` by default. You can change this\n * behavior by providing a `component` prop.\n * If you use React v16+ and would like to avoid a wrapping `
` element\n * you can pass in `component={null}`. This is useful if the wrapping div\n * borks your css styles.\n */\n component: _propTypes.default.any,\n\n /**\n * A set of `
` components, that are toggled `in` and out as they\n * leave. the `` will inject specific transition props, so\n * remember to spread them through if you are wrapping the `` as\n * with our `` example.\n *\n * While this component is meant for multiple `Transition` or `CSSTransition`\n * children, sometimes you may want to have a single transition child with\n * content that you want to be transitioned out and in when you change it\n * (e.g. routes, images etc.) In that case you can change the `key` prop of\n * the transition child as you change its content, this will cause\n * `TransitionGroup` to transition the child out and back in.\n */\n children: _propTypes.default.node,\n\n /**\n * A convenience prop that enables or disables appear animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n appear: _propTypes.default.bool,\n\n /**\n * A convenience prop that enables or disables enter animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n enter: _propTypes.default.bool,\n\n /**\n * A convenience prop that enables or disables exit animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n exit: _propTypes.default.bool,\n\n /**\n * You may need to apply reactive updates to a child as it is exiting.\n * This is generally done by using `cloneElement` however in the case of an exiting\n * child the element has already been removed and not accessible to the consumer.\n *\n * If you do need to update a child as it leaves you can provide a `childFactory`\n * to wrap every child, even the ones that are leaving.\n *\n * @type Function(child: ReactElement) -> ReactElement\n */\n childFactory: _propTypes.default.func\n} : {};\nTransitionGroup.defaultProps = defaultProps;\n\nvar _default = (0, _reactLifecyclesCompat.polyfill)(TransitionGroup);\n\nexports.default = _default;\nmodule.exports = exports[\"default\"];","\"use strict\";\n\nvar _CSSTransition = _interopRequireDefault(require(\"./CSSTransition\"));\n\nvar _ReplaceTransition = _interopRequireDefault(require(\"./ReplaceTransition\"));\n\nvar _TransitionGroup = _interopRequireDefault(require(\"./TransitionGroup\"));\n\nvar _Transition = _interopRequireDefault(require(\"./Transition\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nmodule.exports = {\n Transition: _Transition.default,\n TransitionGroup: _TransitionGroup.default,\n ReplaceTransition: _ReplaceTransition.default,\n CSSTransition: _CSSTransition.default\n};","\"use strict\";\n\nexports.__esModule = true;\nexports.getChildMapping = getChildMapping;\nexports.mergeChildMappings = mergeChildMappings;\nexports.getInitialChildMapping = getInitialChildMapping;\nexports.getNextChildMapping = getNextChildMapping;\n\nvar _react = require(\"react\");\n\n/**\n * Given `this.props.children`, return an object mapping key to child.\n *\n * @param {*} children `this.props.children`\n * @return {object} Mapping of key to child\n */\nfunction getChildMapping(children, mapFn) {\n var mapper = function mapper(child) {\n return mapFn && (0, _react.isValidElement)(child) ? mapFn(child) : child;\n };\n\n var result = Object.create(null);\n if (children) _react.Children.map(children, function (c) {\n return c;\n }).forEach(function (child) {\n // run the map function here instead so that the key is the computed one\n result[child.key] = mapper(child);\n });\n return result;\n}\n/**\n * When you're adding or removing children some may be added or removed in the\n * same render pass. We want to show *both* since we want to simultaneously\n * animate elements in and out. This function takes a previous set of keys\n * and a new set of keys and merges them with its best guess of the correct\n * ordering. In the future we may expose some of the utilities in\n * ReactMultiChild to make this easy, but for now React itself does not\n * directly have this concept of the union of prevChildren and nextChildren\n * so we implement it here.\n *\n * @param {object} prev prev children as returned from\n * `ReactTransitionChildMapping.getChildMapping()`.\n * @param {object} next next children as returned from\n * `ReactTransitionChildMapping.getChildMapping()`.\n * @return {object} a key set that contains all keys in `prev` and all keys\n * in `next` in a reasonable order.\n */\n\n\nfunction mergeChildMappings(prev, next) {\n prev = prev || {};\n next = next || {};\n\n function getValueForKey(key) {\n return key in next ? next[key] : prev[key];\n } // For each key of `next`, the list of keys to insert before that key in\n // the combined list\n\n\n var nextKeysPending = Object.create(null);\n var pendingKeys = [];\n\n for (var prevKey in prev) {\n if (prevKey in next) {\n if (pendingKeys.length) {\n nextKeysPending[prevKey] = pendingKeys;\n pendingKeys = [];\n }\n } else {\n pendingKeys.push(prevKey);\n }\n }\n\n var i;\n var childMapping = {};\n\n for (var nextKey in next) {\n if (nextKeysPending[nextKey]) {\n for (i = 0; i < nextKeysPending[nextKey].length; i++) {\n var pendingNextKey = nextKeysPending[nextKey][i];\n childMapping[nextKeysPending[nextKey][i]] = getValueForKey(pendingNextKey);\n }\n }\n\n childMapping[nextKey] = getValueForKey(nextKey);\n } // Finally, add the keys which didn't appear before any key in `next`\n\n\n for (i = 0; i < pendingKeys.length; i++) {\n childMapping[pendingKeys[i]] = getValueForKey(pendingKeys[i]);\n }\n\n return childMapping;\n}\n\nfunction getProp(child, prop, props) {\n return props[prop] != null ? props[prop] : child.props[prop];\n}\n\nfunction getInitialChildMapping(props, onExited) {\n return getChildMapping(props.children, function (child) {\n return (0, _react.cloneElement)(child, {\n onExited: onExited.bind(null, child),\n in: true,\n appear: getProp(child, 'appear', props),\n enter: getProp(child, 'enter', props),\n exit: getProp(child, 'exit', props)\n });\n });\n}\n\nfunction getNextChildMapping(nextProps, prevChildMapping, onExited) {\n var nextChildMapping = getChildMapping(nextProps.children);\n var children = mergeChildMappings(prevChildMapping, nextChildMapping);\n Object.keys(children).forEach(function (key) {\n var child = children[key];\n if (!(0, _react.isValidElement)(child)) return;\n var hasPrev = key in prevChildMapping;\n var hasNext = key in nextChildMapping;\n var prevChild = prevChildMapping[key];\n var isLeaving = (0, _react.isValidElement)(prevChild) && !prevChild.props.in; // item is new (entering)\n\n if (hasNext && (!hasPrev || isLeaving)) {\n // console.log('entering', key)\n children[key] = (0, _react.cloneElement)(child, {\n onExited: onExited.bind(null, child),\n in: true,\n exit: getProp(child, 'exit', nextProps),\n enter: getProp(child, 'enter', nextProps)\n });\n } else if (!hasNext && hasPrev && !isLeaving) {\n // item is old (exiting)\n // console.log('leaving', key)\n children[key] = (0, _react.cloneElement)(child, {\n in: false\n });\n } else if (hasNext && hasPrev && (0, _react.isValidElement)(prevChild)) {\n // item hasn't changed transition states\n // copy over the last transition props;\n // console.log('unchanged', key)\n children[key] = (0, _react.cloneElement)(child, {\n onExited: onExited.bind(null, child),\n in: prevChild.props.in,\n exit: getProp(child, 'exit', nextProps),\n enter: getProp(child, 'enter', nextProps)\n });\n }\n });\n return children;\n}","\"use strict\";\n\nexports.__esModule = true;\nexports.classNamesShape = exports.timeoutsShape = void 0;\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar timeoutsShape = process.env.NODE_ENV !== 'production' ? _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({\n enter: _propTypes.default.number,\n exit: _propTypes.default.number,\n appear: _propTypes.default.number\n}).isRequired]) : null;\nexports.timeoutsShape = timeoutsShape;\nvar classNamesShape = process.env.NODE_ENV !== 'production' ? _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.shape({\n enter: _propTypes.default.string,\n exit: _propTypes.default.string,\n active: _propTypes.default.string\n}), _propTypes.default.shape({\n enter: _propTypes.default.string,\n enterDone: _propTypes.default.string,\n enterActive: _propTypes.default.string,\n exit: _propTypes.default.string,\n exitDone: _propTypes.default.string,\n exitActive: _propTypes.default.string\n})]) : null;\nexports.classNamesShape = classNamesShape;","export default {\n disabled: false\n};","import _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _inheritsLoose from \"@babel/runtime/helpers/esm/inheritsLoose\";\nimport PropTypes from 'prop-types';\nimport React from 'react';\nimport ReactDOM from 'react-dom';\nimport config from './config';\nimport { timeoutsShape } from './utils/PropTypes';\nimport TransitionGroupContext from './TransitionGroupContext';\nimport { forceReflow } from './utils/reflow';\nexport var UNMOUNTED = 'unmounted';\nexport var EXITED = 'exited';\nexport var ENTERING = 'entering';\nexport var ENTERED = 'entered';\nexport var EXITING = 'exiting';\n/**\n * The Transition component lets you describe a transition from one component\n * state to another _over time_ with a simple declarative API. Most commonly\n * it's used to animate the mounting and unmounting of a component, but can also\n * be used to describe in-place transition states as well.\n *\n * ---\n *\n * **Note**: `Transition` is a platform-agnostic base component. If you're using\n * transitions in CSS, you'll probably want to use\n * [`CSSTransition`](https://reactcommunity.org/react-transition-group/css-transition)\n * instead. It inherits all the features of `Transition`, but contains\n * additional features necessary to play nice with CSS transitions (hence the\n * name of the component).\n *\n * ---\n *\n * By default the `Transition` component does not alter the behavior of the\n * component it renders, it only tracks \"enter\" and \"exit\" states for the\n * components. It's up to you to give meaning and effect to those states. For\n * example we can add styles to a component when it enters or exits:\n *\n * ```jsx\n * import { Transition } from 'react-transition-group';\n *\n * const duration = 300;\n *\n * const defaultStyle = {\n * transition: `opacity ${duration}ms ease-in-out`,\n * opacity: 0,\n * }\n *\n * const transitionStyles = {\n * entering: { opacity: 1 },\n * entered: { opacity: 1 },\n * exiting: { opacity: 0 },\n * exited: { opacity: 0 },\n * };\n *\n * const Fade = ({ in: inProp }) => (\n * \n * {state => (\n * \n * I'm a fade Transition!\n *
\n * )}\n * \n * );\n * ```\n *\n * There are 4 main states a Transition can be in:\n * - `'entering'`\n * - `'entered'`\n * - `'exiting'`\n * - `'exited'`\n *\n * Transition state is toggled via the `in` prop. When `true` the component\n * begins the \"Enter\" stage. During this stage, the component will shift from\n * its current transition state, to `'entering'` for the duration of the\n * transition and then to the `'entered'` stage once it's complete. Let's take\n * the following example (we'll use the\n * [useState](https://reactjs.org/docs/hooks-reference.html#usestate) hook):\n *\n * ```jsx\n * function App() {\n * const [inProp, setInProp] = useState(false);\n * return (\n * \n * \n * {state => (\n * // ...\n * )}\n * \n * \n *
\n * );\n * }\n * ```\n *\n * When the button is clicked the component will shift to the `'entering'` state\n * and stay there for 500ms (the value of `timeout`) before it finally switches\n * to `'entered'`.\n *\n * When `in` is `false` the same thing happens except the state moves from\n * `'exiting'` to `'exited'`.\n */\n\nvar Transition = /*#__PURE__*/function (_React$Component) {\n _inheritsLoose(Transition, _React$Component);\n\n function Transition(props, context) {\n var _this;\n\n _this = _React$Component.call(this, props, context) || this;\n var parentGroup = context; // In the context of a TransitionGroup all enters are really appears\n\n var appear = parentGroup && !parentGroup.isMounting ? props.enter : props.appear;\n var initialStatus;\n _this.appearStatus = null;\n\n if (props.in) {\n if (appear) {\n initialStatus = EXITED;\n _this.appearStatus = ENTERING;\n } else {\n initialStatus = ENTERED;\n }\n } else {\n if (props.unmountOnExit || props.mountOnEnter) {\n initialStatus = UNMOUNTED;\n } else {\n initialStatus = EXITED;\n }\n }\n\n _this.state = {\n status: initialStatus\n };\n _this.nextCallback = null;\n return _this;\n }\n\n Transition.getDerivedStateFromProps = function getDerivedStateFromProps(_ref, prevState) {\n var nextIn = _ref.in;\n\n if (nextIn && prevState.status === UNMOUNTED) {\n return {\n status: EXITED\n };\n }\n\n return null;\n } // getSnapshotBeforeUpdate(prevProps) {\n // let nextStatus = null\n // if (prevProps !== this.props) {\n // const { status } = this.state\n // if (this.props.in) {\n // if (status !== ENTERING && status !== ENTERED) {\n // nextStatus = ENTERING\n // }\n // } else {\n // if (status === ENTERING || status === ENTERED) {\n // nextStatus = EXITING\n // }\n // }\n // }\n // return { nextStatus }\n // }\n ;\n\n var _proto = Transition.prototype;\n\n _proto.componentDidMount = function componentDidMount() {\n this.updateStatus(true, this.appearStatus);\n };\n\n _proto.componentDidUpdate = function componentDidUpdate(prevProps) {\n var nextStatus = null;\n\n if (prevProps !== this.props) {\n var status = this.state.status;\n\n if (this.props.in) {\n if (status !== ENTERING && status !== ENTERED) {\n nextStatus = ENTERING;\n }\n } else {\n if (status === ENTERING || status === ENTERED) {\n nextStatus = EXITING;\n }\n }\n }\n\n this.updateStatus(false, nextStatus);\n };\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n this.cancelNextCallback();\n };\n\n _proto.getTimeouts = function getTimeouts() {\n var timeout = this.props.timeout;\n var exit, enter, appear;\n exit = enter = appear = timeout;\n\n if (timeout != null && typeof timeout !== 'number') {\n exit = timeout.exit;\n enter = timeout.enter; // TODO: remove fallback for next major\n\n appear = timeout.appear !== undefined ? timeout.appear : enter;\n }\n\n return {\n exit: exit,\n enter: enter,\n appear: appear\n };\n };\n\n _proto.updateStatus = function updateStatus(mounting, nextStatus) {\n if (mounting === void 0) {\n mounting = false;\n }\n\n if (nextStatus !== null) {\n // nextStatus will always be ENTERING or EXITING.\n this.cancelNextCallback();\n\n if (nextStatus === ENTERING) {\n if (this.props.unmountOnExit || this.props.mountOnEnter) {\n var node = this.props.nodeRef ? this.props.nodeRef.current : ReactDOM.findDOMNode(this); // https://github.com/reactjs/react-transition-group/pull/749\n // With unmountOnExit or mountOnEnter, the enter animation should happen at the transition between `exited` and `entering`.\n // To make the animation happen, we have to separate each rendering and avoid being processed as batched.\n\n if (node) forceReflow(node);\n }\n\n this.performEnter(mounting);\n } else {\n this.performExit();\n }\n } else if (this.props.unmountOnExit && this.state.status === EXITED) {\n this.setState({\n status: UNMOUNTED\n });\n }\n };\n\n _proto.performEnter = function performEnter(mounting) {\n var _this2 = this;\n\n var enter = this.props.enter;\n var appearing = this.context ? this.context.isMounting : mounting;\n\n var _ref2 = this.props.nodeRef ? [appearing] : [ReactDOM.findDOMNode(this), appearing],\n maybeNode = _ref2[0],\n maybeAppearing = _ref2[1];\n\n var timeouts = this.getTimeouts();\n var enterTimeout = appearing ? timeouts.appear : timeouts.enter; // no enter animation skip right to ENTERED\n // if we are mounting and running this it means appear _must_ be set\n\n if (!mounting && !enter || config.disabled) {\n this.safeSetState({\n status: ENTERED\n }, function () {\n _this2.props.onEntered(maybeNode);\n });\n return;\n }\n\n this.props.onEnter(maybeNode, maybeAppearing);\n this.safeSetState({\n status: ENTERING\n }, function () {\n _this2.props.onEntering(maybeNode, maybeAppearing);\n\n _this2.onTransitionEnd(enterTimeout, function () {\n _this2.safeSetState({\n status: ENTERED\n }, function () {\n _this2.props.onEntered(maybeNode, maybeAppearing);\n });\n });\n });\n };\n\n _proto.performExit = function performExit() {\n var _this3 = this;\n\n var exit = this.props.exit;\n var timeouts = this.getTimeouts();\n var maybeNode = this.props.nodeRef ? undefined : ReactDOM.findDOMNode(this); // no exit animation skip right to EXITED\n\n if (!exit || config.disabled) {\n this.safeSetState({\n status: EXITED\n }, function () {\n _this3.props.onExited(maybeNode);\n });\n return;\n }\n\n this.props.onExit(maybeNode);\n this.safeSetState({\n status: EXITING\n }, function () {\n _this3.props.onExiting(maybeNode);\n\n _this3.onTransitionEnd(timeouts.exit, function () {\n _this3.safeSetState({\n status: EXITED\n }, function () {\n _this3.props.onExited(maybeNode);\n });\n });\n });\n };\n\n _proto.cancelNextCallback = function cancelNextCallback() {\n if (this.nextCallback !== null) {\n this.nextCallback.cancel();\n this.nextCallback = null;\n }\n };\n\n _proto.safeSetState = function safeSetState(nextState, callback) {\n // This shouldn't be necessary, but there are weird race conditions with\n // setState callbacks and unmounting in testing, so always make sure that\n // we can cancel any pending setState callbacks after we unmount.\n callback = this.setNextCallback(callback);\n this.setState(nextState, callback);\n };\n\n _proto.setNextCallback = function setNextCallback(callback) {\n var _this4 = this;\n\n var active = true;\n\n this.nextCallback = function (event) {\n if (active) {\n active = false;\n _this4.nextCallback = null;\n callback(event);\n }\n };\n\n this.nextCallback.cancel = function () {\n active = false;\n };\n\n return this.nextCallback;\n };\n\n _proto.onTransitionEnd = function onTransitionEnd(timeout, handler) {\n this.setNextCallback(handler);\n var node = this.props.nodeRef ? this.props.nodeRef.current : ReactDOM.findDOMNode(this);\n var doesNotHaveTimeoutOrListener = timeout == null && !this.props.addEndListener;\n\n if (!node || doesNotHaveTimeoutOrListener) {\n setTimeout(this.nextCallback, 0);\n return;\n }\n\n if (this.props.addEndListener) {\n var _ref3 = this.props.nodeRef ? [this.nextCallback] : [node, this.nextCallback],\n maybeNode = _ref3[0],\n maybeNextCallback = _ref3[1];\n\n this.props.addEndListener(maybeNode, maybeNextCallback);\n }\n\n if (timeout != null) {\n setTimeout(this.nextCallback, timeout);\n }\n };\n\n _proto.render = function render() {\n var status = this.state.status;\n\n if (status === UNMOUNTED) {\n return null;\n }\n\n var _this$props = this.props,\n children = _this$props.children,\n _in = _this$props.in,\n _mountOnEnter = _this$props.mountOnEnter,\n _unmountOnExit = _this$props.unmountOnExit,\n _appear = _this$props.appear,\n _enter = _this$props.enter,\n _exit = _this$props.exit,\n _timeout = _this$props.timeout,\n _addEndListener = _this$props.addEndListener,\n _onEnter = _this$props.onEnter,\n _onEntering = _this$props.onEntering,\n _onEntered = _this$props.onEntered,\n _onExit = _this$props.onExit,\n _onExiting = _this$props.onExiting,\n _onExited = _this$props.onExited,\n _nodeRef = _this$props.nodeRef,\n childProps = _objectWithoutPropertiesLoose(_this$props, [\"children\", \"in\", \"mountOnEnter\", \"unmountOnExit\", \"appear\", \"enter\", \"exit\", \"timeout\", \"addEndListener\", \"onEnter\", \"onEntering\", \"onEntered\", \"onExit\", \"onExiting\", \"onExited\", \"nodeRef\"]);\n\n return (\n /*#__PURE__*/\n // allows for nested Transitions\n React.createElement(TransitionGroupContext.Provider, {\n value: null\n }, typeof children === 'function' ? children(status, childProps) : React.cloneElement(React.Children.only(children), childProps))\n );\n };\n\n return Transition;\n}(React.Component);\n\nTransition.contextType = TransitionGroupContext;\nTransition.propTypes = process.env.NODE_ENV !== \"production\" ? {\n /**\n * A React reference to DOM element that need to transition:\n * https://stackoverflow.com/a/51127130/4671932\n *\n * - When `nodeRef` prop is used, `node` is not passed to callback functions\n * (e.g. `onEnter`) because user already has direct access to the node.\n * - When changing `key` prop of `Transition` in a `TransitionGroup` a new\n * `nodeRef` need to be provided to `Transition` with changed `key` prop\n * (see\n * [test/CSSTransition-test.js](https://github.com/reactjs/react-transition-group/blob/13435f897b3ab71f6e19d724f145596f5910581c/test/CSSTransition-test.js#L362-L437)).\n */\n nodeRef: PropTypes.shape({\n current: typeof Element === 'undefined' ? PropTypes.any : function (propValue, key, componentName, location, propFullName, secret) {\n var value = propValue[key];\n return PropTypes.instanceOf(value && 'ownerDocument' in value ? value.ownerDocument.defaultView.Element : Element)(propValue, key, componentName, location, propFullName, secret);\n }\n }),\n\n /**\n * A `function` child can be used instead of a React element. This function is\n * called with the current transition status (`'entering'`, `'entered'`,\n * `'exiting'`, `'exited'`), which can be used to apply context\n * specific props to a component.\n *\n * ```jsx\n * \n * {state => (\n * \n * )}\n * \n * ```\n */\n children: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,\n\n /**\n * Show the component; triggers the enter or exit states\n */\n in: PropTypes.bool,\n\n /**\n * By default the child component is mounted immediately along with\n * the parent `Transition` component. If you want to \"lazy mount\" the component on the\n * first `in={true}` you can set `mountOnEnter`. After the first enter transition the component will stay\n * mounted, even on \"exited\", unless you also specify `unmountOnExit`.\n */\n mountOnEnter: PropTypes.bool,\n\n /**\n * By default the child component stays mounted after it reaches the `'exited'` state.\n * Set `unmountOnExit` if you'd prefer to unmount the component after it finishes exiting.\n */\n unmountOnExit: PropTypes.bool,\n\n /**\n * By default the child component does not perform the enter transition when\n * it first mounts, regardless of the value of `in`. If you want this\n * behavior, set both `appear` and `in` to `true`.\n *\n * > **Note**: there are no special appear states like `appearing`/`appeared`, this prop\n * > only adds an additional enter transition. However, in the\n * > `` component that first enter transition does result in\n * > additional `.appear-*` classes, that way you can choose to style it\n * > differently.\n */\n appear: PropTypes.bool,\n\n /**\n * Enable or disable enter transitions.\n */\n enter: PropTypes.bool,\n\n /**\n * Enable or disable exit transitions.\n */\n exit: PropTypes.bool,\n\n /**\n * The duration of the transition, in milliseconds.\n * Required unless `addEndListener` is provided.\n *\n * You may specify a single timeout for all transitions:\n *\n * ```jsx\n * timeout={500}\n * ```\n *\n * or individually:\n *\n * ```jsx\n * timeout={{\n * appear: 500,\n * enter: 300,\n * exit: 500,\n * }}\n * ```\n *\n * - `appear` defaults to the value of `enter`\n * - `enter` defaults to `0`\n * - `exit` defaults to `0`\n *\n * @type {number | { enter?: number, exit?: number, appear?: number }}\n */\n timeout: function timeout(props) {\n var pt = timeoutsShape;\n if (!props.addEndListener) pt = pt.isRequired;\n\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n return pt.apply(void 0, [props].concat(args));\n },\n\n /**\n * Add a custom transition end trigger. Called with the transitioning\n * DOM node and a `done` callback. Allows for more fine grained transition end\n * logic. Timeouts are still used as a fallback if provided.\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * ```jsx\n * addEndListener={(node, done) => {\n * // use the css transitionend event to mark the finish of a transition\n * node.addEventListener('transitionend', done, false);\n * }}\n * ```\n */\n addEndListener: PropTypes.func,\n\n /**\n * Callback fired before the \"entering\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * @type Function(node: HtmlElement, isAppearing: bool) -> void\n */\n onEnter: PropTypes.func,\n\n /**\n * Callback fired after the \"entering\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * @type Function(node: HtmlElement, isAppearing: bool)\n */\n onEntering: PropTypes.func,\n\n /**\n * Callback fired after the \"entered\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * @type Function(node: HtmlElement, isAppearing: bool) -> void\n */\n onEntered: PropTypes.func,\n\n /**\n * Callback fired before the \"exiting\" status is applied.\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExit: PropTypes.func,\n\n /**\n * Callback fired after the \"exiting\" status is applied.\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExiting: PropTypes.func,\n\n /**\n * Callback fired after the \"exited\" status is applied.\n *\n * **Note**: when `nodeRef` prop is passed, `node` is not passed\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExited: PropTypes.func\n} : {}; // Name the function so it is clearer in the documentation\n\nfunction noop() {}\n\nTransition.defaultProps = {\n in: false,\n mountOnEnter: false,\n unmountOnExit: false,\n appear: false,\n enter: true,\n exit: true,\n onEnter: noop,\n onEntering: noop,\n onEntered: noop,\n onExit: noop,\n onExiting: noop,\n onExited: noop\n};\nTransition.UNMOUNTED = UNMOUNTED;\nTransition.EXITED = EXITED;\nTransition.ENTERING = ENTERING;\nTransition.ENTERED = ENTERED;\nTransition.EXITING = EXITING;\nexport default Transition;","import { Children, cloneElement, isValidElement } from 'react';\n/**\n * Given `this.props.children`, return an object mapping key to child.\n *\n * @param {*} children `this.props.children`\n * @return {object} Mapping of key to child\n */\n\nexport function getChildMapping(children, mapFn) {\n var mapper = function mapper(child) {\n return mapFn && isValidElement(child) ? mapFn(child) : child;\n };\n\n var result = Object.create(null);\n if (children) Children.map(children, function (c) {\n return c;\n }).forEach(function (child) {\n // run the map function here instead so that the key is the computed one\n result[child.key] = mapper(child);\n });\n return result;\n}\n/**\n * When you're adding or removing children some may be added or removed in the\n * same render pass. We want to show *both* since we want to simultaneously\n * animate elements in and out. This function takes a previous set of keys\n * and a new set of keys and merges them with its best guess of the correct\n * ordering. In the future we may expose some of the utilities in\n * ReactMultiChild to make this easy, but for now React itself does not\n * directly have this concept of the union of prevChildren and nextChildren\n * so we implement it here.\n *\n * @param {object} prev prev children as returned from\n * `ReactTransitionChildMapping.getChildMapping()`.\n * @param {object} next next children as returned from\n * `ReactTransitionChildMapping.getChildMapping()`.\n * @return {object} a key set that contains all keys in `prev` and all keys\n * in `next` in a reasonable order.\n */\n\nexport function mergeChildMappings(prev, next) {\n prev = prev || {};\n next = next || {};\n\n function getValueForKey(key) {\n return key in next ? next[key] : prev[key];\n } // For each key of `next`, the list of keys to insert before that key in\n // the combined list\n\n\n var nextKeysPending = Object.create(null);\n var pendingKeys = [];\n\n for (var prevKey in prev) {\n if (prevKey in next) {\n if (pendingKeys.length) {\n nextKeysPending[prevKey] = pendingKeys;\n pendingKeys = [];\n }\n } else {\n pendingKeys.push(prevKey);\n }\n }\n\n var i;\n var childMapping = {};\n\n for (var nextKey in next) {\n if (nextKeysPending[nextKey]) {\n for (i = 0; i < nextKeysPending[nextKey].length; i++) {\n var pendingNextKey = nextKeysPending[nextKey][i];\n childMapping[nextKeysPending[nextKey][i]] = getValueForKey(pendingNextKey);\n }\n }\n\n childMapping[nextKey] = getValueForKey(nextKey);\n } // Finally, add the keys which didn't appear before any key in `next`\n\n\n for (i = 0; i < pendingKeys.length; i++) {\n childMapping[pendingKeys[i]] = getValueForKey(pendingKeys[i]);\n }\n\n return childMapping;\n}\n\nfunction getProp(child, prop, props) {\n return props[prop] != null ? props[prop] : child.props[prop];\n}\n\nexport function getInitialChildMapping(props, onExited) {\n return getChildMapping(props.children, function (child) {\n return cloneElement(child, {\n onExited: onExited.bind(null, child),\n in: true,\n appear: getProp(child, 'appear', props),\n enter: getProp(child, 'enter', props),\n exit: getProp(child, 'exit', props)\n });\n });\n}\nexport function getNextChildMapping(nextProps, prevChildMapping, onExited) {\n var nextChildMapping = getChildMapping(nextProps.children);\n var children = mergeChildMappings(prevChildMapping, nextChildMapping);\n Object.keys(children).forEach(function (key) {\n var child = children[key];\n if (!isValidElement(child)) return;\n var hasPrev = (key in prevChildMapping);\n var hasNext = (key in nextChildMapping);\n var prevChild = prevChildMapping[key];\n var isLeaving = isValidElement(prevChild) && !prevChild.props.in; // item is new (entering)\n\n if (hasNext && (!hasPrev || isLeaving)) {\n // console.log('entering', key)\n children[key] = cloneElement(child, {\n onExited: onExited.bind(null, child),\n in: true,\n exit: getProp(child, 'exit', nextProps),\n enter: getProp(child, 'enter', nextProps)\n });\n } else if (!hasNext && hasPrev && !isLeaving) {\n // item is old (exiting)\n // console.log('leaving', key)\n children[key] = cloneElement(child, {\n in: false\n });\n } else if (hasNext && hasPrev && isValidElement(prevChild)) {\n // item hasn't changed transition states\n // copy over the last transition props;\n // console.log('unchanged', key)\n children[key] = cloneElement(child, {\n onExited: onExited.bind(null, child),\n in: prevChild.props.in,\n exit: getProp(child, 'exit', nextProps),\n enter: getProp(child, 'enter', nextProps)\n });\n }\n });\n return children;\n}","import _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _assertThisInitialized from \"@babel/runtime/helpers/esm/assertThisInitialized\";\nimport _inheritsLoose from \"@babel/runtime/helpers/esm/inheritsLoose\";\nimport PropTypes from 'prop-types';\nimport React from 'react';\nimport TransitionGroupContext from './TransitionGroupContext';\nimport { getChildMapping, getInitialChildMapping, getNextChildMapping } from './utils/ChildMapping';\n\nvar values = Object.values || function (obj) {\n return Object.keys(obj).map(function (k) {\n return obj[k];\n });\n};\n\nvar defaultProps = {\n component: 'div',\n childFactory: function childFactory(child) {\n return child;\n }\n};\n/**\n * The `` component manages a set of transition components\n * (`` and ``) in a list. Like with the transition\n * components, `` is a state machine for managing the mounting\n * and unmounting of components over time.\n *\n * Consider the example below. As items are removed or added to the TodoList the\n * `in` prop is toggled automatically by the ``.\n *\n * Note that `` does not define any animation behavior!\n * Exactly _how_ a list item animates is up to the individual transition\n * component. This means you can mix and match animations across different list\n * items.\n */\n\nvar TransitionGroup = /*#__PURE__*/function (_React$Component) {\n _inheritsLoose(TransitionGroup, _React$Component);\n\n function TransitionGroup(props, context) {\n var _this;\n\n _this = _React$Component.call(this, props, context) || this;\n\n var handleExited = _this.handleExited.bind(_assertThisInitialized(_this)); // Initial children should all be entering, dependent on appear\n\n\n _this.state = {\n contextValue: {\n isMounting: true\n },\n handleExited: handleExited,\n firstRender: true\n };\n return _this;\n }\n\n var _proto = TransitionGroup.prototype;\n\n _proto.componentDidMount = function componentDidMount() {\n this.mounted = true;\n this.setState({\n contextValue: {\n isMounting: false\n }\n });\n };\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n this.mounted = false;\n };\n\n TransitionGroup.getDerivedStateFromProps = function getDerivedStateFromProps(nextProps, _ref) {\n var prevChildMapping = _ref.children,\n handleExited = _ref.handleExited,\n firstRender = _ref.firstRender;\n return {\n children: firstRender ? getInitialChildMapping(nextProps, handleExited) : getNextChildMapping(nextProps, prevChildMapping, handleExited),\n firstRender: false\n };\n } // node is `undefined` when user provided `nodeRef` prop\n ;\n\n _proto.handleExited = function handleExited(child, node) {\n var currentChildMapping = getChildMapping(this.props.children);\n if (child.key in currentChildMapping) return;\n\n if (child.props.onExited) {\n child.props.onExited(node);\n }\n\n if (this.mounted) {\n this.setState(function (state) {\n var children = _extends({}, state.children);\n\n delete children[child.key];\n return {\n children: children\n };\n });\n }\n };\n\n _proto.render = function render() {\n var _this$props = this.props,\n Component = _this$props.component,\n childFactory = _this$props.childFactory,\n props = _objectWithoutPropertiesLoose(_this$props, [\"component\", \"childFactory\"]);\n\n var contextValue = this.state.contextValue;\n var children = values(this.state.children).map(childFactory);\n delete props.appear;\n delete props.enter;\n delete props.exit;\n\n if (Component === null) {\n return /*#__PURE__*/React.createElement(TransitionGroupContext.Provider, {\n value: contextValue\n }, children);\n }\n\n return /*#__PURE__*/React.createElement(TransitionGroupContext.Provider, {\n value: contextValue\n }, /*#__PURE__*/React.createElement(Component, props, children));\n };\n\n return TransitionGroup;\n}(React.Component);\n\nTransitionGroup.propTypes = process.env.NODE_ENV !== \"production\" ? {\n /**\n * `` renders a `` by default. You can change this\n * behavior by providing a `component` prop.\n * If you use React v16+ and would like to avoid a wrapping `
` element\n * you can pass in `component={null}`. This is useful if the wrapping div\n * borks your css styles.\n */\n component: PropTypes.any,\n\n /**\n * A set of `
` components, that are toggled `in` and out as they\n * leave. the `` will inject specific transition props, so\n * remember to spread them through if you are wrapping the `` as\n * with our `` example.\n *\n * While this component is meant for multiple `Transition` or `CSSTransition`\n * children, sometimes you may want to have a single transition child with\n * content that you want to be transitioned out and in when you change it\n * (e.g. routes, images etc.) In that case you can change the `key` prop of\n * the transition child as you change its content, this will cause\n * `TransitionGroup` to transition the child out and back in.\n */\n children: PropTypes.node,\n\n /**\n * A convenience prop that enables or disables appear animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n appear: PropTypes.bool,\n\n /**\n * A convenience prop that enables or disables enter animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n enter: PropTypes.bool,\n\n /**\n * A convenience prop that enables or disables exit animations\n * for all children. Note that specifying this will override any defaults set\n * on individual children Transitions.\n */\n exit: PropTypes.bool,\n\n /**\n * You may need to apply reactive updates to a child as it is exiting.\n * This is generally done by using `cloneElement` however in the case of an exiting\n * child the element has already been removed and not accessible to the consumer.\n *\n * If you do need to update a child as it leaves you can provide a `childFactory`\n * to wrap every child, even the ones that are leaving.\n *\n * @type Function(child: ReactElement) -> ReactElement\n */\n childFactory: PropTypes.func\n} : {};\nTransitionGroup.defaultProps = defaultProps;\nexport default TransitionGroup;","import React from 'react';\nexport default React.createContext(null);","export var forceReflow = function forceReflow(node) {\n return node.scrollTop;\n};","!function(c,a){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=a(require(\"react\")):\"function\"==typeof define&&define.amd?define([\"react\"],a):\"object\"==typeof exports?exports[\"react-world-flags\"]=a(require(\"react\")):c[\"react-world-flags\"]=a(c.react)}(this,(c=>(()=>{var a={3630:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1000 700'%3e%3cpath fill='%23d0103a' d='M0 0h1000v700H0z'/%3e%3cpath fill='%23fedf00' d='M0 0h680v700H0z'/%3e%3cpath fill='%230018a8' d='M0 0h320v700H0z'/%3e%3cpath fill='%23c7b37f' d='M469.37 188.48c12.05 0 16.98 10.34 29.03 10.34 7.44 0 11.78-2.43 18.26-6.09 4.52-2.56 7.41-3.93 12.6-3.93 5.32 0 8.58 1.61 11.3 6.17 1.54 2.58 2.82 7.63 2.14 10.53a62.43 62.43 0 0 1-4.26 12.95c-1.04 2.44-2.03 3.9-2.03 6.56 0 6.4 8.7 8.6 14.63 8.69 1.29.02 12.13.2 18.81-6.56-3.62-.16-7.67-2.97-7.67-6.59 0-4.1 2.88-6.87 6.78-8.05.74-.22 2 .44 2.68.09.95-.5.5-1.57 1.35-2.24 1.95-1.56 3.21-2.53 5.7-2.53 1.63 0 2.58.23 3.89 1.17.69.49.94 1.1 1.79 1.1 1.78 0 2.67-1.13 4.45-1.13 1.45 0 2.33.2 3.6.85 1.07.55 1.04 2.35 2.24 2.35.6 0 3.78-1.3 5.44-1.3 3.45 0 5.29 1.25 7.52 3.87.6.7.98 2.13 1.6 2.13a9.72 9.72 0 0 1 7.5 4.6c.41.65 1.03 2.25 1.75 2.53.84.32 1.55.26 2.66.97 2.52 1.62 4.47 4.66 4.37 7.6-.03 1-.48 2.38-.75 3.32-2.94 10.28-9.94 13.55-17 22.38-3 3.76-5.38 6.77-5.38 11.6 0 1.16 1.44 3.3 2.07 4.26-.39-2.26.65-5.05 3.05-5.18 3.28-.17 5.81 2.32 6.25 5.57.1.76-.19 2.08-.51 2.85a14.92 14.92 0 0 1 6.21-2.2c1.15-.12 1.82-.16 2.98-.13 5.25.13 11.04 3.08 14.55 6.07 10.75 9.13 12.05 22.49 11.46 26.2-1.3 8.24-.48 23.17-21.56 29.12 3.9 1.64 6.55 4.57 6.55 8.17 0 3.93-3 7.28-6.93 7.28-2.24 0-3.8-.55-5.37-2.12-4.38 4.38-5.23 8.85-5.23 15.06 0 3.7.7 5.9 2.26 9.26 1.65 3.55 2.83 5.63 5.8 8.2 1.57-2.37 3.23-4.1 6.08-4.1 2.75 0 5.09.88 6.22 3.39.33.76.03 1.38.42 2.12.5.95 1.33 1.16 1.84 2.12.8 1.46.02 2.72.7 4.24.45.99 1.42 1.13 1.84 2.12.67 1.52.85 2.56.85 4.24 0 4.7-4.27 8.06-8.97 8.06-1.42 0-2.2-.57-3.6-.43 2.68 2.69 4.73 3.86 6.78 7.07 2.96 4.65 3.7 7.95 4.38 13.43.12 1.02.14 1.64.14 2.69 0 7.03-1.1 11.23-4.24 17.52-3 6.03-5.57 9.37-11.03 13.3-8.51 6.12-14.72 7.89-25.02 9.89a116.22 116.22 0 0 1-17.1 2.26c-8.59.55-13.48.56-22.05 1.13-11.24.76-19.03 2.35-27 10.32 3.76 2.75 6.36 5.46 6.36 10.1 0 4.78-2.95 8.19-7.5 9.69-1.05.35-1.83.03-2.82.56-1.19.62-1.13 1.98-2.26 2.69-2 1.27-3.55 1.55-5.94 1.55-4.2 0-7.07-.99-10.04-3.95-3.44 2.86-4.6 5.44-8.48 7.63-1.27.7-1.92 1.7-3.4 1.7-2.3 0-3.37-1.47-5.22-2.83a35.86 35.86 0 0 1-6.93-6.36c-3.51 2.1-5.67 3.81-9.75 3.81-2.51 0-4.1-.35-6.22-1.7-1.11-.68-1.3-1.7-2.4-2.4-1.17-.72-2.14-.46-3.4-.99-4.72-2.03-7.77-5.53-7.77-10.67 0-4.5 2.84-7.37 6.92-9.26-7.82-7.82-15.53-9.18-26.57-9.9-8.54-.54-13.4-.56-21.91-1.12-6.77-.46-10.53-1.15-17.25-2.26-5.07-.83-8.07-1.1-12.72-3.26-16-7.45-26.19-17.68-28.27-35.2-.18-1.5-.14-2.36-.14-3.88 0-9.12 3.58-14.68 10.03-21.13-1.66-.4-2.77.16-4.38-.43-4.03-1.46-6.93-4.26-6.93-8.55 0-1.59.07-2.65.85-4.03.55-.97 1.6-1.16 1.84-2.26.32-1.45-.1-2.47.57-3.82.44-.9 1.27-1.07 1.7-1.98 1.39-2.9 3.14-5.23 6.35-5.23 2.76 0 4.53 1.45 5.94 3.82 2.69-1.24 3.43-3.25 4.95-5.8 2.52-4.22 3.67-7.17 3.67-12.08 0-3.43-.33-5.44-1.41-8.7-.78-2.33-1.1-3.92-2.83-5.65a6.83 6.83 0 0 1-5.37 2.12c-4.49 0-7.92-3.85-7.92-8.34a7.51 7.51 0 0 1 4.67-7.2c-2.42-2.1-4.52-2.27-7.21-3.97-4.08-2.58-5.51-5.3-8.2-9.33-1.75-2.63-2.2-4.47-3.1-7.49-1.09-3.64-1.7-5.81-1.7-9.6 0-1 .01-1.58.14-2.55 1-7.67 2.38-12.48 7.2-18.52 2.87-3.59 4.81-5.8 9.05-7.63 3.6-1.56 5.76-2.7 9.68-2.7 1.19 0 1.88 0 3.04.15 1.8.23 2.96.39 4.53 1.27.6.34 1.7 1.35 1.7.64 0-.81-.43-1.24-.43-2.05 0-3.25 2.33-6.22 5.58-6.22 2.35 0 3.3 2.07 4.46 4.1a6.1 6.1 0 0 0 1.13-3.53c0-5.38-2.88-8.12-6.22-12.3-7.28-9.1-16.4-13.36-16.4-25.02 0-3.48 1.68-5.85 4.66-7.64.87-.5 2.03 0 2.88-.54.73-.46.64-1.4 1.1-2.14.73-1.14 1.37-1.64 2.38-2.52 1.66-1.45 3.12-1.02 4.95-2.29.92-.63 1.14-1.46 1.85-2.3 2.05-2.48 3.89-3.68 7.12-3.68 1.62 0 2.54.01 4.04.61.51.2 1.47.97 1.6.82a7.4 7.4 0 0 1 2.24-1.82c1.36-.65 1.9-.9 3.43-.9 1.73 0 2.86.97 4.6.97.63 0 .78-.64 1.3-.97 1.53-1.04 2.41-1.63 4.29-1.63 1.8 0 2.8.6 4.31 1.56 1.43.9 1.64 2.11 3.1 2.96.82.48 1.5.26 2.41.57 4.03 1.34 7.07 4.02 7.07 8.26 0 2.3-.55 3.94-2.26 5.45-1.36 1.2-2.65.99-4.39 1.55 5.62 4.49 10.51 5.6 17.69 5.6 6.57 0 14.6-2.68 14.6-9.26 0-3.05-1.68-4.7-2.88-7.5-2.16-5-3.33-7.95-3.33-13.39 0-4.31.47-6.93 2.98-10.43 2.58-3.6 5.73-4.44 10.17-4.44z'/%3e%3cg fill='none' stroke='%23703d29'%3e%3cpath stroke-width='1.04' stroke-linejoin='round' d='M425.59 223.46a5.56 5.56 0 0 0 3.82 3.8 5.9 5.9 0 0 0 5.99-2.17c1.5-1.95 1.4-4.37.83-6.3-.37-1.24-1.37-2.44-2.7-3.47l-7.94 8.06v.08z'/%3e%3cpath stroke-width='1.04' stroke-linecap='round' d='M626.61 343.94c-1.87-4.5-6.69-2.49-6.98 0-.69 5.73 4.34 7.46 7.91 6.53a6.22 6.22 0 0 0 3.9-3.03 7.54 7.54 0 0 0 .6-5.82 7.66 7.66 0 0 0-1.32-2.59 7.77 7.77 0 0 0-2-1.89c-1.37-.87-2.87-.96-5.22-.96-8.7 0-16.33 10.29-18.89 20.98-.84 3.52-2 11.37-.4 18.81 1.72 7.93 5.15 13.42 9.17 17.59 2.18 2.25 5.14 4.26 8.99 6.43 1.18.67 4.32 2.06 6.5 2.68 2.23.64 4.3.55 6.15.15 5.16-1.12 7.56-5.92 4.96-10.83-2.13-4.02-8.4-6.22-11.35-1.1a5.08 5.08 0 0 0-.63 2.42c.02 1.37.59 3.02 1.56 3.64 2.25 1.43 5.84 1.02 5.68-2.94'/%3e%3cpath stroke-width='1.28' d='M599.69 403.07c1.75-2.06 5.76-5.14 10.34-5.7 4.66-.58 8.7.78 12.83 3 8.06 4.34 12.55 9 15.55 17.64.76 2.2 1.4 5.5 1.3 9.02-.14 5.6-1.56 11.73-3.09 14.7-1.33 2.58-4.82 13.99-23.94 21.86-11.16 4.6-28.3 5.66-40.12 6.12-16.26.65-31.26 1.25-39.96 11.98'/%3e%3cg stroke-width='1.12'%3e%3cpath d='M603.75 421.45c-.47-1.71-.03-3.35 1.32-5.2 1.82-2.5 5.68-3.35 9.18-1.4 1.17.64 2.63 1.5 3.96 3.26.5.66 1.35 1.74 1.79 2.48 1.06 1.82 1.5 3.3 1.7 3.9 3.85 10.92-2.26 22.76-10.25 27.51-6.2 3.7-13.61 5.34-22.47 6.38-3.98.47-6.26.44-10.26.62-3.23.15-6.01.1-8.63.07-2.16-.03-4.21-.02-6.3-.07a110.9 110.9 0 0 0-11.28.16c-4.55.33-7.97.44-11.81 1.09-2.52.41-5.46.82-8.55 1.51-.92.2-1.86.38-2.8.66l-1.89.58c-5.57 1.7-10.98 3.77-15.25 6.52-1.32.85-2.81 1.7-3.88 2.7-.66.63-1.47 1.26-2.12 1.9-3 2.95-6.05 6.13-6.77 10.44-.13.8-.13 1.63-.13 2.5 0 2.8 2.28 6.62 8.42 7.86m8.64-265.81c1.29 2.32 2 3.74 1.24 6.14-.84 2.73-2.77 4.36-5.52 4.36-6.22 0-9.87-7.37-7.07-12.06 4.97-8.31 14.54-3.64 23.4.48-.43-2.13-1.17-2.83-1.1-5.47.2-6.57 5.07-9.54 7.01-15.6 1.16-3.62 1.62-6.76-1.03-9.32-2.3-2.24-4.98-2.2-7.99-1.03-6.02 2.36-13.25 9.14-25.97 9.33-12.72-.19-20.01-6.97-26.03-9.33-3.01-1.18-5.69-1.21-8 1.03-2.64 2.56-2.18 5.7-1.02 9.31 1.95 6.07 6.81 9.04 7 15.6.08 2.65-.66 3.34-1.09 5.48 8.86-4.12 18.8-9.21 23.4-.48 2.57 4.87-.85 12.06-7.07 12.06-2.74 0-4.67-1.75-5.52-4.36-.76-2.32 0-4.35 1.24-6.14'/%3e%3cpath stroke-linecap='round' d='M491.5 224.79c2.4 1.84 4.1 4.1 3.82 7.77-.31 4-1.28 4.95-4.39 7.07m3.75-5.93c-.14 2.4-1.13 3.96-3.53 4.95'/%3e%3c/g%3e%3cpath fill='%23c7b37f' d='m432.4 214.49 1.09.78 1.16 1.24.78 1.56.4 1.32.07 1.7-.08 1.17-.39 1.33-.78.93-.93 1.01-1.32.7-1.71.39-1.48.23-1.55-.7-1.4-1-.86-1.25-.62-1.56v-.62l7.62-7.23z' stroke='none'/%3e%3cpath stroke-width='1.04' stroke-linecap='round' d='M430.01 220.57c-.48-2.58-3.5-3.11-4.66-1.59-1.8 2.35-.49 6.26 3.17 7.4a5.9 5.9 0 0 0 5.99-2.17c1.51-1.96 1.4-4.38.83-6.3-.37-1.24-1.36-2.33-2.7-3.34-4.25-3.24-11.12-2.49-13.37 2.95-2.91 7.02 3.42 12.29 9.25 16.25 7.34 5 15.7 5.9 22 5.83 14.31-.15 25.2-7 32.27-10.88 1.65-.9 3.34-.72 4.2.3a3.11 3.11 0 0 1-.4 4.29'/%3e%3cpath stroke-width='1.06' d='m387.6 414.35-3.19 1.17-3.26 2.48-1.4 1.95-1.8 3.1-.77 2.34-.62 2.88-.31 2.17m29.7-15.78-.23 2.8-.47 1.94-1.4 3.35-2.18 2.87-2.33 1.87-1.7.85-2.42.55'/%3e%3cpath stroke-width='1.2' d='M499.6 489.23c-.58 2.59-3 5.55-8.28 6.62l-1.02.2'/%3e%3cpath stroke-width='1.36' d='M631.59 406.57c3.34 3.11 5.69 6.9 7.49 12.1.76 2.2 1.39 5.51 1.3 9.03-.14 5.6-1.56 11.73-3.09 14.7-1.33 2.58-4.82 13.99-23.95 21.86-11.16 4.6-28.3 5.65-40.11 6.12-16.03.63-30.83 1.23-39.59 11.52'/%3e%3cpath stroke-width='.93' d='M605.45 416.95c1.19-1.62 5.52-3.67 9.02-1.73a9.67 9.67 0 0 1 3.71 3.24'/%3e%3cpath stroke-width='1.36' d='M627.51 402.79c.78.3 1.56.57 2.24.77 2.24.64 4.34.69 6.16.14 4.42-1.33 7.26-5.46 4.96-10.83a8.84 8.84 0 0 0-2.71-3.33'/%3e%3cpath stroke-width='1.04' stroke-linecap='round' d='M375.44 287.13c-2.97 1.84-5.18 2.27-7.5 4.95-2.3 4.55-3.2 7-4.1 10.65m72.04-80.77c0 2.69-1.98 4.38-4.66 4.95'/%3e%3cpath d='M620.49 275.03c7.39-.15 28.86 5.64 29.01 30.88.15 24.92-15.38 29-21.6 30.65'/%3e%3cpath stroke-width='1.04' d='M622.43 275.03c12.74-.55 25.9 8.83 26.47 32.24.45 18.28-12.52 26.58-18.74 28.24'/%3e%3cpath d='m615.33 363.16.2-2.5.83-3.98 1.18-3.09 1.32-2.55 1.72-2.06m12.16-5.31-.2 2.45-.7 1.67-1.08 1.6-1.25.93-1.9.7-1.67.11-1.25-.2m-22.36-82.51.54-2.64 1.17-2.45 1.52-2.45 2.6-3.34 2.06-2.3 3.34-3.38 2.88-2.92 1.83-2.1 2.4-2.91 2.15-3.23 1.28-2.64.7-3.42.21-4.24-.39-1.23m-19.18 200.27 2.53-.5 1.9-1.02 1.05-1.05.74-1.2.5-1.94.04-1.37m-247.26-18.98 1.87.16 2.4-.2 2.42-.85m7.81-57.11-.31 2.18-.5.97-.75.93-1 .78-1.13.5-1.48.24-1.01.08m15.47-24.41-.54 3.38-.66 1.48-1.37 1.87-1.82 1.4-1.87.93-3.61.9m23.9-62.13-.7 2.02-.85 1.48-1.17 1.63-1.63 1.48-1.95.93-1.63.39-1.01-.08m.59-9.68.04 1.55' stroke-width='.88'/%3e%3cg stroke-width='.99'%3e%3cpath stroke-linecap='round' d='M397.32 325.09a10.71 10.71 0 0 1-3.27 2.03m235.19 70.04c.13.14.58.22.74.31 2.21 1.32 6.58-.33 5.3-3.75'/%3e%3cpath d='M621.54 349.38c1.57 2.05 4.54 2.59 6.88 1.98a6.22 6.22 0 0 0 3.9-3.03 7.55 7.55 0 0 0 .6-5.83 7.67 7.67 0 0 0-1.32-2.58 10.6 10.6 0 0 0-2.13-2.23c-.17-.11-.34-.26-.52-.38m10.04 53.15a6.13 6.13 0 0 0-1.9-5.71c-.43-.38-.85-.97-1.37-1.23m.75.73c-.07-2.91-2.46-5-5.41-5.51m-6.52 4.43c-.68-.55-1.4-1.02-2.04-1.69-3.83-4-6.7-9.92-6.74-16.68-.04-6.47 2.56-13.06 5.6-15.62m-88.29 132.26 2.8-2.57 1.94-1.47 3.66-2.26 3.42-1.63 2.4-.62 4.83-1.1 5.6-.85m-46.11 30.26c-2.02 3.11-6.84 7.77-11.9 9.64-5.05-1.87-9.87-6.53-11.9-9.64'/%3e%3cpath stroke-linecap='round' d='M491.28 494.73a15.48 15.48 0 0 1-3.47 6.45'/%3e%3cpath d='m491.78 491.47-.7 3.42m-3.65 6.53-1.48 1.48-2.64 1.47-3.03.94m-8.82-277.86c.38-1.18.77-2.07.71-4.01-.2-6.57-5.06-9.55-7-15.61-1.16-3.61-1.62-6.75 1.02-9.32 2.3-2.24 4.98-2.2 8-1.02 6.01 2.36 13.3 9.14 26.03 9.33-12.73-.2-20.02-6.97-26.04-9.33-3-1.18-5.93-1.53-8.24.71-2.64 2.57-1.93 6.02-.77 9.63 1.94 6.06 6.56 9.04 6.75 15.6.06 1.95-.45 2.84-.83 4.02m29.09-21.08c12.52-.66 23.25-9.07 26.7-9.76 3.1-.6 4.81-.33 7.08 1.72-2.27-2.05-4.84-1.99-7.77-.84-6.02 2.36-13.25 9.14-25.97 9.32M624.59 383.2a24.29 24.29 0 0 1-9.72-19.27c-.03-6.48 2.57-13.07 5.6-15.63m-109.3 152.46c-2.02 3.11-6.84 7.77-11.9 9.64-5.05-1.87-9.87-6.53-11.89-9.64'/%3e%3cpath stroke-linecap='round' d='m479.17 230.74 3.62-2.02c1.65-.9 3.63-.71 4.49.32.96 1.16 1.1 3.18-.23 4.41'/%3e%3cpath d='M460.48 239.49c8.59-1.8 15.59-5.64 20.88-8.6m50.42 256.54c.71.48 1.17 1.5 1.17 1.5.2.46.45.9.52 1.32.4 2.38-1.16 3.86-3.09 4.08a5.26 5.26 0 0 1-5.48-3.17m-64.86-252.11c8.59-1.8 15.59-5.64 20.88-8.6m152.46 167.04c-1.63.63-2.53.54-4.56-.36-.83-.37-1.79-.94-2.9-1.58-3.98-2.26-8.71-5.82-13.14-14.14a29.4 29.4 0 0 1-3.45-12.2c-.11-3 .21-6.14.96-9.72 1.24-5.93 2.72-9.15 6.37-14.15 1.8-2.47 3.35-3.97 6.7-4.05m-224.53-61.41a11.12 11.12 0 0 1 4.12 8.94c0 4.84-4.05 12.75-14 15.55-3.82 1.07-7.59.2-9.87-1.18'/%3e%3cpath d='M400.46 296.28c1.79 1.24 2.49 2.64 2.49 5.07 0 1.66-1.08 3.82-2.9 5.87-3 3.34-8.1 6.19-13.73 6.26a16 16 0 0 1-9.42-2.74 14.16 14.16 0 0 1-5.98-8.4'/%3e%3cpath d='M400.3 306.71c2.03 1.86 2.65 4.2 2.65 7.13 0 4.29-1.74 7.6-5.75 11.1-.9.79-1.9 1.52-3.03 2.18m202.23-34.49v5.52m-.44-6.88v7.77m.44-24.6v10.19m-.44-12.44v13.92m-2.97 128.06a29.23 29.23 0 0 1-6.53 8.86c-3.09 3.04-5.22 4.44-9.1 6.38-3.77 1.89-6.14 2.49-10.26 3.42a52.45 52.45 0 0 1-10.73 1.32c-3.86.18-6.05.01-9.9-.25-4.14-.29-6.43-.86-10.55-1.23-3.4-.3-5.32-.57-8.74-.56-3.51 0-5.52.03-8.98.64a34.42 34.42 0 0 0-8.09 2.26c-4.2 1.7-8.94 4.66-9.95 5.98-1.01-1.32-5.75-4.28-9.95-5.98a34.42 34.42 0 0 0-8.09-2.26 44.73 44.73 0 0 0-8.98-.64c-3.42-.01-5.34.26-8.74.56-4.13.37-6.42.94-10.54 1.23-3.86.26-6.05.43-9.91.25a52.26 52.26 0 0 1-10.73-1.32c-4.12-.93-6.49-1.54-10.26-3.42-3.88-1.94-6.02-3.34-9.1-6.38l-.95-.95m65.89 83.39 2.8-.35m47.3-3.68 2.83-.27 2.69-1.08 1.88-1.14 2.56-3.03.53-1.14.4-2.62.14-1.21m73.3-213.59c1.21-4.13-.27-8.48-4.27-8.37m-206.17 72.76a12.78 12.78 0 0 1-5.62 7.3m5.69-73c-1 2.89-2.83 4.95-5.72 6.26-2.89 1.3-6.23.09-8.02-1.3'/%3e%3cpath stroke-linecap='round' d='M380.95 291.2c2.4 1.25 4.82-.58 4.32-3.7a4.45 4.45 0 0 0-3.93-3.43'/%3e%3cpath d='M390.87 422.86c.52.49.63 1.11 1.32 1.24 1.05.2 1.87.59 2.92-.81 1.3-1.73.6-4.41-.75-6.1-1.44-1.8-5.61-3.4-9.11-1.46a11.6 11.6 0 0 0-3.97 3.26c-.5.67-1.35 1.74-1.79 2.5-1.05 1.8-1.49 3.28-1.7 3.88-3.2 9.1.6 18.66 6.49 24.5'/%3e%3cpath stroke-linecap='round' d='M531.59 487.23a9.2 9.2 0 0 1 1.01 1.24c.2.47.36.92.43 1.33.4 2.38-1.16 3.86-3.08 4.09-2.65.3-4.42-1.26-5.27-3.16'/%3e%3cpath d='M608.5 216.81c5.23.64 9.78 5.63 9.78 11 0 6.91-2.33 9.49-5.97 14.44-3.9 5.3-16.64 15-16.64 26.04 0 6.69 1.87 10.96 6.69 13.14 3.1 1.4 6.74-.11 8.4-1.6 4.04-3.66 2.42-10.07-1.8-10.84-5.13-.93-6.09 7.15-1.08 6.61m27.85 107.91a5.77 5.77 0 0 0-5.65-4.88 5.8 5.8 0 0 0-5.73 5.87c0 1.59.62 3.03 1.62 4.09'/%3e%3cpath d='M599.79 279.88a11.12 11.12 0 0 0-4.12 8.94c0 4.84 4.05 12.75 14 15.55 3.81 1.07 7.46.97 9.74-.42m-243.8-16.15c-2.38.8-5.35 2.28-7.55 5.4-1.86 2.63-2.94 6.28-3.6 9.48-.3 1.4-.65 5.83.24 10.41a24.61 24.61 0 0 0 3.6 8.8 12.4 12.4 0 0 0 1.63 1.94c.51.52 1.25.97 1.77 1.37m100.02 143.82c7.58 3.36 13.13 5.87 17.84 13.31 1.48 2.33 1.87 5.68 1.87 7.62 0 4.2-1.72 8.94-5.21 11.9-3.25 2.74-6.46 3.57-10.42 3.18-3-.3-5.83-2.49-6.3-4.04M396.88 325.2c4.28 3.34 6.06 6.59 6.06 11.74 0 5.9-2.87 9.56-6.22 11.66'/%3e%3cpath stroke-linecap='round' d='M392.99 344.41c6.38 7.93 9.76 12.64 9.95 22.08.18 8.86-2.64 14.93-7.93 21.3'/%3e%3cpath d='M515.23 239.57a6.43 6.43 0 0 0 2.5-3.48c.75-2.33.77-4.31-.48-6.1 1.54 2 1.68 3.7 1.25 6.14-.28 1.55-1.27 2.37-2.5 3.49m80.4 134.62v25.24h.07c0 .02-.01 2.39-.22 3.89-.13.98-.27 1.87-.42 2.7'/%3e%3cpath d='M595.96 371.81v27.22h.07c0 .02-.01 2.4-.21 3.9a42.94 42.94 0 0 1-.73 4.11m.87-67.1v22.7m.44-20.91v18.46m0-41.94v13.84m-.44-15.47v17.06m.44-29.58v5.37m-.44-6.46v7.78m-2.88 101.86-.53 1.08a29.22 29.22 0 0 1-6.53 8.87c-3.09 3.04-5.22 4.43-9.1 6.37-3.77 1.9-6.14 2.5-10.26 3.42a52.44 52.44 0 0 1-10.73 1.33c-3.86.17-6.05 0-9.9-.26-4.14-.29-6.43-.86-10.55-1.22-3.4-.3-5.32-.58-8.74-.57-3.51.01-5.52.03-8.98.65a34.41 34.41 0 0 0-8.09 2.25c-4.2 1.7-8.94 4.66-9.95 5.99-1.01-1.33-5.75-4.29-9.95-5.99a34.4 34.4 0 0 0-8.09-2.25 44.75 44.75 0 0 0-8.98-.65c-3.42 0-5.34.27-8.74.57-4.13.36-6.41.93-10.54 1.22-3.86.27-6.05.43-9.91.25a52.24 52.24 0 0 1-10.73-1.32c-4.12-.93-6.49-1.53-10.26-3.42-3.88-1.94-6.01-3.33-9.1-6.37-1.62-1.6-2.8-2.9-3.86-4.36m-3.14-4.98c.67 4.94-1.41 9.8-3.52 12.03-1.32 1.4-4.2 4.08-7.78 4.12-5.9.08-7.67-3.98-8.03-4.97'/%3e%3cpath d='M399.4 410.7c1.1 1.08 2.07 2.4 2.9 3.96 1.47 2.8 1.02 7.49-.15 9.65-.13.23-.3.49-.48.74m-31.63 28.15c3.51 3.69 8.83 7.7 16.99 11.05 11.16 4.6 28.3 5.66 40.12 6.12 15.71.62 30.2 1.27 39 11m27.14-6.36c2.6 2.56 5.25 5.3 6.37 8.8m-11.48 17.89c-.34.36-.7.7-1.08 1.03-3.25 2.74-6.46 3.58-10.42 3.19-3-.3-5.9-2.55-6.69-4.03m-8.36-4.54c.14.2.3.4.46.58a11.88 11.88 0 0 0 7.97 3.83m41.99-.12c-2.02 3.11-6.84 7.77-11.9 9.64-5.05-1.87-9.87-6.53-11.9-9.64l-.46-.73m24.34.71c.36.4.75.76 1.16 1.1 3.24 2.75 6.45 3.59 10.41 3.2 3.01-.3 5.4-2.3 6.36-4.05 0 0 .54-.58.7-1.13'/%3e%3cpath d='m529.75 500.99-1.16 1.87-1.77 1.46-2.67 1.11-2.42.1'/%3e%3cpath d='M536.03 483.22a12 12 0 0 1 3.6 4.53c.49 1.15.72 2.4.79 3.7a9.15 9.15 0 0 1-2.23 6.48 11.74 11.74 0 0 1-9.16 3.86m.29-.44c-3.17.13-6-1.23-8.1-3.38m99.5-106.04a37.1 37.1 0 0 1-7.5-10.08 29.38 29.38 0 0 1-3.46-12.2c-.1-3 .22-6.13.97-9.72 1.23-5.93 3.44-10.51 6.37-14.15 1-1.24 2.16-2.8 3.25-3.49m-2.15-118.46c3.97.31 7.64 4.58 7.59 8.76-.07 6.08-2.1 8.6-6.89 14.55-4.12 5.13-16.48 14.15-16.17 22.78.05 1.53.88 3.11 1.8 4.39m-4.94 5.41c.88.87 1.94 1.58 3.2 2.16 2.27 1.02 4.8.5 6.66-.45m-33.08-67.53c1.33.9 2.68 2.3 3.42 4.06 2.9 7.02-3.43 12.29-9.26 16.25a33.33 33.33 0 0 1-12.97 5.13'/%3e%3cpath d='M569.69 227.43c-1.41-.01-3.1-.42-4.92-2.34a5.23 5.23 0 0 1-1.1-1.55m-23.22 7.66a7.22 7.22 0 0 1-2.06-1.5c-1.39-1.55-2.31-3.65-1.24-6.86.98-2.96 5.74-11.27 5.97-17.02.36-8.8-3.02-13.98-8.3-16'/%3e%3cpath stroke-linecap='round' d='m542.68 203.85-.2 3.3-.9 3.38-1.72 4.61-1.31 2.96-1.38 2.96-.69 2.07-.27 1.51.2 1.45m59.4 197.31c.27.66.93 1.3.93 1.3 1.01 1.7 4.94 4.66 8.52 4.7 5.9.09 7.3-4.05 7.46-4.97.75-4.5-.8-5.74-3.1-7.01 0 0-1.37-.7-3-.43'/%3e%3cpath d='M370.23 403.67c-2.09.53-4.05.55-5.76.03-4.42-1.32-8-5.56-6.18-10.83m20.92-49.72c.44.44.59 1.1.65 1.67.69 5.73-4.34 7.4-7.91 6.47a8.8 8.8 0 0 1-4.71-3.56 7.35 7.35 0 0 1-.97-3.6m34.47-36.98c.9.82 1.52 1.74 1.93 2.76m-1.77-13.31a5.98 5.98 0 0 1 1.82 2.04'/%3e%3cpath stroke-linecap='round' d='M402.91 303.94a13.22 13.22 0 0 1-2.43 3.72c-3 3.34-8.08 6.19-13.72 6.26a16 16 0 0 1-9.42-2.74c-3.41-2.28-5.64-5.53-6.37-8.71'/%3e%3cpath d='M399.11 280.13a12.11 12.11 0 0 1 3.7 5.3'/%3e%3cpath stroke-linecap='round' d='M402.86 292.56c-1.38 4.57-5.51 10.23-13.47 12.25-3.8.96-8.7-.24-10.38-1.67'/%3e%3cpath d='M375.06 291.49c.42 4.12 3.17 7.2 8.4 7.3 7.35.15 11.82-10.57 5.29-18.09'/%3e%3cpath stroke-linecap='round' d='M358.52 327.39a25.45 25.45 0 0 0 3.63 3.64 26.24 26.24 0 0 0 9.27 5.15m8.25.77c6.57-.79 10.27-5.68 9.54-11.41-.56-4.36-4.56-7.72-7.29-7.91'/%3e%3cpath d='M390.39 268.92c2.85-.1 4.47 2.48 4.44 4.66'/%3e%3cpath stroke-linecap='round' d='M389.72 229.81a17.95 17.95 0 0 0 7.86 9.1m225.28 48.38c2.69 3.68.93 10.93-6.38 11.07a8.1 8.1 0 0 1-6.94-3.92'/%3e%3cpath d='M596.4 239.25v24.69'/%3e%3cpath stroke-linecap='round' d='M380.87 291.14c2.25 1.63 5.15-1.12 4.03-4.05-.76-1.97-3.56-4.1-7.45-1.46-4.3 2.92-3.11 12.13 5.13 12.28 7.35.14 11.82-10.57 5.29-18.1-6.29-7.23-17.73-5.53-25.2.4-3.17 2.53-9.17 9.15-11.03 18.17-.58 2.8-.96 5.11-.91 7.93.02 1.85.2 3.93.75 6.53a32.6 32.6 0 0 0 4.8 11.74c.71 1.03 1.35 1.87 2.04 2.56 1.28 1.28 1.67 1.96 2.96 3.04 4.22 3.51 9.66 6.27 16.32 5.98 7.31-.3 11.51-5.44 10.73-11.5-.75-5.88-6.69-8.8-10.57-6.07-2.64 1.87-3.58 7.65 1.09 9.02 2.64.78 4.97-2.57 3.1-4.5M584.4 210.68c4.22-2.3 7.47-1.87 9.87 1.47 2.62 3.63 2.99 8.45 2.41 11.28-.85 4.2-2.06 5.94-5.4 8.99'/%3e%3cpath stroke-linecap='round' d='M594.58 212.55c4.82-3.19 10.04-1.83 12.9 2.41 2.1 3.11 2.64 5.71 2.5 9.56-.26 6.6-4.39 11.83-8.95 14.39'/%3e%3cpath d='M617.28 223.67c3.96.31 7.15 3.9 7.15 8.09 0 5.98-1.67 8.58-6.45 14.53-4.12 5.14-16.48 14.15-16.17 22.78.12 3.27 2.87 6.34 5.24 6.51'/%3e%3cpath stroke-linecap='round' d='M617.75 291.14c-2.25 1.63-5.13-1-3.89-3.8.86-1.94 3.42-4.36 7.31-1.71 4.3 2.92 3.11 12.13-5.13 12.28-7.35.14-12.32-10.3-5.29-18.1 6.42-7.1 18.32-5.72 25.78.22 3.18 2.53 9.57 9.47 10.94 18.58 1.65 11.02 1.44 24.57-9.94 32.92-4.58 3.35-10.92 4.88-16.52 4.63-7.3-.32-11.5-5.44-10.72-11.5.75-5.88 6.41-8.37 10.57-6.07 4.32 2.4 3.56 8.47-1.09 9.02-2.74.33-4.98-2.56-3.1-4.5'/%3e%3cpath d='M613.86 287.34c1.21-5.45 5.88-5.96 9.66-5.9 10.3.14 17.41 12.36 17.53 24.17.15 14.92-6.33 23.71-17.24 24.18-2.82.12-7.68-1.22-7.77-4.67'/%3e%3cpath stroke-linecap='square' d='M620.2 284.9c10.86 2.41 14.67 12.2 14.67 21.53 0 7.62-.75 18.02-15.57 21.68'/%3e%3cpath d='M638.11 389.58a6.1 6.1 0 1 0-9.79 3.66'/%3e%3cpath stroke-linecap='round' d='M616.33 380.33c2.04 3.03 4.52 6.4 9.74 9.24m-1.96 16.48c-5.12-3.36-14.84-7.76-23.62-3.43-3.26 1.61-5.45 3.6-6.68 6.84-2.22 5.84.26 12.28 2.79 14.95 1.32 1.4 4.2 4.07 7.77 4.12 5.91.08 7.32-4.06 7.47-4.97.7-4.28-1.8-6-3.11-6.46-1.02-.35-4.31-.26-5.01 2.07-.24.78-.28 2.13.34 3.14'/%3e%3cpath stroke-linecap='round' d='M531.99 488.16c1.63 3.34-.22 5.02-2.49 5.29-3.34.39-5.13-2.26-5.36-4.67a6.87 6.87 0 0 1 6.84-7.38c3.53.05 6.41 2.33 7.76 5.47.5 1.14.72 2.4.8 3.7a9.14 9.14 0 0 1-2.23 6.47c-2 2.33-5.11 3.74-8.43 3.87-6.6.27-11.74-5.9-11.74-12.2 0-12.06 17.87-18.63 24.96-20.32 8.7-2.08 14-2.86 27.99-3.63 5.6-.31 9.7-.16 15.86-.8 5.51-.57 8.4-.83 14.07-2.16 7.08-1.65 13.68-4.58 19.6-9.95 4.54-4.13 7.14-7.07 9.25-12.75 1.82-4.9 2.65-14.6-1.95-21.77-4.07-6.34-9.72-9.63-16.17-10.56-5.83-.85-10.94 1.67-14 7.45-1.47 2.8-1.02 7.48.15 9.64 1.01 1.87 3.9 4.62 7.47 4.67 5.91.08 7.32-4.06 7.47-4.98.7-4.27-1.8-5.98-3.11-6.45-1.02-.36-4.32-.27-5.02 2.07-.23.77-.27 2.13.35 3.14'/%3e%3cpath stroke-linecap='round' d='M526.9 469.02c-7.58 3.36-13.13 5.87-17.84 13.31-1.48 2.33-1.87 5.68-1.87 7.62 0 4.2 1.72 8.94 5.21 11.9 3.25 2.74 6.46 3.57 10.42 3.18 3-.3 5.83-2.49 6.3-4.04'/%3e%3cpath d='M601.73 325.2c-3.54 1.18-6.06 6.59-6.06 11.74 0 5.9 2.87 9.56 6.22 11.66'/%3e%3cpath stroke-linecap='round' d='M605.62 344.41c-6.38 7.93-9.76 12.64-9.95 22.08-.18 8.86 2.64 14.93 7.93 21.3'/%3e%3cpath d='m571.64 212.58.55-.81c2.64-3.89 7.3-4.91 10.73-2.33 4.12 3.1 5.16 8.4 4.04 14-.7 3.5-3.07 6.4-6.33 8.51'/%3e%3cpath stroke-linecap='round' d='M414.22 210.68c-4.04-1.87-7.37-1.5-9.87 1.47-2.88 3.42-3 8.45-2.41 11.28.85 4.2 2.06 5.94 5.4 8.99'/%3e%3cpath d='M404.03 212.55c-4.82-3.19-10.04-1.83-12.9 2.41-2.1 3.11-2.64 5.71-2.5 9.56.26 6.6 4.39 11.83 8.95 14.39'/%3e%3cpath d='M390.12 216.81c-5.23.64-9.4 5.07-9.4 10.43 0 6.92 1.7 9.72 5.59 15 3.9 5.3 16.64 15.01 16.64 26.05 0 6.69-1.87 10.96-6.69 13.14-3.1 1.4-6.74-.11-8.4-1.6-4.04-3.66-2.42-10.07 1.8-10.84 5.12-.93 6.09 7.15 1.08 6.61'/%3e%3cpath d='M381.33 223.67c-3.97.31-7.87 3.72-7.87 7.9 0 6 2.39 8.77 7.17 14.72 4.12 5.14 15.76 13.98 15.45 22.6-.12 3.27-2.31 7.26-4.49 6.8'/%3e%3cpath stroke-linecap='round' d='M372 343.94c1.87-4.5 6.69-2.49 6.98 0 .69 5.73-4.34 7.46-7.91 6.53a6.22 6.22 0 0 1-3.9-3.03 7.55 7.55 0 0 1-.6-5.82c.27-.93.65-1.71 1.32-2.59a7.77 7.77 0 0 1 2-1.89c1.37-.87 2.87-.96 5.22-.96 8.7 0 16.33 10.29 18.89 20.98.84 3.52 2 11.37.4 18.81-1.72 7.93-5.15 13.42-9.17 17.59-2.17 2.25-5.14 4.26-8.99 6.43a38.65 38.65 0 0 1-6.5 2.68c-2.23.64-4.33.7-6.15.15-4.42-1.33-7.26-5.46-4.96-10.83 1.79-4.18 8.4-6.22 11.35-1.1.25.44.64 1.4.63 2.42-.02 1.37-.59 3.02-1.56 3.64-2.25 1.43-5.84 1.02-5.68-2.94'/%3e%3cpath d='M365.24 397.49c1.63.63 2.53.54 4.56-.36.83-.37 1.79-.94 2.9-1.58 3.98-2.26 8.71-5.82 13.14-14.14a29.38 29.38 0 0 0 3.45-12.2c.11-3-.21-6.14-.96-9.72-1.24-5.93-2.72-9.15-6.37-14.15-1.8-2.47-3.35-3.97-6.7-4.05m-14.75 48.29a6.1 6.1 0 1 1 9.79 3.66'/%3e%3cpath d='M362.88 383.51a5.77 5.77 0 0 1 5.65-4.88 5.8 5.8 0 0 1 5.73 5.87c0 1.59-.62 3.03-1.62 4.09'/%3e%3cpath d='M374.02 383.2a24.29 24.29 0 0 0 9.72-19.27c.03-6.48-2.57-13.07-5.6-15.63'/%3e%3cpath stroke-linecap='round' d='M382.29 380.33c-2.04 3.03-4.52 6.4-9.74 9.24'/%3e%3cpath d='M397.81 402.63c-1.45-3.4-4.33-4.99-9.02-5.49-4.66-.5-8.7.79-12.83 3-8.06 4.34-12.55 9-15.55 17.65-.76 2.2-1.39 5.5-1.3 9.02.14 5.6 1.56 11.73 3.1 14.7 1.33 2.58 4.81 13.99 23.94 21.86 11.16 4.6 28.3 5.66 40.12 6.12 16.25.64 31.25 1.25 39.96 11.97'/%3e%3cpath stroke-linecap='round' d='M374.5 406.05c5.12-3.36 14.84-7.76 23.62-3.43 3.26 1.61 5.45 3.6 6.68 6.84 2.22 5.84-.26 12.28-2.79 14.95-1.32 1.4-4.2 4.07-7.77 4.12-5.91.08-7.32-4.06-7.47-4.97-.7-4.28 1.8-6 3.11-6.46 1.02-.35 4.31-.26 5.01 2.07.24.78.28 2.13-.34 3.14'/%3e%3cpath d='M394.86 421.45c.47-1.71.23-3.5-1.32-5.2-1.56-1.72-5.68-3.35-9.18-1.4a11.6 11.6 0 0 0-3.96 3.26c-.5.66-1.35 1.74-1.79 2.48-1.06 1.82-1.5 3.3-1.7 3.9-3.85 10.92 2.41 22.52 10.25 27.51 6.85 4.36 13.84 5.6 22.47 6.38 4 .36 6.26.44 10.27.62 3.22.15 6 .1 8.63.07 2.15-.03 4.2-.02 6.3-.07 3.4-.08 6.94-.16 11.27.16 4.55.33 7.97.44 11.81 1.09 2.52.41 5.46.82 8.55 1.51.92.2 1.86.38 2.8.66l1.89.58c5.57 1.7 10.98 3.77 15.25 6.52 1.32.85 2.84 1.67 3.88 2.7.8.8 1.47 1.26 2.12 1.9 3 2.95 6.05 6.13 6.77 10.44.13.8.13 1.63.13 2.5 0 2.8-2.28 6.62-8.42 7.86'/%3e%3cpath d='M466.62 488.16c-1.63 3.34.22 5.02 2.49 5.29 3.34.39 5.13-2.26 5.36-4.67a6.87 6.87 0 0 0-6.84-7.38c-3.53.05-6.41 2.33-7.76 5.47-.5 1.14-.72 2.4-.8 3.7a9.15 9.15 0 0 0 2.23 6.47c2 2.33 5.11 3.74 8.43 3.87 6.6.27 11.74-5.9 11.74-12.2 0-12.06-17.87-18.63-24.96-20.32-8.7-2.08-14-2.86-27.99-3.63-5.6-.31-9.7-.16-15.86-.8-5.51-.57-8.4-.83-14.07-2.16-7.08-1.65-13.68-4.58-19.6-9.95-4.54-4.13-7.14-7.07-9.25-12.75-1.82-4.9-2.65-14.6 1.95-21.77 4.07-6.34 9.72-9.63 16.17-10.56 5.83-.85 10.94 1.67 14 7.45 1.47 2.8 1.02 7.48-.15 9.64-1.01 1.87-3.9 4.62-7.47 4.67-5.91.08-7.32-4.06-7.47-4.98-.7-4.27 1.8-5.98 3.11-6.45 1.02-.36 4.32-.27 5.01 2.07.24.77.28 2.13-.34 3.14'/%3e%3cpath stroke-linecap='round' d='m426.97 212.58-.55-.81c-2.64-3.89-7.3-4.91-10.73-2.33-4.12 3.1-5.16 8.4-4.04 14 .7 3.5 3.07 6.4 6.33 8.51'/%3e%3cpath d='M573.04 224.37c-6.3 6.84-12.6 9.03-22 9.33-2.94.1-8.56-.93-11.82-3.26-2.1-1.5-4.43-4.05-2.96-8.48 1-2.96 5.75-11.27 5.98-17.03.36-8.79-3.02-13.6-8.3-15.47-9.78-3.45-20.27 6.21-26.6 8.32a21.34 21.34 0 0 1-8 1.24 21.63 21.63 0 0 1-8.07-1.24c-6.33-2.1-16.82-11.77-26.6-8.32-5.28 1.87-8.66 6.68-8.3 15.47.23 5.76 4.99 14.07 5.97 17.03 1.48 4.43-.85 6.99-2.95 8.48-3.27 2.33-8.88 3.35-11.82 3.26-9.4-.3-15.7-2.49-22-9.33'/%3e%3cpath stroke-linecap='round' d='M464.58 466.27c1.25.49.3-.3 8.2 3.2 7.57 3.36 12.95 6.3 17.66 13.74 1.48 2.33 1.86 5.67 1.86 7.62 0 1.25-.15 2.55-.45 3.84'/%3e%3cpath d='M465.09 500.06c1.54.77 3.28 1.22 5.08 1.29 6.6.26 11.74-5.91 11.74-12.2 0-4.37-2.38-8.05-5.7-11'/%3e%3cpath stroke-linecap='round' d='M466.52 488.15c-1.6 3.55.68 5.47 2.94 5.74 3.34.39 5.22-2.26 5.46-4.67a6.98 6.98 0 0 0-3.28-6.48'/%3e%3cpath d='M609.53 216.87c5.02 0 9.4 5.59 9.4 11.32 0 6.6-3.52 10.65-6.1 13.7-2.07 2.46-4.3 4.66-6.98 7.35'/%3e%3cpath stroke-linecap='round' d='M603.58 211.58c1.7.79 3.2 2.13 4.35 3.82 2.1 3.1 2.63 5.71 2.48 9.56-.25 6.6-5 11.17-9.24 13.96m-7.46-27.34c.35.3.68.63 1 1.01 2.88 3.43 3.1 8.48 2.41 11.29-1.03 4.2-2.43 6.02-5.85 8.54m-7.91-22.57c4.12 3.11 5.35 8.49 3.98 14.03-.97 3.95-3.46 6.32-6.56 8.21m17.38 64.19c.5 1.45 1.3 1.95 2.33 3.02a21.15 21.15 0 0 0 9.62 5.5c3.82 1.08 7.25.27 9.88-1.36m-254.7 84.43c1.94-.04 3.87 1.27 5.13 3.47.25.43.64 1.38.63 2.4-.01 1.38-.61 2.84-1.6 3.46-2.24 1.43-6.22.82-6.06-3.15'/%3e%3cpath d='M377.33 336.4c7.7 1.44 15.12 10.73 17.55 20.86.84 3.53 2 11.38.4 18.82-1.72 7.93-5.15 13.42-9.17 17.59-.95.98-2.06 1.92-3.32 2.85l-1.64 1.11m-12.39-18.96c3.16 0 5.93 3.03 5.93 6.27 0 1.6-.61 3.03-1.61 4.09'/%3e%3cpath d='M366.62 382.35c3.3 0 6.43 3.18 6.43 6.55a6.1 6.1 0 0 1-2.31 4.78'/%3e%3cpath stroke-linecap='round' d='M396.84 349.2c3.03 4.06 5.03 7.56 5.95 12.07m-.1 13.26a26.98 26.98 0 0 1-2.26 6.32 27.85 27.85 0 0 1-5.56 7.25'/%3e%3cpath d='M397.32 325.52c2.92 2.28 4.68 4.64 5.5 7.47'/%3e%3cpath stroke-linecap='round' d='M402.9 317.92c-.77 2.66-2.5 4.67-5.27 7.2m-14.3-26.85 3.37-.89 2-1.5 1.28-1.82 1.1-2.84.45-2.3'/%3e%3cpath d='M376.51 286.41c-1.06.27-2.41.66-3.82 1.33-1.9.9-3.9 2.3-5.51 4.58-1.86 2.63-2.94 6.28-3.6 9.48-.3 1.4-.65 5.84.24 10.41a24.61 24.61 0 0 0 3.6 8.81c.56.82 1.06 1.52 1.63 2.09 2.02 2.02 3.88 3.26 7 2.64'/%3e%3cpath stroke-linecap='round' d='M395.38 271.58c-.55 2-1.62 4.5-4.77 4.22'/%3e%3cpath d='M383.87 285.2c-3.02-2.96-9.43-3.73-15.8.3-.82.52-1.64 1.19-2.45 1.86-.87.73-1.57 1.57-2.25 2.48-.73 1-1.63 2.68-2.18 3.8a19.54 19.54 0 0 0-1.47 4.14 31.74 31.74 0 0 0-1.02 9.78c.17 1.51.32 2.9.56 4.18a29.13 29.13 0 0 0 3.48 9.66c1.4 2.33 4.9 7.69 12.06 8.4 2.8.27 7.61-1.01 7.77-4.67'/%3e%3cpath stroke-linecap='round' d='M568.38 220.42c.48-2.58 3.59-3.08 4.76-1.55 1.8 2.34.6 6.38-3.05 7.52a5.9 5.9 0 0 1-5.99-2.18c-1.51-1.95-1.4-4.37-.83-6.3.36-1.24 1.36-2.32 2.7-3.34 4.25-3.23 11.11-2.48 13.37 2.96 2.9 7.02-3.42 12.28-9.25 16.25-7.34 4.99-15.7 5.9-22 5.83-14.31-.16-25.2-7-32.27-10.89-1.65-.9-3.35-.72-4.2.31a3.11 3.11 0 0 0 .39 4.28'/%3e%3cpath stroke-linecap='round' d='M571.26 218c1.52.07 1.92.66 2.39 1.27 1.8 2.35.48 6.38-3.18 7.52m27.87 80.54c-5.45 5.93-.44 16.12 3.64 18.42 1.4 1.1 2 .51 3.14 1.17'/%3e%3cpath d='M598.63 295.99c-1.79 1.24-2.42 2.64-2.49 5.07-.06 2.03.3 4.29 2.2 6.27 2.98 3.1 8.8 5.79 14.43 5.86a16 16 0 0 0 9.42-2.74 14.16 14.16 0 0 0 5.98-8.4m-32.59 96.55c0 .02 0 2.39-.21 3.89a29.5 29.5 0 0 1-3.27 10.8 29.23 29.23 0 0 1-6.53 8.87c-3.08 3.04-5.22 4.43-9.1 6.37-3.77 1.9-6.14 2.5-10.26 3.42a52.45 52.45 0 0 1-10.73 1.33c-3.86.17-6.05 0-9.9-.26-4.13-.28-6.42-.86-10.54-1.22-3.4-.3-5.33-.58-8.75-.57-3.5.01-5.52.03-8.98.65a34.41 34.41 0 0 0-8.09 2.25c-4.2 1.7-8.94 4.67-9.95 5.99-1-1.32-5.75-4.29-9.95-5.99a34.41 34.41 0 0 0-8.09-2.25 44.76 44.76 0 0 0-8.98-.65c-3.42 0-5.34.27-8.74.57-4.12.36-6.41.94-10.54 1.22-3.86.27-6.05.43-9.9.26-4.22-.2-6.63-.4-10.74-1.33s-6.49-1.53-10.26-3.42c-3.87-1.94-6.01-3.33-9.1-6.37a29.22 29.22 0 0 1-6.53-8.87 29.51 29.51 0 0 1-3.26-10.8c-.2-1.5-.22-3.87-.22-3.89V239.58h192.55V398.6h.07z'/%3e%3c/g%3e%3cg fill='%23c7b37f' stroke='%23c7b37f'%3e%3cpath stroke-width='.51' d='M387.41 421.32a3.9 3.9 0 1 1 7.81 0 3.9 3.9 0 0 1-7.81 0zm-23.99-27.61c0-1.93 1.24-3.5 2.76-3.5s2.76 1.57 2.76 3.5-1.24 3.5-2.76 3.5-2.76-1.57-2.76-3.5z'/%3e%3cpath d='M377.05 324.36c0-1.59 1.2-2.87 2.66-2.87 1.48 0 2.67 1.28 2.67 2.87s-1.2 2.87-2.67 2.87-2.66-1.28-2.66-2.87zm47.86-102.55c-.17-1.6.79-3 2.13-3.14 1.35-.14 2.58 1.04 2.75 2.63.17 1.6-.79 3-2.14 3.14-1.34.14-2.57-1.04-2.74-2.63z' stroke='none'/%3e%3c/g%3e%3cg stroke='%23c7b37f' stroke-width='.99' stroke-linecap='round'%3e%3cpath d='M373.92 340.54c-.57.25-.9.46-1.32.91-.41.43-.5.59-.82 1.3-.23.52-.3 1.12-.38 1.86m7.37 41.79c.54-.66.87-1.01 1.4-1.69.43-.56.68-.87 1.06-1.47.35-.54.5-.86.8-1.43.43-.8.65-1.25 1.05-2.06m-1.97 21.78c-.92.42-1.47.61-2.37 1.09-.68.36-1.06.6-1.71 1-.78.49-1.2.77-1.95 1.3-.76.57-1.16.94-1.9 1.53m23.38-59.2c-.5-.52-.77-.82-1.28-1.32-.54-.53-.83-.84-1.4-1.32-.56-.47-.91-.69-1.5-1.12'/%3e%3cpath stroke-linecap='butt' d='M397.17 326.47c-.74.33-1.13.6-1.9.85-.89.29-1.49.44-2.34.48'/%3e%3cpath d='M371 300.68c.25.9.31 1.45.65 2.32.43 1.1.8 1.69 1.45 2.67.68 1.03 1.1 1.6 1.99 2.46.77.76 1.26 1.14 2.17 1.73.86.57 1.42.76 2.32 1.25m-1.54-9.16c.76.4 1.15.71 1.94 1.04.72.3 1.15.43 1.9.6 1.04.24 1.64.3 2.7.32 1.13.03 1.47 0 2.9-.23m11.21-63.53c-1.25-.73-2-1.05-3.2-1.87a19.05 19.05 0 0 1-2.92-2.37 14.57 14.57 0 0 1-1.81-2.02c-.56-.76-.78-1.26-1.28-2.06m11.72-7.11c.4 1.05.5 1.68 1 2.68.68 1.36 1.2 2.07 2.23 3.19 1.41 1.55 2.61 2 4.28 3.27m2.27-9.25c.39.94.5 1.52 1 2.41.43.79.72 1.2 1.3 1.9.72.9 1.2 1.36 2.1 2.07 1.04.82 1.79 1.06 2.93 1.74'/%3e%3c/g%3e%3cpath fill='%23703d29' stroke-width='.28' d='M520.78 211.91c-.08-2.65-2.69-2.92-3.69-2.92-2.88 0-3.67 1.8-7.27 3.73-4.5 2.42-6.45 2.96-10.46 3-4.01-.04-6-.58-10.52-3-3.6-1.93-4.2-3.68-7.09-3.68a3.64 3.64 0 0 0-3.51 3.84s-.03.8.1 1.34c.04.2.29.14.36.32-.03-1.2.21-1.82.8-2.63a3.42 3.42 0 0 1 2.54-1.31c2.89 0 3.96 1.85 7.56 3.78 4.51 2.42 6.45 2.96 10.46 3 4.01-.04 6-.58 10.52-3 3.6-1.93 4.63-3.94 7.52-3.94 1 0 1.7.65 2.03 1.67.2.63.1 1.04.14 1.3.03.11.18.1.21.23.1-.46.33-.63.3-1.73z'/%3e%3c/g%3e%3cg fill='%23703d29'%3e%3cpath d='M413.12 434.42c.81-.87 1.42-.54 1.57-.95.11-.3-.13-.32-.46-.45-.44-.16-.9-.26-1.34-.42-.46-.17-.87-.4-1.33-.58-.19-.07-.63-.29-.75.04-.23.61 1.6.56.99 2.2-.1.28-.37.88-1.28 1.88l-4.14 4.5c-.09.11-.24.33-.34.3-.1-.04-.08-.31-.08-.45l.06-6.4c0-1.2.1-2.1.3-2.63.28-.73 1.12-.12 1.3-.6.1-.29.02-.3-.48-.49-.25-.1-.73-.2-1.74-.57-.53-.2-1.04-.47-1.56-.66-.24-.1-.67-.41-.83 0-.05.13.12.31.16.35.58.41.73.69.74 1.47l.11 11.63c.01.84.1 1.08.26 1.13.17.07.3 0 .64-.4l8.2-8.9z'/%3e%3cpath d='M417.95 436.22c.53-1.69 1.53-.67 1.72-1.28.07-.21 0-.27-.48-.42-.91-.29-1.51-.4-2.09-.58-.56-.18-1.16-.45-1.78-.64-.15-.05-.53-.23-.63.07-.2.63 1.77.7 1.26 2.32l-2.7 8.54c-.52 1.69-1.53.86-1.73 1.49-.03.08-.03.22.11.26.42.14 1.13.28 1.82.5 1.25.4 1.82.65 2.41.84.37.11.53.09.6-.1.18-.58-1.88-.32-1.19-2.51l2.68-8.49zm5.78 1.71c.32-1.07.82-.93 1.41-.75 1.63.48 2.14 2.07 1.62 3.83-.31 1.05-.7 2.03-3.15 1.3-.49-.14-1.08-.32-.95-.77l1.07-3.61zm-4.43 7.7c-.67 2.25-1.8 1.27-1.97 1.85-.1.35.25.4.42.45.81.24 1.64.4 2.5.67.68.2 1.1.4 1.37.48.37.1.53.04.58-.12.19-.65-1.62-.39-1.06-2.3l.92-3.1c.19-.62.13-.78.98-.52.8.24 1.05.48 1.18 1.38l.52 3.23c.2 1.18.37 2.46 1.64 2.84.65.19 1.83.11 2-.44.03-.15-.03-.28-.18-.33-.16-.04-.35.02-.51-.03-.13-.04-.43-.13-.5-.46-.49-2.6-1.09-5.6-1.05-5.7.05-.18.56-.2 1.15-.48.6-.29 1.26-.81 1.6-1.96.24-.82.67-3.44-2.86-4.48-1.08-.32-2.2-.58-3.27-.9-1.02-.3-1.12-.4-1.87-.62-.19-.06-.38-.02-.43.16-.19.64 1.76.5 1.17 2.5l-2.33 7.88zm13.16 3.85c-.52 2.16-2.15.85-2.32 1.55-.1.4.18.45.48.52.65.16 1.2.21 2.3.48 1.1.26 1.61.46 2.27.62.47.11.78.25.89-.19.12-.5-2.1-.48-1.56-2.72l1.97-8.2c.2-.87.4-.92 1.06-.76l1.4.34c1.89.37.88 2.26 1.53 2.42.43.1.42-.65.44-.88l.22-1.7c.03-.2.09-.45-.16-.5-1.52-.37-2.63-.56-5.01-1.13-2.39-.57-3.46-.91-4.98-1.27-.25-.06-.3.2-.37.37l-.83 2.33c-.1.23-.29.6.06.69.73.17.81-2.32 2.66-1.88l1.37.33c.67.16.81.3.6 1.16l-2.02 8.42zm19.84-5.06c.65-1 1.3-.78 1.38-1.2.06-.32-.18-.3-.53-.37-.46-.08-.93-.1-1.4-.18-.47-.1-.92-.25-1.4-.34-.2-.04-.67-.18-.73.17-.12.64 1.67.27 1.35 2-.05.29-.2.93-.93 2.06l-3.3 5.16c-.07.12-.18.36-.28.35-.1-.02-.13-.3-.16-.43l-1.05-6.3c-.2-1.2-.26-2.1-.16-2.65.14-.78 1.08-.32 1.17-.81.06-.31-.02-.31-.55-.4-.27-.06-.76-.07-1.81-.27-.57-.1-1.11-.28-1.66-.38-.25-.05-.73-.29-.81.15-.03.13.17.28.21.3.65.32.84.56.99 1.33l2.13 11.44c.15.82.29 1.04.45 1.07.18.03.29-.06.56-.5l6.53-10.2zm.93 10.51c0 .46-.03.6.36.78.92.4 1.7.98 2.7 1.15 2.17.36 3.97-1.02 4.38-3.43.39-2.34-.57-3.31-2.2-4.47-2.04-1.46-2.91-1.85-2.7-3.08.2-1.24 1.06-1.81 2.16-1.63 2.85.48 2.52 3.94 2.9 4 .37.07.45-.14.49-.55l.23-2.5c.04-.43.13-.7-.12-.74-.21-.03-.67.19-.89.15-.5-.08-1.07-.91-2.43-1.14-1.94-.32-3.52 1-3.88 3.12-.32 1.93.54 2.8 1.85 3.75 2.44 1.75 3.45 2.16 3.18 3.73-.24 1.47-1.38 2.19-2.67 1.97-1.84-.3-2.59-2.15-2.82-4-.03-.26-.04-.43-.3-.48-.41-.06-.34.5-.33.76l.09 2.61zm24.72-6.97c.54-1.06 1.22-.91 1.25-1.34.03-.32-.21-.28-.56-.3-.47-.05-.95 0-1.42-.05-.48-.03-.94-.14-1.43-.18-.2-.02-.68-.11-.71.24-.05.65 1.7.1 1.56 1.84-.03.3-.11.95-.71 2.16l-2.74 5.47c-.06.13-.15.38-.25.37-.1 0-.16-.27-.2-.4l-1.7-6.16a8.49 8.49 0 0 1-.44-2.62c.06-.78 1.04-.42 1.08-.93.03-.31-.06-.3-.6-.34-.26-.02-.75.01-1.82-.07-.57-.05-1.14-.17-1.69-.21-.25-.02-.76-.2-.8.24 0 .13.2.26.25.28.68.24.9.46 1.12 1.21l3.32 11.15c.24.8.4 1 .56 1.02.18.01.27-.1.5-.56l5.43-10.82z'/%3e%3cpath d='M480.6 457c-.02 1.9-1.63 1.55-1.63 2.3 0 .32.33.23.52.23.45 0 .9-.07 1.44-.06.59 0 1.16.08 1.98.09.22 0 .64.02.64-.24 0-.88-2.15.37-2.12-3.2l.06-6.35c0-.17.03-.3.13-.3.09 0 .19.1.3.25l8 9.77c.11.15.2.26.43.26.2 0 .2-.14.2-.55l.1-10.47c.01-1.96 1.44-1.5 1.44-2.06 0-.05 0-.24-.31-.24-.16 0-.74.06-1.8.05-1.16 0-1.65-.08-1.92-.09-.21 0-.27.19-.27.32 0 .61 2.05.3 2.03 2l-.05 6.2c0 .47-.04.7-.14.7s-.3-.23-.52-.5l-6.68-8.28c-.3-.36-.1-.49-.63-.5-.89 0-1.33.07-1.76.07-.32 0-.62-.08-.94-.08-.2 0-.29.14-.3.31 0 .9 1.9-.3 1.86 3.28l-.06 7.1zm16.26-8.4c.02-1.77 1.27-1.09 1.27-1.72 0-.23-.08-.27-.58-.27-.96-.01-1.56.06-2.17.06-.59 0-1.24-.1-1.9-.1-.15 0-.56-.06-.57.26 0 .65 1.8.15 1.8 1.85v8.95c0 1.77-1.21 1.28-1.22 1.93 0 .1.03.22.18.23.44 0 1.16-.07 1.88-.06 1.31 0 1.93.09 2.56.1.38 0 .53-.07.54-.28 0-.6-1.89.24-1.87-2.05l.08-8.9zm7.04 8.67c.02 2.22-1.89 1.34-1.88 2.07 0 .4.29.39.6.39.66-.01 1.22-.09 2.34-.1 1.13-.01 1.68.06 2.35.05.49 0 .83.05.82-.4 0-.52-2.15.04-2.17-2.25l-.07-8.43c0-.9.16-1 .85-1l1.42-.01c1.94-.1 1.42 1.98 2.09 1.98.43 0 .24-.73.2-.96l-.2-1.71c-.01-.19-.01-.45-.26-.45-1.57.02-2.7.1-5.14.12-2.45.02-3.58-.04-5.14-.03-.25 0-.25.27-.27.45l-.24 2.47c-.03.24-.13.65.22.65.76-.01.23-2.45 2.13-2.46l1.41-.02c.69 0 .86.09.86.98l.08 8.66zm9.78-3.53c-.3.02-.53.06-.55-.13-.02-.26.06-.47.13-.7l1.03-3.4c.07-.2.13-.23.17-.23.08 0 .03 0 .14.14l1.64 3.26c.1.21.22.41.24.67.01.19-.22.19-.52.21l-2.28.18zm2.87.78c.44-.03.54.15 1.2 1.56.23.48.37.81.4 1.22.1 1.13-1.11 1.02-1.07 1.56.02.26.24.2.54.18.48-.03 1.1-.16 1.83-.21 1.1-.1 1.57-.05 2.17-.1.45-.04.6-.01.58-.33-.05-.61-.9.19-1.54-1.1l-5.41-11.02c-.26-.54-.3-.58-.45-.56-.22.01-.27.37-.37.68l-3.65 11.61c-.33 1.07-1.2 1.03-1.16 1.46.02.24.28.18.52.16.48-.04.96-.15 1.46-.19.54-.04 1.05 0 1.58-.05.35-.02.88.07.85-.33-.04-.5-1.82-.06-1.93-1.4-.03-.44.15-1.11.24-1.5.29-1.25.63-1.35.92-1.38l3.3-.26zm12.98-7.73c-.17-1.28-.1-1.3 1.91-1.57 3.21-.42 2.2 1.91 2.98 1.81.39-.05.22-.65.17-.89l-.3-1.82c-.03-.17-.17-.34-.38-.3-1.47.18-2.6.41-3.79.57-2.55.33-3.76.41-4.44.5-.23.04-.34.2-.32.37.1.74 1.9-.1 2.12 1.56l1.14 8.66c.3 2.26-1.1 1.42-1 2.27.03.12.14.2.35.17.92-.12 1.6-.29 2.12-.36.74-.1 1.36-.1 2-.18.41-.06.77-.03.72-.4-.06-.5-1.88.2-2.15-1.84l-.37-2.74c-.14-1.07-.23-1.29.53-1.39l1.24-.16c1.73-.23 1.52 1.8 2.05 1.72.4-.05.21-.7.17-.94l-.55-3.28c-.09-.5-.27-.43-.38-.42-.34.05-.16 1.75-1.6 1.94l-1.04.14c-.72.1-.73-.03-.84-.83l-.34-2.59zm6.14 4.24c.69 3.72 3.38 5.79 6.7 5.17 5.26-.97 5.44-5.65 4.96-8.22-.72-3.9-3.62-5.8-6.83-5.17-3.94.77-5.57 4.2-4.83 8.22zm1.84-1.42c-.5-2.66-.14-5.35 2.64-5.92 2.12-.43 4.53 1.32 5.28 5.38.57 3.04.1 5.67-2.73 6.25-2.95.6-4.7-3.03-5.2-5.71zm13.02-6.5c-.26-1.09.25-1.21.85-1.36 1.65-.4 2.88.73 3.31 2.51.26 1.07.4 2.11-2.08 2.7-.49.12-1.1.27-1.2-.19l-.88-3.66zm0 8.88c.56 2.29-.9 2-.77 2.59.09.36.42.22.6.18.81-.2 1.61-.46 2.5-.68.68-.16 1.14-.2 1.42-.26.37-.1.48-.23.44-.4-.16-.65-1.6.48-2.06-1.46l-.76-3.14c-.15-.63-.28-.73.59-.94.81-.2 1.15-.1 1.71.6l2.06 2.54c.76.93 1.56 1.95 2.85 1.64.65-.16 1.63-.82 1.5-1.38-.04-.14-.16-.23-.3-.2-.17.05-.3.2-.47.23-.13.03-.44.1-.66-.15-1.72-2-3.74-4.3-3.77-4.4-.04-.19.4-.46.77-1s.68-1.33.4-2.49c-.2-.83-1.14-3.31-4.72-2.46-1.1.27-2.18.6-3.28.87-1.03.25-1.18.2-1.93.38-.2.05-.33.18-.3.36.17.66 1.78-.44 2.27 1.59l1.92 7.98zm13.48-3.01c.56 2.15-1.5 1.76-1.32 2.46.1.4.37.31.66.23.65-.16 1.17-.37 2.26-.66 1.09-.28 1.65-.34 2.3-.51.47-.12.8-.15.7-.59-.14-.5-2.08.56-2.66-1.66l-2.1-8.17c-.23-.87-.1-1 .57-1.17l1.39-.36c1.85-.55 1.84 1.59 2.5 1.42.42-.11.06-.77-.03-.98l-.61-1.61c-.06-.18-.13-.43-.37-.37-1.52.4-2.59.75-4.96 1.36-2.37.61-3.48.82-5 1.21-.24.07-.17.32-.14.5l.36 2.46c.02.24.03.66.37.57.73-.19-.37-2.43 1.47-2.9l1.37-.35c.66-.18.85-.13 1.07.74l2.17 8.38zm8.59-11.46c-.47-1.7.92-1.4.75-2-.06-.22-.15-.24-.64-.1-.92.25-1.48.49-2.06.65-.57.15-1.22.26-1.85.43-.15.04-.57.1-.48.4.17.64 1.86-.37 2.31 1.26l2.4 8.63c.47 1.7-.82 1.56-.65 2.2.03.08.1.2.24.16.42-.12 1.1-.38 1.8-.57 1.25-.35 1.87-.45 2.47-.61.37-.1.5-.22.44-.42-.16-.57-1.74.76-2.35-1.45l-2.38-8.58zm3.58 4.17c1.2 3.6 4.15 5.26 7.35 4.19 5.08-1.7 4.6-6.36 3.77-8.84-1.25-3.75-4.39-5.24-7.48-4.16-3.8 1.3-4.94 4.94-3.64 8.81zm1.62-1.66c-.86-2.57-.88-5.28 1.8-6.23 2.04-.72 4.67.68 5.98 4.59.98 2.94.88 5.6-1.84 6.57-2.83 1.01-5.07-2.35-5.94-4.93zm11.92-8.47c-.41-1.04.07-1.23.65-1.46 1.58-.62 2.96.32 3.63 2.02.4 1.02.7 2.03-1.68 2.97-.47.18-1.05.41-1.22-.02l-1.38-3.51zm1.24 8.8c.87 2.18-.63 2.1-.4 2.66.13.35.44.17.61.1.78-.3 1.54-.68 2.38-1.02.65-.25 1.1-.35 1.37-.46.36-.14.44-.3.38-.45-.24-.62-1.51.7-2.24-1.16l-1.19-3c-.24-.61-.38-.7.45-1.02.78-.3 1.13-.26 1.79.36l2.39 2.23c.88.81 1.81 1.7 3.04 1.22.63-.24 1.51-1.03 1.3-1.57-.06-.14-.2-.2-.33-.15-.16.06-.27.23-.43.29-.12.05-.42.16-.67-.06-1.99-1.74-4.3-3.74-4.35-3.84-.07-.17.32-.5.62-1.09.29-.6.49-1.41.05-2.52-.31-.8-1.59-3.13-5.01-1.78-1.05.41-2.08.9-3.13 1.31-.98.4-1.14.37-1.86.65-.18.08-.3.23-.24.4.25.63 1.7-.69 2.47 1.26l3 7.63z'/%3e%3c/g%3e%3cg fill='%23fedf00'%3e%3cpath fill='%23d52b1e' d='M412.66 249.25h82.18v82.02h-82.18z'/%3e%3cpath id='a' fill='%23fff' d='M451.2 313.83s-.05 2.93-.86 5.29c-.93 2.72-.94 2.72-1.8 4.04a13.13 13.13 0 0 1-3.8 3.89c-1.96 1.26-3.95 1.88-5.95 1.7-5.49-.48-8.04-6.43-9.28-11.27-1.32-5.13-5.07-7.92-7.47-6.06-1.4 1.09-1.47 2.91-.3 4.67 1.24 1.86 4.1 2.8 4.1 2.8l-2.94 3.73s-6.3-.82-7.53-7.4c-.47-2.49.74-7.13 4.89-8.52 5.3-1.77 8.68 2 10.31 5.2 2.25 4.38 3.21 12.43 9.43 11.18 3.39-.67 4.98-5.6 4.98-7.85l2.47-2.64 3.65 1.16.1.08z'/%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 907.52 0)'/%3e%3cpath d='m461.12 278.95 10.76-11.64s1.62-1.31 1.61-3.4l-2.22.34-.5-1.14-.1-1.15 2.98-.63c.04-.48 0-.85.09-1.38.08-.5.19-.76.3-1.25l-3.26.22c.17-.57.13-.87.31-1.4.16-.45.2-.62.5-1.1.61-.1 1.16-.24 1.91-.31.73-.07 1.15-.04 1.88-.09 1.78-3.32 9.19-6.37 14.45-.9 3.81 3.96 2.99 11.22-1.95 13.14a6.32 6.32 0 0 1-6.86-1.11l1.97-3.87c2.72 1.63 4.98-.4 4.82-2.5-.2-2.65-1.92-4.29-4.35-4.5-2.26-.2-3.88 1.1-4.9 3.1-.63 1.24-.34 2.14-.55 3.5-.22 1.49-.1 2.32-.53 3.82a8.75 8.75 0 0 1-2.37 3.59l-11.03 11.93-42.94 46.45-3.23-2.98 43.21-46.74z'/%3e%3cpath fill='%23fff' d='M429.51 283.04s2.7 13.37 11.87 33.43c4.67-1.7 7.42-2.8 12.37-2.8 4.94 0 7.7.93 12.36 2.8 9.17-20.06 11.87-33.43 11.87-33.43l-24.23-31.18-24.24 31.18z'/%3e%3cpath d='m456.12 262.41 16.82 21.64s-2.24 10.52-9.08 26.35c-2.64-.6-4.91-1.13-7.73-1.32v-46.67zm-4.74 0-16.82 21.64s2.24 10.52 9.08 26.35c2.64-.6 4.91-1.13 7.73-1.32v-46.67z'/%3e%3c/g%3e%3cg fill='%23d52b1e'%3e%3cpath fill='%23fedf00' d='M503.6 249.25h82.18v82.02H503.6z'/%3e%3cpath d='M515.11 249.25h12.25v82.02h-12.25zm23.48 0h12.25v82.02H538.6zm23.48 0h12.25v82.02h-12.25z'/%3e%3c/g%3e%3cg fill='%23d52b1e' stroke='%23d52b1e' stroke-width='.51'%3e%3cpath fill='%23fedf00' d='M412.97 402.41c.23 1.48.76 4.01 2.16 6.6 1.48 2.34.94 2.28 4.28 6.01 1.64 1.84 4.21 3.41 6.23 4.5 2.02 1.08 3.51 1.62 6.84 2.49 6.52 1.71 11.09 1.82 16.57 1.6 4.28-.17 7.55-.7 10.25-1.06 3.86-.52 6.73-.83 11.12-1.01 2.13-.1 4.15-.11 6.14 0 2.4.13 4.78.5 7.3 1a79.61 79.61 0 0 1 10.97 3.2l.01-85.66-82.19-.02v58.54s.17 2.86.32 3.8z' stroke='none'/%3e%3cpath d='m422.51 417.43 3.85 2.24 5.28 1.9v-81.53h-9.13zm45.66 3.71.01-81.1h-9.14v82.4s6.25-.8 9.13-1zm18.24-81.09h-9.11v81.38c2.97.32 6.02.85 9.13 1.68l-.02-83.06zm-36.49 0v83.33c-.09.01-6.1.32-9.17 0v-83.32z'/%3e%3c/g%3e%3cpath fill='%23fedf00' d='M585.48 402.39a20.75 20.75 0 0 1-2.16 6.6c-1.48 2.34-.94 2.28-4.28 6-1.64 1.85-4.21 3.42-6.23 4.5-2.02 1.1-3.51 1.63-6.84 2.5-6.52 1.71-11.09 1.82-16.57 1.6-4.28-.17-7.55-.7-10.25-1.06-3.86-.52-6.73-.83-11.12-1.01a63.34 63.34 0 0 0-6.14 0c-2.4.13-4.78.5-7.3 1-5.45 1.1-11.04 3.2-11.04 3.2l.05-85.66 82.2-.02v58.54s-.17 2.86-.32 3.8z'/%3e%3cg id='b'%3e%3cpath fill='%23d52b1e' d='m524.62 346.91-.6.28c-.3.33-.44.52-.77.81-.45.4-.77.5-1.25.85-.24.16-.42.21-.6.44-.25.32-.08.62-.25 1-.19.4-.37.6-.65.93-.37.44-.65.61-1.07 1-.42.4-.59.73-1.1 1-.13.07-.19.14-.34.19-.21.07-.34-.01-.56.06-.39.14-.5.56-.78.72.11.22.1.37.22.6.16.32.7 1.21.81 1.43.21.3.27.7.53.78.54.17.86.16 1.32.13.79.18 1.28.16 2.03.47.61.25.86.57 1.47.84.47.21.77.34 1.28.44.38.07.6.13 1 .1.25-.03.37-.13.62-.16h.13l-.03.37v.09h.06l2.06.91c-.07.12-.15.26-.19.38-.1.32-.11.68-.06.84.63 1.89 1.16 3.07 1.47 3.19.62.23.8.86 1.16 1.5-.13.13-.23.2-.35.3-.61.6-1.15 1.02-1.65 1.82-.75 1.19-1.25 1.2-.32 2.78.55.93.82 1.1 1.53 2.4.37.67.57 1.18.79 1.98.2.75.27 1.19.3 1.97l.98.37.65-.65.63-1.2.03-.9c-.24-.2-.3-.47-.25-.78.07-.37.51-.3.72-.62.28-.47-.33-.74-.66-1.1-.6-.67-1.43-.83-1.62-1.84-.05-.28.08-.43.37-.72.86-.84 1.13-.97 1.97-1.81.24.14.61.19.97.12.28-.05.53.13 1.4.38.62.17.88.08 1.22.03l.38-.1c.05.22.11.42.12.7.06 1.05-.15 2.99.16 3.5.13.2.19.32.28.55.1.24.22.4.22.66.01.7.05 1.14 0 1.87-.04.7-.1 1.05-.22 1.75-.07.46-.16.72-.44 1.07-.28.36-.59.41-.96.68l-.1 1 1.13.47 1.28.32.69-.29c0-.25.04-.4.15-.62.13-.25.23-.44.47-.53.36-.14.76.13.9-.1.17-.24.07-.33.04-.75-.05-.66-.18-.98-.28-1.65a11.81 11.81 0 0 1-.16-2.75c.03-.62.04-.96.16-1.56.17-.89.48-1.32.68-2.2.23-.97.27-1.6.38-2.46 3.17.45 5.8.4 9.34-.38.17-.03.75-.25.75-.25.8.7 1.71 1.27 2.72 1.63v.97c.04.29-.04.48.13.72.1.15.2.24.37.28.27.06.46.02.66-.16.23-.2.18-.45.25-.75.03-.14 0-.56 0-.69.37.06.49.07.87.07.36 0 .53.01.88-.03l.03.46c.03.25-.08.44.03.66.11.23.25.36.5.4.2.05.35.02.53-.09.3-.18.27-.5.31-.84.02-.11.02-.7 0-.78l1.04-.38c0 .25-.04.52-.1.82a5 5 0 0 1-.25.93c-.2.57-.44.86-.75 1.38-.37.63-.57.98-1.03 1.56-.21.27-.36.39-.56.66-.26.33-.34.56-.6.9-.32.44-.5.73-.93 1.07-.7.55-1.15.1-2.1.84l-.22 1.03 1.44.53 1.28.25.44-.25c-.01-.3.03-.51.22-.75.21-.27.44-.35.78-.4.36-.06.75.03 1.03-.22.35-.31.35-.92.63-1.47a12.66 12.66 0 0 1 3-3.9c.61-.6 1.13-.77 1.65-1.45.25-.32.52-.46.53-.87.01-.28-.14-.42-.21-.69-.1-.38-.2-1-.2-1 1.53.75.98.65 1.26 1.4.22.62-.03 1.05.06 1.7.11.75.47 1.1.53 1.87.08.9-.14 1.42-.31 2.31-.15.79-.13 1.28-.47 2a3.85 3.85 0 0 1-1.16 1.57c-.2.17-.36.25-.59.4l-.12 1.03 1.12.38 1.63.44.37-.35c.16-.65-.05-1.61.4-1.69.41-.06.7 0 .79-.3.04-.14.06-.33.1-.63.21-1.89.41-3.65.62-4.5.23-.97.21-1.18.4-1.91.18-.66-.08-.28.41-1.69.73-2.1-.2-2.37-1.06-3.65-.46-.7-.62-.95-.69-1.5-.1-.82.16-1.5.12-2.75a42.32 42.32 0 0 1 0-2.88c.12-.05.23-.12.35-.19 1.17-.64 1.63-.83 2.37-2.46.23-.5.32-1 .32-1.47 0-.34-.07-.66-.1-1.03-.03-.4-.19-.64-.31-.94a3.17 3.17 0 0 0-.56-.85c-.78-.92-1.78-1.13-2.72-1.46-1.48-.54-2.5-.44-4.13-.57-1.67-.13-2.6-.15-4.28-.06-2 .12-3.13.52-5.12.75-1.92.22-2.98.37-4.9.4-2.27.05-4.43-.45-5.79-.34-2.45.21-2.5.76-6.19 1.07-1.92.15-3.84.18-3.84.18l-2.16-.68c.86-.31 1.07-.5 1.47-1.04.27-.36.23-.67.56-1.06.27-.31.45-.62.78-.97a2.2 2.2 0 0 0-.93-.43c-.37-.08-.58-.05-.94 0-.5.05-.77.12-1.22.34-.36.18-.62.36-.84.6 0 0-1.29-.84-2.19-1.23-1.12-.48-1.6-.7-3-.9zm1.97 11.9h.06l-.03.04-.03-.03z'/%3e%3cg fill='none' stroke='%23fedf00' stroke-width='.99' stroke-linecap='round'%3e%3cpath d='m568.77 359.52-.76.24c-.87.4-1.58.42-2.6.5-2.65.2-4.27-1.06-7-.85-1.4.11-2.03 1.2-3.46 1.55-.65.16-1.03.23-1.7.28l.51-1.03s-1.28.26-2.11.26c-.6 0-.94-.03-1.53-.13l1.02-.95s-.81-.13-1.3-.33a3.92 3.92 0 0 1-1.05-.63c.66-.12 1.03-.2 1.69-.36 1.55-.38 2.04-1.14 3.89-1.32 1.15-.11 3.03-.05 7.64.72 3.03.5 4.38.26 5.53-.26.77-.35 1.02-1.01 1.1-1.79.1-.78-.4-1.4-.87-1.81-.12-.1-.44-.33-1.1-.36'/%3e%3cpath fill='%23fcd900' stroke-width='.51' stroke-linecap='butt' d='M524.8 350.61c-.53-.07-.88.01-1.34.3-.48.29-.54.69-.89 1.13.45.1.7.36 1.14.26.35-.09.53-.24.77-.51.31-.36.43-.68.42-1.16l-.1-.02z'/%3e%3cpath d='M536.04 363.79s.26.48.4.8c.25.55.38.88.53 1.47.2.8.11 1.28.24 2.1.02.14.05.26.08.37l-.05 1.13m6.8-6.95-.35 1.33c-.36 1.36-.68 2.09-.95 3.46-.04.23-.08.45-.1.65m-10.86-3.98c.79.18.54 3.36 1.79 4.09'/%3e%3cpath stroke-linecap='butt' d='m560.12 369.78.38-.25a8.15 8.15 0 0 0 2.69-1.79'/%3e%3cpath d='M552.38 368.02c3.54-.88 5.9-2.65 7.59-2.87m-4-1.54c.3-.01.58-.03.83-.07 1.47-.2 1.7.69 2.73 1.26 1.85 1.04 2.1 2.3 4.3 3.36l.32.15.84.43'/%3e%3cpath fill='%23fcd900' stroke-width='.51' stroke-linecap='butt' d='M517.7 354.53c.27.07.43.08.7.05.34-.03.5-.23.82-.24.27-.01.47-.04.69.12.14.1.2.19.28.34.08.17.16.28.12.47-.06.28-.32.42-.61.42-.24 0-.44-.06-.55-.27a.47.47 0 0 1-.03-.4c-.29.11-.5.12-.78.02-.3-.1-.48-.24-.64-.51z'/%3e%3c/g%3e%3cpath d='M525.13 364.17c-.8-.24-1.97-.83-1.97-.83.33-.25.6-.26.87-.55.39-.4.37-.79.59-1.32.22-.52.18-.95.67-1.34.3-.23.76-.27 1.12-.17.35.11.76.4.85.77.13.56-.16.88-.25 1.45-.08.57-.3.9-.2 1.46.07.38.23.52.36.9 0 0-1.26-.14-2.04-.37zm-.99.95a.63.63 0 1 1 1.26-.02.63.63 0 0 1-1.26.02zm-1.76-16.51-.14-.1c-.39-.31-.42-.66-.6-1.11-.18-.44-.26-.7-.32-1.16-.05-.4 0-.64 0-1.05 0-.36.04-.57 0-.94-.04-.38-.03-.61-.21-.94-.1-.18-.4-.34-.31-.42.09-.1.25-.02.42 0 .4.04.63.16.94.42.38.3.53.57.67 1.04.17.55.25.9.4 1.47.1.3.14.47.3.74.15.27.31.38.52.63l-.02.02c-.3.33-.44.54-.77.83-.3.27-.56.4-.85.58l-.03-.01zm3.6 10.64 2.23 1.03a9.24 9.24 0 0 0 3.5-3.92c.88-1.72 1.02-2.65 1.36-4.31l-1.79-.58-.35.07c-.56 1.72-.7 2.7-1.62 4.2-.8 1.28-1.72 2.3-2.65 3.03l-.68.48zm4.94 18.12c.36-.5.51-.81.92-1.26.46-.5.8-.7 1.31-1.15.16.01.34-.02.48.07a9 9 0 0 1-.52 2.75c-.14.39-.16.64-.4.98-.15.22-.28.31-.47.51-.5-.74-1.33-1.3-1.32-1.9zm33.01 1.85c.57.21.92.27 1.47.54.61.3.9.57 1.47.94.02.16.1.32.06.48a8.97 8.97 0 0 1-2.79.26c-.41-.03-.66.02-1.05-.1-.26-.1-.38-.2-.63-.32.58-.7.88-1.64 1.47-1.8zm-9.76-2.04c.57.21.92.27 1.47.54.6.3.9.57 1.47.94.02.16.1.32.06.48a8.98 8.98 0 0 1-2.79.26c-.41-.03-.66.02-1.05-.1-.26-.1-.38-.2-.63-.32.58-.7.88-1.64 1.47-1.8zm-17.34 2.13c.57.21.92.27 1.47.54.61.3.9.57 1.47.94.02.16.1.32.06.48a9 9 0 0 1-2.79.26c-.41-.03-.66.02-1.05-.1-.26-.1-.38-.2-.63-.32.58-.7.88-1.64 1.47-1.8zm-8.98-29.8c-.61-.28-1.05-1.04-.66-1.6.15-.21.41-.17.57-.39.18-.27.14-.5.13-.84 0-.37-.14-.57-.2-.94-.08-.4-.15-.64-.14-1.05 0-.63-.04-1.08.34-1.57.25-.32.66-.6.83-.62.14.14-.06.5-.04.83.04.46.13.71.3 1.15.2.56.47.8.7 1.36.2.52.4.81.41 1.37.02.45-.02.73-.2 1.15a2 2 0 0 1-.62.84c-.27.22-.45.32-.8.42-.24.02-.4-.01-.62-.11z' fill='%230065bd'/%3e%3c/g%3e%3cuse xlink:href='%23b' y='36.59'/%3e%3cpath d='M412.66 249.25h82.18v82.02h-82.18zm90.94 0h82.18v82.02H503.6zm-90.63 153.16c.23 1.48.76 4.01 2.16 6.6 1.48 2.34.94 2.28 4.28 6.01 1.64 1.84 4.21 3.41 6.23 4.5 2.02 1.08 3.51 1.62 6.84 2.49 6.52 1.71 11.09 1.82 16.57 1.6 4.28-.17 7.55-.7 10.25-1.06 3.86-.52 6.73-.83 11.12-1.01 2.13-.1 4.15-.11 6.14 0 2.4.13 4.78.5 7.3 1a79.61 79.61 0 0 1 10.97 3.2l.01-85.66-82.19-.02v58.54s.17 2.86.32 3.8zm172.51-.02a20.75 20.75 0 0 1-2.16 6.6c-1.48 2.34-.94 2.28-4.28 6-1.64 1.85-4.21 3.42-6.23 4.5-2.02 1.1-3.51 1.63-6.84 2.5-6.52 1.71-11.09 1.82-16.57 1.6-4.28-.17-7.55-.7-10.25-1.06-3.86-.52-6.73-.83-11.12-1.01a63.34 63.34 0 0 0-6.14 0c-2.4.13-4.78.5-7.3 1-5.45 1.1-11.04 3.2-11.04 3.2l.05-85.66 82.2-.02v58.54s-.17 2.86-.32 3.8z' fill='none' stroke='%23703d29' stroke-width='.8'/%3e%3c/svg%3e\"},8679:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 6'%3e%3cpath fill='%2300732f' d='M0 0h12v2H0z'/%3e%3cpath fill='%23fff' d='M0 2h12v2H0z'/%3e%3cpath d='M0 4h12v2H0z'/%3e%3cpath fill='red' d='M0 0h3v6H0z'/%3e%3c/svg%3e\"},133:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath d='M0 0h900v600H0z' fill='%23d32011'/%3e%3cpath d='M0 0h300v600H0z'/%3e%3cpath d='M600 0h300v600H600z' fill='%23007a36'/%3e%3cpath d='M486.204 529.52c-5.912-1.257-8.51-4.161-8.774-9.8-.2-4.331 1.145-7.437 4.55-10.479.839-.75 1.262-1.277.939-1.17-17.525 5.769-37.106 6.827-54.65 2.955-2.99-.66-9.202-2.352-10.946-2.978-.32-.116.31.654 1.397 1.706 1.221 1.182 2.375 2.667 2.994 3.866.982 1.883 1.018 2.056 1.018 5.39 0 2.954-.1 3.658-.695 4.97-1.237 2.734-3.523 4.435-7.241 5.385-4.745 1.217-13.838-.34-33.982-5.819-17.864-4.85-18.453-4.962-25.449-4.75-3.337.104-7.77.519-12.874 1.218-13.622 1.842-19.22 2.027-27.093.906-12.525-1.79-21.251-6.97-25.181-14.954-.523-1.066-.899-1.996-.825-2.068.074-.074 1.142.128 2.376.44 7.285 1.87 19.92 2.035 25.578.342.998-.299 1.054-.27-2.064-1.237-4.55-1.413-9.016-4.395-12.052-8.05-2.161-2.603-4.91-8.23-6.081-12.44-.5-1.797-.859-3.314-.805-3.374.054-.054 1.72.706 3.7 1.693 10 4.977 17.897 6.886 26.863 6.498 4.347-.185 6.596-.495 14.544-1.996 7.517-1.417 9.248-1.586 14.471-1.417 3.587.114 5.46.32 7.226.789l2.387.638 1.483-.924c1.749-1.09 6.188-4.557 6.028-4.716-.34-.34-7.99.658-11.05 1.445-1.956.499-3.619.85-3.692.778-.12-.12.906-.766 3.053-1.94.81-.443.45-.433-4.1.1-3.369.393-4.816.63-7.374 1.218-1.142.259-.48-.334 1.329-1.19.93-.44 1.64-.844 1.577-.898-.224-.204-6.77.758-9.068 1.33-1.303.322-2.431.53-2.503.458-.072-.072.487-.569 1.243-1.102.757-.533 1.346-1.002 1.306-1.038-.16-.16-7.697.803-9.62 1.224-1.139.25-2.129.395-2.2.325-.072-.071.926-.71 2.215-1.425l2.35-1.293-3.54-.086c-1.946-.044-4.237.044-5.09.2-.851.16-1.588.245-1.636.2-.048-.049.918-.713 2.142-1.478 2.068-1.287 4.303-3.353 3.982-3.678-.08-.076-.97.026-1.982.225-2.52.495-5.962.19-8.697-.768a84.394 84.394 0 0 0-4.79-1.477l-2.545-.689 1.796-.373c.99-.206 3.28-1.048 5.09-1.876 1.81-.829 3.968-1.749 4.79-2.052 1.797-.663 4.625-.729 6.54-.154 1.566.473 1.652.335.806-1.257-1.857-3.473-4.342-4.547-9.162-3.948-1.457.18-2.808.459-3.002.622-.193.164-.51.926-.708 1.703-.5 1.972-1.497 3.639-2.5 4.156-.945.49-2.349.315-2.913-.366-.547-.658-1.002-.519-1.597.491-.595 1.006-2.12 2.07-2.97 2.076-1.006 0-2.222-.872-2.739-1.96-.383-.806-.638-1.03-1.014-.878-1.191.479-2.68.489-3.588.02-.903-.467-1.098-.447-4.465.439-4.202 1.112-10.156 1.51-13.314.894-5.054-.986-10.479-4.291-14.1-8.587l-.538-.638 1.736.409c2.024.479 6.647.539 9.222.124 2.738-.44 15.718-3.401 15.718-3.587 0-.09-2.78-.12-6.177-.07-4.465.066-7.062-.04-9.358-.375-7.614-1.118-13.732-4.056-19.011-9.128-2.202-2.116-6.016-6.567-5.805-6.776.05-.052 1.032.365 2.182.926 3.341 1.63 6.88 2.196 15.864 2.529 4.281.16 8.627.363 9.655.453 1.03.09 1.866.06 1.856-.068-.01-.128-1.318-1.177-2.914-2.327-4.226-3.046-10.27-9.178-12.687-12.874-1.968-3.004-2.946-5.044-2.946-6.138 0-.325-.22-1.138-.487-1.804-.667-1.67-5.898-5.862-9.45-7.573-1.426-.69-2.606-1.337-2.616-1.437-.036-.333 3.388-1.703 5.142-2.056 1.303-.263 2.275-.263 3.992-.004 1.252.19 2.335.286 2.403.214.074-.07-.419-.51-1.088-.974-.67-.467-1.477-1.21-1.796-1.651l-.57-.804 1.71.399c2.884.678 3.022.45.459-.763-2.563-1.217-4.73-3.07-5.639-4.82-.483-.938-.479-.966.05-.739.719.3 3.699.58 3.699.344 0-.1-.563-.467-1.25-.819-.686-.35-1.956-1.34-2.814-2.201-1.343-1.345-1.844-1.633-3.587-2.064-1.118-.273-2.579-.822-3.253-1.218-1.473-.864-4.098-3.433-5.33-5.213-.487-.715-.944-1.238-1.012-1.174-.14.144 3.723 9.07 6.048 13.964.89 1.876 1.557 3.481 1.477 3.561-.323.32-3.672-2.036-6.08-4.283-9.816-9.15-16.866-22.914-15.672-30.589.539-3.463 2.69-5.902 6.355-7.201.807-.292 1.465-.611 1.465-.713 0-.104-.519-.533-1.153-.954-.635-.419-2.42-2.152-3.968-3.848-3.64-3.992-5.236-5.609-6.687-6.776-.65-.52-1.108-1.024-1.014-1.118.092-.094 1.497-.246 3.126-.344 2.8-.163 5.529.228 8.646 1.246.33.108-.16-.523-1.085-1.401-.925-.878-3.098-3.214-4.83-5.19-1.73-1.976-4.078-4.49-5.218-5.589L226 336.407l2.303-.333c2.306-.34 4.651-.147 7.162.579 1.746.507 1.948.347.705-.555-2.671-1.936-4.703-5.126-5.779-9.082-.788-2.898-2.05-10.14-2.411-13.832-.515-5.28.467-10.355 2.431-12.594 1.034-1.174 1.046-1.33.26-2.875-1.368-2.674-1.324-2.85.339-1.357 1.33 1.198 2.365 1.733 2.365 1.222 0-.088-.655-.998-1.45-2.022-1.486-1.906-3.406-5.19-3.793-6.475l-.216-.719.958.679c1.038.742 3.601 1.623 3.601 1.237 0-.13-.29-.495-.645-.806-1.191-1.058-4.275-6.2-4.87-8.124-.206-.652-.16-.646 1.74.246 1.94.908 6.601 2.03 6.959 1.676.103-.105-.236-.67-.753-1.257-1.93-2.196-2.76-4.625-3.178-9.271-.1-1.15-.449-2.685-.772-3.413-.32-.733-.543-1.374-.489-1.426.054-.051.719.24 1.485.645.764.407 1.465.739 1.557.739.09 0-.24-.715-.735-1.593-1.15-2.036-2.06-5.609-2.265-8.87l-.16-2.561 1.064 2.147c.767 1.543 1.583 2.615 2.908 3.813 1.014.918 1.904 1.61 1.976 1.537.074-.072-.355-1.27-.952-2.659-2.948-6.86-3.662-14.607-1.942-20.978l.33-1.227.534 1.716a15.37 15.37 0 0 0 1.45 3.144c.99 1.54 3.542 4.146 3.253 3.317-.743-2.111-1.447-5.932-1.098-5.932.124 0 .29.172.371.383.22.57 2.326 1.943 3.36 2.19l.898.216-1.357-1.47c-1.72-1.864-2.543-3.209-3.294-5.389-.325-.95-.804-1.962-1.064-2.249-.26-.287-2.22-1.844-4.35-3.463l-3.885-2.944 4.58-.186c2.522-.1 4.691-.2 4.831-.223.136-.02-.02-.48-.35-1.014-.329-.535-.822-1.849-1.097-2.918-.274-1.072-.779-2.591-1.114-3.378-.335-.786-.535-1.51-.439-1.608.096-.098 1.391 1.085 2.874 2.63l2.695 2.805-.723-1.797c-.399-.988-.954-2.854-1.237-4.143a12.136 12.136 0 0 0-1.787-4.338c-.704-1.093-1.223-2.041-1.157-2.11.067-.067.608.248 1.197.7.593.45 1.126.772 1.184.712.185-.184-.45-7.17-.89-9.82-.234-1.398-.374-2.587-.312-2.65.276-.27 3.513.64 4.411 1.238.543.368 1.428 1.318 1.962 2.116l.975 1.447.008-2.804.006-2.802 1.137 2.027c1.69 3.006 1.817 3.048 1.807.61 0-1.152.22-2.955.495-4.013.35-1.353.463-2.734.379-4.676-.1-2.383-.06-2.707.32-2.395.239.2.77 1.101 1.18 2.007l.75 1.647.446-2.994c.248-1.646.46-4.567.48-6.487.033-4.018.259-4.135 1.56-.812.451 1.15.93 2.156 1.068 2.241.134.08.246-.852.246-2.08 0-1.482.247-3.083.738-4.78.407-1.401.85-3.405.986-4.45l.246-1.897.573 2.243.574 2.246.224-1.68c.12-.927.565-2.667.984-3.873.587-1.677.764-2.774.764-4.714 0-2.176.06-2.48.434-2.168.24.2.59.852.784 1.457.579 1.816.804 1.729 1.533-.583.529-1.688.687-2.87.673-5.006-.024-2.754-.016-2.786.518-2.096.56.72 1.144 2.408 1.148 3.302 0 1.086.5.728 1.018-.739.3-.842 1.188-2.688 1.976-4.101 2.635-4.75 3.613-6.907 4.301-9.497l.683-2.575 1.403 2.11c1.45 2.18 2.044 3.552 2.435 5.614l.228 1.198.724-2.216c.4-1.217 1.803-4.475 3.12-7.239 1.318-2.764 2.555-5.709 2.755-6.543.2-.834.433-1.517.519-1.517.273 0 2.083 2.914 2.69 4.331.727 1.693 1.501 5.402 1.501 7.182 0 .749.134 1.361.3 1.361.163 0 .299-.143.299-.32 0-.175.79-2.025 1.756-4.115 2.172-4.694 3.246-7.644 3.51-9.626.111-.839.313-1.591.452-1.677.75-.463 3.194 4.49 3.9 7.9.208 1.018.46 1.852.553 1.852.094 0 .939-1.582 1.873-3.519 4.016-8.323 9.64-15.11 19.688-23.742 2.383-2.048 5.4-4.738 6.699-5.972l2.365-2.245-.18 3.742c-.34 7.074-1.856 12.814-4.495 16.992-.439.695-.794 1.323-.794 1.397 0 .074 1.018-.333 2.261-.908 4.401-2.032 6.076-2.321 13.457-2.323 3.773 0 6.892.131 7.302.305.648.276.275.539-4.192 2.934-8.333 4.475-13.313 8.064-17.864 12.874-2.244 2.375-4.607 5.461-5.036 6.577-.12.32.395.61 1.956 1.112 1.986.639 2.723 1.163 1.637 1.163-.266 0-1.377.424-2.475.939-1.657.784-2.685 1.656-6.178 5.21-3.074 3.123-4.67 4.51-5.988 5.2-1.433.751-1.596.905-.824.76.609-.113.974-.06.974.143 0 .18-.12.323-.26.323s-1.57 1.214-3.167 2.695c-1.597 1.483-3.048 2.694-3.23 2.694-.181 0-.251.08-.16.172.095.094.8-.04 1.558-.3 1.405-.479 3.21-.622 3.545-.287.103.1-.226.529-.729.952-.505.425-1.62 1.856-2.479 3.186-.862 1.33-2.026 2.874-2.587 3.429-.962.958-.978 1.006-.273.818 1.477-.391 3.593-.563 3.593-.29 0 .153-.38.5-.849.78-1.078.634-2.654 2.446-4.7 5.388-.886 1.278-1.583 2.322-1.55 2.322.035 0 .955-.256 2.045-.565 2.688-.77 3.062-.42 1.107 1.038-1.928 1.44-6.277 7.61-5.363 7.61.966 0 4.73-2.075 6.262-3.453.818-.734 1.588-1.337 1.712-1.337.39 0-.096 4.072-.772 6.503-.894 3.226-2.52 6.208-4.491 8.243-1.968 2.036-1.591 2.222 1.383.673 1.104-.579 2.056-1.048 2.11-1.048.056 0-.599 1.112-1.457 2.471-1.473 2.336-4.565 5.777-6.214 6.918l-.748.52 1.048-.168c.578-.094 1.704-.58 2.509-1.074.802-.5 1.507-.858 1.564-.799.288.28-2.367 4.152-4.177 6.098-2.108 2.266-2.096 2.529.116 1.749.702-.246 1.345-.386 1.423-.308.25.25-3.24 4.858-5.078 6.707-.978.984-2.441 2.24-3.25 2.786-.812.551-1.476 1.11-1.482 1.244-.014.473 1.357-.156 3.373-1.541 5.2-3.58 5.876-3.593 2.505-.046-2.026 2.127-2.867 3.297-3.98 5.537-.775 1.562-1.338 2.914-1.248 3.002.088.09.799-.859 1.577-2.112 2.695-4.321 7.186-8.311 10.443-9.282.818-.239 1.537-.395 1.597-.339.06.06-.22.699-.619 1.423-1.162 2.122-2.196 5.53-3.184 10.471-1.251 6.278-1.97 8.822-2.998 10.619l-.868 1.517.803 2.23c.71 1.975.802 2.654.798 5.967-.012 5.635-1.377 10.425-5.637 19.727-.918 2.016-1.676 3.804-1.676 3.978 0 .554 1.587-.046 2.99-1.138.738-.571 1.389-.902 1.445-.735.147.445-1.034 4.581-1.892 6.623-.41.974-.743 1.84-.743 1.928 0 .465.79 0 2.146-1.267l1.523-1.421-.212 1.347c-.419 2.678-1.46 6.18-2.449 8.215-.559 1.144-1.008 2.116-1.008 2.156 0 .32 1.956-.719 2.934-1.557.864-.738 1.17-.882 1.098-.505-.056.29-.253 1.401-.435 2.471-.48 2.795-1.677 6.275-2.727 7.924-.499.787-.832 1.497-.746 1.583.487.489 3.545-2.72 5.066-5.313l.792-1.348v1.39c.004 1.52-1.118 6.173-2.076 8.602-.333.839-.539 1.533-.459 1.533.08 0 .93-.53 1.882-1.181.952-.65 2.376-1.457 3.168-1.797 1.511-.649 3.776-1.124 3.776-.794 0 .106-.525 1.237-1.161 2.507-1.37 2.734-2.603 6.072-3.214 8.686-.603 2.609-.32 3.421 2.908 8.312 4.543 6.886 7.99 13.538 9.86 19.041 1.21 3.541 1.537 7.775.779 10.008-.507 1.477-.44 1.996.174 1.381.612-.614.762-.403 1.077 1.517.605 3.657.695 5.523.36 7.385-.19 1.038-.256 1.97-.146 2.076.331.328 1.912-1.804 2.495-3.363.3-.806.619-1.347.708-1.198.088.146.471 1.477.853 2.96.495 1.923.698 3.567.708 5.739.012 2.487.086 2.982.41 2.714.618-.51 1.433-2.309 1.85-4.077.255-1.104.453-1.477.618-1.178.545.97 1.478 6.655 1.497 9.126l.02 2.646.54-1.217c.299-.669.642-1.928.762-2.799.327-2.383.806-1.447.984 1.92.08 1.587.263 2.77.403 2.635.136-.14.471-1.327.745-2.639.552-2.68.449-8.223-.19-9.963-.2-.543-.28-1.072-.18-1.172.32-.313 3.545 2.718 5.625 5.285 4.918 6.064 6.499 12.21 5.19 20.18-.288 1.77-.473 3.265-.412 3.325.06.06.815-.004 1.671-.14 1.972-.315 4.535.044 7.625 1.072 2.505.838 18.233 8.513 21.896 10.69 5.836 3.467 7.872 7.396 6.794 13.104-.34 1.79-.32 2.166.16 3.413.379.994.61 1.29.798 1.018.19-.29.687.08 1.888 1.403 1.916 2.108 3.597 5.13 4.06 7.296.375 1.74.719 1.752 1.178.04.311-1.154.285-1.218-1.533-3.653-3.902-5.233-5.753-10.806-5.585-16.8l.084-3.048 1.792 2.547c3.078 4.363 6.812 7.716 10.782 9.668 2.296 1.132 5.437 2.208 5.695 1.95.09-.087-.32-.886-.91-1.776-1.53-2.301-3.014-5.489-3.597-7.744-.709-2.74-.38-11.68.427-11.68.11 0 .44.454.739 1.005.882 1.637 3.964 4.44 8.277 7.525 5.257 3.758 7.341 5.62 9.736 8.682 2.236 2.869 4.825 7.669 5.849 10.859.385 1.191.778 2.17.878 2.17.1 0 .419-.66.71-1.472.994-2.766 4.517-5.443 8.853-6.73 1.904-.565 5.904-.633 8.055-.136l1.497.345 1.378-1.217c2.694-2.368 6.447-3.527 10.618-3.278 2.108.126 2.847.32 4.54 1.188l2.019 1.038 2.136-1.062c1.796-.89 2.535-1.082 4.606-1.192 4.14-.22 8.024 1.018 10.659 3.398l1.238 1.121 1.702-.379c4.218-.944 9.17-.028 12.834 2.375 1.89 1.242 3.793 3.605 4.172 5.176.108.45.291.822.407.822.116 0 .451-.808.749-1.796.846-2.823 3.582-8.104 5.562-10.73 2.352-3.126 4.904-5.444 9.88-8.975 4.663-3.313 6.687-5.133 8.28-7.445l1.133-1.642.26.846c.14.465.33 2.615.42 4.778.239 5.833-.807 9.491-4.123 14.403-.499.739-.832 1.424-.738 1.517.283.284 3.493-.848 5.848-2.065 4.092-2.116 8.307-6.02 10.986-10.176.627-.97 1.238-1.768 1.363-1.77.34-.004.272 5.618-.09 7.652-.734 4.152-2.546 8.315-5.053 11.63-2.036 2.687-2.146 2.93-1.83 4.023.488 1.704.692 1.65 1.185-.308.585-2.319 1.96-4.674 4.108-7.034 1.157-1.273 1.656-1.636 1.844-1.357.479.719 1.351-1.796 1.132-3.277-.565-3.825-.535-5.763.115-7.497.779-2.082 2.695-4.276 5.186-5.936 2.695-1.797 20.938-10.834 23.463-11.62 3.277-1.023 5.575-1.314 7.517-.955.924.17 1.702.31 1.736.31.032 0-.132-.845-.363-1.873-.685-3.062-.838-8.706-.305-11.207.894-4.202 2.646-7.625 5.774-11.277 1.856-2.172 4.824-4.867 5.076-4.615.075.08-.08 1.07-.346 2.203-.353 1.497-.447 2.927-.339 5.21.14 3.08.713 6.287 1.122 6.287.112 0 .273-1.13.36-2.509.199-3.141.658-4.2.91-2.09.1.799.444 2.056.774 2.803l.598 1.345.02-2.647c.02-2.427.95-8.15 1.478-9.09.135-.239.469.44.868 1.777.359 1.198.958 2.555 1.337 3.014l.683.842.01-2.934c.01-2.71.638-6.507 1.397-8.477.28-.718.315-.688.858.753.583 1.537 2.176 3.724 2.495 3.413.096-.094.05-1.166-.1-2.381-.323-2.565.264-8.972.819-8.972.1 0 .569.37 1.052.822l.874.825-.709-1.348c-.638-1.21-.706-1.72-.688-4.942.02-3.09.133-3.92.828-5.936 1.99-5.782 5.499-12.608 10.1-19.66 1.45-2.224 2.78-4.421 2.954-4.882.628-1.671-1.318-8.304-3.717-12.68-.559-1.013-.946-1.907-.866-1.987.227-.227 3.4.673 4.738 1.347.667.336 1.853 1.064 2.635 1.621.779.559 1.417.952 1.417.878 0-.073-.393-1.317-.878-2.768-.79-2.375-1.158-4.098-1.637-7.699-.18-1.36-.124-1.31 1.697 1.47 1.417 2.167 2.175 2.985 3.6 3.892.827.527.825.513-.385-1.725-1.161-2.152-2.375-6.116-2.854-9.315l-.22-1.461 1.246 1.211c1.144 1.11 3.026 2.12 3.024 1.621 0-.116-.246-.615-.543-1.108-1.205-2.008-3.034-7.828-3.046-9.696-.004-.663.106-.613 1.477.673 1.23 1.147 2.112 1.696 2.112 1.31 0-.04-.463-1.249-1.026-2.684-1.126-2.87-1.876-5.808-1.565-6.123.112-.11.569.153 1.022.584.864.83 3.014 1.865 3.294 1.587.09-.09-.66-1.95-1.661-4.131-5.613-12.228-6.976-19.655-4.735-25.828l.743-2.05-.729-1.246c-1.113-1.9-1.8-4.171-2.826-9.341-1.118-5.645-2.14-9.182-3.343-11.565-.487-.968-.819-1.824-.739-1.908.31-.307 3.254.902 4.95 2.036 2.08 1.387 5.11 4.525 6.723 6.956.632.954 1.227 1.66 1.317 1.57.094-.093-.331-1.18-.944-2.42-.792-1.605-1.848-3.024-3.673-4.942-3.053-3.208-2.668-3.633.945-1.038 2.614 1.876 3.946 2.622 4.4 2.469.174-.056-.235-.467-.908-.912-.672-.445-2.015-1.587-2.98-2.535-1.94-1.902-5.852-7.06-5.459-7.202.134-.05 1.064.188 2.066.523.998.34 1.892.615 1.984.615.09 0-.882-1.046-2.161-2.325-2.06-2.062-3.833-4.511-4.451-6.168-.16-.44.073-.355 1.077.371 1.124.819 3.248 1.683 3.5 1.43.051-.05-.6-.653-1.446-1.338a21.862 21.862 0 0 1-2.846-2.934c-1.257-1.62-3.4-4.958-3.4-5.295 0-.09.887.3 1.969.864 2.982 1.553 3.293 1.325 1.158-.862-2.855-2.926-4.72-7.513-5.13-12.607l-.188-2.37 1.992 1.691c2.555 2.17 6.487 4.184 6.487 3.326 0-.094-.954-1.573-2.12-3.284-1.437-2.115-2.614-3.477-3.664-4.245-1.505-1.098-1.523-1.132-.719-1.226.46-.052 1.53.112 2.382.36.858.251 1.606.405 1.67.339.066-.06-.243-.493-.678-.958-.44-.46-1.418-1.757-2.176-2.874-1.303-1.923-2.301-2.974-3.982-4.192-.739-.539-.739-.539.904-.387.906.084 1.984.25 2.395.367.703.2.685.15-.28-.812-.562-.567-1.726-2.116-2.582-3.443-.856-1.328-1.982-2.769-2.49-3.2-.514-.431-.935-.878-.935-.994 0-.235 3.034.024 4.172.355.499.146-.01-.485-1.611-2.008-1.286-1.217-2.72-2.489-3.194-2.814-1.13-.798-1.088-1.166.11-.948.772.14.603-.012-.824-.744-1.342-.69-2.855-2.004-5.988-5.19-4.122-4.202-5.33-5.102-7.858-5.858-.699-.208-1.274-.465-1.274-.573 0-.108.944-.5 2.096-.868 1.154-.372 2.096-.823 2.096-1.004 0-.525-3.218-4.683-5.37-6.934-4.8-5.03-11.42-9.615-20.378-14.112-2.136-1.072-2.206-1.142-1.497-1.437.427-.174 3.463-.32 7.037-.333 7.032-.026 8.829.25 13.26 2.043 1.365.553 2.443.919 2.395.819l-1.341-2.735c-2.3-4.674-3.288-8.882-3.583-15.269l-.174-3.744 2.355 2.267c1.298 1.246 4.24 3.872 6.543 5.836 10.16 8.663 16.97 16.994 20.479 25.056.559 1.277 1.098 2.32 1.204 2.32.103 0 .339-.78.523-1.725.63-3.238 2.986-8.13 3.828-7.944.16.032.459.908.667 1.944.493 2.443.958 3.696 3.273 8.802 1.052 2.325 1.912 4.38 1.912 4.567 0 .187.116.34.256.34s.335-1.11.433-2.47c.1-1.357.449-3.345.782-4.417.599-1.93 2.669-5.716 3.226-5.902.16-.054.45.613.652 1.483.2.868 1.497 3.936 2.88 6.818 1.386 2.88 2.747 6.162 3.028 7.292l.511 2.055.56-2.195c.522-2.076 1.682-4.367 3.107-6.156l.639-.802.559 2.371c.339 1.445 1.217 3.659 2.251 5.665l3.228 6.253c.842 1.629 1.584 2.774 1.652 2.545.505-1.703 1.192-3.274 1.565-3.58.387-.324.42-.069.24 2.055-.18 2.176-.116 2.683.654 4.996l.859 2.575.646-1.47c1.038-2.349 1.318-2.215 1.318.62 0 2.011.173 3 .888 5.033.49 1.394.898 2.908.898 3.374.01 1.297.465.714.874-1.124.206-.91.463-1.71.575-1.78.114-.069.22.718.244 1.748.024 1.046.399 3.094.854 4.64.659 2.242.794 3.22.706 5.136-.105 2.33.104 3.018.515 1.693.386-1.238 2.006-4.71 2.196-4.71.106 0 .14 1.021.08 2.275-.066 1.251.1 3.776.36 5.612.267 1.837.518 3.743.562 4.236.076.824.164.73 1.068-1.122.539-1.112 1.086-2.022 1.207-2.022.122 0 .17 1.246.106 2.769-.08 1.916.028 3.333.36 4.61a18.283 18.283 0 0 1 .478 3.813c0 1.09.12 1.98.26 1.98s.788-.978 1.425-2.172l1.158-2.172.152 2.655.15 2.659.99-1.382c1.189-1.656 3.047-2.814 4.95-3.073 1.572-.216 1.576-.2 1.065 1.986-.367 1.57-1.143 9.92-.952 10.259.072.13.535-.108 1.028-.523 1.505-1.265 1.884-.992.739.539-1.192 1.589-2.002 3.453-2.465 5.663-.24 1.157-.635 2.574-.879 3.153-.24.583-.367 1.132-.28 1.222.089.09 1.165-.902 2.388-2.206 1.222-1.303 2.295-2.295 2.385-2.205.212.213-2.103 7.36-2.662 8.213-.42.643-.406.649 2.295.838 1.497.108 3.573.196 4.619.196 1.046 0 1.892.1 1.88.224-.012.123-1.884 1.668-4.164 3.433-4.141 3.207-4.145 3.213-4.784 5.137a15.175 15.175 0 0 1-3.305 5.537c-.51.553-.873 1.062-.805 1.13.286.285 1.793-.559 3.034-1.707l1.337-1.227-.17 1.148a49.62 49.62 0 0 1-.544 2.868c-.208.948-.29 1.722-.18 1.722.388 0 2.661-2.565 3.17-3.579.287-.566.754-1.712 1.044-2.544l.525-1.511.559 1.796c.463 1.477.559 2.695.539 6.886-.02 4.497-.12 5.43-.813 8.028-.43 1.617-1.257 4.032-1.836 5.37-.579 1.34-.994 2.494-.918 2.57.245.246 2.275-1.497 3.201-2.75.505-.683 1.31-2.05 1.789-3.038l.872-1.797-.146 2.994c-.16 3.262-1.032 6.573-2.36 8.954-.424.759-.71 1.377-.636 1.377.07 0 .869-.419 1.77-.928.905-.509 1.644-.854 1.644-.766 0 .092-.26.61-.585 1.158-.32.542-.73 1.996-.91 3.233l-.591 4.132c-.32 2.24-1.108 3.98-2.59 5.708-.594.699-1.033 1.308-.971 1.363.33.292 4.415-.512 6.024-1.185 3.17-1.33 3.062-1.387 1.932 1.094-1.226 2.69-2.286 4.397-3.7 5.962-.919 1.018-.989 1.187-.48 1.187.326 0 1.352-.383 2.282-.852.926-.469 1.686-.735 1.686-.589 0 .954-3.085 5.996-4.83 7.884-.679.739-1.142 1.338-1.03 1.338.49 0 2.202-1.042 3.126-1.903.982-.918 1.002-.922.786-.191a14.477 14.477 0 0 1-.784 1.856c-.739 1.471-.719 1.597.419 2.934 2.874 3.353 3.186 9.202 1.118 20.718-1.511 8.404-3.134 11.79-7.006 14.647-1.29.952-1.022 1.066 1.044.44 2.155-.66 5.05-.863 6.992-.506.97.18 1.816.38 1.876.44.066.063-.719.907-1.733 1.875-1.018.965-3.193 3.306-4.836 5.198-1.64 1.892-3.88 4.297-4.974 5.35-1.094 1.051-1.722 1.81-1.393 1.692 2.092-.733 5.32-1.357 7.01-1.353 2.389.004 5.117.309 5.117.574 0 .104-.369.416-.822.685-1.108.665-3.193 2.703-6.932 6.778-1.712 1.867-3.639 3.739-4.28 4.164-1.297.862-1.253.982.66 1.697 4.94 1.846 6.913 5.862 5.884 11.965-1.332 7.885-7.32 17.94-15.102 25.361-2.679 2.555-6.148 5.064-6.507 4.703-.08-.08.61-1.75 1.537-3.713 1.471-3.117 4.79-10.692 5.533-12.62.427-1.118-.114-.739-1.226.858-1.141 1.645-3.676 3.886-5.369 4.74-.585.3-1.856.72-2.824.935-1.477.327-2.008.638-3.314 1.95-.858.854-2.155 1.87-2.886 2.255l-1.327.703.894.106c.491.06 1.413-.05 2.05-.24.637-.19 1.226-.28 1.311-.193.284.283-1.137 2.255-2.405 3.343-1.098.944-3.672 2.355-5.44 2.988-1.218.439.143.455 1.985.03 1.048-.24 1.956-.385 2.02-.324.064.06-.679.887-1.647 1.825-.966.938-1.49 1.61-1.163 1.489 1.193-.44 4.265-.547 5.84-.21 1.677.36 5.102 1.77 5.08 2.09-.008.1-1.192.758-2.635 1.453-2.595 1.258-7.76 5.074-8.836 6.527-.304.413-.805 1.762-1.118 2.998-.305 1.237-.922 2.884-1.37 3.66-2.742 4.779-8.722 11.148-14.254 15.186-1.577 1.152-2.88 2.201-2.895 2.331-.01.13.623.16 1.404.064.782-.09 4.99-.291 9.357-.445 10.01-.35 14.359-1.094 17.608-3.01.567-.335 1.088-.55 1.158-.483.223.226-3.373 4.49-5.629 6.67-4.052 3.913-7.928 6.256-13.113 7.92-4.336 1.398-7.964 1.837-15.144 1.837-3.457.004-6.151.054-5.988.114.795.29 12.31 2.848 14.643 3.253 3.293.575 7.245.589 9.61.032.986-.231 1.849-.365 1.917-.3.065.067-.799 1.01-1.917 2.097-3.886 3.748-7.45 5.836-11.74 6.872-3.37.812-9.6.505-14.267-.705-3.338-.868-3.613-.898-4.457-.459-.865.451-1.95.44-3.433-.04-.533-.172-.729-.07-.946.491-.396 1.012-1.428 2.016-2.296 2.236-1.377.343-2.627-.493-4.231-2.845-.048-.066-.673.192-1.398.58-1.177.618-1.407.652-2.259.299-1.072-.44-2.17-2.126-2.746-4.204-.208-.743-.523-1.509-.7-1.707-.179-.193-1.496-.51-2.927-.698-3.577-.471-5.41-.076-7.266 1.557-1.233 1.083-2.56 3.046-2.56 3.784 0 .148.704.088 1.564-.136 3.266-.848 5.863-.413 9.847 1.649 2.067 1.07 4.978 2.112 7.301 2.615.792.167.595.273-1.645.888a84.93 84.93 0 0 0-4.79 1.48c-2.735.959-6.176 1.264-8.697.77-1.01-.2-1.904-.3-1.984-.22-.35.351 2.256 2.698 4.132 3.718 1.996 1.09 2.747 1.857 1.383 1.425-.774-.247-7.784-.572-8.906-.41-.628.091-.375.31 1.601 1.402 1.291.713 2.275 1.368 2.186 1.458-.09.09-1.078-.06-2.2-.336-1.848-.45-9.375-1.385-9.62-1.191-.06.04.435.419 1.097.838 1.371.864 1.936 1.537 1.062 1.27-2.275-.7-11.19-2.128-11.19-1.79 0 .053.893.532 1.98 1.059 1.985.97 2.176 1.46.344.878-1.094-.35-6.168-1.09-9.357-1.371-1.66-.14-1.972-.108-1.497.165.33.19 1.181.68 1.896 1.084.71.405 1.237.795 1.166.866-.072.072-1.707-.279-3.633-.774-3.194-.822-10.489-1.772-10.85-1.41-.192.192 2.988 2.84 5.277 4.392l1.767 1.202 2.634-.673c2.324-.59 3.38-.669 8.779-.659 5.7.006 6.503.08 11.229.998 8.852 1.72 11.868 2.162 16.018 2.342 9.217.399 16.992-1.501 27.289-6.667 1.822-.912 3.367-1.609 3.433-1.543.186.186-.938 4.345-1.76 6.507-2.79 7.357-6.979 12.499-12.571 15.439-2.15 1.128-5.942 2.523-6.86 2.523-.3 0-.547.114-.547.255 0 .14 1.111.5 2.47.795 1.853.403 4.124.559 9.058.628 6.86.1 9.547-.147 14.619-1.349 1.345-.32 2.495-.529 2.555-.469.064.06-.29.958-.779 1.996-3.493 7.381-11.377 12.475-22.614 14.595-7.984 1.507-15.696 1.469-27.313-.14-12.714-1.765-18.353-2.05-23.389-1.188-1.463.252-7.241 1.68-12.838 3.178-19.251 5.14-23.148 6.048-30.63 7.156-4.587.678-4.012.678-7.096.02zm-70.777-5.022c.928-.524 2-1.449 2.514-2.18.81-1.14.899-1.496.899-3.56 0-1.956-.12-2.495-.819-3.685-1.58-2.69-4.231-4.223-8.303-4.8-3.449-.487-7.579-.008-17.036 1.984-4.221.89-9.157 1.832-10.968 2.1-12.56 1.844-20.41.788-25.037-3.373-3.737-3.364-4.862-10.08-2.475-14.79.892-1.761 3.784-5.122 5.617-6.527.75-.575 1.37-1.138 1.377-1.252.024-.443-3.605-.93-6.727-.902-2.215.02-5 .33-8.53.944-14.292 2.501-14.412 2.515-21.258 2.535-5.583.02-6.862-.068-9.64-.655a46.26 46.26 0 0 1-11.393-3.976c-1.605-.802-2.919-1.393-2.919-1.313 0 .08.485 1.118 1.078 2.307 4.012 8.05 11.098 12.775 23.26 15.509 1.612.363 2.886.794 2.83.958-.186.567-3.845 2.57-6.335 3.473-6.533 2.361-16.118 3.066-23.365 1.709-1.31-.244-2.456-.37-2.543-.28-.09.09.624.898 1.586 1.797 2.982 2.778 9.134 5.409 15.659 6.696 7.595 1.501 14.379 1.47 26.008-.13 9.608-1.317 11.297-1.467 16.616-1.477 7.072-.012 9.453.4 24.902 4.284 18.147 4.57 24.51 5.748 30.22 5.6 2.897-.075 3.309-.16 4.79-.992zm80.09.64c5.573-.731 11.66-2.05 24.834-5.376 15.07-3.808 17.034-4.136 24.687-4.136 5.928 0 5.716-.02 21.407 2.092 4.882.659 13.918.647 18.163-.02 5.952-.938 10.507-2.365 14.537-4.555 2.305-1.253 5.808-4.071 5.473-4.4-.08-.08-1.158.04-2.395.273-6.108 1.15-15.286.738-21.142-.946-2.92-.839-6.946-2.691-8.343-3.829l-.886-.73 1.786-.354c10.587-2.101 17.804-5.84 22.066-11.433 1.776-2.335 3.952-6.335 3.529-6.487-.14-.05-1.444.507-2.899 1.238a46.72 46.72 0 0 1-10.972 3.852c-2.628.571-3.958.659-9.636.659-7.036 0-6.906.02-21.257-2.505-5.57-.978-12.036-1.206-14.357-.507l-1.184.36 1.73 1.492c2.04 1.757 4.651 4.88 5.521 6.61 2.228 4.42.998 11.354-2.574 14.502-3.909 3.449-9.525 4.742-18.088 4.167-4.936-.331-8.922-.972-18.503-2.966-8.457-1.76-12.19-2.255-15.23-2.016-6.103.487-10.139 3.577-10.462 8.014-.25 3.45 1.547 5.908 5.13 7.026 1.7.539 4.87.527 9.067-.024zm-116.046-15.544c1.565-.235 6.012-1.101 9.88-1.922 9.54-2.022 11.188-2.255 15.868-2.235 2.427.006 3.802-.09 3.443-.24-11.596-4.84-24.85-9.32-31.468-10.632-3.505-.699-9.441-.707-12.016-.02-5.218 1.39-7.501 3.928-7.206 8.004.216 3.004 2.75 6.107 5.62 6.878 3.49.938 10.312 1.01 15.877.165zm153.441.426c4.7-.53 6.81-1.621 8.413-4.352.938-1.604 1.266-4.315.719-5.968-.87-2.642-3.924-4.622-8.34-5.409-5.217-.934-10.12-.265-19.953 2.719-5.116 1.55-21.986 7.884-22.695 8.517-.125.12.615.091 1.649-.06 3.579-.515 8.283.08 19.547 2.47 10.574 2.246 15.13 2.705 20.662 2.083zm-76.48-.899c10.888-.834 20.762-2.854 31.692-6.487 2.24-.738 8.383-3.005 13.653-5.03 11.053-4.247 14.96-5.548 19.32-6.45 3.364-.699 8.783-.919 12.264-.505l1.946.231-.878-.678c-7.51-5.825-14.559-12.555-17.165-16.4-3.952-5.824-7.531-8.163-12.495-8.169-1.968 0-3.653.325-9.431 1.824-14.559 3.779-26.886 5.825-40.195 6.667-12.69.798-31.078-1.65-50.672-6.747-6.755-1.762-8.491-2.021-10.91-1.636-3.863.619-7.072 3.026-10.354 7.764-3.043 4.395-13.393 14.231-17.57 16.699-.898.53-1.158 1.151-.352.842 1.601-.619 6.208-.874 9.445-.533 5.799.615 10.35 1.956 21.637 6.387 14.321 5.629 20.782 7.744 29.465 9.673 10.638 2.36 21.393 3.259 30.598 2.554zm-3.074-8.662c-.778-.104-1.81-.48-2.287-.832l-.872-.645-.707.758c-.814.869-1.85.807-3.25-.191-.997-.705-1.447-.735-2.231-.14-.792.599-2.864.553-3.768-.08-.633-.443-1.346-.505-4.93-.427-6.248.14-13.16-1.048-16.912-2.894-1.418-.703-2.068-1.373-2.49-2.579-.055-.152-.423-.052-.818.226-1.732 1.211-6.076.247-7.006-1.551-.634-1.224-.606-1.669.4-6.655.479-2.375.966-5.1 1.085-6.058.2-1.62.944-2.894 1.697-2.894.367 0 .325.331-.858 6.547-.807 4.22-1.018 5.928-.799 6.287.884 1.397 4.358 2.367 6.012 1.677.54-.228 1.062-.619 1.158-.878.34-.873.864-.47.864.662 0 1.062.088 1.166 1.617 1.912 3.27 1.593 12.175 3.254 17.44 3.254 2.464 0 4.336-.559 4.655-1.393a.693.693 0 0 1 .605-.403c.246 0 .383.17.308.373-.643 1.716-.64 1.722.728 1.716 1.377-.006 2.327-.567 2.914-1.716.5-.972.978-.829.868.265-.08.819.048 1.012 1.034 1.531 1.286.67 1.71.491 2.32-.982.493-1.191 1.082-1.124 1.323.156.108.575.451 1.181.759 1.349.85.45 5.474.38 6.127-.096.513-.379.493-.459-.363-1.43-.5-.568-.946-1.23-.998-1.474-.136-.693.33-2.689.633-2.689.41 0 1.67 1.817 2.056 2.967.778 2.325.14 5.05-1.358 5.804-1.086.547-3.153.766-4.956.525zm13.687-.812c-2.096-.452-2.783-1.571-3.725-6.088a116.214 116.214 0 0 0-1.411-5.884c-.683-2.483-.715-2.815-.32-3.57.424-.806.446-.812.763-.219.18.34.85 2.914 1.491 5.725.639 2.814 1.391 5.459 1.665 5.878.459.702.674.764 2.664.764 4.58 0 12.809-2.245 12.407-3.383-.075-.22-.664-.34-1.505-.313-1.688.06-2.016-.545-1.197-2.222.986-2.016 4.403-3.13 6.056-1.972.642.453.688.639.519 2.246l-.18 1.756h.998c2.415 0 12.315-3.978 14.485-5.818 1.062-.898 1.201-1.405.539-1.956-.35-.29-.513-.192-.882.525-.533 1.034-1.152 1.253-2.523.892-.799-.21-1.118-.539-1.605-1.64-1.172-2.645-.599-5.478 1.098-5.478.946 0 3.247 1.625 4.145 2.922 1.709 2.48 2.252 5.322 1.29 6.787-1.078 1.648-6.507 4.523-11.324 5.988-3.558 1.088-5.219 1.251-6.642.658l-1.148-.479-1.197 1.022c-1.362 1.168-4.87 2.655-7.725 3.274-2.142.467-5.798.784-6.736.585zm30.686-16.713c.295-.36.275-.479-.116-.633-.667-.255-1.381.068-1.381.62 0 .588 1.01.598 1.497.013zm-101.346 6.753c-1.477-.36-2.675-1.108-3.838-2.396-.929-1.026-1.102-1.433-1.102-2.578 0-1.697.798-3.302 2.347-4.697 2.28-2.06 3.693-2.295 1.785-.3-.587.615-1.218 1.412-1.402 1.773-1.329 2.595 1.76 5.481 5.863 5.481 2.774 0 3.083-.405 3.083-4.028v-2.828l1.002-.763c.551-.419 1.158-.764 1.348-.764.495 0 .433 2.12-.126 4.275-1.421 5.49-4.575 7.888-8.962 6.823zm59.76-2.08c-.839-.649-.719-1.757.253-2.356.525-.323.73-.263 1.533.454l.924.828-.643.818c-.752.958-1.093.998-2.063.256zm-37.738-1.068c-.66-.699-.719-.709-1.438-.24-.724.475-.778.465-1.477-.349-.838-.972-.798-1.27.276-2.072l.782-.585.743.865c.732.852.748.858 1.37.293.598-.545.65-.545 1.217-.03.958.862 1.038 1.597.255 2.25-.888.738-.91.738-1.728-.134zm87.463-2.934a146.561 146.561 0 0 0-3.58-6.148c-1.591-2.57-2.136-3.74-2.292-4.91-.111-.842-.091-1.643.044-1.776.26-.26 4.331 6.403 6.579 10.766.874 1.69 1.29 2.874 1.29 3.667 0 .644-.125 1.17-.274 1.17-.15 0-.946-1.248-1.767-2.771zm-27.524 1.205c-.808-.389-.83-.624-.16-1.76.593-1.004.705-1.026 1.896-.411.982.505 1.034.678.535 1.772-.375.819-1.123.952-2.275.4zm-76.432-9.093c-.403-1.224-.22-1.527 1.082-1.787.772-.153.958-.064 1.263.607.539 1.178.44 1.64-.41 1.962-1.249.475-1.56.351-1.935-.782zm90.354.87c-1.074-.28-.385-2.487.774-2.487 1.198 0 1.797.667 1.557 1.742-.173.795-.34.949-1.006.919a7.844 7.844 0 0 1-1.323-.174zm-119.825 1.976c2.236-.413 3.627-1.122 5.022-2.559 2.13-2.191 2.102-4.012-.076-4.595-2.615-.704-5.455.739-7.924 4.02-.928 1.228-1.816 2.316-1.976 2.415-.573.356-.283.709.679.829 1.862.233 2.52.22 4.275-.108zm160.597-.16c.07-.065-.208-.487-.619-.938a40.465 40.465 0 0 1-1.996-2.53c-2.016-2.735-5.114-4.184-7.559-3.526-2.028.547-2.235 1.86-.646 4.056 1.636 2.256 5.19 3.543 8.89 3.214.99-.084 1.856-.208 1.926-.276zm-177.373-1.473c1.772-.826 2.17-1.141 3.19-2.53 1.001-1.364 1.187-2.212.652-2.975-.353-.503-.754-.618-2.156-.618-1.387 0-1.986.17-3.105.878-1.198.758-4.976 4.902-5.118 5.613-.064.319 2.315.598 3.842.447.659-.064 1.87-.433 2.695-.815zm9.002.56c2.898-.989 5.774-4.845 4.63-6.218-.918-1.112-3.752-.89-5.778.45-1.088.72-5.31 5.32-5.31 5.783 0 .605 4.665.593 6.458-.02zm177.223.153c.34-.34-4.078-5.335-5.41-6.114-2.688-1.577-5.817-1.177-5.817.739 0 1.722 2.706 4.507 5.155 5.297 1.274.413 5.68.47 6.072.08zm9.032-.18c.513-.327-3.353-4.806-5.062-5.862-2.649-1.637-5.828-1.008-5.413 1.072.247 1.244 2.427 3.52 4.128 4.311 1.161.543 2.021.703 3.752.699 1.238 0 2.403-.1 2.595-.22zm8.662-.549c-.085-.223-.914-1.417-1.84-2.644-1.267-1.687-2.062-2.427-3.213-3-2.136-1.064-3.793-1.006-4.416.151-.602 1.124 1.218 3.701 3.424 4.85 2.319 1.208 6.433 1.645 6.047.643zm-213.18-.498c3.193-1.63 4.906-4.875 2.954-5.617-2.126-.807-4.432.353-6.797 3.423-2.549 3.313-2.549 3.287.108 3.114 1.577-.104 2.655-.368 3.733-.919zm-8.48-.893c.779-.327 1.9-1.127 2.488-1.776 1.93-2.14.992-3.932-1.785-3.413-1.357.251-2.894 1.6-4.59 4.016l-1.272 1.806.822.108c1.27.17 2.78-.09 4.336-.739zm229.02.725c.419-.172.271-.51-.965-2.196-1.862-2.55-3.205-3.577-4.926-3.772-1.592-.18-2.247.24-2.247 1.437 0 1.617 2.241 3.609 4.83 4.307 1.777.48 2.555.531 3.306.224zm-185.842-4.717c.479-.732.479-.794-.04-1.177-.463-.336-.627-.332-1.038.04-.4.359-.425.579-.15 1.173.43.926.599.918 1.226-.034zm139.3-.026c.313-.678.29-.848-.153-1.177-.425-.314-.594-.308-.944.04-.339.333-.355.57-.08 1.177.44.962.72.952 1.178-.04zm-187.93-.28c.93-.259 2.081-.788 2.56-1.173.855-.692.859-.708.27-1.157-1.317-1.018-3.43-1.465-6.108-1.304-2.678.16-4.463.745-6.499 2.13l-1.084.734.978.505c2.132 1.104 6.48 1.218 9.88.266zm244.895-.159c1.297-.575 1.323-.614.748-1.052-3.273-2.475-8.946-3.24-12.215-1.64-.789.389-1.39.858-1.338 1.046.18.604 3.322 1.984 5.17 2.269 2.495.387 6.012.104 7.635-.619zm-125.089-6.153c.06-3.972-.028-6.727-.213-7.106-.168-.331-.655-.798-1.082-1.038-1.086-.613-2.495-.016-2.934 1.238-.34.964-.455 12.095-.14 12.924.144.37.639.475 2.236.475h2.055l.08-6.493zm-89.713 5.708c.579-.383.669-.579.4-.898-.44-.539-.999-.523-1.458.032-.345.411-.24 1.351.144 1.351.094 0 .505-.22.914-.487zm10.265-.61c.054-.029-.253-.284-.686-.567-.749-.491-.805-.49-1.202.05-.355.49-.347.642.06 1.093.453.503.507.503 1.098.004.347-.287.672-.547.73-.579zm72.858-5.04c-.08-5.17-.168-6.092-.631-6.737-.75-1.052-2.715-1.197-3.645-.271-.634.634-.65.798-.459 4.73a162.233 162.233 0 0 0 .387 5.968c.22 2.204.54 2.461 2.944 2.361l1.497-.063zm12.602 5.764c.405-.307.56-1.37.847-5.808.191-2.994.259-5.785.153-6.208-.107-.433-.586-.978-1.083-1.233-.779-.404-1.018-.408-1.917-.032-.566.233-1.157.674-1.317.978-.343.648-.818 11.876-.525 12.349.28.449 3.234.411 3.842-.048zm71.107-1.094c-.2-.263-.4-.53-.439-.595-.04-.06-.423.114-.846.39l-.77.507.686.558c.629.51.734.52 1.211.09.424-.379.454-.559.16-.948zm9.515 1.138c.11-.18.03-.645-.18-1.038-.367-.687-.403-.693-1.217-.212l-.838.493.808.52c.978.63 1.164.658 1.425.239zm-185.57-.543c.538-.212.968-.473.958-.579-.004-.108-.467-.487-1.026-.844l-1.018-.647-.475.725c-.37.559-.4.862-.148 1.337.18.34.419.565.53.503a24.4 24.4 0 0 1 1.178-.499zm195.28-.024c.24-.451.204-.766-.16-1.317l-.472-.729-1.018.649c-.559.359-1.024.724-1.032.818-.012.16 1.673 1.052 2.148 1.138.12.024.359-.228.533-.559zm-203.91-.26 1.242-.552-.766-.503c-.743-.487-.786-.475-1.481.333-.393.455-.653.93-.575 1.058.186.3.16.305 1.58-.332zm94.375-2.135c-.214-5.723-.569-8.707-1.11-9.301-.649-.719-2.583-.779-3.253-.108-.55.547-.56 1.297-.074 7.311l.35 4.337.897.2c.493.108 1.438.173 2.09.15l1.192-.047-.096-2.544zM465.1 469.9c.299-.487.954-10.551.724-11.15-.213-.559-1.401-.986-2.38-.858-.328.04-.881.391-1.227.774-.555.615-.654 1.214-.834 4.998-.112 2.365-.283 4.896-.383 5.62l-.18 1.318 2.036-.187c1.126-.104 2.136-.34 2.244-.515zm92.044.333c.092-.154-.16-.635-.563-1.068-.708-.766-.758-.774-1.505-.283l-.772.507.978.525c1.148.618 1.623.698 1.86.319zm-123.9-2.341c-.094-1.112-.256-3.34-.36-4.95-.17-2.661-.253-2.974-.904-3.404a1.89 1.89 0 0 0-2.648.575c-.35.54-.4 1.441-.26 4.615.1 2.17.28 4.112.403 4.311.22.352 1.83.77 3.234.839.688.036.698-.008.535-1.986zm37.01 1.527c.658-.18.748-.635.973-5.114.184-3.629.18-3.673-.569-4.417-.413-.413-1.073-.753-1.467-.753-1.367 0-1.636.733-1.98 5.45a198.221 198.221 0 0 0-.325 4.88c0 .407.23.453 1.421.29.783-.103 1.657-.259 1.946-.334zm-100.738-.27c2.09-1.465-1.214-6.074-5.25-7.32-1.94-.598-3.676-.734-4.624-.352-.431.173-.22.638 1.397 3.085 1.052 1.585 2.315 3.168 2.814 3.521 2.116 1.511 4.412 1.942 5.663 1.064zm165.579-.311c1.676-.839 2.82-2.096 4.776-5.282l1.238-2.016-.755-.193c-.948-.24-3.134.05-4.958.655-2.55.842-5.337 3.946-5.337 5.938 0 1.728 2.479 2.171 5.036.898zm-175.264.185c.643-.243.769-.479.769-1.453 0-.928-.24-1.437-1.192-2.515-1.688-1.916-3.493-2.698-6.34-2.74-1.258-.02-2.38.05-2.486.155-.265.264 1.804 3.12 3.467 4.785 1.757 1.762 3.998 2.447 5.784 1.768zm19.052-.02c1.302-.692.068-4.131-2.006-5.588-2.161-1.521-5.489-2.382-7.52-1.943l-.979.21 1.39 2.096c1.828 2.76 3.289 4.287 4.756 4.97 1.317.613 3.459.738 4.36.26zm4.14-.604c.373-.505.609-1.102.523-1.324-.18-.465-2.839-2.096-3.058-1.88-.08.08-.004.51.164.958.17.443.307 1.25.307 1.786 0 1.685.992 1.907 2.064.46zm136.301-.729c.106-.824.29-1.736.406-2.022.12-.287.09-.523-.06-.523-.48 0-3.084 1.773-3.084 2.102 0 .708 1.341 2.112 1.936 2.026.487-.07.647-.385.802-1.583zm6.388 1.052c1.564-.759 2.762-2.002 4.636-4.804l1.491-2.236-2.407-.09c-2.072-.074-2.649.024-4.112.693-.934.427-2.081 1.138-2.549 1.585-1.782 1.688-2.582 4.477-1.473 5.123.863.505 3.094.366 4.412-.27zm17.67.26c1.75-.484 2.639-1.228 4.685-3.913 1.447-1.904 1.744-2.467 1.417-2.688-.58-.4-4.423-.1-5.729.449-2.375.992-4.756 4.048-4.231 5.423.365.948 1.97 1.25 3.858.728zm-201.624-.573c1.411-.759-.086-3.473-2.695-4.895-1.105-.598-2.175-.908-3.529-1.014l-1.944-.16 1.138 1.767c2.132 3.306 3.677 4.571 5.609 4.599.463.006 1.102-.126 1.42-.3zm8.642-.25c.69-1.29-.888-3.984-3.081-5.27-1.453-.852-3.825-1.387-5.07-1.145-.739.144-.787.22-.42.649.228.271.83 1.23 1.338 2.135 1.577 2.81 3.441 4.186 5.669 4.192.93 0 1.343-.148 1.562-.559zm203.285-.028c.631-.32 1.49-.99 1.906-1.485 1.284-1.525 2.96-4.49 2.74-4.844-.135-.224-.724-.268-1.74-.134-3.74.495-6.766 2.974-6.84 5.605-.014.499.164 1.022.395 1.17.709.448 2.332.307 3.54-.312zm7.715.267c1.197-.455 2.056-1.32 3.718-3.776 1.64-2.421 1.567-2.569-1.062-2.104-3.289.58-6.151 2.875-6.151 4.926 0 1.214 1.636 1.657 3.497.954zm-138.226-.385c0-.22-.824-1.333-1.832-2.47-2.649-2.987-4.845-5.937-8.332-11.198-3.732-5.633-5.277-7.59-8.143-10.351-2.968-2.855-5.37-4.42-9.92-6.463-4.743-2.13-9.844-5.094-9.451-5.49.243-.239 11.56 3.67 13.567 4.687 3.548 1.8 5.92 3.797 9.532 8.018 1.487 1.74 2.805 3.206 2.928 3.254.414.171-.61-2.76-1.864-5.33-.99-2.028-1.736-3.03-3.672-4.938-3.194-3.153-6.016-4.61-14.132-7.311-3.453-1.15-6.938-2.37-7.744-2.715-2.228-.958-4.918-3.008-7.346-5.602l-2.185-2.336.22 1.178c.45 2.431 1.916 6.178 3.263 8.337 3.01 4.83 9.78 9.793 16.217 11.89 5.719 1.863 9.385 4.944 16.387 13.773 1.896 2.387 4.98 6.067 6.854 8.18a607.412 607.412 0 0 1 4.002 4.55c.659.774 1.647.978 1.647.34zm3.892-.008c0-.225-.223-.595-.495-.822-.91-.753-4.59-5.699-5.648-7.589-1.591-2.842-2.282-5.1-2.296-7.495-.02-3.519 1.363-5.754 4.363-7.061 2.076-.909 5.663-1.094 8.268-.432l2.583.653c.479.12.978-.176 1.956-1.154 1.732-1.736 4.698-2.942 7.736-3.15 1.87-.127 2.615-.03 4.463.592l2.216.746 1.31-.579c1.71-.758 4.891-1.008 7.047-.559 2.29.473 5.08 1.902 6.195 3.174.5.569 1.058 1.034 1.244 1.034.185 0 1.277-.286 2.42-.635 2.949-.894 6.927-.714 9.123.415 2.838 1.457 4.121 3.645 4.091 6.956-.046 3.956-2.31 8.46-7.026 13.964-.79.928-1.443 1.836-1.443 2.02 0 2.156 7.904-7.674 11.078-13.772 3.13-6.012 3.599-13.896 1.064-17.9-1.573-2.485-4.57-4.555-8.078-5.575-1.892-.547-6.064-.635-8.044-.168-1.068.254-1.225.196-2.545-.948-4.111-3.56-10.02-4.43-14.9-2.195l-1.706.782-1.58-.774c-4.572-2.236-10.943-1.377-14.602 1.968-1.536 1.407-1.632 1.449-2.77 1.185-1.748-.405-6.353-.339-8.064.12-2.161.58-4.49 1.843-6.056 3.28-2.926 2.694-3.824 5.243-3.598 10.22.27 5.94 2.042 10.159 7.27 17.278 4.05 5.521 6.426 7.896 6.426 6.427zm53.592-2.499c3.837-4.317 5.829-6.686 9.633-11.457 3.912-4.904 7.94-8.962 10.539-10.618.964-.619 3.053-1.557 4.638-2.096 1.587-.535 3.829-1.451 4.98-2.036 4.87-2.459 10.08-6.978 12.068-10.447.926-1.617 3.054-7.505 3.054-8.447 0-.283-1.226.739-2.92 2.435-1.603 1.607-3.683 3.37-4.621 3.916-.938.55-4.896 2.064-8.798 3.374-9.062 3.033-11.757 4.403-14.984 7.592-2.036 2.01-2.655 2.87-3.8 5.25-.751 1.563-1.454 3.383-1.557 4.042l-.196 1.197.848-1.048c4.779-5.908 8.403-9.042 12.675-10.982 1.856-.842 12.58-4.383 12.754-4.211.126.13-2.088 1.625-4.71 3.177-.6.356-2.85 1.438-5 2.402-7.876 3.536-11.317 6.746-18.018 16.798-3.647 5.473-5.824 8.389-8.335 11.157-1.012 1.118-1.837 2.226-1.837 2.471-.004 1.042 1.21.208 3.59-2.469zm-169.11 1.397c1.717-2.335 2.216-10.512.89-14.56-.857-2.62-2.927-5.892-3.807-6.018a1.25 1.25 0 0 0-1.018.387c-.34.403-.184.918 1.014 3.413 2.515 5.254 2.858 8.168 1.493 12.799a895.754 895.754 0 0 0-.927 3.15c-.16.562.972 1.843 1.485 1.676.186-.066.58-.443.873-.845zm279.009.3c.699-.699.625-1.467-.391-4.02-.755-1.896-1.038-6.164-.547-8.144.2-.79 1.042-2.884 1.876-4.65 1.29-2.719 1.463-3.284 1.132-3.68-.71-.86-1.587-.374-2.914 1.602-2.002 2.99-2.619 5.397-2.619 10.227 0 3.364.114 4.403.679 6.194.638 2.05 1.277 3.088 1.886 3.088.155 0 .559-.28.898-.62zm-172.379-.391c.09-.24-.822-1.545-2.148-3.07a3747.423 3747.423 0 0 1-6.926-8.044c-7.748-9.042-10.207-11.042-16.596-13.523-4.024-1.557-5.769-2.435-7.431-3.74-.62-.483-1.122-.819-1.122-.75 0 .067.32.985.709 2.035.389 1.05.878 2.615 1.077 3.477.413 1.77.715 1.77 1.421.004l.487-1.217.713.868c.39.475 1.317 1.77 2.056 2.874 1.198 1.777 1.665 2.184 4.106 3.573 6.632 3.758 13.48 8.916 19.373 14.583 1.896 1.82 3.592 3.317 3.784 3.327.19.008.413-.172.499-.4zm67.69-2.507c6.217-5.984 13.24-11.298 19.83-15.004 2.575-1.445 2.838-1.687 4.517-4.156.978-1.44 1.984-2.66 2.23-2.708.293-.054.57.327.808 1.125.2.667.479 1.21.618 1.21.144 0 .428-.707.63-1.573.203-.864.688-2.429 1.077-3.477.39-1.048.709-1.956.709-2.02 0-.064-.575.326-1.278.859-1.64 1.245-3.114 1.976-7.605 3.772-4.187 1.677-7.117 3.519-9.77 6.136-1.026 1.014-4.984 5.463-8.796 9.888-6.317 7.333-7.411 8.87-6.312 8.87.17 0 1.673-1.314 3.342-2.918zm-71.377 2.335c0-.453-5.07-4.806-9.36-8.034-3.562-2.678-7.875-5.609-11.122-7.557l-1.17-.698.2 1.437c.105.798.195 1.744.195 2.112 0 .513.308.784 1.328 1.173 3.01 1.15 6.37 3.759 9.572 7.433 1.896 2.172 2.206 2.322 8.264 3.926 2.064.547 2.095.551 2.095.208zm75.528-.874 4.126-1.154L497 461.59c2.934-3.114 6.194-5.565 8.631-6.495 1.066-.409 1.377-.678 1.377-1.193 0-.368.088-1.308.196-2.096l.195-1.43-1.469.847c-2.2 1.27-8.389 5.425-10.598 7.118-5.274 4.038-10.32 8.59-9.507 8.582.044 0 1.932-.519 4.2-1.157zm-193.95-.194c1.592-.413 3.34-.938 3.885-1.165.938-.394.998-.513 1.118-2.176.094-1.331.347-2.09 1.034-3.102 1.58-2.331 1.636-2.187-.73-1.964-1.168.108-5.13.938-8.8 1.836-7.995 1.962-11.069 2.525-13.861 2.54l-2.096.011.748.623c1.266 1.054 5.358 2.97 7.601 3.557 3.214.842 7.473.778 11.098-.16zm318.72.288c2.011-.471 6.766-2.655 8.083-3.713l.748-.599-2.13-.008c-2.746-.008-6.147-.613-12.674-2.243-5.788-1.451-9.78-2.256-11.161-2.256h-.898l.542.823c1.448 2.195 1.99 3.473 2.028 4.79l.04 1.397 1.948.665c4.647 1.587 9.73 2.016 13.473 1.142zm-229-.336c.224-.275.978-.864 1.677-1.307 1.237-.787 1.253-.818.686-1.331-.558-.505-.618-.485-1.6.558-.563.595-1.443 1.166-1.96 1.268-1.078.22-1.138.343-.416.894.707.539 1.122.515 1.611-.08zm130.272.08c.727-.547.665-.679-.413-.892-.515-.1-1.397-.67-1.956-1.264-.845-.898-1.09-1.018-1.465-.704-.62.515-.513.678 1.365 2.05 1.882 1.373 1.776 1.337 2.469.812zm-198.28-1.178c.666-1.886.931-5.489.604-8.123-.75-6.048-3.182-10.331-4.776-8.411-.286.345-.208.694.385 1.722 1.732 3 2.603 7.904 2.004 11.317-.753 4.282-.753 4.156.028 4.447.978.366 1.363.154 1.756-.954zm109.978.024c-.08-.698-.2-1.449-.268-1.666-.14-.455-1.672-.367-1.828.108-.116.359 1.63 2.834 1.996 2.834.14 0 .18-.573.1-1.274zm45.947.02c1.21-1.568 1.226-2.035.072-2.035-.687 0-.924.153-1.028.67-.61 3.03-.47 3.228.958 1.365zm110.933.58c.467-.348.467-.48.02-1.871-.619-1.906-.69-6.567-.14-9.062.228-1.03.864-2.77 1.417-3.866.759-1.509.918-2.088.667-2.391-1.525-1.836-3.972 2.395-4.79 8.283a19.676 19.676 0 0 0 .515 7.71c.365 1.308.554 1.573 1.121 1.573.38 0 .91-.167 1.188-.373zm-279.012-.34c.544-.228 1.277-.818 1.63-1.311 1.172-1.645 1.968-6.128 1.282-7.212-.391-.619-1.354-.174-2.835 1.305-2.435 2.436-3.425 6.114-1.924 7.166.799.559.635.559 1.847.052zm290.898-.186c1.35-1.347.351-4.79-2.056-7.095-2.463-2.36-3.158-2.046-2.906 1.305.234 3.122 1.283 5.217 2.986 5.958 1.222.535 1.277.529 1.976-.172zm-91.065-1.972c3.461-.04 4.381-.14 4.765-.519.429-.43.385-.55-.48-1.36-.524-.49-1.297-1.638-1.716-2.548-.738-1.617-.774-1.648-1.563-1.311-1.808.774-4.936 3.002-6.634 4.73-.994 1.01-1.807 1.946-1.807 2.076 0 .14.709-.036 1.573-.387 1.321-.533 2.256-.639 5.864-.679zm-121.435.759c2.05-.57 2.347-2.421.619-3.846-1.406-1.158-3.362-1.827-5.354-1.827-1.537 0-4.702.835-6.061 1.597-.68.383-.665.4.598.77.71.208 2.507 1.024 3.988 1.817 3.541 1.89 4.2 2.048 6.208 1.489zm17.524-.619c-.974-1.327-4.794-4.331-6.786-5.34l-1.702-.857-1.01 1.956c-.58 1.117-1.378 2.175-1.863 2.47l-.848.514.63.572c.56.503 1.033.56 4.117.483 2.754-.065 3.896.034 5.433.491 2.71.799 2.818.785 2.03-.289zm120.099-.473a47.29 47.29 0 0 1 3.892-1.916l1.916-.807-.87-.445c-2.815-1.449-6.335-1.776-8.846-.822-2.935 1.118-4.064 3.048-2.575 4.42 1.417 1.302 3.652 1.157 6.483-.43zm-164.689-.878c.839-.272 1.996-.928 2.581-1.465 1.763-1.617 1.33-3.154-1.098-3.873-2.01-.598-2.91-.578-4.686.096-1.188.45-4.627 2.611-5.86 3.68-.34.3 2.063 1.394 3.802 1.737 2.04.404 3.639.35 5.261-.173zm191.347.191c.858-.16 2.192-.578 2.96-.924 1.246-.559 1.337-.668.854-.978a88.322 88.322 0 0 1-2.47-1.736c-3.114-2.256-5.376-2.79-7.953-1.893-2.307.803-2.688 2.18-1.057 3.813 1.712 1.712 4.457 2.327 7.668 1.716zm-210.16-.165c0-.52-2.348-1.032-4.7-1.032-2.47 0-2.582.026-1.945.47.518.366 1.101.432 2.538.29 1.024-.1 2.268-.053 2.76.1 1.11.353 1.348.385 1.348.174zm88.397-.26c.743 0 1.122-.132 1.122-.399 0-.828.938-2.176 1.84-2.643.886-.459 1.65-.45 3.174.032.499.154.674.09.674-.251 0-.254.356-.739.789-1.084 1.092-.858 2.742-.806 4.124.13 1.273.862 1.377.888 1.377.351 0-.674 1.357-1.712 2.485-1.896 1.463-.24 2.355.034 3.35 1.018.664.655.873.734.997.38.08-.248.533-.807.998-1.238 1.589-1.49 4.297-1.282 5.792.443l.899 1.034.742-.719c1.473-1.427 3.723-1.305 5.23.29l.914.966 1.048-.719c.826-.559 1.32-.683 2.33-.57 1.344.145 2.46.89 2.46 1.636 0 .32.186.38.675.223 1.682-.538 2.475-.49 3.517.21.714.483 1.137 1.058 1.317 1.804.25.986.355 1.078 1.09.933.447-.088 1.11 0 1.473.193.822.44 1.05.176 2.722-3.142 2.643-5.243 1.597-9.34-2.75-10.788-1.996-.662-5.713-.463-8.044.43-.904.347-1.65.632-1.657.632-.004 0-.734-.69-1.616-1.537-2.448-2.331-4.352-3.104-7.655-3.104-2.35 0-2.898.106-4.283.819l-1.59.818-1.556-.818c-1.357-.719-1.896-.819-4.252-.819-2.325 0-2.938.114-4.49.839a11.583 11.583 0 0 0-3.194 2.331l-1.401 1.491-1.896-.675c-1.477-.527-2.555-.678-4.91-.682-2.835-.008-3.104.04-4.491.892-3.617 2.215-3.739 6.427-.344 12.056.703 1.161 1.072 1.517 1.41 1.357.25-.12.961-.22 1.58-.22zm139.46.054c1.68.06 2.405-.04 2.842-.387.535-.425.32-.455-2.631-.37-2.609.08-3.313.194-3.742.632-.507.518-.493.528.369.295.495-.14 1.916-.212 3.157-.168zm-220.245-1.147c-.551-.613-.55-.635.18-1.194.662-.509.678-.569.159-.579-.32 0-1.457-.223-2.535-.493l-1.952-.49-1.134 1.31c-.622.723-1.133 1.418-1.133 1.55 0 .125.842.153 1.872.06 1.03-.095 2.475-.05 3.217.105 1.944.405 1.944.405 1.326-.273zm212.372.175c1.358 0 2.467-.12 2.467-.271 0-.152-.439-.859-.972-1.571-.65-.858-1.123-1.232-1.423-1.11-.245.1-1.371.407-2.499.685-2.012.49-2.036.509-1.347.97.702.465.702.469.112 1.124l-.593.658.89-.245c.487-.136 2-.246 3.36-.244zm-190.943-.305c.698-.248 1.626-.451 2.06-.451.43 0 1.32-.33 1.98-.727l1.197-.722-.898-.2c-1.986-.443-2.854-.824-4.447-1.94l-1.669-1.17-.646 1.152c-.356.633-.978 1.301-1.388 1.487-.409.186-.678.503-.598.707.073.2.04.634-.08.964-.186.527-.028.638 1.317.932.838.183 1.61.353 1.717.373.1.02.758-.164 1.457-.41zm169.538-.046c.853-.14 1.098-.306.998-.667a90.095 90.095 0 0 0-.319-1.144c-.106-.359-.433-.738-.729-.83-.439-.14-.958-.894-1.722-2.5-.024-.053-.639.358-1.367.913-1.423 1.086-2.332 1.507-4.391 2.036l-1.308.334 1.07.724c.589.4 1.447.739 1.908.753.463.012 1.377.203 2.036.425.659.223 1.537.347 1.948.273.413-.074 1.258-.22 1.876-.32zm-147.914-.12c1.862-.85 2.974-4.355 2.415-7.619-.345-2.016-1.666-5.175-2.662-6.367l-.57-.679-1.464 3.2c-1.845 4.032-2.122 6.291-1.074 8.73.371.863 1.072 1.9 1.557 2.308 1.018.858.906.832 1.8.425zm124.3-.311c1.469-1.158 2.116-2.845 2.112-5.51-.006-2.235-.106-2.614-1.493-5.624l-1.487-3.227-.567.684c-.998 1.204-2.316 4.357-2.663 6.371-.545 3.186.54 6.727 2.33 7.601.846.41.878.405 1.768-.293zm-182.678-.116c2.594-.004 4.716-.092 4.716-.194 0-.593-6.06-2.235-9.321-2.529-2.036-.18-2.441-.126-3.693.5-1.656.826-1.77.973-1.527 1.943.18.735.2.739 2.647.511 1.357-.123 4.587-.23 7.18-.23zm249.184.128c.739-1.198-1.736-2.982-4.132-2.974-2.545.008-10.399 2.012-10.399 2.654 0 .1 1.583.146 3.52.1 1.935-.046 4.796.034 6.36.18 4.066.387 4.431.39 4.651.04zm-240.65-1.467c.533-.645.973-1.37.973-1.61 0-.652-2.016-2.295-2.819-2.295-.385 0-1.185.2-1.776.45-1.557.648-2.709.562-6.351-.48l-3.248-.934-.539.667c-.998 1.228-.726 1.497 1.493 1.497 2.803 0 5.13.673 8.295 2.391 1.485.805 2.763 1.47 2.847 1.477.08.006.587-.513 1.123-1.157zm230.59-2.236c.892-.26 2.615-.473 3.817-.473 1.201 0 2.191-.13 2.191-.285 0-.613-.714-1.81-1.078-1.81-.213 0-1.477.343-2.804.764-3.3 1.038-4.95 1.197-6.597.614-1.97-.688-2.559-.598-3.888.6l-1.197 1.081.572.792c.312.432.85 1.086 1.198 1.458l.63.664 2.763-1.465c1.521-.806 3.497-1.68 4.391-1.942zm-218.58.24c2.755-1.372 3.178-3.174 1.008-4.264-1.59-.798-3.157-1.014-4.63-.639-1.43.36-6.817 3.018-6.817 3.36 0 .32 1.703 1.157 3.593 1.766 2.495.807 4.942.727 6.846-.22zm168.258-.978c-.432-1.132-.85-1.531-1.611-1.531-.613 0-.693.16-.787 1.596l-.1 1.597 1.394-.449c1.323-.423 1.381-.487 1.106-1.211zm38.446.638c1.11-.515 2.016-1.05 2.012-1.177-.006-.394-4.49-2.685-6.283-3.214-1.944-.575-3.583-.41-5.27.535-2.02 1.132-1.616 2.834 1.008 4.232 1.258.67 1.71.746 3.968.664 2.116-.08 2.895-.255 4.565-1.038zm-179.922.086c.633-.3 1.348-.854 1.593-1.23.395-.606.393-.778-.024-1.586-.26-.5-.906-1.238-1.437-1.643-2.627-1.976-5.321-2.186-9.836-.754l-2.954.934.59.824c.919 1.297 2.665 2.707 4.32 3.499 1.317.627 1.848.709 4.06.613 1.66-.072 2.942-.3 3.688-.659zm5.593-.758c0-1.002-.124-1.497-.373-1.493-1.058.012-1.61.409-1.91 1.363-.316 1.002-.296 1.042.605 1.303 1.616.47 1.676.43 1.676-1.173zm145.858 1.187c1.503-.419 3.733-1.98 4.943-3.467l1.004-1.23-2.965-.937c-4.622-1.467-7.598-1.17-10.145 1.012-2.056 1.756-1.87 3.043.593 4.191 1.736.806 4.555.988 6.57.43zm-207.306-.886c2.944-1.796 2.814-6.068-.168-5.58-.59.093-1.337.438-1.656.758-.547.547-.563.718-.214 2.48.673 3.394.549 3.254 2.036 2.344zm41.051-.17c1.421-1.804.858-5.98-1.177-8.742-.825-1.124-3.485-3.3-3.693-3.02-.32.445-.669 6.413-.445 7.617.33 1.768 1.457 3.537 2.746 4.325 1.282.778 1.847.739 2.571-.18zm177.014.086c.559-.375 1.397-1.353 1.856-2.171.838-1.473.838-1.523.687-5.493-.088-2.202-.228-4.072-.314-4.16-.26-.26-2.427 1.39-3.377 2.57-2.048 2.55-2.884 5.522-2.171 7.733.732 2.282 1.596 2.675 3.319 1.521zm39.888.16c.073-.29.307-1.377.513-2.415.349-1.763.335-1.936-.21-2.481-.918-.919-2.595-1.072-3.363-.306-1.352 1.354-.59 3.833 1.587 5.158 1.137.698 1.297.702 1.47.044zm-277.27-1.387c2.754-.21 5.093-.46 5.193-.56.354-.353-.642-2.462-1.672-3.532-.759-.793-1.767-1.347-3.669-2.03-5.96-2.136-12.868-2.92-23.127-2.62-7.046.203-11.01-.04-14.212-.873-.898-.236-1.702-.353-1.792-.26-.208.21 2.275 2.424 4.674 4.172 7.026 5.11 18.164 6.946 34.603 5.703zm310.555.107c7.44-.608 12.534-1.936 16.878-4.4 2.295-1.298 6.836-5.06 6.506-5.39-.073-.076-1.191.1-2.479.391-1.98.445-4.111.535-13.72.591-12.822.076-15.429.36-21.65 2.375-3.789 1.222-4.595 1.763-5.609 3.765-.948 1.87-.932 2.016.235 2.211 3.577.6 14.926.863 19.835.46zm-256.289-.519a12.535 12.535 0 0 1-.37-1.063c-.093-.324-.332-.475-.59-.374-.24.09-.624.166-.858.166-.273 0-.425.32-.425.898 0 .852.064.898 1.23.898 1.053 0 1.197-.076 1.013-.523zm188.772-.373c0-.579-.151-.898-.425-.898a2.88 2.88 0 0 1-.858-.168c-.3-.115-.549.14-.778.793a10.878 10.878 0 0 0-.334 1.066c0 .06.54.103 1.198.103 1.132 0 1.197-.05 1.197-.898zm26.048-.439c.906-.247 1.936-.453 2.287-.455 1.258-.006 1.402-1.962.18-2.435-1.902-.735-5.633.323-7.994 2.275-.998.819-.918 1.034.5 1.332 1.037.215 2.298.036 5.029-.719zm-237.123.427c.38-.253.306-.419-.449-1.05-1.846-1.537-4.042-2.38-6.197-2.38-2.316 0-2.78.298-2.491 1.616.173.792.34.93 1.151.948.52.01 1.691.27 2.595.579 1.8.61 4.68.764 5.39.287zm8.02-1.948c1.334-.559 3.058-2.156 3.058-2.834 0-1.29-3.008-2.625-5.05-2.242-1.628.308-6.626 3.134-6.626 3.749 0 .227 2.385 1.317 3.443 1.577 1.331.323 4.123.185 5.175-.25zm40.27-.305c1.706-1.703 2.175-5.461 1.117-8.856-.609-1.933-2.236-5.05-2.63-5.042-.12.004-.436.642-.7 1.42a73.766 73.766 0 0 1-1.568 3.965c-1.308 3.06-1.391 4.599-.38 6.77 1.172 2.52 2.735 3.17 4.158 1.743zm137.403.18c.413-.324 1.053-1.29 1.42-2.152.947-2.196.735-3.849-.987-7.78-.769-1.753-1.397-3.406-1.397-3.673 0-.859-.53-.51-1.418.942-1.586 2.583-2.026 4.157-2.026 7.261 0 2.096.132 3.08.5 3.743 1.237 2.235 2.498 2.768 3.912 1.656zm43.262.14c.839-.252 1.813-.691 2.172-.983.647-.523.647-.525-1.243-1.756-2.523-1.651-3.453-2.09-4.93-2.336-1.537-.26-3.454.28-4.328 1.218-.565.599-.605.798-.303 1.525.38.918 1.888 2.076 3.221 2.475 1.366.407 3.765.343 5.41-.146zm-207.921-1.386c.707-.946.818-3.683.23-5.501-.6-1.836-2.24-4.122-3.743-5.2-1.59-1.143-1.52-1.237-1.924 2.655-.44 4.232.104 6.188 2.235 8.056 1.302 1.146 2.346 1.142 3.202-.012zm192.097.176a7.102 7.102 0 0 0 2.405-4.18c.28-1.503-.2-7.633-.598-7.633-.483 0-3.627 3.146-4.306 4.306-1.463 2.503-1.644 5.94-.399 7.524.75.953 1.753.949 2.898-.02zm-197.861-.57c0-.07-.286-.618-.635-1.207-.59-1.002-.679-1.05-1.274-.659-.349.234-.678.699-.73 1.042-.08.52.094.639 1.05.739.627.066 1.241.14 1.363.17.126.027.226-.01.226-.084zm202.751-.165c.773 0 .62-1.126-.231-1.689-.57-.379-.683-.313-1.43.829l-.81 1.237.945-.19a9.72 9.72 0 0 1 1.524-.189zm-225.436-.868 1.577-.206-1.497-.69c-.824-.38-2.758-.919-4.3-1.194-2.444-.44-2.738-.559-2.307-.918.272-.224 1.198-.639 2.056-.924 1.541-.515 1.55-.523.659-.739-.491-.126-1.65-.623-2.575-1.106-.924-.483-2.271-1.051-2.994-1.265l-1.311-.385 1.784-.52c2.056-.598 3.78-1.422 4.312-2.061.307-.373.183-.503-.769-.812a8.694 8.694 0 0 1-1.932-.927c-.44-.307-.978-.554-1.198-.548-.22.004-1.682.822-3.247 1.816-4.99 3.174-10.152 5.429-15.569 6.792l-1.048.266 1.77.379c.973.21 2.372.639 3.115.958.734.315 1.363.539 1.397.491.026-.046.223-.509.433-1.034.41-1.038 1.836-1.892 3.154-1.892.568 0 1.197.419 2.171 1.441l1.365 1.441.695-.693c1.347-1.349 3.649-.678 4.954 1.442.778 1.265.968 1.329 2.056.708 1.142-.655 2.714-.547 3.898.268.729.499 1.15.624 1.407.415.2-.166 1.078-.391 1.946-.505zm199.265-.184c.048-.04-.066-.405-.253-.814-.427-.942-2.376-1.657-2.376-.878-.006.275-.09 1.002-.191 1.616l-.186 1.118 1.465-.487c.803-.267 1.497-.519 1.545-.553zm-155.922-.387c1.501-.739 1.657-.904 1.737-1.896.073-.886-.06-1.208-.719-1.727-1.902-1.497-5.796-1.892-9.014-.922l-1.257.38.986 1.151c.539.633 1.241 1.657 1.557 2.275.315.62.698 1.308.854 1.531.455.635 3.886.172 5.856-.794zm6.128-.136c-.112-.698-.26-1.325-.32-1.391-.06-.066-.539.006-1.067.156-.68.193-1.022.515-1.178 1.093-.192.719-.124.839.579.998.439.092.934.22 1.098.272.958.32 1.097.14.89-1.126zm159.782-.499c.46-.892 1.25-2.05 1.753-2.569l.918-.948-1.284-.385c-3.241-.978-7.125-.587-9.034.914-.658.52-.792.839-.718 1.723.08.926.273 1.185 1.343 1.772 1.45.799 3.328 1.238 5.01 1.164 1.106-.048 1.228-.15 2.016-1.673zm40.225 1.174c1.048-.695 2.675-.759 3.743-.148 1.083.619 1.271.555 2.051-.713 1.326-2.151 3.607-2.79 4.996-1.403l.733.733.798-1.05c.883-1.152 2.116-1.912 3.114-1.912 1.014 0 2.323.928 2.719 1.93.2.503.389.95.419.998.03.044.658-.18 1.397-.493.738-.32 2.14-.747 3.114-.958l1.768-.38-1.048-.275c-5.916-1.557-9.748-3.213-15.369-6.63-1.786-1.088-3.393-1.977-3.573-1.977-.18 0-.533.19-.794.42-.26.231-1.018.602-1.689.824-.666.22-1.265.539-1.329.705-.19.499 1.756 1.606 4.012 2.29l2.126.64-1.346.375c-.738.203-2.085.778-2.994 1.271-.908.493-2.115.998-2.694 1.126l-1.046.228 1.429.373c.788.205 1.796.613 2.245.908l.819.533-2.846.513c-1.563.28-3.442.784-4.172 1.118l-1.325.602 1.177.214c.647.116 1.377.325 1.625.463.669.373.958.325 1.946-.33zm-242.392-1.218c3.46-.744 5.07-3.181 2.95-4.475-1.407-.858-4.195-.814-5.938.096-1.982 1.038-4.148 2.425-4.158 2.67-.016.35 1.817 1.206 3.434 1.607 1.932.475 1.95.48 3.712.1zm235.492-.14c1.261-.203 3.463-1.203 3.447-1.566-.01-.248-2.17-1.637-4.158-2.675-.958-.5-1.822-.689-3.143-.689-3.884.004-5.09 2.356-2.142 4.178 1.088.67 3.206 1.194 4.212 1.038.33-.05 1.133-.18 1.784-.284zm-221.89-1.409c.945-1.27.849-4.145-.207-6.307-.712-1.457-3.425-4.4-4.052-4.4-.116 0-.379 1.314-.587 2.919-.515 3.972-.16 5.619 1.605 7.465 1.481 1.54 2.276 1.62 3.242.323zm207.373.186c.986-.83 1.876-2.367 2.236-3.846.235-.984-.392-7.046-.729-7.046-.489 0-3.054 2.545-3.728 3.696-1.507 2.575-1.637 5.936-.28 7.294.884.884 1.358.864 2.501-.1zm-212.554-.898c0-.096-.247-.535-.55-.972-.304-.437-.64-1.044-.753-1.354-.144-.399-.308-.47-.573-.26a2.395 2.395 0 0 1-.842.412c-.376.088-.42.303-.22 1.064.216.824.403.972 1.371 1.074.615.066 1.218.14 1.342.17.123.027.225-.03.225-.13zm217.91-1.124c.195-.749.151-.962-.226-1.048-.26-.06-.629-.24-.826-.4-.26-.207-.563.12-1.092 1.159l-.733 1.443 1.314-.106c1.19-.094 1.337-.194 1.564-1.048zm-184.653.032c1.074-1.122 1.573-2.635 1.557-4.719a10.06 10.06 0 0 0-2.595-6.738l-1.323-1.497-.212.902c-.115.493-.598 2.144-1.078 3.669-.475 1.527-.866 3.227-.866 3.78 0 2.355 1.765 5.276 3.188 5.276.375 0 .972-.304 1.327-.673zm151.35-.385c1.023-1.086 1.61-2.603 1.616-4.182.004-.495-.499-2.543-1.11-4.55-1.085-3.562-1.131-3.643-1.696-3.146-1.657 1.465-3.481 5.509-3.481 7.71 0 2.226 1.772 5.224 3.09 5.224.319 0 1.032-.475 1.576-1.058zm-225.626-1.012c6.594-2.19 14.465-6.615 31.309-17.597 11.03-7.19 16.686-10.28 20.678-11.301 6.535-1.669 12.64 1.281 15.62 7.55l1.098 2.308.094-1.557c.124-2.116-.34-3.632-1.629-5.365-1.896-2.547-3.562-3.619-12.383-7.96-16.003-7.876-15.948-7.852-20.325-7.66-3.732.165-4.559.512-14.684 6.199-23.752 13.337-34.674 17.696-43.433 17.33-3.363-.14-5.095-.68-7.113-2.222-.555-.424-1.088-.691-1.184-.6-.32.324.87 2.919 2.323 5.083 4.551 6.77 14.363 15.139 19.43 16.574 2.362.67 6.877.324 10.199-.778zm309.321-.132c5.617-2.774 14.42-10.924 17.874-16.537.924-1.505 1.956-4.004 1.736-4.22-.06-.06-.812.36-1.67.939-2.18 1.469-4.08 1.96-7.565 1.96-8.05 0-18.892-4.252-37.814-14.826-11.916-6.66-13.624-7.555-15.692-8.218-2.495-.804-5.864-.87-8.307-.16-1.996.58-21.829 10.088-23.978 11.498-4.044 2.65-5.928 5.674-5.709 9.165l.096 1.491 1.25-2.555c1.522-3.11 3.666-5.27 6.606-6.666 1.89-.89 2.24-.954 5.17-.938 2.483.008 3.553.153 5.09.694 4.163 1.467 10.13 4.85 20.215 11.469 12.375 8.124 16.79 10.806 22.265 13.547 6.906 3.453 11.138 4.714 15.335 4.563 2.599-.094 3.09-.21 5.102-1.204zm-282.032-.32c1.257-.524 2.65-1.79 2.65-2.405 0-.732-1.067-1.61-2.227-1.826-1.69-.32-2.946.076-5.44 1.703-2.089 1.363-2.269 1.557-1.748 1.846 2.006 1.13 4.97 1.431 6.76.685zm248.53-.339c.618-.3 1.117-.618 1.111-.714-.026-.34-4.211-2.775-5.283-3.07-1.982-.545-4.585.315-4.585 1.517 0 .686 1.347 2.076 2.545 2.629 1.21.558 4.744.349 6.211-.364zm-212.557-.325c1.663-.852 1.825-1.66.62-3.094-1.562-1.856-3.973-2.59-6.847-2.082-.988.18-2.367.396-3.07.49-.705.093-1.27.329-1.27.53 0 .699 2.561 2.934 4.342 3.787 2.116 1.018 4.674 1.17 6.227.373zm5.19-.18a7.944 7.944 0 0 1-.186-1.65c-.004-.91-.07-.972-1.052-.972-1.097 0-1.067-.046-1.171 1.982-.016.293.387.632 1.022.858 1.497.545 1.586.529 1.387-.22zm162.04.028c.47-.18.644-.419.523-.734-.1-.26-.18-.779-.18-1.158 0-.569-.188-.714-1.048-.818-1.024-.116-1.048-.096-1.052.942 0 .585-.088 1.381-.193 1.772-.2.755-.074.755 1.952-.004zm9.832-.385c1.87-1.018 4.585-3.676 3.962-3.878-1.507-.489-6.128-1.078-7.086-.904-3.024.545-5.577 3.034-4.63 4.517.982 1.55 5.13 1.69 7.752.263zm-201.227-.934c.998-2.39.18-5.46-2.084-7.794-.862-.892-1.71-1.621-1.882-1.621-.172 0-.483 1.387-.693 3.098-.339 2.754-.327 3.267.112 4.59.475 1.438 1.63 2.855 2.575 3.162.719.236 1.517-.34 1.972-1.437zm221.893.689c.779-.859 1.45-2.196 1.72-3.45.244-1.137-.39-6.29-.808-6.55-.399-.246-2.522 1.888-3.473 3.489-.678 1.144-.798 1.692-.798 3.636 0 1.83.114 2.416.569 2.919.746.826 2.012.806 2.788-.044zm-226.56.211c0-.092-.291-.67-.646-1.291l-.647-1.118-.998.45c-.952.43-1.345 1.38-.802 1.925.24.24 3.093.272 3.093.036zm231.375-.772c.063-.543-.07-.827-.45-.934a11.39 11.39 0 0 1-1.021-.36c-.348-.14-.66.1-1.104.85l-.619 1.05 1.104.116c1.756.192 1.996.11 2.092-.718zm-71.576-8.194c1.397-2.668 2.175-3.752 4.12-5.698 1.317-1.322 2.86-2.73 3.426-3.128l1.028-.724-.906 1.33c-1.906 2.805-4.846 8.069-4.503 8.069.2 0 1.226-.41 2.282-.91 3.784-1.789 8.297-7.226 10.13-12.202.782-2.12 1.323-7.245.768-7.245-.16 0-.619.35-1.018.778-.395.431-2.795 2.271-5.33 4.092-6.95 4.99-9.874 8.211-12.83 14.143-1.006 2.01-3.672 9.032-3.672 9.66 0 .109 1.078-.943 2.389-2.334 1.836-1.947 2.794-3.306 4.116-5.829zm-86.39 3.867c-2.166-6.064-4.677-10.334-8.124-13.793-2.142-2.16-2.878-2.754-8.4-6.79a166.7 166.7 0 0 1-4.117-3.084l-.972-.786.004 1.61c0 2.03.914 5.857 1.952 8.2 1.822 4.108 5.29 7.714 9.252 9.62 1.143.55 2.135.943 2.2.879.155-.16-2-3.88-3.87-6.683-.798-1.193-1.34-2.171-1.21-2.171.526 0 4.337 3.417 5.6 5.024.739.938 1.976 2.926 2.74 4.407.955 1.848 2.106 3.463 3.663 5.14 1.25 1.345 2.312 2.275 2.355 2.07.052-.206-.433-1.847-1.077-3.643zm-59.844.475c.196 0 .81.279 1.363.618.553.34 1.072.545 1.15.467.375-.375-.37-1.453-1.357-1.96a7.944 7.944 0 0 1-1.827-1.341c-.788-.848-1.217-.99-1.217-.405 0 .205-.2.748-.435 1.203-.411.789-.38.905.672 2.324l1.108 1.497.092-1.202c.054-.678.25-1.201.449-1.197v-.004zm202.724.762c.938-1.317.978-1.473.595-2.215-.228-.436-.42-.963-.42-1.168 0-.551-.433-.46-1.057.235-.304.334-1.03.895-1.617 1.244-1.21.718-1.816 1.371-1.816 1.956 0 .293.299.24 1.185-.21 1.643-.838 1.809-.778 1.809.64 0 1.416-.036 1.428 1.32-.48zm-219.075.798c.527-.335.99-1.748.99-3.03 0-1.476-1.577-4.62-2.735-5.445-.49-.349-.928-.588-.972-.528-.044.06-.325 1.125-.624 2.367-.69 2.846-.48 4.123.938 5.694 1.042 1.15 1.68 1.398 2.403.944zm236.115-.944c1.409-1.563 1.636-2.886.958-5.558-.294-1.154-.6-2.21-.679-2.348-.263-.45-2.231 1.709-2.954 3.244-.822 1.728-.922 3.672-.26 4.954.651 1.261 1.613 1.163 2.935-.296zm-199.958-.545c1.278-1.377 1.753-3.053 1.597-5.692-.14-2.415-1.082-4.77-2.371-5.942-.515-.463-.563-.451-.819.22-.151.39-.724 1.656-1.271 2.808-.864 1.816-.998 2.41-1.006 4.49-.01 2.069.09 2.536.722 3.444 1.258 1.796 1.97 1.946 3.154.672zm164.18-.211c1.64-1.868 1.6-5.01-.112-8.739a70.398 70.398 0 0 1-1.098-2.499l-.29-.748-.878 1.038c-2.704 3.22-2.834 8.934-.251 11.337.966.902 1.57.814 2.625-.387zm-206.311.06c.788-.62.056-2.885-1.138-3.521-.51-.274-.954-.116-2.694.958-1.144.704-2.08 1.383-2.08 1.507 0 .33 1.61 1.106 2.908 1.401 1.208.28 2.391.14 3.004-.34zm250.296-.234c.699-.303 1.274-.663 1.274-.798 0-.44-4.186-2.847-4.645-2.67-.599.229-1.64 1.987-1.64 2.774 0 1.616 2.189 1.916 5.015.694zm-38.926-1.177c1.138-.012.268-1.29-1.251-1.837l-1.297-.467-.168 1.072a16.387 16.387 0 0 1-.37 1.748l-.199.675 1.306-.59c.718-.328 1.606-.6 1.976-.6zm-174.177.125a5.12 5.12 0 0 1-.291-1.497c0-.838-.006-.842-1.51-.39-.638.189-1.25.612-1.412.971-.26.579-.144.679 1.393 1.124.924.267 1.776.507 1.896.525.12.02.086-.312-.076-.733zm-6.267-.505c1.094-.553 1.351-.838 1.425-1.596.074-.759-.128-1.124-1.088-1.992-1.782-1.611-3-1.701-6.806-.51-1.717.54-3.124 1.078-3.124 1.204 0 .12.599.753 1.337 1.397 2.407 2.12 5.799 2.735 8.254 1.497zm190.26-.307c1.378-.703 3.414-2.475 3.114-2.71-.299-.24-4.71-1.673-5.72-1.857-2.61-.479-6.224 2.084-5.32 3.773.983 1.836 5.076 2.247 7.925.792zm-204.999-.745c2.148 1.537 2.086 1.523 2.587.55.938-1.817.471-3.374-1.177-3.913-1.018-.34-6.14-.323-6.144.014 0 .09.383.535.852.984.471.45 1.178 1.513 1.571 2.361l.719 1.543.095-1.277.09-1.27 1.407 1.004zm214.429-.672c.163 0 .305.439.311.972l.012.974.473-.898c.26-.493.986-1.523 1.617-2.284l1.152-1.383-1.11-.184c-3.373-.558-6.174.064-6.523 1.45-.228.914.036 2.475.515 3.05.273.33.605.211 1.796-.643.803-.58 1.593-1.05 1.757-1.05zm14.794-1.573c-.942-.739-1.114-.575-.854.812l.203 1.094.703-.659.698-.658-.75-.591zm-244.322.898c.1-.37.183-.912.185-1.205.004-.48-.08-.47-.89.13-.842.618-.866.694-.403 1.205.647.715.89.687 1.108-.128zm35.03-1.132c1.941-2.305 1.756-6.055-.46-9.405-.938-1.417-.972-1.437-1.251-.734-.16.395-.759 1.7-1.33 2.898-.898 1.88-1.018 2.385-.868 3.653.27 2.275 1.563 4.495 2.62 4.495.29 0 .87-.41 1.29-.909zm175.356.6c.823-.44 1.777-2.472 1.986-4.212.154-1.302.04-1.763-.892-3.649-.587-1.188-1.158-2.43-1.261-2.758-.18-.56-.25-.535-1.038.339-1.33 1.485-2.196 4.124-2.016 6.152.16 1.822 1.185 4.027 1.976 4.239.26.074.519.146.573.164.05.02.353-.1.672-.274zm-203.62-.963c-.01-.664-.34-1.353-1.038-2.171-.918-1.068-1.074-1.148-1.477-.745-.407.405-.305.639.938 2.172.765.942 1.437 1.716 1.49 1.716.051 0 .095-.439.09-.972zm230.676.427c.1-.295.65-1.062 1.231-1.696.966-1.054 1.018-1.198.585-1.629-.429-.425-.563-.363-1.497.729-.698.818-1.028 1.505-1.038 2.17-.01 1.049.44 1.317.719.428zm-215.798-1.902c.958-.353 1.856-.738 1.984-.848.132-.116-.519-.789-1.437-1.497-2.116-1.637-4.012-3.737-4.93-5.47l-.719-1.342-1.437.884c-.792.487-1.517 1.01-1.606 1.157-.096.15.423.915 1.147 1.697.725.786 2.084 2.471 3.022 3.748.934 1.278 1.817 2.322 1.96 2.322.144 0 1.05-.292 2.01-.65zm203.47-.748a80.179 80.179 0 0 1 3.005-3.889l2.035-2.495-1.42-.898c-.783-.499-1.526-.902-1.653-.902-.128 0-.46.44-.727.974-.782 1.541-2.45 3.453-4.475 5.118-1.026.85-1.864 1.676-1.862 1.84.004.335 2.774 1.581 3.603 1.623.313.016.932-.555 1.497-1.373zm-208.76-.284c0-.355-2.061-2.97-3.245-4.12l-1.197-1.161-2.224 1.46a237.027 237.027 0 0 1-2.794 1.817c-.547.35-.539.385.18.978.41.334 1.151.733 1.646.884 1.006.306 7.635.428 7.635.14zm218.313-.126c.603-.167 1.414-.574 1.797-.906.674-.579.678-.613.126-.964a310.79 310.79 0 0 1-2.795-1.822l-2.223-1.461-1.198 1.161c-1.186 1.148-3.245 3.765-3.245 4.12 0 .306 6.359.2 7.536-.126zm-206.09-1.724c.123-1.304-.849-3.262-2.59-5.196-2.74-3.048-4.419-3.792-6.333-2.802-1.796.932-1.565 2.4.79 4.944 2.316 2.501 5.464 4.275 7.286 4.112.61-.06.766-.254.844-1.058zm190.276.2c2.815-1.422 6.182-4.977 6.182-6.527 0-1.81-2.699-2.715-4.597-1.543-1.471.908-4.112 3.844-4.91 5.465-.667 1.353-.878 2.934-.45 3.369.346.345 2.382-.07 3.773-.767zm-180.632-2.731c.18-.699.539-1.431.798-1.63.411-.32.38-.508-.3-1.665-.927-1.581-3.189-3.717-4.49-4.244-1.272-.513-2.906-.806-2.906-.527 0 .126 1.137 1.473 2.523 2.994 2.291 2.515 2.96 3.613 3.636 5.974.19.659.396.405.739-.898zm167.954.431c.008-.806 1.349-3.441 2.088-4.098.37-.331 1.497-1.525 2.5-2.658l1.827-2.056-1.038.22c-2.775.578-5.36 2.434-6.78 4.858-.683 1.165-.719 1.353-.304 1.672.256.2.615.938.799 1.64.319 1.224.902 1.494.908.42zm-174.992-2.164c.41-.806.739-1.908.739-2.447 0-1.19-.875-2.706-1.976-3.427-1.068-.698-3.773-.704-5.35 0l-1.191.525 1.044.79c1.51 1.146 3.485 3.284 4.55 4.923.505.782 1.038 1.353 1.184 1.265.14-.088.593-.818 1.002-1.629zm183.39.236c.532-.862 1.897-2.46 3.035-3.545 1.616-1.545 1.98-2.044 1.676-2.295-.662-.551-3.163-1.05-4.241-.847-1.93.36-3.48 2.176-3.48 4.072 0 .946 1.408 4.188 1.821 4.188.124 0 .659-.709 1.19-1.573zm-256.974-.28c3.062-.678 3.457-1.125 1.73-1.948-.977-.463-1.23-.459-4.011.052-2.316.423-3.242.475-4.2.234-.768-.2-1.23-.21-1.23-.028 0 1.261 2.456 2.764 4.043 2.47a154.42 154.42 0 0 0 3.666-.778zm-9.231.531c-.068-.065-.882-.638-1.813-1.269-1.65-1.126-6.213-5.194-5.824-5.194.5 0 3.242 1.591 5.36 3.114 1.285.918 2.39 1.677 2.454 1.677.443 0-.672-1.876-1.385-2.33-.489-.307-1.862-1.696-3.054-3.081-3.022-3.517-4.45-4.266-8.439-4.415-1.816-.066-3.345.026-3.888.24l-.898.338 1.722.927c.947.507 3.102 2.05 4.787 3.423 4.625 3.772 6.599 5.15 8.515 5.948 1.545.638 2.806.958 2.46.618zm343.74-.329c.826-.425 1.49-1.263 1.49-1.88 0-.164-.558-.148-1.376.04-1.094.251-1.923.206-3.988-.212-1.432-.29-2.955-.439-3.388-.329-.758.188-1.95 1.218-1.696 1.461.271.268 5.599 1.325 6.796 1.347.709.014 1.683-.18 2.162-.427zm6.207-.754c2.124-.974 2.928-1.543 7.112-5.034 1.645-1.373 3.932-3.02 5.078-3.653 2.575-1.423 2.285-1.63-2.236-1.63-4.112 0-5.732.69-8.103 3.46-1.77 2.066-3.038 3.364-4.272 4.372-.439.359-.798.942-.798 1.293 0 .57.183.499 1.742-.703 1.922-1.477 4.577-3.105 5.74-3.522 1.086-.388-3.646 3.986-5.762 5.323-.948.599-1.722 1.146-1.722 1.217 0 .212 1.257-.223 3.217-1.121zm-332.662-2.386 1.98-.898-.146-2.022c-.147-2.046-1.411-5.175-2.435-6.024-.567-.473-.699-.24-1.956 3.438-.968 2.838-1.138 4.327-.639 5.634.372.982.779.966 3.194-.13zm315.379-.18c.503-1.52-.044-4.159-1.673-8.043l-.499-1.194-.598.739c-1.603 1.986-2.934 6.327-2.306 7.52.24.454 3.573 2.009 4.371 2.043.192.008.51-.471.705-1.064zm-325.62-.245c.558-.231 1.17-.708 1.357-1.062.738-1.373-1.613-3.616-4.252-4.063-1.163-.2-7.12.726-7.12 1.103 0 .41 1.486 1.96 2.661 2.775 2.348 1.629 5.264 2.122 7.354 1.245zm5.554.012a9.56 9.56 0 0 0-.187-1.345c-.164-.828-.306-.938-1.198-.938-.672 0-1.01.14-1.01.425 0 .232-.076.619-.167.858-.112.296.2.587.974.909 1.429.592 1.588.598 1.588.09zm322.882-.045c.928-.392 1.09-.59 1.01-1.258-.075-.639-.273-.814-1.03-.898-.984-.11-1.297.353-1.305 1.94-.004.802-.06.792 1.325.216zm10.14-.384c1.351-.598 4.1-3.04 4.1-3.64 0-.17-.3-.308-.673-.308-.373 0-1.685-.211-2.92-.47-2.814-.59-4.361-.374-6.18.861-1.596 1.09-2.01 1.897-1.497 2.935.759 1.517 4.423 1.84 7.17.622zm-320.762-2.425c1.225-.623 2.283-1.29 2.347-1.481.204-.605-2.41-1.505-5.018-1.72-2.22-.188-2.483-.156-2.321.267.185.479.593 2.028.946 3.589.16.718.293.802 1.002.652.449-.095 1.82-.684 3.046-1.305zm301.066.649c.091-.453.349-1.541.568-2.415l.406-1.59-2.435.2c-2.463.206-4.98 1.026-4.98 1.627 0 .34 5.213 3 5.888 3 .211 0 .463-.371.555-.822zm-314.176-1.597c1.727-.926 2.395-5.47 1.198-8.17-.787-1.782-1.817-3.243-2.196-3.113-.499.16-2.375 4.762-2.555 6.235-.2 1.697.32 3.44 1.352 4.545.838.898 1.277.998 2.203.499zm325.513-.587c1.76-2.092 1.696-4.639-.214-8.852l-1.018-2.256-.618.785c-2.28 2.894-2.887 6.906-1.458 9.644.933 1.79 2.162 2.04 3.31.68zm-307.797-.81c.074-.126-.014-.934-.193-1.8l-.326-1.573-1.061.2c-.946.175-1.777.798-1.803 1.346-.006.106.46.473 1.038.813.579.34 1.05.758 1.05.928 0 .353 1.092.425 1.297.086zm289.134-.246c.216-.26.779-.67 1.258-.918.744-.385.81-.513.47-.922-.374-.453-2.334-1.423-2.474-1.224-.2.288-.69 3.114-.573 3.306.234.379.906.26 1.317-.24zm-316.489-1.389c.34-.214.695-.639.793-.948.439-1.377-2.525-3.483-4.904-3.483-1.697 0-5.53.61-5.892.938-.374.34 1.407 2.186 3.022 3.14 2.127 1.257 5.275 1.417 6.981.351zm4.797.136c-.008-1.166-.292-1.423-1.567-1.423-1.008 0-1.124.08-1.124.772 0 .635.2.826 1.124 1.084.615.174 1.224.331 1.347.351.124.02.22-.331.22-.782zm27.808-1.503c.974-.729.998-.799.804-2.282-.379-2.878-1.56-3.646-2.994-1.944-1.573 1.869-2.449 4.523-1.936 5.869l.28.738 1.417-.818c.782-.45 1.876-1.152 2.429-1.563zm281.413.734c.146-2.211-1.872-5.894-3.225-5.894-.838 0-1.577 1.417-1.617 3.114l-.04 1.52 2.096 1.408c1.154.775 2.231 1.371 2.395 1.327.168-.044.34-.706.393-1.477zm25.733.958c.379-.14.674-.503.674-.824 0-.439-.263-.605-1.122-.708-1.253-.152-1.562.115-1.568 1.363-.004.898.067.898 2.016.17zm9.201-.425c1.523-.718 3.984-2.998 3.627-3.353-.304-.303-4.178-.958-5.729-.968-2.68-.02-5.577 2.016-5.082 3.573.51 1.609 4.485 2.024 7.18.748zm-326.473-.898c1.098-.565 1.126-1.303.1-2.523-1.243-1.477-2.375-1.922-4.754-1.872-1.154.028-2.46.152-2.905.28-.798.23-.802.247-.339 1.193 1.228 2.539 5.553 4.14 7.898 2.924zm302.284-.16c1.018-.379 2.684-1.928 3.253-3.013.403-.769.391-.787-.698-.968-1.797-.296-4.843-.216-5.55.145-1.177.605-2.6 2.162-2.6 2.855 0 .369.235.808.523.978.695.403 4.008.407 5.07.006zm-320.12-2.608c1.481-2.236 1.288-5.441-.49-8.224-.5-.782-1.007-1.423-1.129-1.423-.12 0-.712 1.138-1.317 2.527-1.237 2.846-1.431 4.93-.61 6.547.748 1.469 1.013 1.704 1.94 1.704.658 0 1.03-.26 1.606-1.131zm22.004.642c.944-.559 2.407-2.658 2.407-3.459 0-.351-.607-.838-1.788-1.437-.982-.495-1.933-.902-2.112-.902-.922 0-1.551 3.844-.844 5.184.634 1.207 1.117 1.333 2.335.614zm290.906.26c.607-.405 1.018-1.517 1.018-2.755 0-1.373-.694-3.301-1.19-3.301-.738 0-3.9 1.836-3.9 2.265 0 .79.825 2.096 1.942 3.08 1.09.958 1.541 1.108 2.13.715zm22.868-.068c.858-.455 1.605-2.75 1.437-4.411-.146-1.447-1.962-6.068-2.385-6.068-.443 0-2.032 3.154-2.387 4.745-.28 1.249-.28 1.9.006 2.964.685 2.574 1.864 3.556 3.327 2.774zm-303.275-1.178 1.826-1.181-1.15-.346c-1.722-.515-2.91-.291-3.034.565-.1.725.16 2.14.396 2.14.075 0 .958-.53 1.96-1.178zm270.515.132c.11-.575.12-1.25.024-1.497-.205-.539-1.772-.599-3.142-.124l-.944.33 1.72 1.143c.949.631 1.817 1.158 1.937 1.17.114.01.3-.451.403-1.026zm-308.487-2.762c-.108-1.122-.14-1.152-1.134-1.038-.886.105-1.022.231-1.022.942 0 .668.18.878.975 1.118.532.16 1.043.259 1.131.213.088-.04.11-.595.05-1.233zm-5.02.69c1.793-.748 1.689-2.255-.235-3.443-1.51-.93-3.31-1.064-6.355-.47-3.663.714-3.713.758-2.228 1.935 2.67 2.116 6.457 2.964 8.818 1.976zm350.698-.04c.366-.26.665-.732.665-1.052 0-.459-.21-.579-1.046-.579-.998 0-1.05.052-1.05 1.05 0 1.162.38 1.318 1.431.58zm9.974-.495c1.864-.854 3.717-2.315 3.36-2.644-.486-.45-6.098-1.262-7.35-1.062-1.443.23-3.094 1.165-3.543 2.008-1.265 2.363 3.665 3.477 7.533 1.696zm-342.594-1.118c.068-.914-.126-1.726-.667-2.822-.79-1.597-3.01-4.383-3.493-4.383-.395 0-.34 2.216.08 3.206.619 1.453 3.373 5.476 3.687 5.375.163-.054.339-.675.393-1.378zm4.77 1.038c.044-.032-.463-.628-1.123-1.323a17.058 17.058 0 0 1-2.056-2.762c-.653-1.138-.907-1.378-1.052-1.002-.104.273.014 1.097.26 1.826.249.73.452 1.872.452 2.535v1.21l1.723-.206c.946-.116 1.756-.236 1.796-.272zm312.048-.71c0-.63.2-1.809.44-2.615.584-1.936.133-2.295-.827-.655-.42.719-1.383 1.877-2.136 2.575-1.407 1.298-1.387 1.417.28 1.637 2.25.295 2.243.3 2.243-.942zm3.126-.753c.746-1.046 1.625-2.495 1.952-3.217.623-1.37.822-3.563.327-3.563-.439 0-2.469 2.54-3.383 4.24-.79 1.468-1.03 2.957-.639 3.971.096.256.226.471.28.471.054 0 .718-.858 1.463-1.902zm-289.497.914c.658-.373 1.197-.874 1.197-1.117 0-.659-2.894-2.475-6.439-4.052-2.076-.918-4.974-1.842-8.533-2.72-2.964-.731-6.095-1.617-6.956-1.967-.864-.351-1.646-.563-1.742-.465-.371.37 1.223 2.85 2.828 4.4 2.188 2.115 4.705 3.732 7.014 4.496 1.812.605 6.048 1.517 7.038 1.517.65 0-2.16-2.004-5.262-3.752-2.534-1.43-3.433-2.176-2.135-1.783 3.618 1.102 9.34 4.018 10.884 5.55.726.718.648.718 2.106-.105zm260.805-.99c1.133-.758 2.934-1.82 4.007-2.355 2.116-1.058 5.943-2.405 6.172-2.175.08.08-1.178.89-2.786 1.804-3.547 2.016-6.104 3.804-5.435 3.804.273 0 1.606-.213 2.97-.47 4.84-.919 8.367-2.72 11.3-5.773 1.572-1.637 2.963-3.828 2.636-4.152-.086-.09-.87.12-1.74.467-.871.348-3.805 1.17-6.524 1.83-2.718.661-6.016 1.617-7.333 2.122-3.918 1.507-8.233 4.024-8.233 4.8 0 .332 1.876 1.466 2.43 1.472.266.004 1.41-.615 2.542-1.374zm-282.418.436c.878-.463 1.094-.839 1.098-1.917.012-2.08-2.76-5.033-6.287-6.702-2.699-1.277-3.11-1.238-2.907.28.394 2.923 3.364 7.225 5.689 8.239 1.198.519 1.577.535 2.41.1zm302.32.044c2.32-.645 5.774-5.31 6.181-8.348.146-1.087.096-1.237-.433-1.237-.942 0-4.65 1.984-6.102 3.257-1.377 1.214-2.658 3.386-2.658 4.503 0 .625 1.207 2.124 1.708 2.122.13 0 .719-.14 1.307-.3zm-275.765-1.747c1.177-.583 1.181-.595.584-4.022-.419-2.425-.419-2.485.759-9.95l.375-2.395.565 1.198c.485 1.03.569 2.008.609 7.035.06 7.132.014 6.587.547 6.587.754 0 1.291-1.227 1.964-4.49 1.183-5.75.479-11.224-1.996-15.535-.994-1.737-3.944-5.723-4.236-5.725-.12 0-.175 1.321-.124 2.938.096 3.046-.05 3.908-1.608 9.487-1.238 4.435-1.158 9.447.24 14.297.363 1.264.738 1.358 2.323.573zm250.022-2.221c.493-2.032.675-3.685.683-6.212.006-3.134-.1-3.808-1.168-7.485-1.094-3.76-1.177-4.311-1.181-7.884l-.006-3.848-1.004 1.151c-2.75 3.146-4.886 7.166-5.605 10.56-1.058 4.985.214 13.999 2.02 14.33.455.086.513-.499.603-6.135.085-5.326.18-6.407.658-7.425l.56-1.198.378 2.395c1.172 7.453 1.178 7.545.765 9.806-.216 1.19-.453 2.501-.525 2.915-.11.63.048.826 1.01 1.243 2.016.878 2.072.834 2.814-2.215zm-328.754-5.39c-5.868-12.011-8.094-18.063-8.094-22.015 0-1.346.15-1.972.62-2.567.338-.433.538-.912.442-1.068-.094-.152-.918-.433-1.82-.623-5.992-1.243-6.387 4.699-1.048 15.783 1.946 4.043 3.569 6.676 6.61 10.732 1.893 2.52 6.544 7.62 6.95 7.62.097 0-1.55-3.532-3.662-7.858zm30.804 6.38c1.032-1.877.994-4.491-.094-6.717-1.297-2.65-1.525-2.675-2.594-.295-1.721 3.842-1.845 5.449-.571 7.539.51.838.752.978 1.567.898.786-.076 1.093-.334 1.692-1.425zm346.123.818c1.537-1.653 1.447-4.004-.305-7.856l-.946-2.076-.563.732c-2.291 2.978-2.483 7.312-.411 9.382.664.666 1.497.598 2.225-.18zm27.539-2.705c7.92-8.942 13.782-20.289 13.782-26.682 0-2.635-.525-3.66-2.086-4.08-1.185-.32-2.131-.225-3.676.36-.984.373-.986.389-.226 1.207.33.351.619.988.65 1.41.292 4.424-1.636 9.995-7.863 22.738-2.126 4.345-3.865 7.948-3.865 8.01 0 .526.975-.352 3.284-2.959zm-378.678.52c-.104-1.258-.163-1.342-.984-1.342-.664 0-.948.184-1.167.768-.42 1.108-.396 1.17.678 1.523 1.557.51 1.583.491 1.471-.946zm355.455.426c.469-.425-.679-1.816-1.41-1.716-.538.08-.672.32-.746 1.357l-.092 1.264.99-.332c.543-.18 1.11-.439 1.258-.573zm-306.424-.05a3.816 3.816 0 0 0-.239-.926c-.2-.499-.256-.509-.615-.075-.32.383-.323.568-.024.928.453.545.906.584.878.073zm256.305-.495c0-.14-.2-.419-.45-.628-.245-.204-.45-.256-.453-.11-.004.14-.09.579-.191.966-.174.645-.14.679.45.363.354-.19.644-.459.644-.595zm-310.216-.06c2.495-.87 1.405-3.193-1.872-3.983-.852-.206-5.473.59-5.968 1.028-.312.275 2.05 2.227 3.413 2.818 1.227.533 3.124.593 4.427.14zm16.477-.61c.784-2.246.074-5.15-1.765-7.206l-1.145-1.283-.37.898c-.564 1.377-.47 3.719.216 5.24.629 1.39 2.068 3.293 2.495 3.293.136 0 .393-.423.573-.942zm331.564-.032c1.952-2.603 2.581-5.35 1.72-7.525l-.338-.87-.699.658c-1.916 1.797-3.094 5.839-2.283 7.805.475 1.145.698 1.137 1.602-.068zm19.747.24c1.445-.69 3.085-2.21 2.73-2.532-.455-.415-2.998-.926-4.603-.926-2.778 0-4.97 1.545-4.211 2.968.67 1.258 3.918 1.517 6.088.487zm-345.59-1.763c0-1.772-.811-3.098-4.781-7.818l-3.433-4.082-.525.685c-.291.379-.533.778-.539.892 0 .112 1.45 2.135 3.222 4.49 4.884 6.494 5.588 7.362 5.828 7.226.128-.072.227-.698.227-1.393zm323.338-4.182c2.312-3.093 4.202-5.868 4.202-6.155 0-.288-.172-.759-.38-1.046-.339-.465-.786-.036-4.117 3.96-2.056 2.463-3.896 4.93-4.092 5.479-.435 1.207-.507 3.633-.106 3.493.16-.054 2.18-2.635 4.491-5.729zm-294.024 4.266c1.278-1.763 1.677-4.02 1.268-7.134-.184-1.381-.391-2.57-.463-2.64-.244-.24-5.122 5.03-5.8 6.267-.37.672-.673 1.617-.673 2.092 0 .768.207.958 1.872 1.728 1.028.475 2.104.872 2.395.884.284.01.918-.529 1.403-1.197zm263.61.331c2.187-.978 2.395-1.431 1.557-3.427-.348-.838-5.266-6.417-5.909-6.706-.11-.05-.363.882-.564 2.07-.58 3.412.036 6.638 1.57 8.27.813.869.978.859 3.348-.207zm-310.639-.932c.83-.892 1.357-3.038 1.114-4.545-.204-1.291-1.49-3.82-1.936-3.82-.274 0-1.729 3.098-2.152 4.575-.17.586-.148 1.38.056 2.145.585 2.192 1.776 2.865 2.918 1.641zm356.349-.353c.475-.755.588-1.348.503-2.621-.12-1.802-1.597-5.473-2.136-5.31-.507.148-1.717 2.751-1.892 4.066-.272 2.036 1.078 4.835 2.335 4.835.33 0 .844-.42 1.192-.972zm-316.354-.825.34-1.197c.15-.527.026-.599-1.012-.599-.944 0-1.288.16-1.693.774-.585.89-.624.825.739 1.238 1.46.449 1.437.451 1.626-.216zm275.989.092c.966-.195.99-.315.24-1.217-.723-.869-2.839-.99-2.603-.148.513 1.842.559 1.912 1.044 1.722.273-.103.868-.265 1.317-.359zm-291.274-.918c-.429-1.816-.958-2.67-1.882-3.054-1.221-.507-1.401-.283-.958 1.188.251.844.689 1.423 1.467 1.932 1.437.938 1.61.932 1.373-.06zm305.749.166c1.102-.759 1.916-1.99 1.916-2.907 0-.738-.032-.746-1.297-.22-.759.32-1.064.696-1.358 1.682-.21.698-.455 1.457-.543 1.684-.227.599.17.52 1.278-.24zm-344.5-.465c-.009-.12-.76-.693-1.665-1.268-2-1.267-6.627-6.191-5.493-5.848 1.56.475 3.776 1.886 6.071 3.872 1.318 1.138 2.308 1.836 2.196 1.549-.11-.287-1.032-1.737-2.048-3.226-2.934-4.279-5.874-6.083-10.499-6.44l-2.383-.184.599 1.17c1.469 2.874 4.81 6.726 7.395 8.506 2.116 1.457 5.876 2.667 5.824 1.867zm384.298-.24c2.261-.589 3.998-1.71 6.327-4.088 1.98-2.016 4.89-6.048 4.89-6.772 0-.36-.36-.405-2.03-.252-5.03.47-7.676 2.204-11.038 7.236-1.78 2.666-1.816 2.754-.688 1.85 3.964-3.2 6.762-4.994 7.784-4.994.639 0-4.465 5.244-5.972 6.138-1.387.822-1.892 1.347-1.291 1.347.128 0 1.038-.21 2.016-.465zm-334.756-.18c1.133-.519 1.221-1.287.319-2.834-.924-1.567-2.886-2.934-5.09-3.547-1.633-.453-7.634-.802-7.634-.447 0 .583 2.846 3.984 4.111 4.916 2.69 1.982 6.308 2.815 8.294 1.91zm288.06-.24c2.283-.797 4.16-2.223 5.868-4.45.798-1.038 1.447-1.982 1.447-2.104 0-.447-6.148-.01-8.184.585-2.269.665-4.207 2.271-4.978 4.132-.403.972-.385 1.042.4 1.716 1.042.898 3.117.944 5.449.124zm-329.208-.312c1.088-1.088.615-2.62-1.397-4.531-1.587-1.511-3.483-2.392-5.54-2.58-1.637-.147-1.745-.119-1.745.492 0 .83 1.223 3.253 2.27 4.499 1.077 1.277 3.632 2.714 4.84 2.714.578.006 1.217-.24 1.572-.594zm369.772-.675c1.98-1.351 3.693-3.687 4.058-5.539.193-.97.191-.972-1.028-.972-2.655 0-6.547 2.295-7.713 4.547-.535 1.038-.323 2.49.428 2.928 1.067.619 2.367.327 4.259-.964zm-356.131-3.669c.08-.327.016-.794-.144-1.038-.245-.37-.453-.379-1.333-.06-.573.206-1.729.456-2.569.56-.838.095-1.6.293-1.687.435-.087.14-.014.259.164.259.499 0 2.922 2.335 3.66 3.533l.66 1.066.554-2.076c.3-1.142.615-2.347.695-2.679zm331.19-.171c1.855-2.046 3.362-3.853 3.352-4.018-.028-.495-1.8-1.747-2.067-1.463-2.186 2.339-6.421 7.614-6.757 8.417-.73 1.744-.615 1.926.835 1.317.924-.391 2.191-1.553 4.638-4.255zm8.462 4.44c.004-.538 1.928-2.883 3.03-3.698l.934-.686-.858-.184c-1.15-.24-2.808-.659-3.607-.904-1.144-.35-1.411.73-.704 2.834.333.99.606 2.072.606 2.407 0 .334.136.607.3.607.165 0 .3-.168.3-.373zm-326.946-.31c0-.865-1.237-2.687-4.171-6.148-1.697-2.004-3.174-3.643-3.278-3.639-.1.004-.614.375-1.143.824l-.958.815 3.313 3.742c1.996 2.256 3.744 3.948 4.401 4.26 1.31.618 1.836.662 1.836.145zm21.258-2.27c.574-.46 1.52-1.757 2.095-2.88 1.008-1.96 1.048-2.164 1.048-5.27 0-1.796-.136-3.373-.305-3.54-.475-.48-5.545 4.582-6.387 6.379-1.052 2.243-.865 5.375.375 6.251.559.393 2.07-.056 3.174-.942zm273.655.335c.553-.698.632-1.117.533-2.774-.066-1.066-.376-2.481-.691-3.14-.759-1.587-5.844-6.55-6.271-6.12-.18.18-.312 1.677-.31 3.513.006 2.875.094 3.394.853 5.046.888 1.93 1.832 3.01 3.333 3.799 1.287.678 1.816.61 2.555-.324zm-318.799-1.349c.28-.699.591-1.485.687-1.746.124-.34-.373-.827-1.77-1.731-1.968-1.271-4.97-4.32-4.97-5.044 0-.273.233-.34.748-.21.413.104 1.108.1 1.547-.011.758-.19.725-.236-.778-.929-1.763-.818-2.416-.866-4.867-.343l-1.702.36 2.403 2.622c1.323 1.437 3.174 3.158 4.112 3.812a10.778 10.778 0 0 1 2.742 2.835c.567.894 1.098 1.636 1.182 1.64.084.006.379-.558.664-1.257zm362.131-.499c.571-.912 1.703-2.046 2.968-2.966 1.89-1.377 6.316-5.914 6.036-6.192-.066-.065-1.097-.279-2.291-.479-2.044-.339-2.256-.319-3.645.332-1.692.792-1.702 1.251-.02 1.018.635-.092 1.228-.048 1.318.1.269.433-2.923 3.782-4.79 5.033a67.043 67.043 0 0 0-1.997 1.362c-.267.22.934 3.265 1.29 3.265.12 0 .63-.665 1.133-1.477zm-336.702-.549c-1.537-3.054-1.533-3.064.308-3.084l1.592-.02-.898-.648c-1.7-1.234-4.191-4.012-5.313-5.922-1.186-2.02-1.41-2.849-.695-2.575.236.09 1.278.25 2.32.353l1.89.19-1.345-.879c-2.166-1.41-4.138-3.762-5.396-6.435-.632-1.349-1.097-2.503-1.038-2.567.064-.06.545.036 1.074.22 1.767.619 1.847.373.423-1.291-.764-.893-1.852-2.545-2.415-3.667l-1.032-2.042 1.358-.092 1.357-.091-1.727-1.631c-.946-.898-1.762-1.63-1.816-1.63-.054 0 .004 1.436.12 3.197l.203 3.2-1.057-.655c-1.368-.847-1.434-.83-1.434.33 0 .54-.203 1.272-.453 1.626-.379.539-.395.892-.111 2.09.622 2.634.724 2.77 1.137 1.51.206-.614.487-1.117.629-1.117.423 0 2.267 2.44 3.106 4.111 1.557 3.102 2.046 6.451 1.345 9.228-.411 1.632-.42 1.617 3.493 5.952 2.499 2.766 4.024 4 5.004 4.052.126.006-.16-.767-.635-1.713zm311.18.483c.589-.519 2.291-2.355 3.782-4.082 2.331-2.698 2.685-3.25 2.525-3.924a14.625 14.625 0 0 1 .882-9.47c.655-1.478 3.062-4.94 3.433-4.94.1 0 .372.502.6 1.123l.41 1.124.551-1.797c.5-1.626.505-1.872.096-2.594-.25-.436-.455-1.298-.455-1.917 0-1.043-.036-1.09-.523-.666a7.445 7.445 0 0 1-1.241.828l-.719.375.16-3.18c.09-1.748.14-3.179.113-3.179-.026 0-.824.735-1.776 1.63l-1.72 1.63 1.383.091 1.38.09-1.097 2.13c-.603 1.17-1.703 2.82-2.443 3.667-1.377 1.576-1.283 1.816.471 1.203.525-.185 1.022-.271 1.098-.193.076.077-.46 1.345-1.198 2.814-1.385 2.774-2.86 4.487-5.261 6.128l-1.347.922 1.784-.188c.978-.1 2.11-.27 2.509-.371l.726-.18-.964 1.817c-1.377 2.582-3.497 5.093-5.349 6.333l-1.593 1.07 1.683.09c1.916.103 1.92.125.565 2.82-.39.778-.709 1.485-.709 1.57 0 .492 1.324.03 2.248-.778zm-13.413-3.18a2.16 2.16 0 0 0-1.461-.674c-.827 0-.847.04-.847 1.649v1.648l1.462-.974 1.457-.978-.611-.672zm-283.777 0c.052-.966-1.421-.924-2.351.066-.665.709-.67.753-.128.952.313.114.906.467 1.317.785l.749.579.19-.855c.103-.47.205-1.157.225-1.527zm-30.303.843c2.26-1.028 2.451-2.288.613-4.046a6.814 6.814 0 0 0-4.864-1.964c-.909 0-6.875 1.371-7.274 1.67-.599.452 3.068 3.474 5.244 4.324 1.902.744 4.66.748 6.281.012zm349.413-.599c1.706-.908 4.275-3.108 4.275-3.66 0-.14-.235-.256-.523-.26-.29 0-1.663-.34-3.054-.747-3.17-.932-4.82-.938-6.766-.034-1.617.753-3.128 2.288-3.128 3.174 0 1.617 2.407 2.774 5.415 2.603 1.505-.088 2.401-.34 3.783-1.078zm-322.79-1.653c.233-.319.423-.81.423-1.097 0-1.006-1.936-3.082-3.733-4.002-1.63-.835-2.056-.913-5.748-1.052-3.014-.112-3.992-.06-3.992.215 0 .607 2.49 3.46 4.06 4.65 2.107 1.598 3.459 2.017 6.221 1.937 1.924-.06 2.425-.18 2.77-.65zm295.99-.26c1.996-.971 3.868-2.554 5.033-4.25.492-.715.899-1.378.899-1.47 0-.095-1.617-.171-3.593-.171-2.775 0-3.922.126-5.054.559-3.842 1.457-6.048 4.866-3.864 5.978 1.177.598 4.758.25 6.58-.643zm-340.479.097c0-.232-4.856-4.651-8.311-7.565-5.024-4.24-7.705-5.908-9.491-5.908-.874 0-1.126.14-1.363.768-.665 1.749-.13 5.763 1.125 8.433l.533 1.128 3.142.188c3.453.2 5.814.884 7.994 2.301 1.201.782 1.547.858 3.848.83 1.39-.02 2.527-.1 2.525-.18zm384.73-.994c2.554-1.407 4.97-2.02 8.037-2.036l2.495-.016.62-1.393c.917-2.076 1.416-4.192 1.42-6.048.006-4.451-2.626-3.94-9.88 1.904-2.96 2.385-9.335 8.128-9.51 8.563-.045.111 1.033.18 2.394.15 2.226-.049 2.675-.16 4.422-1.124zm-361.642-.535c1.217-1.218 1.904-3.25 1.908-5.657.008-1.924-.126-2.52-.946-4.191-.984-2.01-1.789-3.194-2.008-2.974-.07.071-.813 1.532-1.651 3.247-1.383 2.828-1.523 3.307-1.523 5.178 0 2.046.413 3.347 1.43 4.505.624.714 2.027.658 2.794-.106zm334.656-.136c1.792-2.275 1.665-5.355-.4-9.657-1.397-2.918-1.482-3.028-2.015-2.546-.304.275-.988 1.383-1.517 2.463-.858 1.736-.966 2.235-.944 4.363.02 1.846.173 2.694.672 3.662 1.304 2.521 3.02 3.224 4.204 1.717zm-308.998.044c3.401-1.782 5.01-6.778 3.605-11.213l-.32-1.006-2.509 2.495c-2.9 2.882-3.786 4.477-3.826 6.874-.048 2.788 1.106 3.866 3.048 2.85zm282.401.12c.739-.4 1.27-2.401 1.004-3.819-.39-2.091-1.048-3.133-3.704-5.868l-2.655-2.734-.365.898c-.2.495-.371 2.042-.38 3.441-.02 3.659 1.228 6.192 3.845 7.82 1.024.639 1.449.689 2.255.26zm-313.778-4.032c0-1.331-.012-1.347-1.018-1.347-.798 0-1.048.14-1.181.672-.28 1.118-.2 1.258.948 1.617.606.188 1.137.355 1.177.375.04.016.074-.579.074-1.317zm344.886.748c.644 0 .732-.291.43-1.423-.139-.53-.398-.672-1.197-.672-.998 0-1.008.014-1.008 1.357 0 1.251.046 1.337.58 1.05.319-.172.857-.312 1.197-.312zm-349.75-.648c1.85-1.138 1.527-2.77-.858-4.352-1.737-1.145-4.032-1.265-7.23-.369-1.357.38-2.595.799-2.748.932-.384.33 1.437 2.192 3.107 3.174 2.749 1.625 5.7 1.86 7.73.615zm360.115-.394c1.465-.858 4.136-3.141 3.922-3.353-.064-.064-1.377-.463-2.924-.888-4.411-1.21-7.273-.659-8.972 1.723-.854 1.203-.573 2.185.852 2.964 1.697.924 5.158.706 7.126-.444zm-328.18-1.081.196-1.374-1.281-.02c-1.002-.012-1.397.136-1.8.675-.51.679-.5.699.894 1.605.778.505 1.497.818 1.604.702.106-.115.28-.832.39-1.588zm291.63.447c.718-.46.724-.5.225-1.166-.403-.543-.794-.687-1.812-.673l-1.298.016.192 1.078c.106.587.263 1.318.351 1.613.174.59-.034.667 2.345-.87zm-335.964.674 1.443-.345-1.866-1.497c-1.028-.824-2.352-2.092-2.944-2.818l-1.074-1.322.822.206c1.238.307 1.008-.116-.858-1.605-1.817-1.45-4.605-4.365-4.605-4.814 0-.152.431-.275.958-.275h.958l-1.333-.859c-.733-.473-1.796-1.35-2.363-1.946-.567-.597-1.31-1.086-1.647-1.082-1.198.008-11.537 3.707-11.211 4.012.063.06 1.15.387 2.41.733 4.9 1.333 9.362 4.052 14.771 8.998 3.593 3.283 3.653 3.303 6.537 2.614zm381.656-.379c1.317-1.421 6.754-6.008 8.622-7.277a30.367 30.367 0 0 1 8.39-3.926c1.337-.386 2.424-.79 2.424-.904 0-.42-9.84-3.873-11.033-3.873-.286 0-1.054.547-1.705 1.218-.65.67-1.788 1.543-2.53 1.936l-1.346.707 1.122.014c.654.008 1.123.16 1.123.369 0 .383-3.986 4.415-5.688 5.748l-1.046.825 1.018-.2 1.014-.208-.623.879c-.699.982-2.7 2.878-4.207 3.992l-.998.738 1.596.34c2.521.538 3.07.482 3.869-.376zm-341.34-2.509c.8-.798.76-1.19-.255-2.575-1.896-2.594-3.605-3.365-8.223-3.708-1.84-.136-3.41-.188-3.483-.116-.316.311 1.098 2.32 2.714 3.858 2.29 2.188 4.336 3.134 6.779 3.134 1.473.006 1.996-.12 2.469-.593zm303.244-.467c1.174-.587 2.705-1.64 3.41-2.343 1.237-1.238 2.59-3.33 2.315-3.573-.08-.068-1.637-.02-3.47.106-3.74.255-5.594.89-7.249 2.475-.992.952-1.846 2.287-1.846 2.89 0 .174.271.583.599.914 1.026 1.026 3.648.833 6.241-.467zm-326.574.156c.319-.17.942-1.012 1.385-1.87 1.197-2.328 1.132-5.05-.2-7.933-.539-1.177-1.223-2.355-1.517-2.62-.499-.451-.612-.306-1.936 2.459-2.08 4.351-2.175 7.469-.3 9.497.765.824 1.614.978 2.57.467zm346.017-.366c1.49-1.584 1.97-4.403 1.144-6.694-.23-.639-.918-2.208-1.531-3.487-1.298-2.7-1.437-2.69-2.914.214-1.717 3.373-1.425 8.063.612 9.954.945.874 1.877.878 2.69.014zm-317.277-1.976c1.632-1.696 2.395-3.652 2.435-6.227.02-1.98-.31-4.291-.619-4.291-.114 0-1.367 1.121-2.786 2.495-2.182 2.107-2.659 2.746-3.1 4.145-.583 1.857-.423 4.112.35 4.882.911.913 2.209.565 3.72-1.004zm289.703 1.222c.499-.32.992-1.727.992-2.854.004-2.156-.939-3.839-3.593-6.417-1.397-1.358-2.63-2.47-2.735-2.47-.487 0-.838 3.793-.539 5.69.64 3.987 3.879 7.32 5.875 6.051zm-323.854-2.86c0-.878-.06-1.657-.134-1.73-.074-.075-.675-.08-1.338-.02-1.187.113-1.433.412-1.916 2.35-.044.172 1.902.763 3.162.963.126.02.225-.683.225-1.561zm356.434 1.098c1.647-.28 1.693-.32 1.305-1.066a38.628 38.628 0 0 1-.563-1.132c-.205-.44-2.231-.958-2.538-.653-.084.086-.152.887-.152 1.783 0 1.429.064 1.602.525 1.425.287-.11.928-.272 1.423-.36zm-362.165-.827c1.988-1.028 1.856-2.746-.325-4.26-2.028-1.404-5.45-1.283-10.387.374-.31.1-.148.427.598 1.204 2.835 2.95 7.302 4.131 10.112 2.68zm372.642-.3c1.688-.786 4.12-2.774 3.964-3.247-.174-.519-4.75-1.704-6.511-1.686-2.475.024-4.164.808-5.213 2.425-.62.958-.434 1.796.544 2.439 1.893 1.237 4.64 1.261 7.218.066zm-338.367-2.195c.1-.45.26-1.106.36-1.453.149-.515.027-.662-.663-.802a9.91 9.91 0 0 1-1.344-.363c-.379-.144-.553.046-.738.804-.347 1.417-.355 1.391.639 2.022 1.23.788 1.536.752 1.746-.206zm298.902.174 1.206-.689c.036-.02-.09-.539-.28-1.157-.259-.843-.459-1.066-.812-.915-.26.112-.85.27-1.317.352-.699.116-.815.26-.665.778.1.351.26 1.006.36 1.457.1.455.223.827.275.827.052 0 .609-.296 1.237-.653zm-328.399-1.297c2.505-2.106 2.384-7.525-.245-11.222l-.699-.978-.838 1.613c-2.629 5.07-2.806 8.658-.515 10.585 1.112.938 1.198.938 2.301.004zm359.237-.64c.699-.921.849-1.44.926-3.22.088-1.997.01-2.304-1.265-4.97-.747-1.563-1.461-2.875-1.587-2.915-.373-.12-1.645 1.944-2.22 3.609-.961 2.788-.648 5.595.85 7.615 1.025 1.377 2.18 1.337 3.294-.12zm-333.804.326c2.056-1.437-1.187-5.103-5.12-5.788-2.229-.391-5.289-.44-5.289-.08 0 .503 1.868 3.042 2.918 3.964 2.37 2.08 5.948 2.99 7.493 1.904zm309.667.008c1.924-.662 3.992-2.291 5.21-4.098.578-.864 1.057-1.696 1.057-1.846 0-.355-5.094 0-6.656.471-1.593.48-4.018 2.687-4.286 3.902-.403 1.837 1.785 2.575 4.677 1.571zm-340.435-3.808v-1.577l-1.347.11c-1.178.094-1.347.193-1.347.798 0 .384-.074.886-.16 1.118-.12.303.236.507 1.27.733.79.171 1.468.327 1.508.35.044.02.076-.668.076-1.532zm36.111.908c1.637-1.265 2.396-2.54 2.81-4.724.26-1.378-.023-4.316-.458-4.75-.086-.087-1.164.843-2.395 2.067-2.52 2.503-3.314 4.052-3.054 5.988.293 2.156 1.45 2.69 3.097 1.417zm297.236.206c.669-.671.878-2.256.483-3.719-.26-.962-.958-1.916-2.826-3.848l-2.483-2.569-.33 1.876c-.578 3.294.563 6.707 2.709 8.078 1.17.75 1.826.798 2.445.18zm35.984-.14c.644 0 .712-.1.555-.822-.332-1.517-.392-1.571-1.617-1.571h-1.208v1.49c0 1.474.01 1.486.769 1.198.419-.16 1.097-.293 1.503-.293zm-374.906-.559c1.322-.745 1.617-1.387 1.082-2.335-.682-1.206-2.55-2.048-4.49-2.028-1.61.02-6.288 1.221-6.288 1.617 0 .746 3.313 2.87 5.19 3.32 1.27.308 3.445.033 4.51-.572zm384.46-.146c1.513-.706 3.444-2.15 3.444-2.57 0-.13-1.358-.6-3.01-1.042-2.695-.725-3.182-.775-4.631-.473-1.777.369-3.437 1.636-3.437 2.618 0 2.01 4.587 2.89 7.634 1.467zm-23.832-2.588c1.004-1.234 2.03-2.671 2.276-3.19.487-1.018.609-2.798.193-2.798-.14 0-.954.738-1.806 1.64-1.49 1.577-3.018 4.252-3.026 5.296 0 .539.324 1.53.453 1.387.044-.05.904-1.098 1.91-2.335zm-340.742 1.125c.14-1.147-1.287-3.752-3.03-5.54-.838-.865-1.636-1.573-1.764-1.573-.34 0-.29 1.616.08 2.588.419 1.106 3.944 5.493 4.325 5.386.166-.048.34-.436.391-.859zm17.52-.752.179-1.571h-1.597c-2.441 0-2.585.523-.547 2.024.932.685 1.717 1.217 1.74 1.182.026-.032.126-.769.224-1.637zm305.245.459a88.139 88.139 0 0 1 1.51-1.044c.064-.04-.051-.28-.259-.529-.24-.291-.89-.459-1.766-.459h-1.388l.106 1.497c.056.822.17 1.497.25 1.497.08 0 .774-.44 1.543-.966zm-327.8-.072c.22-.569.111-1.108-.464-2.365-.423-.918-.826-2.495-.932-3.627-.183-1.984-.207-2.022-2.387-4.397-1.21-1.317-2.2-2.519-2.2-2.669 0-.153-.153-.273-.339-.273-.465 0-.14 2.68.47 3.852.253.491 1.023 1.541 1.71 2.336a13.587 13.587 0 0 1 3.008 6.163c.391 1.868.698 2.136 1.133.984zm349.516-.682c.26-1.953 1.617-4.691 3.293-6.653.845-.99 1.577-2.228 1.84-3.124.512-1.724.567-2.874.14-2.874a.292.292 0 0 0-.299.283c0 .154-.938 1.294-2.088 2.531-2.122 2.292-2.235 2.521-2.53 5.07a11.617 11.617 0 0 1-.77 2.81c-.798 1.803-.79 3.378.013 3.378.116 0 .295-.64.399-1.421zm-384.394-3.43c-1.743-1.816-3.108-3.365-3.034-3.439.409-.409 3.66 1.803 5.96 4.046 3.313 3.238 4.012 3.038 1.47-.415-3.652-4.962-6.422-6.51-13.272-7.425-1.438-.19-1.537-.032-.591.958a541.27 541.27 0 0 1 3.908 4.206c1.716 1.864 3.643 3.732 4.281 4.155 1.17.775 3.773 1.617 4.212 1.357.128-.073-1.192-1.624-2.934-3.443zm418.304 2.779c1.636-.743 3.141-2.14 6.896-6.383l3.113-3.521h-1.07c-1.756 0-5.484.882-7.245 1.716-.904.427-2.351 1.425-3.213 2.216-1.9 1.732-4.81 5.822-4.348 6.108.176.107 1.557-.998 3.074-2.462 2.35-2.269 5.162-4.197 5.563-3.812.204.194-1.457 2.196-3.724 4.491l-2.19 2.222.952-.006c.525 0 1.511-.26 2.196-.57zm-393.109-.16c1.078-.754 1.996-3.353 1.816-5.125-.18-1.743-1.201-4.34-1.988-5.05-.487-.44-.598-.31-1.666 1.966-1.75 3.732-1.729 6.63.06 8.044.918.718.978.722 1.776.163zm370.374-1.211c1.024-1.813.899-3.338-.548-6.639-1.164-2.655-1.264-2.788-1.767-2.335-.758.688-1.79 3.225-1.99 4.91-.18 1.547.152 2.884 1.11 4.455.51.838.752.978 1.563.898.762-.076 1.097-.34 1.636-1.291zm-353.94-2.695c-.566-2.443-2.199-5.649-3.807-7.477-.65-.739-2.595-2.635-4.32-4.212-2.914-2.664-3.217-2.862-4.247-2.774l-1.108.09.084 1.301c.18 2.775 2.07 5.36 7.589 10.367 2.243 2.04 4.536 4.344 5.09 5.118l1.007 1.41.092-.899c.05-.495-.12-1.808-.38-2.924zm343.62-5.49c3.1-2.98 4.51-5.209 4.901-7.757l.196-1.274h-1.248c-1.171 0-1.457.2-4.8 3.294-5.702 5.279-7.098 7.634-7.97 13.44l-.2 1.314 3.106-3.11a462.636 462.636 0 0 1 6.018-5.908zm-375.665 8.358c.527-.207.452-.31-.648-.872-.689-.35-2.072-1.397-3.078-2.331-1.006-.935-1.884-1.641-1.946-1.577-.244.243 4.16 5.056 4.607 5.036.259-.012.738-.128 1.067-.256zm43.82-.487c.75-.958.451-2.016-.948-3.373-1.403-1.357-3.114-1.852-6.407-1.852h-2.822l.664 1.181c.87 1.547 2.823 3.441 4.316 4.186.758.379 1.822.599 2.898.607 1.473.012 1.776-.09 2.3-.75zm316.663.054c1.507-.699 3.688-2.854 4.519-4.455l.427-.824h-2.571c-3.637 0-5.08.433-6.635 1.988-1.01 1.01-1.29 1.509-1.29 2.299 0 .752.174 1.094.676 1.337 1.157.555 3.263.407 4.876-.345zm40.877-.208c1.537-1.646 3.334-3.872 3.124-3.872-.112 0-1.014.733-2.002 1.627-.988.894-2.285 1.856-2.884 2.142-.97.459-1.024.538-.499.748 1.028.4 1.377.3 2.26-.643zm-389.947-.315a9.677 9.677 0 0 1-.187-1.47c0-.45-.194-.51-1.274-.378-1.251.155-2.02.722-2.02 1.493 0 .215.304.399.673.405.37.006 1.078.2 1.573.425 1.317.603 1.441.555 1.237-.475zm377.952.34c1.277-.44 1.622-.693 1.542-1.11-.055-.3-.151-.591-.211-.653-.116-.12-2.65-.619-2.715-.54-.095.129-.439 2.895-.355 2.885.048-.006.832-.267 1.737-.583zm-341.818-.34c1.303-.669 2.598-2.196 3.074-3.629.499-1.5.526-5.914.04-6.399-.352-.353-4.398 3.765-5.03 5.126-.879 1.876-.665 4.267.445 5.01.45.3.712.283 1.47-.106zm305.69-.208c.739-.818.922-2.289.48-3.872-.31-1.098-.915-1.948-2.73-3.812-2.75-2.834-2.927-2.77-2.933.978-.006 2.695.692 4.639 2.135 5.936 1.537 1.381 2.316 1.577 3.048.77zm-348.422-.093c.788-.196 1.58-.645 1.936-1.092.519-.665.543-.838.18-1.385-.767-1.178-2.292-1.976-3.757-1.97-1.297.006-5.579.95-5.94 1.311-.489.489 2.427 2.535 4.351 3.054 1.79.479 1.657.479 3.23.08zm393.382-.336c1.048-.379 3.742-2.26 3.742-2.61 0-.34-4.46-1.505-5.764-1.505-3.094 0-5.313 2.495-3.357 3.772 1.477.972 3.323 1.088 5.379.343zm-340.64-4.564c-.166-3.39-1.114-5.879-5.581-14.67-7.719-15.19-10.633-18.073-19.493-19.286-1.237-.17-6.557-.45-11.824-.623-16.79-.553-25.27-1.46-30.746-3.297-5.29-1.77-8.084-4.74-9.405-10.01-.274-1.098-.611-1.888-.749-1.757-.134.14-.469 1.124-.744 2.192-.855 3.321-.116 11.371 1.782 19.497 1.331 5.696 4.8 9.672 10.39 11.904 4.5 1.796 9.28 2.295 26.176 2.728 21.697.551 25.17.847 28.99 2.451 5.922 2.487 10.245 7.735 10.615 12.88.231 3.246.758 1.454.587-2.005zm285.505-1.777c2.555-5.583 7.804-9.335 14.716-10.519 1.477-.255 7.036-.53 14.52-.718 20.839-.523 29.342-1.108 33.533-2.304 2.759-.784 6.178-2.734 8.084-4.61 2.575-2.535 3.952-5.561 4.91-10.759 1.148-6.271 1.677-10.22 1.673-12.463-.006-2.121-.693-6.017-1.138-6.463-.14-.14-.423.493-.627 1.408-1.037 4.638-4.16 8.383-8.323 9.98-5.708 2.187-15.335 3.233-34.97 3.804-11.564.331-15.109 1.217-18.961 4.75-2.176 1.996-5.992 8.19-10.154 16.497-4.02 8.024-4.864 10.471-4.864 14.112 0 3.073.4 3.762.639 1.105.12-1.309.493-2.802.958-3.822zm-323.762 3.593c-.006-.18-.204-.655-.44-1.068-.409-.719-.427-.679-.429.898 0 1.511.036 1.601.44 1.066.239-.32.435-.724.429-.898zm361.326-.689c-.096-.818-.1-.818-.469-.173-.29.507-.295.838-.02 1.497.335.798.36.808.47.173.063-.369.071-1.042.02-1.497zm-370.07.443c1.576-1.684 1.736-4.778.382-7.632-.487-1.03-1.014-1.872-1.17-1.872-.458 0-2.7 4.323-2.905 5.6-.196 1.238.375 3.046 1.277 4.044.659.73 1.657.67 2.415-.14zm380.473-.115c1.048-1.138 1.437-2.8 1.012-4.372-.35-1.301-2.363-5.002-2.726-5.014-.112 0-.571.747-1.018 1.665-1.385 2.826-1.358 5.918.06 7.605.938 1.118 1.716 1.147 2.674.116zm-336.802-2.909c-.106-.419-.539-1.137-.962-1.6l-.768-.839.173 1.012c.094.555.174 1.629.174 2.387v1.378l.788-.787c.603-.602.743-.97.6-1.55zm292.012-.12-.006-2.319-.738 1.198c-.403.659-.739 1.393-.739 1.627 0 .37 1.118 1.816 1.402 1.816.052 0 .091-1.044.085-2.32zm-302.676.819c1.389-1.39.29-5.481-2.022-7.51-1.192-1.047-3.793-2.362-4.683-2.366-.519-.004-.549.165-.365 2.136.32 3.447 1.605 5.84 3.98 7.413 1.637 1.081 2.275 1.15 3.094.327zm314.153.196c1.431-.6 3.441-2.835 4.08-4.54.31-.822.659-2.406.779-3.512.253-2.375.163-2.423-2.316-1.324-2.22.988-3.419 2.102-4.44 4.124-1.458 2.882-1.125 5.082.847 5.633.048.014.52-.16 1.05-.38zm36.66-.587c-.2-.603-.818-.56-.818.06 0 .429.14.558.463.435.254-.1.413-.32.355-.495zm-388.837-.08c0-.531-.644-.44-.83.116-.064.195.096.355.36.355a.479.479 0 0 0 .47-.473zm29.042.144c0-.52-2.343-5.026-3.72-7.158-1.957-3.022-1.91-2.994-5.005-2.994h-2.694l3.27 3.22c1.843 1.812 3.826 4.101 4.538 5.24 1.214 1.935 1.317 2.02 2.435 2.02.65 0 1.174-.147 1.174-.328zm3.593.16c0-.096-.348-.625-.77-1.182-1.099-1.437-1.843-3.583-2.272-6.553l-.372-2.575h-4.359l1.306 2.022c.718 1.11 1.94 3.3 2.722 4.864.779 1.567 1.553 3.014 1.717 3.22.3.365 2.028.539 2.028.203zm324.39-.02c.272-.104 1.078-1.418 1.797-2.919.718-1.5 1.922-3.672 2.67-4.826.751-1.158 1.368-2.204 1.372-2.335.004-.132-.902-.2-2.016-.15l-2.02.09-.373 2.455c-.44 2.908-1.338 5.457-2.346 6.65-.399.473-.724.942-.724 1.042 0 .236 1.018.23 1.64-.008zm5.785-2.172c.964-1.477 2.675-3.433 4.59-5.24l3.054-2.88-1.922.004c-3.632.006-3.912.128-5.369 2.347-1.557 2.376-4.171 7.226-4.18 7.755 0 .235.42.373 1.142.373 1.106 0 1.206-.09 2.685-2.36zm-370.714.818c-.585-.685-1.816-1.663-2.728-2.172-1.729-.964-7.086-5.017-6.886-5.215.06-.06 1.4.499 2.978 1.245 1.576.749 2.864 1.254 2.864 1.126 0-.535-2.371-3.842-3.401-4.742-1.298-1.138-3.44-2.276-5.15-2.735-1.529-.411-5.82-.878-5.82-.638 0 .393 3.509 4.482 6.251 7.289 4.677 4.778 8.391 7.066 11.51 7.078l1.444.006-1.064-1.244zm406.837.675c.892-.316 2.403-1.082 3.361-1.707 1.988-1.293 8.218-7.439 10.372-10.227l1.44-1.866-1.44.006c-3.907.014-8.172 1.736-10.37 4.191-1.051 1.178-2.714 3.872-2.51 4.076.033.032 1.265-.531 2.738-1.254 1.473-.722 2.75-1.241 2.834-1.157.084.084.02.251-.152.367-.167.116-1.445 1.098-2.834 2.19-1.39 1.087-2.994 2.215-3.573 2.503-1.074.538-3.592 2.79-3.592 3.217 0 .43 2.085.246 3.728-.331zm-400.677-.827c.852-.772.704-2.459-.36-4.065-1.624-2.45-4.095-3.847-7.584-4.28-1.745-.22-1.753-.213-1.541.5.766 2.554 4.068 6.937 5.904 7.843 1.277.63 2.888.631 3.58.004zm395.474-.353c.738-.465 1.706-1.283 2.155-1.816 1.05-1.246 2.855-4.332 3.094-5.28.18-.708.13-.738-1.305-.738-2.884 0-6.06 1.732-7.585 4.132-2.228 3.512.144 5.922 3.643 3.702zm-349.716-3.557c0-.553-2.899-2.387-4.87-3.082-2.645-.93-2.935-.798-1.494.673 1.438 1.47 2.056 2.779 2.346 4.99l.21 1.57 1.903-1.885c1.046-1.038 1.905-2.06 1.905-2.27zm303.98 2.326c.203-1.72.784-2.97 2.185-4.699l1.004-1.237-1.217.273a16.92 16.92 0 0 0-2.296.725c-1.281.534-3.636 2.255-3.648 2.67-.01.32 3.293 3.753 3.606 3.753.106 0 .272-.667.368-1.481zm-336.08-5.877c-.379-1.157-.41-1.177-2.002-1.267l-1.616-.094.187 2.004c.224 2.423 1.064 4.264 2.541 5.559l1.102.97.084-2.998c.053-1.856-.06-3.447-.3-4.176zm366.423 4.392c.934-1.533 1.608-4.679 1.161-5.402-.339-.548-2.794-.385-3.103.208-.515 1.002-.683 2.834-.48 5.2.206 2.339.22 2.375.845 1.97.35-.228 1.058-1.118 1.577-1.976zm-370.37 1.347c.089-.234-.05-1.046-.308-1.809-.26-.762-.473-2.155-.475-3.097 0-.938-.12-1.886-.254-2.102-.291-.465-3.632-.882-3.632-.453 0 .156.734 1.341 1.63 2.627.913 1.311 1.797 2.98 2.002 3.796.374 1.457.739 1.82 1.038 1.032zm372.98-.81c.188-.943 1.37-3.098 2.755-5.03 1.066-1.487.97-1.909-.395-1.71-.62.089-1.344.169-1.617.173-.391.01-.539.459-.709 2.183-.115 1.192-.399 2.729-.628 3.413-.4 1.194-.3 2.35.18 2.056.123-.08.31-.567.414-1.086zm-377.959-3.973c.004-.479-.255-1.289-.575-1.808-.578-.938-.598-.942-4.34-1.301-2.069-.2-5.52-.713-7.67-1.146-2.15-.433-3.991-.703-4.095-.599-.48.48.984 1.168 3.553 1.669 4.251.828 6.133 1.643 7.92 3.429.922.924 1.682 2.012 1.902 2.725.2.652.425 1.377.499 1.602.207.647 2.8-3.573 2.808-4.57zm385.035 4.144c0-.89 1.465-3.333 2.635-4.387 1.421-1.287 3.728-2.202 7.539-2.99 2.886-.599 3.598-.914 3.598-1.603 0-.31-.295-.305-1.542.024-2.442.643-8.533 1.637-11.477 1.868l-2.699.216-.639 1.333c-.726 1.517-.714 1.581.883 4.132 1.157 1.848 1.704 2.3 1.704 1.41zm-349.872-29.427c.4-2.105.819-3.319 2.475-7.165.61-1.417-3.648 1.353-6.299 4.098-1.094 1.131-1.988 2.195-1.988 2.365 0 .167.709.639 1.573 1.046.864.405 2.042 1.074 2.619 1.487.579.409 1.07.726 1.098.698.026-.02.259-1.161.522-2.53zm316.611-.044c.51-.21.926-.519.926-.682 0-.585-4.67-4.942-6.287-5.868-2.136-1.218-2.535-1.214-1.802.03.942 1.592 2.005 4.72 2.389 7.011l.359 2.152 1.744-1.128c.959-.618 2.164-1.301 2.671-1.513zm-323.648-2.854c1.576-1.668 2.584-3.547 3.437-6.41.343-1.159.369-1.538.1-1.418a744 744 0 0 1-3.66 1.537c-1.811.762-3.867 1.716-4.57 2.132-1.53.898-2.804 2.704-2.868 4.071l-.046.988 2.245.34c3.727.563 3.643.583 5.362-1.238zm331.412 1.168c1.178-.126 1.957-.36 2.052-.613.088-.225-.21-1.166-.658-2.086-.944-1.93-2.282-2.92-5.655-4.191a46.696 46.696 0 0 1-3.547-1.513c-1.647-.823-1.702-.709-.864 1.732.944 2.745 2.02 4.571 3.483 5.916 1.197 1.108 1.53 1.268 2.345 1.124a56.65 56.65 0 0 1 2.844-.37zm-340.817-.715c.295-.479-.887-2.818-2.102-4.163-.615-.685-2.403-1.996-3.972-2.92-3.014-1.773-5.144-3.54-5.976-4.947-.69-1.17-.97-1.063-.97.372 0 3.433 3.672 10.798 5.822 11.668.878.356 6.98.35 7.2-.008zm352.49-.507c.932-.585 2.8-3.533 3.764-5.936 1.288-3.22 1.857-8.048.699-5.988-.808 1.45-3.106 3.461-5.669 4.962-1.53.894-3.393 2.236-4.14 2.974-1.39 1.382-2.848 3.988-2.518 4.517.28.453 7.016 0 7.864-.529zm-368.658-1.251a29.281 29.281 0 0 1-1.072-3.16c-.399-1.58-.553-1.523-1.287.475-.284.769-1.052 2.006-1.707 2.755l-1.191 1.35 1.281.117c.707.064 2.05.14 2.986.167l1.697.052-.709-1.756zm6.076 1.53c-2.276-4.478-3.385-7.129-3.946-9.42-.527-2.146-.793-2.775-1.178-2.755-2.427.12-2.271.032-2.088 1.248.34 2.225 1.631 6.806 2.527 8.958l.914 2.195h1.943c1.071 0 1.896-.1 1.832-.225zm368.764-.47c1.003-1.527 3.147-8.843 3.153-10.755 0-.706-.128-.828-.898-.868a47.632 47.632 0 0 1-1.246-.074c-.2-.02-.638 1.144-1.013 2.69-.66 2.68-2.04 6.192-3.154 8.02-.902 1.478-.769 1.685 1.066 1.685 1.385 0 1.71-.11 2.096-.698zm6.367.399h1.03l-1.188-1.35c-.65-.738-1.491-2.167-1.866-3.169l-.683-1.824-.708 2.455c-.39 1.353-.839 2.704-1.002 3.004-.603 1.127-.384 1.277 1.548 1.077a35.22 35.22 0 0 1 2.87-.193zm-393.328-1.272c-.008-1.423-1.623-3.08-4.004-4.101-2.905-1.246-10.02-2.102-10.308-1.244-.067.204.48.948 1.218 1.657 1.557 1.49 4.84 2.81 9.285 3.732 3.693.763 3.809.763 3.807-.044zm5.914-.207c.838-.609 1.527-1.513 2.215-2.914.954-1.936 1.002-2.19 1.002-5.383 0-1.843-.094-3.444-.211-3.561-.27-.27-3.63 2.39-5.262 4.161-2.066 2.244-2.708 5.888-1.393 7.9.639.978 2.132.893 3.647-.207zm393.082.096c.639-.978.659-4.016.032-5.503a9.635 9.635 0 0 0-1.265-2.03c-1.134-1.341-5.242-4.667-5.48-4.431-.099.104-.247 1.377-.315 2.83-.205 4.251 1.078 7.473 3.633 9.13 1.585 1.028 2.725 1.03 3.393.008zm7.525-.28c3.793-.898 7.126-2.399 8.224-3.7.45-.535.818-1.118.818-1.29 0-.22-1.038-.267-3.218-.16-6.273.32-11.143 2.751-11.151 5.57 0 .826.12.818 5.33-.42zm-376.332-2.215c.519-.647.948-1.238.948-1.31 0-.071-.43-.307-.954-.525-.978-.409-1.663-.439-2.888-.131-.691.173-.689.185.375 1.363.59.653 1.072 1.317 1.072 1.485 0 .593.519.28 1.447-.882zm343.215-2.136c-1.026-.445-1.158-.44-2.146.128-.579.331-1.098.638-1.158.678-.06.04.336.627.879 1.298l.982 1.223 1.265-1.427 1.266-1.429-1.09-.471zm-373.123-.05c.196-.698.42-1.423.499-1.605.086-.205-.393-.409-1.234-.523-1.125-.155-1.532-.073-2.241.454l-.87.638 1.297.825c.715.455 1.39.972 1.501 1.151.38.619.695.332 1.048-.942zm401.99.643c.314-.347 1.01-.858 1.554-1.138l.982-.503-.89-.658c-.735-.543-1.134-.625-2.268-.47-.842.116-1.317.316-1.228.52.08.183.316.906.523 1.606.208.7.46 1.27.567 1.27.1 0 .443-.284.759-.63zm-368.286-1.872c1.617-.753 3.1-2.242 4.006-4.018.687-1.352 1.531-4.122 1.531-5.03v-.659l-1.87.729c-3.733 1.449-4.805 2.056-5.954 3.359-1.382 1.569-2.276 4.152-1.77 5.1.734 1.369 1.907 1.517 4.057.519zm336.602.24c.895-.626.879-2.22-.045-4.196-.952-2.044-2.415-3.174-5.956-4.581l-2.974-1.184.207 1.383c.633 4.226 3.238 7.8 6.367 8.743 1.238.373 1.673.343 2.402-.166zm-342.502-1.093c.2-.2.36-.838.353-1.42-.016-2.735-2.606-5.61-6.778-7.526-1.417-.652-2.655-1.111-2.749-1.022-.09.092.004.803.21 1.577.992 3.747 3.094 6.63 5.814 7.988 1.683.834 2.603.954 3.154.403zm347.886-.231c1.75-.795 4-3.13 4.95-5.142.898-1.896 1.616-4.341 1.357-4.603-.1-.095-1.467.454-3.046 1.218-4.166 2.03-6.48 4.69-6.48 7.445 0 1.69 1.077 2.056 3.219 1.082zm-379.63-.174c1.243-.87.722-2.702-1.33-4.684-1.882-1.817-4.043-2.535-9.327-3.094l-1.896-.204.659 1.284c.694 1.369 3.161 4.131 4.59 5.15 2.436 1.732 5.969 2.482 7.306 1.55zm414.046-.599c2.112-1.037 5.13-3.866 6.188-5.8.972-1.784 1.198-1.712-3.353-1.066-3.593.511-5.44 1.242-7.038 2.783-2.06 1.99-2.569 3.802-1.322 4.706.939.679 3.438.4 5.525-.619zm-422.07.466c0-.164-.14-.3-.32-.3-.542 0-3.592-3.074-4.378-4.411-.412-.705-.819-1.277-.909-1.277-.353 0 .3 3.772.835 4.822.459.892.778 1.152 1.553 1.247 1.956.244 3.221.214 3.221-.08zm428.338-.168c.439-.09.794-.539 1.106-1.403.552-1.543.918-4.124.584-4.102-.133.01-.762.824-1.397 1.812-.635.988-1.742 2.226-2.455 2.755-.718.525-1.313 1.058-1.317 1.177-.014.2 1.956.064 3.479-.24zm-33.557-3.054c1.49-1.828 1.57-2.15.729-2.91-.569-.52-.599-.515-.787.026-.469 1.371-1.65 3.82-2.255 4.663l-.655.922.819-.54c.455-.295 1.42-1.267 2.147-2.159zm-382.22 1.88c1.373-.708 2.986-2.834 3.517-4.638.509-1.729.608-5.53.18-6.954l-.24-.81-2.605 2.454c-3.078 2.904-3.884 4.322-3.872 6.827.016 3.087 1.038 4.147 3.02 3.121zm18.778-1.429c-.543-1.028-1.15-2.335-1.35-2.906l-.359-1.032-.624.619c-.424.431-.56.826-.424 1.253.206.645 3.166 3.936 3.541 3.936.116 0-.235-.842-.778-1.872zm382.893 1.138c1.094-1.094 1.052-3.98-.088-6.16-.866-1.65-5.281-5.962-5.692-5.553-.465.464-.44 5.78.04 7.416.533 1.83 2.24 4.011 3.613 4.606 1.237.54 1.285.531 2.127-.311zm-372.915-2.25c0-.16.431-.778.958-1.377.878-1.006.912-1.112.413-1.391a6.114 6.114 0 0 1-1.094-.858c-.539-.54-.579-.525-1.5.393-.765.764-.879 1.034-.603 1.413.19.254.578.834.858 1.285.519.825.966 1.072.966.535zm343.141-1.014.779-1.287-.859-.958-.858-.962-1.038 1.01-1.042 1.008.739.698c.409.38.818.939.914 1.246.26.808.499.679 1.365-.753zm22.866-.51c-.253-.72-.543-2.288-.645-3.488-.101-1.2-.291-2.181-.419-2.181s-.633.335-1.118.744c-.802.675-.872.879-.748 2.17.12 1.247.327 1.609 1.647 2.862.828.79 1.562 1.383 1.626 1.322.064-.066-.091-.707-.345-1.428zm-388.202-.43c.778-.886.938-1.317.938-2.535 0-1.225-.13-1.564-.789-2.083-1.118-.879-1.305-.785-1.311.652-.004.699-.208 2.216-.451 3.37a79.246 79.246 0 0 0-.443 2.18c0 .293 1.263-.68 2.056-1.582zm6.482.487c1.933-.878 3.939-3.349 4.617-5.688.585-2.002 1.066-4.83.827-4.83-.523 0-6.316 2.754-7.18 3.413-2.116 1.616-3.273 5.389-2.142 7 .587.838 2.176.878 3.88.103zm377.085-.04c.769-.766.785-2.706.04-4.34-.718-1.57-2.44-3.214-4.181-3.983-3.966-1.756-4.938-2.156-5.022-2.076-.286.286.61 4.491 1.251 5.9 1.777 3.883 6.078 6.332 7.91 4.5zm-394.174-1.53c.275-.839.459-1.561.41-1.601a10.447 10.447 0 0 0-1.087-.408c-.912-.307-1.052-.267-1.71.48-.875.99-.899 1.173-.188 1.397.305.1.866.513 1.25.922.383.409.726.742.762.742.036 0 .29-.688.563-1.53zm410.294-.266c.539 0 .42-.343-.423-1.222-.773-.806-1.01-.814-2.747-.107-.04.016.14.658.4 1.423l.479 1.393.972-.743c.535-.41 1.13-.744 1.32-.744zm-379.656-1.066c1.423-.994.266-4.902-1.976-6.678-1.211-.959-6.008-3.34-6.161-3.06-.056.095.08 1.044.299 2.103.952 4.551 3.393 7.366 7.014 8.074.088.016.459-.18.824-.439zm6.77-.12c1.338-.509 3.074-2.359 3.869-4.131.774-1.721 1.361-4.264.984-4.264-.789 0-5.226 2.036-6.092 2.799-1.764 1.55-2.758 4.576-1.812 5.524.43.432 2.008.47 3.05.074zm335.852-.439c.46-1.01.1-2.58-.918-3.986-1.004-1.385-2.315-2.26-4.559-3.048a76.147 76.147 0 0 1-2.175-.792c-.52-.214-.551-.13-.355 1.086.652 4.081 3.584 7.42 6.546 7.453.913.01 1.194-.13 1.461-.713zm7.2-.144c1.585-1.006 2.946-2.844 3.659-4.938.55-1.624.958-4.072.672-4.072-.419 0-5.163 2.456-6.054 3.134-1.846 1.41-3.187 5.37-2.17 6.387.648.645 2.436.411 3.893-.51zm-384.765.26c1.76-.942-.531-4.495-3.773-5.848-1.058-.444-6.732-1.418-6.954-1.198-.45.451 2.65 4.487 4.351 5.665 2.204 1.525 4.984 2.127 6.376 1.383zm421.232-.739c1.964-.992 4.16-3.165 4.994-4.938.349-.738.61-1.377.578-1.409-.123-.136-5.854.818-6.578 1.094-3.27 1.243-5.845 4.956-4.158 6 .822.509 3.433.134 5.162-.745zm-415.185-1.297c2.176-1.437 3.338-4.417 3.168-8.138-.06-1.287-.2-2.435-.313-2.549-.31-.309-4.036 3.094-5.03 4.6-1.288 1.94-1.563 5.029-.56 6.235.47.566 1.757.499 2.735-.148zm407.08-.838c.586-1.69.05-4.106-1.267-5.745-1.357-1.684-4.38-4.363-4.634-4.105-.12.115-.216 1.582-.216 3.253 0 2.715.09 3.226.819 4.717.986 1.996 2.634 3.327 3.972 3.201.758-.07.966-.28 1.329-1.325zm-395.966-.128c.3-.507.495-.948.44-.984-1.406-.862-1.777-.898-2.436-.232l-.665.679.899.727c.493.399.97.728 1.057.728.088 0 .404-.413.705-.918zm384.31-.589c0-.108-.265-.439-.59-.73-.511-.465-.713-.487-1.497-.16-1.072.44-1.098.575-.29 1.6l.619.785.878-.649c.483-.359.878-.738.878-.848zm-20.924-1.836c.348-.485.58-.922.523-.972-.792-.65-1.329-.669-2.185-.07a48.223 48.223 0 0 1-1.038.71c-.064.037.265.62.732 1.298.805 1.162.867 1.194 1.098.573.13-.36.523-1.054.868-1.537zm-342.881.798.712-1.042-.71-.593c-.739-.618-2.196-.812-2.491-.335-.16.264 1.317 2.994 1.632 3.006.084.004.47-.459.859-1.038zm379.61-1.633.978-.664-.699-.551c-.535-.42-1.008-.511-1.97-.383-1.397.187-1.321-.088-.759 2.822l.186.938.639-.748a9.82 9.82 0 0 1 1.625-1.414zm-415.684-.347.2-1.084-1.238-.165c-.882-.12-1.485-.016-2.1.36l-.864.526 1.487.966c.819.531 1.581 1.114 1.697 1.297.24.388.519-.267.818-1.896zm12.769 1.67c.99-1.19-.276-4.504-2.57-6.726l-1.39-1.347.195 2.096c.106 1.154.05 2.828-.124 3.724-.375 1.93-.047 2.487.815 1.388.333-.424.674-.769.758-.769.084 0 .431.471.77 1.048.685 1.158.979 1.271 1.546.589zm389.432-1.227c.359-.539.389-.533.858.114.838 1.158 1.357.87 1.092-.599-.126-.698-.206-2.415-.18-3.816l.052-2.545-1.437 1.557c-2.44 2.635-3.363 5.38-2.202 6.543.547.543.683.449 1.817-1.254zm-383.848.773c2.503-.938 4.487-3.294 5.49-6.513.578-1.864.894-4.958.514-5.09-.125-.044-1.577.61-3.217 1.453-3.48 1.789-5.14 3.43-5.836 5.769-.64 2.15-.567 3.105.289 3.96.798.802 1.467.904 2.758.419zm379.137-.465c.294-.294.433-.972.41-2.012-.047-1.936-1.138-4.218-2.655-5.55-.934-.817-6.064-3.636-6.627-3.636-.106 0-.124.978-.04 2.172.22 3.187 1.186 5.421 3.194 7.42 2.271 2.26 4.43 2.865 5.716 1.604zm-358.179-1.637c1.138-.425 3.006-2.265 3.733-3.669.77-1.497 1.133-4.263.527-4.04-.232.086-1.324.456-2.427.819-1.102.363-2.45.958-2.994 1.317-1.082.719-2.336 2.898-2.336 4.06 0 1.577 1.551 2.247 3.497 1.517zm337.25-.311c.472-.471.584-.853.452-1.521-.319-1.607-1.157-2.98-2.26-3.709-.863-.57-5.06-2.223-5.648-2.223-.327 0 .3 2.924.879 4.123 1.53 3.162 4.993 4.914 6.578 3.33zm-342.857-.26c1.342-.718.935-3.513-.79-5.419-.635-.707-1.956-1.607-3.25-2.221-2.987-1.418-2.967-1.418-2.88-.004.2 3.257 2 6.29 4.372 7.369 1.397.634 1.792.678 2.546.273zm348.513-.467c1.972-1.018 3.553-3.812 3.816-6.766l.16-1.757-2.186 1.012c-3.972 1.836-5.38 3.433-5.383 6.084 0 1.166.132 1.637.525 1.866.579.343 1.926.152 3.068-.439zm-386.203-.15c1.058-.568.56-2.686-.964-4.071-1.409-1.284-2.698-1.697-5.718-1.845-3.41-.163-3.457-.105-1.876 2.246 1.742 2.587 3.988 3.952 6.536 3.972.795.004 1.705-.13 2.022-.3zm425.06-.153c2.396-.998 4.685-3.228 5.284-5.15.204-.653.146-.675-1.742-.675-2.527 0-4.707.48-5.929 1.302-1.995 1.347-3.013 3.964-1.816 4.662.785.46 2.942.386 4.204-.14zm-420.29-.585c1.937-1.002 3.3-4.152 3.29-7.625-.008-2.874-.273-2.878-3.108-.008-2.694 2.735-3.403 4.166-3.067 6.228.299 1.856 1.187 2.285 2.888 1.407zm413.28.273c.252-.1.614-.642.8-1.21.498-1.5-.085-3.592-1.454-5.235-1.577-1.896-3.922-3.984-4.18-3.724-.12.12-.205 1.407-.191 2.858.02 2.29.14 2.87.898 4.391 1.138 2.284 2.775 3.437 4.126 2.914zm-399.555-1.944c.385-.838.655-1.549.599-1.58-.838-.508-2.415-.775-2.934-.496-.335.18-.61.412-.61.52 0 .265 1.91 3.061 2.095 3.07.086.003.467-.68.852-1.514zm385.917-.008c.944-1.443.966-1.537.45-1.94-.3-.231-.813-.343-1.142-.25-.33.096-.909.248-1.288.34-.373.088-.642.25-.599.36.052.107.36.83.69 1.606.328.778.666 1.41.748 1.407.083 0 .598-.688 1.143-1.523zm-394.72-2.044c.29-.319.44-.724.328-.898-.22-.363-1.058-.439-1.062-.094 0 .12-.085.527-.185.899-.22.826.22.87.918.093zm402.44.106a3.054 3.054 0 0 1-.179-.898c0-.495-.77-.573-1.058-.108-.211.34.663 1.477 1.138 1.477.156 0 .2-.213.1-.473zm-397.16-1.333c.765-.41.749-1.836-.04-3.573-1.391-3.064-3.068-4.423-7.93-6.433l-3.163-1.307.203.946c.114.523.54 1.848.944 2.95.809 2.187 1.07 2.281 2.176.786.619-.838.712-.874.982-.393.459.822 1.112 3.485 1.118 4.559 0 1.098.698 1.69 2.76 2.335 1.593.5 2.212.525 2.948.13zm26.507-.805c1.098-1.636 1.217-3.832.34-6.221-.384-1.038-3.83-6.138-4.148-6.138-.12 0-.46.707-.765 1.571-.393 1.128-.539 2.375-.523 4.417.03 3.302.565 5.038 2.004 6.523 1.206 1.244 2.186 1.194 3.09-.151zm340.774.374c.483-.411 1.197-1.457 1.587-2.324.998-2.23 1.008-6.862.024-9.041-.384-.853-.773-1.358-.918-1.198-.14.152-1.012 1.393-1.937 2.758-2.155 3.178-2.794 5.25-2.309 7.433.4 1.793 1.297 3.11 2.116 3.11.303 0 .95-.333 1.437-.738zm26.852.14c2.255-.775 2.549-1.05 2.549-2.376 0-1.165.782-4.181 1.197-4.614.13-.14.547.163.924.672.38.511.85.928 1.052.928.32 0 1.457-2.608 2.062-4.716.246-.85.08-.842-2.255.106-2.964 1.203-5.25 2.425-6.348 3.389-1.924 1.688-3.349 5.25-2.638 6.579.425.79 1.237.798 3.459.034zm-386.961-.72c2.463-1.628 4.191-5.015 4.656-9.135.112-1.002.12-1.822.012-1.822-.469 0-6.157 3.022-6.96 3.697-1.51 1.269-2.628 3.678-2.642 5.682-.008 1.403.108 1.83.589 2.196.85.634 2.894.345 4.347-.62zm380.933.574c1.437-1.437.555-5.164-1.77-7.49-.963-.957-6.919-4.239-7.198-3.961-.064.066.02 1.177.18 2.475.327 2.563 1.453 5.33 2.834 6.966 1.645 1.942 4.916 3.048 5.952 2.01zm-402.27-1.052c.858-1.637-.312-5.848-2.33-8.391-.852-1.078-4.221-3.585-4.816-3.585-.4 0-.31 2.587.168 4.842.59 2.785 1.812 5.116 3.519 6.713 1.672 1.56 2.794 1.696 3.46.419zm422.541-.2c2.24-2.026 3.637-5.253 4.038-9.335.24-2.425.18-2.48-1.703-1.523-2.698 1.377-4.974 4.605-5.688 8.07-.286 1.37-.26 1.826.134 2.764.634 1.497 1.576 1.503 3.217.024zm-419.056-2.415c.215-.507-1.996-6.84-3.274-9.377-1.247-2.481-2.349-3.776-4.75-5.589a48.638 48.638 0 0 1-2.838-2.301l-1.014-.928.18 1.197c.327 2.176 2.205 5.324 5.021 8.433 3.054 3.374 4.098 5.234 4.557 8.158l.323 2.066.819-.647c.447-.355.884-.812.972-1.018zm31.177 1.192c-1.258-3.234-1.258-6.092.01-9.886.4-1.198.727-2.41.727-2.695-.006-.593-2.416-3.685-2.723-3.493-.112.068-.507 1.238-.878 2.599-.719 2.63-.946 6.866-.491 9.062.34 1.64-.18 1.028-.886-1.05-.743-2.176-.747-7.91-.008-10.906l.51-2.072-2.928-3.054c-1.606-1.677-3.073-3.066-3.25-3.088-.179-.02-.498.533-.708 1.234a17.11 17.11 0 0 1-.966 2.423c-.319.635-.539 1.201-.479 1.261.06.06.71-.29 1.443-.778l1.338-.882.09 2.167a21.49 21.49 0 0 1-1.134 7.625c-.308.868-.455 1.58-.33 1.58.126 0 .978-.538 1.9-1.197.923-.658 1.769-1.197 1.889-1.197.465 0-.16 5.638-.91 8.2-.43 1.462-.729 2.708-.671 2.766.06.06.425-.226.81-.64.899-.953 1.497-.953 1.497 0 0 .416.136.751.3.751.165 0 .3-.27.3-.598 0-.803.139-.767 1.596.41 2.267 1.833 4.405 2.623 3.952 1.458zm351.239.203c.463-.18 1.543-.85 2.401-1.497.858-.646 1.625-1.177 1.703-1.177.077 0 .191.303.26.672.119.703.213.583.678-.872.134-.415.333-.33 1.197.507.571.555 1.038.878 1.038.725-.006-.156-.351-1.362-.772-2.679-.52-1.617-.823-3.403-.942-5.497l-.174-3.102 1.876 1.382c1.032.758 1.982 1.38 2.112 1.38.132 0-.088-1.023-.487-2.275-.818-2.574-1.583-9.101-1.068-9.101.08 0 .799.405 1.605.898.798.495 1.51.898 1.577.898.066 0-.264-.707-.727-1.57-.459-.865-.928-2.013-1.042-2.548-.111-.535-.299-.972-.419-.972-.225 0-6.327 6.104-6.32 6.32 0 .063.207.858.454 1.764 1.062 3.908.858 9.455-.46 12.335l-.588 1.288.22-1.797c.339-2.79.143-6.062-.525-8.672-.336-1.312-.715-2.49-.845-2.615-.13-.132-.858.57-1.608 1.557l-1.378 1.796.847 2.44c1.114 3.213 1.353 5.594.798 7.89-.24.987-.535 2.031-.659 2.319-.255.609.05.658 1.248.203zm31.94-1.543c.289-2.754 1.53-5.03 4.53-8.303 1.977-2.156 2.905-3.473 3.913-5.549.732-1.497 1.327-3.024 1.327-3.385 0-.579-.26-.45-2.156 1.064-3.493 2.794-5.225 4.67-6.327 6.866-1.377 2.735-3.573 9.002-3.313 9.457.28.5 1.423 1.677 1.648 1.697.1.012.27-.819.38-1.843zm-373.03.44c.104-.452 1.27-3.541 2.587-6.867 4.81-12.12 5.35-18.051 2.096-23.081-2.016-3.11-9.956-10.898-20.379-19.98-15.399-13.419-19.968-18.028-22.499-22.698l-1.004-1.847-.1 1.198c-.131 1.613.316 4.55 2.088 13.728.825 4.258 1.438 7.805 1.358 7.879-.076.075-3.461.25-7.525.387-4.058.136-7.445.313-7.525.393-.08.08 1.645 1.397 3.832 2.924 19.028 13.273 33.798 26.766 40.95 37.405 2.068 3.074 4.295 7.465 4.982 9.816.51 1.753.854 1.976 1.142.749zm330.827-.899c3.846-12.506 21.293-30.207 47.568-48.258 1.277-.883 2.255-1.671 2.175-1.753-.083-.084-3.443-.233-7.469-.333-4.023-.1-7.405-.274-7.516-.384-.112-.11.41-3.413 1.161-7.335 2.192-11.457 2.68-15.065 2.044-15.065-.13 0-.519.572-.858 1.271-1.99 4.072-8.11 10.367-20.293 20.87-10.166 8.762-19.401 17.559-21.743 20.708-2.534 3.401-2.824 4.316-2.778 8.647.056 4.854.759 7.565 4.132 15.968 1.407 3.509 2.56 6.606 2.56 6.882 0 1.048.512.439 1.019-1.218zm-359.682-1.9c.345-.672.582-1.263.53-1.31-.051-.047-.646-.362-1.317-.702l-1.225-.619-.651.647-.645.645 1.262 1.283c.692.705 1.293 1.282 1.337 1.282.044 0 .365-.553.709-1.228zm390.018-1.97-.582-.653-1.238.633a35.668 35.668 0 0 0-1.341.699c-.054.04.207.609.585 1.263l.682 1.188 1.238-1.238c1.23-1.237 1.23-1.237.653-1.89zm-386.581-2.036c1.616-.942 2.882-2.595 3.726-4.85.625-1.665 1.342-5.748 1.058-6.028-.084-.084-1.467.503-3.074 1.306-3.489 1.742-5.435 3.532-6.16 5.662-1.49 4.377.57 6.188 4.452 3.912zm384.693.573c1.483-1.483.36-5.8-2.032-7.81-.688-.579-4.906-2.918-6.594-3.659-.15-.066-.2.85-.114 2.092.291 4.176 2.235 7.65 5.07 9.062 1.784.892 2.994.994 3.672.313zm-391.687-.325c1.637-1.483-.709-6.108-3.918-7.72-1.593-.803-6.553-2.422-6.767-2.212-.223.227.743 3.233 1.553 4.84 2.06 4.064 7.14 6.896 9.134 5.094zm398.318-.006c1.942-.665 4.221-2.96 5.489-5.53.886-1.807 1.557-4.45 1.13-4.45-.64 0-5.889 1.912-6.938 2.529-3.014 1.764-4.964 5.836-3.55 7.405.62.678 1.947.698 3.867.044zM254.66 266.56c-1.29-.659-1.223-.659-2.082.056l-.698.578 1.126 1.348 1.127 1.347.799-1.393.798-1.393-1.066-.543zm393.648.654c0-.08-.336-.395-.747-.694-.722-.527-.784-.527-1.892 0l-1.146.545.779 1.409.778 1.409 1.114-1.257c.609-.693 1.11-1.328 1.112-1.41zm-408.198-3.008c-.416-1.722-.759-3.243-.759-3.38 0-.14.415.095.922.522.87.733 1.657 1.038 1.41.55-1.558-3.04-2.092-4.897-2.466-8.564l-.175-1.748 1.068.665c.588.363 1.145.584 1.237.493.094-.094-.918-1.358-2.247-2.809-1.332-1.449-3.064-3.505-3.853-4.57l-1.437-1.929-.086 2.83c-.153 5.09 1.406 10.835 4.807 17.711 1.163 2.355 2.167 4.076 2.23 3.822.06-.253-.23-1.87-.647-3.593zm421.52.01c3.374-6.926 5.06-13.183 4.9-18.131l-.09-2.63-1.677 2.225a68.702 68.702 0 0 1-3.853 4.557c-1.203 1.281-2.105 2.407-2.01 2.503.096.095.651-.12 1.238-.483.583-.36 1.064-.54 1.064-.4s-.136 1.35-.306 2.687c-.347 2.774-1.171 5.397-2.107 6.714-.855 1.202-.635 1.318.734.388.619-.423 1.186-.715 1.252-.647.065.066-.216 1.5-.625 3.188-1.258 5.203-1.034 5.209 1.483.036zm-410.173 1.03c1.517-1.517-.531-5.996-3.563-7.772-1.517-.888-6.5-2.88-6.7-2.68-.252.253.544 3.247 1.29 4.858 1.89 4.075 7.186 7.379 8.97 5.596zm6.433-.115c2.335-1.19 5.11-5.35 5.596-8.384.236-1.473-.267-2.107-1.666-2.107-1.99 0-5.47 2.924-6.912 5.808-1.102 2.202-1.144 3.539-.15 4.53.884.893 1.613.927 3.13.153zm387.607-.148c.949-.948.95-2.236.004-4.264-.924-1.984-2.882-4.111-4.802-5.21-1.776-1.021-2.85-1.097-3.613-.259-.493.55-.51.759-.183 1.984.932 3.493 3.333 6.903 5.577 7.92 1.608.733 2.145.703 3.017-.171zm6.595.233c1.892-.644 4.531-3.241 5.575-5.489.814-1.756 1.647-4.682 1.397-4.93-.203-.205-5.162 1.77-6.706 2.675-3.054 1.788-5.016 6.062-3.537 7.696.618.68 1.377.69 3.27.046zm-397.172-8.083c0-.04-.505-.226-1.124-.408-.908-.269-1.337-.24-2.261.148l-1.138.48.87 1.113c.48.613 1.038 1.437 1.246 1.828.369.699.399.67 1.393-1.183.559-1.044 1.014-1.937 1.014-1.976zm392.809 3.213c0-.15.471-.89 1.046-1.643l1.042-1.367-1.082-.45c-.882-.37-1.298-.39-2.25-.1-.642.189-1.13.426-1.085.524.048.096.487.878.982 1.745.838 1.457 1.347 1.95 1.347 1.291zm-396.668-5.143c.773-.77.64-2.096-.419-4.144-1.064-2.076-3.066-3.403-7.036-4.677-1.868-.598-3.457-1.026-3.532-.952-.272.274 1.077 4.012 1.946 5.373 2.487 3.92 7.217 6.222 9.041 4.398zm402.937-.406c2.515-1.273 4.805-4.33 5.888-7.864.414-1.351.19-1.782-.698-1.337-.29.148-1.405.505-2.475.798-2.663.725-4.59 1.75-5.98 3.182-1.268 1.307-2.27 3.76-1.99 4.878.38 1.513 2.655 1.663 5.257.343zm-397.214.426c1.078-.3 3.227-2.016 3.227-2.583 0-.154-1.09-1.258-2.423-2.45-1.84-1.642-2.519-2.087-2.814-1.844-.619.511-1.667 3.206-1.848 4.75-.27 2.268.938 2.935 3.858 2.123zm390.089-.18c.604-.735.45-3.03-.326-4.81-1.088-2.507-1.163-2.507-3.812-.06-1.285 1.185-2.385 2.28-2.443 2.427-.17.433 1.9 2.204 2.988 2.55 1.565.5 3.124.452 3.593-.111zm-393.754-6.02.938-1.72-.978-.825c-1.17-.982-1.287-.994-2.267-.223-.42.329-1.01.598-1.317.598-.733 0-.715.5.036.967.327.203 1.028.946 1.556 1.648.53.703.986 1.278 1.024 1.278.038 0 .495-.775 1.012-1.723zm397.22-.926c1.144-1.168 1.172-1.244.428-1.244-.306 0-.898-.269-1.318-.598-.982-.77-1.097-.759-2.267.225l-.978.823.958 1.766.962 1.764.619-.866c.34-.479 1.058-1.317 1.6-1.87zm-357.685-4.77c1.676-7.254 2.341-9.807 2.98-11.43.345-.874.559-1.656.473-1.74-.22-.22-2.18 1.321-3.892 3.064-1.757 1.79-4.655 6.167-5.565 8.413l-.649 1.6.649.913c.738 1.034 1.144 1.146 1.409.385 1.05-3.014 3.565-8.084 3.866-7.784.07.07-.479 2.463-1.223 5.32l-1.348 5.193.669.714.673.715.507-.625c.28-.345.932-2.475 1.453-4.736zm318.067 3.123c-.586-1.844-2.487-9.6-2.375-9.71.26-.26 1.972 2.874 3.04 5.573l1.108 2.794.918-.922.924-.918-1.297-2.625c-1.757-3.553-3.457-5.864-6.188-8.411-2.161-2.024-3.078-2.615-2.722-1.769.692 1.645 2.143 6.793 2.894 10.254.978 4.519 1.676 6.946 2.191 7.593.491.612 1.789-.984 1.51-1.86zm-360.737-1.397c.299-.327.487-.643.419-.699-2.326-1.852-11.521-8.211-11.589-8.01-.215.65 1.657 3.61 3.477 5.496 2.046 2.12 4.87 3.816 6.347 3.816.44 0 1.048-.27 1.346-.599zm403.996-.152c2.086-.97 5.645-4.53 6.727-6.726.447-.906.686-1.689.535-1.736-.24-.08-2.495 1.496-9.89 6.922l-1.623 1.191.683.551c.906.739 1.646.695 3.572-.2zm-368.711-7.876c.265-.712.367-1.251.227-1.197-.38.146-3.327 3.437-3.327 3.718 0 .132.439.69.968 1.238l.97 1.002.34-1.733c.185-.954.558-2.315.824-3.03zm332.578 2.156c-.168-.307-.998-1.234-1.848-2.056l-1.537-1.497.605 1.547c.333.854.698 2.247.81 3.1l.206 1.547 1.038-1.038c.846-.849.978-1.138.726-1.597zm-332.09-5.689c0-.97-5.696-.694-8.45.408l-1.238.495 2.375 2.175 2.376 2.176 2.467-2.447c1.357-1.346 2.47-2.611 2.47-2.807zm336.07 3.038c2.355-2.163 2.347-2.335-.126-2.986-2.27-.598-7.205-.702-7.205-.151 0 .43 4.505 5.09 4.906 5.07.183-.006 1.277-.879 2.425-1.933zm-345.259-4.287c-1.317-1.012-3.984-1.669-3.984-.978 0 .144.46.668 1.018 1.161.964.845 1.09.879 2.266.563 1.137-.305 1.197-.367.698-.746zm350.48-.174c.4-.429.633-.79.524-.806-1.126-.152-2.15.014-3.034.49-.585.314-1.062.66-1.062.76 0 .339 1.936.784 2.395.554.247-.124.778-.573 1.178-.998zm-343.408-1.587c2.435-1.177 6.595-5.588 5.912-6.273-.307-.307-7.365.43-9.128.954-1.782.53-3.686 2.07-4.251 3.433-.311.753-.294 1.014.12 1.64.265.41.854.827 1.307.927.45.1.952.232 1.118.295.728.28 3.433-.259 4.918-.978zm340.185-.075c.71-.879.693-1.21-.13-2.43-1.585-2.355-4.183-3.305-10.173-3.724-3.47-.24-3.523-.168-1.581 2.305 1.323 1.681 3.956 3.7 5.698 4.364 2.088.798 5.346.523 6.188-.52zm-349.017-1.577c.299-.427.469-1.324.469-2.487 0-2.55-.922-4.228-4.012-7.296l-2.53-2.514-.384 1.317c-.62 2.124-.465 5.54.335 7.389 1.421 3.28 4.91 5.325 6.124 3.593zm353.444.223c1.292-.668 2.926-2.754 3.503-4.47.283-.839.515-2.404.515-3.474 0-1.924-.539-4.191-.992-4.191-.479 0-4.994 4.98-5.565 6.137-.718 1.457-.832 5.158-.18 5.942.508.613 1.593.635 2.715.054zm-388.154-2.708c-1.152-1.058-2.19-1.93-2.304-1.936-.11 0 0 .598.256 1.341.572 1.677 1.628 2.549 3.063 2.535l1.082-.014-2.095-1.926zm420.373 1.51a2.635 2.635 0 0 0 1.505-1.524c.823-1.976.352-1.968-1.826.024-1.747 1.597-1.982 1.916-1.411 1.928.373.006 1.153-.186 1.73-.427zm-413.487-.832c-.088-.37-.4-1.886-.693-3.369l-.53-2.694-1.753-.22c-.966-.12-2.066-.423-2.447-.673-.925-.604-1.014-.578-1.014.28 0 1.237 1.151 3.904 2.175 5.044 1.024 1.137 2.994 2.305 3.888 2.305.404 0 .495-.168.376-.673zm408.477-.105c1.747-.87 2.982-2.416 3.753-4.697.487-1.425.638-2.609.33-2.609-.089 0-.48.21-.875.467-.393.26-1.471.547-2.39.643-1.385.14-1.7.28-1.822.802-.08.35-.349 1.643-.598 2.879-.252 1.233-.531 2.48-.62 2.768-.227.735.376.667 2.22-.253zm-388.278-1.563c-1.038-2.745-.778-5.4 1.018-10.375.42-1.15.709-2.136.653-2.192-.06-.06-.695.34-1.418.888a47.159 47.159 0 0 1-2.011 1.457l-.705.46.36 3.101c.199 1.707.273 3.757.159 4.561-.192 1.417-.16 1.497 1.038 2.695.678.678 1.291 1.171 1.367 1.097.076-.073-.132-.838-.46-1.692zm367.28.183c.172-.215.4-2.14.508-4.281.105-2.14.271-4.32.367-4.84.153-.839.064-1.008-.753-1.43-.507-.263-1.4-.898-1.986-1.41-.584-.514-1.117-.879-1.185-.809-.068.068.22 1.062.632 2.21 1.803 4.986 2.06 7.624 1.01 10.39-.327.867-.598 1.617-.598 1.671 0 .166 1.686-1.097 2.008-1.505zm-354.811-1.437c.24 0 .144-.409-.28-1.197-.447-.819-.794-1.142-1.101-1.022a9.68 9.68 0 0 1-1.445.339c-.839.144-.97.271-.825.798.096.35.26 1.126.36 1.729l.18 1.094 1.372-.87c.759-.48 1.541-.87 1.74-.87zm344.582-1.23c.144-.452.03-.566-.569-.566a5.07 5.07 0 0 1-1.489-.28c-.654-.25-.782-.18-1.103.6-.2.478-.485.877-.63.877-.604 0-.199.55.54.735.439.11 1.211.525 1.716.924l.924.723.216-1.218c.116-.675.295-1.477.393-1.792zM264.2 221.276c0-1.391-.12-2.6-.263-2.69-.392-.24-1.777.943-2.308 1.975-.459.89-.453.91.767 2.07.678.645 1.357 1.172 1.517 1.172.16 0 .287-1.118.287-2.527zm373.408 1.417c1.368-1.331 1.417-1.948.264-3.106-1.517-1.517-1.82-1.237-1.82 1.67 0 1.398.093 2.546.211 2.546s.725-.5 1.347-1.108zm-350.578-.467c.864-.4 2.028-1.11 2.589-1.583 1.05-.888 2.722-3.022 2.722-3.473 0-.45-6.36-.287-8.023.206-2.476.734-4.555 3.297-3.743 4.602.884 1.418 3.673 1.523 6.453.248zm332.131.24c.66-.432.759-.67.61-1.462-.248-1.32-2.484-3.317-4.196-3.752-1.362-.34-7.665-.479-7.665-.166 0 .575 2.024 2.94 3.34 3.905 2.89 2.125 6.031 2.71 7.915 1.477zm-356.534-4.501c.551-.348.958-.859.962-1.212.012-.575-.16-.613-2.68-.599l-2.691.014v1.186c-.004.958.204 1.397 1.098 2.315l1.108 1.13.624-1.118c.346-.619 1.058-1.39 1.577-1.716h.004zm15.355 2.538c.729-.389 1.294-2.479 1.038-3.844-.323-1.716-1.181-3.102-3.389-5.457l-2.08-2.215-.485 1.624c-.263.895-.483 2.184-.483 2.865 0 2.654 1.387 5.58 3.214 6.786.948.625 1.383.673 2.185.243zm346.283-.269c2.148-1.307 3.619-4.559 3.307-7.301a19.826 19.826 0 0 0-.522-2.747l-.346-1.191-2.048 2.147c-2.183 2.296-3.067 3.739-3.4 5.57-.332 1.831.638 4.103 1.756 4.097.173 0 .738-.26 1.257-.575zm16.786-.679c.779-.754.99-1.203.99-2.095v-1.142h-1.756c-.968 0-2.182-.084-2.695-.188-.838-.167-.938-.114-.924.525.006.465.34.918.968 1.312.527.33 1.228 1.032 1.557 1.56.33.53.667.959.739.967.075.006.578-.42 1.125-.945zm-397.51-.858c0-.172-.189-.683-.423-1.138-.532-1.024-1.44-4.479-1.297-4.916.06-.18.411.48.782 1.467.751 2.006 2.436 4.735 2.436 3.946 0-1.077-1.527-8.848-1.996-10.123-.719-1.97-2.036-3.753-3.088-4.192-.507-.207-.99-.311-1.074-.23-.08.084-.01 1.348.16 2.811.17 1.461.439 4.046.59 5.742.324 3.56 1.05 5.39 2.507 6.324 1.078.69 1.406.762 1.406.31zm415.19-.984c1.264-1.343 1.564-2.451 2.037-7.535.231-2.469.509-4.996.614-5.614.17-.959.12-1.122-.345-1.122-.914 0-3.237 2.686-3.78 4.371-.619 1.916-2.126 9.906-1.956 10.39.067.199.742-.855 1.497-2.336 1.566-3.058 1.896-2.605.658.898a72.669 72.669 0 0 0-.738 2.142c0 .026.25-.02.559-.1.313-.08.968-.575 1.457-1.098zm-38.546-.764v-1.765l-1.121-.145c-.753-.1-1.404.026-1.972.373l-.85.519 1.686.95c.926.525 1.76 1.15 1.852 1.391.304.792.405.465.405-1.323zM280.848 218c.084-.225.839-.784 1.677-1.237l1.521-.83-.715-.55c-.654-.502-1.696-.546-3.113-.129-.374.11-.192 3.158.19 3.158.151 0 .349-.186.438-.412zm-23.532-1.125c0-.352-.276-1.084-.613-1.629-.539-.87-.758-.988-1.784-.946-1.144.044-1.162.064-.679.659.689.854 2.58 2.545 2.85 2.55.12 0 .224-.283.224-.634zm387.572-.859c.838-.848 1.283-1.496 1.038-1.5-.244 0-.727-.08-1.074-.176-.493-.132-.779.064-1.274.864-.632 1.024-.858 2.31-.403 2.31.132 0 .898-.675 1.713-1.497zm-373.399-.073c-.21-1.134-1.624-3.819-2.008-3.819-.479 0 .126 2.525.879 3.669.912 1.383 1.373 1.445 1.131.15zm359.145-2.004c.16-.743.208-1.477.114-1.629-.267-.44-1.846 2.848-1.85 3.852l-.004.898.73-.888c.4-.493.859-1.497 1.014-2.235zm-368.065.718c3.244-.832 6.074-3.413 7.475-6.812l.467-1.134-1.583.18c-5.061.585-6.203.812-7.664 1.525-3.513 1.71-4.782 5.583-2.088 6.361 1.371.395 1.397.393 3.393-.12zm28.377-.824c.878-.4 1.944-1.082 2.375-1.511 1.204-1.206 2.425-2.894 2.232-3.084-.36-.36-6.952-.26-8.02.12-1.212.431-2.906 1.964-3.293 2.978-.879 2.311 3.028 3.182 6.706 1.497zm324.36.227c2.05-1.34-.791-4.55-4.456-5.03-1.643-.215-6.227.088-6.227.412 0 .433 2.734 3.257 3.778 3.902 2.375 1.469 5.3 1.772 6.906.718zm26.77.128c.798-.794.608-2.02-.57-3.706-1.217-1.745-3.46-2.789-6.796-3.154a390.57 390.57 0 0 1-3.667-.427c-1.249-.164-1.273.351-.11 2.38 1.063 1.847 3.518 4.183 5.206 4.95 1.843.838 5.086.814 5.938-.04zM282 213.344c.705-.778.924-2.735.483-4.311-.411-1.47-4.16-6.653-4.535-6.276-.135.132-.465 1.102-.732 2.152-.779 3.044.012 6.295 1.986 8.14 1.084 1.012 2.056 1.117 2.794.299zm338.978-.393c.61-.535 1.377-1.581 1.704-2.322.799-1.804.81-5.053.02-6.814l-.569-1.273-1.473 1.85c-2.095 2.635-2.886 4.192-3.053 6.004-.174 1.826.632 3.527 1.668 3.527.326 0 1.09-.44 1.7-.972zm-364.652-.715c.758-1.157.619-3.579-.306-5.389-.758-1.471-2.235-3.026-5.333-5.609l-1.696-1.41-.354 2.1c-.698 4.167.93 8.196 4.14 10.232 1.74 1.104 2.86 1.128 3.549.08zm390.72.16c2.378-1.152 4.121-3.904 4.596-7.27.224-1.564-.05-4.51-.455-4.916-.074-.073-.848.443-1.72 1.152-4.64 3.776-5.925 5.655-5.925 8.659 0 1.407.132 1.936.6 2.405.758.758 1.289.752 2.903-.028zm-374.966-2.162c.431-1.764.47-2.36.188-3.068l-.352-.878-.538 1.497c-.759 2.096-.765 4.64-.012 4.64.095 0 .415-.985.71-2.19zm357.367.451c-.024-1.613-.958-4.54-1.278-4.022-.383.62-.293 2.29.22 4.052.587 2.008 1.094 1.996 1.058-.03zm-368.898-3.177.978-.495-.85-.719c-.704-.59-1.066-.685-2.128-.539-1.121.148-1.257.246-1.103.799.095.349.26 1.145.365 1.772l.19 1.138.784-.729a9.213 9.213 0 0 1 1.764-1.225zm382.245-1.07c.14-.445-.044-.555-1.112-.659-1.012-.096-1.433.016-1.984.527l-.702.649 1.021.628c.56.346 1.282.919 1.597 1.27l.58.639.215-1.258c.12-.692.291-1.5.385-1.796zm-367.297.525c.016-1.03.352-3.254.745-4.936.67-2.87.748-3.034 1.221-2.565.274.28.56.445.629.371.07-.07.224-.904.34-1.85.199-1.613.175-1.723-.408-1.723-.343 0-1.092-.41-1.664-.914l-1.044-.914-1.214.804c-.67.44-1.217.867-1.217.938 0 .08.558.044 1.241-.071l1.242-.208-.206 1.307c-.216 1.39-1.577 4.547-2.545 5.908-.57.799-.57.843-.032 2 .3.651.559 1.018.575.809.04-.625.545-.42.732.3.172.654 1.278 2.62 1.477 2.62.054 0 .11-.842.124-1.87zm11.417 1.143c2.3-1.187 4.72-5.1 5.45-8.802.508-2.595.203-2.83-1.98-1.52-3.753 2.255-7.017 6.057-7.017 8.183 0 2.052 1.717 3.088 3.55 2.14zm328.764-.01c1.513-.778 1.625-2.285.34-4.524-.48-.839-1.623-2.208-2.543-3.048-1.976-1.805-5.122-3.787-5.573-3.51-.738.46.583 5.25 2.092 7.605 1.493 2.328 2.678 3.298 4.746 3.893.048.012.471-.174.938-.414zm10.254-1.041c.407-.865.874-1.458 1.126-1.422.255.034.55-.343.718-.912.244-.83.166-1.15-.53-2.203-.993-1.497-2.264-4.787-2.264-5.857 0-.724.075-.768 1.048-.61.578.093 1.047.127 1.047.073 0-.053-.459-.443-1.017-.87l-1.018-.778-1.118.892c-.619.489-1.39.89-1.717.89-.545 0-.579.132-.389 1.557.26 1.946.455 2.27.958 1.577.224-.3.455-.49.52-.42.346.384 1.716 7.975 1.576 8.703-.27 1.338.293 1.01 1.062-.623zm-332.176-.507c1.565-.733 3.998-3.324 5.15-5.483 1.13-2.124 2.126-4.9 2.126-5.936 0-.71-.026-.719-.675-.252-1.143.824-3.589 2.042-4.81 2.395-1.148.332-1.182.38-1.9 2.882-.403 1.398-1.264 3.513-1.912 4.703-.651 1.186-1.182 2.247-1.182 2.36 0 .323 1.962-.085 3.203-.667zm315.905.564c-.054-.12-.683-1.377-1.394-2.788-.71-1.411-1.53-3.477-1.822-4.595l-.529-2.032-1.736-.586a18.417 18.417 0 0 1-3.346-1.613c-1.92-1.23-1.996-1.044-.878 2.255 1.59 4.695 4.679 8.31 7.954 9.306 1.002.303 1.87.333 1.747.053zm-341.563-2.261c1.585-.784 2.228-1.337 3.473-2.994.838-1.118 1.673-2.515 1.856-3.11l.33-1.078-2.787.196c-4.654.327-7.369 1.517-8.822 3.864-1.002 1.625-1.124 2.76-.365 3.413 1.441 1.238 3.393 1.148 6.313-.291zm370.444.036.6-.804-.827-1.689c-.864-1.776-2.401-3.148-4.172-3.733-1.024-.335-7.43-1.197-7.632-1.017-.332.283 1.962 4.141 3.193 5.369 2.04 2.03 3.932 2.854 6.327 2.754 1.683-.068 1.984-.175 2.515-.882zm-356.282-1.072c.093-.463.65-1.54 1.237-2.395.587-.854 1.068-1.6 1.068-1.663 0-.062-.539-.271-1.202-.469-.662-.197-1.66-.764-2.223-1.257-.593-.52-1.098-.767-1.206-.59-.489.791-1.066 3.408-.882 3.997.27.866 2.51 3.547 2.808 3.361.128-.08.308-.519.4-.984zm338.857-2.088c.3-.55.27-.994-.18-2.47-.299-.99-.664-1.801-.814-1.801-.15 0-.766.4-1.377.892-.61.493-1.545.978-2.076 1.084-.538.108-.97.231-.97.275 0 .046.473.787 1.052 1.645.58.858 1.134 1.916 1.238 2.351.106.433.255.905.335 1.046.16.276 2.184-1.916 2.794-3.024zm-361.272 1.95c.652-.926.595-3.672-.104-5.21-.605-1.33-2.08-2.921-5.074-5.468-2.12-1.808-2.263-1.777-2.595.627-.231 1.696.054 4.163.66 5.628 1.56 3.813 5.732 6.403 7.117 4.425zm383.673.228c1.366-.703 3.421-3.228 4.056-4.976.629-1.727.775-5.505.26-6.792-.26-.66-.364-.6-2.882 1.517-3.903 3.287-5.002 5.004-5.002 7.816 0 2.635 1.373 3.573 3.568 2.435zm-4.177-6.427c.253-.475.136-.571-.93-.739-.932-.151-1.437-.06-2.13.38-.818.519-.85.588-.323.758.323.1 1.047.659 1.612 1.246l1.03 1.061.224-1.081c.126-.595.36-1.326.519-1.627zm-376.756 1.746c.316-.347.974-.838 1.463-1.091l.894-.46-.724-.483c-.699-.463-3.603-.698-3.603-.293 0 .104.2.579.447 1.05.248.469.447 1.092.45 1.377 0 .703.383.665 1.073-.1zm26.862-2.439c1.926-.894 4.657-3.473 5.286-4.984.213-.523.329-1.012.251-1.09-.08-.08-1.856-.15-3.946-.16-4.281-.02-5.972.372-7.69 1.79-2.212 1.822-2.635 4.02-.95 4.963 1.317.739 4.904.48 7.05-.519zm328.22.495c.55-.26 1.085-.734 1.185-1.048.475-1.497-1.11-3.628-3.565-4.79-1.744-.826-2.032-.868-5.948-.868-2.267 0-4.118.074-4.118.16 0 .085.264.664.583 1.277 1.098 2.096 3.543 4.231 5.914 5.158 1.79.698 4.597.752 5.948.113zm-347.311-1.347c2.145-.804 4.515-3.126 5.788-5.675.519-1.034.882-1.936.81-2.008-.213-.213-6.355.523-7.419.887-3.225 1.107-5.938 4.724-4.8 6.4.784 1.158 3.134 1.326 5.62.396zm364.81-.124c.838-.754.742-1.892-.288-3.513-1.543-2.439-3.717-3.333-9.67-3.976-1.917-.203-1.977-.13-1.27 1.567 1.118 2.665 4.012 5.441 6.539 6.263 1.608.525 3.92.36 4.69-.339zm-371.932-1.976c.639-1.237.443-3.028-.539-4.996-.73-1.457-1.497-2.327-3.736-4.245l-2.82-2.411-.232.828c-.124.455-.23 1.908-.23 3.23 0 2.121.12 2.642 1.008 4.446 1.808 3.673 5.39 5.398 6.547 3.15zm17.185-.355c.839-1.64.665-4.036-.45-6.228-1.546-3.03-1.494-3.008-3.114-1.357l-1.418 1.441 1.314-.21 1.317-.21-.21 1.306c-.12.719-.566 2.012-1.003 2.875l-.795 1.57.61.827c1.378 1.852 2.8 1.846 3.747-.01zm342.67.615c1.038-1.158 1.058-1.386.24-3.054-.44-.894-.87-2.196-.964-2.886l-.172-1.262 1.318.21 1.31.21-1.342-1.312c-.942-.918-1.457-1.228-1.713-1.03-.203.156-.844 1.23-1.42 2.385-.78 1.55-1.055 2.49-1.055 3.573 0 1.425.633 3.158 1.314 3.613.658.43 1.888.213 2.483-.447zm17.102.25c1.038-.548 2.86-2.464 3.437-3.62.719-1.445 1.19-4.291.982-5.956-.327-2.622-.409-2.622-3.423-.044-3.958 3.384-5.255 6.234-4.098 9.006.364.869.587 1.038 1.364 1.038.51 0 1.291-.191 1.736-.423zm-354.836-4.668c.703 0 .44-.445-.57-.958-1.134-.572-2.919-.662-2.915-.145 0 .195.084.848.184 1.45l.18 1.099 1.357-.725c.748-.393 1.54-.719 1.764-.719zm332.735.787c0-.228.08-.798.171-1.274.16-.818.114-.864-.952-.918-.73-.04-1.429.16-1.996.563l-.87.619 1.597.679c1.964.83 2.048.842 2.048.33zm-352.267-.938c.539-.41 1.137-.747 1.327-.747.511 0 .42-.399-.22-.948-.307-.263-.618-.664-.698-.888-.1-.307-.24-.325-.559-.076-.234.184-.794.42-1.251.531-.809.194-.819.216-.374 1.074.25.479.453 1.086.453 1.341 0 .625.176.59 1.322-.285zm370.023-.074c.092-.451.245-1.028.343-1.281.126-.32-.153-.61-.938-.962-.61-.28-1.126-.476-1.144-.44-.02.034-.28.46-.584.946-.4.64-.456.919-.19 1.006.2.068.726.44 1.168.83 1.03.907 1.145.899 1.345-.099zm-342.778-1.886c2.547-.954 5.565-3.944 5.565-5.513 0-.407-.527-.46-3.966-.385-3.44.074-4.158.18-5.39.778-1.71.838-3.219 2.567-3.219 3.685 0 2.002 3.553 2.728 7.01 1.437zm320.505-.11c1.387-1.257.25-3.43-2.52-4.814-1.716-.859-1.97-.898-5.612-.898-4.423 0-4.465.04-2.687 2.395 1.204 1.592 3.42 3.257 4.964 3.732 1.601.487 5.134.24 5.855-.415zm-339.844-.792c1.012-.507 2.33-1.483 2.928-2.172 1.138-1.305 2.391-3.719 2.092-4.02-.36-.36-6.475.519-7.585 1.086-3.084 1.577-4.577 4.75-2.67 5.668 1.28.62 3.303.404 5.235-.562zm358.283.195c.606-.605.678-.868.459-1.63-.531-1.857-2.22-3.368-4.551-4.066-1.45-.431-6.537-.922-6.537-.631 0 .371 1.297 2.73 2.042 3.704 2.195 2.885 6.894 4.322 8.587 2.625zm-347.637-1.776c.769-1.577.719-3.952-.12-5.597-.684-1.343-2.953-4.778-3.157-4.778-.307 0-1.297 2.435-1.617 3.98-.559 2.724.028 5.057 1.737 6.886 1.157 1.237 2.409 1.038 3.157-.493zm334.69.479c1.903-1.988 2.368-5.589 1.132-8.828-.359-.942-.758-1.78-.888-1.863-.295-.18-2.834 3.485-3.453 4.99-.533 1.284-.605 3.705-.15 4.93.651 1.75 2.1 2.082 3.358.77zm-354.107-.086c.36-.4.6-1.224.68-2.37.175-2.424-.74-4.31-3.546-7.308l-2.201-2.352-.431 1.154c-.64 1.704-.62 5.639.04 7.34.65 1.684 3.141 4.145 4.191 4.145.395 0 .966-.274 1.27-.609zm372.53.186c2.326-1.214 3.773-4.038 3.773-7.362 0-2.163-.519-4.49-.998-4.49-.487 0-4.391 4.61-5.03 5.938-.858 1.796-.898 4.031-.08 5.365.651 1.072 1.124 1.181 2.336.549zm-350.005-3.573c.619-.391 1.423-.805 1.797-.922l.678-.216-.605-.766c-.331-.423-.602-.966-.602-1.208 0-.31-.16-.375-.525-.215-.288.123-.974.289-1.527.367-.934.13-.99.2-.823 1.038.1.495.18 1.287.18 1.76 0 1.042.024 1.044 1.427.16zm326.816-1.585c.19-1.218.176-1.243-.778-1.377-.535-.076-1.178-.228-1.427-.34-.326-.14-.58.08-.875.779a25.768 25.768 0 0 1-.539 1.192c-.065.12.328.407.873.642.547.24 1.263.639 1.593.888.698.535.822.34 1.151-1.782zm-345.345.85c1.138-.824 1.15-.848.62-1.5-.48-.591-.63-.623-1.384-.3-.467.2-.89.391-.942.423-.132.08.283 2.216.429 2.216.064 0 .639-.38 1.277-.839zm363.942-.24c.108-.594.16-1.105.106-1.137a21.688 21.688 0 0 0-.943-.423c-.752-.323-.902-.291-1.387.307-.533.659-.529.679.29 1.178.459.28.924.653 1.034.83.37.6.694.33.898-.754zm-337.411-1.047c1.746-.48 4.146-2.41 5.537-4.457 1.884-2.779 1.996-2.675-2.142-1.916-5.104.932-6.153 1.271-7.297 2.349-1.836 1.737-1.597 3.393.585 4.032 1.277.37 1.93.367 3.317-.01zm313.619-.553c.964-.679 1.054-1.427.319-2.625-.874-1.41-2.623-2.15-7.022-2.96-2.16-.395-4.092-.784-4.3-.858-.652-.244-.414.29 1.087 2.425 1.856 2.639 3.724 4.112 5.874 4.617 1.267.3 3.16.02 4.042-.599zm-334.547-.788c1.7-.895 3.401-2.443 4.639-4.222 1.305-1.876 1.217-1.996-1.391-1.826-3.753.24-7.619 2.666-7.619 4.782 0 .799 1.331 2.036 2.188 2.036.395 0 1.377-.347 2.183-.772zm354.772.04c.862-.869.888-1.098.26-2.428-.919-1.926-4.843-3.726-8.132-3.726h-1.609l.539.938c1.537 2.675 5.645 5.918 7.517 5.94.38.004 1.018-.323 1.423-.726zm-360.95-1.344c.17-.32.31-1.303.31-2.187 0-1.25-.188-1.905-.844-2.938-.873-1.374-4.437-4.681-4.73-4.388-.095.09-.24 1.222-.328 2.515-.14 2-.06 2.581.51 3.912 1.238 2.885 4.218 4.695 5.08 3.086zm18.59.272c1.396-.749 1.971-4.232 1.057-6.415-.34-.81-2.834-4.71-3.341-5.226-.068-.066-.48.679-.918 1.649-.635 1.407-.803 2.255-.827 4.161-.026 2.108.07 2.565.799 3.805.774 1.317 1.82 2.335 2.4 2.335.14 0 .514-.14.83-.307zm328.007-.264c2.399-1.463 3.088-6.048 1.437-9.585l-.872-1.87-1.581 2.425c-1.928 2.958-2.162 3.543-2.162 5.437 0 1.717.599 3.362 1.397 3.825.725.419.705.425 1.78-.232zm20.163-.499c2.01-1.816 2.88-5.15 2.09-8.004l-.315-1.137-2.056 1.826c-1.164 1.028-2.327 2.375-2.679 3.1-.666 1.38-.822 3.742-.307 4.704.509.95 1.904.739 3.27-.493zm-344.25-2.124c.223-.273.971-.746 1.662-1.051l1.253-.56-.768-.768c-.735-.732-.834-.752-2.092-.399-.942.264-1.273.493-1.158.798.092.24.166.893.166 1.458 0 1.117.303 1.29.938.524zm319.416-1.137c0-1.298-.03-1.342-1.177-1.653-1.078-.29-1.242-.251-1.94.45l-.765.762.763.29c.419.159.858.292.968.298.11.006.542.268.954.59 1.07.838 1.197.758 1.197-.74zm-337.54-1.543c1.97-.934 3.692-3.812 4.295-7.196.31-1.716.1-4.012-.407-4.519-.325-.325-1.808.66-3.493 2.32-3.148 3.104-4.71 7.932-3.014 9.307.864.699 1.303.715 2.62.088zm357.504-.16c1.689-1.401-.862-7.704-4.116-10.16-1.736-1.317-2.41-1.596-2.708-1.127-.485.766-.292 4.686.32 6.415 1.44 4.112 4.586 6.467 6.506 4.874zm-331.105-.722c1.796-.799 5.11-3.893 4.65-4.352-.345-.345-4.65-.433-6.088-.12-2.455.528-4.183 1.893-4.183 3.3 0 2.208 2.235 2.675 5.62 1.172zm307.002.271c.786-.708.706-2.241-.16-3.054-1.293-1.217-3.523-1.836-6.613-1.836-1.708 0-2.902.128-3.026.325-.307.5 2.845 3.37 4.675 4.252 1.936.938 4.271 1.084 5.122.315zm-326.822-.4c1.936 0 2.223-.069 2.223-.534 0-.958.886-3.968 1.85-6.287l.944-2.266.42 1.431c.227.789.463 1.386.519 1.326.056-.06.269-1.521.465-3.25.359-3.193.678-4.137 1.022-3.054.105.334.379.675.604.759.352.14.354-.028.006-1.092a16.89 16.89 0 0 1-.499-1.83c-.055-.372-.539.327-1.349 1.962-1.417 2.862-3.048 4.862-5.35 6.563-1.29.954-1.66 1.437-2.083 2.742-.283.87-.834 2.012-1.224 2.535-.83 1.114-.898 1.427-.239 1.178.26-.1 1.473-.184 2.695-.184zm344.033-.957c-.42-.55-1.004-1.785-1.297-2.745-.46-1.473-.711-1.836-1.63-2.301-2.185-1.118-5.129-4.922-6.58-8.517l-.363-.898-.363 1.537c-.2.842-.472 1.716-.6 1.944-.133.223.117.084.556-.315.439-.4.886-.635.998-.525.107.107.26 1.612.339 3.343.076 1.728.253 3.144.39 3.144.139 0 .438-.635.664-1.414.363-1.247.449-1.345.724-.824.63 1.178 2.13 5.768 2.332 7.116l.21 1.385 2.586.084c1.417.046 2.635.06 2.69.03.06-.03-.239-.503-.658-1.052zm-331.427-.292c1.03-.97.946-2.94-.213-4.964-1.038-1.808-4.162-4.479-4.541-3.882-.4.629-.26 4.527.22 6.136.903 3.054 2.9 4.247 4.536 2.71zm319.485-.025c1.124-1.198 1.643-2.92 1.796-5.982.172-3.424.08-3.493-2.18-1.785-2.957 2.236-4.275 5.808-2.822 7.655a2.096 2.096 0 0 0 3.208.112zm-343.23-1.643c.31-2.347 1.702-4.797 4.087-7.19l2.167-2.175-.155-2.016c-.15-1.966-1.238-5.46-1.697-5.46-.126 0-.383.506-.569 1.124-.185.62-1.377 2.94-2.644 5.164-2.487 4.365-3.681 7.29-3.693 9.042 0 .868.206 1.305.968 2.02.539.499 1.058.912 1.158.914.104 0 .273-.639.379-1.423zm365.413.475c.974-.912 1.002-1.004.819-2.595-.214-1.806-1.607-4.976-4.032-9.181-.858-1.481-1.789-3.334-2.068-4.118-.28-.779-.599-1.421-.715-1.421-.479 0-1.517 3.598-1.642 5.688l-.136 2.246 1.529 1.185c2.505 1.936 4.79 5.972 4.79 8.447 0 .919.256.879 1.457-.253zm-335.858-3.926c2.3-1.553 4.218-5.146 4.823-9.042.509-3.28.379-3.385-2.216-1.796-4.559 2.794-6.437 5.163-6.74 8.502-.134 1.497-.068 1.829.479 2.376.842.844 2.369.824 3.656-.04zm308.346.024c1.185-1.274.419-4.876-1.541-7.254-.998-1.213-6.747-5.15-7.062-4.836-.333.333.499 5.26 1.132 6.68 2.175 4.919 5.608 7.406 7.47 5.41zm-301.184-.859c2.635-.764 5.317-2.598 7.565-5.16 2.379-2.714 3.453-3.795 4.563-4.602l.888-.645-1.134-.213c-1.677-.316-5.82.012-7.539.593-.824.28-2.235.868-3.141 1.309-1.461.715-1.683.946-2.012 2.116-.2.722-.45 1.567-.547 1.876-.132.411.34.2 1.764-.794 2.076-1.453 4.5-2.63 6.162-2.994l1.024-.22-.972 1.228c-1.547 1.95-3.904 3.868-6.136 4.99-1.134.57-2.216 1.037-2.41 1.037-.193 0-.877.545-1.53 1.212l-1.184 1.214 1.348-.188a28.862 28.862 0 0 0 3.293-.753zm294.607.739c0-.713-1.407-1.942-2.719-2.375-.834-.28-2.49-1.158-3.684-1.956-2.136-1.431-4.974-4.148-4.974-4.77 0-.74 3.952.868 6.627 2.694.958.655 1.796 1.193 1.86 1.193.35 0-.799-3.227-1.298-3.638-.327-.272-1.776-.926-3.22-1.457-2.821-1.034-5.684-1.407-8.055-1.052l-1.445.22 1.222 1.091c.67.603 2.265 2.272 3.548 3.713 3.793 4.267 6.216 5.585 11.912 6.477.124.02.224-.044.224-.14zm-318.26-3.034c1.613-1.828 3.178-4.93 3.765-7.465.471-2.028.61-6.56.252-8.084-.294-1.247-1.362-3.696-1.611-3.696-.12 0-.385.573-.595 1.271-.21.699-1.022 2.551-1.808 4.116-2.196 4.381-3.094 7.154-2.875 8.888.096.793.26 2.685.364 4.204.215 3.193.333 3.23 2.515.758zm340.116-.14c0-1.018.164-2.646.365-3.612.487-2.366-.044-4.336-2.565-9.553-1.063-2.196-2.022-4.431-2.135-4.966-.11-.535-.31-.974-.44-.974-.133 0-.55.706-.926 1.57-.538 1.23-.714 2.29-.814 4.867-.16 4.002.35 6.483 1.95 9.547 1.058 2.024 3.579 4.974 4.252 4.974.185 0 .313-.759.313-1.853zm-329.038-.319c0-.186.739-2.166 1.637-4.397 1.852-4.6 2.421-7.45 2.144-10.748-.16-1.917-.77-4.947-1.274-6.338-.092-.253-.593.723-1.157 2.246-.545 1.48-1.829 4.503-2.855 6.712-2.195 4.74-2.748 7.162-2.075 9.046.534 1.487.962 1.537 1.251.14.18-.855 1.557-4.397 2.93-7.515.4-.902.048 1.81-.778 6.088-.745 3.826-.853 4.906-.525 5.23.253.259.704-.04.704-.466zm315.74-4.55c-.874-4.568-1.23-7.506-.798-6.602.425.893 2.92 7.35 3.242 8.384l.275.898.415-.75c.24-.432.414-1.578.41-2.695-.01-2.09-.412-3.254-3.358-9.73-.822-1.811-1.73-4-2.01-4.863-.279-.864-.622-1.503-.758-1.417-.595.365-1.325 4.87-1.288 7.924.046 3.573.426 5.064 2.685 10.555 1.208 2.934 1.487 3.409 1.693 2.854.16-.42-.026-2.08-.503-4.565zM299.09 152.94c11.662-7.909 20.93-18.457 24.67-28.084 1.305-3.36 2.212-7.086 2.066-8.495l-.096-.938-4.042 3.553c-12.846 11.285-21.17 22.634-23.912 32.598-.682 2.475-.539 2.621 1.314 1.364zm6.66.08c1.845-1.202 4.76-2.02 7.679-2.156 2.894-.13 3.134-.24 4.122-1.865 2.7-4.45 8.443-10.329 13.013-13.323 1.625-1.058 4.615-2.758 6.647-3.772 2.032-1.014 3.639-1.906 3.567-1.976-.28-.28-6.822.567-9.381 1.217-6.222 1.577-10.032 3.64-12.327 6.673-2.152 2.848-7.326 7.958-11.378 11.233-3.06 2.475-3.369 2.815-3.369 3.713 0 .539.072.986.16.986.088 0 .654-.327 1.267-.729zm290.184-.43c0-.668-.463-1.185-2.549-2.844-4.61-3.667-10.523-9.507-12.728-12.583-1.162-1.616-3.31-3.022-6.683-4.37-4-1.604-9.37-2.707-13.061-2.69-1.348.009-1.326.025 3.077 2.322 2.44 1.271 5.67 3.19 7.174 4.26 3.397 2.414 7.295 6.303 9.629 9.61 3.473 4.924 2.942 4.46 5.141 4.46 2.645 0 5.593.725 7.755 1.905.988.539 1.896.928 2.022.868.12-.064.223-.483.223-.938zm6.882.485c-.004-1.225-2.016-6.47-3.706-9.664-4.212-7.964-11.018-16.06-20.539-24.451l-4.042-3.563-.09 1.038c-.23 2.575 2.048 9.361 4.631 13.812 2.974 5.126 8.11 11.313 12.764 15.38 2.855 2.494 10.306 8.113 10.765 8.119.124 0 .22-.3.22-.669zm-183.41 267.023c-1.268-.575-1.913-1.583-1.913-2.988 0-1.517.6-3.503 1.118-3.703.653-.25.719.054.333 1.497-.31 1.17-.29 1.461.14 2.122.902 1.377 4.525 1.425 6.092.08.699-.603.739-.749.403-1.404a8.47 8.47 0 0 0-1.114-1.516c-.708-.763-.718-.827-.253-1.725.579-1.124.667-1.138 1.417-.18.878 1.114 2.186 1.024 2.607-.18.36-1.037 1.028-1.037 1.181-.005.14.944 1.418 1.49 2.036.87.426-.427.426-.539-.006-1.194-.427-.652-.429-.788-.012-1.38.66-.939.954-.823 1.362.538.399 1.337.028 3.186-.813 4.028-.585.587-2.036.599-2.614.02-.386-.385-.483-.385-.805 0-.2.244-.668.443-1.038.443-.559 0-.698.204-.838 1.208-.32 2.395-1.665 3.483-4.62 3.742-1.152.1-2.045.012-2.665-.273zm30.632-1.384c-.09-.247-.248-1.183-.353-2.08a15.754 15.754 0 0 0-2.236-6.283c-1.058-1.636-1.118-2.28-.335-3.3.744-.967 1.147-.618 2.367 2.025 1.054 2.285 1.553 4.487 1.533 6.762-.016 1.66-.695 3.663-.978 2.878zm19.485-.225c-.679-.779-1.014-1.549-1.421-3.293-.36-1.541-.39-1.573-1.462-1.573-1.453 0-3.097-.855-3.572-1.857-.447-.938.004-2.33 1.303-4.035.946-1.238 1.78-1.693 2.695-1.465 1.044.263 1.68 1.77 1.966 4.658.187 1.892.483 3 1.145 4.297.845 1.657.873 1.81.47 2.775-.496 1.178-.52 1.187-1.124.493zm-2.172-7.872c.28-.46-.687-1.783-1.303-1.783-.605 0-1.252.55-1.252 1.062 0 .719 2.176 1.334 2.555.719zm5.433 7.978c-.373-.97-.21-1.709.653-2.97 1.217-1.777 2.01-3.417 3.066-6.34.918-2.534 1.321-3.021 1.664-2.024 1.254 3.637 2.38 5.82 4.483 8.703.471.645.471.754-.008 1.76l-.51 1.072-.903-.858c-.878-.838-2.942-4.6-3.357-6.108-.18-.65-.367-.387-1.437 2.022-1.393 3.138-3.314 5.629-3.653 4.745zm-15.734-1.865c-.453-2.449-1.471-5.013-2.703-6.802-1.042-1.513-1.072-1.653-.579-2.724.447-.99.843-.964 1.897.133 1.217 1.274 2.784 1.258 3.876-.04.93-1.103 1.197-.95 1.197.689 0 .986-.18 1.37-.972 2.076-.53.479-1.183.868-1.449.868-.399 0-.449.22-.29 1.218.594 3.72.476 6.217-.307 6.479-.167.056-.469-.799-.672-1.897zm-21.896-1.61v-1.198h3.788l-.13-.882c-.093-.649.068-1.074.615-1.62.46-.46.639-.851.467-1.023-.17-.17-.14-.579.08-1.064l.36-.786 1.377.758c3.287 1.807 4.241 3.453 3.185 5.495-.575 1.114-1.17 1.304-2.423.779-.934-.39-1.152-.375-2.303.147-.813.372-1.946.58-3.142.585l-1.872.006v-1.197zm9.125-1.186c.096-.16-.12-.585-.483-.948l-.658-.659-.252.679c-.136.37-.173.798-.08.944.22.36 1.246.35 1.474-.014zm-2.542-1.058c.499-.599.165-1.35-.595-1.35-.34 0-.695.205-.79.454-.174.45.355 1.343.79 1.343.124 0 .393-.2.595-.447zm-14.441-4.475c-.647-.473-.665-.878-.06-1.377.39-.323.565-.29 1.058.204.569.568.57.614.06 1.077-.446.4-.623.416-1.058.096zm2.335-.152c-.45-.495-.48-.686-.17-1.057.483-.583 1.024-.58 1.517.012.32.387.286.562-.21 1.057-.59.591-.594.591-1.137-.012zm-1.222-1.816c-.499-.559-.505-.659-.083-1.078.399-.395.564-.407 1.103-.068.779.483.79.623.088 1.258-.515.465-.585.459-1.104-.114zm-67.218-8.916c-3.094-2.868-4.777-5.096-4.777-6.323 0-1.21 1.398-2.719 2.523-2.719.659 0 .77-.132.77-.912 0-1.976 1.588-3.579 3.534-3.579.475 0 1.067-.235 1.317-.523.247-.29 1.92-2.954 3.712-5.914l3.266-5.389.09-6.587.092-6.586-.93-1.406c-1.334-2.012-1.454-3.193-.486-4.844.942-1.609.954-1.824.186-3.33-.765-1.504-.753-1.841.144-3.293.405-.658.738-1.572.746-2.031.008-.705-12.974-44.435-13.283-44.744-.06-.06-.463.499-.898 1.243-1.066 1.817-4.056 5.01-4.591 4.902-.266-.056-3.05-6.83-7.293-17.754a15903.924 15903.924 0 0 0-8.507-21.862c-.905-2.305-1.643-4.327-1.641-4.49.004-.16 1.104-1.438 2.445-2.84 2.786-2.903 4.77-5.48 5.842-7.6l.743-1.461-.938-3.33c-1.421-5.053-1.314-4.87-3.044-5.101-2.212-.293-3.579-1.637-3.779-3.707-.183-1.916.26-3.06 1.673-4.297 1.87-1.645 4.032-2.443 6.547-2.415 2.958.03 4.607.806 5.46 2.575 1.153 2.369.568 4.4-1.596 5.559-.427.23-.778.568-.778.758 0 .186 2.435 8.954 5.409 19.48a26624.742 26624.742 0 0 1 16.52 58.669c.5 1.81 1.024 3.419 1.166 3.579.148.16.26-2.262.26-5.521 0-5.47-.034-5.845-.623-6.467-1.343-1.431-1.311-5.05.056-6.292.311-.28.567-.706.567-.946s-1.066-2.207-2.371-4.377c-1.304-2.168-2.416-4.132-2.47-4.365-.075-.32.2-.41 1.098-.363.659.034 1.37-.05 1.577-.188.296-.196.36-4.132.3-18.638l-.08-18.39-1.346-.704c-1.836-.958-2.574-1.705-3.449-3.493-.503-1.026-1.085-1.703-1.796-2.086-1.277-.686-2.236-2.151-2.236-3.409 0-.639-.2-1.032-.644-1.27-1.787-.953-3.745-3.249-4.292-5.03l-.22-.706 12.13.11c6.673.06 12.212.03 12.308-.068.095-.094.175-8.347.175-18.337v-18.163l-.998-1.124c-2.243-2.515-2.243-6.34 0-7.745.467-.293.898-.568.958-.61.066-.04-.433-.699-1.101-1.457-2.056-2.34-2.332-5.413-.775-8.693.639-1.347 2.068-2.794 3.242-3.285.73-.308 1.051-.699 1.325-1.609.283-.942.854-1.605 2.627-3.054 2.666-2.18 3.944-3.826 4.197-5.409.1-.633.274-1.148.38-1.148.113 0 .369.62.574 1.384.284 1.065.759 1.736 2.052 2.918 3.924 3.576 4.587 4.305 4.778 5.255.14.705.613 1.274 1.767 2.128 1.886 1.391 2.76 2.555 3.317 4.4.845 2.805.248 5.85-1.517 7.717l-.97 1.028.73.683c2.356 2.2 2.02 6.395-.612 7.66l-.814.392.075 18.616c.068 16.926.12 18.623.563 18.709.27.052 2.695-.972 5.39-2.28 10.125-4.902 16.88-8.203 16.975-8.29.054-.047-.12-.424-.387-.831a1.936 1.936 0 0 1-.295-1.497c.104-.414.036-1.034-.15-1.382-.211-.395-.235-.808-.066-1.113.294-.525-.17-2.501-.587-2.501-.133 0-1.131-1.046-2.221-2.324-3.569-4.18-5.317-8.902-5.35-14.445-.02-3.852.394-5.648 2.097-9.145 2.634-5.415 6.906-8.802 15.656-12.44 5.948-2.466 9.39-4.602 12.459-7.734 1.762-1.796 1.776-1.826 1.144-2.269-.809-.567-1.404-2.327-1.142-3.383.11-.443.473-1.098.806-1.457l.607-.651-.864-1.297c-2.565-3.833-2.126-5.649 2.63-10.859 1.493-1.64 3.058-3.656 3.477-4.48l.759-1.497.683 1.337c.379.752 2.09 2.72 3.886 4.48 4.78 4.677 5.263 6.26 3.16 10.324l-1.178 2.275.61 1.038c.749 1.266.567 2.699-.498 3.964l-.719.859.739 1.09c1.077 1.584 3.62 3.193 11.277 7.135 3.744 1.932 7.924 4.236 9.281 5.124 4.964 3.243 7.964 6.716 9.553 11.058 2.643 7.225.623 14.924-5.6 21.35-1.713 1.769-1.743 1.827-1.847 3.743a71.282 71.282 0 0 0-.096 3.094c.004.633-.132 1.413-.3 1.73-.287.53.5.974 9.51 5.39 11.387 5.584 12.323 6.011 12.69 5.784.16-.096.273-7.9.273-18.713 0-18.143-.012-18.556-.598-19.141-.328-.331-.719-.599-.875-.599-.15 0-.505-.609-.788-1.351-.958-2.511-.144-5.441 1.776-6.383l.809-.395-.95-1.082c-3.433-3.912-2.336-9.437 2.359-11.864.593-.308.924-.809 1.192-1.805.299-1.123.818-1.806 2.802-3.692 2.375-2.262 3.533-4.022 3.547-5.39.012-1.141.459-.746.854.749.32 1.21.822 1.856 3.333 4.287 2.368 2.296 2.998 3.082 3.164 3.968.16.849.559 1.386 1.717 2.31 1.962 1.56 2.834 2.77 3.399 4.714.718 2.463.06 4.89-1.896 7l-.739.793.85.399c.487.233 1.146.978 1.543 1.756 1.172 2.27.485 5.234-1.467 6.355l-.874.5v37.753H542.7l-.21.97c-.498 2.312-1.664 3.733-3.812 4.651-.459.2-.91.599-1.003.886-.575 1.785-.965 2.356-2.222 3.258-1.028.738-1.547 1.387-1.94 2.43-.759 2.01-1.288 2.731-2.595 3.554-.902.573-1.142.908-1.142 1.607 0 .558-.333 1.265-.898 1.906l-.898 1.024v33.604h3.144c1.92 0 3.143.12 3.143.303 0 .166-.85 1.683-1.888 3.37a205.154 205.154 0 0 0-2.858 4.77l-.97 1.709.573 1.137c1.084 2.15 1.078 3.102-.044 5.216l-1.006 1.908-.208 6.128c-.114 3.365-.13 6.047-.04 5.954.188-.188 1.872-6.108 14.818-52.062l8.735-30.997-1.026-1.09c-1.218-1.285-1.537-2.555-1.082-4.241.42-1.565 1.277-2.769 2.375-3.334 1.673-.868 7.142-.327 9.657.954 1.792.91 2.535 3.645 1.6 5.884-.532 1.274-2.04 2.521-3.34 2.767-.987.184-1.065.295-1.657 2.331-.34 1.178-.942 3.21-1.338 4.521l-.712 2.38 1.054 1.73c1.357 2.235 3.313 4.684 5.702 7.141l1.906 1.957-.573 1.636c-.315.898-3.265 8.639-6.554 17.202-3.29 8.562-6.84 17.824-7.888 20.578-1.052 2.759-2.036 5.016-2.196 5.018-.531.006-3.693-3.497-4.61-5.11-.586-1.022-.969-1.44-1.067-1.161-.083.24-.505 1.716-.938 3.28-.425 1.564-3.479 11.87-6.776 22.901a16490.1 16490.1 0 0 0-6.281 21.048c-.26.886-.2 1.067.59 1.804 1.142 1.072 1.404 2.311.83 3.968-.402 1.172-.402 1.357.013 1.816.569.631.852 2.555.583 3.988-.11.593-.6 1.53-1.086 2.082l-.882 1.004v6.431c0 7.453-.444 6.2 4.29 12.156 1.526 1.916 3.57 4.499 4.542 5.734 2.092 2.663 2.115 2.683 3.379 2.69.539.005 1.537.286 2.205.627.953.486 1.364.953 1.849 2.102.527 1.252.788 1.521 1.72 1.773 1.358.367 2.545 1.277 3.126 2.4.595 1.15.585 3.166-.016 3.394-.251.1-42.051.26-92.887.365l-92.43.186-2.26-2.096zm186.524-.345c.38-.24.38-.38 0-1.092-.24-.447-.838-1.064-1.333-1.363-.866-.531-4.166-.551-91.22-.553-81.716 0-90.367.046-90.794.47-.724.725-.606 2.188.204 2.516.912.365 182.566.389 183.143.02zm-5.076-5.375c0-.316-.415-.923-.918-1.35l-.924-.778h-86.653c-86.253 0-86.654.006-87.25.603-.594.592-.785 1.509-.4 1.896.11.11 39.788.2 88.173.2 86.41 0 87.972-.01 87.972-.571zm-100.896-3.893c0-.155-1.382-2.006-3.07-4.12l-3.068-3.844-13.1-.08c-7.205-.04-13.097.007-13.097.104 0 .48 5.489 7.893 5.928 8.008 1.026.27 26.407.2 26.407-.07zm30.386-.02c.13-.22-4.67-5.882-6.16-7.269l-.883-.822h-13.619c-9.305 0-13.617.1-13.617.313 0 .41 5.849 7.665 6.352 7.876.555.24 27.778.14 27.927-.1zm-61.288-3.301a1187.337 1187.337 0 0 1-4.312-6.207l-2.435-3.523-10.888-.086c-5.988-.044-11.181-.01-11.532.076-.352.085-1.09.862-1.637 1.73a622.62 622.62 0 0 1-3.928 6.024c-1.613 2.447-2.926 4.491-2.926 4.545 0 .255 2.449.28 20.269.205l19.267-.08-1.876-2.684zm82.4 2.814c0-.103-1.565-1.856-3.48-3.896l-3.48-3.708h-9.122c-5.321 0-9.077.113-9.018.271.174.473 5.972 7.176 6.336 7.325.519.21 18.762.22 18.762.006zm37.804-.195 4.417-.074-4.208-5.39c-2.315-2.963-4.443-5.624-4.724-5.907-.471-.48-1.503-.525-11.816-.56-9.128-.027-11.397.04-11.797.372-.475.4-7.479 10.722-7.75 11.431-.104.272 3.567.34 15.659.28 8.69-.04 17.788-.108 20.219-.15zm-47.21-8.836c.32-.214 2.803-3.59 3.86-5.236l.526-.822h-7.235c-6.082 0-7.198.066-6.996.413.131.23 1.287 1.645 2.567 3.146l2.329 2.728 2.315-.006c1.27 0 2.455-.1 2.635-.223zm-64.845-.24c0-.088-.748-1.437-1.662-2.994l-1.665-2.824h-10.145v1.221c0 .99.259 1.557 1.363 2.994l1.367 1.773h5.37c2.953 0 5.372-.074 5.372-.168zm27.792-3.12-2.495-2.69-13.245-.004c-7.29-.004-13.25.1-13.25.227 0 .354 2.73 4.677 3.11 4.93.184.12 6.643.22 14.352.22l14.02.006-2.492-2.69zm28.595 1.976a137.443 137.443 0 0 0-2.196-2.69l-1.646-1.976-12.352-.004c-6.792-.004-12.349.094-12.349.213 0 .12 1.108 1.332 2.463 2.695l2.465 2.475h24.162l-.55-.713zm-71.726-10.439.08-6.51h-21.866v6.387c0 3.513.092 6.479.204 6.59.111.112 4.996.168 10.852.124l10.648-.08.08-6.51zm122.374.376v-6.138l-11.301-.08-11.304-.076v12.589l11.304-.08 11.3-.076zm-98.867 3.708c.186-.185-2.451-3.553-3.313-4.231-.36-.28-2.715-.376-9.401-.376h-8.926v2.196c0 1.208.09 2.285.2 2.395.249.25 21.19.266 21.44.016zm27.301-1.836c-2.54-3.064-.922-2.77-15.293-2.77-8.377 0-12.69.103-12.69.303 0 .327 2.57 3.597 3.113 3.96.18.12 6.174.22 13.313.223l12.986.004-1.429-1.722zm14.83 1.47c0-.139-.93-1.147-2.066-2.245l-2.066-1.996h-5.121c-2.815 0-5.118.092-5.118.2 0 .228 2.954 3.719 3.433 4.064.43.305 10.938.285 10.938-.02zm17.122-2.817c.051-1.69.051-3.374-.004-3.743l-.096-.675h-12.83v7.485h12.834l.094-3.067zm4.658 1.842 1.274-1.218v-5.01l-4.717-4.37-4.714-4.372-.096 1.587-.1 1.587 2.868 2.722 2.867 2.719v3.792c0 3.732.01 3.788.672 3.784.38 0 1.238-.539 1.946-1.221zm-19.574-.345c.1-.372.183-1.833.185-3.248l.004-2.575-2.844-2.614-2.842-2.615v-8.036l-1.853-1.423c-1.017-.779-2.299-1.805-2.844-2.276l-.992-.854v-3.393c0-3.848.37-3.218-3.519-5.988l-1.87-1.337v-5.028l-1.529-1.377c-.842-.755-1.65-1.378-1.796-1.378-.152 0-.268 4.595-.268 10.609v10.603l1.274 1.48c2.8 3.254 18.317 20.128 18.51 20.128.114 0 .288-.303.386-.672zm-62.938-6.737c-.974-1.784-1.217-2.032-2.071-2.116l-.968-.093v4.231h4.141l-1.102-2.02zm27.15 1.75c-.232-.628-3.064-3.385-3.74-3.642-.76-.288-22.555-.407-22.555-.12 0 .451 1.832 3.699 2.161 3.832.695.276 24.242.21 24.136-.07zm27.031-.259c-.155-.295-1.028-1.237-1.936-2.096l-1.656-1.567H447.3c-9.42 0-11.844.08-11.844.384 0 .21.753 1.153 1.67 2.095l1.674 1.711h12.111c11.503 0 12.096-.026 11.826-.53zm-57.82-5.758c.33-.33.6-.938.6-1.348 0-.413-.27-1.018-.6-1.349-.578-.579-.997-.599-12.255-.599-10.195 0-11.712.06-12.123.471-.884.883-.453 2.795.726 3.214.246.088 5.535.171 11.75.183 10.923.024 11.324.004 11.903-.574zm11.977.28c0-.414-1.74-3.01-2.346-3.498-.315-.253-1.652-.375-4.171-.375h-3.713l.246.972c.133.539.225 1.481.203 2.096l-.04 1.123h4.91c3.288 0 4.91-.105 4.91-.319zm12.409-1.404c-.79-.944-1.637-1.888-1.889-2.096-.505-.415-10.518-.559-10.518-.145 0 .319 2.123 3.467 2.52 3.732.176.124 2.799.224 5.825.228l5.5.004-1.436-1.723zm15.135 1.53c0-.424-2.595-3.372-3.233-3.676-.807-.379-11.024-.45-11.258-.08-.08.14.625 1.082 1.567 2.1l1.717 1.849h5.604c3.082 0 5.603-.086 5.603-.192zm13.174-.04c0-.13-.813-1.037-1.805-2.021l-1.804-1.788-4.82-.092c-2.655-.056-4.93.012-5.064.148-.134.135.547 1.087 1.517 2.115l1.752 1.873h5.11c2.814 0 5.114-.106 5.114-.234zm34.67-1.187c.08-1.03-.048-1.413-.659-2.022-.678-.678-.988-.752-3.161-.752-1.324 0-2.408.124-2.408.273 0 .15.909 1.098 2.02 2.1 1.757 1.583 2.16 1.812 3.07 1.747 1.004-.08 1.052-.134 1.138-1.35zm35.438.922c.671-.606.703-1.546.08-2.435l-.463-.662h-12.52c-13.747 0-13.294-.06-13.294 1.796s-.443 1.796 13.214 1.796c11.151 0 12.494-.051 12.983-.495zm-46.905-4.445V350l-6.116-.08c-4.69-.064-6.171.006-6.357.3-.291.458-.333 6.632-.044 6.921.114.112 2.974.17 6.363.124l6.16-.08v-3.593zm-75.953-1.058c.778-.726.838-1.682.16-2.435-.466-.515-1.242-.549-12.216-.549-8.718 0-11.816.092-12.08.36-.2.2-.359.798-.359 1.33 0 1.895.036 1.903 12.585 1.903 10.912 0 11.273-.02 11.91-.61zm122.517-.006c.52-.968.24-2.167-.607-2.594-.558-.28-3.6-.376-12.201-.38-11.058-.004-11.473.014-12.05.595-.728.729-.77 1.71-.104 2.445.465.515 1.252.55 12.563.55 11.862 0 12.076-.01 12.4-.616zm-36.426-.303c.91-.718.998-1.35.295-2.128-.433-.479-1.002-.547-4.511-.547h-4.012l.094 1.422c.08 1.307.16 1.437.988 1.61.493.104 2.124.206 3.627.226 2.34.028 2.842-.056 3.516-.585zm-66.78-1.182c-.463-.658-1.112-1.271-1.441-1.357-.33-.086-3.968-.116-8.084-.07l-7.485.084-.092 1.274-.093 1.27h18.04l-.845-1.202zm26.253-.145-1.321-1.347h-23.868l1.104 1.347 1.103 1.345h24.307l-1.325-1.347zm41.107-3.667.773-1.123.02-18.358.016-18.357-.739-.972c-.918-1.197-1.507-3.632-1.237-5.081.152-.79.447-1.218 1.078-1.541l.872-.451-2.531-4.036c-1.397-2.22-2.535-4.106-2.535-4.192 0-.086 1.281-.155 2.844-.155 1.982 0 2.845-.108 2.845-.354 0-.652-5.03-7.864-7.28-10.427-6.906-7.884-16.914-14.06-26.001-16.047-2.845-.62-8.986-.615-13.074.01-13.677 2.101-22.11 6.241-30.61 15.03-3.414 3.532-8.962 10.31-8.962 10.953 0 .128 2.21.234 4.914.234h4.91l1.345 1.303c1.902 1.85 3.772 2.695 5.573 2.523 1.71-.166 3.844-1.146 5.155-2.37 1.342-1.25 1.827-1.456 3.422-1.456 1.311 0 1.513.11 2.966 1.62 2.365 2.464 4.435 2.81 7.225 1.208a8.22 8.22 0 0 0 2.036-1.766c.798-1.05.838-1.064 3.04-1.064 1.752 0 2.23.092 2.23.435 0 .24-.607 2.529-1.348 5.086l-1.345 4.65v44.958l.824-.096.822-.096.08-16.018c.06-11.668-.012-16.195-.263-16.672-.19-.36-.274-.934-.184-1.277.09-.344.016-1.018-.167-1.501-.314-.835-.246-.968 1.297-2.543.898-.91 1.748-1.657 1.892-1.657.144 0 .932.659 1.749 1.471l1.487 1.471-.214 1.747c-.12.958-.391 1.996-.599 2.303-.804 1.158-.28 1.39 3.2 1.39 2.647 0 3.307-.089 3.447-.456a.922.922 0 0 0-.126-.822c-.163-.204-.391-1.178-.499-2.168l-.2-1.796 1.625-1.597 1.631-1.605 1.707 1.707c1.497 1.497 1.676 1.806 1.48 2.499a6.002 6.002 0 0 0-.185 1.607c.016.449-.094.892-.252.99-.163.1-.287 2.275-.287 5.07v4.895l3.144 2.324 3.143 2.323v2.347c0 2.703-.09 2.567 3.384 5.03l2.305 1.637v3.365c0 1.85.14 3.673.313 4.052.288.625 1.457 1.59 3.1 2.555.425.25 2.14.371 5.303.375l4.677.004.768-1.122zm-87.284-18.115.074-18.487h-22.758v37.13l11.303-.077 11.301-.08zm10.848-3.916v-22.555l-1.066-4.758c-1.024-4.571-1.197-5.17-1.437-4.899-.359.416-6.18 9.272-6.18 9.402 0 .085.206.155.456.155.79 0 1.636 1.809 1.64 3.5 0 1.951-.399 3.02-1.516 4.043l-.879.804v17.956c0 9.876.08 18.168.18 18.43.16.398.838.47 4.49.47h4.312v-22.554zm29.68 22.031c.06-.29.074-9.856.03-21.257l-.08-20.734h-27.234v42.514h13.588c12.699 0 13.593-.034 13.697-.523zm81.247-18.04V310.78l-11.301-.08-11.304-.08v37.141l11.304-.08 11.3-.075zm-50.812 12.196.086-3.225-6.373.08-6.371.08-.088 2.546c-.046 1.397-.01 2.85.084 3.224l.17.678 6.207-.08 6.203-.08.086-3.223zm56.81-18.782c2.24-7.657 4.53-15.469 5.09-17.365.566-1.896 2.05-6.946 3.301-11.228 1.251-4.281 5.23-17.858 8.838-30.169 3.609-12.311 6.563-22.5 6.563-22.642 0-.27-2.435-.99-2.645-.779-.066.06-2.311 7.77-4.99 17.126a39364.868 39364.868 0 0 1-17.684 61.508l-2.824 9.78.024 4.144c.014 2.281.075 4.012.14 3.846.06-.163 1.947-6.567 4.187-14.221zm-62.195 8.908.088-2.022h-12.902v1.896c0 1.044.094 1.988.205 2.102.112.114 2.978.17 6.364.126l6.157-.08.09-2.022zm-102.45-18.683a189615.92 189615.92 0 0 1-9.62-33.937c-9.755-34.419-11.138-39.241-11.345-39.44-.174-.18-2.843.39-3.114.664-.064.06.31 1.503.826 3.201 1.317 4.326 1.786 5.889 7.06 23.599 2.575 8.643 7.165 24.071 10.211 34.28 3.044 10.21 6.435 21.593 7.537 25.298l2.002 6.732.084-3.632.084-3.633-3.729-13.134zm84.67 9.89c.39-.147.475-.708.47-3.067 0-1.585-.119-3.064-.259-3.282-.14-.227-.624-.359-1.117-.299l-.867.1-.085 3.117c-.092 3.523.203 4.072 1.862 3.434zm8.197-.07c.28-.179.36-.981.3-2.913l-.09-2.675-2.844-.084c-4.326-.132-4.192-.22-4.192 2.735 0 1.525.14 2.614.36 2.834.413.411 5.84.499 6.466.106zm3.593 0c.28-.179.36-1.071.296-3.362l-.086-3.12h-2.096l-.086 2.974c-.048 1.637-.02 3.15.064 3.367.168.44 1.305.523 1.906.14zm-10.27-9.027c0-.347-.468-.47-2.065-.539-1.218-.052-2.202.046-2.391.24-.575.572.443.906 2.51.824 1.498-.06 1.947-.18 1.947-.525zm11.697.265c.344-.552-.519-.854-2.455-.858-1.722-.004-2.826.471-2.301.994.34.343 4.537.224 4.756-.134zm-12.02-1.646c.56-.212.627-1.338.114-1.85-.2-.2-1.114-.36-2.036-.36-.922 0-1.836.16-2.036.36-.387.387-.485 1.508-.16 1.836.25.25 3.478.26 4.119.016zm11.677 0c.663-.254.59-1.527-.106-1.902-.946-.507-3.167-.374-3.918.233-.573.465-.619.643-.32 1.198.296.559.603.654 2.108.654.97 0 1.976-.08 2.236-.183zm-13-3.094c0-.403-.547-.683-.902-.46-.168.1-.228.31-.134.464.23.365 1.038.36 1.038 0zm11.377-.164c-.371-.449-.898-.353-.898.166 0 .154.285.28.635.28.53 0 .573-.074.265-.448zm-57.781-.449c1.526-.814 1.357-4.105-.244-4.77-.579-.24-4.42-.315-13.034-.256-11.696.08-12.235.112-12.64.667-.655.894-.55 3.333.173 4.06.58.579.998.599 12.894.599 7.56 0 12.51-.114 12.85-.3zm122.243-.57c.703-1.19.663-2.875-.085-3.623-.58-.58-.998-.6-13.044-.6-7.655 0-12.659.115-13 .3-.669.36-1.022 1.765-.752 2.994.409 1.867-.12 1.797 13.728 1.797h12.638l.515-.87zm-84.515-4.232c-2.55-.353-25.381-.34-25.599.012-.124.2 4.451.285 13.529.26 7.704-.025 12.994-.146 12.07-.272zm83.805-2.615c.425-.519 1.547-2.155 2.495-3.648l1.716-2.707h-16.315c-8.972 0-16.313.092-16.313.204 0 .568 4.28 6.954 4.717 7.035.279.052 5.552.086 11.716.076l11.21-.016.772-.942zm-120.068-2.489c1.193-1.826 2.243-3.513 2.335-3.742.14-.36-2.24-.423-16.188-.423-8.993 0-16.35.085-16.35.19 0 .223.744 1.464 2.898 4.823l1.58 2.472h23.553zm37.963 2.346c.24-.366 1.864-5.545 1.882-5.988.024-.54-1.447-.154-2.107.552-1.194 1.274-3.134 2.244-4.843 2.422-2.01.207-4.359-.719-5.58-2.204-.727-.882-1.026-1.022-2.25-1.046-1.118-.024-1.677.16-2.667.868-3.013 2.152-5.654 2.883-7.874 2.18-.644-.204-1.942-.958-2.89-1.683-1.649-1.261-2.918-1.69-2.918-.986 0 .3.373 1.857 1.228 5.13l.293 1.126h13.742c10.667 0 13.797-.084 13.984-.375zm-57.384-23.054c.004-8.108.113-14.916.247-15.126.186-.291 1.545-.359 5.76-.299l5.515.08.08 15.05.076 15.041h4.188v-33.832h-20.954l-.08 16.792c-.044 9.236-.024 16.847.044 16.916.068.068 1.248.124 2.62.124h2.496l.006-14.744zm8.23 3.07v-11.527h-5.09l-.08 11.617-.076 11.61 2.62-.086 2.625-.09zm114.22-3.443v-15.12h11.376v30.24h4.497l-.08-16.84-.073-16.843-10.106-.08-10.106-.08v33.842h4.491zm7.714 3.519-.08-11.603h-5.09l-.08 11.603-.076 11.6h5.404l-.08-11.6zm-13.84-21.856c-.112-.3-10.21-.376-49.102-.376-38.97 0-48.961.076-48.961.376l-.076 14.518c-.04 7.785-.006 14.146.076 14.146s.471-.579.868-1.278c4.685-8.293 11.725-14.77 21.178-19.48 13.732-6.847 30.664-8.104 45.169-3.35 11.842 3.879 22.408 12.455 28.594 23.21a117.58 117.58 0 0 0 1.768 2.994c.44.69.484-.451.555-14.82.044-8.563.014-15.737-.065-15.942zm23.782-2.75c.17-.32.309-.791.309-1.049 0-.425-6.86-.463-72.823-.395-69.984.074-72.83.1-72.93.619-.289 1.497-5.15 1.403 72.68 1.403 71.325 0 72.458-.01 72.764-.579zm2.195-3.618c1.026-.81 2.104-2.598 1.896-3.147-.15-.387-9.606-.431-78.072-.366-59.896.06-77.93.16-78.023.434-.188.564 2.225 2.704 3.604 3.193 1.098.387 10.609.447 75.54.467 74.051.024 74.29.02 75.053-.579zm4.238-5.808c1.09-.459 1.808-1.457 1.543-2.146-.14-.367-11.45-.415-82.127-.35-79.065.073-81.97.095-82.069.618-.12.619.695 1.65 1.593 2.016.33.14 36.474.255 80.324.267 68.1.016 79.871-.04 80.738-.403zm4.65-5.05c.411-.21.793-.613.849-.898.091-.487-4.591-.515-85.085-.515-46.852 0-85.252.114-85.338.25-.084.14.05.543.3.898l.452.648 84.039-.004c67.001-.004 84.19-.08 84.79-.379zm20.547-3.133c.499-.5.413-.533-1.85-.703-3.683-.28-5.166-1.337-4.823-3.457.2-1.238-.439-1.377-1.173-.26-1.05 1.605.191 3.697 2.72 4.581 1.53.533 4.52.44 5.124-.165zm-214.05-1.074c.853-.433 1.642-.934 1.753-1.112.396-.643-.151-.643-1.477 0-.742.36-2.086.728-2.986.822-1.473.152-1.708.092-2.407-.606-.513-.51-.778-1.106-.782-1.757l-.012-.988-.613.739c-.747.894-.583 2.175.413 3.245.605.653.852.709 2.615.585a9.076 9.076 0 0 0 3.497-.924zm152.49.826c0-.096-4.483-2.37-9.96-5.054l-9.966-4.884-9.122-.693c-6.197-.473-11.67-.698-17.06-.706-7.514-.008-10.055.126-22.893 1.213l-5.383.46-9.74 4.644c-5.354 2.555-9.865 4.77-10.02 4.918-.172.164 18.718.272 46.929.272 25.968 0 47.215-.08 47.215-.172zM387.56 220.088c0-9.784-.08-18.003-.18-18.263-.128-.333-.575-.473-1.497-.473h-1.323v36.527h2.994v-17.79zm4.49-.489V201.32l-1.42.09-1.424.09-.08 17.814c-.04 9.8-.01 17.984.068 18.187.084.224.689.375 1.497.375h1.358v-18.279zm5.027.914c.048-9.468.006-17.652-.09-18.189-.166-.924-.24-.972-1.505-.972h-1.338v36.558l1.422-.09 1.423-.09.086-17.215zm112.264-.822-.076-18.19-1.421-.091-1.424-.092v36.56h2.998l-.08-18.187zm4.564-.092V201.32l-1.42.09-1.424.09-.086 17.215c-.048 9.467-.006 17.655.09 18.19.166.924.24.971 1.507.971h1.333v-18.279zm5.016.092-.076-18.19-1.423-.091-1.42-.092v18.08c0 9.944.089 18.171.199 18.279.11.11.786.2 1.497.2h1.301l-.08-18.188zm-41.043 6.936c.425-1.106-.41-1.257-10.38-1.896-12.069-.778-22.242-.792-34.546-.04-9.36.567-9.95.675-9.544 1.736.13.336.586.39 2.143.25a623.605 623.605 0 0 1 10.212-.659c9.836-.583 23.616-.399 34.13.455l7.27.587a.743.743 0 0 0 .715-.433zm-33.776-3.712c9.64-.324 19.988-.104 27.588.586 4.372.4 6.491.39 6.082-.02-.465-.467-13.273-1.417-22.235-1.648-4.71-.12-10.391-.06-14.79.163-8.717.44-16.926 1.082-17.194 1.348-.529.529.926.594 5.679.26 2.85-.2 9.54-.51 14.87-.69zm-10.735-1.643c13.645-.97 24.765-.894 39.072.267 2.8.226 5.145.36 5.215.294.32-.308-.495-.46-4.646-.868-13.142-1.292-25.589-1.338-41.736-.148-6.627.489-7.785.63-7.785.958 0 .2.659.244 1.87.124 1.03-.1 4.635-.383 8.01-.623zm-3.592-1.916c12.363-1.637 30.632-1.523 43.802.275 5.081.695 4.73.789 7.453-2.016 2.94-3.028 4.916-7.65 5.24-12.275.227-3.18-.259-5.623-1.706-8.629-1.487-3.087-3.437-5.463-6.487-7.916-2.578-2.076-2.778-2.185-10.578-5.964-2.715-1.317-5.815-2.974-6.886-3.682-1.813-1.198-4.551-3.705-5.76-5.27-.49-.632-.74-.672-4.128-.672h-3.605l-3.058 2.894c-4.252 4.028-6.08 5.17-13.09 8.183-10.127 4.352-14.936 9.85-15.708 17.964-.51 5.363 1.782 11.73 5.858 16.275 1.517 1.693 1.617 1.749 2.794 1.597a1995.902 1995.902 0 0 0 5.859-.768zm-30.3-21.006c1.412-1.313.947-3.517-.874-4.152-.604-.211-3.882-.33-9.005-.33-8.899 0-9.485.103-10.076 1.795-.363 1.046-.21 1.663.653 2.621.598.67.648.673 9.626.673 8.65 0 9.05-.026 9.675-.607zm122.021-.128c1.361-1.257.938-3.173-.868-3.932-.789-.327-2.785-.423-8.942-.423-8.008 0-9.188.136-9.946 1.138-.619.81-.495 2.475.24 3.26l.652.692h18.07l.792-.735zm-124.362-6.002c0-.387-1.032-.449-7.485-.449-6.832 0-7.884.1-7.285.699.11.11 3.477.2 7.485.2 6.277 0 7.285-.06 7.285-.45zm121.855 0c0-.387-1.012-.449-7.317-.449-6.64 0-8.02.132-7.445.707.106.106 3.469.192 7.477.192 6.277 0 7.285-.06 7.285-.45zm-121.07-2.131c1.692-.805 2.36-2.036 2.36-4.358 0-1.736-.12-2.161-.9-3.263a13.12 13.12 0 0 0-2.047-2.196l-1.152-.928-5.588-.093c-3.07-.052-6.038-.01-6.593.093-1.198.226-3.665 2.423-4.355 3.878-.615 1.294-.61 3.757.012 5.056.267.563.974 1.306 1.572 1.653 1.018.59 1.517.629 8.374.635 6.117.006 7.455-.07 8.315-.48zm122.3-.196c1.98-1.325 2.628-4.191 1.505-6.657-.595-1.305-2.623-3.3-3.819-3.756-.413-.156-3.201-.28-6.195-.28-4.665.007-5.615.086-6.643.563-3.88 1.8-5.315 6.797-2.748 9.57.359.386.922.814 1.251.951.33.138 3.982.256 8.114.268 7.331.02 7.545.004 8.535-.659zm-124.582-12.136c0-.81-.904-.958-5.838-.958s-5.838.148-5.838.958c0 .132 2.627.24 5.838.24 3.214 0 5.838-.108 5.838-.24zm121.855 0c0-.806-.902-.958-5.728-.958-4.152 0-5.09.08-5.477.471-.26.26-.471.527-.471.6 0 .07 2.626.127 5.836.127 3.213 0 5.84-.108 5.84-.24zm-124.645-2.56c.088-.086-.599-.899-1.517-1.797-.924-.898-1.68-1.517-1.68-1.369 0 .148-.68.914-1.512 1.697-1.445 1.365-1.48 1.437-.822 1.64.743.232 5.27.092 5.533-.17zm121.95.066c0-.184-.728-1.038-1.622-1.897-1.609-1.547-1.625-1.552-1.988-.878-.2.38-.882 1.104-1.517 1.617-.635.513-1.158 1.058-1.158 1.211 0 .164 1.351.286 3.142.286 2.136 0 3.146-.108 3.146-.34zm-59.15-3.845c.642-.245.768-.483.768-1.46 0-.66-.192-1.326-.44-1.532-.304-.255-1.921-.351-5.46-.327-4.317.03-5.08.106-5.401.535-.553.734-.46 1.796.223 2.479.545.545.998.599 5.07.599 2.46 0 4.818-.132 5.24-.292zm.14-5.736c1.097-1.178 1.6-2.615 1.393-4-.23-1.525-1.302-3.088-4.408-6.42-2.023-2.169-2.335-2.398-2.594-1.915-.16.3-1.25 1.626-2.415 2.944-2.481 2.794-3.324 4.341-3.324 6.101 0 1.378.328 2.2 1.288 3.254.582.639.83.675 5.041.675 4.136 0 4.467-.04 5.022-.64zm113.022 189.512c-4.685-3.499-10.036-9.884-12.1-14.439-1.161-2.558-1.916-6.407-1.676-8.538.223-1.966 1.153-4.481 2.279-6.168.44-.659 2.347-3.489 4.241-6.287 6.098-9.022 12.435-20.375 14.012-25.124.36-1.082.805-2.056.986-2.17.184-.113.982.506 1.823 1.422 3.018 3.273 5.385 7.688 6.48 12.091.58 2.336.653 3.238.532 6.887-.12 3.56-.264 4.566-.959 6.596-1.187 3.483-2.335 5.455-5.335 9.174-4.78 5.928-6.894 9.764-8.187 14.86-1.082 4.275-.946 9.4.339 12.72.333.855-.252.611-2.435-1.018zM329.1 353.068c.615-2.396.693-3.274.58-6.511-.196-5.573-1.224-8.012-6.995-16.587-6.02-8.942-7.425-12.698-7.41-19.79.007-3.733.1-4.457.812-6.607.439-1.327 1.467-3.519 2.275-4.87 1.749-2.906 4.511-6.391 4.946-6.247.172.06.828 1.307 1.457 2.774 3.603 8.383 7.505 15.375 13.094 23.445 4.958 7.165 6.283 10.59 6.283 16.223 0 7.134-3.373 12.465-11.822 18.703-2.176 1.6-3.22 2.239-3.669 2.239-.145 0 .056-1.247.45-2.77zm10.55-33.4c-9.522-14.726-14.725-25.342-16.348-33.342-1.144-5.659.36-11.752 4.244-17.165 1.746-2.436 5.772-6.388 6.051-5.94.116.187 4.112 10.051 8.883 21.915l8.67 21.577-2.116 2.18c-4.211 4.345-6.527 9.155-6.339 13.153.056 1.132.03 2.046-.052 2.036-.082-.01-1.429-1.996-2.994-4.417zm217.358 2.26c-.008-4.45-2.206-8.846-6.757-13.505l-1.71-1.752 2.243-5.583c1.234-3.068 5.18-12.888 8.766-21.822 3.585-8.932 6.613-16.241 6.727-16.241.405 0 4.331 4.068 5.64 5.838 3.781 5.122 5.57 11.736 4.585 16.97-.443 2.36-2.17 7.68-3.529 10.858-1.46 3.433-5.025 10.208-7.57 14.395-2.481 4.084-8.098 12.715-8.276 12.715-.06 0-.12-.845-.12-1.873zM429.157 145.73c-3.22-3.094-3.605-3.569-3.188-3.916.412-.34.829-.06 3.114 2.1 4.252 4.028 4.196 3.984 4.719 3.552.253-.211.459-.495.459-.634 0-.14-.739-1.082-1.647-2.096-1.441-1.617-2.024-2.669-1.477-2.669.174 0 2.255 2.224 3.333 3.557.43.527.745.659 1.232.503.359-.114.654-.3.654-.413 0-.112-1.141-1.806-2.534-3.76-1.398-1.956-2.47-3.673-2.382-3.817.423-.682 1.166.006 3.413 3.178 1.344 1.89 2.55 3.505 2.675 3.585.126.08.475-.028.763-.24.487-.36.439-.55-.707-2.828-1.377-2.735-1.381-2.755-.838-2.755.213 0 .914 1.078 1.557 2.396 1.133 2.327 1.576 2.714 2.47 2.147.284-.18-.035-1.157-1.273-3.912-1.69-3.772-1.96-4.822-1.23-4.822.248 0 1.134 1.6 2.17 3.928.966 2.16 1.93 3.996 2.148 4.082.858.335.912-.443.193-2.775-.818-2.648-.898-3.241-.407-3.08.18.06.69 1.25 1.134 2.643.527 1.657.974 2.567 1.291 2.627.266.052.55-.014.631-.148.08-.132-.24-2.044-.712-4.251-.48-2.202-.79-4.122-.703-4.264.15-.243 1.022-.379 1.022-.16 0 .44 1.78 8.368 1.908 8.496.09.09.38.08.647-.024.489-.188.479-1.046-.05-4.75-.126-.875-.06-1.127.29-1.127.339 0 .498.503.642 2.022.308 3.22.44 3.667 1.078 3.667.543 0 .575-.264.575-4.663 0-4.28.044-4.654.523-4.563.469.09.535.595.609 4.663.075 4.196.125 4.563.63 4.563.44 0 .587-.315.739-1.573.104-.864.19-2.144.191-2.842 0-.948.12-1.274.465-1.274.4 0 .434.408.254 3.024-.2 2.868-.18 3.02.36 2.914.472-.09.724-.824 1.472-4.291.71-3.287 1.014-4.207 1.421-4.285.707-.136.673.549-.231 4.81-.898 4.227-.892 4.116-.16 4.116.48 0 .743-.483 1.385-2.55.743-2.382 1.148-3.113 1.513-2.748.084.084-.2 1.266-.63 2.63-.43 1.36-.715 2.654-.631 2.873.403 1.042 1.098.144 2.754-3.553.978-2.167 1.937-3.998 2.14-4.063.882-.296.593 1.01-1.006 4.562-1.397 3.1-1.637 3.853-1.293 4.072.758.493 1.157.152 2.443-2.102 1.161-2.035 2.02-2.948 2.02-2.147 0 .173-.613 1.351-1.362 2.615-1.037 1.756-1.269 2.363-.974 2.554.587.37 1.354.3 1.523-.14.32-.838 4.475-6.347 4.85-6.434 1.025-.24.605.798-1.516 3.748-2.649 3.673-2.849 4.132-1.916 4.427.522.168.842-.02 1.596-.944 1.968-2.411 2.795-3.198 3-2.862.112.18-.51 1.177-1.39 2.215-2.117 2.501-2.14 2.55-1.418 2.934.545.292.988-.02 3.912-2.754 1.812-1.697 3.425-3.128 3.583-3.184.157-.055.375.124.479.396.14.359-.773 1.417-3.37 3.902-1.955 1.876-3.712 3.413-3.901 3.423-.192.008-.89-.44-1.553-.992-1.757-1.471-6.272-3.709-8.948-4.441-3.194-.87-10.304-.938-13.405-.124-2.769.727-6.637 2.543-8.988 4.22-1.038.744-2.026 1.353-2.188 1.353-.16 0-1.94-1.585-3.952-3.523zm4.744-17.36c-.81-.945-.838-1.193-.213-1.985.758-.968 1.467-.998 2.315-.092.822.874.819 1.144-.04 1.95-.838.787-1.457.827-2.06.128zm-7.349-1.023c-.698-.16-1.273-.395-1.273-.531 0-.14.844-.303 1.876-.37 2.371-.149 3.998-.977 5.16-2.62.852-1.21.87-1.291.349-1.67-.719-.526-.555-1.761.25-1.88 1.746-.26 1.927-.386 2.28-1.568.2-.658.46-1.193.59-1.193.13 0 .39.774.586 1.722.44 2.136.994 3.246 1.857 3.705.798.425 7.153.413 11.303-.028a75.897 75.897 0 0 1 3.367-.305c.818-.008.619-.87-.255-1.088-.43-.108-2.555-.04-4.717.16-2.926.259-4.331.265-5.489.02-1.93-.42-2.315-.823-1.876-1.98.693-1.843 3.281-3.783 6.068-4.551 1.074-.294 1.137-.276 1.048.323-.07.479-.62.848-2.192 1.483-1.154.469-2.5 1.184-2.994 1.59-.884.733-.888.75-.3 1.218.526.42 1.306.453 6.039.276 5.253-.196 5.457-.18 6.061.423a2.046 2.046 0 0 1-.063 2.964c-.563.529-1.394.728-4.563 1.098a78.223 78.223 0 0 1-7.473.455c-4.421 0-5.216-.355-6.042-2.679-.3-.832-.63-1.513-.743-1.513-.469 0-1.736 1.888-2.195 3.274-.565 1.704-1.73 2.842-3.385 3.301-1.278.353-1.547.351-3.282-.04zm37.8-1.67a26.65 26.65 0 0 1-.842-1.086c-.34-.474-.511-.505-1.066-.21-.95.507-3.154.3-3.27-.315-.12-.64 1.244-2.232 2.695-3.146.639-.403 1.31-1.064 1.493-1.471.184-.407.435-.739.559-.739.124 0 .267 1.15.325 2.555.112 2.755.324 3.122 1.805 3.13.519 0 1.028-.284 1.44-.81.57-.725.616-1.044.44-2.955-.2-2.09-.03-3.417.425-3.417.124 0 .38 1.164.569 2.585.395 2.93.83 3.793 2.156 4.256 1.327.459 1.397-.026.455-3.12-.723-2.375-.813-4.02-.22-4.02.124 0 .675 1.467 1.23 3.26.882 2.874.958 3.385.654 4.315-.539 1.636-2.14 1.916-3.786.658l-.978-.746-.898.898c-1.038 1.038-2.487 1.206-3.188.375zm-1.986-2.66c.898-.179 1.317-1.037.693-1.424-.32-.2-2.15.914-2.15 1.309 0 .353.194.37 1.457.116zm13.39-.892c-.11-1.467-.344-3.964-.516-5.548-.26-2.388-.24-3.028.12-3.713.42-.798.447-.726.804 2.122.44 3.473.48 8.573.076 9.293-.2.36-.34-.25-.483-2.156zm-124.458 1.152c-.451-1.163-.108-3.17.808-4.734.747-1.278.759-1.37.283-2.096-.275-.42-.459-1.124-.407-1.563.084-.728.274-.567 2.148 1.836 2.275 2.914 3.154 3.473 4.287 2.735.859-.563 1.889-2.166 1.89-2.93 0-.3-.644-1.242-1.437-2.096-2.744-2.978-3.353-3.816-3.353-4.615 0-.718.286-.513 2.954 2.106 2.864 2.814 2.988 2.9 4.322 2.9 1.037 0 1.576-.18 2.215-.744l.838-.747-1.217-1.126a93.756 93.756 0 0 0-2.914-2.562c-1.098-.93-1.787-1.773-1.952-2.396-.14-.528-.144-1.004-.008-1.057.26-.106 3.253 2.409 5.854 4.918 1.421 1.369 1.585 1.656 1.585 2.794 0 .99-.186 1.447-.855 2.116-.986.988-2.642 1.393-3.892.958l-.872-.304-.14 1.637c-.253 3.094-2.894 4.525-5.253 2.846l-.964-.686v.712c0 .988-2.172 2.92-3.284 2.92-.18 0-.467-.37-.638-.824zm2.103-2.645c1.006-.846 1.146-1.36.511-1.888-.323-.267-.519-.18-.906.415-.698 1.066-1.118 2.248-.794 2.248.148 0 .684-.35 1.19-.775zm102.87-.798c-.32-2.345-.57-4.838-.554-5.539.02-1.052-.071-1.271-.534-1.271-.783 0-.795-2.096-.014-2.799.686-.618 1.429-.638 1.66-.033.2.522-.499.906-1.038.572-.215-.133-.3-.064-.22.186.077.22.6.519 1.164.669l1.024.263-.718.583-.719.579.5 3.06c.514 3.21.63 4.62.544 6.726-.1 2.411-.519 1.258-1.098-2.994zm89 2.321c-1.397-.934-1.956-1.485-1.836-1.796.2-.523.12-.499 2.056-.585.822-.04 1.982-.227 2.579-.425.988-.327 1.097-.479 1.271-1.736.104-.759.19-2.75.19-4.426 0-2.774-.066-3.133-.749-4.057-.912-1.238-.954-2.356-.128-3.403.887-1.124 1.401-.987 1.803.485.385 1.407.479 8.628.14 10.626-.16.93-.12 1.274.153 1.274.579 0 4.89-4.523 5.816-6.108.719-1.222 2.068-2.256 2.45-1.876.249.251-.64 2.894-.979 2.894-.191 0-1.34 1.028-2.554 2.285-1.214 1.258-2.887 2.727-3.721 3.268-1.212.782-1.597 1.237-1.896 2.241-.391 1.311-1.513 2.687-2.192 2.687-.215 0-1.297-.607-2.4-1.348zm3.48-.922c.346-.91.195-1.078-.795-.864-1.282.28-1.381.407-.69.912.758.555 1.257.54 1.482-.048zm-18.76-.032c-1.807-.479-2.175-.878-1.045-1.137.818-.188 4.683.774 4.79 1.193.12.475-1.864.445-3.744-.056zm4.226-2.032c-.08-.08-.868-.327-1.756-.554-1.625-.416-2.385-1.102-1.224-1.102.42 0 .625-.192.625-.579 0-.87.825-1.517 1.93-1.517 1.088 0 1.827.639 1.557 1.343-.227.587-1.092.591-1.092.004 0-.26-.27-.449-.63-.449-.451 0-.58.134-.45.473.1.26.18.52.18.575 0 .056.473.393 1.05.749.579.359.974.772.878.922-.175.29-.834.371-1.072.133zm-104.03-2.714c1.138-1.004 1.158-1.052.643-1.623-.66-.726-.424-1.95.463-2.425 1.018-.543 1.469-.14 1.469 1.297 0 1.458-.296 1.969-1.777 3.054-1.573 1.148-2.175.918-.798-.305zm1.976-2.515c0-.41-.527-.679-.719-.365-.18.29.08.644.47.644.14 0 .249-.127.249-.279zm28.794 2.764a37.927 37.927 0 0 1 1.098-.872c.05-.036-.128-.405-.4-.824-.588-.892-.383-1.842.503-2.315.885-.474 1.368.165 1.491 1.97.088 1.293.02 1.507-.499 1.608-.327.064-.918.37-1.31.679-.394.31-.979.563-1.298.563-.473 0-.395-.15.415-.809zm2.044-2.467c0-.409-.53-.674-.719-.367-.18.29.08.647.47.647.14 0 .249-.128.249-.28zm3.145.58c-.259-.823.084-1.326.61-.887.482.395 1.037.14 1.037-.479 0-.24.134-.431.3-.431.163 0 .299.2.299.449 0 .247.134.449.3.449.163 0 .299-.26.299-.579 0-.918.559-1.028.778-.16.232.93-.183 1.41-1.647 1.897-1.417.473-1.756.427-1.976-.26zm69.309-.408c0-.06.523-1.237 1.162-2.62a284.768 284.768 0 0 0 2.455-5.506c1.257-2.914 2.93-5.213 3.197-4.405.072.21-.006.547-.167.749-.16.2-.859 1.71-1.557 3.357-2.366 5.609-4.024 8.533-4.845 8.533-.133 0-.245-.05-.245-.108zm-101.426-.866c.15-.475 4.7-2.739 4.97-2.47.264.26-.613.899-2.71 1.97-1.865.95-2.446 1.079-2.26.5zm10.41-.467c0-.156.199-.451.448-.655.77-.639.513-.986-.599-.806-1.145.185-1.317-.08-.552-.845.369-.367.77-.443 1.568-.293 1.366.255 1.53.365 1.53 1.008 0 .303-.512.814-1.198 1.202-.659.369-1.198.546-1.198.39zm82.078-2.312c-3.964-1.984-4.784-2.964-4.57-5.455.051-.608-.073-.672-1.314-.672-1.629 0-3.142-.699-3.142-1.45 0-.57 1.228-1.856 2.301-2.407.36-.183 1.058-.335 1.547-.335 1.288 0 1.85-.285 2.156-1.088.148-.389.46-.708.695-.708.347 0 .291.513-.288 2.77-.938 3.667-.928 4.551.08 5.49.97.897 5.914 3.416 6.706 3.416.35 0 .779-.427 1.132-1.121.966-1.907 3.633-8.64 3.633-9.176 0-.553 1.281-1.976 1.782-1.976.174 0 .314.573.314 1.277 0 .903-.16 1.372-.54 1.61-.299.185-1.34 2.267-2.32 4.624-1.94 4.67-3.294 6.56-4.7 6.56-.418 0-1.983-.61-3.472-1.357zm-4.118-8.097c.328-.859.192-1.024-.842-1.024-1.301 0-1.972.26-1.972.758 0 .809 2.515 1.048 2.814.266zm-57.15 8.862c-.23-.371.826-1.034 3.119-1.968 2.122-.858 2.587-.809 1.25.144-1.352.958-4.176 2.135-4.372 1.82zm8.528-.06c0-.42.93-1.114 1.297-.972.212.08.755-.27 1.208-.779.453-.509 1.052-.882 1.331-.83.787.15.799 1.397.016 2.23-.588.626-.918.718-2.269.644-.872-.048-1.583-.18-1.583-.291zm3.593-1.33c0-.399-.08-.419-.45-.113-.247.205-.448.423-.448.485s.2.114.449.114c.25 0 .449-.22.449-.485zm-107.212.41c-.427-.535-2.332-2.675-4.232-4.757-2.135-2.339-3.597-4.211-3.82-4.89-.2-.603-.311-1.15-.248-1.213.16-.16 7.665 8.004 8.527 9.275 1.577 2.321 1.391 3.613-.227 1.58zm7.604.251c-1.41-.638-2.562-2.569-2.73-4.578-.1-1.198-.04-1.611.203-1.462.188.116.34.48.34.807 0 .83.838 2.411 1.605 3.03 1.48 1.193 4.69.231 6-1.797 1.365-2.115 1.42-1.96-2.695-7.445-2.082-2.774-3.952-5.183-4.152-5.349-.609-.499-1.064-1.577-.878-2.066.156-.399.335-.373 1.343.2.693.4 1.168.894 1.17 1.217 0 .531 2.13 3.673 5.106 7.537 1.908 2.483 2.08 2.874 2.08 4.725 0 1.313-.164 1.848-.87 2.82-1.633 2.256-4.476 3.285-6.522 2.36zm8.89-.13c0-.14.573-.508 1.272-.818 1.689-.75 4.018-2.94 4.383-4.121.435-1.41.719-3.49.47-3.49-.12 0-.731.154-1.362.344-.958.287-1.264.26-1.904-.16-.645-.419-.763-.722-.763-1.956 0-2.69 1.607-3.499 3.334-1.677.39.41.95.747 1.243.749 1.507.016 4.405-2.361 4.405-3.609 0-.32.136-.579.3-.579.165 0 .299.404.299.899 0 .69.136.898.579.898.904 0 2.195-1.292 2.579-2.579l.347-1.164.335.825c.35.854 1.266 1.087 2.13.539.355-.22.37-.42.08-1.058-.48-1.048-.453-1.952.054-1.952.984 0 1.604 3.652.788 4.638-.236.28-.89.451-1.733.451-1.153 0-1.505.154-2.37 1.046-.7.719-1.394 1.108-2.228 1.238-.667.11-1.571.499-2.01.868-.44.367-1.292.878-1.896 1.128l-1.098.459.032 2.345c.034 2.914-.5 4.266-2.12 5.337-1.61 1.066-5.146 2.024-5.146 1.398zm4.527-10.375c.1-.413-.93-.572-1.297-.203-.168.166-.22.439-.11.613.22.359 1.298.04 1.407-.41zm61.61 9.186c.42-.782 4.222-2.216 4.222-1.593 0 .29-2.455 1.557-3.842 1.976-.631.196-.667.156-.38-.385zm51.078-.699c-.66-.16-1.521-.355-1.917-.439-.65-.133-.678-.195-.26-.609.414-.415.694-.413 2.795.02 2.575.535 2.865.675 2.216 1.086-.53.336-1.238.32-2.834-.06zm-154.222-1.012c-.579-.878-.36-1.311.353-.718.42.347.547.331.867-.106.207-.283.31-.85.231-1.265-.12-.645-.04-.739.565-.673.639.07.703-.03.639-.97l-.072-1.048.593.707c.824.972.762 2.016-.15 2.614-.411.268-.748.665-.748.883 0 .519-.833 1.333-1.362 1.333-.231 0-.644-.34-.918-.759zm211.754-1.437c-2.096-.664-2.585-1.177-1.274-1.341.882-.11 4.966 1.058 4.966 1.421 0 .286-.758.633-1.297.593-.192-.014-1.27-.32-2.395-.675zm-55.964-.425c-1.824-.469-2.167-.848-1.024-1.138.465-.115.685-.379.671-.818-.044-1.277 2.858-1.846 3.32-.649.09.244-.009.655-.22.913-.351.419-.443.395-.892-.2-.28-.37-.655-.57-.845-.455-.559.347.18 1.371 1.344 1.856 1.101.46 1.117 1.038.02.972-.36-.02-1.43-.24-2.376-.485zm-157.706-1.76c0-.431.503-1.717 1.118-2.855.972-1.796 1.165-2.006 1.48-1.572.304.413.16.906-.818 2.854-1.23 2.445-1.78 2.93-1.78 1.573zm58.382-.853c0-.08.649-.475 1.441-.878 1.9-.962 3.43-2.7 4.212-4.79.97-2.591.882-2.968-1.012-4.367-1.224-.905-1.647-1.408-1.647-1.956 0-.873.45-.933 1.551-.206 1.765 1.164 2.64 2.982 2.64 5.479 0 2.978-1.297 5.164-3.742 6.295-1.077.5-3.443.789-3.443.423zm124.597-1.576c.384-.62.765-1.797.849-2.621.128-1.27.251-1.511.822-1.593.575-.08.675.04.675.832 0 1.777-1.589 4.503-2.621 4.503-.315 0-.243-.287.274-1.121zm-22.454-.31a902.961 902.961 0 0 0 3.822-9.074c.982-2.389 2.715-4.55 2.715-3.383 0 .328-.112.725-.248.879-.14.16-.898 1.902-1.69 3.878-1.771 4.407-2.731 6.379-3.537 7.261-.593.645-1.272.926-1.064.44zm-8.882-1.756c-.823-.252-1.597-.551-1.717-.667-.383-.367.673-1.537 1.385-1.537.375 0 1.318-.419 2.096-.938 1.64-1.086 1.637-.904.12-5.798-.835-2.695-1.074-3.13-2.38-4.342-1.636-1.52-1.892-2.684-.868-3.932.58-.702.585-.704 1.038-.11 1.226 1.61 2.93 6.028 4.08 10.58.28 1.107.391 1.237.782.913.998-.828 3.402-6.606 3.402-8.18 0-.432.331-.985.824-1.376l.822-.647.092 1.577c.052.862-.032 1.65-.187 1.748-.154.1-.887 1.457-1.625 3.022-.739 1.565-1.837 3.517-2.431 4.342-.907 1.247-1.086 1.744-1.086 3.001 0 2.763-1.058 3.334-4.341 2.34zm3.445-2.052c0-.894-.18-.918-1.304-.18-.89.585-.702.859.631.904.525.02.673-.14.673-.724zm-15.974-6.952a300.122 300.122 0 0 0-.385-6.82c-.16-2.104-.108-2.483.409-3.122l.589-.723.39 5.739c.4 5.768.23 9.018-.478 9.247-.22.072-.391-1.331-.525-4.32zm34.536 3.868c0-.705.89-.958 3.354-.958 2.604 0 2.974.14 2.275.838-.403.404-5.629.515-5.629.12zm16.092-.28c-1.254-.13-1.437-.488-.5-.991.584-.31 2.262-.234 4.556.207.678.13.772.24.487.583-.34.411-1.877.48-4.543.2zm-59.98-.49c-.508-.23-1.277-.87-1.716-1.425l-.788-1.008-.475.678c-.966 1.371-3.521 2.022-4.95 1.258-.679-.366-1.477-1.805-1.477-2.675 0-.595-.04-.599-.885-.168-1.652.859-4.207.44-4.207-.686 0-.964 1.597-2.447 3.439-3.188 1.469-.595 1.832-.882 2.02-1.6.22-.845 1.004-1.777 1.271-1.51.07.07.02 1.404-.104 2.962-.13 1.557-.147 3.17-.044 3.581.276 1.074 1.517 1.603 2.883 1.228 2.036-.563 2.211-.928 2.211-4.551 0-3.214.346-4.76 1.064-4.76.272 0 .383.974.413 3.632.05 4.044.36 5.046 1.807 5.793.483.251 1.289.455 1.79.455 1.098 0 1.102-.026.423-4.392-.459-2.924-.459-3.223 0-4.185.589-1.23 1.09-1.07 1.09.35 0 .558.22 2.39.483 4.067.527 3.33.34 4.79-.743 5.768-.778.705-2.395.879-3.508.376zm-9.46-5.8c.12-.815-.396-.869-1.97-.212-.883.369-1.018.523-.663.752.243.156.918.252 1.491.208.83-.06 1.068-.22 1.144-.75zm-47.976 5.44a1.93 1.93 0 0 1-.47-1.191c0-.679.079-.71 1.29-.543 1.038.14 1.605.02 2.86-.619.86-.435 1.638-.984 1.73-1.217.09-.234-.188-1.188-.613-2.12-.749-1.627-1.032-3.42-.547-3.42.127 0 .838 1.244 1.573 2.761 1.712 3.533 2.526 4.112 5.05 3.58.923-.19 1.844-.574 2.045-.847.759-1.03 1.89-2.196 2.13-2.196.136 0 .888.5 1.673 1.108 1.223.952 1.686 1.126 3.287 1.23 2.206.14 5.772-.366 7.311-1.035l1.098-.479-.898-.26c-.493-.139-1.876-.344-3.07-.452-1.194-.108-2.17-.308-2.17-.44 0-1.051.923-1.927 3.278-3.117 2.754-1.387 3.652-2.196 4.918-4.411 1.343-2.363 2.714-2.252 3.848.305.48 1.078.515 1.45.228 2.316-.3.918-.46 1.038-1.378 1.038-.568 0-1.489-.19-2.05-.424-.934-.39-1.051-.379-1.556.188-.304.34-1.202 1.052-1.996 1.59l-1.451.979 1.573.34c.864.183 3.233.49 5.265.682 2.036.191 3.696.465 3.696.61 0 .146-.14.523-.309.843-.251.467-.639.579-2.022.583-1.152 0-2.543.305-4.255.926-5.114 1.85-6.308 2.124-9.501 2.17-2.296.033-3.106.147-3.226.458-.191.5-2.147.256-3.5-.445-.811-.419-.943-.419-1.426.02-1.4 1.268-4.06 1.138-5.373-.26l-.679-.724-1.105 1.104c-1.621 1.62-4.306 2.32-5.258 1.365zm15.705-3.704c-.455-.848-.789-.968-1.228-.44-.32.388-.315.52.04.74.24.15.669.275.964.279.44 0 .48-.1.22-.58zm17.385-8.649c-.573-1.07-1.118-1.317-1.671-.758-.479.479-.467.53.194.898.385.214.938.393 1.237.4.425.007.473-.1.24-.54zm-80.239 8.48.934-1.654-.93-.323c-.818-.285-.93-.459-.93-1.447 0-1.198.794-2.247 1.411-1.866.194.12.705.738 1.138 1.377l.79 1.164-.814 1.527c-.858 1.608-1.862 2.874-2.28 2.874-.14 0 .17-.745.683-1.65zm.87-3.422c0-.407-.545-.687-.904-.465-.165.1-.225.311-.13.465.224.365 1.034.36 1.034-.004zm23.054.535c1.078-1.489 1.11-1.816.224-2.206-.879-.385-1.018-1.636-.286-2.538.767-.947 1.393-.64 2.2 1.077.61 1.298.622 1.427.16 1.765-.28.2-.504.51-.504.686 0 .44-1.936 2.46-2.355 2.46-.19 0 .06-.56.559-1.242zm1.148-3.549a.46.46 0 0 0-.4-.3.456.456 0 0 0-.399.3c-.054.164.126.3.4.3.273 0 .455-.134.399-.3zm8.632 4.59c-.3-.295-.24-1.895.066-1.895.144 0 .335.27.42.598.219.839 1.077.456 1.556-.692.371-.878.387-.884.719-.266.439.813 1.231.54 1.231-.419 0-.828.5-.972.67-.195.272 1.245-.81 2.79-1.608 2.295-.16-.096-.613.04-1.01.3-.752.492-1.696.618-2.044.275zm-1.097-2.414c0-.29.91-1.381 2.02-2.431 1.876-1.769 2.03-1.857 2.13-1.202.079.555-.31 1.084-1.793 2.43-2.036 1.847-2.36 2.011-2.36 1.2zm59.28-3.633c0-.152.573-.503 1.274-.782 1.906-.763 2.125-1.022 1.377-1.63-.819-.658-.533-1.662.645-2.269 1.397-.722 1.796-.345 1.796 1.697 0 .988-.12 1.707-.272 1.617-.147-.096-.924.155-1.722.553-1.67.834-3.094 1.207-3.094.812zm4.192-3.483a.45.45 0 0 0-.45-.449c-.466 0-.594.353-.249.699.345.343.699.22.699-.25zm40.718 2.774a6.51 6.51 0 0 0-1.797-.339c-.852-.032-1.067-.17-1.145-.73-.094-.679.389-1.557.854-1.557.132 0 .17.253.088.565-.232.886.475 1.063 1.429.359.838-.619.872-.619.872-.066 0 .59.964 1.19 1.128.699.05-.152.285-.53.519-.839.409-.539.431-.53.439.208.01.698-.491 1.387-1.337 1.836-.166.09-.64.026-1.048-.14zm-89.648-1.393c-.092-.145.036-.43.28-.634.664-.553.567-1.497-.152-1.497-.812 0-.755-.416.12-.883.99-.53 1.457-.15 1.317 1.068-.132 1.13-.13 1.134.679.699.473-.252.549-.515.403-1.421-.146-.918-.046-1.254.583-1.936.878-.945 2.16-1.098 2.415-.284.213.659-.888 3.832-1.294 3.737-.163-.04-1.012.265-1.886.67-1.71.799-2.207.898-2.463.48zm4.565-3.573c.06-.419-.06-.652-.343-.652-.493 0-.779.559-.575 1.137.203.58.81.26.918-.487zm6.401 3.48c-.435-.434-.479-2.036-.06-2.036.166 0 .3.193.3.43 0 .24.14.52.32.63.454.283 1.476-.74 1.484-1.478.006-.606.024-.602.559.088.639.833 1.23.623 1.23-.433 0-.838.499-.992.67-.208.274 1.25-.778 2.695-1.762 2.42-.14-.04-.687.16-1.214.439-1.142.607-1.078.599-1.527.15zm42.343-1.591c-.579-.58-.603-.87-.13-1.737l.351-.655.18.727c.244 1.014.794 1.098 1.563.232l.655-.739.513.639.514.634.376-.822c.459-1.004.878-1.066.878-.132 0 1.214-.71 1.837-2.14 1.87-.718.02-1.52.13-1.788.25-.296.134-.679.028-.974-.27zm-34.02-.25c0-.585.799-1.201 2.95-2.275 3.282-1.645 2.895-.236-.425 1.545-2.315 1.245-2.525 1.305-2.525.73zm68.43-1.07c.506-.527 1.098-.678 3.228-.828 2.296-.16 2.589-.128 2.43.287-.25.655-.62.759-3.633.984l-2.64.2.62-.639zm-58.665-1.157c.347-.28 1.018-.803 1.497-1.158l.864-.639-.675-.642c-.83-.79-.838-1.046-.053-2.144.387-.545.886-.87 1.337-.87.59 0 .742.19.892 1.123.1.62.23 1.392.293 1.72.088.464-.339.891-1.864 1.873-1.99 1.278-3.597 1.797-2.291.739zm3.11-3.807a.451.451 0 0 0-.45-.449c-.467 0-.592.356-.25.699.344.345.7.22.7-.25zm-21.557 3.673c0-.228.167-.63.375-.894.411-.53 4.42-3.024 4.587-2.855.39.388-.455 1.53-1.627 2.202-.758.44-1.826 1.058-2.36 1.381-.75.451-.973.49-.973.168zm42.514-1.018c0-.739.918-1.363 3.01-2.062 1.33-.439 2.48-.742 2.555-.667.31.31-.271 1.086-1.022 1.37-1.796.678-4.543 1.5-4.543 1.357z' fill='%23fff'/%3e%3c/svg%3e\"},6772:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 138 92'%3e%3cpath fill='%23fff' d='M0 0h138v92H0z'/%3e%3cpath d='M0 0h138v46H0z'/%3e%3cg transform='translate(69 36)'%3e%3cg id='b'%3e%3cpath id='a' d='M-30 0 0-5.742V5.742z' fill='%23fcd116'/%3e%3cuse xlink:href='%23a' transform='rotate(22.5)'/%3e%3cuse xlink:href='%23a' transform='rotate(45)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(67.5)'/%3e%3cuse xlink:href='%23b' transform='rotate(135)'/%3e%3c/g%3e%3cpath fill='%230072c6' d='M0 36h138v20H0z'/%3e%3cpath d='M0 0v92h138V0L69 92z' fill='%23ce1126'/%3e%3c/svg%3e\"},5897:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3e%3cclipPath id='a'%3e%3cpath d='M0 0v150h700v150H600zm600 0H300v350H0v-50z'/%3e%3c/clipPath%3e%3cpath fill='%23012169' d='M0 0h1200v600H0z'/%3e%3cpath d='m0 0 600 300m0-300L0 300' stroke='%23fff' stroke-width='60'/%3e%3cpath d='m0 0 600 300m0-300L0 300' stroke='%23c8102e' stroke-width='40' clip-path='url(%23a)'/%3e%3cpath d='M300 0v350M0 150h700' stroke='%23fff' stroke-width='100'/%3e%3cpath d='M300 0v350M0 150h700' stroke='%23c8102e' stroke-width='60'/%3e%3cpath d='M0 300h600V0h200v400H0z' fill='%23012169'/%3e%3cpath fill='%23cc3' d='M780.583 154.039c0 148.827 11.873 201.675 52.606 242.479 40.734 40.804 56.166 47.231 67.524 53.483 13.101-7.212 28.197-15.134 65.115-52.052 36.513-36.515 54.173-89.15 54.173-246.452-26.56 11.37-39.786 15.117-63.012 15.05-17.202 1.686-43.74-9.337-59.609-16.547-10.37 6.602-25.415 14.476-52.451 15.36-31.225 1.31-41.12-3.735-64.345-11.322z'/%3e%3cpath fill='%23fff' d='M787.775 163.438c0 46.043-2.722 108.794 7.006 145.1 9.77 36.462 12.013 41.803 19.36 54.528l171.206-1.27c10.576-18.319 11.11-29.666 18.953-58.936 7.814-29.165 9.788-94.177 10.016-142.6-17.216 8.725-39.761 14.908-61.643 12.195-17.543-1.275-33.752-5.092-52.627-15.264-16.374 9.353-22.082 13.622-49.119 14.714-21.05.99-38.101 2.615-63.152-8.468z'/%3e%3cpath fill='%239cf' d='M814.51 362.056c12.185 24.448 69.632 71.303 86.433 81.003 19.168-11.067 69.848-57.368 83.973-81.003H814.51z'/%3e%3cpath fill='%23f90' d='M904.221 231.606c5.414 12.14 22.77 25.545 27.541 32.114-6.073 6.57-7.287 5.854-6.49 18.06 10.56-10.535 10.75-11.633 17.542-10.035 14.88 14.155 2.663 44.557-9.634 51.166-12.294 7.051-10.062-.244-28.489 8.593 8.449 6.887 18.237-1.01 26.236 1.1 4.347 4.918-2.066 13.879 1.313 22.318 7.07-.65 6.22-14.256 7.866-19.19 5.164-18.076 36.214-30.683 37.793-47.263 6.546-2.93 13.09-.917 21.05 3.345-3.964-15.534-17.079-15.367-20.594-20.218-8.368-12.19-15.785-26.098-33.657-29.706-13.567-2.739-12.553.824-21.247-4.83-5.414-4.018-21.861-11.618-19.23-5.454z'/%3e%3cpath fill='%23f90' d='M860.839 283.106c8.73-10.234 13.053-31.127 16.917-38.218 8.93 2.05 8.833 3.408 19.78-2.965-14.703-3.981-15.81-3.628-17.501-10.1 6.177-19.155 40.078-23.06 51.953-15.781 12.282 7.068 4.474 8.596 21.278 20 2.44-10.34-9.457-14.901-11.236-22.63 2.53-5.961 13.836-4.741 20.084-11.532-3.905-5.656-16.127 1.416-21.471 2.334-19.177 4.091-45.373-16.193-61.488-9.778-5.776-4.15-6.965-10.606-6.732-19.307-12.554 10.598-6.272 21.575-9.129 26.805-7.397 12.748-16.83 25.497-11.827 42.248 3.798 12.716 6.629 10.197 5.447 20.166-1.198 6.441-.562 23.856 3.925 18.758z'/%3e%3cpath fill='%23f90' d='M931.763 290.302c-13.703-1.828-34.694 5.451-43.059 5.967-2.778-8.347-1.51-8.97-12.893-14.605 4.032 14.055 4.922 14.776-.013 19.504-20.39 4.868-41.432-20.773-41.04-34.226-.009-13.678 5.401-8.097 6.946-27.707-10.543 3.357-8.485 15.424-14.502 20.874-6.66 1.02-11.413-8.837-20.74-10.422-3.058 6.111 9.613 12.426 13.201 16.311 13.592 13.53 8.935 45.397 23.029 55.227-.738 6.86-5.918 11.17-13.85 15.48 16.009 4.76 22.613-6.043 28.785-6.417 15.27-.56 31.594.542 44.043-12.205 9.45-9.676 5.724-10.682 15.285-14.875 6.401-2.355 21.705-11.882 14.808-12.906z'/%3e%3ccircle fill='%23fff' cx='266.239' cy='122.104' r='.806' transform='matrix(3.50845 0 0 3.34488 6.33 -163.011)'/%3e%3ccircle fill='%23fff' cx='266.239' cy='122.104' r='.806' transform='matrix(-1.639 -2.95744 3.10207 -1.56258 914.323 1224.328)'/%3e%3ccircle fill='%23fff' cx='266.239' cy='122.104' r='.806' transform='matrix(-1.80698 2.86712 -3.00733 -1.72273 1749.003 -240.213)'/%3e%3c/svg%3e\"},1648:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 980 700'%3e%3cpath d='M980 0H0v700h980z' fill='red'/%3e%3cpath d='M516.51 528.944c-6.15-5.332-13.605-16.13-13.5-26.538.55-7.761 5.873-12.27 9.312-2.796 4.862 10.457 15.29 27.749 29.66 17.605 6.278-4.608 6.18-11.392-2.428-10.614-10.63-.728-17.16-6.577-21.917-21.636-.865-8.282 2.58-8.075 7.387-2.747 6.18 7.09 18.478 17.806 32.046 12.063 7.54-3.16 9.668-9.68-1.723-11.285-10.784.157-19.587-6.834-28.35-17.498-4.805-5.9 2.282-11.856 6.537-6.834 3.795 3.26 9.11 9.266 13.665 10.094 5.267 1.034 11.796.52 19.03-3.31 7.798-6.527 5.266-11.236-4.2-12.32-7.338.364-11.335 3.153-20.8-3.16-17.014-11.5-30.54-26.865-32.653-45.347-1.388-12.156 5.148-15.837 10.582-14.438 14.78 3.802 24.449 31.422 34.675 46.595 3.348 4.373 6.424 4.444 8.6 3.096 4.102-3.517 7.378-6.408 11.48-10.34 0 0 30.085 5.406 46.468 10.746l-18.242 6.483c-6.907-3.814-15.243.298-15.243 6.915-6.536 4.52-6.01 9.819-3.19 14.933.86-3.561 1.594-8.186 6.757-8.801 7.369 3.048 15.955-1.302 15.955-7.057l21.519-8.458 21.74 12.308c0 8.32 7.883 10.956 16.085 8.71 3.865 2.4 6.35 6.564 7.659 11.017 2.42-6.422 1.915-10.956-1.875-14.107 2.175-8.303-9.46-16.287-18.467-10.97l-15.64-8.98 26.77-.75c3.107 5.5 14.337 5.803 17.613 0 2.8-.767 5.166-1.255 10.625 2.803-1.72-6.566-5.068-9.373-10.09-9.373-3.816-6.761-17.626-6.73-19.62.882l-27.881.775 16.543-11.778c6.175 3.646 14.84-.407 16.575-7.03 2.462-2.927 5.498-4.302 11.474-2.316-3.08-5.455-7.42-7.083-15.258-3.38-7.15-5.418-16.574 1.153-15.144 6.608l-22.01 14.975c-15.976-4.767-44.91-12.19-44.91-12.19 3.445-3.624 6.94-6.991 10.379-10.665 1.242-2.152-.656-4.658-3.293-5.18-25.816-5.328-40.597-15.735-49.553-42.186-3.746-11.078 4.353-14.388 7.136-7.612 3.85 9.424 8.098 19.724 19.69 27.7 3.998 2.796 15.899.513 8.86-6.164-7.29-6.006-10.428-8.588-14.02-23.19 0-7.398 7.54-10.715 11.746-3.624 4.5 14.545 4.96 20.808 13.107 30.18 6.173 7.092 14.223 11.857 18.22 11.75 7.192-.1 14.432-7.87 4.813-13.511-14.125-5.642-19.287-13.353-21.366-20.708-2.274-12.833.21-19.046 7.952-12.733 10.98 12.476 31.94 35.717 42.92 46.538 12.305 9.424 26.423 9.73 37.66.157 6.432-7.404 4.15-15.372-5.921-13.667-22.726 1.918-39.935-9.367-58.817-39.862-3.697-6.884-4.71-16.771 3.445-9.416 9.41 12.733 23.13 23.554 35.89 28.212 12.806 4.602 23.38 2.06 27.481-1.968 4.943-4.942 3.643-17.392-4.91-14.39-7.038 2.484-16.957 3.104-27.28-.883-10.331-4.038-21.06-12.733-32.45-27.485-3.9-8.332-2.63-15.373 5.265-11.08 18.68 15.845 42.775 28.678 55.072 20.967 9.062-5.643 9.215-20.138-2.274-19.204-23.137 3.153-31.891-1.968-54.115-21.585-5.058-3.781-4.708-13.361 3.34-7.248 18.68 12.063 44.19 16.77 54.214 10.458 9.013-5.643 7.694-22.885-7.491-16.778-12.151 7.404-25.565 7.197-52.442-12.006-6.78-5.642-1.723-12.997 3.844-9.837 21.617 12.32 53.104 17.598 61.3-7.454 3.188-9.574-2.58-15.166-11.035-8.54-18.576 17.185-39.635 8.746-51.423.1-3.376-1.99-9.57-12.062 1.31-10.193 28.147 6.42 55.986.828 61.05-19.103 2.937-6.47-2.84-17.912-13.113-8.332-13.512 13.354-27.84 13.817-45.857 13.717-9.166-1.918-9.263-12.012-1.57-13.51 14.223.306 28.244-5.907 39.482-12.22 10.986-6.313 20.096-15.166 22.984-27.435 1.77-10.972-8.81-22.62-15.186-10.972-9.417 17.028-30.273 33.078-53.46 35.975-1.207-2.02-4.248-7.198-7.994-5.743-6.808 2.64-14.92 6.172-23.272 10.139-18.004 8.549-25.507 12.669-23.345 27.44 2.257 15.413-9.626 25.153-19.44 22.463-8.56-2.304-13.282-10.036-11.748-23.447 1.229-10.686 11.957-23.612 24.046-30.39 7.826-4.38 19.642-6.776 33.865-9.936 8.656-1.705 13.065-5.072 13.568-8.596 0 0-5.917 4.33-15.388 3.68-4.478-.32-7.478-2.29-8.608-4.3 3.293-.67 9.264.107 14.628.107 7.135-.057 23.702-1.655 28.097-11.7 1.367-6.626-2.987-7.817-7.038-3.573-4.353 4.587-6.146 8.71-14.88 10.25-5.314.935-10.63 2.02-17.466.365 3.85-4.573 9.968-9.252 15.186-8.39 1.716.286 3.997 1.87 5.824 4.716 1.116-7.248-.865-15.43-20.25-12.013.308-5.485-11.238-7.868-18.17-7.761-3.948.1-11.998 2.433-17.816 5.222-9.214 2.853-18.324 4.922-29.06 5.7 6.23 5.328 7.395 5.642 13.616 10.143-9.41 3.517-16.7 10.765-19.991 15.53 0 0 10.986-.307 13.77.934-11.496 3.36-16.659 5.379-22.733 11.592 2.127.364 5.314.984 6.682 1.505 1.423.514 1.053 1.448-.098 2.326-2.476 1.89-12.708 13.774-15.694 16.62-2.986-2.846-13.218-14.73-15.694-16.62-1.151-.878-1.521-1.812-.098-2.326 1.367-.52 4.555-1.141 6.682-1.505-6.075-6.213-11.237-8.232-22.733-11.592 2.784-1.241 13.77-.934 13.77-.934-3.293-4.765-10.582-12.013-19.992-15.53 6.222-4.501 7.387-4.815 13.616-10.144-10.735-.777-19.845-2.846-29.06-5.7-5.817-2.788-13.867-5.121-17.815-5.221-6.933-.107-18.478 2.276-18.17 7.76-19.385-3.416-21.366 4.766-20.25 12.014 1.827-2.846 4.108-4.43 5.824-4.715 5.218-.863 11.335 3.816 15.186 8.389-6.836 1.655-12.152.57-17.467-.364-8.733-1.54-10.526-5.664-14.88-10.25-4.051-4.245-8.404-3.054-7.037 3.573 4.395 10.044 20.96 11.642 28.097 11.699 5.364 0 11.335-.778 14.628-.107-1.13 2.012-4.13 3.98-8.608 4.3-9.472.65-15.388-3.68-15.388-3.68.503 3.524 4.91 6.89 13.568 8.596 14.223 3.16 26.039 5.557 33.865 9.937 12.089 6.777 22.817 19.703 24.045 30.389 1.534 13.41-3.188 21.143-11.747 23.447-9.814 2.69-21.697-7.05-19.44-22.463 2.162-14.771-5.341-18.891-23.345-27.44-8.352-3.967-16.464-7.5-23.272-10.14-3.746-1.454-6.787 3.725-7.994 5.744-23.187-2.897-44.043-18.947-53.46-35.975-6.376-11.648-16.957 0-15.186 10.972 2.888 12.27 11.998 21.122 22.984 27.435 11.238 6.313 25.259 12.526 39.482 12.22 7.693 1.498 7.596 11.592-1.57 13.51-18.018.1-32.345-.363-45.857-13.717-10.274-9.58-16.05 1.862-13.113 8.332 5.064 19.93 32.903 25.523 61.049 19.103 10.88-1.87 4.687 8.204 1.31 10.194-11.787 8.645-32.846 17.084-51.422-.1-8.454-6.627-14.224-1.035-11.035 8.539 8.196 25.052 39.683 19.774 61.3 7.454 5.567-3.16 10.624 4.195 3.844 9.837-26.877 19.203-40.29 19.41-52.442 12.006-15.185-6.107-16.504 11.135-7.491 16.778 10.023 6.313 35.533 1.605 54.213-10.458 8.05-6.113 8.398 3.467 3.34 7.248-22.223 19.617-30.977 24.738-54.114 21.585-11.49-.934-11.336 13.56-2.274 19.204 12.297 7.71 36.39-5.122 55.07-20.966 7.897-4.294 9.166 2.747 5.267 11.079-11.39 14.752-22.12 23.447-32.45 27.485-10.323 3.987-20.242 3.367-27.28.884-8.553-3.003-9.853 9.447-4.911 14.389 4.103 4.028 14.676 6.57 27.483 1.968 12.758-4.658 26.479-15.48 35.889-28.212 8.154-7.355 7.142 2.532 3.445 9.416-18.882 30.495-36.09 41.78-58.817 39.862-10.072-1.705-12.353 6.263-5.922 13.667 11.238 9.573 25.356 9.267 37.66-.157 10.98-10.821 31.94-34.062 42.92-46.538 7.743-6.313 10.227-.1 7.953 12.733-2.08 7.355-7.24 15.066-21.366 20.708-9.62 5.643-2.38 13.41 4.813 13.51 3.997.108 12.047-4.657 18.22-11.748 8.147-9.373 8.608-15.636 13.107-30.181 4.206-7.091 11.746-3.774 11.746 3.623-3.592 14.603-6.731 17.185-14.02 23.19-7.04 6.678 4.862 8.96 8.859 6.165 11.593-7.976 15.84-18.276 19.69-27.7 2.784-6.776 10.883-3.466 7.137 7.612-8.956 26.45-23.737 36.858-49.553 42.187-2.637.52-4.535 3.027-3.294 5.179 3.44 3.674 6.935 7.04 10.38 10.665 0 0-28.935 7.423-44.911 12.19l-22.01-14.975c1.43-5.455-7.993-12.026-15.144-6.61-7.839-3.701-12.178-2.073-15.258 3.382 5.976-1.986 9.012-.611 11.474 2.315 1.735 6.624 10.4 10.677 16.575 7.03l16.543 11.78-27.88-.776c-1.995-7.611-15.805-7.643-19.622-.882-5.02 0-8.37 2.807-10.09 9.373 5.46-4.058 7.827-3.57 10.626-2.803 3.276 5.803 14.506 5.5 17.612 0l26.771.75-15.64 8.98c-9.007-5.317-20.642 2.667-18.467 10.97-3.79 3.15-4.296 7.685-1.875 14.107 1.308-4.453 3.794-8.617 7.66-11.018 8.2 2.247 16.084-.388 16.084-8.71l21.74-12.307 21.52 8.458c0 5.755 8.585 10.105 15.954 7.057 5.163.615 5.897 5.24 6.757 8.8 2.82-5.113 3.346-10.412-3.19-14.932 0-6.617-8.336-10.73-15.243-6.915l-18.242-6.483c16.383-5.34 46.469-10.745 46.469-10.745 4.101 3.93 7.377 6.822 11.48 10.34 2.176 1.347 5.252 1.276 8.6-3.097 10.226-15.173 19.894-42.793 34.675-46.595 5.434-1.4 11.97 2.282 10.582 14.438-2.114 18.482-15.64 33.848-32.652 45.347-9.466 6.313-13.463 3.524-20.801 3.16-9.466 1.084-11.998 5.793-4.2 12.32 7.234 3.83 13.763 4.344 19.03 3.31 4.555-.828 9.87-6.834 13.665-10.094 4.255-5.022 11.342.934 6.536 6.834-8.762 10.664-17.565 17.655-28.35 17.498-11.39 1.605-9.262 8.125-1.722 11.285 13.568 5.743 25.865-4.972 32.046-12.063 4.806-5.328 8.252-5.535 7.387 2.747-4.758 15.059-11.287 20.908-21.917 21.636-8.608-.778-8.706 6.006-2.428 10.614 14.37 10.144 24.798-7.148 29.66-17.605 3.439-9.473 8.76-4.965 9.312 2.796.105 10.408-7.35 21.206-13.5 26.538C457.344 534.278 490 568.18 490 568.18s32.657-33.904 26.509-39.237zm43.763-383.94c-5.083 0-8.223 1.78-8.223 3.94 0 2.194 3.14 3.982 8.223 3.982 5.053 0 8.262-1.95 8.262-4.147 0-2.16-3.21-3.776-8.262-3.776zm-140.544 0c5.083 0 8.223 1.78 8.223 3.94 0 2.194-3.14 3.982-8.223 3.982-5.053 0-8.262-1.95-8.262-4.147 0-2.16 3.21-3.776 8.262-3.776z' fill-rule='evenodd'/%3e%3c/svg%3e\"},9263:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3e%3cpath fill='%23F2A800' d='M0 0h1200v600H0z'/%3e%3cpath fill='%230033A0' d='M0 0h1200v400H0z'/%3e%3cpath fill='%23D90012' d='M0 0h1200v200H0z'/%3e%3c/svg%3e\"},1426:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-27 -14 54 36'%3e%3cpath fill='%23fff' d='M-27-14h54v36h-54z'/%3e%3cpath fill='%23dc171d' d='M-6-14H6v36H-6z'/%3e%3cpath fill='%2300007b' style='fill:%23012a87;fill-opacity:1' d='M-27-2h54v12h-54z'/%3e%3cg id='c' fill='%23fff' transform='scale(1.5)'%3e%3cg id='b'%3e%3cpath id='a' transform='rotate(18 3.157 -.5)' d='M0 0v1h.5z'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(-72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(-144)'/%3e%3c/g%3e%3cg id='d'%3e%3cuse xlink:href='%23c' transform='translate(8 3.314)'/%3e%3cuse xlink:href='%23c' transform='translate(3.314 8)'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='scale(-1 1)'/%3e%3c/svg%3e\"},1195:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath d='M0 0h900v600H0z'/%3e%3cpath fill='%23cc092f' d='M0 0h900v300H0z'/%3e%3cpath d='M390.858 205.797h36.644l11.112-34.537 11.41 34.537h36.64l-29.433 21.926 11.409 35.135-30.026-21.324-29.731 21.324 11.41-35.135z' fill='%23ffcb00' fill-rule='evenodd'/%3e%3cpath d='m524.801 394.706-28.827-22.53c29.127-23.724 48.052-60.064 48.052-100.605 0-61.866-44.144-113.824-102.411-126.137l4.504-21.025c8.11 1.803 17.624 5.217 25.432 7.916l7.51-12.608c8.1 3.9 17.118 7.803 24.621 12.608l-5.703 13.518c7.51 4.808 16.575 12.251 21.616 18.112l11.277-8.809c6.008 6.604 13.218 13.507 18.323 20.721l-10.211 10.512c6.594 9.68 9.143 14.135 14.004 25.287l14.327-3.36c2.706 8.408 6.814 18.702 8.32 27.408l-13.566 5.332c1.62 6.766 3.718 18.584 3.583 28.525-.011.598-.056 1.276-.056 1.878l14.167 2.021c-.6 8.712-.897 18.625-2.704 27.333h-14.714c-2.1 9.005-4.81 20.02-8.11 28.425l12.308 7.213c-3.901 7.805-7.8 17.117-12.908 24.626l-13.514-5.703c-5.11 7.505-10.81 14.71-17.118 21.321l8.706 11.41c-2.398 2.1-4.502 4.205-6.908 6.61m-63.362-2.704 21.772 13.12c-2.03 1.857-8.112 5.006-9.724 5.644l3.56 13.666c-8.407 2.708-17.42 6.608-26.724 8.412l-5.405-13.513c-8.71 1.8-17.416 3-26.427 3l-1.807 14.114c-8.406-.598-18.617 0-27.928-2.102v-14.11c-8.411-1.506-16.519-3.606-24.324-6.312l-6.91 12.322c-7.207-3.01-16.816-6.615-24.628-11.416l5.108-13.514c-6.31-3.307-12.015-7.509-17.42-11.72l13.515-17.118c22.226 17.722 50.153 28.228 80.787 28.228 16.221 0 32.132-2.697 46.555-8.7' fill='%23ffcb00' fill-rule='evenodd'/%3e%3cpath d='M552.192 426.811 408.462 317.43l-1.31 1.866 143.36 109.573-8.509 10.647-139.753-89.64c-37.839-23.726-36.337-42.344-28.528-62.466l6.608-16.217c3.605 21.023 25.223 36.944 47.748 54.658l126.914 97.497zm36.084 32.6a2.23 2.23 0 0 1-2.23-2.238 2.23 2.23 0 0 1 2.23-2.232c1.237 0 2.24 1 2.24 2.232a2.238 2.238 0 0 1-2.24 2.239m-8.59-6.308a2.24 2.24 0 0 1-2.237-2.235 2.236 2.236 0 1 1 2.237 2.235m-8.79-7.006c-1.232 0-2.236-1-2.236-2.231a2.236 2.236 0 0 1 4.47 0c0 1.231-1 2.231-2.234 2.231m29.554 12.4-43.065-33.365-12.514 16.127 37.41 26.235c3.005 2.1 3.3 11.718 14.407 13.222 4.513.596 7.508-2.71 7.508-2.71 4.84-5.892 3.521-14.003-3.746-19.51' fill='%23ffcb00' fill-rule='evenodd'/%3e%3c/svg%3e\"},6448:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.0' width='900' height='600' viewBox='-66.5 0 900 600'%3e%3cdefs%3e%3cclipPath id='d'%3e%3cuse width='400' height='267' xlink:href='%23a'/%3e%3c/clipPath%3e%3cclipPath clipPathUnits='userSpaceOnUse' id='c'%3e%3cpath fill='red' d='M-66.5 0h400v267h-400z'/%3e%3c/clipPath%3e%3cpath d='m146.396 44.921-.624-.267zm17.833 176.42-2.407-1.425-7.133 1.782-6.242-3.92v1.514l-1.516-2.049 1.784-1.782-.268-5.346h2.05l1.25-3.564 1.426-.624-1.16-1.782 1.784-.624-.268-2.673-1.783-.89 2.318-.268-1.426-6.504-3.567-3.564-2.14.89.892 2.941h-7.4l-6.242-2.673-2.407-1.158-11.859-2.673-.892 1.425-4.19.357h-1.16l-1.783 2.94-5.082-3.564-2.675.89.357 2.407-6.598-3.564-.268 2.316-6.508-2.94-.357.267-3.21 1.248-.624-2.406-7.757-3.831-8.292-2.674-1.516-6.86v-1.515l-3.21-5.88 1.427-7.129-2.675-.89-.892-3.03 4.458-.535h-2.05l.267-4.455-6.509 2.05-.267-1.783-.892 3.297-3.567 1.426-2.407-2.317-.892-2.406-.891-4.722 2.05-1.515.892 1.159.624-1.426-1.515-10.692 2.407.534 1.159-11.226.357-.357 2.318-1.425-2.942.267-1.16-2.673 5.35-5.97-4.815-.891-3.566 3.564-1.427-4.099-2.14 2.94-.535-2.049-2.674.891-1.784.892 1.427-5.347-1.16-.623.625-1.515-1.516.356-.267-3.029h5.617l-.268-1.426h-1.783l-3.299-5.702-1.783.624-1.16-2.05-.623 1.782-1.784-1.247 1.784-1.158-2.675-.891.624-1.515-2.14-1.159-.535-4.722-2.14-.624 1.248-.89-2.407-6.238.267-2.049.892-6.237h1.783l-.535 3.831 4.458 6.237 3.21 4.188 6.598 1.782v.267l.892-1.514 3.567 4.187 1.783 2.05.891.89 10.076 4.812 1.783.891.624.535 4.726 5.702 2.675-1.247 19.615-4.455.625-3.564L97 94.55l-.267-1.159.891-.623 4.191-1.515v-4.099l1.427-1.515 1.783-6.86-.892-2.673 4.19-10.069V59.8h2.052l2.407-3.564 2.942-.891.357-3.297 4.102-4.99 1.783.892 8.381-3.03.892-.89 1.783-1.783-.624-2.94h1.783l.892 4.722 9.183 2.139 1.516-1.515.624.267 8.025 1.782.267-.267 4.191-2.406.268 2.673 3.566.357 2.943 2.316.624.624 4.458 3.831 5.35.357 3.299.534 4.101-1.425.357 2.673 1.783 1.158 1.427-2.673h1.783l1.248 6.86 1.427.268-.268 2.406-.267.267h.535l3.566-1.782 3.3-1.158 9.183 3.207 1.783-.534.624 3.207 2.408.357-.624-1.515h2.05l.624 3.297 2.408-2.673 5.617 3.564 1.516 6.504-2.407.624.624 4.99.891 1.514 6.242 15.771-3.3 2.94-.267 3.565-2.675 3.296 2.943 2.05-1.16.89 2.675 2.674 4.102.624 1.248 1.782 1.16 2.316 2.942 1.248 3.566-2.406 2.408.267-2.943 4.188 2.943 7.752-3.567 2.94 1.516 4.722-.892 4.188 1.783 2.406 4.726.891-4.726 6.504.892 1.159 1.16 1.247-2.052 3.208 2.051 1.247-10.432 8.554 2.408 5.97-.625 3.564-3.566 1.158-.892 3.03-4.101 1.782-1.248 3.83-.892 2.05 4.19 2.139-6.24.534 1.515 3.297-3.032 2.94-4.725.891-1.516 2.673 3.566 1.782-6.776 6.238 2.05 3.296-5.349-1.158-5.974 3.564-8.024 3.831-1.784 2.673-1.159-.89 1.16-2.674-5.35 2.05-1.16-2.05-8.024 4.723-3.567-1.159-6.509 1.159-1.783-.891M166.28 50l-.625-.624h-.267v.357h.624l.268.267zm-2.051 171.342 1.783.89zm0 0 1.783.89M39.044 98.74l.357-2.139-3.299-2.05 2.942 4.189zm-7.133-16.395h-1.783l.892 2.673.891-2.317v-.356zm-.891-2.673-.892.89 1.783 1.248zm8.024 19.068.357-2.139-3.299-2.05 2.942 4.189zm-7.133-16.395h-1.783l.892 2.673.891-2.317v-.356zm-.891-2.673-.892.89 1.783 1.248zm8.024 19.068.357-2.139-3.299-2.05 2.942 4.189zm-7.133-16.395h-1.783l.892 2.673.891-2.317v-.356zm-.891-2.673-.892.89 1.783 1.248zm5.35-6.237v-2.317l-2.051.535.267 1.514zm-2.319-6.505.535 1.159 1.249-2.673-1.784 1.247zm2.319 6.505v-2.317l-2.051.535.267 1.514zm-2.319-6.505.535 1.159 1.249-2.673-1.784 1.247zm2.319 6.505v-2.317l-2.051.535.267 1.514zm-2.319-6.505.535 1.159 1.249-2.673-1.784 1.247zm31.742 90.884-2.05.267-1.784 2.406 2.943-.624.891-2.05zm0 0-2.05.267-1.784 2.406 2.943-.624.891-2.05zm0 0-2.05.267-1.784 2.406 2.943-.624.891-2.05zm2.14-60.322-.624-.534-1.783-.891 1.783.89z' transform='translate(0 -1.5)' id='a' fill='%23fff'/%3e%3cg id='e' fill='none'%3e%3ccircle cx='133.5' cy='133.5' r='49.5'/%3e%3ccircle cx='133.5' cy='133.5' r='92.5'/%3e%3ccircle cx='133.5' cy='133.5' r='133'/%3e%3cpath d='M-100 133.5h467M133.5-100v467' id='b'/%3e%3cuse transform='rotate(30 133.5 133.5)' width='400' height='267' xlink:href='%23b'/%3e%3cuse transform='rotate(60 133.5 133.5)' width='400' height='267' xlink:href='%23b'/%3e%3c/g%3e%3c/defs%3e%3cg clip-path='url(%23c)' transform='matrix(2.25 0 0 2.25 83.125 -.75)'%3e%3cpath fill='%23072b5f' d='M-66.5.333h400V267h-400z'/%3e%3cg fill='none' stroke='%23fff' stroke-width='2'%3e%3ccircle r='49.5' cy='133.5' cx='133.5'/%3e%3ccircle r='92.06' cy='133.667' cx='133.5' stroke-width='1.99'/%3e%3ccircle r='132.118' cy='133.667' cx='133.5' stroke-width='1.987'/%3e%3cpath d='M-100 133.5h467M133.5-100v467'/%3e%3cuse xlink:href='%23b' height='267' width='400' transform='rotate(30 133.5 133.5)'/%3e%3cuse xlink:href='%23b' height='267' width='400' transform='rotate(60 133.5 133.5)'/%3e%3c/g%3e%3cuse width='400' height='267' xlink:href='%23a' transform='matrix(1 0 0 .99875 0 .333)'/%3e%3cuse clip-path='url(%23d)' width='400' height='267' xlink:href='%23e' transform='matrix(.99795 0 0 .9967 .195 .655)' stroke='%23072b5f' stroke-width='2'/%3e%3c/g%3e%3c/svg%3e\"},8512:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 800 500'%3e%3cpath fill='%2374acdf' d='M0 0h800v500H0z'/%3e%3cpath fill='%23fff' d='M0 166.67h800v166.67H0z'/%3e%3cg id='c'%3e%3cpath id='a' stroke-width='1.112' stroke='%2385340a' fill='%23f6b40e' d='m396.84 251.31 28.454 61.992s.49 1.185 1.28.859c.79-.327.299-1.512.299-1.512l-23.715-63.956m-.68 24.12c-.347 9.428 5.452 14.613 4.694 23.032-.757 8.42 3.867 13.18 4.94 16.454 1.073 3.274-1.16 5.232-.198 5.698.963.466 3.07-2.12 2.383-6.775-.687-4.655-4.22-6.037-3.39-16.32.83-10.283-4.206-12.678-2.98-22.058'/%3e%3cuse xlink:href='%23a' transform='rotate(22.5 400 250)'/%3e%3cuse xlink:href='%23a' transform='rotate(45 400 250)'/%3e%3cuse xlink:href='%23a' transform='rotate(67.5 400 250)'/%3e%3cpath id='b' fill='%2385340a' d='M404.31 274.41c.453 9.054 5.587 13.063 4.579 21.314 2.213-6.525-3.124-11.583-2.82-21.22m-7.649-23.757 19.487 42.577-16.329-43.887'/%3e%3cuse xlink:href='%23b' transform='rotate(22.5 400 250)'/%3e%3cuse xlink:href='%23b' transform='rotate(45 400 250)'/%3e%3cuse xlink:href='%23b' transform='rotate(67.5 400 250)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='rotate(90 400 250)'/%3e%3cuse xlink:href='%23c' transform='rotate(180 400 250)'/%3e%3cuse xlink:href='%23c' transform='rotate(270 400 250)'/%3e%3ccircle r='27.778' stroke='%2385340a' cy='250' cx='400' stroke-width='1.5' fill='%23f6b40e'/%3e%3cpath id='h' fill='%23843511' d='M409.47 244.06c-1.897 0-3.713.822-4.781 2.531 2.136 1.923 6.856 2.132 10.062-.219a7.333 7.333 0 0 0-5.281-2.312zm-.031.438c1.846-.034 3.571.814 3.812 1.656-2.136 2.35-5.55 2.146-7.687.437.935-1.495 2.439-2.067 3.875-2.094z'/%3e%3cuse xlink:href='%23d' transform='matrix(-1 0 0 1 800.25 0)'/%3e%3cuse xlink:href='%23e' transform='matrix(-1 0 0 1 800.25 0)'/%3e%3cuse xlink:href='%23f' transform='translate(18.862)'/%3e%3cuse xlink:href='%23g' transform='matrix(-1 0 0 1 800.25 0)'/%3e%3cpath d='M395.75 253.84c-.913.167-1.563.977-1.563 1.906 0 1.062.878 1.906 1.938 1.906a1.89 1.89 0 0 0 1.563-.812c.739.556 1.764.615 2.312.625.084.002.193 0 .25 0 .548-.01 1.573-.069 2.313-.625.36.516.935.812 1.562.812 1.06 0 1.938-.844 1.938-1.906 0-.929-.65-1.74-1.563-1.906.513.18.844.676.844 1.219a1.28 1.28 0 0 1-1.281 1.281c-.68 0-1.242-.54-1.282-1.219-.208.417-1.034 1.655-2.656 1.719-1.622-.064-2.447-1.302-2.656-1.719-.04.679-.6 1.219-1.281 1.219a1.28 1.28 0 0 1-1.281-1.281c0-.542.33-1.038.843-1.219zm2.09 5.69c-2.138 0-2.983 1.937-4.906 3.219 1.068-.427 1.91-1.27 3.406-2.125 1.496-.855 2.772.187 3.625.187h.031c.853 0 2.13-1.041 3.625-.187 1.497.856 2.369 1.698 3.438 2.125-1.924-1.282-2.8-3.219-4.938-3.219-.426 0-1.271.23-2.125.656h-.031c-.853-.426-1.698-.656-2.125-.656z' fill='%2385340a'/%3e%3cpath d='M397.12 262.06c-.844.037-1.96.207-3.563.688 3.848-.855 4.697.437 6.407.437h.03c1.71 0 2.56-1.292 6.407-.438-4.274-1.282-5.124-.437-6.406-.437h-.031c-.802 0-1.437-.312-2.844-.25z' fill='%2385340a'/%3e%3cpath d='M393.75 262.72c-.248.003-.519.005-.813.031 4.488.428 2.331 3 7.032 3h.03c4.702 0 2.575-2.572 7.063-3-4.7-.426-3.214 2.344-7.062 2.344h-.031c-3.608 0-2.496-2.421-6.22-2.375zm10.1 6.94a3.848 3.848 0 0 0-3.846-3.846 3.848 3.848 0 0 0-3.847 3.846 3.955 3.955 0 0 1 3.847-3.04 3.952 3.952 0 0 1 3.846 3.04z' fill='%2385340a'/%3e%3cpath id='e' fill='%2385340a' d='M382.73 244.02c4.915-4.273 11.11-4.915 14.53-1.709.837 1.121 1.373 2.32 1.593 3.57.43 2.433-.33 5.062-2.236 7.756.215-.001.643.212.856.427 1.697-3.244 2.297-6.577 1.74-9.746a13.815 13.815 0 0 0-.67-2.436c-4.7-3.845-11.11-4.272-15.81 2.138z'/%3e%3cpath id='d' fill='%2385340a' d='M390.42 242.74c2.777 0 3.419.642 4.7 1.71 1.284 1.068 1.924.854 2.137 1.068.213.215 0 .854-.426.64s-1.284-.64-2.564-1.708c-1.283-1.07-2.563-1.069-3.846-1.069-3.846 0-5.983 3.205-6.41 2.991-.426-.214 2.137-3.632 6.41-3.632z'/%3e%3cuse xlink:href='%23h' transform='translate(-19.181)'/%3e%3ccircle id='f' cy='246.15' cx='390.54' r='1.923' fill='%2385340a'/%3e%3cpath id='g' fill='%2385340a' d='M385.29 247.44c3.633 2.778 7.265 2.564 9.402 1.282 2.136-1.282 2.136-1.709 1.71-1.709-.427 0-.853.427-2.564 1.281-1.71.856-4.273.856-8.546-.854z'/%3e%3c/svg%3e\"},3928:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3e%3cpath fill='%23006' d='M0 0h1000v500H0z'/%3e%3cpath fill='%23BD1021' d='M0 250 1000 0v500L0 250z'/%3e%3cpath fill='%23FFF' d='M107.14 250 1000 26.79v446.42'/%3e%3cpath d='M766.471 277.926c6.665.512 6.437 7.12 6.437 7.12l23.602.526c3.019-8.229 6.152-7.276 11.886-3.212 5.448 3.861 11.393 5.585 11.393 5.585 2.279-11.81 19.026-9.422 19.026-9.422 7.14-17.054 7.747-16.827 3.494-18.987-4.253-2.16-5.988-5.814-5.988-5.814-4.037-4.873-6.164-11.922-6.62-16.246-.456-4.324-5.469 2.164-6.38.799-.911-1.364-8.355-.568-8.355-.568 1.823 1.933-4.405.796-4.405.796.608.455 0 2.274 0 2.274-.608-.796-5.317-1.592-5.317-1.592-.456 1.023-1.519 2.16-1.519 2.16-2.582-1.137-7.747-.91-7.747-.91-7.595-.114-12.152 2.274-14.279 3.525s-9.722 5.116-15.95 11.142-9.722 5.344-9.722 5.344c-1.823 6.708-16.709 14.894-16.709 14.894-2.43 2.16-9.874 3.183-13.671 0s0-8.868 0-8.868c1.405-2.658 2.798-2.548 2.953-11.77.105-6.236 6.542-11.182 13.149-18.43 8.078-8.861 19.368-23.449 19.368-23.449.057 4.477 2.506 5.202 2.506 5.202 2.222-4.562 5.412-8.229 5.412-8.229.171.384.627.64.627.64 2.506-3.411 4.044-4.775 4.044-4.775-.854-.341-7.861 0-14.412 5.713-6.551 5.713-11.051 3.795-11.051 3.795-4.557-1.45-4.956-4.946-4.956-4.946-3.327-14.317 9.741-24.558 9.741-24.558-17.545-4.178-4.899-26.434 16.861-35.899s21.532-13.729 21.532-13.729c1.253 1.45 2.279 4.008 2.279 4.008.228-.171 1.823-2.558 14.355-8.101 12.532-5.543 18.57-10.318 18.57-10.318 1.595 3.07 1.253 5.287 1.253 5.287 34.292-12.023 68.072-39.608 68.072-39.608.968 2.302.456 5.798.456 5.798 5.582-5.159 25.748-17.182 25.748-17.182.342 7.674-5.981 10.616-5.981 10.616.684 1.109 1.082 3.112 1.082 3.112 3.304-1.791 18.684-12.535 18.684-12.535 5.639 4.86.513 12.833.513 12.833 1.994-.298 3.475-2.046 3.475-2.046 1.424 8.271-7.747 15.562-7.747 15.562 1.595.043 4.272-1.535 4.272-1.535-1.709 9.039-18.855 19.058-18.855 19.058 2.506 2.217.114 5.159-1.937 6.481s-5.696 4.221-4.557 5.415 8.716-4.136 8.716-4.136c1.31 3.795-8.431 11.256-8.431 11.256 6.779.895 25.634-7.674 25.634-7.674-1.538 7.291-8.659 12.961-17.431 16.244-8.773 3.283-8.317 3.795-8.317 3.795 1.538 1.236 13.671-2.302 13.671-2.302-3.646 8.143-16.292 13.729-16.292 13.729 3.475 2.942 8.203-.469 12.931-3.709s11.165-6.012 18.285-8.399c7.121-2.388 12.133-.597 12.133-.597 5.924-1.876 10.937.767 10.937.767 11.393.938 12.532 5.074 12.532 5.074 1.253.298 2.222.81 5.127 2.942s2.734 8.74 2.62 11.981c-.114 3.24-1.025 3.24-1.595 4.136s-.627 1.919-.627 3.155-2.848 8.911-20.45 8.996c-17.602.085-26.678 0-26.678 0-1.453 0-3.19.853-3.19.853-7.405 3.667-3.494-2.501-12.304 4.747-8.81 7.248-13.292 5.997-13.292 5.997-1.443 1.734-10.671 10.318-15.95 13.729-5.279 3.411-4.329 3.098.266 5.088s11.545 0 11.545 0c-4.443 2.956-1.367 4.32-1.367 4.32 5.848-3.553 9.38-2.245 9.38-2.245 1.861 5.088-4.823 13.132-4.823 13.132 2.582.341 7.443 0 7.443 0-1.177 3.439-6.038 7.22-9.608 8.385-3.57 1.165-2.924 1.62-1.861 3.78s.152 4.349.152 4.349c-6.228-4.32-6.456-.455-6.456-.455-.719 5.12-.608 12.45-.608 12.45-4.405-2.217-4.633.739-4.633.739-1.139 4.661-6.532 10.062-6.532 10.062-.228-2.899-2.886-3.638-2.886-3.638-2.81 5.4-7.975 8.641-7.975 8.641-.684 4.661.608 11.199.608 11.199-3.342-.682-4.557-.625-5.089.171s.76 1.194.76 1.194l43.521 1.08c.608.057 3.19.341 3.266 5.059.076 4.718-3.798 4.946-3.798 4.946l-47.622-1.137s.228 1.307-2.279 2.615-1.671-1.478-2.355 4.377c-.684 5.855-10.178-.455-10.178-.455-1.519 2.274-5.241 5.23-5.241 5.23-2.127-6.424-4.329-8.413-7.747-2.842s6.152 4.605 6.152 4.605 55.901-8.243 58.939-8.527 6.38-.114 7.747 4.15-6.76 4.946-6.76 4.946l-57.344 6.253c-1.215 3.411-6 3.127-6 3.127.38 3.24-3.038 5.287-4.785 6.481-1.747 1.194-7.215.625-7.215.625-6.684 4.548-9.95.966-9.95.966-4.329 1.876-7.064 1.08-10.633-.455-3.57-1.535-3.266-5.855-3.266-5.855l-36.191 3.752a8.752 8.752 0 0 0-2.886 1.734c1.291 1.649-2.592 5.479-2.592 5.479 1.082.746 3.161 2.835 3.446 7.355.301 4.781-5.839 5.585-2.763 8.911s8.687.576 14.953-2.43 12.418-2.622 15.095-2.601c2.677.021 10.14 1.897 14.782 3.539 4.643 1.641 6.238.661 6.551-1.727s2.393-3.07 2.393-3.07c-.57 2.345.684 3.39.684 3.39 1.794.128 4.927-1.62 4.927-1.62-.285 1.727-2.563 2.814-2.563 2.814-4.557 3.048 1.709 1.919 1.709 1.919 12.475-2.558 16.918-2.302 20.165-1.961s18.57 6.864 18.57 6.864c.57-1.535.171-5.329.171-5.329 3.931 1.066 5.526 3.326 5.526 3.326 1.481-1.62.513-4.349.513-4.349 12.646 7.077-2.62 10.275-6.665 11.639-4.044 1.364-3.987 3.027-3.987 3.027 3.361-1.066 5.696-1.45 8.488-1.663 2.791-.213 1.823-.043 8.488-1.364 6.665-1.322 10.083 1.492 10.083 1.492-5.582.298-7.234 1.961-7.234 1.961 3.532 2.43.171 4.477.171 4.477-5.07-6.395-9.399.256-9.399.256 1.737-.256 6.836.81 8.288 1.727 1.124.709 3.76 2.004 7.035 3.517 4.625 2.137 3.76.767 7.348 2.132s2.222 4.818 2.222 4.818c-1.538-2.814-4.842-3.795-4.842-3.795-.285 3.795-4.101 4.434-4.101 4.434 4.671-5.202-5.412-7.461-10.14-7.376s-8.26 3.112-8.26 3.112c9.513 8.911 16.121 6.012 16.121 6.012-1.196 3.24-9.057 1.961-9.057 1.961 3.646 2.771 3.247 4.733 3.247 4.733-1.937-1.876-5.127-.938-11.962-5.372s-12.931-2.984-12.931-2.984c6.665 7.12-2.449 11.341-2.449 11.341-3.361 1.919 1.424 4.519 1.424 4.519-4.215.767-4.785-3.453-4.785-3.453-2.222-.426-5.412 2.26-5.412 2.26.228-4.349 5.924-2.174 6.095-6.694s-5.298-8.015-21.419-5.798-20.849-2.942-20.849-2.942c-1.367.043-1.652 1.407-1.652 1.407 2.677 2.558 3.874 3.624 3.418 5.415-.456 1.791.854 2.388.854 2.388-2.962-.171-3.19-3.709-3.19-3.709-.057 1.45-.684 1.578-1.652 3.112-.968 1.535-.057 3.496-.057 3.496-1.253-1.109-3.532-2.43-1.367-5.585 1.667-2.43-3.475-5.543-3.475-5.543-1.994-2.046-7.291-.128-7.291-.128-10.994 2.174-17.431-4.775-17.431-4.775-1.253 0-3.646-.682-3.646-.682-11.621 5.202-21.817-6.054-21.817-6.054-8.772 1.663-12.76-2.558-15.437-6.694-2.677-4.136-3.19-4.477-6.722-6.608-3.532-2.132-6.833-8.163-3.589-11.341 2.829-2.771 1.994-3.411 1.994-3.411-4.557-7.66 8.127-10.13 8.355-11.963.332-2.675 2.981-4.366 5.829-4.537 2.848-.171 2.848.085 4.728-1.833 1.88-1.919 5.469.469 5.469.469.741-.554 7.007-5.415 12.589-2.899 5.583 2.516 10.197.725 10.197.725 3.931-.853 36.571-5.287 36.571-5.287 2.108-3.155 3.589-6.95 12.589-8.996 9-2.046 15.836-7.632 15.836-7.632-1.595-1.705-4.272-1.62-5.639-1.791-1.367-.171-4.215-2.601-4.215-2.601-1.652.725-2.499.37-14.298 7.546-10.538 6.41-10.842-6.309-10.842-6.309l-22.994.042c-.399 4.86-4.101 6.779-4.101 6.779l-8.374.426c-4.671-2.473-4.728-10.701-4.728-10.701-25.292.384-39.362 9.422-39.362 9.422-28.653-14.667-51.097-17.992-51.097-17.992 34.805-3.795 53.204-13.473 53.204-13.473 19.197 11.512 37.255 11.81 37.255 11.81.684-6.95 5.355-8.655 5.355-8.655l5.296.288z'/%3e%3cpath d='M725.09 335.68c-7.273 4.265-5.958 6.594-5.325 7.904.646 1.336.721 2.615-1.253 4.605-1.975 1.99-1.785 2.681-1.785 2.681.304 7.069 5.311 8.57 7.399 10.304 1.749 1.452 4.715 6.002 4.715 6.002 3.722 5.344 7.671 5.4 10.595 5.4s2.664-.248 1.177-1.563c-1.398-1.237-4.329-3.638-4.329-3.638 3.911 1.364 7.633 5.457 7.633 5.457 7.39 8.086 14.203 7.021 17.203 6.623s2.468-2.132 2.468-2.132c-.158-.288-3.076-.512-3.076-.512-11.089-1.052-14.431-8.328-14.431-8.328 6.684 6.566 17.165 7.902 20.393 7.781s3.038.803 2.354.974-1.671 0-3.152-.114-1.481.256-1.139.881 1.737.689 3.503.625.342.128 4.927 3.688c4.586 3.56 16.007.682 16.007.682-7.377-1.833-8.402-5.159-8.402-5.159-10.026 1.172-14.099-4.839-14.099-4.839-1.794-1.791-7.151-4.56-7.151-4.56-5.666-2.432-6.549-7.56-6.549-7.56 1.595 2.27 4.7 4.872 8.63 5.959s5.041 1.663 5.041 1.663c-1.88.277-2.991-.341-2.991-.341-3.931-1.151-1.709.448-1.709.448 4.329 3.453 5.526 3.198 5.526 3.198 11.364 1.172 5.725-3.368 5.725-3.368 8.089 1.919 9.428-1.109 9.428-1.109 1.68 3.56 7.804 2.281 7.804 2.281-8.146 3.922-1.965 2.802-1.965 2.802 8.231-1.544 9.845.552 9.845.552 2.228 2.072 4.481 1.784 4.481 1.784s1.481.043 4.614.67 7.918 3.295 12.475 2.731 5.298.866 5.298.866c-.854-.295-2.848-.6-6.38.978s-9.627 2.089-18.513 0-9.57-1.833-9.57-1.833c2.108 1.577 3.987 3.795 4.386 5.329s1.937 1.62 1.937 1.62c.627-1.961 3.304-2.814 3.304-2.814 1.753 1.62 6.437 3.752 6.437 3.752.513-1.066 0-1.812 0-1.812 3.418 3.262 7.405 2.281 7.405 2.281 1.081-.765.741-2.601.741-2.601 1.367-.043 1.595.81 2.563 1.45s4.044.213 4.044.213c-1.139-.469-1.937-2.217-1.937-2.217 4.5-3.112 14.241-1.748 14.241-1.748 7.035 1.236 6.152 5.841 6.152 5.841 1.424.682 3.304 2.814 3.304 2.814.598-1.62.057-3.262.057-3.262 3.219 1.535 3.902 5.287 3.902 5.287 3.731-4.264-3.56-9.06-3.56-9.06 3.532-.448 7.434-.128 9.798.213s5.753 1.578 8.516 3.88 7.719 3.368 7.719 3.368c-.152-.951-2.791-2.558-3.389-2.899s-.854-1.172-.854-1.172c2.421.426 4.101.213 4.101.213-8.516-5.202-10.652-7.674-10.652-7.674 3.19.405 4.956-1.578 4.956-1.578-6.722.149-6.95-1.599-6.95-1.599.826.234 3.874.981 7.89.192s9.598.021 9.598.021c-2.905-4.669-14.156-3.88-17.744-3.688s-4.984-.277-4.984-.277c.57-.277 1.168-.874 3.987-.895 2.82-.021 5.582.213 8.772-1.983s7.567-1.471 7.567-1.471c-1.063-2.103-6.114-2.842-10.557 0s-8.469 1.933-8.469 1.933c7.026-.995 9.076-3.468 9.076-3.468-2.127-.512-3.304.171-7.519.995s-5.355-.625-5.355-.625c4.633-2.757 7.861-3.866 7.861-3.866-3.949-.824-7.595-2.51-7.595-2.51-4.101 3.857-7.291 6.034-15.152 1.913s-11.962-3.638-11.962-3.638c6.912-4.093 14.013-2.331 19.178.767s6.646.568 6.646.568c-1.633-1.023-1.405-1.904-1.405-1.904 12.532 6.395 17.963 2.416 20.735.54s-1.253-4.377-1.253-4.377c-.266 4.065-5.393 5.912-9.418 4.548s-7.747-3.098-13.538-5.514-13.045-1.165-19.805.256-7.633.739-8.241.199-.949-2.189-4.405-.767c-3.456 1.421-11.507-2.359-16.52-3.553s-13.219-.541-20.317 3.354-10.595 2.928-12.722 1.961-3.456-3.638-1.177-6.026 2.468-3.041 2.279-6.481c-.19-3.439-3.57-5.486-3.57-5.486 3.114-3.212 3.874-3.922 2.81-5.315-1.063-1.393.608-1.364 2.393-2.16s.987-.91.57-1.961c-.418-1.052-1.443-.881-1.443-.881-4.139.171-6.418-.966-6.418-.966-6.855-3.155-13.216 2.984-13.216 2.984-3.894-2.983-4.785-1.052-5.469-.313s-2.051 1.251-3.874 1.421c-1.658.155-4.164.804-5.033 2.353 0 0-.768 1.245.19 2.608 0 0 1.064 1.605-.872 3.544-1.937 1.94-2.62 2.409-2.022 4.242s.427 3.24-.313 4.434c0 0-.883-1.023-.655-2.281s.228-1.983-.057-2.665c0 0-1.908 1.876-2.25 3.219 0 0-.797-2.068 1.965-4.839s4.021-4.151 3.247-5.223c-.57-.789-2.591.488-3.077.773z' fill='%23FFC221'/%3e%3cpath d='M732.94 366.24s-3.456-2.643-3.038-6.31.348-4.121-.035-4.889c0 0-.63.365-.611 1.791.018 1.338-.172 2.729-.304 2.984 0 0-1.785-3.041-2.506-3.61 0 0 .608-3.183-.38-4.548-.987-1.364-1.943-1.45-3.076-1.023-1.568.59-2.752 2.047 2.517 6.367 0 0 1.964 1.563 3.332 5.031 1.367 3.468 3.646 4.008 4.101 4.207zm17.128-10.147s-.266-2.075 1.595-5.742.745-6.391.327-7.301-.669-.572 1.208-2.148c2.31-1.939-.89-4.387 2.908-7.787 0 0 2.506-2.149 3.076-3.03 0 0-4.025 2.16-6.646 3.24-2.62 1.08-12.646 5.997-10.443 9.294s1.975 3.468 1.633 4.832c0 0-5.962-3.155-3.874-8.271 0 0 .947-2.061 3.456-4.377 2.279-2.103.911.455 5.544-2.189 0 0 3.684-2.189 5.62-5.145 0 0-2.43 1.535-3.304 1.791 0 0-5.355.966-7.519 3.24-2.165 2.274-6.76 6.225-5.203 10.63 0 0-5.355-.654-6.57-6.225 0 0-9.912 12.222 10.899 17.907.001.002 3.799 1.011 7.293 1.281z'/%3e%3cpath d='M841.606 315.23c7.772-1.175 52.815-7.982 56.908-8.397 4.481-.455 6.197-1.053 7.671 2.558 1.671 4.093-6.152 4.15-6.152 4.15l-53.699 6.088c-2.634.304-3.223-.701-3.223-.701-.465-.858-1.363-2-1.982-2.748 0-.001-.707-.771.477-.95z' fill='%23FFC221'/%3e%3cpath d='M731.61 339.66s-5.81 12.236 17.032 15.263c0 0 .057-1.364.968-3.283s2.905-5.798 1.025-8.314 1.538-1.194 2.051-4.477-.342-2.814 1.253-4.946c0 0-7.177 2.601-9.912 5.756-2.734 3.155 3.703 5.543-.114 8.996 0 0-3.19-1.151-5.07-4.605.002.001-4.441.087-7.233-4.39z' fill='%235A3719'/%3e%3cpath d='M753.94 354.69s5.639 4.882 12.361 4.669 9.57-2.004 11.279-4.669c0 0 1.307 2.065 1.31 3.432 0 0 5.81-4.818 15.836-.64s6.95 3.03 9.171 3.327c0 0-4.262-.758-14.013 3.708-10.025 4.592-36.172 3.027-35.944-9.827z'/%3e%3cpath d='M744.597 333.096s2.535.384 5.07-2.473c0 0-3.418.64-5.07 2.473zm-19.155 22.725s-4.713-3.709-1.694-4.434c0 0 2.15-.341 1.694 4.434z' fill='%235A3719'/%3e%3cpath d='M828.049 379.017s2.506-4.48 9.741-4.48 8.089 3.326 17.203 3.965c0 0-10.944 3.084-18.57.256-3.987-1.478-7.576-.249-8.374.259z'/%3e%3cpath d='M756.446 357.952s10.823 6.566 20.45-.554c0 0 .798.767 1.481 2.515 0 0 7.291-7.036 20.336.554 0 0-1.603-.178-7.747 2.473-8.004 3.454-28.026 5.714-34.52-4.988z' fill='%235A3719'/%3e%3cpath d='M798.2 364.604s10.367 1.202 19.14.682c5.39-.319 11.222-1.306 8.317.52-2.905 1.825-1.481 1.996 10.937.845s-.114 2.345 8.431 3.453c0-.001-20.71 10.573-46.825-5.5z'/%3e%3cpath d='M825.429 357.995s6.095-2.217 11.735.426c5.639 2.643 4.785 2.857 8.545 3.24 0 0-2.62 3.752-8.829.725-6.21-3.027-7.855-3.611-11.451-4.391zm6.779 18.717s5.98-2.983 12.591.118c.827.388 2.631 1.137 4.327 1.502 0 0-5.065 1.57-10.254-.043-2.157-.67-3.873-1.193-6.664-1.577zm-29.565-10.702s13.33 1.236 20.564-.205c0 0-8.374 4.042 12.646 2.166 0 0 4.671-.512 4.101.213s-.911 1.279 1.367 1.961c.001.001-15.607 6.993-38.678-4.135z' fill='%235A3719'/%3e%3cpath d='M736.05 354.69s.114 1.023 3.076 2.345 4.557 3.688 5.184 4.967 2.136 3.193 4.586 3.803c0 0-10.45 2.181-15.133-3.255 0 0-3.551-3.916 2.174-7.86'/%3e%3cpath d='M818.31 378.8s-4.158-.256-9.798-2.217c-5.639-1.961-7.121-.298-10.31-2.686-3.19-2.388-9.627-.895-10.823-.725-1.196.171-4.614 0-.342-2.771 0 0-3.418-.085-4.728-1.791 0 0-1.538 1.492-7.291.938 0 0 2.563 4.026-7.747 2.866 0 0 3.076 3.572 6.779 4.297s5.247.485 7.633-.213c0 0-.684 3.112 4.101 4.306s5.753 2.132 8.203 3.112c0 0 .342-2.004-6.038-6.651 0 0 3.418-.171 8.317 1.023 4.897 1.194 16.005 4.051 22.044.512zm2.582 4.775s1.025 2.388 4.177 1.848 8.336-1.464 13.349 1.094c0 0 .854-4.264-9.209-4.562 0 0-6.304.341-8.317 1.62zm-85.218-27.372s-3.874 3.183-.361 6.495c3.209 3.025 8.165 2.757 10.538 2.672 0 0-1.424-.81-2.677-2.686s-1.296-3.144-3.931-4.349c-2.734-1.25-3.057-1.577-3.569-2.132zm-4.064-16.542s-5.81 12.236 17.032 15.263c0 0 .057-1.364.968-3.283s2.905-5.798 1.025-8.314 1.538-1.194 2.051-4.477-.342-2.814 1.253-4.946c0 0-7.177 2.601-9.912 5.756-2.734 3.155 3.703 5.543-.114 8.996 0 0-3.19-1.151-5.07-4.605.002.001-4.441.087-7.233-4.39z' fill='%235A3719'/%3e%3cpath d='M791.65 367.89s4.785-.767 16.975 3.795 17.26 3.411 19.083 3.283c0 0-6.876 3.592-17.526-1.097-9.417-4.147-10.044-2.57-18.532-5.981z'/%3e%3cpath d='M867.962 365.158s2.783-.095 4.405.668c0 0 1.063-.91 3.608-1.18 0 0-1.671-1.677-8.013.512zm-8.335-6.75s2.791-.128 3.627-1.464c0 0-1.405-1.791-3.551-2.643 0-.001.436 1.904-.076 4.107zm-93.668-31.153s-.513-1.364 2.392-1.791c2.905-.426 40.881-5.841 40.881-5.841s2.013-.003 2.298 1.322c.308 1.432-.228 2.503-9.399 3.575s-33.381 4.099-33.381 4.099-2.564.427-2.791-1.364z' fill='%23FFC221'/%3e%3cpath d='M803.004 325.621s0 5.372 5.469 6.168c5.306.772 7.13-.331 8.545-3.125.371-.734 1.999-6.343-.357-6.771-.926-.168-2.569-.072-3.744.43-1.83.782-3.528 1.698-2.924 2.615 1.291 1.961 1.543 2.416 1.063 2.558-1.312.389-2.277-.764-2.544-1.563-.333-.996.723-1.637-2.848-1.109-1.46.216-2.66.171-2.66.797z' fill='%23FFC221'/%3e%3cpath d='M825.752 321.491c2.794.322 2.582 6.233-.76 8.905-3.599 2.877-7.033 1.848-7.033 1.848-1.816-.767-1.588-.512-.183-2.643 1.33-2.018 1.957-4.734 1.215-6.623-.237-.604.418-1.094 1.345-1.293.002-.001 2.53-.527 5.416-.194z' fill='%23FFC221'/%3e%3cpath d='M828.182 322.011s1.994 2.509-.495 7.134c0 0-1.1 1.364 1.368 1.165s7.975-2.842 7.405-6.225c0 0-.19-.824-1.633-.739-1.443.085-.266-.796.342-.966s2.487-.867-2.392-4.008c0 0-.805-.725-1.747-.426-.744.236-3.343 1.302-3.343 2.814.001.62.495 1.251.495 1.251z' fill='%23FFC221'/%3e%3cpath d='M833.518 317.761s3.893 2.79 3.874 3.619c-.019.829-.361 1.952.665 1.853 1.025-.099 5.241-.995 4.082-3.78-1.158-2.786-2.317-3.766-4.272-4.448-1.956-.682-2.449.242-4.12 1.506-.001 0-1.216.739-.229 1.25zm-21.058 3.937s.646-2.075-2.848-2.842c0 0 1.481-1.222 4.443-.568 2.942.649 2.628 2.587 2.605 2.842 0 0-2.301-.086-4.2.568zm7.596-.483s4.048-.709 5.848-.483c0 0-1.994-4.462-7.386-2.942 0 0 1.936 2.189 1.538 3.425zm6.93-1.109s0-1.364 3.437-2.729c0 0-1.668-1.57-3.987-1.421-2.658.171-3.19 1.137-3.19 1.137s2.886 1.002 3.74 3.013zm1.348-4.661s2.127.54 3.456 1.677c0 0 2.016-2.2 3.722-2.672 0 0-3.342-1.791-7.178.995z' fill='%23FFC221'/%3e%3cpath d='M716.514 304.701s9.383-7.95 14.64-6.992c5.256.957 2.62.298 8.374-.597 5.753-.895 11.678-1.492 14.07-1.194 0 0-6.95-4.988-19.368-4.903 0 0-8.772 3.027-14.811 7.035 0 0-11.621-6.481-23.64-2.601 0 0 13.045 4.732 20.735 9.252z' fill='%235A3719'/%3e%3cpath d='m816.286 318.472 1.566-.263s2.644 3.274.723 3.311c-1.501.03-.894-.462-1.178-1.414-.285-.952-.797-1.378-1.111-1.634zm-11.791.256s-.94 1.169.826.895c2.151-.333 1.737.072 4.101-1.528 0 0 1.453-1.542 4.158-.582 0 0 2.279.746 4.13-.149s2.279-.831 3.275-.746c.997.085.93.3 2.26-.671 1.329-.971 3.636-.225 5.089-1.44 1.453-1.215 3.275-.192 0-2.537 0 0-.684-.682-.627-1.258 0 0 1.253.362 2.25 1.258.997.895 2.649.618 2.934.469 0 0 .171-2.921 3.076-5.607 2.905-2.686 2.934-2.899 1.225-2.921-1.709-.021-4.586-.682-5.554 0s-9.485 6.267-14.44 7.205c-4.956.939-9.513 2.346-12.703 7.612zm-132.242-30.555s15.209 3.922 18.627 5.571c0 0 .816-2.544-6.095-4.534 0 0 16.785-.512 34.558 7.561 0 0 8.567-7.346 36.137-5.072 0 0 .054-2.435.244-4.308 0 0-19.368-.568-37.141-11.369 0-.001-15.911 7.83-46.33 12.151zm84.534 7.347c-1.063-15.548 4.899-16.94 4.899-16.94s2.808.016 5.848.483c0 0-4.709 5.599-3.456 16.713 0 0 .494 1.791-3.494 1.791-3.924 0-3.797-2.047-3.797-2.047z' fill='%23FFC221'/%3e%3cpath d='M760.85 305.81s-2.886-2.956-3.19-6.367c0 0-.076-.881 2.848-.796s3.306-.281 4.025 1.421c.7 1.655 2.544 5.145 3 5.543l-6.683.199z' fill='%235A3719'/%3e%3cpath d='M767.096 298.048a36.973 36.973 0 0 1-.321-5.91c.19-8.669 1.629-7.899 2.199-6.818l2.966.054s-2.165-9.778-4.709-4.065c-2.5 5.612-2.317 9.266-2.013 13.7.175 2.554.512 4.144.797 5.1l1.081-2.061z' fill='%23FFC221'/%3e%3cpath d='M800.593 298.071s5.725.874-3.048 2.963c0 0 .427 10.6 10.795 3.176 0 0 6.124-3.915 10.367-5.507 0 0 2.136-.739 1.88-2.338 0 0 .171-1.883-2.051-1.514 0 0-1.75.041-2.877-.37 0 0-1.225-1.442-2.051-.888s-2.763.234-1.253 2.068c1.51 1.833 1.965 1.364 2.706.831.741-.533 4.016-1.833.997.874s-5.383-1.492-6.352-2.26l-9.113 2.965zm-28.653 1.201-2.544-.057s-1.367 2.047-2.3-1.167l-1.08 2.06s3.152 11.382 5.924-.836z' fill='%235A3719'/%3e%3cpath d='M768.332 286.14s-1.291 7.447.342 12.052l27.533.512s-.342-5.344.076-12.563h-3.911s-.532 5.997-.038 9.692l-.645.013s-.494-5.186.037-9.705h-3.228s-.532 5.543-.114 9.749h-.608s-.456-4.86.076-9.749h-3.19s-.586 5.02.041 9.68l-.762-.016s-.646-5.088.038-9.664h-3.532s-.873 4.69-.038 9.721h-.722s-.797-4.804.076-9.721h-3.532s-.835 5.315-.114 9.721h-.684s-.57-5.145.19-9.721h-3.304s-.873 4.491-.152 9.721h-.722s-.532-3.894.152-9.721h-3.265zm29.09 13.587s-.762-13.474 1.823-16.94c2.585-3.466 3.114-2.786 7.519 0 4.405 2.785 10.102 5.798 11.013 6.139.911.341 2.203.682 2.203 3.127s.456 3.183-3.342.114c-.569-.46-2.345-2.085-3.627-2.494-3.403-1.086.818.762 2.032 2.494 1.029 1.468 1.823 1.307-.835 1.99s-11.849 3.751-16.786 5.57z' fill='%23FFC221'/%3e%3cpath d='M807.06 290.08s-1.994-2.519.541-3.095 2.734 3.986 3.161 6.736c.428 2.75-3.189-2.779-3.702-3.641zm-3.702 11.742s-2.962 1.087-1.025 2.046 7.405-3.581 5.526-3.283c-1.881.299-4.501 1.237-4.501 1.237zm4.016-4.157s2.62-.256 2.108.874c-.513 1.13-1.453.412-1.851.163-.4-.248-2.251-.888-.257-1.037z'/%3e%3cpath d='M821.328 294.141s.703 5.13 5.108 6.431c0 0 2.544.632 2.013-1.613 0 0-.437-1.876-.797-2.658-.361-.782-2.127-1.279-2.317-1.364s-.418-.625.798-.227c1.215.398 1.405.441 1.31-.412-.095-.853-.81-.51-1.926-1.055-.429-.21.046-.494.502-.394.456.099 1.538.426 1.557-1.336 0 0 .241-.98-1.101-1.052-1.462-.078-1.348-.732-.892-.831.456-.099 1.986.961 2.411-.782.437-1.791-2.108-.76-1.766-1.684s2.145.528 2.295-.568c.145-1.066 1.602-1.53-.879-1.874-1.177-.163-.089-.685 1.233-.499 1.415.199 2.269-1.549 3.086-2.118.817-.568 5.431-3.325-.721-2.416-6.153.909-7.956 3.894-8.355 4.491-.401.596-2.11 4.12-1.559 9.961z' fill='%23FFC221'/%3e%3cpath d='M835.661 298.117c.791-.152 1.538.063 1.807.614 1.013 2.078-1.31 1.336-2.601 2.871s-1.329 1.222-3.152.685c-1.823-.537-2.506-3.3-2.506-3.3-.204-.848.584-.92 1.528-.812-.001.001 3.022.309 4.924-.058zm-6.662-1.105s.128.622 1.172.707c1.044.085 4.078.348 5.882-.234 0 0 .665-.131.366-1.306 0 0-.024-.762-1.648-.453s-3.973 0-4.756-.171c-.783-.17-1.42.015-1.016 1.457zm-.247-3.723s-.057 1.62 1.576 1.833c1.633.213 3.666.205 4.513.038.646-.128 1.81-.364 1.905-1.317.095-.952.361-1.663-1.652-1.165-2.013.497-4.443.171-4.69.114-.247-.057-1.614-.47-1.652.497zm.741-3.269s-.399.739-.342 1.45c.057.711 1.234.952 3.361.981s4.025-.284 4.158-.995c.133-.711.646-1.535-1.025-1.279-1.671.256-3.779.327-4.614-.014-.836-.342-1.398-.46-1.538-.143z' fill='%23FFC221'/%3e%3cpath d='M907.571 298.263s-.028 1.482 1.139 2.942l-59.029-1.695s.862-.533 1.082-2.832l56.808 1.585z' fill='%235A3719'/%3e%3cpath d='M829.967 287.576s-.513 1.492.551 1.791c1.063.298 2.886.625 5.298.242 0 0 1.215.085 1.633-1.208s.375-.568-3.059-1.251c0 0-1.081-.315 2.053-.327 0 0 1.747.057 2.013-.242.266-.298 2.582-2.132-.418-2.018-3 .114-1.519-.526 0-.526s1.994.313 2.487-.171c.494-.483.038-.156-.779-.981-.816-.824-.247-.583.342-.128s.949.597 1.614.014c.665-.583-.513-1.435 0-1.336.513.099.76 1.073 2.696.135s4.557-.448 5.269.085c.712.533 2.734 1.215 3.959-.043s-1.453-2.281-.313-2.452 1.937.234 2.393-.682c.456-.917-1.766-1.791.37-2.366 2.136-.576.342-6.566-.399-7.12 0 0-2.392 1.407-5.013 5.649s-4.158 6.715-7.719 5.415c-5.136-1.876-7.761.821-8.556 1.307-1.232.753 2.575 1.123.354 1.165-2.222.043-2.222.234-2.449.576-.228.341-.029.64.37.661.399.021 1.253.874-.114.831-1.367-.043-2.336-.256-1.934 1.197 0 0 .025.317.823.402.797.085 1.082.917-.399.917-.95.002-1.045.37-1.073.464zm5.459 14.801s-1.054.746.399.831 2.222.362 2.677-.416c.456-.778 2.421-.458 1.111-1.546-1.31-1.086-2.193-.468-4.187 1.131z' fill='%23FFC221'/%3e%3cpath d='M841.52 284.62s4.915-4.626 9.023-1.492 4.506 3.603 4.563 3.667.484.405-.627 1.386-.029.959 1.196.362 1.31-.043 1.908.618 1.398 1.045-.497 1.066-5.968 0-5.968 0-2.763.234-1.367-.895c1.396-1.13 1.196-2.473.484-2.558s-.057.682-.484 1.215-1.396 1.023-2.364 1.002-1.823.701-.285 1.257c1.538.555-.171.919-.968.897s-4.643.298-.74.767c3.902.469-.352.356 2.506 1.989 3.161 1.806.883 5.643-.313 5.984 0 0-1.31.713.342.516 1.652-.196 2.563-.431 1.396.464-1.168.895-3.503 3.88-6.75 1.599 0 0-1.481-.703 1.168-.831s-2.165-.694-2.962-1.232-3.845-3.65-1.937-3.266 1.225-.725.085-1.13-1.367-2.153-.085-1.769 2.791 1.098 3.817 1.05c1.025-.048.741-.475-1.453-1.157-2.193-.682-3.105-.789-2.592-2.643s2.905.725 2.336-.661-2.649-.703-1.538-2.537c1.111-1.833 1.367-1.045 1.88-.81s1.333.06-.114-1.023c-.913-.684.082-1.609.34-1.835z' fill='%23FFC221'/%3e%3cpath d='M845.053 285.899s-.029-.618.854-.512c.883.107.655-.32.911-.448s2.466.658.399 1.407c-.764.277-1.964.079-2.164-.447z'/%3e%3cpath d='M849.753 291.143s-1.661.846-.157 2.589c1.282 1.486 1.275 1.957 1.168 2.945-.108.988 56.807 1.585 56.807 1.585s-.1-3.656 2.336-5.713c0 .001-31.102-.724-60.154-1.406z' fill='%23FFC221'/%3e%3cpath d='M908.54 297.261s.231-3.084 1.937-4.106c.94-.563 2.18-.235 2.721 2.251.77 3.536-2.227 6.544-3.618 5.201-1.325-1.278-1.04-3.346-1.04-3.346z' fill='%235A3719'/%3e%3cpath d='M843.32 310.56s3.788-3.219 4.358-4.669c0 0 10.254 7.264 9.627.594 0 0 .029-1.788.313-3.493 0 0 3.707.364 4.272-2.596l-9.57-.282s-.997-.213-2.478 1.386-4.529 3.349-7.377 1.823c0 0-1.192-1.035-2.405-.161s-1.27 1.13-.273 2.068c.998.939 3.134 3.817 3.533 5.33zm22.017-20.06-5.611-.213s-2.051-2.878-6.038-6.076c0 0-1.168-.512 1.082-2.302 2.25-1.791 2.905-3.709 2.991-4.583s-.142-2.238.712-1.194c.854 1.045 6.665 6.289 7.491 4.733s.968-2.281 1.111-2.75.342-1.919 1.168-.405 1.393 1.127 1.424 5.052c0 0 .142 3.88.741 5.287-.002 0-7.35-2.354-5.071 2.451zm-24.353-11.938s4.272 2.388 6.38-.853c2.108-3.24 3.532-3.752 1.937-6.864s.044-4.562 1.247-5.841 2.228-1.066 2.399-6.012 3.589-6.608 5.127-8.143 5.412-3.88-.456-4.86c-5.867-.981-17.488-4.008-20.507-8.527s-4.386-1.833-4.443-1.663c-.057.171-1.025 3.496 1.994 9.508s5.582 9.877 8.488 11.824c2.905 1.947 5.526 3.013 4.044 7.021-1.482 4.007-4.045 11.17-6.21 14.41z' fill='%237B3C20'/%3e%3cpath d='M856.76 265.78s.741 10.275 8.26 13.942c0 0 1.709-4.008 1.025-7.973 0 0 2.449.213 3.133 1.322 0 0 .114-2.984-3.418-4.072-3.532-1.087-1.823-7.781-.57-8.548s.854-2.103 0-3.311-1.082-3.041 1.88-2.274 2.506-.81.741-2.26-1.709-3.24.797-3.24 6.665-2.43 4.158-3.198c-2.506-.767-3.304-1.577.114-2.558s5.07-2.217 2.506-2.515c-2.563-.298-4.272-1.194-1.766-1.62s-.456-2.984-3.361-3.112-9.171 1.066-4.215-2.899-7.121-1.066-2.165-3.667-1.652-1.45-2.563-1.492-.901 0-.565-1.322c.337-1.322-.689-1.919-2.113-1.109s-1.424.81-1.367-1.023-1.709-.469-2.791 0-3.817 2.515-4.899 1.407-1.709-2.26-5.07-.213c-3.361 2.046-2.563.213-2.506-.682s1.31-4.434-3.304-.64c-4.614 3.795-.854-4.093-4.5-1.407s-4.044 3.155-4.614 1.961-1.26-2.174-5.273.384-1.05-1.535-.481-2.43 2.279-6.694-1.253-2.174c0 0-1.709 3.155-5.526-2.473 0 0-4.044 5.591-5.07 3.115-1.025-2.475-2.051-2.731-3.361-1.111s-.342-.085-.911-1.45-.911-3.88-7.633 1.023 2.336 1.322-2.791 3.539-17.488 9.209-6.152 7.589-5.526 4.434-1.595 5.543 2.677 4.519 17.431.469 12.361-.64 19.88-3.88-1.709 1.109 8.374.895c10.083-.213 1.709.043 3.646 2.132s10.481 7.035 18.456 7.845 9.912-2.174 7.633 1.279-3.076 4.775-4.443 5.969-5.127 3.922-5.184 8.698c-.057 4.775-6.266 5.543-3.987 10.829a600.8 600.8 0 0 0 5.413-5.288z' fill='%235A3719'/%3e%3cpath d='M869.88 277.27s-1.823-1.279-1.785-3.553c0 0 1.291.227 1.785 1.052 0 0 4.595-5.202-.893-7.077-5.487-1.876-2.754-6.85-.893-6.879s2.185-.54.618-2.615-1.453-2.16 1.661-2.7 2.691-1.194 1.307-1.961c-1.383-.767-2.444-2.018-2.444-2.018s8.808-3.837 5.959-5.599 0-1.307 2.544-3.127c2.544-1.819 2.886-2.16 3.266-2.871 0 0-2.515.256-4.371-.114 0 0 2.198-1.08 0-2.871-2.199-1.791-3.11-3.411-6.604-2.587s-2.355-.341-.987-1.791c1.367-1.45.721-2.274-1.747-2.643 0 0 .304-1.478 2.165-3.326 0 0-4.747.341-6.342-.483 0 0 1.899-1.307 2.051-2.871 0 0-2.62.853-5.924.54 0 0 1.937-1.677 1.937-3.155 0 0-5.734 1.279-8.393 3.297 0 0-.57-.114-1.025-.739-.456-.625-.798-1.251-7.14.767 0 0 .722-2.814 2.241-3.951s1.291-3.411-8.583 2.757c0 0-1.329-.796-2.43-3.752 0 0-2.127 3.013-3.76 4.036 0 0-1.367.574-1.196-1.347s-.968-.552-1.994 0c-1.025.552-1.709 1.916-1.196-1.964s-1.367-4.69-1.367-4.69-3.076 4.349-4.842 4.818c0 0-3.247-3.155-4.386-5.244s-1.139-2.857-2.279.767c-1.139 3.624-2.563 3.922-2.563 3.922s-1.937-1.663-2.165-2.558c0 0-.342.981-.968 1.407 0 0-1.709-2.004-1.652-4.903 0 0-10.595 5.841-11.905 9.38 0 0-10.026-.597-14.184.171 0 0 1.025-3.24 3.646-4.86 0 0-2.62-.298-2.734-2.984 0 0 2.108.298 3.418-.043s-1.823-4.136 1.481-4.221 5.412 1.577 3.93-2.814c-1.481-4.391-.797-4.391-.797-4.391s5.753 3.411 6.665 2.558-.741-2.686 4.386-1.833 3.703-2.089 5.696-2.217c1.994-.128 3.076 1.279 1.823-8.015s6.209 4.605 1.139-9.422c0 0-1.282-4.242-4.329-6.054 0 0-.684 3.07-4.13.362s-10.225-3.667-7.377-5.798c2.848-2.132 4.187-4.988 3.361-6.779 0 0-3.359 3.511-9.2 1.002-4.614-1.983-5.582 1.663-10.31.597 0 0 .085-1.215 4.073-4.349s-2.307 1.045-4.785 1.599-3.19.107 2.051-3.944c5.241-4.05 15.608-11.213 14.184-17.097 0 0 2.449 3.112 8.886.853s11.222-3.07 13.159-6.395c1.937-3.326 7.007-6.694 8.317-7.419s3.076-1.236 1.082 1.919-5.241 8.57-14.127 12.236c-8.886 3.667-12.304 6.353-13.899 8.271-1.595 1.919-9.684 6.225-4.443 5.5s14.355.128 10.083-1.109c-4.272-1.236-9.114.767-5.184-2.814s4.614-4.775 10.31-7.163 12.019-7.845 11.393-2.047c-.627 5.798-11.222 11.981-13.842 13.856-2.62 1.876-1.652 1.578-1.595 2.345s-.399 2.345-1.481 3.07-.741 1.535-.456 3.155-.285 2.26.513 2.515 1.595.384 1.823 1.535.826 1.3 2.364 1.172 2.506.021 2.62.917c.114.895 1.566 2.11 1.737-.618.171-2.729 1.168-3.262-1.623-2.004s-3.389.81-3.332-.49-.256-1.002-1.424-1.109-1.567-1.748.513-2.835c2.079-1.087 2.051.021 4.643-2.132s2.592-2.75 2.991-3.752-3.703 2.921-5.668 3.816-1.453-.618-1.111-2.857 5.241-5.159 7.491-5.202 7.32 1.279 5.127 4.349-8.402 6.715-5.725 6.992 3.105-.767 4.643.597.114 4.136-.598 5.607-2.193 3.326-2.848 3.667c0 0-2.82-5.031-2.734-1.045s-.598 5.415 0 5.564 3.731 2.238 4.728 2.281-5.412 3.006-2.734 3.198c2.677.192 6.921-1.172 8.402-3.944 0 0-5.44-1.322-7.633-3.368 0 0 6.352-1.492 4.586-7.61 0 0 6.323 1.727 3.589 4.583-2.734 2.857-4.386 2.43-2.022 3.24s3.532 1.492 3.532 1.492 1.617.81.68 2.132-.965 3.326-.168 3.283 3.475-1.279 1.225-2.643 2.563-1.13.513-2.281c-2.051-1.151-2.592-1.428-3.133-1.983-.541-.554 25.748-15.967 12.475-10.19 0 0 2.763-5.99 6.636-6.012s4.158 3.048 1.965 5.372-3.617 5.948-8.772 6.8c0 0 7.367 3.61-1.339 9.508 0 0-1.889.895-1.206 1.549.684.654 5.848-2.274 6.57-3.922.722-1.649 1.823-2.928 3.798-3.894s11.697-7.589 14.621-12.592 3.722-5.173 9.418-9.749 4.709-3.667 5.431-4.775 1.025-2.928 3.646-4.406 12.798-7.134 15.988-9.437c3.19-2.302 9.722-6.537 12.532-10.119 2.81-3.581 10.378-8.156 12.266-7.305 1.889.851-.19 3.525-4.633 6.907s-15.456 12.279-17.241 13.643-11.127 8.186-14.621 8.641-3.114 1.677-5.203 3.951-6.912 7.049-8.545 8.357c-1.633 1.307-5.507 3.979-5.734 5.855-.228 1.876.684 2.103-2.43 5.031s-12.228 9.55-15.532 10.602c0 0 5.848 1.933 2.354 5.884s-3.266 3.382-3.532 3.638c0 0 8.88-1.307 2.582 5.599 0 0-1.215 1.99 1.595-.085 3.004-2.218 1.709-5.258 1.367-5.685 0 0 4.709-2.928 10.14-3.013s5.241-.455.38-1.848c0 0 3.456-4.207 6.38-2.132s1.975 3.269-1.101 4.917c-3.076 1.649-7.633 2.331-11.013 4.207 0 0 6.418 1.251 9.874-1.364s3.608-1.307 4.063-.853c.456.455.836 1.307-.684 3.496s-1.671 2.302-1.595 2.786c.076.483-.114 1.99-3.228 2.501-3.114.512-4.519 1.819-3.456 3.297s1.101 5.145-1.557 4.804-1.937-2.444-2.962-3.269c-1.025-.824-2.468-2.103-7.102.313-4.633 2.416-5.013-.455-4.785-1.961 0 0-3 2.615-5.507.199-2.506-2.416-.228-3.354 1.215-4.576s7.329-3.78 3.798-3.326-8.81.682-10.026-2.046c-1.215-2.729 2.62-2.416 3.228-2.16s3.114 2.274 3.19-.37c.076-2.643 3.987-2.928 2.658-3.468s-3.19 1.137-3.722 1.791c0 0-2.734-3.809-7.139-2.558s1.405.739 2.582.938.494 2.388-3.456 5.941-2.165 2.473.76 2.473c2.924 0 10.102.028 5.924 3.439s-5.848 5.116-8.013 4.519.266-2.018 1.215-2.615 1.519-1.649-.532-.881-2.772.91-4.405-1.99c-1.633-2.899-.949-2.046-.266-3.951.684-1.904 2.279-3.922.38-3.212s-1.709.767-1.557-1.421c.152-2.189-2.165-2.672-2.165-2.672s.911 2.189.076 3.581-.873 1.876.494 2.245c1.367.37 2.658 1.535.797 2.814s-1.633 1.109-.456 1.876 2.886 1.649 1.063 3.439-.304 1.251.608 1.251 2.974.767 3.006 2.53c.032 1.762-.12 2.189 2.842.54s8.886-1.45 8.81.853c-.076 2.302-.76 2.871 2.393.91s4.557 1.848 6.722 0 3.532-3.638 6.038-.483 1.725 4.109-1.329 6.338 1.481.512 3.798-.682 8.81-1.99 12.532-.341 4.785 1.279 7.519.142 4.139-1.393 8.279 1.364c4.139 2.757 7.367 3.269 9.532 3.212 0 0-4.595 1.791-9.76 2.132s-7.747 1.307-8.772 2.103c0 0 3.106 1.876 3.718 4.178 0 0 3.384-.455 5.055.227 0 0-.873 2.444 1.215 3.752 2.089 1.307 3.532 1.791 1.975 3.581-1.557 1.791 2.393 1.023.152 3.553s-2.848 3.809-2.924 5.855c-.076 2.047.494 2.359-1.519 2.558s.342 2.444-.57 5.116c-.911 2.672-6.532 2.388-6.304 9.55 0 0 1.557-3.496 4.899-6.566s3.456-3.354 3.38-5.202-.228-1.421 1.557-2.814-.797-2.7.987-4.69c1.785-1.99.228-1.592 2.317-3.61s-1.823-2.274.304-4.349-5.127-4.434-3.038-5.77 5.696-3.183-6.456-2.984c0 0 2.924-4.832 13.178-3.78 0 0-2.696 1.904-2.924 3.78 0 0 1.177.597 1.899.767 0 0-.397 1.375-2.354 3.041 0 0 5.431 3.041 6.304 4.832 0 0-3.304 1.023-4.139 2.473 0 0 1.443 1.649 1.937 3.78 0 0-3.684-.455-4.177 2.302-.494 2.757-1.595.881-1.595 2.501s.114 2.274-1.177 2.53-.228 1.62 0 2.53.646 2.984.456 3.638c0 0-1.861.028-2.734.284 0 0 .57 3.951-1.633 4.519s1.177 1.364-1.177 1.791c-2.355.426-2.051.568-4.937 5.742 0 0 2.468-1.393 5.013-3.07 2.544-1.677-.19-1.165 4.025-5.315s3.456-4.463 3.114-6.566-.418-3.809 1.101-5.798c1.519-1.99 2.013-4.264 7.405-3.979 0 0-1.595-3.588-3.57-4.522 0 0 2.582-1.788 5.317-2.043 0 0-2.393-2.871-7.291-5.656 0 0 4.025-3.468 4.975-5.116 0 0-1.861.284-3.342-.057 0 0 .698-1.659 4.329-4.036 0 0 1.937 1.876 1.861 3.837 0 0 6.228-3.581 9.76-3.183 0 0 1.785 4.491-6.874 12.904 0 0 5.355.512 7.633.199 0 0-1.291 4.15-7.785 6.594s1.404 5.301-5.241 4.804-4.595 1.791-4.405 5.173.418 6.85.266 7.788c0 0-5.317-1.734-5.203 3.411s-2.734 6.225-3.304 6.708c0 0-1.543-1.379-3.874-2.189-.005.005-3.303 6.267-8.626 9.925z' fill='%235A3719'/%3e%3cpath d='M862.28 212.78s1.823-.298 4.899 1.62 6.095-2.046 2.677-3.07.057-2.217 3.133.256 4.272 1.236 5.412.384 2.506-1.322.399-2.771c-2.108-1.45 1.424-.767 3.019.256s.968 2.089.741 2.388-.399 3.624 2.734.512 4.671-6.225 4.614-7.76c0 0 1.709 1.066 1.937 3.027s2.62-1.066 3.418-2.132c.797-1.066 2.165-3.756 1.994-5.779 0 0 2.108 3.26 5.241 0s1.766-1.213 5.526-2.194 8.488-3.752 11.051-6.864 2.734-1.023 6.038-1.791c3.304-.767 9.969-5.372 10.595-7.888.627-2.515.513-4.05-.456-3.198s-.57.171-1.994-.725c-1.424-.895-3.532 1.151-3.532 1.151s2.108 1.62.513 2.302-3.133 2.942-6.152 2.089-6.152 2.771-6.152 2.771 2.62 2.174-.911 3.539c-3.532 1.364-2.962 1.833-5.127.341 0 0-3.76 4.775-5.924 5.756 0 0-1.025-.085-1.709-.981 0 0-2.449 2.771-3.703 3.326 0 0-1.538-1.492-2.962-1.961 0 0-2.962 3.667-5.469 4.818 0 0-.741-1.364-2.336-2.302 0 0-.788 4.796-6.038 7.632 0 0 .342-1.279-2.279-3.027 0 0-6.494 5.628-9.057 6.182s-.171-1.194.171-1.919 1.937-3.112-1.196-4.093-2.62.682-3.304.981c-.684.298-.741-.554-2.848-.256-2.108.298-1.766 1.236-2.677 1.578-.911.341-4.557-.597-4.386 1.833s1.88 4.093-1.31 5.5c-3.192 1.407 1.195 1.109 5.41.469z' fill='%237B3C20'/%3e%3cpath d='M875.44 205.92s.741-3.07-1.937-4.562c0 0 17.203-2.643 4.215-9.209 0 0 15.437-3.198 11.792-8.143-3.646-4.946-7.19-3.837-7.725-3.752s3.282-2.857 4.307-2.473 13.444 5.159 10.254 1.066-2.905-3.837-3.418-5.031c0 0 4.101 0 10.311 6.054 0 0 1.31-1.364 1.139-3.837 0 0 4.443 1.236 5.81 2.558 0 0 .741-1.535.456-2.388 0 0 3.817 2.046 5.127 4.221 0 0 1.766-1.535 2.051-3.283 0 0 3.817 1.578 4.785 2.771 0 0 1.253-1.663.797-4.05 0 0 6.323 1.876 7.177-2.046 0 0 6.361 1.379 2.227 3.855-5.313 3.183-.537-.785-5.987 3.009-4.226 2.942-6.589 6.395-8.621 5.685-1.493-.522-3.285 3.823-5.336 1.691s-2.051-1.151-3.475 1.066-3.646 4.477-3.646 4.477-1.109-.64-1.95-1.492c0 0-1.24 2.046-2.835 3.581 0 0-1.253-1.663-3.247-2.686 0 0-3.133 3.624-5.07 4.86 0 0-1.823-1.791-3.76-2.388 0 0-.285 4.903-4.101 7.419 0 0-.797-1.62-3.247-2.601.002 0-1.935 3.1-6.093 5.628z' fill='%235A3719'/%3e%3cpath d='M866.39 198.41s-2.09 1.606-.741 3.326c1.349 1.719 1.424-.298 3.133-.469s22.786-3.795 3.703-9.508c0 0 .797-.725 4.101-1.023s15.266-3.539 9.684-7.802c-5.582-4.264-10.225 1.449-5.526-3.667 3.76-4.093.741-6.097.741-6.097s-11.108 7.419-13.557 8.783-5.981 3.965-1.823 5.329 7.007-4.519 7.405-3.198c.399 1.322-8.374 6.182-7.12 8.442 1.253 2.26.968 4.136 3.133 3.709 2.165-.426 8.032 1.109 3.247.938s-6.38 1.237-6.38 1.237z' fill='%235A3719'/%3e%3cpath d='M874.02 187.798s-1.937 1.361.627.679c2.563-.682 7.69-1.791 6.722-3.112-.97-1.322-4.387.262-7.349 2.433z'/%3e%3cpath d='M907.86 165.8s9.798-.256 13.842 2.473 5.981 4.519 7.177 4.903c0 0-.171 3.709-6.437 1.066 0 0 .342 1.791-.342 3.539 0 0-2.336-1.535-5.013-2.217 0 0-.456 1.407-1.31 2.217 0 0-2.791-2.814-5.924-3.667 0 0-.627 1.407-1.196 1.919 0 0-3.361-1.919-5.924-1.876 0 0 .513 2.047 0 2.857 0 0-7.121-5.585-13.444-4.86 0 0 3.076 4.477 5.07 6.694 0 0-12.817-1.023-10.709-7.93s-.171-5.172 8.203-5.123 16.007.005 16.007.005z' fill='%237B3C20'/%3e%3cpath d='M847.76 184.88s-1.481 1.207 0 2.231c1.481 1.023 6.551-2.643 7.234-3.155.684-.512 2.506-.426 0 1.45s-5.07 3.922-6.665 5.969c0 0 8.488-2.302 14.013-7.077s-.257-1.682 9.171-6.225 14.355-11.853 9.285-11.085c-5.07.767-9.627 6.566-13.557 8.783s-6.152 2.515-5.526 1.236c.627-1.279 3.532-.767 8.943-5.116 5.412-4.349 4.215-4.05 4.272-5.585s-2.051-5.329 6.095-9.593 33.495-19.101 35.659-24.174c0 0-7.405.81-17.146 8.015s-14.956 10.574-17.646 11.469-2.348.298-4.114 2.388c-1.766 2.089-11.393 11.384-13.159 12.748s-2.279 2.26-2.43 5.041c-.066 1.267-11.068 9.554-14.429 12.68z' fill='%235A3719'/%3e%3cpath d='M881.25 165.56s-1.88.873-3.703 0-1.253-4.796 3.133-7.141 12.361-5.841 16.406-6.353c0 0-.57 5.074-13.159 9.337 0 0 .798 2.642-2.677 4.157z' fill='%235A3719'/%3e%3cpath d='M885.7 162.26s.366 1.248 0 2.388c0 0 23.412 2.26 35.489-11.981 0 0-16.577 1.535-23.184 5.5 0 0 4.158-5.202 16.577-9.508 12.418-4.306 17.488-9.636 18.57-12.577 0 0-15.705 5.5-23.184 5.5 0 0-1.481-.043-2.905.767s-11.45 8.101-14.127 9.337c0 0 5.639-.469 7.633-2.302-.001 0-3.92 10.539-14.869 12.876z' fill='%23AA5323'/%3e%3cpath d='M840.87 175.64s-3.019 2.132-1.766 3.198 3.411 1.279 8-2.558 15.697-13.388 8.678-13.771c0 0-8.988-.554-8.678 4.946.314 5.554-5.783 7.836-6.234 8.185zm-20.735-3.241s5.924 3.453 3.703 6.31c0 0 18.172-15.434 13.045-18.76s-9.171 2.942-7.918 3.581c1.253.64 3.93-.554 2.962.64s-10.652 7.718-11.792 8.229zm-4.728-4.988s3.987 1.194 4.158 2.899 12.019-8.357 8.886-12.577c-1.437-1.935-8.032-2.729-8.317 1.066s5.924-.384 3.76 2.345c-2.838 3.578-7.632 5.67-8.487 6.267zm42.642-8.408s-2.539 1.842-.26 2.951 3.76-.64 4.899-1.663 6.779-5.159 8.089-7.802 3.247-3.453 5.298-4.818c2.051-1.364 16.52-8.57 25.406-16.543s5.184-5.926 14.412-11.043c9.228-5.116 15.266-9.806 17.203-15.349 0 0-4.272 1.407-8.032 3.837s-12.247 7.76-13.956 8.484-4.101.853-5.355 2.174c-1.253 1.322-1.139 2.899-5.583 6.566-4.443 3.667-27.4 19.868-30.191 22.17-2.791 2.305-11.93 11.036-11.93 11.036z' fill='%235A3719'/%3e%3cpath d='M839.58 164.37s2.506-1.382 7.215-1.06c4.709.321 23.317-17.699 28.71-21.337s22.254-15.804 24.533-18.021 2.658-4.605 4.633-5.912 3.798-1.137 8.355-3.752 26.431-15.69 25.14-23.307c0 0-32.583 19.555-40.103 25.922-7.519 6.367-28.406 20.806-32.128 23.137s-6.684 6.367-12.912 11.426-12.379 9.322-13.443 12.904z' fill='%23AA5323'/%3e%3cpath d='M832.74 157.44s6.03-.617 6.836 2.331c0 0 12.912-8.868 15.874-12.506s-.987-1.535 6.38-6.367 31.824-21.943 35.318-25.013 10.102-7.106 15.418-10.687c5.317-3.581 26.128-13.757 23.773-22.114 0 0-15.266 10.232-18.684 12.45-3.418 2.217-4.861.966-8.355 3.695s-11.165 8.186-12.532 9.891-13.064 10.687-18.76 14.496-18.456 11.199-24.609 16.543c-6.153 5.343-18.077 15.235-20.659 17.281z' fill='%23AA5323'/%3e%3cpath d='M813.95 155.69s3.051.044 3.962 1.238c0 0 5.64-4.947 11.64-.058 0 0 22.026-14.894 24.229-18.646s5.772-3.809 14.355-10.062 13.975-8.868 19.672-13.302c5.696-4.434 10.481-9.437 14.583-12.108 4.101-2.672 14.431-9.437 12.684-15.292 0 0-8.355 4.775-13.823 10.744s-5.013.853-10.557 5.855c-5.545 5.003-14.127 11.824-21.267 15.349s-2.81 3.127-7.975 6.424-4.785 2.786-6.684 3.24c-1.899.455-4.785 1.819-6.684 4.036s-6.988 5.23-12.532 8.357c-5.545 3.126-19.178 11.241-21.603 14.225z' fill='%23AA5323'/%3e%3cpath d='M820.59 144.26s-1.196-2.473.911-4.221c2.108-1.748 5.924-6.353 6.551-9.252s.171-2.43 6.266-4.946c6.095-2.515 19.937-8.996 27.742-13.814 7.804-4.818 19.653-12.577 22.102-14.453s8.393-6.054 10.804-8.015c0 0 1.158 3.283-1.462 5.543s-12.703 9.337-14.355 10.446-10.937 7.333-13.785 8.911-9.912 5.159-12.418 7.248-2.184 2.729-13.368 8.186-11.697 6.012-11.355 6.438 5.355-1.748 7.747-3.155c2.393-1.407 11.564-5.585 14.298-7.76 2.734-2.174 7.348-5.585 9.342-6.694s18.513-11 23.241-14.496 6.038-4.647 7.064-4.05c1.025.597 2.677.64.57 2.643-2.108 2.004-8.829 7.888-11.393 9.593-2.563 1.705-10.595 6.481-12.817 7.632s-3.076 3.283-4.329 4.178-4.899 3.496-9.342 4.519-5.241 4.349-8.146 6.225-23.579 13.004-24.206 13.558c0 0 1.25-1.28.338-4.264z' fill='%23AA5323'/%3e%3cpath d='M892.13 97.834s-1.139 1.009-.513 1.578c.827.75 3.703 2.771 7.291-.789 3.589-3.56 13.23-11.32 16.356-13.153s4.607-3.581 4.493-6.097c.001 0-14.81 7.888-27.627 18.461zm20.393-1.364s2.279-3.795 7.861-7.376 13.963-8.795 15.095-10.062c0 0 1.994 2.26-2.392 5.031s-12.931 8.442-13.956 9.252-2.734 2.046-6.608 3.155z' fill='%23AA5323'/%3e%3cpath d='M799 137.78s-6.209 3.326-3.987 5.415 5.526 1.45 6.893.853 3.987-1.236 4.386-1.364 5.81-1.663 7.177-4.178 5.013-5.415 7.918-7.504 3.93-4.178 3.532-5.67c-.001-.001-24.453 11.55-25.919 12.448zm-36.913 28.694s4.29-2.551 10.311-.938c0 0-.285-1.467-1.196-2.226 0 0 7.291-1.91 8.886-5.15s1.937-2.558 3.361-3.496 11.279-8.868 10.14-10.574-1.367-3.922-2.222-4.818c0 0-2.051 2.814-11.621 7.461s-20.222 8.143-27.969 18.589-6.95 16.5 2.506 19.143c0 0 6.665-4.178 22.9-2.729 16.235 1.45 21.76 7.546 22.786 8.655 1.025 1.109 4.329 5.116 1.139 11.895 0 0 3.247 1.407 3.532-1.705s.456-2.388 1.196-1.919c.741.469 1.652.554 1.31-1.833-.342-2.388-1.481-7.717-2.962-9.55s.171-1.023 1.139-.64c.968.384 4.386 3.155 2.336-1.961-2.051-5.116-2.563-2.601-2.62-2.345s-.456 1.535-4.899-1.791-8.488-4.946-11.507-5.798-.911-.853.854-1.492c1.766-.64 4.158-1.023 4.956-2.984 0 0-1.766.426-5.013-.725s-9.741-1.279-14.982 2.643c0 0 1.652-6.054-3.133-5.713s-8.146.213-13.216 4.221c0 0-.285-6.097 4.5-9.252s4.158-1.236 6.836-2.046 2.905-3.496 1.766-4.349c0 0 6.266 1.066 16.804-7.674 0 0-5.662 7.419-12.544 8.911 0 0-1.09 3.949-7.337 4.818-6.246.869-6.094 4.477-6.037 5.372z' fill='%237B3C20'/%3e%3cpath d='M744.1 202.61s3.074-18.372 20.279-19.702c15.076-1.165 19.861.711 22.862 1.677s10.329 3.127 7.481 5.486-4.481 1.933-4.481 1.933 3.304-3.667.304-4.292-3.266 1.194-3.684 2.729-.608 3.382-2.089 4.576c0 0-1.519-1.762-3.684-.227s-.304 1.592.57 1.336c.873-.256 2.013-.711 1.785.625s-1.443 3.638-5.013 5.514-3.38 1.762-7.633 2.444-8.203 2.359-13.633 7.021c-5.431 4.661-11.374 3.106-12.57-2.103-1.025-4.467-.494-7.017-.494-7.017z' fill='%235A3719'/%3e%3cpath d='M763.794 202.035s1.652-3.624-1.31-5.287c0 0-9.058 1.553-11.735-1.194 0 0 9.855-.512 15.95-2.899 6.095-2.388 4.272-4.05 2.165-4.434-2.108-.384-5.981.554-6.38 2.473 0 0-1.196-2.046.342-3.411s3.931-1.62 6.095-.981c2.165.64 4.101 1.578 11.222-2.132 0 0 4.101.938 4.215 3.709.114 2.771-.285 3.922-.627 4.349-.342.426-.854 1.236-1.709 1.151-.854-.085-1.937-.298-3.019 1.62-1.082 1.919-1.732 3.581-3.543 4.86 0 0 2.119-5.969-3.122-7.376 0 0-4.329 2.558-7.633 2.686 0 .002 4.216 3.924-.911 6.866z'/%3e%3cpath d='M773.25 191.078s-1.994-2.196.627-2.43c2.62-.234 6.095 1.684 5.412 3.304-.684 1.62-3.76 1.556-6.039-.874z' fill='%235A3719'/%3e%3cpath d='M921.3 161.96s-4.785 1.364-.342 4.306 6.608 5.5 9.855 6.353 6.608 2.046 6.551 5.287c-.057 3.24-.684 4.519-2.449 6.736-1.766 2.217.968 3.198 3.304 1.919s4.329-1.961 5.867-2.857 4.101-.767 1.766.426c-2.336 1.194-4.785 1.919-1.766 2.004s21.191.426 25.007-.81 8.772-1.62 9.228-6.566c0 0 .171-2.196 1.595-3.112 1.424-.917 2.393-3.027.313-1.599-2.079 1.428-3.674 2.153-4.073 1.727s-.513-.725.997-1.428 2.364-.043 3.76-2.11c1.396-2.068 1.259-1.727.516-2.515-.744-.789-2.31-1.364-1.541-2.366s1.538-3.986-1.794-2.238-9.893 6.253-12.931 6.964-5.355 1.635-9.456 2.466-6.646 1.712-11.013 4.128-4.063-1.334-3.304-1.847c0 0 1.671 2.927 6.114-.882s2.997-.238 13.861-3.809 8.203-4.15 12.456-6.367 8.279-2.302 5.317-5.258-3.304-3.212-7.139 0c-3.836 3.212-14.431 8.385-20.773 8.527 0 0 24.495-10.574 21.988-12.108-2.506-1.535-5.203-2.899-6.912-3.269s-2.165-.796-6.114.966-4.595 2.189-5.734 2.302-4.443.767-9.114 3.183-7.177 3.382-10.292 5.287c0 0 2.165-4.377 11.811-7.276s14.583-5.571 13.519-6.054c-1.063-.483-3.456-.881-5.279-.597s-1.291-.142-7.177 2.189-3.38 1.819-8.127 2.842-6.684 2.075-9.038 3.07c0 0 .96-1.28 4.158-2.452 1.643-.601-1.798-1.221 2.763-1.406.372-.015.828.093 1.281-.036 5.896-1.691 12.342-4.008 11.355-4.178-.987-.171-6.722-.767-12.532 1.904-5.81 2.672-3.152 1.762-5.203 2.189-2.051.426-6.38 3.155-7.823 4.32-1.444 1.164-3.456 2.045-3.456 2.045z' fill='%23FFF'/%3e%3cpath d='M777.84 188.43s2.279.682 2.848 2.281 1.994-.703 1.937-1.428-1.453-3.922-3.931-2.43-1.235 1.439-.854 1.577z' fill='%235A3719'/%3e%3cpath d='M771.484 220.027s4.863-2.287 8.943-2.004c0 0-1.595-5.756 1.253-4.775 2.848.981 2.051.597 2.62.554 0 0 .171-3.795-.57-5.287 0 0 2.905.682 5.867.725 0 0-2.791-5.457.285-9.209 0 0 1.689 3.581 5.487 4.477 0 0 .018-1.535 0-3.155 0 0 2.26-.256 4.026.682s3.247-9.891-1.994-12.279c0 0-1.253 2.046-6.152 3.07-4.899 1.023-4.859 2.007-6.873 5.694s-3.779 3.729-7.881 6.372c-4.101 2.643-6.594 8.015-6.829 8.484.002 0 2.16 2.643 1.818 6.651z' fill='%237B3C20'/%3e%3cpath d='M934.91 157.12c1.781-.312-1.798-1.221 2.763-1.406.372-.015.828.093 1.281-.036 5.896-1.691 12.342-4.008 11.355-4.178-.987-.171-6.722-.767-12.532 1.904-5.81 2.672-3.152 1.762-5.203 2.189-2.051.426-6.38 3.155-7.823 4.32s-3.456 2.046-3.456 2.046-4.785 1.364-.342 4.306 6.608 5.5 9.855 6.353 6.608 2.046 6.551 5.287c-.057 3.24-.684 4.519-2.449 6.736-1.766 2.217.968 3.198 3.304 1.919s4.329-1.961 5.867-2.857 4.101-.767 1.766.426c-2.336 1.194-4.785 1.919-1.766 2.004s21.191.426 25.007-.81 8.772-1.62 9.228-6.566c0 0 .171-2.196 1.595-3.112 1.424-.917 2.393-3.027.313-1.599-2.079 1.428-3.674 2.153-4.073 1.727s-.513-.725.997-1.428 2.364-.043 3.76-2.11c1.396-2.068 1.259-1.727.516-2.515-.382-.405-.98-.753-1.368-1.132 0 0-1.094-.957-2.366-.147s-6.855 3.169-9.095 3.439c-2.241.27-4.557 1.222-8.583 3.183s-10.709 5.955-11.773 2.245c0 0-2.915 1.04-3.551 1.364-4.489 2.288-4.097-.959-3.304-1.847 0 0-2.354 2.643-2.26.241.095-2.402 1.614-1.99 4.234-2.757s6.76-2.473 5.051-3.894-3.513 1.411-5.412 2.276-5.696 1.632-6.285-1.125-.57-4.676-5.715-4.974-4.956-3.51-3.551-4.889 2.641-3.738 7.464-4.583z' fill='%23999'/%3e%3cpath d='M951.263 182.053s8.013-3.695 15.38-5.429c7.367-1.734 1.595.227.342.625s-12.722 4.178-15.418 5.429c-2.697 1.251-2.141.181-.304-.625zm1.861 1.62s9-2.984 10.671-1.734c1.671 1.251.304.625-1.671.91-1.975.284-7.405 1.194-8.848 1.165-1.444-.028-.152-.341-.152-.341zm14.431-3.126s1.709-.313 1.899.313c.19.625-.76.711-1.709.597-.95-.114-1.785-.655-.19-.91z'/%3e%3cpath d='M729.838 258.967s-.336-7.902 3.651-11.91 23.355-24.163 26.317-29.797c0 0 2.506 1.742 2.62 4.94 0 0 3.247-5.592 5.81-7.699 0 0 2.279 2.327 1.88 6.974 0 0 4.671-2.473 11.906-2.515 0 0-2.677 3.155-2.791 4.988 0 0 10.026-1.109 15.266-.256 0 0-13.785 7.717-9.912 8.399s7.918-.043 7.918-.043-4.386 4.477-11.393 5.372c0 0 8.886-.128 10.652 1.876 0 0-8.659 1.322-15.608 6.608 0 0-.649-.298-.695-2.26 0 0-.216 1.748-2.21 3.411s-6.779 5.202-8.545 6.992c-1.766 1.791-5.07 5.329-8.602 5.159 0 0 .797-2.729-1.823-3.581-2.62-.853-5.639-.256-7.747 2.004 0 0-9.342.128-12.304.554 0 0 2.108-3.368 4.044-3.283 1.937.085 9.741 1.151 10.424-4.178.684-5.329-5.013-3.922-2.848-7.077s1.652-3.027 1.709-3.326c0 0-1.766.981-2.791 3.795s-1.766 4.988-5.469 7.802c-3.703 2.814-5.236 4.518-6.261 6.479.002.002-1.687.237-3.198.572z' fill='%23FFF'/%3e%3cpath d='M738.82 254.19s.304-1.08 3.038-1.535 2.848-1.762 2.506-2.331-1.975-.568.684-3.581c0 0 .949.256 1.595.995s3.645 7.163-7.823 6.452z' fill='%23FFF'/%3e%3cpath d='M732.257 248.61c.142 5.265 7.042 3.309 7.042 3.309-2.458 1.868-3.961 3.247-4.993 4.537.456-2.558-3.891-3.198-3.891-3.198.358-1.564.93-3.219 1.842-4.648zm25.371-28.138c.999-1.307 1.756-2.406 2.179-3.211 0 0 2.506 1.742 2.62 4.94 0 0 3.247-5.592 5.81-7.699 0 0 2.279 2.327 1.88 6.974 0 0 4.671-2.473 11.905-2.515 0 0-2.677 3.155-2.791 4.988 0 0 10.026-1.109 15.266-.256 0 0-13.785 7.717-9.912 8.399 3.874.682 7.918-.043 7.918-.043s-4.386 4.477-11.393 5.372c0 0 8.886-.128 10.652 1.876 0 0-2.53.386-5.952 1.576 0 0-2.555-2.4-9.96-2.059 0 0 5.76-3.223 10.329-4.264 0 0-2.013-2.643-5.165-.227 0 0-6.266-4.32-1.101-7.987 0 0-3.646-.767-6.038.938 0 0 .114-2.956 2.772-4.292 0 0-7.026-1.137-8.772 4.036 0 0-1.329-2.132-.722-4.548 0 0-4.253 2.446-6.19 5.217.002.001-.639-5.254-3.335-7.215m-13.616 33.416c-1.261.31-2.949.443-5.187.304 0 0 .192-.681 1.639-1.189 0 0 .415.864 3.548.885' fill='%23999'/%3e%3cpath d='M756.787 233.969s3.19 2.515 4.329 4.05c0 0 2.905-2.047 3.987-3.709 0 0 2.279 1.492 3.076 3.709 0 0 1.595-1.109 1.937-2.643 0 0 4.022.853 5.343 2.174 0 0 .615-3.88 0-6.31 0 0 2.803.213 4.512.938 0 0-1.589-2.558 6.525-5.841 0 0-6.136 1.317-8.462 4.008 0 0-2.62.128-3.76-.682 0 0 .171 3.922.057 5.798 0 0-1.581-.64-4.664-1.364 0 0-.747 1.279-1.26 1.577 0 0-1.937-1.535-2.791-3.496 0 0-2.963 2.691-4.101 3.837 0 0-2.791-1.961-4.728-2.046z'/%3e%3cpath d='M738.44 273.88s1.253.597 4.215-1.791 11.336-7.717 12.133-11.981-2.677-4.519-5.412-3.283c-2.734 1.236-1.595 3.624-1.481 4.391s.171 3.752-4.272 7.888c-4.443 4.137-5.183 4.776-5.183 4.776z' fill='%23FFC221'/%3e%3cpath d='M737.477 275.24s-6.722-2.814-.684-5.841 8.716-3.837 9.399-6.353c.684-2.516.285-2.089-1.937-1.023s-10.766 4.903-12.076 1.322c0 0 3.532 1.364 7.918-.767s7.975-2.771 5.184-3.667c-2.791-.895-12.874.213-14.526.682-1.652.469-1.253.384-1.538 2.046-.285 1.663-2.165 5.159-2.848 6.182-.684 1.023-2.336 5.287.741 7.163 3.075 1.876 7.951 1.747 10.367.256z' fill='%23FFC221'/%3e%3cpath d='M734.858 260.573s-1.54.213-1.255.81c.285.597.687.512 1.255.554s1.423-.298 1.536-.682c.114-.383-.965-.809-1.536-.682z'/%3e%3cpath d='M737.078 273.748s-3.19-1.535.399-3.496 7.462-3.837 7.975-4.647c0-.001-1.709 2.429-8.374 8.143z' fill='%23FFF'/%3e%3c/svg%3e\"},5611:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23ed2939' d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M0 200h900v200H0z'/%3e%3c/svg%3e\"},1791:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 10080 5040'%3e%3cdefs%3e%3cclipPath id='b'%3e%3cpath d='M0 0h6v3H0z'/%3e%3c/clipPath%3e%3cclipPath id='c'%3e%3cpath d='M0 0v1.5h6V3zm6 0H3v3H0z'/%3e%3c/clipPath%3e%3cpath id='a' d='m0-360 69.421 215.845 212.038-80.301L155.99-35.603l194.985 115.71-225.881 19.651 31.105 224.59L0 160l-156.198 164.349 31.105-224.59-225.881-19.651 194.986-115.711-125.471-188.853 212.038 80.301z'/%3e%3cpath id='e' d='M0-210 54.86-75.508l144.862 10.614L88.765 28.842l34.67 141.052L0 93.334l-123.435 76.56 34.67-141.052-110.957-93.736L-54.86-75.508z'/%3e%3cuse id='d' xlink:href='%23a' transform='scale(2.1)'/%3e%3c/defs%3e%3cpath fill='%23012169' d='M0 0h10080v5040H0z'/%3e%3cpath d='m0 0 6 3m0-3L0 3' stroke='%23fff' stroke-width='.6' clip-path='url(%23b)' transform='scale(840)'/%3e%3cpath d='m0 0 6 3m0-3L0 3' stroke='%23e4002b' stroke-width='.4' clip-path='url(%23c)' transform='scale(840)'/%3e%3cpath d='M2520 0v2520M0 1260h5040' stroke='%23fff' stroke-width='840'/%3e%3cpath d='M2520 0v2520M0 1260h5040' stroke='%23e4002b' stroke-width='504'/%3e%3cg fill='%23fff'%3e%3cuse xlink:href='%23d' x='2520' y='3780'/%3e%3cuse xlink:href='%23a' x='7560' y='4200'/%3e%3cuse xlink:href='%23a' x='6300' y='2205'/%3e%3cuse xlink:href='%23a' x='7560' y='840'/%3e%3cuse xlink:href='%23a' x='8680' y='1869'/%3e%3cuse xlink:href='%23e' x='8064' y='2730'/%3e%3c/g%3e%3c/svg%3e\"},3875:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 18'%3e%3cpath fill='%23418fde' d='M0 0h27v18H0V0z'/%3e%3cpath fill='%23ffd100' d='M0 12h27v1H0v1h27v1H0v-3z'/%3e%3cpath fill='%23EF3340' stroke='%23FFF' stroke-width='.2' stroke-miterlimit='10' d='M4.625 3.375 4 1.35l-.625 2.025L1.35 4l2.025.625L4 6.65l.625-2.025L6.65 4z'/%3e%3c/svg%3e\"},3170:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 170'%3e%3cpath fill='%230053A5' d='M0 0h260v170H0z'/%3e%3cg fill='%23FFCE00'%3e%3cpath d='M80 0h50v170H80z'/%3e%3cpath d='M0 60h260v50H0z'/%3e%3c/g%3e%3cg fill='%23D21034'%3e%3cpath d='M95 0h20v170H95z'/%3e%3cpath d='M0 75h260v20H0z'/%3e%3c/g%3e%3c/svg%3e\"},1477:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3e%3cpath fill='%233f9c35' d='M0 0h1200v600H0z'/%3e%3cpath fill='%23ed2939' d='M0 0h1200v400H0z'/%3e%3cpath fill='%2300b9e4' d='M0 0h1200v200H0z'/%3e%3ccircle cx='580' cy='300' r='90' fill='%23fff'/%3e%3ccircle cx='600' cy='300' r='75' fill='%23ed2939'/%3e%3cpath d='m680 250 9.567 26.903 25.788-12.258-12.258 25.788L730 300l-26.903 9.567 12.258 25.788-25.788-12.258L680 350l-9.567-26.903-25.788 12.258 12.258-25.788L630 300l26.903-9.567-12.258-25.788 25.788 12.258L680 250z' fill='%23fff'/%3e%3c/svg%3e\"},4324:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 16 8'%3e%3cpath fill='%23002395' d='M0 0h16v8H0z'/%3e%3cpath d='M4.24 0h8v8z' fill='%23fecb00'/%3e%3cg id='b'%3e%3cpath d='M2.353.525 2.8-.85 3.247.525l-1.17-.85h1.446z' fill='%23fff' id='a'/%3e%3cuse xlink:href='%23a' x='1' y='1'/%3e%3cuse xlink:href='%23a' x='2' y='2'/%3e%3c/g%3e%3cuse xlink:href='%23b' x='3' y='3'/%3e%3cuse xlink:href='%23b' x='6' y='6'/%3e%3c/svg%3e\"},2594:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 24000 16000'%3e%3cpath fill='%2300267f' d='M0 0h24000v16000H0z'/%3e%3cpath fill='%23ffc726' d='M8000 0h8000v16000H8000z'/%3e%3cpath id='a' fill='%23000' d='M12000 4124c-260 709-525 1447-1092 2012 176-58 484-110 682-105v2982l-842 125c-30-3-40-50-40-114-81-926-300-1704-552-2509-18-110-337-530-91-456 30 4 359 138 307 74-448-464-1103-798-1739-897-56-14-89 14-39 79 844 1299 1550 2832 1544 4651 328 0 1123-194 1452-194v2104h415l95-5876z'/%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 24000 0)'/%3e%3c/svg%3e\"},768:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3e%3cpath fill='%23006a4e' d='M0 0h20v12H0z'/%3e%3ccircle cx='9' cy='6' r='4' fill='%23f42a41'/%3e%3c/svg%3e\"},8194:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 450 390'%3e%3cpath fill='%23ED2939' d='M0 0h450v390H0z'/%3e%3cpath fill='%23FAE042' d='M0 0h300v390H0z'/%3e%3cpath d='M0 0h150v390H0z'/%3e%3c/svg%3e\"},3121:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 600'%3e%3cpath fill='%23009e49' d='M0 0h900v600H0z'/%3e%3cpath fill='%23ef2b2d' d='M0 0h900v300H0z'/%3e%3cg transform='translate(450 300)' fill='%23fcd116'%3e%3cg id='b'%3e%3cpath id='a' d='M0-100V0h50' transform='rotate(18 0 -100)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(216)'/%3e%3cuse xlink:href='%23b' transform='rotate(288)'/%3e%3c/g%3e%3c/svg%3e\"},1096:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 3'%3e%3cpath fill='%23fff' d='M0 0h5v3H0z'/%3e%3cpath fill='%2300966E' d='M0 1h5v2H0z'/%3e%3cpath fill='%23D62612' d='M0 2h5v1H0z'/%3e%3c/svg%3e\"},9197:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1500 900'%3e%3cpath d='M0 0h1500v900H0' fill='%23fff'/%3e%3cpath d='M1500 0H375l225 90-225 90 225 90-225 90 225 90-225 90 225 90-225 90 225 90-225 90h1125' fill='%23ce1126'/%3e%3c/svg%3e\"},744:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 500 300'%3e%3cdefs%3e%3cuse id='f' xlink:href='%23a' x='250' y='106'/%3e%3cg id='a' fill='%231eb53a'%3e%3cg id='e'%3e%3cg id='d'%3e%3cg id='c'%3e%3cpath id='b' d='M0-20V0h20' transform='rotate(30 0 -20)'/%3e%3cuse xlink:href='%23b' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='rotate(120)'/%3e%3cuse xlink:href='%23c' transform='rotate(240)'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='rotate(180)'/%3e%3c/g%3e%3cuse xlink:href='%23e' fill='%23ce1126' transform='scale(.82)'/%3e%3c/g%3e%3c/defs%3e%3cpath d='M0 0h500L0 300h500z' fill='%23ce1126'/%3e%3cpath d='M0 0v300L500 0v300z' fill='%231eb53a'/%3e%3cpath d='m0 0 500 300m0-300L0 300' stroke='%23fff' stroke-width='40'/%3e%3ccircle cx='250' cy='150' r='85' fill='%23fff'/%3e%3cuse xlink:href='%23f'/%3e%3cuse xlink:href='%23f' transform='rotate(120 250 150)'/%3e%3cuse xlink:href='%23f' transform='rotate(240 250 150)'/%3e%3c/svg%3e\"},7709:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 10'%3e%3cpath fill='%23E8112D' d='M0 0h15v10H0z'/%3e%3cpath fill='%23FCD116' d='M0 0h15v5H0z'/%3e%3cpath fill='%23008751' d='M0 0h6v10H0z'/%3e%3c/svg%3e\"},2603:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 600'%3e%3cpath fill='%23FFF' d='M0 625h937.5V0H0v625z'/%3e%3cg fill='none'%3e%3cpath fill='%23CE0F25' d='M659.049 394.35c10.735 25.244 6.121 45.149 0 64.53 15.479-5.609 48.359-21.014 44.419-40.226-6.894-16.818-28.349-20.938-44.419-24.304'/%3e%3cpath stroke='%23221B0F' d='M659.049 394.35c10.735 25.244 6.121 45.149 0 64.53 15.479-5.609 48.359-21.014 44.419-40.226-6.894-16.818-28.349-20.938-44.419-24.304z'/%3e%3cpath fill='%23FAF8F0' d='M604.198 503.635c9.756-3.152 16.456-6.744 32.61-8.985 6.658-.923 24.596.161 34.996-3.075 10.015-3.12 15.813-6.081 16.099-11.106.509-9.006 3.43-19.321 6.961-28.685 5.036-13.362 11.151-24.134 12.095-27.744.891-3.404-.64-6.816-2.896-9.945-8.792-12.194-28.496-21.087-46.054-21.066l.746 2.989c13.518.245 40.244 10.371 41.851 23.915 2.423 20.399-66.544 23.491-104.855 31.064 0 0-9.878 2.456-13.244 5.93-2.384 2.456-3.599 8.816-1.119 11.172 17.52 16.648 22.81 35.536 22.81 35.536'/%3e%3cpath stroke='%23221B0F' d='M604.198 503.635c9.756-3.152 16.456-6.744 32.61-8.985 6.658-.923 24.596.161 34.996-3.075 10.015-3.12 15.813-6.081 16.099-11.106.509-9.006 3.43-19.321 6.961-28.685 5.036-13.362 11.151-24.134 12.095-27.744.891-3.404-.64-6.816-2.896-9.945-8.792-12.194-28.496-21.087-46.054-21.066l.746 2.989c13.518.245 40.244 10.371 41.851 23.915 2.423 20.399-66.544 23.491-104.855 31.064 0 0-9.878 2.456-13.244 5.93-2.384 2.456-3.599 8.816-1.119 11.172 17.52 16.648 22.81 35.536 22.81 35.536z'/%3e%3cpath fill='%23F6E4BE' d='M700.591 432.568c-25.791 16.68-60.626 17.901-91.055 20.664l-19.374 19.696 17.76 26.156s19.784-6.49 30.028-8.074c7.24-1.117 15.374-.115 22.601-1.29 6.188-1.007 11.685-.457 15.823-5.167 4.81-5.48 4.564-15.445 7.103-22.28 1.62-4.356 4.209-7.956 7.579-13.121 5.401-8.283 9.535-16.584 9.535-16.584'/%3e%3cpath fill='%23CE0F25' d='M594.856 514.846c4.751-22.985-10-32.042-17.935-45.961 0 0 8.549 3.504 13.076 4.109 8.494 1.134 13.394.96 25.681-1.019 10.059-1.621 18.512-6.689 25.515-3.465.973.448 1.72 1.554 1.867 2.617.454 3.278-1.45 6.64-3.362 9.341-10.493 14.808-44.842 34.378-44.842 34.378'/%3e%3cpath stroke='%23221B0F' d='M594.856 514.846c4.751-22.985-10-32.042-17.935-45.961 0 0 8.549 3.504 13.076 4.109 8.494 1.134 13.394.96 25.681-1.019 10.059-1.621 18.512-6.689 25.515-3.465.973.448 1.72 1.554 1.867 2.617.454 3.278-1.45 6.64-3.362 9.341-10.493 14.808-44.842 34.378-44.842 34.378z'/%3e%3cpath fill='%23CE0F25' d='M278.37 394.35c-10.736 25.244-6.121 45.149 0 64.53-15.479-5.609-48.36-21.014-44.417-40.226 6.894-16.818 28.347-20.938 44.417-24.304'/%3e%3cpath stroke='%23221B0F' d='M278.37 394.35c-10.736 25.244-6.121 45.149 0 64.53-15.479-5.609-48.36-21.014-44.417-40.226 6.894-16.818 28.347-20.938 44.417-24.304z'/%3e%3cpath fill='%23FAF8F0' d='M333.22 503.635c-9.757-3.152-16.455-6.744-32.608-8.985-6.66-.923-24.596.161-34.996-3.075-10.016-3.12-15.816-6.081-16.1-11.106-.51-9.006-3.431-19.321-6.961-28.685-5.039-13.362-11.154-24.134-12.096-27.744-.89-3.404.64-6.816 2.898-9.945 8.792-12.194 28.499-21.087 46.054-21.066l-.747 2.989c-13.516.245-40.242 10.371-41.851 23.915-2.423 20.399 66.544 23.491 104.856 31.064 0 0 9.876 2.456 13.244 5.93 2.384 2.456 3.599 8.816 1.117 11.172-17.517 16.648-22.81 35.536-22.81 35.536'/%3e%3cpath stroke='%23221B0F' d='M333.22 503.635c-9.757-3.152-16.455-6.744-32.608-8.985-6.66-.923-24.596.161-34.996-3.075-10.016-3.12-15.816-6.081-16.1-11.106-.51-9.006-3.431-19.321-6.961-28.685-5.039-13.362-11.154-24.134-12.096-27.744-.89-3.404.64-6.816 2.898-9.945 8.792-12.194 28.499-21.087 46.054-21.066l-.747 2.989c-13.516.245-40.242 10.371-41.851 23.915-2.423 20.399 66.544 23.491 104.856 31.064 0 0 9.876 2.456 13.244 5.93 2.384 2.456 3.599 8.816 1.117 11.172-17.517 16.648-22.81 35.536-22.81 35.536z'/%3e%3cpath fill='%23F6E4BE' d='M236.83 432.568c25.79 16.68 60.625 17.901 91.054 20.664l19.372 19.696-17.759 26.156s-19.785-6.49-30.029-8.074c-7.239-1.117-15.37-.115-22.601-1.29-6.188-1.007-11.686-.457-15.821-5.167-4.81-5.48-4.564-15.445-7.104-22.28-1.617-4.356-4.207-7.956-7.579-13.121-5.399-8.283-9.533-16.584-9.533-16.584'/%3e%3cpath fill='%23CE0F25' d='M342.561 514.846c-4.749-22.985 10-32.042 17.938-45.961 0 0-8.55 3.504-13.08 4.109-8.49 1.134-13.391.96-25.679-1.019-10.057-1.621-18.513-6.689-25.514-3.465-.974.448-1.722 1.554-1.869 2.617-.454 3.278 1.45 6.64 3.362 9.341 10.496 14.808 44.842 34.378 44.842 34.378'/%3e%3cpath stroke='%23221B0F' d='M342.561 514.846c-4.749-22.985 10-32.042 17.938-45.961 0 0-8.55 3.504-13.08 4.109-8.49 1.134-13.391.96-25.679-1.019-10.057-1.621-18.513-6.689-25.514-3.465-.974.448-1.722 1.554-1.869 2.617-.454 3.278 1.45 6.64 3.362 9.341 10.496 14.808 44.842 34.378 44.842 34.378z'/%3e%3cpath fill='%23FAF8F0' d='M305.291 543.188c-4.464-2.861-9.549-5.693-12.377-9.996-1.949-2.965-2.796-7.039-1.904-10.474 5.216-20.094 4.106-30.854.49-46.069-1.167-4.917-2.358-12.341 3.794-12.01 15.78.851 33.471 5.886 46.178 5.431 5.191-.189 12.95-1.221 13.616-6.881.791-6.723-16.472-12.695-16.472-12.695 10.261 1.178 18.752 5.424 21.666 11.428 1.184 2.441.635 5.897-.894 8.141-3.009 4.423-8.734 5.621-14.034 6.331-10.558 1.425-28.455-1.47-38.575-3.412-4.577-.878-6.177-1.598-6.976-.971-2.002 1.577.731 4.762 7.103 10.72 12.891 12.055 27.917 21.872 43.424 30.307 42.229 22.967 74.524 30.305 118.381 30.305 43.855 0 76.149-7.337 118.38-30.305 15.506-8.435 30.531-18.253 43.423-30.307 6.372-5.957 9.108-9.143 7.1-10.72-.794-.626-2.395.094-6.974.971-10.12 1.943-28.017 4.837-38.576 3.413-5.296-.71-11.024-1.909-14.033-6.331-1.529-2.244-2.077-5.7-.891-8.141 2.914-6.004 11.402-10.25 21.664-11.427 0 0-17.262 5.973-16.471 12.695.665 5.66 8.424 6.693 13.615 6.881 12.709.455 30.396-4.58 46.179-5.431 6.152-.331 4.962 7.092 3.792 12.01-3.616 15.215-4.728 25.975.491 46.069.89 3.435.042 7.509-1.905 10.474-2.827 4.304-7.911 7.135-12.378 9.996-51.901 33.279-110.235 50.366-163.416 50.366-53.183-.001-111.518-17.089-163.42-50.368'/%3e%3cpath stroke='%23221B0F' d='M305.291 543.188c-4.464-2.861-9.549-5.693-12.377-9.996-1.949-2.965-2.796-7.039-1.904-10.474 5.216-20.094 4.106-30.854.49-46.069-1.167-4.917-2.358-12.341 3.794-12.01 15.78.851 33.471 5.886 46.178 5.431 5.191-.189 12.95-1.221 13.616-6.881.791-6.723-16.472-12.695-16.472-12.695 10.261 1.178 18.752 5.424 21.666 11.428 1.184 2.441.635 5.897-.894 8.141-3.009 4.423-8.734 5.621-14.034 6.331-10.558 1.425-28.455-1.47-38.575-3.412-4.577-.878-6.177-1.598-6.976-.971-2.002 1.577.731 4.762 7.103 10.72 12.891 12.055 27.917 21.872 43.424 30.307 42.229 22.967 74.524 30.305 118.381 30.305 43.855 0 76.149-7.337 118.38-30.305 15.506-8.435 30.531-18.253 43.423-30.307 6.372-5.957 9.108-9.143 7.1-10.72-.794-.626-2.395.094-6.974.971-10.12 1.943-28.017 4.837-38.576 3.413-5.296-.71-11.024-1.909-14.033-6.331-1.529-2.244-2.077-5.7-.891-8.141 2.914-6.004 11.402-10.25 21.664-11.427 0 0-17.262 5.973-16.471 12.695.665 5.66 8.424 6.693 13.615 6.881 12.709.455 30.396-4.58 46.179-5.431 6.152-.331 4.962 7.092 3.792 12.01-3.616 15.215-4.728 25.975.491 46.069.89 3.435.042 7.509-1.905 10.474-2.827 4.304-7.911 7.135-12.378 9.996-51.901 33.279-110.235 50.366-163.416 50.366-53.183-.001-111.518-17.089-163.42-50.368z'/%3e%3cpath fill='%23F6E4BE' d='M637.419 535.408s3.499-3.49 4.145-6.447c1.611-7.385-2.131-15.006-2.303-22.563-.185-8.148 1.383-24.404 1.383-24.404-20.186 19.274-75.825 68.013-171.934 68.013-93.4 0-151.749-48.739-171.935-68.013 0 0 1.565 16.256 1.381 24.404-.17 7.556-3.915 15.178-2.301 22.563.645 2.958 4.143 6.448 4.143 6.448 52.923 33.996 109.461 54.795 168.712 54.795 59.249-.001 115.788-20.8 168.709-54.796'/%3e%3c/g%3e%3cpath d='M365.845 550.515c1.832-5.256 7.756-10.813 17.201-7.524 7.839 2.731 11.168 8.888 8.714 15.929-2.452 7.039-9.43 10.85-17.426 8.066-9.036-3.147-10.385-11.03-8.489-16.471m21.111 8.006c2.399-6.886-.174-12.572-5.338-14.371-3.62-1.261-8.43-.731-11.098 6.925-2.227 6.395-.374 12.729 5.671 14.831 2.205.77 7.669 1.502 10.765-7.385m11.179-.254c1.155-4.813 1.368-5.697 1.545-6.727.195-1.091.056-1.659-.961-2.138-.245-.126-.787-.29-1.241-.399-.356-.085-.536-.193-.484-.418.054-.22.296-.23.783-.11 1.719.41 3.737.996 4.71 1.229.779.188 2.844.583 4.011.859.487.117.699.236.646.456-.054.224-.264.24-.589.16-.355-.082-.557-.1-.961-.128-.915-.052-1.304.423-1.634 1.515-.307.997-.521 1.884-1.675 6.696l-1.064 4.431c-1.101 4.59-.624 6.745.661 8.395 1.178 1.519 2.639 2.004 3.741 2.269 1.428.341 3.284.319 4.885-.639 2.201-1.311 2.982-4.137 3.764-7.397l.95-3.958c1.154-4.811 1.366-5.697 1.545-6.726.194-1.092.056-1.661-.961-2.138-.245-.125-.789-.29-1.144-.375-.357-.086-.537-.198-.484-.418.053-.223.295-.23.75-.12 1.653.396 3.673.981 3.705.989.389.095 2.455.489 3.72.79.454.109.665.226.612.448-.054.223-.264.24-.652.145-.356-.085-.559-.1-.964-.13-.912-.051-1.301.424-1.632 1.516-.307.999-.52 1.884-1.675 6.695l-.813 3.388c-.842 3.516-2.096 7.164-5.366 8.79-2.765 1.38-5.184 1.167-7.291.664-1.719-.413-4.809-1.255-6.673-3.913-1.305-1.852-1.975-4.491-.874-9.081l1.11-4.62zm28.994 13.257c-.165-.025-.24.031-.334.215l-2.416 4.159c-.445.759-.72 1.509-.776 1.897-.084.579.153 1.04 1.176 1.188l.495.07c.396.056.485.135.459.329-.037.258-.245.294-.607.241-1.056-.153-2.463-.45-3.485-.598-.363-.052-2.191-.216-3.908-.462-.429-.061-.618-.153-.581-.412.029-.194.169-.239.434-.201a9.5 9.5 0 0 0 1.031.083c1.548.025 2.331-.981 3.222-2.497l11.15-18.791c.53-.879.779-1.204 1.107-1.156.298.042.454.361.679 1.15.537 1.886 3.967 15.532 5.378 20.734.838 3.081 1.73 3.668 2.399 3.929.481.167.972.27 1.369.326.264.038.424.095.391.321-.036.258-.343.28-1.564.102-1.189-.17-3.598-.515-6.229-.959-.589-.115-.985-.172-.952-.399.027-.193.169-.239.504-.224.24-.031.513-.288.403-.698l-1.688-7.019c-.043-.169-.132-.25-.298-.271l-7.359-1.057zm6.962-.647c.166.025.214-.066.192-.169l-1.832-8.354c-.014-.134-.022-.3-.123-.315-.097-.014-.187.138-.239.265l-4.17 7.46c-.051.122-.033.225.1.244l6.072.869zm17.258 7.42c-.025 2.54.378 3.401 1.036 3.654.559.214 1.191.27 1.724.288.366.016.565.089.557.282-.01.259-.311.315-.777.299-2.166-.079-3.495-.225-4.129-.246-.3-.011-1.869.028-3.601-.034-.434-.015-.732-.057-.721-.351.006-.195.21-.254.542-.241.433.016 1.034.005 1.505-.109.876-.23 1.043-1.167 1.179-3.996l.991-19.151c.024-.65.14-1.101.472-1.089.366.014.653.446 1.196 1.05.385.441 5.261 5.826 9.955 10.719 2.186 2.295 6.515 7.141 7.063 7.683l.167.005.193-14.619c.039-1.985-.239-2.614-1.026-2.969-.493-.211-1.292-.242-1.757-.259-.401-.013-.531-.115-.524-.311.01-.26.378-.28.878-.26 1.731.063 3.329.219 4.025.244.368.014 1.639-.039 3.27.017.435.015.768.06.757.321-.007.194-.211.286-.61.27-.334-.012-.601-.022-1.005.063-.943.226-1.232.901-1.333 2.721l-1.107 20.513c-.026.716-.167 1.005-.469.994-.366-.013-.754-.386-1.107-.758-2.029-2.028-6.139-6.443-9.482-9.917-3.506-3.644-7.06-7.746-7.638-8.386l-.1-.003-.124 13.576zm31.832-3.734c-.169.014-.229.081-.281.283l-1.472 4.578c-.273.836-.383 1.627-.353 2.019.041.584.371.984 1.404.907l.499-.035c.396-.028.503.027.516.224.019.259-.175.339-.541.365-1.064.078-2.502.084-3.533.161-.365.024-2.189.255-3.916.381-.431.033-.636-.018-.656-.279-.013-.194.114-.269.381-.29.3-.02.762-.085 1.025-.138 1.516-.307 2.066-1.456 2.614-3.128l6.88-20.739c.331-.971.505-1.342.837-1.367.3-.022.52.256.908.98.926 1.727 7.195 14.326 9.681 19.106 1.479 2.83 2.475 3.215 3.185 3.328a7.58 7.58 0 0 0 1.406.028c.268-.02.435 0 .452.227.018.261-.276.346-1.509.438-1.195.086-3.623.264-6.288.39-.6.014-1.002.041-1.016-.185-.015-.195.114-.269.444-.328.228-.081.44-.39.244-.768l-3.147-6.495c-.079-.159-.184-.214-.349-.204l-7.415.541zm6.665-2.116c.166-.014.191-.113.152-.208l-3.575-7.769c-.043-.128-.09-.289-.189-.281s-.155.174-.176.306l-2.481 8.178c-.024.134.018.229.15.219l6.119-.445zm19.683-1.839c.65 4.115.999 6.334 1.781 6.804.635.396 1.527.486 4.095.081 1.746-.274 3.027-.509 3.714-1.506.329-.481.583-1.445.551-2.066-.011-.291.024-.497.289-.537.229-.039.286.119.347.503.056.355.206 2.804.088 3.78-.085.737-.225.925-1.939 1.194-2.37.371-4.094.576-5.58.781a81.923 81.923 0 0 0-4.034.534c-.363.056-1.088.173-1.872.328-.757.119-1.604.319-2.263.422-.429.068-.675.006-.711-.217-.024-.162.091-.279.488-.341a5.664 5.664 0 0 0 1.166-.315c.639-.232.691-.968.676-1.919-.049-1.378-.448-3.917-.912-6.876l-.891-5.661c-.768-4.889-.909-5.79-1.137-6.807-.236-1.083-.581-1.556-1.704-1.609-.275-.025-.674.005-1.103.074-.363.054-.569.023-.605-.201-.035-.225.185-.325.679-.405 1.549-.244 3.638-.474 4.528-.612.791-.126 3.179-.601 4.466-.802.46-.073.701-.045.735.181.037.225-.151.321-.545.384a8.714 8.714 0 0 0-1.271.299c-.864.299-1.041.888-.93 2.024.096 1.04.237 1.941 1.006 6.83l.888 5.655zm18.356-2.288c-.16.04-.209.119-.23.324l-.699 4.759c-.132.87-.11 1.667-.018 2.046.137.57.529.91 1.534.667l.486-.117c.389-.096.502-.054.547.134.061.254-.119.364-.474.451-1.037.251-2.452.493-3.459.738-.356.086-2.116.611-3.802 1.02-.42.103-.631.086-.691-.167-.045-.189.069-.284.327-.347a9.52 9.52 0 0 0 .99-.306c1.445-.55 1.8-1.775 2.064-3.515l3.381-21.584c.166-1.01.276-1.409.6-1.486.291-.069.555.166 1.055.816 1.2 1.552 9.452 12.95 12.69 17.258 1.923 2.55 2.969 2.766 3.69 2.759.506-.024 1-.109 1.39-.204.26-.061.43-.071.484.151.059.254-.215.388-1.415.677-1.166.282-3.531.855-6.14 1.421-.591.109-.98.203-1.034-.019-.048-.189.069-.285.384-.395.212-.119.37-.459.116-.799l-4.173-5.889c-.103-.141-.216-.182-.376-.143l-7.227 1.75zm6.229-3.183c.162-.039.171-.141.116-.228l-4.804-7.075c-.06-.119-.134-.27-.23-.246-.096.025-.125.198-.128.33l-1.1 8.472c-.004.134.054.222.183.19l5.963-1.443zm10.89-5.111c-1.8-5.266-.558-13.291 8.909-16.526 7.857-2.681 14.272.115 16.683 7.17 2.409 7.055-.735 14.355-8.75 17.09-9.056 3.096-14.98-2.279-16.842-7.734m21.562-6.706c-2.358-6.901-7.889-9.794-13.064-8.025-3.629 1.237-7.089 4.621-4.47 12.291 2.188 6.409 7.553 10.253 13.611 8.184 2.209-.754 6.966-3.546 3.923-12.45'/%3e%3cpath fill='%23666' d='M600.99 134.593H336.514v18.726H600.99v-18.726z'/%3e%3cpath fill='none' stroke='%23520' d='M600.99 134.593H336.514v18.726H600.99v-18.726z'/%3e%3cg fill='%235E520E' stroke='%23520'%3e%3cpath fill='%23EACE24' stroke='%23806600' stroke-width='2' d='m336.514 153.318-29.936-70.443-5.031 1.529-10.99-25.175 20.187-5.964 4.571 11.818 9.746-2.889-4.171-11.585 20.56-4.742 3.655 12.07 10.121-1.949-3.503-12.188 20.62-3.595 2.823 12.279 13.641-1.932 1.185 6.206 5.063-.641-1.04-6.175 10.45-1.36 1.066 6.281 5.11-.515-.769-6.331 10.382-.948.872 6.326 10.099-.775-1.841-18.731 20.92-1.069.684 12.324 9.976-.152-.18-12.441 21.006.001-.323 12.592 10.155.208.739-12.533 20.871.917-1.906 18.997 10.095.699.876-6.261 10.35.95-.821 6.271 5.219.511.944-6.116 10.415 1.115-1 6.25 5.158.716 1.247-6.245 13.487 1.995 2.859-12.379 20.592 3.594-3.194 12.415 9.72 1.908 3.766-12.221 20.524 4.649-4.271 12.059 9.779 2.671 4.725-12.066 20.263 5.779-10.989 25.176-8.674-2.857-30.483 71.973c-84.189-24.222-184.104-24.323-265.399-.001'/%3e%3cpath d='M462.536 95.047V72.721c0-8.93 16.066-8.93 16.066 0v22.326m-133.352 15.17-6.93-21.565c-2.771-8.625 12.746-12.092 15.519-3.466l6.929 21.565m218.296-.822 6.929-21.564c2.775-8.626 18.29-5.16 15.519 3.465l-6.931 21.565'/%3e%3cpath fill='none' stroke='%23806600' d='m514.974 119.629-.915 7.759m-180.992 17.585c88.135-25.836 184.129-26.221 272.559-1.09m-275.756-5.987c90.111-26.456 188.276-26.865 278.703-1.165m-281.552-6.015c92.091-27.003 192.401-27.375 284.776-1.056m-287.687-5.514c93.783-27.525 195.94-27.951 290.05-1.212m-64.204.807-1.609 7.573m47.759 2.274-2.605 7.077m-16.872-11.816-2.204 7.189m-25.601-20.042-1.526 7.467m17.573-4.766-1.971 7.166m20.266-3.454-2.198 7.155m22.742-2.061-2.72 7.089m-22.142-20.316-1.96 6.535m25.408-1.22-2.536 6.84m-6.342-8.928-2.266 6.595m-33.02-13.54-1.626 6.79m-10.438-9.068-1.464 7.136m-40.835 3.524-.689 7.505m27.589-5.137-1.236 7.325m-31.647-17.767-.525 7.583m14.328-6.814-.804 7.483m24.235-4.805-1.284 7.229m-3.831-15.16-1.091 6.825m-12.795-8.075-.854 7.013m-20.546-8.799-.442 7m-129.146 18.778 2.147 6.95m121.167-18.048-.356 7.741m-136.884 6.596 2.505 7.096m79.461-20.279.79 7.59m18.186-8.426.397 7.355m-41.808-4.455 1.295 7.516m52.895-10.734.135 7.47m-81.654-.092 1.8 7.411m-27.173-10.098 2.351 7.265m15.617-10.97 1.938 7.189m9.263-9.159 1.699 7.427m14.613-9.89 1.386 7.331m21.084-9.548.944 7.518m16.71-8.856.589 7.699m15.14-8.234.246 7.474m21.902-7.933-.21 7.471m-140.382 9.467 2.734 7.245m133.758-31.169-.118 7.185m-15.818-6.994.184 6.9m-14.752-6.331.457 6.908m-27.547-4.82.981 7m-22.152-4.612 1.342 6.74m-16.139-4.562 1.655 6.865m-19.03-3.658 1.927 6.596m-27.806-1.049 2.599 7.026m213.407-24.418 8.036-37.306m-243.474 51.917c95.924-28.114 200.404-28.491 296.615-1.075M506.806 67.845c18.643 1.164 37.333 3.221 55.693 6.163m-48.753-21.106-.69 5.793a602.147 602.147 0 0 0-82.977-.013l-.737-5.916m-50.095 21.258c18.179-2.916 37.099-4.966 55.557-6.138m-57.913-3.206 8.567 37.223m52.087-5.791-3.638-37.683m73.407-.076-2.018 37.784M377.7 52.127l2.61 12.115c-26.975 4.16-52.976 12.363-78.764 20.163m260.99-32.49s-2.528 11.995-2.527 11.996c27.659 4.176 54.641 12.294 81.062 20.292'/%3e%3c/g%3e%3cpath fill='%231353B4' stroke='%23540' stroke-width='2' d='M336.514 153.317c-.704 45.093-.662 90.191 0 135.284.636 43.444 2.766 77.346 21.895 103.856 23.042 31.931 61.427 54.975 110.806 77.616 49.376-22.641 87.764-45.685 110.806-77.616 19.126-26.51 21.258-60.413 21.894-103.856.664-45.092.704-90.191 0-135.284H336.514z'/%3e%3cpath fill='%23CE0F25' d='M598.216 344.999c.088-11.274 2.433-16.629 2.434-27.901 1.169-22.626 1.618-45.096 1.265-67.644H336.514c-.354 22.548.094 44.817 1.262 67.644.004 11.272 2.416 16.628 2.501 27.901h257.939z'/%3e%3cpath fill='none' stroke='%23540' stroke-width='2' d='M336.135 248.863h266.159m-262.188 96.136h258.111'/%3e%3cpath fill='%23FFF' stroke='%23000' stroke-width='.805' d='m436.14 311.056 32.228-13.13-13.13 32.229 14.324-9.548 14.325 9.548-13.131-32.229 32.229 13.13-9.55-14.323 9.55-14.324-32.229 13.13 13.131-32.228-14.325 9.549-14.324-9.549 13.13 32.228-32.228-13.13 9.549 14.324-9.549 14.323z'/%3e%3cg id='a' fill='%23FFF' stroke='%23000'%3e%3cpath fill='%23EACE24' stroke='none' d='M256.42 398.03c-.345 39.061-.69 40.443-.69 40.443 17.109 16.765 19.139 22.906 24.195 28.346 6.567-9.507 16.764-5.705 16.764-5.705 2.075-8.986 12.964-16.764 12.964-16.764-15.209-1.209-41.48-8.989-43.554-12.099-6.888-10.332 2.592-41.651 2.592-41.651l-12.271 7.43z'/%3e%3cpath fill='none' stroke='%23806600' d='M256.42 398.03c-.345 39.061-.69 40.443-.69 40.443 17.109 16.765 19.139 22.906 24.195 28.346 6.567-9.507 16.764-5.705 16.764-5.705 2.075-8.986 12.964-16.764 12.964-16.764-15.209-1.209-41.48-8.989-43.554-12.099-6.888-10.332 2.592-41.651 2.592-41.651l-12.271 7.43z'/%3e%3cpath fill='%23EACE24' stroke='none' d='m293.936 459.211-16.865-12.953 20.042 11.975'/%3e%3cpath fill='none' stroke='%23806600' d='m293.936 459.211-16.865-12.953 20.042 11.975'/%3e%3cpath fill='%23EACE24' d='M268.904 379.505s21.131-8.626 42.788 6.57c2.069.604 3.581.427 5.227.141 4.186-4.489 13.681-17.685 21.014-15.974.54-11.15-.734-55.728-.734-55.728-3.176-.124-4.277 6.11-4.277 6.11 1.834 12.709-5.5 89.948-35.563 38.862l-21.265 2.2-7.19 17.819z'/%3e%3cpath fill='none' stroke='%23806600' d='M268.904 379.505s21.131-8.626 42.788 6.57c2.069.604 3.581.427 5.227.141 4.186-4.489 13.681-17.685 21.014-15.974.54-11.15-.734-55.728-.734-55.728-3.176-.124-4.277 6.11-4.277 6.11 1.834 12.709-5.5 89.948-35.563 38.862l-21.265 2.2-7.19 17.819z'/%3e%3cpath fill='%23EACE24' stroke='none' d='M257.333 200.842c18.148 6.567 18.375 10.037 36.347 25.937 14.345 5.705 35.71 19.692 36.92 22.804l-1.164 4.543c2.766 1.727 5.378-4.644 5.378-4.644-2.765-15.729-53.276-63.103-53.276-63.103l-22.249 4.685-1.956 9.778z'/%3e%3cpath fill='none' stroke='%23806600' d='M257.333 200.842c18.148 6.567 18.375 10.037 36.347 25.937 14.345 5.705 35.71 19.692 36.92 22.804l-1.164 4.543c2.766 1.727 5.378-4.644 5.378-4.644-2.765-15.729-53.276-63.103-53.276-63.103l-22.249 4.685-1.956 9.778z'/%3e%3cpath fill='none' d='m274.395 193.804 56.861 52.195 1.211 3.802m-45.629-36.64c5.704 10.025 16.248 13.654 16.248 13.654'/%3e%3cpath d='M263.87 180.412c-.244-18.82 21.999-31.285 21.999-32.996-2.201-13.415-33.976 18.575-35.688 22.731-1.964 6.064 2.445 13.443 2.445 13.443'/%3e%3cpath d='M269.981 155.725c-6.6 5.377-11.976 22.976-11.976 22.976m-4.401 1.467c-2.688-18.088 11-33.73 10.022-34.219-8.411-4.205-19.311 18.086-22.487 25.42l4.155 24.93'/%3e%3cpath d='M249.205 165.258c-3.423 8.799.244 20.775.244 20.775m-2.933 3.667c-4.4-4.399-.245-35.929-1.467-35.929-9.288 0-14.175 30.307-12.22 36.663 6.342 20.614 11.487 24.197 11.487 24.197'/%3e%3cpath d='M238.206 178.946c-.734 9.289 6.599 20.776 6.599 20.776m-.489 13.198c-11.731-10.999-13.766-40.511-15.397-43.506-12.553 2.445-6.11 33.73-6.11 33.73.244 2.444 16.62 21.998 16.62 21.998'/%3e%3cpath d='M227.451 188.967c-4.155 8.31 14.665 32.998 14.665 32.998'/%3e%3cpath d='M258.982 282.823s-3.178-42.528 2.199-48.882l-15.886-23.465-20.531 40.817 18.575 33.975 15.643-2.445z'/%3e%3cpath fill='none' d='M258.982 282.823s-3.178-42.528 2.199-48.882l-15.886-23.465-20.531 40.817 18.575 33.975 15.643-2.445z'/%3e%3cpath d='M244.026 375.503c6.966 8.92 10.37 29.036 10.37 29.036l2.074-6.569c.978.611 1.571 5.705 2.938 5.705.611 0 .504-5.251 1.901-5.533.611-.12.206 7.26 1.556 7.26 1.1 0 1.188-5.256 1.555-5.013.864.575 1.035 6.978 1.729 3.63-.977-34.341 66.34-62.443 64.985-100.936 1.711-39.839-41.135-54.959-67.405-88.488 0 0-7.381-21.987 6.221-12.271 11-1.711 10.025-12.616 10.025-12.616h6.049c2.69-23.464-20.912-17.974-20.912-17.974-21.875 0-23.85 22.64-23.85 22.64-5.622 29.454 32.542 64.53 32.542 64.53 5.621 12.221-.05 33.295-.05 33.295l-53.114 50.04'/%3e%3cpath d='M221.253 341.843c-2.934 3.545-18.003 21.403-21.669 27.635-5.191 5.723 4.9 4.113 4.9 4.113s-14.922 15.775-22.17 20.389c2.225 6.675 16.536-2.994 16.536-2.994s-13.933 8.555-13.198 10.266c4.251 3.244 16.619-5.865 16.619-5.865s-2.954 4.154-.489 5.621c4.156 0 13.687-7.576 13.687-7.576s-1.955 4.399.245 5.131c3.974-2.505 28.843-23.221 28.843-23.221'/%3e%3cpath fill='none' d='M230.855 331.268s-7.432 9.851-2.42 8.296'/%3e%3cpath d='M229.809 305.698c-6.049 11.753-13.77 31.131-5.359 39.75 2.766.865 10.145-27.608 15.901-30.245.864-2.936 4.666-15.899 4.666-15.899'/%3e%3cpath d='M239.184 304.332c3.173 0-6.347 6.356-9.778 15.154m12.328-12.922c-4.666 21.949-.345 26.615 1.556 26.789 2.765-1.385 7.605-21.434 13.135-22.643m-38.369-105.772c-19.356-18.148-21.95-38.886-24.024-39.061-9.135-.76 3.111 36.815 3.111 36.815l23.159 18.492'/%3e%3cpath d='M214.986 209.499s-9.286-7.089-14.176-16.621m17.246 25.196c-28.69-15.901-32.147-41.825-34.566-40.962-8.834 3.489 2.419 27.309 2.419 27.309 1.556 6.567 24.37 27.134 24.37 27.134'/%3e%3cpath d='M212.542 225.63s-12.22-9.044-21.997-23.954m18.697 27.977c-34.393-19.01-35.085-40.789-38.887-39.405-8.168 22.139 21.776 43.034 42.862 58.762'/%3e%3cpath d='M211.076 239.073s-15.644-5.621-25.421-20.531m26.871 29.949c-29.9-9.505-44.336-37.371-48.048-35.949-8.641 3.284 9.506 26.616 9.506 26.616 14.69 13.654 38.887 23.678 38.887 23.678'/%3e%3cpath d='M213.276 252.761s-20.776-3.911-32.02-15.4m31.443 23.747c-47.874-15.383-49.775-30.418-54.269-29.209-8.525 6.483 18.839 27.999 18.839 27.999 3.455 5.184 38.369 14.691 38.369 14.691'/%3e%3cpath d='M216.453 263.516s-24.198.489-34.463-7.822m32.955 18.723c-45.8-9.68-52.54-23.16-56.171-22.295-5.724 7.781 21.951 24.713 21.951 24.713 17.11 9.852 40.269 11.234 40.269 11.234'/%3e%3cpath d='M220.119 279.89s-16.131.489-26.398-5.132m19.841 29.729c-12.788 11.753-20.047 33.695-13.48 35.086 3.629.171 13.48-25.581 27.826-29.208l9.159-7.952'/%3e%3cpath d='M231.851 301.155c3.171 0-16.614 6.112-20.043 14.911m-4.986-22.293c-18.665 13.999-24.637 30.557-21.948 31.455 4.147 1.383 20.745-15.871 26.789-16.939 2.938-.518 20.394-9.85 20.394-9.85'/%3e%3cpath d='M218.164 295.533c3.171 0-12.948 5.621-16.376 14.423'/%3e%3cpath d='M220.131 287.724c-20.394 2.419-56.17-19.357-56.861-17.456-8.879 10.401 29.554 27.826 38.022 26.961l30.072 1.901'/%3e%3cpath d='M228.184 293.577s-24.686.246-35.93-4.886'/%3e%3cpath d='M284.156 290.157s0-11.488-5.621-11.977c0 0-12.71-.976-26.886 1.467-32.424-19.357-7.024-44.221-11.489-52.795-1.466-13.198-23.219-32.997-23.219-32.997-2.2 1.957.443 14.277-1.223 13.444-4.399-2.199-1.686 7.485-2.933 10.021-4.155-1.466-3.942 4.823-2.933 9.532-3.422.49-2.201 6.355-1.467 10.511-6.71-3.691 2.031 10.464-.245 10.02-10.265-1.467 1.467 9.778 1.467 9.778-5.866 2.2-3.126 6.563.979 8.31-5.134 3.666.121 9.519 1.954 9.778-4.644 2.443.524 5.976 3.177 8.554-4.155 3.911 3.422 5.581 7.09 7.087-2.934 4.644.515 5.648 3.665 7.088-1.955 3.666 2.856 3.394 5.865 2.935-3.665 3.91 2.445 5.621 4.889 5.13 0 0 1.304 5.074 5.623 3.179-1.221 3.913 7.578 3.423 7.578 3.423 0 3.914 12.954 2.445 12.954 2.445'/%3e%3cpath d='M221.087 223.77s2.689 7.088 5.866 7.088m-10.744-23.804s3.421 11.978 6.599 11.978m-9.532-2.69s.978 7.821 4.154 7.821m-7.576 2.2s2.689 7.088 5.865 7.088m-7.577 3.177s2.934 6.355 6.111 6.355m-5.866 3.911s4.889 7.821 8.065 7.821m-7.087 2.69s5.132 4.4 8.31 4.4m-7.089 3.909s5.132 4.4 8.31 4.4m-7.087 4.644s7.576 3.666 10.754 3.666m-7.333 4.889s8.555.734 11.732.734m-4.757 6.283s7.173-.304 10.349-.304m-6.2 7.218s6.136-1.688 10.004-.304m-4.301 4.278s6.134-1.689 10.004-.304m-5.511 4.97s5.963-.82 10.176-2.551m-4.126 5.663s2.504.732 6.719-.994m.54 4.103s2.16-.13 6.375-1.856m24.026-120.433c-5.011-9.505-10.198-8.468-10.198-8.468-2.591 0-3.456 1.728-6.394 1.728-3.63 0-2.765-3.803-2.765-3.803' fill='none'/%3e%3cpath fill='%23000' stroke='none' d='M272.137 181.521c-1.037 4.494-4.338 5.366-4.338 5.366s.716 4.289 3.474 4.485c5.065.907 6.719-3.649 4.32-7.605-.862-1.037-3.456-2.246-3.456-2.246'/%3e%3cpath stroke='none' d='M275.279 186.708c.164.554-.675 1.33-1.875 1.731-1.2.404-2.306.279-2.47-.276l-.001-.003c-.164-.555.676-1.33 1.875-1.732 1.201-.401 2.306-.277 2.471.277v.003'/%3e%3cpath fill='none' d='M206.061 373.022c-1.589 2.566 5.745 3.248 7.7.244 0 4.156 5.665 4.314 7.699 2.322.855 2.689 4.813 2.003 7.333-.489.428 1.16 4.014 3.647 5.339 3.17 2.59-.934 12.71-15.254 14.909-16.475m-53.271 31.175s11.623-11.319 19.226-17.367m-15.251 21.515s15.289-14.13 22.894-20.179m-8.203 17.414s10.156-10.464 17.76-16.512m-27.871-4.548s11.356-13.535 18.961-19.584m-10.099 19.944s9.546-10.953 20.45-18.711m-11.747 20.345s4.499-8.628 18.214-19.196m-11.248 19.075s5.22-9.049 14.658-15.831m-15.253 17.043c-7.778 7.95-14 13.309-14 13.309m2.768-12.617c-7.779 7.95-15.727 14.345-15.727 14.345m8.121-16.592c-7.778 7.95-9.851 8.643-9.851 8.643m17.488-35.853c-1.59 2.566 2.004 8.781 9.663 5.086-2.42 6.402 1.171 4.66 6.145 2.324-1.392 5.452 4.813 2 7.331-.49.427 1.161.557 3.995 2.919 4.21 2.743.249 5.623-7.651 7.824-8.871m-24.471 2.943 13.889-12.731m-21.279 13.4 6.761-10.289m6.872 11.744 8.338-9.151m-1.109 8.957 4.392-4.809m-17.801 6.22c-1.729 1.902-5.704 4.84-5.704 4.84m13.135-2.937c-3.803 2.938-7.085 6.05-7.085 6.05m19.184-3.113c-7.778 7.95-6.049 5.876-6.049 5.876m1.9-9.16c-3.803 2.939-6.049 5.185-6.049 5.185m13.826-24.542c-11.061 13.827 4.84 2.765 4.84 2.765m-19.092 3.824s-6.486 1.188.945-7.799m11.58-6.567-2.074 3.284m-.352-94.299c-1.955 5.621 3.423 11.244 3.423 11.244m-7.578-8.066c-1.956 5.621 7.086 14.909 7.086 14.909m-8.799-5.378c-1.954 5.623 8.066 10.266 8.066 10.266m-3.665 3.911c.489 4.155 7.821 3.177 7.821 3.177m-18.282-48.787s.624 4.735 2.939 11.235c-3.63 3.629-4.32 9.159-4.32 9.159m-11.143-17.462s2.689 7.088 5.866 7.088m-7.421 1.728s2.689 7.088 5.866 7.088m-8.804.343s3.38 4.669 6.557 4.669m-5.348 4.664s3.381 4.669 6.559 4.669m-4.139 5.182s3.726.866 6.903.866m-4.656 6.047s.787.175 3.965.175m-.163-48.912s-.423 3.978 2.756 3.978m.948 59.408s3.972-.463 3.272-3.561m-9.148-1.968s6.91-2.019 6.213-5.117m8.305 18.596s1.208-8.066.509-11.166m8.997 17.562s-1.213-10.66-3.639-12.031m14.181 14.622c-2.591-8.986-6.051-13.079-8.478-13.932m18.676 13.415c-2.592-8.987-9.509-12.387-11.936-13.241m24.033 13.584c-2.592-8.986-9.506-12.387-11.934-13.238m3.471 25.212c-9.333 3.456-13.653 11.925-13.653 11.925m1.102-125.862c-2.445 0-3.178 1.466-3.178 1.466m-4.888 12.954c-1.037 2.938 2.23 6.975 1.711 6.111m-1.55-29.802c-2.421 0-2.594 4.666-2.594 4.666m15.73 35.776 3.456 4.494m-1.729 8.641 3.629 4.147m11.58 9.852 4.321 4.667'/%3e%3cpath fill='%23000' stroke='none' d='M304.346 270.347s2.054 5.674 3.519 6.162c0 0 1.666.56 2.766-.172 1.001-.668 0-2.075 0-2.075-1.342-1.955-6.285-3.915-6.285-3.915m-8.745 2.846s-.339 6.024.819 7.049c0 0 1.313 1.17 2.611.926 1.184-.221.815-1.908.815-1.908-.47-2.326-4.245-6.067-4.245-6.067m5.988 21.264s-.338 6.024.82 7.05c0 0 1.313 1.167 2.611.926 1.181-.222.814-1.909.814-1.909-.47-2.326-4.245-6.067-4.245-6.067m14.788 6.038-.13.301h-.329a.697.697 0 0 1-.527-.246c-.636-.721-.359-3.964-.116-5.977-.627-.818-2.075-2.852-1.885-3.942a.943.943 0 0 1 .43-.658l.317-.198.28.248c.368.326 3.603 3.232 3.83 4.825.133.922-1.398 4.555-1.87 5.647zm-32.675 17.667c-1.099 0-2.07 3.32-1.346 4.689 0 0 .816 1.555 2.118 1.785 1.185.209 1.434-1.5 1.434-1.5.377-2.343-.002-4.974-2.206-4.974m-6.604 48.563c-.472.821-2.362 1.968-2.735 2.189l-.294.174-.27-.211c-.673-.529-.293-1.921 1.128-4.138.006-.99.106-3.571.945-4.327a.947.947 0 0 1 .745-.253l.372.039.067.367c.089.485.845 4.767.042 6.16zm-15.52 4.521c-.273.477-.762.633-1.26.633-.436 0-.878-.119-1.191-.249l-.116-.068c-.819-.641-.438-2.657-.216-3.561.001-.916.081-3.635.945-4.413a.948.948 0 0 1 .744-.253l.349.037.083.341c.25 1.016 1.454 6.154.662 7.533zm12.832-23.586c-.285.494-.774.637-1.241.637-.569 0-1.107-.211-1.208-.253l-.118-.068c-.839-.658-.42-2.752-.201-3.622.176-.507 1.055-2.805 2.531-2.649l.384.041.058.382c.062.419.592 4.144-.205 5.532zm20.046-17.399s-2.435 5.519-1.714 6.886c0 0 .817 1.558 2.119 1.786 1.185.209 1.433-1.5 1.433-1.5.38-2.342-1.838-7.172-1.838-7.172m-7.096 14.258c-3.62 1.194-4.38 5.486-4.112 7.005 0 0 .3 1.732 1.467 2.351 1.064.565 1.825-.986 1.825-.986 1.08-2.114 3.386-6.414.82-8.37m-19.551-21.318c-2.441 1.646-2.449 3.084-2.465 4.629 0 0-.022 1.756 1.013 2.58.943.747 4.174-.638 4.174-.638 1.448-1.879-2.6-1.928-2.722-6.571m26.152-23.586c-2.441 1.646-2.448 1.371-2.464 4.626 0 0 .832 2.614 1.869 3.436.94.748 1.974-1.614 1.974-1.614 1.449-1.877.699-5.838-1.379-6.448m17.972 13.049c-1.1 0-2.07 3.32-1.347 4.686 0 0 .818 1.556 2.119 1.786 1.185.21 1.434-1.499 1.434-1.499.376-2.343-.003-4.973-2.206-4.973m-7.578 9.409c-1.571 5.08-3.413 6.621-2.691 7.988 0 0 1.794.455 3.096.684 1.185.211 1.432-1.497 1.432-1.497.381-2.344-1.471-1.676-1.837-7.175m-42.775 59.174c-1.1 0-2.07 3.319-1.347 4.686 0 0 .816 1.555 2.119 1.785 1.185.209 1.432-1.499 1.432-1.499.38-2.341-.001-4.972-2.204-4.972'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 938.5 0)'/%3e%3cg id='b' fill='%23EACE24' stroke='%23806600'%3e%3cpath d='M462.575 214.875c.309-2.981.144-8.604-1.376-11.159-.514-.862-1.772-1.869-2.755-1.826-.966.043-2.298.336-2.753 1.216-.417.808-.689 2.541-.59 3.45.137 1.264 1.572 3.854 1.572 3.854s-5.142-1.064-6.884-2.434c-1.721-1.356-3.581-3.925-4.13-6.088-.189-.74-.924-3.139.005-6.017.539-1.67 2.159-3.905 3.415-5.018 3.276-2.909 9.636-2.064 10.939-1.341 1.719.957 3.816 2.991 4.522 4.87.549 1.459 1.689 5.766 1.967 7.305.568 3.137.734 4.323.983 7.506.171 2.185.645 4.146.196 6.29-.241 1.155-.541 3.804-1.196 5.549-.658 1.754-1.67 2.604-2.541 3.379-1.78 1.585-7.473 2.435-7.473 2.435s3.128-4.073 3.933-5.884c.959-2.153 1.924-3.732 2.166-6.087m13.947 0c-.308-2.981-.144-8.604 1.376-11.159.514-.862 1.774-1.869 2.755-1.826.966.043 2.296.336 2.753 1.216.419.808.69 2.541.59 3.45-.139 1.264-1.574 3.854-1.574 3.854s5.144-1.064 6.886-2.434c1.721-1.356 3.579-3.925 4.129-6.088.189-.74.924-3.139-.005-6.017-.539-1.67-2.161-3.905-3.414-5.018-3.277-2.909-9.639-2.064-10.94-1.341-1.721.957-3.818 2.991-4.524 4.87-.549 1.459-1.688 5.766-1.967 7.305-.568 3.137-.733 4.323-.983 7.506-.173 2.185-.646 4.146-.197 6.29.243 1.155.544 3.804 1.197 5.549.656 1.754 1.67 2.604 2.541 3.379 1.779 1.585 7.474 2.435 7.474 2.435s-3.129-4.073-3.934-5.884c-.955-2.153-1.919-3.732-2.163-6.087'/%3e%3cpath d='M469.513 237.02s4.594-3.887 5.356-8.286c.683-3.958-2.362-8.591-2.594-10.455-.921-7.454 1.034-17.384 1.21-18.195.701-3.224 1.581-4.604 2.051-5.66.339-.76 1.304-2.271 2.269-3.735.554-.841 1.787-2.406 2.416-3.999.666-1.687.71-3.405.721-4.321.016-1.561-.271-2.89-.673-4.161-.381-1.209-1.626-3.186-3.429-4.323-1.944-1.226-3.515-2.211-4.114-2.601-1.975-1.289-3.191-5.528-3.215-5.528s-1.24 4.238-3.215 5.528c-.598.39-2.098 1.375-4.043 2.601-1.802 1.136-3.048 3.114-3.427 4.323-.403 1.271-.689 2.6-.671 4.161.009.916.054 2.634.721 4.321.628 1.592 1.861 3.156 2.416 3.999.966 1.464 1.93 2.975 2.268 3.735.47 1.056 1.351 2.436 2.051 5.66.176.811 2.132 10.741 1.209 18.195-.231 1.864-3.348 6.497-2.664 10.455.762 4.398 5.357 8.286 5.357 8.286'/%3e%3cpath d='m479.837 213.11-2.213-3.16h-16.145l-2.218 3.16 2.218 3.144h16.146l2.212-3.144z'/%3e%3c/g%3e%3cuse xlink:href='%23b' x='-86.94'/%3e%3cuse xlink:href='%23b' x='86.94'/%3e%3cg id='c'%3e%3cpath fill='%23EACE24' stroke='%23806600' stroke-miterlimit='10' d='M445.151 439.394h48.684v11.395h-48.684v-11.395zm-.002-2.479c-.081-10.701-1.586-21.734-6.15-31.13a6.23 6.23 0 0 1 8.016 5.969c0 .854-.169 1.663-.479 2.401a6.233 6.233 0 1 1 2.634 11.882c-.446 0-.882-.05-1.302-.138.467 4.205 2.625 7.391 5.216 7.391 2 0 3.74-1.897 4.647-4.696.905 2.799 2.648 4.696 4.647 4.696 2.785 0 5.069-3.681 5.291-8.356a6.186 6.186 0 0 1-3.533 1.103 6.231 6.231 0 0 1-.048-12.464 6.23 6.23 0 0 1 5.405-9.331 6.231 6.231 0 0 1 5.405 9.331 6.232 6.232 0 0 1-.047 12.464 6.19 6.19 0 0 1-3.534-1.103c.221 4.675 2.506 8.356 5.293 8.356 2 0 3.741-1.897 4.647-4.696.906 2.799 2.646 4.696 4.646 4.696 2.593 0 4.749-3.186 5.218-7.391a6.232 6.232 0 0 1-7.534-6.092 6.232 6.232 0 0 1 8.864-5.652 6.23 6.23 0 0 1 7.538-8.37c-4.565 9.396-6.069 20.429-6.151 31.13h-48.689z'/%3e%3cpath fill='%23806600' d='m470.924 419.776 6.634-1.04-6.97-1.095-1.095-6.969-1.091 6.969-6.971 1.095 6.635 1.04h2.858zm-25.994 21.493a.98.98 0 0 1 .927.639l1.149 2.526a.991.991 0 0 1-.001.814h.001l-1.173 2.579a.989.989 0 0 1-.904.582l.001-7.14zm.573-19.736 6.361-2.151-7.054.103-2.26-6.681 1.696 8.401 1.257.328z'/%3e%3cpath fill='%23806600' d='M443.709 418.248h.067c.063.004.115.01.158.014a.701.701 0 0 1 .351.141l.003.004.005.004c.119.087.231.18.334.276l.034.038c.109.102.206.202.286.301l.034.042c.489.613.783 1.391.783 2.235h.004v.009h-.004c0 .325-.042.632-.121.92l-.009.03-.03.1-.019.056-.004.008-.004.009a3.512 3.512 0 0 1-.278.628.696.696 0 0 1-.252.256h.001l-.006.004-.004.001-.005.005c-.046.026-.1.057-.165.092l-.13.063a68.768 68.768 0 0 0-1.16-5.232l.042-.003v-.001h.005c.029 0 .055.001.084.004v-.004z'/%3e%3cpath fill='%23FF8080' d='m464.851 444.943 4.365-2.579 4.365 2.579-4.365 2.579-4.365-2.579z'/%3e%3cpath fill='none' stroke='%239E7800' stroke-linejoin='round' d='m464.851 444.943 4.365-2.579 4.365 2.579-4.365 2.579-4.365-2.579z'/%3e%3cpath fill='%23FF8080' d='m464.851 444.943 4.365-2.579 4.365 2.579-4.365 2.579-4.365-2.579z'/%3e%3cpath fill='%23BA0028' d='m473.581 444.943-4.289 2.534-.076.045v-2.579h4.365z'/%3e%3cpath fill='%23CF1E45' d='M469.216 444.943v2.579l-4.366-2.579h4.366z'/%3e%3cpath fill='%23FF083C' d='M469.216 442.361v2.581h4.365l-.103-.061-3.95-2.334-.312-.186z'/%3e%3cpath fill='%23F9C' d='m442.574 444.852 2.577-2.578 1.174 2.578-1.174 2.579-2.577-2.579z'/%3e%3cpath fill='red' d='M442.574 444.852h3.751l-1.174 2.579-2.577-2.579z'/%3e%3cpath fill='%23CCC' d='M443.626 418.944c.077 0 .153.004.229.014a2.876 2.876 0 0 1 .837 3.76 2.03 2.03 0 0 1-1.066.304 2.04 2.04 0 1 1 0-4.078'/%3e%3cpath fill='none' stroke='%239E7800' d='M443.626 418.944c.077 0 .153.004.229.014a2.876 2.876 0 0 1 .837 3.76 2.03 2.03 0 0 1-1.066.304 2.04 2.04 0 1 1 0-4.078z'/%3e%3cpath fill='%23FFF' d='M442.649 419.753a.975.975 0 0 1 0 1.948.974.974 0 1 1 0-1.948'/%3e%3cpath fill='%23806600' d='m493.485 421.533-6.36-2.151 7.051.103 2.26-6.681-1.695 8.401-1.256.328z'/%3e%3cpath fill='%23806600' d='M495.281 418.248h-.07c-.06.004-.114.01-.156.014a.694.694 0 0 0-.35.141l-.004.004-.004.004c-.119.087-.231.18-.334.276l-.037.038a2.998 2.998 0 0 0-.284.301l-.034.042a3.571 3.571 0 0 0-.785 2.235h-.001v.009h.001c.001.325.045.632.124.92l.011.03.028.1c.005.02.012.038.019.056l.004.008.004.009c.074.219.166.434.279.628.06.11.149.194.251.256l.004.004.006.001.004.005c.046.026.1.057.165.092l.129.063a68.772 68.772 0 0 1 1.161-5.232l-.042-.003v-.001h-.006a.813.813 0 0 0-.084.004l.001-.004z'/%3e%3cpath fill='%23CCC' d='M495.365 418.944c-.079 0-.158.004-.232.014a2.876 2.876 0 0 0-.837 3.76 2.038 2.038 0 0 0 3.105-1.735 2.039 2.039 0 0 0-2.036-2.039'/%3e%3cpath fill='none' stroke='%239E7800' d='M495.365 418.944c-.079 0-.158.004-.232.014a2.876 2.876 0 0 0-.837 3.76 2.038 2.038 0 0 0 3.105-1.735 2.039 2.039 0 0 0-2.036-2.039z'/%3e%3cpath fill='%23FFF' d='M495.723 419.368a.974.974 0 1 0 0 1.947.974.974 0 0 0 0-1.947'/%3e%3cpath fill='%23806600' d='M494.059 441.269a.988.988 0 0 0-.929.639l-1.149 2.526a.987.987 0 0 0 .003.814h-.003l1.173 2.579a.99.99 0 0 0 .905.582v-7.14z'/%3e%3cpath fill='%23FF083C' d='m496.415 444.852-2.579-2.578-1.174 2.578 1.174 2.579 2.579-2.579z'/%3e%3cpath fill='%23BA0028' d='M496.415 444.852h-3.753l1.174 2.579 2.579-2.579z'/%3e%3ccircle fill='%23CCC' stroke='%239E7800' stroke-width='.5' cx='469.496' cy='418.747' r='2.287'/%3e%3ccircle fill='%23FFF' cx='469.085' cy='418.041' r='.975'/%3e%3ccircle fill='%23CCC' stroke='%239E7800' stroke-width='.5' cx='458.079' cy='442.665' r='1.668'/%3e%3ccircle fill='%23FFF' cx='457.793' cy='442.174' r='.677'/%3e%3ccircle fill='%23CCC' stroke='%239E7800' stroke-width='.5' cx='458.079' cy='447.518' r='1.668'/%3e%3ccircle fill='%23FFF' cx='457.793' cy='447.026' r='.677'/%3e%3ccircle fill='%23CCC' stroke='%239E7800' stroke-width='.5' cx='481.16' cy='442.665' r='1.668'/%3e%3ccircle fill='%23FFF' cx='480.874' cy='442.174' r='.677'/%3e%3ccircle fill='%23CCC' stroke='%239E7800' stroke-width='.5' cx='481.16' cy='447.518' r='1.668'/%3e%3ccircle fill='%23FFF' cx='480.874' cy='447.026' r='.677'/%3e%3c/g%3e%3cuse xlink:href='%23c' x='-49.151' y='-55.104'/%3e%3cuse xlink:href='%23c' x='49.151' y='-55.104'/%3e%3c/svg%3e\"},9704:c=>{c.exports=\"data:image/svg+xml,%3csvg viewBox='0 0 1000 500' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 0h1000v500H0z' fill='%23c8102e'/%3e%3cpath d='M0 0h500v250H0z' fill='%23012169'/%3e%3cpath d='M0 0v27.95L444.1 250H500v-27.95L55.9 0zm500 0v27.95L55.9 250H0v-27.95L444.1 0z' fill='%23fff'/%3e%3cpath d='M208.333 0v250h83.334V0zM0 83.333v83.334h500V83.333z' fill='%23fff'/%3e%3cpath d='M0 100v50h500v-50zM225 0v250h50V0zM0 250l166.667-83.333h37.266L37.267 250zM0 0l166.667 83.333H129.4L0 18.633zm296.067 83.333L462.733 0H500L333.333 83.333zM500 250l-166.667-83.333H370.6l129.4 64.7z' fill='%23c8102e'/%3e%3cpath d='M865.361 106.664v211.737c0 56.557-113.062 74.933-113.062 74.933s-113.062-18.376-113.062-74.933V106.664z' fill='%23fff'/%3e%3cpath d='M865.361 318.401c0 56.557-113.062 74.933-113.062 74.933s-113.062-18.376-113.062-74.933c0 0 0-4.555 2.301-7.145 0 0-1.246 9.407 5.981 16.522 0 0-5.669-10.037-.125-19.901 0 0-2.056 12.691 5.856 19.979 0 0-4.361-10.367.561-21.927 0 0-2.43 18.911 6.168 22.681 0 0 2.367-10.869-1.059-17.843 0 0 5.919 2.387 5.607 18.157 0 0 1.869-2.325 2.367-13.697 0 0 .249 13.005 4.735 16.021 0 0 1.371-1.319-.498-7.225s.81-7.979 1.246-7.854c0 0-.983 6.534 4.493 11.435 0 0-2.374-10.241.928-11.623 0 0-.685 8.67 6.168 10.618 0 0 .498-2.513-.997-5.34 0 0-1.308-3.353-.312-5.918 0 0 2.181 7.865 5.171 9.185 0 0-1.807-4.61-.125-9.185 0 0 .374 6.546 6.23 9.247 0 0-3.858-5.067-2.334-10.639l37.659 1.843 19.501.93 58.502-4.134 10.093-8.67s3.987 5.529-2.305 14.262c0 0 6.23-1.131 8.224-10.869 0 0 2.554 5.403-.935 11.372 0 0 6.916-6.911 7.912-14.765 0 0 2.679 7.602-3.863 15.77 0 0 5.856-1.948 8.349-10.618 0 0 1.994 5.222-3.676 12.601 0 0 10.591-5.627 10.28-17.25 0 0 4.423 6.408-.623 15.204 0 0 5.42-4.838 5.919-12.063 0 0 2.991 3.267-.249 12.251 0 0 6.604-6.22 7.601-12.943 0 0 1.433 6.22-4.237 14.073 0 0 3.863-.942 7.539-8.607 0 0 .997 3.016-2.367 8.545 0 0 3.614-.628 6.043-7.539 0 0 .436 4.147-.623 7.854 0 0 2.804-1.822 3.427-9.676 0 0 1.566 2.576 1.593 5.78.025 3.205-.002 1.101-.002 1.101z' fill='%232f8f22'/%3e%3cg stroke='%23000'%3e%3cpath d='M807.139 195.999s-3.929.668-8.975-.87c-5.046-1.537-7.086-.913-8.652 0 0 0 2.048-4.055-2.936-7.257 0 0 1.62 4.094-.623 6.006 0 0-.997.938-2.181-.475 0 0-1.744-1.791-3.582-3.173 0 0 4.237-1.476 3.458-5.78s-3.084-4.869-4.33-5.403c0 0 .436 1.948 0 3.267 0 0-4.61-2.576 1.651-6.22s5.109-5.78 3.987-7.634c-1.121-1.853-3.52-3.895-4.704-4.618 0 0 1.246 1.948 1.028 3.613s-3.053 2.733-2.492-.188c.561-2.922-.031-2.419-.094-5.529 0 0 5.576 1.885 7.757-3.55 0 0 2.149-5.623-4.891-8.419 0 0 1.713 2.293.872 4.021 0 0-1.495 2.827-3.271.534s-2.897-2.733-2.71-5.435c0 0 6.386.88 4.642-6.063 0 0-1.028 4.618-9.314-1.602 0 0 5.389-5.529 3.302-9.99 0 0-.654-2.042-6.511-.848 0 0 5.078-3.204 2.928-5.937 0 0-1.09-1.822-5.825.565 0 0 1.838-3.173-2.804-6.597 0 0-3.115 1.634-4.766 3.141 0 0-3.177-4.021-5.202-5.623 0 0-3.676 1.414-4.61 5.623 0 0-1.713-2.042-5.607-2.984 0 0-1.869 3.456.561 6.471 0 0-1.807-.063-5.109-1.508 0 0-3.769-1.791-3.209 1.445s.841 3.958 1.589 5.466c0 0-8.458-1.964-8.099 2.607.249 3.173 1.433 5.906 4.05 8.199 0 0-4.735 6.189-8.785 1.539 0 0-1.402 1.508 1.62 5.466 0 0 3.022 3.33.53 5.435 0 0-3.333 2.67-4.953-2.513 0 0-5.389 5.372.966 9.487 0 0 4.081 2.325 8.255-1.257 0 0-1.277 10.304-5.265 8.325 0 0-2.399-1.759 1.9-3.864 0 0-6.199-.785-7.196 5.215 0 0-.765 4.774 4.641 6.503 0 0 4.174 1.508-.156 4.744 0 0-3.053 2.325-1.059 5.78 0 0 2.399 3.801-3.676 4.178 0 0-3.302-.031-4.486-.471 0 0-1.332 2.477-.401 5.307 0 0-3.025-2.254-9.91.24-6.884 2.495-6.355.736-6.916 1.49s-1.9 3.298-1.9 3.298 3.614 4.398 3.676 4.304-.685 5.026-.685 5.026l1.776.848 14.174-6.314 14.392-7.5 11.571.709 7.338 1.747 9.639.702 6.903-3.682h9.999l10.998 5.48 12.552 7.489 6.542 1.147 5.04-.269v-10.166z' fill='%23c8102e' stroke-linejoin='round' stroke-width='.831'/%3e%3cpath d='M692.974 207.886s5.483 2.796 7.772-.597c0 0 2.991-5.702-3.575-7.681 0 0 3.575-4.288-.257-8.246 0 0-2.009-2.12-5.514-.565 0 0-1.449-3.016-4.86-2.922 0 0-2.99-.047-4.018 3.251 0 0-4.112-1.696-6.402.754 0 0-3.785 4.241 1.495 7.587l3.8.346 3.738-1.728 4.174 1.194c.003-.001-1.072 4.225 3.647 8.607z' fill='%23c8102e' stroke-linejoin='round' stroke-width='.831'/%3e%3cpath d='M815.359 197.859c6.605-.622 8.937 4.952 8.937 4.952 3.462 8.122-3.89 12.458-3.89 12.458.561 1.822.623 4.209.623 4.209 10.342 1.257 8.534 12.88 8.534 12.88l-3.425-2.827c-5.981-2.325-12.149 2.764-16.572 11.309s-2.305 12.566-1.558 22.681c.748 10.115 17.195 16.147 17.195 16.147s-7.788 20.042-12.834 32.922-15.576 7.539-18.628 4.826c-3.053-2.713-3.816-1.206-5.358 0s6.916 7.802-8.473 14.022-18.068 10.995-20.622 12.566-13.208.503-14.267-.817c-1.059-1.319-.436-1.319-4.423-3.77-3.987-2.45-10.716-4.586-18.068-8.168-7.352-3.581-7.165-8.168-7.102-9.11.062-.942 2.554-8.607-6.056-2.513s-15.937-2.902-15.937-2.902c-1.682-2.211-8.847-21.412-8.847-21.412-1.931-7.162-5.732-15.519-5.732-15.519.187-.063-.374.88 5.981-2.764s9.201-9.707 11.401-15.707.062-16.272-.748-18.346c-.81-2.073-5.545-11.579-11.408-13.571s-9.795 2.953-9.795 2.953-1.809-11.623 8.534-12.88c0 0 .062-2.387.623-4.209 0 0-7.352-4.335-3.89-12.458 0 0 2.332-5.574 8.937-4.952l-1.598 3.022s-1.663 16.587 22.616 5.466 23.55-13.194 37.381-6.22l10.093-.188s14.579-6.744 19.251-3.843c4.673 2.901 21.494 12.325 21.494 12.325s16.261 6.098 19.438-5.15z' fill='%2364b4d1' stroke-width='.623'/%3e%3c/g%3e%3cpath d='M742.31 269.772s-.844-5.091-1.731-8.388c0 0-1.802-5.174 1.272-8.806l3.812-4.387s2.369-3.187 5.302-3.62c0 0 2.933-.087 3.213-.684s3.489-5.877 11.121 0c0 0 2.43-3.895 6.168-4.555 0 0 4.038-1.225 5.991 1.791 0 0 4.538-3.441 8.432 2.097 0 0 5.389-3.031 9.314 2.996 0 0 5.327-2.598 8.598 2.94s2.617 7.8 2.617 7.8l2.428 8.796 8.6 10.618-19.999 7.539h-8.971l-17.943 4.806-31.867 2.45-8.878-10.461z' fill='%23fff' stroke='%23012169' stroke-miterlimit='10' stroke-width='.831'/%3e%3cg stroke='%23000' stroke-width='.831'%3e%3cpath d='M715.374 322.736s-4.766.283-7.196 1.508-4.299 2.545-7.102 4.335c0 0-1.308 1.743-6.822.683 0 0-9.532-2.285-9.532 5.16 0 0-11.401.942-6.729 10.932 0 0 3.177 7.822 9.719 2.262 0 0-4.205 6.031 3.925 8.388 0 0 5.794 1.414 7.476-4.524 0 0 .935-2.356-1.308-5.278 0 0 2.804-.565 4.766-3.581 0 0-5.981 7.559.561 10.282 0 0 8.221 2.063 8.69-6.513 0 0-.671-3.958 2.515-5.372 0 0 6.551-1.508 9.541-8.812.001.001-9.419-5.016-8.504-9.47zm-19.247-75.168s-7.352-3.386-10.841 0c0 0-4.86-3.009-9.968 0 0 0-4.86 3.176-8.224 6.674 0 0-2.367 2.027-1.495 8.417 0 0 1.246 4.505.498 6.767 0 0-1.62-.321-4.86 3.518 0 0-4.112 4.762-7.725.559 0 0 1.121 5.85 7.912 4.907 0 0-3.302 2.576-.436 9.236 0 0 2.118 4.712-1.246 10.618 0 0 5.919-2.387 5.669-9.361 0 0-.498-4.712 1.246-8.042 0 0-1.744 3.028 2.305 9.487 0 0 3.115 4.649.561 9.487 0 0 5.856-2.136 5.296-9.236s-4.112-4.147-1.807-10.681c0 0 .561 3.347 2.305 5.035s3.987 4.515 3.053 9.227c0 0 3.489-4.335 2.679-8.796s-1.682-5.81-1.682-5.81l11.027-6.253 5.483-9.927z' fill='%23c8102e' stroke-linejoin='round'/%3e%3cpath d='M679.368 275.583s-4.548-.314-5.296-3.833m-7.975-2.324s1.585-.063 3.018 1.382c0 0 1.094 1.634 2.652 1.445' fill='none' stroke-miterlimit='10'/%3e%3c/g%3e%3cpath d='M686.096 262.201s-2.367 0-3.676-1.131c0 0-1.371-.942-2.181.565 0 0-1.246 2.136 1.059 3.079 0 0 2.866 1.445-1.682 4.335 0 0 5.42-1.948 3.24-4.586 0 0-2.367-1.696-1.495-2.325 0 0 .249-.503 1.184.126.935.628 2.804.377 3.551-.063z'/%3e%3cpath d='m760.408 274.204-18.218-62.913-.667.179 16.098 63.676z' fill='%23784421' stroke='%23000' stroke-width='.623'/%3e%3cpath d='M696.964 344.785s-4.299-2.415-7.85.412c0 0 .363-1.571 3.079-2.262 0 0 1.47-4.147 5.581-3.77 0 0-1.682 2.01-3.925 3.707 0 0 2.368.245 3.115 1.913z'/%3e%3cpath d='M681.825 354.778s-6.822-4.288-3.131-11.498c0 0 1.075-2.073 3.131-1.649 0 0 4.252 1.319.935 7.21-.001 0-1.683 3.817-.935 5.937zm13.831 6.786s-9.719-4.429-6.729-11.969c0 0 .924-2.545 3.079-2.356 0 0 3.748.188 2.998 5.183 0 0-1.124 4.901.652 9.142z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M693.6 333.427s-2.92 2.157-4.108 3.602c0 0-1.188-1.476-2.745-2.372 0 0 1.793-.236 2.745.571 0 0 1.491-1.445 4.108-1.801z'/%3e%3cpath d='M702.244 359.679s7.616-1.932 6.215-9.801c0 0-.748-3.44-3.972-2.969 0 0-3.885.992-1.355 5.994 0 0 1.495 3.572-.888 6.776z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M736.656 193.201s4.906 1.504 7.57 2.59c0 0 7.102 3.204 16.121 0 0 0 6.099-2.415 6.912-2.59l-4.67 7.114-.234 3.675 2.922 4.288s-1.753.707-6.987-2.498c0 0-5.794-4.476-12.71 0 0 0-3.785 2.564-6.962 2.498l4.486-5.009-1.729-4.51z' fill='%23f5ce00' stroke='%23000' stroke-miterlimit='2.613' stroke-width='.831'/%3e%3cpath d='M705.188 350.278s.28-.377-.047-.542c0 0-.327-.141-.561.318 0 0-.794 1.26-.122 2.986 0 0 .636 1.196.327 2.445 0 0-.042.353.239.401 0 0 .269-.094.321-.353 0 0 .38-1.219-.274-2.412.001-.001-.794-1.853.117-2.843z' fill='%23fff'/%3e%3cg stroke='%23000'%3e%3cpath d='M810.687 207.886s-5.483 2.796-7.772-.597c0 0-2.99-5.702 3.575-7.681 0 0-3.575-4.288.257-8.246 0 0 2.009-2.12 5.514-.565 0 0 1.449-3.016 4.86-2.922 0 0 2.99-.047 4.018 3.251 0 0 4.112-1.696 6.401.754 0 0 3.785 4.241-1.495 7.587l-3.8.346-3.738-1.728-4.174 1.194c-.002-.001 1.073 4.225-3.646 8.607z' fill='%23c8102e' stroke-linejoin='round' stroke-width='.831'/%3e%3cpath d='M767.262 203.457s-.138 1.131-1.26 1.257c0 0-1.17.377-1.852-1.08 0 0-.079-.33-.097-.491-.078-.681-.311-2.639 1.807-4.241 0 0 3.458-2.827 10.062.597 0 0 5.233 2.513 8.847 4.649 0 0 9.345 5.026 10.467 5.403 0 0 4.112 2.073 10.404 2.325 0 0 8.598.628 12.242-5.403 0 0 2.772-4.586 0-7.508 0 0-1.121-1.319-2.965-1.076-.774.102-1.629.458-2.455 1.422 0 0-1.339 1.948.218 3.393 0 0 2.025 1.241 2.741-1.382 0 0 .031-.188.093.047.04.152.498 2.152-.576 3.848 0 0-5.187 7.849-19.454-.285l-18.815-10.553s-9.439-4.838-15.077 2.733c0 0-4.548 6.283 1.308 10.398 0 0 4.361 2.607 7.102-1.539 0 0 2.274-4.084-1.308-5.874 0 0-3.146-1.476-4.392 1.665s2.43 3.958 2.772 1.728c.001-.002.095-.536.188-.033z' fill='%23f5ce00' stroke-miterlimit='2.613' stroke-width='.831'/%3e%3cg stroke-width='.623'%3e%3cpath d='M692.68 235.844v-11.78c0-.925.007-1.696 1.408-2.827s2.897-2.922 5.046 2.168c0 0 4.205-4.429 5.607-5.089 0 0 2.43-2.073 4.112.942 0 0 2.243-3.393 4.018-4.241 0 0 4.205-2.733 4.392 5.466l3.271-3.016s2.523-2.073 5.327.754c0 0 4.766 4.618 5.42 5.937 0 0 1.052 1.429 1.133 3.683 0 0-.012 2.537 1.296 3.95 0 0 1.494 1.319 2.943 1.602 0 0 3.411.094 4.626 3.298 0 0 .561-.555 2.243 14.801v27.985l-18.878 22.524-30.279-8.67-12.055-4.995-2.71-8.859 11.682-7.539 6.355-17.152-2.056-12.063z' fill='%23e4cb5e' stroke-miterlimit='2.613'/%3e%3cpath d='m776.109 250.703 1.433-2.136 3.427-2.639s5.233 13.734 5.483 16.731v4.262s7.85 2.003 9.221 14.066l-6.479 11.937-10.155-5.655-2.928-2.136v-34.43z' fill='%23784421'/%3e%3c/g%3e%3c/g%3e%3cpath d='M679.932 345.001s.374-.495.117-.707c0 0-.164-.236-.607.33 0 0-2.064 2.307-.421 5.855 0 0 .187.506.514.341 0 0 .28-.141.023-.565.001 0-1.471-2.922.374-5.254z' fill='%23fff'/%3e%3cg stroke='%23000'%3e%3cpath d='M710.546 342.684s.311-1.068-.436-2.199c0 0-.498-.817-.312-1.885' fill='none' stroke-miterlimit='10' stroke-width='.831'/%3e%3cpath d='M717.265 220.483s.028 2.946.869 5.114 3.681 5.917 3.868 7.943' fill='none' stroke-miterlimit='10' stroke-width='.623'/%3e%3cpath d='M788.476 322.736s4.766.283 7.196 1.508 4.299 2.545 7.102 4.335c0 0 1.308 1.743 6.822.683 0 0 9.532-2.285 9.532 5.16 0 0 11.401.942 6.729 10.932 0 0-3.177 7.822-9.719 2.262 0 0 4.205 6.031-3.925 8.388 0 0-5.794 1.414-7.476-4.524 0 0-.935-2.356 1.308-5.278 0 0-2.804-.565-4.766-3.581 0 0 5.981 7.559-.561 10.282 0 0-8.221 2.063-8.69-6.513 0 0 .671-3.958-2.515-5.372 0 0-6.551-1.508-9.541-8.812 0 .001 9.419-5.016 8.504-9.47z' fill='%23c8102e' stroke-linejoin='round' stroke-width='.831'/%3e%3cg stroke-width='.623'%3e%3cpath d='m713.505 233.536 7.778 62.78m-5.981-62.916 8.723 58.519m-7.088-58.791 10.047 58.037' fill='none' stroke-miterlimit='10'/%3e%3cpath d='m735.613 285.227-18.219-62.913-.667.179 16.099 63.677z' fill='%23784421'/%3e%3cpath d='m722.511 230.823 18.398 46.488m-19.626-45.736 17.756 48.563' fill='none' stroke-miterlimit='10'/%3e%3c/g%3e%3c/g%3e%3cpath d='M692.136 357.103s-2.135-2.047-1.838-5.717c0 0 .125-.785-.267-.894 0 0-.418-.174-.48.737 0 0-.592 3.833 1.994 6.031 0 0 .176.22.462.157-.001 0 .305-.068.129-.314z' fill='%23fff'/%3e%3cg stroke='%23000'%3e%3cpath d='m723.341 230.192 18.969 42.407m-24.157-39.772 11.635 57.112' fill='none' stroke-miterlimit='10' stroke-width='.623'/%3e%3cpath d='M813.327 275.146c-8.31-4.715-10.132-15.176-10.132-15.176-2.009-10.414 2.056-18.66 2.056-18.66 5.374-11.356 14.582-13.469 14.582-13.469s-9.021 6.259-11.544 14.694c0 0-1.963 7.115-.841 14.136 1.121 7.021.701 5.23 2.43 10.649z' fill='%23f5ce00' stroke-miterlimit='2.613' stroke-width='.831'/%3e%3cpath d='m777.542 248.567-34.917 11.025-1.904 15.554c-8.286 12.003-25.124 14.133-25.124 14.133l13.1 13.948 25.17 5.278 13.208-10.178 11.962-11.058c-1.246-5.906-.561-14.67-.561-14.67 0-1.476.561-4.932.561-4.932s-2.056-14.199-1.495-19.1z' fill='%23784421' stroke-width='.38'/%3e%3cg fill='none' stroke-miterlimit='10' stroke-width='.623'%3e%3cpath d='M741.2 271.238s22.997-7.181 36.71-12.947m-47.749 26.056s28.69-5.183 48.876-16.68l7.414-5.008'/%3e%3cpath d='m786.451 266.921-7.975 5.678s-32.086 14.796-56.516 15.191m56.51-4.677s-24.665 12.701-38.808 12.89'/%3e%3c/g%3e%3cpath d='M807.883 247.568s7.352-3.386 10.841 0c0 0 4.86-3.009 9.968 0 0 0 4.86 3.176 8.224 6.674 0 0 2.367 2.027 1.495 8.417 0 0-1.246 4.505-.498 6.767 0 0 1.62-.321 4.86 3.518 0 0 4.112 4.762 7.725.559 0 0-1.121 5.85-7.912 4.907 0 0 3.302 2.576.436 9.236 0 0-2.118 4.712 1.246 10.618 0 0-5.919-2.387-5.669-9.361 0 0 .498-4.712-1.246-8.042 0 0 1.744 3.028-2.305 9.487 0 0-3.115 4.649-.561 9.487 0 0-5.856-2.136-5.296-9.236.561-7.1 4.112-4.147 1.807-10.681 0 0-.561 3.346-2.305 5.035-1.744 1.688-3.987 4.515-3.053 9.227 0 0-3.489-4.335-2.679-8.796s1.682-5.81 1.682-5.81l-11.027-6.253-5.483-9.927z' fill='%23c8102e' stroke-linejoin='round' stroke-width='.831'/%3e%3c/g%3e%3cpath d='M682.968 287.301s1.028-4.87 5.701-2.954c0 0 1.589-7.979 10.093-8.261 8.504-.283 8.971 8.293 8.971 8.859 0 0 2.498-3.682 6.669-3.255 0 0 7.191-.424 4.513 11.122l1.36 1.448s5.494-12.897 16.802-9.504c0 0 11.027 3.361 3.832 14.042 0 0 5.442 7.068 10.057 6.408s8.727-2.073 13.306-10.178 15.233-9.33 17.943-8.859 4.851 2.231 5.293 4.147c0 0 5.641-18.827 25.92-15.869l8.13 4.089 3.084 1.414-4.597 12.974-11.199 25.314-8.502 2.614-8.878-5.089-3.084 1.653-.252 7.582-11.71 8.429-8.13 3.351-8.971 6.126-2.087 5.476s-4.955-2.087-10.547 0l-1.851-4.533-5.233-4.995-20.33-9.59-3.673-11.846-3.711-1.653-4.154 4.758-6.074.708-9.065-6.126z' fill='%23fff' stroke='%23012169' stroke-miterlimit='10' stroke-width='.831'/%3e%3cg stroke='%23000'%3e%3cg stroke-miterlimit='2.613'%3e%3cg stroke-width='.831'%3e%3cpath d='M771.499 195.132s-7.759-.345-7.478 7.697' fill='none'/%3e%3cpath d='M822.54 280.562c-13.504-4.147-17.195-18.66-17.195-18.66-2.757-10.885 1.682-20.403 1.682-20.403 6.168-14.485 16.604-14.482 16.604-14.482 5.233-.141 5.861 4.335 5.861 4.335.494 3.173-1.733 4.319-1.733 4.319-3.582 1.948-5.841-.691-5.841-.691-1.495-1.948-.343-3.675-.343-3.675.919-1.288 2.679-.723 2.679-.723 1.394.432 1.246 2.175 1.246 2.175.008.047.039.047.039.047.062-.016.039-.039.039-.039s.311-2.136-1.776-2.356c0 0-4.065-.88-8.831 5.058 0 0-6.276 8.011-6.261 18.377 0 0-.794 19.461 19.485 24.503 0 0-2.196 3.157-6.074 14.56 0 0-4.392 14.655-8.585 22.578 0 0-5.574 11.302-18.003 6.684 0 0-7.401-3.251-7.383-8.623 0 0-.514-4.901 3.925-5.278 0 0 4.346-.33 4.299 3.393 0 0 .117 4.029-4.626 3.11 0 0-1.659-.353-1.355-1.979 0 0 .265-1.461 2.266-.825 0 0 .062.008.07-.024 0 0 .023-.035-.047-.055 0 0-.774-.346-1.592-.06 0 0-.733.244-.791 1.387 0 0-.047.919.935 1.437 0 0 1.192.424 2.126.33 0 0 1.257 2.537 4.101 3.397 3.959 1.197 7.22.044 9.216-1.548 2.171-1.732 3.575-4.759 3.995-5.501s4.065-8.906 6.806-17.686c0 0 2.399-7.571 4.314-11.529z' fill='%23f5ce00'/%3e%3cpath d='M784.434 317.458s2.523-.342 2.523 1.908c0 0-.154 3.287-4.159 2.568 0 0-3.948-.864-2.547-5.278 0 0 .935-3.11 4.673-2.662 0 0 3.621.165 5.21 5.113 0 0 1.215 4.171-.864 7.751-2.321 3.996-8.193 6.621-11.027 7.783 0 0-11.355 4.461-14.742 7.013 0 0-5.194 3.856-2.897 7.445 0 0 .888 1.367 2.22 1.367 0 0 1.519.071 1.776-1.484 0 0 .008-.031-.016-.071 0 0-.023 0-.031.039 0 0-.109.95-.935 1.304 0 0-1.106.558-2.266-.424 0 0-1.23-1.178-.202-3.008 0 0 1.347-2.254 4.486-.919 0 0 2.765 1.367 1.628 4.304 0 0-1.012 2.703-4.346 2.696 0 0-2.51-.083-4.115-1.766-2.505-2.626-2.641-7.741-.433-10.386 0 0 2.087-2.812 6.277-4.524 2.427-.992 7.009-2.984 11.775-4.853 3.35-1.314 6.418-2.887 8.411-5.246 0 0 1.776-1.979 2.29-5.372 0 0 .491-2.545-1.059-3.102 0 0-.787-.353-1.651-.236 0 0-.023.001-.029.016-.002.001-.037.039.05.024z' fill='%23f5ce00'/%3e%3cpath d='M784.645 317.442s2.788-.503 4.532 2.812c0 0 1.028 2.136 1.194 3.372m.908-11.85s-2.792.484-1.354 4.434c1.355 3.723 3.872 4.944 4.619 5.462' fill='none'/%3e%3cpath d='M736.653 203.456s.138 1.131 1.26 1.257c0 0 1.17.377 1.852-1.08 0 0 .079-.33.097-.491.078-.681.311-2.639-1.807-4.241 0 0-3.458-2.827-10.062.597 0 0-5.233 2.513-8.847 4.649 0 0-9.345 5.026-10.467 5.403 0 0-4.112 2.073-10.404 2.325 0 0-8.598.628-12.242-5.403 0 0-2.772-4.586 0-7.508 0 0 1.121-1.319 2.965-1.076.774.102 1.629.458 2.455 1.422 0 0 1.339 1.948-.218 3.393 0 0-2.025 1.241-2.741-1.382 0 0-.031-.188-.094.047-.04.152-.498 2.152.576 3.848 0 0 5.187 7.849 19.454-.285l18.815-10.553s9.439-4.838 15.077 2.733c0 0 4.548 6.283-1.308 10.398 0 0-4.361 2.607-7.102-1.539 0 0-2.274-4.084 1.308-5.874 0 0 3.146-1.476 4.392 1.665s-2.43 3.958-2.772 1.728c0-.001-.094-.535-.187-.033zm-46.065 71.69c8.31-4.715 10.132-15.176 10.132-15.176 2.009-10.414-2.056-18.66-2.056-18.66-5.374-11.356-14.582-13.469-14.582-13.469s9.021 6.259 11.544 14.694c0 0 1.963 7.115.841 14.136-1.121 7.021-.701 5.23-2.43 10.649z' fill='%23f5ce00'/%3e%3cpath d='M732.416 195.132s7.759-.345 7.478 7.697' fill='none'/%3e%3cpath d='M681.375 280.562c13.504-4.147 17.195-18.66 17.195-18.66 2.757-10.885-1.682-20.403-1.682-20.403-6.168-14.485-16.604-14.482-16.604-14.482-5.233-.141-5.861 4.335-5.861 4.335-.494 3.173 1.733 4.319 1.733 4.319 3.582 1.948 5.841-.691 5.841-.691 1.495-1.948.343-3.675.343-3.675-.919-1.288-2.679-.723-2.679-.723-1.394.432-1.246 2.175-1.246 2.175-.008.047-.039.047-.039.047-.062-.016-.039-.039-.039-.039s-.312-2.136 1.776-2.356c0 0 4.065-.88 8.831 5.058 0 0 6.276 8.011 6.261 18.377 0 0 .794 19.461-19.485 24.503 0 0 2.196 3.157 6.074 14.56 0 0 4.392 14.655 8.585 22.578 0 0 5.574 11.302 18.003 6.684 0 0 7.401-3.251 7.383-8.623 0 0 .514-4.901-3.925-5.278 0 0-4.346-.33-4.299 3.393 0 0-.117 4.029 4.626 3.11 0 0 1.659-.353 1.355-1.979 0 0-.265-1.461-2.266-.825 0 0-.062.008-.07-.024 0 0-.023-.035.047-.055 0 0 .774-.346 1.592-.06 0 0 .733.244.791 1.387 0 0 .047.919-.935 1.437 0 0-1.192.424-2.126.33 0 0-1.257 2.537-4.101 3.397-3.959 1.197-7.22.044-9.216-1.548-2.171-1.732-3.575-4.759-3.995-5.501s-4.065-8.906-6.806-17.686c0 0-2.399-7.571-4.314-11.529z' fill='%23f5ce00'/%3e%3cpath d='M719.481 317.458s-2.523-.342-2.523 1.908c0 0 .154 3.287 4.159 2.568 0 0 3.948-.864 2.547-5.278 0 0-.935-3.11-4.673-2.662 0 0-3.621.165-5.21 5.113 0 0-1.215 4.172.864 7.751 2.321 3.996 8.193 6.621 11.027 7.783 0 0 11.355 4.461 14.742 7.013 0 0 5.194 3.856 2.897 7.445 0 0-.888 1.367-2.22 1.367 0 0-1.519.071-1.776-1.484 0 0-.008-.031.016-.071 0 0 .023 0 .031.039 0 0 .109.95.935 1.304 0 0 1.106.558 2.266-.424 0 0 1.23-1.178.202-3.008 0 0-1.347-2.254-4.486-.919 0 0-2.765 1.367-1.628 4.304 0 0 1.012 2.703 4.346 2.696 0 0 2.51-.083 4.115-1.766 2.505-2.626 2.641-7.741.433-10.386 0 0-2.087-2.812-6.277-4.524-2.427-.992-7.009-2.984-11.775-4.853-3.35-1.314-6.418-2.887-8.411-5.246 0 0-1.776-1.979-2.29-5.372 0 0-.491-2.545 1.059-3.102 0 0 .787-.353 1.651-.236 0 0 .023.001.029.016.002 0 .037.039-.05.024z' fill='%23f5ce00'/%3e%3cpath d='M719.27 317.442s-2.788-.503-4.532 2.812c0 0-1.028 2.136-1.194 3.372m-.908-11.851s2.792.484 1.354 4.434c-1.355 3.723-3.872 4.944-4.619 5.462m35.836-119.296s6.75-4.227 13.644.454' fill='none'/%3e%3c/g%3e%3cpath d='M706.798 243.667s.935-3.77-3.364-10.367c0 0-2.804-6.031-4.299-9.895m9.719-4.147s2.434 5.929 3.271 8.584c0 0 3.019 7.437 3.659 8.945' fill='none' stroke-width='.623'/%3e%3c/g%3e%3cg stroke-width='.623'%3e%3cpath d='M710.069 247.813s2.538 2.733 2.25 7.351m-10.661-10.272s2.804 1.351 2.619 8.796c0 0-.282 5.435 3.923 8.168m-6.922 1.916s8.775-.958 9.258 4.445c0 0 .187 5.183 3.177 5.749 0 0 4.479.424 5.367 4.571m-15.039-8.765s1.542 2.309 3.037 3.298m8.224-9s2.229 3.377 2.649 5.356m7.008-46.022s2.056 2.796 4.05 4.115m4.174 12.441s4.361 2.136 3.614 13.131c0 0-.561 6.448 1.246 9.967' fill='none' stroke-miterlimit='10'/%3e%3cpath d='m712.639 232.499.28 1.037s7.819.33 12.04-4.995l-.452-1.021s-6.822-.346-11.868 4.979z' fill='%23784421'/%3e%3cpath d='M740.807 274.447s27.042-8.062 37.464-12.762' fill='none' stroke-miterlimit='10'/%3e%3c/g%3e%3cpath d='m737.591 223.687 13.375-5.089.316.895-13.378 5.081z' fill='%23784421' stroke-width='.38'/%3e%3c/g%3e%3cg fill='none' stroke-miterlimit='10'%3e%3cpath d='m739.039 224.143 8.878 43.524m-7.337-44.109 10.168 43.324m-8.438-43.981 11.121 43.007m-6.761-44.663 15.161 32.283m-13.155-33.045 16.167 32.094m-14.682-32.658 17.488 31.772m-20.332 16.321 6.862-2.261m-12.057-2.045s20.114-5.875 35.337-12.015m-35.607 14.217s25.492-6.745 35.606-11.666m-27.827 32.399 1.335 4.084 3.649-1.168-1.246-4.047m6.558-1.803 1.335 4.083 3.65-1.167-1.247-4.047m-21.04-22.984-.315-5.525 33.425-10.149 1.807 4.649m-21.057 1.196 1.821 4.878m9.864-8.426 2.129 4.639m.642-5.48 1.991 4.389m.655-5.193 2.093 4.585m.055-5.237 3.676-2.073 1.558 4.083m-3.427-3.029 1.872 4.227' stroke='%23000' stroke-width='.623'/%3e%3cg stroke='%23012169' stroke-width='.831'%3e%3cpath d='M694.649 306.526s-6.542-6.625 0-13.114c0 0-7.102-3.473-5.981-9.065m17.663 27.428s-6.775.923-4.766-12.27c0 0-2.804 5.23-3.77 7.918-.723 2.012-.245 5.26 2.623 7.016 1.146.702 7.221 2.284 9.183-1.74m-10.84-21.11s-2.757 2.545-.794 7.21m3.644-6.598s.327 4.524 2.57 7.068m-.632-8.858s-.021 5.325 3.81 8.623m-1.905-10.461s.036 5.984 4.475 9.66m17.569-.896s2.243-4.901 6.962-4.665c0 0-2.29 1.037-2.243 3.33 0 0-.28 3.785 3.785 4.162 0 0 3.271.424 4.906-1.367'/%3e%3cpath d='M738.666 319.72s-11.635-5.466-10.42-13.335c0 0 .467-4.806 5.166-7.068m-2.456 4.994s-1.028 3.393 1.262 5.749m1.354-8.058s-1.402 3.723.935 6.503m1.867-8.31s-1.68 3.079.329 5.859m-10.934 14.466s6.355 5.514 11.308 5.561m-13.317-3.817s5.939 4.806 9.651 5.513m-11.894-4.152s7.341 6.461 11.894 6.932m17.964 5.938s-7.216 3.888-1.622 7.999m-2.957-12.287s8.177-4.288 11.728-5.89m-8.784 8.105s11.822-7.21 15.326-8.764m-9.252 9.235s10.093-6.738 15.513-9.66m-8.831 9.424s6.962-5.466 13.691-9.424m2.383-6.832s-3.411-4.995-14.625 0c0 0 4.112-3.732 12.242-6.625m11.321-21.46s.919 4.052-.062 6.503'/%3e%3cpath d='M769.318 309.966s2.336-3.44 8.271-5.136c0 0 1.6 4.005 6.215 3.11 0 0 6.962-1.367 4.86-9 0 0-1.448-5.702-9.4-6.267m23.651-9.56s8.084 1.455 7.944 8.052c0 0 .654 9.895-9.766 11.827m8.618-15.816s2.221-4.823 7.174-6.803m-6.019-2.826s2.208 3.54 3.717 4.055m-4.872-1.228s2.081 2.543 2.782 2.968m-3.457-.518s1.096 1.619 2.067 2.129m-43.654-40.383s1.573-2.553 5.483-1.469m15.965 20.605s2.477-10.332 11.121-6.516m-3.505-.846s.888-4.763-1.262-7.189m-4.626 6.857s1.101 1.97.159 3.58'/%3e%3c/g%3e%3c/g%3e%3cpath d='M808.195 361.563s9.719-4.429 6.729-11.969c0 0-.924-2.545-3.079-2.356 0 0-3.748.188-2.998 5.183 0 .001 1.123 4.902-.652 9.142z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M811.715 357.103s2.136-2.047 1.838-5.717c0 0-.125-.785.267-.894 0 0 .418-.175.48.736 0 0 .592 3.833-1.994 6.031 0 0-.176.22-.462.157.001.001-.306-.067-.129-.313z' fill='%23fff'/%3e%3cpath d='M822.026 354.778s6.822-4.288 3.131-11.498c0 0-1.075-2.073-3.131-1.649 0 0-4.252 1.319-.935 7.21 0 0 1.682 3.817.935 5.937z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M823.731 345s-.374-.495-.117-.707c0 0 .164-.236.607.33 0 0 2.064 2.307.421 5.855 0 0-.187.506-.514.341 0 0-.28-.141-.023-.565 0 0 1.472-2.921-.374-5.254z' fill='%23fff'/%3e%3cpath d='M801.606 359.679s-7.616-1.932-6.215-9.801c0 0 .748-3.44 3.972-2.969 0 0 3.885.992 1.355 5.994 0 0-1.495 3.571.888 6.776z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M798.662 350.278s-.28-.377.047-.542c0 0 .327-.141.561.318 0 0 .794 1.26.122 2.986 0 0-.636 1.196-.327 2.445 0 0 .042.353-.239.401 0 0-.269-.094-.321-.353 0 0-.38-1.219.274-2.412 0-.001.795-1.853-.117-2.843z' fill='%23fff'/%3e%3cpath d='M807.073 344.785s4.299-2.415 7.85.412c0 0-.363-1.571-3.079-2.262 0 0-1.469-4.147-5.581-3.77 0 0 1.682 2.01 3.925 3.707 0 0-2.367.245-3.115 1.913zm3.178-11.358s2.92 2.157 4.108 3.602c0 0 1.188-1.476 2.745-2.372 0 0-1.793-.236-2.745.571 0 0-1.492-1.445-4.108-1.801z'/%3e%3cpath d='M793.305 342.684s-.312-1.068.436-2.199c0 0 .498-.817.312-1.885m30.589-63.017s4.548-.314 5.296-3.833m7.975-2.324s-1.585-.063-3.018 1.382c0 0-1.094 1.634-2.652 1.445' fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='.831'/%3e%3cpath d='M817.914 262.201s2.367 0 3.676-1.131c0 0 1.371-.942 2.181.565 0 0 1.246 2.136-1.059 3.079 0 0-2.866 1.445 1.682 4.335 0 0-5.42-1.948-3.24-4.586 0 0 2.367-1.696 1.495-2.325 0 0-.249-.503-1.184.126-.935.628-2.804.377-3.551-.063z'/%3e%3cpath d='M821.134 204.987s1.069-1.455.632-5.821 3.354-4.868 4.812-3.613c0 0 1.507 1.305.121 4.074-.8 1.598-2.077 3.667-5.565 5.36z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M822.559 201.727s1.421-1.528.743-4.845c0 0-.005-.327.183-.349 0 0 .345-.087.403.24 0 0 .763 3.536-.841 5.457 0 0-.293.284-.489 0 .001-.001-.215-.204.001-.503z' fill='%23fff'/%3e%3cpath d='M819.923 203.399s-.112-1.76-3.154-4.751-.541-5.747 1.322-5.724c0 0 1.93.03 2.625 2.971.401 1.699.741 4.048-.793 7.504z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M819.45 199.572s.054-2.156-2.7-4.406c0 0-.224-.262-.096-.401 0 0 .204-.293.47-.066 0 0 2.966 2.373 3.038 4.965 0 0-.033.419-.373.316-.001-.002-.303-.026-.339-.408z' fill='%23fff'/%3e%3cpath d='M815.792 202.076s-.795-1.434-4.552-2.767-2.742-4.615-1.161-5.317c0 0 1.641-.722 3.397 1.477 1.015 1.272 2.236 3.112 2.316 6.607z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M814.146 199.44s-.854-1.977-4.294-2.843c0 0-.313-.142-.255-.323 0 0 .062-.353.398-.26 0 0 3.683.886 4.834 3.205 0 0 .146.394-.206.445 0 .001-.284.108-.477-.224z' fill='%23fff'/%3e%3cpath d='M818.146 203.512s-1.752.492-5.775-1.449-5.785 1.437-5.08 3.244c0 0 .737 1.87 3.851 1.542 1.798-.19 4.206-.661 7.004-3.337z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M808.791 204.794s1.824 1.125 5.134-.155c0 0 .337-.065.392.117 0 0 .15.325-.178.443 0 0-3.521 1.404-5.783.171 0 0-.344-.238-.085-.484.001 0 .174-.252.52-.092z' fill='%23fff'/%3e%3cpath d='M812.26 190.797s2.009.974 1.542 3.33' fill='none' stroke='%23000' stroke-miterlimit='2.613' stroke-width='.831'/%3e%3cpath d='M821.138 191.127s.786 2.488-.082 3.828' fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='.831'/%3e%3cpath d='M682.528 204.987s-1.069-1.455-.632-5.821-3.354-4.868-4.812-3.613c0 0-1.507 1.305-.121 4.074.8 1.598 2.076 3.667 5.565 5.36z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M681.102 201.727s-1.421-1.528-.743-4.845c0 0 .005-.327-.183-.349 0 0-.345-.087-.403.24 0 0-.763 3.536.841 5.457 0 0 .293.284.489 0-.001-.001.216-.204-.001-.503z' fill='%23fff'/%3e%3cpath d='M683.738 203.399s.112-1.76 3.154-4.751.541-5.747-1.322-5.724c0 0-1.93.03-2.625 2.971-.401 1.699-.741 4.048.793 7.504z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M684.212 199.572s-.054-2.156 2.7-4.406c0 0 .224-.262.096-.401 0 0-.204-.293-.47-.066 0 0-2.966 2.373-3.038 4.965 0 0 .033.419.373.316 0-.002.302-.026.339-.408z' fill='%23fff'/%3e%3cpath d='M687.869 202.076s.795-1.434 4.552-2.767 2.742-4.615 1.161-5.317c0 0-1.641-.722-3.397 1.477-1.015 1.272-2.236 3.112-2.316 6.607z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M689.515 199.44s.854-1.977 4.294-2.843c0 0 .313-.142.255-.323 0 0-.062-.353-.398-.26 0 0-3.683.886-4.834 3.205 0 0-.146.394.206.445 0 .001.284.108.477-.224z' fill='%23fff'/%3e%3cpath d='M685.515 203.512s1.752.492 5.775-1.449 5.785 1.437 5.08 3.244c0 0-.737 1.87-3.851 1.542-1.798-.19-4.206-.661-7.004-3.337z' fill='%2364b4d1' stroke='%23012169' stroke-miterlimit='2.613' stroke-width='.623'/%3e%3cpath d='M694.87 204.794s-1.824 1.125-5.134-.155c0 0-.337-.065-.392.117 0 0-.15.325.178.443 0 0 3.521 1.404 5.783.171 0 0 .344-.238.085-.484-.001 0-.173-.252-.52-.092z' fill='%23fff'/%3e%3cpath d='M691.401 190.797s-2.009.974-1.542 3.33' fill='none' stroke='%23000' stroke-miterlimit='2.613' stroke-width='.831'/%3e%3cpath d='M682.523 191.127s-.786 2.488.082 3.828' fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='.831'/%3e%3cpath d='M769.739 168.273s1.273 3.634.724 6.927c-.491 2.945.179 3.706 1.243 4.289.921.504 3.055-.378 3.312-2.687 0 0 2.523 4.924-2.383 8.246 0 0-3.528 2.168-6.518-.73-1.054-1.021-1.519-3.84-1.005-6.456 0 0 .772-3.546-.514-7.186 0 0 2.009 2.144 1.495 6.419 0 0-1.028 7.67 4.649 7.293 0 0 3.925-.047 4.042-4.806 0 0-1.472 1.696-3.294 1.131-1.291-.4-2.477-1.649-2.266-3.618.221-2.065.795-5.665.515-8.822zm-6.433 12.597s-.312 6.063-5.856 7.539c0 0 .779-1.099-.467-4.115 0 0-1.215-1.759-1.121-4.492 0 0-1.765 1.381.249 5.026 1.215 2.199.156 4.838-.218 4.932-.375.094 9.158-1.257 7.413-8.89zm-7.196-6.032s-1.339-1.508-1.433-4.995c-.093-3.487-.748-4.335-1.215-4.744 0 0 .685 3.016.498 4.869s.125 2.922.374 3.801c0 0-3.022.471-4.922-3.927-1.816-4.204-3.645-3.864-4.548-3.833 0 0 1.053.117 3.177 3.958 2.122 3.838 2.711 4.62 8.069 4.871zm-14.142-9.11s1.745 4.178 1.807 6.377c0 0-4.05-1.351-5.14-4.869 0 0-4.33 1.476-2.741 6.471 0 0-3.738-1.319-5.42-4.367 0 0 2.087 1.571 4.018 2.262 0 0-.218-4.021 4.828-5.529 0 0 .751 3.602 3.271 4.461 0 .001-.187-2.261-.623-4.806zm6.666-7.162s1.402 2.042 4.268 2.136c1.37.045 2.844-.264 4.268-2.136 0 0-.187 3.55-4.268 3.581 0 0-4.268.157-4.268-3.581zm-17.655 24.267s2.126 1.932 2.57 2.568c0 0 1.495 1.461 2.779-.428 0 0 1.637-3.021 3.646-2.941 0 0-1.425.99-3.027 3.846 0 0-.431 1.054-1.623 1.172-.558.055-1.262.236-2.327-.877 0 0-.92-1.125-2.018-3.34zm21.923-38.498c-4.268-.002-.67 3.298-.67 3.298.093 5.23-4.104 6.84-6.962 5.325-2.858-1.516-.623-5.325-.623-5.325s-3.224 2.12-1.168 5.183 7.445 1.696 9.423-1.131c1.978 2.827 7.367 4.194 9.423 1.131s-1.168-5.183-1.168-5.183 2.235 3.809-.623 5.325c-2.858 1.515-7.056-.094-6.962-5.325-.001.001 3.597-3.3-.67-3.298zm2.585-5.654s1.495 2.545 1.168 6.408c0 0 1.355-3.864-1.168-6.408zm-13.083 5.984s-.327-2.78-3.037-3.016c0 0 2.289 1.65 3.037 3.016zm21.027 0s.327-2.78 3.037-3.016c0 0-2.29 1.65-3.037 3.016zm-25.326 4.241s2.149.66 3.458-.942c0 0-2.477.659-3.458.942zm-6.962-17.058s2.5-.283 5 3.44c0 0-2.477 1.319-3.084 2.12 0 0 0-1.225 1.215-2.309-.001.001-.468-1.884-3.131-3.251zm41.867 0s-2.5-.283-5 3.44c0 0 2.477 1.319 3.084 2.12 0 0 0-1.225-1.215-2.309 0 .001.467-1.884 3.131-3.251zm-19.298 2.778s2.243.615 5.046-.94c0 0 3.458-1.838 5.654 0 0 0-1.916-.853-5.607.94 0 0-3.692 2.024-5.093 0z'/%3e%3cpath d='M756.048 136.89s1.916-3.36 7.757-2.693c0 0-1.589 4.672-7.757 2.693z' fill='%23fff'/%3e%3cellipse cx='760.077' cy='135.848' fill='%23784421' rx='1.155' ry='1.464'/%3e%3cellipse cx='760.077' cy='135.848' rx='.686' ry='.898'/%3e%3cpath d='M743.525 129.728s3.691.236 5.934 1.649c0 0 2.383 1.414 5.093-.613 0 0 2.947-1.696 4.838-4.052 0 0-4.511 3.11-6.193 3.581 0 0-1.542-1.178-2.149-2.874 0 0 .234-1.272 2.663-3.628 0 0-3.271.99-3.925 3.77 0 0 .607 1.696 1.869 3.016 0 0-.607.283-2.196-.707 0-.001-3.457-1.179-5.934-.142zm9.377 22.17c-3.193 2.757 0 2.474 0 2.474s3.193.283 0-2.474zm-1.848-17.272s-2.243.615-5.047-.94c0 0-3.458-1.838-5.654 0 0 0 1.916-.853 5.607.94.001 0 3.692 2.024 5.094 0z'/%3e%3cpath d='M748.718 136.89s-1.916-3.36-7.757-2.693c0 0 1.589 4.672 7.757 2.693z' fill='%23fff'/%3e%3cellipse cx='744.689' cy='135.848' fill='%23784421' rx='1.155' ry='1.464'/%3e%3cellipse cx='744.689' cy='135.848' rx='.686' ry='.898'/%3e%3cpath d='M865.723 106.664v211.737c0 56.557-113.062 74.933-113.062 74.933s-113.062-18.376-113.062-74.933V106.664z' fill='none' stroke='%23000' stroke-width='2'/%3e%3c/svg%3e\"},6576:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1440 720'%3e%3cpath fill='%23f7e017' d='M0 0h1440v720H0z'/%3e%3cpath d='M0 50v320l1440 150V350z' fill='%23fff'/%3e%3cpath d='M0 220v150l1440 300V520z'/%3e%3cg fill='%23cf1126'%3e%3cpath d='M695.74 569.72c-19.36-2.57-37.11-8.73-49.44-17.17-2.39-1.64-4.64-2.98-4.99-2.98-.36 0-.65 1.82-.65 4.07 0 6.37-2.56 9.58-9 11.25-6.16 1.6-15.56-1.63-23.18-7.95-7.89-6.55-17-11.55-24.71-13.55-6.35-1.66-14.78-1.39-20.87.65-2.83.95-6.05 2.29-7.17 2.98-1.11.69-2.36 1.25-2.76 1.25-1.08 0-.93-6.85.2-9.04 1.49-2.87 5.16-5.7 9.44-7.26 2.16-.79 3.93-1.8 3.93-2.25s-.73-2.1-1.62-3.65c-2.9-5.08-1.71-10 3.35-13.87 5.18-3.96 13.95-4.64 21.7-1.69 1.95.74 3.77 1.35 4.04 1.35 1.02 0 .4-1.43-2.41-5.52-3.24-4.74-3.88-7.08-3.48-12.72.52-7.14 6.34-12.98 13.47-13.5 5.82-.42 9.44 1.54 18.03 9.72 25.65 24.46 53.54 37.94 86.07 41.59 8.21.92 24.73.43 34.42-1.03 29.27-4.41 58.76-19.13 81.79-40.82 6.38-6.01 9.45-7.6 14.68-7.62 4.55-.02 7.74 1.45 11 5.05 2.97 3.3 3.98 6.43 3.66 11.44-.21 3.21-.73 4.79-2.64 7.9-2.82 4.59-2.34 5.01 3.24 2.85 7.54-2.94 16.83-1.58 21.84 3.18 4.41 4.19 4.83 8.38 1.4 14.06-1.25 2.08-2.27 4.03-2.27 4.34 0 .57.95.84 5.53 1.58 5.99.96 9.42 5.41 9.42 12.21 0 2.04-.25 3.7-.56 3.7-.3 0-2.57-.83-5.04-1.85-6.98-2.88-10.95-3.62-19.11-3.57-6.21.04-8.35.33-12.68 1.74-6.63 2.17-13.72 6.35-19.5 11.5-6.37 5.68-10.38 7.47-16.58 7.42-5.76-.06-9.7-1.73-11.78-5.02-1.11-1.76-1.27-2.83-1-6.81.18-2.59.14-4.71-.07-4.71-.22 0-2.46 1.42-4.99 3.17-6.64 4.56-10.87 6.82-18.47 9.83-23.18 9.17-56.63 13.14-82.24 9.75z'/%3e%3cpath d='M706.34 525.17c-38.58-3.703-75.494-23.798-97.939-55.657-24.37-33.235-32.05-77.117-24.611-117.24 3.954-18.267 11.929-36.546 25.544-49.554-10.85 23.003-14.516 49.369-8.73 74.29 8.99 49.753 51.036 91.87 101.34 99.156 19.9 5.761 40.487-.324 59.496-6.493 41.935-14.78 73.88-54.583 77.777-99.08 3.336-24.077-.36-49.113-11.207-70.915 6.183 3.269 13.987 16.087 18.59 24.707 16.002 31.003 16.733 68.155 7.312 101.24-12.78 42.097-44.965 78.978-87.511 92.382-19.308 6.308-39.842 8.231-60.058 7.167z'/%3e%3cg id='a'%3e%3cpath d='M512.02 469.9c-2.528-.396-5.316 2.092-4.363 4.697 1.823 2.633 4.964 3.92 7.798 5.18 6.792 2.722 14.18 3.782 21.471 3.605-2.513-.006.863.026 1.802 0 5.774.017 11.516-1.024 16.944-2.98 3.018-1.062 6.864-2.025 8.1-5.363 1.207-2.175-.98-4.347-3.185-3.911-3.072.67-5.944 2.064-8.99 2.857-6.572 1.854-13.494 2.57-20.303 2.012-4.98-.608-9.804-2.2-14.41-4.143-1.597-.705-3.096-1.733-4.865-1.954z'/%3e%3cpath d='M514.83 459.52c-2.556-.38-4.758 2.56-3.692 4.908 1.965 2.848 5.267 4.365 8.356 5.699 5.37 2.148 11.204 3.047 16.975 2.875-2.191-.006.753.026 1.565 0a37.592 37.592 0 0 0 14.325-2.832c2.774-1.078 6.17-2.124 7.325-5.177.896-1.677.212-4.116-1.9-4.247-1.929-.096-3.593 1.132-5.378 1.683-6.485 2.681-13.622 3.818-20.614 3.214-4.357-.56-8.52-2.168-12.47-4.03-1.485-.718-2.82-1.836-4.491-2.093z'/%3e%3cpath d='M518.28 449.57c-2.19-.263-3.698 2.209-3.329 4.182.327 1.733 1.883 2.898 3.17 3.96 5.328 3.898 12.082 5.558 18.625 5.34-2.541-.009 3.41.042 1.595-.007 4.144-.017 8.238-1.03 11.966-2.825 2.489-1.082 5.411-2.336 6.25-5.177.401-1.324.652-3.227-.841-3.97-1.564-.874-3.117.47-4.539 1.016-4.789 2.437-10.125 3.793-15.507 3.768-4.65.157-9.033-1.8-13.068-3.907-1.464-.746-2.67-2.043-4.321-2.38z'/%3e%3cpath d='M481.53 302.7c-3.257 3.26-.77 9.271-.946 13.543 1.688 13.158 3.785 26.484 8.697 38.87 6.015 12.102 18.79 18.573 26.533 29.268 2.767 5.155 1.785 11.355 2.368 16.994.458 15.366.316 30.743.047 46.111 6.939 3.482 14.474 6.986 22.456 5.647 4.73-1.13 13.512-1.832 14.496-6.543-.383-26.5-.63-53.01-.983-79.506-2.69-8.119-10.951-12.32-17.129-17.515a155.468 155.468 0 0 1-14.188-16.099c-2.622-4.417-12.868-6.009-9.161 1.677 2.173 6.654 7.72 11.61 9.109 18.602.303 3.831 4.877 10.879.973 13.114-2.484-4.222-6.082-7.815-10.682-9.958-4.432-3.304-11.759-4.68-13.359-10.517-1.175-8.28-5.415-15.782-10.887-21.986 1.41-7.436.005-16.737-6.423-21.49l-.921-.212z'/%3e%3cpath d='M491.44 304.19c-2.963.478-2.862 4.254-1.491 6.239 1.458 4.288 1.855 8.945 1.066 13.409 5.267 6.166 9.347 13.543 10.576 21.64.03 3.044 3.233 4.051 5.309 5.555 4.871 3.102 10.348 5.351 14.686 9.233.913.976 1.602 2.027.957.035-.677-2.547-1.026-5.358-3.021-7.285-2.735-2.94-6.15-5.563-10.133-6.46-.332-4.114-2.292-7.893-4.102-11.532-2.006-3.479-4.102-7.206-7.54-9.462.138-6.098.038-12.495-2.586-18.122-.77-1.446-1.903-3.163-3.72-3.25z'/%3e%3cpath d='M499.73 306.62c-2.064.613-1.67 3.159-1.016 4.716.989 4.316 1.144 8.774 1.063 13.184 3.791 3 6.163 7.35 8.322 11.587 1.353 2.83 2.636 5.751 3.155 8.865 3.076 1.018 5.768 2.946 8.171 5.077-.952-2.882-3.076-5.113-4.504-7.744-1.551-2.737-3.033-5.592-3.69-8.693-2.958-3.157-4.587-7.63-3.941-11.952.133-4.776-1.41-9.71-4.606-13.31-.805-.793-1.766-1.67-2.954-1.73z'/%3e%3cpath d='M509.16 307.97c-1.122.198-1.805 1.266-2.406 2.137-.233.873.837 1.812 1.008 2.76a21.771 21.771 0 0 1 1.416 10.426c-.086 2.502.809 4.946 2.084 7.065.368-1.563 1.816-2.687 3.386-2.84.571-.101 1.411.188 1.078-.683-.399-4.786-1.128-9.598-2.8-14.12-.649-1.614-1.385-3.314-2.784-4.42-.284-.201-.623-.374-.982-.325z'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 1440 0)'/%3e%3cpath d='M715.67 475.98c-13.493-1.285-25.667-11.12-29.829-24 .224-2.219 2.987 1.241 4.292 1.474 2.45 1.36 5.1 2.48 7.92 2.654 3.558 1.529 5.757 5.035 9.152 6.863 1.577 1.228 7.155 3.64 6.119-.264-1.307-2.04-2.206-4.625-1.081-6.962 1.892-4.15 4.802-7.763 7.73-11.226 2.153-.72 3.595 3.527 5.134 4.957 2.131 3.279 4.7 7.28 3.447 11.352-1.22 1.509-2.021 6.047 1.241 4.522 4.022-1.77 7.316-4.742 10.651-7.517 2.919-2.039 6.654-2.183 9.713-3.97 1.417-.36 4.37-3.195 4.986-1.623-1.676 4.488-4.482 8.507-7.482 12.211-4.86 5.55-11.432 9.725-18.786 10.902-4.346.796-8.806.964-13.207.628z'/%3e%3cpath d='M731.53 460.22c.297-2.708-.32-5.473-1.703-7.935-2.123-4.326-5.121-8.166-8.046-11.96-2.757-1.616-4.287 3.657-6.12 5.17-2.857 4.277-6.443 8.657-6.617 14.036-1.607 2.502-4.604-2.04-5.896-3.535-2.468-3.491-4.336-7.62-4.03-11.987-.292-7.036 1.057-14.041 3.62-20.581 1.935-5.583 5.076-11.006 4.757-17.105.224-4.59-.708-9.658-4.426-12.745-3.538-2.776 2.291-3.368 4.143-1.928 3.168.212 4.882 5.448 7.777 4.152 1.153-2.735 1.382-5.997 3.76-8.13 2.333-3.196 4.772 1.356 5.57 3.488 1.648 1.873-.092 6.507 2.583 6.628 3.206-2.247 5.492-6.022 9.591-6.844 1.663-.949 4.504-.127 2.312 1.785-3.034 2.844-5.626 6.4-6.179 10.63-.928 5.308.4 10.69 2.713 15.47 4.446 9.39 7.885 19.997 5.636 30.445-1.043 4.644-4.198 8.645-8.032 11.34-.484.293-1.25.273-1.413-.394z'/%3e%3cpath d='M726.73 389.63c-1.456-2.624-3.224-5.21-5.673-6.995-2.381-.005-3.85 2.999-5.468 4.573-1.134 2.11-2.512 5.638-5.305 2.88-4.444-2.594-5.23-8.276-5.202-12.959-.28-7.59 2.777-14.674 5.492-21.587 1.728-4.328 1.302-9.199.248-13.634-1.327-5.092-5.414-8.623-8.56-12.595.214-1.536 4.235-.697 5.748-.405 3.36.852 5.367 3.825 7.87 5.926 1.782-.54 1.055-4.14 1.884-5.833.062-2.382 3.233-5.522 4.541-2.112 1.959 2.168-.062 6.465 2.469 7.815 2.411-.893 3.6-3.529 5.866-4.72 2.23-1.52 5.378-1.69 7.778-.497.845 2.213-2.64 4.055-3.65 5.977-4.051 5.006-5.475 11.91-3.74 18.112 1.377 4.865 3.814 9.406 4.655 14.434 1.013 5.653.98 11.59-.484 17.16-.874 3.38-3.802 5.64-6.825 7.044-.746-.694-1.14-1.714-1.644-2.583z'/%3e%3cpath d='M711.61 326.89c-3.36-2.46-4.47-4.81-4.47-9.46 0-2.38.44-3.67 2.01-5.83 2.31-3.2 1.89-4.21-1.38-3.27-5.26 1.51-7.77.13-7.95-4.35-.08-2.19.38-3.12 3.33-6.66 2.36-2.84 3.22-4.33 2.75-4.8-.46-.46-3.25 1.96-8.98 7.79-4.57 4.65-9.71 9.4-11.42 10.56-9.84 6.64-19.24 7.67-23.53 2.56-2.2-2.61-2.08-4.08.46-5.66 1.17-.72 3.14-2.38 4.39-3.69 2.95-3.07 11.74-9.41 16.1-11.61 3.54-1.79 4.38-3 2.08-3-2.98 0-12.54 6.22-19.79 12.88-2.13 1.97-5.2 4.16-6.81 4.87-3.62 1.6-10.73 2.19-13.89 1.15-2.23-.74-6.3-4.58-6.3-5.95 0-.36.93-1.16 2.06-1.77 1.13-.6 3.16-2.07 4.5-3.24 5.8-5.09 16.79-10.33 25.51-12.16 2.77-.58 1.75-1.98-1.34-1.84-5.99.26-17.88 5.83-24.98 11.69-8.32 6.86-20.87 6.21-24.91-1.29-.7-1.29-1.11-2.5-.91-2.69.19-.19 2.66-.93 5.49-1.65 3.06-.77 9.12-3.28 14.91-6.17 9.11-4.54 11.81-5.51 18.08-6.52 2.82-.45 2.97-1.83.23-2.15-3.53-.42-8.94 1.35-18.5 6.05-12.28 6.04-15.72 7.08-22.19 6.7-5.9-.36-9.23-1.87-14.02-6.4-3.13-2.97-7.57-10.51-6.7-11.38.21-.21 1.65 0 3.2.45 1.72.51 6.65.85 12.59.86 8.31.02 10.52-.2 14.95-1.48 7.41-2.14 17.26-7.15 24-12.18 12.89-9.64 23.4-13.51 36.8-13.57 12.37-.05 20.24 2.81 27.21 9.88 2.36 2.39 4.37 3.94 4.7 3.61.31-.31.65-4.49.75-9.29 0 0 3.64-.35 4.41.67 0 7.79.09 8.4 1.22 8.4.74 0 1.53-.76 2.02-1.94 1.06-2.55 4.98-6.04 9.17-8.16 9.05-4.59 24.71-4.73 37.29-.34 5.3 1.86 11.18 5.18 16.78 9.5 5.62 4.32 17.11 10.1 23.9 12.03 6.87 1.95 18.98 2.44 25.19 1.03 2.56-.58 4.96-1.06 5.34-1.06 2.29 0-1.61 7.63-6.19 12.1-8.37 8.18-19.26 8.14-34.58-.12-9.55-5.14-20.97-7.95-20.97-5.15 0 .58.6.97 1.49.97 3.32 0 9.73 2.23 18.67 6.47 9.67 4.6 15.1 6.54 18.32 6.54 2.34 0 2.41 1.45.23 4.65-2.31 3.41-6.23 5.1-11.77 5.09-5.29-.02-8.23-1.18-12.96-5.11-7.91-6.58-27.62-13.92-26.86-10 .15.78 1.1 1.26 3.13 1.57 6.86 1.05 14.91 4.89 23.15 11.06 2.54 1.91 5.18 3.79 5.85 4.19 1.13.66 1.15.86.26 2.53-1.48 2.76-5.21 4.9-9.25 5.32-5.23.54-9.78-1.02-14.49-4.96-9.94-8.32-19.31-14.34-22.31-14.34-2.45 0-1.35 1.35 2.97 3.64 5.68 3.01 11.52 7.08 15.82 11.03 2.03 1.88 4.32 3.74 5.08 4.15 1.8.96 1.73 2.37-.25 4.96-2.02 2.64-5.36 3.8-9.69 3.34-8.64-.91-15.38-5.08-25.97-16.07-4.14-4.29-7.83-7.8-8.21-7.8-1.41 0-.58 1.91 2.15 4.97 3.38 3.78 4.03 5.91 2.75 8.98-1.13 2.72-3.01 3.35-6.87 2.31-3.95-1.07-4.57-.1-1.98 3.12 3.86 4.81 3.29 10.7-1.44 14.75-1.47 1.25-3.01 2.28-3.43 2.28-.41 0-1.45-1.07-2.32-2.38-3.04-4.62-5.71-4.59-8.67.08-1.03 1.63-1.9 2.95-1.93 2.94-.04-.01-1.43-1.01-3.08-2.23z'/%3e%3cpath d='m726.67 233.03-5.13 4.06-4.6-3.47v27.74l9.73.12z'/%3e%3cpath d='M694.89 204.25c-1.02 13.11-4.35 22.26-8.98 32.35l11.1-10.29 7.72 9.17 8.36-9.33 8.53 7.88 8.2-8.2 8.52 9.97 7.4-8.2 12.54 9c-4.55-10.09-10.71-18.64-9.94-32.84-12.15 9.03-41.02 10.66-53.45.49z'/%3e%3cpath d='M716.95 197.56c-4.46.08-9.16.14-13.39.97-2.93.58-5.59 1.53-7.81 3.1.36 8.53 41 12.09 51.9.16-2.29-1.67-5.09-2.66-8.17-3.26-4.07-.79-8.57-.87-12.84-.94 0 2.34.02 4.69.02 7.04l-9.71-.03v-7.04z'/%3e%3cpath d='m724.9 153.97-6.31.05v49.38l6.44.03z'/%3e%3cpath d='m724.89 155.24-2.41 23.64 24.32 11.88-12.31-16.46 16.81-5.45zm-2.71-6.16c-3.69 0-6.42 1.38-6.42 3.02s2.73 3.03 6.42 3.03 6.4-1.39 6.4-3.03-2.71-3.02-6.4-3.02z'/%3e%3c/g%3e%3cg fill='%23f7e017'%3e%3cpath d='M711.05 563.82c3.99-1.32 6.26-3.74 7.89-8.4.81-2.32 1.36-4.73 1.22-5.36-.34-1.49-2.06-1.41-3.96.17-1.3 1.09-1.46 1.64-1.09 3.86.95 5.6-1.04 6.99-11.64 8.13-1.05.11-4.09-.07-6.77-.4-5.04-.63-6.84-.13-5.01 1.39.55.46 1.95 1.08 3.11 1.37 2.83.73 13.22.24 16.25-.76zm21.97-.93c.6-.55 2.66-1.5 4.58-2.12 2.56-.82 3.88-1.7 4.96-3.31 3.11-4.63 2.53-8.62-2.04-14-2.48-2.92-3.58-2.84-5.56.4-1.71 2.8-1.67 2.98.79 3.62 1.29.33 2.53 1.28 3.21 2.45 2.68 4.64 1.89 7.51-2.08 7.54-3.6.03-4.59.54-5.56 2.87-.51 1.21-.92 2.5-.92 2.87 0 .98 1.36.81 2.62-.32zm-7.21-5.24c.68-1.84.92-5.15.84-11.9-.05-5.14-.25-9.5-.45-9.7-.6-.6-3.56 1.31-3.95 2.54-.2.64.13 2.12.73 3.28.92 1.79 1.04 3.46.76 10.47-.36 8.86.22 10.35 2.07 5.31z'/%3e%3cpath d='M708.89 553.43c.36-1.65.82-5.03 1.03-7.5s.72-5.59 1.12-6.94c1.02-3.46-.01-4.37-2.74-2.43l-2.03 1.45.42 4.97c.39 4.48-.32 12.83-1.35 16.07-.28.86.12.64 1.25-.68.91-1.06 1.95-3.29 2.3-4.94zm-15.01 2.41c3.651-3.055 3.232-8.27 4.04-12.52-.084-2.825 1.804-6.212.586-8.683-3.412.624-5.515 3.856-3.769 7.075.146 3.738.013 7.807-1.908 11.113-1.57 2.162-6.542 1.623-6.314-1.44 1.248-4.607-4.271-2.366-6.426-1.158-1.666 1.16-5.182 1.245-3.96-1.657-.807-3.866-5.78-1.448-8.482-1.465-2.552-.046-.21-5.17-3.873-4.27-6.806-.538-14.32.06-20.21-4.052-3.449-1.658-2.937-5.806-1.142-8.49 2.144-3.664 2.756-8.248 6.16-11.092 3.368-3.231-3.178-1.867-4.653-.778-3.282 1.796-.233 6.423-2.919 8.989-1.57 2.66-3.636 6.336-7.27 5.83-5.24-.992-8.26-5.866-12.017-9.133-3.218-.642-1.408 5.222.253 6.455 3.288 2.462 7.13 4.256 11.092 5.318 3.944-.63 4.072 4.534 7.445 5.344 6.187 2.883 13.083 3.747 19.833 4.099 2.65.22 1.16 4.942 4.645 4.01 1.948.504 6.348-.726 6.569 1.537-2.953 3.506 2.834 3.428 4.975 2.8 2.742-.419 6.246-1.466 6.971 2.293 2.29 2.413 6.492 2.057 9.28.676a6.31 6.31 0 0 0 1.093-.8z'/%3e%3cpath d='M634.12 525.57c1.11-1.41 2.77-4.26 3.69-6.34.91-2.09 2.28-4.46 3.03-5.27 1.76-1.9.78-3.07-2.06-2.44-1.5.33-2.11.88-2.36 2.18-.85 4.24-2.39 8.58-3.76 10.6-2.48 3.66-2.54 3.81-1.52 3.81.53 0 1.87-1.14 2.98-2.54zm-37.46-23.48c-2.8 0-2.92 1.77-.19 2.72 1.32.46 2.44 1.57 3.34 3.38 2.66 5.29 4.22 6.23 11.28 6.84l4.53.41.22 2.75c.11 1.52.47 2.78.82 2.78s2.1-.76 3.87-1.66c3.32-1.68 6.47-5.6 6.47-8.03 0-1.59-2.65-3.31-5.06-3.31-1.07 0-3.11.86-4.72 2.03-5.04 3.65-10.43 2.91-13.38-1.84-2.42-3.92-4.95-6.07-7.18-6.07zm24.46 9.75c1.34 0 1.67.99.94 2.88-.5 1.3-2.13 1.34-2.62.06-.58-1.51.23-2.94 1.68-2.94zm189.72-6.15c-1.83.07-2.37.47-3.53 2.19-1.9 2.82-2.09 8.93-.34 11.09 1.09 1.34 1.25 1.37 3.56.41 3.22-1.35 3.76-1.3 3.75.43-.02 4.42-6.36 12.94-13 17.47-1.79 1.22-3.39 2.58-3.56 3.03-.48 1.26 1.98.98 5-.56 4.12-2.1 9.53-7.62 11.75-11.97 1.76-3.47 2.01-4.65 2.22-10.72.19-5.59.04-7.23-.91-9.09-1.06-2.09-1.4-2.28-4.06-2.28-.32 0-.61-.01-.88 0zm.22 3.9c1.38 0 1.62.31 1.78 2.29.14 1.64-.15 2.64-1.06 3.46-1.24 1.12-1.34 1.11-2.44-.56-1.54-2.36-.59-5.19 1.72-5.19zm-30.36 42.68c5.85-2.88 9.3-6.12 11.52-10.81 1.05-2.23 1.91-4.33 1.91-4.69 0-.81-2.88-2.15-4.61-2.15-1.72 0-2.07-1.19-1.33-4.48.72-3.21-.15-7.23-1.56-7.23-.51 0-1.41.75-2.01 1.66-.92 1.41-.97 2.01-.29 4.06 1 3.04.21 5.31-2.51 7.25-1.29.92-2 1.98-2 3.01 0 .87.11 1.58.24 1.58.14 0 1.56-.74 3.16-1.63l2.92-1.63 1.72 1.35c.94.74 1.72 1.95 1.72 2.69 0 3.56-10.15 9.54-17.12 10.1-3.71.3-4.34.17-5.63-1.11-1.05-1.05-1.35-1.93-1.09-3.17.2-.95.56-2.68.8-3.84.64-3.1-.69-2.68-2.99.94-1.89 2.99-2.45 6.18-1.39 7.86.87 1.37 6.65 2.68 10.74 2.43 2.57-.15 5.11-.87 7.8-2.19zm39.04-21.78c3.68-3.67 5.24-8.14 5.26-15.05l.01-5.19 3.04-1.44c3.95-1.88 7.69-5.62 7.69-7.7 0-2.14-.95-2.03-2.67.3-1.25 1.69-2.92 2.71-9.03 5.52-1.54.71-1.64 1.09-1.99 7.55-.41 7.45-1.42 10.24-5.58 15.33-2.55 3.1-2.64 3.51-.87 3.51.73 0 2.59-1.27 4.14-2.83zm-40.08-4.16c.35-1.07-1.68-1.83-2.56-.96-.37.37-.47 1.01-.22 1.42.58.93 2.42.62 2.78-.46zm55.27-14.31c.36-1.07-1.68-1.83-2.55-.96-.38.38-.48 1.02-.23 1.43.58.93 2.42.62 2.78-.47zm-66.52-38.74c-1.43.68-2.171 2.224-3.165 3.403-.715.486-.142.94.27 1.399 2.522 2.717 3.59 6.386 4.788 9.808 1.177 4.04 2.66 8.379 1.428 12.588-.484 1.613-1.752 3.282-3.646 2.746-3.03-.189-6.012-.993-9.051-.961-2.705.14-4.796 2.602-7.562 2.334-1.767.116-1.692-3.618-3.334-2.62-.813 1.948-.412 4.12-.51 6.18.307.294 1.166.037 1.68.123h5.446c.385 1.88.337 4.036 1.687 5.532 1.89.672 4.016.091 5.812-.643 1.925-.896 2.183-3.212 2.727-5.016.579-1.938 3.117-1.43 4.615-2.191 3.665-1.07 6.067-4.879 5.852-8.627-.237-5.722-2.42-11.105-4.076-16.52-.833-2.387-1.41-4.876-2.377-7.205-.113-.2-.345-.37-.584-.33zM759.34 506c2.036-.133 2.921 2.37 2.49 4.03-.762 2.255-3.535.809-4.096-.817-1.03-1.451-.393-3.404 1.606-3.213z'/%3e%3cpath d='M683.94 487.22c-.91-.02-1.93.32-2.94 1.03-5.31 3.72-6.67 8.12-3.06 9.84 2.65 1.27 1.98 2.76-2.19 4.85-5.97 2.98-11.24 2.61-21.25-1.53-2.46-1.02-3.1-.63-2.53 1.62.55 2.21 2.57 3.42 7.59 4.56 5.4 1.24 11.93.84 16.13-.97 2.05-.88 4.48-2.73 6.53-4.96l3.25-3.57 3.78.47c4.66.57 4.75.62 4.75 2.85 0 1.77.1 1.81 4.38 2.21 2.41.23 5.58.44 7.06.44 1.89.01 2.96.34 3.59 1.22.84 1.17 1.34 1.23 8.38.6 6.58-.6 7.87-.55 10.84.46 2.11.72 4.43 1.01 6.19.82 5.04-.57 11.99-4.69 13-7.72.12-.37 1.95-1.02 4.06-1.44 5.09-1.02 5.31-2.13.56-2.72-2.06-.26-5.15-1.01-6.87-1.69-1.73-.68-4.09-1.25-5.25-1.25-2.56 0-4.97 1.6-4.97 3.25 0 1.08.38 1.19 3.41.88 2.85-.29 3.68-.13 5.18 1.06.99.78 1.65 1.7 1.44 2.03-.67 1.09-6.62 3.8-9.25 4.22-1.76.28-3.18.09-4.56-.62-2.31-1.2-5.71-1.38-6.35-.35-.27.45-1 .16-2-.78l-1.56-1.47-3.53 1.47c-3.59 1.49-4.91 1.43-4.91-.28 0-.78-1.05-.87-6.34-.53-5.83.38-6.44.28-7.53-.94-1.01-1.12-1.03-1.51-.31-2.66.66-1.06.66-1.52.03-2.15s-1.45-.62-3.75 0c-5.8 1.55-7.44.68-7.44-3.85 0-2.72-1.56-4.37-3.56-4.4zm-1.44 4.16c.31 0 .57.19.97.59.51.51.78 1.4.56 1.97-.52 1.35-2.98 1.3-3.5-.06-.25-.66.07-1.4.81-1.94.52-.38.85-.57 1.16-.56z'/%3e%3cpath d='M672.1 495.6c3.53-2.24 3.45-2.07 3.96-8.29.35-4.39.29-4.72-.9-4.72-1.73 0-2.63 1.9-2.63 5.52 0 2.32-.36 3.36-1.6 4.59-2.94 2.94-10.24 1.6-11.16-2.05-.31-1.25.09-2.38 1.62-4.55 3.19-4.53 2.47-5.64-1.44-2.2-2.69 2.35-3.17 2.42-2.66.39.47-1.87-.51-2.61-2.7-2.06-1.12.28-1.73.98-2 2.34-.26 1.33-.87 2.07-1.93 2.33-1.77.45-4.79-1.23-4.79-2.66 0-1.06 4.52-6.58 10.32-12.6 2.19-2.28 3.98-4.4 3.98-4.72s-1.17-.58-2.6-.58c-2.09 0-2.6.23-2.6 1.2 0 .66-2.92 4.49-6.5 8.52-7.46 8.4-8.08 10.15-4.39 12.39 2.97 1.82 6.78 1.68 9.77-.35l2.42-1.65v2.99c0 3.82.76 5.19 3.76 6.78 3.77 1.99 8.33 1.75 12.07-.62zm156.56-51.91c-2.767 1.652-.602 5.124-.183 7.429-1.13 3.146-5.171 3.993-8.118 4.577-4.173.692-7.13 4.183-8.718 7.892-.86 2.41-2.937 6.145-5.2 2.477-1.966-1.993-5.582-3.573-7.908-1.246-1.766 1.682-2.214 4.157-2.873 6.402-1.043-1.726-1.51-4.296-3.72-4.842-3.528.496-2.253 4.944-.594 6.778 1.507 2.138 2.956 4.958 1.478 7.497-1.303 3.051-5.81 5.11-8.457 2.5-2.472-1.306-.819-5.966-3.254-6.222-1.204.87-1.303 5.746-3.23 3.103-1.39-2.259-.653-5.353-2.355-7.385-2.01.25-3.627 3.712-2.958 5.571 2.682 3.618 3.785 8.156 4.831 12.467.652 1.727-.095 5.227 1.52 5.91 1.12-2.778.08-5.93.96-8.735 2.619-.329 5.531.866 8.277.23 3.928-.509 6.964-3.824 8.342-7.355.417-2.654-.079-5.347-.153-8.017 3.104.481 6.329.471 9.314 1.48 1.48 2.27-.47 5.448-.88 7.929-1.558 5.052-5.515 8.72-9.365 12.097-1.61.953-1.827 3.478.551 2.118 5.174-2.212 9.03-6.898 11.248-11.97 1.62-3.901.318-8.247 1.375-12.237 1.562-2.996 5.321-2.365 8.103-2.356 2.88-.11 5.337-3.464 4.375-6.261-.916-3.247 2.519-4.811 4.866-5.972 3.112-1.57 5.498-4.759 5.257-8.358-.128-1.84-.037-5.332-2.531-5.5zm-11.031 18.75c3.334.886-.603 7.252-2.375 3.219-.545-1.54.75-3.274 2.375-3.219zm-15.47 4.56c4.338-.253 2.78 6.081-.885 3.205-1.9-.955-1.272-3.323.885-3.205zM645.1 491.48c.12-.63-.2-1.08-.77-1.08-1.21 0-1.94 1.06-1.37 1.98.59.95 1.89.41 2.14-.9zm50.84-5.68c0-.93-.35-1.28-1.13-1.13-1.7.32-1.89 2.48-.22 2.48.93 0 1.35-.42 1.35-1.35zm-62.91-30.52c-2.029-.417-3.305 1.3-4 2.938-1.517 2.55-3.37 5.158-6.093 6.509-1.958.544-4.094-.2-5.782-1.21-2.015-1.004-1.557-3.427-2.42-5.101-1.457-1.144-4.04.492-3.984 2.271-.16 2.386 2.072 3.764 3.925 4.687 1.574.965 3.857 1.501 4.487 3.453-.044 1.659.623 3.557 2.643 2.917 2.26-.038 2.845 2.715 1.933 4.367-.93 1.861-1.557 4.041-1.112 6.115 1.08.91 2.183-1.53 2.965-2.227l1.594-2.125c3.999.217 7.993.727 12.001.584 2.85-.051 5.278-1.81 7.09-3.875 2.564-2.68 4.67-5.829 7.598-8.142 2.084-.508.964-4.433-1.213-3.3-1.96.736-2.578 2.952-3.936 4.364-2.315 2.802-4.677 5.647-7.594 7.843-2.125.881-4.571.497-6.754 0-.91-.796 1.809-1.445 2.188-2.33 1.252-1.25 2.739-2.438 3.464-4.082-.694-1.514-2.816-1.637-4.312-1.667-3.686.442-6.501 3.536-10.223 3.827-2.826.1-1.355-2.96-.082-4.004 2.492-2.96 5.185-5.746 7.786-8.608.738-.888 3.409-1.732 1.7-2.98-.597-.215-1.242-.215-1.869-.224zm1.813 14.969c1.858 1.045-1.186 2.757-2.469 2.523-1.682.504-1.712-1.212-.218-1.553.84-.438 1.727-.894 2.686-.97zm-5.72 3.906c1.059-.02 3.275.996 1.194 1.647-1.45 1.123-3.087-1.143-1.193-1.647z'/%3e%3cpath d='M674.15 476.74c0-1.41-2.53-1.21-2.81.22-.18.92.11 1.14 1.29.97.84-.12 1.52-.65 1.52-1.19zm112.05-9.92c.26-1.35-1.62-2.25-2.61-1.26s-.08 2.87 1.26 2.61c.62-.12 1.23-.73 1.35-1.35zm-174.38-13.73c1.76-1.51 1.78-1.61 1.02-4.93-1.08-4.65-1.01-5.15.76-5.59 2.24-.57 7.93 2.48 9.19 4.92.98 1.89.95 2.02-.71 3.56-1.79 1.65-1.78 3.58.01 3.58 1.48 0 5.57-3.87 5.57-5.26 0-1.93-4.54-6.49-8.13-8.16-2.22-1.04-4.44-1.52-7.01-1.53-4.6 0-5.22.99-3.98 6.34 1.46 6.27-.52 7.12-5.57 2.39-3.75-3.51-5.23-7.16-5.21-12.91.01-6.17 2.37-9.22 7.69-9.94 3.53-.47 3.44-1.3-.19-1.84-5.3-.8-9.78 2.74-11.48 9.06-1.89 7.01 2.44 15.55 10.1 19.95 4.01 2.3 5.61 2.37 7.94.36zm208.84-7.69c.43-.43.78-1.4.78-2.15s.73-2.36 1.62-3.57c.9-1.21 1.63-2.45 1.63-2.75 0-1.23-2.03-1.19-3.63.08-1.64 1.28-2.87 1.31-2.87.06 0-.31.78-.95 1.74-1.42 2.38-1.16 2.58-2.31.57-3.23-2.58-1.17-5.17.97-5.44 4.5-.17 2.36.02 2.77 1.84 3.84 1.66.98 1.97 1.5 1.69 2.9-.48 2.43.53 3.28 2.07 1.74zm19.63-2.22c1.44-1.29 2.61-2.76 2.61-3.25s1.24-1.79 2.76-2.88c4.31-3.1 5.26-6.23 3.33-11.04-.75-1.89-3.11-4.5-8.24-9.12-3.94-3.56-7.57-6.47-8.04-6.47-1.4 0-1.15 5.15.27 5.6 2.56.82 4.11 1.87 8.14 5.5 4.68 4.23 6.84 8.18 5.66 10.38-1.13 2.13-2.63 1.47-6.76-2.96-2.17-2.33-4.32-4.23-4.76-4.23-.48.01-.82.85-.82 2.03 0 1.48.79 2.89 2.93 5.27 3.49 3.88 3.83 6.21 1.21 8.27-.94.74-1.91 1.35-2.15 1.35-.23 0-1-1.16-1.7-2.57-1.46-2.96-10.39-12.39-11.73-12.39-.61 0-.91.76-.91 2.26 0 1.81.36 2.45 1.8 3.19 1.77.92 6.15 5.33 10.55 10.65 1.26 1.52 2.5 2.75 2.77 2.76.26 0 1.65-1.06 3.08-2.35zm8.76-25.07c-.58-1.87-12.56-14.2-13.79-14.2-.64 0-.84.76-.69 2.72.17 2.38.43 2.79 2.07 3.22 1.02.27 4.18 2.75 7.01 5.5 2.82 2.75 5.3 4.84 5.5 4.63.2-.2.16-1.04-.1-1.87zM777.5 556.89a1.78 1.632 0 1 1-3.561 0 1.78 1.632 0 1 1 3.561 0zm6.29-2.1a1.78 1.632 0 1 1-3.561 0 1.78 1.632 0 1 1 3.561 0z'/%3e%3c/g%3e%3c/svg%3e\"},7184:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 291.042 198.438'%3e%3cdefs%3e%3cclipPath id='a' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M0 2834.646h4251.968V0H0z'/%3e%3c/clipPath%3e%3cclipPath id='b' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2066.45 1293.03h70.05v-186.09h-70.05z'/%3e%3c/clipPath%3e%3cclipPath id='c' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2211.74 1676.68h255.01v-253.19h-255.01z'/%3e%3c/clipPath%3e%3cclipPath id='d' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2205.52 1454.59h408.18v-390.65h-408.18z'/%3e%3c/clipPath%3e%3cclipPath id='e' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2521.52 1510.89h73.13v-91.69h-73.13z'/%3e%3c/clipPath%3e%3cclipPath id='f' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2490.57 1549.14h93.58v-82.16h-93.58z'/%3e%3c/clipPath%3e%3cclipPath id='g' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2230.33 1609.63h288.03v-217.74h-288.03z'/%3e%3c/clipPath%3e%3cclipPath id='h' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2288.18 1547.51h230.75v-167.05h-230.75z'/%3e%3c/clipPath%3e%3cclipPath id='i' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2284.54 1494.68h238.37V1330.6h-238.37z'/%3e%3c/clipPath%3e%3cclipPath id='j' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2282.77 1432.13h249.19v-133.84h-249.19z'/%3e%3c/clipPath%3e%3cclipPath id='k' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2325.63 1365.89h208.44v-104.44h-208.44z'/%3e%3c/clipPath%3e%3cclipPath id='l' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2305.72 1271.04h208.09v-49.59h-208.09z'/%3e%3c/clipPath%3e%3cclipPath id='m' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2238.25 1276.4h265.8v-111.53h-265.8z'/%3e%3c/clipPath%3e%3cclipPath id='n' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2201.75 1274.57h263.53v-153.56h-263.53z'/%3e%3c/clipPath%3e%3cclipPath id='o' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2095.46 1292.36h305.73v-193.18h-305.73z'/%3e%3c/clipPath%3e%3cclipPath id='p' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2174.94 1386.32h124.17v-119.81h-124.17z'/%3e%3c/clipPath%3e%3cclipPath id='q' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2137.84 1020.08h23.55v-28.677h-23.55z'/%3e%3c/clipPath%3e%3cclipPath id='r' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2199.61 1064.1h34.86v-35h-34.86z'/%3e%3c/clipPath%3e%3cclipPath id='s' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2115.47 1293.03h70.06v-186.09h-70.06z'/%3e%3c/clipPath%3e%3cclipPath id='t' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1785.22 1676.68h255.01v-253.19h-255.01z'/%3e%3c/clipPath%3e%3cclipPath id='u' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1638.27 1454.59h408.18v-390.65h-408.18z'/%3e%3c/clipPath%3e%3cclipPath id='v' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1657.32 1510.89h73.13v-91.69h-73.13z'/%3e%3c/clipPath%3e%3cclipPath id='w' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1667.82 1549.14h93.58v-82.16h-93.58z'/%3e%3c/clipPath%3e%3cclipPath id='x' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1733.61 1609.63h288.03v-217.74h-288.03z'/%3e%3c/clipPath%3e%3cclipPath id='y' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1733.04 1547.51h230.75v-167.05h-230.75z'/%3e%3c/clipPath%3e%3cclipPath id='z' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1729.06 1494.68h238.37V1330.6h-238.37z'/%3e%3c/clipPath%3e%3cclipPath id='A' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1720.01 1432.13h249.19v-133.84h-249.19z'/%3e%3c/clipPath%3e%3cclipPath id='B' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1717.9 1365.89h208.44v-104.44H1717.9z'/%3e%3c/clipPath%3e%3cclipPath id='C' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1738.16 1271.04h208.09v-49.59h-208.09z'/%3e%3c/clipPath%3e%3cclipPath id='D' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1747.92 1276.4h265.8v-111.53h-265.8z'/%3e%3c/clipPath%3e%3cclipPath id='E' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1786.69 1274.57h263.53v-153.56h-263.53z'/%3e%3c/clipPath%3e%3cclipPath id='F' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1850.78 1292.36h305.73v-193.18h-305.73z'/%3e%3c/clipPath%3e%3cclipPath id='G' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1952.86 1386.32h124.17v-119.81h-124.17z'/%3e%3c/clipPath%3e%3cclipPath id='H' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2090.58 1020.08h23.55v-28.677h-23.55z'/%3e%3c/clipPath%3e%3cclipPath id='I' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2017.5 1064.1h34.86v-35h-34.86z'/%3e%3c/clipPath%3e%3cclipPath id='J' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2152.04 1057.5h36.11v-63.615h-36.11z'/%3e%3c/clipPath%3e%3cclipPath id='K' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2181.67 1062.56h15.19v-66.239h-15.19z'/%3e%3c/clipPath%3e%3cclipPath id='L' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2063.75 1057.49h36.11v-63.618h-36.11z'/%3e%3c/clipPath%3e%3cclipPath id='M' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2055.04 1062.55h15.19v-66.242h-15.19z'/%3e%3c/clipPath%3e%3cclipPath id='N' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2303.35 1598.25h74.92v-73.48h-74.92z'/%3e%3c/clipPath%3e%3cclipPath id='O' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1873.7 1598.25h74.92v-73.48h-74.92z'/%3e%3c/clipPath%3e%3cclipPath id='P' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1816.62 1557.48h91.87v-67.61h-91.87z'/%3e%3c/clipPath%3e%3cclipPath id='Q' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2343.48 1557.48h91.86v-66.78h-91.86z'/%3e%3c/clipPath%3e%3cclipPath id='R' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2160.52 1020.85h58.98v-36.402h-58.98z'/%3e%3c/clipPath%3e%3cclipPath id='S' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2032.47 1020.85h58.98v-36.402h-58.98z'/%3e%3c/clipPath%3e%3cclipPath id='T' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1932.9 1644.69h46.83v-21.91h-46.83z'/%3e%3c/clipPath%3e%3cclipPath id='U' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1912.44 1606.12h43.57v-34.67h-43.57z'/%3e%3c/clipPath%3e%3cclipPath id='V' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1973.3 1568.01h416.04v-434.46H1973.3z'/%3e%3c/clipPath%3e%3cclipPath id='W' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2031.12 1552.73h344.05v-368.24h-344.05z'/%3e%3c/clipPath%3e%3cclipPath id='X' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1978.01 1600.9h19.79v-20.81h-19.79z'/%3e%3c/clipPath%3e%3cclipPath id='Y' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1964.25 1584.49h16.4v-19.48h-16.4z'/%3e%3c/clipPath%3e%3cclipPath id='Z' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1862.63 1568.01h416.04v-434.46h-416.04z'/%3e%3c/clipPath%3e%3cclipPath id='aa' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M1876.8 1552.73h344.05v-368.24H1876.8z'/%3e%3c/clipPath%3e%3cclipPath id='ab' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2254.17 1600.9h19.79v-20.81h-19.79z'/%3e%3c/clipPath%3e%3cclipPath id='ac' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2271.32 1584.49h16.4v-19.48h-16.4z'/%3e%3c/clipPath%3e%3cclipPath id='ad' clipPathUnits='userSpaceOnUse'%3e%3cpath d='M2028.34 1202.53h204.21v-55.25h-204.21z'/%3e%3c/clipPath%3e%3c/defs%3e%3cpath d='M0 198.437h291.042v-66.139H0z' fill='%2300702d'/%3e%3cpath d='M0 132.298h291.042V66.14H0z' fill='%23f0e53c'/%3e%3cpath d='M0 66.14h291.042V0H0z' fill='%23d32011'/%3e%3cg clip-path='url(%23a)' transform='matrix(.07 0 0 -.07 -3.307 198.466)'%3e%3cpath d='M2493.016 985.422c1.904 2.46 1.844 6-.346 8.127l-715.049 697.004c-2.204 2.13-5.607 1.965-7.587-.375-2.01-2.354-1.844-5.982.344-8.127l715.051-696.988a5.375 5.375 0 0 1 2.594-1.41s3.09-.66 4.993 1.77' fill='%23473125'/%3e%3cpath d='M2493.016 985.422c1.904 2.46 1.844 6-.346 8.127l-715.049 697.004c-2.204 2.13-5.607 1.965-7.587-.375-2.01-2.354-1.844-5.982.344-8.127l715.051-696.988a5.375 5.375 0 0 1 2.594-1.41s3.09-.66 4.993 1.77z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2555.333 1077.518c1.8.18 3.493 1.29 4.364 3.15 1.35 2.847.269 6.296-2.37 7.736l-876.554 473.003c-2.653 1.425-5.877.286-7.212-2.549-1.334-2.834-.27-6.282 2.37-7.72l876.552-473.02a5.397 5.397 0 0 1 2.85-.6' fill='%23473125'/%3e%3cpath d='M2555.333 1077.518c1.8.18 3.493 1.29 4.364 3.15 1.35 2.847.269 6.296-2.37 7.736l-876.554 473.003c-2.653 1.425-5.877.286-7.212-2.549-1.334-2.834-.27-6.282 2.37-7.72l876.552-473.02a5.397 5.397 0 0 1 2.85-.6z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2535.014 1022.999c1.8-.091 3.614.78 4.694 2.52 1.68 2.637 1.02 6.208-1.424 7.976l-813.158 588.58c-2.46 1.785-5.804 1.08-7.453-1.544-1.664-2.624-1.019-6.193 1.425-7.977l813.16-588.595c.853-.601 1.797-.931 2.756-.96' fill='%23473125'/%3e%3cpath d='M2535.014 1022.999c1.8-.091 3.614.78 4.694 2.52 1.68 2.637 1.02 6.208-1.424 7.976l-813.158 588.58c-2.46 1.785-5.804 1.08-7.453-1.544-1.664-2.624-1.019-6.193 1.425-7.977l813.16-588.595c.853-.601 1.797-.931 2.756-.96z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2067.028 1284.38c2.999-34.816 5.127-114.107 5.623-128.473.494-14.363 27.604-49.84 29.958-27.288 2.369 22.58-15.563 150.003-15.563 150.003z' fill='%23f0e53c'/%3e%3cpath d='M2079.667 1287.468c7.542-49.69 12.64-178.492 25.7-182.092 13.076-3.568 21.068-2.608 24.891 8.518 3.838 11.125-12.55 66.126-12.55 66.126l-19.763 68.613-5.938 39.436z' fill='%2300702d'/%3e%3cg clip-path='url(%23b)' opacity='.25'%3e%3cpath d='M2136.497 1106.937c-14.53.21-18.818 0-27.965 49.032-9.131 49.031-14.155 90.206-20.977 86.427-6.823-3.81-11.757-1.71-13.75 6.807-1.98 8.516-9.162 31.19-6.928 38.775 2.219 7.587 28.579 4.38 28.579 4.38l23.393-101.782z'/%3e%3c/g%3e%3cpath d='M1758.954 985.422c-1.904 2.46-1.844 6 .346 8.127l715.049 697.004c2.203 2.13 5.606 1.965 7.586-.375 2.01-2.354 1.845-5.982-.343-8.127l-715.053-696.988a5.367 5.367 0 0 0-2.592-1.41s-3.09-.66-4.993 1.77' fill='%23473125'/%3e%3cpath d='M1758.954 985.422c-1.904 2.46-1.844 6 .346 8.127l715.049 697.004c2.203 2.13 5.606 1.965 7.586-.375 2.01-2.354 1.845-5.982-.343-8.127l-715.053-696.988a5.367 5.367 0 0 0-2.592-1.41s-3.09-.66-4.993 1.77z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2493.826 1576.912c-3.313 38.97-22.491 67.534-21.337 113.867l-94.87-92.53c11.097-15.88 30.32-48.162 34.938-87.567 45.448 36.526 81.269 66.23 81.269 66.23' fill='%23d32011'/%3e%3cpath d='m2303.353 1525.796-106.836-104.226c12.282-10.377 20.514-28.812 29.24-44.255 3.48-6.088 46.392 24.058 96.908 62.668-.014 15.79 1.034 35.147-19.312 85.813' fill='%2300702d'/%3e%3cpath d='m2377.62 1598.249-74.267-72.452c20.346-50.666 19.298-70.025 19.313-85.813 29.494 22.536 61.553 47.937 89.892 70.698-4.62 39.405-23.842 71.688-34.938 87.567' fill='%23f0e53c'/%3e%3cg clip-path='url(%23c)' opacity='.25'%3e%3cpath d='M2466.747 1676.684c-27.246-67.354-128.742-171.325-255.01-253.194 58.794 24.53 198.87 135.684 223.852 167.232 31.832 40.185 31.158 85.962 31.158 85.962'/%3e%3c/g%3e%3cpath d='M1696.637 1077.518c-1.8.18-3.493 1.29-4.364 3.15-1.349 2.847-.27 6.296 2.37 7.736l876.554 473.003c2.653 1.425 5.893.286 7.212-2.549 1.334-2.834.27-6.282-2.369-7.72l-876.553-473.02a5.397 5.397 0 0 0-2.85-.6' fill='%23473125'/%3e%3cpath d='M1696.637 1077.518c-1.8.18-3.493 1.29-4.364 3.15-1.349 2.847-.27 6.296 2.37 7.736l876.554 473.003c2.653 1.425 5.893.286 7.212-2.549 1.334-2.834.27-6.282-2.369-7.72l-876.553-473.02a5.397 5.397 0 0 0-2.85-.6z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='m2501.098 1234.299 54.534 2.729-4.018 91.945-54.536-2.73z' fill='%23f0e53c'/%3e%3cpath d='M2163.89 1181.188c45.148-48.37 131.456-130.149 245.877-115.846 61.328 7.677 96.653 30.47 125.397 59.558 28.761 29.06 16.151 32.237 34.922 45.464 18.79 13.224 23.557 49.99 23.796 50.77.226.78-1.529 13.734 7.378 28.758 8.892 15.025 10.301 37.756 7.347 45.074-2.954 7.316 5.323 29.99 5.084 36.136-.24 6.117-6.868 25.7-7.978 34.847-1.095 9.176-3.194 30.078-3.194 30.078-1.994 32.411-18.127 155.5-15.339 175.697l-78.96-41.819c3.284-58.014 8.712-177.84 15.82-195.384 7.121-17.543 20.976-37.756 12.294-51.82-21.516-34.818 9.852-39.405-20.976-47.082-21.023-5.248-351.469-54.43-351.469-54.43' fill='%23d32011'/%3e%3cg clip-path='url(%23d)' opacity='.25'%3e%3cpath d='M2613.691 1331.102c-.24 6.117-6.868 25.7-7.978 34.847-1.095 9.176-3.194 30.078-3.194 30.078-.689 11.268-3.088 33.505-5.817 58.561-9.072-15.819-18.338-36.45-17.979-44.564.541-12.377-25.985-34.448-52.525-48.034-3.597-1.86-5.652-2.968-6.507-3.569.031-.21.045-.358.075-.569 4.814.54 41.684 13.404 61.641 7.048 26.225-8.338 32.584-18.054 16.09-29.06-12.836-8.546-40.035-19.702-62.572-25.46-6.402-1.649-12.446-2.879-17.663-3.449-23.556-2.579-44.653-28.19-2.774-18.412 8.082 1.888 16.344 4.557 24.411 7.526 33.752 12.356 64.205 29.87 64.491 16.884.315-14.635-14.29-46.422-73.892-64.775-6.029-1.86-12.506-3.57-19.479-5.128-27.228-6.028-39.046-11.397-41.818-15.474-4.964-7.348 19.267-10.587 37.036-6.239 27.663 6.748 93.113 18.473 79.74-3.688-13.375-22.162-69.724-28.82-100.613-27.29-30.903 1.53-9.836-21.202 15.265-21.503 25.115-.268 37.71 5.818 37.231-9.625-.735-23.81-111.229-153.482-273.798-40.575-24.62 17.094-45.642 20.574-57.547 25.101 48.116-36.347 118.755-89.097 204.252-78.39 61.328 7.676 96.653 30.468 125.398 59.557 28.76 29.06 12.22 29.27 31.007 42.464 18.775 13.225 27.471 52.99 27.71 53.77.226.78-1.529 13.734 7.378 28.758 8.892 15.025 10.301 37.756 7.347 45.074-2.954 7.316 5.323 29.99 5.084 36.136'/%3e%3c/g%3e%3cg clip-path='url(%23e)' opacity='.25'%3e%3cpath d='M2524.73 1436.834c-13.12-33.362 16.552-13.599 42.27 11.546 10.854 10.617 19.941 18.923 27.647 25.116-1.35 12.594-2.697 25.355-3.883 37.396-25.416-20.888-56.588-50.02-66.035-74.058'/%3e%3c/g%3e%3cg clip-path='url(%23f)' opacity='.25'%3e%3cpath d='M2582.681 1545.138c-14.304-22.4-34.17-46.332-74.295-68.075-40.126-21.755.074-1.543.074-1.543l8.052 31.233c21.651 10.841 77.341 55.9 66.17 38.385'/%3e%3c/g%3e%3cpath d='M1716.954 1022.999c-1.798-.091-3.613.78-4.692 2.52-1.68 2.637-1.02 6.208 1.424 7.976l813.158 588.58c2.459 1.785 5.801 1.08 7.452-1.544 1.665-2.624 1.019-6.193-1.425-7.977l-813.158-588.595c-.854-.601-1.8-.931-2.759-.96' fill='%23473125'/%3e%3cpath d='M1716.954 1022.999c-1.798-.091-3.613.78-4.692 2.52-1.68 2.637-1.02 6.208 1.424 7.976l813.158 588.58c2.459 1.785 5.801 1.08 7.452-1.544 1.665-2.624 1.019-6.193-1.425-7.977l-813.158-588.595c-.854-.601-1.8-.931-2.759-.96z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2081.062 1312.329c-.135.21-.284.42-.42.6.12-.21.269-.39.42-.6' fill='%23d32011'/%3e%3cpath d='M2267.322 1218.82c35.161-.54 53.919 13.437 64.504 17.034 10.602 3.63 21.863 24.89 25.611 37.365 3.764 12.447 7.888 16.496 9.087 21.923 1.199 5.457.27 10.016 0 16.135-.255 6.117 4.078 21.682 4.333 32.446.24 10.738-14.184 29.21-11.41 47.743 2.773 18.57-1.17 42.92-9.117 60.943-5.113 11.562-6.523 26.467-6.853 39.512l-131.98-95.506c42.419-34.788-8.127-157.772-96.487-88.53-4.395 1.622-14.126 11.548-27.71 10.888-7.768-.39-7.947-2.908-6.688-4.978 38.565-6.567 65.45-43.483 98.093-68.704 32.657-25.221 53.47-25.73 88.617-26.27' fill='%2300702d'/%3e%3cpath d='M2536.26 1397.226c.3 9.23-1.485 33.686-3.989 42.008-2.518 8.306-8.276 8.785-7.24 34.157 1.048 25.385 1.228 37.665.208 44.518-1.02 6.853 7.377 54.04-1.8 103.476l-88.3-63.905c3.179-18.204 4.858-51.672 6.356-59.109 1.83-9.116 8.518-31.038 6.328-46.498-2.188-15.458 7.438-38.759 10.527-43.963 3.09-5.217-1.334-51.467-4.798-70.84-3.448-19.343 8.052-36.437.479-59.827-13.945-58.239-68.54-121.604-140.766-125.984-72.228-4.377-159.614 75.661-176.903 93.956-16.63 17.633-37.426 40.724-53.77 64.895-2.804 0-12.656-.57-11.051-9.056 1.875-9.867-10.257 4.858-2.354-11.606 7.886-16.493 47.337-65.946 79.575-98.094 32.223-32.147 107.06-104.899 205.003-97.132 78.599 6.236 126.087 51.58 137.843 94.374 3.568 12.985 26.014 28.158 27.423 45.104 1.41 16.943-5.907 20.421 2.684 36.975 8.593 16.523 9.807 28.07 10.047 32.717.735 15.175 7.197 31.818 7.092 67.115-.045 16.553-2.908 17.484-2.594 26.72' fill='%23d32011'/%3e%3cpath d='m2080.612 1312.989.03-.06-.03.06m.45-.66c.494-.75 1.02-1.47 1.529-2.22.45 0 .75-.028.75-.028s-1.32.989-2.28 2.248' fill='%23f0e53c'/%3e%3cpath d='M2313.264 1151.26c72.228 4.38 126.821 67.744 140.766 125.982 7.573 23.391-3.927 40.485-.479 59.828 3.464 19.373 7.888 65.623 4.798 70.84-3.089 5.203-12.715 28.505-10.526 43.963 2.19 15.46-4.497 37.382-6.329 46.497-1.498 7.438-3.177 40.906-6.356 59.11l-91.66-66.366c.33-13.045 1.738-27.949 6.851-39.51 7.948-18.024 11.891-42.374 9.118-60.945-2.775-18.532 11.65-37.005 11.41-47.742-.255-10.765-4.588-26.33-4.333-32.447.27-6.118 1.2-10.677 0-16.134-1.199-5.428-5.323-9.476-9.087-21.923-3.748-12.475-15.009-33.736-25.61-37.366-10.586-3.598-29.344-17.572-64.505-17.032-35.148.54-55.96 1.05-88.618 26.27-32.642 25.22-59.527 62.136-98.093 68.703l.031-.059c.135-.18.284-.39.42-.6.96-1.259 2.28-2.249 2.28-2.249s-.302.03-.75.03c16.343-24.17 37.14-47.262 53.77-64.895 17.288-18.295 104.674-98.333 176.902-93.956' fill='%23f0e53c'/%3e%3cg clip-path='url(%23g)' opacity='.25'%3e%3cpath d='M2230.33 1391.89c117.092 60.33 282.044 190.585 288.027 217.74.299-23.002-102.215-154.727-288.026-217.74'/%3e%3c/g%3e%3cg clip-path='url(%23h)' opacity='.25'%3e%3cpath d='M2518.927 1547.507c-17.154-35.252-96.25-140.362-230.748-167.045 52.21 3.12 226.265 56.343 230.748 167.045'/%3e%3c/g%3e%3cg clip-path='url(%23i)' opacity='.25'%3e%3cpath d='M2521.236 1494.683c13.87-36.136-57.924-183.972-236.7-161.841 74.521 1.019 198.403 54.039 236.7 161.84'/%3e%3c/g%3e%3cg clip-path='url(%23j)' opacity='.25'%3e%3cpath d='M2528.283 1432.127c-2.969-30.844-86.231-143.218-245.518-124.326 31.668-19.133 177.039-15.084 238.021 65.945 9.401 14.725 15.443 40.359 7.497 58.38'/%3e%3c/g%3e%3cg clip-path='url(%23k)' opacity='.25'%3e%3cpath d='M2534.07 1365.888c-10.945-29.179-50.515-107.869-208.436-87.387 43.11-18.563 146.315-34.126 195.496 22.072 8.862 10.407 12.94 65.315 12.94 65.315'/%3e%3c/g%3e%3cg clip-path='url(%23l)' opacity='.25'%3e%3cpath d='M2305.722 1265.217c117.436-36.316 159.824-21.92 208.091 5.817-.795-14.604-56.678-100.283-208.09-5.817'/%3e%3c/g%3e%3cg clip-path='url(%23m)' opacity='.25'%3e%3cpath d='M2504.052 1215.286c-16.703-11.576-119.16-45.853-265.806 61.117 27.322-34.697 120.72-104.421 223.132-101.601 15.774.03 18.247-.87 16.208-9.927 8.878 9.656 7.889 16.493 11.803 25.13 3.927 8.636 14.662 25.28 14.662 25.28'/%3e%3c/g%3e%3cg clip-path='url(%23n)' opacity='.25'%3e%3cpath d='M2465.277 1151.2c-17.454-6.088-165.343-22.852-263.525 123.374 11.56-34.697 60.142-128.952 162.733-146.824 33.272-4.14 77.655-21.443 100.792 23.45'/%3e%3c/g%3e%3cg clip-path='url(%23o)' opacity='.25'%3e%3cpath d='M2095.456 1292.357c51.596-111.049 214.014-209.44 305.734-184.25-28.234-11.516-115.336-21.203-186.453 33.616-71.105 54.85-119.28 150.634-119.28 150.634'/%3e%3c/g%3e%3cg clip-path='url(%23p)' opacity='.33'%3e%3cpath d='M2176.666 1287.56c-9.491-2.97 23.376-22.884 20.213-16.135-3.165 6.746-4.934 14.334-.676 15.323 4.275.991 17.918-15.984 10.737.54-7.168 16.525 22.715-11.156 22.715-11.156s-6.777 7.347-2.428 12.176c4.334 4.8 40.125-21.8 40.125-21.8s-15.01 15.382-23.107 26.93c-8.097 11.543 35.733-4.05 35.733-4.05s-7.184.42-24.306 14.904c-17.124 14.485 24.739 8.158 24.739 8.158s-3.193 7.496-16.448 15.143c-13.24 7.647 35.147 16.494 35.147 16.494s-26.165 7.887-32.222 15.264c-6.06 7.348 36.076 11.006 23.21 10.347-32.538-1.62-71.57 18.802-70.354 16.433 13.195-25.4 8.442-82.439-43.078-98.572'/%3e%3c/g%3e%3cpath d='M2545.271 1624.894c7.092 3.6 11.396-.735 15.055-4.813 8.172 23.78 36.931 45.657 44.307 51.835-8.127-4.978-37.904-25.265-61.565-24.396 2.158-5.158 4.288-11.05-1.485-16.733z' fill='%23cacaca'/%3e%3cpath d='M2545.271 1624.894c7.092 3.6 11.396-.735 15.055-4.813 8.172 23.78 36.931 45.657 44.307 51.835-8.127-4.978-37.904-25.265-61.565-24.396 2.158-5.158 4.288-11.05-1.485-16.733z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2537.16 1633.515c3.014 2.174 7.437.795 9.866-3.074 2.445-3.867 1.964-8.787-1.05-10.946-3.014-2.174-7.437-.793-9.867 3.074-2.442 3.883-1.978 8.787 1.05 10.946' fill='%23cacaca'/%3e%3cpath d='M2537.16 1633.515c3.014 2.174 7.437.795 9.866-3.074 2.445-3.867 1.964-8.787-1.05-10.946-3.014-2.174-7.437-.793-9.867 3.074-2.442 3.883-1.978 8.787 1.05 10.946zm6.538 13.645 16.537-26.314' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2536.364 1622.764c-6.896 10.977-7.661 24.441-3.134 35.777-9.911-10.676-11.755-27.679-3.596-40.635 8.14-12.954 23.554-17.544 36.525-11.74-11.516-.21-22.896 5.608-29.795 16.598' fill='%23cacaca'/%3e%3cpath d='M2536.364 1622.764c-6.896 10.977-7.661 24.441-3.134 35.777-9.911-10.676-11.755-27.679-3.596-40.635 8.14-12.954 23.554-17.544 36.525-11.74-11.516-.21-22.896 5.608-29.795 16.598z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='m2531.027 1510.591 3.51.54c-2.566 18.923-1.996 86.263-1.336 96.46l-3.539.253c-.674-10.54-1.289-77.655 1.365-97.253' fill='%23f0e53c'/%3e%3cpath d='m2531.027 1510.591 3.51.54c-2.566 18.923-1.996 86.263-1.336 96.46l-3.539.253c-.674-10.54-1.289-77.655 1.365-97.253z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M2527.038 1500.545c-.66 95.274 1.005 101.347 2.505 106.701.194.749.419 1.529.629 2.518l-3.464.824a29.466 29.466 0 0 0-.57-2.263c-1.618-5.893-3.313-11.965-2.64-107.809z' fill='%23f0e53c'/%3e%3cpath d='M2527.038 1500.545c-.66 95.274 1.005 101.347 2.505 106.701.194.749.419 1.529.629 2.518l-3.464.824a29.466 29.466 0 0 0-.57-2.263c-1.618-5.893-3.313-11.965-2.64-107.809z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M2524.564 1625.763c1.14-4.692 3.554-10.572 8.742-14.694 5.188-4.138.404-8.036-2.984-5.293-3.373 2.758-9.042 9.011-9.146 13.735-.106 4.738 1.394 6.447 3.388 6.252' fill='%23f0e53c'/%3e%3cpath d='M2524.564 1625.763c1.14-4.692 3.554-10.572 8.742-14.694 5.188-4.138.404-8.036-2.984-5.293-3.373 2.758-9.042 9.011-9.146 13.735-.106 4.738 1.394 6.447 3.388 6.252z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M2536.32 1510.861c2.25-5.638 11.666-38.82 15.325-41.475-4.799-1.662-8.097-2.067-11.096-4.347-3-2.294-3.855-3.043-7.183-2.968 0 0-6.807 39.24-3.839 47.202z' fill='%23f0e53c'/%3e%3cpath d='M2536.32 1510.861c2.25-5.638 11.666-38.82 15.325-41.475-4.799-1.662-8.097-2.067-11.096-4.347-3-2.294-3.855-3.043-7.183-2.968 0 0-6.807 39.24-3.839 47.202z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='m2531.7 1509.782 8.864-32.657m1.243 9.67 4.89-18.952m-7.017-3.463-8.819 38.325' fill='none' stroke='%23473125' stroke-width='1.556' stroke-linecap='round'/%3e%3cpath d='M2527.953 1509.917c.225-1.68 2.58-2.699 5.248-2.278 2.669.403 4.648 2.114 4.424 3.792-.226 1.68-2.58 2.7-5.248 2.294-2.67-.419-4.65-2.114-4.424-3.808' fill='%23f0e53c'/%3e%3cpath d='M2527.953 1509.917c.225-1.68 2.58-2.699 5.248-2.278 2.669.403 4.648 2.114 4.424 3.792-.226 1.68-2.58 2.7-5.248 2.294-2.67-.419-4.65-2.114-4.424-3.808z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M2529.213 1500.651c1.44-6.957 3.014-7.588 5.952-44.414-5.232-1.693-6.686 1.095-9.146 1.68-2.458.585-10.511-2.759-10.33 3.223.179 5.984 4.812 35.507 7.36 39.212z' fill='%23f0e53c'/%3e%3cpath d='M2529.213 1500.651c1.44-6.957 3.014-7.588 5.952-44.414-5.232-1.693-6.686 1.095-9.146 1.68-2.458.585-10.511-2.759-10.33 3.223.179 5.984 4.812 35.507 7.36 39.212z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='m2528.057 1487.156-.284-23.946m3.509 5.862.599-13.375m-6.057 42.239-2.594-26.885m-4.53-7.721-.044-5.759' fill='none' stroke='%23473125' stroke-width='1.556' stroke-linecap='round'/%3e%3cpath d='M2520.126 1501.041c-.016-1.71 2.159-3.105 4.858-3.134 2.7-.015 4.889 1.334 4.905 3.043.013 1.695-2.161 3.09-4.86 3.12-2.698.03-4.887-1.336-4.903-3.029' fill='%23f0e53c'/%3e%3cpath d='M2520.126 1501.041c-.016-1.71 2.159-3.105 4.858-3.134 2.7-.015 4.889 1.334 4.905 3.043.013 1.695-2.161 3.09-4.86 3.12-2.698.03-4.887-1.336-4.903-3.029z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M2492.207 1696.178c6.552 4.647 11.395 1.019 15.55-2.445 4.887 24.77 30.423 50.846 36.9 58.089-7.378-6.164-34.128-30.815-57.653-33.603 2.835-4.768 5.727-10.271.765-16.78z' fill='%23cacaca'/%3e%3cpath d='M2492.207 1696.178c6.552 4.647 11.395 1.019 15.55-2.445 4.887 24.77 30.423 50.846 36.9 58.089-7.378-6.164-34.128-30.815-57.653-33.603 2.835-4.768 5.727-10.271.765-16.78z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2483.03 1703.465c2.699 2.609 7.242 1.933 10.182-1.53 2.922-3.463 3.118-8.381.434-11.005-2.699-2.612-7.257-1.92-10.197 1.528-2.923 3.464-3.118 8.396-.419 11.006' fill='%23cacaca'/%3e%3cpath d='M2483.03 1703.465c2.699 2.609 7.242 1.933 10.182-1.53 2.922-3.463 3.118-8.381.434-11.005-2.699-2.612-7.257-1.92-10.197 1.528-2.923 3.464-3.118 8.396-.419 11.006zm4.634 14.499 19.897-23.497' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2483.69 1692.698c-8.307 9.791-10.87 23.016-7.918 34.921-8.366-12.085-7.9-29.194 1.89-40.77 9.806-11.56 25.671-13.734 37.725-5.997-11.349-1.979-23.39 2.04-31.697 11.846' fill='%23cacaca'/%3e%3cpath d='M2483.69 1692.698c-8.307 9.791-10.87 23.016-7.918 34.921-8.366-12.085-7.9-29.194 1.89-40.77 9.806-11.56 25.671-13.734 37.725-5.997-11.349-1.979-23.39 2.04-31.697 11.846z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2471.74 1578.35c-1.2 95.275.435 101.348 1.904 106.716.195.764.404 1.545.599 2.535l-3.448.794c-.18-.87-.36-1.545-.555-2.264-1.604-5.908-3.254-11.996-2.055-107.824z' fill='%23f0e53c'/%3e%3cpath d='M2471.74 1578.35c-1.2 95.275.435 101.348 1.904 106.716.195.764.404 1.545.599 2.535l-3.448.794c-.18-.87-.36-1.545-.555-2.264-1.604-5.908-3.254-11.996-2.055-107.824z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M2471.605 1693.853c1.753-4.468 4.933-9.911 10.63-13.195 5.683-3.298 1.47-7.902-2.248-5.698-3.705 2.22-10.166 7.528-10.902 12.19-.75 4.664.525 6.583 2.52 6.703' fill='%23f0e53c'/%3e%3cpath d='M2471.605 1693.853c1.753-4.468 4.933-9.911 10.63-13.195 5.683-3.298 1.47-7.902-2.248-5.698-3.705 2.22-10.166 7.528-10.902 12.19-.75 4.664.525 6.583 2.52 6.703z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M2473.914 1578.486c1.483-6.957 3.059-7.586 6.207-44.383-5.233-1.724-6.702 1.05-9.161 1.62-2.46.57-10.496-2.819-10.347 3.148.135 5.983 4.618 35.553 7.138 39.256z' fill='%23f0e53c'/%3e%3cpath d='M2473.914 1578.486c1.483-6.957 3.059-7.586 6.207-44.383-5.233-1.724-6.702 1.05-9.161 1.62-2.46.57-10.496-2.819-10.347 3.148.135 5.983 4.618 35.553 7.138 39.256z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='m2472.834 1564.976-.15-23.945m3.478 5.877.66-13.359m-6.298 42.193-2.43-26.915m-4.497-7.737v-5.757' fill='none' stroke='%23473125' stroke-width='1.556' stroke-linecap='round'/%3e%3cpath d='M2464.812 1578.8c0-1.693 2.174-3.087 4.873-3.087 2.698-.015 4.888 1.348 4.903 3.059 0 1.709-2.189 3.088-4.874 3.088-2.699.015-4.886-1.364-4.902-3.06' fill='%23f0e53c'/%3e%3cpath d='M2464.812 1578.8c0-1.693 2.174-3.087 4.873-3.087 2.698-.015 4.888 1.348 4.903 3.059 0 1.709-2.189 3.088-4.874 3.088-2.699.015-4.886-1.364-4.902-3.06z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M2607.783 1571.62c7.467 2.593 11.216-2.28 14.35-6.824 10.93 22.462 42.058 40.245 50.11 45.358-8.65-3.823-40.589-19.882-63.95-15.804 1.529-5.397 2.924-11.544-3.48-16.39z' fill='%23cacaca'/%3e%3cpath d='M2607.783 1571.62c7.467 2.593 11.216-2.28 14.35-6.824 10.93 22.462 42.058 40.245 50.11 45.358-8.65-3.823-40.589-19.882-63.95-15.804 1.529-5.397 2.924-11.544-3.48-16.39z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2600.75 1581.276c3.255 1.738 7.483-.226 9.433-4.41 1.949-4.167.898-8.965-2.34-10.705-3.27-1.739-7.482.224-9.431 4.393-1.965 4.184-.915 8.982 2.339 10.722' fill='%23cacaca'/%3e%3cpath d='M2600.75 1581.276c3.255 1.738 7.483-.226 9.433-4.41 1.949-4.167.898-8.965-2.34-10.705-3.27-1.739-7.482.224-9.431 4.393-1.965 4.184-.915 8.982 2.339 10.722zm8.112 12.624 13.271-28.354' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M2598.681 1570.704c-5.532 11.831-4.679 25.295 1.154 35.926-11.094-9.236-14.949-25.864-8.41-39.824 6.537-13.96 21.276-20.602 34.83-16.615-11.44 1.35-22.025 8.683-27.574 20.513' fill='%23cacaca'/%3e%3cpath d='M2598.681 1570.704c-5.532 11.831-4.679 25.295 1.154 35.926-11.094-9.236-14.949-25.864-8.41-39.824 6.537-13.96 21.276-20.602 34.83-16.615-11.44 1.35-22.025 8.683-27.574 20.513z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='m2598.277 1451.379 3.448.81c-3.838 19.912-7.827 91.48-7.856 102.351l-3.539.03c.03-11.245 3.958-82.544 7.947-103.191' fill='%23f0e53c'/%3e%3cpath d='m2598.277 1451.379 3.448.81c-3.838 19.912-7.827 91.48-7.856 102.351l-3.539.03c.03-11.245 3.958-82.544 7.947-103.191z' fill='none' stroke='%23473125' stroke-width='1.605'/%3e%3cpath d='M2594.962 1440.449c-7.105 101.12-5.831 107.689-4.723 113.477.166.809.33 1.648.466 2.714l-3.51.645a37.66 37.66 0 0 0-.404-2.444c-1.23-6.358-2.505-12.926 4.634-114.663z' fill='%23f0e53c'/%3e%3cpath d='M2594.962 1440.449c-7.105 101.12-5.831 107.689-4.723 113.477.166.809.33 1.648.466 2.714l-3.51.645a37.66 37.66 0 0 0-.404-2.444c-1.23-6.358-2.505-12.926 4.634-114.663z' fill='none' stroke='%23473125' stroke-width='1.605'/%3e%3cpath d='M2587.345 1575.292c.557-4.813 2.266-10.96 6.929-15.759 4.648-4.812-.571-8.037-3.6-4.843-3.013 3.194-7.901 10.166-7.435 14.875.449 4.707 2.158 6.192 4.106 5.727' fill='%23f0e53c'/%3e%3cpath d='M2587.345 1575.292c.557-4.813 2.266-10.96 6.929-15.759 4.648-4.812-.571-8.037-3.6-4.843-3.013 3.194-7.901 10.166-7.435 14.875.449 4.707 2.158 6.192 4.106 5.727z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M2603.614 1451.379c2.564-5.458 13.991-37.906 17.814-40.32-4.694-1.979-7.962-2.624-10.826-5.097-2.85-2.49-3.659-3.3-6.988-3.464 0 0-9.19 38.671-6.702 46.842z' fill='%23f0e53c'/%3e%3cpath d='M2603.614 1451.379c2.564-5.458 13.991-37.906 17.814-40.32-4.694-1.979-7.962-2.624-10.826-5.097-2.85-2.49-3.659-3.3-6.988-3.464 0 0-9.19 38.671-6.702 46.842z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='m2599.055 1449.985 10.826-31.969m.661 9.732 6.042-18.562m-6.791-3.944-11.141 37.62' fill='none' stroke='%23473125' stroke-width='1.556' stroke-linecap='round'/%3e%3cpath d='M2595.307 1449.865c.33-1.665 2.744-2.52 5.368-1.919 2.654.6 4.528 2.442 4.184 4.093-.33 1.665-2.73 2.518-5.367 1.92-2.64-.6-4.515-2.429-4.185-4.094' fill='%23f0e53c'/%3e%3cpath d='M2595.307 1449.865c.33-1.665 2.744-2.52 5.368-1.919 2.654.6 4.528 2.442 4.184 4.093-.33 1.665-2.73 2.518-5.367 1.92-2.64-.6-4.515-2.429-4.185-4.094z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M2597.123 1440.719c1.873-6.853 3.478-7.378 8.65-43.912-5.127-2.07-6.731.63-9.22 1.02-2.504.419-10.331-3.48-10.511 2.519-.18 5.96 2.639 35.754 4.962 39.622z' fill='%23f0e53c'/%3e%3cpath d='M2597.123 1440.719c1.873-6.853 3.478-7.378 8.65-43.912-5.127-2.07-6.731.63-9.22 1.02-2.504.419-10.331-3.48-10.511 2.519-.18 5.96 2.639 35.754 4.962 39.622z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='m2596.807 1427.163 1.17-23.916m-4.063 34.518-.944-27.02m-4.065-8.008.314-5.75' fill='none' stroke='%23473125' stroke-width='1.556' stroke-linecap='round'/%3e%3cpath d='M2588.036 1440.449c.089-1.695 2.339-2.924 5.038-2.774 2.699.165 4.798 1.664 4.707 3.373-.09 1.694-2.338 2.94-5.037 2.774-2.7-.15-4.8-1.664-4.708-3.373' fill='%23f0e53c'/%3e%3cpath d='M2588.036 1440.449c.089-1.695 2.339-2.924 5.038-2.774 2.699.165 4.798 1.664 4.707 3.373-.09 1.694-2.338 2.94-5.037 2.774-2.7-.15-4.8-1.664-4.708-3.373z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M2519.766 1357.852c-.03.211-.044.36-.075.57-.645-.48-.585-.63.075-.57'/%3e%3cpath d='M2085.066 1270.466c13.12-49.992 49.945-142.507 50.216-271.398.464-10.345 15.383-15.354 15.188-25.13-.209-9.807-3.238-9.957.751-17.245 2.294 7.019 9.7 9.687 9.402 16.584-.3 6.897-6.374 22.701.36 28.79 6.716 6.086 16.073 13.464 12.953 35.745-3.134 22.313-54.594 215.38-81.104 231.334-26.509 15.924-7.766 1.32-7.766 1.32' fill='%23d32011'/%3e%3cpath d='M2219.37 1017.577c1.305 6.957-6.388 25.094 1.064 26.594 7.467 1.529 19.553 7.888 15.22 20.9-4.335 13.046-32.134 74.073-60.772 110.929-28.64 36.856-58.358 67.835-58.358 67.835 16.478-44.622 68.059-197.175 73.666-221.317 2.655-11.365 29.18-4.941 29.18-4.941' fill='%2300702d'/%3e%3cg clip-path='url(%23q)' opacity='.25'%3e%3cpath d='M2159.722 1018.41c-6.327-9.327-27.395-12.895-17.709-25.34' fill='none' stroke='%23000' stroke-width='3.334' stroke-linecap='round'/%3e%3c/g%3e%3cg clip-path='url(%23r)' opacity='.25'%3e%3cpath d='M2203.281 1030.766c-11.081 5.667 27.38 37.814 29.208 30.618 2.055-8.486-6.673-9.476-6.088-12.025' fill='none' stroke='%23000' stroke-width='3.334' stroke-linecap='round'/%3e%3c/g%3e%3cpath d='M2102.368 1247.733c12.835-35.025 47.727-144.335 48.881-195.495.51-11.487 21.383-9.297 16.93-18.143-4.454-8.878-17.153-13.525-7.197-32.029 8.426 3.869 23.466 8.098 22.43-6.928-1.035-15.024 6.837-10.585 10.481-8.096 3.66 2.489 12.146 5.188 4.29 12.866-7.874 7.677-1.095 12.594 5.878 12.954 6.972.36 12.925-.51 14.904 3.63 1.964 4.106-1.859 5.667-6.179 6.026-4.317.36-27.514 14.155-22.49 22.462 5.007 8.308 12.415 10.977 8.651 23.451-3.778 12.476-43.079 111.769-65.525 145.745-22.462 34.007-31.054 33.557-31.054 33.557' fill='%23f0e53c'/%3e%3cpath d='M2184.942 1284.38c-2.999-34.816-5.113-114.107-5.623-128.473-.494-14.363-27.604-49.84-29.957-27.288-2.369 22.58 15.562 150.003 15.562 150.003z' fill='%23f0e53c'/%3e%3cpath d='M2172.302 1287.468c-7.542-49.69-12.64-178.492-25.7-182.092-13.06-3.568-21.067-2.608-24.89 8.518-3.824 11.125 12.55 66.126 12.55 66.126l19.763 68.613 5.937 39.436z' fill='%2300702d'/%3e%3cg clip-path='url(%23s)' opacity='.25'%3e%3cpath d='M2115.473 1106.937c14.53.21 18.818 0 27.965 49.032 9.131 49.031 14.155 90.206 20.992 86.427 6.808-3.81 11.741-1.71 13.734 6.807 1.98 8.516 9.163 31.19 6.944 38.775-2.235 7.587-28.595 4.38-28.595 4.38l-23.392-101.782z'/%3e%3c/g%3e%3cpath d='M1758.144 1576.912c3.313 38.97 22.491 67.534 21.336 113.867l94.87-92.53c-11.096-15.88-30.319-48.162-34.938-87.567-45.447 36.526-81.268 66.23-81.268 66.23' fill='%23d32011'/%3e%3cpath d='m1948.632 1525.796 106.819-104.226c-12.28-10.377-20.511-28.812-29.24-44.255-3.476-6.088-46.39 24.058-96.907 62.668.016 15.79-1.035 35.147 19.328 85.813' fill='%2300702d'/%3e%3cpath d='m1874.35 1598.249 74.282-72.452c-20.364-50.666-19.313-70.025-19.329-85.813-29.494 22.536-61.552 47.937-89.89 70.698 4.618 39.405 23.841 71.688 34.936 87.567' fill='%23f0e53c'/%3e%3cg clip-path='url(%23t)' opacity='.25'%3e%3cpath d='M1785.223 1676.684c27.246-67.354 128.742-171.325 255.009-253.194-58.793 24.53-198.869 135.684-223.851 167.232-31.832 40.185-31.158 85.962-31.158 85.962'/%3e%3c/g%3e%3cpath d='m1750.871 1234.299-54.533 2.729 4.018 91.945 54.535-2.73z' fill='%23f0e53c'/%3e%3cpath d='M2088.078 1181.188c-45.147-48.37-131.455-130.149-245.876-115.846-61.327 7.677-96.653 30.47-125.398 59.558-28.76 29.06-16.149 32.237-34.92 45.464-18.79 13.224-23.558 49.99-23.797 50.77-.226.78 1.53 13.734-7.378 28.758-8.892 15.025-10.3 37.756-7.347 45.074 2.954 7.316-5.323 29.99-5.084 36.136.24 6.117 6.868 25.7 7.978 34.847 1.094 9.176 3.194 30.078 3.194 30.078 1.993 32.411 18.127 155.5 15.34 175.697l78.96-41.819c-3.285-58.014-8.712-177.84-15.82-195.384-7.123-17.543-20.977-37.756-12.296-51.82 21.518-34.818-9.85-39.405 20.977-47.082 21.023-5.248 351.467-54.43 351.467-54.43' fill='%23d32011'/%3e%3cg clip-path='url(%23u)' opacity='.25'%3e%3cpath d='M1638.279 1331.102c.24 6.117 6.868 25.7 7.978 34.847 1.093 9.176 3.194 30.078 3.194 30.078.689 11.268 3.087 33.505 5.817 58.561 9.072-15.819 18.338-36.45 17.992-44.564-.554-12.377 25.972-34.448 52.512-48.034 3.613-1.86 5.652-2.968 6.507-3.569-.031-.21-.044-.358-.075-.569-4.814.54-41.684 13.404-61.627 7.048-26.24-8.338-32.597-18.054-16.104-29.06 12.835-8.546 40.035-19.702 62.572-25.46 6.402-1.649 12.446-2.879 17.663-3.449 23.556-2.579 44.653-28.19 2.775-18.412-8.083 1.888-16.345 4.557-24.412 7.526-33.751 12.356-64.205 29.87-64.491 16.884-.315-14.635 14.29-46.422 73.892-64.775 6.029-1.86 12.506-3.57 19.479-5.128 27.229-6.028 39.059-11.397 41.818-15.474 4.964-7.348-19.268-10.587-37.035-6.239-27.666 6.748-93.116 18.473-79.741-3.688 13.375-22.162 69.725-28.82 100.613-27.29 30.903 1.53 9.836-21.202-15.265-21.503-25.115-.268-37.71 5.818-37.231-9.625.735-23.81 111.229-153.482 273.798-40.575 24.62 17.094 45.642 20.574 57.547 25.101-48.117-36.347-118.756-89.097-204.252-78.39-61.328 7.676-96.653 30.468-125.398 59.557-28.76 29.06-12.22 29.27-31.008 42.464-18.773 13.225-27.47 52.99-27.71 53.77-.225.78 1.53 13.734-7.377 28.758-8.892 15.025-10.301 37.756-7.347 45.074 2.954 7.316-5.323 29.99-5.084 36.136'/%3e%3c/g%3e%3cg clip-path='url(%23v)' opacity='.25'%3e%3cpath d='M1727.241 1436.834c13.12-33.362-16.555-13.599-42.27 11.546-10.855 10.617-19.942 18.923-27.648 25.116 1.348 12.594 2.697 25.355 3.882 37.396 25.416-20.888 56.588-50.02 66.036-74.058'/%3e%3c/g%3e%3cg clip-path='url(%23w)' opacity='.25'%3e%3cpath d='M1669.288 1545.138c14.304-22.4 34.171-46.332 74.296-68.075 40.125-21.755-.075-1.543-.075-1.543l-8.052 31.233c-21.637 10.841-77.34 55.9-66.169 38.385'/%3e%3c/g%3e%3cpath d='M2170.908 1312.329c.136.21.284.42.42.6-.12-.21-.271-.39-.42-.6' fill='%23d32011'/%3e%3cpath d='M1984.648 1218.015c-35.161-.54-53.92 13.435-64.506 17.032-10.6 3.63-21.861 24.891-25.61 37.366-3.762 12.447-7.886 16.496-9.086 21.923-1.2 5.457-.27 10.016 0 16.134.27 6.117-4.078 21.682-4.333 32.447-.241 10.737 14.184 29.21 11.41 47.743-2.773 18.57 1.17 42.92 9.117 60.943 5.113 11.562 6.523 26.466 6.853 39.511l131.98-95.506c-42.42-34.788 8.127-157.77 96.487-88.528 4.394 1.621 14.126 11.546 27.71 10.886 7.767-.389 7.947-2.908 6.688-4.977-38.565-6.568-65.435-43.484-98.093-68.704-32.66-25.22-53.47-25.73-88.617-26.27' fill='%2300702d'/%3e%3cpath d='M1715.71 1397.226c-.3 9.23 1.485 33.686 3.989 42.008 2.518 8.306 8.276 8.785 7.24 34.157-1.047 25.385-1.227 37.665-.208 44.518 1.02 6.853-7.377 54.04 1.8 103.476l88.3-63.905c-3.178-18.204-4.858-51.672-6.343-59.109-1.843-9.116-8.53-31.038-6.34-46.498 2.187-15.458-7.438-38.759-10.527-43.963-3.09-5.217 1.334-51.467 4.797-70.84 3.449-19.343-8.051-36.437-.48-59.827 13.946-58.239 68.54-121.604 140.768-125.984 72.227-4.377 159.614 75.661 176.903 93.956 16.628 17.633 37.425 40.724 53.77 64.895 2.804 0 12.655-.57 11.05-9.056-1.874-9.867 10.257 4.858 2.354-11.606-7.888-16.493-47.337-65.946-79.575-98.094-32.222-32.147-107.044-104.899-205.002-97.132-78.6 6.236-126.088 51.58-137.843 94.374-3.568 12.985-26.014 28.158-27.424 45.104-1.41 16.943 5.907 20.421-2.684 36.975-8.592 16.523-9.807 28.07-10.046 32.717-.735 15.175-7.198 31.818-7.094 67.115.047 16.553 2.91 17.484 2.595 26.72' fill='%23d32011'/%3e%3cpath d='m2171.358 1312.989-.03-.06.03.06m-.45-.66c-.494-.75-1.02-1.47-1.529-2.22-.45 0-.75-.028-.75-.028s1.32.989 2.279 2.248' fill='%23f0e53c'/%3e%3cpath d='M1938.705 1151.26c-72.228 4.38-126.82 67.744-140.766 125.982-7.573 23.391 3.928 40.485.48 59.828-3.465 19.373-7.888 65.623-4.799 70.84 3.09 5.203 12.715 28.505 10.527 43.963-2.19 15.46 4.497 37.382 6.341 46.497 1.485 7.438 3.164 40.906 6.343 59.11l91.661-66.366c-.33-13.045-1.739-27.949-6.852-39.51-7.948-18.024-11.89-42.374-9.118-60.945 2.775-18.532-11.65-37.005-11.409-47.742.255-10.765 4.603-26.33 4.333-32.447-.27-6.118-1.199-10.677 0-16.134 1.2-5.428 5.323-9.476 9.086-21.923 3.748-12.475 15.01-33.736 25.61-37.366 10.586-3.598 29.344-17.572 64.505-17.032 35.148.54 55.96 1.05 88.617 26.27 32.66 25.22 59.528 62.136 98.094 68.703-.016-.029-.016-.029-.03-.059a9.918 9.918 0 0 1-.42-.6c-.959-1.259-2.28-2.249-2.28-2.249s.301.03.75.03c-16.345-24.17-37.14-47.262-53.77-64.895-17.289-18.295-104.675-98.333-176.903-93.956' fill='%23f0e53c'/%3e%3cg clip-path='url(%23x)' opacity='.25'%3e%3cpath d='M2021.64 1391.89c-117.092 60.33-282.044 190.585-288.027 217.74-.3-23.002 102.215-154.727 288.026-217.74'/%3e%3c/g%3e%3cg clip-path='url(%23y)' opacity='.25'%3e%3cpath d='M1733.043 1547.507c17.154-35.252 96.25-140.362 230.748-167.045-52.21 3.12-226.265 56.343-230.748 167.045'/%3e%3c/g%3e%3cg clip-path='url(%23z)' opacity='.25'%3e%3cpath d='M1730.734 1494.683c-13.87-36.136 57.924-183.972 236.7-161.841-74.52 1.019-198.39 54.039-236.7 161.84'/%3e%3c/g%3e%3cg clip-path='url(%23A)' opacity='.25'%3e%3cpath d='M1723.686 1432.127c2.97-30.844 86.232-143.218 245.52-124.326-31.669-19.133-177.04-15.084-238.022 65.945-9.402 14.725-15.445 40.359-7.498 58.38'/%3e%3c/g%3e%3cg clip-path='url(%23B)' opacity='.25'%3e%3cpath d='M1717.9 1365.888c10.945-29.179 50.515-107.869 208.436-87.387-43.11-18.563-146.315-34.126-195.482 22.072-8.877 10.407-12.955 65.315-12.955 65.315'/%3e%3c/g%3e%3cg clip-path='url(%23C)' opacity='.25'%3e%3cpath d='M1946.247 1265.217c-117.435-36.316-159.823-21.92-208.091 5.817.796-14.604 56.694-100.283 208.09-5.817'/%3e%3c/g%3e%3cg clip-path='url(%23D)' opacity='.25'%3e%3cpath d='M1747.917 1215.286c16.704-11.576 119.16-45.853 265.806 61.117-27.32-34.697-120.72-104.421-223.132-101.601-15.773.03-18.247-.87-16.208-9.927-8.876 9.656-7.887 16.493-11.801 25.13-3.928 8.636-14.665 25.28-14.665 25.28'/%3e%3c/g%3e%3cg clip-path='url(%23E)' opacity='.25'%3e%3cpath d='M1786.693 1151.2c17.455-6.088 165.343-22.852 263.525 123.374-11.56-34.697-60.142-128.952-162.733-146.824-33.272-4.14-77.655-21.443-100.792 23.45'/%3e%3c/g%3e%3cg clip-path='url(%23F)' opacity='.25'%3e%3cpath d='M2156.513 1292.357c-51.596-111.049-214.014-209.44-305.734-184.25 28.233-11.516 115.336-21.203 186.454 33.616 71.103 54.85 119.28 150.634 119.28 150.634'/%3e%3c/g%3e%3cg clip-path='url(%23G)' opacity='.33'%3e%3cpath d='M2075.304 1287.56c9.492-2.97-23.375-22.884-20.212-16.135 3.164 6.746 4.933 14.334.675 15.323-4.275.991-17.918-15.984-10.737.54 7.168 16.525-22.717-11.156-22.717-11.156s6.778 7.347 2.43 12.176c-4.333 4.8-40.124-21.8-40.124-21.8s15.009 15.382 23.105 26.93c8.098 11.543-35.731-4.05-35.731-4.05s7.183.42 24.306 14.904c17.123 14.485-24.74 8.158-24.74 8.158s3.193 7.496 16.449 15.143c13.239 7.647-35.148 16.494-35.148 16.494s26.165 7.887 32.222 15.264c6.06 7.348-36.076 11.006-23.195 10.347 32.523-1.62 71.568 18.802 70.339 16.433-13.195-25.4-8.443-82.439 43.078-98.572'/%3e%3c/g%3e%3cpath d='M1706.699 1624.894c-7.092 3.6-11.396-.735-15.055-4.813-8.171 23.78-36.931 45.657-44.307 51.835 8.127-4.978 37.904-25.265 61.565-24.396-2.16-5.158-4.288-11.05 1.5-16.733z' fill='%23cacaca'/%3e%3cpath d='M1706.699 1624.894c-7.092 3.6-11.396-.735-15.055-4.813-8.171 23.78-36.931 45.657-44.307 51.835 8.127-4.978 37.904-25.265 61.565-24.396-2.16-5.158-4.288-11.05 1.5-16.733z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M1714.81 1633.515c-3.014 2.174-7.437.795-9.867-3.074-2.444-3.867-1.964-8.787 1.051-10.946 3.013-2.174 7.437-.793 9.88 3.074 2.43 3.883 1.965 8.787-1.064 10.946' fill='%23cacaca'/%3e%3cpath d='M1714.81 1633.515c-3.014 2.174-7.437.795-9.867-3.074-2.444-3.867-1.964-8.787 1.051-10.946 3.013-2.174 7.437-.793 9.88 3.074 2.43 3.883 1.965 8.787-1.064 10.946zm-6.538 13.645-16.538-26.314' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M1715.605 1622.764c6.897 10.977 7.662 24.441 3.134 35.777 9.911-10.676 11.755-27.679 3.597-40.635-8.14-12.954-23.554-17.544-36.525-11.74 11.515-.21 22.896 5.608 29.794 16.598' fill='%23cacaca'/%3e%3cpath d='M1715.605 1622.764c6.897 10.977 7.662 24.441 3.134 35.777 9.911-10.676 11.755-27.679 3.597-40.635-8.14-12.954-23.554-17.544-36.525-11.74 11.515-.21 22.896 5.608 29.794 16.598z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='m1720.943 1510.591-3.508.54c2.564 18.923 1.994 86.263 1.334 96.46l3.539.253c.674-10.54 1.29-77.655-1.365-97.253' fill='%23f0e53c'/%3e%3cpath d='m1720.943 1510.591-3.508.54c2.564 18.923 1.994 86.263 1.334 96.46l3.539.253c.674-10.54 1.29-77.655-1.365-97.253z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M1724.931 1500.545c.66 95.274-1.005 101.347-2.504 106.701-.194.749-.42 1.529-.613 2.518l3.447.824c.18-.853.36-1.543.57-2.263 1.619-5.893 3.314-11.965 2.639-107.809z' fill='%23f0e53c'/%3e%3cpath d='M1724.931 1500.545c.66 95.274-1.005 101.347-2.504 106.701-.194.749-.42 1.529-.613 2.518l3.447.824c.18-.853.36-1.543.57-2.263 1.619-5.893 3.314-11.965 2.639-107.809z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M1727.405 1625.763c-1.124-4.692-3.553-10.572-8.74-14.694-5.189-4.138-.406-8.036 2.982-5.293 3.374 2.758 9.042 9.011 9.147 13.735.106 4.738-1.394 6.447-3.389 6.252' fill='%23f0e53c'/%3e%3cpath d='M1727.405 1625.763c-1.124-4.692-3.553-10.572-8.74-14.694-5.189-4.138-.406-8.036 2.982-5.293 3.374 2.758 9.042 9.011 9.147 13.735.106 4.738-1.394 6.447-3.389 6.252z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M1715.65 1510.861c-2.25-5.638-11.667-38.82-15.325-41.475 4.798-1.662 8.097-2.067 11.096-4.347 3-2.294 3.854-3.043 7.183-2.968 0 0 6.822 39.24 3.838 47.202z' fill='%23f0e53c'/%3e%3cpath d='M1715.65 1510.861c-2.25-5.638-11.667-38.82-15.325-41.475 4.798-1.662 8.097-2.067 11.096-4.347 3-2.294 3.854-3.043 7.183-2.968 0 0 6.822 39.24 3.838 47.202z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='m1720.268 1509.782-8.862-32.657m-1.244 9.67-4.889-18.952m7.017-3.463 8.818 38.325' fill='none' stroke='%23473125' stroke-width='1.556' stroke-linecap='round'/%3e%3cpath d='M1724.016 1509.917c-.224-1.68-2.579-2.699-5.248-2.278-2.669.403-4.648 2.114-4.423 3.792.225 1.68 2.58 2.7 5.248 2.294 2.67-.419 4.65-2.114 4.423-3.808' fill='%23f0e53c'/%3e%3cpath d='M1724.016 1509.917c-.224-1.68-2.579-2.699-5.248-2.278-2.669.403-4.648 2.114-4.423 3.792.225 1.68 2.58 2.7 5.248 2.294 2.67-.419 4.65-2.114 4.423-3.808z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M1722.758 1500.651c-1.44-6.957-3.014-7.588-5.953-44.414 5.233-1.693 6.687 1.095 9.147 1.68 2.458.585 10.51-2.759 10.33 3.223-.18 5.984-4.812 35.507-7.362 39.212z' fill='%23f0e53c'/%3e%3cpath d='M1722.758 1500.651c-1.44-6.957-3.014-7.588-5.953-44.414 5.233-1.693 6.687 1.095 9.147 1.68 2.458.585 10.51-2.759 10.33 3.223-.18 5.984-4.812 35.507-7.362 39.212z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='m1723.912 1487.156.284-23.946m-3.508 5.862-.585-13.375m6.058 42.239 2.578-26.885m4.528-7.721.046-5.759' fill='none' stroke='%23473125' stroke-width='1.556' stroke-linecap='round'/%3e%3cpath d='M1731.844 1501.041c.016-1.71-2.16-3.105-4.844-3.134-2.713-.015-4.903 1.334-4.918 3.043-.014 1.695 2.16 3.09 4.858 3.12 2.7.03 4.89-1.336 4.904-3.029' fill='%23f0e53c'/%3e%3cpath d='M1731.844 1501.041c.016-1.71-2.16-3.105-4.844-3.134-2.713-.015-4.903 1.334-4.918 3.043-.014 1.695 2.16 3.09 4.858 3.12 2.7.03 4.89-1.336 4.904-3.029z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M1759.763 1696.178c-6.551 4.647-11.396 1.019-15.55-2.445-4.887 24.77-30.422 50.846-36.885 58.089 7.363-6.164 34.113-30.815 57.639-33.603-2.835-4.768-5.727-10.271-.765-16.78z' fill='%23cacaca'/%3e%3cpath d='M1759.763 1696.178c-6.551 4.647-11.396 1.019-15.55-2.445-4.887 24.77-30.422 50.846-36.885 58.089 7.363-6.164 34.113-30.815 57.639-33.603-2.835-4.768-5.727-10.271-.765-16.78z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M1768.94 1703.465c-2.684 2.609-7.243 1.933-10.181-1.53-2.923-3.463-3.12-8.381-.42-11.005 2.684-2.612 7.242-1.92 10.18 1.528 2.925 3.464 3.12 8.396.42 11.006' fill='%23cacaca'/%3e%3cpath d='M1768.94 1703.465c-2.684 2.609-7.243 1.933-10.181-1.53-2.923-3.463-3.12-8.381-.42-11.005 2.684-2.612 7.242-1.92 10.18 1.528 2.925 3.464 3.12 8.396.42 11.006zm-4.634 14.499-19.897-23.497' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M1768.28 1692.698c8.307 9.791 10.87 23.016 7.917 34.921 8.368-12.085 7.902-29.194-1.89-40.77-9.806-11.56-25.67-13.734-37.724-5.997 11.35-1.979 23.39 2.04 31.697 11.846' fill='%23cacaca'/%3e%3cpath d='M1768.28 1692.698c8.307 9.791 10.87 23.016 7.917 34.921 8.368-12.085 7.902-29.194-1.89-40.77-9.806-11.56-25.67-13.734-37.724-5.997 11.35-1.979 23.39 2.04 31.697 11.846z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M1780.23 1578.35c1.2 95.275-.435 101.348-1.904 106.716-.195.764-.404 1.545-.6 2.535l3.45.794c.179-.87.359-1.545.554-2.264 1.604-5.908 3.254-11.996 2.055-107.824z' fill='%23f0e53c'/%3e%3cpath d='M1780.23 1578.35c1.2 95.275-.435 101.348-1.904 106.716-.195.764-.404 1.545-.6 2.535l3.45.794c.179-.87.359-1.545.554-2.264 1.604-5.908 3.254-11.996 2.055-107.824z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M1780.365 1693.853c-1.753-4.468-4.934-9.911-10.63-13.195-5.684-3.298-1.47-7.902 2.248-5.698 3.703 2.22 10.166 7.528 10.902 12.19.75 4.664-.525 6.583-2.52 6.703' fill='%23f0e53c'/%3e%3cpath d='M1780.365 1693.853c-1.753-4.468-4.934-9.911-10.63-13.195-5.684-3.298-1.47-7.902 2.248-5.698 3.703 2.22 10.166 7.528 10.902 12.19.75 4.664-.525 6.583-2.52 6.703z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M1778.055 1578.486c-1.483-6.957-3.059-7.586-6.208-44.383 5.235-1.724 6.704 1.05 9.162 1.62 2.46.57 10.497-2.819 10.348 3.148-.135 5.983-4.619 35.553-7.138 39.256z' fill='%23f0e53c'/%3e%3cpath d='M1778.055 1578.486c-1.483-6.957-3.059-7.586-6.208-44.383 5.235-1.724 6.704 1.05 9.162 1.62 2.46.57 10.497-2.819 10.348 3.148-.135 5.983-4.619 35.553-7.138 39.256z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='m1779.137 1564.976.149-23.945m-3.478 5.877-.66-13.359m6.296 42.193 2.43-26.915m4.498-7.737v-5.757' fill='none' stroke='%23473125' stroke-width='1.556' stroke-linecap='round'/%3e%3cpath d='M1787.158 1578.8c0-1.693-2.174-3.087-4.874-3.087-2.7-.015-4.887 1.348-4.902 3.059 0 1.709 2.19 3.088 4.874 3.088 2.699.015 4.887-1.364 4.902-3.06' fill='%23f0e53c'/%3e%3cpath d='M1787.158 1578.8c0-1.693-2.174-3.087-4.874-3.087-2.7-.015-4.887 1.348-4.902 3.059 0 1.709 2.19 3.088 4.874 3.088 2.699.015 4.887-1.364 4.902-3.06z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M1644.187 1571.62c-7.467 2.593-11.216-2.28-14.35-6.824-10.931 22.462-42.058 40.245-50.111 45.358 8.652-3.823 40.59-19.882 63.95-15.804-1.528-5.397-2.922-11.544 3.479-16.39z' fill='%23cacaca'/%3e%3cpath d='M1644.187 1571.62c-7.467 2.593-11.216-2.28-14.35-6.824-10.931 22.462-42.058 40.245-50.111 45.358 8.652-3.823 40.59-19.882 63.95-15.804-1.528-5.397-2.922-11.544 3.479-16.39z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M1651.22 1581.276c-3.254 1.738-7.483-.226-9.433-4.41-1.948-4.167-.9-8.965 2.355-10.705 3.254-1.739 7.467.224 9.415 4.393 1.966 4.184.916 8.982-2.338 10.722' fill='%23cacaca'/%3e%3cpath d='M1651.22 1581.276c-3.254 1.738-7.483-.226-9.433-4.41-1.948-4.167-.9-8.965 2.355-10.705 3.254-1.739 7.467.224 9.415 4.393 1.966 4.184.916 8.982-2.338 10.722zm-8.112 12.624-13.271-28.354' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='M1653.289 1570.704c5.532 11.831 4.679 25.295-1.155 35.926 11.11-9.236 14.949-25.864 8.41-39.824-6.536-13.96-21.275-20.602-34.83-16.615 11.44 1.35 22.026 8.683 27.575 20.513' fill='%23cacaca'/%3e%3cpath d='M1653.289 1570.704c5.532 11.831 4.679 25.295-1.155 35.926 11.11-9.236 14.949-25.864 8.41-39.824-6.536-13.96-21.275-20.602-34.83-16.615 11.44 1.35 22.026 8.683 27.575 20.513z' fill='none' stroke='%23000' stroke-width='2.223'/%3e%3cpath d='m1653.693 1451.379-3.45.81c3.84 19.912 7.829 91.48 7.858 102.351l3.539.03c-.03-11.245-3.958-82.544-7.947-103.191' fill='%23f0e53c'/%3e%3cpath d='m1653.693 1451.379-3.45.81c3.84 19.912 7.829 91.48 7.858 102.351l3.539.03c-.03-11.245-3.958-82.544-7.947-103.191z' fill='none' stroke='%23473125' stroke-width='1.605'/%3e%3cpath d='M1657.008 1440.449c7.106 101.12 5.832 107.689 4.723 113.477-.166.809-.33 1.648-.465 2.714l3.508.645c.12-.93.255-1.665.406-2.444 1.229-6.358 2.504-12.926-4.634-114.663z' fill='%23f0e53c'/%3e%3cpath d='M1657.008 1440.449c7.106 101.12 5.832 107.689 4.723 113.477-.166.809-.33 1.648-.465 2.714l3.508.645c.12-.93.255-1.665.406-2.444 1.229-6.358 2.504-12.926-4.634-114.663z' fill='none' stroke='%23473125' stroke-width='1.605'/%3e%3cpath d='M1664.623 1575.292c-.554-4.813-2.263-10.96-6.913-15.759-4.663-4.812.557-8.037 3.584-4.843 3.014 3.194 7.903 10.166 7.438 14.875-.45 4.707-2.144 6.192-4.109 5.727' fill='%23f0e53c'/%3e%3cpath d='M1664.623 1575.292c-.554-4.813-2.263-10.96-6.913-15.759-4.663-4.812.557-8.037 3.584-4.843 3.014 3.194 7.903 10.166 7.438 14.875-.45 4.707-2.144 6.192-4.109 5.727z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M1648.356 1451.379c-2.564-5.458-13.991-37.906-17.814-40.32 4.694-1.979 7.962-2.624 10.826-5.097 2.848-2.49 3.659-3.3 6.988-3.464 0 0 9.19 38.671 6.702 46.842z' fill='%23f0e53c'/%3e%3cpath d='M1648.356 1451.379c-2.564-5.458-13.991-37.906-17.814-40.32 4.694-1.979 7.962-2.624 10.826-5.097 2.848-2.49 3.659-3.3 6.988-3.464 0 0 9.19 38.671 6.702 46.842z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='m1652.913 1449.985-10.825-31.969m-.66 9.732-6.043-18.562m6.792-3.944 11.141 37.62' fill='none' stroke='%23473125' stroke-width='1.556' stroke-linecap='round'/%3e%3cpath d='M1656.662 1449.865c-.33-1.665-2.744-2.52-5.368-1.919-2.655.6-4.528 2.442-4.184 4.093.33 1.665 2.73 2.518 5.369 1.92 2.638-.6 4.513-2.429 4.183-4.094' fill='%23f0e53c'/%3e%3cpath d='M1656.662 1449.865c-.33-1.665-2.744-2.52-5.368-1.919-2.655.6-4.528 2.442-4.184 4.093.33 1.665 2.73 2.518 5.369 1.92 2.638-.6 4.513-2.429 4.183-4.094z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M1654.848 1440.719c-1.874-6.853-3.478-7.378-8.652-43.912 5.128-2.07 6.733.63 9.22 1.02 2.506.419 10.333-3.48 10.513 2.519.18 5.96-2.64 35.754-4.963 39.622z' fill='%23f0e53c'/%3e%3cpath d='M1654.848 1440.719c-1.874-6.853-3.478-7.378-8.652-43.912 5.128-2.07 6.733.63 9.22 1.02 2.506.419 10.333-3.48 10.513 2.519.18 5.96-2.64 35.754-4.963 39.622z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='m1655.162 1427.163-1.168-23.916m4.062 34.518.944-27.02m4.065-8.008-.314-5.75' fill='none' stroke='%23473125' stroke-width='1.556' stroke-linecap='round'/%3e%3cpath d='M1663.934 1440.449c-.089-1.695-2.338-2.924-5.038-2.774-2.683.165-4.798 1.664-4.707 3.373.089 1.694 2.338 2.94 5.037 2.774 2.7-.15 4.799-1.664 4.708-3.373' fill='%23f0e53c'/%3e%3cpath d='M1663.934 1440.449c-.089-1.695-2.338-2.924-5.038-2.774-2.683.165-4.798 1.664-4.707 3.373.089 1.694 2.338 2.94 5.037 2.774 2.7-.15 4.799-1.664 4.708-3.373z' fill='none' stroke='%23473125' stroke-width='1.556'/%3e%3cpath d='M1732.204 1357.852c.03.211.044.36.075.57.645-.48.585-.63-.075-.57'/%3e%3cpath d='M2166.904 1270.466c-13.12-49.992-49.946-142.507-50.216-271.398-.464-10.345-15.384-15.354-15.188-25.13.208-9.807 3.237-9.957-.75-17.245-2.295 7.019-9.702 9.687-9.403 16.584.301 6.897 6.374 22.701-.359 28.79-6.717 6.086-16.074 13.464-12.956 35.745 3.136 22.313 54.595 215.38 81.105 231.334 26.51 15.924 7.767 1.32 7.767 1.32' fill='%23d32011'/%3e%3cpath d='M2032.542 1017.833c-1.304 6.957 6.446 24.838-1.007 26.338-7.466 1.529-19.552 7.888-15.22 20.9 4.334 13.046 32.135 74.074 60.773 110.929 28.64 36.856 58.358 67.835 58.358 67.835-16.478-44.622-68.06-197.175-73.666-221.316-2.655-11.366-29.238-4.686-29.238-4.686' fill='%2300702d'/%3e%3cg clip-path='url(%23H)' opacity='.25'%3e%3cpath d='M2092.247 1018.41c6.327-9.327 27.395-12.895 17.71-25.34' fill='none' stroke='%23000' stroke-width='3.334' stroke-linecap='round'/%3e%3c/g%3e%3cg clip-path='url(%23I)' opacity='.25'%3e%3cpath d='M2048.689 1030.766c11.08 5.667-27.38 37.814-29.208 30.618-2.055-8.486 6.672-9.476 6.088-12.025' fill='none' stroke='%23000' stroke-width='3.334' stroke-linecap='round'/%3e%3c/g%3e%3cpath d='M2149.601 1247.733c-12.82-35.025-47.727-144.335-48.882-195.495-.51-11.487-21.382-9.297-16.93-18.143 4.455-8.878 17.154-13.525 7.2-32.029-8.428 3.869-23.467 8.098-22.432-6.928 1.048-15.024-6.839-10.585-10.482-8.096-3.658 2.489-12.146 5.188-4.289 12.866 7.872 7.677 1.095 12.594-5.877 12.954-6.973.36-12.926-.51-14.905 3.63-1.963 4.106 1.86 5.667 6.18 6.026 4.317.36 27.513 14.155 22.49 22.462-5.009 8.308-12.416 10.977-8.653 23.451 3.78 12.476 43.08 111.769 65.526 145.745 22.461 34.007 31.054 33.557 31.054 33.557' fill='%23f0e53c'/%3e%3cg clip-path='url(%23J)' opacity='.25'%3e%3cpath d='M2164.313 1044.14c-30.989 22.858 15.107 14.98 22.171-48.588' fill='none' stroke='%23000' stroke-width='3.334' stroke-linecap='round'/%3e%3c/g%3e%3cg clip-path='url(%23K)' opacity='.25'%3e%3cpath d='M2190.998 1049.879c17.604 27.619-28.004.726 4.167-51.891' fill='none' stroke='%23000' stroke-width='3.334' stroke-linecap='round'/%3e%3c/g%3e%3cg clip-path='url(%23L)' opacity='.25'%3e%3cpath d='M2087.585 1044.127c30.989 22.859-15.107 14.98-22.171-48.588' fill='none' stroke='%23000' stroke-width='3.334' stroke-linecap='round'/%3e%3c/g%3e%3cg clip-path='url(%23M)' opacity='.25'%3e%3cpath d='M2060.9 1049.866c-17.603 27.619 28.003.726-4.167-51.891' fill='none' stroke='%23000' stroke-width='3.334' stroke-linecap='round'/%3e%3c/g%3e%3cg clip-path='url(%23N)' opacity='.25'%3e%3cpath d='m2303.763 1524.774-.41 1.023 74.266 72.452.65-.933z'/%3e%3c/g%3e%3cg clip-path='url(%23O)' opacity='.25'%3e%3cpath d='m1948.207 1524.774.41 1.023-74.267 72.452-.648-.933z'/%3e%3c/g%3e%3cg clip-path='url(%23P)' opacity='.25'%3e%3cpath d='M1908.493 1489.87v1.244l-91.661 66.366-.21-1.233z'/%3e%3c/g%3e%3cg clip-path='url(%23Q)' opacity='.25'%3e%3cpath d='m2343.512 1490.704-.035 1.216 91.662 65.56.201-1.234z'/%3e%3c/g%3e%3cg clip-path='url(%23R)' opacity='.25'%3e%3cpath d='M2218.063 1016.922c-1.33-2.784-5.212-2.855-10.125-2.944-1.263-.024-2.568-.047-3.929-.119-4.905-.25-8.828-2.414-9.995-5.506-.726-1.927-.715-5.08 3.47-9.16 2.112-2.066 3.091-3.85 2.906-5.305-.26-2.054-2.818-3.522-5.074-4.818-.72-.413-1.399-.803-1.986-1.203-.877-.598-3.543-2.42-5.64-2.42-.773 0-1.383.251-1.865.77-.86.92-1.804 3.204-1.415 8.852.273 3.97-.523 6.986-2.368 8.962-1.668 1.787-4.144 2.693-7.359 2.694-5.179 0-11.113-2.378-14.164-3.779l.463-.88c3.9 1.791 9.217 3.66 13.7 3.66 5.204-.002 9.286-2.518 8.731-10.588-.576-8.355 1.602-10.69 4.277-10.69 2.135 0 4.586 1.49 6.203 2.593 3.66 2.49 12.147 5.19 4.29 12.866-7.873 7.677-1.095 12.595 5.878 12.954 6.972.361 12.925-.509 14.904 3.63 0 0 1.124 2.05.11 3.521 0 0-.106.26-.76.833 0 0 .822-1.813-.252-3.923' fill='%23292723'/%3e%3c/g%3e%3cg clip-path='url(%23S)' opacity='.25'%3e%3cpath d='M2033.907 1016.922c1.332-2.784 5.212-2.855 10.125-2.944 1.263-.024 2.569-.047 3.929-.119 4.905-.25 8.828-2.414 9.994-5.506.727-1.927.716-5.08-3.468-9.16-2.114-2.066-3.092-3.85-2.907-5.305.26-2.054 2.818-3.522 5.074-4.818.72-.413 1.4-.803 1.987-1.203.876-.598 3.542-2.42 5.639-2.42.772 0 1.382.251 1.865.77.86.92 1.804 3.204 1.415 8.852-.274 3.97.523 6.986 2.368 8.962 1.668 1.787 4.144 2.693 7.359 2.694 5.178 0 11.113-2.378 14.163-3.779l-.462-.88c-3.9 1.791-9.216 3.66-13.701 3.66-5.203-.002-9.285-2.518-8.73-10.588.576-8.355-1.602-10.69-4.277-10.69-2.135 0-4.586 1.49-6.203 2.593-3.66 2.49-12.147 5.19-4.29 12.866 7.873 7.677 1.094 12.595-5.878 12.954-6.972.361-12.925-.509-14.904 3.63 0 0-1.125 2.05-.11 3.521 0 0 .106.26.76.833 0 0-.822-1.813.252-3.923' fill='%23292723'/%3e%3c/g%3e%3cpath d='M2038.478 1170.424c-3.209-.21-6.418.089-9.477.989l1.29 4.468c10.765-3.15 23.825 2.31 29.104 12.146 5.308 9.866 1.334 21.44-10.87 31.757l2.998 3.569c19.942-16.853 15.01-31.848 11.981-37.515-4.769-8.878-14.86-14.756-25.026-15.414' fill='%23ced0d1'/%3e%3cpath d='M2038.478 1170.424c-3.209-.21-6.418.089-9.477.989l1.29 4.468c10.765-3.15 23.825 2.31 29.104 12.146 5.308 9.866 1.334 21.44-10.87 31.757l2.998 3.569c19.942-16.853 15.01-31.848 11.981-37.515-4.769-8.878-14.86-14.756-25.026-15.414z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2037.069 1202.33c2.414-5.277 5.937-11.515 13.719-11.754-5.576-1.92-12.58-5.49-17.032 2.999-4.44 8.517 3.313 8.756 3.313 8.756' fill='%23ced0d1'/%3e%3cpath d='M2037.069 1202.33c2.414-5.277 5.937-11.515 13.719-11.754-5.576-1.92-12.58-5.49-17.032 2.999-4.44 8.517 3.313 8.756 3.313 8.756z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M1909.632 1054.966c17.648 26.75 34.562 52.72 40.86 63.247 6.297 10.496 25.054 32.087 40.004 40.754 14.965 8.666 15.67 21.502 18.158 30.798 2.49 9.297 8.442 48.522 23.856 61.957 15.414 13.464 9.326-.15 22.266 15.443 12.941 15.624 240.96 289.548 240.96 289.548l11.394-7.992-212.093-267.999.255-3.87s-41.985-46.273-42.39-51.73c-.42-5.458-4.229-6.477-6.297-10.496-2.07-4.019-13.57-17.993-13.676-39.735-.12-21.74-11.709-22.522-14.348-29.659-2.624-7.168-42-104.69-49.932-125.682-11.56 10.585-59.017 35.416-59.017 35.416' fill='%23473125'/%3e%3cpath d='M1909.632 1054.966c17.648 26.75 34.562 52.72 40.86 63.247 6.297 10.496 25.054 32.087 40.004 40.754 14.965 8.666 15.67 21.502 18.158 30.798 2.49 9.297 8.442 48.522 23.856 61.957 15.414 13.464 9.326-.15 22.266 15.443 12.941 15.624 240.96 289.548 240.96 289.548l11.394-7.992-212.093-267.999.255-3.87s-41.985-46.273-42.39-51.73c-.42-5.458-4.229-6.477-6.297-10.496-2.07-4.019-13.57-17.993-13.676-39.735-.12-21.74-11.709-22.522-14.348-29.659-2.624-7.168-42-104.69-49.932-125.682-11.56 10.585-59.017 35.416-59.017 35.416z' fill='none' stroke='%23272425' stroke-width='1.549'/%3e%3cpath d='M1972.937 1030.616a1560.243 1560.243 0 0 1-4.289-11.065c-11.56 10.585-59.016 35.416-59.016 35.416a6148.69 6148.69 0 0 1 10.015 15.205c33.56-20.364 53.29-39.556 53.29-39.556' fill='%23f0e53c'/%3e%3cpath d='M1972.937 1030.616a1560.243 1560.243 0 0 1-4.289-11.065c-11.56 10.585-59.016 35.416-59.016 35.416a6148.69 6148.69 0 0 1 10.015 15.205c33.56-20.364 53.29-39.556 53.29-39.556z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M1919.647 1070.171a6052.67 6052.67 0 0 0-10.015-15.205s18.187-9.536 34.802-19.281c-.796 5.966-12.806 15.534-15.28 17.692-2.475 2.159-3.988 5.519-4.199 8.697-.209 3.177-5.308 8.097-5.308 8.097' fill='%23ced0d1'/%3e%3cpath d='M1919.647 1070.171a6052.67 6052.67 0 0 0-10.015-15.205s18.187-9.536 34.802-19.281c-.796 5.966-12.806 15.534-15.28 17.692-2.475 2.159-3.988 5.519-4.199 8.697-.209 3.177-5.308 8.097-5.308 8.097z' fill='none' stroke='%23272425' stroke-width='1.549'/%3e%3cpath d='m2042.286 1232.98 4.978-4.858 45.898 57.427-4.018 5.91z' fill='%23ced0d1'/%3e%3cpath d='m2042.286 1232.98 4.978-4.858 45.898 57.427-4.018 5.91z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m2049.874 1261.738-4.064 4.078 252.595 305.518 2.938-5.503z' fill='%23ced0d1'/%3e%3cpath d='m2049.874 1261.738-4.064 4.078 252.595 305.518 2.938-5.503z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2136.242 1330.472c1.095-.959 1.274-2.549.403-3.539l-6.476-7.467c-.886-1.019-2.475-1.05-3.583-.119l-21.383 18.562c-1.095.96-1.274 2.55-.405 3.54l6.478 7.466c.869 1.02 2.473 1.05 3.568.12z' fill='%23ced0d1'/%3e%3cpath d='M2136.242 1330.472c1.095-.959 1.274-2.549.403-3.539l-6.476-7.467c-.886-1.019-2.475-1.05-3.583-.119l-21.383 18.562c-1.095.96-1.274 2.55-.405 3.54l6.478 7.466c.869 1.02 2.473 1.05 3.568.12z' fill='none' stroke='%23000' stroke-width='1.262'/%3e%3cpath d='M2224.557 1441.498a2.417 2.417 0 0 0 .24-3.403l-6.477-7.468a2.406 2.406 0 0 0-3.404-.255l-19.507 16.914a2.404 2.404 0 0 0-.226 3.404l6.463 7.467c.884 1.004 2.4 1.124 3.403.255z' fill='%23ced0d1'/%3e%3cpath d='M2224.557 1441.498a2.417 2.417 0 0 0 .24-3.403l-6.477-7.468a2.406 2.406 0 0 0-3.404-.255l-19.507 16.914a2.404 2.404 0 0 0-.226 3.404l6.463 7.467c.884 1.004 2.4 1.124 3.403.255z' fill='none' stroke='%23000' stroke-width='1.205'/%3e%3cpath d='M2087.165 1278.381a4.118 4.118 0 0 0 3.854 4.38 4.118 4.118 0 1 0 .539-8.218 4.117 4.117 0 0 0-4.393 3.839' fill='%23ced0d1'/%3e%3cpath d='M2087.165 1278.381a4.118 4.118 0 0 0 3.854 4.38 4.118 4.118 0 1 0 .539-8.218 4.117 4.117 0 0 0-4.393 3.839z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2034.55 1236.608a4.901 4.901 0 0 0 4.573 5.217c2.7.181 5.038-1.889 5.218-4.588a4.912 4.912 0 0 0-4.573-5.217 4.895 4.895 0 0 0-5.219 4.588' fill='%23ced0d1'/%3e%3cpath d='M2034.55 1236.608a4.901 4.901 0 0 0 4.573 5.217c2.7.181 5.038-1.889 5.218-4.588a4.912 4.912 0 0 0-4.573-5.217 4.895 4.895 0 0 0-5.219 4.588z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2000.153 1243.895c6.117 1.08 23.9-21.832 25.52-3.029-2.43-.18-9.895-2.039-12.116.091-5.818 5.606 5.848 4.167 5.999 6.056.329 4.17-1.154 8.187-6.448 8.548-9.012.6-2.055-6.298-4.558-9.297-.135-.15.404-.42.45-.51-4.215 1.56-6.148-.06-8.818-2.099' fill='%23ced0d1' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m2321.302 1572.054-3.645 2.893 24.952 31.264 3.643-2.894z' fill='%23ced0d1'/%3e%3cpath d='m2321.302 1572.054-3.645 2.893 24.952 31.264 3.643-2.894z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2017.697 1260.598c2.443-2.488 4.557-4.438 5.517-8.155 3.569 4.946 10.542 2.907 11.8-3.57.72 1.38 2.204 2.85 2.789 4.2-7.631-13.376 13.466-4.11 13.51 4.288.045 12.654-18.787 6.416-12.04-3.63-5.503 1.86-16.268 13.166-21.576 6.867' fill='%23ced0d1' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m2307.866 1565.23 10.062 12.057 5.217-4.32-11.425-15.203z' fill='%23ced0d1'/%3e%3cpath d='m2307.866 1565.23 10.062 12.057 5.217-4.32-11.425-15.203z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2295.677 1577.362c.943-4.56 3.731-9.581-.752-16.09-4.497-6.522 3.75-17.663 6.48-19.791 2.726-2.13 12.04 13.763 12.04 13.763s3.913 3.375-5.759 12.566l36.826 45.912-2.159 44.369 60.727 103.386-79.485-101.526 2.473-41.235-29.687-36.392s-1.396-1.68-.705-4.962' fill='%23ced0d1'/%3e%3cpath d='M2295.677 1577.362c.943-4.56 3.731-9.581-.752-16.09-4.497-6.522 3.75-17.663 6.48-19.791 2.726-2.13 12.04 13.763 12.04 13.763s3.913 3.375-5.759 12.566l36.826 45.912-2.159 44.369 60.727 103.386-79.485-101.526 2.473-41.235-29.687-36.392s-1.396-1.68-.705-4.962z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m2316.28 1578.501-5.595 6.583 27.56 33.813m-14.65 41.053c5.534 2.445 12.91 4.484 18.759-1.858m-16.286-39.376c3.001 1.485 8.443 5.474 18.444-4.993' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M1980.66 1149.46c-3.209-.238-6.434.03-9.507.9l1.274 4.468c10.782-3.027 23.796 2.52 29 12.416 5.203 9.927 1.14 21.473-11.157 31.668l2.97 3.569c20.077-16.673 15.294-31.698 12.295-37.396-4.693-8.907-14.724-14.873-24.875-15.624' fill='%23ced0d1'/%3e%3cpath d='M1980.66 1149.46c-3.209-.238-6.434.03-9.507.9l1.274 4.468c10.782-3.027 23.796 2.52 29 12.416 5.203 9.927 1.14 21.473-11.157 31.668l2.97 3.569c20.077-16.673 15.294-31.698 12.295-37.396-4.693-8.907-14.724-14.873-24.875-15.624z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M1978.966 1181.368c2.459-5.246 6.028-11.454 13.81-11.664-5.548-1.95-12.52-5.61-17.035 2.879-4.527 8.457 3.225 8.785 3.225 8.785' fill='%23ced0d1'/%3e%3cpath d='M1978.966 1181.368c2.459-5.246 6.028-11.454 13.81-11.664-5.548-1.95-12.52-5.61-17.035 2.879-4.527 8.457 3.225 8.785 3.225 8.785z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M1852.818 1032.894c17.41 26.93 34.097 53.021 40.305 63.577 6.193 10.585 24.771 32.327 39.645 41.114 14.888 8.817 15.473 21.651 17.89 30.98 2.412 9.325 8.02 48.58 23.314 62.165 15.31 13.555 9.326-.09 22.147 15.624 12.805 15.714 238.456 291.603 238.456 291.603l11.468-7.888-209.785-269.829.286-3.87s-41.58-46.602-41.939-52.09c-.376-5.457-4.184-6.508-6.208-10.557-2.025-4.017-13.406-18.082-13.346-39.824.076-21.773-11.515-22.64-14.079-29.809-2.565-7.198-41.099-105.02-48.836-126.102-11.666 10.496-59.318 34.906-59.318 34.906' fill='%23473125'/%3e%3cpath d='M1852.818 1032.894c17.41 26.93 34.097 53.021 40.305 63.577 6.193 10.585 24.771 32.327 39.645 41.114 14.888 8.817 15.473 21.651 17.89 30.98 2.412 9.325 8.02 48.58 23.314 62.165 15.31 13.555 9.326-.09 22.147 15.624 12.805 15.714 238.456 291.603 238.456 291.603l11.468-7.888-209.785-269.829.286-3.87s-41.58-46.602-41.939-52.09c-.376-5.457-4.184-6.508-6.208-10.557-2.025-4.017-13.406-18.082-13.346-39.824.076-21.773-11.515-22.64-14.079-29.809-2.565-7.198-41.099-105.02-48.836-126.102-11.666 10.496-59.318 34.906-59.318 34.906z' fill='none' stroke='%23272425' stroke-width='1.549'/%3e%3cpath d='M1916.319 1009.083a1078.493 1078.493 0 0 1-4.182-11.095c-11.667 10.496-59.318 34.907-59.318 34.907a3435.84 3435.84 0 0 1 9.866 15.295c33.737-20.093 53.634-39.107 53.634-39.107' fill='%23f0e53c'/%3e%3cpath d='M1916.319 1009.083a1078.493 1078.493 0 0 1-4.182-11.095c-11.667 10.496-59.318 34.907-59.318 34.907a3435.84 3435.84 0 0 1 9.866 15.295c33.737-20.093 53.634-39.107 53.634-39.107z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M1862.685 1048.19a3349.423 3349.423 0 0 0-9.867-15.296s18.263-9.355 34.95-18.982c-.837 5.968-12.938 15.414-15.427 17.573-2.49 2.13-4.033 5.49-4.274 8.667-.24 3.18-5.382 8.037-5.382 8.037' fill='%23ced0d1'/%3e%3cpath d='M1862.685 1048.19a3349.423 3349.423 0 0 0-9.867-15.296s18.263-9.355 34.95-18.982c-.837 5.968-12.938 15.414-15.427 17.573-2.49 2.13-4.033 5.49-4.274 8.667-.24 3.18-5.382 8.037-5.382 8.037z' fill='none' stroke='%23272425' stroke-width='1.549'/%3e%3cpath d='m1983.914 1212.047 5.022-4.829 45.403 57.85-4.063 5.847z' fill='%23ced0d1'/%3e%3cpath d='m1983.914 1212.047 5.022-4.829 45.403 57.85-4.063 5.847z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m1991.261 1240.866-4.093 4.049 249.94 307.676 2.998-5.474z' fill='%23ced0d1'/%3e%3cpath d='m1991.261 1240.866-4.093 4.049 249.94 307.676 2.998-5.474z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2077.028 1310.35c1.11-.93 1.305-2.519.435-3.538l-6.417-7.528c-.87-1.02-2.46-1.08-3.57-.12l-21.547 18.352c-1.108.931-1.303 2.521-.434 3.54l6.418 7.526c.854 1.02 2.458 1.081 3.57.121z' fill='%23ced0d1'/%3e%3cpath d='M2077.028 1310.35c1.11-.93 1.305-2.519.435-3.538l-6.417-7.528c-.87-1.02-2.46-1.08-3.57-.12l-21.547 18.352c-1.108.931-1.303 2.521-.434 3.54l6.418 7.526c.854 1.02 2.458 1.081 3.57.121z' fill='none' stroke='%23000' stroke-width='1.262'/%3e%3cpath d='M2164.385 1422.125c1.02-.869 1.124-2.383.271-3.404l-6.417-7.512c-.873-1.019-2.386-1.154-3.39-.299l-19.658 16.748a2.423 2.423 0 0 0-.27 3.405l6.417 7.526a2.403 2.403 0 0 0 3.39.284z' fill='%23ced0d1'/%3e%3cpath d='M2164.385 1422.125c1.02-.869 1.124-2.383.271-3.404l-6.417-7.512c-.873-1.019-2.386-1.154-3.39-.299l-19.658 16.748a2.423 2.423 0 0 0-.27 3.405l6.417 7.526a2.403 2.403 0 0 0 3.39.284z' fill='none' stroke='%23000' stroke-width='1.205'/%3e%3cpath d='M2028.401 1257.84c-.164 2.28 1.545 4.26 3.81 4.408a4.122 4.122 0 0 0 4.437-3.808c.166-2.28-1.543-4.26-3.808-4.409-2.278-.179-4.259 1.53-4.439 3.808' fill='%23ced0d1'/%3e%3cpath d='M2028.401 1257.84c-.164 2.28 1.545 4.26 3.81 4.408a4.122 4.122 0 0 0 4.437-3.808c.166-2.28-1.543-4.26-3.808-4.409-2.278-.179-4.259 1.53-4.439 3.808z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M1976.146 1215.586a4.91 4.91 0 0 0 4.528 5.277c2.7.18 5.053-1.829 5.264-4.528.194-2.699-1.829-5.068-4.528-5.248-2.7-.21-5.069 1.8-5.264 4.5' fill='%23ced0d1'/%3e%3cpath d='M1976.146 1215.586a4.91 4.91 0 0 0 4.528 5.277c2.7.18 5.053-1.829 5.264-4.528.194-2.699-1.829-5.068-4.528-5.248-2.7-.21-5.069 1.8-5.264 4.5z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M1941.704 1222.603c6.088 1.11 24.082-21.622 25.536-2.788-2.43-.21-9.881-2.16-12.115-.03-5.864 5.547 5.802 4.227 5.937 6.087.3 4.168-1.214 8.187-6.506 8.517-9.027.51-2.011-6.328-4.499-9.357-.12-.15.419-.419.465-.48-4.229 1.5-6.134-.12-8.803-2.22' fill='%23ced0d1' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m2259.989 1553.506-3.657 2.878 24.679 31.474 3.66-2.865z' fill='%23ced0d1'/%3e%3cpath d='m2259.989 1553.506-3.657 2.878 24.679 31.474 3.66-2.865z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M1959.083 1239.458c2.474-2.49 4.603-4.41 5.592-8.127 3.524 4.978 10.527 2.998 11.845-3.45.706 1.38 2.175 2.879 2.745 4.228-7.527-13.463 13.494-4.018 13.465 4.409-.06 12.656-18.834 6.238-12.01-3.748-5.503 1.829-16.374 13.015-21.637 6.688' fill='%23ced0d1' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m2246.614 1546.578 9.973 12.13 5.248-4.273-11.292-15.279z' fill='%23ced0d1'/%3e%3cpath d='m2246.614 1546.578 9.973 12.13 5.248-4.273-11.292-15.279z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2234.334 1558.604c.99-4.543 3.809-9.552-.614-16.104-4.44-6.553 3.913-17.619 6.657-19.717 2.744-2.115 11.905 13.853 11.905 13.853s3.884 3.405-5.863 12.507l36.437 46.242-2.534 44.338 59.813 103.926-78.586-102.217 2.819-41.218-29.374-36.648s-1.38-1.693-.66-4.962' fill='%23ced0d1'/%3e%3cpath d='M2234.334 1558.604c.99-4.543 3.809-9.552-.614-16.104-4.44-6.553 3.913-17.619 6.657-19.717 2.744-2.115 11.905 13.853 11.905 13.853s3.884 3.405-5.863 12.507l36.437 46.242-2.534 44.338 59.813 103.926-78.586-102.217 2.819-41.218-29.374-36.648s-1.38-1.693-.66-4.962z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m2254.922 1559.923-5.638 6.538 27.244 34.037m-14.979 40.934c5.503 2.49 12.85 4.59 18.773-1.709m-15.954-39.509c2.983 1.514 8.382 5.547 18.488-4.829' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2213.492 1170.424c3.209-.21 6.418.089 9.49.989l-1.303 4.468c-10.767-3.15-23.826 2.31-29.104 12.146-5.31 9.866-1.335 21.44 10.87 31.757l-2.998 3.569c-19.942-16.853-15.01-31.848-11.981-37.515 4.769-8.878 14.86-14.756 25.026-15.414' fill='%23ced0d1'/%3e%3cpath d='M2213.492 1170.424c3.209-.21 6.418.089 9.49.989l-1.303 4.468c-10.767-3.15-23.826 2.31-29.104 12.146-5.31 9.866-1.335 21.44 10.87 31.757l-2.998 3.569c-19.942-16.853-15.01-31.848-11.981-37.515 4.769-8.878 14.86-14.756 25.026-15.414z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2214.901 1202.33c-2.414-5.277-5.937-11.515-13.719-11.754 5.576-1.92 12.58-5.49 17.032 2.999 4.44 8.517-3.313 8.756-3.313 8.756' fill='%23ced0d1'/%3e%3cpath d='M2214.901 1202.33c-2.414-5.277-5.937-11.515-13.719-11.754 5.576-1.92 12.58-5.49 17.032 2.999 4.44 8.517-3.313 8.756-3.313 8.756z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2342.338 1054.966c-17.647 26.75-34.563 52.72-40.858 63.247-6.3 10.496-25.057 32.087-40.006 40.754-14.95 8.666-15.654 21.502-18.158 30.798-2.49 9.297-8.426 48.522-23.856 61.957-15.414 13.464-9.326-.15-22.267 15.443-12.94 15.624-240.96 289.548-240.96 289.548l-11.395-7.992 212.095-267.999-.255-3.87s41.985-46.273 42.39-51.73c.419-5.458 4.229-6.477 6.297-10.496 2.07-4.019 13.57-17.993 13.674-39.735.12-21.74 11.727-22.522 14.35-29.659 2.639-7.168 42-104.69 49.932-125.682 11.56 10.585 59.017 35.416 59.017 35.416' fill='%23473125'/%3e%3cpath d='M2342.338 1054.966c-17.647 26.75-34.563 52.72-40.858 63.247-6.3 10.496-25.057 32.087-40.006 40.754-14.95 8.666-15.654 21.502-18.158 30.798-2.49 9.297-8.426 48.522-23.856 61.957-15.414 13.464-9.326-.15-22.267 15.443-12.94 15.624-240.96 289.548-240.96 289.548l-11.395-7.992 212.095-267.999-.255-3.87s41.985-46.273 42.39-51.73c.419-5.458 4.229-6.477 6.297-10.496 2.07-4.019 13.57-17.993 13.674-39.735.12-21.74 11.727-22.522 14.35-29.659 2.639-7.168 42-104.69 49.932-125.682 11.56 10.585 59.017 35.416 59.017 35.416z' fill='none' stroke='%23272425' stroke-width='1.549'/%3e%3cpath d='M2279.033 1030.616c1.812-4.647 3.298-8.457 4.288-11.065 11.561 10.585 59.017 35.416 59.017 35.416a6152.03 6152.03 0 0 0-10.016 15.205c-33.558-20.364-53.289-39.556-53.289-39.556' fill='%23f0e53c'/%3e%3cpath d='M2279.033 1030.616c1.812-4.647 3.298-8.457 4.288-11.065 11.561 10.585 59.017 35.416 59.017 35.416a6152.03 6152.03 0 0 0-10.016 15.205c-33.558-20.364-53.289-39.556-53.289-39.556z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2332.322 1070.171a6346.4 6346.4 0 0 1 10.016-15.205s-18.189-9.536-34.802-19.281c.796 5.966 12.806 15.534 15.279 17.692 2.475 2.159 3.989 5.519 4.199 8.697.209 3.177 5.308 8.097 5.308 8.097' fill='%23ced0d1'/%3e%3cpath d='M2332.322 1070.171a6346.4 6346.4 0 0 1 10.016-15.205s-18.189-9.536-34.802-19.281c.796 5.966 12.806 15.534 15.279 17.692 2.475 2.159 3.989 5.519 4.199 8.697.209 3.177 5.308 8.097 5.308 8.097z' fill='none' stroke='%23272425' stroke-width='1.549'/%3e%3cpath d='m2209.683 1232.98-4.979-4.858-45.897 57.427 4.02 5.91z' fill='%23ced0d1'/%3e%3cpath d='m2209.683 1232.98-4.979-4.858-45.897 57.427 4.02 5.91z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m2202.095 1261.738 4.065 4.078-252.58 305.518-2.954-5.503z' fill='%23ced0d1'/%3e%3cpath d='m2202.095 1261.738 4.065 4.078-252.58 305.518-2.954-5.503z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2115.728 1330.472c-1.095-.959-1.274-2.549-.39-3.539l6.463-7.467c.885-1.019 2.475-1.05 3.583-.119l21.382 18.562c1.095.96 1.275 2.55.406 3.54l-6.478 7.466c-.869 1.02-2.474 1.05-3.569.12z' fill='%23ced0d1'/%3e%3cpath d='M2115.728 1330.472c-1.095-.959-1.274-2.549-.39-3.539l6.463-7.467c.885-1.019 2.475-1.05 3.583-.119l21.382 18.562c1.095.96 1.275 2.55.406 3.54l-6.478 7.466c-.869 1.02-2.474 1.05-3.569.12z' fill='none' stroke='%23000' stroke-width='1.262'/%3e%3cpath d='M2027.412 1441.498a2.418 2.418 0 0 1-.24-3.403l6.477-7.468a2.407 2.407 0 0 1 3.405-.255l19.506 16.914a2.416 2.416 0 0 1 .24 3.404l-6.477 7.467c-.884 1.004-2.398 1.124-3.402.255z' fill='%23ced0d1'/%3e%3cpath d='M2027.412 1441.498a2.418 2.418 0 0 1-.24-3.403l6.477-7.468a2.407 2.407 0 0 1 3.405-.255l19.506 16.914a2.416 2.416 0 0 1 .24 3.404l-6.477 7.467c-.884 1.004-2.398 1.124-3.402.255z' fill='none' stroke='%23000' stroke-width='1.205'/%3e%3cpath d='M2164.805 1278.381a4.118 4.118 0 0 1-3.854 4.38 4.12 4.12 0 0 1-4.393-3.838 4.115 4.115 0 0 1 3.853-4.38 4.118 4.118 0 0 1 4.394 3.839' fill='%23ced0d1'/%3e%3cpath d='M2164.805 1278.381a4.118 4.118 0 0 1-3.854 4.38 4.12 4.12 0 0 1-4.393-3.838 4.115 4.115 0 0 1 3.853-4.38 4.118 4.118 0 0 1 4.394 3.839z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2217.42 1236.608a4.901 4.901 0 0 1-4.573 5.217c-2.7.181-5.037-1.889-5.217-4.588a4.91 4.91 0 0 1 4.572-5.217 4.887 4.887 0 0 1 5.219 4.588' fill='%23ced0d1'/%3e%3cpath d='M2217.42 1236.608a4.901 4.901 0 0 1-4.573 5.217c-2.7.181-5.037-1.889-5.217-4.588a4.91 4.91 0 0 1 4.572-5.217 4.887 4.887 0 0 1 5.219 4.588z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2251.817 1243.895c-6.117 1.08-23.9-21.832-25.52-3.029 2.43-.18 9.896-2.039 12.116.091 5.817 5.606-5.849 4.167-5.999 6.056-.328 4.17 1.155 8.187 6.45 8.548 9.01.6 2.052-6.298 4.556-9.297.15-.15-.404-.42-.45-.51 4.215 1.56 6.148-.06 8.818-2.099' fill='%23ced0d1' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m1930.684 1572.054 3.628 2.893-24.95 31.264-3.629-2.894z' fill='%23ced0d1'/%3e%3cpath d='m1930.684 1572.054 3.628 2.893-24.95 31.264-3.629-2.894z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2234.273 1260.598c-2.442-2.488-4.557-4.438-5.517-8.155-3.569 4.946-10.542 2.907-11.8-3.57-.72 1.38-2.205 2.85-2.789 4.2 7.631-13.376-13.465-4.11-13.51 4.288-.046 12.654 18.787 6.416 12.041-3.63 5.503 1.86 16.267 13.166 21.575 6.867' fill='%23ced0d1' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m1944.104 1565.23-10.062 12.057-5.202-4.32 11.41-15.203z' fill='%23ced0d1'/%3e%3cpath d='m1944.104 1565.23-10.062 12.057-5.202-4.32 11.41-15.203z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M1956.293 1577.362c-.944-4.56-3.732-9.581.751-16.09 4.497-6.522-3.75-17.663-6.478-19.791-2.729-2.13-12.04 13.763-12.04 13.763s-3.915 3.375 5.757 12.566l-36.825 45.912 2.158 44.369-60.712 103.386 79.471-101.526-2.476-41.235 29.69-36.392s1.395-1.68.704-4.962' fill='%23ced0d1'/%3e%3cpath d='M1956.293 1577.362c-.944-4.56-3.732-9.581.751-16.09 4.497-6.522-3.75-17.663-6.478-19.791-2.729-2.13-12.04 13.763-12.04 13.763s-3.915 3.375 5.757 12.566l-36.825 45.912 2.158 44.369-60.712 103.386 79.471-101.526-2.476-41.235 29.69-36.392s1.395-1.68.704-4.962z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m1935.691 1578.501 5.593 6.583-27.559 33.813m14.65 41.053c-5.534 2.445-12.91 4.484-18.758-1.858m16.283-39.376c-3 1.485-8.426 5.474-18.442-4.993' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2271.31 1149.46c3.208-.238 6.433.03 9.507.9l-1.26 4.468c-10.797-3.027-23.81 2.52-29.015 12.416-5.203 9.927-1.139 21.473 11.157 31.668l-2.97 3.569c-20.077-16.673-15.294-31.698-12.295-37.396 4.693-8.907 14.725-14.873 24.875-15.624' fill='%23ced0d1'/%3e%3cpath d='M2271.31 1149.46c3.208-.238 6.433.03 9.507.9l-1.26 4.468c-10.797-3.027-23.81 2.52-29.015 12.416-5.203 9.927-1.139 21.473 11.157 31.668l-2.97 3.569c-20.077-16.673-15.294-31.698-12.295-37.396 4.693-8.907 14.725-14.873 24.875-15.624z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2273.005 1181.368c-2.46-5.246-6.028-11.454-13.81-11.664 5.547-1.95 12.52-5.61 17.035 2.879 4.527 8.457-3.225 8.785-3.225 8.785' fill='%23ced0d1'/%3e%3cpath d='M2273.005 1181.368c-2.46-5.246-6.028-11.454-13.81-11.664 5.547-1.95 12.52-5.61 17.035 2.879 4.527 8.457-3.225 8.785-3.225 8.785z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2399.151 1032.894c-17.408 26.93-34.097 53.021-40.289 63.577-6.208 10.585-24.786 32.327-39.66 41.114-14.889 8.817-15.474 21.651-17.889 30.98-2.414 9.325-8.02 48.58-23.315 62.165-15.31 13.555-9.326-.09-22.148 15.624-12.804 15.714-238.455 291.603-238.455 291.603l-11.469-7.888 209.785-269.829-.285-3.87s41.58-46.602 41.94-52.09c.375-5.457 4.182-6.508 6.206-10.557 2.025-4.017 13.406-18.082 13.347-39.824-.077-21.773 11.515-22.64 14.08-29.809 2.563-7.198 41.097-105.02 48.835-126.102 11.666 10.496 59.317 34.906 59.317 34.906' fill='%23473125'/%3e%3cpath d='M2399.151 1032.894c-17.408 26.93-34.097 53.021-40.289 63.577-6.208 10.585-24.786 32.327-39.66 41.114-14.889 8.817-15.474 21.651-17.889 30.98-2.414 9.325-8.02 48.58-23.315 62.165-15.31 13.555-9.326-.09-22.148 15.624-12.804 15.714-238.455 291.603-238.455 291.603l-11.469-7.888 209.785-269.829-.285-3.87s41.58-46.602 41.94-52.09c.375-5.457 4.182-6.508 6.206-10.557 2.025-4.017 13.406-18.082 13.347-39.824-.077-21.773 11.515-22.64 14.08-29.809 2.563-7.198 41.097-105.02 48.835-126.102 11.666 10.496 59.317 34.906 59.317 34.906z' fill='none' stroke='%23272425' stroke-width='1.549'/%3e%3cpath d='M2335.651 1009.083c1.784-4.677 3.223-8.486 4.183-11.095 11.666 10.496 59.317 34.907 59.317 34.907-3.328 5.159-6.657 10.286-9.866 15.295-33.737-20.093-53.634-39.107-53.634-39.107' fill='%23f0e53c'/%3e%3cpath d='M2335.651 1009.083c1.784-4.677 3.223-8.486 4.183-11.095 11.666 10.496 59.317 34.907 59.317 34.907-3.328 5.159-6.657 10.286-9.866 15.295-33.737-20.093-53.634-39.107-53.634-39.107z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2389.285 1048.19c3.209-5.01 6.538-10.137 9.866-15.296 0 0-18.262-9.355-34.952-18.982.84 5.968 12.94 15.414 15.43 17.573 2.489 2.13 4.033 5.49 4.273 8.667.24 3.18 5.383 8.037 5.383 8.037' fill='%23ced0d1'/%3e%3cpath d='M2389.285 1048.19c3.209-5.01 6.538-10.137 9.866-15.296 0 0-18.262-9.355-34.952-18.982.84 5.968 12.94 15.414 15.43 17.573 2.489 2.13 4.033 5.49 4.273 8.667.24 3.18 5.383 8.037 5.383 8.037z' fill='none' stroke='%23272425' stroke-width='1.549'/%3e%3cpath d='m2268.055 1212.047-5.022-4.829-45.404 57.85 4.065 5.847z' fill='%23ced0d1'/%3e%3cpath d='m2268.055 1212.047-5.022-4.829-45.404 57.85 4.065 5.847z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m2260.709 1240.866 4.094 4.049-249.941 307.676-3-5.474z' fill='%23ced0d1'/%3e%3cpath d='m2260.709 1240.866 4.094 4.049-249.941 307.676-3-5.474z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2174.942 1310.35c-1.11-.93-1.29-2.519-.435-3.538l6.416-7.528c.872-1.02 2.46-1.08 3.57-.12l21.547 18.352c1.11.931 1.303 2.521.434 3.54l-6.418 7.526c-.853 1.02-2.458 1.081-3.568.121z' fill='%23ced0d1'/%3e%3cpath d='M2174.942 1310.35c-1.11-.93-1.29-2.519-.435-3.538l6.416-7.528c.872-1.02 2.46-1.08 3.57-.12l21.547 18.352c1.11.931 1.303 2.521.434 3.54l-6.418 7.526c-.853 1.02-2.458 1.081-3.568.121z' fill='none' stroke='%23000' stroke-width='1.262'/%3e%3cpath d='M2087.584 1422.125c-1.02-.869-1.124-2.383-.27-3.404l6.417-7.512c.871-1.019 2.385-1.154 3.39-.299l19.657 16.748a2.422 2.422 0 0 1 .27 3.405l-6.418 7.526a2.401 2.401 0 0 1-3.388.284z' fill='%23ced0d1'/%3e%3cpath d='M2087.584 1422.125c-1.02-.869-1.124-2.383-.27-3.404l6.417-7.512c.871-1.019 2.385-1.154 3.39-.299l19.657 16.748a2.422 2.422 0 0 1 .27 3.405l-6.418 7.526a2.401 2.401 0 0 1-3.388.284z' fill='none' stroke='%23000' stroke-width='1.205'/%3e%3cpath d='M2223.568 1257.84c.165 2.28-1.544 4.26-3.809 4.408-2.279.18-4.257-1.53-4.437-3.808-.166-2.28 1.543-4.26 3.808-4.409 2.278-.179 4.257 1.53 4.438 3.808' fill='%23ced0d1'/%3e%3cpath d='M2223.568 1257.84c.165 2.28-1.544 4.26-3.809 4.408-2.279.18-4.257-1.53-4.437-3.808-.166-2.28 1.543-4.26 3.808-4.409 2.278-.179 4.257 1.53 4.438 3.808z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2275.824 1215.586a4.912 4.912 0 0 1-4.528 5.277c-2.7.18-5.053-1.829-5.264-4.528-.195-2.699 1.829-5.068 4.528-5.248 2.715-.21 5.069 1.8 5.264 4.5' fill='%23ced0d1'/%3e%3cpath d='M2275.824 1215.586a4.912 4.912 0 0 1-4.528 5.277c-2.7.18-5.053-1.829-5.264-4.528-.195-2.699 1.829-5.068 4.528-5.248 2.715-.21 5.069 1.8 5.264 4.5z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2310.264 1222.603c-6.086 1.11-24.08-21.622-25.534-2.788 2.43-.21 9.881-2.16 12.114-.03 5.864 5.547-5.802 4.227-5.937 6.087-.299 4.168 1.214 8.187 6.522 8.517 9.012.51 1.995-6.328 4.484-9.357.135-.15-.42-.419-.465-.48 4.228 1.5 6.132-.12 8.802-2.22' fill='%23ced0d1' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m1991.981 1553.506 3.657 2.878-24.68 31.474-3.659-2.865z' fill='%23ced0d1'/%3e%3cpath d='m1991.981 1553.506 3.657 2.878-24.68 31.474-3.659-2.865z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2292.887 1239.458c-2.475-2.49-4.604-4.41-5.593-8.127-3.522 4.978-10.525 2.998-11.844-3.45-.706 1.38-2.174 2.879-2.745 4.228 7.527-13.463-13.494-4.018-13.465 4.409.06 12.656 18.847 6.238 12.01-3.748 5.519 1.829 16.374 13.015 21.637 6.688' fill='%23ced0d1' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m2005.356 1546.578-9.973 12.13-5.248-4.273 11.292-15.279z' fill='%23ced0d1'/%3e%3cpath d='m2005.356 1546.578-9.973 12.13-5.248-4.273 11.292-15.279z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2017.637 1558.604c-.99-4.543-3.81-9.552.614-16.104 4.439-6.553-3.914-17.619-6.657-19.717-2.744-2.115-11.906 13.853-11.906 13.853s-3.883 3.405 5.862 12.507l-36.435 46.242 2.533 44.338-59.812 103.926 78.6-102.217-2.833-41.218 29.374-36.648s1.379-1.693.66-4.962' fill='%23ced0d1'/%3e%3cpath d='M2017.637 1558.604c-.99-4.543-3.81-9.552.614-16.104 4.439-6.553-3.914-17.619-6.657-19.717-2.744-2.115-11.906 13.853-11.906 13.853s-3.883 3.405 5.862 12.507l-36.435 46.242 2.533 44.338-59.812 103.926 78.6-102.217-2.833-41.218 29.374-36.648s1.379-1.693.66-4.962z' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='m1997.048 1559.923 5.638 6.538-27.244 34.037m14.994 40.934c-5.518 2.49-12.865 4.59-18.789-1.709m15.955-39.509c-2.983 1.514-8.382 5.547-18.488-4.829' fill='none' stroke='%23000' stroke-width='1.549'/%3e%3cpath d='M2297.76 1614.533c-6.658-7.362-72.393-82.364-93.385-125.803-4.964-10.241 8.966-15.698 12.91-6.463 6.703 15.745 48.521 79.112 89.531 125.083z' fill='%23473125'/%3e%3cpath d='M2297.76 1614.533c-6.658-7.362-72.393-82.364-93.385-125.803-4.964-10.241 8.966-15.698 12.91-6.463 6.703 15.745 48.521 79.112 89.531 125.083z' fill='none' stroke='%23000' stroke-width='1.025'/%3e%3cpath d='M2285.555 1619.87c-1.936 3.448-4.244 15.115 2.684 25.371 6.912 10.255 14.44 13.15 22.207 11.771.478-7.797-.302-11.38 10.735-19.328 11.021-7.947 18.967-9.357 21.786-9.237 2.82.135 11.036 1.89 17.424 6.673 3.464-3.464 8.202-22.94-2.684-39.6-10.9-16.66-31.668-22.686-45.882-17.5 3.583 3.524 10.885 15.055-.78 28.776-5.353 6.192-10.378 11.02-10.378 11.02s-8.71 7.302-15.112 2.054' fill='%23ced0d1'/%3e%3cpath d='M2285.555 1619.87c-1.936 3.448-4.244 15.115 2.684 25.371 6.912 10.255 14.44 13.15 22.207 11.771.478-7.797-.302-11.38 10.735-19.328 11.021-7.947 18.967-9.357 21.786-9.237 2.82.135 11.036 1.89 17.424 6.673 3.464-3.464 8.202-22.94-2.684-39.6-10.9-16.66-31.668-22.686-45.882-17.5 3.583 3.524 10.885 15.055-.78 28.776-5.353 6.192-10.378 11.02-10.378 11.02s-8.71 7.302-15.112 2.054z' fill='none' stroke='%23000' stroke-width='1.025'/%3e%3cpath d='M2310.415 1657.416c-.135-5.381-4.363-11.53 11.276-22.296 15.624-10.766 27.424-10.256 38.7 0-6.912-4.363-17.423-9.492-31.533-.135-14.094 9.357-11.395 8.338-11.395 8.338-2.954 2.309-6.028 3.328-7.048 14.093' fill='%23ced0d1'/%3e%3cpath d='M2310.415 1657.416c-.135-5.381-4.363-11.53 11.276-22.296 15.624-10.766 27.424-10.256 38.7 0-6.912-4.363-17.423-9.492-31.533-.135-14.094 9.357-11.395 8.338-11.395 8.338-2.954 2.309-6.028 3.328-7.048 14.093z' fill='none' stroke='%23000' stroke-width='1.025'/%3e%3cpath d='m2316.743 1644.792-21.262-27.995c-1.604-2.115.225-6.208 4.094-9.147 3.853-2.923 8.29-3.584 9.896-1.47l21.262 27.98z' fill='%23ced0d1'/%3e%3cpath d='m2316.743 1644.792-21.262-27.995c-1.604-2.115.225-6.208 4.094-9.147 3.853-2.923 8.29-3.584 9.896-1.47l21.262 27.98z' fill='none' stroke='%23000' stroke-width='1.025'/%3e%3cpath d='M2330.733 1634.16c-1.604-2.114-6.043-1.44-9.897 1.485-3.868 2.94-5.698 7.032-4.093 9.146 1.604 2.115 6.043 1.44 9.896-1.485 3.868-2.938 5.697-7.032 4.094-9.146' fill='%23ced0d1'/%3e%3cpath d='M2330.733 1634.16c-1.604-2.114-6.043-1.44-9.897 1.485-3.868 2.94-5.698 7.032-4.093 9.146 1.604 2.115 6.043 1.44 9.896-1.485 3.868-2.938 5.697-7.032 4.094-9.146z' fill='none' stroke='%23000' stroke-width='1.025'/%3e%3cpath d='M2329.457 1638.314c-1.048-1.77-3.776-2.083-6.072-.72-2.324 1.365-3.343 3.898-2.294 5.669 1.05 1.768 4.018 2.533 6.328 1.168 2.309-1.363 3.073-4.348 2.038-6.117' fill='%23473125'/%3e%3cpath d='M2329.457 1638.314c-1.048-1.77-3.776-2.083-6.072-.72-2.324 1.365-3.343 3.898-2.294 5.669 1.05 1.768 4.018 2.533 6.328 1.168 2.309-1.363 3.073-4.348 2.038-6.117z' fill='none' stroke='%23000' stroke-width='1.025'/%3e%3cpath d='M1958.693 1599.268c6.252 2.25 19.388 11.2 26.72 21.232 7.333 10.032 2.954 14.185-5.218 12.475-8.17-1.708-17.094-10.944-18.503-14.018-1.41-3.06-2.999-19.69-2.999-19.69'/%3e%3cpath d='M1958.693 1599.268c6.252 2.25 19.388 11.2 26.72 21.232 7.333 10.032 2.954 14.185-5.218 12.475-8.17-1.708-17.094-10.944-18.503-14.018-1.41-3.06-2.999-19.69-2.999-19.69z' fill='none' stroke='%23000' stroke-width='.595'/%3e%3cpath d='m1953.82 1605.16 41.865-48.821' fill='%23fff' stroke='%23473125' stroke-width='19.521'/%3e%3cpath d='M1929.53 1559.264c-1.53 2.323-7.333 7.376-9.252 9.911-1.92 2.533-10.106 13-9.446 25.94.644 12.94.868 17.574.764 22.971-.104 5.398-4.393 23.796 7.003 33.423 11.395 9.641 17.768 13.705 36.33 11.86 18.579-1.86 32.869-11.202 21.743-23.105 1.589-2.775 3.838-6.06 9.07-7.063-4.347-.81-16.628-5.639-18.892-12.82-2.263-7.198-3.103-22.508-3.84-26.796-.733-4.303-2.967-18.428-14.482-25.91-11.5-7.467-15.64-5.623-18.998-8.41' fill='%23d32011'/%3e%3cpath d='M1929.53 1559.264c-1.53 2.323-7.333 7.376-9.252 9.911-1.92 2.533-10.106 13-9.446 25.94.644 12.94.868 17.574.764 22.971-.104 5.398-4.393 23.796 7.003 33.423 11.395 9.641 17.768 13.705 36.33 11.86 18.579-1.86 32.869-11.202 21.743-23.105 1.589-2.775 3.838-6.06 9.07-7.063-4.347-.81-16.628-5.639-18.892-12.82-2.263-7.198-3.103-22.508-3.84-26.796-.733-4.303-2.967-18.428-14.482-25.91-11.5-7.467-15.64-5.623-18.998-8.41z' fill='none' stroke='%23000' stroke-width='.595'/%3e%3cg clip-path='url(%23T)' opacity='.5'%3e%3cpath d='M1976.672 1640.264c1.425 1.514 2.414 2.999 3.058 4.422-6.163-4.29-18.982-11.365-25.37-9.131-7.437 2.579-15.714 9.252-21.457 4.647 3.225-.3 17.438-1.98 4.258-17.422 4.634 4.933 21.562 18.967 31.144.42 1.244 1.739 3.028 3.283 5.007 4.618-3.987.959-8.471 2.803-7.841 5.203.764 2.894 8.187 4.768 13.9 3.509-1.155 1.184-1.994 2.504-2.7 3.734'/%3e%3c/g%3e%3cg clip-path='url(%23U)' opacity='.33'%3e%3cpath d='M1913.2 1606.12c.42-5.157 7.153-30.167 21.412-31.562 14.246-1.396 18.488 7.782 21.398 12.476-1.664-7.978-7.573-17.919-23.887-15.1-16.314 2.82-19.417 22.611-19.642 23.931-.24 1.32.72 10.255.72 10.255'/%3e%3c/g%3e%3cpath d='M2386.856 1113.564c-4.843 5.338-4.453 13.585.884 18.443 5.34 4.83 13.586 4.44 18.428-.9 4.844-5.308 4.455-13.585-.884-18.412-5.337-4.859-13.584-4.44-18.428.87' fill='%23f0e53c'/%3e%3cpath d='M2386.856 1113.564c-4.843 5.338-4.453 13.585.884 18.443 5.34 4.83 13.586 4.44 18.428-.9 4.844-5.308 4.455-13.585-.884-18.412-5.337-4.859-13.584-4.44-18.428.87z' fill='none' stroke='%23473125' stroke-width='2.097'/%3e%3cpath d='M2006.555 1606.646s371.05-381.853 391.862-403.266c20.798-21.381 8.818-63.725-5.668-76.891-14.483-13.165-57.788-21.021-77.086 1.74-19.297 22.76-363.837 428.695-363.837 428.695z' fill='%23f0e53c'/%3e%3cpath d='M2006.555 1606.646s371.05-381.853 391.862-403.266c20.798-21.381 8.818-63.725-5.668-76.891-14.483-13.165-57.788-21.021-77.086 1.74-19.297 22.76-363.837 428.695-363.837 428.695z' fill='none' stroke='%23473125' stroke-width='2.097'/%3e%3cpath d='M2334.196 1272.655a4.18 4.18 0 0 1-2.323-5.458c2.444-6.09-16.57-32.118-28.175-42.675-11.62-10.526-39.361-26.96-45.163-23.93-2.07 1.049-4.604.27-5.668-1.8a4.213 4.213 0 0 1 1.8-5.667c13.734-7.108 49.99 20.962 54.669 25.19 4.678 4.258 36.091 37.665 30.302 52.03a4.182 4.182 0 0 1-5.442 2.31' fill='%23f0e53c'/%3e%3cpath d='M2334.196 1272.655a4.18 4.18 0 0 1-2.323-5.458c2.444-6.09-16.57-32.118-28.175-42.675-11.62-10.526-39.361-26.96-45.163-23.93-2.07 1.049-4.604.27-5.668-1.8a4.213 4.213 0 0 1 1.8-5.667c13.734-7.108 49.99 20.962 54.669 25.19 4.678 4.258 36.091 37.665 30.302 52.03a4.182 4.182 0 0 1-5.442 2.31z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='M2344.811 1263.688a5.617 5.617 0 0 1-1.889-7.198c-.075-5.638-15.653-27.529-30.767-41.265-15.115-13.734-38.402-27.14-44.039-26.659a5.573 5.573 0 0 1-7.332-1.23c-1.95-2.398-1.574-5.907.824-7.857 13.39-10.855 57.64 27.08 58.06 27.471.434.39 42.416 40.783 32.896 55.15a5.591 5.591 0 0 1-7.753 1.588' fill='%23f0e53c'/%3e%3cpath d='M2344.811 1263.688a5.617 5.617 0 0 1-1.889-7.198c-.075-5.638-15.653-27.529-30.767-41.265-15.115-13.734-38.402-27.14-44.039-26.659a5.573 5.573 0 0 1-7.332-1.23c-1.95-2.398-1.574-5.907.824-7.857 13.39-10.855 57.64 27.08 58.06 27.471.434.39 42.416 40.783 32.896 55.15a5.591 5.591 0 0 1-7.753 1.588z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='M2393.243 1213.306c-2.383-1.919-2.833-5.428-.93-7.826 6.583-8.368-1.647-31.789-24.005-52.09-22.341-20.304-46.453-26.24-54.13-18.895a5.603 5.603 0 0 1-7.901-.179c-2.145-2.218-2.07-5.758.164-7.916 13.54-12.956 43.379-4.918 69.395 18.712 26.014 23.631 36.886 52.57 25.265 67.295-1.905 2.4-5.428 2.818-7.858.9' fill='%23f0e53c'/%3e%3cpath d='M2393.243 1213.306c-2.383-1.919-2.833-5.428-.93-7.826 6.583-8.368-1.647-31.789-24.005-52.09-22.341-20.304-46.453-26.24-54.13-18.895a5.603 5.603 0 0 1-7.901-.179c-2.145-2.218-2.07-5.758.164-7.916 13.54-12.956 43.379-4.918 69.395 18.712 26.014 23.631 36.886 52.57 25.265 67.295-1.905 2.4-5.428 2.818-7.858.9z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='M2383.392 1221.553c-1.725-1.559-1.92-4.139-.359-5.848 1.978-3.689-1.32-27.949-25.76-50.17-24.306-22.073-48.658-23.123-52.346-20.842-1.574 1.59-4.138 1.65-5.803.148-1.71-1.558-1.845-4.226-.285-5.937 6.598-7.256 37.471-3.719 64.072 20.422 26.6 24.171 33.078 54.55 26.464 61.836-1.545 1.711-4.273 1.92-5.983.391' fill='%23f0e53c'/%3e%3cpath d='M2383.392 1221.553c-1.725-1.559-1.92-4.139-.359-5.848 1.978-3.689-1.32-27.949-25.76-50.17-24.306-22.073-48.658-23.123-52.346-20.842-1.574 1.59-4.138 1.65-5.803.148-1.71-1.558-1.845-4.226-.285-5.937 6.598-7.256 37.471-3.719 64.072 20.422 26.6 24.171 33.078 54.55 26.464 61.836-1.545 1.711-4.273 1.92-5.983.391z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='m2321.915 1281.62 7.214-13.703-13.136 1.29 6.447-14.906-14.558.63 4.424-14.874-14.215 2.758 3.253-15.683-15.325 4.738 1.41-14.424-14.395 5.847-.778-14.574-14.216 7.856.029-13.195-12.97 8.488' fill='none' stroke='%23473125' stroke-width='2.796' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='m2366.48 1235.23 7.106-13.797-13.359 1.08 6.327-15.024-14.845.39 4.274-15.055-14.485 2.55 3.09-15.864-15.505 4.588 1.154-14.635-14.559 5.668-1.05-14.785-14.348 7.708-.21-13.375-13.046 8.366' fill='none' stroke='%23473125' stroke-width='2.844' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M2017.98 1598.414a4.191 4.191 0 0 1-2.325-5.458c2.835-7.033-6.866-24.41-16.493-33.153-9.64-8.757-27.859-16.748-34.59-13.256-2.056 1.081-4.605.271-5.655-1.784a4.194 4.194 0 0 1 1.784-5.652c12.506-6.493 35.252 6.448 44.1 14.47 8.846 8.037 23.901 29.448 18.637 42.508a4.187 4.187 0 0 1-5.458 2.325' fill='%23f0e53c'/%3e%3cpath d='M2017.98 1598.414a4.191 4.191 0 0 1-2.325-5.458c2.835-7.033-6.866-24.41-16.493-33.153-9.64-8.757-27.859-16.748-34.59-13.256-2.056 1.081-4.605.271-5.655-1.784a4.194 4.194 0 0 1 1.784-5.652c12.506-6.493 35.252 6.448 44.1 14.47 8.846 8.037 23.901 29.448 18.637 42.508a4.187 4.187 0 0 1-5.458 2.325z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='M2034.354 1581.966c-2.159-.855-3.194-3.313-2.323-5.458 2.653-6.615-7.753-24.112-17.829-33.274-10.076-9.146-28.489-17.827-34.818-14.543-2.052 1.064-4.603.268-5.652-1.8-1.079-2.054-.27-4.574 1.785-5.654 12.116-6.283 34.846 7.183 44.322 15.79 9.477 8.606 25.056 29.943 19.958 42.613-.854 2.145-3.298 3.18-5.443 2.325' fill='%23f0e53c'/%3e%3cpath d='M2034.354 1581.966c-2.159-.855-3.194-3.313-2.323-5.458 2.653-6.615-7.753-24.112-17.829-33.274-10.076-9.146-28.489-17.827-34.818-14.543-2.052 1.064-4.603.268-5.652-1.8-1.079-2.054-.27-4.574 1.785-5.654 12.116-6.283 34.846 7.183 44.322 15.79 9.477 8.606 25.056 29.943 19.958 42.613-.854 2.145-3.298 3.18-5.443 2.325z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='m2026.303 1585.549 3.628-11.816-7.241.675 3.852-9.417-8.71.585 3.134-10.376-9.913.286 1.665-10.603-10.406 2.67-.66-9.897-10.031 4.109-.255-8.726-8.996 4.739-.031-7.274-11.41 4.754' fill='none' stroke='%23473125' stroke-width='2.844' stroke-linecap='round' stroke-linejoin='round'/%3e%3cg clip-path='url(%23V)' opacity='.33'%3e%3cpath d='M1987.932 1568.005s329.53-381.478 350.432-404.509c20.917-23.032 33.197-19.793 50.98-18.714-9.52-9.267-37.41-23.271-66.079 8.308-28.654 31.547-349.967 407.103-349.967 407.103z' fill='%23473125'/%3e%3c/g%3e%3cg clip-path='url(%23W)' opacity='.67'%3e%3cpath d='m2362.685 1185.567-328.916 350.695c-3.704 3.944-3.493 10.137.45 13.825.031.044.075.075.106.104 3.958 3.584 10.06 3.36 13.718-.554l324.343-346.258c3.704-3.927 3.778-10.075-.165-13.793-.044-.03-5.877-7.917-9.536-4.019' fill='%23fff'/%3e%3c/g%3e%3cpath d='M2006.42 1607.425c6.822-7.513-.044-24.86-15.325-38.746-15.294-13.885-33.21-19.058-40.05-11.545-6.822 7.527.046 24.875 15.325 38.76 15.295 13.885 33.213 19.058 40.05 11.531' fill='%23fff'/%3e%3cpath d='M2006.42 1607.425c6.822-7.513-.044-24.86-15.325-38.746-15.294-13.885-33.21-19.058-40.05-11.545-6.822 7.527.046 24.875 15.325 38.76 15.295 13.885 33.213 19.058 40.05 11.531z' fill='none' stroke='%23473125' stroke-width='2.097'/%3e%3cpath d='M1998.894 1600.602c4.723-5.187-.481-17.602-11.622-27.724-11.141-10.106-23.975-14.095-28.698-8.906-4.723 5.203.494 17.603 11.62 27.71 11.14 10.121 23.99 14.108 28.7 8.92' fill='%23f0e53c'/%3e%3cpath d='M1998.894 1600.602c4.723-5.187-.481-17.602-11.622-27.724-11.141-10.106-23.975-14.095-28.698-8.906-4.723 5.203.494 17.603 11.62 27.71 11.14 10.121 23.99 14.108 28.7 8.92z' fill='none' stroke='%23473125' stroke-width='2.097'/%3e%3cg clip-path='url(%23X)' opacity='.33'%3e%3cpath d='m1978.006 1597.634 6.268 3.27 13.525-14.89-3.854-5.924z' fill='%23473125'/%3e%3c/g%3e%3cg clip-path='url(%23Y)' opacity='.67'%3e%3cpath d='M1973.567 1565.006s-6.462 8.606-8.621 11.666c-2.16 3.073.9 11.844 6.207 5.652 5.309-6.193 9.493-13.255 9.493-13.255z' fill='%23fff'/%3e%3c/g%3e%3cpath d='M1865.114 1113.564c4.843 5.338 4.453 13.585-.886 18.443-5.337 4.83-13.584 4.44-18.428-.9-4.843-5.308-4.453-13.585.886-18.412 5.337-4.859 13.584-4.44 18.428.87' fill='%23f0e53c'/%3e%3cpath d='M1865.114 1113.564c4.843 5.338 4.453 13.585-.886 18.443-5.337 4.83-13.584 4.44-18.428-.9-4.843-5.308-4.453-13.585.886-18.412 5.337-4.859 13.584-4.44 18.428.87z' fill='none' stroke='%23473125' stroke-width='2.097'/%3e%3cpath d='M2245.415 1606.646s-371.05-381.853-391.863-403.266c-20.797-21.381-8.816-63.725 5.669-76.891 14.484-13.165 57.787-21.021 77.086 1.74 19.298 22.76 363.837 428.695 363.837 428.695z' fill='%23f0e53c'/%3e%3cpath d='M2245.415 1606.646s-371.05-381.853-391.863-403.266c-20.797-21.381-8.816-63.725 5.669-76.891 14.484-13.165 57.787-21.021 77.086 1.74 19.298 22.76 363.837 428.695 363.837 428.695z' fill='none' stroke='%23473125' stroke-width='2.097'/%3e%3cpath d='M1917.773 1272.655a4.181 4.181 0 0 0 2.325-5.458c-2.445-6.09 16.569-32.118 28.175-42.675 11.62-10.526 39.36-26.96 45.163-23.93 2.067 1.049 4.603.27 5.667-1.8a4.215 4.215 0 0 0-1.8-5.667c-13.734-7.108-49.99 20.962-54.67 25.19-4.677 4.258-36.09 37.665-30.301 52.03a4.181 4.181 0 0 0 5.44 2.31' fill='%23f0e53c'/%3e%3cpath d='M1917.773 1272.655a4.181 4.181 0 0 0 2.325-5.458c-2.445-6.09 16.569-32.118 28.175-42.675 11.62-10.526 39.36-26.96 45.163-23.93 2.067 1.049 4.603.27 5.667-1.8a4.215 4.215 0 0 0-1.8-5.667c-13.734-7.108-49.99 20.962-54.67 25.19-4.677 4.258-36.09 37.665-30.301 52.03a4.181 4.181 0 0 0 5.44 2.31z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='M1907.157 1263.688a5.635 5.635 0 0 0 1.905-7.198c.06-5.638 15.638-27.529 30.753-41.265 15.115-13.734 38.401-27.14 44.04-26.659a5.573 5.573 0 0 0 7.331-1.23c1.95-2.398 1.574-5.907-.809-7.857-13.39-10.855-57.638 27.08-58.074 27.471-.435.39-42.419 40.783-32.897 55.15a5.589 5.589 0 0 0 7.751 1.588' fill='%23f0e53c'/%3e%3cpath d='M1907.157 1263.688a5.635 5.635 0 0 0 1.905-7.198c.06-5.638 15.638-27.529 30.753-41.265 15.115-13.734 38.401-27.14 44.04-26.659a5.573 5.573 0 0 0 7.331-1.23c1.95-2.398 1.574-5.907-.809-7.857-13.39-10.855-57.638 27.08-58.074 27.471-.435.39-42.419 40.783-32.897 55.15a5.589 5.589 0 0 0 7.751 1.588z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='M1858.725 1213.306c2.385-1.919 2.834-5.428.931-7.826-6.583-8.368 1.649-31.789 24.006-52.09 22.34-20.304 46.453-26.24 54.13-18.895 2.234 2.13 5.787 2.04 7.901-.179 2.145-2.218 2.07-5.758-.164-7.916-13.541-12.956-43.379-4.918-69.395 18.712-26.015 23.631-36.87 52.57-25.265 67.295 1.905 2.4 5.427 2.818 7.856.9' fill='%23f0e53c'/%3e%3cpath d='M1858.725 1213.306c2.385-1.919 2.834-5.428.931-7.826-6.583-8.368 1.649-31.789 24.006-52.09 22.34-20.304 46.453-26.24 54.13-18.895 2.234 2.13 5.787 2.04 7.901-.179 2.145-2.218 2.07-5.758-.164-7.916-13.541-12.956-43.379-4.918-69.395 18.712-26.015 23.631-36.87 52.57-25.265 67.295 1.905 2.4 5.427 2.818 7.856.9z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='M1868.576 1221.553c1.726-1.559 1.92-4.139.361-5.848-1.98-3.689 1.32-27.949 25.76-50.17 24.32-22.073 48.658-23.123 52.346-20.842 1.574 1.59 4.124 1.65 5.803.148 1.71-1.558 1.843-4.226.285-5.937-6.598-7.256-37.471-3.719-64.072 20.422-26.6 24.171-33.077 54.55-26.464 61.836 1.545 1.711 4.273 1.92 5.982.391' fill='%23f0e53c'/%3e%3cpath d='M1868.576 1221.553c1.726-1.559 1.92-4.139.361-5.848-1.98-3.689 1.32-27.949 25.76-50.17 24.32-22.073 48.658-23.123 52.346-20.842 1.574 1.59 4.124 1.65 5.803.148 1.71-1.558 1.843-4.226.285-5.937-6.598-7.256-37.471-3.719-64.072 20.422-26.6 24.171-33.077 54.55-26.464 61.836 1.545 1.711 4.273 1.92 5.982.391z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='m1930.055 1281.62-7.198-13.703 13.12 1.29-6.447-14.906 14.559.63-4.424-14.874 14.215 2.758-3.253-15.683 15.323 4.738-1.41-14.424 14.395 5.847.78-14.574 14.215 7.856-.03-13.195 12.97 8.488' fill='none' stroke='%23473125' stroke-width='2.796' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='m1885.49 1235.23-7.106-13.797 13.359 1.08-6.327-15.024 14.844.39-4.273-15.055 14.485 2.55-3.09-15.864 15.505 4.588-1.154-14.635 14.559 5.668 1.05-14.785 14.349 7.708.21-13.375 13.06 8.366' fill='none' stroke='%23473125' stroke-width='2.844' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M2233.989 1598.414a4.187 4.187 0 0 0 2.323-5.458c-2.833-7.033 6.868-24.41 16.495-33.153 9.641-8.757 27.859-16.748 34.592-13.256 2.055 1.081 4.604.271 5.653-1.784 1.08-2.054.269-4.587-1.786-5.652-12.504-6.493-35.251 6.448-44.096 14.47-8.848 8.037-23.903 29.448-18.639 42.508a4.186 4.186 0 0 0 5.458 2.325' fill='%23f0e53c'/%3e%3cpath d='M2233.989 1598.414a4.187 4.187 0 0 0 2.323-5.458c-2.833-7.033 6.868-24.41 16.495-33.153 9.641-8.757 27.859-16.748 34.592-13.256 2.055 1.081 4.604.271 5.653-1.784 1.08-2.054.269-4.587-1.786-5.652-12.504-6.493-35.251 6.448-44.096 14.47-8.848 8.037-23.903 29.448-18.639 42.508a4.186 4.186 0 0 0 5.458 2.325z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='M2217.63 1581.966c2.145-.855 3.18-3.313 2.324-5.458-2.668-6.615 7.738-24.112 17.815-33.274 10.075-9.146 28.488-17.827 34.815-14.543 2.069 1.064 4.605.268 5.653-1.8 1.08-2.054.27-4.574-1.784-5.654-12.116-6.283-34.845 7.183-44.323 15.79-9.477 8.606-25.056 29.943-19.957 42.613.853 2.145 3.298 3.18 5.457 2.325' fill='%23f0e53c'/%3e%3cpath d='M2217.63 1581.966c2.145-.855 3.18-3.313 2.324-5.458-2.668-6.615 7.738-24.112 17.815-33.274 10.075-9.146 28.488-17.827 34.815-14.543 2.069 1.064 4.605.268 5.653-1.8 1.08-2.054.27-4.574-1.784-5.654-12.116-6.283-34.845 7.183-44.323 15.79-9.477 8.606-25.056 29.943-19.957 42.613.853 2.145 3.298 3.18 5.457 2.325z' fill='none' stroke='%23473125' stroke-width='1.398'/%3e%3cpath d='m2225.668 1585.549-3.63-11.816 7.242.675-3.852-9.417 8.71.585-3.133-10.376 9.91.286-1.663-10.603 10.406 2.67.66-9.897 10.032 4.109.255-8.726 8.996 4.739.03-7.274 11.41 4.754' fill='none' stroke='%23473125' stroke-width='2.844' stroke-linecap='round' stroke-linejoin='round'/%3e%3cg clip-path='url(%23Z)' opacity='.33'%3e%3cpath d='M2264.038 1568.005s-329.53-381.478-350.432-404.509c-20.917-23.032-33.197-19.793-50.98-18.714 9.52-9.267 37.41-23.271 66.079 8.308 28.654 31.547 349.967 407.103 349.967 407.103z' fill='%23473125'/%3e%3c/g%3e%3cg clip-path='url(%23aa)' opacity='.67'%3e%3cpath d='m1889.284 1185.567 328.916 350.695c3.705 3.944 3.495 10.137-.45 13.825-.03.044-.074.075-.104.104-3.96 3.584-10.063 3.36-13.72-.554l-324.343-346.258c-3.704-3.927-3.777-10.075.165-13.793.045-.03 5.878-7.917 9.537-4.019' fill='%23fff'/%3e%3c/g%3e%3cpath d='M2245.55 1607.425c-6.822-7.513.045-24.86 15.325-38.746 15.293-13.885 33.21-19.058 40.05-11.545 6.822 7.527-.046 24.875-15.325 38.76-15.294 13.885-33.213 19.058-40.05 11.531' fill='%23fff'/%3e%3cpath d='M2245.55 1607.425c-6.822-7.513.045-24.86 15.325-38.746 15.293-13.885 33.21-19.058 40.05-11.545 6.822 7.527-.046 24.875-15.325 38.76-15.294 13.885-33.213 19.058-40.05 11.531z' fill='none' stroke='%23473125' stroke-width='2.097'/%3e%3cpath d='M2253.076 1600.602c-4.707-5.187.48-17.602 11.622-27.724 11.14-10.106 23.99-14.095 28.698-8.906 4.723 5.203-.478 17.603-11.62 27.71-11.14 10.121-23.975 14.108-28.7 8.92' fill='%23f0e53c'/%3e%3cpath d='M2253.076 1600.602c-4.707-5.187.48-17.602 11.622-27.724 11.14-10.106 23.99-14.095 28.698-8.906 4.723 5.203-.478 17.603-11.62 27.71-11.14 10.121-23.975 14.108-28.7 8.92z' fill='none' stroke='%23473125' stroke-width='2.097'/%3e%3cg clip-path='url(%23ab)' opacity='.33'%3e%3cpath d='m2273.964 1597.634-6.268 3.27-13.525-14.89 3.855-5.924z' fill='%23473125'/%3e%3c/g%3e%3cg clip-path='url(%23ac)' opacity='.67'%3e%3cpath d='M2278.403 1565.006s6.463 8.606 8.621 11.666c2.16 3.073-.899 11.844-6.207 5.652-5.309-6.193-9.492-13.255-9.492-13.255z' fill='%23fff'/%3e%3c/g%3e%3cpath d='M2267.231 1772.767s-4.483-1.095-5.232-6.267' fill='none' stroke='%23473125' stroke-width='2.068'/%3e%3cpath d='M2272.165 1772.648c0-1.184-1.215-2.144-2.73-2.144-1.514 0-2.73.96-2.73 2.144 0 1.185 1.216 2.145 2.73 2.145 1.515 0 2.73-.96 2.73-2.145' fill='%23d32011'/%3e%3cpath d='M2272.165 1772.648c0-1.184-1.215-2.144-2.73-2.144-1.514 0-2.73.96-2.73 2.144 0 1.185 1.216 2.145 2.73 2.145 1.515 0 2.73-.96 2.73-2.145z' fill='none' stroke='%23473125' stroke-width='.689'/%3e%3cpath d='M2259.195 1770.744c-.45-1.095-1.95-1.514-3.345-.96-1.393.57-2.174 1.935-1.723 3.03.45 1.095 1.934 1.513 3.343.959 1.395-.57 2.174-1.92 1.725-3.03' fill='%23d32011'/%3e%3cpath d='M2259.195 1770.744c-.45-1.095-1.95-1.514-3.345-.96-1.393.57-2.174 1.935-1.723 3.03.45 1.095 1.934 1.513 3.343.959 1.395-.57 2.174-1.92 1.725-3.03z' fill='none' stroke='%23473125' stroke-width='.689'/%3e%3cpath d='M2256.376 1822.384c-.45-1.095-1.935-1.529-3.344-.959-1.394.57-2.175 1.918-1.724 3.013.45 1.11 1.95 1.53 3.343.96 1.395-.57 2.175-1.919 1.725-3.014' fill='%23d32011'/%3e%3cpath d='M2256.376 1822.384c-.45-1.095-1.935-1.529-3.344-.959-1.394.57-2.175 1.918-1.724 3.013.45 1.11 1.95 1.53 3.343.96 1.395-.57 2.175-1.919 1.725-3.014z' fill='none' stroke='%23473125' stroke-width='.689'/%3e%3cpath d='M2258.685 1822.054c.36-1.124 1.813-1.665 3.253-1.214 1.44.45 2.325 1.74 1.964 2.88-.36 1.122-1.813 1.663-3.253 1.213-1.439-.465-2.325-1.74-1.964-2.879' fill='%23d32011'/%3e%3cpath d='M2258.685 1822.054c.36-1.124 1.813-1.665 3.253-1.214 1.44.45 2.325 1.74 1.964 2.88-.36 1.122-1.813 1.663-3.253 1.213-1.439-.465-2.325-1.74-1.964-2.879z' fill='none' stroke='%23473125' stroke-width='.689'/%3e%3cpath d='M2262.209 1725.146c-.45-1.095-1.95-1.529-3.344-.959s-2.175 1.92-1.724 3.027c.45 1.095 1.934 1.516 3.344.946 1.394-.57 2.174-1.919 1.724-3.014' fill='%23d32011'/%3e%3cpath d='M2262.209 1725.146c-.45-1.095-1.95-1.529-3.344-.959s-2.175 1.92-1.724 3.027c.45 1.095 1.934 1.516 3.344.946 1.394-.57 2.174-1.919 1.724-3.014z' fill='none' stroke='%23473125' stroke-width='.689'/%3e%3cpath d='M2272.554 1725.206c.346-1.125-.525-2.414-1.964-2.864-1.44-.449-2.909.09-3.253 1.215-.36 1.14.524 2.414 1.964 2.88 1.44.45 2.894-.092 3.253-1.23' fill='%23d32011'/%3e%3cpath d='M2272.554 1725.206c.346-1.125-.525-2.414-1.964-2.864-1.44-.449-2.909.09-3.253 1.215-.36 1.14.524 2.414 1.964 2.88 1.44.45 2.894-.092 3.253-1.23z' fill='none' stroke='%23473125' stroke-width='.689'/%3e%3cpath d='M2267.681 1723.766c-1.948-.224-3.493-1.784-3.673-3.732' fill='none' stroke='%23473125' stroke-width='2.068'/%3e%3cpath d='M2238.892 1655.363c.06-1.186-1.11-2.205-2.624-2.28-1.515-.075-2.774.84-2.835 2.01-.06 1.184 1.126 2.203 2.624 2.278 1.516.075 2.79-.824 2.835-2.008' fill='%23d32011'/%3e%3cpath d='M2238.892 1655.363c.06-1.186-1.11-2.205-2.624-2.28-1.515-.075-2.774.84-2.835 2.01-.06 1.184 1.126 2.203 2.624 2.278 1.516.075 2.79-.824 2.835-2.008z' fill='none' stroke='%23473125' stroke-width='.689'/%3e%3cpath d='M2232.175 1670.34c-1.17-.103-2.25 1.036-2.385 2.536-.12 1.514.72 2.819 1.906 2.923 1.184.105 2.248-1.035 2.383-2.533.119-1.515-.718-2.82-1.904-2.925' fill='%23d32011'/%3e%3cpath d='M2232.175 1670.34c-1.17-.103-2.25 1.036-2.385 2.536-.12 1.514.72 2.819 1.906 2.923 1.184.105 2.248-1.035 2.383-2.533.119-1.515-.718-2.82-1.904-2.925z' fill='none' stroke='%23473125' stroke-width='.689'/%3e%3cpath d='M2224.482 1661.376c23.197 5.862 38.58 38.069 38.042 62.15-.825 36.152-2.52 66.186-5.188 91.81-.15 1.426-.27 2.835-.39 4.23-.406 4.559-.78 8.876-1.98 13.24l1.995.554c1.26-4.557 1.633-8.967 2.04-13.63.12-1.378.253-2.773.388-4.183 2.67-25.67 4.364-55.764 5.202-91.976.571-25.341-14.768-59.661-39.285-65.854z' fill='%2300702d'/%3e%3cpath d='M2224.482 1661.376c23.197 5.862 38.58 38.069 38.042 62.15-.825 36.152-2.52 66.186-5.188 91.81-.15 1.426-.27 2.835-.39 4.23-.406 4.559-.78 8.876-1.98 13.24l1.995.554c1.26-4.557 1.633-8.967 2.04-13.63.12-1.378.253-2.773.388-4.183 2.67-25.67 4.364-55.764 5.202-91.976.571-25.341-14.768-59.661-39.285-65.854z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='m2018.49 1651.314 10.106-1.604-9.596 24.65-3.269-22.58z' fill='%2300702d'/%3e%3cpath d='m2018.49 1651.314 10.106-1.604-9.596 24.65-3.269-22.58z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2002.402 1813.672c5.053 12.4 31.322 53.214 42.973 59.273-12.595 1.89-44.863-41.009-49-51.4' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2004.35 1835.67c5.384 19.972 25.087 37.154 37.458 42.283-10.361-13.12-23.617-27.874-30.214-43.319' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M1997.108 1824.348c3.089 14.561 17.125 45.583 25.117 52.421-3.99-11.412-6.18-19.029-6.733-31.278' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M1995.745 1814.122c3.178 17.768 13.719 32.493 31.442 37.262-14.14-10.572-27.02-32.539-28.698-50.008' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M1988.786 1793.97c5.503 12.04 27.291 45.657 40.726 52.9-8.622-11.035-25.162-35.852-29.299-52.045' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M1992.52 1787.583c-1.155 6.897-6.897 10.795 5.518 51.475.915-23.435.224-41.82-2.294-49.631m1.364.45c3 10.346 5.294 20.917 28.955 42.749-5.053-10.795-23.436-50.786-29.87-52.855' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M1986.088 1759.782c-2.294 5.744-8.967 43.888 2.518 76.981.465-18.158 8.113-51.13 9.027-66.064' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M1984.469 1738.176c-2.294 5.068-9.417 34.937-9.641 52.166 3.898-6.208 15.849-22.521 17.918-38.835 2.758 11.035-1.141 15.624 21.607 47.336-3.45-13.09-11.726-52.39-19.313-65.031' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M1992.985 1728.295c-3.688 3.223-6.897 13.33-5.292 22.985 1.604 9.656 8.501 59.978 8.501 59.978 3.223-25.97 4.603-72.617 0-81.345' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M1988.562 1696.597c-1.56 9.19-15.58 68.704-20.167 77.895 6.207-6.897 37.216-47.801 25.28-71.014' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2001.022 1685.786c-3.223 7.362-17.228 22.746-1.38 61.13-.464-20.451 1.38-61.13 1.38-61.13' fill='%2300702d'/%3e%3cpath d='M2001.022 1685.786c-3.223 7.362-17.228 22.746-1.38 61.13-.464-20.451 1.38-61.13 1.38-61.13z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M1995.745 1679.818c-6.673 4.589-23.902 25.506-30.8 50.096 5.054-6.897 30.65-29.193 33.484-43.2' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2007.23 1664.884c-2.76 8.952-8.742 26.884-7.587 38.835 1.154 11.95 10.72 54.144 10.03 63.65 1.005-13.568 1.064-38.145 0-54.46-1.064-16.312.765-39.763 7.2-56.992l1.617-4.603-9.49 5.982z' fill='%2300702d'/%3e%3cpath d='M2007.23 1664.884c-2.76 8.952-8.742 26.884-7.587 38.835 1.154 11.95 10.72 54.144 10.03 63.65 1.005-13.568 1.064-38.145 0-54.46-1.064-16.312.765-39.763 7.2-56.992l1.617-4.603-9.49 5.982z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M1995.04 1682.577c-4.813 5.518-20.212 31.249-23.437 57.669 5.053-11.95 14.485-23.887 19.312-30.094 4.83-6.208 17.229-31.49 14.696-42.06z' fill='%2300702d'/%3e%3cpath d='M1995.04 1682.577c-4.813 5.518-20.212 31.249-23.437 57.669 5.053-11.95 14.485-23.887 19.312-30.094 4.83-6.208 17.229-31.49 14.696-42.06z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2019.855 1652.243c.24 8.967-3.209 42.044-3.674 51.927-.45 9.88.06 27.574-2.864 36.076-.12-5.968-4.379-29.614-3.899-39.511.466-9.911 2.864-40.214 6.54-45.972m-11.278 25.055c.016 6.658 4.56 25.266 4.95 32.388m-4.95-53.756c-4.813 7.813-29.389 39.286-36.286 47.788 5.518-3.21 28.954-13.09 44.923-48.476' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2037.098 1635.466c-8.037 2.533-48.25 22.52-66.634 52.165 14.933-12.64 46.647-33.784 61.581-37.683z' fill='%2300702d'/%3e%3cpath d='M2037.098 1635.466c-8.037 2.533-48.25 22.52-66.634 52.165 14.933-12.64 46.647-33.784 61.581-37.683z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2040.247 1625.584c-7.572.689-30.41 5.683-48.011 31.249 8.726-7.123 18.832-15.625 35.835-20.454' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2041.238 1631.102c-8.052 8.726-24.815 17.228-25.506 68.478 6.433-25.055 17.004-51.01 34.457-64.114z' fill='%2300702d'/%3e%3cpath d='M2041.238 1631.102c-8.052 8.726-24.815 17.228-25.506 68.478 6.433-25.055 17.004-51.01 34.457-64.114z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2043.996 1624.668c-11.037 4.59-35.987 21.533-46.483 34.083 11.547-7.437 33.619-18.458 45.554-23.286z' fill='%2300702d'/%3e%3cpath d='M2043.996 1624.668c-11.037 4.59-35.987 21.533-46.483 34.083 11.547-7.437 33.619-18.458 45.554-23.286z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2047.67 1629.258c-3.45 7.586-19.987 53.079-22.057 65.495 5.742-8.967 34.456-58.598 36.526-74.447 2.07-15.865 0-.93 0-.93z' fill='%2300702d'/%3e%3cpath d='M2047.67 1629.258c-3.45 7.586-19.987 53.079-22.057 65.495 5.742-8.967 34.456-58.598 36.526-74.447 2.07-15.865 0-.93 0-.93z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2023.543 1628.566c-5.982.931-28.144 8.054-34.98 23.213-1.336-4.364 4.646-25.972 43.018-31.473z' fill='%2300702d'/%3e%3cpath d='M2023.543 1628.566c-5.982.931-28.144 8.054-34.98 23.213-1.336-4.364 4.646-25.972 43.018-31.473z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2048.808 1615.477c-6.192-1.604-27.799-7.812-47.786 8.728 8.501-2.76 24.125-4.364 34.697-1.83z' fill='%2300702d'/%3e%3cpath d='M2048.808 1615.477c-6.192-1.604-27.799-7.812-47.786 8.728 8.501-2.76 24.125-4.364 34.697-1.83z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2060.758 1603.062c-5.741-1.14-22.97-3.449-32.161 8.501 6.896-3.209 16.088-3.898 25.97-.45z' fill='%2300702d'/%3e%3cpath d='M2060.758 1603.062c-5.741-1.14-22.97-3.449-32.161 8.501 6.896-3.209 16.088-3.898 25.97-.45z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2075.244 1595.715c-4.603-2.983-17.918-8.967-34.247-1.155 6.207-.225 15.639-.225 21.382 6.208z' fill='%2300702d'/%3e%3cpath d='M2075.244 1595.715c-4.603-2.983-17.918-8.967-34.247-1.155 6.207-.225 15.639-.225 21.382 6.208z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2097.076 1602.103c-2.07-5.01-17.244-18.338-45.958 3.269 10.106-.466 30.333-5.07 37.906-3.914m-37.217 12.64c-5.293-1.154-20.002-5.308-34.007 20.212 12.177-8.037 19.298-8.037 25.266-8.037' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2079.832 1604.682c-5.322-2.37-20.212-6.897-36.99 14.934 10.106-2.76 30.332-14.484 33.092-14.245' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2075.244 1607.89c-4.468-.674-33.857 8.982-40.44 23.212 10.796-5.294 27.335-12.641 36.076-16.553' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2097.076 1602.103c-5.292-2.715-25.746-1.634-35.732 9.432 11.83-2.954 17.349-3.644 25.61-2.49z' fill='%2300702d'/%3e%3cpath d='M2097.076 1602.103c-5.292-2.715-25.746-1.634-35.732 9.432 11.83-2.954 17.349-3.644 25.61-2.49z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2032.495 1642.362c2.684-5.354 10.347-22.056 31.338-25.64.571 4.692-9.805 12.684-15.938 15.984-6.134 3.298-10.602 5.218-15.4 9.656' fill='%2300702d'/%3e%3cpath d='M2032.495 1642.362c2.684-5.354 10.347-22.056 31.338-25.64.571 4.692-9.805 12.684-15.938 15.984-6.134 3.298-10.602 5.218-15.4 9.656z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2058.12 1624.205c5.398-8.503 18.263-23.047 32.283-16.344-2.07 2.564-7.347 4.498-12.865 5.143-5.518.63-19.417 11.2-19.417 11.2' fill='%2300702d'/%3e%3cpath d='M2058.12 1624.205c5.398-8.503 18.263-23.047 32.283-16.344-2.07 2.564-7.347 4.498-12.865 5.143-5.518.63-19.417 11.2-19.417 11.2z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2060.758 1633.17c.466 4.14-1.602 12.401-6.655 28.37-5.054 15.984-5.985 16.899-7.349 24.246-.928-6.432-1.617-34.922 3.435-45.493' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2071.33 1620.306c-.225 3.673-22.147 32.402-23.66 44.113.45-13.33-2.339-36.932 22.101-48.747' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2067.657 1622.375c-.69 10.106-2.07 19.522-5.519 28.024-3.447 8.502-6.88 13.105-7.121 25.28 4.603-11.26 26.03-54.07 33.602-63.486' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2075.933 1632.015c-.689 6.208-4.362 26.196-7.812 34.008 5.744-6.883 22.911-36.242 25.67-43.363' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2082.367 1626.962c-.227 5.744-1.036 17.005-3.165 24.817 4.32-8.277 7.302-11.486 11.201-16.314 3.914-4.829 12.642-17.814 9.882-22.461' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2056.636 1629.032c4.229-3.33 13.646-5.968 18.608-7.812 4.574-1.694 14.244-5.743 12.641-8.726-1.62-3-10.691-.96-15.174 1.14-4.484 2.098-16.075 15.398-16.075 15.398' fill='%2300702d'/%3e%3cpath d='M2056.636 1629.032c4.229-3.33 13.646-5.968 18.608-7.812 4.574-1.694 14.244-5.743 12.641-8.726-1.62-3-10.691-.96-15.174 1.14-4.484 2.098-16.075 15.398-16.075 15.398z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2097.526 1615.178c.48-2.805-10.707-5.008-15.16 0-4.454 5.007-8.097 13.165-10.017 21.667-1.933 8.5-4.228 16.089-5.833 18.847 4.125-4.378 7.693-12.19 12.686-20.226 5.01-8.038 17.635-16.225 18.324-20.288' fill='%2300702d'/%3e%3cpath d='M2097.526 1615.178c.48-2.805-10.707-5.008-15.16 0-4.454 5.007-8.097 13.165-10.017 21.667-1.933 8.5-4.228 16.089-5.833 18.847 4.125-4.378 7.693-12.19 12.686-20.226 5.01-8.038 17.635-16.225 18.324-20.288z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2261.835 1777.417c3.898 3.448 9.43 3.524 13.419 6.687-.57.12-1.305-.135-1.844.06 2.008 1.545 4.529 4.018 5.472 6.672-.224.24-1.11 0-1.35.225 1.515 1.635 2.699 3.973 3.75 5.968-.496.21-1.185-.164-1.68.06.765 2.744.975 5.968.12 8.743-2.803.059-5.292-1.036-7.047-3.194-.075.674.119 1.394.164 1.979-3.283-.571-6.072-2.834-6.866-6.103a9.962 9.962 0 0 0-.555 2.114c-1.89-2.37-2.7-5.503-2.595-8.546-.39.614-.57 1.303-.808 1.993-2.026-5.592 2.308-11.935-.526-16.658' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2269.405 1802.066c0-3.389-.135-6.972.106-10.255 2.294 1.678 5.233 2.19 7.602 3.704m.12 6.431c-2.985-2.039-5.639-5.067-7.139-8.382' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2264.937 1794.36c1.8-2.923 1.71-6.583 1.306-9.822 2.502 2.73 6.267 2.849 9.026 4.888m-5.757 2.385c-.646-1.17-1.8-3.929-2.28-5.144m-.989-2.129c-.676-1.378-2.551-4.198-3.615-5.217' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2257.861 1821.98c-5.489 3.553-17.71 6.852-19.733 14.02.18.225 1.05.21 1.334.48-2.82 2.052-5.233 4.917-5.218 8.53.495.27 1.005-.255 1.514.015-1.274 2.984-1.514 6.36-1.454 9.672 2.788-.884 5.503-2.519 7.407-4.694.015.705-.09 1.441-.15 2.16 1.56-1.575 3.51-2.55 5.038-4.123.061.645-.194 1.334-.15 1.98 2.175-1.455 4.14-3.66 5.368-6.074.21.39-.045 1.004.031 1.514 6.701-4.962 4.587-13.84 5.053-21.156' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2237.347 1849.629c3.33-2.789 4.56-7.722 8.007-10.046m-1.034 8.096c1.125-3.043 1.784-6.341 1.47-9.641-2.7 1.605-5.429 3.959-8.532 4.543m4.138-7.947c2.46-2.1 5.532-1.693 8.022-3.402-.195 3.238.974 6.22.451 9.534m-4.289-2.428c1.244-1.95 1.949-4.198 3.389-6.057m.57-1.215c1.29-2.144 3.763-3.253 5.802-4.588' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2256.45 1822.744c-.18 6.972-4.558 15.834.524 21.982.3-.03.81-.795 1.23-.87.106 3.719 1.185 7.573 4.364 9.776.54-.27.39-1.034.93-1.32 1.874 2.94 4.693 5.219 7.647 7.199.9-2.985 1.11-6.358.346-9.341.629.419 1.214.959 1.798 1.454-.435-2.34-.12-4.634-.584-6.928.599.345 1.064.99 1.649 1.349.03-2.803-.72-5.862-2.114-8.412.479.06.856.645 1.365.9-.345-8.892-9.448-12.476-15.61-17.363' fill='%2300702d' stroke='%231b402f' stroke-width='.736'/%3e%3cpath d='M2268.58 1853.647c-.45-4.603-4.061-8.697-4.018-13.136m6.508 5.864c-1.995-2.834-4.499-5.443-7.603-7.183-.225 3.33.211 7.168-1.154 10.226m-4.499-8.47c-.374-3.435 1.846-5.864 1.846-9.087 2.728 2.159 6.073 2.954 8.681 5.443m-4.753 2.264c-.96-2.28-2.504-4.273-3.284-6.671m-.734-1.247c-1.096-2.444-.586-5.279-.525-7.872' fill='none' stroke='%231b402f' stroke-width='.736' stroke-linecap='round'/%3e%3cpath d='M2258.55 1820.33c-2.684 7.513-9.882 10.766-13.03 17.393.615.075 1.14-.435 1.799-.299-.825 4.093-3.78 7.331-3.39 11.845.526-.15 1.11-.735 1.666-.826-.404 2.535-.3 5.43.6 7.53.45-.152.795-.812 1.29-.976-.69 3.3.915 6.327 1.934 9.221.735-2.309 2.235-4.364 3.764-5.952.164.63.015 1.378.209 1.903 1.275-2.309 2.34-4.993 3.614-7.287.435.481.164 1.035.554 1.56 1.755-2.324 2.369-5.443 2.416-8.412.419.465.749 1.185 1.123 1.68 1.035-3.015 1.035-6.224.585-9.433.539.645 1.064 1.245 1.529 1.995 1.335-7.12-4.798-12.34-4.138-19.762' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2247.874 1852.043c3.119-1.02 5.113-3.823 6.208-6.837.614 2.278 1.904 3.614 3.088 5.458m-8.787-4.65c3.525-1.558 6.193-4.752 7.378-8.276.193 2.43 1.094 4.214 1.934 6.372m-6.208-7.931c3.27-1.2 5.698-4.003 6.043-7.452-.239 3.358.586 6.793 2.234 9.52m-6.897 13.106c-.42 2.25-1.334 4.258-2.76 6.028m6.089-20.617c.479-1.05.674-2.25.585-3.45m-2.759 12.296c-.166-1.574.224-3.073 1.14-4.138' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2259.764 1778.106c-5.173 4.003-14.244 6.117-15.653 13.42.195.21 1.063.12 1.38.36-2.64 2.294-4.815 5.353-4.485 8.952.51.224.975-.346 1.5-.12-1.006 3.088-.96 6.476-.63 9.776 2.713-1.125 5.278-2.985 6.987-5.308.075.705.03 1.44.03 2.16 1.426-1.71 3.283-2.85 4.663-4.529.136.63-.075 1.35.03 1.98 2.04-1.65 3.824-3.99 4.828-6.509.24.376.06 1.005.164 1.515 6.254-5.518 3.405-14.184 3.256-21.517' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2244.59 1805.171c3.074-3.059 3.884-8.083 7.137-10.691m-.344 8.157c.855-3.12 1.244-6.478.63-9.73-2.534 1.812-5.068 4.391-8.112 5.247m3.449-8.262c2.277-2.31 5.382-2.174 7.705-4.08.091 3.256 1.5 6.119 1.261 9.477m-4.483-2.069c1.079-2.038 1.589-4.348 2.879-6.327m.448-1.261c1.11-2.249 3.48-3.553 5.398-5.053' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2262.584 1775.752c.479 7.961 4.873 13.48 6.057 20.707-.614-.09-.975-.72-1.65-.78-.345 4.168 1.59 8.097-.044 12.311-.45-.286-.855-1.005-1.365-1.245-.314 2.55-1.214 5.294-2.668 7.078-.39-.286-.541-1.006-.976-1.32-.24 3.36-2.624 5.832-4.408 8.321-.075-2.413-.93-4.798-1.965-6.76-.328.568-.404 1.317-.718 1.767-.601-2.564-.87-5.443-1.455-7.992-.555.33-.45.931-.974 1.334-1.035-2.728-.765-5.892.029-8.756-.54.33-1.05.944-1.558 1.305-.151-3.193.733-6.267 2.068-9.22-.705.464-1.38.898-2.024 1.483.705-7.198 8.112-10.917 9.552-18.233' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2262.404 1809.564c-2.715-1.844-3.854-5.098-4.064-8.291-1.23 2.008-2.834 2.938-4.499 4.377m9.731-2.023c-2.938-2.474-4.616-6.268-4.768-9.987-.87 2.265-2.233 3.735-3.628 5.578m8.157-5.893c-2.804-2.054-4.35-5.443-3.72-8.832-.704 3.285-2.457 6.343-4.797 8.518m2.969 14.499c-.226 2.28.104 4.467.976 6.567m-.107-21.501a6.988 6.988 0 0 1 .405-3.48m-.779 12.582c.601-1.471.629-3.03.044-4.29' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2264.562 1725.355c4.14 4.093 10.002 4.168 14.244 7.932-.613.135-1.378-.164-1.978.075 2.13 1.815 4.813 4.754 5.817 7.903-.239.284-1.17 0-1.425.27 1.605 1.933 2.85 4.708 3.974 7.077-.524.24-1.275-.195-1.784.075.81 3.254 1.035 7.062.12 10.346-2.968.075-5.608-1.23-7.467-3.779-.089.795.135 1.65.18 2.34-3.493-.66-6.448-3.344-7.303-7.227a13.793 13.793 0 0 0-.569 2.503c-2.009-2.804-2.879-6.523-2.745-10.136-.418.734-.614 1.56-.869 2.37-2.144-6.629 2.445-14.14-.555-19.749' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2272.6 1754.58c0-4.02-.15-8.262.104-12.145 2.444 1.98 5.548 2.593 8.068 4.377m.12 7.633c-3.165-2.43-5.969-6.013-7.558-9.957' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2267.847 1745.447c1.92-3.462 1.828-7.81 1.394-11.635 2.653 3.224 6.658 3.375 9.581 5.773m-6.117 2.85c-.676-1.396-1.905-4.665-2.415-6.104m-1.049-2.519c-.72-1.634-2.699-4.978-3.823-6.208' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2262.373 1726.181c-5.487 4.738-15.1 7.241-16.598 15.908.209.24 1.14.135 1.454.435-2.79 2.715-5.084 6.327-4.738 10.587.539.268 1.035-.39 1.589-.136-1.063 3.673-1.02 7.678-.674 11.591 2.879-1.336 5.592-3.539 7.423-6.298.06.84.028 1.71.028 2.564 1.515-2.009 3.48-3.373 4.95-5.368.119.75-.091 1.59.015 2.354 2.174-1.948 4.047-4.738 5.126-7.72.255.45.047 1.182.182 1.798 6.627-6.553 3.597-16.823 3.432-25.507' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2246.299 1758.253c3.254-3.613 4.109-9.58 7.542-12.67m-.36 9.672c.9-3.705 1.32-7.678.676-11.532-2.699 2.146-5.369 5.22-8.592 6.224m3.644-9.807c2.413-2.73 5.697-2.564 8.17-4.828.092 3.854 1.59 7.257 1.336 11.23m-4.752-2.458c1.139-2.415 1.693-5.144 3.043-7.482m.494-1.5c1.17-2.668 3.689-4.213 5.729-5.997' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2264.008 1722.866c-1.83 8.998-8.636 13.465-11.036 21.473.613.044 1.08-.6 1.768-.525-.358 4.858-2.938 8.906-2.053 14.11.51-.225 1.02-.96 1.558-1.11-.118 2.983.3 6.343 1.442 8.712.433-.226.704-1.035 1.182-1.29-.33 3.914 1.605 7.287 2.94 10.556.494-2.743 1.74-5.279 3.104-7.287.224.718.164 1.605.404 2.204 1.02-2.82 1.77-6.043 2.79-8.817.494.51.284 1.17.734 1.74 1.47-2.864 1.74-6.554 1.455-10.002.464.494.885 1.305 1.304 1.844.69-3.613.345-7.347-.479-11.035.63.705 1.214 1.35 1.753 2.174.527-8.413-6.16-13.885-6.342-22.597' fill='%2300702d' stroke='%231b402f' stroke-width='.745'/%3e%3cpath d='M2256.915 1760.773c2.984-1.485 4.665-4.933 5.414-8.548.869 2.595 2.31 4.034 3.703 6.059m-9.282-4.574c3.329-2.144 5.623-6.102 6.419-10.315.464 2.789 1.559 4.798 2.638 7.212m-7.062-8.622c3.118-1.71 5.218-5.219 5.173-9.252.135 3.929 1.349 7.827 3.284 10.871m-5.382 15.894c-.167 2.653-.856 5.083-2.07 7.272m3.749-24.56c.359-1.26.419-2.684.18-4.078m-1.366 14.574c-.346-1.815-.104-3.6.69-4.918' fill='none' stroke='%231b402f' stroke-width='.745' stroke-linecap='round'/%3e%3cpath d='M2240.226 1667.163c-.749 10.256-7.932 15.58-9.49 24.815.733-.06 1.168-.84 1.978-.84.33 5.428-2.053 10.302-.21 15.955.555-.33 1.035-1.215 1.65-1.47.314 3.33 1.334 7.002 3.013 9.447.481-.315.676-1.23 1.186-1.59.224 4.393 3.013 7.843 5.066 11.277.136-3.12 1.215-6.12 2.49-8.533.376.765.435 1.755.81 2.369.75-3.268 1.14-6.957 1.89-10.195.66.51.51 1.275 1.124 1.845 1.29-3.405 1.034-7.543.15-11.322.63.48 1.23 1.32 1.814 1.86.255-4.124-.736-8.202-2.265-12.191.84.689 1.62 1.334 2.385 2.158-.69-9.401-9.342-14.5-10.886-24.14' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2237.873 1709.626c3.269-2.083 4.678-6.162 4.993-10.27 1.425 2.728 3.314 4.122 5.248 6.163m-11.516-3.705c3.553-2.864 5.622-7.616 5.893-12.4.974 3.045 2.564 5.1 4.182 7.632m-9.565-8.532c3.373-2.369 5.278-6.552 4.603-11.02.764 4.318 2.79 8.486 5.518 11.561m-3.839 18.428c.225 2.968-.21 5.773-1.289 8.397m.585-27.83c.224-1.44.075-3.029-.405-4.529m.644 16.36c-.674-1.965-.689-3.989.03-5.563' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2246.299 1667.178c11.606.869 6.463 7.347 7.273 13.84.464-.496.66-1.424 1.2-1.845.345 3.224 1.334 7.692 3.464 10.675.39-.028.689-1.123 1.064-1.183.749 2.788 2.413 5.788 3.823 8.382.525-.346.556-1.35 1.095-1.665 2.34 2.879 5.518 5.563 8.892 6.793 1.784-2.804 2.205-6.18 1.049-9.627.749.434 1.366 1.2 1.949 1.695 1.44-3.794.839-8.367-2.04-11.682.826.242 1.725.616 2.505 1.05-1.258-3.747-3.973-6.956-7.168-9.177.872.076 1.696.42 2.549.69-4.497-6.326-18.967-8.981-27.468-8.981' fill='%2300702d' stroke='%231b402f' stroke-width='.757'/%3e%3cpath d='M2274.864 1689.715c-3.464-2.595-7.062-5.489-10.571-7.737.299 3.613-.976 7.002-.885 10.57m6.538 5.039c-.271-4.589-1.755-9.612-4.229-13.676' fill='none' stroke='%231b402f' stroke-width='.757' stroke-linecap='round'/%3e%3cpath d='M2269.72 1679.248c-4.108-.39-7.811-3.283-10.886-6.177 1.26 4.633-.929 8.577-.54 12.939m5.999-4.032c-.81-1.56-2.924-4.844-3.884-6.27m-1.575-2.638c-.988-1.74-2.398-4.048-5.428-5.052' fill='none' stroke='%231b402f' stroke-width='.757' stroke-linecap='round'/%3e%3cpath d='M2239.191 1668.093c8.907 2.953 2.385 15.084 4.274 21.59.345-.433.96-.9 1.335-1.364.076 4.92-.825 10.497 1.664 14.92.285-.944.915-1.904 1.124-2.834-.239 4.064 1.23 8.472 3.464 11.8.57-.868 1.844-1.453 2.414-2.338 1.664 6.567 11.006 6.973 11.562 12.684 1.56-6.312 6.671-11.17 3.282-17.677.63.12 1.365-.015 1.995.089 2.054-7.077-.27-12.7-4.633-18.127.644-.031 1.304-.301 1.873-.376-1.138-6.327-6.64-10.106-12.04-12.595.691-.12 1.29-.524 1.965-.69-2.384-3.66-6.896-3.553-10.346-5.143-2.669-1.215-5.398-3.658-7.933.06' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2240.226 1667.643c9.567 4.018 10.571 14.528 21.832 16.073m-7.466-.69c4.978 7.737.63 14.71.689 22.761m11.83-10c-2.369-3.404-5.518-5.549-9.07-7.347m.689 7.467c5.292 5.802 1.994 14.665 6.207 21.021m-14.59-35.956c.3 4.964-2.413 9.027-1.964 13.9' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2196.954 1636.904c4.153 9.4-5.204 6.837 3.523 26.975.615-.39.63-1.29 1.349-1.68 2.85 4.649 3.029 10.06 7.302 14.185.33-.54.346-1.544.764-2.07 1.86 2.79 4.47 5.549 7.108 6.928.286-.494.016-1.41.302-1.95 2.247 3.765 6.34 5.504 9.759 7.573-1.334-2.834-1.798-5.968-1.814-8.696.69.494 1.215 1.334 1.846 1.694-.871-3.224-2.281-6.657-3.12-9.881.81.135 1.049.884 1.843 1.094-.464-3.6-2.622-7.138-5.173-10.061.78.119 1.71.585 2.476.78-1.711-3.748-4.5-6.882-7.708-9.687 1.05.226 2.039.42 3.105.795-5.024-7.992-15.055-8.426-20.948-16.223' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2215.067 1676.114c1.903-3.39 1.243-7.632-.405-11.425 2.517 1.754 4.857 2.084 7.526 2.984m-11.918 2.129c1.797-4.184 1.393-9.341-.617-13.705 2.28 2.219 4.647 3.298 7.271 4.769m-12.444-3.046c1.86-3.658 1.574-8.261-1.11-11.89 2.714 3.465 6.433 6.178 10.301 7.618m5.263 18.082c1.59 2.52 2.52 5.188 2.79 8.007m-12.536-24.845c-.495-1.38-1.364-2.698-2.503-3.808m8.261 14.14c-1.515-1.41-2.474-3.194-2.578-4.918' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2205.56 1634.236c6.896 4.602 13.3 14.92 22.416 13.374.15-.344-.33-1.393-.18-1.89 3.81 2.25 8.307 3.54 12.355 1.515.03-.75-.824-1.064-.794-1.83 4.033-.134 7.947-1.723 11.65-3.642-2.488-2.848-5.772-5.204-9.22-6.283.78-.404 1.664-.69 2.503-1.02-2.608-1.004-4.738-2.788-7.302-3.748.69-.434 1.604-.51 2.294-.93-2.804-1.798-6.313-2.923-9.672-3.044.33-.465 1.14-.525 1.695-.9-9.146-5.263-17.978 2.235-26.45 5.743' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2243.63 1640.802c-4.888-2.444-11.096-1.154-15.533-4.002m9.64-3.285c-4.003.36-8.066 1.395-11.604 3.628 3.222 2.34 7.332 4.304 9.64 7.693m-11.125-.525c-3.659-1.769-4.845-5.698-8.083-7.737 3.734-1.574 6.463-4.633 10.467-5.863m-.449 6.523c-2.85-.42-5.758-.015-8.607-.705m-1.666.001c-3.089-.36-5.653-2.715-8.23-4.424' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2195.619 1630.171c3.704 8.532 5.143 26.375 15.204 31.023.375-.195.599-1.423 1.095-1.738 2.249 4.437 5.817 8.531 11.185 9.415.539-.614-.09-1.454.45-2.099 4.079 2.535 9.01 3.72 13.96 4.5-.525-4.125-2.19-8.323-4.873-11.517 1.064.165 2.114.495 3.163.765-1.888-2.579-2.788-5.534-4.677-8.052.96.06 1.919.6 2.892.705-1.558-3.404-4.257-6.702-7.51-9.01.644-.197 1.484.298 2.278.327-5.487-10.585-19.268-9.88-30.004-12.4' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2231.17 1665.724c-3.193-5.323-10.181-8.277-12.641-13.676m11.727 3.495c-4.198-2.34-8.907-4.11-13.9-4.5 1.604 4.155 4.334 8.562 4.319 13.03m-10.632-7.781c-2.413-3.943-.944-8.126-2.774-12.025 4.753 1.094 9.522.224 14.305 1.799m-4.843 5.353c-2.535-2.22-5.669-3.794-8.022-6.268m-1.649-1.095c-2.819-2.339-3.75-6.058-5.159-9.236' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2156.633 1617.472c5.354 7.84-4.26 6.897 7.049 23.706.568-.451.463-1.26 1.123-1.71 3.432 3.764 4.332 8.607 9.101 11.667.255-.525.135-1.441.48-1.966 2.204 2.234 5.158 4.335 7.962 5.188.195-.494-.18-1.274.03-1.8 2.73 3.046 7.002 4.02 10.661 5.369-1.695-2.34-2.564-5.098-2.938-7.542.75.345 1.363 1.019 2.04 1.26-1.29-2.774-3.135-5.653-4.395-8.412.81 0 1.156.629 1.964.704-.93-3.178-3.539-6.027-6.447-8.276.778 0 1.77.27 2.55.345-2.19-3.12-5.368-5.533-8.923-7.573 1.08.03 2.085.06 3.193.24-6.026-6.432-16.013-5.353-22.88-11.486' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2179.754 1650.024c1.425-3.313.195-7.032-1.933-10.196 2.744 1.214 5.082 1.17 7.84 1.59m-11.499 3.644c1.215-4.02.135-8.592-2.43-12.207 2.565 1.65 5.038 2.265 7.842 3.209m-12.731-.915c1.366-3.553.467-7.646-2.683-10.51 3.15 2.713 7.198 4.603 11.216 5.337m7.602 15.461c1.904 2.023 3.178 4.302 3.823 6.777m-15.698-20.467c-.66-1.17-1.71-2.234-2.97-3.06m10.032 11.502c-1.693-1.05-2.863-2.52-3.194-4.05' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2152.42 1620.816c7.902-12.491 12.64-3.659 20.902-1.425-.314-.764-1.32-1.425-1.5-2.22 4.065 1.17 10.017 2.22 14.875 1.276.18-.45-.944-1.305-.81-1.755 3.794.525 9.507 2.218 13.45 1.904-.104-.75-2.414-3.389-2.474-4.138 4.843-1.215 9.927-3.464 13.407-6.613-2.31-3.358-6.12-5.428-10.917-5.818.959-.614 2.218-.944 3.164-1.335-3.69-3.433-9.536-4.961-15.205-3.373a18.86 18.86 0 0 1 2.743-2.279c-5.246-.389-10.704 1.08-15.248 3.569.598-.946 1.499-1.68 2.339-2.52-10.255 1.964-21.997 16.78-27.035 26.256' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2195.723 1598.849c-5.157 2.609-10.735 5.204-15.533 8.036 4.543 1.395 7.841 4.455 12.16 6.073m9.912-4.843c-5.67-1.92-12.566-2.684-18.909-1.89' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2180.144 1599.523c-2.908 4.394-8.563 7.107-13.854 9.132 6.311.84 9.747 5.173 15.204 6.853m-1.304-8.623c-2.325.15-7.542.916-9.807 1.305m-4.093.465c-2.67.284-6.283.734-9.281 3.613' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2159.633 1619.3c6.387 6.583 10.84 19.193 21.097 19.673.24-.33-.03-1.56.269-2.054 3.584 3.314 8.158 5.758 13.016 4.528.224-.795-.615-1.335-.405-2.144 4.408.794 9.027.015 13.495-1.17-2.01-3.674-4.993-6.972-8.473-8.936.946-.254 1.966-.36 2.954-.51-2.578-1.695-4.468-4.123-7.016-5.759.855-.315 1.859-.164 2.714-.448-2.594-2.61-6.133-4.649-9.762-5.578.48-.42 1.38-.286 2.054-.556-8.652-7.826-20.032-1.859-30.063-.074' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2199.337 1635.344c-4.708-3.764-11.74-3.853-15.878-7.96m11.245-1.26c-4.423-.57-9.086-.406-13.45 1.154 2.939 3.283 6.913 6.372 8.593 10.556m-11.922-3.179c-3.554-2.773-3.898-7.287-6.913-10.241 4.424-.81 8.127-3.465 12.761-3.84m-2.053 6.913c-2.985-1.124-6.24-1.379-9.162-2.789m-1.816-.388c-3.27-1.125-5.472-4.26-7.856-6.703' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2118.713 1598.594c11.441 8.92-2.684 12.385 7.046 26.99.54-.495 1.56-.435 2.204-.945 3.63 4.063 4.86 7.316 9.808 10.6.224-.6.06-1.588.374-2.173 2.325 2.413 5.4 4.663 8.247 5.547.164-.54-.255-1.38-.059-1.98 2.893 3.3 7.211 4.29 10.961 5.699-1.83-2.533-2.85-5.548-3.344-8.231.764.359 1.425 1.094 2.114 1.349-1.44-3.03-3.434-6.148-4.843-9.162.825-.015 1.184.674 2.024.736-1.11-3.451-3.883-6.538-6.912-8.967.793-.015 1.783.268 2.58.33-2.357-3.375-5.67-5.968-9.329-8.142 1.081.015 2.1.029 3.21.208-6.373-6.957-16.33-5.591-23.51-12.19' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2143.557 1634.236c1.261-3.675-.148-7.738-2.458-11.173 2.804 1.275 5.158 1.186 7.946 1.591m-11.335 4.243c1.005-4.453-.313-9.46-3.072-13.389 2.653 1.784 5.173 2.413 8.02 3.39m-12.806-.752c1.186-3.943.075-8.426-3.207-11.516 3.282 2.926 7.436 4.934 11.5 5.654m8.411 16.852c2.01 2.19 3.42 4.65 4.185 7.362m-16.793-22.175c-.721-1.274-1.815-2.43-3.136-3.313m10.662 12.444c-1.755-1.124-3.015-2.7-3.42-4.393' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2123.405 1601.458c7.182 1.544 15.625 8.322 22.867 3.583.03-.374-.69-1.11-.703-1.604 3.881.57 8.065.06 10.87-3.223-.18-.675-.992-.645-1.2-1.336 3.374-1.603 6.208-4.468 8.756-7.526-2.937-1.62-6.401-2.49-9.626-2.16.54-.66 1.2-1.23 1.814-1.83-2.503.06-4.827-.734-7.271-.63.45-.644 1.2-1.047 1.664-1.677-2.893-.556-6.193-.27-9.072.869.15-.541.824-.87 1.17-1.41-9.282-1.29-14.53 8.607-20.647 14.86' fill='%2300702d' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2157.489 1593.226c-4.845-.36-9.703 3.06-14.29 2.174m7.167-6.462c-3.284 1.799-6.403 4.213-8.728 7.498 3.42.884 7.454 1.108 10.408 3.268m-9.552 3.643c-3.614-.226-5.773-3.269-9.103-3.869 2.7-2.788 4.094-6.507 7.109-9.07m1.528 5.936c-2.518.69-4.843 2.114-7.467 2.564m-1.409.615c-2.715.824-5.562-.315-8.247-.885' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2117.184 1595.985c8.726 3.358 17.454-2.234 25.58 1.874-1.066.39-1.995.885-2.985 1.409 4.049.436 7.932 1.485 11.2 3.869-.733.344-1.723.539-2.443.96 3.569 1.019 7.122 2.864 9.297 5.968-.78.359-1.35-.195-2.084.239 2.294 2.474 5.158 4.768 7.482 7.228-.69.075-1.545-.361-2.37-.346 1.365 2.565 3.315 5.248 5.834 6.988-3.87.419-8.113 1.574-11.861-.45.045.736.72 1.41.735 2.07-2.88.509-6.402-.301-9.327-1.664-.09.779.39 1.739.39 2.488-5.578-.959-8.427-5.967-13.074-8.426-.406.869.013 1.724-.301 2.533-6.853-6.387-5.953-15.324-14.544-20.646-4.38-2.699-9.747-5.55-11.816-9.672-2.068-4.109-6.552-8.202-8.442-9.957v-8.456c2.759 4.303 10.166 17.228 13.27 19.807 3.104 2.595 1.095 2.504 5.459 4.184' fill='%2300702d'/%3e%3cpath d='M2117.184 1595.985c8.726 3.358 17.454-2.234 25.58 1.874-1.066.39-1.995.885-2.985 1.409 4.049.436 7.932 1.485 11.2 3.869-.733.344-1.723.539-2.443.96 3.569 1.019 7.122 2.864 9.297 5.968-.78.359-1.35-.195-2.084.239 2.294 2.474 5.158 4.768 7.482 7.228-.69.075-1.545-.361-2.37-.346 1.365 2.565 3.315 5.248 5.834 6.988-3.87.419-8.113 1.574-11.861-.45.045.736.72 1.41.735 2.07-2.88.509-6.402-.301-9.327-1.664-.09.779.39 1.739.39 2.488-5.578-.959-8.427-5.967-13.074-8.426-.406.869.013 1.724-.301 2.533-6.853-6.387-5.953-15.324-14.544-20.646-4.38-2.699-9.747-5.55-11.816-9.672-2.068-4.109-6.552-8.202-8.442-9.957v-8.456c2.759 4.303 10.166 17.228 13.27 19.807 3.104 2.595 1.095 2.504 5.459 4.184z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2151.415 1622.255c-.104-4.514-2.758-8.084-6.013-10.542 2.969-.074 5.069-1.363 7.723-2.368m-8.802 10.241c-.6-5.219-3.494-9.822-7.332-12.566 3.014.525 5.503-.089 8.411-.51m-11.831 5.714c-.269-4.77-2.788-8.936-6.821-10.527 3.973 1.425 8.412 1.425 12.31.135m13.33 13.51c2.563 1.29 4.662 3.178 6.298 5.667m-22.717-14.904c-1.079-.974-2.46-1.634-3.958-1.904m13.854 7.723c-1.964-.3-3.628-1.32-4.572-2.895' fill='none' stroke='%231b402f' stroke-width='.689' stroke-linecap='round'/%3e%3cpath d='M2105.892 1623.724c2.895-8.937 4.962-16.299 10.707-22.956 5.757-6.658 13.448-16.779 13.913-22.522.421-5.398.33-7.692.33-9.986-2.294 1.604-7.226 6.088-5.968 11.365.751 3.134-.809 5.053-2.128 7.123-1.32 2.07-9.596 14.155-19.238 19.432z' fill='%2300702d'/%3e%3cpath d='M2105.892 1623.724c2.895-8.937 4.962-16.299 10.707-22.956 5.757-6.658 13.448-16.779 13.913-22.522.421-5.398.33-7.692.33-9.986-2.294 1.604-7.226 6.088-5.968 11.365.751 3.134-.809 5.053-2.128 7.123-1.32 2.07-9.596 14.155-19.238 19.432z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2130.154 1569.864c-.227 2.76-.106 6.897-.689 8.728-.572 1.844-4.125 3.328-3.675-.69.465-4.019 1.62-4.934 4.364-8.038' fill='%23f0e53c'/%3e%3cpath d='M2111.096 1600.843c-4.034 1.77-10.376-1.186-14.02-2.145-3.66-.944-2.76-4.349-8.277.705-1.38 1.26-5.743 1.71-5.218 1.83 3.494.87 9.116 1.738 2.458 6.627-1.604 1.185-5.846 3.48-5.846 3.48s3.328-2.295 7.692 1.153c4.362 3.434 8.187-1.739 9.64 2.684 1.47 4.424 7.483-1.694 8.802-5.068 1.32-3.373 4.769-9.266 4.769-9.266' fill='%2300702d'/%3e%3cpath d='M2111.096 1600.843c-4.034 1.77-10.376-1.186-14.02-2.145-3.66-.944-2.76-4.349-8.277.705-1.38 1.26-5.743 1.71-5.218 1.83 3.494.87 9.116 1.738 2.458 6.627-1.604 1.185-5.846 3.48-5.846 3.48s3.328-2.295 7.692 1.153c4.362 3.434 8.187-1.739 9.64 2.684 1.47 4.424 7.483-1.694 8.802-5.068 1.32-3.373 4.769-9.266 4.769-9.266z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='M2095.636 1613.139c-3.613.974 10.857-8.922 12.011-.135.495 3.883-3 17.633-7.588 24.756-4.603 7.12-8.276 14.02-9.656 19.072.24-5.967 5.518-19.522 6.673-23.662 1.139-4.138 1.919-13.284 1.995-14.574.073-1.29-2.356-5.758-3.435-5.457' fill='%2300702d'/%3e%3cpath d='M2095.636 1613.139c-3.613.974 10.857-8.922 12.011-.135.495 3.883-3 17.633-7.588 24.756-4.603 7.12-8.276 14.02-9.656 19.072.24-5.967 5.518-19.522 6.673-23.662 1.139-4.138 1.919-13.284 1.995-14.574.073-1.29-2.356-5.758-3.435-5.457z' fill='none' stroke='%231b402f' stroke-width='.689'/%3e%3cpath d='m2218.68 1490.545-195.197-18.233c-9.28-19.252-16.569-41.025-21.336-64.475l248.125-2.146c-6.268 32.074-17.274 61.087-31.593 84.854' fill='%23f0e53c'/%3e%3cpath d='M2125.985 1555.02c-26.66 0-51.76-13.81-72.678-37.14l134.26 11.155c-18.458 16.508-39.48 25.985-61.582 25.985' fill='%2300a0e1'/%3e%3cpath d='m2187.566 1529.035-134.259-11.155c-11.32-12.61-21.382-28.04-29.824-45.568l195.196 18.233c-9.146 15.159-19.627 28.204-31.113 38.49m68.614-184.858c0 21.292-2.085 41.954-5.908 61.514l-248.125 2.145c-4.094-20.176-6.343-41.587-6.343-63.659z' fill='%23fff'/%3e%3cpath d='M2038.208 1433.476c0 12.236 9.927 22.176 22.162 22.176 12.25 0 22.176-9.94 22.176-22.176 0-12.25-9.926-22.178-22.176-22.178-12.235 0-22.162 9.927-22.162 22.178' fill='%23f0e53c'/%3e%3cpath d='M2038.208 1433.476c0 12.236 9.927 22.176 22.162 22.176 12.25 0 22.176-9.94 22.176-22.176 0-12.25-9.926-22.178-22.176-22.178-12.235 0-22.162 9.927-22.162 22.178z' fill='none' stroke='%23fff' stroke-width='5.761'/%3e%3cpath d='M1974.976 1371.239c12.505 5.607 28.338 19.222 38.34 20.332 10.002 1.109 14.995 9.506 20.002 12.288 4.993 2.804 24.157 18.638 32.492 19.583 8.339.928 6.674 2.788 15.836 7.45 9.175 4.664 14.168 4.664 24.994 10.242 10.843 5.609 17.514 13.06 20.843 12.116 3.328-.93 10.841-5.578 17.5-8.382 6.672-2.79 20.841-8.381 30.841-13.975 10.002-5.592 12.506-2.804 24.997-8.396 12.505-5.593 32.507-19.808 43.335-24.36 10.839-4.527 35.4-13.853 47.696-16.643v-95.065h-316.876z' fill='%23d9c753'/%3e%3cpath d='M1958.587 1342.13c8.382 2.938-1.365 4.23 12.054 9.865 13.406 5.67 21.802 5.67 21.802 5.67s6.704 7.137 13.406 7.737c6.702.629 15.924 3.989 19.28 6.507 0 0 2.52-3.987 11.743 4.709h10.06l8.383 4.739h22.625l20.348 1.438s3.328 5.878 9.102 5.878c5.757 0 30.917-11.217 30.917-11.217h9.22s14.247-6.387 19.284-6.387c5.023 0 14.245-1.678 14.245-1.678l21.8-9.208 10.887-.838s8.382-8.668 19.284-11.036c10.9-2.4 20.96-7.678 25.16-10.497v-37.995h-300.576z' fill='%23b2aa00'/%3e%3cpath d='M1996.606 1319.125c8.112-102.711 63.966-185.74 129.177-185.74 65.36 0 121.32 82.799 129.236 185.81z' fill='%2300702d'/%3e%3cpath d='m1987.932 1319.136 169.315.06c-11.093-15.057-98.376-59.527-163.241-42.253-64.867 17.302-6.074 42.193-6.074 42.193' fill='%23c8d700'/%3e%3cg clip-path='url(%23ad)' opacity='.28'%3e%3cpath d='M2029.961 1183.799s128.636 31.097 202.588 13.165l-36.196-44.564s-85.918 8.786-132.58-3.149c-46.662-11.965-33.812 34.548-33.812 34.548' fill='%23292723'/%3e%3c/g%3e%3cpath d='M2125.985 1133.326c-71.898 0-130.18 94.405-130.18 210.852 0 116.439 58.282 210.842 130.18 210.842 71.897 0 130.181-94.403 130.181-210.842 0-116.447-58.284-210.852-130.18-210.852m129.714 390.596c-33.856 51.536-79.918 79.92-129.715 79.92-49.782 0-95.859-28.384-129.716-79.92-31.789-48.357-49.286-112.202-49.286-179.744 0-67.565 17.497-131.411 49.286-179.783 33.857-51.52 79.934-79.89 129.716-79.89 49.797 0 95.86 28.37 129.715 79.89 31.79 48.372 49.287 112.218 49.287 179.783 0 67.542-17.497 131.387-49.287 179.744' fill='%230079c7'/%3e%3cpath d='m1982.909 1281.56 4.049-12.475h13.104l-10.6-7.707 4.049-12.475-10.602 7.707-10.601-7.707 4.049 12.475-10.602 7.707h13.107zm15.369-51.01 5.383-11.937 13.03 1.441-9.686-8.816 5.383-11.966-11.38 6.507-9.703-8.816 2.67 12.834-11.382 6.508 13.016 1.41zm22.522-43.843 7.573-10.707 12.504 3.898-7.841-10.494 7.57-10.706-12.413 4.197-7.843-10.496.166 13.105-12.402 4.228 12.52 3.87zm28.773-41.145 10.317-8.067 10.87 7.318-4.483-12.296 10.317-8.097-13.09.48-4.499-12.325-3.599 12.595-13.104.48 10.87 7.316zm39.392-27.559 12.819-2.76 6.569 11.337 1.348-13.045 12.82-2.73-11.994-5.337 1.349-13.016-8.758 9.747-11.98-5.308 6.583 11.336zm185.374 163.557-4.05-12.475h-13.103l10.6-7.707-4.048-12.475 10.6 7.707 10.617-7.707-4.062 12.475 10.6 7.707h-13.105zm-15.369-51.01-5.384-11.937-13.03 1.441 9.702-8.816-5.397-11.966 11.38 6.507 9.7-8.816-2.653 12.834 11.38 6.508-13.028 1.41zm-22.522-43.843L2228.89 1176l-12.519 3.898 7.843-10.494-7.558-10.706 12.4 4.197 7.857-10.496-.18 13.105 12.415 4.228-12.519 3.87zm-28.758-41.145-10.333-8.067-10.855 7.318 4.468-12.296-10.317-8.097 13.106.48 4.484-12.325 3.613 12.595 13.09.48-10.87 7.316zm-39.406-27.559-12.805-2.76-6.583 11.337-1.35-13.045-12.804-2.73 11.98-5.337-1.35-13.016 8.758 9.747 11.98-5.308-6.568 11.336z'/%3e%3cpath d='m1981.47 1283 4.049-12.475h13.105l-10.602-7.708 4.049-12.474-10.601 7.707-10.601-7.707 4.048 12.474-10.601 7.708h13.105zm15.37-51.011 5.381-11.935 13.031 1.439-9.687-8.816 5.383-11.965-11.38 6.506-9.7-8.816 2.667 12.836-11.38 6.507 13.03 1.41zm22.52-43.842 7.572-10.707 12.506 3.898-7.843-10.496 7.558-10.706-12.4 4.2-7.842-10.497.164 13.105-12.4 4.228 12.52 3.87zm28.775-41.144 10.315-8.067 10.872 7.316-4.484-12.294 10.315-8.1-13.09.483-4.498-12.327-3.598 12.595-13.105.48 10.871 7.318zm39.389-27.562 12.821-2.757 6.567 11.334 1.35-13.045 12.82-2.728-11.996-5.308 1.35-13.045-8.757 9.745-11.98-5.307 6.581 11.336zM2272.9 1283l-4.049-12.475h-13.105l10.6-7.708-4.049-12.474 10.603 7.707 10.616-7.707-4.064 12.474 10.6 7.708h-13.105zm-15.37-51.011-5.383-11.935-13.029 1.439 9.7-8.816-5.398-11.965 11.381 6.506 9.702-8.816-2.668 12.836 11.393 6.507-13.029 1.41zm-22.522-43.842-7.556-10.707-12.52 3.898 7.842-10.496-7.558-10.706 12.4 4.2 7.843-10.497-.166 13.105 12.402 4.228-12.507 3.87zm-28.759-41.144-10.33-8.067-10.871 7.316 4.483-12.294-10.316-8.1 13.105.483 4.484-12.327 3.598 12.595 13.105.48-10.87 7.318zm-39.406-27.562-12.804-2.757-6.584 11.334-1.348-13.045-12.805-2.728 11.98-5.308-1.35-13.045 8.758 9.745 11.98-5.307-6.567 11.336z' fill='%23f0e53c'/%3e%3cpath d='M2255.221 1319.136c.63 8.247.96 16.584.96 25.041' fill='%231b402f'/%3e%3cpath d='M2125.985 1553.22c-69.588 0-128.38-95.737-128.38-209.042 0-113.328 58.792-209.052 128.38-209.052s128.396 95.724 128.396 209.052c0 113.305-58.808 209.043-128.396 209.043m0-421.693c-71.539 0-131.98 97.373-131.98 212.65 0 115.253 60.441 212.642 131.98 212.642 71.554 0 131.995-97.39 131.995-212.642 0-115.277-60.44-212.65-131.995-212.65' fill='%23f0e53c'/%3e%3cpath d='M2125.985 1553.22c-69.588 0-128.38-95.737-128.38-209.042 0-113.328 58.792-209.052 128.38-209.052s128.396 95.724 128.396 209.052c0 113.305-58.808 209.043-128.396 209.043zm0-421.692c-71.539 0-131.98 97.373-131.98 212.65 0 115.253 60.441 212.642 131.98 212.642 71.554 0 131.995-97.39 131.995-212.642 0-115.277-60.44-212.65-131.995-212.65z' fill='none' stroke='%23473125' stroke-width='1.44'/%3e%3cpath d='M1992.58 1408.835c.028 1.572-.696 2.822-2.173 3.75a12.868 12.868 0 0 1-4.808 1.83c-1.566.26-3.173-.016-4.835-.808-1.65-.79-2.662-1.927-3.024-3.391a60.763 60.763 0 0 1-.765-3.422c-.151-.805-.265-1.411-.327-1.823l-.38-2.294 15.313-2.525.139.824c.276 1.656.485 3.06.627 4.18.14 1.12.216 2.338.232 3.679m-16.353.056c.09 1.984-.407 3.409-1.48 4.238-1.074.848-2.527 1.44-4.35 1.733-1.486.247-2.967.05-4.498-.577-1.505-.642-2.479-1.567-2.884-2.802a29.87 29.87 0 0 1-.946-3.507 275.384 275.384 0 0 0-.559-2.868l14.015-2.328c.143.886.286 1.796.428 2.682.128.906.23 2.065.274 3.429m17.605-.333-5.7-34.022-.688.129.358 2.165.232 2.87c.09.946-.006 1.698-.288 2.302-.268.604-.857 1.043-1.756 1.319l-1.977.488-20.539 3.38-2.019.184c-.938.015-1.645-.195-2.122-.72-.46-.477-.825-1.201-1.082-2.207a51.104 51.104 0 0 1-.602-2.66 46.845 46.845 0 0 0-.429-2.217l-.688.132 5.29 32.15c.72 4.35 1.385 7.739 2.003 10.168.617 2.428 1.402 4.409 2.367 5.947.965 1.514 2.047 2.66 3.217 3.437 1.183.755 2.491 1.016 3.91.78 2.104-.365 3.457-1.585 4.053-3.72.612-2.113.897-4.202.874-6.22-.025-2.018-.275-4.467-.752-7.346l.337-.044c.572 3.377 1.072 5.898 1.513 7.562a33.558 33.558 0 0 0 1.73 4.938 10.538 10.538 0 0 0 3.183 4.09c1.42 1.103 3.06 1.489 4.937 1.179 1.823-.292 3.217-1.23 4.213-2.768.981-1.538 1.606-3.417 1.846-5.594.254-2.178.158-4.8-.246-7.817a321.177 321.177 0 0 0-1.175-7.885m1.675 92.026c-2.815-.067-5.02-1.634-6.606-4.662-.815-1.559-1.194-3.04-1.162-4.512.02-1.457.467-2.8 1.323-4.055.86-1.237 2.142-2.48 3.84-3.765 1.7-1.267 3.525-2.412 5.449-3.478 2.67-1.423 4.924-2.437 6.769-3.02a18.262 18.262 0 0 1 5.887-.77c2.08.043 3.916 1.59 5.506 4.638.81 1.537 1.194 3.04 1.174 4.495-.034 1.451-.478 2.815-1.338 4.052-.86 1.237-2.138 2.497-3.84 3.764-1.701 1.267-3.526 2.411-5.45 3.476-2.305 1.233-4.35 2.196-6.181 2.86-1.816.665-3.601.991-5.371.977m20.499 13.271c4.126-2.224 6.268-6.622 6.414-13.177.15-6.533-1.571-13.259-5.174-20.137-3.737-7.159-8.247-12.389-13.521-15.729-5.255-3.317-9.986-3.833-14.192-1.569-4.34 2.352-6.56 6.714-6.664 13.086-.105 6.371 1.65 13.025 5.295 19.991 3.643 6.946 8.127 12.188 13.46 15.715 5.336 3.526 10.14 4.134 14.382 1.82m48.032 27.925c2.137 1.84 3.747 4.292 4.83 7.338 1.061 3.039 1.713 6.069 1.967 9.06.237 3 .252 5.945.053 8.865l.844.736 10.251-11.906-38.87-33.101-.445.543c.275.233.668.583 1.181 1.05.511.454 1.264 1.175 2.24 2.159.996.975 1.581 1.813 1.794 2.497.213.684.094 1.429-.399 2.209l-1.207 1.627-13.62 15.847-1.426 1.429c-.723.625-1.39.905-2.002.86-.613-.031-1.343-.367-2.193-.98a41.28 41.28 0 0 1-2.132-1.618 37.73 37.73 0 0 0-1.579-1.277l-.467.519 25.883 22.259.463-.538-3.45-3.14c-1.014-.981-1.594-1.771-1.765-2.377-.15-.6.027-1.311.55-2.144l1.208-1.626 16.75-19.476zm78.853 23.455-33.227-.261v.706c.348.005.786.005 1.348.029.56.026 1.486.084 2.792.204 1.287.106 2.214.356 2.743.744.548.39.89 1.033 1.042 1.945l.132 2.023.054 20.892-.153 2.025c-.137.938-.452 1.589-.943 1.951-.495.362-1.462.598-2.924.694l-3.807.15v.707l33.01.255-.002-.693-3.806-.162c-1.46-.107-2.442-.32-2.935-.665-.493-.345-.807-1.013-.942-2.003l-.153-2.026-.035-21.081.128-2.013c.144-.965.478-1.613 1.011-1.959.552-.329 1.538-.551 3-.647l3.67-.108zm85.187-17.369c-.365.251-.762.537-1.211.878-.445.325-1.194.83-2.203 1.474-1.013.662-1.983 1.11-2.874 1.337-.91.23-1.916.16-3.054-.17l-3.788-1.325-26.874-10.757-5.712 4.518 4.528 28.551.437 4.028c.038 1.181-.078 2.12-.353 2.831-.262.727-.848 1.49-1.75 2.317l-2.164 1.942.445.535 25.595-20.259-.444-.535-2.538 1.786a27 27 0 0 1-2.205 1.246c-.6.276-1.128.123-1.62-.472-.311-.422-.62-1.329-.895-2.76-.273-1.432-.61-3.457-.978-6.095-.371-2.639-.9-6.558-1.571-11.745a622.156 622.156 0 0 1 9.275 3.568c3.18 1.244 5.427 2.168 6.728 2.804 1.296.655 2.143 1.213 2.544 1.721.467.566.57 1.14.309 1.72-.263.58-.654 1.142-1.18 1.687a19.64 19.64 0 0 1-1.634 1.525c-.56.451-1.082.897-1.531 1.287l.436.554 14.719-11.639zm12.885-79.281-16.011 29.11.616.335c.16-.288.389-.68.668-1.153.287-.495.775-1.279 1.499-2.359.709-1.077 1.368-1.78 1.966-2.069.58-.287 1.324-.277 2.179.034l1.842.845 18.345 10.012 1.708 1.091c.76.572 1.182 1.156 1.275 1.772.082.597-.18 1.575-.775 2.896l-1.68 3.425.616.335 15.902-28.906-.627-.352-1.948 3.276c-.778 1.241-1.431 1.981-1.97 2.266-.533.262-1.27.232-2.212-.129l-1.844-.845-18.503-10.076-1.71-1.09c-.783-.59-1.18-1.217-1.23-1.835-.026-.642.25-1.62.85-2.962l1.655-3.268zm29.043-56.371 9.46 8.069-11.783 3.9zm-3.32 12.295-4.91 1.298c-1.141.274-2.007.354-2.613.24-.658-.13-1.067-.47-1.224-1.05-.16-.575-.21-1.29-.141-2.142.056-.852.15-1.683.269-2.456.118-.793.25-1.567.365-2.318l-.7-.126-3.788 19.59.699.127.958-4.064c.41-1.517.87-2.64 1.392-3.363.508-.703 1.082-1.221 1.707-1.51a67.6 67.6 0 0 1 2.194-.965 27.262 27.262 0 0 1 2.279-.845l27.293-8.63 1.465-7.62-21.907-19.174-2.952-2.815c-.784-.772-1.293-1.572-1.547-2.308-.267-.737-.334-1.747-.225-2.941l.384-2.868-.7-.147-6.357 32.905.699.126c.1-.558.209-1.056.313-1.488.09-.441.304-1.223.655-2.355.324-1.127.647-1.92.933-2.412.282-.448.722-.658 1.327-.545.647.11 1.478.624 2.54 1.5l4.11 3.33z'/%3e%3cpath d='M1991.996 1409.852c.027 1.574-.697 2.825-2.174 3.754a12.801 12.801 0 0 1-4.807 1.826c-1.566.26-3.175-.016-4.837-.806-1.648-.79-2.661-1.927-3.024-3.393a63.938 63.938 0 0 1-.763-3.4c-.152-.825-.265-1.433-.328-1.842l-.378-2.294 15.311-2.535.138.822c.279 1.667.488 3.072.628 4.19.141 1.12.218 2.34.234 3.678m-16.354.056c.089 1.984-.408 3.411-1.48 4.26-1.072.848-2.527 1.418-4.35 1.711-1.486.25-2.981.051-4.497-.574-1.504-.624-2.479-1.567-2.884-2.804-.42-1.26-.727-2.42-.946-3.506a332.66 332.66 0 0 0-.559-2.868l14.015-2.328c.142.887.284 1.794.427 2.683.128.905.231 2.063.274 3.426m17.592-.333-5.674-34.02-.702.13.359 2.163c.078.986.155 1.928.232 2.871.076.944-.021 1.696-.288 2.3-.269.605-.859 1.044-1.757 1.32l-1.977.487-20.537 3.38-2.019.184c-.94.017-1.646-.195-2.122-.717-.461-.48-.825-1.2-1.083-2.21a49.75 49.75 0 0 1-.602-2.659c-.152-.824-.285-1.56-.428-2.215l-.688.132 5.29 32.148c.717 4.35 1.385 7.74 2.002 10.17.618 2.428 1.402 4.41 2.368 5.944.966 1.538 2.045 2.661 3.229 3.438 1.171.756 2.479 1.015 3.896.782 2.106-.344 3.458-1.585 4.055-3.722.61-2.114.898-4.179.873-6.22-.024-2.019-.274-4.468-.751-7.347l.337-.044c.572 3.38 1.072 5.9 1.513 7.565a32.794 32.794 0 0 0 1.728 4.935 10.385 10.385 0 0 0 3.183 4.091c1.42 1.102 3.061 1.488 4.937 1.181 1.825-.292 3.219-1.23 4.214-2.769.982-1.54 1.606-3.417 1.845-5.596.241-2.177.158-4.799-.244-7.817a264.935 264.935 0 0 0-1.189-7.885m1.448 90.991c-2.815-.067-5.018-1.635-6.605-4.664-.812-1.537-1.194-3.04-1.177-4.515.034-1.451.481-2.795 1.337-4.052.86-1.237 2.142-2.477 3.841-3.765 1.701-1.266 3.525-2.41 5.45-3.475 2.667-1.425 4.922-2.437 6.766-3.023a18.316 18.316 0 0 1 5.903-.767c2.067.04 3.903 1.586 5.493 4.635.81 1.537 1.193 3.041 1.173 4.495a7.286 7.286 0 0 1-1.339 4.052c-.86 1.237-2.137 2.497-3.838 3.765a45.553 45.553 0 0 1-5.45 3.477c-2.307 1.233-4.352 2.194-6.182 2.859-1.816.666-3.602.992-5.372.978m20.5 13.27c4.141-2.221 6.268-6.623 6.415-13.176.15-6.534-1.574-13.259-5.172-20.118-3.755-7.18-8.249-12.408-13.523-15.748-5.258-3.319-9.987-3.834-14.194-1.568-4.339 2.352-6.56 6.713-6.664 13.083-.104 6.371 1.651 13.028 5.297 19.991 3.643 6.946 8.126 12.191 13.46 15.717 5.336 3.526 10.139 4.134 14.382 1.819m47.983 28.049c2.138 1.84 3.749 4.293 4.81 7.333a36.197 36.197 0 0 1 1.987 9.065c.237 3.002.254 5.946.052 8.864l.863.742 10.235-11.91-38.852-33.096-.465.538c.274.232.669.582 1.18 1.05.512.454 1.265 1.175 2.243 2.159.993.973 1.58 1.814 1.794 2.496.213.684.092 1.43-.4 2.21l-1.21 1.625-13.617 15.849-1.426 1.428c-.723.624-1.391.906-2.001.876-.613-.046-1.345-.384-2.195-.995a41.012 41.012 0 0 1-2.132-1.62c-.568-.486-1.111-.901-1.58-1.277l-.464.522L2047.87 1570l.463-.538-3.451-3.141c-1.012-.98-1.595-1.77-1.763-2.375-.152-.601.026-1.311.549-2.144l1.209-1.626 16.749-19.477zm78.463 23.507-33.23-.263.003.707c.326.004.784.005 1.346.03.562.025 1.488.084 2.794.204 1.287.106 2.215.354 2.74.742.552.39.89 1.035 1.024 1.943l.153 2.027.055 20.89-.134 2.027c-.157.938-.471 1.588-.965 1.949-.492.363-1.461.598-2.924.708l-3.805.138v.707l33.01.255-.004-.693-3.804-.162c-1.461-.108-2.441-.322-2.934-.667-.494-.343-.807-1.011-.965-2.005l-.131-2.023-.058-21.082.149-2.011c.144-.966.48-1.614 1.013-1.96.53-.331 1.538-.55 2.998-.646l3.669-.108zm85.36-16.679c-.365.25-.761.537-1.212.879a61.69 61.69 0 0 1-2.208 1.49c-1.008.645-1.978 1.091-2.869 1.318-.907.23-1.915.161-3.052-.17l-3.789-1.324-26.875-10.758-5.711 4.52 4.527 28.551.438 4.027c.019 1.183-.097 2.12-.353 2.83-.263.727-.847 1.49-1.768 2.321l-2.145 1.938.437.552 25.595-20.258-.436-.554-2.539 1.788a27.27 27.27 0 0 1-2.205 1.246c-.601.277-1.13.124-1.619-.473-.314-.42-.621-1.327-.895-2.759-.275-1.43-.609-3.458-.98-6.096s-.898-6.559-1.588-11.743a528.606 528.606 0 0 1 9.292 3.565c3.182 1.245 5.423 2.186 6.724 2.824 1.3.636 2.149 1.194 2.55 1.702.467.566.568 1.14.307 1.72-.261.581-.654 1.142-1.177 1.686a19.814 19.814 0 0 1-1.636 1.527c-.558.45-1.082.898-1.533 1.287l.437.553 14.72-11.637zm13.138-79.343-16.013 29.112.617.333c.16-.288.388-.678.669-1.153.285-.493.775-1.277 1.498-2.357.709-1.079 1.363-1.76 1.965-2.069.583-.289 1.325-.277 2.179.034l1.843.845 18.346 10.01 1.708 1.09c.758.573 1.18 1.16 1.273 1.773.083.597-.178 1.576-.772 2.896l-1.697 3.43.632.33 15.9-28.904-.625-.354-1.948 3.276c-.78 1.241-1.437 2.003-1.971 2.266-.533.264-1.268.233-2.213-.129l-1.843-.845-18.504-10.074-1.71-1.09c-.783-.59-1.193-1.215-1.226-1.837-.03-.64.247-1.62.847-2.96l1.656-3.27zm29.329-56.196 9.46 8.071-11.771 3.9zm-3.305 12.293-4.911 1.3c-1.14.274-2.01.354-2.613.241-.658-.13-1.067-.473-1.226-1.049-.157-.579-.208-1.293-.138-2.144.054-.852.15-1.685.267-2.456.119-.795.249-1.567.353-2.317l-.687-.127-3.79 19.591.7.126.957-4.063c.413-1.52.87-2.64 1.392-3.344.51-.723 1.084-1.24 1.708-1.533.625-.289 1.36-.61 2.194-.962a27.899 27.899 0 0 1 2.267-.844l27.305-8.63 1.464-7.6-21.905-19.195-2.967-2.813c-.768-.776-1.277-1.574-1.532-2.312-.266-.738-.34-1.703-.224-2.939l.382-2.869-.697-.146-6.36 32.903.7.126c.1-.559.21-1.054.299-1.487a50.09 50.09 0 0 1 .656-2.353c.336-1.13.66-1.923.946-2.413.283-.45.722-.66 1.328-.546.645.11 1.477.625 2.54 1.5l4.11 3.331z' fill='%23f0e53c'/%3e%3cpath d='M2196.904 1317.706c7.107 31.757 29.836 42.062 34.886 41.623-1.215.746-1.848 1.053-3.265 1.206 0 0 2.213 1.08 4.425 2.375l-5.574-1.073 2.524 3.216c-2.754-1.09-4.915-2.806-4.915-2.806l.912 3.085-4.709-3.916.996 3.198c-5.305-3.85-8.193-8.231-8.193-8.231l.217 3.287c-3.908-4.992-16.56-30.9-17.99-40.465' fill='%2374b500' stroke='%231b402f' stroke-width='.666' stroke-linecap='round' stroke-miterlimit='8'/%3e%3cpath d='M2136.746 1304.693c5.436 8.296 15.252 16.386 24.27 19.873-1.017.703-2.256 1.228-4.355 1.849 8.235.726 36.584 8.02 40.862-5.299.135-.42.15-.869.196-1.259-6.404 11.575-22.613 10.465-34.113-8.277-.286.449.044 1.439-.12 1.919-2.67-2.369-5.398-5.098-7.752-7.677.27 1.233.51 3.148.51 5.383-.911-2.06-3.001-5.466-4.55-7.221.487 1.829.514 2.794.528 4.443-.93-2.838-2.87-5.549-4.038-7.282.196 1.98.349 3.306.262 5.207-1.05-2.488-2.655-4.342-4.38-6.078.48 1.515.999 3.389 1.075 4.438-1.121-1.831-2.886-3.359-4.012-4.618.225 1.079 1.163 3.255 1.343 4.184-1.71-1.482-3.527-3.194-5.301-4.184.363 1.363 1.857 4.019 3.958 5.878-1.79-.24-2.796-.482-4.383-1.279' fill='%2374b500'/%3e%3cpath d='M2136.746 1304.693c5.436 8.296 15.252 16.386 24.27 19.873-1.017.703-2.256 1.228-4.355 1.849 8.235.726 36.584 8.02 40.862-5.299.135-.42.15-.869.196-1.259-6.404 11.575-22.613 10.465-34.113-8.277-.286.449.044 1.439-.12 1.919-2.67-2.369-5.398-5.098-7.752-7.677.27 1.233.51 3.148.51 5.383-.911-2.06-3.001-5.466-4.55-7.221.487 1.829.514 2.794.528 4.443-.93-2.838-2.87-5.549-4.038-7.282.196 1.98.349 3.306.262 5.207-1.05-2.488-2.655-4.342-4.38-6.078.48 1.515.999 3.389 1.075 4.438-1.121-1.831-2.886-3.359-4.012-4.618.225 1.079 1.163 3.255 1.343 4.184-1.71-1.482-3.527-3.194-5.301-4.184.363 1.363 1.857 4.019 3.958 5.878-1.79-.24-2.796-.482-4.383-1.279z' fill='none' stroke='%231b402f' stroke-width='.666' stroke-miterlimit='8'/%3e%3cpath d='M2196.191 1320.267c8.548 34.638 9.97 47.651 17.521 54.69l-2.203-5.426 5.52 4.557-3.628-5.479 5.365 2.716c-2.516-2.804-5.86-5.298-7.914-8.464l4.873 2.968c-6.448-7.12-16.587-37.925-18.82-45.483' fill='%2374b500' stroke='%231b402f' stroke-width='.666' stroke-linecap='round' stroke-miterlimit='8'/%3e%3cpath d='M2196.13 1312.978c-.12.21-1.9 11.396-3.564 16.08-2.072 5.824-6.437 10.56-6.81 15.186 0 0 2.395-3.264 4.885-4.72 0 0-3.237 4.233-4.076 9.241 0 0 3.31-4.673 5.238-5.86 0 0-3.901 6.015-4.71 10.403l5.29-5.787c-1.587 3.255-4.17 8.712-4.17 8.712 1.45-1.676 5.125-5.072 5.125-5.072-2.105 3.64-3.724 8.214-3.724 8.214 1.229-1.64 3.547-3.827 3.547-3.827-1.69 3.33-2.395 7.147-2.395 7.147 1.078-1.95 3.443-3.735 3.443-3.735-1.211 2.015-1.95 6.307-1.95 6.307 1.328-2.863 3.303-4.729 3.303-4.729-1.631 3.415-1.394 8.41-1.394 8.41.887-2.403 1.165-3 2.808-4.872-.691 4.164 1.656 9.447 1.656 9.447-.064-2.463.615-5.105.615-5.105.194 3.224 2.762 6.851 2.762 6.851-.273-2.299-.181-4.033-.181-4.033.855 2.64 3.033 5.295 3.033 5.295.045-2.328-.933-6.607-.933-6.607 1.029.627 1.81 3.33 1.81 3.33.06-4.746-2.997-9-2.997-9 .687-.045 1.964.661 1.964.661-.44-4.836-3.61-8.62-3.61-8.62 1.12 0 2.708.964 2.708.964-.671-1.79-3.392-5.445-3.392-5.445.807.08 2.128.62 2.128.62-.36-3.74-1.604-7.523-1.604-7.523 1.074.18 1.582.736 1.582.736-.33-4.108-5.217-21.185-5.778-32.88' fill='%2374b500' stroke='%231b402f' stroke-width='.666' stroke-linecap='round' stroke-miterlimit='8'/%3e%3cpath d='M2203.146 1371.325c-2.518-7.281-5.545-15.547-6.524-24.936-.586-5.61.26-15.106.13-20.993' fill='none' stroke='%231b402f' stroke-width='.553' stroke-linecap='round'/%3e%3cpath d='M2196.333 1319.886s2.7 14.281 17.784 17.614c0 0-1.514-1.055-2.945-2.536 0 0 4.728 2.127 9.083 2.316 0 0-1.95-1.088-3.165-2.612 0 0 5.476 2.18 9.148 1.775 0 0-2.07-1.059-3.236-2.428 0 0 5.104 1.382 9.21.653 0 0-2.426-.467-3.858-2.053 0 0 5.073.83 9.242-.25 0 0-2.178-.186-3.578-1.586 0 0 7.685.236 11.637-4.667 0 0-1.96.653-4.294-.187 0 0 4.232-1.059 6.69-4.076 0 0-1.617.346-3.33-.125 0 0 3.258-1.224 5.249-3.216 0 0-1.327.384-3.257-.052 0 0 2.365-.75 3.61-2.738 0 0-1.494.63-3.112.094 0 0 3.382-1.908 3.589-5.643 0 0-1.401 2.2-3.06 2.905 0 0 2.272-2.849 2.479-5.843 0 0-2.681 2.41-4.175 4.567 0 0 .493-2.603 1.323-4.139 0 0-2.82 1.597-4.216 5.664 0 0-.67-2.458-.358-3.61 0 0-2.116 2.24-2.832 5.29 0 0-.6-1.76-.622-3.018 0 0-2.315 1.836-2.956 5.57 0 0-.654-2.863-.34-4.575 0 0-3.488 3.368-4.234 8.464 0 0-1.401-2.83-.997-6.535 0 0-3.142 4.488-4.201 9.325 0 0-1.43-3.444-1.168-6.237 0 0-2.662 3.737-4.148 8.081 0 0-.246-3.358.065-6.75 0 0-3.086 4.333-5.078 7.466 0 0 .196-2.734 1.483-5.799 0 0-5.654 3.654-8.392 6.403-.953.957-8.298 1.285-11.981-7.13' fill='%2374b500' stroke='%231b402f' stroke-width='.666' stroke-miterlimit='8'/%3e%3cpath d='M2200.657 1277.609c-.385 14.535-1.077 25.035-1.672 34.823-.321-1.556-.891-2.669-2.081-2.696-2.601-.061-2.58 3.019-2.581 3.031.08-12.231.561-31.263 1.077-51.275 0 .016.344 11.13 5.257 16.117' fill='%23473125'/%3e%3cpath d='M2196.988 1309.496c1.189.027 1.676.784 1.997 2.34-.178 2.929-.154 2.222-.353 4.239-.149 5.218-4.16 5.896-4.32-.591-.04-1.608-.011-.027.009-3.051.001-.014.065-2.998 2.667-2.937' fill='%23292723'/%3e%3cpath d='M2206.355 1211.836c-.677 1.174-1.647 1.976-3.05 3.345-1.366 1.332-1.174 3.91-1.346 5.415-.194 1.7-.583 29.968-1.303 57.23-5.284-4.235-5.257-16.098-5.257-16.116.55-21.248 1.1-39.928 1.134-41.266.06-2.34.218-3.823-.899-5.232-.674-.85-1.883-2.07-2.758-3.178-.767-.971-.163-1.85 2.322-2.566 2.154-.62 1.891-1.017 4.336-1.017 2.444 0 2.747.459 3.926.88.85.302 3.766.995 2.895 2.505' fill='%23cbcbc9'/%3e%3cpath d='M2199.742 1326.874c5.698 5.607 22.242 4.909 29.048 2.008 8.028-3.423 12.57-7.818 17.083-14.625' fill='none' stroke='%231b402f' stroke-width='.553' stroke-linecap='round'/%3e%3cpath d='M2196.533 1220.381c.06-2.34.219-3.823-.898-5.232-.674-.85-1.883-2.07-2.758-3.177-.768-.973-.164-1.852 2.322-2.568 2.154-.62 1.891-1.016 4.335-1.016s2.747.46 3.927.88c.848.301 3.764.995 2.894 2.505-.676 1.174-1.647 1.976-3.05 3.345-1.366 1.332-1.173 3.91-1.346 5.416-.328 2.878-1.213 74.067-3.327 95.478-.149 5.219-4.16 5.896-4.32-.59-.37-15.017 2.146-92.132 2.221-95.04z' fill='none' stroke='%23000' stroke-width='.888'/%3e%3cpath d='M2195.934 1313.237c-3.539 17.21-1.74-7.116-5.489-13.443.05 1.362-.32 3.659-1.404 6.407.31-5.07.128-10.005-1.326-12.615.091 1.26-.45 4.35-1.69 7.338.176-2.403.663-8.263-.498-10.545-.255 1.438-1.03 4.747-1.864 6.557.407-3.751.318-7.916-.79-10.637-.28 2.663-.929 5.899-1.552 7.58.214-3.911-.667-9.7-2.287-12.668.372 2.022.855 7.444.043 10.533-.31-4.288-2.424-8.3-3.55-10.304-.107-.24 1.422 7.176 1.11 10.226-1.244-1.867-2.67-5.757-3.315-7.495-.418 3.23-.294 5.596 1.324 9.415-1.307-1.23-2.508-2.788-3.498-4.198.49 2.319 2.982 6.882 3.958 8.472-1.353-.741-3.748-3.255-4.859-4.454 1.395 3.18 4.167 6.827 6.266 9.316-1.564-.74-3.537-2.298-4.932-3.108 2.25 2.79 5.344 6.193 8 8.742-1.813-.644-2.878-.96-4.4-1.905 5.177 6.178 10.086 10 17.214 14.348 0 0 4.23 2.485 4.057-7.821' fill='%2374b500' stroke='%231b402f' stroke-width='.666' stroke-miterlimit='8'/%3e%3cpath d='M2175.957 1295.755c4.64 9.596 8.985 15.736 17.247 24.131m-50.733-13.119c5.251 4.813 34.271 29.043 50.732 18.907' fill='none' stroke='%231b402f' stroke-width='.553' stroke-linecap='round'/%3e%3cpath d='M2196.904 1317.706c-1.156 6.528-16.34 16.369-40-3.068 0 0 2.06.552 4.145.459 0 0-2.687-5.3-6.96-9.823l3.754.768c-1.929-3.112-5.602-6.248-5.602-6.248l2.88.165c-1.058-2.335-4.216-4.933-4.216-4.933 2.961.857 5.927 3.112 5.927 3.112-.434-2.7-2.326-6.491-2.326-6.491 4.066 2.278 5.271 6.923 5.271 6.923.137-3.044-.43-9.301-.43-9.301s2.82 6.242 3.72 12.874c0 0 1.095-2.892 1.498-6.666 0 0 1.682 4.61 1.788 10.92 0 0 1.564-2.928 1.891-5.058 0 0 .931 4.34 1.012 8.546 0 0 1.251-2.423 1.652-4.447 0 0 1.084 4.425.633 7.7 0 0 1.263-2.235 1.921-4.451 0 0 .905 4.302.507 7.655l2.262-3.822c-.613 2.698.067 4.972 1.171 6.72.971 1.538 1.033 4.862 1.033 4.862 2.22 1.23 17.78.958 16.651-10.284' fill='%2374b500' stroke='%231b402f' stroke-width='.666' stroke-miterlimit='8'/%3e%3cpath d='M2156.244 1300.573c2.998 2.79 6.928 8.817 9.76 13.436 2.85 4.618 7.542 9.304 11.65 10.474' fill='none' stroke='%231b402f' stroke-width='.553' stroke-linecap='round'/%3e%3cpath d='M2197.718 1312.432c-.822 15.142-8.28 26.836-17.608 35.405l.393-3.232c-4.03 5.85-11.953 9.68-11.953 9.68 3.392-2.986 5.42-7.94 5.42-7.94-3.932 4.19-10.08 7.122-10.08 7.122 1.7-1.632 4.367-5.875 4.367-5.875-4.023 3.184-8.692 4.523-8.692 4.523 2.545-1.635 5.456-5.228 5.456-5.228-4.082 2.67-9.543 3.112-9.543 3.112 2.925-1.056 6.866-4.253 6.866-4.253-4.546 1.901-10.219 1.743-10.219 1.743 2.5-.793 7.073-3.316 7.073-3.316-5.185 1.262-9.75.287-9.75.287 4.655-.786 7.51-2.382 7.51-2.382-3.899.57-7.969-.337-7.969-.337 2.867-.205 5.708-1.534 5.708-1.534-2.572.021-5.954-1.182-5.954-1.182 2.532.125 4.565-.685 4.565-.685-3.112-.207-5.332-1.762-5.332-1.762 2.262.227 3.983-.624 3.983-.624-2.24-.269-4.25-1.99-4.25-1.99 1.935.323 4.706.518 4.706.518-1.195-.668-3.65-2.988-3.65-2.988 2.15.167 4.898 1.68 4.898 1.68-1.395-3.252-3.326-4.982-3.326-4.982 2.873 1.254 6.402 4.258 6.402 4.258-.332-2.365-2.83-5.436-2.83-5.436 4.721 1.54 6.993 5.357 6.993 5.357-.316-4.106-2.904-5.804-2.904-5.804 5.878 1.194 7.685 6.397 7.685 6.397.367-3.922-1.278-6.158-1.278-6.158 4.886 2.021 6.387 6.996 6.387 6.996.499-4.318-1.531-6.124-1.531-6.124 3.601 1.376 6.142 6.561 6.142 6.561.35-4.464-1.838-6.11-1.838-6.11 6.816 1.258 8.787 5.23 8.787 5.23.046-2.344-1.433-3.972-1.433-3.972 4.97 1.628 5.07 6.422 7.356 4.804 2.52-1.783 4.427-5.396 5.67-10.218.616-2.395 2.4-11.54 2.4-11.54' fill='%2374b500' stroke='%231b402f' stroke-width='.666' stroke-miterlimit='8'/%3e%3cpath d='M2154.275 1335.25c9.947 6.607 24.501 8.42 34.54.37' fill='none' stroke='%231b402f' stroke-width='.553' stroke-linecap='round'/%3e%3cpath d='M2199.598 1323.027s4.636 19.217 25.173 17.616c0 0-3.637 2.614-6.717 3.081 0 0 6.542 1.559 10.94-2.56 0 0-.117 2.324-2.188 4.096 0 0 5.063-.89 8.238-4.227 0 0-.156 2.286-1.245 4.184 0 0 5.01-2.146 7.52-5.465 0 0-.414 1.867-1.41 3.858 0 0 4.17-2.098 7.737-6.109 0 0-.634 2.933-2.646 4.634 0 0 1.922-.455 3.393-1.367 0 0-4.076 6.534-12.903 8.983 0 0 2.157 1.991 4.813 1.991 0 0-6.556 2.945-13.733.456 0 0 1.162 2.086 4.99 4.128 0 0-5.913.498-9.507-4.294 0 0 .14 1.681 1.446 3.983 0 0-3.485-2.396-5.227-5.239 0 0 .186 1.816 1.535 3.911 0 0-2.967-2.312-4.57-5.207 0 0 .141 2.272 1.494 4.004 0 0-14.615-7.44-18.424-31.289' fill='%2374b500' stroke='%231b402f' stroke-width='.666' stroke-miterlimit='8'/%3e%3cpath d='M2200.252 1326.627c2.427 12.49 20.597 30.889 42.899 16.444' fill='none' stroke='%231b402f' stroke-width='.553' stroke-linecap='round'/%3e%3cpath d='M2210.628 1314.637c4.109-3.417 14.568-14.762 17.79-24.329 0 0 .355 4.75-1.308 9.433 0 0 3.507-3.516 4.616-12.096 0 0 .922 3.024.573 5.715 0 0 1.137-2.264 4.3-5.202l-1.782 5.52c1.66-1.609 2.645-2.739 4.829-4.402 0 0-.164 2.917-4.617 7.917l4.617-2.074s-1.438 2.961-5.164 5.711c0 0 2.308.313 4.42-.743 0 0-1.408 2.23-5.515 4.49l5.136-.208c-3.223 3.988-17.58 14.198-25.795 16.626' fill='%2374b500' stroke='%231b402f' stroke-width='.666' stroke-linecap='round' stroke-miterlimit='8'/%3e%3cpath d='M2197.586 1313.711c3.35 8.894 5.886-14.219 7.27-26.123l1.86 2.764s-.415-6.8 2.128-12.49l.769 8.2s1.359-1.432 1.795-2.199c0 0 .008 4.513-2.186 9.157l2.186-1.238c-.45 3.33-3.224 8.312-3.224 8.312l2.998-1.614c-1.111 3.21-12.693 33.263-14.43 15.041' fill='%2374b500' stroke='%231b402f' stroke-width='.666' stroke-linecap='round'/%3e%3cpath d='M2214.566 1316.555c10.57-6.764 14.433-12.809 19.193-21.196m-35.452 21.245c4.033 4.892 9.001-19.623 10.676-28.833' fill='none' stroke='%231b402f' stroke-width='.553' stroke-linecap='round'/%3e%3cpath d='M2196.217 1312.767c-.056 3.354 2.107 18.163 10.407 16.896 10.212-1.56 13.329-20.26 13.54-22.432 0 0-1.236 2.042-2.834 3.452 0 0 1.76-5.688 1.3-9.294 0 0-1.183 5.421-2.691 8.044 0 0 .89-3.609.093-5.88 0 0-.673 4.72-2.468 6.886 0 0 .622-3.132-.041-4.689 0 0-.498 3.755-2.366 6.183 0 0 .477-2.345-.145-4.398 0 0-.384 2.91-2.212 6.297 0 0 .14-2.21-.391-3.663 0 0-.42 3.361-1.94 5.601 0 0-.083-2.115-.436-3.67 0 0-.355 2.823-1.9 5.348 0 0-.008-2.445-.506-3.814 0 0-.622 2.966-1.93 5.062 0 0 .099-2.075-.442-3.803 0 0-1.098 3.293-2.288 4.992-.75-1.355-2.396-5.027-2.072-7.118' fill='%2374b500' stroke='%231b402f' stroke-width='.666' stroke-miterlimit='8'/%3e%3cpath d='M2201.552 1327.138c6.64 4.52 12.114-5.477 15.035-14.706' fill='none' stroke='%231b402f' stroke-width='.553' stroke-linecap='round'/%3e%3cpath d='M2126.27 1302.313c3.478 2.52 6.237 6.566 9.911 6.657-1.229-1.739-.899-2.039-2.114-3.328-1.23-1.26-4.14-3.568-4.844-3.629-.705-.03-2.953.15-2.953.15' fill='%23fff' stroke='%23000' stroke-width='.751' stroke-linecap='round'/%3e%3cpath d='M2115.279 1215.616c-1.035-3.48-6.208-15.024-7.228-16.645-1.034-1.588-.104-3.357-1.034-4.587-.945-1.23-2.818-2.07-3.3-3.57-.463-1.5 1.41-24.23.482-24.71-.945-.45-6.478.749-6.958 2.729-.464 1.979.855 1.89 0 3.388-.84 1.5-.66 2.34-.555 3.75.09 1.41 3.194 14.844 3.374 19.732.195 4.889 1.649 25.34 1.649 25.34z' fill='%23fff'/%3e%3cpath d='M2115.279 1215.616c-1.035-3.48-6.208-15.024-7.228-16.645-1.034-1.588-.104-3.357-1.034-4.587-.945-1.23-2.818-2.07-3.3-3.57-.463-1.5 1.41-24.23.482-24.71-.945-.45-6.478.749-6.958 2.729-.464 1.979.855 1.89 0 3.388-.84 1.5-.66 2.34-.555 3.75.09 1.41 3.194 14.844 3.374 19.732.195 4.889 1.649 25.34 1.649 25.34z' fill='none' stroke='%23000' stroke-width='.751' stroke-linecap='round'/%3e%3cpath d='M2091.797 1215.316c.286-2.249 4.32-11.815 5.73-14.365 1.408-2.519.748-4.798.943-6.177.18-1.41 1.5-1.529 1.5-2.939 0-1.41 1.59-15.235 1.32-18.023-.286-2.819.374-4.798 1.68-5.728-.376-.929-.932-2.339.748-4.229 1.695-1.889 4.201-4.057 5.805-4.057 1.59 0 1.152 1.238 1.152 1.238s1.604.57.661 2.549c-.945 1.95-3.569 3.75-3.764 4.499-.18.749.75 2.998-.18 5.068-.946 2.069-3.029 17.183-2.909 20.303.09 2.428.09 4.317-.765 6.657-.84 2.339 1.784 11.455 1.784 15.864l-6.387 3.777z' fill='%23fff'/%3e%3cpath d='M2091.797 1215.316c.286-2.249 4.32-11.815 5.73-14.365 1.408-2.519.748-4.798.943-6.177.18-1.41 1.5-1.529 1.5-2.939 0-1.41 1.59-15.235 1.32-18.023-.286-2.819.374-4.798 1.68-5.728-.376-.929-.932-2.339.748-4.229 1.695-1.889 4.201-4.057 5.805-4.057 1.59 0 1.152 1.238 1.152 1.238s1.604.57.661 2.549c-.945 1.95-3.569 3.75-3.764 4.499-.18.749.75 2.998-.18 5.068-.946 2.069-3.029 17.183-2.909 20.303.09 2.428.09 4.317-.765 6.657-.84 2.339 1.784 11.455 1.784 15.864l-6.387 3.777z' fill='none' stroke='%23000' stroke-width='.751' stroke-linecap='round'/%3e%3cpath d='M2071.6 1220.294c0-1.68 3.943-10.405 3.39-11.726-.57-1.32-2.446-3.21-2.355-4.408.09-1.23 5.443-14.274 5.352-21.231.091-1.68 1.784-2.071 2.624-3.3.856-1.2-1.303-1.108 0-2.61 1.321-1.53 5.173-3.388 9.492-3.206.285.479.195.837 0 1.228 0 0 .945 1.11-.465 2.16-1.41 1.02-2.819 2.519-4.513 2.999 0 0-1.125.929-.75 1.68.374.749-.135 2.638-1.514 4.317-1.394 1.709-3.613 9.417-4.003 14.486-.405 5.066 4.107 12.865 6.267 14.093l-6.267 6.268z' fill='%23fff'/%3e%3cpath d='M2071.6 1220.294c0-1.68 3.943-10.405 3.39-11.726-.57-1.32-2.446-3.21-2.355-4.408.09-1.23 5.443-14.274 5.352-21.231.091-1.68 1.784-2.071 2.624-3.3.856-1.2-1.303-1.108 0-2.61 1.321-1.53 5.173-3.388 9.492-3.206.285.479.195.837 0 1.228 0 0 .945 1.11-.465 2.16-1.41 1.02-2.819 2.519-4.513 2.999 0 0-1.125.929-.75 1.68.374.749-.135 2.638-1.514 4.317-1.394 1.709-3.613 9.417-4.003 14.486-.405 5.066 4.107 12.865 6.267 14.093l-6.267 6.268z' fill='none' stroke='%23000' stroke-width='.751' stroke-linecap='round'/%3e%3cpath d='M2054.507 1225.511c.286-2.669 4.14-11.695 4.319-16.673-.09-1.768-.66-3.09-.556-4.408.09-1.319 1.786-3.299 1.786-5.818 0-2.549 1.033-16.614.268-17.484.57-1.589 1.633-2.927 2.579-3.226-1.035-.93-1.17-2.022-.883-3.04.284-1.05 2.53-4.984 4.258-5.19 1.332-.158 1.503.837 1.503.837s1.466-1.017 1.286 1.323c-.195 2.37-.788 4.518-2.79 6.028-1.217.917-.148 1.86 0 2.16.166.268 1.17 2.247 0 4.226-1.154 1.951-1.53 4.02-1.724 6.088-.18 2.071-.375 8.457-.09 9.957.285 1.5 1.59 2.73 1.125 5.82-.465 3.117.749 12.263 5.068 14.632l-9.296 6.388z' fill='%23fff'/%3e%3cpath d='M2054.507 1225.511c.286-2.669 4.14-11.695 4.319-16.673-.09-1.768-.66-3.09-.556-4.408.09-1.319 1.786-3.299 1.786-5.818 0-2.549 1.033-16.614.268-17.484.57-1.589 1.633-2.927 2.579-3.226-1.035-.93-1.17-2.022-.883-3.04.284-1.05 2.53-4.984 4.258-5.19 1.332-.158 1.503.837 1.503.837s1.466-1.017 1.286 1.323c-.195 2.37-.788 4.518-2.79 6.028-1.217.917-.148 1.86 0 2.16.166.268 1.17 2.247 0 4.226-1.154 1.951-1.53 4.02-1.724 6.088-.18 2.071-.375 8.457-.09 9.957.285 1.5 1.59 2.73 1.125 5.82-.465 3.117.749 12.263 5.068 14.632l-9.296 6.388z' fill='none' stroke='%23000' stroke-width='.751' stroke-linecap='round'/%3e%3cpath d='M2060.954 1261.948c-6.192 10.676-18.848-1.08-14.62-9.656 1.185-2.368 3.644-1.793 6.103-1.313-1.124.03-2.22 1.213-2.49 1.882.676-.046 1.405.15 2.179.364-.762.592-1.188 1.059-1.453 2.066a5.1 5.1 0 0 1 2.029-.073c-.656 1.003-1.04 1.835-1.1 2.638.725-.222 1.3-.218 2.137 0-.248.252-.837.923-.897 2.202 1.8-.21 3.014-1.677 3.989-3.238z' fill='%23fff'/%3e%3cpath d='M2060.954 1261.948c-6.192 10.676-18.848-1.08-14.62-9.656 1.185-2.368 3.644-1.793 6.103-1.313-1.124.03-2.22 1.213-2.49 1.882.676-.046 1.405.15 2.179.364-.762.592-1.188 1.059-1.453 2.066a5.1 5.1 0 0 1 2.029-.073c-.656 1.003-1.04 1.835-1.1 2.638.725-.222 1.3-.218 2.137 0-.248.252-.837.923-.897 2.202 1.8-.21 3.014-1.677 3.989-3.238z' fill='none' stroke='%23000' stroke-width='.751' stroke-linecap='round'/%3e%3cpath d='M2124.32 1237.539c1.635 1.618 2.385 6.866 3.015 9.266.629 2.369.869 6.627.749 10.496 1.5 1.768 1.004 4.767 1.5 8.786 1.259 2.01 1.124 9.146.885 12.025-.255 2.879.374 4.259 1.875 5.367 1.498 1.142 6.642 3.15 8.515 2.13 1.875-.988 4.004-.24 4.004.75 2.263-.12 3.134 2.759 2.64 4.379 0 0 .929 2.309-2.894 3.899-3.69 1.529-8.008 4.498-9.508 5.637-1.514 1.11-3.134 1.68-6.642 2.008-7.002.632-9.761-3.628-11.771-5.906-2.82-3.18-4.767-10.496-5.516-13.765-.751-3.27-3.255-13.525-4.754-16.524-1.5-3-2.01-4.528-2.76-7.527-3.253 1.019-6.506.75-10.766.509-4.258-.24-11.515 4.259-18.277 5.998-6.777 1.77-17.544-2.49-19.043-7.257-1.5-4.768-5.502-6.748-5.757-9.777-.255-3-1.006-3.987-1.5-5.997-.51-2.01.99-9.776 1.245-12.266.255-2.52 2.395-3.95 3.904-5.037l.354-.241 1.248-.87s.584-2.266 2.32-3.604l.647 3.396c1.209-2.701 2.548-3.374 2.548-3.374l.529 2.814c.962-2.35 2.15-2.95 2.15-2.95l1.31 2.674s.442-1.534 1.47-3.228l1.348 1.792s-.088-1.927.604-3.22l1.854 2.073c.135-2.88 1.635-.51 2.384-2.88.75-2.368.714-2.03 1.487-3.421 0 0 1.26 1.103 2.142 2.67l.71-2.818s1.138 1.095 1.648 1.95l.655-2.52s1.156.48 1.74 1.737l.63-2.366s1.064.347 2.016 2.117l1.143-2.817 1.43 2.559s.845-2.13 2.187-4.018l1.837 3.565c.787-1.846 1.21-2.684 3.133-4.418l.664 3.162s.767-2.31 2.198-3.54l1.266 3.24c.363-1.332.807-2.47 1.66-3.568l1.33 2.958c.353-2.386 1.618-3.378 1.618-3.378l.954 3.089s.576-1.801 1.74-3.336l.638 3.28s.673-1.907 1.872-2.794l1.21 3.17s.449-1.74 1.414-2.554l1.245 3.003 1.71-2.567c.995 1.245 1.198 1.534 1.737 3.327l1.143-1.438s1.44 1.344 1.758 3.53l1.048-1.041s.887 1.85 1.332 3.957l.94-.645c.75 1.685 1.132 4.303 1.132 4.303l.838-.558c.585 2.164.84 4.155.84 4.155l1.115-.447c.366 1.49.612 3.118.527 4.583l.972-.044s.228 4.34-1.568 8.357' fill='%23fff'/%3e%3cpath d='M2124.32 1237.539c1.635 1.618 2.385 6.866 3.015 9.266.629 2.369.869 6.627.749 10.496 1.5 1.768 1.004 4.767 1.5 8.786 1.259 2.01 1.124 9.146.885 12.025-.255 2.879.374 4.259 1.875 5.367 1.498 1.142 6.642 3.15 8.515 2.13 1.875-.988 4.004-.24 4.004.75 2.263-.12 3.134 2.759 2.64 4.379 0 0 .929 2.309-2.894 3.899-3.69 1.529-8.008 4.498-9.508 5.637-1.514 1.11-3.134 1.68-6.642 2.008-7.002.632-9.761-3.628-11.771-5.906-2.82-3.18-4.767-10.496-5.516-13.765-.751-3.27-3.255-13.525-4.754-16.524-1.5-3-2.01-4.528-2.76-7.527-3.253 1.019-6.506.75-10.766.509-4.258-.24-11.515 4.259-18.277 5.998-6.777 1.77-17.544-2.49-19.043-7.257-1.5-4.768-5.502-6.748-5.757-9.777-.255-3-1.006-3.987-1.5-5.997-.51-2.01.99-9.776 1.245-12.266.255-2.52 2.395-3.95 3.904-5.037l.354-.241 1.248-.87s.584-2.266 2.32-3.604l.647 3.396c1.209-2.701 2.548-3.374 2.548-3.374l.529 2.814c.962-2.35 2.15-2.95 2.15-2.95l1.31 2.674s.442-1.534 1.47-3.228l1.348 1.792s-.088-1.927.604-3.22l1.854 2.073c.135-2.88 1.635-.51 2.384-2.88.75-2.368.714-2.03 1.487-3.421 0 0 1.26 1.103 2.142 2.67l.71-2.818s1.138 1.095 1.648 1.95l.655-2.52s1.156.48 1.74 1.737l.63-2.366s1.064.347 2.016 2.117l1.143-2.817 1.43 2.559s.845-2.13 2.187-4.018l1.837 3.565c.787-1.846 1.21-2.684 3.133-4.418l.664 3.162s.767-2.31 2.198-3.54l1.266 3.24c.363-1.332.807-2.47 1.66-3.568l1.33 2.958c.353-2.386 1.618-3.378 1.618-3.378l.954 3.089s.576-1.801 1.74-3.336l.638 3.28s.673-1.907 1.872-2.794l1.21 3.17s.449-1.74 1.414-2.554l1.245 3.003 1.71-2.567c.995 1.245 1.198 1.534 1.737 3.327l1.143-1.438s1.44 1.344 1.758 3.53l1.048-1.041s.887 1.85 1.332 3.957l.94-.645c.75 1.685 1.132 4.303 1.132 4.303l.838-.558c.585 2.164.84 4.155.84 4.155l1.115-.447c.366 1.49.612 3.118.527 4.583l.972-.044s.228 4.34-1.568 8.357z' fill='none' stroke='%23000' stroke-width='.751' stroke-miterlimit='8'/%3e%3cpath d='M2120.586 1297.095c-.419 1.738-1.693 9.956 4.32 11.875.24-1.769-.63-3.328-1.32-5.338-.69-2.04-1.035-3.569-.706-4.708' fill='%23fff' stroke='%23000' stroke-width='.751' stroke-linecap='round'/%3e%3cpath d='M2124.006 1307.62c-.75-.66-2.054-1.078-1.59-4.467' fill='none' stroke='%23000' stroke-width='.751' stroke-linecap='round'/%3e%3cpath d='M2128.143 1294.127c1.188.119 1.831-.991 2.685-.93.84.03 1.75 1.248 2.321 1.327.58.08.872.082 1.382-.428' fill='none' stroke='%23000' stroke-width='1.127' stroke-linecap='round'/%3e%3cpath d='M2147.396 1290.467c-.51-.18-1.454 1.5-2.533.75m-5.308-3.717c.704.148 3.808.06 5.547-1.141m-41.444-27.799c.135-.99-2.624-3.629-3.748-5.639m24.41-15.382c-1.73-1.8-6.012-6.51-6.251-9.778m-28.686 30.182c-4.081-1.384-7.286-4.182-7.632-8.26m12.511 7.387c-1.805-.75-1.805-1.917-3.874-2.423m-2.503-7.213c-.496-1.32-1.347-3.229-1.826-4.577m-1.189-2.83a27.174 27.174 0 0 1-.99-2.879m-30.245 15.232c.614-3.72-2.247-5.997-3.446-9.084m1.498-4.139c-.419-3.18-1.813-6.07-1.064-9.711m6.208 13.58c-.9-1.11-1.365-2.4-1.38-3.869m10.511 9.386c-.794-1.798-1.217-3.676-.75-5.686m2.505 4.696c.089-3.988-3.599-6.867-4.153-10.915-.616-4.379 1.373-7.888 1.149-12.267m1.624 13.646c-.09-2.788-.24-5.788 1.14-8.127m-.134-3.15c-.195-1.617.284-3.087 1.379-4.228m2.504 2.611c.884-2.49 2.954-3.75 4.512-5.88m-2.128 9.507c-.314 2.22.48 4.319.614 6.659m1.379-7.649c.21-2.908-.344-6.057 1.515-8.517m6.013-3.267c-.616 3.598-4.543 5.758-4.259 9.535m4.124 1.62c0-2.908-.143-5.214 1.33-7.888m1.789-3.267c.735 3.018.835 5.067 0 8.127 2.608-2.399 2.205-6.969 1.89-9.356m-1.125 13.375c-.45.39-.675.929-.63 1.529m27.184 8.996c-.397-1.765-.646-3.88.12-5.758m-3.134-6.387c1.17-1.98 1.155-4.23 3.015-5.878m-1.802-1.649c1.514-1.685 2.193-2.85 2.315-4.499m2.05 1.86c-.044.929-.845 2.369-1.754 3.277m3.851-2.181c.209 1.35.158 3.252-.141 4.541m2.109-2.098c-.645 2.849-3.435 4.167-3.75 7.257m-1.378-2.49c.539-1.079-.498-2.669.042-3.929m8.223 26.641c.689-1.519 1.555-3.022 2.32-4.372m-4.018.155c.255-2.12 1.514-2.12 2.444-4.792m.22 18.598c.782-1.685 1.668-3.15 2.853-5.436m-3.073.185c.729-1.532 1.62-3.329 2.504-4.768m1.191 11.756c-1.047 1.186-1.829 2.308-2.747 3.511m3.442.374c-1.316 1.95-2.195 3.267-3.09 5m3.734-.125c-1.526 2.49-2.189 3.604-3.486 6.907m4.066-1.762c-.954 1.41-1.97 4.128-2.53 5.704m-30.298-24.858c.479.784 1.538 1.878 2.27 2.06m-9.364-8.567c.39.63.915 1.2 1.5 1.618m-35.478-17.452c-.584-1.35.586-2.55.017-3.72-.541-1.078-3.044-2.127-1.454-3.146m-1.59 7.016c-.3-1.2.39-1.83.24-2.91m67.445 65.916c-.09-.72.209-1.26.869-1.498m.255-.751c-.135-.81.164-1.41.884-1.74m.494-1.649c.422-.84.557-2.039.377-3.118m2.878-2.37c1.334-.688 2.923-1.318 4.257-1.77m-.493 2.01c.045-.51.255-.84.63-1.14m-78.407-23.51a75.85 75.85 0 0 0-1.215 1.889m.091-4.319c-.809.54-1.319 1.47-1.5 2.55m-.787-3.69c.208-.81.146-.937.464-1.507m.323-1.941c-.875.858-1.312 1.667-1.574 3.067m1.327 1.863c-.543.654-.726 1.207-.846 1.787m2.398.211c-.33.569-.75 1.318-1.02 1.889m2.055.27c.015.899.554 1.71 1.32 2.069m-.196-1.679c.842-.062 1.482-.232 2.55-1.104m10.51-85.325c.106-.928 2.205-2.937 1.755-4.376m17.498 7.586c1.784-.39 4.23-2.07 4.89-2.91m17.377-9.955c.84-.84 2.624-2.55 3.193-4.05m-48.655 40.007a3.07 3.07 0 0 1 2.353 1.619m37.561-10.076c.84.72 1.47 1.77 1.694 2.818m6.017 21.533c-.078-1.695.25-2.97.281-4.439m1.319 2.07a2.844 2.844 0 0 1 .375-1.859m-4.798 4.228c.1-2.303-.96-2.613-.924-4.604m1.251-.092c-.417-.856-.394-.877-.511-1.495m-2.439 7.029c.255-1.589-.21-3.207-.106-4.707' fill='none' stroke='%23000' stroke-width='.751' stroke-linecap='round'/%3e%3cpath d='M2065.903 1225.482c-.195-1.859-.131-2.504.582-4.16m2.431 2.901c.48-1.26 1.844-1.39 1.833-4.61m.965 2.427c-.077-2.25 1.12-3.407 1.702-5.601m-.442 4.461c.97-1.038 1.948-3.48 1.902-4.593m-.712 7.165c.63-1.108.272-1.144 1.16-2.288m2.09-.777c1.09-1.48 1.265-2.474 2.001-5.75m.762 5.067c.895-1.355 1.265-3.688 1.79-5.519m2.515 8.393c.853-2.539.883-3.773.704-6.143m-3.509 7.527c.09-1.859.44-3.238 1.176-5.007m6.09 1.925c.414-2.094.497-4.057.198-6.38m1.272 4.724c.521-3.538-.464-5.418 1.62-7.337m.312 2.489c.913 1.94-.487 4.548-1.146 6.587m5.006-3.268c.122-1.83.026-3.526-.479-5.394m-1.019 6.384c0-1.62.089-3.15.255-4.738m6.762-.001c-.075 1.47-.15 2.788-.255 4.258m-2.249-2.278c-.104 1.648-.18 3.148-.255 4.768m4.004-5.248v3m2.759-2.76v3.748m2.009-6.507c.99 1.769 1.038 3.865 1.004 6.028m4.664 7.639c-.224-1.23-.012-3.23.542-4.25m2.051-.391c.195-1.32.375-2.699.495-4.018m3.972 11.545c.335-1.528 1.037-4.348 1.037-6.152m0 7.887c.61-1.385 1.062-3.229 1.222-4.945m-.161 6.796c.855-1.35 1.326-3.262 1.442-5.115m-.116 6.796c.496-1.183.929-2.365.874-3.89m-5.511-3.385c.315-1.202.63-4.108.63-5.128m-2.638-2.64c.104-1.259.039-2.219-.216-3.389m-55.638 12.146c0-1.589.055-3.309.657-5.082m1.096 2.593c-.029-1.14.083-2.205.563-3.014m-3.816 1.874c-.167 1.254-.794 2.52-1.004 3.63m-1.63-4.171c.249 1.38-.094 2.971-.365 4.17m-2.808-1.185c-.151.83 0 1.244-.265 2.488m-1.957-1.303c-.284.45-.575 1.61-.548 2.21m3.349-1.245c-.17 1.354-.276 2.196.107 3.294m1.373-8.758c.104.631.003 1.5-.173 2.01m-6.349 9.266c-.092 1.35 0 2.73.254 3.988m-.761.022c-.187 1.795-.08 2.617.319 3.59m.442-2.352a3.722 3.722 0 0 0 1.5 2.76m-.751 3.747c.03.78.42 1.53 1.004 2.01m1.267-14.5c.372 1.158.492 1.675.64 2.92m-2.221-5.85c.06 2.115.548 3.646.89 5.445m-1.763.199c.183 2.405.747 3.422 1.805 4.479m46.465 16.574c-1.124-.18-2.22-.72-3-1.5m4.515 1.26c-.96-.48-2.303-.63-3.074-1.26m4.318.75c-.96-.33-2.008-.688-2.999-.99m-3.516-.51c-1.334-1.081-2.6-2.1-4.252-2.518m1.755 4.126c-1.454-.299-2.954-.948-4.257-1.608m7.691 2.01c-1.016.087-1.805-.072-2.55-.24m4.125-1.77c-.676-.45-1.469-1.558-2.01-2.008m27.559-11.237c.653-1.266.931-1.93 1.748-3.144m-1.192 4.357a37.34 37.34 0 0 1 1.627-2.785m-.744 6.697c.438-.851.85-1.703 1.531-2.745m-.611 6.517c.435-.9.726-1.607 1.451-2.793m-1.451 8.48c.51-.99 1.268-2.11 1.833-2.945m-1.581 4.563c.398-.623 1.02-1.618 1.677-2.386m-.469 5.435c.359-.51.979-1.43 1.43-1.909m-1.172 7.137c.457-.706.96-1.635 1.427-2.324m-.641 7.712c.386-.783 1.025-1.986 1.683-2.856m-.727 6.776c.146-.513.448-1.145.83-1.923m-6.904-36.161v-1.38m-1.13.427v-1.776m-1.374.367v-2.24m-1.498.746c.135-.99-.12-2.894-.804-4.104m9.676 53.542c.272-.33 1.009-.99 1.398-.99m-.334.99c1.343.63 2.071-.102 2.071-.75m0 1.965c-.029-.48.257-1.184.768-1.215m0 1.054c.351-.447.786-.643 1.346-.33m-.449.612a.715.715 0 0 0 1.154-.121m-48.967-28.331c.95.685 2.482 1.4 3.65 1.795m-3.827.092c.406.302 1.354.848 1.608.938m-3.786-.377c.457.378 1.13.777 1.971 1.224m-34.145-6.262c-.3.55-.364.844-.47 1.49m-1.754-.334c-.66 1.17-.66 2.7 0 4.019m1.259 2.009c.39.81 1.442 1.713 2.131 2.132m1.966.28c1.1 0 1.785-.592 2.329-1.463m-1.672-.468c.583-.138 1.105-.513 1.843-1.024m8.684-40.542v-2.759m.749 1.501c.255-.45.4-1.605.295-2.326m.896 1.49c.173-.892.172-1.323.053-2.163m-.59-.546c0-.964-.22-1.94-.49-2.81m9.338.597c.222-.674.363-1.166.621-2.01m.427 2.24c.338-1.22.584-2.24.216-3.739m1.583 3.348c.18-1.479.223-1.85.085-3.108m1.673 2.01c-.846-.621-.846-1.053-.846-1.562m1.763 2.163c0-.091.281-.722-.326-1.151m-1.493-1.79c-.202-.718-.688-.961-.943-1.291m-.746.631c-.365-1.11-.878-1.254-1.244-2.02m-.459-.588c-.788-1.174-1.503-1.96-1.24-3.025m3.154 8.512a9.004 9.004 0 0 0-.079-2.017m28.612-2.178c-.199-1.562-.516-2.864-.765-4.81m1.714 4.436c-.213-1.31-.284-1.866-.464-2.945m2.402 4.283c.106-.869-.288-2.065-.5-3.184m1.702 2.299c-.229-.78-.37-.957-.64-1.407m2.273 3.374c-.294-.765-.572-1.33-.915-2.14m-3.168-1.234c-.162-1.702-.368-2.678-.83-4.377m-1.555-1.867c.083.98.747 1.637 1.012 3.274m22.699 99.449c.519.313.6.479 1.037.979m0-.989c.314.421.788 1.093 1.328 1.28m-9.003-1.66c-.765-.45-.872-1.266-.238-1.769' fill='none' stroke='%23a4a5a8' stroke-width='.564' stroke-linecap='round'/%3e%3cpath d='M2135.285 1381.218h-3.812v5.171h3.812z' fill='%23fff'/%3e%3cpath d='M2131.585 1381.33h3.59v4.948h-3.59zm3.812-.223h-4.035v5.394h4.035z'/%3e%3cpath d='m2135.285 1386.39.529-.732v-5.288l-.53.62z' fill='%23fff'/%3e%3cpath d='m2135.406 1381.035.287-.336v4.92l-.287.396zm.529-.991-.77.9v5.82l.77-1.066z'/%3e%3cpath d='M2120.837 1378.456s.83 1.973 2.884 2.179c2.053.206 3.028-1.04 3.485-1.6l-.311-1.036-4.543-.772z' fill='%23fff'/%3e%3cpath d='m2120.976 1378.487 1.406-1.142 4.425.752.274.913c-.461.566-1.414 1.708-3.35 1.513-1.736-.175-2.58-1.68-2.755-2.036m1.343-1.38-.04.032-1.578 1.283.033.078c.009.019.879 2.036 2.974 2.246 2.08.21 3.079-1.02 3.56-1.61l.063-.076-.35-1.161-.067-.011z'/%3e%3cpath d='m2119.459 1378.724 5.36.062 1.678.25-.308-9.315-7.1.001z' fill='%23fff'/%3e%3cpath d='m2119.207 1369.835 6.874-.001.3 9.07-1.545-.227-5.27-.063zm7.09-.226h-7.324l.379 9.226.106.002 5.36.062 1.795.267-.004-.134z'/%3e%3cpath d='M2118.35 1373.351v-3.772s1.833-.044 5.723-.044l-.01 4.107s-3.076.016-5.713-.29' fill='%23fff'/%3e%3cpath d='M2118.462 1369.688c.444-.009 2.246-.04 5.5-.04l-.01 3.881c-.568 0-3.194-.019-5.49-.278zm5.723-.266h-.112c-3.848 0-5.708.044-5.726.044l-.11.003v3.982l.1.011c2.615.304 5.69.293 5.727.291h.11l.001-.112z'/%3e%3cpath d='M2124.33 1374.995c-.038-.804-.686-1.426-1.445-1.39-.76.037-1.345.719-1.306 1.523.039.804.687 1.427 1.446 1.389.76-.037 1.345-.718 1.306-1.522' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='M2123.5 1375.035c-.016-.318-.272-.565-.573-.551-.302.015-.533.285-.518.604.016.319.272.565.573.55.302-.014.534-.284.518-.603' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='M2122.957 1375.528a.42.42 0 0 1-.282-.11.48.48 0 0 1-.155-.336.483.483 0 0 1 .113-.338.42.42 0 0 1 .3-.15h.018c.232 0 .426.197.438.447a.47.47 0 0 1-.12.346.424.424 0 0 1-.292.141zm-.006-1.155-.03.001a.634.634 0 0 0-.455.225.706.706 0 0 0-.167.494c.01.19.09.364.227.488a.633.633 0 0 0 .906-.045.69.69 0 0 0 .178-.506.675.675 0 0 0-.659-.657'/%3e%3cpath d='M2123.5 1375.035c-.016-.318-.272-.565-.573-.551-.302.015-.533.285-.518.604.016.319.272.565.573.55.302-.014.534-.284.518-.603' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='M2122.957 1375.528a.42.42 0 0 1-.282-.11.48.48 0 0 1-.155-.336.483.483 0 0 1 .113-.338.42.42 0 0 1 .3-.15h.018c.232 0 .426.197.438.447a.47.47 0 0 1-.12.346.424.424 0 0 1-.292.141zm-.006-1.155-.03.001a.634.634 0 0 0-.455.225.706.706 0 0 0-.167.494c.01.19.09.364.227.488a.633.633 0 0 0 .906-.045.69.69 0 0 0 .178-.506.675.675 0 0 0-.659-.657'/%3e%3cpath d='M2124.073 1376.152h.747v-6.617h-.747z' fill='%23fff'/%3e%3cpath d='M2124.185 1369.647h.522v6.393h-.522zm.747-.225h-.971v6.842h.971z'/%3e%3cpath d='M2124.073 1373.58c-3.734-.042-5.85-.29-5.85-.29v.29s2.116.249 5.85.29' fill='%23fff'/%3e%3cpath d='M2118.11 1373.164v.516l.1.01c.022.003 2.164.25 5.862.292l.002-.224c-3.24-.035-5.28-.231-5.738-.28v-.064c.507.053 2.542.243 5.736.278l.002-.224c-3.683-.04-5.816-.287-5.837-.29z'/%3e%3cpath d='m2124.82 1376.152.197-.015v-6.602h-.197z' fill='%23fff'/%3e%3cpath d='M2125.128 1369.422h-.42v6.851l.421-.032z'/%3e%3cpath d='M2126.189 1369.721h12.426l-.228 10.206h-.954s-.498.581-1.35.705l.012.602h-.561s-1.098 1.058-2.945 1.068c-1.847.011-3.2-1.065-3.2-1.065l-.63.005-.02-.625s-.86-.098-1.388-.825l-.83-.026z' fill='%23fff'/%3e%3cpath d='M2126.305 1369.834h12.196l-.224 9.98h-.895l-.035.04a2.26 2.26 0 0 1-1.28.669l-.095.014.008.586h-.491l-.033.03c-.011.012-1.091 1.029-2.868 1.038h-.027c-1.772 0-3.09-1.031-3.102-1.042l-.031-.024-.56.005-.02-.612-.095-.012c-.01-.001-.82-.103-1.312-.78l-.032-.043-.78-.025zm12.424-.225h-12.656l.339 10.267.882.027c.45.584 1.094.762 1.337.81l.02.643.699-.006c.222.165 1.495 1.066 3.21 1.066h.029c1.713-.011 2.785-.887 2.989-1.068h.63l-.01-.62a2.49 2.49 0 0 0 1.284-.688h1.014l.003-.11z'/%3e%3cpath d='m2130.503 1369.699.15 6.243 3.513.005-.027-6.285zm2.568 9.333-.02-1.83-1.257-.004.032 1.825s.56.733 1.245.009' fill='%23211915'/%3e%3cpath d='m2131.537 1379.604-.282-.003-.052-2.406.287.001z' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='m2131.372 1379.482-.045-2.165h.045l.042 2.166zm-.291-2.407.056 2.647.523.002-.052-2.647z'/%3e%3cpath d='m2133.664 1379.62-.285-.001-.022-2.416h.288z' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='m2133.498 1379.5-.021-2.176h.05l.016 2.176zm-.263-2.417.025 2.655.525.004-.02-2.657z'/%3e%3cpath d='m2133.666 1379.885-2.406-.02-.005-.264 2.409.02z' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='m2131.378 1379.746-.001-.022 2.168.016v.025zm-.246-.265.01.503 2.645.023-.004-.505z'/%3e%3cpath d='M2131.546 1380.025s.01.831.929.84c.915.01.908-.772.908-.824l.284.003s.069 1.074-1.188 1.129c0 0-1.191-.012-1.215-1.151z' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='M2132.473 1381.054c-.036 0-.982-.026-1.08-.91h.046c.043.255.231.834 1.034.841.343 0 .586-.087.768-.27a.943.943 0 0 0 .254-.553h.046a.977.977 0 0 1-.233.56c-.185.203-.465.314-.835.332m-1.333-1.152.003.124c.026 1.24 1.321 1.267 1.334 1.267.445-.018.783-.158 1.012-.412.325-.363.298-.826.297-.846l-.007-.11-.52-.007.003.124c0 .032 0 .311-.192.504-.13.132-.326.2-.58.2h-.016c-.786-.009-.808-.694-.809-.723l-.002-.117z'/%3e%3cpath d='m2132.618 1381.33-.273-.003-.007-.447.273.003z' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='m2132.463 1381.208-.003-.206h.033l.003.206zm-.247-.45.01.687.514.006-.01-.687z'/%3e%3cpath d='m2134.876 1376.854-4.744-.015.015.512 4.729.02z' fill='%23fff'/%3e%3cpath d='m2130.243 1377.253-.01-.312 4.542.012v.318zm-.214-.513.02.71.097.002 4.829.019v-.716l-.1-.001z'/%3e%3cpath d='m2135.312 1376.743-5.612-.016.007.223 5.604.018z' fill='%23fff'/%3e%3cpath d='M2129.804 1376.85v-.022l5.408.013v.026zm-.207-.223.013.421.096.001 5.705.018v-.424h-.099z'/%3e%3cpath d='m2135.311 1377.26-5.596-.02.007.22 5.588.023z' fill='%23fff'/%3e%3cpath d='m2129.82 1377.362-.002-.022 5.394.019v.024zm-.207-.223.012.42h.097l5.687.025.002-.423-.1-.001z'/%3e%3cpath d='m2136.39 1369.728-1.88.02.006 2.256 1.854-.01z' fill='%23fff'/%3e%3cpath d='m2134.619 1369.854 1.662-.017-.017 2.05-1.64.01zm1.879-.235-2.096.021.007 2.473 2.069-.01z'/%3e%3cpath d='m2136.26 1376.811-1.65-.004.001.608 1.646.006z' fill='%23fff'/%3e%3cpath d='M2134.758 1377.27v-.316l1.355.003-.001.318zm-.294-.609.002.9 1.937.007.005-.902z'/%3e%3cpath d='m2135.352 1372-.478.003.002 4.728.466.002z' fill='%23fff'/%3e%3cpath d='m2134.983 1372.11.262-.002-.01 4.517-.25-.001zm.48-.219-.698.004.004 4.944.681.002.001-.108z'/%3e%3cpath d='m2136.042 1371.996-.48.003-.015 4.734h.467z' fill='%23fff'/%3e%3cpath d='m2135.67 1372.107.264-.002-.03 4.521h-.25zm.48-.22-.696.004-.001.108-.014 4.841.682.002z'/%3e%3cpath d='m2136.413 1376.68-1.953-.006v.264l1.95.007z' fill='%23fff'/%3e%3cpath d='M2134.566 1376.834v-.055l1.741.006v.055zm-.21-.265v.475l2.158.006.004-.475z'/%3e%3cpath d='m2136.408 1377.29-1.946-.007.001.263 1.943.008z' fill='%23fff'/%3e%3cpath d='M2134.567 1377.44v-.053l1.735.008v.053zm-.21-.263v.473l2.152.01.004-.475z'/%3e%3cpath d='m2136.122 1377.989-1.351-.007-.001-.435 1.355.005z' fill='%23fff'/%3e%3cpath d='M2134.891 1377.862v-.195l1.112.005-.002.196zm-.242-.437.002.677 1.591.008.003-.678z'/%3e%3cpath d='m2135.814 1378.565-.74-.005.001-.576.742.004z' fill='%23fff'/%3e%3cpath d='M2135.205 1378.43v-.314l.48.002-.001.315zm-.261-.577v.837l1 .006.004-.839z'/%3e%3cpath d='m2130.058 1369.79-1.835.019.081 2.23 1.814-.01z' fill='%23fff'/%3e%3cpath d='m2128.336 1369.915 1.617-.016.054 2.023-1.6.01zm1.828-.234-2.053.02.005.11.085 2.337 2.029-.01z'/%3e%3cpath d='m2130.174 1376.793-1.615-.005.022.602 1.609.007z' fill='%23fff'/%3e%3cpath d='m2128.721 1377.244-.012-.31 1.322.005.007.31zm-.314-.603.032.894 1.901.008-.024-.896z'/%3e%3cpath d='m2129.123 1372.035-.468.003.162 4.676h.455z' fill='%23fff'/%3e%3cpath d='M2128.767 1372.145h.25l.144 4.461h-.24zm.46-.219-.685.004.005.111.164 4.78.673.003z'/%3e%3cpath d='m2129.796 1372.03-.47.004.146 4.682h.457z' fill='%23fff'/%3e%3cpath d='m2129.438 1372.142.253-.002.125 4.468h-.239zm.462-.22-.685.004.004.112.148 4.785.672.003-.003-.112z'/%3e%3cpath d='m2130.317 1376.662-1.91-.005.01.262 1.907.006z' fill='%23fff'/%3e%3cpath d='m2128.517 1376.814-.002-.053 1.7.005.001.054zm-.219-.262.018.471 2.115.006-.013-.472z'/%3e%3cpath d='m2130.333 1377.266-1.903-.007.009.26 1.9.008z' fill='%23fff'/%3e%3cpath d='m2128.54 1377.414-.002-.051 1.693.008v.05zm-.22-.261.018.47 2.11.008-.012-.47z'/%3e%3cpath d='m2130.077 1377.958-1.321-.007-.015-.43 1.324.004z' fill='%23fff'/%3e%3cpath d='m2128.872 1377.83-.007-.19 1.083.005.006.192zm-.256-.431.024.672 1.56.008-.017-.674z'/%3e%3cpath d='m2129.796 1378.527-.724-.005-.02-.569.727.003z' fill='%23fff'/%3e%3cpath d='m2129.198 1378.392-.01-.308.464.001.009.31zm-.28-.57.027.83.984.006-.022-.833z'/%3e%3cpath d='M2131.904 1376.152h.747v-6.617h-.747z' fill='%23fff'/%3e%3cpath d='M2132.016 1369.647h.522v6.393h-.522zm.747-.225h-.973v6.842h.973z'/%3e%3cpath d='m2132.651 1376.152.196-.015v-6.602h-.196z' fill='%23fff'/%3e%3cpath d='M2132.96 1369.422h-.421v6.851l.422-.032z'/%3e%3cpath d='M2145.572 1379.017s-.906 1.973-3.15 2.18c-2.244.205-3.309-1.04-3.807-1.6l.34-1.037 4.963-.772z' fill='%23fff'/%3e%3cpath d='m2139.044 1378.665 4.844-.754 1.534 1.14c-.202.372-1.125 1.855-3.011 2.029-2.121.184-3.158-.94-3.663-1.51zm4.904-1-5.081.79-.384 1.17.07.078c.523.59 1.615 1.819 3.88 1.609 2.284-.21 3.236-2.225 3.246-2.246l.039-.086z'/%3e%3cpath d='m2146.2 1379.343-5.856.062-1.402.264-.555-.249v-6.453l8.211-2.627z' fill='%23fff'/%3e%3cpath d='m2138.504 1373.053 7.97-2.55-.386 8.725-5.745.06-1.387.26-.452-.205zm8.219-2.876-8.453 2.704v6.614l.658.296 1.437-.27 5.948-.062z'/%3e%3cpath d='m2138.387 1378.676.575.297 7.39.047-.11-.402-7.264-.063-.591-.339z' fill='%23fff'/%3e%3cpath d='M2138.504 1378.605v-.187l.442.254h.03l7.177.062.045.168-7.207-.046zm-.234-.59v.733l.692.342 7.543.048-.172-.636h-.09l-7.234-.064z'/%3e%3cpath d='m2146.328 1379.654-.111-.311-7.273-.044-.557-.265v.387l.555.249z' fill='%23fff'/%3e%3cpath d='M2138.504 1379.343v-.125l.44.197 7.19.044.028.076-7.195.017zm-.234-.495v.647l.672.291 7.553-.016-.195-.542h-.081l-7.247-.047z'/%3e%3cpath d='m2144.48 1378.61.275-8.27' fill='%23fff'/%3e%3cpath d='m2144.638 1370.336-.275 8.27.234.007.275-8.269z'/%3e%3cpath d='m2144.217 1378.609.289-8.264' fill='%23fff'/%3e%3cpath d='m2144.388 1370.341-.289 8.264.234.007.288-8.263z'/%3e%3cpath d='m2140.687 1378.627.2-8.286' fill='%23fff'/%3e%3cpath d='m2140.77 1370.338-.2 8.286.234.006.198-8.286z'/%3e%3cpath d='m2139.296 1370.351-.198 8.267-.711-.492v-7.679z' fill='%23040006'/%3e%3cpath d='m2138.86 1378.551-.015.418.235.008.014-.418zm-.032.746-.003.371.234.003.002-.372z'/%3e%3cpath d='M2139.133 1378.974h-.234v.325h.234z'/%3e%3cpath d='M2144.055 1375.33c.036-.87-.602-1.603-1.425-1.637-.822-.033-1.518.645-1.554 1.516-.036.87.602 1.603 1.425 1.638.823.033 1.52-.645 1.554-1.516' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='M2143.157 1375.294c.014-.345-.239-.636-.565-.648-.327-.014-.602.254-.617.6-.013.345.24.636.566.649.326.013.601-.255.616-.601' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='m2142.563 1375.778-.018-.001c-.26-.011-.464-.246-.453-.526.012-.274.223-.49.476-.49l.018.001a.454.454 0 0 1 .328.161.526.526 0 0 1 .126.366c-.012.273-.223.489-.477.489m.005-1.25c-.378 0-.693.314-.71.713-.016.408.288.754.678.77h.027c.38 0 .694-.314.711-.712a.76.76 0 0 0-.184-.531.69.69 0 0 0-.494-.24z'/%3e%3cpath d='m2135.247 1390.17.264-.654v-2.653l-.264.757z' fill='%23fff'/%3e%3cpath d='m2135.358 1387.64.042-.117v1.971l-.042.102zm.047-.813-.27.793v2.55l.215.041.273-.695v-2.652z'/%3e%3cpath d='M2147.187 1373.445v-3.91h-14.34v4.175s11.703.04 14.34-.265' fill='%23fff'/%3e%3cpath d='M2132.96 1369.647h14.115v3.697c-2.633.275-12.925.25-14.115.253zm14.34-.225h-14.565v4.4h.113c.118 0 11.74.037 14.353-.267l.099-.01z'/%3e%3cpath d='M2132.848 1373.567s5.953.094 14.48-.228v.29c-8.527.322-14.48.228-14.48.228' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='m2147.44 1373.223-.116.004c-8.426.317-14.415.23-14.473.227l-.004.225c.062 0 5.997.088 14.368-.224v.066c-8.373.314-14.307.227-14.364.223l-.004.226c.061 0 6.054.087 14.485-.228l.108-.005z'/%3e%3cpath d='m2126.463 1377.999-.404.355-7.058.049.475-.404 6.55-.035.418-.352z' fill='%23fff'/%3e%3cpath d='m2119.518 1378.11 6.549-.034.276-.232.006.106-.333.293-6.708.046zm7.027-.729-.56.472-6.55.034-.74.63 7.406-.051.476-.418z'/%3e%3cpath d='M2128.74 1380.617c-.4-.108-1.042-.348-1.39-.824l-.829-.027.009.343.635.02c.647.682 1.57.846 1.57.846z' fill='%23fff'/%3e%3cpath d='m2126.64 1380-.004-.118.657.02c.338.43.893.67 1.333.8v.133c-.27-.072-.908-.284-1.38-.782l-.032-.033zm-.234-.35.015.569.695.02c.662.673 1.561.84 1.6.848l.13.022.007-.578-.084-.022c-.354-.096-.995-.325-1.328-.782l-.032-.044z'/%3e%3cpath d='M2136.084 1380.632a2.355 2.355 0 0 0 1.349-.705h.954v.344l-.78.006s-.67.642-1.523.712z' fill='%23fff'/%3e%3cpath d='M2137.482 1380.04h.792v.12l-.71.006-.033.03c-.007.006-.592.555-1.334.669v-.137a2.483 2.483 0 0 0 1.285-.688m1.017-.225h-1.118l-.034.039a2.257 2.257 0 0 1-1.279.669l-.096.013v.576l.121-.01c.783-.065 1.408-.58 1.56-.713l.846-.006z'/%3e%3cpath d='M2136.444 1381.234h-.91s-1.099 1.068-2.945 1.068c-1.9 0-3.2-1.065-3.2-1.065l-.825.008v.334l.653-.01s1.388 1.075 3.382 1.076c1.94.001 3.076-1.069 3.076-1.069l.77-.01z' fill='%23fff'/%3e%3cpath d='M2135.578 1381.347h.754v.108l-.7.01-.033.028c-.01.011-1.13 1.04-2.998 1.04h-.002c-1.93 0-3.3-1.042-3.313-1.053l-.031-.024-.578.01v-.11l.673-.007a5.55 5.55 0 0 0 3.238 1.066c1.713 0 2.786-.884 2.99-1.068m.979-.225h-1.07l-.031.033c-.011.01-1.091 1.036-2.868 1.036-1.84 0-3.115-1.03-3.127-1.04l-.032-.027-.977.008v.56l.73-.01c.224.164 1.55 1.074 3.417 1.075h.002c1.8 0 2.913-.89 3.119-1.07l.837-.01z'/%3e%3cpath d='m2119 1379.036.364-.312 6.719-.024.38-.246.027.357-.36.195z' fill='%23fff'/%3e%3cpath d='m2119.405 1378.836 6.71-.023.25-.162.007.096-.27.146-6.798.03zm7.156-.58-.513.332-6.725.025-.626.536 7.462-.032.448-.242z'/%3e%3cpath d='m2121.125 1377.999-.175-4.22' fill='%23fff'/%3e%3cpath d='m2121.061 1373.774-.225.009.177 4.22.224-.009z'/%3e%3cpath d='m2121.414 1377.999-.175-4.206' fill='%23fff'/%3e%3cpath d='m2121.35 1373.788-.224.01.176 4.206.224-.01z'/%3e%3cpath d='m2124.62 1377.999-.076-1.847' fill='%23fff'/%3e%3cpath d='m2124.657 1376.147-.225.01.076 1.846.225-.009z'/%3e%3cpath d='m2125.691 1369.721.27 8.277.465-.458-.237-7.819z' fill='%23040006'/%3e%3cpath d='m2126.135 1377.989-.223.02.036.404.221-.02zm.058.694-.221.034.054.335.22-.034z'/%3e%3cpath d='m2126.17 1378.394-.223.018.024.296.223-.016z'/%3e%3cpath d='M2132.98 1382.645h-.952v.416h.952z' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='M2132.129 1382.745h.751v.217h-.751zm.951-.2h-1.151v.617h1.151z'/%3e%3cpath d='M2132.866 1383.429h-.724v-.368h.724z' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='M2132.243 1383.162h.523v.167h-.523zm.724-.2h-.924v.567h.924z'/%3e%3cpath d='M2132.028 1383.797h.952v-.367h-.952z' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='M2132.129 1383.529h.751v.167h-.751zm.951-.2h-1.151v.567h1.151z'/%3e%3cpath d='M2131.668 1386.693v.926h.436v2.552h2.769v-2.562l.412.001v-.917z' fill='%23fff'/%3e%3cpath d='M2131.78 1386.804h3.395v.693l-.414-.002v2.563h-2.546v-2.55h-.435zm3.617-.224h-3.84v1.15h.435v2.551h2.993v-2.56l.412.001z'/%3e%3cpath d='m2135.285 1387.61.265-.381v-.808l-.265.272z' fill='%23fff'/%3e%3cpath d='m2135.397 1386.738.042-.043v.499l-.042.06zm.265-.593-.488.502v1.32l.488-.703z'/%3e%3cpath d='M2132.103 1390.171h-.436v-2.552h.436z' fill='%23fff'/%3e%3cpath d='M2131.78 1387.73h.212v2.328h-.212zm.435-.223h-.657v2.773h.657zm1.855 3.412s-.102.202-.074.534c.028.33.064.176.13.539.067.382.095.669.105.833.01.165.041.484.081.639 0 0 .25.178.362.285.114.108.141.188.193.274 0 0-.002.187.001.264 0 0 .068.068.087.096.018.029.02.064.026.122.007.058.06.149.032.172-.014.013-.004.024-.027.04-.022.016-.012.029-.03.027-.029-.002-.05-.11-.07-.152-.02-.044-.053-.077-.01-.178l-.046-.038s-.045.013-.099-.028c-.053-.042-.389-.29-.549-.346-.113-.04-.163-.027-.269-.02-.106.01-.189.004-.207.122-.019.117-.01.336-.08.434-.07.1-.185.169-.31.127-.128-.041-.187-.131-.153-.283.034-.152.18-.378.11-.4-.069-.024-.13-.08-.209-.111-.078-.032-.099-.073-.228-.071-.189.002-.43.117-.594.165 0 0-.056-.015-.08.003s-.034.013-.027.055c.008.042 0 .055-.053.12-.054.065-.078.11-.112.116-.022.003-.04.006-.055-.026-.017-.032-.016-.015-.022-.042-.007-.026-.01-.04-.003-.061.01-.022.04-.064.056-.125.016-.062.04-.072.097-.111.048-.034.064-.001.127-.05 0 0 .015-.158.02-.188 0 0 .15-.1.235-.14.087-.041.201-.096.402-.175 0 0 .027-.361.032-.714.005-.35.065-.524.115-.76.051-.234.111-.3.116-.524.003-.226-.102-.548-.102-.548z'/%3e%3cpath d='M2135.285 1387.61h-.412v2.561h.412z' fill='%23fff'/%3e%3cpath d='M2134.985 1387.721h.189v2.337h-.189zm.412-.222h-.636v2.782h.636zm-4.554-.635.63-.755v.28h3.812l.53-.731v-.412l.63.464-.708 1.154z'/%3e%3cpath d='M2134.6 1390.459s.001.775-.852.793h-.4c-.853-.018-.852-.793-.852-.793z' fill='%23fff'/%3e%3cpath d='M2132.619 1390.57h1.858c-.034.195-.173.559-.73.57h-.4c-.555-.011-.694-.375-.728-.57m2.093-.223h-2.327v.113c0 .007.009.883.962.903h.402c.954-.02.963-.896.963-.903z'/%3e%3cpath d='m2131.395 1390.413.264-.466v.25h3.626l.225-.68v-.104l.27.073-.32.927z' fill='%23fff'/%3e%3cpath d='M2135.4 1389.266v.232l-.195.588h-3.435v-.564l-.486.78.054.222h4.202l.35-1.038z'/%3e%3cpath d='M2135.418 1390.413v.886h-.242v-.444h-3.538v.444h-.242v-.886z' fill='%23fff'/%3e%3cpath d='M2131.507 1390.524h3.8v.662h-.02v-.442h-3.761v.442h-.02zm4.022-.223h-4.245v1.109h.465v-.444h3.316v.444h.464z'/%3e%3cpath d='m2135.418 1390.413.36-.927v.396l-.36.992z' fill='%23fff'/%3e%3cpath d='m2135.675 1389.445-.368.968v.46l.222.089.362-1.08v-.396z'/%3e%3cpath d='M2133.89 1390.413v.442s-.14.322-.525.322c-.384 0-.524-.322-.524-.322v-.442z' fill='%23fff'/%3e%3cpath d='M2132.953 1390.524h.824v.305a.466.466 0 0 1-.412.236.468.468 0 0 1-.412-.236zm1.047-.223h-1.27l.009.599a.686.686 0 0 0 .626.388c.453 0 .62-.372.627-.388l.008-.045zm-.522 4.691c-.267 0-.5-.26-.5-.555 0-.285.23-.526.5-.526.284 0 .515.236.515.526 0 .295-.24.555-.515.555m0-1.177c-.322 0-.595.285-.595.622 0 .346.278.65.595.65.33 0 .61-.297.61-.65a.617.617 0 0 0-.61-.622'/%3e%3cpath d='M2119.09 1372.881s1.747.176 3.663.176m-3.75-.647s1.441.106 3.34.158m-3.428-.632s1.228.071 3.095.15m-3.151-.587s.957.024 2.823.104m-2.868-.533s1.114.038 2.563.08m-2.591-.466s1.514.043 2.36.065m-2.4-.433s1.414.002 2.083.022m-2.143-.388h1.838m13.319 3.13s5.13.024 12.64-.143m-12.698-.342s3.523.043 11.015-.046m-11.155-.479s7.256.136 9.732.06m-9.8-.497s6.258.1 8.28.035m-8.335-.461s5.32.074 6.923.056m-6.96-.441s4.284.043 5.13.045m-5.179-.411s2.682-.02 3.351-.016m-3.42-.395s1.402.01 1.838 0' fill='none' stroke='%23000' stroke-width='.198' stroke-linecap='round' stroke-miterlimit='3.864'/%3e%3cpath d='M2143.108 1204.16c.66-6.117 1.664-16.554-10.437-28.31 4.47-4.648 10.437-7.795 19.884-7.616 9.447.149 16.884-.18 25.505 7.766-3.807 3.149-14.244 12.086-9.942 28.16z' fill='%23f0e53c'/%3e%3cpath d='M2143.108 1204.16c.66-6.117 1.664-16.554-10.437-28.31 4.47-4.648 10.437-7.795 19.884-7.616 9.447.149 16.884-.18 25.505 7.766-3.807 3.149-14.244 12.086-9.942 28.16z' fill='none' stroke='%23473125' stroke-width='.276'/%3e%3cpath d='m2179.162 1204.629 1.188-3.188c.332 1.33.437 2.344.557 4.03l1.324-3.2c.667 1.463.914 4.315.914 4.315l.84-3.173c1.613 2.388 3.579 6.35 4.047 8.675l.229-3.937 1.258 4.998.4-3.053c1.43 4.316 2.185 4.511 1.282 11.14-.898 6.583-6.155 10.644-8.391 11.437-1.268.45-2 1.937-6.055 3.513-3.038 1.178-4.89.749-6.372 1.229-1.5.51-3.535 1.554-7.086 1.344-4.065-.242-3.268-.531-6.17-.773-2.488-.206-5.053.663-9.027-.391-3.697-.981-8.783-5.414-11.833-8.277-3.265-3.064-5.891-6.93-7.63-11.987l1.65.562c-1.618-3.223-1.826-6.794-1.826-6.794l1.583.864s-.343-1.712-.277-3.263l2.18 1.653s-.49-2.253-.332-3.921c0 0 1.16 1.014 2.162 2.087 0 0-.155-2.494.099-4.181l2.11 2.509s-.048-2.142.25-4.037l1.826 2.59s.068-1.944.54-4.015l1.754 2.741s.117-1.816.73-3.794l1.713 2.808c.476-2.062.498-2.509 1.728-4.686l1.952 3.581s.797-2.803 2.385-4.686l1.74 3.898s.313-2.08 1.964-4.408l1.827 4.154s.392-2.235 1.915-4.393c0 0 1.26 2.21 1.892 4.393l2.254-4.393s1.42 2.066 2.046 4.783l2.236-4.176s1.22 2.36 1.835 4.637l1.575-4.434c.546 1.354 1.285 3.237 1.542 4.706l1.057-4.146s.875 2.012 1.158 4.443l1.37-3.676s.707 2.121.77 4.072l1.225-3.345s.479 1.904.542 3.821l1.137-3.184s.496 1.82.604 3.786l1.006-3.133s.494 1.654.603 3.874' fill='%23f0e53c'/%3e%3cpath d='m2179.162 1204.629 1.188-3.188c.332 1.33.437 2.344.557 4.03l1.324-3.2c.667 1.463.914 4.315.914 4.315l.84-3.173c1.613 2.388 3.579 6.35 4.047 8.675l.229-3.937 1.258 4.998.4-3.053c1.43 4.316 2.185 4.511 1.282 11.14-.898 6.583-6.155 10.644-8.391 11.437-1.268.45-2 1.937-6.055 3.513-3.038 1.178-4.89.749-6.372 1.229-1.5.51-3.535 1.554-7.086 1.344-4.065-.242-3.268-.531-6.17-.773-2.488-.206-5.053.663-9.027-.391-3.697-.981-8.783-5.414-11.833-8.277-3.265-3.064-5.891-6.93-7.63-11.987l1.65.562c-1.618-3.223-1.826-6.794-1.826-6.794l1.583.864s-.343-1.712-.277-3.263l2.18 1.653s-.49-2.253-.332-3.921c0 0 1.16 1.014 2.162 2.087 0 0-.155-2.494.099-4.181l2.11 2.509s-.048-2.142.25-4.037l1.826 2.59s.068-1.944.54-4.015l1.754 2.741s.117-1.816.73-3.794l1.713 2.808c.476-2.062.498-2.509 1.728-4.686l1.952 3.581s.797-2.803 2.385-4.686l1.74 3.898s.313-2.08 1.964-4.408l1.827 4.154s.392-2.235 1.915-4.393c0 0 1.26 2.21 1.892 4.393l2.254-4.393s1.42 2.066 2.046 4.783l2.236-4.176s1.22 2.36 1.835 4.637l1.575-4.434c.546 1.354 1.285 3.237 1.542 4.706l1.057-4.146s.875 2.012 1.158 4.443l1.37-3.676s.707 2.121.77 4.072l1.225-3.345s.479 1.904.542 3.821l1.137-3.184s.496 1.82.604 3.786l1.006-3.133s.494 1.654.603 3.874z' fill='none' stroke='%23473125' stroke-width='.276' stroke-miterlimit='10'/%3e%3cpath d='M2133.92 1209.08c3.674 8.17 12.449 16.49 20.603 18.29m-21.946-15.877c2.083 3.343 6.977 9.28 12.608 12.4m-14.821-11.367c1.802 2.7 9.039 10.678 16.77 13.392m-17.001-10.573c6.364 6.793 14.246 13.275 24.03 12.615m-23.459-9.468c5.283 5.222 14.48 11.49 24.292 10.02m-23.899-7.227c5.405 4.38 15.827 11.452 24.352 7.576m-22.189-3.919c4.076 2.909 15.026 9.372 23.253 4.573m-19.846-.84c5.589 3.362 14.645 5.635 19.532 1.485m-15.879 1.829c3.778 2.189 11.611 2.98 15.926-1.26m-7.963 6.445c3.836-1.977 8.121-2.055 9.963-7.463m-3.25 7.917c1.653-1.652 2.903-3.903 3.158-6.393m-14.056 3.903c4.851 1.08 11.192-1.92 12.438-3.75m-5.053 6.24c2.04-1.05 5.278-3.321 6.057-5.54m4.86 6.285c-1.995-2.49-3.342-6.263-3.837-9.112m8.828 8.542c-2.938-1.498-5.233-2.519-6.947-6.319m12.144 4.911c-4.552-.652-9.328-3.685-12.342-7.523m19.836 4.945c-5.421.05-6.747-1.106-11.493-2.215m20.652-7.517c-2.412 5.956-7.624 8.626-15.586 7.774m-9.765-2.977c3.153 1.334 6.822 1.628 10.195 1.697m1.411.001c8.022-.3 13.868-8.936 14.08-16.554m-12.925 14.904c6.304-2.043 11.365-8.426 11.425-15.323m-5.54 16.123c5.54-2.813 7.34-8.006 7.834-13.98m-18.608 11.358c7.902-1.11 14.564-8.06 14.83-16.08m-15.07 17.657c7.243-.916 13.897-5.922 15.307-12.818m-23.09 12.163c2.641.48 3.537.549 6.486.729m-7.233-1.717c3.763-.42 6.214-1.265 8.95-2.474m-9.462 2.113c1.8-.51 4.248-2.054 5.673-3.224m-6.716 1.814c1.616-1.097 2.868-1.813 4.942-3.349m-2.856-2.018c-1.52 1.855-2.654 4.049-3.77 5.927m.659-5.342c-.496 1.199-1.154 2.549-1.648 3.794m-1.3-3.794c-.444 1.664-.531 3.225-.155 5.106m-5.117-10.069c.854 3.718 1.87 6.359 4.277 9.506m-9.492-10.533c1.975 4.078 5.866 9.129 9.522 11.769m-13.803-10.923c1.978 3.146 7.229 9.047 13.952 11.381m-16.221-11.2c2.682 3.718 8.968 10.069 16.356 12.086m16.555-3.659c6.64-2.82 9.775-6.657 10.855-13.734m-11.605 12.305c5.046-3.718 8.967-10.829 9.434-18.364m-12.769 18.473c6.243-4.048 10.062-10.793 10.726-18.779m-12.935 17.431c5.259-4.373 8.123-9.971 8.527-17.185m-2.983 13.824c3.096-3.988 4.403-8.152 4.724-12.95m-.661 15.579c3.005-2.853 5.152-6.866 6.304-12.645m-19.143 14.245c5.402-3.928 9.36-11.494 9.843-18.232m-9.35 14.885c3.257-4.308 4.96-8.839 5.286-15.798m-6.766 12.997c2.234-4.333 2.879-6.926 3.556-13.164m-7.123 11.276c.665-4.47 1.454-10.017 1.243-15.325m-3.988 19.794c-.139-5.013.966-11.107 1.215-16.735m-3.351 15.061c-1.162-6.56-.38-9.434-.247-14.641m-2.212 11.665c-.657-3.93-1.324-6.17-1.274-11.665m2.402 19.258c-1.79-2.795-4.61-9.277-5.555-12.105-.648-1.946-1.112-4.513-1.057-6.582m-.432 10.314c-1.812-3.78-2.414-5.098-3.173-9.235m-2.402.989c.478 2.568 2.035 6.616 3.16 8.415m-5.465-7.083c.255 1.83 1.965 5.88 3.337 7.529m-5.472-6.293c.956 2.836 1.732 4.48 3.308 6.64m18.387 5.643c.335-1.16.905-1.884 1.405-4.519m1.325 11.484c2.423-.589 3.899-1.424 5.249-2.443m-3.261 5.31c1.123.68 4.151 2.09 4.991 2.658m-8.024-3.141c.43.75.47 1 .879 1.913m-2.426-2.662c-.614 1.141-.407.93-1.172 1.949m.619-1.703c-1.722.658-3.193 1.782-6.525 1.973m6.797-2.491c-.755-.058-1.882-.388-2.585-.596m3.058-.871c-.33-1.26-.31-3.755.66-6.718m-.195 6.122c.284-.96 2.592-5.13 3.057-6.029m-1.856 6.864c.577-.835 1.552-.918 2.233-1.266m-2.399 2.527c.954.167 1.365.719 2.234 1.139m-2.486-1.831c1.076-.339 4.263.271 5.44.091m-6.546.899c-.215.901-.657 1.991-1.168 2.76m3.351 1.773c.377.82 1.3 2.819 2.699 3.937m-18.149-21.826c1.83 3.161 4.397 5.635 7.305 8.56m8.52-3.863c.45-.955 1.035-1.837 1.645-2.85m-15.514-20.038c-.338-11.813-4.495-17.506-8.52-24.681m10.527 23.605c-.409-5.552-.838-7.98-1.678-11.16m-.42-1.678c-1.656-4.287-3.463-8.187-6-12.085m-6.342 3.898c2.896 3.448 6.134 7.616 8.113 12.174m-6.15-13.509c2.657 3.8 4.637 7.203 6.826 11.86m21.181 7.902c.953-4.63 1.568-7.135 3.247-10.854m-5.971 10.39c1.274-7.648 3.164-15.084 7.872-21.203m-1.546 9.917c1.557-3.288 3.523-5.638 5.681-8.148m-16.97 20.843c.164-7.888-.715-17.533-.715-25.39m-.948 22.076c-.224-7.871-1.168-15.153-1.915-22.076m7.157 21.671c.467-4.918 1.55-15.029 5.118-20.707m-6.95 23.017c.226-6.868.37-16.156 1.49-23.655m-14.422.142c1.07 2.83 2.504 7.501 3.44 11.052m-6.08-10.301c1.808 3.63 4.458 8.956 5.609 13.5m2.241-14.719c.46 2.956 1.19 6.718 1.619 10.613m-.655 16.936c0-3.449-.593-9.595-1.182-13.345m14.89 9.366c.658-2.906 1.095-4.364 1.981-6.816m-4.8 12.025c.525-3.51 1.166-6.526 1.902-9.776m3.9-.807c.81-2.055 1.452-3.478 3.389-5.911m-7.04 5.621c1.251-4.314 1.866-5.69 3.526-9.044m.592-1.059a31.765 31.765 0 0 1 2.922-4.314m0 6.421c.884-1.195 2.564-2.666 3.7-3.862m-32.337 13.586c.974 2.677 1.214 4.761 1.55 8.484m1.355 2.928c-.016-1.2-.235-4.033-.47-5.477m9.447 2.204c.104-1.32.029-3.103 0-4.452m-1.737-1.858c-.156-3.538-.61-7.89-.806-9.419m-2.649-2.638c-.373-2.592-1.099-5.655-1.488-6.886m-1.484 4.816c-.89-2.364-1.604-4.291-2.598-6.371m17.436 27.333c.427-2.908.722-4.572 1.443-7.706m.353 9.402c.23-1.528.442-3.148.685-4.447m3.82-10.099c.743-1.874 1.6-3.076 2.63-4.41m-11.805 47.638c.375-.645.375-.645.705-1.139m-.611 1.89c.718.426 1.164 1.141 1.436 1.664m1.197-.252c1.287 1.136 2.205 1.43 3.782 2.42m-3.336-3.255c1.28.502 3.336 1.821 5.613 2.477m-8.518-3.455c.951-.147 2.362.027 3.746.25m-4.436-.76c.287-.922 2.483-4.8 3.282-6.076m-3.761 6.11c-.514-1.202-2.646-2.362-3.987-4.437m3.763 4.673c-1.213-.56-3.713-1.173-5.643-2.454m4.791 3.291c-.776.062-1.418-.288-2.181-.37m2.283 3.595c-1.446 2.108-3.604 2.776-4.239 3.058m5.881-6.315c.501 1.08.848 2.422 1.432 3.742m-1.621-1.507c.114.872.378 1.409.378 2.373m1.867-2.68c.302.456.599 1.155 1.196 1.814m-1.196-3.965c1.117.148 1.543.29 2.63.52m-.86-3.292c2.432-1.067 5.753-3.682 7.63-5.762m-9.586 6.007c.553-.75 1.834-2.189 2.448-2.729m-4.582 1.978c.362-2.458.7-4.462 1.9-6.619m-3.936 4.813c-.825-1.63-1.32-3.484-1.575-4.7m-2.367 8.966a18.75 18.75 0 0 1-4.137-1.037m4.764 2.903c-1.855.411-6.07-.075-7.936-.75m13.74 5.159c.13 1.229-.253 3.43-.253 4.12m3.697-5.214c.826 1.147 2.268 2.653 5.387 3.751m-1.692-3.834c3.576 2.52 8.525 2.938 10.55 3.237m-7.577-11.686c1.434-.93 2.782-1.893 4.097-3.072m-6.217 2.577c1.979-1.43 3.432-2.77 4.902-4.303m.811-2.481c1.188-1.618 2.824-5.001 3.258-7.026m.206-1.127c.36-1.618.703-4.655.72-6.244m-8.862 17.312c5.548-5.652 6.998-12.917 7.167-17.915m-7.913 15.412c2.276-3.466 4.314-8.277 4.613-13.532m-6.004 10.133c1.825-3.669 2.631-10.232 2.346-13.957m9.964 23.622c4.275-2.879 6.294-6.267 7.145-10.315m.242-1.217c.136-1.462.275-2.18.136-4.356m-1.224 1.742c.113-1.101.063-3.026-.069-3.807m-.157 19.911c2.172-1.8 4.174-6.363 4.344-8.009m-3.84 9.987c1.437-1.191 3.536-3.757 4.578-7.7m.367 3.795c.314-.75.616-2.019.782-2.83m-41.662-21.805c-.465 3.786.063 8.288 1.558 13.539m15.429-14.754c.136-2.058.479-6.04 1.848-9.761m-.955 7.995c.03-1.764.708-5.604 1.305-7.178m-2.964 7.842c.068-1.024.176-1.66.353-3.008m-1.702-5.667c.503-2.186 1.103-3.938 1.805-5.723m.931-2.666c.585-1.261 1.712-3.45 2.43-4.65' fill='none' stroke='%23473125' stroke-width='.248' stroke-linecap='round'/%3e%3cpath d='M2194.754 1315.191s.154-.721.515-1.103c.403-.426 1.064-.437 1.91-.305.72.112.805.28 1.129.663l.18-3.248-3.734.258z' fill='%23292723'/%3e%3cpath d='M2115.954 1627.398c-7.588-8.623-2.91-14.875-19.718-17.559-2.954-.479-6.673 1.02-9.461-2.458-.585-.735-.705-2.865-1.321-3.284-2.938-2.039-2.307-4.889-1.348-6.944 2.879 5.61 3.343 1.756 7.81 4.5 3.39 2.083 4.11 3.508 9.883 3.87-.3-4.155-2.894-6.329-3.6-9.434-.718-3.149.932-7.45 4.545-7.242-2.624 5.024 2.803 3.33 2.158 7.602-.81 5.294 3.794 10.782 7.123 8.907 3.479-1.964 10.42-4.768 9.52-9.37 2.88 2.907 2.536 6.506-.148 8.665-3.06 2.475-7.827 3.134-5.563 11.336 1.169 4.258 6.973 9.821 8.92 14.47z' fill='%23f0e53c'/%3e%3cpath d='M2115.954 1627.398c-7.588-8.623-2.91-14.875-19.718-17.559-2.954-.479-6.673 1.02-9.461-2.458-.585-.735-.705-2.865-1.321-3.284-2.938-2.039-2.307-4.889-1.348-6.944 2.879 5.61 3.343 1.756 7.81 4.5 3.39 2.083 4.11 3.508 9.883 3.87-.3-4.155-2.894-6.329-3.6-9.434-.718-3.149.932-7.45 4.545-7.242-2.624 5.024 2.803 3.33 2.158 7.602-.81 5.294 3.794 10.782 7.123 8.907 3.479-1.964 10.42-4.768 9.52-9.37 2.88 2.907 2.536 6.506-.148 8.665-3.06 2.475-7.827 3.134-5.563 11.336 1.169 4.258 6.973 9.821 8.92 14.47z' fill='none' stroke='%23473125' stroke-width='1.048'/%3e%3cpath d='M2133.108 1600.992c0 4.064 1.453 6.478 5.367 6.028 4.558-.525 14.32-3.779 17.65.78 2.113 2.91 1.423 8.668 1.364 12.16 2.083-.03 4.153-.09 6.252-.119-.765-3.899-2.489-11.217-.749-15.055 1.753-3.854 8.005-2.983 7.196-7.828 1.95-1.394 1.875-4.062.494-6.132-.464 2.88-2.187 2.4-3.659 3.614-.658.554-2.294.15-3.282.93-.796.63-1.02 1.724-1.56 2.084-5.504 3.764-4.843-2.879-6.028-4.844-1.41-2.354.36-5.248-3.748-4.843-.569-.915-1.41-2.099.075-3.643-8.366-1.86-.375 9.806-.78 13.854-3.524.405-5.383-7.977-10.736-5.907-.915-.765-2.025-2.429-1.485-4.273-2.488 1.873-2.608 4.708-.345 7.167-3.267 4.723 6.553 4.198 10.347 8.006.105-.029.284.046.15-.014-3.853.63-6.163-1.799-9.447-2.1-3.058-.269-3.763 2.655-7.076.135' fill='%23f0e53c'/%3e%3cpath d='M2133.108 1600.992c0 4.064 1.453 6.478 5.367 6.028 4.558-.525 14.32-3.779 17.65.78 2.113 2.91 1.423 8.668 1.364 12.16 2.083-.03 4.153-.09 6.252-.119-.765-3.899-2.489-11.217-.749-15.055 1.753-3.854 8.005-2.983 7.196-7.828 1.95-1.394 1.875-4.062.494-6.132-.464 2.88-2.187 2.4-3.659 3.614-.658.554-2.294.15-3.282.93-.796.63-1.02 1.724-1.56 2.084-5.504 3.764-4.843-2.879-6.028-4.844-1.41-2.354.36-5.248-3.748-4.843-.569-.915-1.41-2.099.075-3.643-8.366-1.86-.375 9.806-.78 13.854-3.524.405-5.383-7.977-10.736-5.907-.915-.765-2.025-2.429-1.485-4.273-2.488 1.873-2.608 4.708-.345 7.167-3.267 4.723 6.553 4.198 10.347 8.006.105-.029.284.046.15-.014-3.853.63-6.163-1.799-9.447-2.1-3.058-.269-3.763 2.655-7.076.135z' fill='none' stroke='%23473125' stroke-width='1.048'/%3e%3cpath d='M2119.237 1730.093c-5.248 4.98-10.825 8.952-18.112 18.354-7.288 9.416-33.483 29.838-61.507 39.78-28.01 9.956-75.707 33.767-56.44 5.623 1.455-1.425-.163-2.729-4.467-.375-4.288 2.354-12.745 10.481-20.002 12.564-7.258 2.1-46.333 1.831-57.16-4.153-10.84-5.966-3.598-9.295 10.812-15.144 14.395-5.848 41.894-17.887 58.132-30.453 16.225-12.58 34.563-23.572 41.896-27.499 7.332-3.93 4.557-3.675 10.795-3.93 6.224-.255 57.189-4.707 64.177-36.136-4.53-3.404-34.113-57.352-13.436-60.502 20.692-3.133 35.492-2.67 38.16-1.619l-.99-3.929s6.163 1.815 8.264-2.368c3.147 1.83 5.562 8.141 10.795 8.395 5.249.271 8.726 1.095 12.91-.733 4.184-1.83 12.566-8.907 14.41-12.566 2.353-.525 3.643.54 5.232-1.049 1.41-1.409 5.758 7.332 5.758 12.835 0 5.487 4.979 4.184 8.112.255 3.149-3.93 12.836-29.854 18.339-29.585 5.503.255 6.027 2.88 7.857 3.93 2.624-1.845 6.55.51 8.382 4.183 5.757-1.05 12.834 2.1 12.834 9.431 6.283-.525 10.21 1.83 10.21 7.333 3.93 0 10.738 2.608 10.467 8.382 3.405.523 11.53 5.487 6.029 10.465-5.503 4.978-45.824 26.72-62.062 31.683-16.238 4.978-24.097 9.702-24.352 13.885-.268 4.198 17.274 7.332 23.827 24.351 6.553 17.033-8.382 23.317.78 29.074 9.176 5.758 35.626 22.777 65.209 32.477 29.6 9.687 72.799 26.706 63.907 29.585-8.906 2.88-30.903 8.38-48.972 9.16-18.083.796-76.216 1.576-93.49-4.182-17.287-5.758-33.003-8.907-43.213-34.563-10.212-25.67-8.382-42.434-12.311-48.972z'/%3e%3cpath d='M2119.237 1730.093c-5.248 4.98-10.825 8.952-18.112 18.354-7.288 9.416-33.483 29.838-61.507 39.78-28.01 9.956-75.707 33.767-56.44 5.623 1.455-1.425-.163-2.729-4.467-.375-4.288 2.354-12.745 10.481-20.002 12.564-7.258 2.1-46.333 1.831-57.16-4.153-10.84-5.966-3.598-9.295 10.812-15.144 14.395-5.848 41.894-17.887 58.132-30.453 16.225-12.58 34.563-23.572 41.896-27.499 7.332-3.93 4.557-3.675 10.795-3.93 6.224-.255 57.189-4.707 64.177-36.136-4.53-3.404-34.113-57.352-13.436-60.502 20.692-3.133 35.492-2.67 38.16-1.619l-.99-3.929s6.163 1.815 8.264-2.368c3.147 1.83 5.562 8.141 10.795 8.395 5.249.271 8.726 1.095 12.91-.733 4.184-1.83 12.566-8.907 14.41-12.566 2.353-.525 3.643.54 5.232-1.049 1.41-1.409 5.758 7.332 5.758 12.835 0 5.487 4.979 4.184 8.112.255 3.149-3.93 12.836-29.854 18.339-29.585 5.503.255 6.027 2.88 7.857 3.93 2.624-1.845 6.55.51 8.382 4.183 5.757-1.05 12.834 2.1 12.834 9.431 6.283-.525 10.21 1.83 10.21 7.333 3.93 0 10.738 2.608 10.467 8.382 3.405.523 11.53 5.487 6.029 10.465-5.503 4.978-45.824 26.72-62.062 31.683-16.238 4.978-24.097 9.702-24.352 13.885-.268 4.198 17.274 7.332 23.827 24.351 6.553 17.033-8.382 23.317.78 29.074 9.176 5.758 35.626 22.777 65.209 32.477 29.6 9.687 72.799 26.706 63.907 29.585-8.906 2.88-30.903 8.38-48.972 9.16-18.083.796-76.216 1.576-93.49-4.182-17.287-5.758-33.003-8.907-43.213-34.563-10.212-25.67-8.382-42.434-12.311-48.972z' fill='none' stroke='%2359595b' stroke-width='1.571'/%3e%3cpath d='M2087.284 1685.05a4.216 4.216 0 0 0-4.004 2.94c-8.816 28.144-42.943 30.917-59.797 32.597-2.848.286-7.407.69-9.206 1.724-21.097 12.056-54.82 37.306-78.48 50.577-21.037 11.785-67.159 24.335-66.636 26.6.525 2.25 49.123-8.816 71.208-21.203 21.863-12.265 63.081-36.796 77.416-48.057 1.485-.195 3.39-.39 5.547-.599 18.654-1.844 57.46-5.698 67.955-39.136a4.19 4.19 0 0 0-4.003-5.443' fill='%23fff'/%3e%3cpath d='M2087.284 1685.05a4.216 4.216 0 0 0-4.004 2.94c-8.816 28.144-42.943 30.917-59.797 32.597-2.848.286-7.407.69-9.206 1.724-21.097 12.056-54.82 37.306-78.48 50.577-21.037 11.785-67.159 24.335-66.636 26.6.525 2.25 49.123-8.816 71.208-21.203 21.863-12.265 63.081-36.796 77.416-48.057 1.485-.195 3.39-.39 5.547-.599 18.654-1.844 57.46-5.698 67.955-39.136a4.19 4.19 0 0 0-4.003-5.443z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M1883.017 1805.26c-8.501 3.944-.48 6.913 14.155 1.05 6.448-2.593 20.527-8.592 32.462-16.763 14.935-10.211-39.301 12.31-46.617 15.713' fill='%23fff'/%3e%3cpath d='M1883.017 1805.26c-8.501 3.944-.48 6.913 14.155 1.05 6.448-2.593 20.527-8.592 32.462-16.763 14.935-10.211-39.301 12.31-46.617 15.713z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2084.15 1682.262c-1.35 0-2.667.645-3.478 1.844-1.29 1.919-.794 4.528 1.125 5.818 13.644 9.222 30.093 25.566 33.992 36.99 1.544 4.515 2.758 10.437 4.049 16.705 2.413 11.8 4.257 26.945 10.392 37.8 11.138 19.703 26.854 27.62 52.059 31.728 30.753 5.009 93.879 5.714 116.312-.45 20.96-5.742 63.934-21.426 63.14-23.616-.78-2.174-43.033 9.417-65.36 15.535-21.127 5.788-83.414 5.039-112.758.255-26.15-4.26-35.402-15.19-43.618-29.734-5.487-9.701-9.672-22.012-11.966-33.198-1.334-6.537-2.594-12.715-4.32-17.737-5.247-15.34-25.144-33.048-37.23-41.22a4.202 4.202 0 0 0-2.338-.72' fill='%23fff'/%3e%3cpath d='M2084.15 1682.262c-1.35 0-2.667.645-3.478 1.844-1.29 1.919-.794 4.528 1.125 5.818 13.644 9.222 30.093 25.566 33.992 36.99 1.544 4.515 2.758 10.437 4.049 16.705 2.413 11.8 4.257 26.945 10.392 37.8 11.138 19.703 26.854 27.62 52.059 31.728 30.753 5.009 93.879 5.714 116.312-.45 20.96-5.742 63.934-21.426 63.14-23.616-.78-2.174-43.033 9.417-65.36 15.535-21.127 5.788-83.414 5.039-112.758.255-26.15-4.26-35.402-15.19-43.618-29.734-5.487-9.701-9.672-22.012-11.966-33.198-1.334-6.537-2.594-12.715-4.32-17.737-5.247-15.34-25.144-33.048-37.23-41.22a4.202 4.202 0 0 0-2.338-.72z' fill='none' stroke='%23909294' stroke-width='2.095'/%3e%3cpath d='M1874.02 1798.859c-8.893 2.879-1.289 6.792 13.93 2.744 6.717-1.77 21.427-6.029 34.277-12.686 16.06-8.322-40.516 7.452-48.208 9.942' fill='%23fff'/%3e%3cpath d='M1874.02 1798.859c-8.893 2.879-1.289 6.792 13.93 2.744 6.717-1.77 21.427-6.029 34.277-12.686 16.06-8.322-40.516 7.452-48.208 9.942z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M1893.378 1810.299c-8.083 4.692.164 6.913 14.2-.254 6.176-3.181 19.657-10.453 30.797-19.674 13.931-11.545-38.01 15.864-44.997 19.928' fill='%23fff'/%3e%3cpath d='M1893.378 1810.299c-8.083 4.692.164 6.913 14.2-.254 6.176-3.181 19.657-10.453 30.797-19.674 13.931-11.545-38.01 15.864-44.997 19.928z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M1904.623 1811.873c-7.932 4.978.405 6.913 14.17-.734 6.073-3.39 19.282-11.125 30.108-20.722 13.511-12.027-37.44 17.168-44.278 21.456' fill='%23fff'/%3e%3cpath d='M1904.623 1811.873c-7.932 4.978.405 6.913 14.17-.734 6.073-3.39 19.282-11.125 30.108-20.722 13.511-12.027-37.44 17.168-44.278 21.456z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M1916.365 1811.977c-7.903 5.024.435 6.913 14.169-.809 6.057-3.404 19.237-11.2 30.004-20.873 13.465-12.069-37.351 17.35-44.173 21.682' fill='%23fff'/%3e%3cpath d='M1916.365 1811.977c-7.903 5.024.435 6.913 14.169-.809 6.057-3.404 19.237-11.2 30.004-20.873 13.465-12.069-37.351 17.35-44.173 21.682z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M1930.669 1812.143c-7.812 5.157.554 6.897 14.155-1.08 5.997-3.508 19.027-11.546 29.614-21.397 13.255-12.31-37.022 18.01-43.77 22.477' fill='%23fff'/%3e%3cpath d='M1930.669 1812.143c-7.812 5.157.554 6.897 14.155-1.08 5.997-3.508 19.027-11.546 29.614-21.397 13.255-12.31-37.022 18.01-43.77 22.477z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M1945.303 1812.533c-7.467 5.638.99 6.853 14.064-1.95 5.758-3.883 18.264-12.73 28.22-23.21 12.446-13.137-35.837 20.286-42.284 25.16' fill='%23fff'/%3e%3cpath d='M1945.303 1812.533c-7.467 5.638.99 6.853 14.064-1.95 5.758-3.883 18.264-12.73 28.22-23.21 12.446-13.137-35.837 20.286-42.284 25.16z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M1961.254 1812.908c-5.783 5.633 1.575 5.775 11.81-3.204 4.526-3.955 14.276-12.88 21.677-22.962 9.25-12.618-28.482 21.285-33.487 26.166' fill='%23fff'/%3e%3cpath d='M1961.254 1812.908c-5.783 5.633 1.575 5.775 11.81-3.204 4.526-3.955 14.276-12.88 21.677-22.962 9.25-12.618-28.482 21.285-33.487 26.166z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M1974.992 1810.674c-4.902 6.432 2.4 5.487 11.2-4.903 3.884-4.574 8.682-8.667 14.5-19.733 7.287-13.854-21.487 19.073-25.7 24.636' fill='%23fff'/%3e%3cpath d='M1974.992 1810.674c-4.902 6.432 2.4 5.487 11.2-4.903 3.884-4.574 8.682-8.667 14.5-19.733 7.287-13.854-21.487 19.073-25.7 24.636z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M1982.115 1810.718c-5.34 6.072 2.023 5.653 11.545-4.078 4.199-4.288 13.24-13.929 19.853-24.56 8.262-13.287-26.78 23.39-31.398 28.638' fill='%23fff'/%3e%3cpath d='M1982.115 1810.718c-5.34 6.072 2.023 5.653 11.545-4.078 4.199-4.288 13.24-13.929 19.853-24.56 8.262-13.287-26.78 23.39-31.398 28.638z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M1990.502 1810.897c-5.8 5.822 2.483 6.202 12.76-3.07 4.517-4.087 17.783-18.354 25.136-28.685 9.203-12.921-32.893 26.73-37.896 31.755' fill='%23fff'/%3e%3cpath d='M1990.502 1810.897c-5.8 5.822 2.483 6.202 12.76-3.07 4.517-4.087 17.783-18.354 25.136-28.685 9.203-12.921-32.893 26.73-37.896 31.755z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2015.386 1796.918c-5.406 6.004 1.948 5.657 11.582-3.953 4.243-4.252 9.353-7.931 16.092-18.47 8.4-13.201-22.996 17.219-27.674 22.423' fill='%23fff'/%3e%3cpath d='M2015.386 1796.918c-5.406 6.004 1.948 5.657 11.582-3.953 4.243-4.252 9.353-7.931 16.092-18.47 8.4-13.201-22.996 17.219-27.674 22.423z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2025.342 1796.16c-5.181 6.209 2.152 5.599 11.42-4.372 4.089-4.395 12.894-14.266 19.217-25.062 7.919-13.478-26.155 24.07-30.637 29.435' fill='%23fff'/%3e%3cpath d='M2025.342 1796.16c-5.181 6.209 2.152 5.599 11.42-4.372 4.089-4.395 12.894-14.266 19.217-25.062 7.919-13.478-26.155 24.07-30.637 29.435z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2036.252 1794.2c-4.602 6.645 2.657 5.372 10.978-5.39 3.672-4.758 11.537-15.381 16.871-26.708 6.665-14.144-23.872 26.34-27.849 32.099' fill='%23fff'/%3e%3cpath d='M2036.252 1794.2c-4.602 6.645 2.657 5.372 10.978-5.39 3.672-4.758 11.537-15.381 16.871-26.708 6.665-14.144-23.872 26.34-27.849 32.099z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2050.009 1786.652c-4.199 6.913 4.183 4.949 11.875-6.281 3.389-4.949 9.401-15.775 14.049-27.38 5.833-14.529-22.296 27.695-25.924 33.661' fill='%23fff'/%3e%3cpath d='M2050.009 1786.652c-4.199 6.913 4.183 4.949 11.875-6.281 3.389-4.949 9.401-15.775 14.049-27.38 5.833-14.529-22.296 27.695-25.924 33.661z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2064.748 1776.816c-3.194 5.878 3.75 4.559 9.67-4.962 2.61-4.2 7.138-13.435 10.497-23.422 4.199-12.49-17.408 23.302-20.167 28.384' fill='%23fff'/%3e%3cpath d='M2064.748 1776.816c-3.194 5.878 3.75 4.559 9.67-4.962 2.61-4.2 7.138-13.435 10.497-23.422 4.199-12.49-17.408 23.302-20.167 28.384z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2075.769 1771.929c-2.79 6.162 4.258 7.137 9.52-2.79 2.31-4.377 6.165-14.095 8.758-24.755 3.24-13.331-15.88 22.222-18.278 27.545' fill='%23fff'/%3e%3cpath d='M2075.769 1771.929c-2.79 6.162 4.258 7.137 9.52-2.79 2.31-4.377 6.165-14.095 8.758-24.755 3.24-13.331-15.88 22.222-18.278 27.545z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2087.823 1763.097c-2.277 6.281 4.396 3.943 8.833-6.343 1.95-4.543 3.613-9.612 4.183-12.655 2.4-12.956-11.034 13.57-13.015 18.998' fill='%23fff'/%3e%3cpath d='M2087.823 1763.097c-2.277 6.281 4.396 3.943 8.833-6.343 1.95-4.543 3.613-9.612 4.183-12.655 2.4-12.956-11.034 13.57-13.015 18.998z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2098.17 1751.941c.465 9.505 9.972-12.311 10.06-15.414.092-3.329-10.21 12.16-10.06 15.414' fill='%23fff'/%3e%3cpath d='M2098.17 1751.941c.465 9.505 9.972-12.311 10.06-15.414.092-3.329-10.21 12.16-10.06 15.414z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2104.573 1746.602c-1.71 6.883 7.497-7.436 7.587-10.54.09-3.33-6.837 7.497-7.587 10.54' fill='%23fff'/%3e%3cpath d='M2104.573 1746.602c-1.71 6.883 7.497-7.436 7.587-10.54.09-3.33-6.837 7.497-7.587 10.54z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2281.596 1781.42c8.637.135 28.548 1.11 28.548 2.91 0 1.813-16.763 6.267-35.1 5.742-18.325-.525-27.485-9.177 6.552-8.652' fill='%23fff'/%3e%3cpath d='M2281.596 1781.42c8.637.135 28.548 1.11 28.548 2.91 0 1.813-16.763 6.267-35.1 5.742-18.325-.525-27.485-9.177 6.552-8.652z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2259.975 1772.559c8.59.869 28.34 3.508 28.188 5.308-.15 1.799-17.229 4.827-35.447 2.759-18.218-2.085-26.63-11.456 7.26-8.067' fill='%23fff'/%3e%3cpath d='M2259.975 1772.559c8.59.869 28.34 3.508 28.188 5.308-.15 1.799-17.229 4.827-35.447 2.759-18.218-2.085-26.63-11.456 7.26-8.067z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2278.448 1791.645c4.257 1.321 34.456 1.906 42.164 3.134 7.706 1.23.27-9.685-21.728-7.587-21.997 2.084-29.598 1.56-20.436 4.453' fill='%23fff'/%3e%3cpath d='M2278.448 1791.645c4.257 1.321 34.456 1.906 42.164 3.134 7.706 1.23.27-9.685-21.728-7.587-21.997 2.084-29.598 1.56-20.436 4.453z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2305.317 1795.59c6.463.089 21.367.869 21.383 2.489 0 1.618-12.522 5.667-26.24 5.261-13.72-.388-20.634-8.08 4.857-7.75' fill='%23fff'/%3e%3cpath d='M2305.317 1795.59c6.463.089 21.367.869 21.383 2.489 0 1.618-12.522 5.667-26.24 5.261-13.72-.388-20.634-8.08 4.857-7.75z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2226.867 1769.23c3.628 1.229 29.465 1.769 36.06 2.893 6.598 1.125.226-8.906-18.592-6.986-18.818 1.933-25.31 1.454-17.468 4.093' fill='%23fff'/%3e%3cpath d='M2226.867 1769.23c3.628 1.229 29.465 1.769 36.06 2.893 6.598 1.125.226-8.906-18.592-6.986-18.818 1.933-25.31 1.454-17.468 4.093z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2212.802 1763.097c3.748 1.14 30.408 1.634 37.2 2.684 6.808 1.048.24-8.293-19.178-6.509-19.403 1.8-26.105 1.35-18.022 3.825' fill='%23fff'/%3e%3cpath d='M2212.802 1763.097c3.748 1.14 30.408 1.634 37.2 2.684 6.808 1.048.24-8.293-19.178-6.509-19.403 1.8-26.105 1.35-18.022 3.825z' fill='none' stroke='%23909294' stroke-width='1.366'/%3e%3cpath d='M2198.738 1753.545c3.073 1.65 25.835 4.512 31.532 6.327 5.698 1.815 1.17-9.73-15.653-9.28-16.823.464-22.508-.646-15.879 2.953' fill='%23fff'/%3e%3cpath d='M2198.738 1753.545c3.073 1.65 25.835 4.512 31.532 6.327 5.698 1.815 1.17-9.73-15.653-9.28-16.823.464-22.508-.646-15.879 2.953z' fill='none' stroke='%23909294' stroke-width='1.377'/%3e%3cpath d='M2181.629 1742.69c2.174 1.89 19.687 6.462 23.93 8.681 4.229 2.234 2.31-9.507-11.005-10.36-13.315-.856-17.633-2.37-12.925 1.68' fill='%23fff'/%3e%3cpath d='M2181.629 1742.69c2.174 1.89 19.687 6.462 23.93 8.681 4.229 2.234 2.31-9.507-11.005-10.36-13.315-.856-17.633-2.37-12.925 1.68z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2177.91 1734.818c2.189 1.888 19.702 6.462 23.93 8.697 4.229 2.218 2.326-9.523-10.99-10.377-13.331-.84-17.648-2.369-12.94 1.68' fill='%23fff'/%3e%3cpath d='M2177.91 1734.818c2.189 1.888 19.702 6.462 23.93 8.697 4.229 2.218 2.326-9.523-10.99-10.377-13.331-.84-17.648-2.369-12.94 1.68z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2179.724 1727.56c2.175 1.889 19.703 6.463 23.932 8.697 4.228 2.219 2.308-9.521-11.006-10.377-13.316-.84-17.633-2.37-12.926 1.68' fill='%23fff'/%3e%3cpath d='M2179.724 1727.56c2.175 1.889 19.703 6.463 23.932 8.697 4.228 2.219 2.308-9.521-11.006-10.377-13.316-.84-17.633-2.37-12.926 1.68z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2178.645 1720.858c2.294 1.739 20.047 5.217 24.41 7.183 4.363 1.963 1.725-9.643-11.62-9.658-13.345-.014-17.754-1.275-12.79 2.475' fill='%23fff'/%3e%3cpath d='M2178.645 1720.858c2.294 1.739 20.047 5.217 24.41 7.183 4.363 1.963 1.725-9.643-11.62-9.658-13.345-.014-17.754-1.275-12.79 2.475z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2177.774 1712.866c2.296 1.74 20.05 5.217 24.412 7.167 4.363 1.964 1.725-9.642-11.62-9.656-13.346-.015-17.754-1.274-12.792 2.489' fill='%23fff'/%3e%3cpath d='M2177.774 1712.866c2.296 1.74 20.05 5.217 24.412 7.167 4.363 1.964 1.725-9.642-11.62-9.656-13.346-.015-17.754-1.274-12.792 2.489z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2173.083 1707.452c2.504 1.41 20.587 2.444 25.16 3.778 4.588 1.35.404-9.776-12.82-7.976-13.225 1.8-17.768 1.155-12.34 4.198' fill='%23fff'/%3e%3cpath d='M2173.083 1707.452c2.504 1.41 20.587 2.444 25.16 3.778 4.588 1.35.404-9.776-12.82-7.976-13.225 1.8-17.768 1.155-12.34 4.198z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2167.43 1700.51c-4.709 2.534 15.64.57 19.326 1.574 3.69.99 9.956-6.793-1.784-7.077-8.906-.226-17.543 5.503-17.543 5.503' fill='%23fff'/%3e%3cpath d='M2167.43 1700.51c-4.709 2.534 15.64.57 19.326 1.574 3.69.99 9.956-6.793-1.784-7.077-8.906-.226-17.543 5.503-17.543 5.503z' fill='none' stroke='%23909294' stroke-width='1.571'/%3e%3cpath d='M2164.626 1697.975c-3.42 3.315 13.18-2.174 16.464-1.844 3.283.33 6.927-8.382-2.94-6.612-7.481 1.351-13.524 8.456-13.524 8.456' fill='%23fff'/%3e%3cpath d='M2164.626 1697.975c-3.42 3.315 13.18-2.174 16.464-1.844 3.283.33 6.927-8.382-2.94-6.612-7.481 1.351-13.524 8.456-13.524 8.456z' fill='none' stroke='%23909294' stroke-width='1.452'/%3e%3cpath d='M2161.026 1694.633c-.899 4.333 11.937-4.798 15.115-5.144 3.164-.345 4.618-9.565-4.273-5.833-6.748 2.834-10.842 10.977-10.842 10.977' fill='%23fff'/%3e%3cpath d='M2161.026 1694.633c-.899 4.333 11.937-4.798 15.115-5.144 3.164-.345 4.618-9.565-4.273-5.833-6.748 2.834-10.842 10.977-10.842 10.977z' fill='none' stroke='%23909294' stroke-width='1.424'/%3e%3cpath d='M2058.21 1651.538c-5.321-8.816-2.744-18.309 5.729-21.997 10.616-4.632 14.514.555 21.516 7.527 3.794 3.765 12.326 10.542 5.518 16.51 5.953 1.02 7.752 7.647 3.389 10.555 8.352 7.227-.06 18.414-9.386 18.084-2.864 5.712-9.823 7.243-12.91.794-11.321 3.194-17.588-12.624-13.061-21.006z' fill='%23fff'/%3e%3cpath d='M2058.21 1651.538c-5.321-8.816-2.744-18.309 5.729-21.997 10.616-4.632 14.514.555 21.516 7.527 3.794 3.765 12.326 10.542 5.518 16.51 5.953 1.02 7.752 7.647 3.389 10.555 8.352 7.227-.06 18.414-9.386 18.084-2.864 5.712-9.823 7.243-12.91.794-11.321 3.194-17.588-12.624-13.061-21.006z' fill='none' stroke='%23909294' stroke-width='1.424'/%3e%3cpath d='M2048.553 1666.728c2.596-1.05 4.95-.27 9.657 1.05 4.724 1.304 12.836-.795 12.055-9.177-.794-8.367-7.121-13.614-14.814-10.99-7.707 2.623-18.023 5.502-23.347 5.502-5.308 0-16.043-.525-19.716 7.332-3.658 7.857-2.878 5.758-4.978 6.538-2.085.794-3.404 7.602-1.305 10.481 2.1 2.88 11.516 12.91 19.898 11.815 8.382-1.08 10.48-4.229 15.458-14.169 4.964-9.957 7.092-8.382 7.092-8.382' fill='%23f4ac64'/%3e%3cpath d='M2048.553 1666.728c2.596-1.05 4.95-.27 9.657 1.05 4.724 1.304 12.836-.795 12.055-9.177-.794-8.367-7.121-13.614-14.814-10.99-7.707 2.623-18.023 5.502-23.347 5.502-5.308 0-16.043-.525-19.716 7.332-3.658 7.857-2.878 5.758-4.978 6.538-2.085.794-3.404 7.602-1.305 10.481 2.1 2.88 11.516 12.91 19.898 11.815 8.382-1.08 10.48-4.229 15.458-14.169 4.964-9.957 7.092-8.382 7.092-8.382z' fill='none' stroke='%23473125' stroke-width='1.424'/%3e%3cpath d='M1991.17 1662.53c-.78 4.453 3.404 13.404 11.786 13.36 11.292-.06 12.58-8.637 12.58-10.992 0-2.368-8.936-2.099-10.496-.524-1.559 1.558-7.572 3.657-13.87-1.844' fill='%23f0e53c'/%3e%3cpath d='M1991.17 1662.53c-.78 4.453 3.404 13.404 11.786 13.36 11.292-.06 12.58-8.637 12.58-10.992 0-2.368-8.936-2.099-10.496-.524-1.559 1.558-7.572 3.657-13.87-1.844z' fill='none' stroke='%23473125' stroke-width='1.424'/%3e%3cpath d='M1994.575 1657.49c6.627-2.787 20.737-3.853 20.183 1.905-.54 5.758-7.35 4.184-8.397 2.085-1.035-2.085-5.233-3.66-11.786-3.99' fill='%23f0e53c'/%3e%3cpath d='M1994.575 1657.49c6.627-2.787 20.737-3.853 20.183 1.905-.54 5.758-7.35 4.184-8.397 2.085-1.035-2.085-5.233-3.66-11.786-3.99z' fill='none' stroke='%23473125' stroke-width='1.424'/%3e%3cpath d='M2008.205 1675.89c2.354 4.453 9.942 12.174 16.749 11.32 6.808-.84 10.406-1.334 12.28-4.438 2.655 2.549 2.174 6.478.45 7.527-1.725 1.05-3.404 1.98-5.58 3.869-2.173 1.889-6.776.585-8.92-1.514-2.158-2.1-1.364.524-6.597-1.305-5.248-1.844-.796-2.37-6.553-3.42-5.758-1.033-10.825-4.182-6.718-9.94 4.094-5.758 4.889-2.1 4.889-2.1' fill='%23473125'/%3e%3cpath d='M2008.205 1675.89c2.354 4.453 9.942 12.174 16.749 11.32 6.808-.84 10.406-1.334 12.28-4.438 2.655 2.549 2.174 6.478.45 7.527-1.725 1.05-3.404 1.98-5.58 3.869-2.173 1.889-6.776.585-8.92-1.514-2.158-2.1-1.364.524-6.597-1.305-5.248-1.844-.796-2.37-6.553-3.42-5.758-1.033-10.825-4.182-6.718-9.94 4.094-5.758 4.889-2.1 4.889-2.1z' fill='none' stroke='%23272425' stroke-width='1.424'/%3e%3cpath d='M2013.528 1674.06c3.059-1.05 7.766 7.333 13.524 1.305' fill='none' stroke='%23272425' stroke-width='1.424' stroke-linecap='round'/%3e%3cpath d='M2016.316 1673.266a2.618 2.618 0 0 0 2.624 2.624c1.44 0 2.608-1.17 2.608-2.624a2.61 2.61 0 0 0-2.608-2.61 2.615 2.615 0 0 0-2.624 2.61' fill='%23272425'/%3e%3c/g%3e%3c/svg%3e\"},5779:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 6'%3e%3cpath fill='%2321468B' d='M0 0h9v6H0z'/%3e%3cpath fill='%23FFF' d='M0 0h9v4H0z'/%3e%3cpath fill='%23AE1C28' d='M0 0h9v2H0z'/%3e%3c/svg%3e\"},6902:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-2100 -1470 4200 2940'%3e%3cdefs%3e%3cpath id='i' fill-rule='evenodd' d='M-31.5 0h33a30 30 0 0 0 30-30v-10a30 30 0 0 0-30-30h-33zm13-13h19a19 19 0 0 0 19-19v-6a19 19 0 0 0-19-19h-19z'/%3e%3cpath id='j' transform='translate(-31.5)' d='M0 0h63v-13H12v-18h40v-12H12v-14h48v-13H0z'/%3e%3cpath id='l' d='M-26.25 0h52.5v-12h-40.5v-16h33v-12h-33v-11H25v-12h-51.25z'/%3e%3cpath id='k' d='M-31.5 0h12v-48l14 48h11l14-48V0h12v-70H14L0-22l-14-48h-17.5z'/%3e%3cpath id='b' fill-rule='evenodd' d='M0 0a31.5 35 0 0 0 0-70A31.5 35 0 0 0 0 0m0-13a18.5 22 0 0 0 0-44 18.5 22 0 0 0 0 44'/%3e%3cpath id='d' fill-rule='evenodd' d='M-31.5 0h13v-26h28a22 22 0 0 0 0-44h-40zm13-39h27a9 9 0 0 0 0-18h-27z'/%3e%3cpath id='n' d='M-15.75-22C-15.75-15-9-11.5 1-11.5s14.74-3.25 14.75-7.75c0-14.25-46.75-5.25-46.5-30.25C-30.5-71-6-70 3-70s26 4 25.75 21.25H13.5c0-7.5-7-10.25-15-10.25-7.75 0-13.25 1.25-13.25 8.5-.25 11.75 46.25 4 46.25 28.75C31.5-3.5 13.5 0 0 0c-11.5 0-31.55-4.5-31.5-22z'/%3e%3cuse id='o' xlink:href='%23a' transform='scale(31.5)'/%3e%3cuse id='p' xlink:href='%23a' transform='scale(26.25)'/%3e%3cuse id='r' xlink:href='%23a' transform='scale(21)'/%3e%3cuse id='q' xlink:href='%23a' transform='scale(15)'/%3e%3cuse id='s' xlink:href='%23a' transform='scale(10.5)'/%3e%3cg id='m'%3e%3cclipPath id='c'%3e%3cpath d='M-31.5 0v-70h63V0zM0-47v12h31.5v-12z'/%3e%3c/clipPath%3e%3cuse xlink:href='%23b' clip-path='url(%23c)'/%3e%3cpath d='M5-35h26.5v10H5z'/%3e%3cpath d='M21.5-35h10V0h-10z'/%3e%3c/g%3e%3cg id='h'%3e%3cuse xlink:href='%23d'/%3e%3cpath d='M28 0c0-10 0-32-15-32H-6c22 0 22 22 22 32'/%3e%3c/g%3e%3cg id='a' fill='%23fff'%3e%3cg id='f'%3e%3cpath id='e' transform='rotate(18 0 -1)' d='M0-1v1h.5'/%3e%3cuse xlink:href='%23e' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23f' transform='rotate(72)'/%3e%3cuse xlink:href='%23f' transform='rotate(-72)'/%3e%3cuse xlink:href='%23f' transform='rotate(144)'/%3e%3cuse xlink:href='%23f' transform='rotate(216)'/%3e%3c/g%3e%3c/defs%3e%3crect y='-50%25' x='-50%25' height='100%25' fill='%23009b3a' width='100%25'/%3e%3cpath d='M-1743 0 0 1113 1743 0 0-1113z' fill='%23fedf00'/%3e%3ccircle r='735' fill='%23002776'/%3e%3cclipPath id='g'%3e%3ccircle r='735'/%3e%3c/clipPath%3e%3cpath fill='%23fff' d='M-2205 1470a1785 1785 0 0 1 3570 0h-105a1680 1680 0 1 0-3360 0z' clip-path='url(%23g)'/%3e%3cg transform='translate(-420 1470)' fill='%23009b3a'%3e%3cuse y='-1697.5' xlink:href='%23b' transform='rotate(-7)'/%3e%3cuse y='-1697.5' xlink:href='%23h' transform='rotate(-4)'/%3e%3cuse y='-1697.5' xlink:href='%23i' transform='rotate(-1)'/%3e%3cuse y='-1697.5' xlink:href='%23j' transform='rotate(2)'/%3e%3cuse y='-1697.5' xlink:href='%23k' transform='rotate(5)'/%3e%3cuse y='-1697.5' xlink:href='%23l' transform='rotate(9.75)'/%3e%3cuse y='-1697.5' xlink:href='%23d' transform='rotate(14.5)'/%3e%3cuse y='-1697.5' xlink:href='%23h' transform='rotate(17.5)'/%3e%3cuse y='-1697.5' xlink:href='%23b' transform='rotate(20.5)'/%3e%3cuse y='-1697.5' xlink:href='%23m' transform='rotate(23.5)'/%3e%3cuse y='-1697.5' xlink:href='%23h' transform='rotate(26.5)'/%3e%3cuse y='-1697.5' xlink:href='%23j' transform='rotate(29.5)'/%3e%3cuse y='-1697.5' xlink:href='%23n' transform='rotate(32.5)'/%3e%3cuse y='-1697.5' xlink:href='%23n' transform='rotate(35.5)'/%3e%3cuse y='-1697.5' xlink:href='%23b' transform='rotate(38.5)'/%3e%3c/g%3e%3cuse y='-132' x='-600' xlink:href='%23o'/%3e%3cuse y='177' x='-535' xlink:href='%23o'/%3e%3cuse y='243' x='-625' xlink:href='%23p'/%3e%3cuse y='132' x='-463' xlink:href='%23q'/%3e%3cuse y='250' x='-382' xlink:href='%23p'/%3e%3cuse y='323' x='-404' xlink:href='%23r'/%3e%3cuse y='-228' x='228' xlink:href='%23o'/%3e%3cuse y='258' x='515' xlink:href='%23o'/%3e%3cuse y='265' x='617' xlink:href='%23r'/%3e%3cuse y='323' x='545' xlink:href='%23p'/%3e%3cuse y='477' x='368' xlink:href='%23p'/%3e%3cuse y='551' x='367' xlink:href='%23r'/%3e%3cuse y='419' x='441' xlink:href='%23r'/%3e%3cuse y='382' x='500' xlink:href='%23p'/%3e%3cuse y='405' x='365' xlink:href='%23r'/%3e%3cuse y='30' x='-280' xlink:href='%23p'/%3e%3cuse y='-37' x='200' xlink:href='%23r'/%3e%3cuse y='330' xlink:href='%23o'/%3e%3cuse y='184' x='85' xlink:href='%23p'/%3e%3cuse y='118' xlink:href='%23p'/%3e%3cuse y='184' x='-74' xlink:href='%23r'/%3e%3cuse y='235' x='-37' xlink:href='%23q'/%3e%3cuse y='495' x='220' xlink:href='%23p'/%3e%3cuse y='430' x='283' xlink:href='%23r'/%3e%3cuse y='412' x='162' xlink:href='%23r'/%3e%3cuse y='390' x='-295' xlink:href='%23o'/%3e%3cuse y='575' xlink:href='%23s'/%3e%3c/svg%3e\"},2823:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300'%3e%3cpath fill='%2300abc9' d='M0 0h600v300H0z'/%3e%3cpath fill='%23fae042' d='M0 100h600v100H0z'/%3e%3cpath d='M0 0v300l259.808-150z'/%3e%3c/svg%3e\"},9301:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23ffd520' d='M0 0h900v600H0z'/%3e%3cpath d='M0 600h900V0z' fill='%23ff4e12'/%3e%3cg stroke='%23000' stroke-width='.521'%3e%3cg fill='%23fff'%3e%3cpath d='M481.74 187.59c-4.987-1.77-8.208.805-8.046 7.244.159 6.44 3.542 10.142 8.53 7.727l-.484-14.97z'/%3e%3cpath d='M486.12 175.53c-4.154-3.28-8.03-1.874-9.946 4.276-1.916 6.149.096 10.742 5.596 10.058l4.35-14.333z'/%3e%3cpath d='M493.04 163.86c-3.58-3.905-7.63-3.138-10.508 2.625-2.875 5.763-1.625 10.618 3.917 10.825l6.591-13.45zm-4.54 56.73c-6.117 2.254-6.763 10.625-2.896 15.776 3.863 5.151 10.946 6.117 14.808 0l-11.91-15.78z'/%3e%3cpath d='M481.42 202.88c-5.796-1.932-11.017 5.853-11.913 12.878-1.125 8.854-13.683 11.751-6.758 25.113 1.445-8.532 7.083-13.2 11.588-13.522 4.508-.322 11.27-1.288 14.167-6.761l-7.084-17.708zm18.35 34.45c-6.763 1.61-7.73 10.625-2.9 17.064 4.133 5.513 17.063 4.185 16.742-1.288L499.77 237.33zm19.16 54.25c.32-5.795-9.012-8.049-13.521-6.922-4.508 1.127-13.121-.16-15.133-4.99-1.608 3.863.725 8.049 7.246 10.141 4.933 1.585 4.829 5.152 3.379 6.762 3.704.644 14.65.644 18.029-4.99z'/%3e%3cpath d='M513.62 254.56c-6.6-2.897-10.513 1.516-13.038 5.795-3.704 6.278-15.133-1.77-18.996 6.6 5.233-2.253 10.558 2.553 13.038 4.186 7.083 4.668 20.767 3.22 22.7-7.727l-3.704-8.854z'/%3e%3cpath d='M517.48 262.28c-6.6 4.99-9.175 10.946-9.012 14.971.162 4.025 5.795 12.878 11.913 13.361 3.541-7.244 5.312-22.537-2.9-28.332zm-27.36 31.07c0-2.415 3.542-3.38 5.954-2.576 2.417.805 6.117 3.22 4.83 5.796l-10.784-3.22zm-36.39-13.2c-.642-2.897 4.025-7.888 10.304-5.151 6.275 2.736 7.083 8.049 4.504 10.142l-14.808-4.99z'/%3e%3cpath d='M469.02 285.46c-.483-1.61 4.037-4.825 11.754-2.898 7.725 1.932 9.62 6.907 9.338 10.786l-21.093-7.888zm-16.09-5.31c4.025-3.058 2.5-8.855-1.13-10.625-6.6-3.22-4.183-11.59-8.37-13.2-4.183-1.61-8.208-4.508-8.37-7.405-2.092 4.024-.805 7.727 2.095 10.303 2.896 2.576-2.254 13.039 1.446 15.776l14.329 5.151zm-86.29-2.25c-3.38-5.312-11.43-4.346-14.81-.644-3.38 3.703-2.897 9.176.322 11.59L366.64 277.9zm19.32-7.89c-1.288-7.083-9.82-7.888-14.488-6.117-4.668 1.77-7.888 8.854-4.83 14.005l19.319-7.888z'/%3e%3cpath d='M398.84 269.04c3.058-5.956-2.897-14.81-9.659-16.098-5.644-1.074-12.315-1.046-14.488-6.6-1.368 4.83 2.254 7.888 6.44 10.625 4.185 2.737-.806 9.82 5.956 13.844l11.752-1.77z'/%3e%3cpath d='M398.2 269.25c-1.409-4.267 1.449-9.943 7.232-9.545 5.785.398 9.08 4.6 6.53 9.855l-13.763-.31z'/%3e%3cpath d='M411.07 269.57c-.796-4.422 2.83-9.64 8.5-8.435s8.343 5.83 5.084 10.675l-13.584-2.24z'/%3e%3cpath d='M423.86 271.6c-.575-4.457 3.308-9.488 8.912-8.001 5.605 1.487 8.042 6.24 4.542 10.915L423.86 271.6zm-97.14 73.75c-10.786 0-13.42 2.568-14.971 13.683-1.932 13.844 16.903 15.454 14.971-13.683z'/%3e%3cpath d='M331.55 330.86c-16.581-6.278-25.595 19.961-42.015 15.293 5.875 9.337 20.118.017 25.434.966 9.015 1.61 28.493-1.771 16.581-16.26zm-10.79 35.9c-8.21-3.702-17.064 8.854-15.454 14.327 2.044 6.952 20.766 1.288 15.454-14.327zm-38.31 54.09c4.508 1.283 9.98 3.862 9.015 12.554-.966 8.692-17.385 26.4-32.195 27.367-14.81.967-20.123 18.833-32.84 13.842 11.912-2.25 11.912-15.775 21.249-19.958-6.762-2.417-10.303 12.879-18.995 12.879-8.693 0-12.878 13.842-23.503 12.875-10.625-.963-11.743 16.854-33 17.067-16.26.158-36.381 19.154-43.625 10.946 15.776-2.254 22.142-10.996 31.552-20.608 15.132-15.45 32.196-8.53 37.99-22.213-6.922 4.667-14.97 6.92-22.858 6.763-9.902-.205-20.766 15.775-31.874 8.691 6.439-.804 10.625-3.541 17.386-10.625 6.923-7.254 17.083-2.566 25.113-9.979 12.556-11.592 23.342-1.933 35.415-16.421-3.381-1.608-10.625-.483-17.386 3.058-6.762 3.542-15.454-2.416-23.181 1.771.965-9.496 18.995-4.062 30.264-10.625 12.718-7.404 23.262-5.233 33.323-4.346-14.005-.079-19.478-13.363-38.795-9.5-8.425 1.688-15.132-11.588-23.503-4.829.24-4.987 9.015-9.013 18.03-4.183 9.014 4.829 12.648-4.226 30.586 7.083 7.405 4.667 20.122-2.9 28.17 2.092-1.046-3.058-5.634-4.992-11.026-4.588 3.38-6.92 25.193-6.037 34.69.888z'/%3e%3cpath d='M296.78 410.38c-7.083-5.473-16.903 1.128-23.664-1.449 0 4.506 2.254 11.27 9.659 13.844 2.254-1.608 12.395-10.463 14.005-12.395z'/%3e%3cpath d='M307.89 394.77c-11.108-5.634-13.039 8.37-21.732 5.473.322 4.025 3.542 9.015 10.625 10.142l11.108-15.615z'/%3e%3cpath d='M314.49 382.05c-16.42-6.44-18.513 9.337-28.171 6.278 2.254 5.473 16.098 8.37 23.181 6.44l4.99-12.718zm22.53-69.06c-4.347-6.117-13.522-1.127-14.971 6.117-1.449 7.244 2.092 17.386 8.21 15.132l6.76-21.249z'/%3e%3cpath d='M348.13 293.67c-7.566-1.77-16.259-.966-15.293 6.44-2.898 1.287-3.703 10.785 4.185 12.877l11.108-19.318z'/%3e%3cpath d='M353.12 288.68c-7.405-8.693-15.663-8.49-20.283-4.83-8.532 6.762-16.823 2.898-17.064 9.66 5.152-3.945 9.659.804 13.844-.645 4.185-1.448 7.244 6.6 18.835 3.22l4.668-7.405zM335.25 418.6c1.127 2.092 8.049 3.058 11.43-.483 4.48-4.696-.483-17.71-7.566-18.675-7.083-.966-7.727 14.65-3.864 19.158z'/%3e%3cpath d='M327.2 418.92c10.141 3.7 14.488-4.67 9.015-9.981-1.45 1.77-6.762 8.21-9.015 9.981z'/%3e%3cpath d='M289.21 432.76c-1.932 5.796-11.913 6.763-23.181 24.792-11.269 18.029-22.054 10.463-24.791 22.858 13.522-10.946 24.142-3.675 32.195-14.488 12.235-16.421 22.309-14.063 27.045-25.113 6.76-15.775 36.381-15.454 37.991-40.244-9.98-1.932-41.533 24.79-49.259 32.194zm254.03-243.4c12.879 4.185 13.2 20.927 28.008 26.4 14.813 5.473 16.263 18.673 28.333 15.454-11.267-3.059-10.463-16.098-22.213-19.318-13.783-3.776-18.996-24.791-29.946-28.01m54.898 92.884c2.254 5.151 1.933 14.327-6.117 16.742 4.346 2.737 10.783.16 14.325-5.795-5.312 11.751-1.77 22.376 6.6 24.469-4.025-8.21 4.992-12.074 2.096-17.386 5.313 2.254 9.98 9.498 9.817 14.005 6.925-7.727-5.15-18.03-2.896-25.273l-23.825-6.761zm-83.39 82.74c-7.888-6.922-11.254 1.81-15.133-1.208-3.62-2.817-8.45-3.22-10.3-.402 6.762.242 3.458 5.473 16.579 6.761-13.121.886-10.704 15.535-19.479 14.81 9.338 8.854 14.167-7.888 21.733-5.15-2.254.643 3.542 5.955-.483 13.038 6.52-.16 9.175-9.176 9.983-13.844l-2.9-14.005zm-173.7 75.18c-2.898-2.413-11.269-3.542-14.488-1.608-3.22 1.929-2.092 2.412 1.77 2.737 3.865.321 8.853 6.571.484 6.921-3.864.158-2.576 9.496-10.625 10.142 3.3 4.025 12.718 1.367 16.098-3.058-.644 3.62 4.185 6.92 2.254 11.267 5.956.646 2.495-12.071 11.913-11.43-3.864.484-2.254 9.176 4.507 6.922-4.025 1.933-1.932 6.6 2.575 5.475-2.897.966-3.863 4.666.161 6.762 3.864-5.312-.483-24.308-14.649-34.129zm350.62-177.62c12.321 0 22.308-9.99 22.308-22.312 0-12.32-9.988-22.31-22.308-22.31-12.325 0-22.313 9.99-22.313 22.31 0 12.322 9.988 22.312 22.313 22.312z'/%3e%3cpath d='M579.3 284.02c6.763-6.44 17.067-9.659 24.146-4.83 7.083 4.83 30.588 10.625 42.179 2.576 11.588-8.049 17.063-12.235 22.213-11.269 3.867 5.796 8.533 8.532 14.329 9.015 1.77 1.932 8.05 3.542 11.592 3.058 5.15 1.288 11.429-.321 16.417-5.795 7.73 1.127 14.971-4.668 17.708-13.36 8.208-.966 8.692-10.143 3.542-16.26-4.83-.965-1.125-17.225-18.675-14.005 7.408 4.508 1.77 13.522 7.891 17.708-4.187 0-9.579 1.771-10.867 8.05 1.609-4.347-.241-7.245-1.37-8.21.162-3.703-8.046-12.798-15.775-9.498 5.554 1.207 2.416 10.142 6.441 13.522-2.9.161-5.958 1.61-7.729 4.185-2.092-3.702-9.496-7.566-14.004-7.888 0-1.288-.242-3.863-.804-5.15-2.013-3.864-3.704-8.452-2.9-14.328-3.863 4.185-7.083 9.98-9.013 14.166-6.116-4.185-21.25 1.932-28.333 3.541-7.083 1.61-30.908-2.253-36.383-8.049-5.47-5.795-16.096-9.336-26.075-12.234-13.725-3.983-13.846-18.995-28.979-29.298-.32 18.674 28.013 77.914 34.45 84.353zm-157.76 142.3c11.913 0 21.571-9.658 21.571-21.571s-9.658-21.57-21.571-21.57-21.571 9.658-21.571 21.57c0 11.913 9.658 21.571 21.571 21.571z'/%3e%3cpath d='M370.02 409.74c4.346 5.635 11.751 5.314 14.81 4.83 2.576 6.759 10.785 6.6 14.327 10.3 3.542 3.705 15.613 3.384 19.155 1.288-3.217-.32-7.403-2.25-11.428-5.633-4.858-4.08-2.576-12.234-6.44-15.131 2.898-3.22 3.381-8.532 2.737-10.625 3.06-1.771 5.313-4.669 5.635-6.118 5.313-.322 9.98-3.058 11.913-5.15 2.737 2.575 9.658-.806 13.363 3.54.804-10.625-9.338-16.259-16.1-12.717-2.738-1.448-9.98-.482-11.268 1.45-2.254-.967-8.532 2.253-11.43 4.346 3.22-1.77 3.702-7.083 2.414-9.015 2.737-1.127 5.796-4.83 6.117-7.566 3.864.644 9.658-1.932 12.233-1.288-4.183-5.473-11.105-7.405-18.189-6.922-7.325.403-10.463 5.554-11.429 11.108-4.346 2.576-5.795 11.268-4.185 14.327-2.496-.08-4.83 2.335-5.795 3.703-3.38-1.45-8.21-2.495-11.671-2.495m1.531-8.772c-1.449-4.185.47-7.953 1.449-11.268 2.495-8.45.966-10.625-6.6-9.498-.644 4.025 3.22 17.225 5.151 20.766z'/%3e%3cpath d='M360.77 352.91c1.932 1.932 8.774 2.817 9.498-3.3.832-7.022-2.012-9.74-8.13-7.003-.482 1.61-1.046 8.21-1.368 10.303z'/%3e%3cpath d='M362.22 342.37c2.576 1.046 8.13 3.139 11.188-2.817 2.566-4.996-.805-8.854-6.117-8.533-1.288 1.45-3.863 6.6-5.071 11.35z'/%3e%3cpath d='M366.97 330.54c.644 1.932 7.244 8.37 12.073 3.703 4.83-4.669 4.83-11.59-2.415-14.166-1.932.321-7.727 7.082-9.658 10.463z'/%3e%3cpath d='M376.62 320.08c1.449 4.024 5.956 10.946 14.327 7.727 8.371-3.22 4.83-13.683.966-15.776-2.254.16-11.43 4.346-15.293 8.049z'/%3e%3cpath d='M391.92 312.03c-.644 3.542 0 13.2 11.429 13.039 11.428-.16 8.211-13.522 5.313-15.454-4.669 0-12.556.16-16.742 2.415z'/%3e%3cpath d='M409.14 310.09c-1.288 2.737-4.19 20.75 18.191 15.776 2.896-.644 10.463-17.225-18.191-15.776z'/%3e%3cpath d='M421.37 311.7c-2.25 2.253 3.542 20.444 18.675 17.385 15.133-3.059 2.417-20.283-18.675-17.385z'/%3e%3cpath d='M434.25 314.44c-2.413 4.99 1.212 19.8 19.883 19.8 16.921 0-.887-19.478-19.883-19.8z'/%3e%3cpath d='M448.9 318.79c-1.212 2.766-2.696 18.468 19.317 19.8 15.938.966 12.075-21.571-19.317-19.8z'/%3e%3cpath d='M472.57 325.39c-2.733 4.83-5.633 16.903 18.513 17.869 15.471.62 5.958-17.547-18.513-17.869z'/%3e%3cpath d='M492.69 329.09c-3.542 4.83-.933 14.303 8.046 16.098 11.27 2.254 12.879-8.37 5.154-13.522-7.73-5.151-13.2-2.576-13.2-2.576z'/%3e%3cpath d='M503.64 331.34c-2.575 4.508-.98 15.454 16.096 15.454 3.542 0 17.067-13.844-16.096-15.454zM371.48 541.27c13.83 0 25.042-11.213 25.042-25.042 0-13.833-11.212-25.046-25.042-25.046-13.831 0-25.043 11.213-25.043 25.046 0 13.829 11.212 25.042 25.043 25.042z'/%3e%3cpath d='M555.15 177.13c-1.933 1.932-5.954 7.727-6.763 9.98-8.37 25.113 13.975 43.871 27.046 70.83 10.304 21.25 9.017 54.733-7.083 75.982-5.508 7.269-3.862 9.337-10.946 16.742-2.717 2.841-5.796 6.44-4.829 16.742 4.508-1.61 10.946 2.576 12.233 6.118 3.22-1.61 7.73-.966 9.337.965 5.471-2.575 9.98-1.288 14.808 3.864 4.188-.644 8.696 0 12.88 4.507 2.254-4.507 6.762-6.117 9.979-5.151-.321-5.795 5.475-9.98 10.625-7.727-1.609-7.727 5.475-13.523 12.238-11.269 5.791-4.507 17.383-4.829 23.179 1.932-10.304-2.897-9.98 8.05-18.675 7.083 2.254 6.44-3.542 10.142-9.334 12.234 3.7-1.77 7.725-3.863 9.013-1.61 3.22-2.816 9.658-1.77 11.27-.321 4.263-1.368 8.372-.322 10.3 4.829 5.797 3.542 9.66 12.556 5.476 19.318-1.288-7.083-6.117-6.761-8.05-9.659-4.509 1.61-9.017 1.61-10.304-1.288-2.575 2.576-11.267 4.83-15.13.966-1.45 5.795-6.44 10.625-12.237 10.625 1.612 4.507-2.896 12.236-6.438 16.098 5.475 2.896 3.863 9.337 2.575 13.2 8.371 1.287 1.288 8.692 15.775 13.521-7.079 2.254-20.925 0-22.858-8.692-7.083-.32-11.913-7.404-11.588-14.813-5.475-5.15-6.279-12.554 1.288-17.705-6.442 1.932-9.984-8.37-19.321-4.185-4.642 2.082-16.9-1.449-16.738-5.796-1.934 3.22-13.683 1.933-15.296-3.54-3.863 2.092-12.88-1.45-12.717-6.762-4.992 2.254-11.75-1.77-11.43-6.922-4.666-.644-5.15-4.83-4.828-8.37-4.188-1.933-3.059-5.957-1.45-10.786-2.896-3.22-1.609-7.727.645-11.913-3.22-3.22-2.575-7.083-1.612-11.59-15.454-1.288-34.813-5.015-79.2-18.673-66.967-20.605-84.997 27.688-70.187 57.952 17.087 34.92-1.932 42.5 3.864 68.58 6.117 1.287 9.336 6.437 9.015 11.912 3.62.158 6.196 3.538 4.909 9.98 3.058-.563 7.003.32 9.578 2.895 2.254-4.183 9.66-5.15 13.523-.32 8.37-.647 12.556 6.116 12.235 14.487 4.505 8.05 2.896 17.871-1.933 24.146.483-3.379 0-8.208-.158-11.104-.3-5.329-7.73-6.441-6.924-10.788-3.864.321-7.567-1.77-8.854-4.666-2.254 1.929-5.474 2.575-8.21 1.608 4.346 1.933 7.727 9.658 6.439 14.808 2.254 3.867 1.77 10.95-.966 14.008-1.288 6.275-6.117 8.53-12.395 5.792 3.542-2.25 4.83-6.275 4.668-9.659-2.253-1.929-3.38-5.633-3.541-7.887-6.278.966-14.971-4.346-16.574-6.446-13.831 0-25.043 11.213-25.043 25.046-.644-5.154-7.16-10.229-6.355-14.575-3.863-11.913 1.61-23.021 17.386-25.271-1.931-4.508 4.83-9.18 2.254-14.329-3.29-6.58-9.336-15.133-18.35-25.113 5.473-9.338 3.863-21.892.643-29.62-4.623-11.096-9.015-8.37-25.435 9.658-26.76 29.383-62.46 21.25-94.012 40.567-8.384 5.133-16.741 7.083-7.727-1.93 9.015-9.016 32.84-18.028 48.293-25.757 28.94-14.471 53.445-38.635 63.104-85.64 22.697-110.46 106.24-74.05 159.04-53.445 49.571 19.346 40.567-24.47 15.454-50.87-30.183-31.731-24.146-56.663-9.979-76.625 25.433-3.542 74.213 5.312 64.392 13.845z'/%3e%3cpath d='M644.82 448.48c15.217 0 27.554-12.333 27.554-27.55 0-15.218-12.338-27.554-27.554-27.554-15.217 0-27.554 12.336-27.554 27.554 0 15.217 12.338 27.55 27.554 27.55z'/%3e%3c/g%3e%3cg fill='none'%3e%3cpath d='M539.7 178.41c-6.117 27.045-.967 39.279 8.05 51.191 18.629 24.621 33.483 80.811 12.233 117.51'/%3e%3cg stroke-linecap='round'%3e%3cpath d='M571.89 315.41c2.575-.966 7.404-4.024 8.533-9.337m-6.603-2.413c.804-4.668 8.046-6.68 8.208-11.67m-8.048-6.53c-.483-4.83 7.246-9.176 6.117-14.005M569.8 268.08c-.646-2.737 6.438-7.888 4.508-12.234m-9.818-4.666c-1.45-3.059 3.38-6.6 1.288-9.82m-9.018-3.71c-.483-2.092 2.496-6.68.887-9.416m-8.617-6.514c.642-.805 3.22-2.737 2.17-5.151m-7.48-6.519c1.046-.564 4.183-1.53 3.783-3.863'/%3e%3cpath stroke-linejoin='round' d='M382.58 513.57c-6.44-2.254-14.488.967-16.098 6.442M371.31 525c.805-5.47 9.176-7.888 11.751-5.313-5.312-2.895-7.888 7.405-3.22 7.73M423.15 397.67c-3.862 1.932-4.987 9.015 0 14.329m5.79-12.719c-2.733 2.254-2.575 9.015 1.45 10.625-3.38-2.415 0-6.6 2.417-6.761 2.412-.161 4.02 2.736 1.125 5.634m221.188 6.432c-9.012-2.413-16.258 8.05-8.05 17.388-.158-9.017 6.28-14.971 14.167-13.363m-3.627 6.235c-2.217 0-3.462 1.733-3.462 3.42 0 1.772 1.529 3.463 4.025 3.463 1.612 0 2.9-1.85 2.9-3.3M689.4 227.83c1.45 5.473 9.017 7.727 14.971 6.44m-.001-3.54c-4.667.161-8.53-4.185-8.208-7.888 0 2.737 6.279 4.025 8.208 2.254'/%3e%3cpath d='M384.83 414.57c-1.288-3.22 3.864-6.44 4.025-9.5.16-3.057 5.795-5.472 11.59.323m-2.735-34.283c-1.127.483-2.093 1.127-3.059 1.449m14.169 16.091c-1.369.081-4.185-.08-5.715-1.127m.085 7.247c-1.127.564-3.623 1.53-5.072 1.852M347.97 492c-.161 2.9 2.737 7.083 4.346 8.37m8.214-15.29c-1.61 2.413-2.575 6.6-1.61 9.496m25.59.164c-2.898-1.933-.966-6.925-1.288-10.142-.322-3.22 3.38-8.37 10.625-4.025m-36.377-4.183c2.898-.483 5.956-.325 7.888.48m28.812-9.66c-1.288 1.77-1.61 3.704-1.77 4.992m15.29-5.312c-2.254 0-4.185 1.608-5.151 3.22m-26.079-85.64c2.576.886 9.256 4.99 9.498 9.257m17.872-30.187c-7.888-.161-10.946-8.21-4.99-8.21M418 374.32c-3.058 1.288-1.608 6.6 2.737 9.176M399.16 424.87c-1.53-1.93.483-7.563 5.473-5.875m6.277 64.635c.32-4.908 6.52-7.808 9.016-2.254M388.05 497.63c-.403-5.392 2.334-7.162 4.748-7.483 2.415-.321 5.877 1.687 7.487 5.229m-60.205 6.284c.322-3.22 3.059-6.6 5.956-6.117M634.67 358.71c-2.096 1.53-3.462 8.37 4.504 9.015m-16.734 2.255c0 .805 1.046 1.932 1.692 2.415m36.298 10.465c-2.092-1.61-7.487 4.91-2.575 9.659M609.24 436.95c-1.208-4.588 3.058-5.796 7.083-4.83m-17.383-27.69c2.413-1.61 4.83-3.38 7.888-4.185m-9.178 21.885c0-3.862 1.93-7.08 3.7-8.046m10.46-36.374c-.32 4.668 1.613 9.176 3.063 11.59m35.257-11.27c-2.337.725-4.43 1.61-5.313 3.542m2.733 9.658c1.13-.966 2.417-2.092 2.98-2.897M708.4 250.69c0 4.507-5.633 6.922-9.333 4.024m21.573-3.864c2.492 1.932 11.104.081 9.092-4.91m-19.562 30.83c-1.77-.322-4.83-2.254-6.117-3.863m23.827-9.497c-2.896.644-4.83 0-6.28-.644m-39.44 16.744c1.608 0 5.47-.644 8.13-2.012m-12.96-26.478c-2.092-.24-3.625.161-4.83.966m37.27 6.914c-.563 2.013-2.013 5.151-3.783 6.52'/%3e%3cpath stroke-linejoin='round' d='M671.86 265.99c4.025-1.77 9.017 11.912 18.675 7.083m.805-14.173c-1.288 1.77-2.092 4.508-2.254 6.922'/%3e%3c/g%3e%3cpath d='M498.81 237.98c1.288-.16 3.542-.644 4.025-2.254M333.16 387.85c4.83 2.737 8.21 7.405 6.117 14.327M554.5 223.17c1.45.966 6.925.966 9.983-.16m3.867 3.38c-.163 2.254.483 10.785-3.862 12.556'/%3e%3cpath d='M566.1 237.82c4.025 1.288 12.075.805 14.65-6.6'/%3e%3cpath d='M575.11 237.49c2.092 3.22 2.733 9.498-3.542 12.878'/%3e%3cpath d='M576.72 242.81c4.667 1.61 15.454 1.77 14.325-7.405'/%3e%3cpath d='M587.35 242.81c3.22 4.507 17.388 9.82 15.133.483M574.31 255.84c5.47 1.288 13.2-2.415 9.98-12.073'/%3e%3cpath d='M599.74 248.6c.804 3.703 18.833 7.566 16.421-.805'/%3e%3cpath d='M612.78 252.63c3.383 7.727 21.25 7.083 15.617-3.22'/%3e%3cpath d='M625.5 257.45c3.542 4.347 19.321 1.77 13.042-8.693'/%3e%3cpath d='M638.37 257.29c9.82 7.405 21.25-3.22 8.854-10.947'/%3e%3cpath d='M652.86 254.88c8.696 6.922 19.321-5.635 11.754-9.176m-80.494 6.276c2.737.805 8.533.483 9.82-4.507'/%3e%3cpath d='M591.77 250.85c-.32 7.325 11.996 10.142 15.133 1.69'/%3e%3cpath d='M602.8 257.13c2.254 4.83 13.038 6.76 14.808-.161'/%3e%3cpath d='M615.84 260.19c1.77 4.83 11.108 4.347 13.683-.644'/%3e%3cpath d='M626.14 262.77c2.896 6.278 14.808 6.278 17.546-2.898'/%3e%3cpath d='M641.6 263.89c4.667 2.898 14.65 1.77 13.842-7.244'/%3e%3cpath d='M653.51 263.09c6.92 5.635 16.742.161 11.913-9.337'/%3e%3cpath d='M664.94 270.49c3.704-.644 5.633-8.049 1.77-9.98m-87.57 11.27c7.725-4.185 9.175-11.268 3.862-18.19'/%3e%3cpath d='M585.74 264.7c4.83 2.897 14.004-.16 15.613-7.244'/%3e%3cpath d='M592.34 265.5c2.733 3.541 3.217 7.888-.325 11.912'/%3e%3cpath d='M594.59 270.01c8.53-5.312 19.154 4.508 11.267 10.464'/%3e%3cpath d='M604.41 269.53c1.933-.483 5.313-4.024 5.633-8.049m-1.773 11.749c3.542-3.703 27.692 3.864 12.396 11.59'/%3e%3cpath d='M619.54 263.09c4.667 1.77 7.083 8.371 0 10.625m6.12 5.475c5.15-5.312 21.25-1.932 15.454 4.83'/%3e%3cpath d='M637.25 277.09c2.896-9.82 20.121-3.703 14.488.322M633.71 267.27c.483 1.932.642 6.761-2.575 9.337'/%3e%3cpath d='M648.2 265.34c.642 1.61.483 4.668-.967 6.6m11.907-6.44c.967 1.77 2.575 5.151-.967 7.888M521.35 191.45c.158 9.175 3.38 15.293 15.775 9.498'/%3e%3cpath d='M525.21 202.4c-6.117 8.21.804 17.064 12.879 8.21'/%3e%3cpath d='M506.37 206.42c8.37 9.015 23.342 2.415 13.683-11.269M530.2 214.15c-1.613 8.854 5.633 10.625 11.588 6.6m-42.818-12.88c1.525 8.901 10.625 15.937 19.479 10.464'/%3e%3cpath d='M509.92 220.11c0 12.718 17.546 14.166 21.571.966'/%3e%3cpath d='M525.21 229.12c5.633 11.59 17.867 6.922 21.892-.16m-34.292-18.35c2.254 5.634 6.763 11.913 17.225 7.244m-49.415-9.984c1.45 4.668 9.82 10.303 19.479 3.863'/%3e%3cpath d='M486.57 213.83c-5.154 7.566 5.15 14.649 17.546 3.38'/%3e%3cpath d='M492.69 223.17c2.092 10.625 6.275 19.157 21.408 5.473'/%3e%3cpath d='M506.53 234.11c5.475 6.76 13.846 10.946 21.733-.483m5.797 2.413c-.483 8.049 1.125 12.073 7.404 11.751 4.95-.253 9.659-4.185 12.396-8.37'/%3e%3cpath d='M540.34 247.8c-.163 9.176 7.08 16.42 20.604 7.083'/%3e%3cpath d='M545.97 258.58c-2.575 6.922 5.15 18.19 20.283 12.395M513.94 240.23c-.963 8.854 7.246 14.81 20.446 3.38'/%3e%3cpath d='M520.38 250.05c.483 7.244 8.692 15.937 20.767 3.38'/%3e%3cpath d='M526.17 259.23c-.967 12.395 10.463 15.937 20.121 6.44m-37.341-15.62c2.575.161 4.667-2.092 5.954-3.703m-.484 12.713c2.254.483 6.12-1.61 7.408-4.185'/%3e%3cpath d='M520.06 273.71c2.575 2.737 11.267.805 12.392-2.897'/%3e%3cpath d='M529.72 273.55c4.83 11.268 17.704 10.785 23.017-1.932'/%3e%3cpath d='M550.32 276.13c2.413 6.6 8.533 10.785 18.513 8.532'/%3e%3cpath d='M555.15 282.89c-5.633 9.176 1.77 19.961 14.325 9.337'/%3e%3cpath d='M558.21 296.57c-.642 5.795 4.67 12.395 11.913 13.2m-35.743-30.1c-1.933 13.039 7.404 19.318 19.158 12.395'/%3e%3cpath d='M520.7 285.95c3.058 2.415 8.533 2.737 13.683.805m6.277 7.565c-2.9 10.947 8.37 18.835 18.029 6.6'/%3e%3cpath d='M525.05 287.72c.163 5.634 5.638 11.751 15.133 9.98m26.557 11.27c-6.442 4.346-7.73 12.073 1.288 17.063'/%3e%3cpath d='M550.96 306.71c.325 6.6 3.383 10.303 10.625 10.946'/%3e%3cpath d='M541.47 303.33c-9.658 8.854-.163 19.157 11.267 10.464'/%3e%3cpath d='M548.23 316.53c-3.22 10.142 8.854 16.259 15.292 5.956M528.27 294.96c-3.542 9.98.967 16.581 9.175 15.937'/%3e%3cpath d='M515.55 293.03c.483 5.956 5.633 8.049 11.429 6.761'/%3e%3cpath d='M519.25 299.31c-4.346 8.37 2.254 12.878 10.95 9.659m26.4 18.671c-1.45 5.312-.646 9.176 7.242 10.947'/%3e%3cpath d='M557.08 335.21c-9.5 4.347-10.304 13.523-2.9 19.478'/%3e%3cpath d='M549.43 324.99c-4.987 4.508-4.025 12.314 1.45 15.373m-43.7-44.753c-5.475 5.393-.242 20.283 11.829 12.155'/%3e%3cpath d='M538.57 314.44c-7.408 6.117-4.025 17.225 8.208 14.166'/%3e%3cpath d='M526.33 309.77c-3.862 10.947-.158 14.81 8.533 14.971M499.13 295.12c-6.6 4.99-4.83 12.073-1.93 15.293 2.897 3.22 8.368 1.77 10.139-2.415'/%3e%3cpath d='M485.28 290.78c-7.404 9.498 0 20.766 10.467 17.386m29.143 10.784c-7.567 2.737-13.338 9.607-8.696 15.615 2.738 3.542 14.65 4.025 18.03-9.659'/%3e%3cpath d='M511.2 310.09c-4.346 6.278-2.9 12.235 5.15 15.293'/%3e%3cpath d='M510.72 321.85c-4.67 2.576-7.73 5.635-6.6 11.269'/%3e%3cpath d='M500.26 312.03c-1.77 7.566.32 12.235 4.987 14.488'/%3e%3cpath d='M500.1 321.04c-7.246-.483-10.946 2.575-8.533 9.659'/%3e%3cpath d='M492.21 322.81c-7.083-2.576-8.213-8.693-5.154-15.132'/%3e%3cpath d='M486.09 317.18c-7.73.322-11.108 4.185-11.108 9.498m.638-39.608c-5.633 2.415-7.404 9.98-5.313 14.166 2.096 4.185 8.696 4.508 12.721 1.77'/%3e%3cpath d='M459.85 281.12c-5.15 5.795.804 17.064 9.983 14.327'/%3e%3cpath d='M446.65 276.61c-4.83 6.76.483 18.03 12.879 14.81m.641 31.39c-1.288-8.05 7.083-13.361 17.388-2.898'/%3e%3cpath d='M472.57 303.66c-3.058 2.737-4.504 7.083-4.025 10.625M433.45 272.75c-5.313 9.015 1.13 17.225 12.558 14.005m17.222 8.365c-7.567 7.566-4.992 15.132.642 19.478'/%3e%3cpath d='M458.4 303.98c-11.429.16-12.071 13.361-2.733 17.547'/%3e%3cpath d='M449.71 290.78c-4.667 3.22-6.117 12.073 1.933 15.615m-2.253 4.185c-4.83-2.254-10.625.483-10.142 6.117'/%3e%3cpath d='M442.14 310.74c-4.346-10.303-17.063-8.532-15.933 2.093'/%3e%3cpath d='M445.68 298.02c-2.733.483-8.208 2.092-10.3 6.278'/%3e%3cpath d='M436.19 286.43c-5.15 5.795-1.13 12.717 3.058 14.166M420.9 270.17c-.967 6.922 1.77 10.303 10.463 9.659'/%3e%3cpath d='M423.95 279.03c-3.383 8.37 1.125 12.073 9.817 11.59'/%3e%3cpath d='M425.88 289.33c-5.15 6.117-1.608 12.718 3.38 15.454'/%3e%3cpath d='M423.47 297.06c-9.175-1.127-10.625 9.498-7.567 14.488m.157-42.178c-5.632 2.415-8.852 9.498-5.793 13.844 3.06 4.346 9.176 2.897 12.556.644'/%3e%3cpath d='M412.2 285.14c-4.668 7.083-.483 12.395 4.508 14.488M394.17 268.56c-3.702 3.863-1.449 11.752 7.566 11.913 7.258.13 10.946-6.761 8.693-11.59'/%3e%3cpath d='M400.45 280.47c-2.897 6.44-1.127 13.361 9.82 12.234m4.67 10.146c-6.76-3.058-15.776 0-11.912 8.05'/%3e%3cpath d='M402.06 291.42c-2.737 3.863-1.77 9.337 1.288 12.717'/%3e%3cpath d='M401.58 301.72c-4.508.805-8.854 3.22-6.117 10.303'/%3e%3cpath d='M394.81 306.23c-5.795-1.77-13.2 2.415-8.693 8.37'/%3e%3cpath d='M385.16 308.97c-4.99-.805-10.946 4.507-6.117 9.82'/%3e%3cpath d='M377.11 314.44c-4.508 1.127-9.82 6.278-5.152 10.303m27.852-35.573c-6.44 2.897-7.083 10.142-4.025 15.454'/%3e%3cpath d='M393.04 275.81c-9.659 3.703-9.498 16.581 1.127 20.605'/%3e%3cpath d='M389.66 293.51c-5.795 3.38-6.922 9.82-3.058 14.005m-7.082-36.535c-3.864 1.288-3.542 13.2 6.761 12.878'/%3e%3cpath d='M368.9 275c-7.727 5.151 1.61 18.19 14.166 8.854'/%3e%3cpath d='M376.14 287.07c-1.127 5.313.322 11.108 8.854 11.752'/%3e%3cpath d='M376.62 294.16c-6.117 2.253-7.244 14.81 3.863 15.776M357.15 282.73c-7.888 7.244 6.44 13.522 11.752 3.059'/%3e%3cpath d='M346.2 294.8c-3.864 4.668 9.658 16.903 15.615-3.542m1.445-.318c.322 4.83 3.22 7.727 9.175 8.049m-.155 4.671c-9.498 1.449-12.556 13.361-1.932 15.937'/%3e%3cpath d='M354.73 302.05c-.322 4.507 4.346 8.21 9.659 7.405m4.831 9.815c-8.693 1.932-9.82 13.2-2.092 12.556'/%3e%3cpath d='M363.1 342.29c-7.245-2.173-7.405-10.786-.966-14.005'/%3e%3cpath d='M357.15 334.72c-6.117 3.703-3.702 12.556-.483 13.844 3.22 1.288 5.795-.322 6.118-3.058'/%3e%3cpath d='M362.3 357.9c.644 4.185-14.891 2.576-6.922-10.463'/%3e%3cpath d='M355.29 358.63c-5.231 8.21 3.3 14.89 8.693 7.888'/%3e%3cpath d='M356.02 368.53c-2.093 6.6 5.875 11.35 11.026 6.198M338.63 306.71c-2.898 5.956 11.59 8.21 12.556-4.025'/%3e%3cpath d='M334.61 315.57c-2.897 11.59 18.995 9.176 13.361-5.795'/%3e%3cpath d='M348.45 317.5c3.058 1.77 12.235 1.932 14.488-7.888'/%3e%3cpath d='M356.34 317.82c.644 3.058 3.38 6.76 5.956 7.888m-16.416-4.828c-.966 6.278 5.312 11.43 12.556 10.947'/%3e%3cpath d='M347 327c-3.541 4.83-4.668 14.166 6.44 14.81'/%3e%3cpath d='M330.1 328.61c-1.77 4.99 8.693 10.142 14.81 1.932'/%3e%3cpath d='M326.88 341.32c-.886 3.784 8.532 8.854 13.844-7.244'/%3e%3cpath d='M336.54 342.29c2.254 4.024 9.82 7.244 14.488-.644'/%3e%3cpath d='M343.46 346.48c-1.932 5.634 3.38 10.946 9.82 9.337'/%3e%3cpath d='M331.39 345.19c-1.288 8.049 8.049 12.717 13.844 8.532'/%3e%3cpath d='M325.27 348.73c-2.736 10.303 10.464 14.166 15.454 6.439'/%3e%3cpath d='M337.35 358.23c.483 5.795 9.498 10.785 16.581 5.956m-32.681-1.126c-.644 2.575 10.142 5.151 11.751-3.864'/%3e%3cpath d='M327.53 365.31c2.575 6.6 11.268 8.21 16.259.161'/%3e%3cpath d='M340.89 368.69c1.127 6.117 9.015 9.498 15.937 5.312m2.893 2.418c-1.77 8.21 6.761 14.81 12.073 10.303'/%3e%3cpath d='M346.04 374.97c-2.575 9.015 8.693 14.166 14.971 9.176'/%3e%3cpath d='M332.52 370.46c-.644 8.37 5.956 13.361 13.522 9.658'/%3e%3cpath d='M318.19 371.27c-2.254 5.473 9.659 9.98 15.293 5.313'/%3e%3cpath d='M310.78 386.24c3.059 3.541 13.683 0 14.649-7.888'/%3e%3cpath d='M322.54 384.14c3.863 4.508 13.039 6.922 16.742-2.737'/%3e%3cpath d='M336.06 386.4c-.161 6.922 12.235 11.913 16.259-.805m14.561 2.495c-1.127 3.38 1.53 8.773 7.083 9.417'/%3e%3cpath d='M356.66 386c-.805 3.863 4.83 9.255 10.786 7.083m1.134 1.607c-1.61 4.185-.242 10.221 5.392 10.141'/%3e%3cpath d='M369.14 402.5c-4.185 3.541-2.415 9.82 3.623 10.062'/%3e%3cpath d='M366.97 408.45c-5.956 4.022-3.863 12.877 4.024 12.398M348.94 391.39c0 8.693 10.785 9.98 12.878 1.932'/%3e%3cpath d='M357.63 398.47c-1.61 5.151 2.575 10.142 9.175 8.693m-7.885 53.447c1.45 2.096 7.405-1.446 5.795-4.987s-7.919-1.617-7.244 2.091'/%3e%3cpath d='M363.26 454.17c.805-7.083-7.566-8.208-9.659-2.092'/%3e%3cpath d='M356.66 448.54c2.093-3.542-4.99-8.37-7.888-3.22'/%3e%3cpath d='M351.35 443.22c1.932-5.154-6.117-7.404-6.761-2.737'/%3e%3cpath d='M342.82 433.72c.966-2.575 9.98-.967 6.117 4.346m6.923 6.444c3.542-3.22-2.414-9.82-6.117-7.404m29.937 17.224c-2.818.32-5.716 2.17-3.623 8.13 1.451 4.133 7.647 4.345 8.532 1.85'/%3e%3cpath d='M375.58 457.31c-2.737-1.77-8.693 1.208-5.956 7.004 2.06 4.363 7.244 2.575 8.049.321m-17.473.965c1.367 2.413 8.209 1.37 9.417-1.288'/%3e%3cpath d='M364.87 457.63c1.449-.967 4.104.237 4.668 1.446m-5.148-41.126c-4.668 3.058-1.77 12.396 5.473 9.98'/%3e%3cpath d='M362.94 425.52c-3.703 2.896-.322 11.913 6.6 8.533'/%3e%3cpath d='M364.07 434.05c-2.575 2.575-.08 9.738 6.6 8.37'/%3e%3cpath d='M363.1 437.59c-1.45-.646-5.232-.163-6.843 2.25m2.663-34.85c-3.541 3.38-1.852 10.304 4.748 10.866'/%3e%3cpath d='M357.63 412.07c-5.072 2.496-5.072 12.554 5.07 12.958'/%3e%3cpath d='M357.23 423.42c-2.817 2.254-1.449 10.946 5.795 9.817'/%3e%3cpath d='M359.56 432.92c-1.047 1.046-1.208 3.704-.322 4.83m-2.898-8.13c-2.575.08-5.956 1.933-6.843 4.588'/%3e%3cpath d='M344.83 424.87c.966-2.575 8.935-2.413 9.498 5.154'/%3e%3cpath d='M355.13 421.01c-1.127.242-3.3 1.288-3.863 3.462m.403-27.042c-3.462 3.139-5.151 13.04 5.392 14.97m-12.392 5.47c0-2.658 7.164-4.912 9.659-.967'/%3e%3cpath d='M340.08 403.46c1.046 2.013 6.036 4.75 9.095 2.496M314.16 387.69c-.16 4.668 3.703 8.854 9.015 8.21 5.312-.644 6.44-5.313 4.83-8.371m-4.025 8.531c-3.542 4.346.805 10.464 4.83 8.693'/%3e%3cpath d='M328.01 393c2.093-.805 9.015-1.77 11.108 1.449m-33.488-.159c-1.61 2.415 8.371 4.83 11.751.16'/%3e%3cpath d='M314 396.86c-.323 3.22 1.288 8.693 9.498 6.44'/%3e%3cpath d='M324.79 408.29c1.288-2.737-4.83-7.244-9.498-2.254-4.668 4.99.644 10.625 3.542 8.692M303.38 397.51c-2.415 4.185 6.922 11.833 12.235 4.75'/%3e%3cpath d='M297.18 404.75c-3.38 3.462.805 9.82 5.876 7.888 5.07-1.932 4.588-7.244 3.381-8.612'/%3e%3cpath d='M290.66 411.19c-2.737 2.494-.081 8.37 3.703 8.37 3.782 0 6.117-2.976 5.392-6.76m6.275-2.09c-.483 3.702 4.99 6.277 8.532 2.819m.168-6.769c.483-.805.081-2.174-.723-2.818'/%3e%3cpath d='M284.79 416.18c-3.138 2.496 3.623 9.417 7.888 3.058m16.332-4.428c-2.013 1.93 1.207 7 4.426 5.47'/%3e%3cpath d='M297.99 418.35c.483 3.458 7.244 6.033 11.51.725'/%3e%3cpath d='M301.69 421.81c-1.046 2.175 1.047 5.638 3.623 5.154M365.76 441.7c-2.494 4.908 5.473 10.625 11.269 4.667'/%3e%3cpath d='M371.55 449.02c-1.207 2.654.242 6.358 2.415 7.725'/%3e%3cpath d='M363.99 454.57c.564-2.417 4.024-4.67 7.164-3.542M359.8 448.21c.483-2.17 3.38-4.346 5.554-3.78m183.996-96.67c-11.429.161-6.6 18.513 3.22 14.81'/%3e%3cpath d='M545.65 361.29c-2.254 3.703 2.092 9.579 6.92 6.117'/%3e%3cpath d='M551.29 368.13c-3.383 5.634 8.692 14.246 13.521 5.392'/%3e%3cpath d='M560.95 376.9c.158 5.313 15.613 8.693 13.363-1.932'/%3e%3cpath d='M572.86 380.76c3.7 6.278 17.546 6.922 16.096-2.415'/%3e%3cpath d='M585.9 384.79c2.9 4.185 16.421 6.76 15.938-1.932M531 331.83c1.93 4.99 8.53 6.761 15.775 3.863m-19.955-.323c4.508 2.897-2.092 16.098-9.012 10.785'/%3e%3cpath d='M526.82 343.58c4.992 2.415 11.108.644 12.879-6.44'/%3e%3cpath d='M536.64 342.61c.483 3.703 5.796 6.6 12.717 5.151m-25.117-1.281c6.442 5.473-2.896 16.742-7.083 11.59'/%3e%3cpath d='M526.66 350.66c3.058 2.254 10.946.966 11.75-4.99'/%3e%3cpath d='M534.87 350.66c.646 3.863 3.704 5.312 8.05 5.473'/%3e%3cpath d='M524.89 355.97c3.217 4.508 11.267 5.795 14.808-.16'/%3e%3cpath d='M536.15 359.19c-.32 4.347 4.508 7.888 9.5 6.922m-27.04 2.738c4.183 2.092 8.692-5.795 5.15-11.268'/%3e%3cpath d='M523.44 377.22c4.992.322 5.633-7.244.967-11.43'/%3e%3cpath d='M534.87 384.14c4.188-.966 2.896-10.142-7.246-10.947'/%3e%3cpath d='M547.58 390.91c4.025-1.127.804-11.269-10.3-10.625'/%3e%3cpath d='M562.88 394.45c2.733-4.185-6.28-11.268-13.683-7.566'/%3e%3cpath d='M570.44 400.24c4.992 1.449 8.37-11.751-7.404-9.659'/%3e%3cpath d='M579.62 400.24c4.35-1.127 7.408-9.015-5.308-6.44'/%3e%3cpath d='M589.28 400.89c3.862 1.932 5.633-9.337-6.12-6.278M524.4 365.79c4.83 2.737 12.396-.483 11.75-6.6'/%3e%3cpath d='M534.22 364.51c1.613 2.897.967 8.532-2.092 9.98'/%3e%3cpath d='M534.7 371.27c3.22 1.288 7.567.161 10.142-4.99'/%3e%3cpath d='M540.34 371.27c.963 2.254 1.288 6.761-.808 9.015'/%3e%3cpath d='M541.15 375.13c3.542 1.932 7.725-.644 9.496-4.347'/%3e%3cpath d='M548.39 374c2.575 1.61 4.83 9.176.483 12.235'/%3e%3cpath d='M551.29 382.7c3.058.16 7.567.16 10.463-3.703'/%3e%3cpath d='M559.66 381.09c2.737.805 5.954 5.313 4.83 9.337'/%3e%3cpath d='M564.65 388.97c3.063-.322 8.37-2.415 9.82-6.117'/%3e%3cpath d='M573.02 385.27c2.58 1.449 4.35 4.507 4.025 8.049m-.005-2.579c3.058-.16 5.796-1.77 6.6-5.151m-.8 2.261c2.254.805 4.992 3.38 5.154 6.44'/%3e%3cpath d='M587.67 392.35c2.254-.322 3.862-1.77 5.313-4.025m6.117-.315c2.9 2.898-.963 12.557-6.92 10.786M537.28 192.9c-5.958 3.541-22.863 2.415-14.492-11.59'/%3e%3cpath d='M538.89 183.4c-11.75 4.668-26.242-4.346-11.108-14.166'/%3e%3cpath d='M523.76 166.02c-9.82 0-16.421 15.776-3.217 21.249M485.61 172.62c-2.575 4.99 6.6 10.463 12.879 5.473 4.863-3.866 4.504-14.327 1.608-18.352'/%3e%3cpath d='M480.62 184.53c-3.22 10.624 20.446 11.268 16.742-5.635'/%3e%3cpath d='M479.33 200.31c.804 8.049 22.7 5.473 15.613-10.786m2.577-4.514c1.77 2.415 6.6 6.6 14.808 5.795M501.38 173.58c.725 2.897 5.633 5.151 11.913 2.979M281.73 418.51c-5.553 3.946 2.979 10.142 6.117 3.3'/%3e%3cpath d='M277.38 421.57c-5.553 3.942 2.979 10.138 6.117 3.296'/%3e%3cpath d='M272.79 424.55c-5.555 3.946 2.978 10.142 6.117 3.3'/%3e%3cpath d='M267.96 427.29c-5.313 2.817.885 9.738 6.278 3.62'/%3e%3cpath d='M262.73 429.95c-5.313 2.813.886 9.738 6.278 3.62m20.692-11.92c-.081 4.104 7.727 5.796 10.543-.325'/%3e%3cpath d='M294.61 425.44c-2.415 3.058 2.013 6.842 4.428 5.47'/%3e%3cpath d='M284.22 424.87c-.242 3.462 6.519 5.475 9.82 1.692'/%3e%3cpath d='M287.93 428.5c-2.174 2.817 2.092 6.6 4.83 5.47'/%3e%3cpath d='M279.72 428.01c.24 2.737 4.104 5.875 8.29 4.104'/%3e%3cpath d='M282.21 431.71c-1.61 1.45-.805 4.833 1.449 5.88'/%3e%3cpath d='M273.84 431.47c-.644 2.496 3.623 6.925 7.969 4.025'/%3e%3cpath d='M274.72 434.37c-2.575 2.013-2.254 5.07 1.046 5.47'/%3e%3cpath d='M268.53 434.05c-.322 1.688 1.852 4.425 4.589 4.104m-18.359-4.264c-2.575 1.367 4.025 8.37 8.129 1.85'/%3e%3cpath d='M248.4 436.78c-3.22 1.533 4.75 9.258 8.291 1.37m12.559-1.69c-2.496.563-4.105 4.188-2.013 5.633'/%3e%3cpath d='M261.12 437.75c-.322 1.45 2.737 3.862 5.233 2.98m-7.323-2.33c-2.415 1.53-1.127 5.792 1.69 5.15m-10.3-2.34c-2.254 1.688-.725 5.07 2.415 4.267'/%3e%3cpath d='M254.52 440.97c.081.883 2.093 2.254 3.784 1.692m-15.694-3.142c-2.816 1.208-2.655 8.292 6.843 4.43'/%3e%3cpath d='M236.25 442.34c-3.945 1.933-2.657 7.246 5.956 2.175m.724.405c-1.046.804-2.172 4.346 1.77 2.975'/%3e%3cpath d='M235.69 446.6c-1.61 1.45-.563 4.43 2.98 3.3m-11.27-2.81c-2.897 1.692 3.46 3.946 7.727-.563'/%3e%3cpath d='M229.33 449.18c-1.288 1.288-1.288 5.07 2.092 3.704'/%3e%3cpath d='M221.12 450.71c-1.932 1.45 1.368 3.383 7.405.725'/%3e%3cpath d='M223.53 452.8c-2.254 1.85-2.013 4.183 1.288 3.458'/%3e%3cpath d='M216.85 453.85c-2.495 2.254 1.127 3.783 5.473 1.93'/%3e%3cpath d='M216.93 456.35c-4.267 1.93-2.415 5.47.24 4.104m142.23 8.206c-.99 2.13 2.254 3.862 5.313 3.38 2.937-.463 5.748-2.884 3.54-6.276'/%3e%3cpath d='M368.41 469.95c2.897 2.254 8.049-.32 8.049-3.704'/%3e%3c/g%3e%3cg fill='%23fff'%3e%3cpath d='M545.97 128.83c-12.879-6.44-39.6-18.352-47.167-8.693 6.92-2.897 27.204.161 43.946 15.615l3.22-6.922z'/%3e%3cpath d='M553.78 128.15c-14.892-17.347-23.663-13.464-34.371-19.439-10.058-5.614-26.079-6.761-29.183 2.167 14.696-7.157 28.188 3.849 36.475 5.18 11.383 1.828 17.808 10.629 21.138 14.676l5.942-2.584zm56.1-2.22c-7.73-17.708-24.254-13.083-31.554-20.605-10.621-10.946-37.504-21.088-48.613-13.522 24.467-1.288 34.888 16.865 47.971 23.181 9.338 4.508 19.317 14.166 32.196 10.947z'/%3e%3cpath d='M580.91 124c-13.2-16.42-33.488-30.908-42.821-25.435 12.233.644 16.096 9.176 24.792 14.649 8.692 5.473 4.83 13.361 18.029 10.786zm-62.79 28.98c-13.846-5.151-40.888-7.727-53.446 8.05 20.929 3.54 52.479 1.609 53.446-8.05z'/%3e%3cpath d='M515.55 159.1c-13.846-6.44-24.658 2.555-37.671 1.288-24.788-2.415-42.496-.966-44.75 10.946 14.167-12.717 37.992-2.253 47.65-4.829 9.658-2.576 45.396-.322 56.663 4.507-5.796-7.083-14.808-9.014-21.892-11.912zm43.46-36.87c-3.217-10.625-3.058-21.893 12.879-21.088-4.025-4.99-18.833-7.566-21.25 11.108-17.546-12.878-36.704-15.132-40.242-4.024 9.012-7.727 23.017-2.093 39.758 16.903 1.45-.805 5.313-2.415 8.854-2.898z'/%3e%3cpath d='M534.87 136.88c-9.98-6.439-23.504-16.903.163-21.088-10.142-5.473-24.954-3.059-23.342 15.615-27.046-10.947-46.467-7.252-50.55 3.541-4.509 11.913 12.238 18.513 15.133 10.947-3.059 1.288-13.521-2.253-8.05-9.015 5.475-6.76 33.525-1.685 60.208 12.235 7.404 3.864 32.838 3.22 6.437-12.235z'/%3e%3cpath d='M527.78 154.59c-7.7-15.722-32.679-1.449-37.713-16.678-6.88 22.312 35.521 9.966 37.713 16.678zm158.89 17.06c5.237 2.603 9.767-1.489 1.754-4.698 5.242 2.601 9.813-1.392 1.8-4.603 5.242 2.601 9.813-1.392 1.8-4.602-2.137 2.151-5.196 10.04-5.354 13.903zm2.73-30.26c11.592-12.234-.963-16.42 13.2-28.976 11.592-10.273 2.212-17.12 13.204-25.113 3.542-2.575 11.267-7.727 11.913-12.878 4.667 11.59-14.492 13.2-13.204 31.874.82 11.89-7.217 10.851-10.3 30.908-.646 4.185-3.542 13.522-14.813 4.185z'/%3e%3cpath d='M694.56 146.86c6.438-13.844 13.829-13.578 17.383-18.995 6.763-10.303 21.088 1.77 33.163-7.405-2.092 13.039-18.35 8.37-25.433 16.742-7.083 8.37-12.879 12.235-25.113 9.659z'/%3e%3cpath d='M696.17 151.37c11.271-9.015 19.575-3 27.367-7.727 19.638-11.913 27.529 2.414 45.075-3.22-4.67 11.268-30.588 1.61-41.854 9.981-11.271 8.37-50.871 16.42-30.588.966zm-32.84 64.23c-.163-5.151-4.992-11.752-11.754-12.556-6.758-.805-9.658-7.888-14.808-8.21-5.15-.322-8.533-10.625-15.617-10.464-7.083.161-9.98 9.337 6.6 17.708 16.583 8.371 34.933 18.03 35.579 13.523zm-20.93 4.35c-7.083.322-8.05 10.625-14.808 10.947 9.333 4.99 16.096-2.254 20.925-8.693l-6.117-2.254z'/%3e%3cpath d='M648.2 221.23c-6.117 5.151-7.888 15.937.967 18.995-5.313-7.325 9.337-10.625 4.829-17.386l-5.796-1.61z'/%3e%3cpath d='M654.31 221.56c-4.83 9.337 7.567 10.463 4.346 17.547 7.083-1.61 8.212-14.971 1.77-18.513l-6.116.966z'/%3e%3cpath d='M606.98 201.59c11.592-.644 22.192 5.627 29.3 15.776 4.508 6.439 19.638 9.015 24.792 3.863 5.15-5.15 2.254-16.098-10.625-12.556-3.22-5.473-12.558-3.541-17.063-8.049-4.508-4.507-21.896-17.385-26.404.966z'/%3e%3cpath stroke-linecap='round' d='M650.45 208.68c-3.058.644-4.025 5.956-2.096 8.693m8.696-5.473c.967 1.61.32 3.863-.163 4.99m-31.547-14.81c5.954.322 7.083 4.669 13.521 6.278'/%3e%3cpath d='M621.4 187.43c20.571 5.151 36.892 9.659 47.013 15.454 10.121 5.795 25.792 7.405 39.504 3.542 13.713-3.864 40.154-7.405 38.85 9.659 7.188-8.533-1.958-17.709-20.242-19.319.33-8.37-8.63-15.937-15.071-10.947 5.958-.804 11.1 10.303-.65 14.81 2.283-8.37-6.042-15.937-14.692-12.234 5.55 1.61 11.163 10.917-1.254 14.488-7.838 2.254-19.263-.643-27.75-5.795-8.488-5.151-56.154-23.825-45.708-9.658z'/%3e%3cpath d='M673.31 179.06c-6.438 2.897-2.254 9.659-12.233 13.522-9.983 3.863-16.904 12.717-14.65 20.283 6.763-14.81 18.675-14.166 22.858-19.961 4.188-5.795 10.304-14.327 4.025-13.844z'/%3e%3cpath d='M675.08 180.02c-.32 11.751-9.57 7.47-5.958 23.986 1.129 5.151 3.22 13.522-.321 21.893 10.383-7.566 3.704-23.46 8.37-29.459 2.255-2.897 5.15-7.405 6.28-11.268-2.417 6.76-2.254 19.318 4.346 22.537-5.313-12.557 14.329-22.859.804-37.347-1.93 3.542-8.05 9.82-13.521 9.659zm-32.84-11.75c1.613 2.415 3.22 8.532 1.77 11.913 3.222-1.932 7.893-6.922 9.338-10.303 6.6.966 9.175 9.176 2.9 12.717 3.863 0 10.463 0 14.163-4.346-4.504-4.99-18.508-12.718-28.17-9.981z'/%3e%3cpath d='M542.11 145.18c-1.042-.95-2.8-1.852-5.954-2.5-9.746-1.998-4.713-10.784 3.583-10.706 17.704-19.317 27.646-4.426 49.217-10.543 7.55-2.14 12.733-1.507 16.846.272 9.658-6.44 20.988-4.64 29.2 2.926.913-1.451 2.138-2.559 3.858-3.037 7.563-2.1 13.68 4.348 15.771 12.72 5.896-1.093 12.63 1.825 17.058 5.85 6.134-3.15 10.358-3.29 11.913-.052 5.475-2.575 12.567-4.19 16.108 4.502 3.542 8.693-8.37 6.118-10.304 24.47-1.191 11.32-13.842 15.775-23.825 9.014-15.967-10.817-31.55-12.557-39.279 3.864-7.725 16.42-13.779 25.96-32.517 20.605-6.758-1.932-15.454.644-20.925 8.049-5.475 7.405-13.846.482-23.825 1.287 12.554-1.931 7.746-5.09 18.675-5.795 9.98-.644 7.405-9.98 13.842-11.268-25.113 6.44-24.146-2.898-44.75 3.541 9.013-11.59 23.18-5.151 30.263-11.912-18.675-.322-27.025-12.522-35.417-7.405-13.2 8.05-7.408 30.965-41.854 28.976-16.742-.966-27.367 1.288-37.346 11.27 17.388-36.06 41.038-16.25 52.48-27.689 6.762-6.761 11.912-11.913 15.453-18.352 1.246-2.266 2.934-3.562 5.042-4.063-28.654-9.015-11.325-23.058 16.688-24.023z'/%3e%3cpath stroke-linecap='round' d='M683.59 140.11c.438.905.662 2.08.662 3.533 0 7.082-10.624 7.405-11.266 17.869-.338 5.473-.967 8.531-4.671 7.887-3.7-.644-6.921-6.439-3.38-13.2'/%3e%3cpath d='M547.42 134.63c-2.667-1.874-5.333-2.635-7.725-2.657m66.045-10.323c8.525 3.69 12.683 12.546 25.067 12.98 11.921.418 19.321 17.708 39.279 6.439.542-.305 1.07-.59 1.583-.854'/%3e%3cpath d='M635 124.63c-1.78 2.83-2.183 6.778-1.696 10.244M596.04 161.03c-15.129 0-18.996 7.727-18.996 15.132 0 7.405 7.083 17.064 19.642 17.064 12.554 0 19.317-7.727 19.317-16.098s-7.73-16.098-19.963-16.098z'/%3e%3cpath d='M598.77 192.9c-.32-4.185-7.888-3.542-7.567-6.761.321-3.22 4.188-4.508 4.188-9.015 0-4.507 6.758-4.83 9.012-1.288 2.255 3.541 9.017 10.463 10.467 6.922'/%3e%3cpath d='M604.41 175.84c-3.542 3.541-5.15 10.785-.483 16.42m5.313-10.95c-1.125 2.415-1.446 6.117-.158 8.37'/%3e%3cpath fill='none' d='M669.36 169.48c11.833.966 13.846-12.074 4.992-12.878M654.8 134.31c-4.104-5.231-13.521-7.002-13.683 4.105'/%3e%3cpath d='M639.99 151.05c-4.025-9.98-14.329-11.43-19.804-6.44-4.554 4.154-4.667 14.972 5.154 17.226 3.38-4.024 9.98-9.337 14.65-10.785z'/%3e%3cpath d='M635.56 144.77c-5.796-5.152-14.329 4.588-6.6 13.522M525.31 169.16c3.88-.92 9.55.978 18.246 5.067 5.475 2.576 21.896 8.05 32.196 2.576-10.625 3.864-18.671-12.235-26.721-10.303-8.05 1.932-22.779 4.91-28.975-.966 15.129.966 23.267-11.021 40.563-.644 4.833 2.898 10.95 4.83 16.421 4.508-14.163-17.064-32.838-6.118-34.771-19.961 8.533 9.176 29.379-2.093 40.004 15.132'/%3e%3cpath d='M545.33 152.01c-1.992-2.48-1.092-4.95-3.23-6.905'/%3e%3c/g%3e%3cpath d='M654.8 134.31c-3.542-3.783-11.267-.805-9.096 6.842 1.692-3.541 5.313-6.52 9.096-6.842zm-21.89 20.62c2.438-1.77 4.954-3.223 7.075-3.882-1.158-2.864-2.83-5.026-4.758-6.534-1.842-1.272-7.134 5.844-2.317 10.416z' stroke='none'/%3e%3cg fill='none' stroke-linecap='round'%3e%3cpath d='M623.4 141.87c-5.796-3.863-11.108-3.541-12.879-.322-4.183-.16-7.646 2.898-7.808 9.015'/%3e%3cpath d='M611.65 153.14c-6.92-4.748-16.421-2.978-15.775 7.647m-4.185 6.033c3.38-2.737 8.208-4.668 11.913.161m39.767-10.621c-1.288 1.77-2.254 4.507-.163 8.693-2.575-3.38-9.012-3.38-15.938 5.634m31.391-14.807c-8.37.966-8.208 6.439-1.45 8.854M599.1 135.43c-7.083-1.449-12.233 2.737-2.413 6.278M612.62 130.6c-9.983-2.415-14.008.16-9.5 2.415M583.8 170.69c-.32 3.542 1.608 8.21 7.404 2.898m-5.464 7.722c0 .966-.163 2.092-.808 2.897M562.55 134.14c-6.117-1.77-7.242-7.405-.158-6.922m-1.932 19.962c-6.763-2.254-6.763-8.854-1.13-8.21m13.69 4.83c-7.888-1.932-8.208-7.405-2.25-6.6m3.21-10.14c-4.183-.322-10.625 4.347.163 7.083m11.597 2.257c-9.82-1.449-9.658 2.576-3.867 5.152m11.267-14.492c-7.567-1.449-10.142 3.059-4.992 4.99m-18.828 22.86c-1.854-1.529-3.38-8.854 5.47-6.68m12.88 4.43c-5.954-1.61-11.588 4.185-6.117 7.566m13.997-14.486c-6.275-1.127-11.588.644-8.208 2.897'/%3e%3c/g%3e%3cpath fill='%23fff' d='M654.46 134.31c-3.538.655-6.708 2.734-8.762 6.84'/%3e%3c/g%3e%3c/svg%3e\"},988:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1100 800'%3e%3cpath fill='%23ef2b2d' d='M0 0h1100v800H0z'/%3e%3cpath fill='%23fff' d='M300 0h200v800H300z'/%3e%3cpath fill='%23fff' d='M0 300h1100v200H0z'/%3e%3cpath fill='%23002868' d='M350 0h100v800H350z'/%3e%3cpath fill='%23002868' d='M0 350h1100v100H0z'/%3e%3c/svg%3e\"},4827:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'%3e%3cpath fill='%2375aadb' d='M0 0h36v24H0z'/%3e%3cpath fill='%23fff' d='M0 9h36v6H0z'/%3e%3cpath d='M0 10h36v4H0z'/%3e%3c/svg%3e\"},6783:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1098 549'%3e%3cpath fill='%23C8313E' d='M0 0h1098v549H0z'/%3e%3cpath fill='%234AA657' d='M0 366h1098v183H0z'/%3e%3cpath fill='%23FFF' d='M0 0h122v549H0z'/%3e%3cg id='b'%3e%3cpath d='M4 0h3v1h1v1h1v1h1v1h1v1h-1v1H9v1H8v1H7v1H6v1H5V9H4V8H3V7H2V6H1V5H0V4h1V3h1V2h1V1h1zm1 2h1v1h1v1h1v1H7v1H6v1H5V6H4V5H3V4h1V3h1zm0 2h1v1H5zM0 1h1v1H0zm0 6h1v1H0zm11-7h.6v2H11zm0 7h.6v2H11zM2 9h1v1h1v1h1v1H4v1H3v1H2v-1H1v-1H0v-1h1v-1h1zm0 2h1v1H2zm6-2h1v1h1v1h1v1h-1v1H9v1H8v-1H7v-1H6v-1h1v-1h1zm0 2h1v1H8zm-8 4h1v1H0zm11-1h.6v2H11zM0 18h1v-1h1v-1h1v-1h1v-1h1v-1h1v1h1v1h1v1h1v1h1v1h1v1h.6v4H11v1h-1v1H9v1H8v1H7v1H6v2.6H4V30H3v-1H2v-1H1v-1H0v-3h1v1h1v1h1v1h1v-1h1v-1h1v-1h1v-1h1v-1h1v-1H8v-1H7v-1H4v1h2v1H5v1H4v1H3v-1H2v-1H1v-1H0zm0 4h1v1H0zm11 3h.6v1H11zm-2 2h1v1h1v1h.6v1.6H11V30h-1v-1H9zm-2 3h1v.6H7z' transform='scale(5.30435 9)' id='a' fill='%23C8313E' fill-rule='evenodd'/%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 122 0)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='matrix(1 0 0 -1 0 549)'/%3e%3c/svg%3e\"},4790:c=>{c.exports=\"data:image/svg+xml,%3csvg viewBox='0 0 1000 600' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cpath d='M0 0h1000v600H0z' fill='%23d90f19' fill-rule='evenodd'/%3e%3cpath d='M0 60h1000v480H0z' fill='%23171696' fill-rule='evenodd'/%3e%3cg transform='matrix(.8 0 0 .8 154.642 48.648)'%3e%3ccircle cx='414.43' cy='301.623' fill='%23fff' r='210'/%3e%3cpath d='M452.343 161.539s-1.367-.114-2.621-1.027l2.62 1.023' fill='%236f6'/%3e%3cg fill='none'%3e%3cpath d='M452.345 161.539s-1.367-.114-2.621-1.027' stroke='%23060' stroke-width='.57'/%3e%3cpath d='m422.83 184.101 1.483.913 1.594.228s1.71 1.594 3.647 3.077c1.479 1.254 1.479-.227 1.479-.227l.913 3.647h1.252s-.344 2.39-.344 3.643l2.165-1.826 2.503 2.167s1.823-1.593 2.735-1.593c.91 0 1.252-.915 1.252-.915h.112c-6.036-2.844-8.657-5.812-6.835-8.889 2.962-5.125 7.862-1.822 9.457-1.138l22.106 11.85s1.48-.908.453-1.822c-1.142-.91-1.596-3.189-1.251-4.099.338-.912 2.844 2.848 4.1 3.188 1.255.343 4.103.8 4.103.8l-.115-1.142s3.646 2.509 3.646 3.763c0 0 2.62-1.37 1.708-2.168-.909-.795 3.988 1.94 4.33 3.422l1.026-1.147c-.112 0 .345-3.646 1.599-5.355 1.14-1.708 2.392-2.165 2.392-2.165s1.14-1.938 2.278-1.938c0 0-1.138-.795-1.593-1.707-.57-.91-1.938-1.367-1.938-1.367s1.708-1.251 2.166-1.825c.455-.683.91-.795.91-.795s-2.62-2.166-4.442-2.51c0 0-.112-2.959-2.391-3.187h1.026s-1.708-3.188-3.305-3.304c0 0 1.027-1.14 1.938-1.25 0 0-1.938-2.51-4.558-1.596l1.713-.684s-1.254-1.369-5.13-.686c0 0 .341-1.59-1.366-2.847 0 0-1.481.112-1.481 1.256 0 0-1.366-1.256-3.076-1.256-1.708 0 .569 1.822.569 1.822s-2.277-1.479-3.646-1.027c0 0 .568-2.617-.91-3.986 0 0-1.71.909-2.168 2.051l-.455-1.142s-2.278 2.738-2.733 1.937c-.344-.45-.683-2.389-.683-2.389l-1.367 2.052.227-2.852s-1.593.913-2.847 3.877c0 0-1.597 1.479-1.597 2.847 0 0-1.25-1.478-2.39 0-1.027 1.596 0 1.254 0 1.254s-.457.569-1.596.798l.23.91s-1.482-.795-2.62-.453l.567 1.364s-2.962.23-3.076-2.161c0 0-2.505-1.255-2.849.112 0 0-2.051 0-1.822 1.138 0 0-.572-1.14-1.597-1.366-1.139-.343-.228 1.478-.228 1.478s-.34-1.366-1.707-2.051c-1.367-.566-.23 1.254-.23 1.254s-1.82-1.48-.907-2.62c0 0-1.71 1.596-.912 3.08l-1.142.795s-.568-.566-.456-1.027c.112-.458-1.937 1.367-1.937 1.367s-1.255-2.962 0-2.962c.112 0-2.166-.115-2.505 2.509-.344 2.503 0 0 0 0s-1.484.112-2.85.564c-1.484.46 1.024 1.484 1.024 1.484s-2.164-.457-3.419.224l.8 1.027s-.799-.795-2.734-.112c-2.053.57.455.912.455.912s-2.05-.455-3.075 0c-1.026.457.338 1.254.338 1.254s-3.757-1.14-4.329-.798c-.567.344 1.255 2.168 1.255 2.168s-2.278.568-2.733 2.278l2.05.799s-.91.454-1.367 1.364c-.453.914 1.367.459 1.367.459s-2.505 1.822-2.505 3.19c0 0 1.825.566 3.19-.8 1.368-1.363.457-.908.457-.908l.112.909s2.62-1.138 2.62-1.822c0-.567-.45.911-.45.911l2.62-1.366 1.708 1.138'/%3e%3cpath d='m420.665 148.543-.57-2.502s3.077 0 5.813.684l1.025-2.393s2.733 1.252 3.648 2.161c0 0 5.354-1.366 6.95-.795l-.684 2.507s4.9.34 6.495.91c1.48.57-.684 1.826-.684 1.826s5.584.682 7.975 2.162c2.509 1.48 2.509 2.737 1.254 3.08l3.076 4.898s-4.9.57-5.813 1.826c-.91 1.252-1.823-1.256-1.823-1.256l-.91 3.42s-3.075-1.598-4.33-2.737c0 0-1.486 1.825-.572 2.736 0 0-3.987 0-5.586-3.649 0 0-2.392-.34-2.392 1.826 0 0-2.736-3.077-3.419-3.991l-3.078.914s-.913-1.254-2.05-1.598c-1.254-.226-.343 1.598-.343 1.598l-1.826-2.166-1.82-2.168S419.402 158 418.15 158c-1.143 0-1.143-1.484-.914-2.51.34-.909-3.646-1.138-3.987 0 0 0-1.143-4.554 3.074-5.812l4.335-1.14'/%3e%3c/g%3e%3cg stroke-width='.57'%3e%3cg fill='%23d67c59' stroke='%23000'%3e%3cpath d='M449.036 163.019s.683-1.596 1.938-.683c1.14.91 1.478 4.9 1.478 4.9l-1.823.91s1.027-1.479-1.593-5.127zm-10.36 35.784s.91-1.251-.342-3.99l1.822-.57s.683 2.165-.229 4.562h-1.254m31.565-6.274-4.33 2.623 2.166 1.026 5.241-3.079-3.08-.57m-58.003 16.98c-1.142.912-1.254 2.508-1.937 3.418-.567.91-2.279 2.162-2.391 3.531-.23 1.367-.342 2.279.226 4.104.68 1.821 3.531 9.912 2.392 16.07-1.255 6.151-.796 8.773-.34 9.688.453.91 1.823 3.416 2.622 3.416 1.821-.228 1.024-.796 1.707-1.938 1.708-2.962 0-25.87-.8-32.25-.567-4.903-2.85-9.349-3.074-9.8-.227-.575-.683-2.054-1.026-2.967-1.708-4.104-3.76-7.633-3.76-16.184 0 0-5.585 1.254-10.37-9.574-2.505-5.47-6.153-4.9-10.482-6.72l1.938-1.258s3.646 1.826 5.47 1.826c1.823 0 1.255-3.647 1.255-3.647l1.822-1.825v7.98c0 3.647 5.013 8.661 7.975 10.143 1.826.909 4.219-2.85 3.65-6.497-.572-3.645 0-8.545 0-8.545l2.505 1.478s-.91 1.596-.683 2.509c.34.913 1.593-.912 2.505-1.826 0 0 .227.23 1.14.23 0 0-1.823 3.074-2.733 4.672-.91 1.483-.91 7.296-.91 9.462s.798 7.177.798 8.771c0 1.143 2.162 5.813 3.875 8.664.569 1.14 1.936 4.1 1.936 4.1 1.366 2.166 1.478 3.648 2.28 5.474.454.909 1.254 3.53 1.822 8.092.229 1.138.456 5.47.8 8.316.34 2.735 2.62.571 5.352-1.367 2.734-2.05 2.734-6.951 2.734-6.951s2.167-1.826 1.824-.798c-.229 1.14 1.143 2.28 1.143 2.28-1.71 3.872-.684 3.417 1.024 3.303 1.708-.23 7.632-4.673 7.632-4.673.798-.23 4.331-.23 3.762 0-.684.343-1.596 2.052-1.596 2.052l3.874-.457c-1.366 1.027-6.496 3.987-7.633 4.673-1.254.8-7.403 3.763-10.026 4.786-2.62 1.14-7.75 3.648-7.977 6.269-.114 2.622.341 9.688 0 11.965-.227 2.278-1.14 12.423-1.14 12.423h-12.192s2.393-8.89-.116-11.282c-2.392-2.51-7.976-9.804-11.622-12.313-3.648-2.391 2.391-.566 2.391-.566v-2.508l5.584 6.727s9.684-8.548 0-20.171c-3.077-3.649-6.154-9.231-8.546-9.804-2.506-.683-3.76-1.254-7.977 0-4.33 1.253-14.7 1.253-19.03-5.587l3.65-.57 3.072-1.253s-1.252 4.33 7.407 4.33c8.545 0 9.8 0 9.117-7.976l2.505-1.255 1.825 1.826s-1.254 4.33-.57 6.152c.57 1.823 3.648 3.079 6.04 4.9 1.026.8 1.824.913 2.507.913 1.025-.114 1.251-.114 2.62-1.482 2.05-2.28 1.594-2.165 3.646-3.987 0 0 1.026-1.596 1.255-1.826l1.254 3.307z'/%3e%3cpath d='M414.057 203.474c.455-.452 1.367-2.166 2.165-3.647 1.367-2.277 2.965-3.645 4.786-6.496 1.707-2.62 2.392-6.493 1.707-9.229l1.594.913.117 4.33s2.166-1.826 3.078-2.278l.909.454s-6.837 7.067-13.218 18.464l-1.14-2.506zm-59.93-23.7c.911 1.59 1.825 4.674 4.558 7.065l1.822-.57s-4.215-4.9-4.215-7.063l-2.166.567m10.707-2.743s.57 5.813-.91 7.978l1.823-.907s1.252-3.989.91-6.156l-1.823-.91zm60.055-18.346s-.344 8.205 1.255 13.22l2.162-.681s-.34-1.486 1.48-2.17c1.826-.568 6.154-2.39 8.319-4.216l-.682-1.82s-3.304 2.62-4.9 3.303c-1.48.571-2.392 1.252-3.646.913-1.255-.344-2.733-2.397-1.824-7.07zm24.148 38.294s-.568 5.813-.227 8.321l1.938.457s-.454-6.953.795-7.523l-2.506-1.253m8.669 4.332s-2.166 3.761-4.67 4.104l3.987-.798s1.142-.57 2.85-2.391l-2.168-.913'/%3e%3c/g%3e%3cg fill='%23338a00' stroke='%23030'%3e%3cpath d='m422.839 184.098 1.478.907 1.596.232s1.707 1.595 3.646 3.075c1.478 1.254 1.478-.228 1.478-.228l.91 3.646h1.255s-.343 2.394-.343 3.648l2.167-1.826 2.507 2.166s1.822-1.594 2.732-1.594 1.255-.91 1.255-.91h.115c-6.04-2.852-8.658-5.813-6.837-8.89 2.964-5.128 7.862-1.826 9.456-1.14l22.106 11.85s1.481-.91.455-1.825c-1.142-.907-1.598-3.188-1.254-4.1.341-.91 2.847 2.847 4.099 3.19 1.254.343 4.101.8 4.101.8l-.114-1.14s3.647 2.506 3.647 3.761c0 0 2.62-1.366 1.708-2.166-.91-.795 3.99 1.94 4.33 3.423l1.025-1.143c-.114 0 .343-3.647 1.595-5.357 1.143-1.706 2.394-2.164 2.394-2.164s1.142-1.938 2.278-1.938c0 0-1.143-.795-1.596-1.708-.57-.915-1.938-1.368-1.938-1.368s1.71-1.253 2.167-1.824c.455-.682.912-.8.912-.8s-2.62-2.162-4.446-2.501c0 0-.112-2.967-2.391-3.192h1.026s-1.708-3.192-3.304-3.304c0 0 1.025-1.14 1.937-1.256 0 0-1.938-2.505-4.556-1.593l1.708-.681s-1.254-1.367-5.126-.684c0 0 .341-1.595-1.366-2.85 0 0-1.48.112-1.48 1.253 0 0-1.367-1.253-3.076-1.253s.57 1.826.57 1.826-2.279-1.484-3.648-1.027c0 0 .57-2.62-.912-3.991 0 0-1.705.913-2.165 2.052l-.454-1.138s-2.279 2.734-2.732 1.936c-.342-.454-.684-2.39-.684-2.39l-1.364 2.052.226-2.853s-1.595.913-2.848 3.874c0 0-1.595 1.483-1.595 2.846 0 0-1.254-1.478-2.393 0-1.027 1.596 0 1.258 0 1.258s-.457.565-1.596.795l.228.909s-1.48-.795-2.621-.453l.568 1.367s-2.962.228-3.074-2.162c0 0-2.507-1.256-2.85.112l-1.824 1.14s-.57-1.14-1.596-1.366c-1.142-.342-.227 1.479-.227 1.479s-.34-1.367-1.708-2.052c-1.366-.566-.227 1.256-.227 1.256s-1.823-1.483-.91-2.62c0 0-1.707 1.595-.91 3.078l-1.14.795s-.571-.569-.459-1.025c.118-.457-1.936 1.366-1.936 1.366s-1.254-2.961 0-2.961c.114 0-2.165-.115-2.505 2.509 0 0-1.481.112-2.85.565-1.478.458 1.027 1.483 1.027 1.483s-2.165-.457-3.418.228l.798 1.027s-.798-.799-2.735-.117c-2.053.57.454.912.454.912s-2.05-.455-3.075 0c-1.027.457.342 1.255.342 1.255s-3.762-1.141-4.331-.796c-.568.34 1.253 2.166 1.253 2.166s-2.279.568-2.732 2.278l2.05.795s-.908.455-1.367 1.37c-.452.91 1.366.453 1.366.453s-2.504 1.826-2.504 3.192c0 0 1.823.567 3.19-.798 1.367-1.366.455-.912.455-.912l.115.913s2.621-1.138 2.621-1.82c0-.572-.453.906-.453.906l2.62-1.366 1.709 1.142v-.003z'/%3e%3cpath d='m420.665 148.548-.57-2.506 5.813.68 1.024-2.391s2.732 1.252 3.646 2.161c0 0 5.354-1.366 6.952-.795l-.684 2.509s4.9.339 6.497.907c1.48.571-.684 1.826-.684 1.826s5.584.683 7.979 2.165c2.506 1.478 2.506 2.735 1.254 3.074l3.073 4.9s-4.898.57-5.81 1.821c-.911 1.255-1.822-1.25-1.822-1.25l-.912 3.418s-3.076-1.597-4.33-2.735c0 0-1.478 1.826-.568 2.735l-5.585-3.647s-2.395-.342-2.395 1.826c0 0-2.732-3.08-3.416-3.992l-3.08.913s-.907-1.251-2.05-1.596c-1.254-.224-.34 1.597-.34 1.597l-1.824-2.166-1.823-2.16s-1.596 2.161-2.85 2.161c-1.142 0-1.142-1.478-.91-2.506.34-.912-3.648-1.138-3.988 0 0 0-1.143-4.558 3.074-5.81l4.33-1.14zm-22.097 15.613-1.937 1.826-1.14-.571-2.278 2.507-.457-1.37-1.254 2.052-1.936-.683-.91 1.481-1.709-.343s-1.481 1.37-2.394 1.711c-.909.23 0-2.05 0-2.05s-1.366 2.28-2.392 2.28c-.91 0-.567-1.027-.567-1.027s-.57 1.479-1.709 1.708c-1.026.116-.57-1.138-.57-1.138l-1.826 1.367v-1.14l-.796-.34s.454-2.053 1.255-2.507c.795-.458-.8-1.821-.8-1.821l.796-.913s-2.28-.57-2.28-.112c0 0 1.143-3.076 2.734-3.651l.116-3.416s1.595-1.367 3.076-1.483c1.594-.23-.455-2.621-.455-2.621l3.646-2.162.454-2.62 5.584.451 1.14-2.391 4.447 1.137 3.757-1.937 2.733 3.192 4.102.342s-.112 2.847-.112 3.647c0 0 4.897 1.478 5.469 1.938 0 0-.912 2.962-.912 3.531 0 0 3.42-.912 4.446-.683 0 0 .343 3.192.454 3.987 0 0 5.81 1.826 6.153 2.852 0 0-1.254.795-1.937 1.82 0 0 .683 3.536.683 4.674l-.456.683s-1.71-1.595-3.077-1.823l-1.142 2.506-2.05-1.366-1.252.114s-1.026-1.255-1.826-1.255l-.114-1.138-1.595 1.025s-2.507-1.255-2.507-2.053c0-.683.115-1.825.115-1.825l-2.62 1.825s-.57-1.366-.455-1.937c.114-.57-1.026 1.369-1.026 1.369s-1.368-2.395-1.254-2.852l-.343 1.938s-2.733-.907-3.075-2.733v-.004z'/%3e%3cpath d='M362.1 175.328s4.788 2.397 4.788 3.535c0 0 1.254-2.508.57-3.42l1.824 1.254s.565-2.277-.117-2.963c-.571-.57 4.1-2.504 5.126.57 0 0 2.85-2.962-2.62-5.47 0 0-.453-1.823 2.85-1.367 0 0-.228-1.14-1.027-1.596h3.192s-1.938-1.596-4.786-2.051c-2.733-.458-1.027-.795-1.14-1.37-.23-.57 0-2.621 0-2.621s-1.596-.57-2.85.114l.456-.572s-2.964-.795-4.1-.112c0 0-1.71-.683-1.481-2.508 0 0-1.71-.112-2.504 1.708 0 0-1.596 1.825-3.76 1.825-.454 0-2.05-.914-2.05-.914l-1.37 3.192-2.164-.112.683 1.251s-3.304-.907-4.33 0c0 0 1.254 1.94.91 3.304 0 0-2.62.46-3.19.915-.683.45.911.794.911.794s-2.962.912-3.648 1.826l1.142.907-1.368 1.828 1.142.224s-1.937.572-2.962.914c-1.025.34 1.823.571 1.823.571l-1.367 1.251 2.166.34s-1.708 4.56-1.822 6.726c0 0 2.62-3.192 3.304-3.418l-2.05 3.418s3.875-1.251 4.217-1.825c.339-.683.681-1.252.681-1.252l.115 1.938s1.481-2.053 1.709-2.85c.116-.796 2.392.797 2.392.797v-1.142s2.053.683 2.733.8c.799.112.912-.343.912-.343l1.938-.227-.344 1.593s1.366-.91 1.706-1.823c.229-.913.911 0 .911 0l.91-3.647h1.935zm-15.612 16.184 1.822 3.761c-1.48.112-3.646 1.821-3.646 1.821.34 6.27-1.252 5.927-1.252 5.927.451 1.14-.29 3.255-.29 3.255l9.063-5.418.116-.57 10.712-5.016.338.569 3.078-1.708 2.166 5.695-2.165 1.255c.116 1.937 2.394 5.358 2.394 5.358l2.849-.682 3.075-1.141s.116 1.708.116 1.142c0-.459 3.302-1.596 3.302-1.596l1.48 1.482c1.143-.112 3.19-2.852 3.19-2.852l2.394.915s.797-1.367.797-2.393c0-.912 2.962-.912 2.962-.912l2.053 1.478 2.62-2.161s.798 1.595 1.823 1.82c1.143.116 3.988 2.279 3.988 1.826 0-.454 1.254-2.963 1.254-2.963l4.785 1.938c-.681-2.166-2.276-4.786-2.276-4.786s2.276-1.82 1.823-2.277c-.455-.457-1.824 0-1.824 0l1.366-2.735h-1.822l.567-.681-2.961-1.253 1.594-3.192c-.684-.8-8.546-2.396-8.546-2.396l1.823-1.708s-.911-1.367-1.823-1.367-5.698.116-5.925-.338c-.117-.457-2.053-2.169-2.053-2.169l-2.964 2.17-1.478-.458-2.62 1.027s0 1.48-.346.454c-.339-.915-2.733-3.304-2.733-3.304-.455.795-3.53 4.442-3.53 4.442s-.457 1.94-1.483.57c-1.142-1.367-3.533-2.848-3.875-1.709-.342 1.256-2.504 2.392-2.964 2.054-.452-.346-2.961-.115-3.19.568-.114.795-2.848 2.847-2.848 2.847-1.71-.796-4.447-.338-4.447-.338s-.795 1.251-.907 2.277l-5.583 1.48h.003v-.004zm51.509 46.156v-2.394l2.733 1.822 1.596-1.825 2.05 2.05 1.254-2.05v3.308l3.076-2.733 1.821.795v-2.62s2.167-3.648 1.255-4.33l1.823-.569s-3.076-3.077-3.987-3.65c-.91-.682-2.165-.682-2.165-.682s-2.393-2.396-3.988-3.077c-1.48-.57-2.396.681-2.396.681s-.91-1.82-2.505-2.163c-1.478-.34-1.478 1.254-1.478 1.254s-1.142-1.142-2.62-1.71c-1.481-.68-.456 1.366-.456 1.366l-5.242-1.59.681 1.59-4.897-1.248.567 1.823-3.416-.574-.229 1.487-4.9.909.912 1.594-3.077-1.254v2.167l-3.42 1.251 1.255 1.143s-4.558 2.165-5.471 2.848c-.91.568 1.826 1.82 1.826 1.82l-4.901-.683 1.823 1.597-4.33 3.991 3.076 2.165-1.824 2.734 4.559.91 1.822 3.076 3.76-.684v3.416l5.47-4.327s3.99 3.532 4.33 2.506c.227-.91.227-3.987.227-3.987h1.937v-3.075l1.479 1.252 2.509-3.649 3.302 4.56 2.505-5.81 3.647.57zm22.333-13.788-.57-5.241-1.593 1.596.68-4.9-2.503-.458.909-4.784-1.822-.914.453-2.277 1.825-1.367 3.304-3.192 7.63.119.911-2.509 5.472.913c.909 1.026 3.757-2.052 3.757-2.052h1.143l1.254 2.39s3.987-.571 5.81.683l-2.166 2.962 3.987.341 2.733.571 2.85-.912 3.648-.231.91 1.481h3.42l-1.14 1.367 4.444 2.05-.91.914s2.506.91 4.33.91h.91s.91 2.162-.344 3.074c0 0 1.254 3.079 3.987 3.65 2.735.57 2.735.57 3.076 1.25.345.572 0 3.65-3.075 3.65v3.08s-2.392 2.163-2.733 3.072l-1.825-1.254s-1.59 1.826-1.59 3.08c0 0-3.99-5.245-5.473-5.474-1.595-.34-1.254 2.964-1.254 2.964l-4.328-3.646-.572 2.505-3.645-3.075-2.166 1.477-3.876-3.987-3.758.459 1.478-1.94h-4.555l-.91-3.987-.684 3.304-2.733-1.822-3.532 3.874s-.455-.46-1.026-2.28c-.567-1.824-2.165 2.163-2.165 2.163l-1.254-2.847-1.478 2.847s-1.255-2.164-2.51-2.847c-1.138-.569-2.39 3.416-2.73 5.242zm.683 11.962.227-1.82 6.494-2.51 5.472-2.05 2.732-1.254 1.255 2.166 1.594-3.075 2.506 3.188 1.37-1.708 2.163 1.594h1.823l.342 2.397s4.558.338 4.898-.57c.344-.913.911 3.075.911 3.075l4.329.569.912 4.9s2.161 4.56 1.48 6.384c-.571 1.938-2.394-2.394-2.394-2.394s-.34 3.419-.683 4.33c-.227.91-5.81-.911-5.81-.911l-2.393 4.558s-2.506-3.647-3.646-3.647c-1.254 0-1.254 3.647-1.254 3.647s-3.647-4.33-5.242-6.156c-1.482-1.82-1.826 1.826-1.826 1.826s-2.39-3.99-2.39-5.13c0-1.252-2.167-2.509-2.167-2.509s-3.763 4.333-6.498 5.474c0 0 .343-2.736-.568-3.648-.91-.913-3.647 1.822-3.647 1.822s-1.938-4.217 0-8.549z'/%3e%3c/g%3e%3cg fill='none' stroke='%23004b00'%3e%3cpath d='m451.097 167.913.571 2.28s2.05-.458 3.418-.342c0 0-.342 1.823-.797 2.62 0 0 2.733-.454 3.987.341l-.57 1.367 3.193 1.37-2.964 2.391s4.783 1.707 5.698 3.077c0 0-3.076 2.165-3.532 2.053-.456-.23-.115.907.683 1.934l-2.62-.112s1.024 2.394.908 3.304c-.114.91-4.33.681-4.33.681m16.403-6.146s.797-4.558-.453-5.698c0 0 2.962 2.509 4.899 2.62 2.051.118-.116-3.76-.116-3.76s2.85 1.48 4.217 1.822c1.366.228-1.027-2.85-1.027-2.85s.796-1.482 3.075-.114m-52.976-18.116s.112-1.026-.346-1.594c-2.732-3.762 2.85 2.85 3.988 3.077m5.24-.005s1.822 1.367 2.734 1.367c.911 0-.57-3.648-1.026-4.101-.454-.458 3.304 1.478 4.673 1.709 1.366.34 1.594-2.278 1.594-2.278s4.217.682 5.13 1.254m-29.29-.796s-.341-2.392-.453-3.417m-28.253 14.82c-.228-.458 1.143-2.51.572-3.42 0 0 .795.684 1.593.798.683.112.452-2.622.452-2.622l.913.34s2.394-1.142 1.938-2.053c-.46-.91 1.594 1.366 1.594 1.366s1.368-1.366 1.368-1.934c0-.576 1.594 1.363 1.594 1.363s1.708-.342 1.708-1.366c0-1.025 2.165.34 2.165.34s.91-1.252.799-2.051m-23.017 11.4s1.024-2.391-.116-3.987m-27.571 11.502c.115-1.138.683-4.215.115-4.672-.57-.452 1.142.457 2.507.799m10.817-.45c-1.365-1.37-2.165-2.052-4.327-2.052m-18.8 9.68c.342-.796.91-2.734.57-3.874m29.166 60.4 1.48-3.077 1.824 4.329 1.252-2.735.455.912 2.733-2.963 2.964 4.445m47.522-19.257 1.937-3.873 2.621 1.367 1.254-3.76 2.733 1.71 1.595-3.533 3.077.795.226-2.506s2.165 1.25 2.734 2.162c.682.914 0-3.073 0-3.073l2.505 1.138s1.824-1.826-.683-2.85'/%3e%3cpath d='m442.663 212.938 2.733 3.99 2.277-2.621 2.053 4.442 2.62-1.595 3.76 2.165 1.707-1.366 4.103 2.963 1.709-3.53 3.646 1.139 2.39-4.1m-98.443-10.716s1.596-2.738 1.025-3.991c-.683-1.254 3.304 2.165 3.304 2.165s.91-2.735.341-3.987c-.683-1.254 4.558 3.648 4.558 3.648s.913-4.216 0-5.13c-.911-.913 5.014 1.254 5.014 1.254s2.395-.681 1.482-1.937c-.911-1.253 3.988 1.822 3.988 1.822s1.138-3.074 0-4.217c-1.255-1.25 3.645 1.483 3.645 1.483l-1.822-3.307 3.987.228-.34-3.647m35.32 52.644 2.621-1.255 2.28 2.281 2.505-3.987 3.075 2.96.456-2.96 3.305 1.37.683-1.828 3.645 1.941.341-2.737 1.822.572.342-1.826'/%3e%3c/g%3e%3c/g%3e%3cpath d='M372.125 370.434a81.476 81.476 0 0 1-6.953-15.154l49.34-43.423 49.34 43.306c-1.71 5.012-3.99 10.37-7.178 15.5l-.393.631a481.232 481.232 0 0 1-3.71-1.429s-1.596 1.482-2.845 1.594c-1.71.23-3.192-1.479-3.192-1.479s-2.166 1.823-4.33 1.479c-2.165-.224-3.077-1.594-3.077-1.594s-2.278 1.822-3.876 1.48c-1.478-.346-2.505-1.371-2.505-1.371s-1.366 1.713-3.304 1.372c-1.822-.347-3.531-1.372-3.531-1.372s-2.845 1.25-4.67 1.481c-1.823.345-3.42-1.596-3.42-1.596s-2.392 1.596-3.304 1.596c-.91 0-4.329-1.596-4.329-1.596s-3.533 1.14-4.786 1.14c-1.142 0-4.67-1.478-4.67-1.478s-3.304.907-4.785.907c-1.597 0-3.875-.907-3.875-.907s-2.73 1.253-4.215.907a15.434 15.434 0 0 1-2.85-.907s-2.962 1.253-4.9.907c-1.822-.338-3.987-1.59-3.987-1.59s-.342.91-3.875 1.59h-.115' fill='%239dc9e2'/%3e%3cg stroke='%23000'%3e%3cpath d='M414.517 261.938v49.916l-49.34 43.65c-4.783-13.903-5.125-26.324-5.125-31.68V261.94h54.466' fill='%23fff' stroke-width='.797'/%3e%3cpath d='M414.517 261.938v49.916l49.225 43.65c4.784-13.903 5.127-26.324 5.127-31.68V261.94h-54.352' fill='%23ffe682' stroke-width='.797'/%3e%3cg stroke-width='.57'%3e%3cpath d='M382.686 360.063c3.71 2.01 2.453 1.377 10.142 4.099 6.268 2.17 13.558 3.192 24.154 3.192 9.272 0 14.491-.736 17.428-1.546 3.046-.873 3.767-2.103 3.767-2.103l-7.633 7.75s-30.682 1.656-36.237-1.937c-2.162-1.142-6.836-4.9-11.62-9.457z' fill='%23d67c59'/%3e%3cpath d='M427.7 345.592s9.8 5.582 0 16.296m-44.095-1.254 14.129-13.452-1.596 18.008m7.403 1.593v-30.084m24.159 30.084v-31.91m-12.197 32.48v-34.3' fill='none' stroke-linecap='round'/%3e%3cpath d='m403.541 338.3-6.382 2.053 6.382.683V338.3m11.962-4.68-6.72 2.508 6.72.228zm12.197 1.825-6.723 2.509 6.723.34v-2.852zm3.987 14.481c-.342-1.368 3.99-1.251 3.99-1.251s1.253 4.555 0 7.403l-3.647-.683s.343-3.074-.342-5.47z' fill='%23d90f19' stroke-linejoin='round'/%3e%3cg fill='%23fff'%3e%3cpath d='m385.766 358.808 11.966-11.626-.572 6.954s-6.15 3.987-6.15 6.837l-5.243-2.166m6.372 2.399s1.255-3.648 4.67-5.47l-.34 7.294-4.328-1.826zm17.215-20.172s4.897-.684 8.546 0c0 0-.572 4.9 0 5.81 0 0-6.724-1.595-9.457.91 0 0-.912-4.559.912-6.72zm-10.371 1.254s4.9-.683 8.545 0c0 0-.91 5.473-.342 6.384 0 0-5.471-3.08-8.204-.574 0 0-1.825-3.758 0-5.81z' stroke-linejoin='round'/%3e%3cpath d='M398.635 348.66s4.9-.568 8.546 0c0 0-.57 4.9 0 5.814 0 0-6.381-1.481-9.117.91 0 0-1.254-4.558.571-6.723zm9.8-.906s7.066-.908 10.71-.34c0 0-1.48 3.988.344 6.723 0 0-7.635-2.052-10.483.34-.003 0-2.393-4.559-.571-6.724zm-10.36 7.638 9.455.683s-.909 6.952-.341 7.863c0 0-7.632-1.826-9.117.681 0 0-2.506-6.38 0-9.229h.003zm10.708 0s8.2-.571 11.963 0c0 0-2.168 5.246.229 9.8 0 0-10.713-3.072-12.197-.571 0 0-2.501-6.38 0-9.229zm12.533-14.358s4.897-.684 8.545 0c0 0-.568 4.9 0 5.81 0 0-6.723-1.595-9.454.91-.003 0-.915-4.559.909-6.72zm0 6.72s4.897-.57 8.545 0c0 0-.568 4.9 0 5.813 0 0-6.723-1.482-9.454.911 0 0-.915-4.558.909-6.722zm.57 7.067s4.898-.68 8.659 0c0 0-1.255 7.635-.684 8.546 0 0-5.577-2.621-8.202-.338 0 0-1.592-6.039.229-8.208z' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M432.023 355.392s1.592 5.81 3.645 6.496l-2.733 3.304s-3.304-2.393-3.648-5.124c0 0 2.165-2.51 2.735-4.674z'/%3e%3c/g%3e%3c/g%3e%3cg stroke-width='.61'%3e%3cpath d='M456.45 371.117c-7.862 13.108-20.738 25.413-41.93 33.048-21.539-7.747-34.64-20.624-42.39-33.62l.114-.113c3.532-.687 3.875-1.595 3.875-1.595s2.165 1.254 3.988 1.596c1.937.34 4.899-.912 4.899-.912s1.254.571 2.848.913c1.479.34 4.215-.911 4.215-.911s2.279.913 3.874.913c1.48 0 4.786-.912 4.786-.912s3.53 1.478 4.67 1.478c1.255 0 4.785-1.138 4.785-1.138s3.42 1.596 4.33 1.596c.91 0 3.304-1.598 3.304-1.598s1.594 1.937 3.416 1.597c1.825-.228 4.673-1.48 4.673-1.48s1.708 1.026 3.532 1.366c1.935.343 3.304-1.367 3.304-1.367s1.024 1.027 2.506 1.367c1.595.343 3.873-1.48 3.873-1.48s.91 1.368 3.077 1.594c2.166.343 4.33-1.479 4.33-1.479s1.478 1.708 3.19 1.479c1.254-.114 2.846-1.594 2.846-1.594s2.848.909 3.873 1.254' fill='%23006ac8' stroke='none'/%3e%3cpath d='M454.513 374.085c-1.708.117-1.938-1.026-1.938-1.026s-2.273 1.94-4.443 1.597c-2.277-.338-3.304-1.822-3.304-1.822s-2.393 1.938-3.989 1.595c-1.593-.228-2.732-1.37-2.732-1.37s-1.479 1.714-3.418 1.37c-1.938-.227-3.649-1.369-3.649-1.369s-3.075 1.258-5.014 1.598c-1.937.344-3.532-1.823-3.532-1.823s-4.443 1.483-5.353 1.483c-1.027 0-4.219-1.484-4.219-1.484s-2.163 1.369-3.416 1.369c-1.366 0-5.014-1.596-5.014-1.596s-3.42.913-5.016.913-3.987-.914-3.987-.914-2.963 1.254-4.558.914c-1.595-.344-2.85-.914-2.85-.914s-3.19 1.254-5.126.914c-1.937-.344-4.217-1.596-4.217-1.596s-.34.797-4.099 1.596h-.116' fill='none' stroke-width='.57'/%3e%3cg fill='%23006ac8' stroke-width='.683'%3e%3cpath d='M383.75 378.733s-.318.745-3.29 1.4c-.063-.004-.806.176-.806.176.274-.05.497-.09.736-.14a13.81 13.81 0 0 1-.84.28c3.36 4.853 8.394 9.26 13.638 12.793 5.247 3.535 11.275 7.753 21.538 10.763 10.792-4.213 13.67-5.815 20.724-10.539 7.053-5.152 10.727-8.36 14.661-13.645-3.08 1.749-2.637 1.768-4.233 1.54-1.596-.34-2.767-1.505-2.767-1.505s-1.456 1.736-3.394 1.505c-1.937-.338-3.64-1.504-3.64-1.504s-2.53 1.721-5.04 1.609c-1.937-.116-3.536-1.82-3.536-1.82s-4.447 1.47-5.356 1.47c-1.026 0-4.2-1.47-4.2-1.47s-2.177 1.364-3.429 1.364c-1.366 0-5.006-1.61-5.006-1.61s-3.41.91-5.005.91c-1.596 0-3.989-.909-3.989-.909s-2.843 1.252-4.55.91c-1.598-.338-2.872-.909-2.872-.909s-3.175 1.252-5.11.91c-1.938-.338-4.234-1.574-4.234-1.574z'/%3e%3cpath d='M414.73 404.012c11.147-4.64 13.16-5.903 19.903-10.024-1.176.031-4.596-1.074-3.359-1.425 0 0-1.37 1.234-2.737 1.234-1.254 0-4.9-1.59-4.9-1.59s-3.416.907-5.012.907-3.988-.907-3.988-.907-2.964 1.25-4.559.907c-1.596-.338-2.85-.907-2.85-.907s-3.303 1.25-5.125.907c-1.938-.338-4.219-1.593-4.219-1.593s-2.804 1.487-4.564 1.658c5.387 3.945 11.056 7.797 21.41 10.833z'/%3e%3c/g%3e%3c/g%3e%3cg stroke-width='.509'%3e%3cpath d='M368.52 266.185c-.791-.02-1.738.444-3.196 1.766-2.3 2.077-3.128 4.217-.11 6.805l14.958 13.601c2.184 2.124 5.239 2.512 6.52 3.614l15.203 15.546c1.916 1.655 2.833 2.829 1.75 4.243-1.202 2.325.085 2.64.359 2.71 2.08.468.95-.834 1.219-1.507-.027-.237.068-.472.086-.735.035-.525 1.646-2.1 3.082-2.66.717-.28.96.018 1.14.403.656.262 1.349-.718.383-1.754-.832-1.158-2.131.722-3.598.28 0 0-2.211-1.37-2.816-2.35-1.29-1.437-2.953-2.725-3.91-3.958-1.014-1.142-4.826-6.184-10.63-11.988-1.668-1.09-1.289-5.21-2.483-6.488-.101-.893-11.604-12.277-15.707-16.395-.83-.61-1.46-1.113-2.25-1.133z' fill='%23d67c59' stroke-width='.57'/%3e%3cpath d='m369.246 272.31 15.634 15.446' fill='none' stroke-width='.56'/%3e%3cpath d='M390.415 279.366c.241-.465.77-1.65 1.329-2.942.22-.51 4.426-7.218 6.523-7.415 0 0 13.078 9.515 13.088 9.64.045.513-5.673 9.065-6.171 8.415 0 0-15.322-6.433-14.769-7.698z' fill='%23e8e8e6' stroke-width='.639'/%3e%3cpath d='M398.747 281.606c-1.792-1.39-4.75-2.747-7.14-4.34l-1.075 2.24c.864.967 11.746 6.025 13.534 7 0 0-2.072-2.376-5.32-4.9z' fill='%23ccb8c8' stroke='none'/%3e%3cpath d='M391.6 276.98c1.4.98 4.06 2.66 5.74 3.64 3.22 2.24 5.26 4.708 7.561 6.02' fill='none' stroke-width='.448'/%3e%3cg stroke-width='.57'%3e%3cpath d='m365.102 317.737 29.778-36.852c.56-.511 3.32-.537 3.694 2.316l-28.202 38.435c.002 0-3.21-.318-5.269-3.899zm99.816.403c-1.027.801-2.77 1.009-2.77 1.009-1.935-2.28-3.534-4.673-6.268-7.634l-29.742-36.58 3.076-2.963 26.776 31.338c.797.797 5.472 5.7 9.916 11.508.003.002.39 2.275-.99 3.326z' fill='%23d67c59'/%3e%3cpath d='m436.279 279.6-4.787-5.697s-3.646.453-4.328 2.393c0 0-2.62 4.33-9.572 4.787 0 0 1.934 8.091 10.026 12.421 0 0 2.963-8.322 5.81-9.802 0 0 2.962-2.166 2.85-4.1z' fill='%23e8e8e6'/%3e%3cpath d='M424.317 304.902c-.683-.23-1.366 0-2.394.571-.909.571-2.05.34-1.937-.8.115-1.026 0-.91 1.254-1.707 1.826-1.026 4.217-1.142 5.698-.571l-2.62 2.509m32.468-32.37c-.228-.796-.453-1.59.342-2.617.797-.912.797-2.51-1.142-1.712-1.938.8-2.621 2.964-1.024 6.27l1.82-1.942z' fill='%23d67c59'/%3e%3cpath d='m423.633 305.585 33.73-33.505 8.315 8.89s-1.708-.687-2.393-.232c-.569.457.684 2.166.684 2.166s-1.595-.57-2.278-.114c-.798.454 0 2.392 0 2.392s-1.366-1.024-2.052-.57c-.568.458 0 2.62 0 2.62s-1.822-.568-2.276-.114c-.457.457 0 2.394 0 2.394s-1.825-.912-2.734 0c-.91.91.454 2.166.454 2.166s-2.278-.912-3.19.454c-.911 1.368.114 2.62.114 2.62s-1.822-.908-2.278-.457c-.455.458 0 2.621 0 2.621s-1.594-.91-2.62.232c-1.026 1.254.114 2.279.114 2.279s-1.478-.915-2.28-.46c-.799.46.228 2.622.228 2.622s-1.478-1.027-2.506 0c-1.026 1.142 0 2.277 0 2.277s-1.254-1.14-2.506 0c-1.142 1.254 0 2.509 0 2.509s-1.822-.911-2.505 0c-.797.907.227 2.166.227 2.166s-1.367-.798-2.278-.347c-.907.46 0 2.509 0 2.509s-1.366-1.481-1.935-.682c-.683.797.114 2.734.114 2.734s-1.254-1.482-1.937-.681c-.797.683.454 2.393.454 2.393s-2.277-1.026-1.708-1.026z' fill='%23e8e8e6'/%3e%3c/g%3e%3cpath d='m455.42 274.818-2.62 2.621.569 9.005s.57-2.62 1.365-.8c0 0 .23-2.164.799-1.82-.46-.232-.114-9.006-.112-9.006m-4.895 4.895-1.938 1.822.683 9.005s.571-3.42 1.367-.683c0 0-.115-2.279-.115-3.079.003.572.003-7.065.003-7.065m-20.396 20.183-1.824 1.934.458 5.473s.57-3.532 1.366-.8c0 0-.229-2.274-.229-3.076 0 .572.23-3.533.23-3.533' fill='%234d4d4d' stroke='none'/%3e%3cg fill='none' stroke='%234d4d4d' stroke-width='1.026'%3e%3cpath d='M427.845 277.327c1.255 1.255 4.787 5.81 4.787 5.81m-3.185-3.3c-.227.685-.68 2.62-1.706 3.647m2.266-3.2c-.115.456-.115 1.938-1.706 3.42m2.277-2.725c-.229.795-.341 1.366-.91 1.937m1.257-1.254c0 .57-.34.683-.453 1.026m-3.758-3.2c-.454.455-3.761 2.62-5.583 3.305m4.665-2.05c-.455.458-2.507 2.053-3.647 2.51m3.31-1.143c-.683.459-1.823 1.596-2.732 1.937m2.05-.57c-.455.569-1.141 1.026-1.709 1.368'/%3e%3cpath d='M404.997 284.73c.372-.685 1.02-2.033 1.867-3.266 1.075-1.564 1.538-1.83 2.1-2.38' stroke-linecap='square'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3cg stroke-width='.57'%3e%3cpath d='M294.99 376.594c1.708.795 0-5.585.567-7.977.683-2.507 5.583 6.153 7.98 7.296 2.506 1.251 17.774-6.043 17.774-6.043l3.646-6.837 1.938 5.582s4.215-4.9 5.47-6.722 0 3.648-1.255 5.47c-1.255 1.826 3.646 2.509 3.075 6.155-.57 3.649 4.9-2.507 4.9-2.507l14.128 1.254s2.39-8.55 6.151-13.45l1.14 5.475 5.81-5.925c6.497 17.096 20.172 35.672 48.2 45.813 26.32-9.572 39.882-26.555 46.944-42.74l7.862 8.098s6.155-1.827 7.293-2.509c1.253-.571 14.471 4.674 14.471 4.674s2.393.911 3.648 1.826c1.251.91.34-3.991.34-3.991s6.723 1.253 6.152 4.9c0 0 1.482-3.418 2.736-3.987 1.255-.571 4.214 3.076 4.9 4.329.57 1.142 15.042 2.963 17.092 4.217 0 0 1.596 1.825 1.596 3.078 0 0 3.077-.344 5.471-.344 0 0-1.824.907-1.824 2.849 0 1.825-.912 3.308-2.734 4.216-1.824.913 0 1.593 2.393 1.825 2.507.34 0 3.416-4.9 5.244 0 0-1.14 2.733.912 3.643 0 0-4.22.345-4.9-.91 0 0-1.479 2.848-1.479 4.33 0 0-4.558-1.484-5.813-2.165 0 0-1.824 1.82-.571 2.733 0 0-8.315-.91-9.912-3.987 0 0-2.963.91-2.394 1.937 0 0-5.81-3.987-7.633-3.987l-1.254 2.046s-3.988-2.391-5.242-2.391c-1.142 0-.228 1.822-.228 1.822l-5.581-3.42-2.164 3.42s-4.558-2.167-5.81-3.076c-1.143-.91-1.48 1.822-2.393 2.162 0 0-1.824-2.503-4.33-2.162 0 0-.91 3.075-.569 3.987 0 0-7.065-1.48-8.317-1.825-1.254-.34-.57 1.482 0 2.737 0 0-5.242-1.48-6.382-2.397l-.342 2.397s-4.326-.343-5.239-1.254l-2.734 3.758h-3.988l-.91 3.304s-7.633-2.162-8.32-.91c-.569 1.251.343 3.074.343 3.074l-6.722-.91-.567 2.733s-7.75-2.393-9.574-1.255c0 0-2.393 2.51-3.989 3.079-1.478.683 0-.912 0-.912l-2.39-3.304s-2.734 1.482-4.332.912c-1.477-.687-6.38 2.39-7.977 1.479 0 0 0-2.168-1.25-2.737-1.143-.57-3.305-.57-4.22.913 0 0-.906-1.254-2.503-3.647-1.48-2.51-3.648.227-3.648.227l-.342-2.964-4.216-.343c-2.507-.342-3.076-2.51-3.076-2.51s-6.494.684-7.406.346l1.594-1.484s-8.886 1.827-10.707 1.143c-1.938-.569 2.05-3.078 2.05-3.078s-8.205-2.047-9.8-2.391c-1.479-.342-10.37 1.477-11.624 1.477s-1.823-2.053-1.823-2.053-2.167 1.826-3.99 2.397c0 0-1.48-3.646-.568-3.99 0 0-5.81 1.597-6.153 3.08 0 0-1.479-2.392-1.255-3.419 0 0-2.732 4.33-3.987 5.242-1.254.912-.229-2.166-.229-2.166s-3.416 4.33-4.67 4.673v-3.078s-9.8 5.241-12.533 4.56c0 0 0-2.17.91-2.736l-6.153-.342c-1.479-.226-3.304-.907-4.899-1.253-1.478-.23 2.167-1.822 4.674-1.14 0 0-6.837-2.506-8.89-1.254 0 0-.912-2.506 2.732-3.42 0 0-4.672-4.555-7.408-4.216 0 0 3.08-1.821 5.586-.912 0 0-2.849-7.746-4.673-8.658 0 0 6.496-1.14 8.32-.224z' fill='%23358b03' stroke='%23060'/%3e%3cg stroke='%23000'%3e%3cpath d='m285.525 242.91 82.953-42.964c.398-2.222-.862-3.965-2.164-5.701-23.722 11.635-45.311 25.753-71.672 34.306-1.48.571-14.585 6.039-21.308 14.132-2.133 2.138-2.29 5.292-2.29 5.292s.164 3.617.925 4.594c0 0 .197.994 1.437 1.789-.014 0 .765.38 1.306.187.6.112 1.58.106 2.95-2.29 1.368-2.281 5.813-7.522 7.862-9.348z' fill='%23d67c59'/%3e%3cpath d='m352.3 200.405 10.71-5.13s3.648 2.735 3.304 5.813c0 0 .799 7.065 9.574 11.965 0 0-7.409 9.229-20.395 10.028 0 0 1.49-12.182-1.244-15.716 0 0-.456.437-.257-.168.387-1.186-.264-5.25-1.927-6.145-.204-.112.131-.444.236-.648z' fill='%23e8e8e6'/%3e%3c/g%3e%3c/g%3e%3cpath d='M364.833 201.883c-2.278.912-9.685 4.786-9.685 4.786m6.157-2.511c-.115 1.139-.799 3.874 0 5.812m-1.03-5.466c0 .57-.91 2.621.115 5.358m-1.246-4.787c-.229 1.143-.455 1.826 0 3.08m-.919-2.396c-.227.683 0 1.026 0 1.478m6.72-1.826c.341.91 3.418 5.697 5.242 7.635m-4.782-5.473c.343.912 2.051 4.217 3.304 5.473m-3.528-3.535c.454 1.14 1.366 3.192 2.277 4.33m-2.277-2.046c.228.913.683 2.053 1.366 2.853' fill='none' stroke='%234d4b4d' stroke-width='.912'/%3e%3cg stroke='%23000' stroke-width='.509'%3e%3cpath d='M439.484 180.33c-1.516.182-2.883 1.219-4.421 3.84-2.689 5.14-2.035 7.945 6.085 11.465h.004l30.47 14.921c6.106 2.968 8.304.221 11.75 1.72l60.136 30.632c5.159 2.255 8.047 2.976 7.305 5.645-.102 3.44 1.114 3.913 1.95 4.075 1.297.543 2.3.849 2.573-.65.198-.297-.163-.778-.547-1.41-.384-.631-.79-1.413-.691-2.304.099-.892.171-1.311.469-1.782.297-.47.818-.988 1.808-2.078.495-.544.962-.785 1.406-.828.444-.043.868.109 1.27.344.555.324 1.039.7 1.535 1.05 2.005-.16.219-3.007-1.172-4.09-3.026-1.417-3.371 1.801-6.558 1.462 0 0-5.698-2.164-7.75-3.645-3.779-2.057-9.055-4.497-10.254-5.836-3.84-.72-32.74-16.977-49.114-25.136-1.756-1.47-2.713-6.907-6.164-8.727-1.013-1.467-23.178-11.588-34.77-17.383-2.135-.797-3.803-1.467-5.32-1.285z' fill='%23d67c59' stroke-width='.57'/%3e%3cg fill='%23ffa54b' transform='translate(-4.865 22.64) scale(1.12001)'%3e%3cpath d='M309.734 165.117c-.203.61-.712.203-.712.408-.405 2.135-.305 3.253-.813 4.475-.712 1.424-3.256 2.748-3.154 2.645-2.033.61-4.474 3.054-8.44.814-.205-.1-.407-.306-.61-.508 0 0 1.116 4.17-2.95 6.204-1.425.713-15.77 8.244-15.77 8.244s-1.527 2.748-.51 6.512c.103.61.305 1.118-.305 1.526-.916.71-2.646 2.748-3.662 6.004 0 0-3.053-1.324-3.053-3.256 0-1.934 1.22-2.95 1.526-4.378.304-1.32 1.117-4.68.712-5.698-.406-1.12-2.238-1.526-2.95-1.933-.61-.41-1.425.405-1.322 1.32.103 1.02.813.813 1.628 1.02 0 0-.916 1.93-.813 3.355l-9.257 4.783s1.22 1.626 1.627 2.34c.405.712 1.32 10.175 4.07 14.653 2.746 4.478 3.662 3.257 4.272 3.867.508.508 1.32 1.32 2.034 1.934.712.51 3.865.812 4.477-.915.712-1.63 1.22-2.647 3.154-4.174 1.933-1.523 5.9-5.39 5.9-7.122 0 0 2.34 6.716 2.033 12.313 0 0 8.546 1.732 16.177 1.933 7.632.105 11.497-1.524 11.497-1.524s1.018-6.41.608-7.632c0 0 1.22 4.172 2.137 5.596 1.018 1.727 2.135 5.288 4.373 5.493 2.137.1 3.97-2.135 4.17-3.05v-6.717h8.648c0-.1 3.867 1.424 5.087 1.22 1.22-.102 1.933-1.22.813-1.628l-.405-.303c1.117 0 2.543.71 2.543.71h4.27c.104-.102 0-.41-.102-.51-.305-1.22-2.544-2.24-4.17-2.95-1.63-.608-3.46-1.323-4.68-1.423-1.933-.206-3.257-.1-6.207.408-.814.1-3.866.405-5.8 1.32-.51.307-1.02.407-.813-.915.306-1.426.204-7.835-1.32-10.583-1.12-1.932-1.018-3.562-.814-5.188.104-1.63.204-7.226 0-8.855-.306-1.627-2.544-3.867-6.61-4.375-3.867-.51-7.124-3.664-7.326-6.207-.305-2.542.408-7.223.814-9.257' fill='%23ad7c59' fill-opacity='.99'/%3e%3cg fill='none'%3e%3cpath d='M292.444 153.627c-.712 3.253-.712 6.104-.61 9.257.103 2.135 1.12 4.577 2.035 6.715.61 1.426 1.425 3.052 2.746 3.867 3.563 2.34 6.92-.204 8.853-1.018.916-.308 2.34-1.626 2.747-2.442.508-1.22.303-2.135.812-4.475-.103.1.813-.408.712-.408.916-1.526.712-2.034 1.22-3.054.51-1.018-.608-2.136-1.83-1.93.608-1.934 1.018-4.073.404-5.905-.202-.608.51-2.235-.608-1.832-4.58 1.832-9.97 1.426-14.854 1.426-.406 0-.712-.815-1.32-.71-.104 0-.205.303-.308.505' fill='%23b68a6a'/%3e%3cpath d='M292.034 155.347c-.508-.406-.61-1.32 0-3.256.712-1.928 0-2.033 1.12-3.152 1.12-1.12.813-1.63 1.525-1.932.71-.206 2.848-.206 3.56-.508.61-.308 1.526-.714 2.948-.916 1.526-.308 4.58-.206 6.003.608 1.527.812 2.545 2.85 3.46 3.56 1.02.71 1.63 3.662 1.427 7.94-.307 4.27-1.12 3.457-1.12 3.457s-1.222-2.034-2.238-.308c0 0 0-1.627.203-2.85.102-1.218-.61-3.457.102-4.984 0 0-5.8 1.832-8.75 1.73-3.052-.203-7.323-.917-7.527-1.627l-.714 2.237' fill='%23000'/%3e%3cpath d='M294.984 151.797c-.305-.61-1.832-2.85-.61-3.56 1.12-.613.407 2.744 1.936 3.457 0 0-.51 1.526-1.32.102z' fill='%23fff' stroke='%23fff'/%3e%3cpath d='M298.344 160.137c-.508 1.732-.712 2.138-.916 3.156m10.586 1.624c.204.61.404.303.914.405m.406-3.965c.51-.61 1.22-.303.813 1.223'/%3e%3cpath d='M292.444 157.697c.916.303 1.832.608 2.748 1.02 1.526.61.61 2.845.204 4.27-.204.715-1.02 1.934-.61 2.547.51.81 1.12.303 2.036.403 0-.303.61-.508.813-.508.712-.1 1.12.507 1.627.307.61-.308.51-1.224.306-1.73m-.104-4.479c.102-.403 1.018-.81 1.526-.915 2.136-.405 3.66-.712 5.393.51m-5.699 11.085c-1.73.408-3.56.71-5.188-.206m-.002-.804c.813-.408 1.12-.816 2.137-.308 0-.102 1.12-.406 1.12-.406.813 0 1.323.304 2.137.812m-5.494.302c.916-.306 3.358-.306 5.394.102'/%3e%3cg stroke-width='.305'%3e%3cpath d='M292.344 160.137c.713-.1 1.526-.916 3.154.306 1.12.712-1.832 1.426-1.322 1.324-1.32.202-1.73-.508-1.828-1.122 0-.202-.204-.508 0-.508zm8.34.81c.712-1.426 1.832-1.12 2.85-.816 1.018.307.712.106 1.628.614-1.12.203-.814.303-1.63.71-.915.408-1.728.61-2.34.206-.204-.206-.712-.508-.712-.916 0 .1.102.203.204.203z' fill='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='.304'/%3e%3cpath d='M293.764 161.357c.406 0 .712-.406.712-.814 0-.508-.306-.916-.712-.916-.507 0-.812.408-.812.916 0 .408.303.814.812.814zm8.65.2c.405 0 .712-.403.712-.916 0-.507-.407-.81-.813-.81-.405 0-.712.303-.712.81 0 .515.408.917.814.917z' fill='%23000'/%3e%3c/g%3e%3c/g%3e%3cg id='a'%3e%3cg fill='none'%3e%3cpath d='M345.854 213.657c-.608-.714-1.018-1.02-1.83-1.324-.61-.303-1.424-.71-2.036-1.016-.712-.408-1.73-.508-2.34-.916m.406 2.646c-.306-.203-.508-.304-.812-.51-.306-.1-.712-.1-1.02-.203-.102 0-.102-.204-.203-.204-.916-.102-1.832-.51-2.44-1.32m-62.775-9.363c.914.71 3.152 2.24 3.356 5.19.204 1.525 1.02 3.05 1.02 3.05m-13.126-7.83c.51 1.727.61 7.425 6.003 13.43m-4.983-21.37c-.408 1.12-.916 2.137.202 2.95m14.448 10.69c1.12-2.545 4.578-2.342 4.578-4.782'/%3e%3cpath d='M284.814 207.247c-.306-2.85-.916-4.475-.405-8.647.202-1.223.404-5.9 0-8.14 0 0 1.628 7.832-3.663 9.362m34.388 12.515c0-3.97.916-6.21.916-6.21 1.22-5.592-1.12-7.73-.203-9.154.812-1.22 2.035-3.766.407-8.854 0 0 2.847 10.483-4.478 10.483-7.425 0-7.12-2.748-7.12-2.748'/%3e%3cpath d='M284.404 190.457c0 2.135 0 8.447 9.055 8.447 2.745 0 5.697-1.933 7.323-3.256m2.242-2.751c-.306-1.934-.306-4.375-.306-6.92m-13.634-3.45c2.44-.308 4.376-.61 8.955-.61m.305-6.32c.51 2.24-.304 5.8 3.866 6.31m4.374-7.12c-.61 1.63-.61 3.256-.814 4.375m.204 2.755c1.73 0 4.985-1.12 9.054-.306m1.426 22.786c.813 1.63 1.018 3.765 3.56 6.207m-31.74-11.397c.204 1.324-1.73 5.698-.306 9.262 1.322 3.558 1.12 7.63-1.12 11.088m6.616-19.02c-.813 1.626-2.238 3.256-2.544 4.68m6.604-1.63c0 1.018-2.744 8.75-4.68 10.886 0 0 3.56 1.424 3.05 6.614m7.33-21.06c0 1.324-.204 1.63.916 2.44m2.444 0c1.32 1.628 5.492 6.514 4.576 9.26m-7.326-6.51c.306 1.018.306 6.31-.61 8.955m-2.13-.205c-1.12 0-2.746.814-3.052 2.747m8.742-3.057c1.118-.306 3.355 1.626 3.355 7.123m15.675-10.273c-2.136.61-3.052 1.732-2.44 1.12-1.12.915-2.138 1.525-2.138 1.525'/%3e%3c/g%3e%3cpath d='M289.794 197.987c.608 0 1.118-.408 1.118-.916 0-.41-.507-.815-1.118-.815-.51 0-1.02.405-1.02.816 0 .506.508.917 1.02.917zm23.1.31c.51 0 1.02-.405 1.02-.916 0-.504-.508-.81-1.02-.81-.607 0-1.118.306-1.118.81 0 .512.51.917 1.118.917z' fill='%23000' stroke-width='.305'/%3e%3cpath d='M280.544 239.807c1.22-7.937 4.985-14.55 5.086-15.162 0 0 3.865.816 10.58 1.424 6.612.71 8.444.407 11.496.2 2.95-.302 6.815-.81 6.815-.81s1.222 2.44 1.323 4.883c.305 5.188 2.236 27.677 2.44 33.68 0 0 .813 3.56.813 12.31 0 9.568 2.645 29 2.645 39.382l-2.644.51s-14.446 1.12-14.446-.814c0-2.134-.813-27.065 1.322-42.125 0 0-.508-2.95-1.322-5.496-.813-2.443-4.375-10.074-4.375-11.7 0 0-5.695 16.073-6 18.825-.305 2.543-1.12 38.357-1.63 41.312 0 0-8.24 6.308-9.36 6.92-1.117.51-9.053-3.36-9.257-4.375-.306-1.118.814-13.23 4.578-33.176 1.425-7.123.61-8.44.61-10.375 0-1.933.103-27.473 1.322-35.41z' fill='%23e8e8e6'/%3e%3cpath d='M294.274 274.917c-.61 2.24-1.628 4.375-3.56 5.803m-2.75-53.633c-.304 1.322-2.238 7.325-7.122 10.887m14.242-9.767c-1.12 3.562-5.493 22.693-6.31 45.383m-.3 7.127c-.204 2.135-1.322 18.012-1.628 20.756m-.812 3.054c-.51 1.117-2.746 10.375-2.746 18.62m32.246-35.92c-.204 1.933-1.02 15.668 3.56 27.98m-18.51-85.98c-.305 2.237-.813 16.688-.813 17.806 0 1.117 1.63 2.747 2.442 3.054 0 0-1.628.51-1.933 6.003m-4.076-12.923c-.308 1.727-1.934 8.547-3.054 11.295m13.124-25.435s4.884 1.018 5.188 0c0 0 1.628 29.512 3.866 45.89m-11.184-42.13c0 1.934-.61 16.485-.61 16.485m2.44 2.135s1.93 2.745 1.425 4.066m-17.805-28.076c1.63.508 3.053.812 3.053.812m5.187 1.628c-.307.814-.61 4.58-.61 4.58m8.75 38.87c.61.814 1.425 1.936.814 4.377' fill='none'/%3e%3cpath d='M284.914 224.447s0-3.256 1.22-4.886c0 0 3.457.715 8.342 1.223 4.984.508 8.95.916 12.615.508 3.664-.405 7.43-1.32 7.43-1.32s1.016 4.783.505 5.495c0 0-3.968.814-8.34 1.016-4.478.304-11.903-.407-14.446-.81-3.36-.41-6.31-1.02-7.326-1.223z' fill='%23d67c59'/%3e%3cpath d='m288.064 224.847.608-4.883 1.02.1-.204 5.088zm22.08-4.07.103 5.496 1.22-.206-.1-5.597zm-15.67 0-.406 5.29h.713l.713-5.29z' fill='%23fff'/%3e%3cpath d='M276.774 320.807c-.305 1.322-.812 3.154-1.018 5.496 0 .508-.507 3.256 1.018 3.356 1.12.102 1.425-2.85 1.425-2.85s-1.02 3.256.304 3.664c1.832.403 2.034-3.562 2.034-3.562-.204 1.12-1.425 3.97.306 4.27 1.83.308 2.34-3.866 2.34-3.866s-1.526 4.174.304 4.275c1.73.1 1.73-4.07 1.73-4.07s-.917 4.987 1.525 4.58c1.32-.204 1.628-1.935 1.933-2.952.406-1.524 1.322-3.457.204-6.612-.812-2.34-.507-2.95-.507-2.95s-2.85 2.137-5.087 3.56c-1.02.61-6.514-2.34-6.514-2.34zm29.71-4.38c-.508-.307-.406 1.832-.61 2.846-.102 1.02.205 3.257 3.664 3.055 3.355-.307 6.715-1.018 8.85-.51 2.138.61 5.29.712 7.022.712 1.73 0 2.85-.202 3.66-.51.714-.302 2.24.41 2.95.41.714 0 1.832-1.12 1.73-1.833-.102-1.324-1.32-1.324-3.053-1.424-1.628-.203-3.865-.51-4.983-.916-1.12-.408-3.154-1.527-5.698-2.035 0 0-4.883.205-5.898.205-1.02 0-7.022.303-7.634 0z' fill='%23653024'/%3e%3c/g%3e%3cg fill='%23ad7c59' stroke-linecap='round'%3e%3cpath d='M255.714 189.847c-.507.306-1.12-2.035.406-2.95 0 0 .406-1.932 2.035-2.137 0 0 1.32-1.832 3.257-1.626 0 0 2.235-1.525 3.05-1.324.813.102 2.85 2.136 2.95 2.85.205.71 0 1.933-.51 2.442-.61.608-1.018-.102-1.12-.916 0 0 .408 1.524-.812 2.135-1.22.715-1.12.207-1.22-.61 0 0-.307 1.63-1.12 1.833-.813.305-1.32-.408-1.934-.408 0 0 1.02.816.307 1.426-.713.51-1.526.304-2.036-.1-.51-.51-1.12-1.833-3.257-.61z' stroke-linejoin='round'/%3e%3cpath d='M265.684 186.087c-.51-1.63-2.137-3.054-4.07-2.848m2.24 4.368c-.306-.408-.408-.816-.712-1.22-.916-1.528-2.85-1.424-4.477-1.832m2.439 4.582c-.61-.406-.813-1.222-1.425-1.524-1.02-.408-2.035-.916-3.256-.714'/%3e%3c/g%3e%3c/g%3e%3cg transform='translate(-4.86 22.637) scale(1.12001)'%3e%3cpath d='M439.14 165.12c.712-.306.51.61.61.916.306 1.32.306 2.748.813 3.967.608 1.12.812 1.526 1.83 2.035 1.627.916 6.407 3.562 9.767 1.424.204-.1.508-.306.712-.508 0 0-1.22 4.172 2.95 6.207 1.32.71 15.668 8.242 15.668 8.242s1.525 2.748.61 6.512c-.205.61-.406 1.118.203 1.526 1.02.71 2.644 2.748 3.766 6.004 0 0 2.946-1.324 2.946-3.256 0-1.934-1.22-2.95-1.525-4.375-.2-1.324-1.016-4.682-.607-5.698.405-1.118 2.135-1.526 2.847-1.936.714-.41 1.526.405 1.322 1.32-.102 1.02-.812.817-1.628 1.02 0 0 1.02 1.93.814 3.355l9.358 4.783s-1.22 1.63-1.628 2.34c-.51.715-1.425 10.175-4.17 14.653-2.75 4.478-3.664 3.257-4.172 3.867-.61.508-1.424 1.324-2.137 1.934-.61.51-3.765.815-4.477-.915-.712-1.628-1.22-2.647-3.153-4.174-1.934-1.523-5.9-5.39-5.9-7.122 0 0-2.34 6.72-2.035 12.313 0 0-8.443 1.732-16.176 1.937-7.632.102-11.498-1.528-11.498-1.528s-1.018-6.41-.61-7.632c0 0-1.22 4.172-2.033 5.596-1.12 1.727-2.237 5.29-4.376 5.493-2.236.104-3.968-2.135-4.27-3.05v-6.717h-8.647c0-.1-3.766 1.424-5.087 1.223-1.22-.105-1.832-1.223-.813-1.63l.407-.304c-1.12 0-2.544.71-2.544.71h-4.272c0-.102.103-.41.103-.51.308-1.218 2.546-2.24 4.273-2.95 1.628-.608 3.356-1.323 4.578-1.423 1.934-.203 3.257-.1 6.207.408.812.1 3.967.408 5.798 1.322.508.304 1.118.405.813-.915-.305-1.426-1.22-5.598.307-8.346 1.018-1.933.916-3.56.813-5.19-.204-1.728-1.118-5.597-1.118-7.324 0-5.7 4.375-8.04 8.24-9.262 4.272-1.32 7.12-2.748 6.92-5.288-.104-2.646.608-7.02.202-9.058' fill='%23653024'/%3e%3cg fill='none'%3e%3cpath d='M456.34 153.63c.916 3.356 1.12 4.17 1.12 5.29 0 1.22-.51 1.425-.104 2.75.713 2.44-.712 5.087-2.44 7.936-.814 1.32-1.425 3.052-2.747 3.866-3.357 2.135-7.428-.408-9.564-1.327-1.117-.505-1.73-1.32-2.033-2.135-.407-1.22-.51-2.34-.813-3.967 0-.306.103-1.22-.61-.916-1.22-1.424-1.017-2.034-1.523-3.05-.51-1.022.916-2.14 2.034-1.935-.61-1.933-.915-4.072-.305-5.904.204-.608-.508-2.235.51-1.832 4.577 1.832 9.97 1.426 14.854 1.426.403 0 .71-.812 1.32-.71.097 0 .2.305.3.508' fill='%23653024'/%3e%3cpath d='M456.75 155.35c.508-.406.204-2.34-.306-4.375-.203-1.017-1.018-1.424-2.136-2.542-1.12-1.122-1.525-1.122-2.236-1.424-.61-.207-2.034-.207-2.746-.51-.61-.307-2.238-.104-3.766.102-2.036.304-3.153.202-4.68 1.018-1.525.814-2.745 1.73-3.255 3.256-.406 1.118-1.12 2.542-.814 6.817.205 4.272 1.02 3.458 1.02 3.458s1.12-1.627 1.832-.61c0 0-.103-2.24-.305-3.56-.103-1.222 0-2.748.51-4.58 0 0 4.678 1.732 9.053 1.732 3.053 0 7.02-.306 7.123-1.017l.71 2.235z' fill='%23000'/%3e%3cpath d='M450.44 160.14c.61 1.732.104 1.222.408 2.34m-10.278 2.03c0 .812-.61.61-1.02.61'/%3e%3cpath d='M456.85 158.82c-.916-.713-2.645-.204-3.46.102-1.525.71-.712 2.24-.204 3.664.204.71 1.02 1.727.51 2.44-.406.813-.712.41-1.628.51.104-.307-.812 0-1.117 0-.61-.1-.915.404-1.425.203-.608-.305-.508-1.22-.306-1.73m.1-4.479c0-.403-1.32-.81-2.745-.915-2.238-.102-2.442.104-4.172 1.322m11.497 8.953c-.405-.608-1.018-.916-2.137-.405 0-.204-1.524-.406-1.524-.406-.813 0-1.322.302-2.137.71m5.588.611c-.916-.61-3.256-.2-5.596-.2m.206.81c1.73.512 3.46.816 5.188 0'/%3e%3cg stroke-width='.305'%3e%3cpath d='M456.44 160.14c-.712-.1-1.018-.916-3.153.306-1.12.61 1.832 1.426 1.425 1.324 1.22.202 1.628-.508 1.73-1.122-.002-.203.202-.508-.002-.508zm-8.34.81c0-.816-1.83-1.12-2.847-.816-1.02.306-.61.105-1.526.613 1.02.203.712.303 1.526.71.914.408 1.12.814 2.34.206.305-.105.71-.508.812-.916-.1.1-.202.203-.305.203z' fill='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M455.12 161.36a.802.802 0 0 1-.813-.814c0-.508.307-.916.813-.916.405 0 .712.408.712.916 0 .408-.307.814-.712.814zm-8.75.2c-.406 0-.712-.403-.712-.916 0-.508.403-.81.812-.81.41 0 .712.302.712.81 0 .514-.303.916-.812.916z' fill='%23000'/%3e%3c/g%3e%3c/g%3e%3cuse fill='%23d67c59' height='100%25' transform='matrix(-1 0 0 1 748.816 0)' width='100%25' xlink:href='%23a'/%3e%3cg fill='%23653024'%3e%3cpath d='M491.64 193.51c.508.206 1.934-2.033.508-3.05 0 0-.508-1.933-2.136-2.035 0 0-1.322-1.933-3.257-1.63 0 0-2.136-1.524-2.948-1.42-.916.2-2.95 2.236-3.053 2.95-.102.608 0 1.83.508 2.44.61.51 1.02-.104 1.12-1.02 0 0-.406 1.53.812 2.24 1.22.71 1.12.1 1.22-.71 0 0 .307 1.626 1.12 1.932.813.303 1.322-.408 1.935-.408 0 0-1.02.814-.306 1.323.713.61 1.525.303 2.035-.104.61-.405.305-1.728 2.44-.51z' stroke-linecap='round'/%3e%3cpath d='M482.49 189.75c.506-1.73 2.235-3.153 4.067-2.85m-2.137 4.38c.203-.41.305-.816.61-1.224.915-1.524 2.948-1.524 4.576-1.832m-2.546 4.476c.61-.408.814-1.118 1.426-1.42 1.018-.513 2.136-.917 3.256-.715' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M482.31 186.77c-.896.716-1.837 1.798-1.906 2.28-.103.61-.008 1.828.5 2.44.55.46.95-.018 1.095-.782-.06.463-.072 1.465.843 2 1.22.71 1.118.095 1.22-.72 0 0 .31 1.636 1.124 1.94.813.305 1.325-.407 1.938-.407 0 0-1.026.805-.312 1.313.712.61 1.522.31 2.03-.094.61-.41.3-1.723 2.44-.5.266.105.803-.453 1.03-1.157l-7.688-5.53z' stroke='none'/%3e%3cpath d='M480.68 188.19c-1.502 2.582.5 4.132 1.164 2.62-.193 2.385 1.606 2.29 2.285 1.537.657 2.512 1.83 1.395 2.908 1.164-1.223 2.29 1.48 1.61 2.12 1.082.924-1.362 1.356-.277 2.036-.416l1.164-1.247m-7.977-5.7c-1.686.896-2.512 2.137-2.535 3.7m4.865-2.2c-1.687.896-2.512 2.137-2.535 3.7m5.405-1.75c-1.687.897-1.765 1.722-2.493 2.826'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3cg fill='%23ffe682'%3e%3cpath d='M414.517 444.859c25.64.23 40.796-9.117 49.113-14.702 19.484-13.104 23.587-13.56 26.78-13.335 3.646.347 8.997 1.598 9.228 4.79.342 4.9-7.635 7.065-12.194 7.065-4.67 0-16.866-3.078-16.866-3.078l-3.192 2.168c2.166 1.027 27.122 9.343 31.907 1.482 4.897-7.978 9.8-20.858 9.8-20.858s-5.47-9.8-17.665-9.8c-12.306 0-24.27 7.75-32.245 13.558-7.979 5.813-18.004 13.79-44.67 13.79-26.663 0-36.804-7.977-44.779-13.79-7.974-5.81-19.941-13.559-32.133-13.559-12.304 0-17.774 9.8-17.774 9.8s4.898 12.88 9.798 20.859c4.784 7.86 29.742-.458 31.903-1.484l-3.076-2.168s-12.305 3.078-16.865 3.078c-4.673 0-12.649-2.164-12.306-7.064.228-3.192 5.582-4.446 9.228-4.789 3.192-.224 7.295.231 26.778 13.335 8.322 5.584 23.477 14.588 49.23 14.702'/%3e%3cpath d='M373.267 414.652s0-2.17-.345-5.357c-.455-4.103-2.847-5.13-4.783-4.558-1.254.45-3.76 3.533-3.76 3.533v.115a36.247 36.247 0 0 0-3.533-2.166c.912-1.026 6.154-4.216 7.406-4.216 1.143 0 16.866 6.38 21.877 10.71 1.254 1.142 2.167 8.207 1.48 10.483-8.43-2.164-13.9-5.354-18.346-8.432v-.114m-7.522 15.962s-3.42 3.416-3.532 9.686c-.115 7.407 5.242 7.75 8.774 7.635 4.217-.116 7.633-2.506 7.521-10.37 0 0-6.953-2.965-12.764-6.952m89.915-15.959s.115-2.17.458-5.357c.45-4.103 2.731-5.13 4.67-4.558 1.253.45 3.759 3.533 3.759 3.533v.115a36.077 36.077 0 0 1 3.53-2.166c-.91-1.026-6.15-4.216-7.292-4.216-1.252 0-16.975 6.38-21.99 10.71-1.143 1.142-2.053 8.207-1.48 10.483 8.545-2.164 13.899-5.354 18.345-8.432v-.114m7.516 15.962s3.418 3.416 3.532 9.686c.228 7.407-5.244 7.75-8.773 7.635-4.219-.116-7.521-2.506-7.521-10.37 0 0 6.951-2.965 12.763-6.952'/%3e%3c/g%3e%3cpath d='M358.336 425.594s-12.193 3.079-16.75 3.079c-4.67 0-12.648-2.162-12.305-7.066.23-3.192 5.584-4.442 9.23-4.784 2.734-.232 6.268.112 19.827 8.771m112.247 0s12.191 3.079 16.865 3.079c4.558 0 12.532-2.162 12.19-7.066-.225-3.192-5.58-4.442-9.228-4.784-2.736-.232-6.268.112-19.827 8.771m-97.318-10.83c-1.254-.911-2.507-1.826-3.65-2.733-1.707-1.256-3.417-2.397-5.24-3.647 0 0 2.505-3.192 3.758-3.535 1.937-.683 4.329.339 4.782 4.443.345 3.192.345 5.475.345 5.475m-8.317 32.141c2.169 1.255 4.559 1.143 6.042 1.027 4.217-.115 7.634-2.507 7.52-10.37 0 0 5.24 2.621 13.788 4.673 0 0 1.367 1.708 1.593 5.126.346 2.852-1.595 5.925-3.871 5.7 0 0-11.966-2.166-19.257-3.415-4.218-.798-5.813-2.738-5.813-2.738m90.708-32.147c1.252-.911 2.506-1.826 3.758-2.733 1.596-1.256 3.304-2.397 5.127-3.647 0 0-2.505-3.192-3.759-3.535-1.937-.683-4.217.339-4.67 4.443-.344 3.19-.458 5.474-.458 5.474m8.313 32.142c-2.166 1.255-4.559 1.143-6.04 1.027-4.217-.115-7.52-2.507-7.52-10.37 0 0-5.242 2.621-13.676 4.673 0 0-1.479 1.708-1.708 5.126-.227 2.852 1.71 5.925 3.875 5.7 0 0 12.078-2.166 19.257-3.415 4.217-.798 5.81-2.738 5.81-2.738' fill='%23171696'/%3e%3cg fill='none' stroke='%23000' stroke-width='.797'%3e%3cpath d='M414.517 444.859c25.64.227 40.796-9.12 49.113-14.702 19.484-13.104 23.587-13.559 26.777-13.333 3.648.341 9.004 1.596 9.228 4.786.345 4.9-7.633 7.063-12.193 7.063-4.67 0-16.864-3.073-16.864-3.073l-3.19 2.166c2.166 1.027 27.118 9.345 31.904 1.479 4.9-7.977 9.798-20.855 9.798-20.855s-5.47-9.803-17.663-9.803c-12.305 0-24.27 7.753-32.247 13.564-7.975 5.812-18 13.789-44.667 13.789-26.663 0-36.803-7.978-44.778-13.79-7.976-5.81-19.943-13.563-32.133-13.563-12.305 0-17.774 9.804-17.774 9.804s4.897 12.877 9.798 20.855c4.785 7.862 29.742-.454 31.904-1.479l-3.074-2.167s-12.309 3.073-16.864 3.073c-4.674 0-12.65-2.16-12.309-7.064.23-3.192 5.584-4.444 9.231-4.788 3.188-.226 7.291.23 26.776 13.334 8.322 5.586 23.475 14.59 49.227 14.702z'/%3e%3cpath d='M358.336 425.594s-12.194 3.079-16.747 3.079c-4.673 0-12.65-2.166-12.31-7.066.23-3.192 5.585-4.446 9.231-4.784 2.733-.232 6.267.112 19.827 8.771zm112.238 0s12.193 3.079 16.865 3.079c4.558 0 12.532-2.166 12.193-7.066-.23-3.192-5.582-4.446-9.227-4.784-2.735-.232-6.27.114-19.827 8.771zm-97.307-10.83c-1.254-.911-2.507-1.826-3.65-2.733-1.704-1.256-3.415-2.397-5.24-3.647 0 0 2.508-3.192 3.76-3.535 1.937-.683 4.328.339 4.782 4.447.347 3.185.347 5.469.347 5.469z'/%3e%3cpath d='M373.267 414.652s0-2.168-.345-5.357c-.453-4.103-2.847-5.13-4.783-4.558-1.254.455-3.763 3.533-3.763 3.533v.115a37.196 37.196 0 0 0-3.53-2.166c.91-1.026 6.152-4.216 7.406-4.216 1.143 0 16.865 6.38 21.878 10.713 1.254 1.143 2.165 8.204 1.48 10.485-8.434-2.17-13.902-5.36-18.35-8.433m-7.52 15.844s-3.415 3.416-3.53 9.686c-.115 7.404 5.241 7.749 8.773 7.635 4.217-.116 7.632-2.506 7.523-10.374 0 0-6.952-2.963-12.763-6.952z'/%3e%3cpath d='M368.597 432.315s-2.733 2.848-3.19 7.52c-.227 3.649 2.165 5.698 5.242 5.47 4.329-.224 6.04-6.15 3.987-9.457z'/%3e%3cpath d='M364.945 446.908c2.167 1.255 4.556 1.14 6.04 1.027 4.216-.117 7.631-2.509 7.522-10.371 0 0 5.243 2.62 13.788 4.672 0 0 1.369 1.708 1.593 5.13.345 2.848-1.593 5.925-3.87 5.696 0 0-11.967-2.166-19.258-3.416-4.22-.801-5.815-2.736-5.815-2.736zm90.71-32.144c1.255-.911 2.506-1.826 3.76-2.733 1.597-1.256 3.304-2.397 5.13-3.647 0 0-2.507-3.192-3.762-3.535-1.937-.683-4.216.339-4.67 4.447a104.806 104.806 0 0 0-.455 5.469h-.002z'/%3e%3cpath d='M455.655 414.652s.115-2.168.458-5.357c.452-4.103 2.731-5.13 4.67-4.558 1.253.455 3.759 3.533 3.759 3.533v.115a37.196 37.196 0 0 1 3.531-2.166c-.91-1.026-6.151-4.216-7.293-4.216-1.254 0-16.975 6.38-21.99 10.713-1.143 1.143-2.053 8.204-1.48 10.485 8.545-2.17 13.899-5.36 18.345-8.433m7.516 15.844s3.418 3.416 3.532 9.686c.228 7.404-5.244 7.749-8.775 7.635-4.216-.116-7.52-2.506-7.52-10.374 0 0 6.95-2.963 12.763-6.952z'/%3e%3cpath d='M460.326 432.315s2.734 2.848 3.192 7.52c.342 3.649-2.168 5.698-5.245 5.47-4.329-.224-5.925-6.15-3.987-9.457z'/%3e%3cpath d='M463.966 446.908c-2.166 1.255-4.559 1.14-6.04 1.027-4.215-.117-7.518-2.509-7.518-10.371 0 0-5.244 2.62-13.674 4.672 0 0-1.48 1.708-1.708 5.13-.228 2.848 1.708 5.925 3.875 5.696 0 0 12.077-2.166 19.253-3.416 4.218-.801 5.813-2.736 5.813-2.736z'/%3e%3c/g%3e%3cpath d='M391.389 444.287s3.76 2.739-.798 6.157m-10.482-7.982 11.51 5.016m-9.582-2.395 8.429 3.644m-5.461-5.805 6.38 2.852m46.26-1.487s-3.875 2.739.684 6.157m10.483-7.982-11.51 5.016m9.684-2.395-8.43 3.644m5.362-5.805-6.268 2.852' fill='none' stroke='%23fff' stroke-width='.797'/%3e%3cg stroke='%23000'%3e%3cpath d='M346.33 409.231c.164.265.27.541.32.825.042.29.03.612-.034.969-.163.847-.616 1.48-1.352 1.917-.74.435-1.587.554-2.524.375a4.293 4.293 0 0 1-1.269-.45 5.074 5.074 0 0 1-1.035-.694c-.125.15-.258.291-.39.44l-.546-.104c.175-1.103.349-2.206.532-3.309.179.034.366.068.554.107.034.427.105.815.195 1.173.086.358.235.698.431 1.036.187.308.423.577.717.794.285.217.639.37 1.059.446.315.063.597.073.854.034.246-.037.464-.112.632-.235a1.54 1.54 0 0 0 .43-.467 2.06 2.06 0 0 0 .236-.674 1.994 1.994 0 0 0-.123-1.136c-.152-.376-.442-.686-.84-.94a59.324 59.324 0 0 0-.947-.586 13.235 13.235 0 0 1-.918-.589c-.5-.347-.87-.739-1.094-1.202-.229-.45-.288-.993-.166-1.63a2.386 2.386 0 0 1 .423-.975 2.64 2.64 0 0 1 .803-.725 2.946 2.946 0 0 1 1.048-.378 3.369 3.369 0 0 1 1.168.019c.445.083.84.23 1.168.432.324.205.623.417.878.658l.37-.403c.183.033.363.067.548.105l-.551 3.196c-.184-.037-.37-.07-.557-.107a13.109 13.109 0 0 0-.135-1.114 4.15 4.15 0 0 0-.32-1 2.267 2.267 0 0 0-.601-.766c-.25-.21-.586-.35-1.002-.431a1.607 1.607 0 0 0-1.19.205c-.355.224-.576.521-.651.919-.078.411-.043.774.103 1.086.141.316.385.59.728.84.302.224.61.416.91.596.3.179.583.358.863.548.25.167.497.348.72.55.217.196.407.414.553.645m13.98 1.96a4.208 4.208 0 0 0-.542-.203 1.64 1.64 0 0 0-.65-.1c-.19.017-.388.158-.6.415a6.62 6.62 0 0 0-.667 1.02c-.683 1.239-1.372 2.48-2.054 3.722-.262.472-.589.828-.984 1.07a2.94 2.94 0 0 1-1.265.425 3.784 3.784 0 0 1-1.277-.086 4.857 4.857 0 0 1-1.102-.43c-.518-.286-.952-.604-1.284-.966-.332-.367-.582-.735-.724-1.118a2.597 2.597 0 0 1-.182-1.134 2.417 2.417 0 0 1 .302-1.034l2.795-5.062a1.055 1.055 0 0 0 .127-.398c.002-.115-.05-.257-.146-.414a1.747 1.747 0 0 0-.314-.357c-.143-.116-.255-.21-.358-.275l.235-.43c1.21.667 2.41 1.331 3.618 1.994l-.237.426a3.621 3.621 0 0 0-.46-.18 2.255 2.255 0 0 0-.433-.123c-.165-.024-.303 0-.41.094-.111.09-.2.192-.274.324-.87 1.58-1.742 3.155-2.611 4.733a3.888 3.888 0 0 0-.314.762c-.094.28-.121.571-.092.87.034.314.157.605.35.896.198.291.537.568 1.01.829.445.246.863.388 1.244.417.379.022.72-.022 1.023-.157a2.318 2.318 0 0 0 .728-.487 2.957 2.957 0 0 0 .498-.659l1.938-3.513c.246-.448.419-.83.508-1.154.093-.319.096-.548.022-.712-.082-.183-.24-.37-.45-.557a4.14 4.14 0 0 0-.518-.41l.235-.426c1.184.65 2.365 1.302 3.55 1.956l-.234.43m5.028 8.705c.152.311.24.653.247 1.015.005.364-.1.741-.323 1.131-.224.392-.506.684-.851.878a2.548 2.548 0 0 1-1.092.324 3.427 3.427 0 0 1-1.151-.107 4.704 4.704 0 0 1-1.143-.465l-4.068-2.342.246-.426c.101.051.247.112.452.19a2 2 0 0 0 .45.141.63.63 0 0 0 .399-.074.83.83 0 0 0 .284-.314c1.17-2.027 2.34-4.062 3.509-6.09a1.098 1.098 0 0 0 .14-.398.65.65 0 0 0-.133-.41 1.958 1.958 0 0 0-.326-.37c-.135-.117-.243-.212-.342-.277.078-.14.163-.282.244-.422 1.32.758 2.64 1.519 3.964 2.283.307.177.583.373.833.594.242.224.448.481.616.776.157.278.251.583.26.907a1.88 1.88 0 0 1-.27 1.008 2.106 2.106 0 0 1-.623.695 1.966 1.966 0 0 1-.806.34 2.97 2.97 0 0 1-.866.033 3.879 3.879 0 0 1-.927-.194l-.034.056a5.8 5.8 0 0 1 .725.655c.251.275.452.56.59.863zm-.73-2.12c.254-.089.462-.212.636-.382a3.257 3.257 0 0 0 .504-.672c.265-.466.347-.907.243-1.321-.1-.422-.437-.784-.992-1.105-.126-.071-.291-.166-.488-.273-.202-.112-.37-.2-.495-.265l-1.882 3.262c.255.146.506.291.764.437.334.193.638.313.923.367.286.05.549.039.789-.05zm-.713 3.187a1.893 1.893 0 0 0 .201-1.527c-.153-.522-.55-.96-1.189-1.328a40.245 40.245 0 0 0-.654-.37c-.18-.095-.317-.164-.408-.212-.576 1.001-1.146 1.993-1.72 2.988a.724.724 0 0 0-.023.744c.132.247.381.473.753.684.597.347 1.159.444 1.678.28.52-.168.97-.58 1.36-1.258zm22.063 5.037a4.032 4.032 0 0 0-.56-.148 1.669 1.669 0 0 0-.654-.033c-.187.033-.37.195-.559.472a6.843 6.843 0 0 0-.561 1.08l-1.674 3.91c-.213.496-.504.884-.87 1.164a3.002 3.002 0 0 1-1.218.55 3.763 3.763 0 0 1-1.278.036 4.784 4.784 0 0 1-1.143-.314c-.541-.233-1.003-.51-1.372-.837-.368-.333-.65-.672-.833-1.04a2.597 2.597 0 0 1-.292-1.108 2.429 2.429 0 0 1 .196-1.064l2.278-5.313a1.053 1.053 0 0 0 .09-.404.829.829 0 0 0-.185-.4 1.864 1.864 0 0 0-.351-.324c-.153-.1-.274-.185-.381-.239l.19-.448 3.797 1.626c-.067.148-.129.299-.195.446a4.026 4.026 0 0 0-.473-.134 2.693 2.693 0 0 0-.444-.079c-.168-.01-.302.03-.399.131a1.113 1.113 0 0 0-.239.352c-.71 1.656-1.419 3.31-2.126 4.968a3.957 3.957 0 0 0-.243.784 2.078 2.078 0 0 0 0 .88c.066.307.214.585.438.855.226.269.588.514 1.088.725.469.204.9.3 1.284.292.375-.015.713-.093.996-.258.27-.155.504-.336.68-.554a2.98 2.98 0 0 0 .432-.706c.526-1.232 1.053-2.457 1.58-3.687.2-.471.332-.868.391-1.196.056-.33.04-.558-.051-.711-.1-.176-.274-.345-.504-.51a4.342 4.342 0 0 0-.554-.358l.19-.447 3.726 1.595a14.41 14.41 0 0 0-.195.445m10.716 12.59c-1.4-.404-2.804-.811-4.205-1.217l.134-.47c.157.038.354.078.602.123.243.039.422.05.527.032a.945.945 0 0 0 .39-.205.83.83 0 0 0 .213-.376l1.975-6.836a1.608 1.608 0 0 0-.102-.028c-1.84 2.367-3.722 4.698-5.565 7.067-.11-.03-.218-.065-.334-.096-.224-3.024-.507-6.044-.73-9.064a.83.83 0 0 0-.089-.025c-.539 1.87-1.082 3.738-1.62 5.611-.157.538-.24.956-.252 1.266-.017.305.036.536.138.7.071.124.252.267.538.443.283.177.47.275.564.308l-.137.47-3.844-1.11c.045-.159.092-.316.137-.471.207.037.431.069.667.083.235.018.422-.002.574-.07.19-.082.35-.232.49-.477.13-.24.281-.656.454-1.255l1.389-4.81c.08-.276.112-.51.097-.709a1.107 1.107 0 0 0-.163-.514 1.432 1.432 0 0 0-.435-.41 2.38 2.38 0 0 0-.571-.275l.134-.47 3.241.938c.213 2.616.485 5.23.695 7.847 1.33-1.75 2.699-3.475 4.032-5.226.15-.195.291-.397.419-.622a3.304 3.304 0 0 0 .233-.445c1.033.298 2.072.598 3.103.899l-.135.467a4.5 4.5 0 0 0-.493-.075 2.783 2.783 0 0 0-.457-.027.513.513 0 0 0-.385.18 1.093 1.093 0 0 0-.196.379l-1.96 6.776a.923.923 0 0 0-.034.41c.025.122.1.241.229.367.069.07.201.15.396.244.197.1.35.165.47.208a33.1 33.1 0 0 0-.138.466m10.185-3.093c.258.23.474.51.62.843s.2.722.143 1.165a2.352 2.352 0 0 1-.444 1.14 2.677 2.677 0 0 1-.881.722 3.554 3.554 0 0 1-1.107.35 4.712 4.712 0 0 1-1.234.011c-1.552-.195-3.103-.392-4.655-.585l.06-.487c.113.007.273.007.494 0 .214-.002.375-.019.47-.045a.61.61 0 0 0 .338-.224.842.842 0 0 0 .143-.396c.29-2.324.582-4.648.875-6.975a1.131 1.131 0 0 0-.022-.42.665.665 0 0 0-.283-.327 1.938 1.938 0 0 0-.445-.215c-.171-.056-.305-.103-.421-.124l.06-.485 4.542.572c.35.045.679.12 1 .23.308.111.597.265.865.475.25.195.46.44.594.736.134.299.182.64.134 1.032a2.025 2.025 0 0 1-.913 1.51c-.238.16-.504.274-.787.365a3.976 3.976 0 0 1-.93.182l-.01.062c.28.07.585.175.923.325.33.15.627.336.87.562zm-1.494-1.672c.198-.178.347-.374.443-.598a3.23 3.23 0 0 0 .202-.817c.067-.531-.028-.963-.287-1.31-.257-.35-.701-.553-1.342-.633a31.808 31.808 0 0 0-.551-.066l-.57-.053c-.156 1.245-.31 2.491-.47 3.735.295.036.585.072.874.11a2.987 2.987 0 0 0 .998-.02 1.51 1.51 0 0 0 .702-.35zm.576 3.217c.07-.574-.067-1.064-.403-1.487-.346-.423-.88-.672-1.61-.764a28.652 28.652 0 0 0-.748-.087 14.039 14.039 0 0 0-.463-.042c-.145 1.145-.286 2.283-.43 3.424a.73.73 0 0 0 .269.695c.216.174.537.287.96.34.684.09 1.237-.038 1.651-.392.416-.359.674-.911.773-1.684zm13.34 3.081h-2.675c-.582-.924-1.125-1.7-1.593-2.374-.479-.669-1.003-1.342-1.559-2.057h-1.014v3.102c0 .157.03.302.076.418.05.123.163.218.33.284.083.033.23.06.44.09.21.026.388.041.531.048v.49h-4.188v-.49c.11-.007.27-.026.49-.049a1.76 1.76 0 0 0 .44-.09.597.597 0 0 0 .304-.26.866.866 0 0 0 .09-.442v-7.072c0-.157-.02-.302-.067-.43-.05-.12-.157-.216-.33-.28a2.598 2.598 0 0 0-.454-.115 3.536 3.536 0 0 0-.474-.064v-.49h4.575c.418 0 .81.038 1.181.124.37.091.699.224.997.414.286.187.523.416.691.717.17.296.258.653.258 1.075 0 .381-.058.708-.172.999a2.068 2.068 0 0 1-.52.75c-.204.206-.461.363-.752.513a6.034 6.034 0 0 1-.97.371c.482.643.899 1.172 1.222 1.611.315.437.724.961 1.187 1.59a2.946 2.946 0 0 0 1.049.934c.117.066.273.104.453.136.184.034.336.05.454.056-.002.16-.002.325-.002.49zm-3.674-7.287c0-.59-.18-1.052-.516-1.41-.34-.348-.83-.518-1.46-.518h-1.187v4.19h.915c.642 0 1.185-.192 1.606-.606.422-.412.644-.957.644-1.655zm15.086 6.559-4.11.314a26.57 26.57 0 0 0-.037-.493 4.03 4.03 0 0 0 .9-.206c.229-.088.343-.178.335-.28-.004-.042-.017-.088-.026-.15a.541.541 0 0 0-.052-.158c-.323-.708-.663-1.41-.989-2.121l-3.468.261a12.07 12.07 0 0 0-.25.864c-.064.249-.123.472-.17.677a4.179 4.179 0 0 0-.09.49 1.616 1.616 0 0 0-.012.305c.011.183.168.308.47.392.3.083.633.112 1.004.105l.037.491-3.722.282c-.011-.164-.022-.328-.037-.49a2.33 2.33 0 0 0 .446-.115 1.447 1.447 0 0 0 .433-.209c.18-.141.31-.28.403-.428a2.184 2.184 0 0 0 .256-.578c.392-1.262.859-2.673 1.331-4.248.472-1.572.924-2.968 1.292-4.195l.558-.041c1.29 2.73 2.637 5.43 3.931 8.156.083.175.176.31.269.417.1.107.228.205.396.294.112.058.252.101.429.128.176.034.318.045.437.041.015.168.028.334.038.498zm-4.276-3.687c-.586-1.22-1.199-2.436-1.788-3.662-.385 1.3-.8 2.59-1.189 3.888zm18.332-7.715-.499.135c-.193-.327-.493-.64-.896-.964-.406-.32-.756-.459-1.042-.429a6.87 6.87 0 0 0-.504.095c-.196.048-.41.101-.658.166l-1.601.436c.342 1.264.683 2.53 1.026 3.79.364-.101.733-.202 1.099-.3.328-.09.586-.191.75-.314a1.254 1.254 0 0 0 .381-.442 1.43 1.43 0 0 0 .125-.53 2.744 2.744 0 0 0-.032-.697l.504-.137c.34 1.24.675 2.477 1.009 3.712-.165.045-.336.09-.504.138a3.341 3.341 0 0 0-.318-.63c-.153-.223-.287-.38-.407-.466a1.02 1.02 0 0 0-.593-.206 2.666 2.666 0 0 0-.769.115l-1.097.299.88 3.25a.858.858 0 0 0 .2.37c.087.098.213.156.381.192.079.018.236.011.47-.011a3.21 3.21 0 0 0 .53-.068l.128.474-4.144 1.124-.129-.474c.135-.043.312-.11.53-.192.212-.084.355-.142.416-.194a.594.594 0 0 0 .224-.336.943.943 0 0 0-.02-.435l-1.847-6.81a1.281 1.281 0 0 0-.18-.373c-.078-.095-.21-.155-.386-.187a2.834 2.834 0 0 0-.524-.023 2.755 2.755 0 0 0-.517.056l-.128-.475 7.5-2.033.64 2.37m11.046-.836c.363.904.716 1.81 1.08 2.71l-6.978 3.37-.213-.442c.098-.056.235-.14.42-.258.175-.11.297-.202.353-.269a.592.592 0 0 0 .165-.373.907.907 0 0 0-.112-.432c-1.014-2.101-2.027-4.203-3.044-6.306a1.091 1.091 0 0 0-.25-.339.594.594 0 0 0-.416-.116 1.86 1.86 0 0 0-.476.044 2.251 2.251 0 0 0-.47.124c-.068-.146-.143-.297-.211-.443l3.765-1.819.213.444a3.334 3.334 0 0 0-.422.278 2.552 2.552 0 0 0-.359.3.48.48 0 0 0-.168.394c0 .146.038.287.106.422l2.856 5.917c.13.27.242.475.347.61a.616.616 0 0 0 .363.262c.126.035.294.012.497-.066.204-.067.476-.183.817-.351.157-.073.311-.159.48-.247.166-.084.314-.184.453-.276.134-.1.25-.201.355-.305a.687.687 0 0 0 .193-.293c.075-.275.148-.655.186-1.16.034-.492.051-.881.023-1.164.149-.07.298-.143.446-.213m5.22-9.69a4.883 4.883 0 0 1 1.71.878 6 6 0 0 1 1.398 1.636c.397.672.638 1.34.75 2.012a4.85 4.85 0 0 1-.078 1.93 4.608 4.608 0 0 1-.781 1.646 4.555 4.555 0 0 1-1.393 1.24c-.593.349-1.202.571-1.839.64-.639.067-1.246.032-1.837-.155a4.72 4.72 0 0 1-1.677-.896 5.864 5.864 0 0 1-1.347-1.57 5.796 5.796 0 0 1-.76-2.03 5.077 5.077 0 0 1 .07-1.92 4.626 4.626 0 0 1 .795-1.663 4.58 4.58 0 0 1 1.38-1.235 4.685 4.685 0 0 1 1.784-.629 4.486 4.486 0 0 1 1.826.112zm2.628 6.504a4.587 4.587 0 0 0-.23-1.517 8.045 8.045 0 0 0-.745-1.611 8.416 8.416 0 0 0-1.109-1.493 4.585 4.585 0 0 0-1.237-.933 2.789 2.789 0 0 0-1.297-.297c-.436.002-.881.14-1.31.392-.475.283-.825.63-1.026 1.053a3.04 3.04 0 0 0-.31 1.358c.01.468.093.96.274 1.484.18.528.419 1.048.723 1.564a8.624 8.624 0 0 0 1.064 1.45c.37.398.784.706 1.211.932a2.83 2.83 0 0 0 1.303.328c.444 0 .896-.127 1.355-.397a2.693 2.693 0 0 0 .984-.985c.221-.403.347-.85.35-1.328zm12.29-6.673c-.725.515-1.456 1.033-2.182 1.546-1.003-.416-1.9-.734-2.67-1.011-.778-.275-1.6-.515-2.457-.778-.28.196-.553.392-.832.587l1.794 2.53c.09.126.201.222.302.296.118.072.26.078.434.039.09-.019.221-.082.412-.181.19-.097.336-.187.459-.269l.285.401c-1.139.81-2.278 1.615-3.416 2.423-.096-.13-.19-.266-.286-.398.09-.07.21-.176.373-.321a1.826 1.826 0 0 0 .307-.33.57.57 0 0 0 .094-.388.868.868 0 0 0-.176-.41c-1.366-1.924-2.729-3.85-4.09-5.771a1.232 1.232 0 0 0-.302-.307c-.112-.073-.255-.091-.428-.04a3.582 3.582 0 0 0-.863.391l-.285-.401c1.243-.881 2.486-1.76 3.73-2.643a5.32 5.32 0 0 1 1.034-.58 3.16 3.16 0 0 1 1.053-.242 2.05 2.05 0 0 1 .975.182c.317.141.593.387.834.728.222.31.37.612.437.918.074.302.078.601.017.909-.05.285-.168.558-.322.851a5.603 5.603 0 0 1-.578.863c.769.249 1.414.436 1.932.606.508.176 1.148.366 1.887.614a2.923 2.923 0 0 0 1.396.153 1.52 1.52 0 0 0 .448-.152c.17-.074.305-.156.404-.216.091.134.19.269.281.403zm-7.207-3.819c-.344-.484-.761-.759-1.238-.853-.482-.085-.98.056-1.494.42l-.97.688a6420.468 6420.468 0 0 0 2.426 3.422l.75-.532c.525-.37.852-.845.955-1.422.105-.583-.027-1.157-.43-1.723zm15.372-2.34c.272.92.545 1.845.824 2.766l-7.72 2.861c-.055-.151-.115-.306-.17-.459.13-.056.302-.136.504-.25.205-.11.34-.184.396-.243a.683.683 0 0 0 .198-.36.86.86 0 0 0-.064-.425c-.817-2.198-1.629-4.392-2.446-6.593a1.139 1.139 0 0 0-.213-.353c-.09-.09-.224-.134-.401-.152a2.38 2.38 0 0 0-.523.028 2.498 2.498 0 0 0-.509.098c-.056-.151-.116-.307-.17-.459l7.193-2.67.817 2.213c-.163.063-.33.124-.489.183-.207-.302-.534-.57-.952-.832-.434-.269-.782-.361-1.058-.299-.14.031-.305.073-.493.138-.198.068-.409.139-.652.228l-1.458.541c.448 1.212.902 2.43 1.35 3.64.35-.128.695-.258 1.051-.389.332-.123.572-.242.706-.37a1.023 1.023 0 0 0 .29-.457 1.758 1.758 0 0 0 .06-.597 3.355 3.355 0 0 0-.085-.637l.493-.182c.443 1.198.886 2.396 1.333 3.595-.166.064-.333.123-.493.183a3.7 3.7 0 0 0-.383-.61c-.161-.197-.302-.337-.43-.41a1.014 1.014 0 0 0-.58-.156 2.437 2.437 0 0 0-.714.175l-1.053.39c.343.92.68 1.837 1.022 2.756.103.274.205.481.303.63a.633.633 0 0 0 .361.276c.141.045.32.033.522-.016.207-.056.493-.146.853-.278.145-.056.332-.123.571-.21.235-.088.435-.165.585-.252.157-.081.325-.176.484-.286.158-.116.264-.218.302-.325.127-.28.227-.675.287-1.176.06-.5.097-.86.078-1.075.157-.061.312-.12.473-.179m8.288-6.79a4.771 4.771 0 0 1 1.232 1.48 5.99 5.99 0 0 1 .642 2.053 5.678 5.678 0 0 1-.097 2.144 4.862 4.862 0 0 1-.826 1.747 4.563 4.563 0 0 1-1.362 1.204 4.627 4.627 0 0 1-1.764.593c-.689.092-1.334.056-1.942-.13-.613-.184-1.164-.456-1.635-.859a4.78 4.78 0 0 1-1.187-1.478 5.678 5.678 0 0 1-.63-1.976c-.104-.79-.067-1.509.095-2.164a5.05 5.05 0 0 1 .822-1.738 4.64 4.64 0 0 1 3.137-1.814 4.741 4.741 0 0 1 1.887.118 4.517 4.517 0 0 1 1.628.822zm-.127 7.015a4.603 4.603 0 0 0 .388-1.488 8.493 8.493 0 0 0-.063-1.773 8.147 8.147 0 0 0-.437-1.807 4.502 4.502 0 0 0-.763-1.342 2.822 2.822 0 0 0-1.079-.78c-.408-.169-.865-.218-1.357-.155-.554.073-1.012.256-1.365.568a2.99 2.99 0 0 0-.817 1.127 4.832 4.832 0 0 0-.325 1.471 8.118 8.118 0 0 0 .05 1.721 8.16 8.16 0 0 0 .414 1.75c.18.512.446.954.752 1.33.299.378.654.63 1.064.813.409.175.881.236 1.406.164a2.671 2.671 0 0 0 1.286-.518 2.778 2.778 0 0 0 .846-1.085z' stroke-width='.784'/%3e%3cpath d='M468.871 261.938v61.881c0 12.307-1.708 61.314-54.354 80.348-52.757-19.034-54.466-68.036-54.466-80.348v-61.88z' fill='none' stroke-width='1.139'/%3e%3c/g%3e%3cpath d='M407.316 101.06c-4.083.034-8.6 1.993-13.238 6.97v.003c11.159-3.276 16.084 4.126 20.738 8.848a185.144 185.144 0 0 0-40.187 4.469c-4.316-9.542-19.574-21.154-31.426-3.579 10.797-5.1 16.869 1.972 22.32 5.86a183.334 183.334 0 0 0-32.113 12.3c-.036-.074-.06-.17-.097-.242-4.452-8.508-27.624-18.889-33.079 4.598 11.419-11.846 22.776 1.254 29.551-2.516a184.921 184.921 0 0 0-29.312 19.047c-.048-.06-.089-.142-.137-.199-6.19-7.357-31.075-12.548-31.305 11.555 8.411-13.732 21.951-4.066 27.946-8.508a185.828 185.828 0 0 0-26.551 27.207c-.142-.157-.278-.352-.422-.492-6.901-6.704-32.184-9.393-29.98 14.61 7.176-14.894 22.254-5.715 27.406-11.645-.787.905-1.198 2.046-1.418 3.324a184.53 184.53 0 0 0-18.774 31.965c-8.516-4.559-33.479-.333-24.824 22.14l.004.004c2.841-16.267 19.866-11.484 23.203-18.574-.035.074-.043.156-.074.23a183.218 183.218 0 0 0-11.586 37.387c-10.494.256-27.607 10.189-15.195 27.782-.887-11.867 8.005-14.91 13.629-18.559a186.012 186.012 0 0 0-1.895 26.48c0 2.668.068 5.318.18 7.957-9.473 4.117-21.91 21.338-2.274 32.059-5.556-9.389-.484-15.728 3.047-21.137a183.67 183.67 0 0 0 6.738 33.97c-8.868 5.709-17.914 21.677.735 31.05-5.947-9.306-.914-15.855 2.43-21.422a183.823 183.823 0 0 0 15.167 32.05c-7.113 7.689-11.815 26.56 9.395 30.118-8.65-7.293-5.486-15.216-3.992-21.59a185.65 185.65 0 0 0 23.93 28.734c-6.703 8-10.4 27.5 11.218 29.649-10.412-7.64-5.505-17.171-5.117-23.922a185.209 185.209 0 0 0 34.426 24.414c-1.884 10.32 3.712 27.907 23.39 20.719-10.644-1.969-12.236-9.75-14.003-15.906a183.26 183.26 0 0 0 38.503 13.355c-.184 10.45 6.906 25.133 24.891 17.156-10.944-1.273-12.949-9.17-15.176-15.238a185.716 185.716 0 0 0 31.16 2.633c2.02 0 4.028-.045 6.032-.11 2.28 10.232 14.421 24.377 29.738 10.016-11.618 2.59-15.955-5.553-20.375-10.55a183.776 183.776 0 0 0 40.277-7.91c6.32 8.407 21.669 15.974 30.614-1.946-8.7 5.582-15.085 1.618-20.48-1.594a183.942 183.942 0 0 0 30.62-15.074c7.887 6.427 30.056 9.206 29.73-13.504-5.755 9.918-14.358 8.049-20.988 7.785a185.68 185.68 0 0 0 29.282-25.238c9.283 4.964 28.409 4.982 27.132-16.07-5.284 10.155-13.95 8.697-20.582 8.73a185.093 185.093 0 0 0 21.727-31.89c10.331 1.757 29.212-4.83 20.25-24.485h-.004c-1.252 11.075-9.477 12.97-15.621 15.262a183.238 183.238 0 0 0 13.004-38.387c10.32-2.236 24.597-14.208 10.25-29.457 2.113 9.632-3.303 14.181-8.098 17.965a185.943 185.943 0 0 0 2.14-28.192c0-1.317-.022-2.63-.05-3.941 10.051-3.21 23.152-16.577 7.293-30.355 3.456 10.532-3.14 15.64-7.773 20.23a184.16 184.16 0 0 0-4.993-30.871c8.87-5.284 18.98-23.913-1.851-32.078 7.135 9.167 1.91 16.419-.832 22.445a183.49 183.49 0 0 0-12.895-31.176c7.492-7.267 13.186-26.371-8.156-30.648 8.499 7.638 4.928 15.539 3.25 21.894a185.317 185.317 0 0 0-19.324-26.66c3.968-9.72 2.134-28.003-18.578-25.027 8.755 3.601 9.757 10.137 10.175 16a185.672 185.672 0 0 0-23.77-20.195c2.861-9.903-2.327-30.12-23.144-22.32v.003c11.035 1.947 12.43 10.183 14.336 16.41a183.977 183.977 0 0 0-33.027-16.457c1.754-10.177-5.476-29.538-25.305-19.757 12.344.926 13.755 10.719 16.73 16.753a183.936 183.936 0 0 0-47.175-8.656c-1.593-6.959-8.437-16.132-17.39-16.058zm7.832 20.41c.917 0 1.83.022 2.743.036-6.205 3.72-11.544 15.967-24.887 12.55 14.374 16.239 30.152-2.277 31.894-12.32a179.5 179.5 0 0 1 46.25 8.621c-6.938 2.125-15.809 9.99-26.316 2.614 7.518 19.959 28.42 8.827 34.02.101a179.423 179.423 0 0 1 35.765 18.344c-7.237.404-17.647 9.28-28.156.207 5.43 20.474 27.121 11.724 33.727 3.64 9.762 7.023 18.787 15 26.949 23.793.405 1.13.986 2.11 1.922 2.829-6.244-4.792-20.923 5.851-30.512-6.989.913 22.413 26.746 16.679 33.422 9.57a180.429 180.429 0 0 1 19.719 28.028c-6.29-3.578-20.032-1.414-24.106-14.734-6.515 20.705 17.816 24.397 27.293 20.582a178.881 178.881 0 0 1 13.188 32.843c-5.906-4.18-18.883-4.915-20.473-18.25-9.793 18.687 11.911 26.675 22.34 25.2a180.013 180.013 0 0 1 5.062 34.8c-2.314-6.924-17.557-11.5-14.195-26.066-16.548 15.241 4.566 30.974 14.363 31.422.018 1.077.04 2.153.04 3.234 0 11.536-1.097 22.811-3.169 33.742-.402.738-.679 1.512-.722 2.364.4-7.818-16.779-13.71-11.63-28.852-17.977 13.5 1.355 31.224 11.07 32.688a178.734 178.734 0 0 1-14.308 40.16c-.424-7.185-10.716-17.134-2.054-28.399-20.76 6.862-9.518 28.651-.856 34.024a180.391 180.391 0 0 1-23.34 33.367c2.348-6.816-3.887-19.909 8.36-27.426-22.392-.966-19.05 24.598-12.578 32.047a180.875 180.875 0 0 1-31.145 26.25c1.549-7.034-2.553-19.092 9.176-25.578-20.696-1.836-20.337 20.113-15.297 29.488a179.218 179.218 0 0 1-33.563 15.93c-1.086-.257-2.15-.302-3.203.031 7.516-2.378 7.023-20.409 23.118-20.953-19.284-12.09-29.224 12.843-26.88 22.14.081.319.231.658.352.989a179.473 179.473 0 0 1-40.535 7.578c6.481-3.235 12.647-15.244 25.79-10.934-13.728-17.804-31.557 1.668-32.895 11.293-1.908.06-3.82.102-5.743.102a181.12 181.12 0 0 1-33.785-3.172c-.604-.692-1.3-1.25-2.164-1.594 7.32 2.92 18.515-11.29 31.27-1.535-7.101-21.51-30.772-8.574-34.93.074a10.905 10.905 0 0 0-.633 1.711 178.799 178.799 0 0 1-43.492-16.097c-.025-.012-.041-.035-.066-.047 7.107 3.404 19.238-10.023 31.3.566-5.588-21.806-29.801-10.758-34.746-2.422a180.432 180.432 0 0 1-31.636-22.3c7.086 1.378 17.742.288 22.39 11.375 4.421-21.29-20.271-22.526-29.273-17.758a180.802 180.802 0 0 1-25.93-31.793c6.183 3.77 20.394.731 25.004 14.238 5.92-21.151-19.18-23.887-28.266-19.555a179.077 179.077 0 0 1-16.593-36.93c2.533 7.321 20.434 7.117 20.84 22.981 12.335-19.007-12.622-29.087-22.036-26.87a179.486 179.486 0 0 1-6.8-37.31c4.962 5.243 18.638 7.29 18.511 21.165 12.069-17.268-8.318-27.902-18.87-27.797a182.924 182.924 0 0 1-.15-6.98c0-9.446.733-18.722 2.134-27.774 2.613 6.715 13.012 14.425 6.937 26.414 19.234-10.61 3.843-30.12-5.66-33.652a178.73 178.73 0 0 1 8.258-28.88c2.283 6.343 5.37 13.937-1.32 21.637 18.97-5.04 12.918-23.631 5.46-31.64a179.673 179.673 0 0 1 15.153-27.106c.429 6.337.527 13.558-7.274 18.684 19.158.239 18.901-18.325 14.242-28.254a181.022 181.022 0 0 1 22.102-23.648c-.304 6.935.356 15.828-9.273 20.859 19.389 2.184 20.716-17.04 16.824-27.258a180.343 180.343 0 0 1 23.207-15.797c-1.788 6.696-3.108 15.453-13.551 18.293 18.44 6.267 23.91-12.178 22.34-22.992a178.793 178.793 0 0 1 34-12.875c-5.444 4.753-8.862 17.401-22.442 16.11 17.175 14.154 30.057-7.978 29.551-17.852a180.769 180.769 0 0 1 39.367-4.324z' fill='%23338a00' stroke='%23075400' stroke-width='.596'/%3e%3cpath d='M305.125 381.948c-.341 1.48-.909 3.533-1.14 6.156 0 .569-.568 3.646 1.14 3.758 1.255.115 1.596-3.192 1.596-3.192s-1.142 3.647.34 4.104c2.053.451 2.279-3.99 2.279-3.99-.228 1.255-1.596 4.447.343 4.783 2.05.345 2.62-4.33 2.62-4.33s-1.709 4.675.341 4.788c1.938.112 1.938-4.558 1.938-4.558s-1.027 5.585 1.708 5.13c1.478-.23 1.823-2.168 2.165-3.307.454-1.707 1.48-3.872.228-7.406-.91-2.62-.568-3.304-.568-3.304s-3.192 2.394-5.697 3.988c-1.143.683-7.296-2.621-7.296-2.621zm33.276-4.906c-.569-.344-.455 2.052-.683 3.188-.114 1.142.23 3.648 4.104 3.422 3.757-.344 7.52-1.14 9.912-.572 2.394.684 5.924.798 7.864.798 1.938 0 3.192-.226 4.1-.571.8-.339 2.508.459 3.304.459.8 0 2.051-1.255 1.937-2.053-.114-1.483-1.478-1.483-3.42-1.595-1.823-.227-4.328-.571-5.58-1.026-1.255-.457-3.533-1.71-6.382-2.28 0 0-5.469.23-6.606.23-1.142 0-7.865.34-8.55 0z' fill='%23ad7d5a' stroke='%23000' stroke-width='.57'/%3e%3cpath d='m320.055 385.14-.228-5.242 2.165 1.826.57-3.99c.91-.228 2.393 1.597 2.393 1.597l-.23-3.988 3.305 3.646s-.228-3.078.909-4.9c0 0 2.506 2.165 2.506 4.672 0 2.17 2.165-3.077 2.165-3.077l1.824 5.813 1.478-2.167 1.255 4.555 2.733-3.987 2.165 4.673 4.9-.344.572 2.736 2.164-2.393 2.85 1.823s2.391-.683 3.646-.683c1.254 0 2.735 1.594 2.735 1.594s.91-1.59 1.823-2.162c.91-.57 2.166.91 2.504 1.821l1.825-3.304s2.394 2.395 2.733 3.304c0 0 .343-2.732.913-3.646.571-.91 1.478.343 2.165 1.483l1.48-4.9s1.595.338 2.733 2.163c1.255 1.821 1.255-2.737 1.255-2.737s2.732 3.65 3.42 6.154m68.6-.912s.91-2.503 2.166-3.758c0 0 2.392 2.851 2.392 3.76 0 0 .683-.341 1.937-1.25l1.823 1.82 2.166-1.479 2.052 1.823 3.761-1.595 1.479 1.594 5.809-.681 2.169.909 2.05-2.617 1.937 2.048 3.076-3.074s1.48 1.249 1.822 2.164c0 0 2.507-1.255 3.078-2.164 0 0 2.39-.912 2.732.566 0 0 1.479-1.14 1.367-2.393-.116-1.252 1.708-.34 2.277 1.257 0 0 .684-2.51 2.51-2.739 0 0 1.25 1.483.907 4.219 0 0 2.735-2.163 3.99-2.393 0 0 .57 3.074-.341 5.813 0 0 2.85-4.674 3.418-3.078.228.91.911 3.99.228 6.152l2.507-1.595.911 3.08 2.733-.571m-128.033 9.28s2.051-3.416 3.304-4.33c0 0 2.733 2.168 3.645 4.901 0 0 .344-1.821 1.255-3.416 0 0 3.418 1.59 3.987 3.76 0 0 1.254-2.166 2.165-2.733.911-.688 1.824 2.39 1.824 4.214 0 0 2.165-2.281 3.42-2.394 0 0 2.392 1.139 3.075 5.13 0 0 2.281-2.166 3.077-1.826 0 0 2.734 1.826 2.05 4.33-.34 1.367 2.736-1.591 6.495-2.504l3.304 2.505s3.077-4.101 3.987-5.471c0 0 2.51.91 2.51 2.395 0 0 1.14-4.335 2.049-4.787.91-.569 2.164 1.367 2.164 2.621 0 0 .343-3.304 2.168-3.989 0 0 1.822 1.252 1.822 2.509 0 0 1.938-3.76 3.42-4.676' fill='none' stroke='%23060' stroke-width='.57'/%3e%3cpath d='m320.055 385.14-.228-5.242 2.165 1.826.57-3.99c.91-.231 2.393 1.597 2.393 1.597l-.23-3.992 3.305 3.648s-.228-3.078.909-4.903c0 0 2.506 2.167 2.506 4.673 0 2.17 2.165-3.078 2.165-3.078l1.824 5.813 1.479-2.165 1.254 4.557 2.736-3.989 2.162 4.675 4.9-.344.571 2.733 2.164-2.391 2.85 1.822s2.393-.683 3.647-.683 2.735 1.598 2.735 1.598.91-1.598 1.822-2.173c.91-.565 2.168.915 2.505 1.826l1.825-3.304s2.392 2.395 2.733 3.304c0 0 .34-2.733.91-3.647.572-.91 1.48.344 2.166 1.483l1.478-4.9s1.598.34 2.734 2.166c1.252 1.822 1.252-2.733 1.252-2.733s2.733 3.645 3.416 6.15c0 0-18.866 6.478-32.172 4.707-15.662-2.085-28.56-5.047-28.56-5.047m129.342-.569s.91-2.508 2.167-3.763c0 0 2.392 2.853 2.392 3.763 0 0 .681-.341 1.937-1.254l1.822 1.822 2.167-1.478 2.053 1.82 3.757-1.596 1.48 1.596 5.812-.68 2.165.91 2.052-2.622 1.937 2.05 3.076-3.077s1.48 1.252 1.822 2.167c0 0 2.507-1.25 3.078-2.167 0 0 2.393-.91 2.732.57 0 0 1.482-1.142 1.37-2.391-.114-1.253 1.708-.344 2.278 1.25 0 0 .683-2.504 2.504-2.732 0 0 1.253 1.476.911 4.218 0 0 2.733-2.17 3.987-2.397 0 0 .571 3.077-.34 5.815 0 0 2.848-4.675 3.42-3.078.228.91.911 3.987.228 6.15l2.505-1.593.91 3.078 2.732-.571s-16.176 2.478-31.416 1.024c-15.242-1.453-29.543-6.835-29.54-6.835m-11.266 11.314c.74-.458-5.09 11.993-19.23 12.656-19.67.92-36.487-8.893-36.487-8.893s2.052-3.418 3.304-4.332c0 0 2.733 2.167 3.646 4.9 0 0 .343-1.824 1.254-3.417 0 0 3.419 1.59 3.987 3.76 0 0 1.255-2.166 2.168-2.733.91-.687 1.823 2.39 1.823 4.217 0 0 2.164-2.283 3.418-2.397 0 0 2.394 1.14 3.078 5.13 0 0 2.279-2.164 3.075-1.826 0 0 2.735 1.826 2.05 4.33-.341 1.37 2.734-1.59 6.496-2.503l3.304 2.504s3.075-4.1 3.987-5.472c0 0 2.509.915 2.509 2.397 0 0 1.14-4.331 2.05-4.786.91-.57 2.163 1.366 2.163 2.623 0 0 .344-3.306 2.167-3.99 0 0 1.824 1.252 1.824 2.51-.004-.003 1.933-3.764 3.416-4.678z' fill='%235ac800'/%3e%3c/g%3e%3c/svg%3e\"},1022:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9600 4800'%3e%3cpath fill='%23d52b1e' d='M0 0h2400l99 99h4602l99-99h2400v4800H7200l-99-99H2499l-99 99H0z'/%3e%3cpath fill='%23fff' d='M2400 0h4800v4800H2400zm2490 4430-45-863a95 95 0 0 1 111-98l859 151-116-320a65 65 0 0 1 20-73l941-762-212-99a65 65 0 0 1-34-79l186-572-542 115a65 65 0 0 1-73-38l-105-247-423 454a65 65 0 0 1-111-57l204-1052-327 189a65 65 0 0 1-91-27l-332-652-332 652a65 65 0 0 1-91 27l-327-189 204 1052a65 65 0 0 1-111 57l-423-454-105 247a65 65 0 0 1-73 38l-542-115 186 572a65 65 0 0 1-34 79l-212 99 941 762a65 65 0 0 1 20 73l-116 320 859-151a95 95 0 0 1 111 98l-45 863z'/%3e%3c/svg%3e\"},957:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 10080 5040'%3e%3cdefs%3e%3cpath id='a' d='m0-360 69.421 215.845 212.038-80.301L155.99-35.603l194.985 115.71-225.881 19.651 31.105 224.59L0 160l-156.198 164.349 31.105-224.59-225.881-19.651 194.986-115.711-125.471-188.853 212.038 80.301z'/%3e%3cpath id='b' d='M0-210 54.86-75.508l144.862 10.614L88.765 28.842l34.67 141.052L0 93.334l-123.435 76.56 34.67-141.052-110.957-93.736L-54.86-75.508z'/%3e%3c/defs%3e%3cpath fill='green' d='M0 0h10080v5040H0z'/%3e%3ccircle cx='5040' cy='2520' r='1050' fill='%23ffe000'/%3e%3ccircle cx='5367.4' cy='2520' r='864' fill='green'/%3e%3ccircle cx='1730' cy='1470' r='1100' fill='%23ffe000'/%3e%3cpath fill='%23802000' stroke='%237b3100' stroke-width='23.333' d='M1654.1 2299.4h274.67s12.398-25.178-2.766-37.767-74.229-15.36-58.27-59.892c32.806-91.555 37.384-63.326 57.984-280.77s30.518-558.49 30.518-558.49h-39.674s7.63 106.05-15.259 244.15-29.755 150.3-54.933 256.35-28.992 115.21-51.88 177.01-25.179 64.852-61.038 122.07c-35.859 57.222-22.889 35.859-42.726 70.192-9.918 17.166-22.126 12.589-28.802 25.082-6.676 12.494-7.82 42.058-7.82 42.058z'/%3e%3cpath fill='green' d='M1863.7 668.6c2.282 42.661-2.007 99.138-19.688 145.1-17.928 51.216-37.423 102.27-36.458 155.31-28.502 9.694-57.877-61.678-85.312-19.688 20.624 58.016 68.239 103.95 100.86 156.22 5.502 16.205 52.438 58.518 25.281 68.358-68.547-23.46-85.162-110.31-127.68-163.05-49.38-88.757-141.44-151.49-244-155.82-38.524 1.01-163.78-9.548-131.19 56.419 47.997 32.632 107.14 53.91 154.53 90.537 35.31 3.303 99.31 62.248 95.579 84.52-62.102-25.153-91.169-55.299-158.08-81.758-90.658-35.014-216.06-13.954-266.25 76.021-9.357 23.433-23.172 91.731 6.255 98.238 34.384-53.685 83.569-113.7 156.45-97.6 57.244 4.47-63.877 106.64-17.544 86.084 14.68-6.515 48.583-28.769 72.102-31.093 23.518-2.324 36.653 15.282 54.497 17.718 35.688 4.872 45.515 19.833 42.207 28.537-3.903 10.269-15.241 1.501-51.52 13.004-18.14 5.751-27.615 21.692-48.774 28.989-21.158 7.298-65.173 7.815-81.621 1.344-57.547-24.996-151.89-20.645-169.83 51.468-.016 31.71-28.236-3.504-41.278 10.196-9.78 34.603-12.31 70.132-63.633 66.99-31.155 32.684-63.06 66.527-102.62 89.78 23.215 53.285 115.2-53.515 110.9-8.483-40.21 54.832 20.689 66.37 47.348 24.166 45.088-47.64 100.93-105.63 168.21-57.618 32.044 30.169 50.664-15.951 73.857-13.481 14.612 37.475 32.998 1.844 49.583-8.75 27.15-3.383 19.51 33.91 51.77 10.938 64.294-42.551 143.39-6.796 206.2-48.197 66.853-30.458 9.386 24.532-9.065 46.028-29.373 56.97-3.9 131.76-67.613 167.14-25.593 67.895 30.237 157.4-26.707 207.63-8.284 31.496 73.234 27.889 96.113 40.832 40.09 1.587-1.723-91.758 38.054-104.27 53.344 33.019 50.846-59.05 39.83-87.447 5.172-64.552 8.815-135.13 40.893-193.6 34.102-71.662 65.666 29.186 27.49 57.558-21.684 65.896-53.25 148.36-3.942 209.64 14.211 3.18 25.88 37.625 44.28 48.212s43.53-2.684 48.117-34.022c23.601-94.37 11.712-195.85 45.415-287.63 23.788-28.43 56.603-4.584 71.355 21.559 47.23 54.833 80.43 123.38 137.61 168.56 52.063 24.362 98.106 61.21 122.1 114.81-.32 41.353 117.45 47.692 82.258 1.727-33.768-44.747-11.488-89.504 22.715-119.26 18.318 4.518 12.904-28.289-1.458-15.312-22.995-5.424-24.466-47.512 7.497-27.507 53.836 17.379-4.197-38.962-23.655-40.69-45.52-28.215-97.82-60.676-120.2-109.72 59.256.604 120.77 32.564 181.32 12.74 48.538-24.937 97.769 2.08 114.72 44.864 37.52-5.987 21.524-43.614 0-56.146 27.443-11.325 46.422-34.805 13.147-55.515-17.574-22.934 23.566-62.052-27.001-60.422 1.651-38.627-13.556-73.973-55.66-87.318-42.178-35.717-165.95 52.62-162.36-27.89-12.471-43.818 50.278-5.854 67.812-27.708 18.118-46.194-86.337-41.686-51.87-77.5 22.51-14.494 128.15-35.314 45.306-50.82-41.347 11.364-76.832 2.949-109.37-17.513-29.657 49.603-114.34-26.938-99.252 61.251-11.585 33.23-87.278 119.57-107.76 53.423 17.422-51.845 107.1-68.797 79.29-138.7-4.267-43.636-40.445 7.589-57.49 4.335-8.63-27.162 26.104-59.178 50.313-65.625 48.038 36.948 49.493-46.614 95.178-39.816 33.355-7.41-10.771-21.718-20.074-27.996 9.14-24.416 60.346-36.892 10.136-58.094-44.302-32.872-77.138 32.72-113.68 36.218-35.072-39.595 31.842-58.628 50.312-79.479.993-15.543-39.017-4.69-26.98-18.229 10.457-18.69 81.302-20.081 48.126-48.125-49.965-17.153-114.44-12.876-162.38 9.346-30.203 9.777-39.09 78.07-65.122 75.237-12.24-30.398 3.985-90.372-37.917-99.167zm236.25 667.19c38.072-6.447.808 57.818-17.5 56.875 1.618-23.092-55.065-20.869-19.897-40.988 11.405-7.364 24.112-12.982 37.397-15.887z'/%3e%3cg fill='%23ffe000'%3e%3cuse xlink:href='%23a' x='7560' y='4200'/%3e%3cuse xlink:href='%23a' x='6300' y='2205'/%3e%3cuse xlink:href='%23a' x='7560' y='840'/%3e%3cuse xlink:href='%23a' x='8680' y='1869'/%3e%3cuse xlink:href='%23b' x='8064' y='2730'/%3e%3c/g%3e%3c/svg%3e\"},2867:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3e%3cpath style='fill:%23007fff' d='M0 0h800v600H0z'/%3e%3cpath d='M36 120h84l26-84 26 84h84l-68 52 26 84-68-52-68 52 26-84-68-52zM750 0 0 450v150h50l750-450V0h-50' style='fill:%23f7d618'/%3e%3cpath d='M800 0 0 480v120l800-480V0' style='fill:%23ce1021'/%3e%3c/svg%3e\"},2882:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 450 300'%3e%3cpath fill='%23FFCE00' d='M0 0h450v300H0z'/%3e%3cpath fill='%23289728' d='M0 0h450v225H0z'/%3e%3cpath fill='%23FFF' d='M0 0h450v150H0z'/%3e%3cpath fill='%23003082' d='M0 0h450v75H0z'/%3e%3cpath fill='%23D21034' d='M187.5 0h75v300h-75z'/%3e%3cpath fill='%23FFCE00' d='M75.028 7.004 94.9 67.996 42.902 30.333h64.197L55.1 67.996 75.028 7.004z'/%3e%3c/svg%3e\"},956:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3e%3cpath fill='%23009543' d='M0 0h3v2H0z'/%3e%3cpath d='m0 2 2-2h1v2z' fill='%23FBDE4A'/%3e%3cpath d='M3 0v2H1z' fill='%23DC241F'/%3e%3c/svg%3e\"},2857:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3e%3cpath fill='%23D52B1E' d='M0 0h320v320H0z'/%3e%3cpath fill='%23fff' d='M60 130h200v60H60z'/%3e%3cpath fill='%23fff' d='M130 60h60v200h-60z'/%3e%3c/svg%3e\"},7464:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 450 300'%3e%3cpath fill='%23009E60' d='M0 0h450v300H0z'/%3e%3cpath fill='%23FFF' d='M0 0h300v300H0z'/%3e%3cpath fill='%23F77F00' d='M0 0h150v300H0z'/%3e%3c/svg%3e\"},4039:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 9600 4800'%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath d='M0 0h12v6H0z'/%3e%3c/clipPath%3e%3cclipPath id='b'%3e%3cpath d='M0 0v1.5h8V4zm6 0H3v4h-5z'/%3e%3c/clipPath%3e%3c/defs%3e%3cg transform='scale(800)' stroke-width='.6' fill='%23012169' clip-path='url(%23a)'%3e%3cpath d='M0 0h12v6H0z'/%3e%3cpath stroke='%23fff' d='m0 0 6 3M0 3l6-3'/%3e%3cpath stroke='%23c8102e' stroke-width='.4' clip-path='url(%23b)' d='m0 0 6 3M0 3l6-3'/%3e%3cpath stroke='%23fff' stroke-width='1' d='M3 0v4M0 1.5h7'/%3e%3cpath stroke='%23c8102e' d='M3 0v4M0 1.5h7'/%3e%3cpath d='M0 3h6V0h6v6H0z'/%3e%3c/g%3e%3cg transform='translate(7200 2400)'%3e%3cg id='d'%3e%3cpath id='c' fill='%23fff' d='m0-1992 81 249h261l-211 153 81 249L0-1494l-212 153 81-249-211-153h261z'/%3e%3cuse transform='rotate(24)' xlink:href='%23c'/%3e%3cuse transform='rotate(48)' xlink:href='%23c'/%3e%3c/g%3e%3cuse transform='rotate(72)' xlink:href='%23d'/%3e%3cuse transform='rotate(144)' xlink:href='%23d'/%3e%3cuse transform='rotate(216)' xlink:href='%23d'/%3e%3cuse transform='rotate(288)' xlink:href='%23d'/%3e%3c/g%3e%3c/svg%3e\"},5294:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-4 -4 24 16'%3e%3cpath d='M20 12H-4V-4h24z' fill='%23d52b1e'/%3e%3cpath d='M4 4h16v-8H-4z' fill='%23fff'/%3e%3cpath d='M4 4h-8v-8h8z' fill='%230039a6'/%3e%3cg id='c'%3e%3cg id='b'%3e%3cpath d='M0-2v2h1z' fill='%23fff' transform='rotate(18 0 -2)' id='a'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(-72)'/%3e%3cuse xlink:href='%23c' transform='rotate(144)'/%3e%3c/svg%3e\"},4564:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 90 60'%3e%3cpath fill='%23007a5e' d='M0 0h30v60H0z'/%3e%3cpath fill='%23ce1126' d='M30 0h30v60H30z'/%3e%3cpath fill='%23fcd116' d='M60 0h30v60H60z'/%3e%3cg transform='translate(45 30)' fill='%23fcd116'%3e%3cg id='b'%3e%3cpath id='a' d='M0-8v8h4z' transform='rotate(18 0 -8)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(216)'/%3e%3cuse xlink:href='%23b' transform='rotate(288)'/%3e%3c/g%3e%3c/svg%3e\"},2170:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 30 20'%3e%3cdefs%3e%3cpath id='a' d='M0-1 .588.809-.952-.309H.952L-.588.809z' fill='%23ffde00'/%3e%3c/defs%3e%3cpath fill='%23de2910' d='M0 0h30v20H0z'/%3e%3cuse xlink:href='%23a' transform='matrix(3 0 0 3 5 5)'/%3e%3cuse xlink:href='%23a' transform='rotate(23.036 .093 25.536)'/%3e%3cuse xlink:href='%23a' transform='rotate(45.87 1.273 16.18)'/%3e%3cuse xlink:href='%23a' transform='rotate(69.945 .996 12.078)'/%3e%3cuse xlink:href='%23a' transform='rotate(20.66 -19.689 31.932)'/%3e%3c/svg%3e\"},7160:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3e%3cpath fill='%23CE1126' d='M0 0h6v4H0z'/%3e%3cpath fill='%23003893' d='M0 0h6v3H0z'/%3e%3cpath fill='%23FCD116' d='M0 0h6v2H0z'/%3e%3c/svg%3e\"},1516:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1000 600'%3e%3clinearGradient id='a'%3e%3cstop offset='0' stop-color='%23fbd55f'/%3e%3cstop offset='1' stop-color='%23cb8e32'/%3e%3c/linearGradient%3e%3cradialGradient id='f' cx='416.38' cy='814.57' gradientTransform='matrix(1 0 0 1.0057 0 -4.636)' gradientUnits='userSpaceOnUse' r='7.422' xlink:href='%23a'/%3e%3cradialGradient id='e' cx='393.34' cy='837.95' gradientTransform='matrix(1 0 0 .99109 0 7.468)' gradientUnits='userSpaceOnUse' r='7.506' xlink:href='%23a'/%3e%3cradialGradient id='d' cx='416.58' cy='860.97' gradientTransform='matrix(1 0 0 1.0082 0 -7.063)' gradientUnits='userSpaceOnUse' r='7.422' xlink:href='%23a'/%3e%3cradialGradient id='c' cx='439.62' cy='837.58' gradientTransform='matrix(1 0 0 .98778 0 10.237)' gradientUnits='userSpaceOnUse' r='7.506' xlink:href='%23a'/%3e%3cradialGradient id='b' cx='416.51' cy='837.65' gradientTransform='matrix(1 0 0 .98848 0 9.646)' gradientUnits='userSpaceOnUse' r='11.146' xlink:href='%23a'/%3e%3cradialGradient id='g' cx='760.54' cy='474.25' gradientTransform='matrix(1 0 0 .99305 0 3.294)' gradientUnits='userSpaceOnUse' r='12.039' xlink:href='%23a'/%3e%3cradialGradient id='h' cx='731.81' cy='474.25' gradientTransform='matrix(1 0 0 .99305 0 1.88)' gradientUnits='userSpaceOnUse' r='12.039' xlink:href='%23a'/%3e%3cradialGradient id='i' cx='703.46' cy='474.25' gradientTransform='matrix(1 0 0 .99305 0 3.294)' gradientUnits='userSpaceOnUse' r='12.039' xlink:href='%23a'/%3e%3cradialGradient id='j' cx='771.02' cy='499.67' gradientTransform='matrix(1 0 0 .991 0 4.502)' gradientUnits='userSpaceOnUse' r='12.039' xlink:href='%23a'/%3e%3cradialGradient id='k' cx='742.68' cy='499.67' gradientTransform='matrix(1 0 0 .991 0 4.502)' gradientUnits='userSpaceOnUse' r='12.039' xlink:href='%23a'/%3e%3cradialGradient id='l' cx='714.14' cy='499.67' gradientTransform='matrix(1 0 0 .991 0 4.502)' gradientUnits='userSpaceOnUse' r='12.039' xlink:href='%23a'/%3e%3cradialGradient id='m' cx='772.18' cy='526.29' gradientTransform='matrix(1 0 0 .99305 0 3.655)' gradientUnits='userSpaceOnUse' r='12.039' xlink:href='%23a'/%3e%3cradialGradient id='n' cx='745.39' cy='525.29' gradientTransform='matrix(1 0 0 .99305 0 3.648)' gradientUnits='userSpaceOnUse' r='12.039' xlink:href='%23a'/%3e%3cradialGradient id='o' cx='716.86' cy='525.29' gradientTransform='matrix(1 0 0 .99305 0 3.648)' gradientUnits='userSpaceOnUse' r='12.039' xlink:href='%23a'/%3e%3cradialGradient id='p' cx='768.04' cy='552.78' gradientTransform='matrix(1 0 0 .98916 0 5.991)' gradientUnits='userSpaceOnUse' r='11.383' xlink:href='%23a'/%3e%3cradialGradient id='q' cx='741.28' cy='552.78' gradientTransform='matrix(1 0 0 .99234 0 4.237)' gradientUnits='userSpaceOnUse' r='11.347' xlink:href='%23a'/%3e%3cradialGradient id='r' cx='714.26' cy='552.78' gradientTransform='matrix(1 0 0 .989 0 6.08)' gradientUnits='userSpaceOnUse' r='11.385' xlink:href='%23a'/%3e%3cradialGradient id='s' cx='761.91' cy='580.39' gradientTransform='matrix(1 0 0 .99259 0 4.303)' gradientUnits='userSpaceOnUse' r='10.886' xlink:href='%23a'/%3e%3cradialGradient id='t' cx='737.53' cy='577.5' gradientTransform='matrix(1 0 0 .99205 0 4.59)' gradientUnits='userSpaceOnUse' r='10.886' xlink:href='%23a'/%3e%3cradialGradient id='u' cx='711.71' cy='576.36' gradientTransform='matrix(1 0 0 .99259 0 4.272)' gradientUnits='userSpaceOnUse' r='10.886' xlink:href='%23a'/%3e%3cradialGradient id='v' cx='751.9' cy='604.02' gradientTransform='matrix(1 0 0 .98919 0 6.531)' gradientUnits='userSpaceOnUse' r='10.462' xlink:href='%23a'/%3e%3cradialGradient id='w' cx='729.67' cy='600.54' gradientTransform='matrix(1 0 0 .99915 0 .513)' gradientUnits='userSpaceOnUse' r='9.95' xlink:href='%23a'/%3e%3cradialGradient id='x' cx='706.08' cy='597.51' gradientTransform='matrix(1 0 0 .99726 0 1.636)' gradientUnits='userSpaceOnUse' r='8.123' xlink:href='%23a'/%3e%3cradialGradient id='y' cx='741.9' cy='625.39' gradientTransform='matrix(1 0 0 .99915 0 .535)' gradientUnits='userSpaceOnUse' r='9.95' xlink:href='%23a'/%3e%3cradialGradient id='z' cx='720.45' cy='618.78' gradientTransform='matrix(1 0 0 1.0069 0 -4.273)' gradientUnits='userSpaceOnUse' r='8.345' xlink:href='%23a'/%3e%3cradialGradient id='A' cx='700.55' cy='614.7' gradientTransform='matrix(1 0 0 .99645 0 2.18)' gradientUnits='userSpaceOnUse' r='7.03' xlink:href='%23a'/%3e%3cradialGradient id='B' cx='731.65' cy='644.12' gradientTransform='matrix(1 0 0 .99834 0 1.067)' gradientUnits='userSpaceOnUse' r='9.333' xlink:href='%23a'/%3e%3cradialGradient id='C' cx='712.98' cy='635.08' gradientTransform='matrix(1 0 0 1.00597 0 -3.791)' gradientUnits='userSpaceOnUse' r='7.792' xlink:href='%23a'/%3e%3cradialGradient id='D' cx='695.15' cy='628.49' gradientTransform='matrix(1 0 0 .99767 0 1.462)' gradientUnits='userSpaceOnUse' r='6.64' xlink:href='%23a'/%3e%3cradialGradient id='E' cx='718.42' cy='660.82' gradientTransform='matrix(1 0 0 1.00252 0 -1.666)' gradientUnits='userSpaceOnUse' r='8.623' xlink:href='%23a'/%3e%3cradialGradient id='F' cx='702.21' cy='650.42' gradientTransform='matrix(1 0 0 .999 0 .647)' gradientUnits='userSpaceOnUse' r='7.301' xlink:href='%23a'/%3e%3cradialGradient id='G' cx='686.7' cy='642.53' gradientTransform='matrix(1 0 0 1.0069 0 -4.435)' gradientUnits='userSpaceOnUse' r='6.091' xlink:href='%23a'/%3e%3cradialGradient id='H' cx='707.38' cy='674.82' gradientTransform='matrix(1 0 0 .9913 0 5.871)' gradientUnits='userSpaceOnUse' r='7.953' xlink:href='%23a'/%3e%3cradialGradient id='I' cx='693.57' cy='664.01' gradientTransform='matrix(1 0 0 1.01302 0 -8.648)' gradientUnits='userSpaceOnUse' r='6.615' xlink:href='%23a'/%3e%3cradialGradient id='J' cx='680.18' cy='655.53' gradientTransform='matrix(1 0 0 1.00534 0 -3.497)' gradientUnits='userSpaceOnUse' r='5.651' xlink:href='%23a'/%3e%3cradialGradient id='K' cx='694.25' cy='686.15' gradientTransform='matrix(1 0 0 1.00986 0 -6.764)' gradientUnits='userSpaceOnUse' r='6.753' xlink:href='%23a'/%3e%3cradialGradient id='L' cx='682.92' cy='676.43' gradientTransform='matrix(1 0 0 1.00582 0 -3.938)' gradientUnits='userSpaceOnUse' r='5.721' xlink:href='%23a'/%3e%3cradialGradient id='M' cx='671.83' cy='668.65' gradientTransform='matrix(1 0 0 1.02442 0 -16.33)' gradientUnits='userSpaceOnUse' r='4.779' xlink:href='%23a'/%3e%3cradialGradient id='N' cx='682.71' cy='696.23' gradientTransform='matrix(1 0 0 1.00802 0 -5.585)' gradientUnits='userSpaceOnUse' r='6.282' xlink:href='%23a'/%3e%3cradialGradient id='O' cx='673.31' cy='686.5' gradientTransform='matrix(1 0 0 1.01694 0 -11.63)' gradientUnits='userSpaceOnUse' r='5.292' xlink:href='%23a'/%3e%3cradialGradient id='P' cx='663.89' cy='678.28' gradientTransform='matrix(1 0 0 1.00862 0 -5.844)' gradientUnits='userSpaceOnUse' r='4.489' xlink:href='%23a'/%3e%3cradialGradient id='Q' cx='671.6' cy='705.18' gradientTransform='matrix(1 0 0 1.0059 0 -4.166)' gradientUnits='userSpaceOnUse' r='6.282' xlink:href='%23a'/%3e%3cradialGradient id='R' cx='662.2' cy='695.65' gradientTransform='matrix(1 0 0 1.01055 0 -7.342)' gradientUnits='userSpaceOnUse' r='5.292' xlink:href='%23a'/%3e%3cradialGradient id='S' cx='654.58' cy='687.37' gradientTransform='matrix(1 0 0 1.01672 0 -11.49)' gradientUnits='userSpaceOnUse' r='4.49' xlink:href='%23a'/%3e%3cradialGradient id='T' cx='646.03' cy='696.48' gradientTransform='matrix(1 0 0 1.02355 0 -16.403)' gradientUnits='userSpaceOnUse' r='4.136' xlink:href='%23a'/%3e%3cradialGradient id='U' cx='653.02' cy='704.68' gradientTransform='matrix(1 0 0 1.00552 0 -3.892)' gradientUnits='userSpaceOnUse' r='4.489' xlink:href='%23a'/%3e%3cradialGradient id='V' cx='660.59' cy='713.14' gradientTransform='matrix(1 0 0 1.0171 0 -12.2)' gradientUnits='userSpaceOnUse' r='4.846' xlink:href='%23a'/%3e%3cradialGradient id='W' cx='637.01' cy='705.72' gradientTransform='matrix(1 0 0 1.01093 0 -7.714)' gradientUnits='userSpaceOnUse' r='3.872' xlink:href='%23a'/%3e%3cradialGradient id='X' cx='642.62' cy='712.94' gradientTransform='matrix(1 0 0 1.01384 0 -9.865)' gradientUnits='userSpaceOnUse' r='4.135' xlink:href='%23a'/%3e%3cradialGradient id='Y' cx='649.42' cy='720.03' gradientTransform='matrix(1 0 0 1.0073 0 -5.25)' gradientUnits='userSpaceOnUse' r='4.405' xlink:href='%23a'/%3e%3cradialGradient id='Z' cx='628.35' cy='711.82' gradientTransform='matrix(1 0 0 1.02676 0 -19.049)' gradientUnits='userSpaceOnUse' r='3.517' xlink:href='%23a'/%3e%3cradialGradient id='aa' cx='633.37' cy='718.62' gradientTransform='matrix(1 0 0 1.02113 0 -15.183)' gradientUnits='userSpaceOnUse' r='3.871' xlink:href='%23a'/%3e%3cradialGradient id='ab' cx='639.59' cy='726.09' gradientTransform='matrix(1 0 0 1.03175 0 -23.056)' gradientUnits='userSpaceOnUse' r='4.048' xlink:href='%23a'/%3e%3cradialGradient id='ac' cx='621.03' cy='717.31' gradientTransform='matrix(1 0 0 1.01622 0 -11.635)' gradientUnits='userSpaceOnUse' r='3.417' xlink:href='%23a'/%3e%3cradialGradient id='ad' cx='625.6' cy='723.58' gradientTransform='matrix(1 0 0 1.01891 0 -13.684)' gradientUnits='userSpaceOnUse' r='3.634' xlink:href='%23a'/%3e%3cradialGradient id='ae' cx='629.94' cy='730.32' gradientTransform='matrix(1 0 0 1.0334 0 -24.397)' gradientUnits='userSpaceOnUse' r='3.904' xlink:href='%23a'/%3e%3cradialGradient id='af' cx='614.05' cy='721.3' gradientTransform='matrix(1 0 0 1.00982 0 -7.086)' gradientUnits='userSpaceOnUse' r='3.053' xlink:href='%23a'/%3e%3cradialGradient id='ag' cx='617.69' cy='727.85' gradientTransform='matrix(1 0 0 1.0159 0 -11.57)' gradientUnits='userSpaceOnUse' r='3.256' xlink:href='%23a'/%3e%3cradialGradient id='ah' cx='621.24' cy='734.22' gradientTransform='matrix(1 0 0 1.00532 0 -3.906)' gradientUnits='userSpaceOnUse' r='3.473' xlink:href='%23a'/%3e%3cradialGradient id='ai' cx='606.69' cy='724.91' gradientTransform='matrix(1 0 0 1.0049 0 -3.546)' gradientUnits='userSpaceOnUse' r='2.946' xlink:href='%23a'/%3e%3cradialGradient id='aj' cx='609.28' cy='730.85' gradientTransform='matrix(1 0 0 1.01859 0 -13.586)' gradientUnits='userSpaceOnUse' r='3.122' xlink:href='%23a'/%3e%3cradialGradient id='ak' cx='612.94' cy='737.49' gradientTransform='matrix(1 0 0 1.01562 0 -11.523)' gradientUnits='userSpaceOnUse' r='3.378' xlink:href='%23a'/%3e%3cradialGradient id='al' cx='600.03' cy='728.91' gradientTransform='matrix(1 0 0 1.0265 0 -19.31)' gradientUnits='userSpaceOnUse' r='2.506' xlink:href='%23a'/%3e%3cradialGradient id='am' cx='602' cy='734.39' gradientTransform='matrix(1 0 0 .98882 0 8.212)' gradientUnits='userSpaceOnUse' r='2.724' xlink:href='%23a'/%3e%3cradialGradient id='an' cx='604.74' cy='740' gradientTransform='matrix(1 0 0 1.00265 0 -1.96)' gradientUnits='userSpaceOnUse' r='2.914' xlink:href='%23a'/%3e%3cradialGradient id='ao' cx='685.79' cy='453.08' gradientTransform='matrix(1 0 0 .99658 1.768 2.964)' gradientUnits='userSpaceOnUse' r='8.107' xlink:href='%23a'/%3e%3cg stroke-width='1.2'%3e%3cpath d='M0 0h1000v600H0z' fill='%23002b7f'/%3e%3cpath d='M0 100h1000v399.996H0z' fill='%23fff'/%3e%3cpath d='M0 200.004h1000v200.004H0z' fill='%23ce1126'/%3e%3cellipse cx='300.001' cy='300' fill='%23fff' rx='75' ry='87.5'/%3e%3c/g%3e%3cg transform='translate(235.939 234.475) scale(.15382)'%3e%3cg stroke='%23000' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m105.36 349.34 11-20.25-26-7.25-8 18zm622.24 0-11-20.25 26-7.25 8 18z' fill='%23cea849' stroke-width='3'/%3e%3cpath d='m409.48 91.438-40.094 1.157c-25.601 2.418-35.334 12.29-19.437 30.965-41.272 6.469-81.637 15.908-118.94 35.626-10.486-1.74-22.662 4.134-26.156 14.232-2.912 8.158 4.188 16.828 16.812 13.387-8.35 21.987-106.99 19.428-109.5 56.05 7.472-6.368 15.699-11.766 23.906-6.318l-5.656 17.11c-14.363 4.277-24.455 6.644-30.47 22.363-6.212 15.77-15.13 39.832-21.343 51.671-4.08 5.472-5.063 11.284-5.063 14.17 0 6.814 4.869 16.326 16.125 16.326 11.456 0 17.094-7.175 17.094-14.388-.666-5.02-2.644-10.912-14.75-10.228 20.321-4.871 37.886 1.953 49.687 9.477 16.306 12.038 20.387 35.38 10.875 54.58-9.323 18.654-33.013 29.543-68.344 15.764-28.736-11.292-57.644 3.484-67.156 29.151-43.293 117.15 32.408 212.17 118.22 267.58 89.304 57.703 105.21 73.418 129.09 101.62 24.07 28.155 47.37 60.398 82.312 60.398 5.437 0 10.682-1.56 15.344-4.097 21.995 0 23.424 8.208 52.937 8.727v.03c.512 0 1.004-.026 1.5-.03.492.004.962.03 1.47.03v-.03c29.544-.514 30.965-8.727 52.968-8.727 4.662 2.537 9.876 4.097 15.312 4.097 34.943 0 58.243-32.243 82.312-60.398 23.88-28.205 39.821-43.92 129.12-101.62 85.81-55.415 161.51-150.44 118.22-267.58-9.512-25.668-38.45-40.443-67.187-29.15-35.33 13.778-58.989 2.89-68.312-15.765-9.512-19.2-5.431-42.542 10.875-54.58 11.802-7.524 29.335-14.349 49.656-9.477-12.106-.684-14.053 5.209-14.719 10.228 0 7.213 5.638 14.388 17.094 14.388 11.257 0 16.094-9.512 16.094-16.327 0-2.885-.95-8.697-5.031-14.169-6.212-11.839-15.163-35.903-21.375-51.67-6.014-15.72-16.106-18.087-30.47-22.365l-5.624-17.109c8.207-5.448 16.434-.05 23.906 6.318-2.507-36.622-101.18-34.064-109.53-56.05 12.625 3.442 19.756-5.229 16.844-13.387-3.494-10.098-15.67-15.973-26.156-14.232-37.27-19.72-77.67-29.16-118.94-35.63 15.89-18.68 6.16-28.547-19.44-30.964l-40.094-1.157-7-.219-6.969.219z' fill='%23dca842' stroke-width='3.001'/%3e%3cg fill='none' stroke-width='3'%3e%3cpath d='M365.36 93.093c38.572.12 30.016 46.144-5 48.25-43.149 5.035-96.201 3.62-125 15.5m-99 61.247c33.314-9.378 69.202-1.792 91-11.75s26.49-42.896 3-47.25'/%3e%3cpath d='M349.11 123.59c7.68-1.77 15.889-2.044 19.979-5.77 4.09-3.727 5.313-10.405-4.48-11.23m-142.989 80.5c7.161-12.05 4.837-20.454-4.518-14.67M467.6 93.093c-38.572.12-30.016 46.144 5 48.25 43.149 5.035 96.201 3.62 125 15.5m99 61.247c-33.314-9.378-69.202-1.792-91-11.75s-26.49-42.896-3-47.25'/%3e%3cpath d='M483.85 123.59c-7.68-1.77-15.889-2.044-19.979-5.77-4.09-3.727-5.312-10.405 4.48-11.23m142.979 80.5c-7.161-12.05-4.837-20.454 4.518-14.67M219.23 742.45c61.736 43.665 70.667 100.43 134.54 103.15'/%3e%3cpath d='M354.55 854.5c-37.662 8.11-62.318-12.363-92.023-56.818-15.15-22.4-54.94-53.9-122.89-96.38-106.78-66.66-138.42-182.91-103.67-246.66 8.543-15.676 30.48-21.857 43.099-18.346 32.811 8.852 87.947 0 88.141-53.159.194-29.917-24.268-64.879-55.912-64.879-19.224 0-29.511 6.38-34.556 13.154'/%3e%3cpath d='M349.89 831.9c0-2.918 2.52-5.984 6.212-5.984 3.688 0 6.988 3.264 6.988 7.32 0 8.9-5.05 13.697-15.725 11.57-8.737-1.73-12.619-11.176-8.93-20.67 3.687-9.643 16.111-15.626 29.505-9.643 13.4 6.182 11.843 26.654 7.187 38.275-2.719 6.725-8.156 12.363-14.756 16.022M613.72 742.45c-61.73 43.66-70.66 100.43-134.73 103.15'/%3e%3cpath d='M478.41 854.5c37.662 8.11 62.318-12.363 92.018-56.818 14.949-22.401 54.942-53.901 122.89-96.379 106.77-66.659 138.42-182.92 103.67-246.66-8.538-15.676-30.475-21.857-43.094-18.346-32.811 8.852-87.947 0-88.141-53.159-.194-29.917 24.268-64.879 55.911-64.879 19.219 0 29.511 6.38 34.556 13.154'/%3e%3cpath d='M495.88 830.52c0-26.456-44.843-34.764-79.205-34.764-34.168 0-79.205 8.308-79.205 34.764'/%3e%3cpath d='M483.07 831.9c0-2.918-2.52-5.984-6.212-5.984-3.688 0-6.988 3.264-6.988 7.32 0 8.9 5.05 13.697 15.725 11.57 8.737-1.73 12.619-11.176 8.93-20.67-3.687-9.643-16.111-15.626-29.505-9.643-13.4 6.182-11.843 26.654-7.187 38.275 2.719 6.725 8.156 12.363 14.756 16.022'/%3e%3cpath d='M460.16 857.17c-18.056 0-17.474 19.44-43.681 19.44-26.012 0-25.431-19.44-43.487-19.44'/%3e%3c/g%3e%3c/g%3e%3cg stroke='%23000' stroke-width='3'%3e%3cpath d='M416.48 828.14c-12.812 0-12.812 19.035 0 19.035s13.006-19.035 0-19.035' fill='url(%23b)'/%3e%3cpath d='M439.58 831.66c-7.957 0-7.957 11.828 0 11.828 7.962 0 8.156-11.828 0-11.828' fill='url(%23c)'/%3e%3cpath d='M422.5 860.99c0-8.002-11.843-8.002-11.843 0 0 7.952 11.843 7.952 11.843 0' fill='url(%23d)'/%3e%3cpath d='M393.38 843.89c7.957 0 7.957-11.878 0-11.878-7.962 0-8.156 11.878 0 11.878' fill='url(%23e)'/%3e%3cpath d='M410.46 814.57c0 7.952 11.843 7.952 11.843 0s-11.843-7.952-11.843 0' fill='url(%23f)'/%3e%3c/g%3e%3cg id='ap' stroke='%23000'%3e%3cpath d='M154.052 272.66c2.176.121 4.391.67 6.438 1.531 3.615 1.523 6.784 4.129 7.906 7.75.007.023.024.04.031.063 31.912 88.55 14.845 126.29-13.5 183.59-40.958 82.506-11.105 205.42 80.375 259.16 44.974 26.295 79.656 35.262 106.22 41.906 13.281 3.322 24.558 6.07 34.094 10.156 9.2 3.94 18.697 11 24.695 19.174-9.19.76-24.19 3.281-31.554 5.445-10.704-13.603-37.624-26.11-65.484-35.588-27.86-9.478-56.925-16.224-72.688-19.344h-.031c-51.284-14.874-99.1-48.249-135.12-90.656-38.135-44.889-57.625-106.35-50.094-167.97 1.687-14.102 7.292-22.719 15.28-27.406 7.99-4.687 18.097-5.486 28.813-4.78 19.477 1.123 38.56-4.195 56-14.939 22.488-13.845 31.704-38.325 31.344-64.906-.36-26.58-10.401-55.133-26.312-76.406-5.686-7.658-7.962-13.4-7.844-17.844.119-4.444 3.002-7.378 6.531-8.406a13.699 13.699 0 0 1 2.75-.5 16.09 16.09 0 0 1 2.156-.031z' fill='%23825123' stroke-width='3'/%3e%3cpath d='M760.57 462.8c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911' fill='url(%23g)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M731.84 461.38c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911' fill='url(%23h)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M703.5 462.8c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911' fill='url(%23i)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M771.06 488.24c15.337 0 15.337 22.862 0 22.862s-15.531-22.862 0-22.862' fill='url(%23j)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M742.71 488.24c15.337 0 15.337 22.862 0 22.862s-15.531-22.862 0-22.862' fill='url(%23k)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M714.17 488.24c15.337 0 15.337 22.862 0 22.862s-15.531-22.862 0-22.862' fill='url(%23l)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M772.22 514.84c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911' fill='url(%23m)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M745.43 513.84c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911' fill='url(%23n)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M716.89 513.84c15.337 0 15.337 22.911 0 22.911s-15.531-22.911 0-22.911' fill='url(%23o)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M768.14 542.02c14.368 0 14.368 21.52 0 21.52-14.557 0-14.751-21.52 0-21.52' fill='url(%23p)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M741.35 542.02c14.363 0 14.363 21.52 0 21.52-14.562 0-14.562-21.52 0-21.52' fill='url(%23q)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M714.37 542.02c14.368 0 14.368 21.52 0 21.52-14.562 0-14.756-21.52 0-21.52' fill='url(%23r)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M762.43 570.11c13.782.547 12.812 21.172-.97 20.575-13.786-.596-13.01-21.371.97-20.575' fill='url(%23s)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M738.05 567.22c13.782.596 12.812 21.172-.974 20.575-13.782-.547-13.006-21.122.974-20.575' fill='url(%23t)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M712.23 566.07c13.787.596 12.817 21.172-.97 20.575-13.781-.596-13.005-21.371.97-20.575' fill='url(%23u)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M752.61 594.2c13.205.994 11.843 20.575-1.357 19.631-13.2-.795-12.037-20.575 1.357-19.631' fill='url(%23v)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M730.29 591.12c12.619.745 11.262 19.581-1.163 18.836-12.619-.795-11.456-19.631 1.163-18.836' fill='url(%23w)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M706.61 589.93c10.094.596 9.12 15.953-.974 15.158-10.094-.596-9.319-15.705.974-15.158' fill='url(%23x)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M742.52 615.97c12.619.745 11.262 19.581-1.163 18.836-12.619-.795-11.456-19.631 1.163-18.836' fill='url(%23y)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M720.97 610.9c10.487.795 9.319 16.5-.97 15.755-10.485-.795-9.512-16.5.97-15.755' fill='url(%23z)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M700.97 608.22c8.737.348 7.763 13.568-.775 12.971-8.737-.398-7.962-13.568.775-12.971' fill='url(%23A)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M733.59 635.55c11.456 2.535 7.574 19.83-3.881 17.096-11.456-2.535-7.57-19.581 3.881-17.096' fill='url(%23B)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M714.56 628c9.512 2.137 6.212 16.5-3.106 14.164-9.513-2.137-6.406-16.5 3.106-14.164' fill='url(%23C)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M696.51 622.58c7.962 1.74 5.243 13.767-2.719 11.828-7.956-1.74-5.238-13.767 2.719-11.828' fill='url(%23D)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M721.16 653.24c10.099 3.479 4.662 18.836-5.437 15.158-10.094-3.529-4.85-18.836 5.437-15.158' fill='url(%23E)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M704.47 644.1c8.543 2.932 3.881 15.755-4.468 12.624-8.538-2.883-4.075-15.705 4.468-12.624' fill='url(%23F)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M688.55 637.34c6.988 2.286 3.3 12.971-3.688 10.437-6.992-2.485-3.3-13.17 3.688-10.437' fill='url(%23G)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M710.49 668.2c8.93 4.075 2.719 17.444-6.212 13.17-8.931-3.877-2.719-17.246 6.212-13.17' fill='url(%23H)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M696.12 658.46c7.38 3.33 2.137 14.562-5.045 11.083-7.38-3.28-2.33-14.562 5.045-11.083' fill='url(%23I)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M682.34 650.91c6.212 2.932 1.744 12.027-4.274 9.294-6.212-2.883-1.938-12.226 4.274-9.294' fill='url(%23J)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M697.09 680.63c7.38 3.678 1.556 14.91-5.626 11.033-7.38-3.678-1.75-14.91 5.626-11.033' fill='url(%23K)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M685.25 671.88c6.212 3.081 1.357 12.425-4.662 9.095-6.212-3.081-1.357-12.425 4.662-9.095' fill='url(%23L)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M673.79 664.87c5.05 2.733.97 10.288-3.881 7.604-5.05-2.535-1.168-10.486 3.881-7.604' fill='url(%23M)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M685.83 691.46c6.406 4.075 0 13.816-6.212 9.542-6.407-4.075-.194-13.816 6.212-9.542' fill='url(%23N)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M675.93 682.57c5.238 3.479 0 11.431-5.243 7.952-5.243-3.479 0-11.68 5.243-7.952' fill='url(%23O)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M666.03 674.96c4.468 2.932 0 9.542-4.27 6.61-4.462-2.882 0-9.492 4.27-6.61' fill='url(%23P)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M674.73 700.43c6.406 4.274 0 13.767-6.212 9.492-6.407-4.075-.194-13.767 6.212-9.492' fill='url(%23Q)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M664.83 691.66c5.238 3.529 0 11.48-5.243 7.952-5.243-3.479 0-11.431 5.243-7.952' fill='url(%23R)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M656.71 684.11c4.463 2.932 0 9.492-4.274 6.61-4.463-2.932 0-9.741 4.274-6.61' fill='url(%23S)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M647.98 693.4c4.075 2.535 0 8.747-3.886 6.212-4.076-2.683 0-8.896 3.886-6.212' fill='url(%23T)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M655.16 701.4c4.463 2.883 0 9.492-4.27 6.56-4.467-2.882 0-9.492 4.27-6.56' fill='url(%23U)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M662.92 709.55c4.85 3.28 0 10.486-4.662 7.157-4.855-3.082 0-10.487 4.662-7.157' fill='url(%23V)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M638.85 702.94c3.688 2.535 0 7.952-3.688 5.616-3.692-2.535 0-8.15 3.688-5.616' fill='url(%23W)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M644.57 709.92c4.075 2.733 0 8.747-3.881 6.014-4.08-2.684 0-8.698 3.881-6.014' fill='url(%23X)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M651.55 716.84c4.274 2.684 0 9.294-4.27 6.411-4.273-2.932 0-9.343 4.27-6.411' fill='url(%23Y)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M630 709.28c3.3 2.137 0 7.405-3.3 5.07-3.3-2.138 0-7.356 3.3-5.07' fill='url(%23Z)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M635.21 715.78c3.688 2.535 0 8.15-3.688 5.666-3.687-2.535 0-8.15 3.688-5.666' fill='url(%23aa)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M641.53 723.19c3.881 2.535 0 8.747-3.881 5.815-3.882-2.535 0-8.747 3.881-5.815' fill='url(%23ab)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M622.74 714.97c3.106 2.336-.393 7.008-3.499 4.672-2.912-2.336.393-7.008 3.499-4.672' fill='url(%23ac)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M627.45 721.07c3.3 2.535-.388 7.554-3.688 5.02-3.3-2.485.388-7.555 3.688-5.02' fill='url(%23ad)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M631.97 727.58c3.494 2.733-.388 8.35-4.075 5.467-3.494-2.733.387-8.35 4.075-5.467' fill='url(%23ae)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M615.7 719.44c2.525 2.137-.775 6.063-3.3 3.727-2.52-2.335.78-6.013 3.3-3.727' fill='url(%23af)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M619.58 725.92c2.525 2.286-.97 6.56-3.688 3.877-2.718-2.336.97-6.61 3.688-3.877' fill='url(%23ag)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M623.18 732.05c2.912 2.733-.97 7.008-3.881 4.274-2.913-2.485.969-6.958 3.881-4.274' fill='url(%23ah)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M608.34 723.22c2.33 2.137-.97 5.616-3.3 3.479-2.33-2.336.97-5.815 3.3-3.479' fill='url(%23ai)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M611.02 729c2.525 2.535-.97 6.212-3.494 3.678-2.524-2.336.97-6.213 3.494-3.678' fill='url(%23aj)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M614.9 735.44c2.719 2.733-1.163 6.809-3.881 4.075-2.719-2.534.974-6.808 3.881-4.075' fill='url(%23ak)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M601.5 727.58c1.744 1.938-1.168 4.672-2.912 2.733-1.75-1.938.969-4.87 2.912-2.733' fill='url(%23al)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M603.61 732.94c1.943 2.137-1.163 5.02-3.3 2.883-1.744-2.137 1.168-5.02 3.3-2.883' fill='url(%23am)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M606.49 738.49c2.132 2.336-1.362 5.417-3.499 3.131-2.132-2.336 1.362-5.666 3.499-3.131' fill='url(%23an)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3cpath d='M687.6 446.92c10.094 0 10.094 15.158 0 15.158s-10.288-15.158 0-15.158' fill='url(%23ao)' transform='matrix(-1 0 0 1 833.412 0)'/%3e%3c/g%3e%3cuse height='500' transform='matrix(-1 0 0 1 832.957 0)' width='833.333' xlink:href='%23ap'/%3e%3cpath d='M182.15 433.08c11.262-37.473 16.893-85.632.974-148.3 70.081-45.226 119.39-86.576 233.55-86.576 113.96 0 167.73 31.41 233.55 86.576-15.725 62.671-10.094 110.63.97 148.3h-469.42' fill='%2389c5e3' stroke='%23000'/%3e%3cpath d='m235.5 341.84-5.22 56.66c-.051.007-.105-.008-.156 0l-20.12-56.16 9.687 59.312c-.072.033-.147.06-.219.094l-22.47-29.65 13.5 35.25-16.5-11.5 10.031 18.812c-.09.129-.192.245-.28.375l-11.75-1.438 7.28 10.22a38.86 38.86 0 0 0-2.28 13.17c0 .213.06.411.063.624h77.625c.003-.213.062-.41.062-.625 0-4.637-.791-9.095-2.28-13.219l15.29-14.67-19.25 6.72c-.156-.24-.309-.483-.47-.719 2.958-3.633 31.908-39.25 30.72-39.25-1.229 0-36.6 30.34-37.844 31.406l-.188-.156 27.781-61.5-38.438 55.188c-.126-.05-.248-.108-.375-.156l11.32-58.28-20.25 56-5.25-56.5z' fill='%23fcdd09'/%3e%3cpath d='M181.82 433.08c-6.212 20.774-13.975 38.467-20.769 53.576-17.668 39.809-21.356 132.4 43.874 197.85 96.873 96.863 170.65 57.85 207.73 110.63h7.57c37.08-52.78 110.85-13.767 207.73-110.63 65.23-65.454 61.735-158.04 43.873-197.85-6.6-14.959-14.562-32.801-20.774-53.576h-469.42' fill='%230f47af' stroke='%23000'/%3e%3cpath d='M323.62 343.97c-1.122-5.432-13.795-4.388-12.875-13.125-8.429-1.344-6.858-16.406 8.875-15.375 1.657-2.99 20.674-9.835 18.375-.375 9.544-8.316 16.457-.702 11.125 3 3.682 3.687 5.54 12.114-5.75 11.375 4.32 7.685-5.712 7.399-12.375 5.25.164 2.911-.332 5.217-4.125 4.5-2.394 1.618-.582 3.704-.25 5.625zm174.6 5.93c.107-6.855-12.811-4.763-12.33-12.57-7.012-1.075-5.993-15.596 8.5-14.724-.808-4.194 19.513-9.577 17.596-.36 7.079-7.505 14.066-.489 9.78 2.874 3.526 3.53 7.806 9.601-4.632 10.894 5.013 4.86-5.47 7.085-11.851 5.028.157 2.788-1.693 3.746-5.326 3.06-2.292 1.55.818 4.796 1.136 6.636l-2.873-.838zm100.68 23.69c1.202-5.19-10.656-4.731-10.349-10.643-5.387-.814-4.605-11.809 6.53-11.149-.62-3.176 13.868-8.502 12.896-.772 5.439-5.683 11.432.13 8.139 2.675 2.71 2.674 5.998 7.27-3.559 8.249 3.852 3.68-4.203 5.365-9.105 3.807.12 2.11-.55 2.461-3.342 1.942-1.762 1.173 2.128 4.007 2.372 5.4l-3.582.49z' fill='%23fff'/%3e%3cpath d='M-308.88 472.49c2.912-15.158 15.337-29.124 16.699-40.952 1.163-10.685 3.3-15.158 9.512-26.39 6.213-11.282 8.733-16.5 10.094-24.303 1.939-10.089 9.513-12.226 13.006-1.938 3.3 10.288 9.9 36.13 13.394 42.145 3.3 6.013 6.8 14.363 6.213 18.438-.582 4.075 4.468 5.616 7.38 8.548 2.913 2.733 3.3 12.226 11.843 20.377 8.538 8.15 18.051 13.965 26.012 18.04 7.182 16.153 12.037 40.605 10.87 68.536h-533.29c-.195-7.356 0-14.562.387-21.52 47.368-12.226 65.036-43.487 85.03-41.35 10.874-15.158 24.074-31.46 33.199-39.81 10.869-9.89 32.225-49.3 37.662-73.405 5.437-23.856 13.394-36.678 19.412-35.336 6.018 1.392 8.543 2.535 15.725 24.104 9.905 29.67 16.699 33.199 24.268 54.52 6.6 18.488 20.387 51.637 41.548 68.933 13.2-9.89 28.343-20.973 33.194-28.726 4.08-6.809 10.293-17.295 17.668-22.315 3.3-9.89 7.569-27.583 11.068-31.857 3.3-3.877 4.657-7.753 5.044-14.562.194-6.809 5.437-21.172 12.62-33.2 7.186-11.827 16.698-15.704 20.967 0 4.076 15.756 13.588 48.756 22.52 69.33 3.687 8.55 10.486 25.397 25.43 43.09l1.614 1.906c.303-.53.607-.926.911-2.304z' fill='%23509164' stroke='%23000' stroke-width='.999' transform='matrix(1.00186 0 0 1 867.911 0)'/%3e%3cg fill='%23034418'%3e%3cpath d='M497.202 528.38c-9.919-9.542-25.673-7.405-33.645-14.959-7.782-7.356-20.23-2.336-47.073-15.904-3.307-1.74-6.613-3.876-9.919-6.411-21.201-17.295-35.008-50.494-41.62-68.933-7.394-21.172-14.395-24.651-24.314-54.57-5.252-15.904-8.17-20.774-11.67-22.514 9.142 9.94 4.282 25.446 11.67 42.145 2.918 6.61-1.946 6.61-3.5 4.473-1.36-2.137-5.835-3.131-7.976-2.932 3.893 3.33 4.476 11.679 8.364 20.377 3.695 8.747-2.917 7.802 5.06 20.228 2.135 3.478 2.917 8.697-.195 10.834-3.306 1.938-5.641-6.014-10.506-3.28 1.364 3.13 7 8.746 10.7 12.026 3.694 3.33.194 5.07-2.724 3.529-3.112-1.59-7.2-3.131-9.336-4.87 0 2.534 3.112 5.417 7.389 9.293 4.476 3.728 1.558 6.411-8.753 6.411 1.558 2.336.976 8.151-3.695 8.946 6.418.398 11.283 12.226 19.255 13.021 7.782.547 8.56 6.014.976 7.356-7.588 1.342-22.954-10.884-30.537-18.836-1.947 2.733-6.03 3.876-8.948 2.336-.194 3.677.971 12.624 4.472 18.438-3.695-1.541-8.554-6.412-13.42-12.425-4.665-5.616-7.777 2.733-3.694 7.753 4.083 5.069 6.807 9.144.194 13.02-6.418 3.678-10.501 2.336-15.365-4.472-6.807 5.665-9.53 6.013-14.784 5.069 0 3.28-5.641 11.083-8.165 16.898-5.642 11.232 250.125 34.541 242.931 7.356'/%3e%3cpath d='M681.164 530.1c-67.298-5.864-104.444-31.857-125.454-56.707-14.976-17.494-21.783-34.541-25.478-43.089-8.947-20.575-18.477-53.576-22.56-69.33-1.365-5.218-3.307-8.35-5.642-9.492-3.5-1.74-1.753 4.274.777 7.355 2.723 2.932 2.529 5.666-.971 3.529-3.5-1.939-5.253 1.938-1.947 6.759 3.112 4.671 7.976 10.139 8.947 15.357.976 5.069 1.365 9.492 3.889 12.027 2.335 2.534-6.418 3.13-10.113-2.883-.194 3.877.976 9.493 3.5 8.896 2.336-.397 3.113 1.74-.194 7.604-3.306 5.616-2.917 7.555-1.747 10.09 1.747 3.876 6.224-11.48 8.947-2.734 1.36 4.075 3.695 9.144 5.83 12.425 2.142 3.13 1.948 5.07-1.164 5.07s-5.836-7.804-6.224-1.194c-.194 6.412 4.864 8.549 10.113 8.151 5.058-.199 5.835 1.74 5.058 4.473-.582 2.733 1.554 5.417 4.472 4.87 2.723-.795 7.005 1.74 9.336 8.35 2.335 6.61-1.554 9.492-7.195 4.82-5.642-4.82-13.808-9.094-14.59-12.623-.582-3.082-2.917 1.391-.388 5.665 2.335 4.274 3.695 6.213 6.807 7.952 3.112 1.54-.194 7.952-5.442 3.877-5.06-3.877-7.394-2.933-8.948 1.54-2.53 7.207-10.113 5.467-7.782 9.344 2.335 3.876 1.364 10.089-2.137 11.63-3.699 1.54-7.976-.746-7.588-7.555-.97 1.342-4.665 1.939-7.583 1.144-.388 9.542-3.112 12.822-8.948 10.288-.194 2.137-.388 5.814-3.306 8.548 6.418-.945 7.778 3.479 8.36 6.212.394 2.734 1.365 2.336 5.06 2.734 3.5.198 7.976 4.82 1.363 3.677-6.617-.944-16.924 1.342-22.953-3.081 6.224 5.616 23.924 5.815 31.314 12.97 53.88 22.167 148.797 29.92 186.326 19.632.195-4.473-.388-14.761-.776-18.041'/%3e%3cpath d='M603.028 372.77c1.554.745 3.112 2.883 4.472 6.212 3.306 10.288 9.918 36.082 13.424 42.095 3.306 6.014 6.806 14.363 6.224 18.438-.588 4.076 4.471 5.666 7.389 8.549 2.918 2.733 3.306 12.226 11.865 20.377 8.559 8.15 18.09 14.015 26.06 18.09 4.865 10.834 8.56 25.396 10.113 42.493-22.949-1.74-51.733-8.549-66.128-14.96.583-2.136.583-4.82-.194-8.895-.971-4.076-.194-7.207 4.083-11.083 4.282-3.877 2.918-10.487.587-14.164-2.335-3.48-2.14-5.616-.199-7.753 1.753-1.939 1.753-5.467-2.33-9.344-4.282-3.876-1.364-7.952.97-11.43 2.336-3.53 5.836-9.543 3.307-17.296-2.53-7.554-6.418 1.74-9.53-1.143-1.947-1.988-3.112-5.666-.971-8.747 2.136-2.932.777-8.548-1.753-12.822 5.642-1.54-3.888-18.041-5.447-25.048-1.553-7.008 1.753-10.486-1.942-13.22'/%3e%3c/g%3e%3cpath d='M358.313 435.81c0 3.678-.97 8.946-1.946 10.685 2.335 3.678 5.447 11.232 5.058 13.568 3.112-2.882 9.142-.596 10.502 7.405 1.364 8.15 2.724 15.705 1.947 20.178 2.723 2.336 8.559 6.411 9.53 10.884.97 4.274 3.889 3.678 6.806 3.28 9.142-1.342 8.365 9.692 17.896 8.15 13.419-1.937 5.059 8.748 18.477 8.35 7.778-.397 18.477 1.143 23.925 8.747 6.024-8.15 11.278-5.069 16.725-2.932 5.447 1.938 12.253 1.392 6.224-2.882-6.224-4.473-18.478-5.07-23.925-3.728-5.447 1.392-13.613.398-19.255-4.622-5.447-5.07-14.976-9.343-20.812-9.542-5.836-.199-7.195-.547-11.666-7.157-4.282-6.41-11.283-5.665-14.784-6.013-3.306-.2-5.835-4.473-1.946-8.548 5.641-6.014-2.336-6.81.582-10.487 2.918-3.678 1.365-8.549-6.418-9.145-7.777-.596-4.86-3.082-3.694-8.548 2.723-12.971-14.784-10.834-13.42-17.047m305.562 69.284c.777-7.952-5.253-11.232-6.612-17.295-1.165-6.014-10.7-6.212-13.225-4.423.971 1.74 0 4.82-1.17 6.56-1.165 1.59-1.165 2.535 1.17 3.33 2.525.596 4.666 1.143 4.86 3.28.194 1.938 1.364.199 2.335-2.336.777-2.485 7.584 3.131 8.365 8.15.583 5.07 3.306 8.549 4.083 2.535m-31.314-8.351c1.165 2.932 5.447 7.008 7.777 7.008 2.335 0 5.836 1.74 6.418 4.472.394 2.336 2.335 5.616 4.865 6.014 2.53.398 1.165 2.336-1.947 2.137-3.306-.199-8.36-2.137-8.748-4.473 1.165 4.87-.394 7.008-3.506 3.48-2.917-3.28-4.47-7.953-8.36-8.549 2.918-.547 3.306-1.342 1.942-4.274-1.165-2.883-.194-10.636 1.559-5.815' fill='%23509164'/%3e%3cpath d='M-716.69 545.89c6.382-3.131 16.23-1.938 19.904 1.342 1.93-3.678 5.025-6.411 10.828-5.417 4.644-5.07 8.511-7.604 11.22-5.07 2.708-5.02 11.799-6.212 14.894-3.08 3.288-5.07 9.863-7.406 14.309-4.673 5.803-7.604 16.052-10.288 22.241-6.41 5.417-4.076 11.606-3.28 14.314-.597 2.708 2.535 8.511-2.684 10.833 2.137 4.06-.944 11.794-1.143 13.344 3.13.965-2.335 4.446-3.726 6.382-1.937 0-8.946 6.382-15.755 15.28-13.618 4.253-6.412 11.606-9.095 15.087-6.81 3.674-3.677 11.215-1.142 14.502 3.33 7.16-.198 10.64 3.082 14.314 9.493 3.674 6.411 14.314 10.288 21.083 7.405 6.769-2.534 12.958-3.33 15.28-.198 4.06-3.678 8.511-2.734 11.215-.2 4.644 4.076 9.09-3.13 11.8-.397 4.257 4.473 8.124-4.075 15.665.398 7.353 4.473 21.855 11.232 33.075 11.232s20.117-13.767 27.272-4.076c7.155-4.82 17.988-7.156 25.53-3.08 4.45-4.076 14.7-5.418 18.76-1.542 4.06-6.212 11.798-9.94 18.373-7.802 3.674-6.362 18.374-7.356 22.821 1.59 3.679 0 9.477 3.28 9.477 7.356 3.679 0 9.482 2.335 9.482 6.61 4.06-.994 9.085 1.54 9.863 6.41 8.12-.596 14.7 2.734 18.374 9.493 2.708-2.336 1.158-8.35 7.347-9.492 6.19-.994 8.126.944 9.863 3.081 6.769-5.02 16.25-4.423 24.177 2.733 5.803-2.335 11.22-1.341 12.958 1.541 2.516-2.336 6.576-2.882 10.64-2.882.194 13.17-.97 27.533-3.871 42.294h-523.75c-2.709-14.363-3.867-28.726-3.674-41.946' fill='%23078930' stroke='%23000' stroke-width='.999' transform='matrix(1.00186 0 0 1 867.911 0)'/%3e%3cpath d='m416.28 245.04-5.243 16.898H393.18l14.557 10.486-5.437 16.898 14.174-10.487 14.368 10.487-5.438-16.898 14.363-10.089h-17.663l-5.437-16.898m-67.947 5.223-2.525 17.494-17.469 2.733 15.92 7.952-2.72 17.444 12.426-12.624 15.725 8.002-8.156-15.755 12.62-12.425-17.47 2.733-8.155-15.755M282.72 267.16l.194 17.693-16.893 5.616 17.087 5.268v17.643l10.094-14.562 16.893 5.268-10.68-14.214 10.293-14.363-16.893 5.666-10.675-14.214M220.4 294.14l3.106 17.494-15.725 8.35 17.663 2.335 2.913 17.444 7.574-15.904 17.469 2.336-12.812-12.425 7.768-15.755-15.725 8.35-12.812-12.226M484.23 250.66l2.525 17.494 17.469 2.733-15.92 7.952 2.72 17.444-12.426-12.624-15.725 8.002 8.15-15.755L458.6 263.48l17.474 2.733 8.155-15.755m66.011 16.702-.194 17.693 16.888 5.616-17.082 5.268v17.643l-10.094-14.562-16.893 5.268 10.68-14.214-10.293-14.363 16.7 5.666 10.674-14.214m61.934 27.179-3.106 17.494 15.725 8.35-17.668 2.335-2.908 17.444-7.574-15.904-17.474 2.336 12.817-12.425-7.768-15.755 15.725 8.35 12.812-12.226' fill='%23fff'/%3e%3cpath d='m387.186 672.52 1.938-129.86c0-6.212 1.168-7.206 1.362-.398l.388 131.65' fill='%23865800'/%3e%3cpath d='m387.186 672.52 1.938-129.86c0-6.212 1.168-7.206 1.362-.398l.388 131.65' fill='%23704d25' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M390.676 542.46c4.463-3.877 14.75 4.87 21.157 1.193-3.882 12.574-19.412 2.684-21.157 7.355v-8.548' fill='%23fff'/%3e%3cpath d='M390.676 542.46c4.463-3.877 14.75 4.87 21.157 1.193-3.882 12.574-19.412 2.684-21.157 7.355v-8.548' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='m431.056 672.72 1.938-129.66c0-6.212 1.168-7.405 1.362-.199l.388 131.4' fill='%23865800'/%3e%3cpath d='m431.056 672.72 1.938-129.66c0-6.212 1.168-7.405 1.362-.199l.388 131.4' fill='%23704d25' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M434.746 542.86c4.463-3.877 14.756 4.87 21.162 1.143-4.08 12.624-19.417 2.733-21.162 7.405v-8.548' fill='%23fff'/%3e%3cpath d='M434.746 542.86c4.463-3.877 14.756 4.87 21.162 1.143-4.08 12.624-19.417 2.733-21.162 7.405v-8.548' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='m472.596 679.93 1.943-129.91c0-6.212 1.163-7.157 1.357-.15l.388 131.4' fill='%23865800'/%3e%3cpath d='m472.596 679.93 1.943-129.91c0-6.212 1.163-7.157 1.357-.15l.388 131.4' fill='%23704d25' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M476.096 550.02c4.468-3.877 14.756 4.87 21.162.994-4.075 12.624-19.412 2.733-21.162 7.355v-8.498' fill='%23fff'/%3e%3cpath d='M476.096 550.02c4.468-3.877 14.756 4.87 21.162.994-4.075 12.624-19.412 2.733-21.162 7.355v-8.498.149z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M487.546 694.84c-4.468 0-10.094-2.087-11.65-5.616-3.3 3.131-17.081 4.87-22.518.199-3.688 3.13-15.143 5.268-20.968 1.54-4.657 4.076-18.443 3.728-25.625-.546-2.912 3.081-11.262 5.417-15.725 5.815-6.406-9.145-23.687-23.706-34.556-29.124-12.231-6.014-36.693-17.693-49.7-23.31-7.573-3.28-14.561-8.945-.193-2.733 15.337 6.61 39.993 16.5 56.687 23.905 23.88 10.487 119.2 8.946 134.92 7.555 8.156-.547 19.025-6.76 26.6-11.431 5.824-3.53 6.018-1.392.387 1.54-6.213 3.28-13.006 5.815-17.862 12.624-6.6 9.145-15.725 13.22-19.22 19.234' fill='%23704d25'/%3e%3cpath d='M487.546 694.84c-4.468 0-10.094-2.087-11.65-5.616-3.3 3.131-17.081 4.87-22.518.199-3.688 3.13-15.143 5.268-20.968 1.54-4.657 4.076-18.443 3.728-25.625-.546-2.912 3.081-11.262 5.417-15.725 5.815-6.406-9.145-23.687-23.706-34.556-29.124-12.231-6.014-36.693-17.693-49.7-23.31-7.573-3.28-14.561-8.945-.193-2.733 15.337 6.61 39.993 16.5 56.687 23.905 23.88 10.487 119.2 8.946 134.92 7.555 8.156-.547 19.025-6.76 26.6-11.431 5.824-3.53 6.018-1.392.387 1.54-6.213 3.28-13.006 5.815-17.862 12.624-6.6 9.145-15.725 13.22-19.22 19.234l-.58.348z' fill='%23704d25' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='m496.476 572.18-30.868-3.33c-5.437 9.145-6.212 20.575-3.3 28.577 9.9-9.343 27.762-4.473 36.693.348-2.912-8.15-7.38-19.184-2.331-25.396' fill='%23fff'/%3e%3cpath d='m496.476 572.18-30.868-3.33c-5.437 9.145-6.212 20.575-3.3 28.577 9.9-9.343 27.762-4.473 36.693.348-2.912-8.15-7.38-19.184-2.331-25.396l-.194-.199z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M498.806 597.58c-9.12.199-30.863-.348-37.662-.348-7.375 9.493-3.3 23.856-1.55 29.322 8.15-13.02 33.973-6.063 43.873 3.28-5.05-9.542-8.93-17.693-4.463-32.404' fill='%23fff'/%3e%3cpath d='M498.806 597.58c-9.12.199-30.863-.348-37.662-.348-7.375 9.493-3.3 23.856-1.55 29.322 8.15-13.02 33.973-6.063 43.873 3.28-5.05-9.542-8.93-17.693-4.463-32.404l-.198.15z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M503.276 630.23c-8.931-1.59-37.662-3.529-43.487-5.07-4.662 9.692-8.543 22.316-10.482 34.393 13.975-15.357 46.399-4.076 53.193 10.834-6.794-12.822-13.593-32.205.97-40.157' fill='%23fff'/%3e%3cpath d='M503.276 630.23c-8.931-1.59-37.662-3.529-43.487-5.07-4.662 9.692-8.543 22.316-10.482 34.393 13.975-15.357 46.399-4.076 53.193 10.834-6.794-12.822-13.593-32.205.97-40.157h-.195z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='m464.836 562.84-40.773-5.417c-5.82 6.809-10.094 18.836-9.512 32.8 8.543-8.15 39.799-4.87 47.76 6.81-2.718-12.624-6.212-28.527 2.719-34.392' fill='%23fff'/%3e%3cpath d='m464.836 562.84-40.773-5.417c-5.82 6.809-10.094 18.836-9.512 32.8 8.543-8.15 39.799-4.87 47.76 6.81-2.718-12.624-6.212-28.527 2.719-34.392l-.194.198z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='m461.726 598.18-45.236-6.014c-7.182 9.145-6.794 22.116-5.05 35.932 10.294-8.548 43.875-3.876 51.837 7.555-4.851-16.7-8.931-26.59-1.357-37.473' fill='%23fff'/%3e%3cpath d='m461.726 598.18-45.236-6.014c-7.182 9.145-6.794 22.116-5.05 35.932 10.294-8.548 43.875-3.876 51.837 7.555-4.851-16.7-8.931-26.59-1.357-37.473h-.194z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='m463.086 635.65-46.011-4.672c-7.182 8.946-12.037 18.09-10.482 31.46 7.181-11.828 37.662-3.28 50.668 9.89-7.763-10.288-8.543-25.048 5.825-36.678' fill='%23fff'/%3e%3cpath d='m463.086 635.65-46.011-4.672c-7.182 8.946-12.037 18.09-10.482 31.46 7.181-11.828 37.662-3.28 50.668 9.89-7.763-10.288-8.543-25.048 5.825-36.678z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M388.146 562.84c-5.05 3.877-12.812 17.295-13.98 20.973 8.543-3.479 26.599-4.473 37.86 3.877-3.3-6.412-4.467-17.644-1.555-22.316-4.463-1.938-16.306-2.932-22.13-2.335' fill='%23fff'/%3e%3cpath d='M388.146 562.84c-5.05 3.877-12.812 17.295-13.98 20.973 8.543-3.479 26.599-4.473 37.86 3.877-3.3-6.412-4.467-17.644-1.555-22.316-4.463-1.938-16.306-2.932-22.13-2.335l-.194-.2z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M369.316 590.02c11.843-.199 36.106 2.733 46.593 5.616-6.212 9.343-5.437 25.247-2.912 35.137-16.112-15.904-42.711-15.506-58.436-10.834 2.912-7.206 10.094-22.166 14.562-30.118' fill='%23fff'/%3e%3cpath d='M369.316 590.02c11.843-.199 36.106 2.733 46.593 5.616-6.212 9.343-5.437 25.247-2.912 35.137-16.112-15.904-42.711-15.506-58.436-10.834 2.912-7.206 10.094-22.166 14.562-30.118l.193.199z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M416.296 634.31c-11.456.398-40.768-4.672-54.167-11.282-4.657 12.624-6.794 33.597-7.182 41.151 13.006-17.444 44.848-7.753 54.942 10.089-.969-9.493-4.467-32.801 6.407-40.157' fill='%23fff'/%3e%3cpath d='M416.296 634.31c-11.456.398-40.768-4.672-54.167-11.282-4.657 12.624-6.794 33.597-7.182 41.151 13.006-17.444 44.848-7.753 54.942 10.089-.969-9.493-4.467-32.801 6.407-40.157v.199z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M388.146 562.84c-32.23 19.432-56.687 58.645-65.812 85.83 9.125-.199 20.575 2.733 24.656 10.884 9.512-39.063 22.906-75.145 41.156-96.913' fill='%23fff'/%3e%3cpath d='M388.146 562.84c-32.23 19.432-56.687 58.645-65.812 85.83 9.125-.199 20.575 2.733 24.656 10.884 9.512-39.063 22.906-75.145 41.156-96.913v.199zm.97-18.84c-26.4 26.589-63.868 74.002-77.461 99.796m184.821-71.616c7.181 34.938 8.93 81.904 6.019 99.199' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M534.686 635.28c-8.185 4.083-23.7-7.338-31.024-2.152v-4.524c7.11-4.966 22.624 6.455 31.024 2.152v4.745' fill='%2300009e'/%3e%3cpath d='M534.686 635.28c-8.185 4.083-23.7-7.338-31.024-2.152v-4.524c7.11-4.966 22.624 6.455 31.024 2.152v4.745-.22z' fill='%23002b7f'/%3e%3cpath d='M534.686 640.02c-8.185 4.083-23.7-7.338-31.024-2.373v-4.745c7.11-4.966 22.624 6.456 31.024 2.152v4.745' fill='%23fff'/%3e%3cpath d='M534.686 640.02c-8.185 4.083-23.7-7.338-31.024-2.373v-4.745c7.11-4.966 22.624 6.456 31.024 2.152v4.745z' fill='none'/%3e%3cpath d='M534.686 644.77c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.966 22.624 6.456 31.024 2.373v4.524' fill='%23ff0016'/%3e%3cpath d='M534.686 644.77c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.966 22.624 6.456 31.024 2.373v4.524' fill='%23ce1126'/%3e%3cpath d='M534.686 649.51c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.745 22.624 6.456 31.024 2.152z' fill='%23fff'/%3e%3cpath d='M534.686 649.51c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.745 22.624 6.456 31.024 2.152z' fill='none'/%3e%3cpath d='M534.686 654.04c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.966 22.624 6.456 31.024 2.152v4.524' fill='%2300009e'/%3e%3cpath d='M534.686 654.04c-8.185 4.304-23.7-7.118-31.024-2.152v-4.745c7.11-4.966 22.624 6.456 31.024 2.152v4.744z' fill='%23002b7f'/%3e%3cg stroke-width='1.832'%3e%3cpath d='m404.084 440.136.688-46.081c0-2.205.414-2.558.483-.142l.137 46.717' fill='%23865800'/%3e%3cpath d='m404.084 440.136.688-46.081c0-2.205.414-2.558.483-.142l.137 46.717' fill='%23704d25' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='M405.322 393.984c1.584-1.376 5.235 1.728 7.508.423-1.377 4.462-6.888.952-7.508 2.61v-3.033' fill='%23fff'/%3e%3cpath d='M405.322 393.984c1.584-1.376 5.235 1.728 7.508.423-1.377 4.462-6.888.952-7.508 2.61v-3.033' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='m419.651 440.207.688-46.01c0-2.205.415-2.628.483-.071l.138 46.628' fill='%23865800'/%3e%3cpath d='m419.651 440.207.688-46.01c0-2.205.415-2.628.483-.071l.138 46.628' fill='%23704d25' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='M420.96 394.126c1.584-1.376 5.237 1.728 7.51.405-1.448 4.48-6.89.97-7.51 2.628v-3.033' fill='%23fff'/%3e%3cpath d='M420.96 394.126c1.584-1.376 5.237 1.728 7.51.405-1.448 4.48-6.89.97-7.51 2.628v-3.033' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='m434.392 442.765.69-46.099c0-2.204.412-2.54.481-.053l.138 46.628' fill='%23865800'/%3e%3cpath d='m434.392 442.765.69-46.099c0-2.204.412-2.54.481-.053l.138 46.628' fill='%23704d25' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='M435.634 396.666c1.585-1.375 5.236 1.729 7.51.353-1.447 4.48-6.889.97-7.51 2.61v-3.016' fill='%23fff'/%3e%3cpath d='M435.634 396.666c1.585-1.375 5.236 1.729 7.51.353-1.447 4.48-6.889.97-7.51 2.61v-3.016.053z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='M439.697 448.056c-1.585 0-3.582-.74-4.134-1.993-1.17 1.112-6.061 1.729-7.99.071-1.31 1.111-5.374 1.87-7.441.547-1.653 1.446-6.545 1.322-9.093-.194-1.034 1.093-3.997 1.922-5.58 2.063-2.274-3.245-8.406-8.412-12.263-10.335-4.34-2.134-13.02-6.278-17.636-8.27-2.687-1.165-5.167-3.175-.069-.97 5.443 2.345 14.192 5.854 20.116 8.482 8.474 3.721 42.299 3.174 47.877 2.68 2.894-.193 6.751-2.398 9.439-4.056 2.067-1.252 2.136-.494.137.547-2.204 1.164-4.615 2.063-6.338 4.48-2.342 3.245-5.58 4.69-6.82 6.825' fill='%23704d25'/%3e%3cpath d='M439.697 448.056c-1.585 0-3.582-.74-4.134-1.993-1.17 1.112-6.061 1.729-7.99.071-1.31 1.111-5.374 1.87-7.441.547-1.653 1.446-6.545 1.322-9.093-.194-1.034 1.093-3.997 1.922-5.58 2.063-2.274-3.245-8.406-8.412-12.263-10.335-4.34-2.134-13.02-6.278-17.636-8.27-2.687-1.165-5.167-3.175-.069-.97 5.443 2.345 14.192 5.854 20.116 8.482 8.474 3.721 42.299 3.174 47.877 2.68 2.894-.193 6.751-2.398 9.439-4.056 2.067-1.252 2.136-.494.137.547-2.204 1.164-4.615 2.063-6.338 4.48-2.342 3.245-5.58 4.69-6.82 6.825l-.206.123z' fill='%23704d25' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='m442.866 404.53-10.954-1.182c-1.93 3.245-2.204 7.301-1.17 10.141 3.512-3.316 9.85-1.587 13.02.123-1.034-2.892-2.619-6.807-.827-9.011' fill='%23fff'/%3e%3cpath d='m442.866 404.53-10.954-1.182c-1.93 3.245-2.204 7.301-1.17 10.141 3.512-3.316 9.85-1.587 13.02.123-1.034-2.892-2.619-6.807-.827-9.011l-.069-.071z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='M443.693 413.543c-3.236.07-10.952-.123-13.365-.123-2.617 3.368-1.17 8.465-.55 10.405 2.892-4.62 12.056-2.152 15.569 1.164-1.792-3.386-3.17-6.279-1.584-11.499' fill='%23fff'/%3e%3cpath d='M443.693 413.543c-3.236.07-10.952-.123-13.365-.123-2.617 3.368-1.17 8.465-.55 10.405 2.892-4.62 12.056-2.152 15.569 1.164-1.792-3.386-3.17-6.279-1.584-11.499l-.07.053z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='M445.279 425.13c-3.17-.565-13.365-1.253-15.432-1.8-1.654 3.44-3.031 7.919-3.72 12.204 4.96-5.449 16.466-1.446 18.877 3.845-2.411-4.55-4.824-11.428.343-14.25' fill='%23fff'/%3e%3cpath d='M445.279 425.13c-3.17-.565-13.365-1.253-15.432-1.8-1.654 3.44-3.031 7.919-3.72 12.204 4.96-5.449 16.466-1.446 18.877 3.845-2.411-4.55-4.824-11.428.343-14.25h-.068z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='m431.638 401.216-14.468-1.923c-2.065 2.416-3.582 6.684-3.376 11.64 3.032-2.892 14.123-1.729 16.949 2.416-.965-4.48-2.205-10.123.964-12.204' fill='%23fff'/%3e%3cpath d='m431.638 401.216-14.468-1.923c-2.065 2.416-3.582 6.684-3.376 11.64 3.032-2.892 14.123-1.729 16.949 2.416-.965-4.48-2.205-10.123.964-12.204l-.069.07z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='m430.535 413.756-16.052-2.134c-2.549 3.245-2.411 7.848-1.792 12.75 3.652-3.033 15.569-1.375 18.394 2.681-1.721-5.925-3.17-9.435-.482-13.297' fill='%23fff'/%3e%3cpath d='m430.535 413.756-16.052-2.134c-2.549 3.245-2.411 7.848-1.792 12.75 3.652-3.033 15.569-1.375 18.394 2.681-1.721-5.925-3.17-9.435-.482-13.297h-.068z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='m431.017 427.053-16.327-1.658c-2.548 3.174-4.271 6.42-3.72 11.163 2.549-4.197 13.365-1.163 17.98 3.51-2.754-3.65-3.031-8.888 2.067-13.015' fill='%23fff'/%3e%3cpath d='m431.017 427.053-16.327-1.658c-2.548 3.174-4.271 6.42-3.72 11.163 2.549-4.197 13.365-1.163 17.98 3.51-2.754-3.65-3.031-8.888 2.067-13.015z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='M404.425 401.216c-1.792 1.375-4.547 6.137-4.961 7.442 3.031-1.235 9.438-1.587 13.435 1.375-1.171-2.275-1.586-6.26-.552-7.918-1.584-.688-5.786-1.04-7.854-.829' fill='%23fff'/%3e%3cpath d='M404.425 401.216c-1.792 1.375-4.547 6.137-4.961 7.442 3.031-1.235 9.438-1.587 13.435 1.375-1.171-2.275-1.586-6.26-.552-7.918-1.584-.688-5.786-1.04-7.854-.829l-.068-.07z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='M397.743 410.86c4.202-.07 12.812.97 16.533 1.993-2.204 3.316-1.929 8.96-1.033 12.469-5.718-5.644-15.156-5.502-20.736-3.845 1.033-2.557 3.581-7.865 5.167-10.687' fill='%23fff'/%3e%3cpath d='M397.743 410.86c4.202-.07 12.812.97 16.533 1.993-2.204 3.316-1.929 8.96-1.033 12.469-5.718-5.644-15.156-5.502-20.736-3.845 1.033-2.557 3.581-7.865 5.167-10.687l.069.07z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='M414.414 426.577c-4.066.141-14.467-1.658-19.222-4.003-1.652 4.48-2.41 11.922-2.548 14.602 4.615-6.19 15.914-2.751 19.496 3.58-.344-3.368-1.585-11.64 2.274-14.25' fill='%23fff'/%3e%3cpath d='M414.414 426.577c-4.066.141-14.467-1.658-19.222-4.003-1.652 4.48-2.41 11.922-2.548 14.602 4.615-6.19 15.914-2.751 19.496 3.58-.344-3.368-1.585-11.64 2.274-14.25v.07z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='.65'/%3e%3cpath d='M404.425 401.216c-11.437 6.895-20.116 20.81-23.354 30.457 3.238-.07 7.3.97 8.75 3.862 3.375-13.862 8.127-26.666 14.604-34.39' fill='%23fff'/%3e%3cpath d='M404.425 401.216c-11.437 6.895-20.116 20.81-23.354 30.457 3.238-.07 7.3.97 8.75 3.862 3.375-13.862 8.127-26.666 14.604-34.39v.07zm.344-6.686c-9.368 9.435-22.664 26.26-27.488 35.413m65.585-25.413c2.548 12.398 3.17 29.064 2.136 35.201' stroke-width='.65' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M456.425 426.921c-2.905 1.45-8.41-2.604-11.01-.763v-1.606c2.524-1.762 8.03 2.29 11.01.764V427' fill='%2300009e'/%3e%3cpath d='M456.425 426.921c-2.905 1.45-8.41-2.604-11.01-.763v-1.606c2.524-1.762 8.03 2.29 11.01.764V427v-.079z' fill='%23002b7f'/%3e%3cpath d='M456.425 428.603c-2.905 1.45-8.41-2.604-11.01-.842v-1.684c2.524-1.762 8.03 2.291 11.01.764v1.684' fill='%23fff'/%3e%3cpath d='M456.425 428.603c-2.905 1.45-8.41-2.604-11.01-.842v-1.684c2.524-1.762 8.03 2.291 11.01.764v1.684z' fill='none'/%3e%3cpath d='M456.425 430.289c-2.905 1.527-8.41-2.526-11.01-.764v-1.684c2.524-1.762 8.03 2.291 11.01.842v1.606' fill='%23ff0016'/%3e%3cpath d='M456.425 430.289c-2.905 1.527-8.41-2.526-11.01-.764v-1.684c2.524-1.762 8.03 2.291 11.01.842v1.606' fill='%23ce1126'/%3e%3cpath d='M456.425 431.97c-2.905 1.528-8.41-2.525-11.01-.763v-1.684c2.524-1.684 8.03 2.291 11.01.764z' fill='%23fff'/%3e%3cpath d='M456.425 431.97c-2.905 1.528-8.41-2.525-11.01-.763v-1.684c2.524-1.684 8.03 2.291 11.01.764z' fill='none'/%3e%3cpath d='M456.425 433.578c-2.905 1.528-8.41-2.525-11.01-.763v-1.684c2.524-1.762 8.03 2.29 11.01.763v1.606' fill='%2300009e'/%3e%3cpath d='M456.425 433.578c-2.905 1.528-8.41-2.525-11.01-.763v-1.684c2.524-1.762 8.03 2.29 11.01.763v1.684z' fill='%23002b7f'/%3e%3c/g%3e%3cpath d='M650.12 284.78c-24.656 97.46 2.912 159.19 21.937 201.88 17.862 39.809 21.356 132.4-43.874 197.85-96.873 96.863-170.65 57.85-207.73 110.63m-7.953.19c-37.08-52.78-110.85-13.76-207.73-110.63-65.23-65.45-61.73-158.04-43.87-197.85 19.02-42.49 46.59-104.22 21.94-201.88' fill='none' stroke='%23000' stroke-width='3'/%3e%3cg stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'%3e%3cpath d='M427.55 39.787c1.357 6.308 3.106 23.321-6.212 25.758 17.082 21.075 41.737 24.086 85.03 24.086 27.18 0 49.118-.191 65.23 0 0 5.4-1.75 11.183-1.75 17.921 0 6.5 6.799 9.51 16.7 7.264 9.9-2.246 31.061-8.602 42.512 1.481 19.224 17.204 54.555 20.167 64.067 31.015-2.912-13.094-15.337-26.332-29.119-37.37 13.006-1.864 29.894-.526 35.72 3.918-14.76-15.999-41.55-16.382-55.14-24.219-13.59-7.838-26.6-14.767-36.69-17.395 0-4.444-.587-8.028-4.469-10.609-8.543-5.974-25.237-8.028-38.825-8.793 1.939-2.055 2.326-4.492 2.326-8.22V23.55c0-7.312.78-9.175-7.57-14.385-32.224-19.785-71.441-33.978-142.88-33.978-71.248 0-110.47 14.002-142.88 33.978-8.542 5.21-7.568 7.073-7.568 14.385v21.075c0 3.728.194 6.165 2.326 8.22-13.588.573-30.088 2.628-38.825 8.793-3.688 2.58-4.468 5.974-4.468 10.61-9.9 2.437-22.906 9.366-36.688 17.394-13.593 7.838-40.38 8.22-55.136 24.23 5.63-4.445 22.519-5.974 35.525-3.92-13.588 10.849-26.012 24.087-29.12 37.372 9.513-10.849 44.844-13.812 64.262-31.016 11.257-10.084 32.419-3.918 42.513-1.481 9.9 2.246 16.699-.573 16.699-7.264 0-6.738-1.75-12.521-1.75-17.921 15.92-.382 37.856 0 65.23 0 43.1 0 67.755-3.01 85.03-24.086-9.512-2.437-7.763-19.259-6.212-25.758-20.188-4.492-30.282-12.138-46.593-12.138-16.112 0-19.025 8.554-19.025 11.756v2.628c-12.812 0-30.868-3.202-35.331-11.613 24.85-10.084 61.736-19.21 112.4-19.21 50.668 0 87.555 9.127 112.4 19.21-4.463 8.411-22.52 11.613-35.331 11.613v-2.628c0-3.01-2.719-11.756-19.025-11.756s-26.405 7.455-46.593 12.138h-.775z' fill='%2389c5e3'/%3e%3cg fill='none'%3e%3cpath d='M260.98 89.965c-12.619.191-21.55.956-26.405 2.437-7.763 2.438-8.538 6.547-3.494 8.793M339.21 42.176v9.749c0 6.308 6.794 14.528 17.28 14.528 25.819 0 30.868-4.444 50.087-3.919'/%3e%3cpath d='M406.38 62.009c-17.86-3.011-32.03-12.521-47.76-12.521-15.531 0-18.831 7.073-16.112 10.466M224.48 72.809V92.02c0 5.257 3.688 12.521 17.668 9.749 12.231-2.246 20.188.526 20.188 5.782'/%3e%3cpath d='M267.96 53.215c2.912 2.963 9.319 5.591 23.493 10.657 26.012 9.51 85.805 16.009 124.64-.956M528.88 30.42c5.05 2.055 9.706 4.11 13.787 6.165 24.263 12.138 26.012 14.958 17.469 19.594m11.654 33.786c12.619.191 21.55.956 26.405 2.437 7.763 2.438 8.538 6.547 3.494 8.793M493.36 42.176v9.749c0 6.308-6.794 14.528-17.28 14.528-25.819 0-30.868-4.444-50.087-3.919'/%3e%3cpath d='M426.18 62.009c17.87-3.011 32.04-12.521 47.77-12.521 15.526 0 18.831 7.073 15.919 10.466M608.09 72.809V92.02c0 5.257-3.688 12.521-17.668 9.749-12.231-2.246-20.193.526-20.193 5.782'/%3e%3cpath d='M564.61 53.215c-2.912 2.963-9.319 5.591-23.493 10.657-26.012 9.51-85.805 16.009-124.64-.956'/%3e%3c/g%3e%3cpath d='M416.28 66.453c11.843 0 12.231-8.937 12.231-17.156 0-8.029-.388-17.013-12.231-17.013s-12.231 8.984-12.231 17.013.388 17.156 12.231 17.156z' fill='%2389c5e3'/%3e%3cpath d='M304.55 30.437c-5.169 2.052-9.936 4.105-14.113 6.157-24.843 12.123-26.628 14.939-17.883 19.568' fill='none'/%3e%3c/g%3e%3cg id='aq' fill='%23078930' stroke='%23000' stroke-width='3'%3e%3cpath d='M387.94 192.56c16.306-10.486 36.499-28.13 43.874-39.809 10.094-16.301 11.456-8.35 19.219-9.691-18.25 19.979-40.962 41.35-57.074 52.63l-6.019-3.13m-136.48 39.21c-40.768-23.11-56.299.994-65.812 2.137 11.257 2.734 20.769 20.774 65.812-2.137z'/%3e%3cpath d='M269.71 218.4c-38.83-26.241-56.105-3.33-65.816-2.733 11.068 3.479 19.224 22.315 65.816 2.733z'/%3e%3cpath d='M297.47 202.84c-38.248-26.987-56.105-4.473-65.816-4.075 11.068 3.876 18.637 22.514 65.816 4.075z'/%3e%3cpath d='M320.38 189.08c-35.137-31.062-55.33-10.486-64.842-11.282 10.482 5.07 16.112 24.452 64.842 11.282z'/%3e%3cpath d='M349.69 178.99c-33.582-32.851-54.744-13.22-64.256-14.562 10.288 5.417 14.95 25.396 64.256 14.562z'/%3e%3cpath d='M380.37 175.66c-27.762-37.672-51.831-21.917-61.15-24.651 9.125 7.206 10.482 27.384 61.15 24.651z'/%3e%3cpath d='M385.42 177.2c-1.362-8.498-17.28-19.383-18.637-23.458 4.075-.398 4.657-5.268 2.912-7.008-1.361-1.342-4.661-.596-6.406 1.193-1.75 2.137-3.494 7.157 2.132 11.431 5.825 4.274 13.205 12.027 15.536 17.842'/%3e%3cpath d='M214.38 234.5c11.063-3.33 25.043-1.74 34.75-2.733M232.44 218.2c11.451-2.535 25.043 0 34.943 0m-7.183-16.35c11.451-2.087 25.043.596 34.943.596M283.49 184.01c11.65-.944 24.85 3.33 34.556 4.473M313 171.98c11.644-.398 24.656 4.473 34.362 6.212m-1.942-15.162c11.649 1.193 23.686 8.548 32.811 11.48' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3cuse height='100%25' transform='matrix(-1 0 0 1 832.76 0)' width='100%25' xlink:href='%23aq'/%3e%3cg stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'%3e%3cg fill='%23fff'%3e%3cpath d='M416.49 190.46c9.125 0 16.888 0 22.519-.745v-13.021c0-4.275 15.143-9.344 38.05-4.871 89.692 17.494 101.92 58.049 170.07 81.357.775.199 3.3.994 6.212 1.54 1.75-4.075 3.688-8.15 5.825-13.17 1.163-3.727 11.068-3.528 19.8.547 10.1 4.87 14.562 10.487 12.817 13.42-1.75 4.274-3.499 7.753-5.05 11.231 15.92 5.666 44.844 14.214 35.332 52.433-7.376-7.156-25.237-14.959-36.3-14.959-12.62 0-26.211-4.82-21.937-18.637-2.331-1.143-6.411-3.28-8.544-3.677-.387 1.193-.969 2.336-1.555 3.479-2.913 7.206-15.531 9.74-28.15 5.467-71.055-24.253-92.992-77.878-176.86-78.624v2.335c0 6.76-8.737 12.971-32.225 12.971-23.3 0-32.225-6.212-32.225-12.97v-2.336c-83.673.546-105.81 54.172-176.86 78.624-12.425 4.274-25.043 1.54-28.15-5.467-.393-1.143-.974-2.287-1.556-3.48-2.137.398-6.212 2.535-8.543 3.678 4.08 13.618-9.125 18.637-21.937 18.637-11.063 0-28.731 7.803-36.3 14.96-9.513-38.02 19.025-46.569 35.33-52.434-1.555-3.478-3.105-6.957-5.049-11.232-1.55-2.932 2.719-8.548 12.812-13.419 8.738-4.274 18.443-4.472 19.805-.546 2.138 4.82 3.882 8.896 5.825 13.17 2.913-.547 5.238-1.342 6.213-1.541 67.949-23.309 80.373-63.863 170.06-81.357 22.717-4.473 38.055.596 38.055 4.87v13.022c5.63.546 13.394.745 22.519.745z'/%3e%3cpath d='M393.78 189.71c-6.019-.596-9.512-1.938-9.512-4.274 0-5.815 9.512-3.877 9.512-8.747M165.27 253.58c3.494 8.35 7.962 19.035 12.037 28.13m-20.577-23.86c3.494 8.15 10.099 22.116 12.037 27.931'/%3e%3c/g%3e%3cpath d='M140.62 255.71c2.33 4.075 14.562-1.938 16.112 1.938 1.362 4.076-2.326 6.213-10.869 9.294m27.567-25.392c1.744 5.218-10.487 7.356-7.962 12.027 1.556 3.081 8.35 2.137 13.786.944' fill='none'/%3e%3cpath d='M384.06 185.24v26.987m55.14-22.517c5.825-.596 9.512-1.938 9.512-4.274 0-5.815-9.512-3.877-9.512-8.747m228.5 76.891c-3.494 8.35-7.962 19.035-12.037 28.13m20.577-23.86c-3.499 8.15-10.099 22.116-12.037 27.931' fill='%23fff'/%3e%3cpath d='M692.36 255.71c-2.33 4.075-14.562-1.938-16.112 1.938-1.362 4.076 2.326 6.213 10.869 9.294M659.55 241.55c-1.744 5.218 10.487 7.356 7.962 12.027-1.556 3.081-8.35 2.137-13.787.944' fill='none'/%3e%3cpath d='M448.91 185.24v26.987' fill='%23fff'/%3e%3c/g%3e%3cpath d='m203.96 281.77-7.523-26.884 9.371-2.622c2.396-.67 4.176-.908 5.338-.713 1.162.196 2.24.797 3.233 1.805.994 1.007 1.724 2.342 2.189 4.005.588 2.102.558 3.937-.092 5.503-.649 1.566-1.857 2.774-3.623 3.624 1.146.417 2.144.946 2.995 1.584.85.639 2.108 1.859 3.773 3.66l4.145 4.496-5.3 1.483-4.865-4.947c-1.753-1.79-2.912-2.892-3.476-3.308-.565-.415-1.107-.659-1.629-.73-.52-.072-1.295.035-2.322.323l-.917.256 3.141 11.223zm.097-16.756 3.3-.924c2.018-.564 3.277-1.012 3.777-1.343.5-.331.847-.814 1.039-1.448.192-.633.163-1.396-.087-2.289-.24-.856-.603-1.495-1.09-1.92a2.718 2.718 0 0 0-1.695-.682c-.453-.018-1.676.251-3.669.81l-3.484.974zm24.613 9.536-12.392-25.016 15.221-7.54 2.096 4.232-11.092 5.494 2.748 5.546 10.306-5.105 2.088 4.215-10.307 5.105 3.373 6.809 11.467-5.68 2.088 4.214zm20.14-10.63-15.128-23.463 6.242-4.024c2.326-1.5 3.919-2.368 4.778-2.605 1.376-.373 2.816-.207 4.321.5 1.505.705 2.86 1.992 4.064 3.86 1.094 1.696 1.69 3.324 1.79 4.884.099 1.56-.182 2.881-.843 3.964-.661 1.084-2.165 2.382-4.513 3.896l-2.545 1.64 5.707 8.85zm-8.695-21.991 4.292 6.658 2.145-1.383c1.44-.928 2.354-1.66 2.74-2.197.388-.537.576-1.175.566-1.917-.01-.741-.262-1.496-.757-2.264-.502-.78-1.096-1.325-1.782-1.639-.685-.313-1.337-.399-1.955-.257-.619.142-1.74.736-3.36 1.781zm10.435-12.159 3.778-2.64 8.66 12.396c1.345 1.925 2.268 3.146 2.769 3.664.871.893 1.815 1.395 2.83 1.507 1.015.111 2.037-.193 3.068-.913.874-.61 1.45-1.304 1.73-2.08.278-.775.277-1.58-.004-2.413-.28-.834-1.217-2.39-2.81-4.67l-8.844-12.66 3.793-2.65 8.398 12.02c2.145 3.07 3.532 5.404 4.16 7.001.628 1.598.664 3.222.106 4.874-.557 1.652-1.777 3.135-3.661 4.451-1.957 1.367-3.73 2.083-5.318 2.148-1.589.065-3.075-.368-4.46-1.297s-3.274-3.106-5.666-6.53zm19.27-13.94 7.703-4.957c2.103-1.353 3.705-2.112 4.806-2.278 1.102-.165 2.259.049 3.471.643 1.212.593 2.214 1.504 3.004 2.732.728 1.131 1.135 2.315 1.22 3.55s-.13 2.33-.65 3.284c1.404-.33 2.744-.211 4.022.355 1.278.567 2.37 1.555 3.278 2.964 1.099 1.708 1.617 3.416 1.554 5.125s-.565 3.063-1.508 4.061c-.655.694-2.403 1.955-5.243 3.782l-6.55 4.215zm6.39 1.413 3.493 5.43 2.562-1.65c1.538-.989 2.47-1.627 2.8-1.914.593-.533.93-1.146 1.012-1.84.081-.695-.129-1.431-.63-2.21-.447-.695-.961-1.16-1.544-1.396-.582-.237-1.124-.27-1.625-.098-.501.172-1.777.917-3.826 2.236zm6.008 9.337 4.04 6.277 3.602-2.319c1.58-1.017 2.541-1.752 2.883-2.206.342-.454.51-1.022.5-1.703-.007-.682-.252-1.396-.733-2.144-.495-.768-1.065-1.296-1.71-1.583a2.97 2.97 0 0 0-1.956-.19c-.66.16-1.822.776-3.488 1.848zm20.582.56-12.79-24.557 4.087-2.129 10.617 20.386 10.201-5.313 2.173 4.172zm17.29-9.33-10.795-25.746 4.25-1.782 10.795 25.746zm18.42-16.67 4.784.377c.226 3.192-.232 5.712-1.376 7.558s-2.853 3.11-5.127 3.79c-2.859.855-5.505.448-7.94-1.222-2.803-1.93-4.851-5.055-6.143-9.372-1.365-4.561-1.405-8.439-.121-11.632 1.118-2.773 3.185-4.611 6.202-5.514 2.456-.735 4.763-.51 6.92.673 1.536.839 2.929 2.35 4.178 4.534l-3.996 2.587c-.713-1.364-1.601-2.307-2.666-2.83a4.377 4.377 0 0 0-3.293-.277c-1.617.484-2.726 1.584-3.325 3.3-.6 1.717-.414 4.2.558 7.447 1.008 3.369 2.224 5.616 3.647 6.74s2.931 1.449 4.525.972c1.167-.35 2.041-1.105 2.621-2.265.58-1.161.764-2.783.552-4.866zm30.13 3.41-4.942.924-3.13-5.866-8.986 1.68-.687 6.58-4.83.903 3.63-29.079 4.81-.9zm-10.397-9.292-4.993-9.606-1.147 10.753zm39.057-1.318 8.208.624c2.076.157 3.624.508 4.645 1.051 1.02.544 1.934 1.399 2.74 2.566.806 1.167 1.396 2.646 1.769 4.439.373 1.793.46 3.992.263 6.598-.179 2.348-.6 4.369-1.262 6.064-.663 1.695-1.44 3.018-2.333 3.97a7.852 7.852 0 0 1-3.13 2.063c-1.193.425-2.698.569-4.514.43l-8.45-.641zm4.135 4.936-1.367 17.992 3.373.256c1.445.11 2.502.053 3.171-.17a3.8 3.8 0 0 0 1.687-1.11c.456-.519.865-1.36 1.227-2.526.361-1.165.616-2.717.763-4.656.153-2.014.135-3.612-.055-4.794-.19-1.182-.553-2.13-1.089-2.84a4.14 4.14 0 0 0-2.04-1.479c-.618-.208-1.828-.381-3.632-.518zm19.335 23.604-1.723-27.188 16.542-1.049.291 4.6-12.054.764.382 6.027 11.201-.71.29 4.58-11.2.71.469 7.4 12.462-.79.29 4.58zm50.4-26.02 4.378 1.965c-.86 3.082-2.14 5.3-3.838 6.654s-3.732 1.969-6.103 1.845c-2.98-.156-5.335-1.43-7.065-3.822-1.992-2.761-2.87-6.392-2.634-10.893.25-4.754 1.516-8.42 3.799-10.995 1.986-2.235 4.55-3.27 7.695-3.106 2.56.134 4.658 1.121 6.29 2.961 1.165 1.307 1.968 3.199 2.41 5.676l-4.633 1.092c-.213-1.524-.732-2.711-1.558-3.562-.827-.85-1.83-1.307-3.008-1.368-1.687-.089-3.1.575-4.243 1.99-1.142 1.414-1.801 3.814-1.978 7.2-.184 3.511.205 6.036 1.166 7.574.962 1.537 2.274 2.35 3.935 2.437 1.217.063 2.294-.354 3.23-1.252.937-.898 1.656-2.363 2.157-4.397zm10.29-2.53c.794-3.23 1.926-5.772 3.396-7.627 1.47-1.854 3.1-3.104 4.893-3.748 1.793-.644 3.786-.696 5.98-.156 3.181.782 5.474 2.634 6.88 5.555 1.406 2.922 1.557 6.626.453 11.113-1.116 4.537-3.048 7.82-5.796 9.85-2.416 1.799-5.22 2.305-8.414 1.52-3.217-.792-5.482-2.532-6.795-5.221-1.493-3.074-1.692-6.836-.597-11.286zm4.668.952c-.767 3.12-.75 5.604.05 7.455.8 1.85 2.074 2.99 3.825 3.421 1.763.434 3.414.02 4.953-1.242s2.704-3.496 3.492-6.701c.773-3.144.781-5.606.023-7.388-.758-1.781-2.05-2.897-3.874-3.345-1.824-.45-3.496-.056-5.016 1.178s-2.67 3.442-3.453 6.622zm19.442 10.388 4.363 1.272c-.926 3.483-.092 5.774 2.502 6.875 1.286.546 2.44.639 3.46.28 1.022-.36 1.744-1.037 2.165-2.03.248-.584.33-1.136.247-1.654-.084-.518-.333-1.02-.747-1.506s-1.5-1.468-3.26-2.945c-1.578-1.318-2.652-2.477-3.22-3.477-.569-1-.88-2.128-.932-3.385s.176-2.487.687-3.69c.595-1.403 1.449-2.53 2.562-3.382 1.113-.851 2.352-1.325 3.717-1.422s2.871.205 4.519.904c2.477 1.052 4.126 2.545 4.947 4.479.82 1.934.74 4.169-.24 6.704l-4.355-1.58c.398-1.458.404-2.593.017-3.405-.386-.812-1.152-1.461-2.297-1.947-1.145-.486-2.13-.621-2.952-.405-.823.216-1.385.68-1.688 1.394-.297.701-.267 1.41.09 2.127.358.718 1.426 1.791 3.205 3.222 1.876 1.527 3.145 2.835 3.807 3.922.662 1.088 1.015 2.28 1.06 3.574s-.263 2.712-.917 4.255c-.947 2.232-2.43 3.816-4.448 4.753s-4.488.785-7.41-.455c-5.165-2.192-6.792-6.352-4.882-12.478zm21.51 20.02 11.3-20.255-5.937-3.312 2.301-4.124 15.882 8.86-2.3 4.124-5.921-3.303-11.3 20.255zm29.75 18.53-4.205-2.756 1.805-6.4-7.645-5.01-5.053 4.27-4.109-2.694 22.758-18.462 4.093 2.683zm-1.064-13.904 3.051-10.386-8.275 6.962zm10.274 20.564 15.933-22.924 7.99 5.554c2.044 1.42 3.36 2.64 3.95 3.66.589 1.02.812 2.235.669 3.643-.144 1.407-.708 2.82-1.694 4.238-1.246 1.793-2.68 2.938-4.3 3.434-1.621.497-3.322.336-5.102-.484.407 1.149.636 2.255.686 3.317.05 1.063-.09 2.81-.419 5.24l-.825 6.06-4.519-3.141.715-6.901c.263-2.492.375-4.088.336-4.788-.04-.7-.198-1.273-.474-1.72-.277-.448-.853-.976-1.728-1.584l-.782-.544-6.652 9.57zm12.979-10.599 2.815 1.956c1.72 1.196 2.867 1.881 3.441 2.056.574.175 1.167.134 1.777-.121.611-.256 1.18-.765 1.71-1.526.507-.73.769-1.417.785-2.063a2.718 2.718 0 0 0-.553-1.741c-.275-.361-1.262-1.132-2.96-2.313l-2.972-2.065zm5.891 23.619 15.362-23.31 3.848 2.536-15.362 23.31zm25.3 3.49 3.024 3.726c-2.156 2.364-4.298 3.768-6.424 4.213-2.126.444-4.219.076-6.28-1.102-2.59-1.482-4.118-3.68-4.586-6.595-.535-3.362.317-6.999 2.555-10.91 2.363-4.133 5.144-6.835 8.343-8.106 2.78-1.101 5.536-.87 8.27.693 2.225 1.273 3.653 3.099 4.282 5.477.45 1.691.316 3.742-.404 6.153l-4.63-1.112c.497-1.457.568-2.75.213-3.882a4.374 4.374 0 0 0-2.069-2.577c-1.466-.838-3.027-.883-4.684-.134-1.656.749-3.326 2.595-5.01 5.537-1.745 3.053-2.535 5.482-2.369 7.288s.971 3.122 2.415 3.948c1.058.605 2.207.718 3.448.338 1.241-.38 2.543-1.365 3.906-2.955zm21.63 20.25-4.709-1.762.35-6.64-8.561-3.203-3.988 5.279-4.602-1.722 18.13-23.024 4.584 1.715zm-4.102-13.327.687-10.804-6.537 8.615zm-320.37-250.43-3.876 1.752-3.752-4.192-7.048 3.185.757 5.547-3.789 1.712-2.856-24.632 3.773-1.706zm-10.412-5.55-6.033-6.892 1.217 9.07zm12.357 4.955L301.914.455l5.555-1.833 8.383 14.203-1.742-16.393 5.57-1.837 7.4 22.433-3.444 1.136L317.812.505l2.167 18.866-3.58 1.18-9.452-16.462 5.825 17.658zm21.567-6.83-5.652-22.936 13.955-3.439.956 3.88-10.17 2.506 1.253 5.085 9.45-2.329.952 3.865-9.45 2.328 1.539 6.243 10.513-2.591.952 3.864zm17.554-4.207-4.196-23.247 8.103-1.462c2.072-.374 3.59-.432 4.553-.175.963.257 1.823.85 2.58 1.777.757.928 1.265 2.11 1.525 3.548.328 1.819.156 3.361-.516 4.629-.671 1.267-1.785 2.189-3.34 2.764.931.443 1.73.968 2.396 1.573.666.606 1.628 1.734 2.887 3.385l3.133 4.117-4.582.827-3.704-4.555c-1.335-1.647-2.223-2.669-2.665-3.064-.443-.395-.88-.643-1.314-.745-.433-.102-1.094-.073-1.981.088l-.793.143 1.751 9.704zm1.416-14.108 2.854-.515c1.744-.315 2.84-.592 3.288-.831.448-.24.778-.618.99-1.137.213-.518.249-1.163.11-1.935-.134-.74-.39-1.308-.766-1.704a2.3 2.3 0 0 0-1.373-.71c-.38-.051-1.432.079-3.155.39l-3.013.543zm17.71 10.869-3.202-23.403 3.864-.53 3.202 23.405zm19.11-10.906 3.909 1.099c-.336 2.686-1.13 4.702-2.383 6.047s-2.878 2.114-4.878 2.305c-2.512.241-4.642-.531-6.389-2.317-2.01-2.063-3.198-4.992-3.562-8.788-.385-4.01.218-7.235 1.808-9.675 1.383-2.118 3.4-3.305 6.052-3.559 2.16-.207 4.038.358 5.634 1.694 1.138.948 2.046 2.431 2.725 4.449l-3.742 1.492c-.368-1.25-.95-2.178-1.748-2.787a3.702 3.702 0 0 0-2.688-.77c-1.422.136-2.523.868-3.302 2.194-.78 1.327-1.032 3.418-.758 6.273.284 2.962.924 5.026 1.92 6.193s2.196 1.684 3.597 1.55c1.027-.099 1.876-.582 2.548-1.45.672-.87 1.091-2.185 1.256-3.95zm25.38 7.385-4.25.17-1.905-5.294-7.728.309-1.38 5.425-4.154.166 6.593-23.905 4.137-.165zm-7.57-9.05-3.006-8.653-2.274 8.863zm29.878.829 3.735 1.594c-.68 2.621-1.727 4.518-3.142 5.69-1.416 1.172-3.127 1.724-5.135 1.656-2.523-.085-4.535-1.125-6.037-3.121-1.728-2.305-2.528-5.363-2.4-9.174.136-4.026 1.15-7.147 3.041-9.362 1.645-1.922 3.799-2.838 6.461-2.748 2.169.073 3.958.875 5.368 2.406 1.006 1.087 1.716 2.675 2.13 4.763l-3.904.997c-.204-1.286-.662-2.282-1.374-2.989a3.702 3.702 0 0 0-2.567-1.11c-1.427-.048-2.613.535-3.557 1.75-.944 1.215-1.464 3.256-1.56 6.122-.101 2.974.268 5.104 1.106 6.39.838 1.286 1.96 1.952 3.366 2 1.03.035 1.936-.335 2.714-1.11.779-.774 1.364-2.025 1.755-3.753zm6.837 9.04 2.042-23.533 14.32 1.242-.346 3.981-10.434-.905-.453 5.217 9.696.841-.344 3.965-9.696-.84-.556 6.404 10.788.936-.344 3.965zm18.007 1.647 3.343-23.384 3.764.538 5.616 16.738 2.232-15.617 3.605.515-3.342 23.385-3.893-.556-5.54-16.353-2.18 15.248zm23.541 3.759 3.863-19.242-5.64-1.132.787-3.918 15.087 3.029-.787 3.918-5.624-1.13-3.863 19.243zm11.97 2.468 6.036-22.838 7.96 2.104c2.036.538 3.436 1.128 4.2 1.769.764.64 1.292 1.541 1.586 2.702.293 1.16.253 2.447-.12 3.86-.473 1.786-1.281 3.111-2.426 3.975-1.145.864-2.544 1.228-4.197 1.091.657.796 1.158 1.609 1.505 2.44.348.83.742 2.26 1.184 4.287l1.097 5.057-4.502-1.19-1.429-5.694c-.513-2.058-.893-3.36-1.128-3.904-.226-.545-.522-.956-.87-1.231-.348-.276-.966-.53-1.834-.76l-.78-.206-2.519 9.534zm7.253-12.182 2.804.74c1.714.454 2.824.666 3.331.64.508-.028.967-.231 1.379-.611.411-.38.717-.95.917-1.708.193-.727.202-1.35.027-1.868a2.3 2.3 0 0 0-.943-1.224c-.323-.207-1.33-.535-3.023-.982l-2.96-.783zm28.111 22.96-4.023-1.382.143-5.625-7.315-2.512-3.252 4.557-3.932-1.35 14.806-19.892 3.916 1.345zm-3.776-11.18.333-9.153-5.332 7.437zm5.769 12.051 9.405-21.458 3.572 1.565-7.808 17.813 8.914 3.907-1.598 3.645z'/%3e%3c/g%3e%3c/svg%3e\"},2440:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3e%3cpath d='M0 0h800v400H0z' fill='%23002a8f'/%3e%3cpath d='M0 80h800v80H0v80h800v80H0z' fill='%23fff'/%3e%3cpath d='M346.4 200 0 0v400z' fill='%23cf142b'/%3e%3cpath d='m115.5 140 35.35 108.5-92.5-67h114.2l-92.5 67z' fill='%23fff'/%3e%3c/svg%3e\"},2177:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 510 300'%3e%3cpath fill='%23003893' d='M0 0h510v300H0z'/%3e%3cpath fill='%23fff' d='M0 150h510v75H0z'/%3e%3cpath fill='%23cf2027' d='M0 175h510v25H0z'/%3e%3cg fill='%23f7d116' transform='translate(191.25 187.5)'%3e%3cg id='d'%3e%3cg id='c' transform='translate(0 -75)'%3e%3cg id='b'%3e%3cpath id='a' d='M0-15V0h7.5' transform='rotate(18 0 -15)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(216)'/%3e%3cuse xlink:href='%23b' transform='rotate(288)'/%3e%3c/g%3e%3cuse xlink:href='%23c' y='150'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='rotate(72)'/%3e%3cuse xlink:href='%23d' transform='rotate(144)'/%3e%3cuse xlink:href='%23d' transform='rotate(216)'/%3e%3cuse xlink:href='%23d' transform='rotate(288)'/%3e%3c/g%3e%3c/svg%3e\"},8168:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 54 36'%3e%3cpath fill='%23002b7f' d='M0 0h54v36H0z'/%3e%3cpath d='M0 22.5h54V27H0z' fill='%23f9e814'/%3e%3cg fill='%23fff' id='d'%3e%3cg id='c'%3e%3cg id='b'%3e%3cpath d='M12 8v4h2z' transform='rotate(18 12 8)' id='a'/%3e%3cuse xlink:href='%23a' x='-24' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72 12 12)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(-72 12 12)'/%3e%3cuse xlink:href='%23c' transform='rotate(144 12 12)'/%3e%3c/g%3e%3cuse xlink:href='%23d' x='-4' y='-4' transform='scale(.75)'/%3e%3c/svg%3e\"},7628:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1000 500'%3e%3cpath fill='%230021ad' d='M0 0h1000v500H0z'/%3e%3cpath d='M0 0h1000v500z' fill='%231c8a42'/%3e%3ccircle cx='500' cy='250' r='90.32' fill='%23ffc639'/%3e%3cpath fill='%231c8a42' d='M444.84 209.43c6.179 8.477 15.542 22.689 23.072 18.979 5.876.02 8.91.433 9.706 4.344 13.86 2.359 37.153-3.487 51.647-22.366 0 0 1.22.161.797-7.015.08-3.125 4.273-2.5 4.374-1.482.585 1.553.484 2.712 1.27 2.752 1.784-.595 4.223-4.596 6.27-7.136.554-1.119.251-2.298.382-3.71 1.079-2.65 3.77-2.076 4.335-.685.514.897.524 1.583 1.028 2.48 2.731 1.824 7.66.12 8.043.12.484-2.227 1.915-2.015 1.915-2.015 1.824-.403 1.109-.242 2.308.383-1.058 12.005 2.359 12.539 2.077 18.697.12 6.874-2.077 8.83-2.077 11.45.696 3.205 10.835 3.316 7.267 6.027-3.134 1.673.01 4.808-4.707 6.028-13.728 6.965-16.359 12.942-16.359 12.942s-3.447 6.511-3.83 6.511c-2.298 4.344-5.21 1.976-6.834 4.092-.806 2.661-1.713 8.558-.1 11.622.806 4.213-.101 6.512-1.11 10.724-.906 8.79-4.394 10.12-4.797 13.204-1.613 3.296.343 18.778-1.19 18.778-10.22.202-18.051-1.955-22.093-2.761 3.94-16.984 2.409-31.901 2.409-33.433-1.008-12.146-18.193-9.193-20.824-10.805-2.178-.464-3.548-2.238-4.314-3.004-2.43-.262-3.337-.816-5.766-1.068-1.21.604-.484 1.23-3.185 2.066-6.854.826-9.878-5.977-9.878-5.977.333-2.288-15.41.463-23.969-1.522-3.507 1.955-5.04 7.74-7.912 8.426-.08 1.794-4.727-1.472-5.665-3.235-.191-5.13 4.476-7.399 4.476-7.399 3.709-2.61 5.906-3.034 7.69-4.838.897-4.465.444-7.77 2.349-11.128 1.612-2.56 3.991-1.36 5.604-2.51 1.733-1.149 2.47-8.668.867-10.724 0 0-6.935-6.259-7.318-6.642-2.258-6.47 2.64-10.644 4.042-10.17z'/%3e%3cpath fill='%23ffc639' d='M877.93 97.555c-4.092-16.194-40.721-51.071-68.247-73.265-6.572-4.477-10.855-1.81-9.999 4.573 3.427 5.716 5.998 12 9.425 17.716.957 3.81 2.761 6.477 3.719 10.286 0 0 .282 6.573.857 7.144 8.567 9.434 9.716 17.432 9.716 17.432 4.949 9.526 9.334 16.478 18.002 24.29 9.717 6.098 2.57 25.047 2.853 35.147 0 6.38-4.566 5.625-8.568 4.858-31.528-28.958-62.774-29.049-90.3-37.435-10.766-1.139-10.957 4.002-7.43 6.854 19.243 20.582 37.335 34.582 61.152 46.294l12.005 7.439c4.566 3.81 9.142 7.62 13.708 11.43 10.573 6.854 11.44 13.143 11.44 13.708.282 12.861-6.582 22.86-8.578 26.861-3.608 13.637-10.855 16.006-10.855 16.006-58.874 39.723-89.737 50.004-185.18 37.717-1.431-.756-10.573.766 0 4.576 24.291 8.094 83.961 21.076 141.69-6.26 13.86-9.716 23.132-6.53 33.171-12.346 16.49-10.17 40.035-22.83 44.32-24.251 12.86-6.864 48.864-14.575 57.16-21.44 9.514-.765 19.392-2.015 20.057-10.2 3.125-2.025 7.7-.544 11.097-7.216 7.55-1.31 6.28-4.012 6.28-4.012-1.905-5.332-8.961-7.529-14-11.43-7.44-2.48-12.58-3.245-18.012-.574-1.714.766-3.427 1.522-5.141 2.288 0 0-8.003-1.15-8.003-1.714-17.78-.977-16.046-59.902-22.336-84.478z'/%3e%3cpath fill='%231c8a42' d='M919.63 194.01a4.402 2.751 15.947 0 1-8.396-2.637 4.402 2.751 15.947 0 1 8.396 2.637z'/%3e%3cg fill='%23fff'%3e%3cpath id='a' d='m188.16 190.94-12.751-11.936-12.904 11.77 1.383-17.405-17.249-2.753 14.475-9.774-8.606-15.197 16.668 5.22 6.518-16.205 6.31 16.287 16.734-5.007-8.8 15.086 14.348 9.96-17.283 2.53 1.158 17.424z'/%3e%3cpath d='m233.39 335.53-13.752-9.167-13.391 9.664 4.712-15.568-13.582-9.415 16.667-.446 4.988-15.496 5.595 15.3 16.667-.156-13.21 9.902 5.307 15.382z'/%3e%3cuse xlink:href='%23a' x='2.522' y='269.061'/%3e%3cuse xlink:href='%23a' x='-112.066' y='123.223'/%3e%3cuse xlink:href='%23a' x='108.427' y='85.027'/%3e%3c/g%3e%3c/svg%3e\"},3250:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 600'%3e%3cpath fill='%23fff' d='M0 0h900v600H0z'/%3e%3cpath id='a' d='M463.1 506.741a1.01 1.01 0 0 1-.347-.245l-.125-.117a21.523 21.523 0 0 1-1.582-1.643c-1.332-1.513-3.119-3.728-4.69-5.685-3.115-3.883-5.689-7.228-6.174-7.858l-.793-1.032-7.767-2.395-5.671-2.644 3.03-3.406 10.408 4.456 7.767 1.594 14.363 10.564-.011.009c-.029.024-2.089 1.738-4.136 3.6-.913.83-2.064 1.9-2.877 2.783-.335.359-.646.74-.93 1.14a9.004 9.004 0 0 0-.465.88m-53.34-16.02a39.63 39.63 0 0 1-19.895-5.567h-.007v-.008a10.24 10.24 0 0 1 2.878-3.1c1.941-1.425 5.442-3.128 11.1-3.15h.117c6.7 0 14.9 2.278 24.373 6.771a36.022 36.022 0 0 1-18.566 5.054l.01.01-.01-.01zm-29.37-6.51a4.241 4.241 0 0 1-3.17-1.333A6.439 6.439 0 0 1 375.8 480a14.656 14.656 0 0 1-.351-4.217 4.336 4.336 0 0 1 1.562-.354h.112c2.511 0 4.49 2.178 5.338 4.337a4.35 4.35 0 0 1 .274 3.067 2.417 2.417 0 0 1-2.34 1.37l-.005.009zm51.68-5.99c-17.359-2.479-24.717-8.755-27.833-13.583a15.705 15.705 0 0 1-2.634-9.96v-.014h.013c.872-.2 1.764-.299 2.658-.293 4.618 0 16.43 2.323 27.8 23.842l.007.014-.02-.01.009.004zm-35.58-3.44c-7.416 0-13.062-1.28-16.782-3.8a10.304 10.304 0 0 1-3.686-4.125 6.75 6.75 0 0 1-.594-2.023 22.704 22.704 0 0 1 7.765-1.65c.383-.018.769-.029 1.174-.03 5.732 0 14.448 1.87 23.646 10.78l.009.009h-.011a90.034 90.034 0 0 1-11.53.84l.009-.001zm-35.91-1.38c-7.82 0-18.563-2.388-25.263-9.087l-.007-.008h.02a78.487 78.487 0 0 1 15.523-2.062c.488-.012.98-.018 1.475-.019 7.332 0 12.944 1.422 16.682 4.225a4.942 4.942 0 0 1 2.178 2.783 2.28 2.28 0 0 1-1.056 2.15c-1.683 1.271-4.692 1.949-8.945 2.017l-.6.02-.007-.019zm-25.34-13a3.206 3.206 0 0 1-2.479-1.167 5.87 5.87 0 0 1-1.108-2.522 14.298 14.298 0 0 1-.291-3.674v-.018c.382-.176.797-.27 1.217-.275a3.784 3.784 0 0 1 2.589 1.158 6.956 6.956 0 0 1 1.688 2.645 4.03 4.03 0 0 1 .18 2.635 1.915 1.915 0 0 1-1.8 1.21l.004.008zm58.53-1.32a4.241 4.241 0 0 1-3.17-1.333 6.45 6.45 0 0 1-1.422-2.878 14.656 14.656 0 0 1-.351-4.217 4.336 4.336 0 0 1 1.562-.354h.112c2.511 0 4.49 2.178 5.338 4.337a4.35 4.35 0 0 1 .274 3.067 2.413 2.413 0 0 1-2.34 1.37l-.003.008zm-28.51-1.18c-15.737-.554-23.9-5.027-27.984-8.683a18.3 18.3 0 0 1-4.24-5.447 11.649 11.649 0 0 1-.908-2.438l.021-.009a13.461 13.461 0 0 1 3.885-.579h.368c5.307 0 16.111 2.229 28.852 17.153v.01l.006-.007zm17.09-1.59c-12.661-1.928-19.834-7.363-23.622-11.585a24.177 24.177 0 0 1-5.213-8.738 18.622 18.622 0 0 1 3.9-.469c.169 0 .345-.007.524-.007s.365 0 .553.007c6.368.139 17.934 3.023 23.855 20.785h.01l-.007.007zm-65-6.08a49.336 49.336 0 0 1-11.96-1.432c-6.629-1.658-9.473-4.189-10.691-6.021a6.318 6.318 0 0 1-1.031-2.534 4.282 4.282 0 0 1-.031-1.073l.031-.011a45.238 45.238 0 0 1 10.464-1.328c.239 0 .48-.006.725-.006a43.806 43.806 0 0 1 8.564.83 27.146 27.146 0 0 1 16.053 10.14v.009h-.013a49.635 49.635 0 0 1-12.12 1.42l.009.006zm29.39-10.68a4.244 4.244 0 0 1-3.172-1.3 6.49 6.49 0 0 1-1.42-2.908 14.4 14.4 0 0 1-.351-4.185 4.336 4.336 0 0 1 1.562-.354h.112c2.506 0 4.488 2.179 5.339 4.338a4.25 4.25 0 0 1 .243 3.034 2.356 2.356 0 0 1-2.31 1.38l-.003-.005zm-22.1-3.03a48.225 48.225 0 0 1-11.967-5.225c-5.544-3.413-12.326-9.45-13.153-18.83h.014a7.14 7.14 0 0 1 1.278-.154c.1 0 .217-.006.334-.006 1.656 0 5.046.466 9.147 3.584 5.22 3.98 10.04 10.92 14.35 20.65l-.003-.019zm14.43-.53a39.027 39.027 0 0 1-9.469-6.084 60.759 60.759 0 0 1-16.716-23.33 7.698 7.698 0 0 1 3.655-.718c2.411.068 6.083 1.07 10.154 5.463 4.676 5.047 8.85 13.34 12.4 24.651l.01.032-.03-.01-.004-.004zm-37.39-1.09c-4.821 0-6.471-2.615-6.957-3.74a7.783 7.783 0 0 1-.554-3.707v-.02a10.615 10.615 0 0 1 2.4-.314h.165a9.918 9.918 0 0 1 8.084 3.841c.255.379 1.037 1.694.39 2.721-.52.81-1.7 1.22-3.53 1.22l.002-.001zM291 421.431a63.914 63.914 0 0 1-11.141-.952c-4.294-.781-6.728-4.432-8.013-7.356a25.55 25.55 0 0 1-1.8-6.254h.012c13.282.39 19.555 4.271 22.478 7.457a11.713 11.713 0 0 1 3.206 6.922h-.009c-.02 0-1.89.18-4.74.18l.007.003zm13.83-13.82a53.867 53.867 0 0 1-3.033-4.228c-1.573-2.445-3.028-5-3.028-7.084 0-2.016-.474-6.266-.757-8.619-.358-2.985-.72-5.54-.75-5.757h.013c.337.123 8.308 3.114 8.308 10.591s-.738 15.014-.745 15.089v.011h-.01l.002-.003zm-10.33-.71c-.084 0-.167-.008-.25-.021-2.356-.393-6.5-2.194-11.073-4.818-5.082-2.914-9.209-6.036-11.62-8.791-2.2-2.512-3.5-6.457-3.88-11.726a43.595 43.595 0 0 1 .087-7.163 4.135 4.135 0 0 1 1.315-.2c1.764.029 3.647.823 6.189 2.574a49.763 49.763 0 0 1 6.49 5.514 99.384 99.384 0 0 1 7.2 7.971l.032.04c.265.475 2.537 4.571 4.307 8.558a27.554 27.554 0 0 1 2.024 5.746c.174.581.174 1.2 0 1.781a.902.902 0 0 1-.385.448c-.139.06-.289.091-.44.09l.004-.003z' fill='%234e5b31'/%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 900 0)'/%3e%3cpath d='m727.132 103.967-2.355.938-.923.368-2.854-.157-2.673 1.283-4.74 3.239-.209.15-1.767.461-1.641-.708-.932.424-.321 1.92-.887 1.379-1.092.767-3.783.387-3.19 1.645-4.15-1.111-1.928.755-4.1 3.692-2.095.992-.732-.042-2.778-.143-1.173.384-1.752 1.693-3.315.258-1.033.715-1.618 3.26-1.753 1.808-1 .212-1.087-.4-.817.144-.37 2.086-.793.874-2.219.764-1.773 1.477-1.556.8-2.084-.052h-.479l-2.076 1.146-3.9.342-1.624 1.549-.358.331-.758.458-1.24.74-.3.184-1.5-.267-1.75.693-.708-1.089-1.211.727-1.6.069-2-.889-1.522-.678-1.113.161-.387 1.94-.039.206-1.17 1.557-2.184 1.323-.3.387-2.485 3.208-4.722 4.966-3.993 2.028-4.139 1.259-2.9 2.38-7.6 3.767-11.995 5.973-2.453.786-3.52.562-6.278 2.312-5.539 1.671-.308.094-1.1.332-7.81 2.363-3.635-.384-2.153.782-5.605-.622-3.9.077-2.467.513-4.637 2.224-7.827 3.762-2.586 2.366-4.027 2.1-4.715 1.493.011-1.981-.028-.084-1.636.517-1.181.373-3.825.59h-2.128l-1.321-.384-.2.069-7.818 2.569-8.719.842-4.363 1.4-3.26-.052-2.038.606-4 .489-1.428-.381-.322-.088-11.75.51-5.372-.607-2.564.583-4.3-1.446-6.269-.727-1.465-.439-3.3-.978-1.491.859-1.116.119-2.667-.967-.96-.024-2.2.8-1.267-.325-1.177-.938-2.761-.411-1.682-1.414-9.4 1.246-2.551-.75-8.554-2.492-1.361.069-1.7 1.271-2.548.929-2.212.575-3.012.1-3.5-.918-3.606-1.748-1.333-.317-2.974.3-.91.082-5.466-2.932-7.042-4.4-4.778-2.3-1.794-.291-.241.853.89 2.8.3 2.774-.091 2.563-.049 1.587.446 1.425 1.725 1.912.719 1.92.526 5.284-.006 5.362-.839 8.551-.283 1.3-1 4.43-.914 4.069-3.546 10.833-.974 1.343-2.391 1.631-5.419 3.688-3.99 2.3-1.263.523-3.239.245-2.018-.1-2.513-1.361-2.467-.635-3.232-2.324-3.6-.744-3.941-2.278-1.026-1.233-2.146-.2-2.976-.893v-.005l-1.093-.327-.755-.22-3.8-.1-3.54-1.634-1.864-.45-2.547-.129-2.666 1.239-1.351.629-1.707-.678-1.235.077-1.4 2.115-.172.323-.964.51-1.2-.017-.939-.025-1.016.444-1.368.593-1.208.527-.59.255-.01-.01-.363.073-.645.112-.8.153-1.41-.824-.75-.442-1.257-.256-.677.489-.133 2.3-.618 1.378-1.961 1.734-1.993 1.755-1.389 2.047-3.676 8.39-2.3 3.385-.715.789-2.418 2.66-2.136 1.657-4.922 3.815-4.659 1.741-4.013.82-1.951.008-3.7-.492-3.323-1.02-3.65-2.282-4-3.217-5.794-5.724-.82-.493-.171-.114-1.825-1.167-1.354.035-.53.874-.29 1.263-.245 1.12-.664 6.367.049.369.349 2.622 4.4 6.15 1.358 3.267.223.373.908 1.525.691 1.163.069.118 1.5 4.488-1.057 2.534.534 1.7-1.336 1.037-.245 1.465 3.951 4.953.862 2.185-.963 3.029-1.536 1.671-.429.457.216 1.28 1.818 1.635 3.089 2.75 1.647 4.086 1.253 1.1 1.456-.31.81.618 1.228-.021 1.208 1.208.782.379 1.236.616.977 1.272.216 3.911 1.822 4.86.028 2.635.01.374 1.134 1.948.356 1.538-.6 4.069 1.445 1.306 1.567-.32 1.012.16 1.626 1.354 1.969 3 1.926-.282 1.222.589 5.9 5.334 1.339.676.074.042.963.483 1.2 1.208 1.856-1.232.206-.021 2.018-.178.886.6 1.7 1.149 2.234-.029 4.844 1.485 2.119.543 4.261 2.648 1.811 1.12 1.072.871 1.424 1.161 2.845 1.224 2.44.584 1.322.314 1 .384.025-.062h.014l-.024.063 5.284 2.023 2.862.668 2.648.975 1.927.7 1.414.023 2-1.682 1.937-.112 1.609.4 1.57-.263 2.485-1.531.485-.719 1.762-.839 5.944-.738 1.737.564 4.46-1.94 2.988.831 2.645-.938 5.779 1.284 1.536 1.081 1.717 1.965.21.009 1.912.037-.8 1.331 2.523 2.647 2.279 3.445.154.455 1.657 4.864 1.232 1.723.862 2.405.042 1.568-1.34 1.022-.22.583-.076.216.272.655.506-.276.963-.533 1.172-.182 2.066.22 1.364.143 2.154-1.069 1.427-.71 2.293.987 2.52-.028 1.058.471 3 1.358 1.529.144.565-.371.36-.856-.185-1L397 377.23l-2.531-2.938-1.036-1.51-.789-2.186-.244-2.796-.174-1.885.314-2.477.68-.884.5-1.968h.009l.129-.515 1.406-1.866 3.724-2.393 4-3.582 3.162-2.085 3.26-1.412.087-.4.363.146 8.292-2.819.137-.016 3.692-.643 24.92 1.755.924-.279v-.006l.83-2.33.447-.432.3-.282 2.74-1.206 1.281-.183 3.556.878 1.456.359 2.332-1.307 1.654.028 3.417-1.866 2.111.053.8-.321 4.112-2.955 3.961-1.135 1.03-.548.363-.2 4.06-2.144 2.579-1.981 2.226-1.183 2.438-.629 6.38-.449 1.283-2.138 2.744-.366 1.657-1.87 1.9-.771 1.359-1.958 1.139-1.641 1.591-.921 5.1-.32 6.045.749.8-.485 1.366-4.875 1.43-.915 3.851-5.612.013-2.045v-1.708l.633-2.432-.43-4.391.51-4.446 2.394-5.65 2.109-2.279 3.4-2.3 1.729-.753 2.449-.412v.001l.36-.061.624-.107 8.433-.116c.117-.087 3.067-.042 3.067-.042l2.812-.038 7.116 1.264.506.088 2.4.779 2.774 2.157 2.938 2.869.551.535 1.9.8.575.251 1.571-.251 2.237-1.165 1.688-1.427 2.3-1.257.056-.08 1.295-1.948.039-.04.028.007v-.011h-.022l.511-.775 4.447-1.733 5.23-.3.588-.318.327-.175 1.382-1.623 1.295-.01 3.135 1.134 2.2-.438 1.75.7 1.36-.161 2.565-.3 2.754 1.937 1.605.2 5.658 3.31.294.048.152.028.324.054.671-.2 1-.289.132-.039.126.175.643.907.882.126 1.044-1.393-.415-.632-.157-.23-2.021-.411-1.815-3.1 1.728-1.861-2.711-3.326-.45-.551-.153-.234-.937-1.423-4.746-7.235-6.182-4.935-2.165-1.732-.014-.01-.758-.6-3.3-3.358-2.358-3.13-.309-.674-.487-1.062-1.413-3.078-2.462-1.9-2.006-2.191-.1-.129-4.14-5.626-.68-.943-.978-.565-2.066-.014-.2-.2-.116-.121.07-.074.991-.985 1.105-.278.476-1.089-2.108-6.1-.014-.213-.157-1.95 1.718-8.855.22-1.079 2.928-5.958 1.814-1.486 1.98-3.892 1.7-2.488 1.625-1.582.284-.168 2.934-1.776 2.465-.347 2.348-.331 4.1 1.264 3.9-.076.761-.081 1.77-.2 2.911-.917 1.374-.848.713-1.093 1.487-4.987.478-1.587.917-1.724 5.306-6.108 4.011-3.71 9.019-6.613 4.415-2.639 2.254-1.347 20.126-8.946 5.23-5.3 2.725-2.758 4.821-3.235 5.641-2.311 4.854-3.842 1.06-1.334 1.336-4.3 1.113-.269 1-2.174.286-.618 3.961-2.792.448-.223 15.388-7.71 2.236.307 1.2-1.793 4.477-.751.824-.14 1.1-.551.939-1.6v-.316l.129-4.273.956-1.155.521-2.816.491-.65.513-.676 1.268-.891-.22-.531.032.031z' fill='%23d57800'/%3e%3c/svg%3e\"},49:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23d7141a' d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M0 0h900v300H0z'/%3e%3cpath d='M450 300 0 0v600z' fill='%2311457e'/%3e%3c/svg%3e\"},7558:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 3'%3e%3cpath d='M0 0h5v3H0z'/%3e%3cpath fill='%23D00' d='M0 1h5v2H0z'/%3e%3cpath fill='%23FFCE00' d='M0 2h5v1H0z'/%3e%3c/svg%3e\"},540:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 10'%3e%3cpath style='fill:%236ab2e7' d='M0 0h15v10H0z'/%3e%3cpath style='fill:%2312ad2b' d='M0 5h15v5H0z'/%3e%3cpath d='M0 0v10l4.33-2.5L8.66 5 4.33 2.5 0 0z' style='fill:%23fff'/%3e%3cpath d='m3.314 3.75.31.955H4.63l-.813.59.31.955-.812-.59-.812.59.31-.955L2 4.705h1.004l.31-.955z' style='fill:%23d7141a'/%3e%3c/svg%3e\"},8280:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 370 280'%3e%3cpath fill='%23c60c30' d='M0 0h370v280H0z'/%3e%3cpath fill='%23fff' d='M120 0h40v280h-40z'/%3e%3cpath fill='%23fff' d='M0 120h370v40H0z'/%3e%3c/svg%3e\"},4944:c=>{c.exports=\"data:image/svg+xml,%3csvg viewBox='0 0 1200 600' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cpath d='M0 0h1200v600H0z' fill='%23006b3f'/%3e%3cpath d='M0 225h1200v100H0z' fill='%23fcd116'/%3e%3cpath d='M0 275h1200v100H0z' fill='%23fff'/%3e%3cpath d='M0 275h1200v50H0z'/%3e%3cpath d='M525 0h100v600H525z' fill='%23fcd116'/%3e%3cpath d='M575 0h100v600H575z' fill='%23fff'/%3e%3cpath d='M575 0h50v600h-50z'/%3e%3cg fill='%23006b3f' transform='translate(600 300)'%3e%3ccircle fill='%23d41c30' r='150'/%3e%3cg id='b'%3e%3cpath id='a' d='M-4.81-118.41 0-132.13l4.37 13.5 14.65.22-11.59 8.85 5.25 15.05L0-103.8l-12.46 8.85 4.81-14.61-11.37-8.63z' stroke='%23000'/%3e%3cuse height='100%25' transform='scale(-1)' width='100%25' xlink:href='%23a'/%3e%3c/g%3e%3cuse height='100%25' transform='rotate(36)' width='100%25' xlink:href='%23b'/%3e%3cuse height='100%25' transform='rotate(72)' width='100%25' xlink:href='%23b'/%3e%3cuse height='100%25' transform='rotate(108)' width='100%25' xlink:href='%23b'/%3e%3cuse height='100%25' transform='rotate(144)' width='100%25' xlink:href='%23b'/%3e%3cg stroke='%23000' stroke-width='2.5'%3e%3cellipse cx='680.21' cy='586.13' rx='30.805' ry='189.82' transform='matrix(.28955 -.03018 .01659 .23226 -186.117 -75.926)'/%3e%3cellipse cx='680.21' cy='586.13' rx='30.805' ry='189.82' transform='matrix(.30626 -.03184 .01669 .23225 -188.733 -74.887)'/%3e%3cellipse cx='680.21' cy='586.13' rx='30.805' ry='189.82' transform='matrix(.245 -.0259 .0179 .25675 -151.947 -90.936)'/%3e%3cpath d='M-44.213 62.565c7.657-.319 4.332-4.416 8.2-6.596 3.864-2.177 9.365-.737 11.015 1.986 1.65 2.722.327 5.397 2.45 5.433 2.126.037 59.928-2.387 62.01-.105 2.085 2.28 2.429 6.776.27 8.524-2.16 1.77-75.235 2.588-77.751.738-2.517-1.824-6.202-9.53-6.194-9.98z' fill='%239c4a00' stroke-width='.657'/%3e%3cg fill='%23fcd116' stroke-width='.633'%3e%3cpath d='M-3.377 68.195c-.139 5.775 8.404 4.14 8.521 8.963-.257 5.114-14.324.313-14.46-9.041.585-9.345 14.354-13.963 14.525-8.625.126 4.435-8.447 2.927-8.586 8.703z'/%3e%3cpath d='M1.664 68.261c-.14 5.776 8.403 4.14 8.52 8.964-.257 5.113-14.324.312-14.459-9.042.585-9.345 14.354-13.962 14.524-8.625.127 4.435-8.446 2.928-8.585 8.703z'/%3e%3cpath d='M7.07 68.058c-.138 5.775 8.404 4.14 8.522 8.963-.257 5.114-14.324.313-14.46-9.042.585-9.344 14.354-13.962 14.524-8.624.127 4.435-8.446 2.927-8.585 8.703z'/%3e%3cpath d='M12.111 68.124c-.138 5.776 8.404 4.14 8.521 8.964-.257 5.113-14.324.312-14.46-9.042.586-9.345 14.355-13.962 14.525-8.625.126 4.435-8.447 2.928-8.586 8.703z'/%3e%3c/g%3e%3cellipse cx='478.38' cy='-41.086' fill='%239c4a00' rx='3.534' ry='3.403' stroke-width='.399' transform='matrix(1.37992 .02078 -.03062 1.45444 -625.227 117.205)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.20742 -.0313 .04226 .39514 -119.978 -293.416)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.20742 -.0313 .04226 .39514 -127.335 -293.996)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.20742 -.0313 .04226 .39514 -132.603 -303.411)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.19943 -.03154 .04632 .43593 -125.407 -340.635)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.1995 -.03084 .04356 .40874 -112.65 -316.232)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.1995 -.03084 .04356 .40874 -118.304 -319.639)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.1995 -.03084 .04356 .40874 -125.437 -324.554)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.1995 -.03084 .04356 .40874 -132.042 -327.532)'/%3e%3cpath d='M-14.734-52.686s-14.655 12.72-13.01 47.144C-25.9 29.078 4.648 45.352 4.648 45.352s7.786-9.827 6.882-37.644C9.347-32.96-5.078-50.929-5.078-50.929z' fill='%239461c9' stroke-width='.575'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.20968 .00618 -.02884 .39634 -45.183 -309.401)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.20968 .00618 -.02884 .39634 -52.319 -311.283)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.20968 .00618 -.02884 .39634 -55.825 -321.487)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.20186 .00451 -.03211 .4372 -42.11 -356.832)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.2018 .00521 -.02998 .40996 -33.907 -330.547)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.2018 .00521 -.02998 .40996 -38.863 -334.906)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.2018 .00521 -.02998 .40996 -45.006 -341.014)'/%3e%3cellipse cx='427.11' cy='905' rx='20.814' ry='24.144' transform='matrix(.2018 .00521 -.02998 .40996 -50.974 -345.121)'/%3e%3cellipse cx='624.42' cy='606.11' fill='%23d41c30' rx='58.28' ry='186.49' stroke-width='1pt' transform='matrix(.19787 -.07643 .08023 .1871 -155.838 -59.213)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.464' transform='matrix(.49828 .00887 -.00657 .36896 -99.51 -162.77)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.546' transform='matrix(.44637 .00795 -.00657 .36896 -84.135 -169.3)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.546' transform='matrix(.44637 .00795 -.00657 .36896 -90.652 -169.416)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.56' transform='matrix(.46714 .00832 -.00617 .34637 -93.888 -166.37)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.56' transform='matrix(.46714 .00832 -.00617 .34637 -94.462 -172.017)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.546' transform='matrix(.44637 .00795 -.00657 .36896 -96.878 -173.22)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.562' transform='matrix(.44637 .00795 -.00644 .36143 -95.469 -176.631)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.464' transform='matrix(.49828 .00887 -.00657 .36896 -114.725 -179.37)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.56' transform='matrix(.46714 .00832 -.00617 .34637 -98.157 -179.081)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.562' transform='matrix(.44637 .00795 -.00644 .36143 -100.291 -183.521)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.546' transform='matrix(.44637 .00795 -.00657 .36896 -110.489 -178.906)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.562' transform='matrix(.44637 .00795 -.00644 .36143 -108.857 -179.772)'/%3e%3cellipse cx='218.13' cy='356.75' rx='10.823' ry='12.905' stroke-width='1.562' transform='matrix(.44637 .00795 -.00644 .36143 -106.807 -183.696)'/%3e%3cellipse cx='528.68' cy='564.48' rx='67.438' ry='205.64' stroke-width='2.545' transform='matrix(.21932 -.07743 .08683 .20202 -145.015 -72.556)'/%3e%3cellipse cx='528.68' cy='646.07' rx='13.321' ry='40.796' transform='matrix(.20574 -.09785 .09471 .21196 -137.122 -77.403)'/%3e%3cg stroke-width='.575'%3e%3cpath d='M31.463 7.799c12.81 15.598 11.193 25.503 9.857 33.883-4.025-9.663-6.223-15.746-19.035-31.347-12.813-15.6-6.418-26.548-5.538-32.316 1.926 4.993 1.903 14.179 14.716 29.78z'/%3e%3cpath d='M32.616 20.398C45.426 35.996 43.81 45.9 42.473 54.28c-4.024-9.663-6.222-15.746-19.035-31.347C10.625 7.334 17.021-3.613 17.9-9.382c1.927 4.993 1.903 14.179 14.716 29.78z'/%3e%3cpath d='M33.002 30.545c13.12 15.323 11.7 25.26 10.532 33.667-4.217-9.576-6.536-15.61-19.658-30.936-13.122-15.325-6.947-26.405-6.183-32.19 2.026 4.95 2.186 14.134 15.309 29.46z'/%3e%3c/g%3e%3cellipse cx='528.68' cy='646.07' rx='13.321' ry='40.796' stroke-width='1.389' transform='matrix(.40784 -.1038 .16694 .37767 -299.57 -196.03)'/%3e%3cellipse cx='528.68' cy='646.07' rx='13.321' ry='40.796' stroke-width='1.64' transform='matrix(.3669 -.0631 .12978 .31265 -259.003 -166.871)'/%3e%3cellipse cx='528.68' cy='646.07' rx='13.321' ry='40.796' stroke-width='1.64' transform='matrix(.36815 -.05532 .12326 .31531 -261.524 -166.82)'/%3e%3cellipse cx='528.68' cy='646.07' rx='13.321' ry='40.796' stroke-width='2.097' transform='matrix(.29658 -.05431 .11151 .23308 -211.07 -135.538)'/%3e%3cellipse cx='528.68' cy='646.07' rx='13.321' ry='40.796' stroke-width='2.097' transform='matrix(.29952 -.038 .0968 .23873 -208.27 -143.865)'/%3e%3cpath d='M8.62-15.768C12.407-6.513 13.94 1.81 12.04 2.81c-1.899.999-6.513-5.7-10.301-14.956' stroke-width='.575'/%3e%3cellipse cx='528.68' cy='646.07' rx='13.321' ry='40.796' stroke-width='2.097' transform='matrix(.29952 -.038 .0968 .23873 -208.894 -154.737)'/%3e%3cellipse cx='528.68' cy='646.07' rx='13.321' ry='40.796' stroke-width='2.097' transform='matrix(.30032 -.0321 .09144 .24056 -212.194 -155.987)'/%3e%3cg stroke-width='.575'%3e%3cpath d='M2.026-28.338c3.678 6.254 5.658 12.094 4.418 13.037-1.238.942-5.227-3.368-8.905-9.622'/%3e%3cpath d='M4.573-32.485C8.25-26.231 10.23-20.391 8.99-19.448c-1.238.942-5.227-3.368-8.905-9.622m15.928-2.537c5.125 8.543 7.883 16.52 6.154 17.81-1.727 1.29-7.288-4.598-12.413-13.14'/%3e%3cpath d='M8.452-36.082c3.693 6.904 5.687 13.348 4.45 14.385-1.237 1.036-5.236-3.727-8.929-10.632'/%3e%3c/g%3e%3cg fill='%239461c9'%3e%3cg stroke-width='.591'%3e%3cpath d='M8.125-46.086c-2.466 2.482-.051 7.123 2.205 8.8 2.53 2.295 16.742 17.287 26.769 4.673-8.034-.146-23.027-19.004-28.974-13.473z'/%3e%3cpath d='M6.369-53.486c-2.465 2.483-.05 7.124 2.206 8.802 2.53 2.294 16.742 17.286 26.768 4.672-8.033-.146-23.026-19.005-28.974-13.474z'/%3e%3cpath d='M4.123-60.576c-2.466 2.482-.051 7.124 2.205 8.801 2.53 2.294 16.742 17.286 26.769 4.672-8.034-.146-23.027-19.004-28.974-13.473z'/%3e%3cpath d='M-.759-68.687c-2.465 2.483-.05 7.124 2.206 8.801 2.53 2.295 16.742 17.287 26.769 4.673C20.182-55.36 5.189-74.218-.76-68.687z'/%3e%3c/g%3e%3cpath d='M-18.272-76.448c5.08-3.78 14.412-4.884 21.681-1.183 6.056 2.966 16.148 15.073 23.735 17.935-5.34.952-8.59.147-12.002-1.492-6.739 4.88-9.14 5.611-16.008 6.57-9.551 1.378-17.48-1.108-20.266-6.09-2.839-4.699-1.615-12.238 2.86-15.74z' stroke-width='.628'/%3e%3c/g%3e%3cellipse cx='287.23' cy='323.04' fill='%23d41c30' rx='14.154' ry='14.986' transform='matrix(.3091 .0055 -.00301 .16933 -95.304 -125.19)'/%3e%3cellipse cx='204.58' cy='348.26' fill='%23fcd116' rx='23.254' ry='15.895' transform='matrix(.2458 -.09144 .08132 .21925 -99.445 -116.289)'/%3e%3ccircle cx='283.9' cy='333.86' fill='%23000' transform='matrix(.2699 .0048 -.00416 .23342 -82.956 -148.374)' r='5.828' stroke='none'/%3e%3cpath d='M-17.128-65.515c.402 1.95-1.043 4.583-4.18 5.515-3.195 1.323-5.618 4.322-7.016 9.227-4.856-11.184-1.77-15.916 3.388-17.066 4.436-1.415 7.11-1.236 7.808 2.324z' fill='%23fcd116' stroke-width='.732'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e\"},7316:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 600'%3e%3cpath d='M0 0h900v600H0z' fill='%23fff'/%3e%3cpath d='M0 0h390v240H0z' fill='%23002d62'/%3e%3cpath d='M0 360h390v240H0z' fill='%23ce1126'/%3e%3cpath d='M510 360h390v240H510z' fill='%23002d62'/%3e%3cpath d='M510 0h390v240H510z' fill='%23ce1126'/%3e%3cpath d='M434.183 245.772c-8.326-.144-16.733 1.755-23.725 6.092-3.214 1.995-3.97 2.666-2.203 5.871-.417.287-3.343 1.181-4.066 1.437-2.677 1.013-5.393 2.032-7.667 3.397-1.383.83-1.961 1.451-3.022 2.553l6.671-.512c-.21.431-.692 1.053-.966 1.467-1.14 1.645-1.848 2.953-2.845 4.675 1.89-1.279 3.59-2.475 5.771-3.542 4.774-2.407 13.357-2.472 16.878-6.7.9-1.068.353-1.706-.404-3.444 2.606-.863 3.586-1.467 6.752-2.186 7.652-1.706 12.925.32 16.622-.59 1.156-.288 2.282-.925 2.362-2.138l-.546-3.86 12.424-.016c.016 2.187-2.089 4.993 1.77 5.998 3.487.909 10.543-1.084 16.635.606l6.752 2.184c-.033.321-.516 1.182-.66 1.63-.289.78-.257 1.195.242 1.753.658.75 1.59 1.5 2.587 2.074 1.977 1.13 4.565 1.85 7.01 2.44 7.023 1.707 7.682 2.153 13.083 5.759-.354-1.053-2.926-4.802-3.778-6.126l6.64.527c-1.143-1.739-4.646-3.573-6.672-4.37l-8.086-2.952c.737-1.41 1.35-2.584.612-3.748-1.125-1.707-7.873-5.023-9.58-5.488a85.494 85.495 0 0 0-8.852-1.903c-2.879-.46-8.411-.857-8.411-.857-.397-.418.762-2.613-1.013-4.148-1.044-.828-2.555-1.116-4.1-1.276-6.17-.59-14.578-.414-20.815 0-1.8.111-3.068.305-4.1 1.277-1.253 1.18-1.413 1.897-1.302 4.116z' fill='%23201b18'/%3e%3cg fill='%23002d62'%3e%3cpath d='M435.915 250.17c.915-.815 1.044-1.053 2.506-1.548 3.183-1.068 8.198-.973 11.558-.973 2.733.015 5.402-.032 8.101.224 2.733.27 4.34.605 6.157 2.184.322-1.898.74-3.524.803-5.614.081-2.248-1.189-2.92-3.183-3.318-3.295-.686-8.824-.622-12.375-.59-2.316.015-10.545.08-12.218.686-1.527.542-2.733 1.738-2.603 3.812.047 1.036.82 4.483 1.254 5.136z'/%3e%3cpath d='M411.7 260.922c.563-.511.177-1.022 2.781-2.473 3.28-1.835 7.877-3.525 11.637-4.275 3.263-.638 6.623-.622 10.03-.367 1.511.112 3.505.352 5 .112 0 0 1.612-.377 2.065-.777.592-.523.555-1.728.555-1.728-1.093-.878-4.212 2.154-7.04 1.197-.917-.302-1.174-1.787-1.529-2.807l-.915-3.478c-5.175-.67-14.049 1.405-18.839 3.542-2.17.957-5.738 2.76-7.072 4.147-1.19 1.212.032 2.984.707 3.876.852 1.105 2 2.412 2.62 3.03zm44.535-9.591c-.29 1.818 1.045 2.344 2.653 2.583 3.326.465 8.31-1.051 14.917.24 2.829.559 5.593 1.5 8.052 2.504.997.414 4.468 2.027 5.176 2.729l1.254 1.5c.354-.192 2.266-2.49 2.652-2.984.74-.942 1.833-2.632.706-3.924-.979-1.133-5.255-3.35-7.151-4.164-2.532-1.086-6.558-2.056-9.68-2.584-3.182-.537-9.526-1-9.526-1s-.405 5.898-2.028 6.391c-3.167.941-4.71-1.706-7.025-1.291z'/%3e%3cpath d='M481.266 258.653c-.209.91-.61.989 1.062 2.377 3.906 3.222 10.479 3.382 14.594 5.152 2.089.908 3.247 1.658 5.095 2.775-.177-.543-2.571-4.003-3.166-4.913 1.832-.032 4.228.144 6.108.256-.095-.064-.145-.16-.257-.256-2.765-2.424-9.806-4.642-13.342-5.806-1.02 1.193-1.996 2.352-3.118 3.525-.434.414-.706.703-1.574.463-1.093-.303-1.946-1.244-2.604-1.835-.643-.574-1.946-1.657-2.798-1.738zm-24.934-7.914c1.994.144 2.267.51 3.778 1.181.61.27 1.383.398 2.17.335 1.077-.08 1.205-.224 1.495-1.07.417-1.21-1.625-2.008-2.572-2.217l-4.388-.653zm-12.698.022-.418-2.394c-1.318-.143-7.426.895-6.976 2.776.224.878.418 1.021 1.383 1.117 2.652.24 3.07-1.419 6.01-1.499zm-31.439 10.527c.885 1.578 3.248-1.244 4.629-2.266.788-.59.885-.575 1.768-.94l-.481-.767c-.756.16-2.654 1.196-3.36 1.58-1.045.573-2.202 1.323-2.556 2.392z'/%3e%3cpath d='M481.439 258.083c.288.143.578.175.915.383 1.977 1.148 4.388 4.227 5.337 3.078.578-.717-1.575-2.186-2.235-2.536l-3.486-1.675a1.988 1.988 0 0 0-.531.75zm-62.781.635c.208.909.61.99-1.062 2.376-3.906 3.223-10.48 3.383-14.594 5.152-2.089.91-3.248 1.66-5.097 2.776.178-.542 2.573-4.004 3.167-4.913-1.832-.032-4.228.144-6.109.255.097-.064.147-.16.259-.255 2.765-2.424 9.805-4.643 13.341-5.806.37.383.674.797 1.012 1.197.418.51 1.64 1.88 2.106 2.328.434.414.706.702 1.574.462 1.094-.303 1.946-1.243 2.604-1.834.644-.575 1.946-1.659 2.799-1.739z'/%3e%3c/g%3e%3cpath d='M419.582 249.718c-.564-.012-1.07.266-1.574.475-.162.048-.586.206-.263.355.25.112.25.432.367.65.135.377.253.757.41 1.127.186.61.414 1.208.641 1.805.04.15-.146.538.173.38.323-.128.654-.235.979-.366a1.851 1.851 0 0 0 1.091-.878c.12-.186.132-.414.192-.624a1.01 1.01 0 0 0-.002-.538c-.04-.26-.059-.532-.187-.767-.133-.333-.273-.679-.544-.923-.231-.254-.5-.486-.829-.595a.94.94 0 0 0-.454-.101zm-.268.393c.383-.022.657.312.834.61.157.306.281.627.424.94.158.495.336 1.01.262 1.54-.059.28-.333.459-.56.607-.248.139-.486-.099-.49-.347-.09-.25-.202-.492-.278-.747-.186-.434-.298-.896-.493-1.326a5.81 5.81 0 0 1-.279-.902c-.07-.293.304-.363.517-.38a.384.384 0 0 1 .063.005zm2.203-1.093c.09.14.313.165.306.37.09.26.183.518.242.787.068.209.105.425.192.628.075.275.158.549.233.825.092.263.194.525.246.8.035.209.194.448.06.646-.085.094-.052.235.094.159.219-.015.404-.151.621-.161.123-.043.421-.043.407-.19-.133-.113-.313-.192-.307-.399-.093-.314-.197-.625-.282-.938-.067-.225-.128-.453-.206-.672-.05-.172-.075-.355-.14-.526a62.622 62.622 0 0 1-.33-1.096c-.06-.152-.105-.302.032-.434.048-.223-.291-.025-.411-.026-.257.053-.502.16-.757.227zm3.666-1.021c-.333-.014-.634.182-.871.398-.25.296-.43.667-.418 1.062-.02.35-.05.707.05 1.048.11.537.375 1.032.706 1.466.229.228.511.4.81.516.255.059.531.08.785.012.423-.137.754-.494.878-.918.103-.29.186-.596.171-.907.007-.295-.103-.575-.153-.862a3.207 3.207 0 0 0-.396-.88c-.182-.245-.418-.446-.634-.656a1.41 1.411 0 0 0-.886-.276l-.04-.002zm-.019.285c.363.054.611.376.733.7.242.471.342.996.495 1.5.067.21.05.435.106.648.042.296.039.616-.088.892-.155.248-.534.326-.758.126-.232-.153-.327-.426-.46-.656-.086-.315-.235-.609-.299-.93-.059-.258-.17-.5-.19-.765-.063-.408-.168-.843-.017-1.245.07-.199.284-.272.477-.27zm2.956-.64c-.152.203-.276.419-.307.67-.052.258.036.516.087.767a1 1 0 0 0 .476.568c.333.242.716.4 1.083.582.246.096.512.248.59.52.059.183.083.393.016.577-.09.203-.288.385-.525.322a.829.829 0 0 1-.596-.266 1.486 1.486 0 0 1-.463-.732c-.096-.186-.283 0-.224.147-.043.21-.083.44-.036.648.139.15.346.217.512.333.218.1.454.185.698.186.229-.034.476-.02.679-.147.224-.111.425-.26.526-.5.136-.28.201-.612.105-.916a1.427 1.427 0 0 0-.863-1.074 5.026 5.026 0 0 0-.756-.344c-.287-.137-.626-.307-.695-.648-.064-.232-.003-.54.247-.633.235-.103.502-.01.68.156.157.135.257.32.341.504-.045.247.343.152.216-.05-.067-.201.213-.5-.054-.626-.215-.127-.44-.25-.694-.275a1.158 1.158 0 0 0-.798.11c-.082.041-.163.085-.246.122zm14.008-5.483c-.373 0-.739.091-1.105.152-.15.113-.515-.026-.541.195a.829.829 0 0 1 .254.534c.049.345-.038.7.06 1.04.016.244-.043.5.055.735.032.366-.05.747.07 1.102.032.229.104.512-.09.692-.205.17.134.258.264.169.262-.03.526-.054.786-.091.197-.053.072-.212-.035-.275-.153-.256-.109-.568-.13-.851-.005-.22 0-.44-.007-.658.257-.128.555-.095.819-.202.498-.115.989-.475 1.082-1.003.104-.47-.111-.975-.476-1.274a1.762 1.762 0 0 0-1.006-.265zm-.084.386c.316-.043.533.257.63.52.075.228.068.474.06.713-.017.368-.343.65-.69.702-.17.022-.473.076-.406-.185-.03-.283-.078-.564-.053-.85-.014-.268-.155-.562-.005-.817.113-.144.315-.042.464-.083zm3.333-.59c-.242-.063-.457.17-.425.403-.068.289-.09.588-.18.87a12.343 12.343 0 0 1-.232 1.254c-.109.513-.186 1.037-.363 1.534-.007.147-.33.329-.15.426.258-.029.518-.014.779-.026.232-.09-.111-.259-.153-.385-.035-.197.017-.403.05-.599.019-.109.027-.235.166-.197l.97-.007c.022.267.179.515.153.787-.066.12-.161.396.081.335.305-.006.603-.101.909-.079.254-.074-.09-.246-.119-.383-.126-.283-.201-.585-.285-.881-.084-.368-.202-.726-.293-1.09-.085-.202-.118-.414-.181-.622a11.659 11.659 0 0 1-.322-1.256c-.015-.137-.295-.064-.405-.084zm-.198 1.008c.189.537.284 1.103.48 1.637.11.195-.09.303-.258.251-.19-.03-.612.179-.616-.128.083-.209.11-.43.147-.65a8.63 8.63 0 0 0 .147-.828c.023-.097.06-.19.101-.282zm3.659-1.149-1.56.018a1.05 1.05 0 0 1-.081.485l-.066.51c.173.029.233-.177.337-.272.16-.166.33-.372.583-.362.13.007.337-.075.283.13.007.217.079.424.059.64.01.96.033 1.92.014 2.88-.005.133-.152.18-.202.296.05.062.31.011.44.03.248 0 .496.007.746-.006.116.025.104-.171-.033-.177-.093-.22-.073-.469-.09-.703-.01-1.03-.045-2.059-.004-3.088.127-.075.29-.154.424-.058.117.07.243.13.356.205l.232.341c-.036.027.25.148.177-.028.012-.197-.084-.375-.09-.57-.036-.153.023-.382-.21-.317-.44-.03-.875.042-1.314.047zm3.558-.117c-.336-.019-.663.085-.999.06-.108-.005-.32.038-.145.142.197.141.135.386.139.591-.022 1.04.03 2.08-.024 3.121-.035.174-.066.365-.235.46.034.137.314.028.443.067.272.008.545.012.817.02-.006-.161-.235-.234-.172-.41l.007-1.446c.235-.072.401.08.415.318.034.218.147.408.234.606.112.216.249.42.402.605.184.151.337.343.542.467.152.054.313.08.47.121.006-.196-.19-.304-.275-.463-.175-.29-.265-.621-.41-.927a2.402 2.402 0 0 1-.194-.634c-.13-.206.128-.179.249-.27a1.262 1.262 0 0 0 .527-.544c.137-.229.123-.505.108-.762-.015-.233-.165-.422-.293-.605-.144-.165-.36-.257-.551-.356a4.126 4.126 0 0 0-.749-.158c-.1-.005-.205 0-.305-.003zm.307.341c.23-.016.434.107.577.275.111.143.15.336.168.517 0 .191.017.391-.033.578-.09.247-.283.485-.56.515-.2.024-.414.068-.61.026-.048-.141-.005-.308-.02-.46 0-.389-.004-.779.012-1.168.024-.273.25-.273.466-.283zm2.78.402c-.007.194-.062.383-.045.578-.01.341-.014.683-.055 1.02-.046.575-.013 1.151-.03 1.725-.036.168-.08.344-.197.475-.07.07-.112.141.022.114.171-.02.33.04.495.066.207 0 .412.013.616.015.202-.061-.111-.155-.084-.281-.103-.237-.046-.497.004-.738.03-.542-.022-1.09.07-1.63.03-.33-.034-.665.026-.994.1-.192-.034-.458.169-.605.044-.081.123-.179-.026-.149-.25-.002-.504.011-.75-.051-.118.007-.403-.093-.41.061.065.13.228.236.195.392zm3.15-.151c-.081.358-.24.694-.328 1.051-.063.217-.145.43-.204.65-.13.343-.22.7-.347 1.047-.136.437-.248.901-.549 1.261-.171.059-.14.346.068.239.204.012.4.08.609.064.166.057.211-.115.055-.182-.197-.155-.215-.43-.09-.631-.006-.249.2-.373.423-.303.252.022.505.075.76.068.008.239.111.467.116.709.04.172-.3.495.008.481.265.029.525.09.792.081.122.008.295-.006.162-.15-.175-.347-.193-.746-.275-1.12-.012-.403-.132-.79-.165-1.19-.072-.405-.184-.806-.199-1.22a2.36 2.36 0 0 0-.11-.59c.022-.166-.102-.25-.253-.2-.159-.015-.312-.085-.474-.066zm.05.951c.12.253.078.538.14.804.048.316.06.638.155.944.09.354-.354.184-.54.165-.168.013-.49.002-.328-.25.07-.181.112-.375.177-.56.055-.18.105-.358.152-.539.148-.15.107-.4.224-.563l.02-.002zm8.003 4.424c.003.198.28.275.227.5-.02.476.002.952.039 1.428.01.728.051 1.456.004 2.183a.38.38 0 0 1-.13.296c-.15.103.09.148.18.128l2.192-.08c.06-.326.143-.651.153-.983-.002-.163-.144-.087-.172.032-.196.279-.464.566-.827.58-.18-.004-.42.065-.554-.08-.066-.175-.047-.372-.067-.555a39.65 39.65 0 0 1-.02-2.943c-.017-.207.095-.386.17-.57zm2.979 4.418 1.18-.004c-.01-.235-.158-.098-.182-.437-.02-.298.019-3.434.048-3.645.057-.388.177-.225.177-.408l-1.16-.03c.003.306.148.03.157.477.004.196-.005.404-.005.598 0 .506.01 2.67-.02 3.008-.023.295-.185.211-.195.441zm1.839-4.525c.045.174.228.293.171.505.01.49-.093.971-.096 1.461a32.664 32.664 0 0 1-.093 1.719c-.03.205-.016.428-.112.615-.087.038-.28.167-.08.204.481.096.98.06 1.459.18.353.087.72-.027 1.03-.197.423-.288.531-.874.41-1.344-.044-.23-.223-.38-.387-.527a16.22 16.22 0 0 0-.42-.37.952.952 0 0 0 .825-.734c.076-.313.026-.68-.216-.912-.072-.083-.136-.18-.246-.22-.179-.104-.358-.212-.568-.237-.554-.1-1.118-.108-1.677-.143zm1.041.409c.23.016.502-.02.661.185.28.3.265.768.09 1.118-.025.153-.205.252-.346.298-.185.046-.378.023-.565.011-.047-.37.047-.743.038-1.116.005-.171.018-.354.123-.496zm-.235 1.946c.332.016.704.07.923.349.206.264.14.618.155.928-.036.394-.42.756-.825.686-.216-.012-.346-.154-.305-.368a11.336 11.336 0 0 1 .052-1.595zm2.14 2.492c.092.16.312.113.464.176.365.08.73.16 1.09.257.312.06.623.129.934.191.057-.242.248-.438.276-.691.133-.179-.146-.295-.23-.11a1.153 1.153 0 0 1-1.09.193c-.257-.01-.436-.229-.345-.477.027-.515.082-1.034.223-1.53.156-.056.359.03.514.093.22.093.333.31.432.51.15.116.14-.24.165-.338.02-.303.062-.606.098-.907-.244.036-.343.428-.64.28-.19-.076-.625.038-.517-.283.03-.357.137-.702.216-1.052.384-.122.808.063 1.042.376.137.123.232.425.365.456.074-.3.022-.612.026-.917-.116-.187-.393-.134-.577-.222-.56-.133-1.115-.296-1.685-.379-.32-.06.109.232.034.39l-.303 2.043c-.08.525-.121 1.056-.23 1.578a.606.606 0 0 1-.262.363zm3.774-3.568c.13.246.145.535.069.8-.137.666-.32 1.323-.415 1.998-.079.404-.154.808-.23 1.21-.036.18-.472.313-.145.427.28.116.577.182.861.281.284.011-.066-.296.024-.451.042-.305.145-.599.171-.905.05-.158 0-.47.235-.472.254.018.121.351.187.515.09.483.227.963.43 1.41.151.292.426.49.692.663.065-.184-.16-.474-.187-.696-.091-.31-.096-.63-.108-.95l-.037-.744c.257-.082.528-.141.732-.33.293-.319.4-.795.286-1.214a1.655 1.655 0 0 0-.82-1.034c-.464-.27-1.016-.285-1.513-.46a1.456 1.456 0 0 0-.232-.048zm1.01.602a.806.806 0 0 1 .744.464c.159.443.104.962-.16 1.353-.159.215-.446.234-.686.173-.207-.01-.476-.077-.347-.34.069-.44.185-.87.253-1.312a.898.898 0 0 1 .196-.338zm1.914 1.452c.207.02.336-.216.535-.257.185-.076.426-.171.59-.005.121.145.039.355-.008.515-.08.274-.135.558-.207.836l-.485 2.038c-.07.186-.07.426-.307.479-.103.212.286.201.414.302.231.101.464.194.71.262-.012-.185-.171-.341-.09-.545.092-.528.249-1.042.363-1.568a39.122 39.122 0 0 1 .485-1.896c.266-.083.485.156.59.372.1.202.152.424.256.624.167-.109.101-.342.128-.51l.049-.5c-.336-.177-.71-.267-1.053-.432-.25-.115-.515-.202-.773-.306l-.82-.318c-.16.228-.213.508-.366.74a.347.347 0 0 0-.01.168zm4.204.84c-.175.113-.237.332-.344.503-.12.21-.286.391-.401.605-.362.586-.717 1.178-1.084 1.762-.153.206-.327.421-.57.524-.16.214.225.243.344.33.118.08.35.279.44.191-.038-.214-.192-.424-.072-.64.096-.168.143-.555.404-.38.251.157.538.263.752.473.07.19-.076.4-.04.605.075.218-.285.36-.191.52.19.145.42.223.62.349.14.058.411.272.333-.014-.01-.292-.07-.592-.007-.88.11-.212.057-.47.083-.702-.002-.32.077-.632.098-.949.053-.521.097-1.043.157-1.564.016-.173.152-.478-.09-.519-.15-.05-.262-.255-.432-.215zm-.3.934c.028.071.084.14.053.22-.061.55-.15 1.096-.19 1.647.006.272-.316-.026-.44-.077-.165-.1-.469-.168-.268-.4.164-.284.397-.523.538-.821.109-.185.245-.36.307-.57zm2.751.57c-.046.272-.008.565-.207.788a5.615 5.615 0 0 1-.446.747c-.16.289-.303.585-.482.863a61.4 61.4 0 0 1-.682 1.128c-.134.034-.388.061-.181.233.163.211.392.359.564.565.256.234.515.468.759.71.386.277.96.408 1.37.105.195-.192.41-.365.58-.58a4.239 4.239 0 0 0 .4-.815c.112-.371.178-.762.132-1.15-.04-.617-.354-1.191-.773-1.633-.244-.244-.512-.466-.76-.706-.103-.07-.181-.17-.274-.255zm.743 1.107c.33.232.545.627.515 1.037-.034.649-.337 1.25-.702 1.772-.199.323-.43.692-.827.778-.302.079-.608-.124-.747-.381-.128-.287.088-.576.202-.83.322-.563.686-1.107.979-1.688.112-.233.246-.47.45-.636.04-.02.081-.06.13-.052z' fill='%23eac102'/%3e%3cpath d='M435.984 348.957c.799.274 2.433 1.036 3.094 1.343 0 0 2.288 4.27 2.257 4.208.869.616.73.48 1.702.72l-5.384 2.223c-1.563.582-.938 1.95-.208 2.224.8.24 2.466-.445 3.057-.719 2.674-1.232 5.104-2.497 7.5-4.037.384-.24 2.155-1.47 2.503-1.403l9.517 5.406c.694.308 2.084 1.198 2.848.65.312-.205.8-.685.625-1.232-.14-.58-.521-.684-.972-.854-.73-.309-5.037-2.259-5.176-2.259l1.147-.308c.347-.24-.252-.95.2-.813l2.37-3.875 2.952-1.06c-.02-2.72-22.224-4.412-28.032-.214z' fill='%23006300'/%3e%3cpath d='M437.527 358.098c-.8.24-.59 1.78 1.008 1.266 1.077-.377.244-1.675-1.006-1.265zm23.62.065c-.244.581-.21.854.347 1.094.59.274.938.274 1.32-.137.52-.512.104-.718-.348-.957-.486-.275-.104-.24-.486-.138-.277.103-.486.07-.833.138z' fill='%23ff0'/%3e%3cpath d='M482.247 269.909c-.07.109-.136.072.075.432 2 4.022 1.29 2.12 2.94 7.364-.316-.323-.738-.896-1.054-1.326-.877-1.185-1.676-2.48-2.412-3.773-.176-.36-.287-.464-.602-.715-.14.395.56 2.508.735 3.084.737 2.586 2.704 5.537 4.142 7.872-.421-.215-.668-.547-1.018-.87-1.263-1.04-.91-.782-1.646-2.075-.701-1.222-1.263-2.522-1.754-3.85a62.435 62.435 0 0 0-1.085-2.723c-.14.18-.038-.145-.142.25-.105.36.031.787.067 1.145.175 1.51.421 3.023.668 4.531-1.018-.43-.761-.504-1.65-1.23-.21-.109-.487-.713-.734-.785l-.847-.998c-.21.54 1.138 3.014 1.489 3.3.427.735 2.233 2.01 2.443 2.513.771 1.797 1.472 3.198 2.663 4.634l1.055 1.362-2.315-2.335c-1.684-1.545-2.348-2.186-4.243-3.695.036.539.702 1.003 1.052 1.327l2.895 3.177c.91 1.185 2.011 2.285 2.818 3.541l1.83 3.085c-.21-.36-.739-1.037-1.02-1.396l-2.8-3.484c-.983-1.186-2.07-2.009-3.333-3.014-1.053-.863-2.474-1.779-2.474-1.779 0 .462 2.355 3.434 4.052 4.328.53.499 1.035 1.024 1.511 1.575.492.54.948 1.011 1.404 1.587.841 1.149 1.676 2.472 2.414 3.729l1.127 1.98c-.876-.32-4.948-4.954-5.93-5.96-.807-.826-1.154-1.298-2.172-1.8.07.503 2.836 3.668 3.467 4.35.28.287.39.463.601.715l1.228 1.404c.807.97 2.278 2.687 2.84 3.764l.843 1.732c-.036-.18-1.65-2.298-1.897-2.55a11.75 11.75 0 0 0-1.052-1.258c-.912-1.005-2.42-2.7-3.506-3.453l-2.808-1.612c-.14.289.46.713.81.999l1.053 1.009c1.263 1.005 2.977 2.945 3.959 4.238.666.79 1.158 1.55 1.72 2.411-.35-.215-.632-.539-.877-.826-.386-.396-.56-.504-.91-.827-.526-.54-1.228-1.039-1.93-1.543l-4.526-2.23c.07.36 1.576 1.29 1.996 1.542.877.574 2.352 1.508 3.124 2.334.35.36.527.617.843.904.666.61 1.161 1.253 1.687 2.008.526.755.979 1.328 1.47 2.12.527.825.84 1.548 1.261 2.445l1.545 5.711c-.49-1.868-1.438-3.922-2.104-5.754-.526-1.4-1.687-4.805-3.475-4.195-.665.251-.98.967-1.261 1.543-.421.789-.986-.29-2.389 2.583-.77 1.616-1.293 3.485-1.645 5.28a1.79 1.79 0 0 0 0 .862c.35-.144.595-1.11.736-1.543.7-1.759 1.406-2.8 2.388-4.452l-1.336 6.072c.455-.07.601-.869.776-1.3.596-1.51 1.118-3.013 1.68-4.523 1.998 1.4 2.633 8.945 2.914 11.638-.211-.933-.983-2.944-1.403-3.842l-2.039-3.377c-1.192.145-1.331 1.65-1.611 2.585-.35-.467-.705-1.252-1.512-1.18-.736.036-1.014.896-1.12 1.723a9.6 9.6 0 0 0 .034 2.652c.036.18.246 1.942.352 2.085l.25.25.418-5.168c.771.358 2.248 3.7 2.037 5.065-.77 4.993-1.234 6.568-3.9 10.697-.455.72-.944 1.473-1.47 2.12-.246.36-.488.685-.769 1.008l-.876.973c1.368-2.37 1.957-3.308 2.94-6.038.7-2.048 1.299-4.2 1.544-6.392.042-.347.03-.698-.033-1.042-.281.107-.354.503-.46.826-2.315 7.185-2.625 7.432-6.414 13.825l.703-4.091c-.351.035-.287.216-.427.611-.105.288-.204.505-.31.793-.525 1.58-1.053 3.121-1.895 4.522.07-.43.311-1.008.45-1.438.387-1.33.633-2.761.844-4.126l.034-.94c-.421-.036-.45.789-.626 1.293-.455 1.472-1.121 2.77-1.787 4.134v-.396c.14-.899.384-2.264.209-3.161 0 0 .136.22-.11-.319-.35.108-.42.788-.492 1.11-.107.425-.235.845-.384 1.258-.876 2.443-1.96 4.019-3.224 6.246-.74-.022-.158.052.167.077-.104-.026-.18-.044-.175-.052.515.072.39.07.175.052 1.048.265 7.025 1.395 7.025 1.395 3.472-.143 5.781-.427 9.22-.068.525.036 2.666.432 2.981.18-1.018-.574-1.993-.828-3.115-1.187l-3.3-.828 9.362-.25-.843-.466c-1.542-.61-5.717-.865-7.365-.972 3.086-.288 5.373-.532 8.46-.569.805-.23 3.552.657 2.346-.577-1.087-.755-4.63-.862-5.787-.827l5.545-.25c.882-.227 6.581 1.101 4.56-.215-1.578-.79-5.056-1.515-6.74-1.765.983-.575 1.863-1.147 2.915-1.576 2.104-.899 4.42-1.544 6.665-2.154 2.471-.385 4.332-1.563 1.085-1.043-1.998.216-4.417.785-6.172.965l1.58-.862c1.542-.79 3.326-1.113 5.01-1.688.316-.108.213.003.317-.284l-.275-.103c-.315-.037-.603.102-.919.137 1.018-.61 3.825-1.187 4.877-1.438a73.75 73.75 0 0 0 3.792-.999c.386-.108.91-.108 1.119-.431l-.242-.147c-.386-.144-7.189.865-7.926 1.008-.666.107-1.935.396-2.497.396 2.07-.861 4.106-1.764 6.281-2.411.385-.108 1.969-.391 2.18-.75-.422-.18-.774-.073-1.37.034-2.035.324-4.001.863-5.93 1.474-.666.215-1.582.571-2.214.714 6.98-2.693 4.32-1.904 10.775-3.16.736-.145 1.332-.075 1.402-.577l-3.716-.217c-1.228.037-2.49.326-3.507.362l2.763-2.334c.773-.647.422-.825 1.754-.86.527-.038 2.141.075 2.457-.104-.948-.97-1.227-.47-2.139-.974l1.128-1.37c.28-.358.558-.678.768-1.145.105-.215.104-.175.033-.319l-.45.07-2.882 2.367c-.491.36-.382.327-1.12.362-1.262.109-2.492.5-3.65.716 1.37-1.078 2.242-1.72 3.752-2.62.666-.43 1.37-.793 2.07-1.188.562-.288 1.966-.752 2.071-1.11l-4.45 1.145c-.878.323-3.3 1.472-3.826 1.903 1.964-2.19 4.976-4.7 7.29-6.46.281-.216.99-.572 1.095-.896-.175-.071-.25-.114-.426-.078-1.228.252-3.997 2.12-4.944 2.731-1.578 1.042-3.3 2.19-4.702 3.411.841-.899 1.617-1.723 2.563-2.55.211-.215.49-.466.735-.646.246-.215.423-.396.668-.611.492-.395.88-.785 1.37-1.18.947-.791 1.89-1.62 2.73-2.481l1.404-1.223c.317-.289 1.263-.86 1.228-1.362-1.929 1.078-3.713 2.257-5.538 3.515-.91.61-1.753 1.258-2.63 1.87-.666.43-2.037 1.686-2.563 1.937 1.087-1.76 2.213-3.59 3.615-5.099 1.72-1.903 3.89-3.88 5.855-5.495.526-.432 1.021-.968 1.512-1.328v-.18c-.456-.036-1.971 1.082-2.322 1.369-2.105 1.545-4.168 3.26-5.921 5.057-.317.323-.562.651-.877.939-.912.862-1.795 2.008-2.53 3.05-.984 1.4-2.038 2.909-2.949 4.418.596-2.73 2.527-4.845 4-6.46l3.367-3.705c.244-.252.357-.43.567-.68 2.248-2.47 3.329-4.386 3.784-7.28-.383.56-.926 1.215-1.78 2.275-.269.314-.5.55-.768.904l-6.832 7.865c.308-1.1 1.65-3.459 2.264-4.402a75.658 75.658 0 0 1 2.689-3.893c.653-.905 3.647-4.802 4.376-5.471l.317-.319c.079-.478.462-.72.961-1.136.56-.467.67-.718 1.336-1.076-.632-.647-2.985.82-3.44 1.145-2.982 2.047-5.117 4.847-7.29 7.65.279-1.51 2.063-5.928 2.904-7.185.702-.933 1.337-2.153 2.038-3.015l1.964-3.093c-.457.036-.98.721-1.262 1.009l-.56.577c-2.63 2.8-4.18 5.923-6.004 9.371.105-1.724 1.654-4.628 2.497-6.03 1.088-1.868 2.31-3.449 3.433-5.246-.633-.18-2.492 2.049-2.808 2.516-.806 1.006-1.611 2.012-2.313 3.162-1.263 2.12-2.49 4.483-3.332 6.891l-.209.508c.141-2.263 2.384-7.656 3.366-9.416.596-1.04 1.227-1.866 1.93-2.764.28-.323.455-.607.701-.93.49-.61.912-1.156 1.403-1.767l1.37-1.825c-.877-.324-4.04 3.268-4.636 4.023-.771.97-1.472 2.042-2.137 3.084.35-1.725 1.65-4.129 2.596-5.566.843-1.293 1.718-2.33 2.665-3.48.31-.355.581-.742.81-1.154-.982-.144-5.015 4.567-5.82 5.608-.351.467-.638.894-.953 1.361l-1.328 2.12c-.07.143-.111.215-.218.395l-.275.362c.211-1.653 1.194-5.107 1.72-6.616.737-1.94 1.748-3.695 2.59-5.6-.702-.107-2.028 1.692-2.414 2.267l-1.578 3.015c.175-1.4 2.344-6.284 3.081-8.079-.421.107-.699.751-1.085 1.325-.982 1.545-1.861 3.054-2.773 4.634.14-1.58 1.16-3.234 1.862-4.6-1.299.575-3.474 5.213-4 6.686-.245.61-.493 1.323-.669 2.006l-.275.724c-.07-3.556.66-7.188 1.186-10.673-.316.072-.386.435-.527.758l-.384.897c-.21.646-.455 1.254-.701 1.972l-1.019 4.239c-1.51-2.12-1.888-6.031-4.87-10.45-.946-1.4-1.267-1.548-2.53-2.446zm1.587 42.39c1.226 3.412 1.718 4.598 2.63 8.226a.84.84 0 0 0-.35.353c-.141.36-.281 1.013-.527 1.516l-.91-3.162c-.351-1.149.144-3.489-.244-3.884-.35.61-.246.721-.316 1.834-.21-.252-.42-.967-.56-1.326-.7-1.94-.806-1.368-.35-2.481.14-.323.345-.932.626-1.077z' fill='%23006300' stroke='olive' stroke-width='.283'/%3e%3cg fill='%23008f4c'%3e%3cpath d='M493.057 306.366c.453-4.74 6.302-15.95 8.018-16.19.258-.036-1.923 3.126-3.438 6.253-1.515 3.128-3.13 7.218-3.667 9.117-.503 1.88-.963 3.307-1.006 3.222-.043-.083-.008-1.17.093-2.403zm12.72-2.92c-.017.091-1.075 1.143-2.4 2.33-4.428 4.134-9.586 11.362-11.955 17.195-2.516 6.244-1.88 4.663-1.14 1.628 1.923-6.55 7.18-14.855 12.075-18.899 1.72-1.455 3.483-2.588 3.42-2.253zm-14.723-10.653c.006-4.323.413-5.83 2.897-11.02 1.589-3.33 2.188-4.423 2.363-4.172.11.183-.033.784-.333 1.362-1.47 2.84-3.873 10.947-4.286 14.49-.142 1.187-.353 2.185-.458 2.19-.116.028-.197-1.252-.182-2.85zm-7 24.14c.279 3.364-.28 7.19-1.761 11.04-.893 2.305-4.413 7.632-5.252 7.973-.412.16-.311-.062.617-1.14 3.684-4.362 6.134-10.84 6.183-16.802-.21-3.236.017-3.664.214-1.07z'/%3e%3cpath d='M494.773 312.864c.504 1.513.575 5.08.029 6.92-1.325 4.45-4.492 7.706-9.005 9.281-.886.297-1.65.52-1.71.462-.04-.038.64-.43 1.547-.839 5.63-2.64 9.14-7.963 9.18-13.905.007-1.108-.217-1.648-.28-1.925-.102-.46-.203-.817-.056-.935.077-.06-.075-.167.295.94z'/%3e%3cpath d='M507.088 322.335c-.061.055-2.512.514-5.435 1.026-2.923.494-6.71 1.21-8.378 1.576-2.574.552-3.09.625-3.252.4-.1-.152-.183-.303-.182-.36 0-.112 7.946-1.54 12.454-2.214 3.272-.49 5.04-.652 4.794-.428zm-23.118-49.624c1.876 2.264 2.318 3.24 3.273 7.105.617 2.476.778 3.325.577 3.275-.135-.044-.321-.426-.417-.865-.466-2.166-2.73-7.52-4.055-9.564-.441-.688-.764-1.307-.712-1.358.049-.069.648.564 1.334 1.407z'/%3e%3cpath d='M481.934 275.481c.89 2.833 1.466 3.733 4.159 6.594 1.724 1.838 2.34 2.424 2.404 2.222.034-.145-.183-.507-.497-.822-1.546-1.54-4.783-6.333-5.781-8.567-.337-.748-.68-1.355-.748-1.335-.083.006.126.864.465 1.91zm16.813 8.79c-2.978 2.726-7.804 11.444-7.1 12.802.109.203 1.35-1.8 2.698-4.473 1.348-2.675 3.298-5.91 4.309-7.258 1.016-1.314 1.75-2.368 1.67-2.357-.077.011-.796.59-1.577 1.285zm1.343 2.226c-3.326 3.045-8.718 12.784-7.93 14.301.12.227 1.505-2.01 3.012-4.997 1.506-2.987 3.684-6.6 4.813-8.107 1.137-1.468 1.955-2.645 1.868-2.633-.088.014-.89.658-1.764 1.436zm-19.081-8.928c.525 2.93.983 3.897 3.294 7.094 1.479 2.053 2.017 2.716 2.105 2.525.052-.138-.118-.528-.39-.88-1.34-1.736-3.948-6.92-4.656-9.267-.24-.788-.503-1.436-.574-1.426-.083-.004.017.874.22 1.953z'/%3e%3cpath d='M485.557 283.401c2.363.776 3.176.99 3.14.781-.038-.143-.395-.357-.817-.48-2.098-.565-8.002-3.227-8.094-4.261-.265-.379-1.26-1.875-1.26-1.875s5.089 5.152 7.03 5.835zm20.22 10.33c-4.524 3.14-12.621 14.071-11.903 16.046.11.298 2.15-2.188 4.453-5.565 2.304-3.377 5.524-7.402 7.136-9.044 1.614-1.593 2.794-2.886 2.686-2.886-.108.001-1.186.65-2.37 1.448zm-.691 6.69c-1.976 3.972-9.566 11.578-11.143 11.18-.237-.063 1.47-1.954 3.834-4.142 2.364-2.19 5.137-5.182 6.24-6.647 1.065-1.46 1.942-2.542 1.95-2.455.01.09-.384 1.025-.882 2.064zm-26.677 27.411c-.81 3.916-5.655 12.334-7.111 12.37-.22.003.83-2.046 2.38-4.513 1.55-2.465 3.273-5.727 3.895-7.262.59-1.52 1.104-2.669 1.132-2.595.029.074-.1.98-.296 2zm12.4-23.522c-.792-2.508-3.022-5.528-6.105-8.264-3.096-2.783-4.042-3.227-1.32-.619 2.51 2.386 5.65 6.64 6.774 9.18.478 1.03.944 1.853 1.046 1.781.13-.06-.047-.989-.394-2.078zm2.334 31.832c-3.481-1.016-12.418-.913-13.128.143-.106.16 2.008.231 4.688.105 2.68-.126 6.07-.05 7.575.122 1.483.19 2.633.285 2.587.234-.044-.05-.823-.33-1.723-.604zm-3.824 1.545c-3.518-.875-12.444-.41-13.113.675-.1.163 2.016.148 4.689-.086 2.672-.234 6.062-.296 7.575-.185 1.487.13 2.64.178 2.593.13-.048-.05-.836-.297-1.744-.534zm-3.932 1.906c-3.538-.78-12.45-.078-13.09 1.022-.096.167 2.02.096 4.684-.21 2.666-.304 6.053-.456 7.568-.384 1.49.09 2.643.108 2.596.06-.05-.048-.844-.273-1.758-.488z'/%3e%3cpath d='M483.064 341.831c-3-1.13-10.774-1.323-11.42-.29-.095.154 1.74.296 4.074.26 2.334-.039 5.28.15 6.586.371 1.283.24 2.28.372 2.243.32-.038-.053-.708-.356-1.483-.66zm13.893-11.027c-7.338 2.087-16.204 3.357-16.712 5.114-.073.264 3.239-.273 6.498-1.565 3.258-1.293 7.463-2.603 9.38-2.993 1.894-.354 3.379-.773 3.339-.965-.075-.052-1.302.415-2.506.41zm9.567-4.708c-.074.066-2.988.611-6.464 1.22-3.477.587-7.981 1.438-9.966 1.876-3.06.655-3.673.741-3.866.473-.122-.18-.217-.359-.217-.426 0-.134 9.45-1.833 14.81-2.634 3.893-.586 5.997-.777 5.7-.51z'/%3e%3cpath d='M504.254 324.2c-.056.061-2.45.765-5.31 1.571-2.863.788-6.564 1.882-8.188 2.417-2.508.81-3.014.933-3.197.724-.117-.14-.211-.282-.217-.337-.01-.113 7.762-2.338 12.183-3.465 3.21-.82 4.955-1.16 4.728-.91z'/%3e%3cpath d='M502.442 315.56c-5.07 2.074-15.24 10.972-14.946 13.06.047.314 2.553-1.665 5.502-4.459 2.949-2.793 6.926-6.019 8.84-7.268 1.906-1.2 3.328-2.204 3.22-2.227-.104-.023-1.292.374-2.615.893z'/%3e%3cpath d='M506.204 317.988c-5.055.333-16.53 5.497-16.86 7.574-.048.313 2.719-.757 6.107-2.457 3.388-1.699 7.804-3.477 9.843-4.045 2.019-.525 3.555-1.019 3.468-1.074-.086-.056-1.245-.063-2.558.003z'/%3e%3cpath d='M506.044 318.553c-12.933 10.868-20.2 16.18-22.78 15.057-.386-.173 4.753-3.124 9.146-5.934 4.395-2.81 9.628-6.794 11.762-8.82 2.069-2.03 3.749-3.508 3.749-3.363 0 .145-.841 1.536-1.877 3.06zm-13.84 3.398c2.608-4.243 3.915-5.46 9.477-8.968 3.566-2.255 4.812-2.944 4.833-2.585-.005.248-.506.747-1.146 1.124-3.154 1.847-10.393 8.272-12.932 11.486-.855 1.078-1.663 1.921-1.767 1.86-.133-.046.558-1.357 1.536-2.916zm1.418-12.22c.453-4.738 8.567-20.568 10.282-20.81.258-.035-1.922 3.127-3.437 6.254-1.515 3.128-3.13 7.22-3.67 9.117-.502 1.88-3.467 8.772-3.51 8.69-.043-.084.234-2.019.334-3.25zm-3.42-18.259c-1.363-3.216-1.407-4.448-.413-8.989.633-2.913.922-3.89 1.188-3.752.173.107.212.593.077 1.105-.661 2.515-.647 9.203.036 11.951.226.923.317 1.722.208 1.754-.114.053-.606-.877-1.096-2.069zm2.482 17.365c-.714-2.257-2.72-4.977-5.496-7.44-2.79-2.505-3.64-2.906-1.187-.558 2.259 2.15 5.084 5.977 6.096 8.267.43.926.852 1.668.944 1.602.116-.053-.043-.89-.355-1.87zm-12.432 3.643c2.553-9.193 4.577-7.6 4.577-7.6 5.588 5.264 2.843 23.352 2.843 23.352-.048-37.02-7.42-15.752-7.42-15.752z'/%3e%3cpath d='M482.318 311.841c2.554-9.193 3.23-8.794 3.23-8.794 4.624.943 4.334 21.217 4.334 21.217-2.023-34.785-7.564-12.424-7.564-12.424zm-2.44 7.138c-.101-6.603 1.203-5.615 1.203-5.615 3.738 3.345 5.127 16.195 5.127 16.195-5.802-25.949-6.33-10.58-6.33-10.58zm11.336-19.4c-1.122-3.547-4.586-7.214-8.147-11.864-4.381-3.938-5.72-4.566-1.867-.877 2.545 1.543 7.543 8.806 9.092 13.163.677 1.458 1.337 2.622 1.48 2.52.186-.086-.065-1.4-.558-2.942z'/%3e%3cpath d='M490.84 296.47c-.862-2.73-3.102-6.235-6.46-9.215l-2.04-1.92c2.012 2.396 6.566 8.69 7.79 11.458.523 1.121 1.03 2.02 1.14 1.94.144-.066-.05-1.077-.43-2.265zm-18.6 36.593c-.265 2.005-2.4 6.436-3.133 6.512-.11.01.344-1.064 1.035-2.368.692-1.302 1.44-3.014 1.698-3.81.243-.79.46-1.39.478-1.354.016.036-.015.5-.078 1.02zm-1.842 1.162c-.265 2.005-2.402 6.436-3.134 6.511-.111.012.344-1.064 1.035-2.367.692-1.304 1.44-3.015 1.698-3.812.244-.79.46-1.389.477-1.353.017.036-.014.5-.076 1.02zm2.78.148c-.266 2.006-2.4 6.437-3.133 6.512-.111.011.344-1.063 1.035-2.367.692-1.303 1.44-3.015 1.698-3.812.243-.79.46-1.388.477-1.353.017.037-.015.5-.077 1.02z'/%3e%3c/g%3e%3cpath d='M404.997 283.802c.013.992.286 1.25.727 1.877l.112-1.942c-.364-.222-.504-.035-.84.065z' fill='%2300873f'/%3e%3cg transform='translate(-82.672 -25.552) scale(1.06534)' fill='none' stroke='%23006300' stroke-width='.627'%3e%3cpath d='m455.17 303.94-.866-.693m1.776-4.627c-.693-.996-.736-.996-.736-.996m-1.774 13.456c-.26-2.12-1.472-2.727-1.472-2.727m11.342 29.987c-5.4-5.97-7.165-16.77-7.165-16.77 1.765-4.518 4.102-5.557 4.102-5.557m-4.097 5.507c-1.765-6.957-1.325-14.228-1.325-14.228.623-8.93 3.454-16.822 3.454-16.822m-3.509 19.31c1.432-6.536 6.87-5.746 6.87-5.746'/%3e%3cpath d='M454.83 310.99c4.883-1.983 4.3-6.288 5.177-8.04 1.321-2.644 2.276-3.415 2.276-3.415M459.7 332.37c-1.661-4.206.312-4.984.312-4.984m-.982 3.634c-2.13-2.752-4.83-2.543-4.83-2.543m3.89-10.277c1.298-2.388-.052-4.78-.052-4.78m.692 16.3-3.798-4.925m2.278-30.435c.514-1.946-1.028-2.827-1.028-2.827'/%3e%3cg transform='translate(442.052 224.217) scale(.1567)'%3e%3cpath d='M91.376 425.97a5.975 5.975 0 1 1-11.95 0 5.975 5.975 0 0 1 11.95 0z' id='a' fill='red' stroke-width='2'/%3e%3c/g%3e%3cuse height='100%25' width='100%25' transform='matrix(.1567 0 0 .18128 444.567 235.353)' xlink:href='%23a'/%3e%3cuse height='100%25' width='100%25' transform='translate(443.685 248.32) scale(.1567)' xlink:href='%23a'/%3e%3cuse height='100%25' width='100%25' transform='translate(439.992 252.043) scale(.16899)' xlink:href='%23a'/%3e%3cuse height='100%25' width='100%25' transform='translate(438.744 256.228) scale(.16899)' xlink:href='%23a'/%3e%3cuse height='100%25' width='100%25' transform='translate(440.286 257.844) scale(.16899)' xlink:href='%23a'/%3e%3cuse height='100%25' width='100%25' transform='translate(463.222 286.05) scale(.12289)' xlink:href='%23a'/%3e%3cuse height='100%25' width='100%25' transform='translate(464.293 287.305) scale(.12289)' xlink:href='%23a'/%3e%3cpath d='M458.76 316.61c-.22-.955-1.101-1.248-1.101-1.248M472.4 339.53c1.591 1.163 2.081.428 2.081.428'/%3e%3c/g%3e%3cg fill='%23006300'%3e%3cpath d='M422.703 339.796c-1.044-3.718-.783-4.565-.783-4.565m-8.113-2.136s-.621-1.45.393-2.28c.6-.492 3.2.922 4.535-4.878 0 0-.81-.094-2.67.748v-.46s-.414-1.292-.23-2.906c0 0 .886-1.36.914-1.909 0 0-1.676-.62-4.95 3.592 0 0-.298-.9-2.696-2.513 0 0-1.3 3.68-.645 5.764.508 1.618.545 2.192 2.26 3.367 0 0 1.382.6 1.566 2.444.646 0 1.488-.11 1.488-.11s.08.018.035-.859zm-2.44 4.293c-.53.3-.766.572-1.706.692-4.224.541-6.594-5.026-6.594-5.026-.14-1.107.37-.522 1.245-.208 1.153.415 1.496.09 2.79-.069 1.706-.207 3.62 1.476 3.62 1.476 1.083.945 1.176 2.836 1.176 2.836-.116.3-.531.3-.531.3zm-5.017-10.046c-4.418-1.875-7.043.23-7.043.23-.163.276.261.406.261.406 2.771.342 1.88.213 3.032 1.793 1.973 2.706 5.46 2.135 5.46 2.135.719.163 1.436 1.028 1.436 1.028-.293-2.413-3.146-5.592-3.146-5.592zm-7.65-17.493c-.848-.588-.656.587-.656.587-1.826-3.196-6.647-3.44-6.647-3.44-.394-.019-.624-.318-.624-.318-.806 0 .185 1.613.185 1.613 1.452 3.873 2.835 4.312 2.835 4.312-1.646.94-4.281-1.105-3.689.391 2.56 2.697 4.288 3.066 4.288 3.066 3.229.785 4.658 0 4.658 0 .738 1.338 1.222 1.522 1.222 1.522 2.928.877 3.573 2.56 3.573 2.56 0-3.205-1.205-7.158-1.205-7.158-.916-1.375-3.94-3.138-3.94-3.138z'/%3e%3cpath d='M421.499 340.903c-1.565.49-1.696 1.598-1.696 1.598-1.532 2.086-7.042.1-7.042.1-1.696-.459-1.37-.915-1.37-.915 1.532-.782 2.054-1.4 2.054-1.4-2.934-2.642-3.358-6.066-3.358-6.066 4.565-.913 5.967-.065 5.967-.065-.294-1.762-1.793-1.794-1.793-1.794-.36-.555.424-.587.424-.587 4.01.392 6.162 2.902 6.162 2.902 1.5 2.12 1.043 4.206 1.043 4.206.359 2.12-.391 2.022-.391 2.022zm-18.633-18.387c-2.22-.653-3.504.07-3.504.07-1.153.46-3.252-.877-3.252-.877-2.766-2.304-3.296-3.734-3.296-3.734 0-.415 2.442-.322 2.442-.322 3.22-.078 3.954.583 3.954.583 1.663.945 1.491 1.812 2.086 2.16 1.436.84 1.665 1.23 1.665 1.23.407.556.584 1.09-.095.89zm4.304 1.13c1.52-1.754 3.596-.554 3.596-.554 3.182.37 4.196-3.227 4.196-3.227.738-1.476 1.292-2.168 1.292-2.168.184-.83-1.384-.138-1.384-.138-2.72.691-2.813.968-2.813.968.462-4.289.462-4.334.462-4.334.045-.692-.738-.184-.738-.184-3.92 2.26-4.38 3.918-4.38 3.918l-1.615-3.043c-.507-1.245-.876.14-.876.14-.738 3.688-.461 4.011-.461 4.011.508 1.982 1.015 2.535 1.015 2.535.92 1.2.92 1.66.92 1.66z'/%3e%3cpath d='M430.234 333.734c-.62.163-2.25 2.74-2.25 2.74-1.956-3.685-4.564-4.273-4.564-4.273-.522.23.065 1.077.065 1.077.782 1.956-.131 3.488-.131 3.488-.293 1.435.033 1.76.033 1.76-3.097-1.597-3.293-1.434-3.293-1.434-.034 1.99 2.348 5.706 2.348 5.706 5.15-1.37 5.542-1.27 5.542-1.27 1.924-.294 1.875-.328 1.875-.328 1.548-4.433.375-7.466.375-7.466zm-25.248-20.284c1.988.978 2.12 2.282 2.12 2.282.52 1.696 5.15 2.086 5.15 2.086 3.783-.39 3.39-1.075 3.39-1.075-2.183-1.923-1.555-1.77-2.476-2.675-1.65-1.613-3.815-1.662-3.815-1.662-2.902.457-3.521-.13-3.521-.13-1.044.555-.848 1.173-.848 1.173zm-4.486-6.648c-.934-3.408 2.153-7.63 2.153-7.63 2.575 4.795 2.086 6.13 2.086 6.13-.913 3.196-2.176 5.543-2.176 5.543-.472-2.413-1.72-2.793-2.063-4.043z'/%3e%3cpath d='M398.849 308.134c-3.265.093-6.379-3.605-6.379-3.605 4.869-1.262 5.962-.53 5.962-.53 2.669 1.52 4.5 3.17 4.5 3.17-2.27-.105-2.885.931-4.082.965z'/%3e%3cpath d='M396.335 303.543c-2.075.322-3.873-1.707-3.873-1.707-2.767-3.689-1.845-4.887-1.845-4.887.23-.139.554.322.554.322.876.784 2.443.968 2.443.968-4.426-2.766-1.521-8.9-1.521-8.9.554-.599.738.877.738.877.6 1.615 2.351 2.582 2.351 2.582.922 1.245.922 1.753.922 1.753.461-2.076.97-1.522.97-1.522.552 1.66 2.388 2.821 2.627 3.965.646 3.09.139 3.505.139 3.505-.37 1.797-.393 3.158-.393 3.158-1.682-.62-3.112-.115-3.112-.115zm10.42 7.425c1.06-1.43 0-4.104 0-4.104-.415-2.859 3.873-5.58 3.873-5.58 1.245 2.306 1.106 3.69 1.106 3.69 3.274-.784 4.012-1.015 4.012-1.015.138 1.844-1.614 4.52-1.614 4.52 2.675.782 3.596-.508 3.596-.508-1.29 5.948-6.962 4.75-6.962 4.75-2.352-1.522-4.011-1.754-4.011-1.754z'/%3e%3cpath d='M397.86 293.624c.324-3.587.977-3.718.977-3.718.386.143.576 1.737 1.092 1.976 2.248 1.036 2.234 3.438 2.234 3.438-.066 2.868-.482 2.61-.482 2.61-3.136-.04-3.822-4.305-3.822-4.305zm10.375.715c1.095-4.066.433-4.474.433-4.474-.48 0-1.334 1.672-1.998 1.724-2.885.225-3.842 2.864-3.842 2.864-1.091 3.174-.53 3.06-.53 3.06 3.456 1.226 5.548-1.73 5.937-3.174z'/%3e%3cpath d='M397.997 286.901c.38-4.192 1.142-4.346 1.142-4.346.451.167.673 2.031 1.278 2.31 2.628 1.21 2.613 4.016 2.613 4.016-.075 3.355-.561 3.054-.561 3.054-3.667-.046-4.607-3.542-4.472-5.034zm11.708 1.001c1.187-4.04.533-4.46.533-4.46-.48-.012-1.371 1.64-2.035 1.677-2.89.162-3.906 2.78-3.906 2.78-1.162 3.147-.6 3.045-.6 3.045 3.43 1.303 5.586-1.604 6.008-3.04zm4.816 11.294c3.334-2.57 3.055-3.296 3.055-3.296-.383-.292-2.076.522-2.634.16-2.432-1.568-4.793-.049-4.793-.049-2.79 1.863-2.275 2.112-2.275 2.112 2.006 3.07 5.46 1.986 6.647 1.073z'/%3e%3cpath d='M414.414 301.401c3.176-1.457 3.066-2.06 3.066-2.06-.266-.284-1.795.078-2.195-.287-1.741-1.587-3.94-.786-3.94-.786-2.608 1-2.225 1.27-2.225 1.27 1.138 2.675 4.164 2.381 5.293 1.863zm-10.952-19.25c-1.265-3.763 2.544-8.739 2.544-8.739a50.635 50.635 0 0 1 1.238 4.173c3.027-3.074 5.712-3.548 5.712-3.548l-.103 2.375c2.022-.196 2.87-.652 2.87-.652-.436 3.015-4.24 6.064-4.24 6.064-1.435.913-3.196.587-3.196.587-2.754.783-3.398 2.657-3.398 2.657-.27-1.63-.46-.042-1.427-2.919zm5.55 12.58c1.707-2.259 4.428-1.29 4.428-1.29 2.443.184 4.519-2.353 4.519-2.353 1.106-1.798 1.797-2.213 1.797-2.213-.092-.599-.691-.507-.691-.507-1.476.323-1.476.37-1.476.37 1.108-4.104.508-4.288.508-4.288-.37 0-.6.276-.6.276-.645 1.89-3.273 1.798-3.273 1.798-.138-2.72-.74-2.352-.74-2.352-.414.692-1.29 1.107-1.29 1.107-2.582 2.582-2.582 3.69-2.582 3.69.139 3.042-.6 5.764-.6 5.764z'/%3e%3c/g%3e%3cg fill='%2300863d'%3e%3cpath d='M408.523 309.657c.344-.393 1.12-.985 1.714-1.32.595-.343.406-.2.693-.85.266-.614.188-.477.615-.9l-.377 1.15c.602-.344.826-.536 1.672-.993.07.337-.552.636-1.064.971a28.29 28.29 0 0 1-1.323.85l-2.308 1.956c2.183-.506 1.79-.142 2.883-.322 2.337-.384 3.443-3.69 4.233-5.618-1.602.3-3.26.657-4.436 1.45-1.505 1.013-1.393 1.934-2.302 3.626zm-5.966 8.331c-.14-.356-.546-.949-.77-1.343-.623-1.113-.693-1.44-1.504-2.712-.518-.82-.329-.393-.666-1.306.308.022.736.95 1.085 1.328l-.006-1.35c.37.03.266.357.286.764.07 1.32-.056 1.092.756 2.542l1.644 2.705c-.097-.428-.308-.807-.427-1.248-.483-1.765.623-3.862-3.736-6.454l-1.078-.657c.078 2.141.315 5.675 2.282 6.781.342.193.74.28 1.112.428.399.172.679.366 1.02.522zm-1.011-26.814c-.162-.549-.418-1.035-.585-1.65-.156-.555-.067-.426-.456-.7l-.51-.622.643.328a4.152 4.152 0 0 0-.516-1.006c-.403-.575-.222-.192-.638-.938.745-.082 1.531 2.13 1.698 2.704.51 1.706.49 1.5 1.498 2.87-.007-.233-.37-.65-.464-1-.269-.938.745-2.21-.255-4.218-.597-1.206-1.832-1.404-2.436-2.418l-.53-1.04c-.196.362-.498 1.794-.524 2.266-.088 1.472.268 3.404 1.288 4.384.37.348 1.283.848 1.787 1.04zm5.56-10.622c.21-.15.615-.72.98-1.035l1.064-.892-.161-.986c.21.071.125-.093.335.672.273-.243.91-1.314 1.19-1.743.21.293-.413 1.2-.602 1.485-.31.493-.602.844-1.057 1.192l-2.036 2.5c.426-.136.74-.286 1.203-.378 1.323-.265 1.833-.38 2.758-1.858.874-1.39 1.112-3.105 1.462-4.71-1.89.756-3.884 1.52-4.864 3.29-.364.65-.203 1.207-.273 2.463zm-11.921 17.866c-.54-1.392-2.022-3.027-2.183-3.734l-.218-1.656c.309.043.169-.078.26.214 0 0 .083.936.195 1.2l.672 1.206c.029-.807-.105-.407.21-1.099.322.413-.175 1.128.308 1.935.252.421.595 1.084.91 1.45-.015-1.15.777-2.92-.525-4.599-.455-.578-.988-.779-1.554-1.257l-1.092-1.72c-.88 1.871-.713 5.675 1.05 6.94.336.242.644.328 1.008.527.189.107.308.171.49.286.167.107.293.214.469.307zm8.522-7.425c.762-.626.522-.875 2.293-2.206.437-.328.757-.697 1.135-1.115.543-.593.36-.473 1.085-1.173.18.317-.99 1.53-1.357 1.976l.71.085c-.113.423-.51.11-1.085.267-.518.13-1.887 1.69-2.265 2.086.34-.098.65-.24 1.06-.319 1.098-.215 1.784.078 2.968-1.435.996-1.263 1.35-2.854 1.837-4.4-1.518.357-3.351 1.128-4.2 1.957-1.215 1.174-1.113 2.18-1.574 3.23-.182.404-.44.676-.607 1.047zm-5.923 11.441c-.175-.256-.77-.713-1.063-.928-.61-.436-.686-.442-1.532-.507l-2.541-1.406c.315-.164.476.207 1.07.522l1.19.514-.147-.657c.224.014.245.05.344.293l.069.421c1.14.092.958.113 2.093.835-.127-.514-.197-.486-.519-.744-.28-.22-.343-.39-.566-.699-.357-.493.041.23-.567-.692-.987-1.485-2.072-.835-2.77-1.014l-1.813-.743a7.01 7.01 0 0 0 2.134 3.898c.476.443 1.029.95 1.903 1.1.273.043 2.365-.129 2.715-.193zm-1.022 9.483c-.358-.35-.756-.644-1.183-.958-.308-.222-.462-.193-.882-.235l-.818-.279.923-.035c-.105-.072-.294-.243-.426-.35-.652-.52-.777-.515-1.198-1.143.182-.17.302.043.554.236.748.585 2.204 1.756 2.932 2.255l1.357.75c-.063-.727-1.302-3.069-2.324-3.52l-4.534-1.24c.232.762 1.358 2.876 1.827 3.511 1.322 1.8 1.462 1.2 2.421 1.057.49-.07.868-.036 1.35-.05zm2.172-10.218-1.716-5.68c.312.102.27.481.454 1.12l.455 1.175c.227-.494-.094-.068.397-.844.218.25-.036.788-.129 1.106-.174.6-.16.377.078.99l.81 2.1c.04-.474-.005-.729.083-1.218.259-1.374.476-2.139-.177-3.573-.57-1.258-1.52-2.18-2.404-3.162-.132.24-.402 1.877-.457 2.272-.214 1.46-.094 3.454 1.068 4.398.916.753.383.158 1.538 1.316zm3.388 7.351c.035-.586-.063-3.29-.042-4.519 0-.264.015-.52.015-.785.006-.414-.036-.278.188-.586.1.144.117.308.111.515l-.026 1.863.538-.914c.344.128.049.471-.104.792-.127.25-.407.721-.449.957l.09 2.67c.016-.022.037-.07.043-.057.028.042.295-.693.455-.957.553-.943 1.197-2.29.93-3.498l-1.49-4.29c-.314.527-.7 1.413-.959 1.991a9.153 9.153 0 0 0-.678 2.364c-.28 1.997.259 2.405.875 3.44.188.322.328.664.503 1.014zm2.397-25.472c.022-.508.23-3.127.168-3.349-.021-.07-.174-.37-.216-.499l-.245-1.05c.37.044.217.271.427.657l.14.2.063-.77c.04-.523-.036-.265.188-.773.21.123.09-.085.147.237a3.706 3.706 0 0 1-.028.393c-.182 1.75-.252 3.668-.336 5.425.169-.286.23-.743.413-1.085.455-.892 1.24-2.427 1.162-3.47l-.987-5.133c-.357.543-.707 1.4-1.008 2.02-.671 1.372-1.287 3.456-.874 5.013l.874 2.027c.064.114.05.086.11.157zm-13.71 29.553c.307.377.937.928 1.378 1.263.86.643 2.869 1.492 3.876 1.428l2.303-.422-.357-1.07c-.428.014-.756.192-1.245.2a8.35 8.35 0 0 1-1.414-.1 18.466 18.466 0 0 1-1.31-.228c-.777-.165-.502-.045-1.098-.458l2.422.357c-.63-.485-.406-.236-.868-.87.35-.037 1.07.655 1.379.87l2.07-.1-.16-1.22c-1.036-.43-2.492-.407-3.555-.036-2.148.735-1.385.563-3.421.386zm2.726 5.37c.127.4 2.303 2.89 2.821 3.062l4.772.2c-.595-.33-1.435-.672-2.106-.944-.917-.37-.972-.178-2.456-.02.078-.328.356-.265 1.154-.45-.335-.178-1.784-.585-1.805-.6l-.21-.228c.099-.1.029-.115.245-.094.07.008.273.086.37.115 2.205.721 2.835 1.006 4.928 1.87-.673-.513-.833-.692-1.345-1.349-1.917-2.434-3.932-1.642-6.367-1.563zm16.589-26.624.73-1.335c.358-.756-.211-.779.044-1.792.259.081.18.058.314.93l.884-2.026c.253.682-1.143 3.274-1.442 3.905l-.473 1.31c1.143-1.273 2.537-1.868 2.76-2.93l.17-5.116c-.821.677-1.934 1.773-2.494 2.673-.83 1.327-.754 2.546-.493 4.38zm-2.207 30.213c.42-.186.735-.435 1.219-.628 1.882-.522 1.133.378 2.33-1.286l-.315.886c.854-.285 1.077-.815 1.707-1.443.16.314-.33.844-.58 1.086-1.057 1.043-2.128.707-2.75.95l-1.24.613c1.42-.222 1.26.036 2.436.214 2.393.364 3.072-2.027 3.884-3.44l.566-1c-1.357.142-3.002.97-4.05 1.556-.792.435-1.051.672-1.61 1.192-.218.2-.477.472-.735.657-.358.264-.63.335-.862.644z'/%3e%3cpath d='M407.948 309.412c.839-.799.658-2.67 1.28-3.797.119-.215.21-.329.35-.5.23-.293.146-.236.448-.228.098.22-.357.456-.532.856l-.378 1.207c.078-.058.049-.036.126-.115.063-.07.084-.1.126-.164.588-.836 1.12-1.043 1.967-1.578l-.813-3.02-1.483 1.285a7.036 7.036 0 0 0-1.26 1.55c-1.056 1.863.09 2.74.169 4.505zm-.438 12.401 1.96-3.213v-1.51c.299.047.194-.113.388.896.66-.97.2-.857.95-1.343.053.29-.765 1.767-.868 1.92-.833 1.166-1.233 1.901-1.953 3.136.467-.189 1.106-.87 1.44-1.182.283-.257.438-.394.743-.59.282-.183.58-.32.847-.494l.832-4.6c-.75.317-2.77 1.736-3.358 2.478-1.226 1.562-1.292 2.04-.98 4.502zm4.4-11.272 2.555-.234c-.078.335-.442.341-1.162.45-1.147.177-3.275.155-4.505.177.355.2.712.321 1.076.536.37.221.637.4 1.016.592.804.414 1.776.38 2.637.05l3.345-3.113c-1.757.408-.791.472-3.163-.006-.364.314-.525.7-1.287 1.213-.155.107-.372.207-.51.336zm-18.152-6.178c.72 1.48 2.83 3.254 4.728 3.02.847-.108 1.001-.377 1.51-.873-.112-.13.023-.027-.143-.11a.816.816 0 0 0-.217-.065c-1.452-.287-1.63-.172-3.11-.008l.672-.346c-.389-.1-.774-.186-1.154-.29-.607-.17-.525-.147-.991-.48.17-.166.128-.127.428-.039 1.939.621 2.395.586 4.504.912-.2-.638-1.864-1.432-2.757-1.554-1.41-.178-1.897.544-3.47-.167zm12.517 16.992-.643-4.127c.335.093.237.222.398 1.085l.735 3.741c.063-1.42.546-2.435.118-3.897l-1.47-2.82c-.272.67-.467 2.57-.412 3.37.09 1.255.35 1.634 1.008 2.39.126.144.119.15.266.258zm5.593-42.134c.21-.129.378-.35.566-.586l.61-.47c.013.35-.49.756-.826 1.177-.483.613-.784.713-1.021 1.006-.946 1.193-.848.992-2.345 1.65 3.078.186 4.744-3.064 6.067-5.276-2.91.414-2.38.614-2.66 1.45-.125.363-.3.706-.391 1.05zm1 13.007.84-1.39c.505-.736.833-.224 1.63-1.004-.214-.194-.15-.133-1.025.211l1.395-1.903c-.766.133-2.408 2.813-2.83 3.426l-.954 1.138c.56-1.735.362-3.342 1.22-4.12l4.63-2.899c-.183 1.121-.6 2.736-1.128 3.734-.78 1.477-1.945 2.062-3.777 2.808zm-11.547 5.465c-.251-.763-1.176-1.556-1.329-1.977l-.666-2.685c.372.044.372.757.442 1.071l.356 1.15c.224-.82-.146-.243.364-1.035.252.5-.3 1.335.042 1.798.343.472.37.408.91 1.214.308-1.235.356-2.805-.392-3.655l-2.148-2.356c-.546.792-.497 3.034-.112 4.17.44 1.27.931 1.413 1.736 1.841.314.165.496.33.797.464zm1.865-.298c.547-.72 1.82-1.223 2.137-1.615l1.69-2.609c-.41-.09-.671.668-.86.977l-.801 1.09c.063-.954.244-.204-.008-1.233-.45.44-.168 1.53-.703 1.897-.537.375-.544.297-1.412.957.125-1.426.648-3.113 1.756-3.742l3.147-1.717c.29 1.042-.584 3.407-1.41 4.472-.934 1.19-1.506 1.162-2.52 1.322-.394.06-.647.166-1.016.2zm5.656.32c.84-.043 3.128-.078 3.829-.45l.965-.45c0 .257 0 .123-.364.493.923-.043.517-.107 1.406.05-.105.186.182.157-.734.214-1.03.071-1.575.178-2.498.278l-3.415.344c2.183.792 2.54 1.997 5.01 1.076 1.966-.734 2.359-1.533 3.604-3.033-3.072.714-3.402-1.885-6.41.1-.364.243-1.176 1.063-1.393 1.377z'/%3e%3cpath d='M412.934 299.601c.804.1.468-.014 1.14.3-.315.27-1.652-.065-2.183.042l-2.204-.042c.707.977 1.888 1.45 3.562 1.277 1.643-.178 2.07-.6 3.392-1.406l-2.497-.82zm-.917 14.34c-.21-.208-.756-.478-1.1-.608-1.391-.528-2.482-.028-3.19-.042l-1.59-.186c.422.464 2.129 1.1 2.96 1.234 2.143.35.7.915 2.92-.4zm.224 1.576.636.571c-.166.086-.398-.072-.665-.2l-.118 1.45 2.904-.365c-.917-1.157-1.505-1.714-2.597-2.727-.083.45-.21.778-.16 1.27zm-3.728.82 1.734-1.313c-.44-.344-1.245-.329-1.853-.515l-1.674-.67c.4.556.413.428.89 1.248.266.457.46.943.903 1.25zm8.405-25.707c-.755.442-1.285 1.127-2.128 1.48-1.138.462-2.355.006-3.071.737 1.92-.11 3.186.622 4.675-.75.914-.845 1.713-2.145 2.46-3.223-.301-.019-1.294.284-1.494.49-.105.104-.248.441-.358.611-.343.547-.112.142-.084.655zm-6.34 43.701 1.4 2.841 1.93 2.364c.4-.187.848-.507 1.303-.736l1.553-.55c-.867-.37-.91-.8-1.4-.835-1.195-.079-.496.114-2.085-.158.147-.256.077-.135.903-.15l1.008-.028c-.588-.543-1.315-.92-1.973-1.399l2.072 1.057-.064-1.378c.504.057.196.835.426 1.6.112.35.777.791 1.135.97.685.343.937.264 1.644.443l1.624.513c-.666-.943-.364.122-1.492-2.206-.455-.942-.88-1.513-1.651-1.992-1.875-1.163-4.184-.385-6.332-.356zm2.356-2.792c.02-1.142-.064-2.184.027-3.348.043-.543-.21-1.942-.3-2.74.266.077.223.2.286.534l.21.743c.266-1.2.33-1.165.98-2.028.105.278-.644 1.214-.777 2.578l-.133 3.39c.133-.157.147-.213.3-.385.12-.136.21-.229.337-.364.238-.243.406-.479.637-.836 1.623-2.527.637-3.968.665-4.718l.469-2.448c-.504.206-1.89 1.212-2.205 1.534-1.252 1.27-2.49 3.506-1.707 5.418.182.45.433.83.63 1.265.196.442.35 1.021.58 1.405z'/%3e%3cpath d='M412.07 341.245c.273.17 1.84.678 2.246.8 1.49.464 3.829.635 4.863-.75.567-.764.91-.964 1.624-1.535-1.106.022-1.868.443-2.833.663-.722.165-.77.672-1.36 1.23l-.544.376c.007-.356.693-1.027 1.015-1.406l-2.17-.02c.07-.35.652-.178 1.61-.265 1.875-.158 2.19-.657 4.226-.899a.839.839 0 0 0 .4-.115c-3.038-.014-3.702-2.055-7.341.53zm13.892-1.876v-1.52c-.665-.507-.665-.67-1.07-1.45.356.03.504.6 1.05.986-.056-.728-.357-1.949-.525-2.728.35.058.517 1.03.602 1.38.427 1.776.055 3.147.37 3.72l.868 1.17c.294-1.236 1.567-2.036.049-5.077-.923-1.856-1.673-2.17-3.226-3.34.188.85.4 1.15.266 2.191-.098.728-.385 1.278-.468 1.992-.197 1.642.307 1.55.63 1.734.545.307 1.049.636 1.455.943zm-15.031-2.886-.462-1.02c-1.28.021-1.66.542-3.444-.658-.468-.314-.391-.278-.65-.77l1.973 1.105c-.105-.22-.343-.45-.734-1.256.063-.042-.043-.136.182-.008.09.05.125.122.167.18l.959 1.27 1.315-.143c-.028-.222-.252-.592-.35-.82-.188-.444-.097-.515-.432-.758-.442-.322-.988-.636-1.66-.699-.825-.079-1.316.207-2.063.264l-2.016-.42c.09.391.847 1.648 1.057 1.947.854 1.2 3.114 2.95 5.03 2.2.28-.108.889-.287 1.128-.414zm-10.495-9.343.105.057c.1.05.064.035.156.07.572.237 1.076.5 1.482.965.517.585.553.871 1.343 1.528 1.274 1.063 2.652 1.028 4.354 1.25-.156-.237-.575-.723-.777-.929-1.36-1.45-1.113-1.37-1.981-1.25l-1.42.115c.063-.293.916-.35 1.539-.485a3.94 3.94 0 0 0-.917-.293c-.714-.13-.21.056-1.03-.25.373-.5 2.206.156 3.053.95.63.578 1.413 1.506 2.015 2.213l-.987-2.128c-1.008-1.835-3.674-2.492-5.632-2.14-.315.05-1.029.163-1.302.327zm11.858 4.857c-.706-2.24-1.862-3.19-2.176-4.554-.21-.928-.133-1.014.035-1.857.455.622-.385 1.05.944 3.277-.076-.72-.258-1.043-.133-1.913.055-.35.484-1.684.477-1.72-.063-.364-1.673-1.842-2.114-2.306-.23 1.978-.741 3.74-.098 5.71.665 2.043 1.756 1.566 3.065 3.363zM423 342.087l1.413-.378c-.21-.172-.707-.815-.917-1.13-.616-.898-.546-.977-.3-1.427.077.136.02.014.056.186.034.242-.022.314.153.622.133.227.23.362.406.584.35.464.58.735 1.015 1.071-.028-.707-.161-1.05.035-1.47.267.1.09-.079.189.192l.084 1.214 1.567-.414c-1.056-1.864-3.085-2.535-4.94-3.27.168.721.336 1.471.51 2.191.196.836.428 1.314.729 2.03zm-2.482-4.027c-.17-.422-.47-.87-.7-1.357-.504-1.092-.427-1.592-1.442-2.642-.174-.177-.314-.357-.525-.52-.104-.079-.377-.243-.42-.35-.007-.007-.013-.028-.013-.043l.014-.15c.35-.072 1.05.735 1.266.95.609.585 2.008 3.547 2.478 4.46-.063-.406-.273-.89-.133-1.284.405-1.17-.722-2.977-1.274-3.348l-4.387-1.942c.525.5.832.786 1.196 1.593.286.642.42.085 1.56 1.306 1.21 1.277 1.113 2.87 2.38 3.327z'/%3e%3cpath d='M428.572 338.05c.078-.209.155-.423.23-.65.142-.4.03-.237.365-.565.168.264 0 .407-.182.964-.356 1.063-.588 1.955-.888 3.04.972-.127.93-.15 1.343-.876.252-.444.448-1.065.546-1.636l-.12-4.127-1.265 1.65c-.658.95-.245.435-.03 2.2zm-13.188-9.365c.314-.179 1.049-1.064 1.365-1.414.18.335-.666 1.214-.848 1.398-.713.68-.266 0-1.196 1.114 1.882.28 2.659-2.206 3.268-3.476-.372.022-1.568.415-1.862.592-.252.143-.174.072-.244.393-.05.2-.064.293-.133.5-.098.307-.231.6-.35.893z'/%3e%3c/g%3e%3cg fill='%23ce1126' stroke='%23000'%3e%3cpath d='m434.474 352.26 2.366 1.228-1.347 2.655c.983-.167 4.55-1.394 5.716-1.76-.291-.828-.4-.928-.291-1.957l-.4-1.892-2.877.962a23.979 23.979 0 0 1-3.167.764zm31.055-.415-2.368 1.227 1.348 2.656c-.984-.167-4.551-1.394-5.717-1.76.291-.83.4-.928.291-1.958l.4-1.89 2.877.961a24.18 24.18 0 0 0 3.169.764z' stroke-width='.295'/%3e%3cpath d='M443.061 356.021c2.661-.376 5.043-1.786 5.043-1.786.407.439 2.536.126 2.536.126.971-.19 1.41-.344 1.41-.344 2.663 1.69 4.698 1.942 4.698 1.942 2.35-.126 2.412-1.942 2.412-1.942-.093-1.598-.251-1.66-.251-1.66 1.254-1.974-.093-3.54-.093-3.54-.627-.72-4.26.438-4.26.438-2.444 1.16-2.6.658-2.6.658-.694-1.088-3.244-.895-4.354-.062-2.693-.596-3.07-.784-3.07-.784-2.725-1.033-3.163-.407-3.163-.407-.971 1.16-.658 2.38-.658 2.38 0 .69.22 1.285.22 1.285-.596 3.507 2.13 3.696 2.13 3.696z' stroke-width='.301'/%3e%3cpath d='M452.041 353.059c5.857 1.318 5.442 2.153 5.442 2.153-.355.613-2.075-.174-2.075-.174-4.57-1.6-3.367-1.98-3.367-1.98zm-3.633.022c-5.858 1.317-5.443 2.153-5.443 2.153.356.613 2.076-.175 2.076-.175 4.57-1.6 3.367-1.978 3.367-1.978z' stroke-width='.239'/%3e%3cpath d='M448.654 349.107c-2.518.447-.53 2.325-.443 3.488 0 .626-.618 1.698.045 1.968.618.267 1.942-.045 2.648-.045.973-.045 1.634.045 1.502-1.208-.089-.94-.397-1.252-.397-2.46-.045-.848.133-1.788-.795-1.877-.574-.045-1.986.044-2.561.133z' fill='%23aa241e' stroke-width='.223'/%3e%3cpath d='M452.126 350.502c6.68-.033 6.188-1.1 6.188-1.1m-6.071 3.135c6.614.888 5.722 1.851 5.722 1.851' fill='none' stroke-width='.241'/%3e%3cpath d='M448.099 352.346c-6.16 1.369-5.606 2.345-5.606 2.345m4.925-4.327c-6.295.455-5.662-.613-5.662-.613' fill='none' stroke-width='.234'/%3e%3c/g%3e%3cpath d='M422.666 342.607c-3.374 1.108-5.613 1.88-8.838 3.771-1.23-1.849-2.91-4.585-4.101-6.173-.672-.852-1.604-1.776-2.76-2.368-1.827-.851-2.499-.592-3.655.407l-.82-1.552c-1.64-2.885-3.356-4.215-5.183-6.546l-1.642-1.922c-.223-.258-.297-.443-.595-.592.706 2.322 1.218 4.54 1.677 7.063-1.007-.555-1.939-1.11-2.983-1.552-.783-.297-2.796-.74-3.766-.63l1.192 1.073c2.052 1.81 3.394 4.215 4.214 6.914.896 2.92 2.984 6.026 5.184 8.17.448.444 1.715 1.59 2.535 1.886 2.461.888 2.35-.037 3.244-.48 1.894 3.206 3.113 4.813 5.296 7.246 2.349 2.478 6.042 3.143 9.397 2.367 1.492-.37 2.424-.777 3.58-1.443 4.364-2.514 2.276-4.473 1.753-6.47 1.417-.443 6.966-2.122 8.961-2.491 7.026-1.3 20.048-1.471 28.378-.259.746.108 9.144 2.344 9.964 2.825-.592 1.392-.827 2.082-.743 3.612.142 1.415 1.358 2.155 2.44 2.783 1.155.666 2.087 1.073 3.579 1.443a12.34 12.34 0 0 0 4.51.185c3.134-.518 4.775-2.33 6.118-3.956 2.23-2.546 2.925-4.09 4.065-5.88 0 0 .636.592 1.088.74.426.139 1.82-.111 2.194-.26 1.08-.405 1.752-1.219 2.496-1.922 2.314-2.218 4.253-5.102 5.185-8.244 1.118-3.698 2.647-5.435 5.37-7.839-3.518.12-4.733 1.076-6.713 2.182l.747-3.623c.223-.999.782-2.478.894-3.44-1.6 1.704-3.02 3.487-4.437 5.066-.672.888-1.418 1.627-2.089 2.588-1.41 2.176-1.141 2.243-1.678 2.958-4.95-2.75-7.174 3.949-10.516 8.06-6.204-3.487-11.608-4.582-18.907-5.916-1.635-.172-3.094-.405-4.437-.554-9.173-1.072-19.278-1.034-28.415.333-4.717.596-7.635 1.462-11.783 2.441z'/%3e%3cg fill='%23ce1126'%3e%3cpath d='M416.284 356.874c.568-1.626 1.278-1.98 2.685-2.662 4.511-2.07 6.75-2.92 11.894-4.288a66.397 66.397 0 0 1 9.062-1.703c1.574-.255 1.957-.271 4.736-.443 4.102-.222 6.488-.222 10.591 0 1.777.019 3.296.208 4.736.443 3.057.37 6.3.926 9.173 1.701 4.623 1.185 7.682 2.294 11.857 4.253 1.902.887 1.642.924 2.722 2.662 1.381-.925 2.388-2.921 3.171-4.252.41-.703 1.007-1.664 1.268-2.478.448-1.369-.411-1.81-1.045-2.329-2.31-1.997-6.637-3.734-10.33-4.77-15.848-4.399-37.66-4.584-53.474-.037-3.842 1.11-7.757 2.663-10.294 4.696-.334.258-.67.554-.967.889-.896 1.034.577 3.086 1.042 3.956.467.867.87 1.717 1.344 2.366.573.783 1.275 1.456 1.828 1.997z'/%3e%3cpath d='M400.624 342.757c1.79.334 2.423.852 3.579 2.405 2.573 3.55 2.686 6.063 7.048 10.87 1.007 1.108 1.753 1.996 3.282 2.661 1.602.703 3.281.925 5.184.667 1.788-.222 3.132-.703 4.474-1.48 0 0 1.608-.923 2.03-1.49.422-.568.506-1.91.506-1.91-1.306-.408-3.654 2.143-5.183 3.142-2.798 1.849-3.879 1.183-5.855-.556-1.716-1.478-2.35-3.068-3.469-4.991-.447-.777-1.267-1.959-.969-3.18l2.089-2.144c-.826-1.356-1.859-2.866-2.61-4.03-1.045-1.59-1.641-2.662-2.984-3.697-.783-.629-2.35-1.552-3.467-.887-.938.733-1.612 1.594-2.425 2.587-.447.517-.97 1.257-1.23 2.033z'/%3e%3cpath d='M397.644 335.944c-.412-.15-1.902-1.294-2.687-1.627l-3.281-1.11c.448.555.896.888 1.79 1.997 2.088 2.662 2.088 4.806 3.73 7.987.558 1.07 1.528 2.476 2.348 3.438.559.701 2.45 2.504 2.946 2.92 1.146.952 2.346 1.088 2.993.298.149-.56-1.352-1.555-2.171-1.961-1.008-.556-1.902-1.147-2.61-1.812-1.94-1.96-.449-4.363 1.043-6.064l1.007-1.183c.223-.802-1.406-3.075-2.275-4.214-.895-1.073-3.17-3.623-4.177-4.77.15.925.448 2.18.634 3.143.15.665.671 2.44.71 2.958zm28.975 17.937-.784-1.848c-1.08.112-6.376 2.441-7.607 3.218-.372.222-1.863 1.404-1.156 2.144 2.052 2.218 5.147-1.034 6.974-2.441.634-.517 1.454-1.11 2.573-1.073z'/%3e%3cpath d='M406.143 349.605c-.337-.111-.262-.775-1.455-1.664-.448-.37-3.146-1.773-3.609-2.291 0 0-.884-.631-.778-1.54.08-.697.658-.827.658-.827 2.424.074 5.294 6.026 5.184 6.322zm93.32-6.74c-1.789.333-2.422.851-3.579 2.404-2.573 3.55-2.684 6.065-7.049 10.87-1.006 1.11-1.751 1.998-3.281 2.662-1.603.704-3.28.925-5.182.666-1.79-.221-3.133-.702-4.476-1.48 0 0-1.606-.923-2.03-1.49-.421-.567-.506-1.91-.506-1.91 1.305-.408 3.655 2.144 5.185 3.142 2.796 1.85 3.877 1.183 5.854-.554 1.716-1.48 2.35-3.07 3.467-4.992.447-.776 1.27-1.958.97-3.179l-2.089-2.145c.825-1.356 1.86-2.866 2.61-4.03 1.046-1.59 1.643-2.662 2.984-3.697.784-.628 2.349-1.553 3.47-.888.935.734 1.61 1.596 2.422 2.588.448.517.97 1.257 1.23 2.034z'/%3e%3cpath d='M502.455 336.061c.41-.147 1.902-1.293 2.686-1.626l3.281-1.11c-.448.556-.894.89-1.79 1.997-2.087 2.663-2.087 4.808-3.73 7.987-.558 1.072-1.528 2.477-2.349 3.44-.558.7-2.449 2.502-2.946 2.919-1.145.953-2.632.946-2.992.3-.147-.563 1.352-1.557 2.172-1.964 1.007-.554 1.901-1.145 2.61-1.81 1.94-1.96.448-4.364-1.044-6.064l-1.007-1.183c.303-1.52 1.407-3.075 2.275-4.217.896-1.071 3.17-3.622 4.176-4.77-.149.925-.446 2.183-.633 3.143-.242.987-.49 1.981-.71 2.96zm-28.977 17.94.785-1.848c1.08.11 6.376 2.44 7.607 3.215.372.223 1.864 1.406 1.156 2.145-2.051 2.219-5.146-1.035-6.974-2.44-.633-.517-1.454-1.11-2.572-1.072z'/%3e%3cpath d='M493.956 349.714c.336-.112.26-.777 1.455-1.666.447-.369 3.146-1.772 3.609-2.29 0 0 .882-.632.778-1.539-.08-.697-.659-.828-.659-.828-2.424.074-5.295 6.027-5.183 6.323z'/%3e%3c/g%3e%3cpath d='M421.811 346.17c-.262.002-.519.097-.77.166-.382.158-.755.333-1.142.476-.158.04-.193.221 0 .24.213.17.159.479.274.705.073.26.135.524.221.78.078.333.196.656.257.991.088.327.198.648.25.982.022.144-.274.446.017.355.292-.067.545-.26.848-.284.116-.005.32-.2.089-.202-.27-.142-.178-.507-.318-.738-.062-.246-.142-.489-.192-.736.068-.286.447-.092.473.135.155.207.351.388.551.554.245.173.482.383.788.436a1.05 1.05 0 0 0 .664-.056c-.296-.26-.646-.468-.874-.799-.194-.26-.359-.543-.544-.81.285-.265.55-.596.609-.993.027-.42-.187-.862-.558-1.07a1.581 1.581 0 0 0-.642-.131zm-.352.373c.234.004.421.162.535.354.13.242.213.523.19.797a.695.695 0 0 1-.392.571c-.168.132-.602.416-.623.034-.115-.423-.26-.842-.338-1.276-.063-.266.214-.373.416-.432a1.176 1.176 0 0 1 .213-.048zm1.835-.966c.034.202.3.292.266.527.055.312.133.62.214.925.024.284.12.553.158.834.045.2.112.393.14.597.048.275.13.546.168.825.055.12-.273.375-.041.36.76-.213 1.53-.396 2.29-.616.2.032.261-.117.223-.289l.004-.693c-.233 0-.223.321-.4.422-.272.29-.655.435-1.028.54-.215.03-.324-.182-.352-.36-.074-.177-.048-.37-.113-.548-.067-.266-.108-.538-.166-.806.273-.113.58-.174.872-.117.147.01.27.295.397.155 0-.24-.096-.472-.138-.707-.05-.099-.075-.467-.23-.36-.078.159-.101.38-.3.438a1.834 1.834 0 0 1-.624.209c-.141-.144-.142-.457-.173-.676.019-.236-.142-.593.189-.644a.985.985 0 0 1 1.028.042c.112.082.369.332.382.051-.142-.225-.152-.54-.33-.73-.212-.03-.402.105-.609.134-.614.14-1.222.321-1.828.487zm5.085-1.392c-.309.018-.61.095-.913.16-.33.098-.659.205-.988.306-.254.142.252.243.227.446.036.216.07.435.123.646.041.219.1.435.122.658.08.317.13.64.195.962.023.3.157.58.159.885.056.191-.048.393-.101.54.325-.079.655-.146.975-.245.168.013.247-.221.048-.235-.141-.212-.141-.483-.21-.722-.042-.258-.103-.51-.153-.765.456-.11.92-.255 1.295-.543.25-.216.456-.51.46-.853a1.389 1.389 0 0 0-.251-.868 1.31 1.31 0 0 0-.46-.319c-.17-.048-.35-.048-.528-.053zm.567.057zm-.926.297a.681.681 0 0 1 .631.463c.107.26.157.552.11.831-.05.183-.154.365-.346.429-.188.079-.36.258-.578.217-.13-.125-.04-.371-.14-.538-.077-.329-.116-.669-.215-.992-.041-.199.131-.352.313-.382a1.054 1.054 0 0 1 .225-.028zm4.117-1.133c.124.116.252.225.331.38.117.155.081.36.14.537.077.26.07.537.138.798.045.22.092.44.092.664.094.274.087.574.075.858-.062.41-.497.724-.907.638a.556.556 0 0 1-.427-.333c-.132-.158-.176-.36-.217-.557-.048-.285-.108-.57-.146-.858-.032-.291-.084-.578-.12-.868-.035-.233-.096-.46-.13-.693-.046-.128.292-.406.026-.36-.338.033-.663.134-.998.182-.248.166.183.228.169.427.045.204.03.416.08.619.076.443.182.877.216 1.326.03.206.093.402.105.609.05.21.176.39.29.57.194.18.42.353.696.37.476.08 1.008-.03 1.349-.392.14-.177.261-.386.298-.608.012-.324.014-.653-.071-.966-.034-.325-.036-.656-.14-.967-.034-.269-.083-.538-.108-.808a.618.618 0 0 1-.02-.4c-.01-.14.243-.268.127-.37-.208-.01-.406.082-.613.08-.09.009-.187.04-.233.122zm3.262-.615c-.45-.013-.891.094-1.331.164-.18.07-.477.05-.582.2.128.138.28.266.254.48.091.455.128.922.212 1.38.003.29.104.567.113.856.027.337.08.676.072 1.012.013.118-.24.388 0 .335.182-.076.375-.033.564-.1a5.241 5.241 0 0 1 .748-.111 4.792 4.792 0 0 0 .892-.223 2.53 2.53 0 0 0 .431-.382.7.7 0 0 0 .194-.494c.023-.312-.027-.681-.287-.887-.164-.137-.375-.188-.574-.26-.142-.038-.32-.165-.094-.228.235-.138.442-.342.511-.612a.782.782 0 0 0-.161-.737c-.096-.233-.345-.31-.572-.355a2.406 2.406 0 0 0-.39-.038zm-.604.334c.286-.066.618.036.776.295.155.206.1.482.075.72-.01.267-.29.354-.497.44-.15.09-.529.205-.483-.095.046-.207-.037-.405-.056-.609a4.97 4.97 0 0 1-.02-.577zm.334 1.825c.227-.01.503-.022.657.18.213.183.276.473.274.743-.007.219.004.483-.197.625-.206.135-.463.248-.714.212-.234-.108-.216-.423-.25-.643-.03-.223-.09-.443-.103-.669-.056-.163-.099-.468.167-.416a.653.653 0 0 1 .166-.032zm2.073-2.537c-.024.164.236.179.227.37.036.227.001.46.074.684.035.22 0 .449.057.668.07.268-.007.558.091.821.053.274-.022.562.073.828.063.244.034.529-.146.716-.085.139.22.08.307.048.328-.026.657-.038.982-.09.19-.02.38-.03.565-.077l.663-.067a3.94 3.94 0 0 0 .113-.839c.02-.101.03-.27-.11-.177-.065.18-.193.33-.303.483a.918.918 0 0 1-.356.185c-.16.045-.318.107-.487.092-.184.046-.383-.03-.39-.243-.056-.26-.026-.531-.09-.791-.061-.504-.08-1.01-.115-1.515-.037-.304-.102-.608-.064-.915.018-.124.34-.369.065-.321a1.87 1.87 0 0 1-.477.057c-.172.018-.34.07-.515.065a1.046 1.046 0 0 0-.164.018zm3.143-.346c-.038.148.174.075.199.235.086.162.008.358.083.525.029.197.033.398.051.596l.145 1.911c.055.16.051.329.049.495.023.142-.203.255-.168.358.402-.01.81-.027 1.203-.116.13-.023-.002-.176-.087-.178-.119-.131-.11-.327-.132-.493-.023-.304-.026-.61-.087-.907-.029-.236.011-.479-.049-.712-.055-.33-.01-.668-.093-.993-.02-.211-.067-.434.002-.639.032-.075.272-.25.074-.233a6.928 6.928 0 0 0-1.125.128.255.255 0 0 0-.064.023zm4.99 2.58c-.218-.02-.298.204-.42.339-.13.208-.37.299-.598.35-.26.066-.492-.128-.673-.289a2.025 2.025 0 0 1-.338-.675c-.084-.218-.101-.452-.157-.677a4.194 4.194 0 0 1 0-1.022c.079-.235.16-.5.362-.658.262-.161.618-.082.819.142.188.15.25.382.352.588.15.235.229-.11.236-.241.024-.167.132-.343.089-.507-.14-.172-.369-.241-.574-.308-.483-.141-1.051-.061-1.427.293-.152.107-.258.26-.349.417-.115.146-.17.318-.218.494-.085.223-.093.465-.139.699-.037.51.089 1.023.28 1.492.137.236.349.415.515.632.154.207.429.263.67.293.304.027.622-.038.867-.225.221-.142.375-.359.497-.587a1.186 1.186 0 0 0 .202-.483.135.135 0 0 0 .003-.066zm1.729-3.152c-.18.04-.43-.02-.568.065-.04.314-.121.622-.18.933-.049.218-.116.428-.123.65-.142.544-.245 1.095-.357 1.645-.11.258-.196.526-.309.782-.128.078-.096.254.068.185l.78-.018c-.016-.175-.252-.233-.273-.423-.06-.192.02-.369.03-.555.016-.226.339-.076.49-.125l.667-.014c-.03.25.195.45.165.704.045.137-.26.419.013.391.309.023.609-.08.916-.077.282-.016-.068-.27-.091-.403-.087-.314-.215-.619-.292-.937-.127-.446-.26-.889-.383-1.336-.123-.39-.215-.79-.326-1.183-.039-.132-.014-.32-.207-.284h-.021zm-.42.968c.163.536.319 1.075.482 1.612.082.22-.154.162-.288.183-.17.017-.34.04-.511.035-.117-.166.036-.407.048-.599.023-.25.134-.484.138-.737.057-.162.01-.357.13-.495zm5.365-1.12-1.216.077c-.072.141.215.161.159.33.028.328.007.658.007.986-.017.89-.046 1.78-.06 2.67-.013.12-.332.371-.06.349.596.02 1.209.078 1.794-.075.19-.047.345-.164.487-.292.198-.173.349-.4.472-.63a2.92 2.92 0 0 0 .2-.832 3.362 3.362 0 0 0-.026-.896c-.039-.253-.142-.495-.236-.73-.125-.16-.201-.348-.342-.49a2.078 2.078 0 0 0-.544-.365c-.216-.003-.416-.131-.635-.1zm.101.328c.248-.009.512.126.594.372.09.167.158.338.183.528.056.197.011.405.06.605.07.375.003.756-.049 1.127a1.728 1.728 0 0 1-.229.782c-.064.2-.29.261-.452.345-.21.055-.498.04-.546-.222-.037-.234-.016-.475-.022-.712.004-.852.007-1.704.061-2.555-.014-.24.2-.309.4-.268zm3.712-.198a1 1 0 0 0-.718.208c-.243.164-.377.436-.548.665-.184.326-.252.701-.296 1.067.013.308-.046.62.009.928.098.226.152.472.233.706.075.304.3.545.543.73.194.114.395.215.624.23.427.044.832-.225 1.081-.556.188-.27.393-.545.447-.878.081-.259.104-.528.132-.796.012-.204-.034-.405-.04-.608-.03-.27-.142-.52-.256-.764-.174-.268-.312-.587-.601-.753a1.095 1.095 0 0 0-.61-.18zm-.012.263c.322.009.52.337.562.625.066.23.09.466.119.703-.016.389.012.779-.03 1.166-.069.247-.027.51-.125.748-.045.243-.14.487-.322.66-.166.108-.388.17-.547.01-.193-.11-.21-.342-.3-.524-.11-.317-.064-.658-.073-.987.008-.466.026-.934.042-1.399.062-.236.094-.484.203-.704a.5.5 0 0 1 .47-.297zm1.622 4.327c.264-.026.522.095.783.086.193-.172-.21-.314-.158-.535-.022-.267.04-.532.102-.789.041-.243.068-.49.107-.733.064-.237.063-.488.126-.726.028-.205.036-.548.115-.661.13.21.056.468.133.693.043.264.054.527.101.79.051.277.09.554.11.833.05.247.08.504.114.756.056.18-.052.532.25.458.273.096.181-.27.303-.427.094-.385.167-.775.27-1.156.09-.215.12-.451.19-.672.096-.364.18-.732.33-1.08 0 1.047.08 2.098.006 3.143-.048.118-.322.314-.03.332.266.016.53.042.793.089.253.064.215-.159.056-.259-.16-.267-.058-.588-.076-.88.01-.517-.042-1.03-.035-1.547a12.06 12.06 0 0 1 .043-1.423c.059-.08.295-.281.073-.29l-.94-.044c-.04.255-.151.495-.188.75a11.172 11.172 0 0 1-.24.889c-.031.273-.128.53-.183.798-.008.114-.102.237-.106.046.019-.24-.118-.461-.085-.704-.006-.2-.104-.382-.077-.588-.022-.414-.157-.817-.157-1.233-.055-.2-.335-.096-.495-.175-.172-.005-.345-.01-.517-.02.075.267.145.537.087.815-.04.232-.097.461-.114.696-.086.542-.214 1.076-.277 1.62-.077.193-.057.408-.143.595-.06.175-.108.34-.274.442a.172.172 0 0 0 .002.111zm4.166.453c.227.092.479.073.709.148.117 0 .395.12.406-.042-.096-.146-.23-.281-.172-.474.026-.241.08-.481.068-.726-.004-.22.079-.43.078-.65a27.473 27.473 0 0 1 .104-1.46 1.647 1.647 0 0 1 .076-.54c-.015-.142.099-.21.189-.272.067-.233-.233-.129-.363-.166-.255-.018-.506-.089-.764-.085-.058.109.162.196.141.335.037.18-.01.364-.016.545-.079.265-.05.547-.079.82-.015.259-.045.517-.069.776-.079.19-.068.403-.07.608a3.163 3.163 0 0 1-.06.705c.012.154-.044.326-.17.395-.002.029-.003.056-.006.083zm1.449.315c.204-.016.4.093.6.076.111.044.34.112.228-.092a.94.94 0 0 1-.16-.598c-.011-.365.044-.728.095-1.088a2.47 2.47 0 0 1 .081-.762c.022-.236.028-.476.093-.705.124.114.155.378.247.549.336.857.659 1.718.991 2.576.08.167.12.419.32.474.247.102.186-.191.196-.338.017-.216.132-.413.081-.639.035-.236.082-.472.081-.713.057-.233.089-.47.08-.71.042-.23.095-.458.079-.696.004-.253.08-.495.134-.74.005-.165.436-.335.17-.435-.233.007-.548-.158-.731-.074.048.189.213.342.18.556.029.487-.101.964-.097 1.45-.053.24-.07.503-.101.732-.134-.18-.18-.462-.284-.678-.105-.262-.193-.53-.318-.783-.053-.225-.173-.427-.236-.648l-.362-.892a4.32 4.32 0 0 1-.81-.168c-.208.121.12.314.086.491.065.353.003.709-.046 1.06a5.271 5.272 0 0 1-.076.695c-.001.25-.004.502-.09.741a7.1 7.1 0 0 1-.109.778c-.009.222-.219.332-.321.483-.004.033 0 .066 0 .098zm3.801-3.64c.023.153.216.254.13.434.004.209-.032.414-.067.618a3.866 3.866 0 0 1-.079.582c-.03.317-.097.63-.095.95-.005.19-.081.37-.073.564-.015.148-.073.288-.083.438-.02.132-.039.262-.068.391-.057.071-.094.15-.192.158-.09.188.267.168.384.199.208.046.416.065.61.138.159.056.222-.12.082-.192-.15-.195-.04-.446-.027-.667.016-.168.029-.34.071-.507.034-.224.019-.455.084-.674.023-.174.01-.355.075-.52.038-.226.002-.463.083-.681-.01-.193.044-.378.087-.563-.004-.175.046-.36.205-.45a1.552 1.552 0 0 0-.485-.142c-.17-.015-.33-.087-.499-.114a.202.202 0 0 0-.143.037zm1.328 2.98c-.016.234.01.466.047.695.048.314.196.604.382.86.11.206.335.296.52.425.233.14.537.124.78.019.146-.067.325-.102.406-.259.165-.195.364-.379.44-.632-.107-.228-.262.112-.372.178-.245.19-.618.259-.889.085-.19-.132-.289-.344-.36-.555-.044-.208-.134-.406-.111-.62a8.818 8.818 0 0 1 .023-.845c.112-.22.047-.48.142-.707.086-.188.124-.41.266-.569a.575.575 0 0 1 .464-.233c.188.03.31.21.43.345a.967.967 0 0 1 .188.63c-.044.158.146.365.244.165.06-.23.219-.438.235-.675-.04-.196-.234-.298-.366-.43-.142-.104-.303-.178-.46-.256-.293-.083-.646-.123-.908.071a1.453 1.453 0 0 0-.467.349c-.208.2-.301.484-.41.745a3.53 3.53 0 0 0-.213.855c-.01.12-.01.24-.01.36zm4.364-1.632c-.266.552-.482 1.125-.743 1.677-.097.199-.146.419-.258.61-.128.294-.233.6-.406.872-.13.186-.172.466-.388.571-.178.038-.137.227.04.22.22.025.421.162.627.174.176-.103-.094-.243-.068-.39-.03-.208.057-.41.143-.59.155-.16.385-.017.565.02.137.089.365.037.461.142 0 .298-.003.595-.004.892-.162.08-.129.288.06.284.2.049.396.102.59.162.112.051.34.096.209-.09-.133-.289-.093-.611-.108-.918-.009-.256.01-.517-.036-.768-.064-.21-.017-.431-.035-.646.004-.466.032-.932-.02-1.395-.01-.22.007-.44-.02-.66-.183-.077-.386-.097-.576-.156l-.034-.01zm-.088.92.032 1.96c-.252-.004-.484-.12-.728-.168-.137-.197.174-.372.159-.582.122-.304.276-.594.395-.9.064-.096.057-.23.142-.31zm1.956 4.114c-.011-.249-.203-.467-.124-.727-.017-.32.092-.622.16-.93.01-.223.107-.434.118-.659.05-.27.15-.529.162-.804.097-.243.177.07.19.185.143.443.243.9.366 1.348.056.197.093.398.17.587.128.367.183.755.32 1.121-.014.226.108.511.374.455.113-.25.14-.54.207-.81.064-.237.043-.492.155-.714.087-.407.108-.831.25-1.227.083-.322.165-.647.23-.973.072-.125.453-.31.17-.416-.216-.034-.46-.235-.659-.17.037.174.144.335.135.523.011.259-.083.507-.09.763a5.707 5.707 0 0 0-.164.655c-.053.254-.1.51-.145.764-.18-.165-.11-.448-.216-.656-.08-.293-.183-.578-.237-.878a7.466 7.466 0 0 1-.226-.863 2.66 2.66 0 0 1-.183-.666c-.152-.217-.446-.223-.672-.322-.203-.113-.362.013-.199.203.109.44.001.896-.094 1.328-.086.38-.205.758-.236 1.147-.099.24-.105.5-.17.748-.077.203-.15.44-.347.558-.254.213.234.225.365.289a.886.886 0 0 0 .39.142zm4.266-2.873c-.142.324-.333.624-.49.942-.128.307-.312.587-.47.88-.302.528-.618 1.049-.925 1.574-.154.054-.355.282-.073.313.214.075.405.218.626.27.16-.083-.1-.293-.066-.433.02-.222.095-.431.194-.629.135-.087.341.102.501.136.16.116.53.083.489.34.013.271.013.551-.084.81-.127-.002-.2.105-.07.187.16.074.333.121.492.201.155.03.314.18.47.107-.048-.193-.125-.409-.104-.624.02-.336.02-.671.023-1.009-.004-.229.072-.45.058-.68l.044-2.217c-.223.02-.391-.178-.615-.168zm-.136.889-.028 1.98c-.168-.038-.324-.12-.486-.178-.12-.093-.446-.123-.263-.31.135-.265.284-.521.416-.784.101-.245.237-.475.36-.71z' fill='%23eac102'/%3e%3cg transform='matrix(1.11591 0 0 1.11592 -106.897 -41.652)'%3e%3cpath d='M474.5 281.05c.065.433.033 36.778.033 40.539 0 3.595.042 5.876 1.751 8.152 1.407 1.97 3.767 3.592 6.075 4.13 1.63.333 7.631.2 9.718.2 4.635-.217 5.188.814 6.943 3.107 1.994-3.22 4.187-3.267 8.287-3.107 2.087 0 6.554.166 8.413-.233 2.217-.53 3.948-1.589 5.38-3.362 2.349-2.696 2.218-6.058 2.218-9.586v-38.312c0-1.73-.195-1.298.685-2.197l5.772-6.058-61.668.034 6.392 6.69z' fill='%23fff'/%3e%3cpath d='M493.76 299.09v-24.768h-25.509l6.333 6.69.06 18.078z' fill='%23002d62'/%3e%3cpath d='M503.98 299.09v-24.768h25.986l-6.631 7.108v17.66zm-10.22 10.23h-19.299l-.057 15.602c.874 6.814 5.913 9.135 10.433 9.112 3.059.033 4.1-.02 8.923-.055z' fill='%23ce1126'/%3e%3cpath d='M503.98 309.32h19.418l-.063 15.602c-.456 6.754-5.913 9.135-10.433 9.112l-8.922-.055z' fill='%23002d62'/%3e%3cpath d='M474.61 281.05c.065.433.033 36.778.033 40.539 0 3.595 0 5.791 1.793 8.321 1.408 1.97 3.43 3.55 6.033 3.961 1.63.333 7.631.2 9.718.2 2.674 0 3.913-.133 5.707 1.664.554.533.685.799 1.109 1.465.228-.167.228-.2.359-.433a5.27 5.27 0 0 1 2.674-2.33c1.402-.566 3.75-.366 5.38-.366 2.088 0 6.555.166 8.414-.233 2.217-.53 4.18-1.948 5.38-3.362 2.349-2.696 2.218-6.058 2.218-9.586v-38.312c0-1.73-.195-1.298.685-2.197l5.772-6.058-61.668.033 6.392 6.69z' fill='none' stroke='%23000' stroke-width='.454'/%3e%3cpath d='M497.92 280.41v2.773h-2.798v2.346h2.798v9.926h2.303v-9.926h2.833v-2.346h-2.833v-2.773z' fill='%23eac102' stroke='%23000' stroke-width='.273'/%3e%3cg id='b'%3e%3cpath d='m481.88 284.06.03 4.53-1.91-1.93.28 31.93c0 4.76 3.43 8.6 7.66 8.6 4.19 0 7.6-3.79 7.65-8.5l-.31-16.44-2.06-2.13-.03-1.68z' fill='%23fff'/%3e%3cpath d='m481.88 284.22.03 4.56-1.91-1.94.16 18.19 8.25 7.85.06-17.41-.31-.35v-2.93z' fill='%23002d62'/%3e%3cpath d='m490.77 295.51 2.424 3.079.016 1.045-2.446-2.51zm4.53 6.91.218 11.442c-1.177 2.21-3.569 1.012-3.569 1.012l.076-15.79z' fill='%23ce1126'/%3e%3cpath d='M495.55 319.64c-3.128 2.339-3.997-1.128-3.997-1.128 2.341-.227 3.454-1.596 3.977-2.978z' fill='%23002d62'/%3e%3cpath d='M480.21 309.72c4.293 4.872 7.965 7.502 7.965 7.502.965 7.668 5.5 5.12 7.134 3.925-.923 3.596-3.868 6.223-7.359 6.223-4.23 0-7.66-3.86-7.66-8.621z' fill='%23ce1126'/%3e%3cpath d='m493.2 299.63-.018-1.159-11.32-14.382.029 3.963z' fill='none' stroke='%23000' stroke-width='.262'/%3e%3cpath d='m480 286.66.294 31.922c0 4.76 3.428 8.62 7.656 8.62 4.196 0 7.603-3.801 7.654-8.512l-.31-16.445z' fill='none' stroke='%23000' stroke-width='.317'/%3e%3cg fill='%23eac102' stroke='%23000' stroke-width='.064'%3e%3cpath d='M486.17 281.23c-.778-1.457-.622-2.085-.081-2.641l-2.933-3.006.816 4.2c.84-.212 1.425 0 2.198 1.447zm-3.02-5.65 3.002 5.623'/%3e%3cpath d='m498.07 300.74-.762.292-11.924-20.42.702-.396z'/%3e%3cpath d='M484.98 280.59c-.102-.19.107-.507.469-.71.36-.201.736-.212.838-.022.103.19-.107.507-.468.709-.361.202-.737.212-.839.023zm-3.96 1.63c-.955-1.342-.88-1.986-.414-2.609l-3.287-2.594 1.34 4.057c.805-.32 1.412-.188 2.361 1.146zm-3.7-5.2 3.686 5.182'/%3e%3cpath d='m495.28 300.01-.719.39-14.401-18.682.647-.484z'/%3e%3cpath d='M479.76 281.75c-.125-.175.043-.517.375-.765.333-.248.703-.308.829-.133.125.174-.043.517-.375.765-.333.248-.704.307-.829.133zm.42 4.61c-1.098-1.224-1.094-1.872-.7-2.545l-3.555-2.199 1.781 3.877c.765-.411 1.383-.349 2.474.867zm-4.25-4.75 4.237 4.724'/%3e%3cpath d='m495.66 302.86-16.38-16.905.589-.556 16.462 16.99z'/%3e%3cpath d='M478.88 286.03c-.144-.159-.015-.518.288-.803.303-.285.665-.387.809-.228.144.159.015.518-.288.803-.303.285-.665.387-.809.228z'/%3e%3c/g%3e%3c/g%3e%3cuse height='100%25' width='100%25' transform='matrix(-1 0 0 1 998.257 0)' xlink:href='%23b'/%3e%3cg stroke='%23000' stroke-width='.236'%3e%3cpath d='m496.73 314.54-.634 10.104c-.64-.057-1.877-.16-1.97-.981-.052-.464 1.263-8.732 1.313-9.536.437.12.893.323 1.291.413z' fill='%23ce1126'/%3e%3cpath d='M495.77 314.12c-.063.396-.283 2.806-.22 3.094.189.971 1.383.827 2.043.863l.126-5.18c-.22.215-1.698 1.115-1.949 1.223z' fill='%23002d62'/%3e%3cpath d='M495.88 327.04c1.664-2.085 4.784-.536 4.784-.536 3.415.766 2.565-3.136 2.565-3.136-.693-7.804-1.52-13.144-1.52-13.144l-4.989 3.331z' fill='%23002d62'/%3e%3cpath d='M495.86 327.17c-.36 2.317 1.958 1.977 1.958 1.977 2.757-.04 1.968-2.956 1.968-2.956-2.957-.849-3.926.979-3.926.979z' fill='%23002d62' stroke-width='.188'/%3e%3cpath d='M497.83 312.74c-.173 8.072-.246 8.895-.246 8.895.115 2.212 2.532 1.016 2.532 1.016.575-.24 1.208-.06 1.208-.06l-.115-2.75c4.022-.298 3.087-2.64 3.087-2.64-1.64-7.623-1.747-7.29-1.747-7.29z' fill='%23ce1126'/%3e%3cpath d='M501.31 319.81c-2.537-.04-3.568.96-3.568.96l-.103.22' fill='none' stroke-width='.225'/%3e%3cpath d='m500.99 326.45-.875-15.193 1.75-1.172 1.517 14.216v.146c0 2.638-2.392 2.003-2.392 2.003z' fill='%23fff' stroke-width='.209'/%3e%3c/g%3e%3cg fill='%23fff' stroke='%23000'%3e%3cpath d='m488.23 302.2 6.788 12.45 14.63-9.712-7.62-11.249z' fill='%23000' stroke-width='.042'/%3e%3cpath d='m488.49 302.1 13.753-8.014 7.52 10.823-14.53 9.347z' stroke-width='.272'/%3e%3cpath d='m495.43 313.53 13.697-8.82-1.053-1.686-6.862-9.323-4.962 4.008-6.335 3.51-1.116-.696.223 1.488z' fill='%23000' stroke-width='.039'/%3e%3cpath d='M496.18 297.77c-2.026-.96-4.38 2.067-5.057 2.668-.678.601-2.041.24-2.041.24l6.179 11.086c1.823.72 2.999-1.615 3.846-2.338 1.553-1.325 3.376-1.223 3.376-1.223z' stroke-width='.148'/%3e%3cpath d='M496.36 297.88c.006-2.378 2.952-3.135 3.738-3.557.787-.422 1.033-1.906 1.033-1.906l6.927 10.563c-.126 2.081-2.591 2.288-3.55 2.826-1.758.987-1.997 2.509-1.997 2.509z' stroke-width='.148'/%3e%3cpath d='M495.02 311.82c-3.953-7.236-6.127-11.017-6.127-11.017-.093 1.326-.02 1.242-.02 1.242 4.611 7.43 6.489 11.413 6.489 11.413-.103-.548-.224-1.093-.342-1.638z' stroke-width='.105'/%3e%3cg fill='%23000' stroke='none'%3e%3cpath d='m490.87 302.2.113.185c.032-.017.06-.049.055-.088.006-.029-.032-.066-.017-.085.01-.005.014.017.02.023l.13.212c-.024.021-.036-.037-.06-.04-.031-.029-.09-.023-.11.007.034.054.066.11.102.163.021.024.051.003.071-.01.056-.031.105-.085.105-.152.011-.026-.026-.067.002-.082l.068.158-.388.246c-.015-.013 0-.018.012-.025.042-.021.023-.07 0-.097l-.196-.32c-.016-.034-.059-.023-.082-.004-.01.007-.018-.016-.002-.016l.364-.231.082.134c-.024.02-.04-.034-.067-.038-.047-.028-.103-.005-.145.023zm.4-.28.243.398a.045.045 0 0 0 .066.023c.008.009.005.014-.005.018l-.155.099c-.02-.02.03-.03.014-.056-.017-.037-.041-.071-.062-.107l-.158-.259a.044.044 0 0 0-.066-.022c-.008-.008-.008-.014.003-.018zm.52-.36.096.15c-.023.023-.037-.029-.061-.032-.057-.035-.14-.035-.186.02-.032.034-.019.101.031.11.059.015.119-.002.178-.003.056-.003.12.003.16.048.05.05.054.132.02.192a.231.231 0 0 1-.18.107c-.035.001-.036.04-.044.06-.01.011-.012-.008-.019-.014l-.093-.153c.022-.02.036.028.058.032.058.045.15.056.208.004.044-.032.046-.112-.01-.135-.055-.023-.117-.004-.175-.003-.062.005-.135-.003-.175-.057-.053-.062-.04-.161.02-.213a.214.214 0 0 1 .134-.053c.035.003.038-.033.03-.055l.009-.006zm.51.27c-.015.047-.036.1-.084.122-.04.018-.087-.011-.096-.053-.014-.052.017-.101.04-.146.012-.027.04-.053.045-.08-.016-.023-.028-.049-.048-.069-.034-.022-.09.014-.082.053.022.015.061.021.056.058-.002.044-.064.068-.095.037-.033-.04-.012-.098.017-.134a.217.217 0 0 1 .125-.08c.048-.009.091.02.11.063.033.052.064.105.098.157.009.023.04.012.036-.012.027-.003.01.032.008.048-.012.038-.053.069-.093.061a.077.077 0 0 1-.036-.025zm-.015-.025-.064-.105c-.019.038-.037.082-.024.124.011.044.073.037.082-.004l.003-.007zm.145-.435.025.04c.007-.05.034-.102.085-.12.044-.016.092.013.114.052.04.06.075.125.115.185.01.025.039.018.055.015.01.009 0 .013-.008.018l-.144.09c-.018-.017.023-.031.006-.054-.022-.044-.05-.086-.076-.129-.02-.03-.036-.063-.06-.09-.041-.033-.073.033-.066.07l.113.183c.01.024.037.03.056.025.01.009.001.013-.008.018l-.143.09c-.02-.02.03-.034.008-.06-.026-.048-.057-.094-.085-.14-.02-.034-.039-.068-.063-.099-.013-.024-.049.012-.051-.015l.126-.08zm.31-.35.07.115.074-.047.02.033-.073.047c.043.07.085.141.13.211.01.033.06.028.061-.008.003-.014-.004-.035.017-.028.01.05-.013.108-.063.127a.09.09 0 0 1-.117-.046l-.121-.197-.04.026c-.017-.018.01-.04.01-.06a.452.452 0 0 0 .021-.165l.011-.007zm.31-.05a.162.162 0 0 1 .183.004.24.24 0 0 1 .1.178.162.162 0 0 1-.074.148.152.152 0 0 1-.151.018.224.224 0 0 1-.123-.274.16.16 0 0 1 .065-.074zm.016.023c-.044.03-.01.085.009.12.03.054.059.11.101.155.03.037.097.01.085-.039-.008-.04-.033-.074-.052-.11-.024-.04-.046-.081-.078-.114-.017-.016-.044-.028-.065-.012zm-1.666 2.067.113.185c.032-.017.06-.049.055-.088.006-.029-.032-.066-.017-.085.01-.005.014.017.02.023l.13.212c-.024.021-.036-.037-.06-.04-.031-.029-.09-.023-.11.006.034.055.066.111.102.164.021.024.05.003.071-.01.056-.031.105-.085.105-.152.011-.026-.026-.067.002-.082l.068.158-.388.246c-.015-.013 0-.018.012-.025.042-.021.023-.07 0-.097l-.196-.32c-.016-.034-.059-.023-.082-.004-.011.007-.018-.016-.002-.016l.364-.231.082.134c-.025.02-.04-.034-.067-.038-.047-.028-.103-.005-.145.023zm.7.18-.274-.191c-.021-.016-.05-.03-.074-.022-.005-.006-.009-.012.001-.015l.157-.1c.008.009.01.016-.004.022-.022.033.024.056.046.073l.118.082c-.01-.056-.018-.113-.03-.168-.002-.028-.027-.06-.056-.038-.005.006-.017-.012-.008-.013l.097-.061c.019.016-.015.028-.01.048.001.046.011.091.017.137l.036.236zm.33-.3c-.015.047-.036.1-.084.122-.04.018-.087-.011-.096-.053-.014-.052.017-.101.04-.146.012-.027.04-.053.045-.079-.016-.024-.028-.05-.048-.07-.034-.022-.09.014-.082.053.021.016.061.021.056.058-.002.043-.064.068-.095.037-.033-.04-.013-.098.017-.134a.217.217 0 0 1 .125-.08c.048-.009.091.02.11.063l.097.157c.01.023.04.012.036-.012.028-.003.01.032.008.048-.011.038-.052.069-.092.061a.072.072 0 0 1-.036-.025zm-.015-.025-.064-.105c-.019.038-.037.082-.024.124.011.044.073.037.082-.004l.003-.007zm.155-.425.025.04c.007-.05.033-.102.084-.12.045-.016.093.013.115.052.04.06.075.125.115.185.01.025.039.018.055.015.01.01 0 .013-.008.018l-.144.091c-.018-.018.023-.032.006-.055-.022-.044-.05-.085-.075-.127-.02-.031-.036-.064-.06-.092-.042-.033-.074.033-.067.07l.113.184c.01.024.037.03.057.024.01.009 0 .013-.008.018l-.144.09c-.02-.019.03-.034.008-.059-.026-.049-.057-.096-.086-.144-.02-.032-.038-.066-.062-.095-.013-.024-.049.012-.05-.015l.125-.08zm.45-.28.104-.066.023.037-.06.037c.062.01.103.078.087.137a.184.184 0 0 1-.103.12c-.05.011-.029.1.021.07.054-.031.102-.073.163-.087.044-.01.086.022.098.063.016.05-.011.102-.048.136a.368.368 0 0 1-.178.096c-.05.015-.09-.047-.052-.085.006-.01.027-.025.003-.019a.071.071 0 0 1-.077-.066c-.004-.035.014-.068.033-.097-.048.013-.104.004-.137-.036-.046-.052-.033-.136.014-.183a.193.193 0 0 1 .11-.057zm-.053.044c-.037.026-.015.077.003.108.022.035.044.085.091.088.044-.003.05-.06.03-.09a.281.281 0 0 0-.077-.105.042.042 0 0 0-.047 0zm.194.361c-.035.012-.073.07-.023.09.043.012.082-.02.117-.04.031-.023.08-.067.047-.107-.045-.018-.084.027-.123.045zm.339-.535-.17.108c.028.041.07.08.122.083.049.003.083-.044.082-.09-.001-.012-.002-.022.012-.019.012 0 .002.025.006.033a.156.156 0 0 1-.047.125c-.04.037-.1.056-.152.034a.246.246 0 0 1-.13-.151c-.024-.071-.004-.162.063-.202.053-.035.126-.019.169.024a.304.304 0 0 1 .045.055zm-.095.03c-.024-.035-.043-.081-.088-.09-.048 0-.045.06-.031.091.007.02.018.038.029.056l.09-.058zm.085-.41.243.398a.045.045 0 0 0 .066.023c.008.009.005.014-.005.018l-.155.099c-.02-.02.03-.03.014-.056-.017-.037-.041-.071-.062-.107l-.158-.259a.044.044 0 0 0-.065-.022c-.008-.008-.008-.014.003-.018l.12-.076zm.13-.11c.032-.023.082-.002.09.036.011.04-.025.083-.066.077-.044-.004-.069-.062-.042-.096a.051.051 0 0 1 .018-.017zm.14.123.156.256a.045.045 0 0 0 .066.023c.007.008.007.014-.004.017l-.157.1c-.02-.019.026-.026.015-.05-.012-.034-.033-.062-.05-.093l-.09-.144c-.01-.027-.042-.025-.06-.017-.009-.007-.008-.013.002-.016l.12-.076zm.21-.133a.162.162 0 0 1 .183.004c.059.043.1.113.1.187a.161.161 0 0 1-.079.141.15.15 0 0 1-.154.012.224.224 0 0 1-.114-.27.16.16 0 0 1 .064-.074zm.016.023c-.044.03-.01.085.009.12.03.054.059.11.101.155.03.038.097.01.085-.039-.008-.04-.033-.074-.052-.11-.026-.04-.048-.085-.083-.118-.016-.014-.041-.022-.06-.008zm-1.946 2.207.096.15c-.023.023-.037-.029-.061-.033-.057-.034-.14-.034-.186.02-.032.035-.019.102.031.112.059.014.119-.003.178-.004.056-.003.12.003.16.048.05.05.054.132.02.192a.231.231 0 0 1-.18.107c-.035.001-.036.04-.044.06-.01.011-.012-.008-.018-.014l-.093-.153c.021-.02.035.028.057.032.058.045.15.056.208.004.044-.032.046-.112-.009-.135-.056-.023-.117-.004-.175-.003-.063.005-.135-.004-.176-.056-.054-.065-.038-.169.027-.22a.215.215 0 0 1 .127-.047c.036.003.038-.033.03-.055a.03.03 0 0 1 .008-.005zm.53.08-.17.108c.028.041.07.08.122.083.049.003.083-.044.082-.09-.001-.012-.002-.022.012-.019.012 0 .002.025.006.033a.156.156 0 0 1-.047.125c-.04.037-.1.056-.152.034a.245.245 0 0 1-.13-.151c-.024-.071-.004-.162.063-.202.053-.035.126-.019.169.024a.301.301 0 0 1 .045.055zm-.095.03c-.024-.035-.044-.081-.088-.09-.048 0-.045.06-.031.091.007.02.018.038.029.056l.09-.058zm.235-.33.104-.066.023.037-.06.037c.062.01.103.078.087.137a.184.184 0 0 1-.103.12c-.05.011-.028.1.021.07.054-.031.102-.073.163-.087.044-.01.086.022.098.063.016.05-.011.102-.048.136a.37.37 0 0 1-.178.096c-.05.014-.09-.047-.052-.085.006-.01.027-.025.003-.02a.071.071 0 0 1-.077-.065c-.004-.035.014-.069.033-.097-.048.013-.104.004-.137-.036-.046-.052-.033-.136.014-.183a.19.19 0 0 1 .11-.057zm-.053.044c-.037.026-.015.077.003.108.022.035.044.085.091.088.044-.003.05-.06.03-.09a.284.284 0 0 0-.077-.105.042.042 0 0 0-.047 0zm.194.361c-.035.012-.073.07-.023.09.043.012.082-.02.117-.04.031-.023.08-.067.047-.107-.045-.018-.084.027-.123.045zm.299-.685.16.262a.04.04 0 0 0 .059.02c.008.008.005.014-.005.018l-.115.072-.025-.042c-.005.051-.033.104-.083.121-.044.015-.092-.01-.114-.048-.042-.061-.077-.126-.118-.188-.01-.024-.038-.017-.054-.014-.009-.008-.004-.013.005-.017l.115-.073.145.236c.015.042.074.03.076-.013.005-.02.01-.04-.005-.056l-.103-.167a.04.04 0 0 0-.057-.02c-.008-.008-.008-.014.003-.018zm.21-.13.025.04c.007-.05.034-.102.085-.12.044-.016.092.013.114.052.04.06.075.125.116.185.01.025.038.018.054.015.01.009 0 .013-.008.018l-.144.09c-.018-.017.023-.031.006-.054-.022-.044-.05-.086-.076-.129-.02-.03-.036-.063-.06-.09-.041-.033-.073.033-.066.07l.113.184c.01.023.037.03.056.024.01.009.001.013-.008.018l-.143.09c-.02-.019.03-.034.008-.059-.027-.05-.058-.096-.086-.144-.02-.032-.038-.066-.062-.096-.013-.024-.049.013-.051-.015l.126-.08zm.62-.6.096.15c-.023.023-.037-.029-.061-.033-.057-.034-.14-.034-.186.02-.032.035-.019.102.031.112.059.014.119-.003.178-.004.056-.003.12.003.16.048.05.05.054.132.02.192a.231.231 0 0 1-.18.107c-.035.001-.036.04-.044.06-.01.012-.012-.008-.018-.014l-.094-.153c.022-.02.036.028.058.032.058.045.15.056.208.004.044-.032.046-.112-.009-.135-.056-.023-.117-.004-.175-.003-.063.005-.135-.003-.176-.056a.158.158 0 0 1 .02-.214.213.213 0 0 1 .134-.053c.036.003.038-.033.03-.055l.008-.006zm.5.24c-.015.047-.036.1-.084.122-.04.019-.087-.012-.096-.053-.014-.05.015-.098.038-.14.012-.03.041-.057.047-.085-.016-.024-.028-.05-.048-.07-.033-.022-.09.014-.082.053.021.016.061.021.056.058-.002.044-.064.068-.095.037-.033-.04-.013-.098.017-.133a.216.216 0 0 1 .125-.081.104.104 0 0 1 .11.063l.097.157c.01.023.04.012.036-.012.028-.003.01.032.007.048-.011.038-.052.069-.092.061a.075.075 0 0 1-.037-.025zm-.015-.025-.064-.105c-.019.038-.037.082-.024.124.011.044.073.037.082-.004l.003-.007zm.155-.415.025.04c.007-.05.034-.102.085-.12.044-.016.092.013.114.052.04.06.075.125.116.185.01.025.038.018.054.015.01.009 0 .013-.008.018l-.144.09c-.018-.017.023-.031.006-.054-.022-.044-.05-.086-.076-.129-.019-.03-.036-.063-.06-.09-.041-.033-.073.033-.066.07l.113.184c.01.023.037.03.057.024.01.009 0 .013-.008.018l-.144.09c-.02-.02.03-.034.008-.059-.026-.05-.057-.096-.086-.144-.02-.032-.038-.066-.062-.096-.013-.024-.049.013-.05-.015l.125-.079zm.42-.44c-.008-.009-.009-.015.003-.02l.227-.144c.008.01.01.016-.003.02-.038.015-.043.06-.016.09l.155.254c.024.041.044.091.025.138a.194.194 0 0 1-.146.119c-.048.008-.108-.012-.124-.062-.014-.042.03-.088.072-.074.044.01.031.062.043.092.04.024.097-.03.065-.071-.04-.075-.087-.147-.131-.22-.028-.044-.053-.09-.083-.133-.02-.026-.056-.012-.077.004l-.01.006zm.64-.23.16.262a.04.04 0 0 0 .059.02c.008.008.005.014-.005.018l-.115.072-.025-.042c-.005.049-.03.099-.076.119a.097.097 0 0 1-.118-.042c-.043-.062-.079-.129-.12-.192-.01-.024-.039-.017-.055-.014-.009-.008-.004-.013.005-.017l.115-.073c.048.079.095.158.145.236.015.042.074.03.076-.013.005-.02.009-.04-.005-.056l-.103-.167a.04.04 0 0 0-.058-.02c-.008-.008-.008-.014.003-.018zm.41.1c-.015.047-.036.1-.084.122-.04.019-.087-.012-.096-.053-.014-.052.017-.101.04-.146.012-.027.04-.053.045-.08-.016-.023-.028-.049-.048-.069-.034-.022-.09.014-.082.053.021.015.061.02.056.057-.002.044-.064.069-.095.037-.033-.04-.013-.097.017-.133a.216.216 0 0 1 .125-.08c.048-.009.091.02.11.063l.097.157c.01.023.04.012.036-.012.028-.003.01.032.008.048-.011.038-.052.069-.092.061a.074.074 0 0 1-.037-.025zm-.015-.025-.064-.105c-.019.038-.037.082-.024.124.011.044.073.037.082-.004l.003-.007zm.145-.425.025.04c.007-.05.034-.102.085-.12.044-.016.092.013.114.052.04.06.075.125.115.185.01.025.039.018.055.015.01.009 0 .013-.008.018l-.144.09c-.018-.017.023-.031.006-.054-.022-.044-.05-.086-.076-.129-.019-.03-.036-.063-.06-.09-.041-.033-.073.033-.066.07l.113.184c.01.023.037.03.057.024.01.009 0 .013-.008.018l-.144.09c-.02-.02.03-.034.008-.059-.026-.05-.057-.096-.086-.144-.02-.032-.038-.066-.062-.096-.013-.024-.049.012-.051-.015l.125-.079zm-2.7 4.74.105.148c-.022.018-.04-.03-.064-.033a.165.165 0 0 0-.187.012.17.17 0 0 0-.07.161c.009.078.048.15.098.209.042.049.107.082.173.07.076-.013.147-.071.16-.15.012-.02-.001-.062.017-.07.02.001.002.042.006.057a.23.23 0 0 1-.112.177.238.238 0 0 1-.225.026.304.304 0 0 1-.16-.387.262.262 0 0 1 .223-.159c.035.002.025-.04.028-.056zm.54.08-.174.11c.007.042.01.085.021.126.008.042.057.017.077.01.012.01 0 .015-.01.02l-.126.08c-.022-.022.034-.035.024-.064.002-.05-.011-.1-.018-.151l-.059-.397c.009-.01.017-.005.025.003l.391.281c.03.027.076.032.108.017.012.01 0 .014-.01.02l-.161.102c-.023-.022.035-.029.025-.057-.008-.03-.04-.044-.062-.062l-.051-.037zm-.025-.019-.188-.136.034.234.155-.098zm.305-.251c.031.05.061.102.094.152.015.035.058.038.084.014.007-.011.016 0 .016.007l-.191.121c-.009-.009-.009-.015.004-.02.041-.016.04-.066.014-.096l-.192-.314a.053.053 0 0 0-.086-.018c-.008.01-.018.002-.018-.007.067-.042.132-.086.2-.125.048-.028.109-.042.161-.018.075.035.106.14.058.207a.283.283 0 0 1-.144.097zm-.012-.02c.042-.014.092-.036.1-.086.016-.063-.03-.131-.09-.151-.047-.014-.094.014-.125.05l.115.188zm.592-.05c.008.009.009.015-.003.02l-.181.115c-.008-.01-.01-.016.003-.02.038-.016.043-.062.017-.092l-.195-.32c-.015-.037-.06-.042-.088-.017-.007.012-.018-.004-.014-.009l.19-.12c.008.009.009.015-.003.02-.039.015-.043.062-.017.092l.19.312c.014.038.06.054.091.025l.01-.007zm.13-.71.07.104c-.024.021-.035-.036-.064-.034-.043-.015-.08.018-.115.039l-.026.017.221.362c.015.037.059.043.087.017.007-.013.02.006.012.01l-.186.118c-.011-.01-.006-.016.006-.021.043-.02.033-.07.008-.1l-.212-.346c-.034.023-.072.04-.1.072-.023.03-.001.074 0 .1-.01.012-.012-.007-.018-.014l-.05-.091.367-.232zm.36-.2c-.012-.01-.004-.017.007-.022l.144-.091c.012.01.004.017-.007.022-.042.022-.03.075-.004.105.044.074.091.147.133.222.026.046.042.102.023.153-.024.075-.097.12-.166.149a.159.159 0 0 1-.19-.063c-.05-.072-.093-.148-.139-.222-.018-.027-.031-.062-.064-.072-.022-.005-.041.016-.058.02-.013-.01 0-.015.01-.021l.177-.113c.012.011.004.017-.007.023-.042.019-.033.07-.008.1.045.072.089.146.135.218.029.04.064.089.119.089a.178.178 0 0 0 .147-.094.129.129 0 0 0 .002-.127c-.033-.068-.077-.131-.115-.197-.021-.032-.037-.068-.065-.094-.025-.017-.051.003-.073.015zm.74-.05c.013-.01.015.002.017.013.01.044.022.087.033.13l-.348.22c-.011-.01-.005-.016.006-.021.044-.02.032-.072.007-.102l-.188-.307a.054.054 0 0 0-.087-.018c-.007.013-.023-.004-.014-.009l.2-.126c.021.023-.033.028-.039.05-.023.033.007.066.023.094.059.097.117.194.177.29.022.046.07.014.098-.007.038-.026.083-.047.106-.089.019-.036.013-.079.008-.118zm.08-.5c.1-.067.243-.04.321.048a.3.3 0 0 1 .076.277.256.256 0 0 1-.276.193.274.274 0 0 1-.2-.14.278.278 0 0 1-.026-.253.26.26 0 0 1 .105-.125zm.009.029a.152.152 0 0 0-.07.15.423.423 0 0 0 .105.217c.043.049.106.093.174.081a.161.161 0 0 0 .128-.157.387.387 0 0 0-.088-.211c-.04-.054-.097-.107-.169-.107a.155.155 0 0 0-.08.026zm.881-.589c.021.02-.025.033-.02.058-.006.046.008.092.013.139l.068.41c-.009.01-.017.008-.026 0l-.415-.29c-.025-.029-.067-.008-.09-.006-.012-.01.004-.013.011-.018l.167-.106c.024.023-.038.032-.028.062.01.03.041.046.066.064l.264.185-.06-.353c.002-.043-.041-.07-.077-.044-.007.004-.017-.015-.003-.016l.13-.084zm.49.31c.008.009.009.015-.003.02l-.181.115c-.008-.01-.01-.016.003-.02.038-.016.043-.062.017-.092l-.195-.32c-.015-.037-.06-.042-.088-.017-.007.012-.018-.004-.014-.009l.19-.12c.008.009.009.015-.003.02-.039.015-.043.062-.017.092l.19.312c.014.038.06.054.091.025l.01-.007zm.23-.15c.008.009.009.015-.003.02l-.181.115c-.008-.01-.01-.016.003-.02.038-.016.043-.062.017-.092l-.195-.32c-.015-.037-.06-.041-.088-.017-.007.012-.018-.004-.014-.009l.19-.12c.008.009.009.015-.003.02-.039.015-.043.062-.017.092l.19.312c.014.038.06.054.091.025l.01-.007zm.22-.14c.008.009.009.015-.003.02l-.181.115c-.008-.01-.01-.016.003-.02.038-.016.043-.062.017-.092l-.195-.32c-.015-.037-.06-.042-.088-.017-.007.012-.018-.004-.014-.009l.19-.12c.008.009.009.015-.003.02-.039.015-.043.062-.017.092l.19.312c.014.038.06.054.091.025l.01-.007zm-3.92 4.12c-.009-.055-.003-.12.043-.158.035-.032.088-.05.134-.029.053.02.07.082.06.133.002.014-.018.046-.005.047a.14.14 0 0 1 .143.057.185.185 0 0 1-.008.225.271.271 0 0 1-.121.083c-.034.015-.07-.033-.033-.054.038-.021.089-.003.123-.036.047-.037.048-.113.007-.155a.12.12 0 0 0-.12-.042c-.025 0-.05.019-.068.027-.015-.017.025-.027.026-.046a.12.12 0 0 0 0-.142c-.03-.048-.104-.046-.138-.003-.026.023-.024.067-.033.092a.28.28 0 0 1-.01 0zm.36-.29.076-.123c.008-.008.014-.007.017.004l.24.39c.011.032.046.046.073.024.01-.012.017-.008.022.004l-.169.107c-.022-.022.03-.026.033-.05.008-.028-.018-.051-.03-.075-.056-.091-.11-.183-.168-.274-.011-.03-.052-.052-.071-.016-.01.013-.01.02-.023.01zm.73-.51.157-.1c.02.018-.015.02-.019.037-.032.048-.022.107-.025.161l-.002.195c.03.046.056.095.088.14.018.034.058.022.082.003.01-.004.017.016.001.017l-.18.114c-.012-.01-.005-.017.007-.022.043-.02.03-.071.006-.1l-.064-.105c-.094-.043-.187-.089-.281-.13-.026-.019-.065.003-.084-.003-.01-.01.012-.013.018-.02l.17-.108c.02.018-.016.02-.021.037-.03.038.023.06.052.073l.174.082.002-.216a.046.046 0 0 0-.075-.045.047.047 0 0 1-.005-.01zm.82.04c-.008.052-.043.101-.095.115-.068.02-.142-.02-.178-.078a.225.225 0 0 1-.016-.226c.026-.044.08-.08.132-.067-.025-.04-.048-.082-.076-.12-.018-.027-.044 0-.056.01-.013-.005-.007-.012 0-.02.02-.027.039-.056.06-.083.007-.006.015-.011.019.002.079.129.156.257.236.385.01.026.047.054.066.02.005-.015.024.005.01.012l-.061.086c-.008.005-.016.014-.02 0l-.02-.036zm-.014-.024-.097-.158c-.025-.037-.078-.06-.12-.035-.044.03-.043.095-.023.14.025.059.07.122.138.132a.082.082 0 0 0 .094-.051.147.147 0 0 0 .008-.028zm.094-.236c.028.048.075.09.133.093.054.005.11-.036.115-.092.005-.017-.006-.043-.001-.055.023-.005.017.032.023.046.007.053-.006.113-.05.146a.148.148 0 0 1-.163.012.248.248 0 0 1-.106-.136.166.166 0 0 1 .051-.188.134.134 0 0 1 .138-.023c.027.012.063.04.066.066zm-.012-.02.14-.089c-.018-.033-.057-.06-.096-.048-.049.013-.07.073-.052.117a.14.14 0 0 0 .008.02zm.572-.22a.184.184 0 0 1-.014.172.134.134 0 0 1-.145.05c-.066-.016-.112-.073-.138-.133-.033-.075-.009-.175.064-.218a.124.124 0 0 1 .132-.008c.03.015.027.061-.007.07-.046.02-.055-.06-.102-.042-.048.013-.068.067-.056.112a.208.208 0 0 0 .123.145c.05.02.109-.01.126-.06.015-.026.003-.064.007-.087zm-.1-.44c.047-.032.088.054.035.072-.045.017-.076-.047-.035-.072zm.126.143c.053.087.105.174.16.26.012.03.048.04.072.016.005.007.01.015-.002.018l-.139.088c-.02-.022.032-.025.024-.051-.003-.03-.024-.053-.038-.078-.03-.05-.06-.1-.093-.148-.015-.026-.045-.008-.057.01-.008-.006-.014-.01-.005-.017.022-.03.042-.06.064-.088zm.414.107c-.016.038-.024.084-.06.109-.043.035-.109.012-.13-.036-.023-.04-.004-.087.016-.124a1.04 1.04 0 0 1 .076-.108c-.015-.026-.03-.055-.06-.067-.041-.013-.098.032-.075.076.01.016.026.034.017.054-.018.039-.07.013-.07-.023-.007-.053.03-.099.073-.124.034-.022.08-.042.118-.018.028.02.042.052.06.08.029.045.055.092.086.136.019.026.042-.005.04-.027.002-.012.004-.018.01-.006.015.02-.002.05-.007.071-.01.038-.063.058-.085.02-.005 0-.004-.015-.01-.013zm-.013-.022-.072-.117c-.027.04-.064.08-.066.13 0 .04.041.081.082.068.032-.014.045-.052.056-.08zm.113-.608c-.006-.008-.01-.015.001-.018l.183-.116c.006.008.01.014-.001.018-.033.014-.048.055-.024.084l.158.26c.026.045.042.1.025.152a.115.115 0 0 1-.103.081c-.049.006-.079-.072-.023-.086.035-.011.064.055.094.021.01-.03-.014-.056-.028-.081l-.186-.303c-.014-.037-.059-.042-.087-.018zm.42.09c.028.048.075.09.133.093.054.005.11-.036.115-.092.005-.017-.006-.043-.001-.055.023-.005.017.032.023.046.007.053-.006.113-.05.146a.147.147 0 0 1-.156.016.242.242 0 0 1-.113-.14.166.166 0 0 1 .05-.188.134.134 0 0 1 .14-.023c.026.012.062.04.065.066zm-.012-.02.14-.089c-.018-.033-.057-.06-.096-.048-.049.013-.07.073-.052.117a.14.14 0 0 0 .008.02zm.382-.39.064.105c-.017.018-.03-.018-.046-.023a.087.087 0 0 0-.122.018c-.03.04.014.09.058.082.047 0 .093-.014.14-.008a.099.099 0 0 1 .087.087c.005.055-.033.107-.083.128-.025.016-.067.012-.077.044-.007.008-.01.001-.014-.006l-.06-.1c.017-.017.027.019.044.023.04.03.104.03.137-.011.026-.03.008-.08-.03-.09-.058-.013-.118.01-.176-.003-.057-.016-.085-.09-.058-.14.018-.04.06-.062.1-.071.017-.001.029-.014.026-.03l.01-.006zm.35-.19c.049.079.096.158.146.236.013.034.052.027.066.004.01.004.01.01.003.017-.02.03-.04.059-.062.087-.007.003-.015.013-.018 0l-.035-.058c-.01.045-.017.099-.058.127-.036.03-.092.02-.12-.016-.033-.038-.056-.084-.083-.127-.018-.028-.033-.059-.055-.084-.02-.022-.05.006-.065.005-.009-.008-.003-.013.005-.016l.095-.06.133.215c.017.043.077.051.103.012.014-.023.038-.057.027-.083l-.106-.173c-.014-.032-.052-.023-.073-.009-.006-.007-.01-.013.002-.017zm.26-.19.064.105c-.017.018-.03-.018-.046-.023a.087.087 0 0 0-.122.018c-.03.04.015.09.058.082.047 0 .093-.014.14-.008a.099.099 0 0 1 .087.087c.005.055-.033.107-.082.128-.026.016-.068.012-.078.044-.007.008-.01.001-.014-.006l-.06-.1c.017-.017.027.019.044.023.04.03.104.03.137-.011.026-.03.008-.08-.03-.09-.06-.014-.123.014-.184-.005-.053-.021-.076-.093-.048-.143.02-.037.06-.056.099-.066.016-.002.028-.013.025-.03zm.57.02c-.016.038-.024.084-.06.109-.043.035-.109.012-.13-.036-.023-.04-.004-.087.016-.124.023-.038.05-.073.076-.108-.015-.026-.031-.055-.06-.067-.041-.013-.098.032-.075.076.01.016.026.034.017.054-.018.039-.07.013-.07-.023-.007-.053.03-.1.073-.125.034-.02.08-.04.118-.018.028.02.042.052.06.08.029.046.055.093.086.137.019.026.042-.005.04-.027.002-.012.004-.018.01-.006.015.02-.002.05-.007.071-.01.038-.063.058-.085.02l-.004-.007-.004-.006zm-.013-.022-.072-.117c-.027.04-.064.08-.066.13 0 .04.041.081.082.068.032-.014.045-.052.056-.08zm-4.497 3.472.258.42c.013.039.055.03.077.016.009.008.003.013-.006.017l-.137.087c-.021-.02.03-.024.022-.05-.004-.03-.025-.053-.039-.08-.06-.096-.117-.193-.178-.288-.01-.027-.044-.047-.062-.016-.003.012-.025-.003-.012-.01.021-.029.041-.06.063-.088l.014-.009zm.33 0a.16.16 0 0 1 .158-.01.21.21 0 0 1 .117.184.167.167 0 0 1-.08.154.153.153 0 0 1-.157.007.211.211 0 0 1-.115-.193.165.165 0 0 1 .077-.142zm.003.028c-.038.024-.044.076-.028.115a.284.284 0 0 0 .135.155c.04.022.096.008.115-.035.02-.046-.005-.094-.029-.133-.03-.05-.074-.1-.135-.113a.087.087 0 0 0-.058.011zm.377-.268.064.105c-.017.018-.03-.018-.046-.023-.036-.03-.095-.02-.122.018-.03.04.015.09.058.082.047 0 .093-.014.14-.008a.099.099 0 0 1 .087.087c.005.055-.033.107-.083.128-.025.016-.067.012-.077.044-.007.008-.01.001-.014-.006l-.06-.1c.017-.017.027.019.044.023.04.03.104.029.137-.011.026-.03.008-.08-.03-.09-.058-.013-.118.01-.176-.003-.057-.016-.084-.09-.058-.14.018-.04.06-.061.1-.07.017-.002.029-.015.026-.03l.01-.007zm.22-.35c.048-.032.089.054.035.073-.045.017-.074-.048-.035-.073zm.127.143.198.324c.03.05.046.117.013.17-.024.036-.07.075-.115.06-.042-.028.008-.08.045-.06a.039.039 0 0 0 .049-.057c-.034-.064-.075-.125-.112-.188-.032-.05-.06-.102-.096-.15-.018-.028-.043.009-.056.01-.014-.004-.002-.013.003-.02.02-.028.038-.056.059-.082zm.363-.213c.049.079.096.158.146.236.013.034.052.027.066.004.01.004.01.01.003.017-.02.03-.04.059-.062.087-.007.003-.015.013-.018 0l-.035-.058c-.01.045-.017.099-.058.127-.036.03-.092.02-.12-.016-.032-.038-.055-.083-.082-.126-.019-.028-.034-.06-.056-.086-.02-.022-.05.006-.065.005-.009-.008-.003-.012.005-.016l.095-.06.133.216c.017.042.077.051.103.012.014-.023.038-.057.027-.084l-.106-.172c-.014-.032-.052-.024-.073-.009-.006-.007-.01-.014.002-.017zm.45.1c-.008.052-.043.101-.095.115-.068.02-.142-.02-.178-.078a.225.225 0 0 1-.016-.226c.027-.044.08-.08.132-.067-.025-.04-.048-.082-.077-.12-.017-.027-.043 0-.055.01-.013-.005-.007-.012 0-.02.02-.027.039-.056.06-.083.007-.006.015-.011.019.002.078.128.156.257.236.385.01.026.046.054.066.02.005-.015.024.005.01.011-.02.03-.04.059-.061.087-.008.005-.016.014-.02 0l-.02-.036zm-.014-.024-.097-.158c-.025-.037-.078-.06-.12-.035-.044.03-.043.095-.023.14.025.06.07.122.138.132a.082.082 0 0 0 .094-.051.137.137 0 0 0 .008-.028zm-.056-.556c.047-.032.088.054.035.072-.045.017-.076-.047-.035-.072zm.126.143c.053.087.105.174.16.26.012.03.048.04.072.016.005.007.01.015-.002.018l-.139.088c-.02-.022.032-.025.024-.052-.003-.029-.024-.052-.038-.077-.03-.05-.06-.1-.093-.148-.015-.026-.045-.008-.057.01-.008-.006-.014-.01-.005-.017.022-.03.042-.06.064-.088zm.224-.153a.16.16 0 0 1 .158-.01.21.21 0 0 1 .117.184.167.167 0 0 1-.08.154.153.153 0 0 1-.157.007.211.211 0 0 1-.115-.193.165.165 0 0 1 .077-.142zm.003.028c-.038.024-.044.076-.028.115a.284.284 0 0 0 .135.155c.04.022.096.008.115-.035.02-.046-.005-.094-.029-.133-.03-.05-.074-.1-.135-.113a.082.082 0 0 0-.058.011zm.387-.278.064.105c-.021.018-.037-.028-.06-.03-.045-.028-.119.004-.118.06.007.046.063.053.1.045.052-.004.107-.02.153.01.044.03.054.094.027.137-.024.049-.078.069-.126.083-.013.003-.022.044-.033.017l-.06-.099c.02-.018.035.03.06.031.042.024.108.013.13-.035.016-.038-.02-.08-.06-.078-.056-.005-.115.017-.17-.004a.105.105 0 0 1-.032-.154c.024-.035.068-.045.106-.058.015-.008 0-.025.019-.03zm.5-.32.25.409c.013.036.054.028.076.012.01.009.005.015-.005.02l-.14.088c-.02-.016.01-.02.018-.034.02-.026-.007-.053-.02-.077l-.073-.12c-.006.05-.022.109-.072.132-.06.027-.133-.004-.172-.053-.049-.059-.074-.142-.046-.216.02-.058.075-.11.14-.11.025.002.02-.045.044-.051zm.093.277c-.032-.052-.063-.105-.096-.156-.02-.037-.071-.044-.104-.02-.049.03-.056.098-.032.146.024.054.064.114.128.122a.093.093 0 0 0 .103-.079c-.004.001.007-.014.002-.013zm.257-.467c.049.079.096.158.146.236.013.034.052.027.066.004.01.004.01.01.003.017-.02.03-.04.059-.062.087-.007.003-.015.013-.018 0l-.035-.058c-.01.045-.017.099-.058.127-.036.03-.092.02-.12-.016-.032-.038-.055-.083-.082-.126-.019-.028-.034-.06-.056-.086-.02-.022-.05.006-.065.005-.009-.008-.003-.012.005-.016l.095-.06.133.216c.017.042.077.051.103.012.014-.023.038-.057.027-.084l-.106-.172c-.014-.032-.051-.024-.073-.009-.006-.007-.01-.014.002-.017zm.19.02c.028.048.075.09.133.093.054.005.11-.036.115-.092.005-.017-.006-.043-.001-.055.023-.005.017.032.024.046.007.053-.006.113-.05.146a.147.147 0 0 1-.156.016.242.242 0 0 1-.114-.14.166.166 0 0 1 .051-.188.134.134 0 0 1 .138-.023c.027.012.063.04.066.066l-.206.13zm-.012-.02.14-.089c-.018-.033-.057-.06-.096-.048-.049.013-.07.073-.052.117a.14.14 0 0 0 .008.02zm.372-.59.258.42c.013.039.055.03.077.016.009.008.003.014-.006.018l-.137.087c-.021-.021.03-.025.022-.05-.004-.03-.025-.054-.039-.08-.06-.096-.117-.193-.178-.29-.01-.026-.044-.046-.062-.015-.003.013-.025-.003-.012-.01.021-.029.041-.059.063-.087l.014-.01zm.3.2c.028.048.075.09.133.093.054.005.11-.036.115-.092.005-.017-.006-.043-.001-.055.023-.005.017.032.024.046.007.053-.006.113-.05.146a.147.147 0 0 1-.156.016.242.242 0 0 1-.114-.14.166.166 0 0 1 .051-.188.134.134 0 0 1 .138-.023c.027.012.063.04.066.066zm-.012-.02.14-.089c-.018-.034-.056-.06-.096-.048-.048.013-.07.073-.052.117a.14.14 0 0 0 .008.02zm-3.718 3.19.137.225c.01-.049.02-.107.07-.132.043-.027.096.002.12.04.043.06.077.125.118.185.014.03.049.014.066.008.011.01-.003.014-.011.02l-.133.084c-.02-.02.024-.022.025-.042.01-.027-.014-.049-.025-.07-.032-.051-.06-.104-.097-.151-.03-.044-.091-.014-.105.028-.007.022-.024.048-.005.067.035.057.069.115.106.171.014.035.053.004.07.006.01.01-.007.014-.013.02l-.133.083c-.02-.022.037-.029.024-.058-.013-.037-.038-.069-.057-.103-.055-.088-.108-.178-.164-.265-.013-.035-.052-.025-.067-.004-.014-.005-.005-.014.001-.022.02-.027.039-.055.06-.082l.013-.009zm.68.16c-.016.038-.024.084-.06.109-.043.035-.109.012-.13-.036-.023-.04-.004-.087.016-.124a1.04 1.04 0 0 1 .076-.108c-.015-.026-.031-.055-.06-.067-.041-.013-.098.032-.075.076.01.016.026.034.017.054-.018.039-.07.013-.07-.023-.007-.053.03-.1.073-.125.034-.02.08-.04.118-.018.028.02.042.053.06.08.029.046.055.093.086.137.019.026.042-.005.04-.027.002-.012.004-.018.01-.006.015.02-.002.05-.007.071-.01.038-.063.058-.085.02l-.004-.007-.004-.006zm-.013-.022-.072-.117c-.027.04-.064.08-.066.13 0 .04.041.081.082.067.032-.013.045-.05.056-.08zm.093-.328c.002-.052.022-.112.075-.132.063-.026.137.01.174.062a.215.215 0 0 1 .044.19.178.178 0 0 1-.136.133c-.024 0-.062.019-.078 0l-.214-.35c-.011-.027-.047-.053-.067-.019-.004.014-.025-.004-.011-.01a1.4 1.4 0 0 1 .063-.088c.007-.005.016-.013.019 0zm.013.021.113.184c.044.012.103 0 .12-.047.023-.059-.006-.121-.04-.168-.028-.04-.08-.072-.129-.056-.038.012-.057.051-.064.087zm.197-.451c.047-.032.087.054.035.072-.045.017-.076-.048-.035-.072zm.126.143c.053.087.105.174.16.26.012.03.048.04.072.016.005.007.01.015-.002.018l-.139.088c-.02-.022.032-.025.024-.052-.003-.029-.024-.052-.038-.077-.03-.05-.06-.1-.093-.148-.015-.026-.045-.008-.057.01-.008-.006-.014-.01-.005-.017.022-.03.042-.06.064-.088l.013-.01zm.414.107c-.016.038-.024.084-.06.109-.043.035-.109.012-.13-.036-.023-.04-.004-.087.016-.123a1.04 1.04 0 0 1 .076-.11c-.015-.025-.031-.054-.06-.066-.041-.013-.098.032-.075.076.01.016.026.034.017.054-.018.039-.07.013-.07-.023-.007-.053.03-.1.073-.124.034-.022.08-.042.118-.018.028.02.042.052.06.08.029.045.055.092.086.136.019.026.042-.005.04-.027.002-.012.004-.018.01-.006.015.02-.002.05-.007.071-.01.038-.063.058-.085.02-.005 0-.004-.014-.01-.013zm-.013-.022-.072-.117c-.027.04-.064.08-.066.13 0 .04.041.081.082.067.032-.013.044-.05.056-.08zm.113-.308c.007-.052.023-.113.074-.136.044-.023.094.008.119.045.039.058.072.12.11.177.014.032.052.024.07.012.01.008.004.014-.005.017l-.139.088c-.01-.01-.004-.017.01-.022.034-.022.01-.061-.007-.085-.03-.047-.057-.096-.088-.142a.058.058 0 0 0-.102-.007c-.014.023-.038.056-.024.082l.106.173c.014.035.054.018.073.009.009.008.003.013-.006.017l-.139.088c-.011-.012-.002-.017.01-.024.03-.024.004-.06-.01-.084-.036-.056-.068-.113-.106-.167-.015-.027-.045-.01-.057.007-.008-.005-.014-.01-.005-.017.021-.03.041-.06.063-.088.007-.005.015-.013.018 0zm.76-.3a.184.184 0 0 1-.014.172.134.134 0 0 1-.145.05c-.066-.016-.112-.073-.138-.133-.033-.075-.009-.175.064-.218a.124.124 0 0 1 .132-.008c.03.015.027.061-.007.07-.046.02-.055-.06-.102-.042-.048.013-.068.067-.056.112a.208.208 0 0 0 .123.145c.05.02.109-.01.126-.06.015-.026.003-.064.007-.087zm.01-.28.042.07c0-.042 0-.093.036-.12.036-.031.096.02.06.056-.021.025-.073-.012-.077.032 0 .023-.01.05.005.07.03.049.06.1.092.148.015.034.059.032.082.017.004.006.008.012-.002.015l-.147.094c-.019-.019.02-.023.023-.041.01-.026-.012-.047-.023-.068-.034-.055-.067-.111-.103-.165-.014-.029-.049-.014-.06.006-.005-.005-.015-.009-.007-.015l.066-.09c.004-.004.01-.006.013-.009zm.25-.01c.028.048.075.09.133.093.054.005.11-.036.115-.092.005-.017-.006-.043-.001-.055.023-.005.017.032.023.046.007.053-.006.113-.05.146a.147.147 0 0 1-.156.016.242.242 0 0 1-.113-.14.166.166 0 0 1 .051-.188.134.134 0 0 1 .138-.023c.027.012.063.04.066.066zm-.012-.02.14-.089c-.018-.033-.057-.06-.096-.048-.049.013-.07.073-.052.118a.12.12 0 0 0 .008.02zm.172-.47c.047-.032.087.054.035.072-.045.017-.076-.047-.035-.072zm.126.143c.053.087.105.174.16.26.012.03.048.04.072.016.005.007.01.015-.002.018l-.139.088c-.02-.022.032-.025.024-.052-.003-.029-.024-.052-.038-.077-.03-.05-.06-.1-.093-.148-.015-.026-.045-.008-.057.008-.008-.005-.014-.009-.005-.016.022-.03.042-.06.064-.088l.013-.01zm.474.107c-.008.054-.046.105-.101.117-.07.016-.143-.027-.177-.088a.224.224 0 0 1-.011-.218c.026-.044.08-.08.132-.068-.025-.04-.048-.082-.077-.12-.017-.026-.043.002-.055.011-.013-.005-.007-.013 0-.02.02-.028.039-.056.06-.083.007-.006.015-.011.019.002.079.128.156.257.236.384.01.027.046.055.066.02.005-.014.024.006.01.012-.02.029-.04.059-.061.087-.008.005-.016.014-.02 0l-.02-.036zm-.014-.024-.097-.158c-.025-.037-.078-.06-.12-.035-.044.03-.043.095-.023.14.025.06.07.122.138.132a.083.083 0 0 0 .094-.051.137.137 0 0 0 .008-.028zm.114-.426a.16.16 0 0 1 .158-.01.209.209 0 0 1 .117.19.168.168 0 0 1-.088.153.156.156 0 0 1-.164-.006.215.215 0 0 1-.093-.234.169.169 0 0 1 .07-.093zm.003.028c-.039.024-.044.076-.028.115a.283.283 0 0 0 .135.155c.04.021.096.008.114-.036.021-.045-.005-.094-.028-.132-.03-.05-.075-.1-.135-.113a.085.085 0 0 0-.058.011zm-1.023-9.288.082.135c-.018.02-.027-.026-.045-.03-.05-.044-.14-.032-.172.027-.02.036-.002.09.041.095.075.013.151-.009.226.002a.119.119 0 0 1 .092.138c-.011.068-.074.116-.139.128-.025.005-.071.015-.053.05-.008.008-.013.003-.017-.006l-.074-.121c.02-.02.03.026.049.03.053.044.139.023.177-.03.032-.042.006-.107-.046-.114-.052-.008-.104.003-.157 0-.047.002-.1-.008-.128-.05-.04-.053-.018-.134.035-.171.032-.032.082-.026.118-.047.011-.015-.01-.03.011-.036zm.12-.11c.04-.027.075.046.03.062-.039.014-.065-.041-.03-.062zm.108.123.136.222c.01.027.044.03.063.015.006.007.006.011-.003.014l-.118.075c-.018-.018.028-.021.02-.044-.002-.026-.02-.046-.033-.068-.025-.04-.048-.082-.075-.12-.012-.026-.04-.016-.05.004-.006-.004-.015-.008-.007-.015l.055-.076.012-.008zm.212-.113.122-.077c.002.005.011.01.003.013-.03.012-.016.048.008.058l.147.106-.033-.199c0-.021-.022-.034-.038-.019-.004.012-.018-.007-.01-.009l.08-.051c.003.005.014.012.001.015-.019.017-.012.044-.009.066l.044.272c-.005.001-.01.01-.015.005l-.232-.166c-.018-.018-.046-.009-.063-.007a.03.03 0 0 1-.005-.007zm.43-.28a.137.137 0 0 1 .142-.006c.066.033.1.111.093.183-.008.077-.089.14-.166.123a.175.175 0 0 1-.132-.144.15.15 0 0 1 .028-.124.138.138 0 0 1 .035-.032zm.003.024c-.043.027-.035.085-.013.122.026.05.066.098.122.115.04.012.085-.018.087-.06 0-.046-.027-.087-.053-.122-.03-.04-.083-.082-.135-.06zm.327-.234.055.09c-.013.014-.023-.012-.035-.017-.034-.032-.099-.019-.115.026-.014.046.045.066.081.055.038-.003.078-.014.115 0 .046.015.067.074.046.117-.02.05-.074.066-.12.083-.003.004-.009.024-.016.018l-.056-.092c.014-.015.023.016.038.02.038.029.109.023.126-.028.012-.045-.041-.07-.08-.062-.039 0-.08.012-.117-.003a.09.09 0 0 1-.029-.131c.022-.036.069-.035.097-.058 0-.012 0-.013.01-.018zm.19-.11a.137.137 0 0 1 .142-.006c.066.033.1.111.092.183-.008.077-.088.14-.165.123a.175.175 0 0 1-.132-.144.149.149 0 0 1 .034-.131.155.155 0 0 1 .029-.025zm.003.024c-.043.026-.035.085-.013.122.026.05.066.098.122.115.04.012.085-.018.087-.06 0-.046-.027-.087-.053-.122-.03-.04-.083-.082-.135-.06zm.177-.264.053.086.06-.038a.449.449 0 0 0 .013.02l-.06.039.107.176c.01.025.046.037.06.01.012-.013 0-.033.017-.039.011.038-.003.091-.044.105-.038.012-.067-.02-.082-.05l-.105-.172-.041.026c-.015-.014.011-.028.01-.044.015-.037.007-.078.006-.114zm.22-.02.036.06c-.002-.041.003-.105.055-.11.039-.006.05.058.01.063-.018 0-.048-.008-.05.02-.002.02-.009.043.004.06l.078.126c.014.03.05.028.071.015.004.005.007.01 0 .012l-.127.08c-.016-.015.017-.019.02-.035.007-.021-.01-.04-.02-.058-.03-.047-.057-.095-.088-.14-.012-.026-.04-.014-.052.005-.003-.004-.012-.007-.006-.012l.056-.078zm.24-.15a.137.137 0 0 1 .142-.006c.066.033.1.111.093.183-.008.077-.089.14-.166.123a.175.175 0 0 1-.132-.144.15.15 0 0 1 .028-.124.138.138 0 0 1 .035-.032zm.003.024c-.043.026-.035.085-.013.122.026.05.066.098.122.115.04.012.085-.018.087-.06 0-.046-.027-.087-.053-.122-.03-.04-.083-.082-.135-.06zm.327-.234.055.09c-.013.014-.023-.012-.035-.017-.034-.033-.099-.019-.115.026-.014.046.045.066.081.055.038-.003.078-.014.115 0 .046.015.067.074.046.117-.02.05-.074.066-.12.083-.003.004-.009.024-.016.018a44.91 44.91 0 0 1-.056-.092c.014-.015.023.016.038.02.038.029.109.023.126-.028.012-.045-.041-.07-.08-.062-.039 0-.08.012-.117-.003a.09.09 0 0 1-.029-.131c.022-.036.069-.035.097-.058 0-.012 0-.013.01-.018zm-2.08 2.39c.02-.028.04-.057.061-.084.007-.007.012-.006.016.003l.031.051c-.002-.042.006-.09.045-.115.04-.027.094-.015.129.014.062.05.098.14.07.218a.124.124 0 0 1-.106.079c-.014-.002-.025-.005-.013.008.02.032.039.067.062.097.016.023.043-.006.057-.003.009.008 0 .011-.007.015l-.124.08c-.01-.01-.004-.015.007-.02.033-.021.009-.057-.007-.08l-.158-.257c-.01-.03-.044-.017-.057-.002l-.007-.005zm.119-.012c.027.044.053.09.083.133.026.034.082.028.107-.005.028-.038.011-.09-.01-.126-.024-.043-.063-.089-.116-.087-.044.004-.06.048-.064.085zm.271-.148c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.028.02.04.006.045-.005.096-.044.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.089-.13.139.139 0 0 1 .055-.149.112.112 0 0 1 .118-.012c.02.01.046.033.051.053zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016-.019.028-.016.064-.002.092zm.23-.273.036.06c-.002-.041.003-.105.055-.11.039-.006.05.058.01.063-.018 0-.048-.008-.05.02-.001.02-.008.043.005.06.026.042.05.085.077.126.014.03.05.028.071.015.004.005.007.01 0 .012l-.127.08c-.016-.015.017-.019.02-.035.007-.021-.01-.04-.02-.058-.03-.047-.057-.095-.088-.14-.012-.026-.04-.014-.052.005-.003-.004-.012-.007-.006-.013l.056-.077z'/%3e%3cpath d='M498.8 298.84c.009-.045.02-.1.068-.12a.077.077 0 0 1 .088.021c.006-.046.02-.098.067-.119.04-.02.087.008.107.044.032.05.06.101.093.15.012.028.045.006.058.008.01.01-.009.012-.014.018l-.11.07c-.019-.02.035-.025.023-.052-.011-.027-.03-.052-.045-.077-.021-.034-.04-.07-.065-.1-.037-.04-.09.008-.097.049-.01.015-.007.03.005.043.03.047.057.096.088.143.013.03.047.002.06.005.01.009-.008.012-.014.018l-.113.071c-.018-.02.033-.025.023-.05-.007-.025-.024-.046-.037-.069-.022-.035-.042-.073-.068-.106-.03-.039-.085-.01-.097.03-.009.019-.017.04 0 .056.03.048.058.098.09.145.012.028.044.008.059.004.01.01-.006.013-.013.018a54.84 54.84 0 0 1-.111.07c-.018-.018.032-.023.02-.048-.013-.035-.036-.065-.055-.097-.022-.034-.04-.072-.068-.1-.016-.014-.044.034-.044.006.019-.026.037-.054.057-.08.009-.01.014-.004.019.007l.027.042zm.62-.16c-.015.043-.032.098-.084.107-.05.01-.095-.044-.086-.092.01-.055.049-.098.08-.143.015-.01-.008-.025-.011-.036-.02-.04-.078-.039-.098 0-.01.016-.003.034.007.048.02.02.005.06-.025.05-.044-.022-.028-.087.002-.115.031-.03.074-.058.119-.049.03.01.044.04.06.066l.076.12c.008.022.036.013.036-.008.003-.005.003-.022.007-.021.003.007.012.013.008.022-.001.035-.025.096-.069.075-.01-.005-.016-.019-.023-.024zm-.011-.019-.062-.1c-.022.033-.051.065-.056.106-.007.046.056.09.09.05a.164.164 0 0 0 .028-.056zm.091-.271c.007-.044.02-.096.064-.117.037-.02.08.006.101.039.033.05.062.102.095.152.011.026.043.022.06.009.006.007.006.012-.003.015l-.12.076c-.009-.01-.003-.014.007-.02.03-.018.009-.052-.006-.073l-.072-.117c-.016-.034-.063-.047-.087-.014-.014.02-.035.05-.025.074.031.05.06.1.092.149.012.03.046.015.062.007.007.007.003.01-.005.014l-.118.076c-.007-.008-.006-.014.005-.018.03-.019.008-.053-.006-.075-.029-.047-.056-.094-.087-.14-.012-.028-.04-.01-.053.002-.008-.004-.01-.009-.003-.015.018-.024.035-.05.054-.074.006-.004.012-.01.015 0zm.29-.12c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.027.02.04.006.044-.005.096-.043.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.09-.13.139.139 0 0 1 .055-.149.112.112 0 0 1 .118-.012c.02.01.047.033.051.053zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.087.087 0 0 0 0 .092zm.48-.193c.018.047.02.105-.011.147a.114.114 0 0 1-.125.043c-.059-.014-.1-.067-.12-.121a.151.151 0 0 1 .057-.18c.036-.025.097-.031.126.008.023.04-.048.07-.064.028-.032-.047-.098.006-.093.051a.17.17 0 0 0 .06.123c.029.025.069.044.106.029.046-.017.064-.07.055-.115-.004-.014 0-.01.009-.013zm.04-.12c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.027.02.04.006.044-.005.096-.043.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.09-.13.139.139 0 0 1 .055-.149.112.112 0 0 1 .118-.012c.02.01.047.033.051.053zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.09.09 0 0 0 0 .092zm.24-.273.036.06c-.002-.041.003-.105.055-.11.039-.006.05.058.01.063-.018 0-.048-.008-.05.02-.002.02-.009.043.004.06l.078.126c.014.03.05.028.071.015.004.005.007.01 0 .012l-.127.08c-.016-.015.017-.019.02-.035.007-.021-.01-.04-.02-.058-.03-.047-.057-.095-.088-.14-.012-.026-.041-.013-.052.006-.003-.004-.012-.007-.006-.013.02-.025.038-.052.057-.077l.012-.008zm.22.01c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.028.02.04.006.045-.005.096-.043.125a.128.128 0 0 1-.147.007.22.22 0 0 1-.089-.13.139.139 0 0 1 .055-.15.112.112 0 0 1 .117-.011c.022.01.047.033.052.053zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016-.019.028-.016.064-.002.092zm.15-.403c.04-.027.075.047.03.062-.04.014-.065-.041-.03-.062zm.108.123.136.222c.01.027.043.03.063.015.006.007.006.011-.003.014l-.118.075c-.018-.018.028-.021.02-.044-.002-.026-.02-.046-.033-.068-.025-.04-.048-.082-.075-.12-.012-.026-.04-.016-.05.004-.006-.004-.015-.008-.007-.015l.055-.076.011-.008zm.232-.163.055.09c-.013.014-.023-.012-.035-.017-.034-.033-.098-.019-.115.026-.014.046.045.066.081.055.038-.003.078-.014.115 0 .046.015.067.074.046.117-.02.05-.074.066-.12.083-.003.004-.009.024-.016.018l-.056-.092c.014-.015.024.016.038.02.038.029.109.023.126-.028.012-.045-.041-.07-.08-.062-.038 0-.08.013-.117-.003a.09.09 0 0 1-.029-.131c.022-.036.069-.035.098-.058-.001-.012 0-.013.009-.018zm-2.72 2.92c.024.041.064.077.114.08.046.004.095-.031.098-.08.004-.013-.006-.037 0-.046.02-.004.015.027.02.04.006.044-.005.096-.044.124a.126.126 0 0 1-.133.014.21.21 0 0 1-.1-.128.14.14 0 0 1 .047-.153.114.114 0 0 1 .123-.017c.022.011.047.033.052.053zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.094.094 0 0 0-.002.092zm.26-.233c.007-.044.02-.096.064-.117.037-.02.08.006.1.039.034.05.063.102.096.152.01.026.042.022.06.009.005.007.004.012-.004.015l-.12.076c-.008-.01-.002-.014.008-.02.03-.018.009-.051-.006-.073l-.072-.117c-.016-.034-.063-.047-.087-.014-.014.02-.035.05-.025.074.03.05.06.1.092.149.011.03.046.015.062.007.007.007.003.01-.005.014l-.118.076c-.007-.008-.006-.014.005-.018.03-.019.008-.053-.006-.075-.029-.047-.056-.094-.087-.14-.012-.028-.04-.01-.053.002-.008-.004-.01-.009-.003-.015.018-.024.035-.05.054-.074.006-.004.012-.01.015 0zm.43-.27c.009-.045.02-.1.068-.12a.077.077 0 0 1 .088.021c.006-.046.02-.098.067-.119.04-.02.087.008.107.044.032.05.06.101.093.15.012.029.045.006.058.008.01.01-.009.012-.014.018l-.11.07c-.019-.02.035-.025.023-.051-.01-.028-.029-.051-.043-.077-.022-.034-.04-.07-.067-.102-.037-.038-.09.01-.097.05-.01.016-.007.03.004.043l.088.143c.013.03.048.002.061.005.009.009-.01.012-.015.018a51.14 51.14 0 0 1-.113.071c-.017-.02.034-.024.024-.05-.006-.026-.025-.046-.037-.069-.023-.035-.042-.073-.069-.106-.03-.039-.085-.01-.096.03-.01.019-.017.04-.001.056.03.048.058.097.09.145.012.028.045.008.06.004.01.01-.007.012-.013.018l-.112.07c-.018-.018.032-.023.02-.048-.013-.035-.036-.065-.054-.097-.022-.034-.04-.072-.068-.1-.017-.014-.044.034-.045.006.02-.026.037-.053.057-.079.01-.01.015-.005.02.006zm.33-.48c.04-.027.075.046.03.062-.039.014-.065-.041-.03-.062zm.108.123.136.222c.01.027.043.03.063.015.006.007.006.011-.003.014l-.118.075c-.018-.018.027-.022.02-.044-.002-.026-.02-.046-.033-.068-.025-.04-.048-.082-.075-.12-.012-.026-.04-.016-.05.004-.006-.004-.015-.008-.007-.015l.055-.076.011-.008zm.212-.093c.02-.028.04-.057.061-.084.007-.007.012-.006.016.003l.031.052c-.002-.042.006-.092.045-.116.04-.027.093-.015.129.014.062.05.098.14.07.218a.124.124 0 0 1-.106.08c-.014-.003-.025-.006-.013.007.02.033.039.067.062.098.016.023.043-.006.057-.003.009.008 0 .01-.007.015l-.124.078c-.011-.009-.004-.015.007-.02.033-.021.009-.056-.007-.08l-.158-.256c-.01-.032-.044-.018-.057-.002l-.007-.004zm.119-.012c.027.044.053.09.083.133.026.034.082.028.107-.005.028-.038.012-.09-.01-.126-.024-.043-.063-.088-.116-.087-.044.004-.06.048-.064.085zm.471-.058c-.015.043-.032.098-.084.107-.052.01-.099-.05-.085-.1.015-.054.053-.098.086-.143-.014-.023-.029-.05-.057-.058-.035-.007-.08.034-.057.069.01.014.022.032.01.049-.025.032-.065-.01-.057-.04.003-.051.046-.086.088-.105a.074.074 0 0 1 .105.031c.031.049.06.099.091.147.008.021.036.013.036-.008.003-.005.003-.023.007-.022.003.007.012.013.008.022 0 .035-.024.096-.068.075-.01-.005-.016-.018-.023-.024zm-.011-.019-.062-.1c-.022.033-.052.065-.056.106-.007.046.056.09.09.05a.164.164 0 0 0 .028-.056zm-.029-.491.22.36c.012.027.045.03.065.011.005.006.008.013-.002.015l-.12.076c-.017-.018.027-.021.02-.043-.004-.026-.022-.048-.035-.07l-.15-.245c-.008-.022-.038-.04-.053-.014 0 .01-.022 0-.01-.007.017-.025.035-.051.054-.076a.078.078 0 0 0 .01-.007zm.46.24c-.015.043-.032.098-.084.107-.052.01-.099-.05-.085-.1.015-.054.053-.098.086-.143-.014-.023-.029-.05-.057-.058-.035-.007-.08.034-.057.069.01.014.022.032.01.049-.025.032-.065-.01-.057-.04.003-.051.046-.086.088-.105a.074.074 0 0 1 .105.031l.09.147c.009.021.037.013.037-.008.003-.005.003-.023.007-.022.003.007.012.013.008.022 0 .035-.024.096-.068.075-.01-.005-.016-.018-.023-.024zm-.011-.019-.062-.1c-.022.033-.051.065-.056.106-.007.046.056.09.09.05a.164.164 0 0 0 .028-.056zm.071-.281c.001-.044.02-.096.064-.113.052-.021.112.004.144.047.04.048.062.116.04.177a.152.152 0 0 1-.129.108c-.019 0-.049.013-.056-.011l-.181-.295c-.01-.024-.04-.04-.055-.012-.003.011-.021-.004-.01-.01.018-.025.036-.051.055-.075.006-.004.013-.012.016 0l.112.183zm.011.018.096.158c.045.013.104-.006.108-.059.01-.052-.019-.102-.051-.14-.028-.034-.083-.052-.12-.021-.02.015-.027.04-.033.062zm.259-.248.036.06c-.002-.041.003-.105.055-.11.039-.006.051.059.01.063-.018 0-.048-.007-.05.02-.002.02-.008.043.004.06l.078.126c.014.03.05.028.071.015.004.005.007.01 0 .012l-.127.08c-.016-.015.017-.019.02-.035.007-.021-.01-.04-.02-.058-.03-.047-.057-.095-.088-.14-.012-.026-.04-.014-.052.005-.003-.004-.012-.007-.006-.013l.056-.077zm.41.06c-.015.043-.032.098-.084.107-.052.01-.099-.05-.085-.1.015-.054.053-.098.086-.143-.014-.023-.029-.05-.057-.058-.035-.007-.08.034-.057.07.01.013.022.031.01.048-.025.032-.065-.01-.057-.04.003-.05.046-.086.088-.105a.074.074 0 0 1 .105.031c.031.049.06.099.091.146.008.022.036.014.036-.008.003-.005.003-.022.007-.02.003.006.012.012.008.021 0 .035-.024.096-.068.075-.01-.005-.017-.019-.023-.024zm-.011-.019-.062-.1c-.022.033-.052.065-.056.106-.007.046.055.09.09.05a.163.163 0 0 0 .028-.056zm-2.569 2.339.055.09c-.013.014-.023-.012-.035-.017-.034-.032-.099-.019-.115.026-.014.046.045.066.081.055.038-.003.078-.014.115 0 .046.015.067.074.046.117-.02.05-.074.066-.12.083-.003.004-.009.024-.016.018a44.91 44.91 0 0 1-.056-.092c.014-.015.023.016.038.02.038.029.109.023.126-.028.012-.045-.041-.07-.08-.062-.039 0-.08.013-.118-.003a.09.09 0 0 1-.028-.131c.022-.036.069-.035.097-.058 0-.012 0-.013.01-.018zm.17.04c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.027.02.04.006.044-.005.096-.043.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.09-.13.139.139 0 0 1 .055-.149.113.113 0 0 1 .123-.01c.019.011.043.032.046.05zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.094.094 0 0 0-.002.092zm.23-.273.036.06c-.002-.041.003-.105.055-.11.039-.006.05.058.01.063-.018 0-.048-.008-.05.02-.002.02-.009.043.004.06l.078.126c.014.03.05.028.071.015.004.005.007.01 0 .012a67.32 67.32 0 0 0-.127.08c-.016-.015.017-.019.02-.035.007-.021-.01-.04-.02-.057-.03-.048-.057-.096-.088-.142-.012-.025-.04-.013-.051.006-.003-.004-.013-.007-.006-.012l.055-.078zm.23.01c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.027.02.04.006.045-.005.096-.043.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.09-.13.139.139 0 0 1 .055-.149.113.113 0 0 1 .123-.01c.019.011.043.032.046.05zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.094.094 0 0 0-.002.092zm.14-.393c.04-.027.075.047.03.062-.04.014-.065-.041-.03-.062zm.108.123.136.222c.01.027.043.03.063.015.006.007.006.011-.003.014l-.118.075c-.018-.018.028-.021.02-.044-.002-.026-.02-.046-.033-.068-.025-.04-.048-.081-.075-.12-.012-.026-.04-.016-.05.004-.006-.004-.015-.008-.007-.015l.055-.076.011-.008zm.232-.163.055.09c-.013.014-.023-.012-.035-.017-.034-.032-.099-.019-.115.026-.014.046.045.066.081.055.038-.003.078-.014.115 0 .046.015.067.074.046.117-.02.05-.074.066-.12.083-.003.004-.009.024-.016.018l-.056-.092c.014-.015.023.016.038.02.038.029.109.023.126-.028.012-.046-.041-.07-.08-.062-.039 0-.08.013-.118-.003a.09.09 0 0 1-.028-.131c.022-.036.069-.035.097-.058 0-.012 0-.013.01-.018zm.19-.12.122-.077c.002.005.011.01.003.013-.03.012-.016.048.008.058l.147.106-.033-.199c0-.02-.021-.034-.038-.018-.004.01-.018-.007-.01-.01l.08-.051c.003.006.014.013.001.015-.019.017-.012.044-.009.066l.044.273c-.005 0-.01.01-.014.005l-.233-.167c-.018-.017-.046-.009-.063-.007l-.005-.008zm.41-.12c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.027.02.04.006.044-.005.096-.043.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.09-.13.138.138 0 0 1 .055-.149.113.113 0 0 1 .123-.01c.019.011.043.032.046.05zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.094.094 0 0 0-.002.092zm.24-.273.036.06c-.002-.041.003-.105.055-.11.039-.006.05.058.01.063-.018 0-.048-.008-.05.02-.001.02-.008.043.005.06.026.042.05.085.077.126.014.03.05.028.071.015.004.005.007.01 0 .012l-.127.08c-.016-.015.017-.019.02-.035.007-.021-.01-.04-.02-.057-.03-.048-.057-.096-.088-.142-.012-.025-.04-.013-.051.006-.003-.004-.013-.007-.006-.012l.055-.078zm.44.05c-.007.05-.046.097-.099.102-.06.007-.116-.032-.143-.085a.19.19 0 0 1-.005-.179c.02-.041.078-.064.111-.06-.02-.034-.04-.069-.063-.1-.015-.023-.038 0-.048.009-.01-.004-.007-.01 0-.017l.05-.071c.007-.004.014-.012.017 0l.2.326c.009.023.04.052.06.02.004-.012.02.005.007.01l-.052.075c-.006.004-.014.011-.017 0zm-.012-.02-.083-.136c-.023-.036-.08-.055-.113-.02-.033.036-.022.091 0 .13.024.046.064.092.118.094.042.005.073-.03.078-.068zm.272-.14c-.015.043-.032.098-.084.107-.052.01-.099-.05-.085-.1.015-.054.053-.098.086-.143-.014-.023-.029-.05-.057-.058-.035-.007-.08.034-.057.07.01.013.022.031.01.048-.025.032-.065-.01-.057-.04.003-.05.046-.086.088-.105a.074.074 0 0 1 .105.031l.09.146c.009.022.037.013.037-.008.003-.005.003-.022.007-.02.003.006.012.012.008.021 0 .035-.024.096-.069.075-.009-.005-.016-.019-.022-.024zm-.011-.019-.062-.1c-.022.033-.051.065-.056.106-.007.046.056.09.09.05a.164.164 0 0 0 .028-.056zm.301-.171c-.007.05-.046.097-.099.102-.06.007-.116-.032-.143-.085a.19.19 0 0 1-.005-.179c.02-.041.078-.064.111-.06-.02-.034-.04-.069-.063-.1-.015-.023-.038 0-.048.009-.01-.004-.007-.01 0-.017l.05-.071c.007-.004.014-.012.017 0l.2.326c.009.023.04.052.06.02.004-.012.02.005.007.01l-.052.075c-.006.004-.014.01-.017 0zm-.012-.02-.083-.136c-.023-.036-.08-.055-.113-.02-.033.036-.022.091 0 .13.024.046.064.092.118.094.042.005.073-.03.078-.068zm.082-.2c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.027.02.04.006.045-.005.096-.043.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.09-.13.139.139 0 0 1 .055-.149.113.113 0 0 1 .123-.01c.018.011.042.032.046.05zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.094.094 0 0 0-.002.092zm.24-.283.036.06c-.002-.041.003-.105.055-.11.039-.006.05.058.01.063-.018 0-.048-.008-.05.02-.001.02-.008.043.005.06.026.042.05.085.077.126.014.03.05.028.071.015.004.005.007.01 0 .012l-.127.08c-.016-.015.017-.019.02-.035.007-.021-.01-.04-.02-.057-.03-.048-.057-.096-.088-.142-.012-.025-.04-.013-.051.006-.003-.004-.013-.007-.006-.012l.055-.078zm.41.07c-.015.043-.032.098-.084.107-.052.01-.099-.05-.085-.1.015-.054.053-.098.086-.143-.014-.023-.029-.05-.057-.058-.035-.007-.08.034-.057.07.01.013.022.031.01.048-.025.032-.065-.01-.057-.04.003-.051.046-.086.088-.105a.074.074 0 0 1 .105.031c.031.049.06.099.091.146.008.022.036.013.036-.008.003-.005.003-.022.007-.02.003.006.012.012.008.021 0 .035-.024.096-.069.075-.009-.005-.016-.019-.022-.024zm-.011-.019-.062-.1c-.022.033-.051.065-.056.106-.007.046.056.09.09.05a.164.164 0 0 0 .028-.056zm.091-.271c.009-.045.02-.1.068-.12.03-.014.066-.003.088.021.006-.046.02-.098.067-.119.04-.02.086.008.107.044.032.05.06.101.093.15.012.029.045.006.058.008.01.01-.009.012-.014.018l-.11.07c-.019-.02.035-.025.023-.052-.011-.027-.03-.051-.044-.077-.022-.034-.04-.07-.066-.1-.037-.04-.09.008-.097.049-.01.015-.007.03.004.043.03.047.057.096.088.143.013.03.047.002.06.005.01.009-.008.012-.014.018l-.113.071c-.018-.02.033-.025.024-.05-.006-.026-.025-.046-.037-.069-.023-.035-.043-.073-.069-.106-.03-.04-.085-.01-.096.03-.01.019-.017.04-.001.056.03.048.058.097.09.144.012.029.044.008.059.004.01.01-.006.013-.013.019l-.111.07c-.018-.019.032-.024.02-.049-.013-.035-.036-.065-.055-.097-.021-.033-.039-.07-.067-.1-.017-.013-.045.035-.045.007.019-.027.037-.054.057-.08.009-.01.015-.004.02.007zm.44-.22c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.027.02.04.006.045-.005.096-.043.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.09-.13.139.139 0 0 1 .055-.149.113.113 0 0 1 .123-.01c.018.011.043.032.046.05zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.094.094 0 0 0-.002.092zm.28-.213c.007-.044.02-.096.064-.117.037-.02.08.006.101.039.033.05.062.102.095.152.011.026.043.022.06.009.006.007.005.012-.003.015l-.12.076c-.009-.01-.003-.014.007-.02.03-.018.009-.052-.006-.073l-.072-.117c-.016-.034-.063-.047-.087-.014-.014.02-.035.05-.025.074.03.05.06.1.092.149.011.03.046.015.062.007.007.007.003.01-.005.014l-.118.075c-.007-.008-.006-.013.005-.017.03-.02.008-.054-.006-.076-.03-.046-.057-.093-.087-.139-.013-.028-.041-.011-.053.002-.008-.004-.01-.009-.003-.015l.053-.074c.006-.004.013-.011.016 0zm.2-.33.053.086.06-.038a.449.449 0 0 0 .013.02l-.06.039.107.176c.01.025.046.037.06.01.012-.013-.002-.033.017-.039.011.038-.003.091-.044.105-.038.012-.067-.02-.082-.05l-.105-.172-.041.026c-.015-.014.011-.028.01-.044.015-.037.007-.078.006-.114zm.24.11c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.027.02.04.006.044-.005.096-.043.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.09-.13.138.138 0 0 1 .055-.149.113.113 0 0 1 .123-.01c.018.011.043.032.046.05zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.09.09 0 0 0 0 .092zm-4.45 3.797c.009-.045.02-.1.068-.12a.077.077 0 0 1 .088.021c.006-.046.02-.098.067-.119.04-.02.086.008.107.044.032.05.06.101.093.15.012.028.045.006.058.008.01.01-.009.012-.014.018l-.11.07c-.019-.02.035-.025.023-.052-.01-.027-.03-.05-.044-.076-.022-.034-.04-.07-.066-.102-.037-.038-.09.01-.097.05-.01.015-.007.03.004.043l.088.143c.013.03.048.002.06.005.01.009-.008.012-.014.018a51.14 51.14 0 0 1-.113.071c-.017-.02.034-.024.024-.05-.007-.025-.025-.046-.037-.069-.023-.035-.042-.073-.069-.106-.03-.039-.085-.01-.096.03-.01.019-.017.04-.001.056.03.048.058.097.09.145.012.028.044.007.06.004.01.01-.007.012-.013.018l-.112.07c-.018-.018.032-.023.02-.048-.01-.031-.03-.056-.046-.084-.024-.037-.044-.077-.073-.11-.018-.024-.043.032-.05.004l.059-.08c.009-.01.015-.005.02.006zm.32-.47c.04-.027.075.046.03.062-.039.014-.065-.041-.03-.062zm.108.123.136.222c.01.027.044.03.063.015.006.007.006.011-.003.014l-.118.075c-.018-.018.028-.021.02-.044-.002-.026-.02-.046-.033-.068-.025-.04-.048-.081-.075-.12-.012-.026-.04-.016-.05.004-.006-.004-.015-.008-.007-.015l.055-.076.011-.008zm.242-.163.055.09c-.013.014-.023-.012-.035-.017-.034-.032-.099-.019-.115.026-.014.046.045.066.081.055.038-.003.078-.014.115 0 .046.015.067.074.046.117-.02.05-.074.066-.12.083-.003.004-.009.024-.016.018a44.91 44.91 0 0 1-.056-.092c.014-.015.023.016.038.02.038.029.109.023.126-.028.012-.046-.041-.07-.08-.062-.038 0-.08.013-.117-.003a.09.09 0 0 1-.029-.131c.022-.036.069-.035.098-.058-.001-.012 0-.013.009-.018zm.54.01c-.007.05-.046.097-.099.102-.06.007-.116-.032-.143-.085a.19.19 0 0 1-.005-.179c.02-.042.078-.064.111-.06-.02-.034-.04-.069-.063-.1-.015-.023-.037.002-.048.009-.01-.004-.007-.01 0-.017l.05-.071c.007-.004.014-.012.017 0l.2.326c.009.023.04.052.06.02.004-.012.02.005.007.01l-.052.075c-.006.004-.014.01-.017 0zm-.012-.02-.083-.136c-.023-.036-.08-.055-.113-.02-.033.036-.022.091 0 .13.024.046.064.092.118.094.042.005.073-.03.078-.068zm-.048-.47c.04-.027.075.046.03.062-.039.014-.065-.041-.03-.062zm.108.123.136.222c.01.027.044.03.063.015.006.007.006.011-.003.014l-.118.075c-.018-.018.027-.021.02-.044-.002-.026-.02-.046-.033-.068-.025-.04-.048-.082-.075-.12-.012-.026-.04-.016-.05.004-.006-.004-.015-.008-.007-.015l.055-.076.011-.008zm.232-.163.055.09c-.013.014-.023-.012-.035-.017-.034-.032-.099-.019-.115.026-.014.046.045.066.081.055.038-.003.078-.014.115 0 .046.015.067.074.046.117-.02.05-.074.066-.12.083-.003.004-.009.024-.016.018l-.056-.092c.014-.015.023.016.038.02.038.029.109.023.126-.027.012-.046-.041-.071-.08-.063-.038 0-.08.013-.117-.003a.09.09 0 0 1-.029-.131c.022-.036.069-.035.097-.058 0-.012 0-.013.01-.018zm.38-.01c.018.047.02.105-.011.147a.114.114 0 0 1-.125.043c-.059-.014-.1-.067-.12-.121a.151.151 0 0 1 .057-.18c.036-.025.097-.031.126.008.023.04-.048.07-.064.028-.033-.047-.098.006-.093.05a.17.17 0 0 0 .06.124c.029.024.069.044.106.028.045-.016.064-.07.055-.115-.004-.014 0-.01.009-.012zm-.08-.36c.04-.027.075.046.03.062-.039.014-.065-.041-.03-.062zm.108.123.136.222c.01.027.043.03.063.015.006.007.006.011-.003.014l-.118.075c-.018-.018.027-.021.02-.044-.002-.026-.021-.047-.033-.07-.025-.04-.048-.08-.075-.118-.012-.026-.04-.016-.05.004-.006-.004-.015-.008-.007-.015l.055-.076.011-.008zm.072-.003c.02-.028.04-.057.061-.084.007-.007.013-.006.016.003l.031.051c-.002-.042.006-.09.045-.115.04-.027.094-.015.129.014.062.05.098.14.07.218a.124.124 0 0 1-.105.079c-.015-.002-.026-.005-.014.008.02.033.039.067.062.097.016.023.044-.006.057-.003.009.008 0 .011-.007.015l-.124.08c-.01-.01-.004-.016.007-.021.033-.021.009-.057-.007-.08l-.158-.257c-.01-.03-.044-.017-.057-.002l-.007-.004zm.119-.012c.027.044.053.09.083.133.026.034.082.028.107-.005.028-.038.012-.09-.01-.126-.024-.043-.063-.089-.116-.087-.044.004-.06.048-.064.085zm.151-.398c.04-.027.075.046.03.062-.039.014-.065-.041-.03-.062zm.108.123.136.222c.01.027.043.03.063.015.006.007.006.011-.003.014l-.118.075c-.018-.018.027-.021.02-.044-.002-.026-.02-.046-.033-.068-.025-.04-.048-.081-.075-.12-.012-.026-.04-.016-.05.004-.006-.004-.015-.008-.007-.015l.055-.076.011-.008zm.072-.233.22.36c.012.028.045.03.065.011.005.006.008.013-.002.015l-.12.076c-.017-.018.027-.021.02-.043-.004-.026-.022-.048-.035-.07l-.15-.245c-.008-.022-.038-.04-.053-.014-.002.01-.022-.002-.011-.007l.054-.076.012-.006zm.28 0a.137.137 0 0 1 .142-.006c.066.033.1.111.092.183-.008.077-.088.14-.165.123a.175.175 0 0 1-.132-.144.15.15 0 0 1 .028-.124.138.138 0 0 1 .035-.032zm.003.024c-.043.027-.035.085-.013.122.026.05.066.098.122.115.04.012.085-.018.087-.06 0-.046-.027-.087-.053-.122-.03-.04-.083-.082-.135-.06zm.327-.234.055.09c-.013.014-.023-.012-.035-.017-.034-.032-.099-.019-.115.026-.014.046.045.066.081.055.038-.003.078-.014.115 0 .046.015.067.074.046.117-.02.05-.074.066-.12.083-.003.004-.009.024-.016.018a44.91 44.91 0 0 1-.056-.092c.014-.015.023.016.038.02.038.029.109.023.126-.028.012-.045-.041-.07-.08-.062-.038 0-.08.013-.117-.003a.09.09 0 0 1-.029-.131c.022-.036.069-.035.098-.058-.001-.012 0-.013.009-.018zm-1.76 4.26c-.008-.047-.003-.103.036-.135.032-.03.082-.044.122-.021.046.021.054.079.042.123 0 .01-.017.035.003.026a.12.12 0 0 1 .126.065.16.16 0 0 1-.033.195c-.028.024-.06.05-.098.054-.039.005-.036-.053 0-.054.042-.002.096-.008.113-.056.022-.048-.007-.104-.051-.128-.037-.02-.083-.01-.118.01-.007.007-.012.006-.014-.003.035-.03.06-.082.041-.128-.013-.047-.072-.073-.113-.043-.035.017-.04.065-.047.094l-.01.001zm.67-.1.019.092-.227.144c-.017-.022.011-.051.01-.076.02-.084.043-.172.026-.259-.009-.048-.044-.097-.097-.099-.059-.004-.105.058-.096.114.004.011.005.021-.007.026-.023-.048-.026-.11.01-.152a.133.133 0 0 1 .158-.037c.052.024.071.087.07.141.002.082-.02.161-.035.241-.004.013-.008.025.006.013.041-.027.084-.052.124-.08.024-.014.024-.045.033-.064l.007-.004zm.11-.04c.019-.013.048-.003.054.019.01.02-.006.047-.028.05a.037.037 0 0 1-.043-.03.037.037 0 0 1 .017-.039zm.28-.65.134-.085c.018.015-.015.02-.017.036-.026.042-.017.092-.02.139l-.001.161c.025.04.048.082.075.12.016.03.05.018.072.001.009 0 .01.015-.001.016l-.153.097c-.01-.009-.004-.014.006-.02.038-.016.026-.061.004-.086l-.054-.089c-.08-.037-.16-.076-.24-.111-.022-.017-.056.005-.072-.002-.01-.01.01-.012.014-.018l.146-.092c.018.015-.012.017-.017.031-.025.033.021.053.046.064l.147.07c0-.065.003-.129.001-.193.004-.037-.04-.05-.064-.03l-.007-.01zm.71-.04c.018.047.02.105-.011.147a.114.114 0 0 1-.125.043c-.059-.014-.1-.067-.12-.121a.15.15 0 0 1 .057-.18c.037-.025.097-.031.126.008.024.04-.048.07-.063.028-.033-.047-.099.006-.094.051a.17.17 0 0 0 .06.123c.029.024.07.044.106.028.046-.016.064-.07.055-.115-.004-.014 0-.01.01-.012zm.06-.27a.137.137 0 0 1 .142-.006c.066.033.1.111.093.183-.008.077-.089.14-.166.123a.175.175 0 0 1-.132-.144.149.149 0 0 1 .034-.131.134.134 0 0 1 .029-.025zm.003.024c-.043.027-.035.085-.013.122.026.05.066.098.122.115.04.012.085-.018.087-.06 0-.046-.027-.087-.053-.122-.03-.04-.083-.082-.135-.06zm.267-.134c.007-.044.02-.096.064-.117.037-.02.08.006.101.039.033.05.062.102.095.152.011.026.043.022.06.009.006.007.005.012-.003.015l-.12.076c-.009-.01-.003-.014.007-.02.03-.018.009-.051-.006-.073l-.072-.117c-.016-.034-.063-.047-.087-.014-.014.02-.035.05-.025.074.031.05.06.1.092.149.011.03.046.015.062.007.007.007.003.01-.005.014l-.118.075c-.007-.008-.006-.013.005-.017.03-.019.008-.054-.006-.075-.029-.047-.056-.094-.087-.14-.012-.028-.04-.01-.053.002-.008-.004-.01-.009-.003-.015.018-.024.035-.05.054-.074.006-.004.012-.01.015 0zm.31-.26a.137.137 0 0 1 .142-.006c.064.032.097.107.093.177-.005.077-.081.143-.158.13a.174.174 0 0 1-.14-.145.149.149 0 0 1 .034-.131.133.133 0 0 1 .029-.025zm.003.024c-.043.027-.035.085-.013.122.026.05.066.098.122.115.04.012.085-.018.087-.06 0-.046-.027-.087-.053-.122-.03-.04-.083-.082-.135-.06zm.487-.094c.018.047.02.105-.011.147a.114.114 0 0 1-.125.043c-.059-.014-.1-.067-.12-.121a.15.15 0 0 1 .057-.18c.036-.025.097-.031.126.008.023.039-.048.07-.064.028-.032-.047-.098.006-.093.051a.17.17 0 0 0 .06.123c.029.024.069.044.106.029.045-.017.064-.07.055-.115-.004-.015 0-.01.009-.013zm.04-.12c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.028.02.04.006.045-.005.096-.043.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.09-.13.139.139 0 0 1 .055-.149.112.112 0 0 1 .118-.012c.02.01.047.033.051.053zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.087.087 0 0 0 0 .092zm.23-.273.036.06c-.002-.041.003-.105.055-.11.039-.006.05.058.01.063-.018 0-.048-.008-.05.02-.001.02-.007.043.005.06.026.042.05.085.077.126.014.03.05.028.071.015.004.005.007.01 0 .012l-.127.08c-.016-.015.017-.019.02-.035.007-.021-.01-.04-.02-.058-.03-.047-.057-.095-.088-.14-.012-.026-.04-.014-.052.005-.003-.004-.012-.007-.006-.013l.056-.077zm.23.01c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.028.02.04.006.045-.005.096-.044.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.089-.13.139.139 0 0 1 .055-.149.112.112 0 0 1 .117-.012c.022.01.047.033.052.053zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016-.019.027-.016.064-.002.092zm.14-.423c.04-.027.075.046.03.062-.039.014-.065-.041-.03-.062zm.108.123.136.222c.01.027.043.03.063.015.006.007.006.011-.003.014l-.118.075c-.018-.018.028-.021.02-.044-.002-.026-.02-.046-.033-.068-.025-.04-.048-.081-.075-.12-.012-.026-.04-.016-.05.004-.006-.004-.015-.008-.007-.015l.055-.076.011-.008zm.242-.133.055.09c-.013.014-.023-.012-.035-.017-.034-.032-.098-.019-.115.026-.014.046.045.066.081.055.038-.003.078-.014.115 0 .046.015.067.074.046.117-.02.05-.074.066-.12.083-.003.004-.009.024-.016.018l-.056-.092c.014-.015.023.016.038.02.038.03.109.023.126-.027.012-.046-.041-.071-.08-.063-.038 0-.08.013-.117-.003a.09.09 0 0 1-.029-.131c.022-.036.069-.035.098-.058-.001-.012 0-.013.009-.018zm.2-.34.22.36c.012.028.045.03.065.011.005.006.008.013-.002.015l-.12.076c-.017-.018.027-.021.02-.043-.004-.026-.022-.048-.035-.07-.05-.082-.099-.164-.15-.245-.008-.022-.038-.04-.053-.014 0 .01-.022 0-.01-.007.018-.025.035-.051.054-.076a.072.072 0 0 0 .01-.007zm.45.25c-.015.043-.032.098-.084.107-.05.01-.095-.044-.086-.092.01-.055.049-.099.08-.143.015-.01-.008-.025-.011-.036a.055.055 0 0 0-.097 0c-.01.016-.003.034.007.048.02.02.005.06-.026.05-.044-.022-.028-.087.002-.115.03-.029.07-.055.114-.05.033.006.048.039.065.064.025.041.05.083.076.123.008.022.036.013.036-.008.003-.005.003-.022.007-.021.003.007.012.013.008.022 0 .035-.024.096-.068.074-.01-.005-.016-.019-.023-.023zm-.011-.019-.062-.1c-.022.033-.051.065-.056.106-.007.046.056.09.09.05a.164.164 0 0 0 .028-.056zm-4.049 3.309.122-.077c.002.005.011.01.003.013-.03.012-.016.048.008.058l.147.106-.033-.199c0-.02-.022-.034-.038-.019-.004.012-.018-.006-.01-.008l.08-.051c.003.005.014.012.001.015-.019.017-.012.044-.009.066l.044.272c-.005.001-.01.01-.014.005l-.233-.166c-.018-.018-.046-.009-.063-.007zm.4-.14c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.027.02.04.006.045-.005.096-.043.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.09-.13.139.139 0 0 1 .055-.149.113.113 0 0 1 .123-.01c.018.011.042.032.046.05zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.094.094 0 0 0-.002.092zm.23-.273.036.06c-.002-.041.003-.105.055-.11.039-.006.05.058.01.063-.018 0-.048-.008-.05.02-.001.02-.008.043.005.06.026.042.05.085.078.126.013.03.05.028.07.015.004.005.007.01 0 .012l-.127.08c-.016-.015.017-.019.02-.035.007-.022-.01-.04-.02-.058-.03-.047-.057-.095-.088-.141-.012-.025-.04-.013-.052.006-.003-.004-.012-.007-.006-.013l.056-.077zm.46.07c-.007.05-.046.097-.099.102-.06.007-.116-.032-.143-.085a.19.19 0 0 1-.005-.179c.02-.041.078-.064.111-.06-.02-.034-.04-.069-.063-.1-.015-.023-.037.002-.048.009-.01-.004-.007-.01 0-.017l.05-.071c.007-.004.014-.012.017 0l.2.326c.009.023.04.053.06.02.004-.012.02.005.007.01l-.052.075c-.007.004-.014.011-.017 0zm-.012-.02-.083-.136c-.024-.036-.08-.055-.113-.02-.033.036-.022.091 0 .13.024.046.064.092.118.094.042.005.073-.03.078-.068zm.252-.16c-.015.043-.032.098-.084.107-.052.01-.099-.05-.085-.1.015-.054.053-.098.086-.143-.014-.023-.029-.05-.057-.058-.035-.007-.08.034-.057.069.01.014.022.032.01.049-.025.032-.065-.01-.057-.04.003-.051.046-.086.088-.105a.074.074 0 0 1 .105.031l.091.146c.008.022.036.013.036-.008.003-.005.003-.022.007-.02.003.006.012.012.008.021 0 .035-.024.095-.068.075-.01-.005-.017-.019-.023-.024zm-.011-.019-.062-.1c-.022.033-.051.065-.056.106-.007.046.055.09.09.05a.162.162 0 0 0 .028-.056zm.311-.151c-.007.05-.046.097-.099.102-.06.007-.116-.032-.143-.085a.19.19 0 0 1-.005-.179c.02-.041.078-.064.111-.06-.02-.034-.04-.069-.063-.1-.015-.023-.037.002-.048.01-.01-.005-.007-.011 0-.018l.05-.071c.007-.004.014-.012.017 0l.2.326c.009.023.04.053.06.02.004-.012.02.005.007.01l-.052.075c-.007.004-.014.011-.017 0zm-.012-.02-.083-.136c-.023-.036-.08-.055-.113-.02-.033.036-.022.091 0 .13.024.046.064.092.118.094.042.005.073-.03.078-.068zm.212.07-.008-.013c.028-.031.041-.088.008-.12-.014-.002-.013.02-.025.023-.027.022-.065-.013-.054-.043.01-.04.067-.043.091-.014.034.033.036.09.012.13-.006.013-.017.025-.024.037zm.04-.53.121-.077c.015.013-.006.017-.013.028-.01.027.02.042.04.055l.133.085c-.011-.063-.02-.126-.033-.19 0-.027-.03-.028-.044-.018-.009-.008-.002-.012.006-.016l.073-.046c.017.015-.017.025-.012.046.01.069.023.137.034.205.009.057.02.113.027.17.005.045-.009.099-.051.12-.037.024-.079-.036-.037-.057.025-.01.066-.011.062-.05 0-.03-.008-.06-.013-.09l-.22-.143a.089.089 0 0 0-.069-.013l-.005-.01zm.45-.49.22.36c.012.027.045.03.065.011.005.006.008.012-.002.015l-.12.076c-.017-.018.027-.021.02-.043-.004-.026-.022-.048-.035-.07l-.15-.245c-.008-.022-.038-.04-.053-.014-.002.01-.022-.002-.011-.007l.054-.076.012-.006zm.44.23c-.015.043-.032.098-.084.107-.052.01-.099-.05-.085-.1.015-.054.053-.098.086-.143-.014-.023-.029-.05-.057-.058-.035-.007-.08.034-.057.069.01.014.022.032.01.049-.025.032-.065-.01-.057-.04.002-.051.046-.086.088-.105a.074.074 0 0 1 .105.031c.031.049.06.099.091.146.008.022.036.013.036-.008.003-.005.003-.022.007-.02.003.006.012.012.008.021 0 .035-.024.096-.068.075-.01-.005-.017-.019-.023-.024zm-.011-.019-.062-.1c-.022.033-.052.065-.056.106-.007.046.056.09.09.05a.164.164 0 0 0 .028-.056zm.121-.351.122-.077c.002.005.011.01.003.013-.03.012-.016.048.008.058l.147.106-.033-.199c0-.02-.022-.034-.038-.019-.004.012-.018-.006-.01-.008l.081-.052c.002.006.014.013 0 .016-.019.016-.011.044-.009.066l.044.272c-.005.001-.01.01-.014.005l-.233-.166c-.018-.018-.045-.009-.063-.007zm.4-.14c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.027.02.04.006.045-.005.096-.044.125a.128.128 0 0 1-.145.007.22.22 0 0 1-.09-.13.139.139 0 0 1 .055-.149.113.113 0 0 1 .123-.01c.018.011.043.032.046.05zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.094.094 0 0 0-.002.092zm.24-.273.036.06c-.002-.041.003-.105.055-.11.039-.006.05.058.01.063-.018 0-.048-.008-.05.02-.001.02-.008.043.005.06.026.042.05.085.078.126.013.03.05.028.07.015.005.005.008.01 0 .012l-.127.08c-.016-.015.017-.019.02-.035.008-.021-.01-.04-.02-.058-.03-.047-.057-.095-.088-.14-.012-.026-.04-.014-.051.005-.003-.004-.013-.007-.006-.013l.055-.077zm.45.07c-.007.05-.046.097-.099.102-.06.007-.116-.032-.143-.085a.193.193 0 0 1-.006-.179c.02-.041.078-.064.111-.06-.02-.034-.04-.069-.063-.1-.015-.023-.037.002-.048.01-.01-.005-.007-.011 0-.018l.05-.071c.007-.004.014-.012.017 0l.2.326c.009.023.04.053.06.02.004-.012.02.005.007.01l-.052.075c-.007.004-.014.011-.017 0l-.018-.03zm-.012-.02-.083-.136c-.024-.036-.08-.055-.113-.02-.033.036-.022.091 0 .13.024.046.064.092.118.094.042.005.073-.03.078-.068zm.262-.16c-.015.043-.032.098-.084.107-.052.01-.099-.05-.085-.1.015-.054.053-.098.086-.143-.014-.023-.029-.05-.057-.058-.035-.007-.08.034-.057.069.01.014.022.032.01.049-.025.032-.065-.01-.057-.04.002-.048.04-.082.08-.101.038-.026.094-.017.113.027.031.049.06.099.091.146.008.022.036.013.036-.008.003-.005.003-.022.007-.02.003.006.012.012.008.021 0 .035-.024.096-.068.075-.01-.005-.017-.019-.023-.024zm-.011-.019-.062-.1c-.022.033-.051.065-.056.106-.007.046.056.09.09.05a.163.163 0 0 0 .028-.056zm.311-.151c-.007.05-.046.097-.099.102-.06.007-.116-.033-.143-.085a.19.19 0 0 1-.005-.179c.02-.042.078-.064.111-.06-.02-.034-.04-.069-.063-.1-.015-.023-.038.002-.048.009-.01-.004-.007-.01 0-.017l.05-.071c.007-.004.014-.012.017 0l.2.326c.009.023.04.052.06.02.004-.012.02.005.007.01l-.052.075c-.007.004-.014.011-.017 0zm-.012-.02-.083-.136c-.023-.036-.08-.055-.113-.02-.033.036-.022.091 0 .13.024.046.064.092.118.094.042.005.073-.03.078-.068zm.242-.48a.137.137 0 0 1 .142-.006c.066.033.1.111.092.183-.008.077-.088.14-.165.123a.175.175 0 0 1-.132-.144.149.149 0 0 1 .034-.131.155.155 0 0 1 .029-.025zm.003.024c-.043.027-.035.085-.013.122.026.05.066.098.122.115.04.012.085-.018.087-.06 0-.046-.027-.087-.053-.122-.03-.04-.083-.082-.135-.06zm.327-.234.055.09c-.013.014-.023-.012-.035-.017-.034-.033-.099-.019-.115.026-.014.046.045.066.081.055.038-.003.078-.014.115 0 .046.015.067.074.046.117-.02.05-.074.066-.12.083-.003.004-.009.024-.016.018a44.91 44.91 0 0 1-.056-.092c.014-.015.023.016.038.02.038.029.109.023.126-.027.012-.046-.041-.071-.08-.063-.039 0-.08.013-.118-.003a.09.09 0 0 1-.028-.131c.022-.036.069-.035.097-.058 0-.012 0-.013.01-.018zm-4.61 3.76.118.192c.008-.041.017-.091.058-.113.04-.023.086.004.107.04.035.049.064.103.098.153.011.025.042.013.056.007.01.009-.003.012-.01.017l-.113.072c-.015-.015.014-.018.02-.031.013-.024-.009-.046-.02-.066-.027-.043-.052-.088-.082-.129-.034-.044-.092 0-.097.044-.01.016-.005.03.006.043.029.047.057.095.087.142.013.03.046.003.06.005.01.009-.006.01-.011.016l-.114.072c-.018-.02.032-.024.02-.05-.012-.032-.033-.06-.05-.09-.047-.075-.091-.15-.139-.225-.012-.032-.043-.019-.057-.003-.012-.004-.005-.012.001-.019l.05-.07a.078.078 0 0 0 .013-.007zm.6.15c-.015.043-.032.098-.084.107-.052.01-.099-.05-.085-.1.015-.054.053-.098.086-.143-.014-.023-.03-.05-.057-.058-.035-.007-.08.034-.057.069.01.014.023.032.01.049-.025.032-.065-.01-.057-.041.003-.05.046-.085.088-.104a.074.074 0 0 1 .105.031l.091.146c.008.022.036.013.037-.008.003-.005.003-.022.007-.02.003.006.012.012.008.021-.001.035-.025.096-.069.075-.01-.005-.016-.019-.023-.024zm-.011-.019-.062-.1c-.022.033-.051.065-.056.106-.007.046.056.09.09.05a.164.164 0 0 0 .028-.056z'/%3e%3cpath d='m502.21 304.89.036.06c-.002-.041.003-.105.055-.11.039-.006.05.058.01.063-.018 0-.048-.008-.05.02-.002.02-.009.043.004.06l.078.126c.014.03.05.028.071.015.004.005.007.01 0 .012l-.127.08c-.016-.015.016-.019.02-.035.007-.021-.01-.04-.02-.058-.03-.047-.057-.095-.088-.14-.012-.026-.04-.014-.052.005-.003-.004-.012-.007-.006-.013l.056-.077zm.4.07c-.015.043-.032.098-.084.107-.052.01-.099-.05-.085-.1.015-.054.053-.098.086-.143-.014-.023-.03-.05-.057-.058-.035-.007-.08.034-.057.069.01.014.023.032.01.049-.025.032-.065-.01-.057-.04.003-.051.046-.086.088-.105a.074.074 0 0 1 .105.031c.031.049.06.099.091.146.008.022.036.014.037-.008.003-.005.003-.022.007-.02.003.006.012.012.008.021-.001.035-.025.096-.069.075-.01-.005-.016-.019-.023-.024zm-.011-.019-.062-.1c-.022.033-.051.065-.056.106-.007.046.056.09.09.05a.164.164 0 0 0 .028-.056zm.131-.581.22.36c.012.027.045.03.065.011.005.006.008.013-.002.016l-.119.075c-.018-.018.026-.021.02-.043-.004-.026-.022-.046-.035-.069-.05-.082-.1-.165-.151-.246-.008-.022-.038-.04-.053-.014 0 .01-.022 0-.01-.007.017-.025.035-.051.054-.076a.078.078 0 0 0 .01-.007zm.13-.09c.04-.027.075.047.03.062-.04.014-.065-.041-.03-.062zm.108.123.136.222c.01.027.043.03.063.015.006.007.006.011-.003.014l-.118.075c-.018-.018.028-.022.02-.044-.002-.026-.021-.047-.033-.07-.025-.04-.048-.08-.075-.119-.012-.025-.04-.015-.05.004-.006-.004-.015-.008-.007-.014l.055-.076.011-.007zm.182-.043c.001-.044.02-.096.064-.113.052-.021.112.004.144.047.04.048.062.116.04.177a.152.152 0 0 1-.129.108c-.019 0-.049.013-.056-.011l-.181-.295c-.01-.024-.04-.04-.055-.012-.003.011-.021-.004-.01-.01l.055-.075c.006-.004.013-.012.016 0zm.011.018.096.158c.044.013.104-.007.109-.059.01-.052-.02-.102-.052-.14-.028-.034-.083-.052-.12-.021-.02.015-.027.04-.033.062zm.259-.248.036.06c-.002-.041.003-.105.055-.11.039-.006.05.058.01.063-.018 0-.048-.008-.05.02-.001.02-.008.043.005.06.026.042.05.085.077.126.014.03.05.028.071.015.004.005.007.01 0 .012a67.32 67.32 0 0 0-.127.08c-.016-.015.017-.019.02-.035.007-.021-.01-.04-.02-.058-.03-.047-.057-.095-.088-.14-.012-.026-.04-.014-.051.005-.003-.004-.013-.007-.006-.013l.055-.077zm.22.01c.024.041.064.077.114.08.049.004.1-.036.098-.087.003-.012-.007-.032 0-.039.02-.004.015.028.02.04.006.045-.005.096-.043.125a.128.128 0 0 1-.146.007.22.22 0 0 1-.09-.13.139.139 0 0 1 .055-.149.112.112 0 0 1 .118-.012c.02.01.047.033.051.053zm-.01-.017.12-.076c-.02-.046-.09-.061-.119-.016a.094.094 0 0 0-.002.092zm.33-.333.055.09c-.013.014-.023-.012-.035-.017-.034-.033-.099-.019-.115.026-.014.046.045.066.081.055.038-.003.078-.014.115 0 .046.015.067.074.046.117-.02.05-.074.066-.12.083-.003.004-.009.024-.016.018l-.056-.092c.014-.015.023.016.038.02.038.029.109.023.126-.027.012-.046-.041-.071-.08-.063-.038 0-.08.013-.117-.003a.09.09 0 0 1-.029-.131c.022-.036.069-.035.098-.058-.001-.012 0-.013.009-.018zm.24.14c.019-.013.048-.003.054.019a.038.038 0 0 1-.028.05.037.037 0 0 1-.043-.03.037.037 0 0 1 .017-.039z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e\"},5606:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23fff' d='M0 0h900v600H0z'/%3e%3cpath fill='%23006233' d='M0 0h450v600H0z'/%3e%3cpath fill='%23d21034' d='M580 225a150 150 0 1 0 0 150 120 120 0 1 1 0-150m5 75-135-44 84 115V229l-84 115z'/%3e%3c/svg%3e\"},734:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1440 960'%3e%3cdefs%3e%3clinearGradient id='d' y2='277.58' gradientUnits='userSpaceOnUse' x2='601.38' gradientTransform='matrix(1.14637 0 0 1.17117 33.18 82.14)' y1='342.3' x1='597.92'%3e%3cstop stop-color='%23fff' offset='0'/%3e%3cstop stop-color='%231ea8d1' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient id='e' y2='399.5' gradientUnits='userSpaceOnUse' x2='600.31' gradientTransform='matrix(1.14637 0 0 1.17117 33.18 82.14)' y1='326.43' x1='599.96'%3e%3cstop stop-color='%23FFF' offset='0'/%3e%3cstop stop-color='%23c1d3e8' offset='.13'/%3e%3cstop stop-color='%2388b0d5' offset='.3'/%3e%3cstop stop-color='%235998c6' offset='.46'/%3e%3cstop stop-color='%232c87bc' offset='.62'/%3e%3cstop stop-color='%23007db5' offset='.76'/%3e%3cstop stop-color='%230077b0' offset='.9'/%3e%3cstop stop-color='%230075af' offset='1'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath fill='%23ed1c24' d='M0 0h1440v960H0z'/%3e%3cpath fill='%23034ea2' d='M0 0h1440v720H0z'/%3e%3cpath fill='%23fd0' d='M0 0h1440v480H0z'/%3e%3cg id='a' stroke='%23000' stroke-width='.46' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'%3e%3cpath fill='%23b1babf' d='M452.3 476.58a.57.57 0 0 1-.11.18s-2.73 1.42-5.71 1.62c0 0-2.7 8.42-5.89 11 3.72-2.49 9.8-4.76 11.33-4.92.08-2.35.51-5.13 2.02-6l.22-.05a9.58 9.58 0 0 0-1.86-1.83z'/%3e%3cpath fill='none' stroke-width='.23' d='m442.15 487.98 10.95-10.45m-1.16 6.79-5.44-6.08'/%3e%3cpath fill='%23b1babf' d='m472.76 455.57 3.2 3.78-20.28 19.03h-1.26l-2.3-2.06.12-1.6z'/%3e%3cpath fill='none' stroke-width='.23' d='m454.08 476.66 19.83-18.34'/%3e%3cpath fill='%23b1babf' d='m478.97 217.63 8.48 8.02-2.18.92-8.36-7.9 2.06-1.04'/%3e%3cpath fill='%23034ea2' d='m509.97 317.7 11.08 10.95 5.2-12.53.99-7.69c-.78-22.02-.38-43.66-.38-43.66l3.26 2.84-12.44-12.45-7.33-7.2s-.14 46.32-.38 69.74z'/%3e%3cpath fill='%23ed1c24' d='m527.24 308.43 11-32.7-11.38-10.96s-.4 21.64.38 43.66z'/%3e%3cpath fill='%23fd0' d='m510.36 247.96 7.32 7.2c-13.33-13.35-28.93-29-36.85-37.02-1.46-1.48-1.8 31.9-1.64 69.12l30.79 30.44c.24-23.42.38-69.74.38-69.74z'/%3e%3cpath fill='none' stroke-width='.23' d='m534.98 272.44-59.13-59.49'/%3e%3cpath fill='%23b1babf' stroke-width='.34' d='M476.98 214.13c-.12-.06-.2-.11-.21-.14 0 0-1.68-3.45-1.86-7.2 0 0-10.18-3.55-13.26-7.6 2.96 4.7 5.6 12.38 5.76 14.3 2.86.15 6.22.75 7.26 2.66l.05.27c.84-.64 1.6-1.4 2.26-2.29z'/%3e%3cpath fill='%23ed1c24' stroke-width='.34' d='m484.95 223.48-2.6-2.65c-.2.6-.5 1.62-1 3.41-1.04 3.82-.23 16.62-.8 21.01s-1.63 10.41-1.74 12.99l-.02.16c-.03 3.05 1.12 6.8 1.12 6.8s1.83.94 2.14.12.46-7.2.46-8.52.38-2.08 1.52-8.4.61-9.9.16-13.75c-.46-3.85.76-11.17.76-11.17z'/%3e%3cpath fill='%23034ea2' stroke-width='.34' d='M480.06 218.04s-2.87 7.83-2.75 13.85c.11 6.01-.81 14.32-.93 15.56-.09.92-1.18 5.8-1.28 9.47-.04 1.3.29 1.16.59 1.93 0 0 1.98 1.24 3.1-.45l.02-.16c.11-2.58 1.15-8.6 1.73-12.99.58-4.39-.23-17.19.81-21 .5-1.8.8-2.83 1-3.42.2-.67.27-.79.27-.79l-2.56-2z'/%3e%3cpath fill='%23ed1c24' stroke-width='.34' d='M487.82 216.7a86.75 86.75 0 0 1-7.84 1.64c6.5.13 9.11 4.02 9.11 4.02l2.2-2.65c1.96-3.24-1.74-3.59-3.47-3.01z'/%3e%3cpath fill='%23ed1c24' stroke-width='.23' d='m479.99 218.34.17.33c.77 1.4 3.94 6.65 7.59 4.73l1.35-1.03s-2.6-3.9-9.11-4.03z'/%3e%3cpath fill='%23034ea2' stroke-width='.34' d='M480.53 218.34s6.41-3.56 7.3-3.53c.9.04 1.01 1.51 1.23 2.37s-.02 1.91-3.2 1.82c-3.16-.08-2.23-.43-5.33-.66z'/%3e%3cpath fill='%23034ea2' stroke-width='.34' d='M490.62 214.23c-.95-4.4-5.46-3.48-5.46-3.48-4.43.74-4.99 6.12-5.06 7.54l-.01.34c10.45-8.9 9 .21 9 .21 1.05-1.85 1.53-4.61 1.53-4.61z'/%3e%3cpath fill='none' stroke-width='.23' d='m462.2 200.03 13.75 15.31m-8.54-1.82 7.57-6.7'/%3e%3cpath fill='%23b1babf' stroke-width='.34' d='M480.04 203.82a2 2 0 0 0-.43-.46c.48 2.86.2 5.81-1 8.46a12.7 12.7 0 0 1-3.73 4.76c-3.45 2.64-8.22 3.26-12.77 1.43l.25.17c.38.25.77.5 1.17.72 7.19 4.06 15.19 2.52 17.87-3.43 1.6-3.55.95-7.88-1.36-11.65z'/%3e%3ccircle fill='%23e8b909' cx='477.02' cy='257.56' r='2.09'/%3e%3cpath fill='%23e8b909' d='M479.63 269.7c-2.96-.11-4.6-.28-6.53-.4.25-4.08.6-9.75 3.86-9.55 3.23.2 2.92 5.86 2.67 9.95z'/%3e%3cpath fill='none' d='M475.83 263.2s-.56 5.84-.61 6.18m2.23-6.12s.07 4.43-.28 6.26'/%3e%3ccircle fill='%23e8b909' cx='480.7' cy='263.46' r='2.09'/%3e%3cpath fill='%23e8b909' d='M484.04 275.42c-2.97.07-4.62 0-6.54 0 0-4.1 0-9.77 3.27-9.77 3.24 0 3.27 5.68 3.27 9.77z'/%3e%3cpath fill='none' d='M479.86 269.15s-.2 5.86-.24 6.2m1.86-6.23s.34 4.42.1 6.27'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 1439.03 0)'/%3e%3cg stroke='%23000' stroke-width='.34'%3e%3cpath fill='none' d='M529.89 257.24c-3.95 1.18-6.94 3.1-11.21 3.63' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M511.32 264.35s-.4-8.1-.07-9c.32-.88 7.38-6.38 5.24-20.15 0 0-1.39-4.62-.67-5.76 0 0-6.12 11.66-6.62 15.14-.51 3.48.36 9.15.7 10.53.34 1.38.89 5.1.89 5.1' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M515.3 233.09c0 1.67-.57 3.39-.85 5.02-.28 1.62-.5 3.13-1.06 4.68-.71 1.98-1.68 4.03-2.05 6.08-.3 1.72-.3 3.47-.35 5.22m-.33 1.35c-.1-1.5 1.77-3.5 2.96-4.53m-2.36-1.63c.44-1.09-.95-3.34-1.1-4.54m1 6.32c-.05-2.64 3.2-3.36 3.32-5.76m-2.12.01c-.28-1.27-2.34-2.27-1.71-3.73' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M513.32 242.88c.26-.8.92-1.6 1.41-2.35.45-.67 1.32-1.16 1.64-1.86m-2.37 1.38c.06-1.67-.48-3-.42-4.62' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M518.47 255.06c.02-2.97.41-4.65 2.81-6.48 2.1-1.6 4.84-2.35 5.73-4.98-.48.9-.28 2.07-.5 3.06a16.46 16.46 0 0 1-1.24 3.52 28.45 28.45 0 0 1-2.97 4.75' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M508 264.51c1.63-3.75 4.27-6.78 8.07-8.46 2.91-1.28 6.03-1.72 9.16-1.88 1.9-.1 3.67-.12 5.52-.73 1.34-.44 3.67-1.05 4.53-2.2-5.33 2.99-8.41 8.88-14.2 11.26-4.56 1.87-10.6.94-14.61 4.05' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M508.38 264.89c2.88-2.97 6.5-5 10.48-6.1 3.12-.86 6.65-1.9 9.44-3.6m-9.32 3.96c.91.46 3 1.46 4.08 1.28m-.24-2.7c.95 0 2.54.75 3.32.38m-6.4.4c-1.1-1.93 1.65-2.06 2.3-3.2' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M536.73 243.83c1-1.15.65-4.4 1.18-5.97.68-2.04 2.24-3.48 3.14-5.36-.82 1.85-.09 4.39-.74 6.35-.74 2.18-2.48 4.05-3.7 6' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M538.26 241.27c-.2-1.84 1.28-3.33 1.66-4.98' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M505.23 305.87c2.2 3.34 4.85 8.7 1.85 12.42-.65-.96-.71-2.81-1.75-3.48-.75-.48-2.12-.27-3.01-.65-2.39-1.01-1.93-3.59-3.53-4.88l-.38-.94 6.28-3.1.54.63z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M502.38 308.56c2.8 2.08 4.74 5.5 4.47 9.06m-4.85-9.19c.8 1.92.11 3.38.28 5.2.08-.11.14-.24.23-.35m.63-4.34c1.83 1.35 3.09 2.36 4.34 4.21' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M495.23 296.18c1.02-1.23 1.29-3.41 2.17-4.86 1.11-1.8 2.98-3.6 4.97-4.3a24.56 24.56 0 0 1 7.39-1.44c2.43-.1 5.25.96 7.32.76-4.26 1.56-9.49 1.75-13.41 4.19-2.56 1.58-5.13 4.24-7.16 6.45-1.7 1.84-2.13 3.9-3.07 6.1' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M495.36 297.71c1.04-2.53 3.19-5.73 5.4-7.4 2.2-1.7 5.08-2.71 7.88-2.56m-11.5 6.64c1.44-1 3.37-1.94 4.6-3.2' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M505.44 288.1c1.35-1.52 3.25-1.39 4.98-1.63m-16.85 18.64c.56-.75.85-1.72 1.3-2.58.63-1.18 1.47-2.19 2.28-3.27a43.6 43.6 0 0 1 5.23-6.02 14.55 14.55 0 0 1 6.4-3.43c2.2-.5 6.09.04 7.73-1.64-1.22 1.47-1.77 3.28-3.2 4.7-2.07 2.07-4.23 4.37-6.86 5.82-2 1.1-4.61 2.32-6.79 2.82-1.91.44-5.23.44-6.33 2.43.1.05.18.14.24.22.35-.23.71-.52 1.02-.84' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M494.85 302.56c1.13-.38 2.16-1.98 3.03-2.8 1.26-1.2 2.6-2.14 4.08-3.07a38.18 38.18 0 0 1 5.75-3.1c1.64-.69 3.23-1.3 4.63-2.4' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M500.97 297.33c1.35-.44 2.68-1.04 4.08-1.28.79-.13 1.73.03 2.43-.38m-4.46.25c1.01-1.48 2.69-2.72 3.32-4.34' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M524.72 254.04c1.75-2.38 3.82-4.09 6.17-5.93 1.56-1.24 2.77-2.91 4.66-3.68 5.01-2.05 10.55 1.9 15.69 1.81-2.23.97-4.19 2.37-6.6 2.98-2.4.61-4.77.97-7.27.99-4.41.04-10.25.1-12.78 4.47' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M527.66 251.49c2.9-.72 5.77-2.56 8.58-3.67 2.85-1.11 5.98-.52 8.78-1.44m-8.87 1.53c1.85-.68 4.49.76 6.51.77' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M533.41 249.06c.92-.76 1.86-1.6 2.84-2.3.74-.51 1.78-1 2.01-1.91' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M504.58 280.18c2.1-.42 2.83-4.03 3.4-5.62.76-2.18 1.42-5.22 2.78-7.09.9-1.21 2.62-2.16 3.88-3.06 1.6-1.15 2.37-1.57 4.25-1.85 2.52-.38 5.2-.63 7.76-.65 2.3-.03 4.93.36 7.07-.73-2.34.78-4.69 2.75-6.11 4.61-2.23 2.92-3.66 5.6-7 7.7-2.97 1.89-6.64 2.77-10.01 3.8-1.92.58-5.12 1.27-5.6 3.46' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M507.61 277.54c3.65-3.69 5.16-9 10.73-10.47 3.4-.9 8.7-1.37 10.98-4.34' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M510.51 274.11a6.2 6.2 0 0 1 4.31-1.79c1.64 0 3.37.41 4.88-.38m-.98-4.62c1-.37 2.02.25 3.03.26 1.05.01 1.88-.6 2.84-.77m-9.19 1.53c.47-2 1.51-2.83 2.56-4.47' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M501.48 285.78c1.62-.1 2.35-2.1 2.85-2.98.7-1.18 1.34-2.87 2.46-3.85.74-.63 2.1-1.06 3.1-1.49a7.4 7.4 0 0 1 3.34-.78c1.93-.05 3.99-.03 5.94.12 1.76.13 3.75.52 5.43.04a11 11 0 0 0-4.88 2.23c-1.84 1.52-3.06 2.95-5.7 3.93-2.35.88-5.2 1.15-7.81 1.52-1.5.2-3.96.4-4.43 1.61' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M503.92 284.47c2.96-1.86 4.36-4.79 8.68-5.26 2.64-.3 6.69-.23 8.57-1.77' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M506.92 282.53a5.68 5.68 0 0 1 3.37-.74c1.25.1 2.55.45 3.74.1m-1.16-2.52c.78-.14 1.53.27 2.3.34.8.07 1.46-.21 2.2-.26m-7.08.29c.45-1.1 1.28-1.5 2.16-2.38' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M491.42 308.23s-13.45-14.3-6.2-32.03c0 0 .22 4.9.65 5.55.43.64 7.9 11.85 6.83 21.57-1.06 9.72-.53 5.77-.53 5.77l-.75-.86z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M491.42 307.05s-1.7-11.32-3.84-14.42c-2.14-3.1-2.46-9.6-2.25-10.78m2.24 9.51c.58-.73 1.21-1.5 1.28-2.46m.65 7.26c.6-.8.7-1.84.96-2.67m-1.18 4.91c-.7-.88-3.29-1.04-3.42-2.03m1.29-3.3c-.52-1.08-3.15-1.36-3.2-2.67m1.27-3.63c-1.01-.76-1.22-1.4-1.6-2.56m6.73 18.36c-1.02-1.16-2.16-1.54-3.31-2.24m3.42-.22c.2-1.01 1.22-2 1.18-2.99' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M514.17 250.18s3.23-7.34 3.92-7.98c.68-.64 9.48-2.23 13.66-15.39 0 0 .8-4.72 1.95-5.39 0 0-10.68 7.48-12.68 10.32s-3.74 8.25-4.04 9.63c-.3 1.37-1.46 4.91-1.46 4.91' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M531.62 224.41c-.73 1.48-2.02 2.73-3 4.04-.96 1.3-1.83 2.54-3.02 3.64-1.52 1.43-3.3 2.8-4.54 4.43-1.08 1.43-1.87 3.07-2.73 4.64m-.81.85c.58-1.38 3.15-2.27 4.68-2.64m-1.41-2.52c.88-.76.62-3.39 1.02-4.51m-1.49 5.16c.81-2.35 5.55-.33 6.52-2.32m-3.29-1.33c.31-1.25-1.1-3.08.11-4.08' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M525.49 232.15c.6-.6 1.54-1 2.31-1.42.7-.39 1.7-.42 2.3-.89m-2.74.12c.79-1.45.9-2.88 1.67-4.27' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M496.94 255.01s.5-4.56.29-5.06c-.22-.5-5.3-3.6-3.36-11.35 0 0 1.14-2.6.64-3.24 0 0 4.22 6.56 4.5 8.53s-.5 5.15-.78 5.92c-.29.78-.79 2.87-.79 2.87' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M494.84 237.54c-.05.94.34 1.9.5 2.83.17.9.3 1.76.66 2.63.47 1.12 1.14 2.27 1.36 3.42.19 1.01.12 2.04.12 3.07m.22.64c.11-.85-1.22-1.97-2.07-2.55m1.78-.92c-.3-.61.79-1.88.93-2.55m-.85 3.01c.3-1.4-3.43-1.61-3.36-2.87m2.57.18c.24-.71 1.79-1.27 1.36-2.1' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M496.06 243.06c-.17-.45-.64-.9-.98-1.32-.31-.38-.95-.66-1.16-1.05m1.71.77c0-.94.43-1.7.43-2.6' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M496.44 275.23s.5-9.38.9-10.37c.41-.99 7.74-6.47 7.2-22.6 0 0-.82-5.48-.01-6.7 0 0-7.1 12.69-7.96 16.64-.86 3.95-.65 10.59-.48 12.22s.29 5.98.29 5.98' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M503.64 239.7c-.17 1.92-.92 3.83-1.36 5.68-.44 1.83-.82 3.55-1.51 5.26-.9 2.2-2.04 4.44-2.62 6.76-.5 2.02-.67 4.14-.93 6.22m-.43 1.26c.07-1.75 2.07-3.81 3.32-4.86m-2.08-2.16c.54-1.2-.54-3.96-.56-5.36m.57 6.42c-.04-2.9 4.84-2.71 5.06-5.3m-3.59-.19c-.13-1.5-1.98-2.9-1.23-4.5' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M500.69 250.75c.33-.9 1.05-1.74 1.6-2.53.5-.72 1.4-1.18 1.77-1.95m-2.42 1.29c.24-1.91-.13-3.52.1-5.37' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M495.94 265.35s-2.67-4.48-3.52-6.94c-.86-2.46-2.35-4.8-2.89-5.23s5.88 3.3 6.3 4.38' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M495.83 261.29c-.9-2.1-2.11-4.9-4.27-5.98m3.52 5.66c-.21-.94-1.26-1.61-1.92-2.14m1.71.43c-.26-.85-.42-1.84-.64-2.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M496.36 280.08s.75-9.72 5.13-12.28c0 0 4.27-2.14 6.08-3.84 0 0 2.57-3.53.96-1.28-1.6 2.24-2.67 14.73-2.77 15.48-.1.74-1.71 5.55-4.7 9.18s-4.38 5.87-5.02 7.16c-.64 1.28-1.18 4.7-1.18 4.7' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M495.94 291.19c1.61-1.34 1.94-3.46 2.67-5.37.8-2.1 1.74-4.07 2.05-6.28.33-2.27.9-4.27 1.82-6.37.94-2.16 2.7-3.76 3.82-5.69m-5.58 12.99c1.4-1.93 2.96-1.98 4.72-3.2m-6.87 8.99c.99-1.51 3.1-1.22 3.83-3.06m-3.08-1.2c.57-2.07-1.24-3.22-1.66-5.1m3.75-.87a7.24 7.24 0 0 1 0-6.26m-4.52 4.45a23.85 23.85 0 0 1 2.04-7.8c.62-1.35 1.54-2.63 2.27-3.91.5-.9 1.15-2.18 2.08-2.72' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M503.27 259.4c-.1.48.6.77 1.13.49.04-.12.02-.23.04-.35.65.2 2.15.2 1.3-.78.6-.1 1.57-.67.74-1.18.48-.47.52-1.32-.02-1.77-.08.07-.17.17-.26.23-.04-.58-.55-.83-1.12-.7-.02.1.01.22-.01.31-.4-.27-.87-.3-1.27-.05.04.08.15.15.19.23-.36-.06-.53.13-.83.15.06.1.07.4.12.5.1-.01.1-.02 0-.02-.4.14-.67.43-.77.87.15.04.31.14.47.18-.76.22-.74.87-.08 1.13.1 0 .1 0 0-.01-.74.67.56.84 1 .26' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M611.07 383.12c.5.3.23 1.16 1.2 1.24.18-.5.33-.66.44-1.18-.29 0-1.43.17-.79.37' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M504.45 265.29c-.1.48.6.77 1.13.49.04-.12.02-.23.04-.35.65.2 2.15.2 1.3-.78.6-.1 1.57-.67.74-1.18.48-.47.52-1.32-.02-1.77-.08.07-.17.17-.26.23-.04-.58-.55-.83-1.12-.7-.02.1.01.22-.01.31-.4-.27-.87-.3-1.27-.05.04.08.15.15.19.23-.36-.06-.53.13-.83.14.06.1.07.4.12.5.1 0 .1-.01 0-.01-.4.14-.67.43-.77.87.15.04.31.14.47.18-.76.22-.74.87-.08 1.13.1 0 .1 0 0-.01-.74.67.56.84 1 .26' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M612.47 389.93c.44.31.2 1.2 1.07 1.28.17-.52.3-.68.4-1.21-.25 0-1.28.17-.7.38' stroke='none'/%3e%3cpath fill='none' d='M503.78 264.38c-4.63 2.68-8.54 7.49-7.4 13.15' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M513.74 252.13c3.73-1.83 4.71-6.08 8.2-8.14 2.27-1.33 4.95-1.71 7.5-2.2 1.8-.34 4.23-.66 5.3-2.37-1.6 1.95-3.47 3.46-5.27 5.18-1.9 1.8-3.5 3.32-6.12 4.09-2 .58-4.07.37-6.03 1.05-1.63.56-2.59 1.89-3.96 2.9l.38-.51z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M517.45 249.44c1.9-1.18 3.12-3.06 5.2-3.92 2.31-.96 4.92-1.18 7.19-2.2m-9.58 3.79c1.68-.96 4.07 0 5.62-1.15m-2.94-.6c.85-.72 1.9-1.34 2.68-2.04m-10.98 18c-2.1 1.01-6.44 1.68-7.28 4.34' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M514.64 261.19c.28.77 1.01 1.02 1.77.88l.14-.36c.93.44 1.84-.23 1.2-1.16.64-.1.72-.61.44-1.13-.15 0-.33-.04-.47-.04 1.1-1.4-2.43-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.85 1.46.05 1.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M624.46 386.4c.05 2.38 1.94-1.32.03-.12.03.19.21.16.26.27' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M522.3 267.32c.28.77 1.01 1.02 1.77.88l.14-.36c.93.44 1.84-.23 1.2-1.16.64-.1.73-.61.45-1.13-.15 0-.33-.04-.48-.04 1.11-1.4-2.43-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.84 1.46.05 1.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M633.24 393.57c.05 2.4 1.94-1.31.03-.1.03.18.21.15.27.25' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M517.57 270.77c.28.77 1.01 1.02 1.77.88l.14-.36c.94.44 1.84-.23 1.2-1.17.64-.1.73-.6.45-1.12-.15 0-.33-.04-.48-.04 1.11-1.4-2.42-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.84 1.45.05 1.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M627.82 397.6c.05 2.4 1.94-1.31.02-.1.03.18.22.14.27.25' stroke='none'/%3e%3cpath fill='%23ffdf4f' d='M619.34 399.85c.31.9 1.16 1.2 2.02 1.03l.17-.41c1.07.5 2.1-.28 1.37-1.37.74-.12.84-.72.52-1.32-.18 0-.38-.05-.55-.05 1.27-1.63-2.78-2.87-2.82-1.04-.76-.04-1.76.51-.91 1.06-.79.43-.97 1.7.05 1.95' stroke='none'/%3e%3cpath fill='%23de2126' d='M620.66 398.2c.04 2.39 1.93-1.32.02-.11.03.18.22.15.27.26' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M506.59 276.51c.28.77 1.01 1.02 1.77.88l.14-.36c.93.44 1.84-.23 1.2-1.16.64-.1.73-.61.45-1.13-.15 0-.33-.04-.48-.04 1.11-1.4-2.43-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.84 1.46.05 1.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M615.23 404.34c.05 2.39 1.94-1.32.03-.11.03.18.21.15.27.26' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M530.08 258.51c.28.77 1.01 1.02 1.77.88l.14-.36c.93.44 1.84-.23 1.2-1.16.64-.1.73-.61.45-1.13-.15 0-.33-.04-.48-.04 1.11-1.4-2.42-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.84 1.45.05 1.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M642.16 383.24c.05 2.4 1.94-1.31.03-.1.03.18.21.15.27.25' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M538.64 246c.28.77 1.01 1.02 1.77.88l.14-.36c.94.44 1.84-.23 1.2-1.17.64-.1.73-.6.45-1.12-.15 0-.33-.04-.48-.04 1.11-1.4-2.42-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.84 1.45.05 1.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M651.98 368.6c.04 2.38 1.93-1.32.02-.12.03.19.21.15.27.26' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M531.75 245.49c.28.77 1.01 1.02 1.77.88l.14-.36c.94.44 1.84-.23 1.2-1.16.64-.1.73-.61.45-1.13-.15 0-.33-.04-.48-.04 1.1-1.4-2.43-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.84 1.46.05 1.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M644.08 368c.04 2.38 1.93-1.32.02-.12.03.19.22.16.27.27' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M514.12 281.11c.28.77 1.01 1.02 1.77.88l.14-.36c.93.44 1.84-.23 1.2-1.16.64-.1.73-.61.45-1.13-.15 0-.33-.04-.48-.04 1.11-1.4-2.43-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.84 1.46.05 1.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M623.88 409.71c.04 2.4 1.94-1.31.02-.1.03.18.22.14.27.25' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M506.98 283.54c.28.77 1.01 1.02 1.77.88l.14-.36c.93.44 1.84-.23 1.2-1.16.64-.1.73-.61.45-1.13-.15 0-.33-.04-.48-.04 1.1-1.4-2.43-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.84 1.46.05 1.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M615.67 412.56c.04 2.39 1.94-1.32.02-.11.03.18.22.15.27.26' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M506.59 294.26c.28.77 1.01 1.02 1.77.88l.14-.36c.93.44 1.84-.23 1.2-1.16.64-.1.73-.61.45-1.13-.15 0-.33-.04-.48-.04 1.11-1.4-2.43-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.84 1.46.05 1.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M615.23 425.13c.05 2.38 1.94-1.32.03-.12.03.19.21.16.27.27' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M500.08 298.73c.28.77 1.01 1.02 1.77.88l.14-.36c.93.44 1.84-.23 1.2-1.16.64-.1.73-.61.45-1.13-.15 0-.33-.04-.48-.04 1.1-1.4-2.43-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.84 1.46.05 1.67l.14.08' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M607.77 430.36c.05 2.39 1.94-1.32.03-.11.02.18.21.15.26.26' stroke='none'/%3e%3cpath stroke-width='.23' fill='%23ffdf4f' d='M520.13 253.4c.28.77 1.01 1.02 1.77.88l.14-.36c.93.44 1.84-.23 1.2-1.16.64-.1.73-.61.45-1.13-.15 0-.33-.04-.48-.04 1.1-1.4-2.43-2.45-2.46-.89-.66-.04-1.54.44-.8.9-.68.37-.84 1.46.05 1.67' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23de2126' d='M630.76 377.27c.04 2.39 1.93-1.32.02-.11.03.19.22.15.27.26' stroke='none'/%3e%3cpath fill='%2339b54a' d='M537.75 242.93c2.74-2.5 2.59-6.66 6.38-8.43 1.92-.89 4.22-1.43 5.83-2.76-2.95 5-7.02 8.71-12.21 11.19' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M537.11 243.19c1.87-.68 3.25-2.28 5.04-3.12 2-.93 3.69-.26 5.8-.45 2.1-.18 4.03-.72 6.01-1.4-3.8 5.2-11.86 1.37-16.6 4.72' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M539.28 241.15c1.69-.3 2.5-2.2 3.42-3.44 1.08-1.47 2.62-1.8 4.24-2.56m-47.72 56.53c.95-1.32 1.79-2.83 2.94-3.96' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M492.65 309.16c.66-1.44.85-3.01 1.94-4.18 1.21-1.3 3.3-2.67 4.9-3.42 4.46-2.1 10.47-1.28 14.22-4.75-1.6 4.51-7.27 8.45-11.47 10.43-1.75.83-3.61 1.61-5.53 1.92-1.5.25-3.4-.08-4.83.38' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M492.9 309.28c1.45-.66 2.33-2.02 3.6-2.83a19.97 19.97 0 0 1 4.7-2.18c2.01-.64 4.1-1.27 6.05-2.12.74-.32 3.02-1.34 3.14-2.06m-13.26 6.26c1.39.38 2.68 1.35 4.21.51m-.78-2.43c2.56.01 4.57.36 7.02-.77' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M497.37 306.15c.56-.58.65-1.43 1.11-2.08.45-.63 1.16-1.18 1.57-1.8m1.53 1.65c.53-.62 1.05-1.23 1.76-1.7.7-.45 1.81-.62 2.33-1.36m-14.05 7.71c.27-1.81 1.58-3.13 2.34-4.71.48-1.03.93-3.06.98-4.17' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M493.27 305.39s.75-10.68.43-11.85c-.32-1.18-7.9-8.44-5.02-26.6 0 0 1.7-6.08.96-7.57 0 0 6.3 15.37 6.73 19.96.42 4.6-.75 12.07-1.18 13.89-.42 1.81-1.17 6.72-1.17 6.72' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M490.06 264.17c-.07 2.2.5 4.47.75 6.62.24 2.13.43 4.13.98 6.17.71 2.61 1.7 5.31 2.03 8.02.29 2.36.19 4.78.19 7.17' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M494.34 293.64c.17-1.99-1.82-4.61-3.1-5.98' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M493.91 285.53c-.45-1.43 1.18-4.4 1.39-5.98' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%2339b54a' d='M494.02 286.6c.45-3.27-5.13-3.77-5.02-6.73' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='none' d='M492.84 280.29c.36-1.67 2.67-2.98 2.03-4.91m-2.99 1.71c-.26-1.06-.95-2.12-1.47-3.1-.46-.88-1.41-1.53-1.73-2.45m2.56 1.81c0-2.2.64-3.96.64-6.09' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3c/g%3e%3cg stroke='%23000'%3e%3cg fill='%23009c4f' stroke-width='.43'%3e%3cpath d='M706.69 299.29c-.76-11.43-6.04-56.73-16.34-71.32 0 0 10 14.14 11.1 76.8l5.24-5.48z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M705.16 292.54c-5.62-35.75-25.08-67.02-25.08-67.02 7.35 15.13 20.25 53.84 23.64 77.45l2.33-2.23-.89-8.2z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M674.47 227.34c16.47 29.84 23.28 73.26 24.32 80.45l5.79-5.56c-5.35-33.64-30.11-74.89-30.11-74.89' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M664.8 224.38c2.81 4.74 15.4 29.58 20.51 43.94 4.15 11.63 8.35 32.79 10.21 42.73l7.13-6.85c-6.56-30.92-33.85-73.69-37.84-79.82' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M654.57 221.39s21.01 32.36 27.47 54.44c2.04 6.99 8.15 28.02 10.46 37.93l8.22-6.55c-6.51-19.03-26.9-67.2-46.15-85.82' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M654.81 240.03c10.93 14.65 29.6 49.29 34.66 76.94l9.45-9.09c-8.15-22.15-34.4-55.83-44.11-67.85' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M661.97 260.62c13.04 17.11 23.02 45.73 23.75 59.02l8.08-6.54c-8.23-22.02-31.83-52.48-31.83-52.48' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3c/g%3e%3cpath d='M823.61 452.48c-3-14.1-10.05-29.28-16.96-42.47m22.96 36.18c-6.6-19.32-18.14-41.61-31.06-61.33m29.11 42.47c-7.95-20.24-24.31-59.8-36.91-75.74m43.66 83.87c-5.7-21.77-18.3-50.74-25.06-64.4m27.01 57.81c-6-24.07-13.65-45.23-18.46-56.27m22.36 59.49c-1.8-19.16-11.7-51.05-19.2-67.76m17.1 43.84c-.75-9.35-3.75-28.67-5.85-37.1' fill='none' stroke-width='.27' stroke-linecap='round'/%3e%3c/g%3e%3cg id='b' fill='none' stroke='%23000' stroke-width='.46' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'%3e%3cpath fill='%23b1babf' d='M486.92 512.12a.57.57 0 0 1-.11.18s-2.73 1.42-5.71 1.62c0 0-2.7 8.42-5.89 11 3.72-2.49 9.8-4.76 11.33-4.92.08-2.36.51-5.13 2.02-6l.22-.05a9.5 9.5 0 0 0-1.86-1.83z'/%3e%3cpath stroke-width='.23' d='m476.77 523.52 10.95-10.45m-1.17 6.78-5.44-6.08'/%3e%3cpath fill='%23b1babf' d='m527.78 478.26-37.48 35.65h-1.26l-2.3-2.07.12-1.6 37.71-35.76 3.21 3.78'/%3e%3cpath stroke-width='.23' d='m488.69 512.19 35.19-33.01'/%3e%3cpath fill='%23fd0' d='M517.38 449.99c-24.76-15.59-28.8-63.2-28.43-69.69s.61-82.52.61-82.52l7.33 7.2c-13.33-13.35-28.93-29-36.85-37.02-2.54-2.57-.72 99.61-.72 144.98 0 21.28 13.27 96.33 91.1 58.56 0 0 38.9-13.96 50.25-30.8-2.65 0-5.27-.16-7.85-.49a41.85 41.85 0 0 1-3.78 1.78c-44.89 30.25-71.66 8-71.66 8z'/%3e%3cpath fill='%23034ea2' d='M488.96 380.3c-.38 6.5 3.67 54.1 28.43 69.69 0 0 26.77 22.25 71.66-8-13.57 5.6-24.65 6.78-31.91 4.63-21.7-6.41-44.65-31.48-48.31-56.84-3.67-25.37-2.75-75.2-2.75-75.2l3.25 2.85-12.43-12.45-7.33-7.2s-.23 76.02-.61 82.52z'/%3e%3cpath fill='%23ed1c24' d='M520.74 347.46c-.22-2.3-.38-10.48-.4-19.4-5.11-5.12.98 1.16-10.95-10.77l-3.32-3.41-.01 1.63c-.1 6.9-.61 50.93 2.76 74.27 3.67 25.37 25.99 50.44 47.69 56.85 7.26 2.15 18.96.97 32.54-4.63.91-.62 1.84-1.25 2.77-1.91-39.25-5.6-66.33-42.19-71.08-92.63z'/%3e%3cpath stroke-width='.23' d='m519.52 327.41-59.13-59.49'/%3e%3cpath fill='%23b1babf' stroke-width='.34' d='M458.98 264.71c-.91-.9-2-1.46-3.06-1.65.17-.7.07-1.32-.32-1.7-.83-.83-2.69-.3-4.15 1.17-1.46 1.48-1.97 3.35-1.14 4.17.4.39 1 .47 1.7.3a5.9 5.9 0 0 0 1.68 3.06c1.95 1.93 4.7 2.3 6.17.82 1.46-1.48 1.07-4.24-.88-6.17z'/%3e%3cpath d='m458.96 267.62-.17-.33.17.33zm8.93 3.69-1.35 1.03c.44-.23.9-.56 1.35-1.03z'/%3e%3cpath fill='%23ed1c24' stroke-width='.34' d='M460.84 324.05c.3-1 .46-8.71.46-10.31 0-1.61.38-2.53 1.53-10.17 1.14-7.64.6-12 .15-16.66-.46-4.66 1-14.65 1-14.65l-2.85-2.08c-.19.72-.5 1.96-.99 4.14-1.04 4.62-.23 20.11-.8 25.43-.58 5.32-1.62 12.6-1.74 15.73l-.01.19c-.04 3.7 1.1 8.23 1.1 8.23'/%3e%3cpath fill='%23034ea2' stroke-width='.34' d='M458.64 267.84s-2.66 8.44-2.54 15.72c.11 7.29-.81 17.35-.93 18.85-.11 1.5-2.08 11.8-.92 15.38l1.38 1.96s1.77-1.1 1.96-4.09v-.18c.13-3.13 1.17-10.4 1.74-15.73.58-5.32-.23-20.81.81-25.44.5-2.17.8-3.41 1-4.13.2-.82.28-.95.28-.95l-2.78-1.39z'/%3e%3cpath fill='%23ed1c24' stroke-width='.34' d='M466.62 265.65a86.75 86.75 0 0 1-7.84 1.64c6.5.13 9.11 4.02 9.11 4.02l2.2-2.65c1.96-3.24-1.74-3.59-3.47-3.01z'/%3e%3cpath fill='%23ed1c24' stroke-width='.34' d='m458.78 267.28.17.33c.77 1.4 3.94 6.65 7.59 4.73l1.35-1.03s-2.6-3.9-9.11-4.03z'/%3e%3cpath fill='%23034ea2' stroke-width='.34' d='M459.21 267.21s5.1-5.28 5.96-5.5c.87-.24 1.4 1.14 1.86 1.9.46.77.53 1.84-2.52 2.68-3.06.84-2.27.24-5.3.92z'/%3e%3cpath fill='%23034ea2' stroke-width='.34' d='M467.66 260.33c-2.2-3.93-6.24-1.73-6.24-1.73-4.01 2-2.98 7.31-2.64 8.69l.1.32c7.4-11.56 8.66-2.42 8.66-2.42.47-2.09.12-4.86.12-4.86z'/%3e%3cpath fill='%23e8b909' stroke-width='.53' d='M558.44 469.55c.28-4.79.64-11.43-3.06-11.66-3.74-.23-4.14 6.4-4.42 11.23 2.2.16 4.08.36 7.48.49' transform='matrix(.87232 0 0 .85385 -28.94 -70.13)'/%3e%3ccircle fill='%23e8b909' cx='455.52' cy='318.82' r='2.09'/%3e%3cpath d='M454.26 324.19s-.56 5.84-.61 6.18m2.23-6.11s.07 4.43-.28 6.26'/%3e%3cpath fill='%23e8b909' stroke-width='.53' d='M560.55 463.61s.39 5.17.12 7.34m-1.98-7.3s-.23 6.87-.27 7.26m5.07.08c-3.4.08-5.3 0-7.5 0 0-4.8 0-11.45 3.75-11.45 3.7 0 3.75 6.65 3.75 11.45z' transform='matrix(.87232 0 0 .85385 -28.94 -70.13)'/%3e%3ccircle fill='%23e8b909' cx='459.27' cy='321.64' r='2.09'/%3e%3cellipse fill='%23c0cad0' stroke-width='.23' cx='452.96' cy='264.03' rx='1.97' ry='3.5' transform='rotate(44.76 452.94 264)'/%3e%3cpath fill='%23b1babf' stroke-width='.34' d='M448.94 274.96s-2.8-1.6-3.08-4.92c-.19-2.32 1.43-4.41 2.44-5.48.47.33.87.53 1.07.54l.61-.36 2.16-2.23 1.36-1.34c.5-.63.86-1.15.87-1.36l-.2-.5c1.75-1.9 5.71-6.56 3.94-7.73-1.52-.98-6.03 2.68-7.56 3.99l-.74-.32c-.2.02-.57.27-1.02.64a31.9 31.9 0 0 1-3.12-10.4s-15.83-4.7-20.83-10.68c4.84 6.99 9.44 18.55 9.84 21.46 4.08.01 8.86.63 10.88 3.01-.29.38-.49.71-.5.87-.04.38.08.8.28 1.22a9.95 9.95 0 0 1-4.98 2.8c-3 .54-5.74-2.72-5.74-2.72h-.05a11.31 11.31 0 0 0-.52 3.4c0 6.14 4.84 11.1 10.8 11.1 1.5 0 2.92-.3 4.21-.87l-.12-.12z'/%3e%3cpath stroke-width='.23' d='m426.06 236.42 21.32 21.32m-12.73-1.34 10.88-10.71'/%3e%3cpath stroke-width='.34' d='M446.18 260.15a3.37 3.37 0 0 1 3.44-3.3c1.83.07 3.27 1.64 3.21 3.51s-1.6 3.36-3.43 3.3a3.37 3.37 0 0 1-3.22-3.51z'/%3e%3cpath stroke-width='.27' d='M533 389.88c-.27 2.3.93 7.18 3.35 9.65s6.2 4.31 10.26 3.8' transform='matrix(.87232 0 0 .85385 -28.94 -70.13)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='matrix(-1 0 0 1 1440 0)'/%3e%3cg id='c' stroke='%23000' stroke-width='.46'%3e%3cpath fill='%23fd0' d='M581.88 467.92c-6.19.17-17.65 1.6-17.65 1.6s-19.97 26.48-20.46 32.01c-.48 5.53-.48 10.1 12.76 8.18 0 0 6.4-1.21 11.69-1.6 5.82-1.9 6.46-.52 7.07-.12.47-2.02 1.6-6.86 2.96-12.5 2.7-11.14 6.28-25.38 7.35-26.87l.05-.38c-.33-.3-1.77-.38-3.77-.32z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23ed1c24' d='M587.08 458.22s-.29 1.86-.73 4.96l5.3 2.5s-.48 7.7-.72 12.27c-.16 3.02-2.2 23.76-3.58 37.5l-1.06 10.56c.28 4.22-3.06 8-3.06 8-2.23 2.18-3.33 3.97-3.68 5.42l-.11 1.24c.01.17.04.34.07.5.57 2.54 4.04 3.48 6.37 3.2 3.85-.49 11.07-5.1 11.07-5.1l.72-73.11-10.59-7.94z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23034ea2' stroke-linecap='round' d='M586.35 463.18c-.2 1.44-.45 3.15-.7 5.05.1.1.1.2-.01.33l-.05.06c-1.07 1.5-4.65 15.72-7.34 26.88-1.36 5.63-3.02 12.35-3.49 14.37-.57 1.25-10.67 12.84-10.86 16.6-.08 1.53 1.16 2.46 4.65 2.25 5.33-.32 9.05-1.3 11.69-1.95 3.32-.82 4.94-1.14 5.88.99l.18-1.75c.2-2.1.6-5.93 1.05-10.56 1.38-13.74 3.42-34.48 3.58-37.5.24-4.57.72-12.27.72-12.27l-5.3-2.5z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23ebc900' d='M574.87 507.48c-.42-.3-.12-1.38-7.42.68-1.63 7.31-3.55 18.31-3.55 18.31.03-3.72 7.8-11.38 10.06-14.85 1.13-1.75 1.44-3.26.91-4.14z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23023f88' d='m585.7 529.77.51-2.01c-.95-2.13-2.59-1.8-5.96-.99-.18 4.42-.4 9.33-.68 12.68.35-1.45 1.45-3.27 3.71-5.44 0 0 1.7-1.43 2.42-4.24z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='matrix(-1 0 0 1 1435.18 0)'/%3e%3cg fill='%23452c25' stroke='%23000' stroke-width='.47'%3e%3cpath stroke-width='.58' d='M593.68 214.48s-8.43 19.15-5.51 21.05c0 0 8.54-14.87 16.05-20.5 3.9-3.6 6.27.04 6.77-3.13s-10.26-7.7-10.26-7.7l-6.9 9.49' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M562.94 229.06s-12.25 20.87-9.04 21.11c3.22.25 16.31-26.6 16.31-26.6l-4.46.74-2.81 4.75z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M566.64 223.25s-12.8 20.53-9.6 20.86c3.2.33 17.01-26.16 17.01-26.16l-4.48.63-2.93 4.67z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M569.23 219.67s-14.57 19.31-11.41 19.93c3.16.61 19.27-24.55 19.27-24.55l-4.53.23-3.33 4.39z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M573.13 216.28s-17.07 17.15-14.02 18.19c3.05 1.04 22.43-21.7 22.43-21.7l-4.5-.39-3.91 3.9z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M573.74 210.04s-14.9 19.07-11.74 19.74 19.67-24.23 19.67-24.23l-4.52.15-3.41 4.34zm-3.8 16.39s-14.57 19.31-11.41 19.93c3.16.61 19.27-24.55 19.27-24.55l-4.52.23-3.34 4.39zm8.2-3.82s-8.53 15.72-7.56 16.37c.98.65 11.34-8.96 16.46-18.32s-9.27 1.56-9.27 1.56' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='.58' d='M586.61 219.12s-8.43 19.15-5.51 21.05c0 0 10.56-11.55 13.32-20.73s0-.64 0-.64l-.76-9.97-6.9 9.5' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='.58' d='M579.05 221.05s-8.43 19.15-5.51 21.05c0 0 10.56-11.55 13.32-20.73s0-.64 0-.64l-.76-9.97-6.9 9.5' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M574.68 219.38s-17.07 17.15-14.02 18.19 22.43-21.7 22.43-21.7l-4.51-.39-3.9 3.9z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M576.03 221.7s-17.07 17.15-14.02 18.19c3.05 1.04 22.43-21.7 22.43-21.7l-4.5-.39-3.91 3.9z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M577.39 224.42s-17.07 17.15-14.02 18.19 22.43-21.7 22.43-21.7l-4.5-.39-3.91 3.9zm1.27-23.55s-12.68 15.85-10.85 18.58c1.83 2.73 13.4-7.28 17.07-14.3 3.65-7-6.1-4.8-6.1-4.8' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M578.26 217.71s-10.87 20.36-8.06 19.19c2.8-1.17 13.82-16.48 15.04-19.86 1.22-3.38.8-6.9.8-6.9l-8.4 5.06.71 3.94' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='.4' d='M578.33 211.01s9.02-16.23-.06 3.06c-9.08 19.28-12.48 16.1-12.48 16.1-.7-1.1 7.9-14.17 7.9-14.17s6.38-10.05 7.9-11' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='.43' d='M588 208.86s10.03-16.12-.02 3.06C577.92 231.1 574 227.86 574 227.86c-.81-1.12 8.78-14.07 8.78-14.07s7.13-9.97 8.85-10.9' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M588.39 209.96s-10.13 21.1-7.8 22.65c0 0 8.4-9.48 10.6-17.02 2.19-7.53 0-.52 0-.52l2.8-13.56m4.83 3.75s-10.13 21.1-7.81 22.65c0 0 8.41-9.48 10.6-17.02 2.2-7.53 0-.52 0-.52l2.82-13.56' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M584.32 202.05s-12.68 15.85-10.85 18.58c1.83 2.73 13.4-7.28 17.07-14.3 3.65-7-6.1-4.8-6.1-4.8' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3c/g%3e%3cg fill='%23c69024' stroke='%23000' stroke-width='.53'%3e%3cpath fill='%23b1babf' stroke-width='.46' d='M682.1 459.3c0 2.91-.97 3.47-.97 3.47H532.06v-6.64h149.08s.97.26.97 3.17z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23b87510' d='M655.42 620.46c0 1.17.02 2.32.07 3.48h126.56a90.35 90.35 0 0 0-.02-7.55H655.5c-.06 1.35-.1 2.7-.1 4.07z'/%3e%3cpath fill='%23b76e11' d='M655.51 616.38h126.52c-.08-1.91-.22-3.8-.42-5.68H655.93c-.2 1.87-.34 3.77-.42 5.68z'/%3e%3cpath fill='%23ac620e' d='M655.94 610.69h125.68c-.2-1.88-.45-3.74-.76-5.58H656.7c-.31 1.84-.57 3.7-.77 5.58z'/%3e%3cpath fill='%23a2550b' d='M776.82 599.51h-116.1c-2.33 0-3.7 3.7-4.02 5.58h124.15c-.32-1.88-1.81-5.58-4.02-5.58z'/%3e%3cpath fill='%23b76e11' d='M655.91 630.01h125.72c.2-2 .35-4.02.42-6.07H655.5c.08 2.05.22 4.07.42 6.07z'/%3e%3cpath fill='%23ac620e' d='M656.56 634.94h124.43c.26-1.62.47-3.27.65-4.93H655.92c.17 1.66.38 3.3.64 4.93z'/%3e%3cpath fill='%23a2550b' d='M660.71 640.2H776.8c2.28 0 3.9-3.48 4.18-5.25H656.55c.28 1.78 1.72 5.25 4.15 5.25z'/%3e%3cpath d='M671.4 640.34c-1.14-3.61-1.95-12.01-2.09-20.9-.13-8.9 2.56-20.28 2.56-20.28h-6.27s-2.7 11.39-2.56 20.28c.14 8.89.95 17.29 2.1 20.9h6.26zm95.03.06c1.15-3.61 1.95-12.01 2.09-20.9.13-8.9-2.56-20.28-2.56-20.28h6.27s2.7 11.39 2.56 20.28c-.14 8.89-.95 17.29-2.1 20.9h-6.26zm-57.57-.06c-.94-5.4-1.05-12.53-1.05-20.9s.89-17.9 1.52-20.28h-6.27c-1.1 3.55-1.51 13.04-1.51 20.28 0 7.24.2 15.68 1.04 20.9h6.27zm19.58 0c.94-5.4 1.05-12.53 1.05-20.9s-.89-17.9-1.52-20.28h6.27c1.1 3.55 1.51 13.04 1.51 20.28 0 7.24-.2 15.68-1.04 20.9h-6.27z'/%3e%3cpath stroke-width='.55' d='M686.12 620.17c3.7 6.65 11.28 20.39 11.28 20.39l5.3-.16s-3.09-6.54-11.43-20.63c-8.35-14.1-13.94-20.82-13.94-20.82l-5.3.15s10.39 14.42 14.09 21.07zm65.59 0c-3.7 6.65-11.28 20.39-11.28 20.39l-5.3-.16s3.09-6.54 11.43-20.63c8.34-14.1 13.94-20.82 13.94-20.82l5.3.15s-10.39 14.42-14.09 21.07z'/%3e%3cpath stroke-width='.55' d='M749.23 620.17a8113.7 8113.7 0 0 1 11.28 20.39l5.3-.16s-3.09-6.54-11.43-20.63c-8.35-14.1-13.95-20.82-13.95-20.82l-5.3.15s10.4 14.42 14.1 21.07z'/%3e%3cpath fill='%23b1babf' d='M634.54 627.22s2.77-13.45-1.63-21c-4.4-7.56-10.11-9.77-11.42-9.22-1.3.55 14.02-22.67 30.33-.37 0 0-14.35 1.66-11.41 29.67'/%3e%3cpath fill='%23d3dce0' d='M623.71 597.01c4.45-4.96 14.81-12.42 25.97.29a8.1 8.1 0 0 1 2.13-.67c-16.3-22.3-31.62.92-30.32.37.37-.16 1.08-.1 2.01.24l.21-.23' stroke='none'/%3e%3cpath fill='%23b1babf' d='M631.92 622.28a27.8 27.8 0 0 0-8.4 4.62s-10.85-5.92-17.86-6.51c-.6-.05-1.19-.14-1.72-.1.55-.1 1.13-.15 1.7-.28 7.12-1.64 15.85-5.45 17.75-6.93 2.55 2.59 5.9 5.23 8.63 5'/%3e%3cpath fill='none' stroke-width='.4' d='M605.71 620.21h26.48m-8.74-7.23.1 13.7'/%3e%3cpath fill='%23b1babf' d='M640.52 627.22c-.2 4.17-1.38 7.37-2.8 7.37-1.44 0-2.63-3.3-2.81-7.56'/%3e%3cpath fill='%23b1babf' d='M631.2 613.4h13.05v13.64H631.2z'/%3e%3cpath fill='none' d='M633.81 616.12h7.83v8.18h-7.83z'/%3e%3cpath fill='none' d='M636.16 618.58h3.13v3.27h-3.13zm13.42-21.22.3-.1c1.21-.53 2.03-.63 2.03-.63-16.31-22.3-31.63.92-30.32.37.34-.15 1-.1 1.86.2.05 0 .16.08.21.1'/%3e%3cpath fill='none' stroke-width='.27' d='M649.56 597.28c-11.26-12.77-21.7-5.04-26.06-.09'/%3e%3cpath stroke-width='.55' d='M688.61 620.17c-3.7 6.65-11.28 20.39-11.28 20.39l-5.3-.16s3.09-6.54 11.43-20.63c8.35-14.1 13.94-20.82 13.94-20.82l5.3.15s-10.39 14.42-14.09 21.07z'/%3e%3c/g%3e%3cpath fill='url(%23d)' d='M631.37 476.35c0 62.57 39.41 113.29 88.03 113.29s88.04-50.72 88.04-113.29c0-62.57-39.42-113.3-88.04-113.3s-88.03 50.72-88.03 113.3'/%3e%3cpath fill='%23395054' stroke='%23000' stroke-width='.46' d='M641.6 329.09c3.35-2.15 6.54-2.11 10.55-3.38 2.79-.88 6.16-1.05 8.87-1.69 2.47-.58 9.95 4.32 12.45 5.07l.17 6.8s-12.4 1.3-16.82-.38c-4.42-1.67-15.22-6.84-15.22-6.84' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23006c3c' d='M683.24 486.82c1.6 1.33.26 1.9-.67 2.99-.53.62 3.06 3.39 6.9 4.6a5.2 5.2 0 0 1 2.93 2.31c.53.81 1.72 1.63 3.58 2.98 1.85 1.36.4 1.77 4.78 1.9 4.37.14 6.1 1.22 7.83 1.63 1.72.4 2.78.68 7.03 1.22 4.25.54 19.3-.04 18.9.1-.4.13-10.55 2.27-11.48 2.81-.93.55-5.7-.6-6.63-.06-.92.54-1.85 1.35-2.91 2.17-1.07.8-.27 1.08.8 1.35s2.25.54 4.1 1.5c1.86.94 1.86 1.08 5.98 1.62 4.11.54 2.52 0 6.37.81 3.85.82 2.92.55 7.3.68 4.38.14.93.54 6.63.14 5.71-.41 4.38-.27 6.64-.27 2.25 0 2.26-.41 4.78-.55s4.3 3.84 1.77 3.84 1.98-.8.26-.67c-1.73.14-6.28-.32-7.2.22-.94.55-1.87 1.63-4.39 3.53-2.52 1.9-.53 2.85.27 3.39s1.99.81 3.05 1.22c1.06.4 2.12.27 5.44 1.49 3.32 1.22 4.12 1.36 6.24 1.49 2.12.14 5.18.95 5.18.95s4.1 1.76 6.23 1.9c2.13.13 1.33.54 3.98 1.76 2.66 1.22 2.52.27 4.65.27 2.12 0 2.92.27 4.11 1.09 1.2.8 2.92 1.49 2.92 1.49s-.93 2.57-9.69 17.08c-8.75 14.51-22.3 23.19-32.24 28.88-9.96 5.7-22.96 6.37-41.28 4.47-18.31-1.9-36.1-20.74-43.8-30.5a68.07 68.07 0 0 1-10.74-19.53l1.59-.13c.93-.14 1.86-.27 3.32-.54 1.46-.28 1.33-.14 3.05-.55s2.26-.4 3.85-1.08c1.6-.68 1.06-.95 3.58-1.63s1.73-.54 2.39-.68c.66-.13 1.73-.27 3.18-.81 1.46-.54 3.19-1.35 1.6-2.17s0-.95 0-.95 1.72.14 4.11.27c2.39.14 1.46.4 3.05.54 1.6.14 1.46 0 2.66-.27 1.2-.27-.27-1.62-.53-2.98-.27-1.36-.93-.54-1.46-1.09-.53-.54-1.06-.27-2.79-1.35-1.73-1.09-1.2-.14-4.91-1.36-3.72-1.21-.39 1.1-5.03-.26s-2.07.95-5.92-.27-5.1-3.94-1.52-3.4 1.06-.13 1.45-.68 1.07-.13 3.19-.27c2.12-.13 1.86 0 3.85-.13 1.99-.14 2.79-.68 2.79-.68s1.72.68 2.91.68.8-.27.8-1.09 1.2 0 2.12.27c.93.27 3.19-.13 3.19-.13s1.06-.14 3.05-.14c2 0 .8-.4 2.66-1.08 1.85-.68 0-1.36-.67-1.5-.66-.13-.8-.4-1.72-1.21a7.9 7.9 0 0 0-2.9-1.71c-1.2-.41-8.19.52-9.91-.02s-1.66-2.75 1.8-2.88c3.44-.14 1.32 0 3.04 0s1.33.27 2 .27c.66 0 1.32 0 4.1-.41 2.8-.4 1.6-.54 3.46-1.36s3.85-.54 5.44-1.22c1.6-.67-.66-1.35-2.65-2.3-2-.95 0 .54-1.46-.95-1.46-1.5-8.88-5.85-11.14-7.88-2.08-1.87 1.8-1.17 3.75-2.07 0 0 .84-1.97-1.33-2.71s-1.93-.74-4.22-1.6-3.38-2.47-5.07-2.84c-1.69-.37-2.53-.86-2.53-.86'/%3e%3cpath fill='%236dbe45' d='M683.24 486.82c-1.02.76-1.02 1.8-.67 2.99.24.79 1.77 4.1 5.62 5.32 1.6.5 3.67.78 4.2 1.59.53.81 1.73 1.63 3.59 2.98 1.85 1.36.4 1.77 4.78 1.9 4.37.14 6.1 1.22 7.83 1.63 1.72.4 2.78.68 7.03 1.22 4.25.54 18.52.17 18.13.3-.4.14-12.76 2.72-13.7 3.26-.92.54-2.7-1.26-3.64-.71-.92.54-1.85 1.35-2.91 2.17-1.07.8-.27 1.08.8 1.35s2.25.54 4.1 1.5c1.86.94 1.86 1.08 5.98 1.62 4.11.54 2.52 0 6.37.81 3.85.82 2.92.55 7.3.68 4.38.14.88 1.06 6.59.66s3.78.09 6.04.09 2.9.67 5.43.53c2.52-.13 8.46 1.65 5.94 1.65-1.57 0-4.02-.72-6.79-.5-1.73.13-3.41-.26-4.34.28-.93.54-1.86 1.63-4.38 3.53-2.52 1.9-.53 2.84.27 3.39.8.54 1.99.81 3.05 1.22 1.06.4 2.12.27 5.44 1.49 3.32 1.22 4.11 1.35 6.24 1.49 2.12.13 5.17.95 5.17.95s4.12 1.76 6.24 1.9c2.12.13 1.33.54 3.98 1.76 2.66 1.22 2.52.27 4.65.27 2.12 0 2.92.27 4.11 1.09.75.5 1.7.96 2.32 1.23 0 0 5.47-15.31 7.6-21.97 2.12-6.66 4.39-25.9 4.39-27.06 0-1.16-3.12-2.9-4.11-2.6-.99.28-5.24.28-6.52.28h-17.85c-1.13 0-1.98.87-4.1-.14-2.13-1.01-5.95-1.6-7.23-1.45-1.27.15-6.52.3-7.65.3-1.13 0-13.74-.59-15.86-.44s-6.1.14-8.65 0c-2.55-.15-5.8-.15-7.08-.3-1.27-.14-5.95-.43-7.08.44-1.14.87-4.25 1.16-5.67 1.45s-5.24 1.01-7.22 1.16c-1.99.14-7.8 1.3-9.63 1-1.85-.28-8.11-.3-8.11-.3'/%3e%3cpath d='M683.24 486.68c-1.18 1.03-1.03 2.53-.43 3.86a9.08 9.08 0 0 0 5.38 4.72c1.31.45 2.94.5 4.05 1.41.36.29.63.76.98 1.08.62.56 1.32 1.04 2 1.53a10.5 10.5 0 0 1 1.92 1.7c.5.58 1.33.6 2.02.67 1.66.15 3.31.13 4.96.43 1.18.2 2.32.6 3.45.98 1.89.63 3.9.93 5.85 1.22 4.7.69 9.44.62 14.17.6l4.38-.02c.3 0 1.53-.2 1.78.02v-.27c-.24.15-.65.16-.92.22l-2.53.55c-2.15.47-4.3.95-6.45 1.45-1.34.32-2.7.6-3.99 1.12-.86.34-2.15-.82-3.03-.9-.61-.06-1.38.75-1.83 1.09-.66.5-1.5 1-1.98 1.7-.68 1.02 3.24 1.67 3.73 1.85 1.06.4 2.03 1 3.06 1.45.91.4 1.91.54 2.88.7 2.28.34 4.6.37 6.85.8 2.33.43 4.46.85 6.83.88 1.23.02 2.51-.03 3.72.25.4.1.74.36 1.15.46 1.06.27 2.33.06 3.4-.02 1.3-.08 2.6-.2 3.91-.14 1.29.06 2.72.2 3.98.4 2.56.43 5.11.32 7.65.93.78.2 1.66.38 2.36.81.13.08.08-.06-.03-.03-.14.05-.32.03-.46.04-.78.01-1.58-.14-2.34-.25a33.94 33.94 0 0 0-5.38-.23c-1.48.02-2.8-.25-4.04.7-1.02.8-1.96 1.69-2.96 2.48-.7.55-2 1.25-2.03 2.3-.04 1.75 2.5 2.49 3.75 2.9 1.3.43 2.6.67 3.9 1.02 2.13.56 4.13 1.54 6.29 1.99 1.82.38 3.7.37 5.52.75 1.04.21 1.97.47 2.95.86 1.67.66 3.44 1.33 5.24 1.5 1.71.15 2.87 1.27 4.43 1.95 1.7.75 3.3.03 5.1.1 2.13.08 3.65 1.45 5.53 2.3 1.16-3.24 2.3-6.48 3.44-9.73 1.6-4.58 3.41-9.19 4.63-13.9 1.25-4.82 1.94-9.81 2.64-14.74.5-3.5 1.03-7.01 1.28-10.53.1-1.33-1.33-2.1-2.34-2.6-.9-.44-1.54-.4-2.47-.29-1.28.16-2.6.15-3.88.16-3.4.05-6.8.01-10.21.01h-6.54c-1.21 0-2.54-.15-3.74.1a5.3 5.3 0 0 1-3.69-.37c-1.41-.64-3-.94-4.52-1.17-2.18-.33-4.42-.01-6.62.06-3.63.12-7.23-.05-10.86-.18-4.43-.17-8.81-.05-13.23-.07-3.3-.01-6.61-.17-9.9-.32-2.25-.1-4.47-.4-6.72-.1-1 .14-1.72.72-2.65 1.04-1.35.45-2.8.58-4.19.82-2.55.45-5.07 1-7.65 1.22-3.13.26-6.46 1.43-9.6.98-2.61-.38-5.33-.28-7.95-.3-.02 0-.02.27 0 .27 3.94.02 7.94.6 11.85.11 5.1-.64 10.13-1.47 15.19-2.31 1.2-.2 2.55-.4 3.59-1.1.88-.6 2.17-.56 3.17-.6 2.4-.07 4.8.25 7.18.31 3.37.1 6.73.3 10.1.24 1.84-.04 3.66-.13 5.51-.1 4.11.1 8.22.31 12.33.43 4.25.12 8.41-.7 12.6.28 1.44.33 2.76 1.13 4.2 1.36.93.14 1.8-.33 2.73-.33h16.62c1.64 0 3.27 0 4.91-.05.96-.03 1.89-.1 2.83-.27 1.02-.18 2.36.79 3.1 1.38 1.25 1 .72 2.49.56 3.89-.26 2.29-.56 4.57-.87 6.86a149.06 149.06 0 0 1-2.7 15.41c-1.17 4.7-3 9.28-4.6 13.83-1.16 3.35-2.34 6.7-3.53 10.03-.02.05-3.24-1.8-3.62-1.95a7.49 7.49 0 0 0-4.23-.2 4.7 4.7 0 0 1-3.22-.44c-1-.44-1.86-1.3-2.89-1.62-1.1-.34-2.32-.31-3.44-.63a34.74 34.74 0 0 1-3.48-1.24 19.53 19.53 0 0 0-5.88-1.14c-2.82-.19-5.29-1.35-7.96-2.14-2.22-.66-4.63-.83-6.62-2.14-.36-.23-.7-.46-1-.76-.99-.98.6-2.06 1.28-2.58 1.15-.87 2.21-1.86 3.34-2.77 1.07-.87 2.27-.75 3.59-.7 1.97.05 3.85-.06 5.83.22.36.05 3.21.79 2.94-.18-.1-.39-1.39-.62-1.68-.7-1.19-.36-2.41-.6-3.64-.73-1.3-.15-2.58 0-3.88-.24-1.2-.22-2.35-.28-3.55-.38-1.32-.1-2.53-.22-3.89-.15-1.87.1-3.82.54-5.58-.24-.85-.38-1.96-.31-2.86-.34-1.19-.03-2.37 0-3.55-.08-2-.15-3.91-.82-5.9-1.05-2.12-.24-4.24-.36-6.36-.73-1.83-.32-3.3-1.3-5.01-1.99-1.12-.45-2.35-.59-3.46-1.07-.55-.25 1.57-1.83 1.72-1.94.52-.41 1.14-1.01 1.82-1.1.83-.09 1.78.72 2.58.9.42.1.93-.2 1.33-.32 1.52-.46 3.09-.79 4.63-1.14 1.87-.43 3.75-.84 5.62-1.25.8-.17 2.05-.2 2.76-.62.03-.02.03-.24 0-.27-.12-.11-.67-.02-.82-.03l-2.44.01c-2.37.02-4.73.03-7.09.02-4.6-.03-9.13-.25-13.64-1.25-2.02-.45-3.95-1.25-6-1.61-1.62-.3-3.26-.25-4.9-.4-.69-.06-1.32-.17-1.8-.72-.64-.76-1.39-1.29-2.19-1.87-.56-.41-1.12-.83-1.65-1.28-.44-.38-.73-.88-1.17-1.24-1.08-.88-2.97-.95-4.25-1.39a8.81 8.81 0 0 1-3.68-2.57c-1.19-1.35-2.6-3.82-.88-5.33.05-.04-.03-.24 0-.27'/%3e%3cpath fill='%236dbe45' d='M680.46 490.44c1.41 1.74.15.55-3.24 2.38-2.66 1.43 11.47 8.81 12.93 10.3 1.46 1.5-.53 0 1.46.95 2 .95 4.25 1.63 2.65 2.3-1.59.69-3.58.42-5.44 1.23-1.85.81-.66.95-3.45 1.35s-3.45.41-4.11.41c-.66 0-.5-.25-2.23-.25s-.28.35-3.73.48c-.34.01-4.87.53-4.83.53 2.18.24 7.33.46 9.64.55 1.28.06 2.46.67 4.2 1.27 1.2.4 2 .95 2.92 1.76.93.81 1.06 1.08 1.73 1.22s2.52.81.66 1.5c-1.86.67-.66 1.08-2.65 1.08-2 0-3.06.13-3.06.13s-2.25.4-3.18.14c-.93-.27-2.13-1.09-2.13-.27s.4 1.08-.8 1.08-2.91-.68-2.91-.68-.8.55-2.79.68c-1.99.14-1.72 0-3.85.14-2.12.13-3.25-.4-3.18.27.13 1.31-1.83.71-1.5 1.67.29.1-2.46.1-2.24.17 3.85 1.22 4.93-.49 9.58.87 4.64 1.36 1.46.68 5.17 1.9 3.72 1.22 3.19.27 4.91 1.35s2.26.82 2.8 1.36c.52.54 1.19-.27 1.45 1.08.27 1.36 1.73 2.71.53 2.99s-1.06.4-2.65.27c-1.6-.14-.67-.41-3.05-.55-2.4-.13-4.12-.26-4.12-.26s-1.6.13 0 .94c1.6.82-.13 1.63-1.6 2.17-1.45.55-2.51.68-3.18.82-.66.13.14 0-2.39.67-2.52.68-1.98.96-3.58 1.63-1.6.68-2.12.68-3.85 1.09-1.72.4-1.59.27-3.05.54-1.46.27-2.39.4-3.32.54-.93.14-2.64.43-2.64.43s-6.11-10.1-9.15-22.64c-3.05-12.55-4.42-32.93-4.42-33.93s4.5-1.04 6.01-.49c1.52.56 8.8 1.11 12.17 1.56 3.37.44 11.73 1.66 12.38 1.88.65.23 2.65-1.12 4.28 0 1.63 1.1 6.37 4.44 6.37 4.44'/%3e%3cpath d='M680.46 490.57c.2.24.76.67.32.85-.4.16-.86.2-1.27.32-.7.18-2.33.52-2.6 1.3-.21.6.32 1.2.68 1.59 1.25 1.35 2.92 2.37 4.44 3.37 1.8 1.18 3.63 2.3 5.45 3.42.64.4 1.27.8 1.9 1.23.2.14.4.28.59.44l.18.16.42.45c.14.28.2.28.15-.01-.2.1.82.48.9.51.79.37 1.6.7 2.37 1.1 1.1.54.3.97-.49 1.2-.94.27-1.97.3-2.94.46a6.88 6.88 0 0 0-3.06 1.3c-.95.7-2.66.64-3.77.78-.78.1-1.56.18-2.35.18-.93 0-1.83-.28-2.78-.24-.4.01-.74.19-1.13.28-.83.2-1.71.14-2.56.22-1.47.15-2.98.24-4.43.5-.03 0-.03.27 0 .27 5.63.58 12.1-.4 16.75 3.58.48.4.89.9 1.47 1.15.45.2.91.24 1.36.48.86.46-.87.99-1.14 1.13-.37.19-.56.56-.96.7-1.12.37-2.65.07-3.85.18-.78.07-1.55.22-2.34.25-.61.02-1.12-.1-1.68-.33-.4-.16-1.06-.6-1.44-.25-.27.26.18.93-.1 1.2-.64.62-2.81-.27-3.5-.52-.21-.07-.23 0-.44.09-.63.3-1.35.4-2.03.49-1.16.15-2.33.09-3.5.13-.84.03-1.66.08-2.5.03-.41-.02-1.09-.22-1.46.06-.07.05-.06.23-.06.3-.02.46-.23.67-.63.84-.4.17-.91.16-.91.72 0 .1 0 .26.07.33v-.27c-.69.25-1.55 0-2.26.14-.03 0-.03.24 0 .26.15.25 1.17.32 1.45.37a9 9 0 0 0 1.8.11c1.3-.02 2.55-.2 3.85-.1 1.92.17 4 .78 5.72 1.69 1.8.94 3.79 1.1 5.71 1.53.98.21 1.81 1 2.75 1.35.36.13.72.21 1.04.43.43.3.75.25 1.21.44.4.17.7 1.66.9 2.07.35.7.64 1.25-.31 1.48a6.36 6.36 0 0 1-3.22.05c-1.06-.28-2.04-.39-3.15-.45-1-.06-2.16-.32-3.17-.21-.27.02-.68.09-.68.43 0 .87 2.11 1.02.65 2-1.73 1.15-3.99 1.29-5.95 1.86-1.2.34-2.45.57-3.5 1.27a10.7 10.7 0 0 1-3.56 1.42c-2.71.62-5.45 1.05-8.19 1.47-.32.04-2.24.56-2.39.3l-.71-1.24a88.76 88.76 0 0 1-3.04-6.09 87.4 87.4 0 0 1-6.38-20.05 215.26 215.26 0 0 1-2.56-18.83c-.24-2.38-.45-4.76-.63-7.14-.06-.77-.6-2.9.21-3.34 1.7-.9 4.27-.34 6 .1 2.41.61 5 .7 7.45.96 4.95.5 9.88 1.21 14.79 2 .62.1 1.25.2 1.86.35.4.1.8-.06 1.19-.17a4.95 4.95 0 0 1 2.42-.17c.98.21 2.03 1.25 2.84 1.8l3.16 2.23 1.09.76c-.03-.02.05-.23 0-.27l-4.75-3.33c-.97-.67-1.86-1.47-3.07-1.56-1.04-.09-2.01.63-3.03.4-4.32-.98-8.85-1.45-13.25-1.97-2.77-.32-5.55-.55-8.32-.9-2-.26-3.89-.89-5.92-.88-.79 0-2.93-.09-2.89 1.13.04 1.08.13 2.15.21 3.23 1.4 18.36 3.72 37.32 13.37 53.32 4.9-.83 10.15-1.06 14.56-3.55 1.56-.88 3.64-1.2 5.4-1.56 1.02-.21 4.8-.88 4.22-2.6-.07-.2-1.36-.8-1.1-.98.13-.1.4-.15.56-.14 1.36.1 2.73.2 4.09.27 2.1.12 3.84.96 5.95.18.27-.1.24-.5.22-.73-.04-.39-.3-.77-.47-1.1-.26-.5-.38-1.6-.75-1.95-.31-.3-.67-.2-1.05-.33-.32-.1-.58-.42-.93-.54-1.08-.37-1.99-1.09-3.05-1.46-.47-.16-1.02-.14-1.5-.21a19.3 19.3 0 0 1-3.61-1.05c-1.06-.39-2-.89-3.09-1.22a16.22 16.22 0 0 0-4.36-.82c-1.04-.02-2.08.14-3.12.16-.5.01-1.02-.04-1.52-.12-.36-.05-.71-.14-1.06-.23-.22-.06-.52.13-.1.11.6-.04 1.4.1 1.97-.11.02-.01.02-.25 0-.27-.22-.18.95-.57 1.01-.6.26-.1.42-.32.47-.59.04-.23 0-.5.27-.57.57-.16 1.4.07 2 .08 1.22.04 2.46-.06 3.68-.1 1.26-.03 2.65-.09 3.8-.69.48-.26 3.88 1.62 3.85.17 0-.35-.17-.9.27-.97.52-.07 1.3.46 1.78.62.95.32 2.2.03 3.16-.12.85-.15 1.74-.13 2.6-.14.56-.01 1.25.1 1.76-.2.5-.3.8-.66 1.38-.9 1.82-.73.1-1.55-.93-1.82-.56-.15-1.05-.78-1.46-1.15a9.93 9.93 0 0 0-1.84-1.3 16.1 16.1 0 0 0-4.94-1.7c-2.72-.42-5.62-.25-8.37-.44a49.5 49.5 0 0 1-1.61-.14v.27c1.2-.22 2.44-.28 3.65-.41 1.23-.14 2.6 0 3.77-.44 1.1-.43 2.25.04 3.36.09 1.64.06 3.35-.27 4.95-.54.55-.1 1.04-.23 1.48-.57a6.66 6.66 0 0 1 2.88-1.16c.74-.14 4.28-.13 4.25-1.32-.01-.38-.23-.51-.53-.71a15 15 0 0 0-3.45-1.58c-.37-.12-.13.35-.1.34.04-.02.02-.23 0-.26-.17-.54-.92-1-1.36-1.31-.87-.6-1.78-1.16-2.68-1.71-2.29-1.42-4.58-2.8-6.77-4.37-.82-.6-1.63-1.21-2.33-1.94-.27-.27-.5-.57-.65-.92-.23-.57 1.28-.98 1.54-1.09.41-.17 2.44-.4 2.55-.9.1-.45-.34-.85-.57-1.15.03.04-.05.21 0 .27'/%3e%3cpath fill='%23557176' d='M635.57 484.14s.26-2.15 5.52-2.15 3.68.54 9.72 1.35c6.04.8 10.51.8 12.62 1.07s6.56.8 8.14 1.34c1.58.54 4.2 1.88 4.2 1.88s-1.04.8 3.42.8c4.47 0 3.15-.26 9.46-.26s2.1 1.6 10.25 0c8.14-1.61 14.45-2.42 16.55-2.96 2.1-.53-2.36-2.14 5.52-1.07s11.57.27 12.88.27c1.31 0 6.83.27 9.46.27 2.63 0 6.3 0 7.88.26 1.58.27 3.94-.26 7.36.27 3.42.54 4.2-1.07 6.83.54s7.36.54 9.2.27c1.84-.27 5.52 0 6.57 0s6.04.53 8.4.53c2.37 0 7.1-.53 7.1-.53l4.47.53s.79-11.54.79-12.88c0-1.35 2.85-3.36-2.18-3.85-18.5-1.79-11.34-2.94-22.26-3.67-2.63-.54-15.24-3.76-17.87-4.3-2.63-.53-16.82-4.83-21.02-4.83-4.2 0-14.72.54-17.35.54s-25.49-.54-28.64-.54c0 0-8.4-2.95-10.51-3.76s-2.37-.53-9.2-.27-8.4 1.08-14.71.27-11.57 0-14.46.54c-2.89.54-7.1 2.15-7.1 2.15l-1.04 28.2z'/%3e%3cpath d='M635.6 484.36c.09-.64.82-1.1 1.32-1.37 1.8-.95 4.11-.77 6.05-.7 1.29.04 2.5.29 3.74.58 2.32.55 4.7.83 7.08 1.07 3.91.41 7.85.49 11.76 1 1.94.25 3.94.47 5.84 1 1.52.44 2.99 1.23 4.4 1.95v-.54c-.24.2-.2.76.03.94.68.54 2.12.38 2.9.4 1.15.03 2.3 0 3.46-.06 3.7-.2 7.39-.48 11.01.43.58.14 1.2.08 1.79.02 1.66-.16 3.3-.53 4.94-.85 3.51-.68 7.04-1.27 10.57-1.85 1.12-.19 2.25-.37 3.37-.57.64-.12 1.44-.17 2.02-.5.2-.12.25-.33.25-.55.01-.25.07-.89-.06-.44.11-.39 1.07-.28 1.33-.28 1.7.02 3.4.35 5.08.55 2.86.34 5.76.46 8.64.29 4.08-.25 8.12.04 12.2.06 2.9 0 5.76.18 8.65.34 1.4.07 2.82-.08 4.23-.04 1.78.06 3.47.48 5.27.23 1.16-.17 2.13-.3 3.25.18.65.27 1.2.66 1.87.88.78.26 1.62.32 2.43.35 2.61.09 5.15-.7 7.75-.72 4.76-.04 9.5.84 14.26.61 1.3-.06 2.59-.18 3.88-.3.55-.06 1.23-.26 1.78-.19l4.45.54c.02 0 .02-.13.02-.14.24-3.53.48-7.06.68-10.6.09-1.42.1-2.44.7-3.74.42-.95.3-1.9-.68-2.35-1.46-.69-3.42-.56-4.99-.74a132 132 0 0 1-4.8-.6 44.42 44.42 0 0 1-5.17-1c-2.07-.56-4-1.23-6.15-1.5-1.77-.2-3.47-.3-5.2-.72-2.29-.54-4.57-1.1-6.84-1.67-3.6-.88-7.24-1.67-10.83-2.6-4.7-1.24-9.36-2.6-14.1-3.63-1.85-.4-3.72-.8-5.62-.78-2.54.01-5.08.12-7.62.22-3.7.14-7.39.35-11.08.3l-12.48-.26c-4.2-.08-8.38-.18-12.57-.24-.98-.02-1.74 0-2.66-.32l-6.27-2.23c-2.26-.8-4.35-1.82-6.78-1.76-4.77.11-9.51.62-14.27.85-2.61.12-5.17-.23-7.76-.48a44.24 44.24 0 0 0-20.04 2.84c-.03.02-.02.18-.02.2l-1.05 28.19c0 .17.03.52.05.14l.73-19.58.31-8.4.01-.2c-.01.3.16.12.4.03 1.25-.46 2.52-.88 3.8-1.26 2.67-.81 5.45-1.22 8.23-1.45 3.8-.33 7.48.09 11.26.42 2.76.24 5.5 0 8.26-.23 3.2-.27 6.43-.39 9.65-.52a9.3 9.3 0 0 1 3.84.52c3.48 1.31 7 2.52 10.5 3.75.32.11.86.01 1.2.02l2.28.03 6.25.12c7.64.16 15.3.54 22.94.26 2.78-.1 5.55-.22 8.32-.31 2.06-.07 4.18-.26 6.24-.03 4.8.52 9.55 2.02 14.2 3.28a506.04 506.04 0 0 0 23.1 5.69c1.68.36 3.48.3 5.18.58.96.16 1.89.41 2.81.72 3.28 1.07 6.67 1.55 10.08 1.96 1.8.22 3.63.34 5.42.6 1.02.15 2.4.5 1.83 1.77-.52 1.14-.55 1.95-.62 3.2-.2 3.73-.46 7.45-.71 11.17.01-.15-3.7-.5-4.28-.58-.46-.05-.95.07-1.4.11-1.36.14-2.72.26-4.09.35-4.84.3-9.72-.59-14.58-.6-2.6 0-5.13.74-7.74.72a7.85 7.85 0 0 1-3.98-1.07c-1.16-.67-2.32-.54-3.58-.34-1.64.25-3.2-.08-4.83-.2-1.55-.11-3.11.05-4.67.01-1.17-.03-2.35-.24-3.54-.29-1.7-.06-3.4-.05-5.1-.05-4.1 0-8.13-.33-12.2-.06-2.89.2-5.78.03-8.65-.29-1.62-.18-3.22-.45-4.84-.54-.4-.02-1.26-.14-1.56.24-.1.13-.07.38-.06.53 0 .08 0 .17.02.26.05.35.04 0 .02.05-.15.37-.89.42-1.2.49-.93.2-1.87.35-2.8.5-2.93.5-5.86.96-8.77 1.49-2.95.52-5.92 1.35-8.92 1.53-.98.06-1.8-.33-2.75-.51-2.3-.45-4.8-.23-7.14-.13-1.54.06-3.06.18-4.6.2-1.2 0-2.43.04-3.6-.22-.2-.05-.46-.12-.57-.31.23.4-.13.43.08.26.05-.04.06-.5 0-.54a29.82 29.82 0 0 0-4.4-1.94c-1.97-.63-4.14-.79-6.18-1.05-4.11-.54-8.26-.6-12.37-1.05-3.66-.4-7.23-1.52-10.9-1.59-1.49-.02-6.02-.18-6.37 2.18-.02.1.02.5.02.46'/%3e%3cg fill='%2399afca'%3e%3cpath d='M784.27 477.04c-.5 1.01-1 2.01-1.58 2.97-.07.13.05.46.01.52.58-.96 1.09-1.97 1.58-2.97.06-.14-.05-.45-.01-.52m-134.82-1.73c-.61.88-1.21 1.76-1.7 2.72-.06.13.05.45.02.52a21.8 21.8 0 0 1 1.7-2.73c.08-.1-.05-.46-.02-.51m3.51-1.45c-.02.13-.1.24-.12.37-.02.12-.02.24 0 .36 0 .02.01.2.03.1.02-.13.1-.24.12-.37.02-.12.01-.25 0-.37 0-.01-.01-.2-.03-.1m4.24-1.76c-.26 1.01-.6 2-.97 2.97-.05.14.05.43.02.51.36-.98.71-1.96.97-2.97.03-.15-.04-.42-.02-.51m1.44-.86c-.01.6-.12 1.18-.23 1.75-.03.12-.02.25-.01.37 0 .02.01.2.03.1.15-.74.25-1.47.26-2.22 0-.3-.05-.3-.05 0m2.68-1.97a96.66 96.66 0 0 0-3.64 6.68c-.06.13.05.45.02.51a97.16 97.16 0 0 1 3.63-6.68c.08-.12-.04-.46-.01-.51m1.57-.93c-.17 1.64-.83 3.13-1.44 4.63-.06.14.04.44.01.52.64-1.55 1.3-3.09 1.47-4.77 0-.07-.02-.59-.04-.38m1.44-.01a16.41 16.41 0 0 1-.47 3.18c-.02.1.02.5.03.46.25-1.16.47-2.31.5-3.5 0-.17-.05-.52-.06-.14m1.83-.24c.07.88-.3 1.73-.6 2.53-.05.14.04.43.02.51.42-1.14.71-2.19.61-3.41-.02-.21-.04.3-.03.37m-12.58 12.72c.6-.34 1.1-.8 1.7-1.12.1-.06-.04-.51 0-.54-.6.33-1.1.79-1.7 1.12-.1.05.04.5 0 .53m3.5-1.89c-.21.33-.4.67-.6 1-.05.07-.03.24-.03.32 0 .02.02.22.04.19l.6-1c.05-.06.02-.24.02-.32 0-.02-.02-.21-.03-.18m19.26-14.74c-.13.37-.34.7-.6.98-.05.05-.03.21-.03.27l.03.27c.27-.29.48-.63.61-1 .03-.1.02-.23.02-.33a.78.78 0 0 0-.03-.19m.98 4.11a7.9 7.9 0 0 0 1.96-5.47c-.02-.33-.05.18-.04.27.1 1.66-.9 3.44-1.92 4.67-.1.12.07.45 0 .53m3.97-5.78a16.57 16.57 0 0 1-.47 3.32c-.03.1.01.5.02.46.26-1.2.48-2.4.5-3.63 0-.17-.05-.51-.05-.14m-3.26.43c-.41 1.43-1.19 2.7-1.94 3.96-.07.13.05.46.02.52.75-1.27 1.52-2.53 1.94-3.96.04-.15-.04-.43-.02-.52m-15.02 13.61c-.26.67-.53 1.34-.84 1.98-.07.14.04.45.01.52.31-.65.59-1.32.85-1.98.05-.15-.04-.44-.02-.52m1.59 0a14.1 14.1 0 0 1-1.57 2.1c-.1.1.06.46 0 .53.61-.64 1.1-1.37 1.58-2.11.08-.12-.05-.47-.01-.52m3.26.62-.72 1.49c-.04.08-.02.24-.02.33 0 .02.02.2.03.18l.73-1.48c.04-.09.02-.24.02-.33 0-.02-.02-.21-.04-.19m1.46-1.48c-.63 1.4-1.3 2.77-2.3 3.95-.1.11.07.45 0 .53 1-1.18 1.68-2.57 2.31-3.97.06-.14-.04-.44-.01-.51m30.16-10.29a2.4 2.4 0 0 0-.73.88c-.05.08-.02.24-.02.32 0 .02.02.22.03.2.17-.35.41-.64.72-.86.04-.04.02-.23.02-.27a4 4 0 0 0-.02-.27m-.35 5c1.87-1.19 2.78-3.68 2.8-5.84.01-.3-.04-.3-.05 0-.02 1.94-1.11 4.26-2.75 5.3-.1.06.04.5 0 .53m-14.43 2.94a7.63 7.63 0 0 1-2.3 2.1c-.1.06.05.5 0 .53a7.68 7.68 0 0 0 2.32-2.11c.08-.12-.05-.47-.02-.52m-3.87 6.84c3.06-.86 5.55-3.49 7.15-6.2.07-.12-.05-.45-.01-.5-1.6 2.69-4.1 5.3-7.14 6.17-.08.02 0 .53 0 .53m4.85 3.47a9.57 9.57 0 0 0 3.15-3.1c.08-.12-.04-.47-.01-.52a9.53 9.53 0 0 1-3.14 3.09c-.1.05.04.5 0 .53m6.77-4.5a37.17 37.17 0 0 1-6.17 6.56c-.1.09.05.48 0 .53a37.21 37.21 0 0 0 6.17-6.56c.1-.12-.06-.44 0-.53m1.84-.84c.37-.78.76-1.57 1.32-2.22.1-.12-.06-.46 0-.54-.57.67-.96 1.46-1.34 2.24-.06.14.05.45.02.52m5.08 4.82c1.05-1.93 2.02-4.03 3.62-5.56.1-.1-.06-.47 0-.53-1.6 1.54-2.58 3.64-3.64 5.58-.07.13.05.45.02.51m4.35-4.1c-1.07 1.21-2.26 2.32-3.27 3.59-.1.12.07.45 0 .53 1.01-1.27 2.2-2.38 3.27-3.58.1-.12-.06-.47 0-.54m12.36-2.2c.54-1.49.78-3.07.74-4.66 0-.37-.05-.03-.05.14.04 1.36-.25 2.74-.7 4-.06.15.04.44.01.52m-.74-4.58c-.35 1.58-.48 3.22-1.21 4.68-.07.13.05.45.01.51.74-1.47.88-3.14 1.22-4.73.02-.1-.01-.5-.02-.46m2.91-.12c-.23 1.53-.18 3.1-.72 4.56-.06.14.04.43.01.51.56-1.49.5-3.05.73-4.6.02-.11-.02-.51-.02-.47m1.55 1.4c-.03 1.52-.47 3-1.07 4.4-.06.13.05.43.02.5.65-1.5 1.07-3.1 1.1-4.76.01-.17-.04-.52-.04-.14m1.58.95c.16 3.05-1.22 6.1-3.13 8.38-.1.12.07.46 0 .53a13.19 13.19 0 0 0 3.17-9.18c-.01-.33-.05.18-.04.27m1.58.73c-.5 1.37-1.08 2.7-1.58 4.08-.05.14.05.43.02.51.5-1.37 1.08-2.7 1.57-4.08.06-.15-.04-.44-.01-.52m1.21-.75c-.34.92-.85 1.75-1.33 2.6-.07.13.05.46.02.52.48-.86.98-1.69 1.33-2.6.05-.15-.04-.44-.02-.52m.97 1.74c-.95 1.83-1.72 3.78-3.27 5.19-.1.09.06.47 0 .53 1.56-1.42 2.33-3.37 3.28-5.2.07-.14-.05-.46-.01-.52m1.09-.83a6.42 6.42 0 0 1-.6 1.95c-.07.12.05.45.01.51.35-.62.48-1.31.61-2 .03-.12.02-.25.01-.37 0-.02-.01-.2-.03-.1m1.71-.39c-1.05 2.08-2.46 3.9-3.76 5.81-.08.12.05.47.02.52 1.3-1.92 2.7-3.74 3.75-5.82.07-.13-.05-.45-.01-.51m7-5.38c.08.76-.31 1.6-.6 2.28-.05.14.05.44.02.51a6.4 6.4 0 0 0 .62-3.17c-.02-.2-.05.31-.04.38m-.45 7.74a19.6 19.6 0 0 0 3.39-7.7c.02-.1-.02-.5-.03-.46a19.48 19.48 0 0 1-3.38 7.65c-.08.11.04.47.01.51m5.42-8a4.61 4.61 0 0 1-.7 2.42c-.08.12.04.46.01.51.53-.85.73-1.78.74-2.78 0-.17-.04-.52-.05-.15m-10.38 7.6c-1.2 1.36-2.27 2.8-3.4 4.21-.09.12.07.45 0 .53 1.13-1.4 2.2-2.85 3.4-4.2.1-.12-.07-.46 0-.54m1.68.89a156.62 156.62 0 0 1-3.87 5.18c-.1.13.07.45 0 .53 1.32-1.71 2.64-3.43 3.88-5.2.09-.12-.04-.47 0-.52m.84 2.33-1.7 1.36c-.1.09.06.5 0 .54l1.7-1.36c.1-.09-.06-.5 0-.54m16.11-8.03c-.47.7-1.1 1.25-1.7 1.85-.1.1.07.46 0 .53.6-.6 1.23-1.16 1.71-1.87.08-.11-.05-.46-.01-.51m.62 2.88c.9-.64 1.21-1.84 1.23-2.92 0-.17-.04-.51-.05-.14-.02.94-.41 1.98-1.18 2.53-.1.07.05.5 0 .53m-7.07 3.87c0 .44-.1.91-.34 1.3-.05.07-.02.24-.02.32 0 .02.02.21.03.19.3-.5.37-1.1.38-1.67 0-.1.02-.23-.02-.33l-.03.19m2.1 4.28c.69-1.64 1.5-3.22 1.7-5.02.02-.07 0-.58-.03-.37-.2 1.75-1.02 3.29-1.68 4.88-.06.14.04.44.01.51m-.25-5.32c-.35.91-.85 1.74-1.33 2.6-.07.12.04.45.01.5.48-.85.98-1.68 1.33-2.6.06-.14-.04-.43-.01-.5m3-.3c.05 1.33-1.1 2.52-1.67 3.63-.07.13.04.45.01.52.74-1.44 1.77-2.58 1.71-4.29-.01-.38-.05-.03-.05.14m.89 4.5c.43-.9 1.05-1.72 1.21-2.74.02-.12.02-.24.01-.37 0-.01-.02-.2-.03-.1-.16 1-.79 1.82-1.2 2.7-.07.14.04.45 0 .52m3.5-9.66a20.65 20.65 0 0 0-1.7 3.59c-.05.14.05.43.02.5.49-1.23.98-2.46 1.7-3.58.07-.12-.05-.46-.02-.51m2.79 1.13a9.45 9.45 0 0 1-1.33 3.2c-.07.11.05.46.02.5a9.59 9.59 0 0 0 1.34-3.24c.02-.1-.02-.5-.03-.46m2.18.96a15.3 15.3 0 0 1-1.46 3.47c-.07.12.05.46.02.51a15.4 15.4 0 0 0 1.45-3.46c.04-.15-.04-.43-.01-.52m1.83 6.09c.6-.9.5-1.94.5-2.98 0-.3-.05-.3-.05 0 0 .88.03 1.72-.46 2.47-.08.12.04.46.01.51m2.4-2.23c-.1 2.12-1.73 3.82-3.01 5.34-.09.1.06.41 0 .48 1.36-1.62 2.95-3.34 3.05-5.58 0-.08-.03-.54-.04-.24m-7.01 2.08c-.49.5-.98.99-1.57 1.36-.1.07.04.5 0 .54.59-.38 1.08-.87 1.57-1.37.05-.04.03-.2.03-.26l-.03-.27m3.26-.38a21.93 21.93 0 0 0-2.78 2.85c-.1.12.07.46 0 .54.87-1.02 1.75-2.01 2.79-2.85.1-.09-.06-.49 0-.53m10.51-5.81c0 .3-.02.58-.1.87-.03.1-.02.22-.02.32l.03.19c.14-.45.14-.9.14-1.37 0-.02 0-.27-.02-.27-.03 0-.03.25-.03.27m1.46-1.35a5.05 5.05 0 0 1-1.08 3.2c-.08.11.05.47.02.51a5.98 5.98 0 0 0 1.1-3.98c-.02-.32-.05.18-.04.27m2.44 1.09a68.63 68.63 0 0 0-2.06 4.2c-.06.15.04.45.01.52a70.68 70.68 0 0 1 2.06-4.2c.07-.13-.04-.46-.01-.52m1.8 1.31a9.95 9.95 0 0 1-1.2 3.65c-.07.12.05.45.01.51.64-1.2 1.08-2.43 1.23-3.78 0-.07-.02-.59-.04-.38m2.56.92-2.55 4.82c-.07.13.05.45.02.52l2.54-4.83c.07-.13-.05-.45-.01-.51m1.45 2.47a24.76 24.76 0 0 1-2.41 4.2c-.1.12.06.44 0 .53a24.8 24.8 0 0 0 2.42-4.22c.07-.13-.04-.44 0-.51m2.18 1.98c-1.22 1.4-2.1 3.1-3.51 4.33-.1.09.06.48 0 .53 1.4-1.23 2.3-2.93 3.51-4.33.1-.11-.06-.46 0-.53M767.31 484c.47-.16.87-.37 1.13-.8.27-.47.43-.91.8-1.3.11-.11-.06-.47 0-.53-.33.35-.53.74-.74 1.18-.25.5-.67.75-1.19.92-.08.03.01.53 0 .53m3.49-2.44c-.04 1-.78 1.78-1.32 2.54-.08.11.05.47.02.52.65-.93 1.3-1.73 1.35-2.91 0-.17-.04-.52-.05-.15m1.58.75c-.06 1.4-1.29 2.41-2.16 3.34-.09.1.06.4 0 .46 1.01-1.08 2.14-2.08 2.2-3.67 0-.15-.03-.45-.04-.13'/%3e%3cpath d='M785.83 475.13c-.22 1.98-1.91 3.38-3.02 4.88-.09.12.07.44 0 .53 1.15-1.57 2.82-2.97 3.05-5.03 0-.07-.01-.59-.03-.38m.63 4.91a10.1 10.1 0 0 0 2.06-3.35c.06-.14-.04-.44-.01-.51a10.03 10.03 0 0 1-2.05 3.33c-.1.1.06.47 0 .53m3.86-3.86a22.53 22.53 0 0 1-2.54 4.2c-.08.12.04.47 0 .52.96-1.34 1.9-2.68 2.55-4.2.06-.15-.04-.45-.01-.52m2.67.12c-1.09 1.36-2.13 2.75-3.4 3.95-.1.1.07.48 0 .54 1.27-1.2 2.31-2.6 3.4-3.96.1-.12-.07-.45 0-.54m1.7.51a11.34 11.34 0 0 1-1.34 2.97c-.07.12.05.46.02.51.56-.93 1.05-1.9 1.33-2.97.04-.15-.04-.42-.01-.51m-2.55 5.31c-1.18 1.53-2.9 2.42-4.6 3.22-.1.05.03.52 0 .53 1.7-.8 3.42-1.69 4.6-3.21.1-.13-.06-.45 0-.54m-7.51 1.64c.77-.57 1.67-.9 2.55-1.23.08-.04-.02-.53 0-.54-.88.34-1.78.67-2.55 1.24-.1.08.06.5 0 .53m10.06-1.64c-.69 1.19-1.88 1.94-3.03 2.6-.1.05.04.5 0 .53 1.16-.66 2.35-1.42 3.04-2.61.07-.13-.05-.46-.01-.52m-36.23-15.45c-.66 1.13-1.82 1.71-3.02 2.09-.08.03.01.53 0 .53 1.2-.38 2.37-.97 3.04-2.11.07-.12-.05-.46-.02-.51m-48.81 4.68c.27 1.78-.79 3.26-1.93 4.45-.1.11.07.47 0 .54 1.47-1.54 2.28-3.3 1.95-5.45 0-.05-.04.35-.02.46m-52.8-8.9a41.5 41.5 0 0 1-4.85 2.85c-.1.05.04.51 0 .53 1.67-.86 3.3-1.77 4.85-2.85.1-.07-.05-.5 0-.53m-7.27-.75a13.64 13.64 0 0 1-3.76 3.1c-.1.05.04.5 0 .53a13.56 13.56 0 0 0 3.76-3.1c.1-.11-.06-.46 0-.53'/%3e%3c/g%3e%3cpath fill='url(%23e)' d='M722.72 507.13h.01c.04 0 .06-.02.05-.02l-.06.02m.9-.18 4.14-.9c-1.48.3-2.96.6-4.13.9m4.86-1.07-.73.17c3.02-.6 6.04-1.14 6.46-1.42-.06 0-2.9.63-5.73 1.25m5.73-1.25zm-60.41-33.45c-1.12.74-5.52 2.69-7.82 3.83-2.3 1.14-2.36 3.42-1.58 3.83.8.4 6.05 3.62 6.44 4.22.4.6-2.23 1.74-2.54 1.92-.3.18-.15.9-.15.9 2.78 3.81 13.55 4.03 11.82 5.26-1.72 1.21-4.87 1.01-2.71 3.15a39.23 39.23 0 0 0 7.35 5.5c3.23 1.65 3.06 3.03 3.77 3.77 1.46 1.49.62 1 2.6 1.94 2 .95 4.25 1.63 2.66 2.3-1.6.69-3.58.42-5.44 1.23-1.86.81-.66.95-3.45 1.35-2.79.41-3.45.41-4.11.41-.67 0-.27-.27-2-.27-1.72 0 .4-.13-3.05 0-3.05.12-8.9-1.35-10.21-1.69 1.43.38 8.19 2.16 10.08 2.64 2.12.54 1.99.27 3.72.82 1.72.54 3.31.67 4.5 1.08 1.2.4 2 .95 2.93 1.76.93.81 1.06 1.09 1.72 1.22.67.14 2.53.82.67 1.5-1.86.67-.67 1.08-2.66 1.08-1.99 0-3.05.13-3.05.13s-2.26.41-3.18.14c-.93-.27-2.13-1.08-2.13-.27s.4 1.08-.8 1.08c-1.19 0-2.91-.67-2.91-.67s-.8.54-2.8.67c-.99.07-1.42.07-1.86.07-.45 0-.92 0-1.98.07-.77.05-1.35.03-1.8 0-.77-.04-1.13-.07-1.38.27-.4.54 2.12 1.22-1.47.68-3.58-.54-2.25-.54 1.6.68 3.85 1.22 1.06 0 5.7 1.35 4.65 1.36 1.47.68 5.18 1.9s3.19.27 4.91 1.36c1.73 1.08 2.26.81 2.79 1.35.53.54 1.2-.27 1.46 1.09.27 1.35 1.72 2.7.53 2.98-1.2.27-1.06.4-2.65.27-1.6-.13-.67-.4-3.06-.54-2.38-.14-4.11-.27-4.11-.27s-1.6.13 0 .95c1.6.81-.13 1.63-1.6 2.17-1.45.54-2.52.68-3.18.81-.66.14.13 0-2.39.68s-1.99.95-3.58 1.63c-1.6.67-2.12.67-3.85 1.08-1.72.4-1.6.27-3.05.54-1.46.27-2.39.41-3.32.55-.93.13-1.6.13-1.6.13s3.06 9.76 10.76 19.52c7.7 9.77 25.48 28.61 43.8 30.5 18.3 1.9 31.31 1.23 41.27-4.46 9.95-5.7 23.49-14.37 32.25-28.88 8.76-14.5 9.4-16.57 9.4-16.57s-1.82-.82-3.22-.51c-1.4.31-1.4-2.58-3.53-2.58s-2 .95-4.65-.27c-2.65-1.22-1.85-1.63-3.98-1.77-2.12-.13-6.23-1.9-6.23-1.9s-3.05-.8-5.18-.94c-2.12-.14-2.92-.27-6.24-1.5-3.32-1.21-4.38-1.08-5.44-1.48-1.06-.41-2.26-.68-3.05-1.22-.8-.55-2.79-1.5-.26-3.4 2.51-1.9 3.45-2.98 4.37-3.52.93-.54 2.92-1.76 4.65-1.9 1.72-.13 1.86-.54 4.38-.54 2.52 0-1.33-1.09-3.85-.95-2.52.13-2.52.54-4.78.54-2.26 0-.93-.13-6.63.27-5.71.4-2.26 0-6.64-.13-4.38-.14-3.45.13-7.3-.68s-2.25-.27-6.37-.81-4.11-.68-5.97-1.63c-1.86-.95-3.05-1.22-4.12-1.5-1.06-.26-1.85-.53-.8-1.35 1.07-.81 5.15-3.92 6.07-4.47a9.9 9.9 0 0 1 2.15-.73 33.7 33.7 0 0 1-1.34.28c-.7.12-2.2.23-4.75-.1-4.25-.54-5.3-.8-7.03-1.21-1.73-.41-3.45-1.5-7.83-1.63-4.38-.14-2.92-.55-4.78-1.9-1.86-1.36-3.05-2.17-3.58-2.98a5.18 5.18 0 0 0-2.92-2.3c-3.85-1.23-7.44-4-6.9-4.62.93-1.08 2.26-1.65.66-2.98-1.63-1.35-10.82-2.95-13.4-3.76 0 0 .06-.44.2-.49.58-.2 1.91-.56 2.9-1.25 1.25-.87 0-1.41-1.51-2.22-2.06-1.1-5.59-2.68-7.16-3.82-1.64-1.19 1.7-3.22 5.06-4.7 3.35-1.48 11.75-8.73 13-9.87l-.06-.4s-9.26 7.45-10.38 8.18'/%3e%3cpath d='M684.26 463.26a120.91 120.91 0 0 1-6.62 5.52 65.81 65.81 0 0 1-4.24 3.1c-1.6 1.08-3.4 1.76-5.07 2.71-.91.52-2.55 1.39-2.58 2.64-.03 1.07 1.7 1.66 2.43 2.06 1.98 1.08 4.04 2.02 6.03 3.08 2.97 1.6-2.23 2.09-2.46 3.26 0 .03-.03.24 0 .25 4.22 1.28 8.95 1.47 12.93 3.45.52.26 1.4.9 1.1 1.62-.26.6-.98.86-1.29 1.4a.72.72 0 0 0-.02.54c.35.84 1.29 1.42 1.98 1.91a19.05 19.05 0 0 0 4.95 2.43c1.43.47 2.12 1.35 3.04 2.48.94 1.14 2.28 1.95 3.46 2.8.52.38.87.87 1.32 1.3.6.6 1.82.52 2.58.57 1.66.1 3.28.16 4.9.52 1.1.24 2.14.64 3.2.97 2.02.64 4.17.92 6.24 1.2 1.63.23 3.26.43 4.91.4.52-.02 1.24 0 1.74-.23.02-.01.01-.26 0-.27l-.08.02c-.03.02-.02.27 0 .27.5.08 1.26-.26 1.74-.36l3.9-.85 3.95-.88c.57-.12 1.33-.44 1.92-.4v-.28c-1.31.73-3.27.8-4.71 1.07-2.24.44-4.5.84-6.7 1.47-1.74.5-3.12 1.75-4.56 2.83l-2.58 1.96c-.4.3-.79.55-.76 1.1.04.66 1.67.8 2.14.93 1.42.37 2.74 1 4.05 1.67 2.08 1.06 4.57 1.19 6.84 1.42 2.2.23 4.3.56 6.5.98 2.24.44 4.54.24 6.81.38 1.26.08 2.37.27 3.65.2 2.26-.14 4.53-.43 6.8-.42 1.85.01 3.59-.24 5.43-.45a13.5 13.5 0 0 1 4.3.26c.4.08.83.18 1.19.39-.11-.07.1-.12-.23-.06-.46.08-.95.03-1.41.04-2.66.1-5.37.83-7.68 2.15-.84.49-1.54 1.1-2.28 1.73-1.17 1.01-2.8 1.88-3.63 3.2-1.84 2.9 6.63 4.22 8.17 4.68 2.68.8 5.09 1.86 7.9 2.05 1.91.13 3.97.46 5.76 1.2 1.08.43 2.19.82 3.3 1.16 1.2.36 2.46.33 3.63.7.94.28 1.82 1.13 2.7 1.55 1.25.6 2.17.67 3.46.39 1.14-.25 2.12-.13 2.9.8.5.63.85 1.79 1.82 1.66.74-.09 1.4-.04 2.13.14.43.1.94.53 1.08.11l-.07.16c-.82 1.97-1.96 3.82-3 5.67-3.42 6.03-6.83 12.21-11.15 17.63a77.85 77.85 0 0 1-14.85 13.95 99.14 99.14 0 0 1-14.51 9.06c-5.08 2.52-10.72 3.64-16.3 4.12-7.17.62-14.4.16-21.55-.52-6.6-.64-12.62-2.84-18.36-6.2-10.28-5.99-19.16-14.73-26.6-24.06a69.56 69.56 0 0 1-11.04-19.83c0-.03-.02-.06-.03-.08.13.4.34.24.76.21 2.8-.2 5.65-.85 8.39-1.44 1.24-.27 2.48-.63 3.58-1.3a13.33 13.33 0 0 1 3.5-1.38c1.99-.55 4.04-.88 5.92-1.76.49-.23 1.07-.56 1.06-1.18-.02-.62-1.8-1.16-.91-1.4.64-.17 1.47.05 2.12.1 1.34.09 2.9-.06 4.19.45.67.27 1.45.27 2.17.28.39 0 1.85-.17 2-.55.34-.9-.54-1.9-.84-2.68-.33-.88-.24-1.12-1.18-1.23-.3-.04-.53-.36-.79-.49-.3-.16-.67-.23-1-.36-.84-.31-1.53-.92-2.37-1.22-.48-.16-1.02-.14-1.51-.21a12.97 12.97 0 0 1-4.53-1.47c-1.26-.76-2.9-1.04-4.3-1.42-.92-.25-1.84-.29-2.75-.5-1.81-.43-3.57-1.08-5.39-1.52v.26c.58.06 4.06.92 4.06.35 0-.24-.18-.33-.34-.48-.66-.6 1.94-.44 2.14-.44 1.21.01 2.44-.07 3.66-.1 1.25-.04 2.65-.1 3.79-.7.49-.26 3.88 1.62 3.86.17 0-.35-.17-.9.27-.97.51-.07 1.3.46 1.78.62.94.32 2.2.03 3.15-.13.85-.14 1.75-.12 2.6-.13.57-.01 1.26.09 1.76-.21.5-.29.81-.65 1.38-.88 1.83-.74.1-1.56-.92-1.83-.56-.15-1.06-.78-1.47-1.15a9.88 9.88 0 0 0-1.84-1.3c-1.55-.86-3.44-.97-5.12-1.41-4.83-1.27-9.7-2.39-14.54-3.66 0 0-.04.25 0 .26 1.73.47 3.48.86 5.24 1.2 2.48.47 4.8.46 7.31.5 1.12.03 2.24.35 3.34.33.95 0 1.9-.15 2.85-.27 1.05-.14 2.34-.15 3.22-.84 1.07-.83 2.44-1.1 3.74-1.28.6-.08 3.29-.16 3.38-1.06.03-.32-.07-.48-.3-.69-1.07-.97-2.86-1.34-4.14-2-1.45-.76-1.95-2.69-3.1-3.78-1.07-1-2.5-1.55-3.71-2.33a42.5 42.5 0 0 1-3.91-2.93c-.58-.47-3.04-2.23-2.21-3.02.79-.76 2.23-.85 3.15-1.45.48-.31.07-.76-.27-.91-1.63-.72-3.56-.9-5.26-1.35-2.05-.55-4.29-1.24-5.86-2.76-1.55-1.5 2.32-1.73 2.32-3.07 0-.32-.28-.48-.5-.65-.86-.7-1.82-1.27-2.75-1.87-.88-.56-1.77-1.1-2.66-1.63-.23-.14-.48-.26-.7-.4-.9-.6.05-2.1.52-2.64.85-.97 2.4-1.44 3.53-1.97 1.37-.65 2.74-1.28 4.09-1.95 2.24-1.12 4.15-2.88 6.1-4.43 1.9-1.5 3.77-3 5.65-4.51.05-.04-.03-.25 0-.27-2.7 2.17-5.39 4.32-8.1 6.46a22 22 0 0 1-3.65 2.48c-1.24.63-2.5 1.2-3.76 1.8-1.3.6-2.8 1.11-3.86 2.12-.56.54-1.37 2.28-.62 3.06.44.47 1.22.76 1.77 1.1 1.06.64 2.1 1.3 3.14 2 .31.2 1.98 1.07 1.59 1.54-.57.7-1.62 1.01-2.38 1.43-.25.13-.22.64-.2.86.07.7.84 1.17 1.37 1.54 1.82 1.29 4.15 1.84 6.27 2.36.91.22 1.83.42 2.74.65.5.12 1.19.23 1.6.6.12.11-2.19 1.07-2.49 1.18-.53.2-1.06.44-1.08 1.08-.02.54.4.95.74 1.3.96 1.03 2.12 1.9 3.21 2.75 1.16.9 2.36 1.74 3.62 2.48 1.34.78 2.66 1.41 3.52 2.77.42.66.7 1.19 1.25 1.77a6.03 6.03 0 0 0 2.13 1.45c.79.37 1.6.7 2.38 1.1 1.1.54.3.96-.49 1.19-1.76.5-3.54.37-5.22 1.23-.64.32-1.04.72-1.77.9-1.39.32-2.86.46-4.28.57-1.15.08-2.22-.23-3.37-.25-1.05-.01-2.1.01-3.16.01-3.33 0-6.77-.9-9.97-1.77v.27c3.6.95 7.2 1.94 10.8 2.83 2.8.69 5.85.94 8.52 2.08 1.36.57 2.22 1.77 3.44 2.53.38.23.93.27 1.35.45 1.18.51-.46 1-.92 1.24-.32.16-.5.47-.8.64-.52.32-1.5.13-2.07.14-.8.02-1.62.05-2.41.17-1.06.17-2.2.34-3.23-.01-.44-.15-1.8-1.03-1.82-.07 0 .2.02.4.04.6.08.62-1.21.36-1.51.33-.77-.1-1.8-.8-2.51-.48-1.17.56-2.58.57-3.84.6-1.36.04-2.74.13-4.1.09-.45-.02-2.14-.12-1.58.83.08.14.24.25.36.36.12.1.08-.08-.06-.06-.19.02-.4-.02-.6-.04-1.1-.1-2.18-.4-3.28-.5 0 0-.03.26 0 .26 1.99.48 3.98 1.41 6 1.64 1.98.22 3.93.82 5.8 1.5 1.57.57 3 1.29 4.66 1.67.67.16 1.36.14 2.02.32 1.07.3 1.97 1.1 3.04 1.45.38.12.62.32.93.55.5.36.8-.15 1.18.57.31.6.45 1.35.77 1.99.51 1-.12 1.09-.94 1.3-.88.24-2 .18-2.86-.11-1.26-.43-2.6-.39-3.9-.47-.34-.03-3.03-.59-2.97.35 0 .18.01.17.13.33.2.26.67.43.94.6.7.44-.61 1.1-.77 1.18-1.39.75-2.96 1.02-4.48 1.34-1.05.21-2.11.59-3.13.9-1.46.45-2.67 1.44-4.15 1.9-1.56.48-3.21.75-4.82 1-1.85.26-3.7.76-5.57.78-.02 0-.01.24 0 .27 3.08 9.78 9.33 18.36 16.1 25.82 8.5 9.38 18.75 18.3 30.76 22.47a40.95 40.95 0 0 0 9.66 1.94c3.8.36 7.63.62 11.45.72 6.24.16 12.57-.17 18.66-1.72 5.28-1.34 9.9-3.98 14.52-6.84a98.27 98.27 0 0 0 15.2-11.42 69.1 69.1 0 0 0 9.52-10.91c2.82-4.02 5.23-8.38 7.68-12.64 1.14-1.98 2.27-3.96 3.3-6 .22-.42.47-.86.62-1.32 0-.03.03-.24 0-.26-1.02-.45-2.13-.68-3.22-.51-.94.15-1.36-1.03-1.83-1.66-.73-1-1.78-1-2.89-.8a5.1 5.1 0 0 1-3.45-.4c-.96-.41-1.75-1.16-2.7-1.55-.48-.2-1.04-.18-1.54-.23-.7-.06-1.4-.27-2.1-.46-1.67-.48-3.23-1.27-4.93-1.67-2.46-.58-5.02-.54-7.46-1.2-2.6-.71-5.08-1.7-7.72-2.29-1.23-.27-2.6-.75-3.68-1.4-.34-.21-.68-.44-.98-.7-1.2-1.02.34-2.14 1.12-2.74 2.14-1.62 3.9-3.36 6.36-4.48 1.24-.56 2.52-.6 3.82-.88.52-.11 1.03-.2 1.56-.25.65-.06 1.42.1 2.04-.13.1-.03.05-.27.04-.34-.11-.49-2.21-.64-2.56-.69-2.56-.35-5.02.47-7.57.44-1.4-.02-2.77.05-4.17.15-1.9.13-4.04.59-5.93.2-2.06-.44-4.25-.18-6.34-.3-2.2-.12-4.32-.96-6.53-1.1-2.4-.15-4.9-.3-7.2-.99-1.03-.3-1.97-.91-2.94-1.36-.77-.36-1.58-.63-2.4-.86-.55-.15-2.78-.41-1.51-1.39 1.94-1.49 3.86-3.1 5.94-4.38.72-.44 1.65-.6 2.44-.8 1.37-.34 2.76-.62 4.15-.9 1.34-.26 2.68-.5 4.01-.78.68-.14 1.52-.22 2.14-.56.03-.02.02-.27 0-.27-.54-.03-1.21.26-1.73.37l-3.9.85c-1.31.3-2.63.59-3.95.87-.53.12-1.38.49-1.93.4v.28c.02-.01.05-.03.07-.02v-.27c-.42.2-1.02.18-1.47.2-1.73.12-3.46-.14-5.17-.37-2.09-.28-4.2-.6-6.24-1.2-.97-.29-1.9-.65-2.89-.9-1.71-.44-3.46-.52-5.21-.6-.8-.03-1.81 0-2.5-.49-.53-.36-.88-.98-1.4-1.37-1.12-.85-2.35-1.59-3.32-2.63-1.05-1.14-1.63-2.1-3.18-2.66a22.85 22.85 0 0 1-4.64-2.22c-.55-.35-1.08-.75-1.57-1.19a4.92 4.92 0 0 1-.48-.5c-.4-.48.18-.85.5-1.17 3.1-3-5.58-4.4-7.03-4.74-1.78-.42-3.57-.8-5.35-1.23a23.4 23.4 0 0 1-.93-.25c-.24-.07 1.13-.63 1.19-.65.75-.27 2.11-.69 2.28-1.6.22-1.12-2.23-1.87-2.94-2.23-2.1-1.08-4.61-1.96-6.43-3.51-1.46-1.26 5.14-4.2 5.76-4.52 1.63-.84 3.12-2 4.58-3.1 2.72-2.05 5.39-4.22 7.91-6.52.06-.04-.02-.23 0-.26m-41.7 4.63c-.6.96-1.38 1.78-2.17 2.58-.1.1.06.47 0 .54.8-.82 1.58-1.64 2.19-2.61.07-.12-.05-.46-.02-.51m1.09 1.11c-.5.79-.96 1.6-1.33 2.47-.06.14.04.44.01.52.37-.87.83-1.69 1.34-2.48.07-.12-.05-.46-.02-.51'/%3e%3cg fill='%234f91c5'%3e%3cpath d='M702.98 507.39c.93-.66 1.78-.36 2.8-.1.93.22 1.67.07 2.54-.29.05-.02-.01-.26 0-.27-.89.37-1.6.48-2.54.28-1.03-.21-1.85-.56-2.8.11-.05.04.02.25 0 .27m1.51 1.21c.24-.6 1.13-.44 1.63-.44.02 0 .02-.26 0-.26-.51 0-1.4-.17-1.64.45-.02.07.03.22.01.26m-2.9-2.12c1.02-.67 2-.5 3.14-.65.03 0 .01-.26 0-.26-1.13.15-2.12-.03-3.14.64-.05.03.02.25 0 .27m-6.19 3.17c-2.21-.96-4.5.66-6.73-.26.01 0-.05.25 0 .27 2.24.92 4.52-.7 6.73.26-.01 0 .05-.25 0-.27'/%3e%3cpath d='M690.77 510.08c-1.32-.59-2.6.47-3.96.01.01 0-.04.26 0 .27 1.37.46 2.64-.6 3.96-.01-.01 0 .05-.25 0-.27m-2.64 1.03c-.99-.79-2.58-.08-3.7-.12-.03 0-.03.26 0 .26 1.12.04 2.71-.66 3.7.13-.03-.02.05-.23 0-.27m4.03 56.03c-1.08.42-3.27.58-4.16-.34-1.17-1.21-2.4-.54-3.9-.37-.03 0-.01.26 0 .26 1.23-.13 2.76-.89 3.74.19.97 1.06 3.07 1.02 4.32.53.04-.02-.02-.26 0-.27m-18.08-31.06c2.16-1.25 4.32.4 6.57-.27.04 0 0-.26 0-.26-2.25.66-4.4-.99-6.57.27-.05.03.02.25 0 .26m-18.53 4.84c.9-.34 1.67-.48 2.6-.2.85.27 1.61.66 2.5.8 2.22.33 4.52-.55 6.73-.6.02 0 .02-.27 0-.27-2.26.06-4.46.79-6.72.6-.88-.08-1.7-.49-2.51-.79-.9-.33-1.74-.13-2.6.2-.04 0 .01.26 0 .26m2.23 2.41c2.46-.98 5.09.04 7.62-.53.03-.01 0-.27 0-.27-2.53.57-5.16-.45-7.62.53-.05.02 0 .27 0 .27m20.89-8.99c2.18-.86 4.2-.31 6.44-.27.02 0 .02-.27 0-.27-2.25-.04-4.26-.6-6.44.27-.04.02.01.26 0 .27m6.96-2.24c1.32-.2 2.49-.25 3.81-.04.01 0 .03-.27 0-.27-1.32-.2-2.49-.15-3.8.04-.04 0-.02.27 0 .27m-22.6 18.35c2.69-1.51 5.67.95 8.28-.67.05-.03-.03-.25 0-.26-2.61 1.61-5.6-.85-8.28.67-.05.02.02.25 0 .26m2.23 2c1.79-.38 3.59-.67 5.39-.94.03 0 0-.26 0-.26-1.8.26-3.6.55-5.39.94-.03 0 0 .26 0 .26m5.78-6.71c1.72-.95 4 .17 5.39-1.47.05-.06-.03-.23 0-.27-1.4 1.64-3.67.53-5.39 1.48-.05.03.02.25 0 .26m8.68 9.54c1.94-1.49 4.43.05 6.44-1.21.05-.03-.03-.25 0-.27-2 1.26-4.5-.27-6.44 1.21-.05.04.03.25 0 .27m-.67-4.97c1.3-.18 2.64-.62 3.94-.31 1.25.3 2.2 1.15 3.55 1.12.03 0 .02-.27 0-.27-1.17.02-2.12-.56-3.18-1-1.37-.55-2.91 0-4.3.2-.03 0-.01.26 0 .26m1.31 15.04c1.99-.96 3.81-.9 5.92-.4 1.82.42 3.02 1.17 4.46-.54.05-.06-.03-.23 0-.27-1.36 1.62-2.7 1.12-4.46.54a7.83 7.83 0 0 0-5.92.4c-.05.03.02.26 0 .27m18.4-5.77c2.2.43 4.02.16 6.1-.6 1.08-.4 2.12-.85 3.28-.96 1.07-.1 2.17.13 3.23.21.02 0 .03-.26 0-.26-1.07-.08-2.15-.24-3.23-.21-1.15.03-2.23.55-3.29.95a10.55 10.55 0 0 1-6.09.6s-.03.26 0 .27m14.58-1.08c1.73-.27 3.4-.76 5.17-.62 1.78.15 3.2 1.1 4.95.22.05-.03-.02-.26 0-.27-1.54.78-2.89.18-4.47-.13-1.9-.38-3.78.25-5.65.53-.03 0 0 .27 0 .27m13.94-.27c3.4-1.27 5.91 1.78 9.19 2.01.01 0 .02-.26 0-.26-3.28-.24-5.8-3.29-9.2-2.02-.04.02.01.27 0 .27m13.01.54c1.52-.5 2.94-.23 4.47.1 1.64.35 3.09.3 4.59-.5.05-.03-.02-.26 0-.27-1.51.82-2.94.84-4.59.5-1.54-.32-2.94-.6-4.48-.1-.04.01 0 .27 0 .27m10.91 1.34c2.45-1.38 5.02-.92 7.63-1.6.03-.02 0-.27 0-.27-2.61.69-5.18.22-7.63 1.6-.05.04.02.26 0 .27m-18.13 8.46c1.16-1 2.49-.95 3.92-.73 1.33.2 2.75.56 3.83-.48.05-.05-.03-.23 0-.26-1 .95-2.28.73-3.52.52-1.52-.25-2.98-.4-4.23.68-.05.05.03.24 0 .27m1.71 2.83c1.96-1.6 4.43-.92 6.57-2.02.05-.03-.02-.26 0-.27-2.14 1.1-4.6.42-6.57 2.02-.06.04.03.24 0 .26m24.3-6.31c2.24-.1 4.48.1 6.7-.27.03 0 0-.27 0-.27-2.22.38-4.46.17-6.7.27-.02 0-.02.27 0 .27m.79 2.55a5.68 5.68 0 0 1 2.53-.73c.78-.02 1.55.1 2.33.06.03 0 .02-.26 0-.26-.78.03-1.55-.06-2.33-.07-.9-.02-1.73.32-2.53.74-.05.02.02.25 0 .26m4.73-5.5c.72-.78 1.84-.47 2.76-.67.04-.01 0-.27 0-.27-.92.2-2.04-.1-2.75.67-.05.06.03.23 0 .27m-63.08 4.03c1.32-1.05 2.7-1.08 4.3-1 1.75.07 3.17-.22 4.5-1.42.06-.04-.02-.24 0-.26-1.34 1.2-2.75 1.47-4.5 1.4-1.6-.06-2.97-.04-4.3 1.01-.05.04.03.25 0 .27m1.32 1.47c2.06-1.6 4.65-.27 6.97-.94.03 0 0-.26 0-.26-2.32.66-4.91-.67-6.97.94-.05.04.03.24 0 .26m-3.03-5.23c3.03-1.7 6.83 1.76 9.46-.94.06-.05-.03-.24 0-.27-2.63 2.7-6.43-.75-9.46.94-.05.03.02.26 0 .27m10.13 12.88c1.23-.93 1.94-.47 3.28-.13 1.91.47 3.82.53 5.78.53a.65.65 0 0 0 0-.26c-1.78 0-3.54-.05-5.29-.42-1.5-.31-2.4-1.03-3.77.02-.06.03.02.24 0 .26m0 2.02c2.37-1.73 5.3.95 7.88.53.03 0 0-.27 0-.27-2.58.42-5.51-2.26-7.88-.53-.05.04.02.25 0 .27m-14.99-43.77c2.45-1.77 5.02.5 7.62-.4.05-.02 0-.27 0-.27-2.6.9-5.18-1.36-7.62.4-.05.04.03.25 0 .27m1.44 1.35c1.67-.44 3.34.3 5-.14.04 0 0-.27 0-.27-1.66.44-3.33-.3-5 .14-.03 0 .01.27 0 .27m-13.52 13.02c2.03-.9 4.02-.7 6.18-.67.02 0 .02-.27 0-.27-2.16-.02-4.14-.23-6.18.67-.05.02.01.26 0 .27m73.7 3.76c1.47-1.74 3.92-1.25 5.91-1.48.03 0 .01-.27 0-.27-2 .23-4.44-.26-5.9 1.48-.06.06.02.23 0 .27m-6.05 4.43c2.42-2.37 5.47-.34 8.28-1.48.04-.02-.01-.26 0-.27-2.8 1.14-5.86-.9-8.28 1.48-.05.05.03.24 0 .27m-59.38 3.88c1.55-2.05 3.85-1.43 6.04-2 .04-.02 0-.28 0-.28-2.19.59-4.49-.04-6.04 2.02-.05.06.03.22 0 .26m84.38-20.77c1.4-.3 2.71-.67 4.15-.55 1.47.12 2.7.27 4.09-.36.05-.02-.01-.26 0-.27-1.36.62-2.64.54-4.09.36-1.41-.17-2.78.25-4.15.55-.03 0 0 .27 0 .27m-1.1 2.52c.97-.2 1.87-.24 2.85-.28a4.76 4.76 0 0 0 2.18-.82c.05-.03-.02-.25 0-.26a5.3 5.3 0 0 1-1.95.8c-1.04.14-2.04.08-3.08.3-.03 0 0 .26 0 .26m-3.93-5.02c1.77-.83 4.52 1.04 5.79-.91.04-.06-.02-.23 0-.26-1.27 1.94-4.03.08-5.79.9-.05.02.01.25 0 .26m7.19 6.4c.98-.35 1.8-.6 2.84-.57.9.03 1.7.2 2.52-.27.05-.03-.03-.25 0-.27-.8.46-1.63.34-2.52.27-1.02-.07-1.88.23-2.83.57-.04.01 0 .26 0 .27m-13.33-7.03c1.7-1.97 4.7 1.07 6.73-.26.05-.03-.03-.25 0-.27-2.03 1.33-5.03-1.7-6.73.26-.05.06.03.23 0 .27m-3.45-.97c.6-1 1.91-.67 2.89-.75 1.1-.1 1.93-.74 2.7-1.5.05-.05-.03-.23 0-.26a4.63 4.63 0 0 1-2.7 1.49c-1 .14-2.27-.26-2.9.76-.04.06.02.23 0 .26m-50.95-21.99c1.62-.8 3.24.14 4.9-.27.04 0 0-.26 0-.26-1.66.4-3.28-.54-4.9.26-.05.02.02.25 0 .26m2.01 1.49c.82-.69 1.8-.03 2.7-.45.05-.02-.02-.26 0-.27-.9.42-1.88-.23-2.7.45-.06.05.02.24 0 .27m36.37 47.01c.88-.1 1.88.4 2.7-.07.06-.02-.02-.25 0-.26-.82.45-1.82-.04-2.7.06-.03 0-.01.27 0 .27m-64.05-41.55a7.18 7.18 0 0 0-4.09-.38c-.92.23-.86 1.15-1.98.8 0 .01-.04.26 0 .28 1.01.3 1.16-.43 1.98-.81 1.16-.54 2.96-.02 4.08.37 0 0 .05-.25 0-.26m-.81 1.41c-2.3-1.06-4.76-.13-7.17-.38-.02 0-.03.26 0 .26 2.4.25 4.87-.67 7.17.39-.02 0 .04-.24 0-.27'/%3e%3cpath d='M680.52 522.8c-1.19-.42-2.3-1-3.5-1.37-1.38-.42-2.9-.42-4.3-.75 0 0-.04.26 0 .27 1.27.3 2.55.45 3.84.64 1.38.2 2.65 1.02 3.96 1.48 0 0 .04-.25 0-.27m-5.03 24.82c1.62-2.07 4.02-.62 6.16-1.1.04 0 0-.26 0-.26-2.14.47-4.54-.98-6.16 1.1-.05.05.03.22 0 .26m.07 1.22c.78-.36 1.5-.83 2.39-.84.8-.01 1.6.53 2.39.64 0 0 .03-.26 0-.26-.83-.12-1.57-.53-2.4-.65-.81-.11-1.68.52-2.38.84-.05.02.01.26 0 .27m1.44 3.53c.49-.48.95-.63 1.59-.4.52.2.95.42 1.5.15.04-.03-.02-.26 0-.27-.54.27-.98.07-1.5-.14-.63-.25-1.11-.08-1.59.4-.05.05.03.23 0 .26m1.07-8.03c.6-.36 1.13-.34 1.77-.08.65.27 1.16.43 1.81.08.05-.03-.02-.26 0-.27-.59.32-1.08.23-1.68-.02-.68-.29-1.23-.37-1.9.02-.05.03.02.26 0 .27m-6.3-.77c1.05-.26 1.84.33 2.86.48.79.11 1.66-.4 2.43-.55.03 0 0-.27 0-.27-.82.16-1.6.58-2.43.55-1.05-.04-1.77-.75-2.86-.48-.03 0 0 .27 0 .27m15.17 14.33c1.28-1.34 3.1-.22 4.6-.96.04-.03-.03-.26 0-.27-1.5.75-3.32-.37-4.6.96-.05.06.03.24 0 .27m28.06 2c1.7-1.04 3.5-.32 5.34-.33.02 0 .02-.27 0-.27-1.85.01-3.64-.7-5.35.32-.05.04.02.26 0 .27m11.83-.31c2.17-.79 3.88 1.27 6.04.83.04 0 0-.27 0-.27-2.16.44-3.87-1.62-6.04-.83-.04.01.01.26 0 .27m14.9.37c1.75-.32 4.37 1.38 5.8-.13.04-.05-.04-.23 0-.26-1.43 1.5-4.05-.2-5.8.12-.03 0 0 .27 0 .27m10.39 1.35c.64-1.3 1.98-.74 3.12-.62 1.36.15 2.63.03 3.73-.86.06-.04-.02-.24 0-.26-1.23 1-2.63.98-4.13.82-1.08-.12-2.14-.52-2.73.66-.03.07.03.22.01.26m-48.44-.83c1.15-.06 2.13-.53 3.21-.9 1.2-.42 2.48-.03 3.64-.52.05-.02-.01-.26 0-.27-1.03.44-2.19.17-3.27.41-1.25.27-2.28.95-3.58 1.01-.03 0-.02.27 0 .27m7.86 10.53c1.82-2.12 4.64-.04 6.8-1.34.04-.03-.03-.26 0-.27-2.16 1.3-4.98-.77-6.8 1.35-.05.06.03.23 0 .27m2.52.71c1.73-.62 4.52.44 5.79-1.22.05-.06-.04-.22 0-.27-1.27 1.66-4.06.6-5.79 1.22-.04.02.01.27 0 .27m16.35 7.06c1.28-1.35 2.73-1.5 4.46-1.18 2.03.39 3.93.81 5.98.35.04-.01 0-.27 0-.27-1.88.43-3.66.13-5.52-.25-1.9-.39-3.49-.42-4.92 1.09-.05.05.03.23 0 .26'/%3e%3cpath d='M731.22 579.37c1.06-.73 2.2-1 3.46-.84.01 0 .03-.26 0-.26-1.26-.17-2.4.1-3.46.83-.05.04.03.25 0 .27m-34.86-22.39c.85-1.08 2.46-.44 3.57-.94.05-.02-.02-.26 0-.27-1.11.5-2.72-.14-3.57.94-.05.06.04.22 0 .27m6.12.09c.27-1.5 2.4-.72 3.36-1.34.05-.03-.02-.25 0-.26-1 .63-3.09-.19-3.37 1.37l.01.23m10.89-.98c-.87-.06-1.66-.38-2.54-.32-.98.07-1.93.55-2.86.84-.04 0 .01.26 0 .26.96-.3 1.87-.67 2.86-.83.86-.14 1.7.26 2.54.31.02 0 .03-.26 0-.26m3.88.48a10.1 10.1 0 0 1 3.45-.12c.97.12 2.01.68 2.97.53.03 0 0-.27 0-.27-.84.13-1.72-.31-2.56-.46a9.85 9.85 0 0 0-3.86.05c-.04 0 0 .27 0 .27m12.33.41c1.49-.16 3.03.32 4.28-.73.05-.05-.02-.25 0-.27-1.25 1.05-2.8.57-4.28.73-.02 0 0 .27 0 .27m8.05-.31c2.4-2.52 5.8.12 8.66-.73.04-.01 0-.26 0-.26-2.86.85-6.25-1.8-8.66.73-.05.05.03.23 0 .26m-52.17 0c1.12-.9 2.47-.9 3.77-1.35.04-.02 0-.27 0-.27-1.3.45-2.65.46-3.77 1.36-.05.04.03.24 0 .26m40.56.09c.96-1.39 2.6-1.46 4.07-1.86.04-.02 0-.27 0-.27-1.48.4-3.12.48-4.08 1.88-.04.05.03.23 0 .25m21.5-.82c.97-.99 2.34-.76 3.57-1.04.03 0 0-.26 0-.26-1.23.28-2.6.05-3.57 1.04-.05.05.04.23 0 .26m5.91-2.08c.89-.66 1.9-.63 2.95-.73.03 0 .02-.27 0-.27-1.05.1-2.06.08-2.95.73-.06.04.02.25 0 .27m0-2.81c.98-.29 2-.43 2.85-1.04.05-.04-.02-.25 0-.27-.85.61-1.88.75-2.85 1.04-.04.02 0 .27 0 .27m-72.13.83c1.12-.12 2.22-.48 3.36-.31 0 0 .03-.26 0-.27-1.14-.17-2.24.19-3.36.32-.03 0-.01.26 0 .26'/%3e%3c/g%3e%3cpath fill='%23fff' stroke='%23000' stroke-width='.46' d='M523.83 317.68s8.07-.73 7.67.65c-.39 1.38.4 1.38 2.57 1.38s8.09-.79 8.68.2c.6.98 6.31-.4 8.48-.8 2.17-.39 3.75-.39 4.93-.59 1.19-.2 3.36-.78 3.36 0s.59 2.57.59 2.57 2.56 2.17 4.34 2.17c1.77 0 2.37.6 2.76 1.18.4.6 0 1.78 1.58 1.38 1.58-.39.2.4 3.94-.98 3.75-1.38 2.17-.2 3.16-.99a4.34 4.34 0 0 1 3.95-.98c1.77.4 3.15 1.18 3.74.98.6-.2 1.98-.59 4.54.6 2.56 1.18 5.33 1.57 7.5 1.77s3.35.6 4.53 0 3.95-.6 4.74-.6-.8-.39 3.75.2c4.53.6 4.93.6 5.52 0s2.17-.98 2.96-1.18c.79-.2 1.18-1.18 1.97-.79.79.4 2.76 1.19 4.34 1.97 1.58.8 5.33 1.19 7.5.8 2.17-.4.79-.2 4.34.59 3.55.78 4.73.98 6.11.98s6.35-.59 6.35-.59l-1.81-.41c-2.17-1.78-1.18-.18-5.33-2.35s-2.36-1.38-8.48-2.76c-6.11-1.39-4.73-2.57-6.7-3.75-1.98-1.19-2.18 0-4.35 0-2.17 0-1.38-1.38-6.5-5.13-5.13-3.75-4.74-2.76-6.71-4.34-1.98-1.58-6.12-4.14-8.29-6.12-2.17-1.97-6.7-1.5-8.68-1.57-4.37-.15-6.04-4.31-9.86-3.48-1.72.38-4.74-2.25-9.08-3.23-4.34-.99-8.48 2.56-11.63 4.54-3.16 1.97-10.66 6.11-14.01 9.07-3.35 2.96-10.53 6.5-14.87 7.88s-7.47 1.35-7.47 1.35' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M690.58 437.7c-.63.42-1.32.69-2.03.93-.08.03.02.53 0 .53.71-.24 1.4-.5 2.03-.92.1-.07-.04-.5 0-.54m30.99 5.09c-2.4 1.3-4.26 3.39-6.56 4.85-.1.06.05.5 0 .53 2.3-1.46 4.16-3.55 6.56-4.85.1-.05-.04-.51 0-.53m.2-3.49a14.76 14.76 0 0 1-4.64 4.47c-.1.06.04.51 0 .54a14.85 14.85 0 0 0 4.65-4.49c.08-.11-.05-.47-.01-.51m-1.84-1.71a7.18 7.18 0 0 1-2.98 1.79c-.07.02 0 .53 0 .53 1.16-.3 2.1-1 2.98-1.79.1-.1-.06-.48 0-.53m.17 1.44c-1.31 1.35-2.55 2.87-4.29 3.67-.1.04.03.52 0 .53 1.74-.8 2.98-2.31 4.3-3.67.1-.1-.07-.47 0-.53m.87 6.89c-1.22 1.61-2 3.62-3.95 4.47-.09.04.03.52 0 .53 1.96-.85 2.73-2.85 3.95-4.47.09-.13-.07-.45 0-.53m-1.05 3.85c-.71.84-1.29 1.92-2.36 2.33-.1.03.02.52 0 .53 1.07-.4 1.65-1.49 2.36-2.33.1-.11-.06-.46 0-.53m.53 3.03c1.03.75 1.5 2.03 2.54 2.78-.05-.04.1-.46 0-.54-1.03-.74-1.5-2.02-2.54-2.77.05.04-.1.46 0 .53m2.27 5.46c.5.36.8.9 1.22 1.34l.03-.27c0-.05.02-.21-.03-.26-.42-.44-.72-.99-1.22-1.34l-.03.26c0 .05-.02.24.03.27m-34.6-15.93c-1.39 1.48-3 2.71-4.82 3.58-.1.05.04.52 0 .53 1.82-.86 3.43-2.1 4.82-3.58.1-.1-.06-.46 0-.53m-2.28 4.03c-2.22 1.93-4.88 3.02-7.62 3.94-.08.03.01.53 0 .53 2.74-.91 5.4-2 7.62-3.94.1-.09-.06-.48 0-.53m-3.68 4.04c-1.16 1.68-2.86 3.7-4.9 4.2-.07.02 0 .53 0 .53 2.05-.5 3.75-2.52 4.91-4.21.08-.12-.04-.47 0-.52m-12.53 1.79c-1.26.81-2.54 1.59-3.94 2.14-.09.03.02.52 0 .53 1.4-.55 2.68-1.32 3.94-2.15.1-.06-.04-.5 0-.53m-2.62-.89c-.33.1-.64.24-.97.36-.08.03.02.53 0 .53.33-.11.64-.26.97-.36.07-.02 0-.53 0-.53m19 3.4c-.66.39-1.3.8-1.92 1.25-.1.07.05.5 0 .53.62-.45 1.26-.86 1.92-1.25.1-.06-.04-.5 0-.53m24.09 1.08c-.93.43-1.84.9-2.72 1.43-.1.06.05.5 0 .53.88-.53 1.8-1 2.72-1.43.1-.05-.03-.52 0-.53m6.22-1.08c-.62.37-1.13.9-1.5 1.53-.04.08-.01.24-.01.33 0 .02.02.2.03.18.36-.63.87-1.14 1.48-1.5.1-.07-.04-.52 0-.54'/%3e%3cg opacity='.59' fill='%23007638'%3e%3cpath d='M658.31 514.56c-.1 1.21-.1 2.57.6 3.62-.03-.05.09-.4.01-.52a4.19 4.19 0 0 1-.57-2.73c0-.07-.02-.58-.04-.37m-.69 3.4c-.42-.64-1.15-1.54-1.1-2.36 0-.09-.03-.6-.05-.27-.06 1.23.48 2.15 1.13 3.15-.03-.05.1-.4.02-.52m-1.87-.49a10.7 10.7 0 0 1-2.21-6.13c-.02-.33-.05.18-.05.26.14 2.3.8 4.61 2.26 6.4-.07-.07.1-.4 0-.53m4.75.2c-.18-.2-.27-.42-.37-.65-.01-.03-.03.16-.03.18 0 .1-.03.24.01.33.12.24.2.48.38.67l.03-.26c0-.06.02-.22-.03-.27m1.21.19c-.22-.08-.43-.16-.55-.37-.02-.03-.03.17-.03.18 0 .09-.03.25.01.33.13.22.34.31.57.4-.02-.01.08-.51 0-.54m-9.4-1.14c-.77-1.53-.82-3.22-.9-4.9-.03-.34-.06.17-.05.26.1 1.77.13 3.55.94 5.16-.03-.07.08-.39.02-.52m1.36-14.18c.01.94.4 2.93-.8 3.25-.09.02 0 .53 0 .53 1.28-.34.87-2.8.85-3.78 0-.3-.05-.3-.05 0m-2.02 3.88c.26-.28.45-.6.57-.96.03-.1.02-.23.02-.33l-.03-.19c-.12.36-.3.68-.55.94-.05.05-.03.21-.03.27 0 .02.03.26.02.27m2.33 0c.77-.54.68-1.52.68-2.36 0-.3-.05-.3-.05 0 0 .71 0 1.38-.63 1.82-.1.08.05.5 0 .54m8.55-2.47c.29.7.08 1.56.08 2.3 0 .3.04.3.05 0 0-.9.24-1.96-.11-2.82.03.08-.08.37-.02.52m-7.53 2.56c1-.63 1.04-2.09.85-3.16 0-.04-.04.36-.03.46.15.82-.1 1.72-.82 2.17-.1.06.05.5 0 .53m6.8-.2c.21-.35.29-.73.3-1.14 0-.1.01-.23-.02-.32-.01-.02-.03.16-.03.18-.01.27-.13.54-.27.77-.04.07-.02.24-.01.32 0 .02.01.22.03.2m-3.83-4.18c.45 1.14-.16 2.65-.29 3.83 0 .07.01.59.04.38.17-1.49.85-3.25.26-4.72.04.07-.07.37 0 .51m5.32 4.01v-1.05c0-.02 0-.26-.02-.26-.03 0-.03.24-.03.26v1.05c0 .02 0 .26.03.26.02 0 .02-.24.02-.26m9.84 1.41c.61-.68.58-1.66.58-2.54 0-.3-.05-.3-.05 0 0 .73-.03 1.45-.53 2.01-.1.11.06.46 0 .53m-14.7-1.33c.93-1.12 1.04-2.53 1.14-3.93 0-.09-.02-.6-.05-.27-.09 1.32-.22 2.62-1.09 3.67-.1.12.07.45 0 .53m-2.42.19c1.66-.55.97-3.62.76-4.87 0-.05-.04.36-.03.46.2 1.18.75 3.39-.73 3.87-.08.03.01.53 0 .54m4.08-2.39c-.05.68-.13 1.44-.73 1.86-.1.07.05.5 0 .53.67-.47.72-1.37.77-2.12 0-.1-.03-.6-.05-.27m3.37 2.48c.3-.22.38-.5.4-.86 0-.1.02-.23-.02-.33a.8.8 0 0 0-.03.19c0 .18-.22.37-.35.47-.04.03-.02.22-.02.26l.02.27m-2.88 0a6.46 6.46 0 0 0 1.15-3.9c0-.17-.05-.52-.06-.14a5.84 5.84 0 0 1-1.09 3.5c-.09.13.07.45 0 .54m-9.85-.37c.1-.1.16-.18.2-.32.02-.12.01-.25 0-.37 0-.02 0-.2-.03-.1-.04.1-.1.18-.17.25-.05.05-.03.21-.03.27l.03.27m3.53 10.96c-.95-1.23-1.29-2.78-1.67-4.27.02.1-.05.37-.01.52.38 1.49.72 3.04 1.68 4.28-.07-.09.1-.4 0-.53m-3.25-.38a8.19 8.19 0 0 1-.74-1.52l-.03.19c0 .1-.02.23.02.33.18.54.45 1.03.74 1.52.01.02.03-.17.03-.19 0-.08.03-.25-.02-.33m12.06-.22c.03.35.1.69.2 1.02l.03-.19c0-.1.01-.22-.02-.33a4.52 4.52 0 0 1-.17-.88c-.01-.09-.03-.09-.04 0a1.8 1.8 0 0 0 0 .38m9.12 10.17c.06.62.46 1.06.75 1.58.02.03.03-.16.03-.18 0-.09.03-.25-.02-.33-.25-.46-.68-.9-.73-1.45 0-.09-.03-.09-.04 0v.38m-.06 1.83c-.48-.42-.67-1.02-.83-1.61.02.09-.06.36-.02.51.17.6.36 1.2.85 1.63-.06-.06.1-.45 0-.54m52.89-21.31c.94-.63 1.29-1.75 1.68-2.77.05-.14-.04-.43-.01-.5-.4 1-.74 2.12-1.67 2.74-.1.06.05.5 0 .53m2.34-.58c1.13-1.92.79-4.25.67-6.37-.02-.33-.05.18-.05.27.1 1.9.37 3.9-.63 5.59-.08.12.04.46 0 .51m49.39 6.2v-1.24c0-.02 0-.26-.02-.26-.03 0-.03.24-.03.26v1.24c0 .02 0 .27.03.27s.02-.25.02-.27m5.39.23c.09-.39.1-.78.1-1.18 0-.01.01-.26-.02-.26s-.02.25-.02.26c0 .25-.03.48-.08.72-.03.12-.02.25-.01.37 0 .02 0 .2.03.1m-4.47.68c.64-1.48.84-3.07.94-4.68.01-.09-.02-.6-.04-.27-.1 1.53-.3 3.03-.91 4.44-.06.14.04.44.01.51m3.09-.35c0-1.08.17-2.15.18-3.23 0-.3-.05-.3-.05 0-.01 1.08-.17 2.15-.19 3.23 0 .3.05.3.06 0m-1.32-.13c.56-2 1.1-3.97 1.13-6.07 0-.17-.04-.52-.05-.14-.04 1.97-.57 3.82-1.1 5.7-.04.15.04.43.02.51m-3.8-.05c0-.51.09-1.01.1-1.52 0-.02 0-.27-.03-.27s-.03.25-.03.27c0 .5-.08 1-.09 1.52 0 .01 0 .26.03.26s.02-.25.02-.26m2.68.53c.54-1.73.4-3.56.66-5.34.02-.1-.02-.5-.02-.46-.26 1.76-.12 3.58-.65 5.29-.04.15.04.43.01.51m-1.2.08c.2-.88.37-1.74.39-2.63 0-.17-.05-.52-.06-.15 0 .8-.19 1.55-.35 2.31-.03.12-.02.25-.01.37 0 .02 0 .2.03.1m2.05-.52c.02-1 .17-1.98.19-2.97 0-.17-.05-.51-.05-.14-.02 1.04-.18 2.07-.19 3.1 0 .31.05.31.05 0m-52.92-6.37a6.58 6.58 0 0 0 1.32-3.8c0-.18-.04-.52-.05-.15a6.1 6.1 0 0 1-1.27 3.41c-.1.13.06.45 0 .54m-2.32.47c.26-.52.54-1.03.84-1.53.04-.07.02-.24.02-.32 0-.02-.02-.22-.04-.19-.29.5-.58 1-.83 1.52-.05.09-.03.24-.02.33 0 .02.02.21.03.19m4.93-1.46c.1-.7.1-1.42.1-2.13 0-.02 0-.26-.02-.26s-.03.24-.03.26c0 .56 0 1.12-.08 1.67v.37c0 .01.02.2.03.1m2.13-.65c.36-1.42.57-2.87.85-4.3.02-.1-.02-.51-.03-.46-.27 1.41-.48 2.84-.83 4.24-.04.16.03.43.01.52m1.61-.93c0-.82.08-1.64.09-2.47 0-.3-.05-.3-.05 0 0 .83-.09 1.65-.1 2.47 0 .3.05.3.06 0m1.46-.59c.47-1.47.74-2.96.86-4.5 0-.08-.03-.6-.05-.26-.1 1.44-.38 2.86-.82 4.24-.05.15.04.43.01.52m2.04-.28c.54-.97.66-2.03.76-3.11 0-.07-.02-.59-.04-.38a7.31 7.31 0 0 1-.73 2.97c-.07.13.05.46.01.52m1.68.48c.62-.97.83-2.07.94-3.2 0-.08-.02-.6-.04-.38a6.64 6.64 0 0 1-.92 3.06c-.07.12.05.46.02.52m2.78-1.05c1-.86 1.66-1.97 2.06-3.24.04-.14-.04-.43-.02-.51a6.89 6.89 0 0 1-2.04 3.22c-.1.1.06.48 0 .53m3.82.08c.85-1.17.67-2.73.76-4.1 0-.1-.02-.6-.04-.28-.09 1.32.08 2.75-.73 3.87-.08.11.04.47.01.51m2.22-.84c1.15-.64 1.5-1.88 1.52-3.14 0-.17-.05-.51-.05-.14-.02 1.13-.46 2.2-1.47 2.75-.1.05.04.51 0 .53m-4.05.88c0-.43 0-.86.08-1.29.02-.12.01-.25 0-.36 0-.02-.01-.2-.03-.1-.1.58-.1 1.16-.1 1.75 0 .02 0 .27.02.27s.03-.25.03-.27m-5.68 1.23c0-.53 0-1.05.08-1.58.02-.11.02-.24.01-.36 0-.02-.02-.2-.03-.1-.1.68-.1 1.36-.11 2.04 0 .02 0 .26.02.26.04 0 .03-.24.03-.26m-2.73 1.31c.67-.63.68-1.59.77-2.45 0-.07-.02-.59-.04-.38-.09.82-.1 1.7-.73 2.3-.1.1.06.47 0 .53m-1.29.19c.38-.83.4-1.73.4-2.63 0-.3-.06-.3-.06 0 0 .74-.04 1.44-.36 2.12-.06.13.05.44.02.5'/%3e%3cpath d='M731.09 506.53v-1.33c0-.01 0-.26-.03-.26s-.03.25-.03.26v1.33c0 .02 0 .27.03.27s.03-.25.03-.27m-1.7.54c.48-1.43 1.1-2.8 1.4-4.3.02-.1-.02-.5-.02-.46-.3 1.47-.92 2.83-1.4 4.25-.04.14.05.43.02.51m9.58-2.94c.46-.98.65-2.03.76-3.1 0-.08-.02-.6-.04-.38a8.94 8.94 0 0 1-.73 2.97c-.06.13.05.44.01.51m1.95-.57c.1-.22.2-.44.28-.67.03-.1.02-.22.02-.32a.8.8 0 0 0-.03-.19 5.4 5.4 0 0 1-.28.67c-.04.08-.02.23-.02.32 0 .02.02.21.03.19m2.6-.48c.76-1.4.42-3.02.3-4.53-.02-.21-.05.3-.04.38.1 1.22.34 2.5-.27 3.63-.07.13.05.46.01.52m2.24-.28c.73-1.5.84-3.14.94-4.78.01-.09-.02-.6-.04-.27-.1 1.56-.22 3.11-.91 4.53-.07.14.04.45.01.52m-23.09 1.17c-.1.88-.55 1.7-.37 2.6.02.1.04-.08.04-.1 0-.11.01-.24-.01-.36-.06-.29.15-.71.22-1 .07-.25.13-.5.16-.77 0-.06-.01-.58-.04-.37m.03 3.49c.16-.7.27-1.4.46-2.1.04-.14-.04-.41-.02-.5-.18.69-.3 1.39-.46 2.09-.04.15.04.42.01.5m9.23-2.05v-1.05c0-.02 0-.26-.02-.26-.03 0-.03.24-.03.26v1.05c0 .02 0 .26.03.26s.02-.24.02-.26m3.53-.83c-.01-.9-.26-1.71-.48-2.57.02.1-.05.37-.01.52.18.72.43 1.43.44 2.19.01.37.06.03.05-.14m4.17-.73a9.7 9.7 0 0 0 1.12-3.54c.01-.1-.02-.5-.03-.46a9.61 9.61 0 0 1-1.1 3.49c-.08.12.04.45 0 .51m14.7 13.68c.54-1.01 1-2.06 1.4-3.14.05-.14-.05-.43-.02-.5-.39 1.07-.86 2.11-1.4 3.13-.06.12.05.45.02.5m3.25-.26a6.32 6.32 0 0 0 1.5-3.27c.01-.1-.02-.5-.03-.46a6.16 6.16 0 0 1-1.47 3.2c-.1.11.06.45 0 .53m2.69-.48a5.76 5.76 0 0 0 1.22-4.58c0-.05-.04.35-.02.46.2 1.35-.4 2.57-1.2 3.59-.1.12.07.45 0 .53m2.52-.67c.88-1.64.68-3.6.48-5.38-.03-.21-.05.3-.04.37.17 1.54.29 3.11-.45 4.5-.07.13.04.45.01.51m-6.34-1.05c.12.37.47.94 0 1.18-.09.06.05.52 0 .54.35-.18.34-.62.32-.97-.03-.44-.17-.85-.3-1.27.02.09-.06.37-.02.52m2.25 1.92c.52-.58.5-1.43.5-2.17 0-.02 0-.27-.03-.27s-.03.25-.03.27c0 .6-.03 1.18-.44 1.64-.1.1.06.46 0 .53m2.98-.59c.3-.73.47-1.47.48-2.27 0-.17-.04-.52-.05-.14 0 .66-.2 1.29-.44 1.9-.06.14.04.44.01.51m-6.03.42c0-.35 0-.68.08-1.01.02-.12.02-.25 0-.37 0-.02 0-.2-.03-.1-.1.49-.1.98-.1 1.47 0 .02 0 .27.02.27.03 0 .03-.25.03-.27m-2.61.89c.08-.44.17-.89.36-1.3.04-.09.02-.24.02-.33 0-.02-.02-.2-.03-.18-.2.42-.29.9-.38 1.35-.02.12-.02.25 0 .37 0 .01 0 .2.03.1m7.86-5.91c-.04 1.05-.66 2.01-.35 3.08-.03-.08.05-.36.01-.51-.13-.46.16-1.04.26-1.49.08-.31.12-.61.13-.94 0-.17-.03-.51-.05-.14m-3.31 2.4a9 9 0 0 1-.08-1.38c0-.02 0-.27-.03-.27s-.02.25-.02.27c0 .61 0 1.23.1 1.84.02.1.04-.08.04-.1l-.01-.36m2.05.38.28-2v-.36c0-.02-.01-.2-.03-.1l-.28 2v.36c0 .02.02.2.03.1m-1.39-.24c0-.43.02-.85.17-1.26.03-.1.02-.23.02-.33l-.03-.18c-.2.56-.2 1.18-.21 1.77 0 .02 0 .27.03.27s.02-.25.02-.27m4.38-.19c0-.46 0-.91-.1-1.37-.03-.1-.04.08-.04.1 0 .12-.02.25 0 .36.08.3.09.6.09.91 0 .02 0 .27.02.27.03 0 .03-.25.03-.27m-3.19 2.63c.21-.45.3-.93.3-1.42 0-.1.02-.23-.02-.33a.9.9 0 0 0-.03.19c0 .36-.1.72-.26 1.04-.04.1-.02.24-.02.33 0 .02.02.21.03.19m-2.86-2.51c0-.41-.09-.82-.1-1.23a.85.85 0 0 0-.03-.19c-.03.1-.02.23-.01.33 0 .41.08.82.09 1.23 0 .03.02.21.03.19.03-.1.02-.23.02-.33m30.49 11.51c.29-2.03 1.96-3.48 2.33-5.5.01-.11-.02-.51-.03-.47-.37 2.03-2.04 3.47-2.32 5.51-.02.1.01.5.02.46m1.31-.73c0-.56.2-1.06.63-1.42.1-.1-.06-.48 0-.54-.54.47-.67 1.13-.68 1.81 0 .17.04.52.05.15m-2.43.47c.26-.53.56-1.03 1.02-1.41.04-.04.02-.22.02-.27l-.02-.26c-.47.39-.77.9-1.03 1.43-.05.09-.02.24-.02.33 0 .02.02.21.03.19m3.44-.86c.36-1.17.47-2.37.57-3.58 0-.07-.02-.59-.04-.38-.1 1.17-.2 2.33-.55 3.45-.04.15.04.43.02.51m-4.11.15c-.05-.14-.07-.18-.07-.12 0-.1-.03-.09-.04 0v.38c.01.1.05.18.11.26l.03-.26c0-.07.02-.21-.03-.27m4.57.62a9.91 9.91 0 0 0 1.22-6.43c-.03-.2-.05.31-.04.38a8.52 8.52 0 0 1-1.2 5.54c-.07.12.05.46.02.51m-8.45-12.13c.1-.87.1-1.75-.1-2.6-.02-.1-.03.07-.04.1 0 .1-.01.24.01.36.14.58.16 1.16.1 1.76-.02.07 0 .59.03.38'/%3e%3cpath d='M790.66 524.75c.91-1.5.75-3.43.94-5.1.01-.08 0-.6-.03-.38-.2 1.65-.03 3.5-.92 4.96-.07.12.05.46.01.52m-18.89.5c-.04.37-.04.76.1 1.1.02.03.04-.16.04-.18 0-.1.02-.23-.02-.33-.02-.04-.09-.16-.08-.22v-.37c-.01-.1-.03-.09-.04 0m-52.51-20.64c1.1-.7 1.55-2 1.86-3.24.04-.15-.03-.42-.01-.51-.31 1.23-.75 2.51-1.85 3.22-.1.07.04.5 0 .53m51.52 21.77c0-.33.02-.7-.1-1.01-.02-.03-.04.16-.04.18 0 .1-.02.24.02.33.07.16.07.33.07.5 0 .02 0 .27.03.27s.02-.25.02-.27m1.87-.18v-2.38c0-.3-.05-.3-.05 0v2.38c0 .3.05.3.05 0m-53.23-25.56c-.1 1.13-.14 2.5-1.2 3.15-.1.07.05.51 0 .54 1.1-.68 1.13-2.15 1.23-3.31 0-.07-.02-.58-.03-.38m3.65 7.01a15.2 15.2 0 0 0 1.04-5.22c0-.17-.04-.52-.05-.15a14.1 14.1 0 0 1-1 4.85c-.05.14.04.44.01.52m-5.67-3.33c.17-.27.27-.56.37-.85.03-.1.02-.23.02-.33l-.03-.19c-.1.3-.2.59-.37.86-.05.07-.02.24-.02.32 0 .02.01.22.03.19m4.11 2.58v-.66c0-.01 0-.26-.02-.26-.03 0-.03.25-.03.26v.67c0 .02 0 .26.03.26s.02-.24.02-.26m-4.87-2.67a.37.37 0 0 0 .19-.1c.04-.04.02-.21.02-.27l-.02-.26a.37.37 0 0 1-.19.1c-.07 0 0 .53 0 .53m53.58-9c0-.35.04-.66.23-.97.04-.08.01-.25.01-.33 0-.02-.01-.21-.03-.18-.27.44-.26.98-.26 1.48 0 .02 0 .27.03.27s.02-.25.02-.27m15.44.38c.01-.46.12-.9.22-1.35a1.21 1.21 0 0 0 0-.5 8.27 8.27 0 0 0-.27 1.85c0 .02 0 .27.03.27s.02-.25.02-.27m-7.73.26c.6-2 .73-4.09.74-6.17 0-.3-.05-.3-.05 0-.01 1.91-.15 3.81-.7 5.65-.05.15.03.43 0 .52m-1.91-.02v-1.35c0-.02 0-.27-.02-.27-.03 0-.03.25-.03.27v1.35c0 .02 0 .27.03.27s.02-.25.02-.27m6.14.14c.14-.55.05-1.1-.12-1.63-.01-.02-.04.16-.04.19 0 .1-.01.22.02.32.06.18.17.41.12.6-.02.1-.02.22-.02.33 0 .02.03.2.04.18m-7.82-.62c.01-1.26.23-2.5.35-3.75 0-.07-.02-.59-.03-.38-.14 1.38-.36 2.74-.37 4.13 0 .3.04.3.05 0m5.64.38c.6-.94.62-2.07.73-3.15.01-.07-.01-.59-.03-.38-.11 1.04-.13 2.11-.71 3.01-.08.12.04.47 0 .52m-8.3-.15c.12-.65.12-1.31.24-1.96.02-.12.01-.25 0-.37 0-.02-.01-.2-.03-.1-.12.66-.12 1.32-.24 1.98-.02.11-.02.24 0 .36 0 .02 0 .2.03.1m5.3.23c.14-.6.14-1.22.14-1.83 0-.02 0-.27-.03-.27s-.02.25-.02.27c0 .46-.01.92-.11 1.37-.03.12-.02.25-.01.37 0 .01.01.19.03.1m-2.17.15c.5-1.37 1.18-2.66 1.45-4.1.02-.1-.02-.5-.03-.46-.26 1.43-.94 2.7-1.44 4.04-.05.14.05.43.02.51m-2.06-1c-.19-.31-.33-.68-.34-1.05 0-.02-.02-.21-.03-.19-.04.1-.02.23-.02.33.01.5.12.99.38 1.42.02.02.03-.17.03-.19 0-.08.03-.25-.02-.32m6.51.76c.11-.24.14-.5.25-.74.03-.1.02-.23.02-.33 0-.02-.03-.2-.04-.18-.1.23-.13.5-.24.73-.04.1-.02.24-.02.33 0 .02.02.21.03.19m5.18-2.09c.26.57.2 1.13.1 1.73v.37c0 .02.02.2.04.1.13-.9.26-1.87-.13-2.71.03.07-.08.38-.01.51m-3.73 2.47c.4-.29.6-.76.73-1.24.03-.1.02-.22.02-.33l-.03-.18a2.1 2.1 0 0 1-.72 1.22c-.04.03-.02.22-.02.27l.02.26m2.79.33c.26-1.6.75-3.49-.25-4.92.03.05-.1.4-.02.51.84 1.2.47 2.6.24 3.95-.02.1.02.5.03.46m-5.18-.9c.12-1.06.33-2.1.59-3.14.03-.15-.04-.41-.02-.5a27.26 27.26 0 0 0-.61 3.26c-.01.07 0 .59.03.38m-5.05-.07v-2.46c0-.3-.05-.3-.05 0v2.46c0 .3.05.3.05 0m-2.56.02c.18-.2.15-.5.15-.75 0-.02 0-.27-.03-.27s-.02.25-.02.27c0 .1-.03.15-.1.22-.04.05-.02.2-.02.27l.02.26m12.45-.14c0-.86 0-1.72-.13-2.57-.02-.1-.04.08-.04.1l.01.36c.1.7.1 1.4.1 2.11 0 .3.06.3.06 0m2.75.13c.12-.28.14-.57.14-.87 0-.02 0-.27-.02-.27s-.03.25-.03.27c0 .12-.05.24-.1.36-.04.09-.02.23-.02.32 0 .02.02.21.03.2m-12.28.04c-.1-1-.12-2.01-.12-3.02 0-.3-.05-.3-.05 0 0 1.14.01 2.27.13 3.4.02.2.04-.31.03-.38'/%3e%3cpath d='M775.16 496.12c.12-1.72.13-3.45.24-5.17.01-.09-.02-.6-.04-.27-.11 1.72-.13 3.45-.24 5.17 0 .09.02.6.04.27m2.29-.62c.27-.91.27-1.94 0-2.85.02.08-.06.36-.02.51.19.62.19 1.2 0 1.83-.04.14.04.42.02.51m2.16.5c.26-.82.37-1.63.38-2.48 0-.3-.05-.3-.05 0 0 .67-.14 1.32-.34 1.96-.05.15.04.43.01.51m2.39-2.09c.2.65.65 1.45.6 2.14 0 .07.02.58.04.38.08-1.1-.3-2.01-.62-3.04.03.09-.06.37-.01.52m-10.94 1.34v-.49c0-.02 0-.27-.02-.27-.03 0-.03.25-.03.27v.5c0 .01 0 .26.03.26.02 0 .02-.25.02-.27m15.53-.14a.84.84 0 0 1-.23-.48c0-.02-.01-.2-.03-.1-.02.12-.02.25-.01.37.02.28.08.53.26.75l.03-.27c0-.06.02-.22-.03-.27m-5.65.74c.26-1.38.37-2.77.38-4.17 0-.3-.05-.3-.06 0 0 1.25-.12 2.48-.35 3.71-.02.1.02.5.03.46m-5.07 17.78c.14-.55.25-1.1.26-1.67 0-.1.02-.23-.01-.32-.01-.02-.04.16-.04.18 0 .44-.12.87-.22 1.3a1.3 1.3 0 0 0 .01.5m3.86-.35c.63-.71.63-1.71.63-2.61 0-.3-.05-.3-.06 0 0 .75-.05 1.5-.57 2.07-.1.11.06.46 0 .54m9.39 10.15.12 1.35c0 .1.02.1.03 0v-.37l-.12-1.36c0-.09-.03-.08-.03 0-.02.13-.01.25 0 .38m-15.94 2.03v.61c0 .02 0 .27.03.27s.02-.25.02-.27v-.61c0-.02 0-.27-.02-.27s-.03.25-.03.27m-.96-1.48v2.59c0 .3.05.3.05 0v-2.59c0-.3-.05-.3-.05 0m-9.86-8.49c.5-.91.72-1.86.74-2.9 0-.17-.05-.51-.05-.14a5.4 5.4 0 0 1-.7 2.53c-.07.12.04.45 0 .51m.36 2.96a2.22 2.22 0 0 0 1.23-2.12c0-.02-.02-.2-.03-.1-.12.78-.5 1.33-1.2 1.69-.1.05.04.51 0 .53m8.59 8.17a7.6 7.6 0 0 0-.26-1.67l-.03.19c0 .1 0 .22.02.33.1.42.21.85.22 1.29 0 .02.02.2.03.18.04-.1.02-.22.02-.32'/%3e%3cpath d='M762.35 515.96c.14.48.1.97.1 1.47 0 .02 0 .27.02.27.03 0 .03-.25.03-.27 0-.67.06-1.34-.14-1.98.03.08-.06.36-.01.51m-1.31 1.57c.12-.63.24-1.24.25-1.88 0-.1.02-.23-.02-.33l-.03.19c0 .53-.12 1.04-.22 1.56-.03.12-.02.25-.01.37 0 .01.01.2.03.1m-5.71-7.39c0 1.34.17 2.71-.46 3.93-.07.13.05.45.01.52.72-1.38.51-2.95.5-4.45 0-.3-.05-.3-.05 0m1.15 7.28c0-.3.02-.57.1-.86.03-.1.02-.22.02-.32l-.03-.19c-.14.44-.14.9-.14 1.37 0 .01 0 .26.02.26.03 0 .03-.25.03-.26m7.79-4.13c.1 1.13-.67 2.37-1.43 3.12-.1.1.07.47 0 .53a5.03 5.03 0 0 0 1.47-4.02c-.02-.21-.04.3-.04.37m-6.87-1.53c-.12.9-.39 1.77-.38 2.7 0 .3.06.3.05 0 0-.76.26-1.5.35-2.24.02-.12.02-.24.01-.37 0-.01-.02-.2-.03-.1m2.18 5.69a5.14 5.14 0 0 0 1.23-3.24c0-.01-.02-.2-.03-.1a5.01 5.01 0 0 1-1.2 2.8c-.1.12.07.47 0 .54m-23.42-14c.01.33-.22.69-.45.9-.05.04-.03.21-.03.27l.03.26c.45-.4.52-.99.5-1.57a.8.8 0 0 0-.03-.18c-.03.1-.02.22-.02.32m-4.41 2.02v-1.48c0-.02 0-.27-.03-.27-.02 0-.02.25-.02.27v1.48c0 .02 0 .26.02.26.03 0 .03-.24.03-.26m-2.55.26c.3-.5.4-1.18.24-1.75a.9.9 0 0 0-.04.19c0 .1 0 .22.02.32.06.22-.12.54-.24.72-.05.08-.02.25-.02.33 0 .02.02.21.03.19m-4.45.84c.11-.52.13-1.06.13-1.59 0-.02 0-.26-.03-.26s-.02.24-.02.26c0 .38-.03.76-.11 1.13-.03.11-.02.25-.01.36 0 .02.01.2.04.1m-4.84.65c.34-.35.5-.68.5-1.18 0-.1.02-.23-.01-.33-.01-.02-.04.17-.04.2 0 .3-.25.57-.45.78-.05.05-.03.21-.03.27l.03.26m.96-3.58c-.04.2-.17.24-.35.21-.01 0-.06.52 0 .53.23.04.34-.06.38-.28.02-.12.01-.24 0-.36 0-.02-.01-.2-.03-.1m2.79 3.44c.36-.5.68-1.04.96-1.6.04-.08.02-.23.02-.32 0-.02-.02-.22-.03-.19-.28.56-.6 1.1-.97 1.6-.08.11.05.47.02.51m16.01-5.2c-.03.68-.15 1.31-.58 1.84-.1.12.07.45 0 .54.49-.6.6-1.35.63-2.1 0-.1-.03-.6-.05-.28m3.14-.83c.01.46.07.95-.23 1.33-.04.05-.02.2-.02.26 0 .03.03.26.02.27.45-.56.3-1.47.27-2.12-.02-.33-.05.18-.05.26m2.21 1.6a2.2 2.2 0 0 0 .24-1.23c-.02-.1-.04.08-.04.1-.01.21-.13.42-.22.61-.04.09-.02.24-.02.33 0 .02.02.21.03.19m3.35-1.07c0-.07-.04-.1-.1-.07-.04 0-.03.53 0 .53.17 0 .14-.18.15-.32 0-.1.02-.23-.02-.33l-.03.19m-28.18-10.9c.14-.6.13-1.22.13-1.84 0-.01 0-.26-.02-.26s-.03.25-.03.26c0 .47 0 .92-.1 1.38-.03.11-.02.24-.01.36 0 .02 0 .2.03.1m7.61-.98c.01-.86.12-1.72.12-2.58 0-.3-.05-.3-.05 0 0 .86-.11 1.72-.12 2.58 0 .3.05.3.05 0m-3.78-3.22c.1.58.4 1.5-.23 1.85-.1.05.04.51 0 .53.83-.44.38-2.13.26-2.84-.02-.1-.04.08-.04.1 0 .12-.01.24.01.36m1.83 1.61c-.08-.28-.1-.56-.1-.86 0-.01 0-.26-.02-.26-.03 0-.03.25-.03.26 0 .47.01.93.14 1.37l.03-.19c0-.1.01-.22-.02-.32m-3.16-1.97c-.04.82.02 1.71-.35 2.47-.06.13.05.44.02.5.4-.8.34-1.81.37-2.7.01-.09-.03-.6-.04-.27m3.88 2.49c.25-.29.26-.63.26-1 0-.02 0-.27-.02-.27-.03 0-.03.25-.03.27 0 .2-.1.34-.21.47-.05.05-.03.2-.03.27l.03.26m-5.64 1.77c0-.31.12-.62.22-.92.03-.1.02-.23.02-.33 0-.02-.03-.2-.04-.18a4.6 4.6 0 0 0-.26 1.3c0 .1-.01.22.02.32.01.02.03-.16.03-.19m2.03-1.53c.14-.28.24-.55.26-.86v-.37c-.03-.1-.04.08-.04.1-.02.22-.14.43-.23.61-.04.09-.02.24-.02.33 0 .02.02.21.03.19m-1.67.55c0-.33.1-.65.12-.99 0-.1.02-.23-.02-.32a.9.9 0 0 0-.03.18c-.01.33-.11.65-.12.99 0 .1-.02.23.02.33a.8.8 0 0 0 .03-.2m3.6-1.07a.42.42 0 0 1-.1-.22c0-.02 0-.27-.02-.27-.03 0-.03.25-.03.27 0 .25 0 .55.15.75l.03-.26c0-.07.01-.21-.03-.27m1.81 1.28c.26-.28.37-.64.5-1 .02-.1.01-.22 0-.32a.9.9 0 0 0-.02-.2c-.12.36-.23.71-.48.99-.04.05-.02.2-.02.26 0 .03.03.26.02.27m-78.36.35v-4.68c0-.3-.06-.3-.06 0v4.68c0 .3.06.3.06 0m-5.1.61c-1.43-2.13-2.34-4.6-1.68-7.25.03-.15-.04-.42-.02-.51-.72 2.92.03 5.82 1.7 8.27-.04-.05.08-.4 0-.51m3.63-.38c-.26-.46-.43-.93-.24-1.45.05-.15-.05-.44-.02-.52-.28.8-.16 1.76.24 2.49-.03-.06.09-.39.02-.52m2.04.52a7.1 7.1 0 0 0 .14-1.61c0-.02 0-.27-.03-.27s-.02.25-.02.27c0 .37-.02.73-.1 1.1a1.06 1.06 0 0 0 .01.51m-3.85-.39c-.59-1-.94-2.1-1.08-3.26-.02-.2-.04.31-.03.38a8.7 8.7 0 0 0 1.1 3.4c-.04-.06.08-.4 0-.52m2.67.03c-.12-.59-.23-1.17-.37-1.75.02.09-.05.36-.02.5.14.57.25 1.14.36 1.7.02.1.03-.07.04-.09l-.01-.36m-2.18-.28c-.45-1.22-.72-2.82.11-3.92.1-.12-.06-.44 0-.53-.98 1.3-.64 3.55-.12 4.96-.04-.08.06-.37 0-.51'/%3e%3cpath d='M642.96 489.07c-.55-1.33-.26-2.7 1.08-3.3.1-.03-.02-.51 0-.53-1.66.73-1.71 2.85-1.09 4.35-.03-.08.07-.38.01-.52m6.64.75a.96.96 0 0 1-.1-.36c0-.02 0-.27-.02-.27-.04 0-.03.25-.03.27 0 .3.02.6.14.87.01.03.03-.16.03-.18 0-.1.02-.24-.02-.33m-3.5-2.97c-.41.5-.46 1.25-.61 1.85-.04.15.03.43.01.52.15-.6.2-1.35.6-1.84.1-.12-.07-.45 0-.53m-2.17 3.33c-.2-.31-.34-.66-.35-1.04 0-.03-.02-.21-.03-.19-.03.1-.02.23-.02.33.01.52.1.98.38 1.42.02.02.04-.17.04-.19 0-.08.02-.25-.02-.33m2.42-.12a2 2 0 0 1-.23-.74c0-.02-.02-.2-.03-.1a2.59 2.59 0 0 0 .25 1.35l.03-.19c0-.09.02-.24-.02-.32m2.98-.24v.99c0 .02 0 .26.02.26.03 0 .03-.24.03-.26v-.99c0-.02 0-.26-.03-.26s-.02.24-.02.26m-7.43.75c0-1.27-.11-2.55-.12-3.82 0-.3-.06-.3-.05 0 0 1.28.11 2.55.12 3.82 0 .3.05.3.05 0'/%3e%3c/g%3e%3cpath fill='%23999b9e' d='M692.79 473.45c-.43.16-.8.41-1.18.67-.05.03-.03.22-.03.27l.03.26c.38-.25.75-.51 1.18-.67.09-.03-.02-.53 0-.53m-6.23-3.34a9.5 9.5 0 0 0-2.78 2.48c-.1.13.07.45 0 .54.76-1 1.7-1.86 2.78-2.49.1-.06-.04-.5 0-.53'/%3e%3cg fill='none' stroke='%23000' stroke-width='.92'%3e%3cpath fill='%23949699' stroke-width='.23' d='M660.05 288.89c.78 1.4 4.05 12.05 4.05 12.05-10.84-11.93-36.22-20.3-65.8-20.3-29.17 0-54.44 8.16-65.53 19.83-.18.19 1.69-5.34 3.9-10.62 2.16-5.16 4.67-10.08 4.83-10.18 13.05-7.96 33.64-13.09 56.8-13.09 23.33 0 44.05 5.2 57.08 13.26 0 0 4.02 6.37 4.67 9.05z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cg fill='%23fd0' stroke-width='.46' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'%3e%3cpath d='M597.16 284.19s1.03 5.9 1.97 7.87c0 0 2.23-6.29 2.23-7.78m-8-1.74s-1.48 5.8-1.42 7.99c0 0 4.6-4.83 5.21-6.2m-6.72-5.08s-3.85 4.6-4.74 6.58c0 0 6.24-2.36 7.38-3.32'/%3e%3cpath d='M589.27 275.66s-5.29 2.83-6.86 4.34c0 0 6.67.14 8.1-.33'/%3e%3cpath d='M589.52 271.93s-5.96.68-7.97 1.5c0 0 6.14 2.6 7.64 2.68'/%3e%3cpath d='M591.04 268.71s-5.81-1.47-8-1.42c0 0 4.84 4.6 6.2 5.21'/%3e%3cpath d='M593.73 266.13s-4.86-3.51-6.9-4.27c0 0 2.79 6.06 3.83 7.13m6.98-4.34s-2.98-5.2-4.54-6.73c0 0 .05 6.67.57 8.08'/%3e%3cpath d='M601.08 264.74s-1.02-5.9-1.96-7.88c0 0-2.23 6.3-2.23 7.79m8.08 1.8s1.54-5.8 1.5-7.97c0 0-4.65 4.77-5.27 6.13'/%3e%3cpath d='M607.56 269.24s3.6-4.79 4.4-6.82c0 0-6.12 2.67-7.2 3.7'/%3e%3cpath d='M608.9 272.79s5.14-3.09 6.64-4.67c0 0-6.67.18-8.07.72'/%3e%3cpath d='M608.9 276.11s5.87-1.22 7.81-2.22c0 0-6.36-2.03-7.85-1.98'/%3e%3cpath d='M607.74 279.37s5.93.87 8.1.6c0 0-5.28-4.1-6.7-4.56'/%3e%3cpath d='M605.43 282.12s5.23 2.93 7.35 3.44c0 0-3.47-5.7-4.63-6.64m-6.71 5.19s3.42 4.92 5.1 6.31c0 0-.62-6.64-1.26-8'/%3e%3cellipse cx='599.04' cy='274.46' rx='10.52' ry='10.1'/%3e%3c/g%3e%3cg transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'%3e%3cpath fill='%23000' d='M595.62 271.52c0 .49-.42.89-.94.89s-.94-.4-.94-.89.42-.88.94-.88.94.4.94.88' stroke='none'/%3e%3cpath stroke-width='.68' d='M592.77 271.5c1.02-1.52 2.71-1.45 3.88 0'/%3e%3cpath fill='%23000' d='M604.29 271.64c0 .49-.42.88-.94.88s-.94-.4-.94-.88c0-.49.42-.88.94-.88s.94.4.94.88' stroke='none'/%3e%3cpath stroke-width='.68' d='M601.44 271.61c1.02-1.52 2.71-1.45 3.88 0m-7.94 3.71c.61.05 1.04.33 1.67.36.65.03 1.03-.26 1.58-.42'/%3e%3cellipse stroke-width='.68' cx='599' cy='278.37' rx='2.34' ry='.33'/%3e%3cpath stroke-width='.81' d='M598.04 280.83c.6 0 1.19.12 1.74-.06'/%3e%3c/g%3e%3cpath d='m557.53 278.96-.95-2s-2.95.2-4.32 2.74c0 0-1.9-2.22-5.16-.95l-.1 2.95s2.21-3.06 4.53-.95c0 0-1.06 4.42 1.58 4.21 2.63-.2.84-3.9.31-4.1l-.52-.22s1.47-2.52 4.63-1.68zm-4.33 3.57c.15.62.07 1.18-.18 1.24-.25.06-.58-.39-.74-1-.16-.63-.08-1.18.17-1.25s.59.39.75 1zm21.8-11.01c-.21-.13-.73-.47-1.48-.34 0 0 .69.64.58.9 0 0-.1.55-.7.49 0 0-2.34-.26-4.24 1 0 0-1.33.2-1.43-.08 0 0-.23-.45-.03-.63a.19.19 0 0 1 .05-.03c.28-.15-1.42.23-1.03 1.04.39.82 1.28 1.12 2.05 1.05h.12v-.02s.56-.03 0 .01c.05.13 2.17 4.78 3.54 4.31 1.4-.47 1.57-4.85 1.42-5.33l-.07-.19s-.05-.16 0 0c.03 0 3.02-1.1 1.22-2.18zm-2.87 6.05c-1 .2-2.22-2.94-2.1-3.03 1.32-1.03 2.3-.89 2.57-.82-.16-.2.09.02.09.02l-.09-.02c.18.22.54 3.66-.47 3.85z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='1.61' d='M626.1 274.92c0-.38-.02-.75-.11-1.1a2.35 2.35 0 0 0-.44-.8 4.04 4.04 0 0 0-.9-.85c-.55-.34-1.11-.08-1.08.58.03.66.6 1.2 1.13 1.52.44.26.91.47 1.4.65 1.67.6 3.31.94 4.26 1.55.4.25.76.51 1.2.69a2.4 2.4 0 0 0 2.1-.09c.46-.27 1.15-.97.63-1.5-.6-.59-1.64-.38-2.36-.11-.56.21-1.17.55-1.64.9.27.58-.1 1.18-.23 1.83-.16.5-.32 1.01-.31 1.55.01.72 1.08 2.26 1.53.98.26-.74.13-1.85-.63-2.25-.2-.1-.39-.2-.59-.28-1.46-.6-2.97-.86-4.26-1.44a3.76 3.76 0 0 0-1.55-.3c-.45.03-.9.2-1.1.62-.17.32-.36.73-.15 1.07.43.7 1.6.06 2.06-.28.35-.26.58-.67.74-1.1a6 6 0 0 0 .3-1.84z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M645.98 282.55s-1.35-.7-2.25.73c0 0-3.35-.37-1.22-5.5.06-.14-2.16.92-1.69 4.2 0 0 .43 2.75 3.6 4.01 0 0 2.65.58 2.55-1.99 0 0-.13-1.24-.99-1.45zm-.77 2.25c-.32 0-.58-.27-.58-.6s.26-.6.58-.6c.32 0 .58.27.58.6 0 .33-.26.6-.58.6z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M644.19 281.61s1.46.43 2.06-1.15c0 0 3.37-.3 2.27 5.16-.03.15 1.94-1.33.84-4.45 0 0-.96-2.62-4.3-3.24 0 0-2.72-.05-2.12 2.44 0 0 .37 1.2 1.25 1.24zm.32-2.35c.3-.07.62.15.68.47a.59.59 0 0 1-.45.7.59.59 0 0 1-.68-.47.59.59 0 0 1 .45-.7z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23fd0' d='m672.31 408.85-1.09-2.35s-3.38.25-4.95 3.21c0 0-2.17-2.6-5.91-1.11l-.12 3.45s2.54-3.57 5.19-1.1c0 0-1.2 5.17 1.81 4.93 3.02-.25.97-4.57.36-4.81l-.6-.25s1.69-2.96 5.31-1.97m-4.97 4.18c.18.72.1 1.37-.2 1.45-.29.07-.67-.45-.85-1.18-.18-.73-.09-1.38.2-1.45s.67.45.85 1.18m25-12.9c-.25-.15-.83-.55-1.7-.4 0 0 .8.75.67 1.06 0 0-.12.65-.81.57 0 0-2.67-.3-4.86 1.18 0 0-1.52.22-1.64-.1 0 0-.26-.52-.03-.74a.22.22 0 0 1 .05-.04c.32-.17-1.61.28-1.17 1.23.44.95 1.47 1.3 2.35 1.23l.13-.01v-.02s.65-.04 0 .02c.07.15 2.5 5.59 4.07 5.04 1.6-.55 1.79-5.68 1.62-6.24l-.08-.22s-.05-.19 0 0c.03-.01 3.46-1.3 1.4-2.56m-3.29 7.1c-1.15.22-2.54-3.45-2.4-3.56 1.5-1.2 2.62-1.04 2.94-.96-.19-.24.1.03.1.03l-.1-.03c.2.26.61 4.29-.54 4.51' stroke='none'/%3e%3cpath stroke='%23fd0' d='M626.1 274.92c0-.38-.02-.75-.11-1.1a2.35 2.35 0 0 0-.44-.8 4.04 4.04 0 0 0-.9-.85c-.55-.34-1.11-.08-1.08.58.03.66.6 1.2 1.13 1.52.44.26.91.47 1.4.65 1.67.6 3.31.94 4.26 1.55.4.25.76.51 1.2.69a2.4 2.4 0 0 0 2.1-.09c.46-.27 1.15-.97.63-1.5-.6-.59-1.64-.38-2.36-.11-.56.21-1.17.55-1.64.9.27.58-.1 1.18-.23 1.83-.16.5-.32 1.01-.31 1.55.01.72 1.08 2.26 1.53.98.26-.74.13-1.85-.63-2.25-.2-.1-.39-.2-.59-.28-1.46-.6-2.97-.86-4.26-1.44a3.76 3.76 0 0 0-1.55-.3c-.45.03-.9.2-1.1.62-.17.32-.36.73-.15 1.07.43.7 1.6.06 2.06-.28.35-.26.58-.67.74-1.1a6 6 0 0 0 .3-1.84z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23fd0' d='M773.7 413.05s-1.54-.83-2.57.85c0 0-3.85-.42-1.4-6.44.07-.17-2.47 1.08-1.93 4.91 0 0 .49 3.24 4.12 4.71 0 0 3.04.68 2.92-2.33 0 0-.15-1.45-1.13-1.7m-.88 2.63c-.37 0-.67-.31-.67-.7s.3-.7.67-.7c.36 0 .66.31.66.7 0 .39-.3.7-.66.7' stroke='none'/%3e%3cpath fill='%23fd0' d='M771.66 411.95s1.67.5 2.36-1.35c0 0 3.86-.35 2.6 6.04-.04.18 2.22-1.55.96-5.2 0 0-1.1-3.08-4.94-3.8 0 0-3.1-.06-2.41 2.86 0 0 .41 1.4 1.43 1.45m.36-2.76c.36-.07.7.18.78.56.08.38-.15.75-.51.82-.36.07-.71-.18-.79-.56-.07-.38.16-.74.52-.82' stroke='none'/%3e%3c/g%3e%3cpath fill='%23fd0' d='m716.54 549.26.09-3.64s16.09.7 23.83.62v2.84s-21.14.36-23.92.18'/%3e%3cpath fill='%235c5342' d='M744.34 543.92h6.45v1.66h-6.45z'/%3e%3cpath d='M753.97 544.68v3.4h-.35v-3.4L750 525.76l.2-.05 3.64 18.78 3.09-6.28.18.03m-16.43 7.67h.35v2.3h-.35zm.61 0h.35v2.3h-.35zm1.47 0h.35v2.3h-.35zm.83 0h.35v2.3h-.35zm1.25 0h.35v2.3h-.35zm1.28 0h.35v2.3h-.35zm.83 0h.35v2.3h-.35zm1.04 0h.35v2.3h-.35zm1.04 0h.35v2.3h-.35zm.99 0h.35v2.3h-.35zm1.4 0h.35v2.3h-.35zm3.64-.23h.35v2.3h-.35zm.95-3.4h.35v5.34h-.35zm-4.03.96h.35v4.97h-.35zm-9.99 4.35h.48v.62h-.48z'/%3e%3cpath d='m752.88 547.84.03-.02c.25-.17 2.09-1.45 2.6-1.44.53.01 1.13-.03 1.13-.03v.38l-1.17.04-2.03 1.06m1.29.17.03-.02c.24-.18 2.07-1.48 2.57-1.48.54 0 1.14-.05 1.14-.05v.38l-1.16.06-2.01 1.09m-4.55-4.94h1.6v.29h-1.6z'/%3e%3cpath d='M752.37 541.74c-.2.03-.36.62-.34 1.32.02.7.2 1.25.41 1.22.2-.02.36-.62.34-1.32-.02-.7-.2-1.25-.41-1.22m.06 2.17c-.15.02-.28-.37-.3-.86 0-.5.1-.92.25-.94.15-.02.28.37.29.87.01.5-.1.91-.24.93m-6.39-15.69-9.02.39v-.23l9.4-.34'/%3e%3cpath d='m737.14 522.23 4.04 23.16-3.74-12.84.04-.65 2.8 9.78-3.18-17.96.04-1.49z'/%3e%3cpath d='m739.27 545.55-1.8-14.64-.15.57 1.57 13.87.3.11m-1.04-.03s-.04-5.31-.67-6.76l-.08.42.6 6.26c.04.46.15.08.15.08m-.71-11.55-1.5 11.43.26.15 1.35-11.23m-.49-5.96-1.94 16.01.19.27 1.71-15.94'/%3e%3cpath d='m737.36 532.4-12.46 8.29-.15-.23 12.53-8.3v.16'/%3e%3cpath fill='%23858d8d' d='M744.7 542.83h6.45l-.35 1.09h-6.45z'/%3e%3cpath fill='%23755338' d='m755.24 545.24.02-.12 1.9-8.03.25.05-1.9 7.9'/%3e%3cpath fill='%23fd0' d='M761.19 540.61c-.82.3-1.87-1.45-2.36-2.3-.48-.83-1.72-.53-1.72-.53l-.31 1.06c.24-.05 1.23-.19 1.66.55.49.84 1.53 2.6 2.36 2.29l-.46 1.33h.01l.82-2.4z'/%3e%3cpath fill='%23034ea2' d='M758.46 539.39c-.42-.73-1.42-.6-1.66-.55l-.17.57c.31-.06 1.2-.14 1.6.55.5.84 1.54 2.6 2.36 2.3l-.25.74.02.02.46-1.34c-.83.3-1.87-1.45-2.36-2.29'/%3e%3cpath fill='%23ed1c24' d='M756.52 539.77h.07c1.34.04 1.72 1.03 1.98 1.68.24.6 1.56 1.42 1.76 1.55l.26-.74c-.82.3-1.87-1.46-2.36-2.3-.4-.69-1.3-.6-1.6-.56l-.1.31s-.03.06-.01.06'/%3e%3cg fill='%23a37853'%3e%3cpath d='m737.46 533.62 13.1-8v-.17h-.28l-12.85 7.66v.37'/%3e%3cpath d='m737.6 528.53.26 16.77-.5.2-.43-16.23.06-12.98.14.09.11 12z'/%3e%3cpath d='M736.25 545.64c0 .22.16.4.35.4l19.45-.29c.2 0 .35-.18.34-.4 0-.23-.16-.4-.35-.4l-19.45.28c-.2 0-.34.19-.34.41'/%3e%3c/g%3e%3cg stroke='%23000' stroke-width='.13'%3e%3cpath fill='%23616264' d='M727.71 541.95s.8.04 2.43.3c0 0-1.8.24-2.77.55-.98.32-2.87 2.18-3.27 2.54-.4.35-.58.53-.58.53l-3.06-.02s1.42-1.83 2.03-2.27c.6-.45 1.81-1.26 2.4-1.36.6-.1 1.7-.36 2.82-.3' stroke='none'/%3e%3cpath fill='%23a3a5a8' d='M736.66 546.21a6.06 6.06 0 0 0-5.93-3.95h-.1c-4.53.19-4.76 2.05-6.47 3.61h-.32l-.04.06s9.32.28 12.86.28z'/%3e%3cpath d='M735.41 545.57a.1.1 0 0 1-.14-.05.11.11 0 0 1 .05-.15.1.1 0 0 1 .14.06.1.1 0 0 1-.05.14m-.24-.49a.11.11 0 0 1-.15-.03.1.1 0 0 1 .03-.15.11.11 0 0 1 .15.03.1.1 0 0 1-.03.15m-.3-.45c-.05.03-.11.03-.14-.02-.04-.05-.04-.11.01-.15.05-.04.12-.04.15.01.04.05.03.12-.02.16m-.35-.41a.1.1 0 0 1-.15 0 .12.12 0 0 1 0-.16.1.1 0 0 1 .15 0c.05.05.04.12 0 .16m-.38-.38a.11.11 0 0 1-.15.02c-.05-.04-.05-.1-.02-.15s.1-.06.15-.02c.05.04.06.1.02.15m-.41-.33c-.03.05-.1.06-.15.03a.1.1 0 0 1-.03-.14c.03-.05.1-.07.15-.04.06.03.06.1.03.15m-.46-.28c-.03.05-.1.07-.14.04a.12.12 0 0 1-.05-.15.1.1 0 0 1 .15-.04c.05.03.07.1.04.15m-.48-.23a.11.11 0 0 1-.14.06.11.11 0 0 1-.06-.14.1.1 0 0 1 .14-.06.1.1 0 0 1 .06.14m-.5-.2a.11.11 0 0 1-.13.08.1.1 0 0 1-.08-.13c.02-.05.08-.1.13-.08.06.02.1.07.08.13m-.52-.11c-.01.06-.06.1-.12.09a.12.12 0 0 1-.09-.13c.01-.06.06-.1.12-.09.06.01.1.07.09.13m-.53-.07c0 .06-.05.1-.11.1a.1.1 0 0 1-.1-.1c0-.07.05-.12.11-.11.06 0 .1.05.1.11m-.53-.02c0 .06-.04.1-.1.1a.1.1 0 0 1-.11-.1c0-.05.04-.1.1-.11.06 0 .1.05.11.11m-.53.04c0 .06-.04.11-.1.12a.1.1 0 0 1-.11-.1.1.1 0 0 1 .1-.12.1.1 0 0 1 .11.1m-.53.05c0 .06-.03.11-.1.12a.11.11 0 0 1-.11-.1.1.1 0 0 1 .09-.12c.06 0 .11.04.12.1m-.52.08c.01.06-.02.12-.08.13a.1.1 0 0 1-.13-.08.11.11 0 0 1 .09-.13.1.1 0 0 1 .12.08m-.52.12a.1.1 0 0 1-.07.13.134.134 0 0 1-.14-.08.1.1 0 0 1 .08-.13c.06-.01.11.02.13.08m-.5.17c.02.06 0 .12-.06.14a.1.1 0 0 1-.14-.06.1.1 0 0 1 .06-.14.1.1 0 0 1 .14.06m-.49.21c.03.06.01.12-.04.15a.1.1 0 0 1-.14-.03.11.11 0 0 1 .04-.15.1.1 0 0 1 .14.03m-.45.29c.03.05.02.12-.02.15-.05.03-.11.03-.15-.02a.113.113 0 0 1 .02-.16c.05-.03.12-.02.15.03m-.41.35a.1.1 0 0 1 0 .15.11.11 0 0 1-.16 0 .1.1 0 0 1 0-.16.1.1 0 0 1 .16.01m-.37.38c.04.04.05.1 0 .15a.1.1 0 0 1-.14.01.11.11 0 0 1-.01-.15.1.1 0 0 1 .15 0m-.36.4c.05.04.05.1.01.15a.1.1 0 0 1-.15.02.11.11 0 0 1 0-.16.1.1 0 0 1 .14-.01m-.35.4a.1.1 0 0 1 0 .15.1.1 0 0 1-.15 0 .11.11 0 0 1 0-.15.1.1 0 0 1 .15 0' fill='%23797a7d' stroke='none'/%3e%3cpath fill='%23939598' d='M729.55 542.2c-4.65.17-4.85 2.06-6.59 3.63l.88.03.32.01c1.71-1.56 1.93-3.42 6.48-3.6a6.23 6.23 0 0 0-1.09-.07z'/%3e%3cg fill='%23442c13' stroke-width='.12'%3e%3cpath d='m596.42 395.94.13-2.25.52-.03v.62l3.72-.1-.81 2.09-3.53-.13-.06-.3' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='m598.22 389.02.1 5.58-.46.03.23-5.61zm2.06-.33.1 5.68-.33.06.03-5.74zm2.31 4.51-.23-5.42-.13.04.1 5.41zm3.32-.57.99-4.98-.1.07-1.2 4.9z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='m602.23 387.81-2.25 6.5-.36-.07 2.35-6.46zm.52.1.56 4.9.29-.04-.62-4.86z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3c/g%3e%3cpath fill='%23a48b58' stroke-width='.12' d='M606.8 387.71h-5.1l-3.61 1.3 4.27.14z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23a37853' stroke-width='.12' d='m597.96 389.15 3.85-1.27 5.1-.1.02-.36-5.22.1-3.72 1.2z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M722.38 542.35c0-.8.53-1.45 1.2-1.45.57 0 1.05.5 1.16 1.16l.25-.04c-.13-.8-.71-1.41-1.42-1.41-.8 0-1.44.78-1.44 1.74 0 .28.06.54.16.78l.22-.15c-.08-.19-.13-.4-.13-.63z'/%3e%3cpath fill='%23939598' d='M721.11 545.75c1.9-1.6 1.96-3.58 6.67-3.78a6.25 6.25 0 0 0-1.09-.06c-4.8.17-4.85 2.18-6.76 3.78a.6.6 0 0 0-.1.13l1.19.03.09-.1z'/%3e%3c/g%3e%3cpath fill='%23fd0' d='M743.67 548.94v-.25s12.6.02 12.66-.71c.08-.75-6.1-.45-15.75.05'/%3e%3cpath fill='%23696161' opacity='.75' d='M708.02 530.86c-.75.09-1.3-.77-2 .34l-.06.07c-.48.56-.73 1.34-.43 1.93.17.35 1 .66 1.37.71.92.13 1.66-.63 1.75-1.52.43.54 1.68.56 2.31.6 1.1.06 1.4-.14 1.58-1.32.65.93 1.17 1 2.27.8 1.27-.22 2.74-.37 3.67-1.33.35.55.86.85 1.48.85.54.01 1.25-.09 1.75-.28.42-.16.89-.75 1.31-.83.33.5.98.3 1.41.39.81.5 1.69.82 2.99.11.34-.19 1.56.27 1.98.07.3-.15.36-.44.6-.6.54.42 1.4-.01 1.97-.16.45.02 1.08-.05 1.25-.6.79-.49.56-.9.31-1.12-1.26-.52-2.13-.52-3.3.34-.4-.1-.59-.1-.87.42-.5-.78-1.39-1-2.3-.44-.78-.45-1.18-.12-1.81-.1-1.26-.96-3.5-.83-5.06.1-1.77-.84-2.31-.36-3.48.53-.66-.3-1.47-.11-2.2-.06-.64.05-.98.89-1.55.6-1.27-.61-1.88.34-2.83.3-1.04-.91-2.1.2-2.1.2'/%3e%3cpath fill='%2384848a' d='M707.99 548.97c0 .61-.48 1.1-1.08 1.1-.6 0-1.08-.5-1.08-1.1v-13.59c0-.6.48-1.1 1.08-1.1.6 0 1.08.5 1.08 1.1v13.59z'/%3e%3cpath fill='%23453717' d='M717.07 546.5s-.7.69-.87.75c-.17.05-1.01.42-1.18.42-.17 0-.53.03-.92.03h-.76l-.68-.05.28 1.34 3.76.09.37-2.58z'/%3e%3cpath fill='%236a5e46' d='M713 546.61h-1.4l-.02.14h-1.22l-.27 2.26 2.85-.02'/%3e%3cpath d='M710.59 548.62c0 .03-.02.06-.06.06a.06.06 0 0 1-.05-.06v-1.17a.06.06 0 1 1 .11 0v1.17zm.31 0c0 .03-.02.06-.06.06a.06.06 0 0 1-.05-.06v-1.17a.06.06 0 1 1 .11 0v1.17zm.33 0c0 .03-.02.06-.06.06a.06.06 0 0 1-.05-.06v-1.17c0-.04.02-.06.05-.06s.06.02.06.06v1.17zm.51 0a.06.06 0 1 1-.11 0v-1.17c0-.04.02-.06.05-.06.03 0 .06.02.06.06v1.17zm.47 0c0 .03-.02.06-.06.06a.06.06 0 0 1-.05-.06v-1.17c0-.04.02-.06.05-.06s.06.02.06.06v1.17zm.4 0c0 .03-.02.06-.06.06s-.05-.03-.05-.06v-1.17c0-.04.02-.06.05-.06.04 0 .06.02.06.06v1.17z' fill='%23453717'/%3e%3cpath fill='%232f2311' d='M709.66 548.93v-.12l.06-2.6-.28.08-.03 1.33-.28.1-.11-.3h-.68l-.23.1v1.23zm-8.72-1.6-.37.03v.2h-.42l-.03-.41h-.36v-.32l-.45-.02-.08-1.09H699v-1.49l-.31-.03.1 3.18-.18.03v.35h.2l-.09 1.05 4.27.24-.12-1.72h-.4v.23l-1.1-.12-.07.4h-.28z'/%3e%3cpath fill='%23866d46' d='m703.75 547.72-.91-.04.15 1.25.78-.08z'/%3e%3cpath fill='%23acacad' d='M708.09 539.94a1.7 1.7 0 0 0-1.19-.44c-.48 0-.91.17-1.18.44a.57.57 0 0 0-.02.14c0 .05 0 .1.02.14.27-.27.7-.44 1.18-.44.5 0 .92.17 1.19.44l.02-.14-.02-.14'/%3e%3cpath fill='%23866d46' d='m707.28 547.33-.04-.38.27-.34-.68-.12-.04.36-.35.02-.06.2h-.25l-.17.06-.12.37-.2-.26.09 1.6 2.22-.05v-1.44'/%3e%3cpath fill='%232f2311' d='m703.5 548.93 2.4-.08-.08-1.23-2.25.02'/%3e%3cpath fill='%23453717' d='m698.38 548.94.04-1.76-.49.08h-.34l-.26-.15-.04.11-1.23.04-.15-.38-.75.07-.04.27-.93.04-.15-.35h-.26v-1.9l-.41.03-.19 2.3-.37.03v-.3l-.49-.04-.07.57-.57-.08.04-.53h-.52l-.08.61-3.17.08.15-2.76-.53-.07.04 2.75s-2.06-.69-2.4-1.03l1.24 1.49s4.11.8 11.93.88'/%3e%3cpath fill='%23895f33' d='M685.52 547.95s-.67-.2-5.9-1.8c-5.25-1.6-7.75-2.75-8.24-2.9-.49-.15-1.2 0 1.01 1 2.2.99 10.51 3.85 11.9 3.82 1.38-.04 1.5.07 2.43-.12.93-.2-1.2 0-1.2 0'/%3e%3cpath fill='%23fff' d='M708.02 530.86c-.76.09-1.3-.77-2 .35l-.06.06c-.48.56-.73 1.34-.44 1.93.18.35 1 .66 1.38.72.91.12 1.66-.64 1.74-1.53.44.54 1.69.56 2.32.6 1.1.06 1.4-.14 1.58-1.32.65.93 1.16 1 2.27.8 1.27-.21 2.74-.37 3.67-1.33.35.55.86.85 1.48.86a5.2 5.2 0 0 0 1.75-.29c.42-.16.88-.75 1.31-.83.33.5.98.3 1.41.4.8.5 1.69.8 2.99.1.34-.18 1.55.27 1.98.07.3-.15.36-.44.6-.6.54.42 1.4 0 1.97-.16.45.03 1.08-.05 1.25-.6.79-.49.56-.9.3-1.12-1.25-.51-2.12-.51-3.3.34-.39-.1-.58-.09-.86.42-.5-.78-1.39-1-2.3-.44-.78-.45-1.19-.12-1.81-.1-1.26-.96-3.5-.83-5.07.1-1.76-.84-2.3-.36-3.47.53-.66-.3-1.47-.11-2.2-.05-.65.05-.98.88-1.56.6-1.26-.62-1.87.33-2.82.29-1.04-.91-2.11.2-2.11.2'/%3e%3cpath fill='%23ffe600' d='m740.68 548.21.61.77H716.6l-18.03-.23s-7.85-.2-11.7-.58c-3.86-.38-8.24-1.49-8.24-1.49.04 1.19.87 1.8 1.54 2.41.09.08.25.17.46.25 1.45.59 5.41 1.32 6.68 1.55 1.46.27 6.66.57 10.18.53 3.51-.03 39.24-.19 39.24-.19v-.34c1.38.23 18.93-1.07 18.93-1.07.05-.08.1-.21.17-.37.18-.44.38-1.1.47-1.36l.03-.12-15.65.24z'/%3e%3cpath d='m683.35 552.03-8.83-7.03.68.23 8.15 6.5z'/%3e%3ccircle transform='matrix(1.14637 0 0 1.17117 33.18 82.14)' fill='%23565759' stroke='%23000' stroke-width='.23' cx='567.74' cy='398.67' r='.48'/%3e%3cpath fill='%23565759' stroke='%23000' stroke-width='.13' d='m684.74 550.52.06.2c-.36.4-.67.21-.67.21v-1.58a.22.22 0 0 0 .14-.2c0-.13-.1-.23-.22-.23-.11 0-.21.1-.21.22 0 .09.05.16.12.2v1.6s-.32.19-.68-.23l.06-.2-.48.07.19.44.08-.13s.5.43.89.43h.04c.38 0 .9-.43.9-.43l.08.13.19-.44-.49-.06z'/%3e%3cpath d='M686 549.04c0-.18.15-.33.33-.33.17 0 .32.15.32.33 0 .18-.15.33-.32.33a.33.33 0 0 1-.33-.33m3.02.61c0-.18.15-.33.32-.33.18 0 .33.15.33.33 0 .18-.15.33-.33.33a.33.33 0 0 1-.32-.33m2.98.11c0-.18.15-.33.32-.33.18 0 .33.15.33.33 0 .18-.15.33-.33.33a.33.33 0 0 1-.32-.33m3.42-.05c0-.18.15-.33.33-.33.18 0 .32.15.32.33 0 .18-.14.33-.32.33a.33.33 0 0 1-.33-.33m3.31.05c0-.18.15-.33.33-.33.18 0 .32.15.32.33 0 .18-.14.33-.32.33a.33.33 0 0 1-.33-.33m3.09-.05c0-.18.15-.33.32-.33.18 0 .33.15.33.33 0 .18-.15.33-.33.33a.33.33 0 0 1-.32-.33m8.75.34c0-.18.15-.33.32-.33.18 0 .33.15.33.33 0 .18-.15.33-.33.33a.33.33 0 0 1-.32-.33m8.98.23c0-.18.15-.33.33-.33.18 0 .32.15.32.33 0 .18-.14.33-.32.33a.33.33 0 0 1-.33-.33m3.08.11c0-.18.15-.33.33-.33.18 0 .32.15.32.33 0 .18-.14.33-.32.33a.33.33 0 0 1-.33-.33m2.7 0c0-.18.15-.33.33-.33.18 0 .32.15.32.33 0 .18-.14.33-.32.33a.33.33 0 0 1-.33-.33m2.75 0c0-.18.15-.33.33-.33.18 0 .32.15.32.33 0 .18-.14.33-.32.33a.33.33 0 0 1-.33-.33m2.63-.05c0-.18.15-.33.33-.33.17 0 .32.15.32.33s-.15.33-.32.33a.33.33 0 0 1-.33-.33m2.53-.12c0-.18.15-.33.33-.33s.32.15.32.33a.324.324 0 1 1-.65 0m2.64 0c0-.18.15-.33.33-.33.18 0 .32.15.32.33 0 .18-.14.33-.32.33a.33.33 0 0 1-.33-.33m-31.09-.46c0-.18.15-.33.33-.33.18 0 .32.15.32.33 0 .18-.14.33-.32.33a.33.33 0 0 1-.33-.33m2.81.17c0-.18.15-.33.33-.33.17 0 .32.15.32.33 0 .18-.15.33-.32.33a.33.33 0 0 1-.33-.33'/%3e%3cg fill='none' stroke-width='.23' stroke='%23000' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'%3e%3ccircle cx='622.02' cy='399.23' r='.35'/%3e%3ccircle cx='624.18' cy='399.04' r='.35'/%3e%3ccircle cx='626.28' cy='398.89' r='.35'/%3e%3c/g%3e%3cpath fill='%23ed1c24' d='m682.56 551.38.5.4-.09.31a1 1 0 0 0 .22.29l.09.09h.03c1.05 1.03 3.88 2.59 3.88 2.59l12.15.35h.22s55.16-.37 55.16-.66-.47-2.56-.47-2.56-.29-.23-.59-.16c-.73.17-4.72.52-7.57.81-.94.1-1.79.18-2.31.25-2.09.31-.28 0-.28 0s-21.54.24-24.53.16c-2.99-.07-20.38.09-20.38.09s-10.91-.78-11.81-.78-2.69-.76-3.44-.84a2.55 2.55 0 0 1-.78-.34z'/%3e%3cpath fill='%23034ea2' d='M755.83 549.45c-.06.16-.12.3-.17.37 0 0-17.55 1.3-18.93 1.07v.34s-35.73.16-39.24.2a82.1 82.1 0 0 1-10.18-.54c-1.27-.23-5.23-.96-6.67-1.54l-.73.09s1.57 1.3 2.64 1.94c.34.2.62.33.8.35.74.08 2.54.84 3.44.84s11.82.77 11.82.77 17.36-.16 20.35-.08c3 .08 24.54-.15 24.54-.15s-1.8.3.3 0 8.9-.84 9.87-1.07c.3-.08.65-.36.97-.72.68-.77 1.28-1.88 1.28-1.88l-.09.01'/%3e%3cpath fill='%23fd0' d='m716.54 549.26.09-3.64s16.09.7 23.83.62v2.84s-21.14.36-23.92.18'/%3e%3cpath d='m730.02 554.92.39.29.42-.29-.17-2.78-.53-.02-.11 2.8zm-.68-2.78-.83 2.47.28.38.49-.15.62-2.72h-.1l-.46.02m-2.18 1.73.17.46h.5l1.2-2.18-.7.04-1.17 1.68zm-1.04-1.05.04.48.49.14 1.23-1.23-1.05.03-.71.58zm5.74 1.88.46.13.3-.41-.96-2.24-.6-.02.8 2.54zm1.1-.49.47.02.2-.47-1.13-1.55-.72-.03 1.18 2.03zm1.14-.9.47-.1.07-.52-.55-.43-1.1-.03 1.11 1.08z' fill='%239b7e39'/%3e%3cg fill='none' stroke='%23d0c9ce' stroke-width='.13'%3e%3cpath fill='%23fff' stroke='%23999b9e' d='m716.79 523.61.12.1s.12-.2.24-.2.43.15.43.15l.06-.2.54.15-.03-.26s.36.05.35.02l-.04-.22.45.03-.03-.2s.61.08.6.04l-.13-.24s.5.05.7.05c.2 0 .18.06.18.06v-.16l.8-.02-.13-.19.6-.01-.26-.28s1.2.4 1.57.04c0 0-.55.04-1.16-.16-.62-.2-1.2-.26-1.42-.32a8.02 8.02 0 0 1-1.7-.66h.21s-1.34-.51-2.03-.62c0 0-.87-.18-1.28.12 0 0-.19.24-.34.3-.15.07-.48.29-.5.32-.03.03-.1-.07-.5.17 0 0-.1.04-.12.03 0 0-.77-.39-1.68-.03l-.07.04s-.37-.17-.66-.17c-.03 0-.34-.18-.4-.21l-.02-.01s-.37-.77-1.06-.7c-.68.06-1 .22-1.1.25-.1.02-.8.27-.94.3-.14.03-.45.17-.45.17s-.62.27-.76.3c-.15.02-.99.21-1.02.21-.04 0 .08.04.1.04 0 0-.64.2-1.02.24-.36.05-1.5.23-1.6.2-.08-.02-.03 0-.03 0s.33.17 1.27.08l.37-.01h.04l-.41.2c.02-.01.99-.01.8.03-.07.02-.3.18-.3.18l.93.01-.13.13s.86.04.95.02l-.15.18s.44-.02.74-.1l-.15.22.63-.03-.23.23s.4.06.5.04l.05-.01-.17.14h.6l-.06.12.53-.1.14.16s.42-.19.47-.18l.27.2s.27-.23.3-.24h.04s.1.22.21.28c0 0 .2-.14.26-.13.05 0 .15.15.15.15l.14-.13.35.13s.07-.2.17-.17c.1.02.52.79 1.46.85 1.18.07 1.65-.59 1.65-.59l.35-.22.05.21.37-.17v.1s.47-.2.48-.28l.17.24s.3-.2.33-.19c.05.01.1.14.34.18'/%3e%3cpath d='m713.3 523.5.06.08m-.24-.01c0 .04.02.08.04.11'/%3e%3cpath stroke='%23fff' d='M706.23 522.25a.15.15 0 0 1-.1.05m-.2.01c-.05.02-.09.06-.15.07'/%3e%3cpath d='M720.25 522.73s-1.37-.35-1.83-.83c0 0 .04-.09-.02-.16s-.03-.02-.03-.02.24.14.45.12c0 0-.02-.17-.14-.25m1.29.15s-.72.03-1.17-.02'/%3e%3cpath d='M720.57 522.06s-.24 0-.41.04c-.17.03-.7.05-.89-.06-.19-.12-.3-.13-.44-.17m.51.9c-.04 0-1.01-.34-1.33-.72m.88.94s-.67-.13-1.45-.92m1.04 1.1c-.04-.03-1.45-.46-1.5-1.13m1.18 1.32s-.8-.16-1.5-1.19m.98 1.29s-.82-.63-1.04-1.12m.56 1.19c-.02-.04-.59-.76-.67-1.23m-.06 1.12s-.3-.9-.19-1.29m-.3 1.25c0-.03-.04-.08.02-.34a.78.78 0 0 0-.05-.51m-.46 1.03c0-.02 0-.31.1-.52.1-.21.14-.41-.01-.65m-.51 1.14s-.06-.2.13-.45l.02-.23s.07.01.05-.04l-.06-.14m-.8-.62c.08-.07.2-.24.19-.27l-.05-.1.08.1s.04.01.13-.05c.1-.07.2-.07.26-.14.06-.06.1-.12.15-.14.04-.03.12.02.2-.01.07-.03.3-.15.34-.2l.1-.14c.04-.03.1-.12.1-.12s.25.07.42.07l.4-.01c.15 0 .5-.03.64 0l.53.08c.05 0 .2.05.33.07.11.02.31-.04.38-.06'/%3e%3cpath d='M715.05 522.61c.06.02.2.08.22.13-.05-.12.13-.2.2-.28.07-.09.07-.19.07-.3m-.15-.18c.21.18.39.38.56.6.02-.13.02-.25.07-.38.03-.06.14-.13.12-.21'/%3e%3cpath d='m715.78 521.36.15.34c.05.1.09.22.16.3.06.08.15.14.24.2.07.04.16.11.24.13.06-.05.08-.16.08-.23 0-.08-.1-.2-.05-.27m-.21-.51c.03.32.22.48.5.65.11.06.33.17.45.15.18-.02.1-.22.1-.32'/%3e%3cpath d='M716.72 521.41c.08.08.2.12.3.18l.2.2c.04-.03.04-.1.02-.12m-.23-.41c.02.1.12.25.19.33.1.12.22.23.36.3.08.06.23.13.33.13.14.01.13-.13.08-.21.08.13.33.08.45.12'/%3e%3cpath d='M715.74 521.37c.24 0 .46-.07.7-.1.16-.02.34-.04.5-.02.15.02.29.08.43.08.04-.08-.04-.2-.09-.26m.16.05c.12.1.24.19.4.24.06.03.13.03.19.06.05.02.08.06.12.1m-.59-.11c.13.04.26.08.3.22m-2.99 1.1c-.06.09-.1.18-.18.26m.71-.25c0 .06.02.12 0 .17m-.02.26c-.02.08-.06.17-.05.26.02 0 .02-.01.03-.02m.51-.23-.03.12m-.24-1c.05.07.07.14.12.2.04.06.08.09.09.15m.33-.11a.2.2 0 0 1-.05-.1m.01-.12.06.12m-.05-.26.04.08m.16 1.05.04.05m.19-.31c.04.06.04.13.06.2m.26.16c-.04-.05-.02-.11-.04-.17m.81.01c.04.04.08.07.14.08m.16.08c.04.04.16.06.17 0m-.19-.41c.04.06.1.11.17.14m.75-.46c.1-.01.18.07.28.08m-.25-.49c.03.05.16.2.23.2m.34.09c.02.06.19.06.24.09m-2.52-1.89.2.1c.05.02.13.06.19.03m-.62-.13c.11 0 .19.09.3.09a.46.46 0 0 0-.12-.05m-.43-.02c.12.03.12.04.2.12v-.03m-.44-.15c.05.05.13.07.16.14m-.29-.13c0 .04.03.07.07.09m-.37-.02a.17.17 0 0 1-.08-.1m.19.75c.19.1.23.3.28.47m2.31-.54c.15.03.21.13.33.2 0-.03-.01-.02-.03-.03m-.76-.26c.12.05.25.05.34.13l.11.12.02-.04m-1.37.7c.07.05.15.13.2.2.03.04.05.11.09.14m-2.68-.88c.08.07.26.08.24.21 0 .05-.06.08-.07.13 0 .05.03.1.04.14m-.28-.28c.03.06.1.1.04.17l.01-.02m.42-.51c.12.09.25.14.35.25.05.05.1.2.16.21m-.67-.8c.18.06.2-.1.32-.17m.07.1c.07-.07.04-.23.15-.26m-.33.02c.12-.1.16-.23.34-.25m-1.53.98c.07.03.14.07.13.15m-.18 0c.02.03.05.06.05.1a.25.25 0 0 1-.04-.03m-.22-.15.06.08c.03.03.02.05.03.04m.32.41c-.03.08 0 .17 0 .23m-.35 1.04c.02.04.05.24-.03.22m-2.49-1.37c.06 0 .06-.05.1-.07.05-.03.1-.03.16-.03m.03.27c.02.03.02.06 0 .06m-.16-.04v.05m-.12-.06-.01.06m.59-.98a.92.92 0 0 0-.12.25h.03m.26-.16a.22.22 0 0 0-.05.15m.33-.4-.16.11m-.88.31c-.15-.05-.18-.1-.19-.22-.12 0-.3-.19-.2-.3-.04.21-.3.13-.43.06a1 1 0 0 1-.45-.46c-.05.09-.13.08-.24.08-.21 0-.42.03-.64.04-.23.02-.45-.07-.68-.06-.2 0-.36.1-.55.13l-.5.01m4.1.38c-.1.02-.22.01-.3.08.02.01 0 .02 0 .03m-5.56.05c.27.01.54.07.81.06.14 0 .27-.03.4-.05.12-.02.26-.03.36-.08m-1.47 1c.24-.01.5-.1.74-.17.26-.06.52-.13.75-.26a.45.45 0 0 0 .23-.24c.04-.1.11-.2.12-.31m-1.04 1.15c.12-.03.23-.17.34-.23.11-.07.24-.1.37-.14.27-.09.52-.23.71-.42m-.84.89c.1-.1.26-.11.39-.17a2.74 2.74 0 0 0 .94-.8m-.81 1.12.8-.4c.13-.08.24-.17.36-.28.09-.08.13-.22.22-.3m-1.06 1.25c.28-.17.57-.35.84-.55.23-.18.5-.3.62-.58m-1.05 1.29c.14-.25.38-.45.62-.62.19-.13.37-.28.39-.51m-.51 1.15c0-.09.09-.18.14-.25l.23-.31c.08-.13.13-.26.19-.4m.06.92c.09-.25.1-.54.13-.8v-.2c0-.1.04-.18.07-.28m.37 1.21c.02-.06-.02-.11-.02-.17 0-.06.03-.1.04-.15.02-.1 0-.24 0-.34 0-.1-.04-.23-.01-.33.02-.08.12-.13.2-.17m.27 1.33c-.08-.26-.28-.5-.26-.77 0-.12.01-.29.13-.35m.4 1.15c.07-.17.07-.47.01-.64m.53.6c-.08-.16-.24-.26-.2-.45.02-.1.08-.17.1-.27'/%3e%3cpath d='M711.3 522.71a.4.4 0 0 1-.23.16c-.09.02-.2-.02-.27.06-.06-.08-.03-.29-.03-.39 0-.13-.02-.27.03-.4.09-.22.31-.35.56-.39'/%3e%3cpath d='M711.18 521.61c-.12.18-.37.09-.51.24-.13.14-.15.41-.11.58.04-.04.1-.05.16-.09m-.27-1.06c-.04.12-.17.18-.24.28a.61.61 0 0 0-.11.28c-.03.1-.04.2 0 .3.04.1.08.18.1.27m-.14-1.35c-.03.21-.32.4-.48.54-.07.07-.13.15-.11.25.02.07.08.12.12.18l.05.14a.56.56 0 0 1 .18-.1c.08-.02.19-.02.24-.08m-2.12-.85c-.2.18-.57.27-.68.52m1.41.06c-.07.06-.14.15-.22.2-.1.04-.2.03-.31.03m-.48-.01c.12-.06.54-.06.56-.22m.55.39c.16-.01.3-.01.38-.15m-.94-.25c-.02.08-.07.16-.08.23m.53-.2c.11.1 0 .3.13.38m.77-.92-.25.27c-.06.05-.15.1-.18.18-.04.1.01.2.03.3m-.22-.87c.08.08.2 0 .3.02.06 0 .14.03.25.02.09-.01.17-.04.26 0 .05.04.08.1.16.1m-.49.64a.93.93 0 0 1-.26.12m-.91-.45-.04.11m.28-.14c.1-.15.2-.19.34-.26m2.17-.16c0 .04-.02.09 0 .12v-.03m-.2-.25c0 .1.02.12.06.21l-.04-.05m-.14-.19c-.01.05-.01.12.01.15m-.32-.31a.5.5 0 0 1 .1-.12m-.14-.01a.46.46 0 0 1-.14.14m-.04-.16a.2.2 0 0 1-.13.15m-.08-.09a.35.35 0 0 1-.16.11m-.15-.09a.52.52 0 0 1-.14.1m-.13-.09c-.01.03-.05.05-.09.05m2.12 1.33c.02-.09.18-.1.26-.08m-.45.21c.04-.01.07-.05.07-.08m-1.15.51c0 .1.01.17-.06.26m-.14.55v-.1m.12-.03c0 .02 0 .05-.02.07m-.15-.15c0 .02 0 .04-.02.06m-.53.15s0-.03.02-.04m.2-.09v.06m.22-.88c0 .1 0 .26-.1.35m.59-1.54c-.1.13-.42.24-.4.41m-.5-.44a.15.15 0 0 1-.07.06m.32.01-.1.15m1.16.12c-.15.05-.29.1-.32.25m-1.59.36c.02.14-.15.26-.29.3m.96-.31c-.05.06-.13.14-.21.16m-.82.54c-.02.05-.07.08-.1.11m-.2.04c-.04.02-.12.1-.16.07m-.33-.67c-.02.06-.1.09-.14.12m-.35.11-.24.06'/%3e%3cpath stroke='%23fff' d='M706.76 522.55c-.03.05-.1.08-.15.09'/%3e%3cpath d='M707.13 521.42a.8.8 0 0 0-.4.14'/%3e%3cpath stroke='%23fff' d='M706.03 522.48c-.04.02-.11.06-.16.04m-.97-.36c.2-.12.48-.17.7-.22.12-.03.21-.05.3-.1.1-.05.18-.11.26-.14'/%3e%3cpath d='M706.66 522.49h-.14'/%3e%3c/g%3e%3cpath fill='%232f3b30' stroke='%23fff' stroke-width='.13' d='M711.87 544.25s.26-1.37 1.24-1.63c.98-.27 2.01-1.06 2.01-2.06s-.57-1.58-1.19-1.9c0 0 1.86-1.26 1.86-3.1 0-1.85-1.96-2.85-1.96-2.85s3-1.16 3.2-2.69c.2-1.53-1.34-3.32-1.8-3.84-.47-.53-1.2-.58-1.2-.58l.32.63-.62-.27s.3.87 1.13 1.59c.62.53 1.7 1.63 1.4 2.47-.31.85-3.05 2.22-3.05 2.22v1.15s1.96 1.22 1.91 2.27c-.05 1.06-1.75 2.27-1.75 2.27l-.1 1.05s1.18.8 1.13 1.63c-.05.85-1.3 1.27-1.3 1.27s-1.49.68-1.28 2.21'/%3e%3cpath fill='%232f3b30' stroke='%23fff' stroke-width='.13' d='M714.47 544.25s-.26-1.37-1.24-1.63c-.98-.27-2.01-1.06-2.01-2.06s.57-1.58 1.19-1.9c0 0-1.86-1.26-1.86-3.1 0-1.85 1.96-2.85 1.96-2.85s-3-1.16-3.2-2.69c-.2-1.53 1.34-3.32 1.8-3.84.47-.53 1.2-.58 1.2-.58l-.32.63.62-.27s-.3.87-1.13 1.59c-.62.53-1.7 1.63-1.4 2.47.31.85 3.05 2.22 3.05 2.22v1.15s-1.96 1.22-1.91 2.27c.05 1.06 1.75 2.27 1.75 2.27l.1 1.05s-1.18.8-1.13 1.63c.05.85 1.3 1.27 1.3 1.27s1.49.68 1.28 2.21'/%3e%3cpath fill='%2364472d' d='M712.67 520.55h.75v27.9h-.75z'/%3e%3cpath fill='%2364472d' d='M712.94 520.2h.2v.53h-.2z'/%3e%3cpath fill='%2364472d' d='M712.32 519.45c0-.42.34-.76.75-.76a.766.766 0 0 1 0 1.53.76.76 0 0 1-.75-.77'/%3e%3cg fill='none' stroke='%23000'%3e%3cpath stroke-width='1.28' d='M630.79 241.91c27.11 16.28 45.97 52.4 45.97 94.32 0 49.9-26.7 91.57-62.26 101.37' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='.64' d='M629.83 243.6c26.74 15.87 45.37 51.37 45.37 92.63 0 48.97-26.25 89.84-61.16 99.37' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='1.3' d='M581.76 438.03a59.66 59.66 0 0 0 34-.13' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='1.29' d='M658.8 386.73c-10.25 22.96-27.38 39.6-47.5 44.6l.2-1a51.65 51.65 0 0 1-27.03-.48l.12 1.14c-18.5-5.08-34.39-20.06-44.54-40.7l.53 1.06c10.16 20.1 25.82 34.64 44.01 39.64l-.12-1.14a51.73 51.73 0 0 0 27.02.47l-.19 1c19.75-4.9 36.63-21.02 46.93-43.33' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath fill='%23b1babf' d='M756.95 364.67s-16.9-10.47-38.95-10.22c-16.15.2-34.57 9.45-34.57 9.45-18.49 11.06-33.66 30.64-43.12 54.73a155.82 155.82 0 0 0-10.57 57.08c0 59.12 32.85 106.44 73.9 117.7 0 0 6.1 2.68 14.45 2.68 8.36 0 16.03-1.07 16.03-1.07 41.87-10.38 74.9-58.76 74.9-118.67 0-77.67-60.07-116.67-52.07-111.68m-22.8 222.67s-8.44 1.54-15.96 1.54a64.65 64.65 0 0 1-14.71-1.93c-36.96-10.3-66.32-55.13-66.32-109.25 0-19 4.2-37.76 10.24-53.43 8.52-22.05 22.99-39.13 39.63-49.25 0 0 16.79-10.44 31.32-10.61 19.85-.24 34.87 11.32 34.87 11.32 27.85 17.65 47.2 56.53 47.2 101.65 0 54.85-28.57 100.46-66.26 109.96' stroke='none'/%3e%3cg fill='%23c69024' stroke='%23080101' stroke-width='.46'%3e%3cpath d='M566.69 242.43c-26.9 15.88-45.66 51.71-45.66 93.37 0 49.34 26.31 90.51 61.3 100.03l-.94 1.87c-35.39-10.02-61.93-51.84-61.93-101.89 0-41.96 18.57-78.14 45.46-94.64l1.77 1.27zm63.59.14c26.94 15.88 45.73 51.73 45.73 93.4 0 49.36-26.35 90.54-61.39 100.06l.93 1.88c35.45-10.04 62.03-51.86 62.03-101.94 0-41.98-18.68-78.17-45.61-94.68l-.21-.15-1.9 1.22.42.2z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M570.08 251.03c-24.52 14.61-41.62 47.6-41.62 85.96 0 45.42 23.98 83.32 55.87 92.08l.59 2.34-1.44-.61c-32.26-9.24-56.45-47.73-56.45-93.81 0-38.64 17-71.94 41.51-87.13l.2-.14 1.72 1.12-.38.19z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='.49' d='m631.14 240.63.24.17-4.73 9.93-.16-.09c-3.84-2.37-15.17-8.52-29.13-8.33-11.1.15-23.56 6.6-26.46 8.2.92-2.26-5.08-9.89-5.08-9.89l1.31-.75s16.04-9.16 30.1-9.34c19.19-.25 33.91 10.1 33.91 10.1' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath d='M626.76 251.03c24.56 14.62 41.69 47.62 41.69 85.99 0 45.44-24.03 83.35-55.96 92.11l.05 2 1.27-.41c32.07-9.48 56.07-47.83 56.07-93.7 0-38.65-17.03-71.96-41.58-87.16l-.02-.02-1.42-.82-.48 1.82.38.19z' transform='matrix(1.14637 0 0 1.17117 33.18 82.14)'/%3e%3cpath stroke-width='.57' d='m758.74 365.2-.08.04c-2.57 1.26-4.68 4.3-5.52 8.1-.26 1.2-.4 2.7-.36 3.77 0 0-2.87-1.56-2.87-1.8-.02-.98.08-2.03.32-3.1.93-4.24 3.49-7.66 6.4-8.58.04 0 2.11 1.57 2.11 1.57zm-79.57.3.08.04c2.57 1.26 4.68 4.3 5.52 8.1.26 1.2.4 2.7.36 3.77 0 0 2.87-1.56 2.87-1.8.02-.98-.08-2.03-.31-3.1-.94-4.24-3.45-7.64-6.37-8.55a70.56 70.56 0 0 0-2.15 1.54z'/%3e%3cpath stroke-width='.53' d='M738.76 595.14s-.6-.47-1.37-1.32c-.56-3.65-2.58-5.31-2.58-5.31l-.43.04c-.37-1.32-.52-2.8-.26-4.41l-.21.03a65.33 65.33 0 0 1-15.93 1.84 56.54 56.54 0 0 1-13.75-2.12c-.04-.02-.8-.01-.78.06.54 1.58.45 3.14.06 4.56h-.03s-1.81 1.49-2.48 4.74c-.78.98-1.41 1.57-1.41 1.57l1.17.34-.01.22c-.08 3.18 2.9 3.72 4.87 3.74.6 4.02 3.13 3.39 4.46 2.74l-.29.39c.2 2.7 1.6 2.92 3.16 4.25.14.12 1.14.76 1.47 1.22l.06-.02c1.46 2.04 2.55 7.17 4.45 7.17h.5c1.9 0 2.98-5.09 4.44-7.15.32-.46 1.32-1.1 1.46-1.22 1.57-1.33 2.96-1.55 3.16-4.25l-.29-.39c1.33.65 3.85 1.28 4.46-2.74 1.96-.02 4.9-.55 4.87-3.65l1.23-.33z'/%3e%3cpath stroke-width='.53' d='M740.44 594.56c-2.12-1.25-3.9-4.13-4.4-7.48a11.56 11.56 0 0 1-.08-2.98l-2.37-.23c-.27 1.2-.32 2.57-.1 4.03.57 3.79 2.77 6.97 5.24 7.88l1.71-1.22zm-42.41-.12c2.12-1.25 3.9-4.13 4.4-7.48.17-1.05.18-2.05.08-2.98l2.37-.23c.27 1.2.32 2.57.1 4.03-.57 3.79-2.77 6.97-5.24 7.88l-1.71-1.22z'/%3e%3c/g%3e%3cpath d='M705.48 599.31c1.82-1.34 2.43-3.6 2.9-5.74.03-.1-.01-.51-.02-.46-.47 2.1-1.08 4.34-2.88 5.67-.1.08.05.5 0 .53m4.25 2.98c2.12-.87 3.22-4.2 3.75-6.25.04-.15-.04-.42-.01-.52-.53 2.07-1.64 5.37-3.74 6.24-.09.03.03.52 0 .53m4.88 5.61a13.02 13.02 0 0 0 2.38-6.86c0-.07-.02-.58-.03-.37a12.7 12.7 0 0 1-2.35 6.7c-.1.13.07.44 0 .53m17.97-9.13c-1.8-1.33-2.4-3.56-2.88-5.67 0-.05-.05.36-.02.46.48 2.13 1.08 4.4 2.9 5.74-.05-.04.1-.45 0-.53m-4.11 2.99c-2.1-.87-3.2-4.17-3.74-6.23.03.09-.05.36-.01.51.53 2.06 1.63 5.38 3.75 6.25-.02 0 .1-.5 0-.53m-4.88 5.76a12.7 12.7 0 0 1-2.35-6.7c-.01-.21-.04.3-.03.37.21 2.54.88 4.8 2.38 6.86-.06-.09.1-.4 0-.53' fill='%23000' stroke='none'/%3e%3c/g%3e%3cg fill='%23452c25' stroke='%23000' stroke-width='.55'%3e%3cpath d='M662.23 304.61s-4.2 9.73-1.93 10.68c2.28.96 8.06-.57 12.97-9.35 4.9-8.77-2.91-5.49-2.91-5.49l-8.13 4.16zm25.92 6.49s-.7 12.78 0 13.73c.7.96 7.18.96 7.53-8.58.35-9.54-1.4-9.92-1.4-9.92l-6.3 4.39'/%3e%3cpath d='M692.03 295.69s-4.55 14.3-.17 17.17c4.37 2.86 7.88-14.12 8.05-17.93.18-3.82-7.88.76-7.88.76zm3.13 18.27s.88 13.35 3.33 13.93c2.45.57 6.48-3.82 6.48-7.25 0-3.44-4.2-11.45-4.2-11.45l-5.79 4.2'/%3e%3cpath d='M695.28 297.97s-4.55 14.3-.18 17.17c4.38 2.86 7.89-14.12 8.06-17.93.18-3.82-7.88.76-7.88.76zm.35-22.96s-6.66 6.87-6.48 10.68c.17 3.82 9.8-5.15 10.68-6.87.88-1.71-4.2-3.81-4.2-3.81z'/%3e%3cpath d='M691.06 271.16s-5.26 9.73-3.85 12.78 6.48-2.29 8.93-5.72c2.45-3.44-5.08-7.06-5.08-7.06zm-11.82 1.68s-3.5 13.16-.88 14.5c5.15 2.61 8.47-9.11 8.94-13.55.52-4.96-8.06-.95-8.06-.95z'/%3e%3cpath d='M686.82 272.73s-6.66 6.87-6.48 10.68c.17 3.82 9.8-5.15 10.68-6.87.88-1.71-4.2-3.81-4.2-3.81zm-113.54.97s-13.76 6.9-14.96 9.86c-1.2 2.95 41.49-4.48 64.95-21.06l-9.52-5.63-40.47 16.83z'/%3e%3cpath d='M589.51 276.18s-25.05 9.35-6.95 9.72c0 0 35.88-7.47 54.99-22.08l-4.83-7.14-43.21 19.5z'/%3e%3cpath d='M626.31 251.19s-26.45 13.54-23.48 15.07c2.98 1.53 21.73-2.67 31.54-8.77 9.81-6.1 14.02-9.54 14.02-9.54l-11.74-3.25-10.34 6.49zm-9.99 29.71s-9.45 7.91-8.36 8.81c1.1.9 20.42-2.14 35.48-13.96l-1.9-6.97-25.41 11.75'/%3e%3cpath d='M599.85 279.39s-9.06 7.22-7.07 7.8c1.98.6 9.66 6.04 43.64-16.12l4.01-2.47-6-8.46-34.58 19.25zm-6.99-26.08c-28.58 10-57.24 29.91-57.24 29.91 2.8-.95 73.54-29.43 73.54-29.43m46.41 44.14s-6.13 9.35-4.9 10.5c1.22 1.14 8.76 4.76 17.51-7.26 8.76-12.01-8.23-10.1-8.23-10.1l-4.38 6.86z'/%3e%3cpath d='M648.65 289.83s-9.2 11.54-7.27 13.07c1.93 1.52 12.44 1.33 20.32-9.73 7.89-11.07.18-.57.18-.57l-2.28-10.11-10.95 7.34z'/%3e%3cpath d='M639.8 284.39s-8.93 10.68-8.06 12.4c.88 1.72 12.97 1.14 22.95-9.35s1.93-14.3 1.93-14.3l-16.64 10.68'/%3e%3cpath d='m623.95 284.87-5.7 7.92s1.58 7.44 21.2-6.1c19.63-13.55 18.58-12.4 18.58-12.4l-10.52-1.91-23.56 12.5zm-62.5-11.4-12.44 5.59s-2.8 2.46 4.5 2.65c7.3.18 22.4-1.84 48.65-16.72a136.13 136.13 0 0 0 19.38-13.15l-9.56-3.56-50.53 25.19z'/%3e%3cpath d='M540.15 281.31s17.9-1.95 25-6.6c0 0-1.45 2.17 7.7-1.4l51.97-25.36-1.73-3.38s-56.61 24.25-60.9 25.6c-4.28 1.35-22.04 11.14-22.04 11.14z'/%3e%3cpath stroke-width='.64' d='M670.11 304.2s-1.75 14.18.35 14.7c2.1.53 8.06-3.93 10.51-12.6 2.45-8.67-9.63-7.62-9.63-7.62l-1.75 5'/%3e%3cpath d='M679.4 310.24s-1.05 10.4.35 11.35c1.4.95 4.9 1.34 9.11-6.87 4.2-8.2 2.28-5.15 2.28-5.15l-9.46-5.15-2.28 5.82z'/%3e%3cpath d='M682.02 292.21s-7.7 16.79-3.33 16.6c4.38-.2 10.34-12.79 11.21-15.65.88-2.86-7.88-.95-7.88-.95z'/%3e%3cpath d='M681.35 292.06s-2.9 18.5 1.24 16.93c4.14-1.56 6.48-15.5 6.56-18.51.07-3.02-7.8 1.58-7.8 1.58z'/%3e%3cpath d='M687.63 293.93s-4.55 14.3-.18 17.17c4.38 2.86 7.89-14.12 8.06-17.93.18-3.82-7.88.76-7.88.76zm-17.96-4.71s-3.5 13.16-.88 14.5c5.15 2.61 8.47-9.11 8.94-13.55.52-4.96-8.06-.95-8.06-.95zM637 262.07s-11.74 9.73-10.34 11.26c1.4 1.52 15.07-1.15 21.2-5.35 6.13-4.2 8.58-6.48 8.58-6.48l-10.5-6.49-8.94 7.06z'/%3e%3cpath d='M647.34 252.15s-7.53 6.1-6.13 7.63c1.4 1.53 14.89-4 17.34-6.68 2.45-2.67 2.28-5.53 2.28-5.53l-13.49 4.58z'/%3e%3cpath d='M654.52 251s-9.64 8.58-7.18 11.64c2.45 3.05 16.64-10.5 18.57-12.21 1.92-1.72-11.39.57-11.39.57z'/%3e%3cpath d='m650.49 247.38-20.5 9.73s-17.34 11.25-15.59 12.4c1.75 1.14 15.24-2.48 24.88-7.25 9.63-4.77 20.32-12.78 20.32-12.78m-3.4 8.97s-22.18 19.07-18.85 20.98c3.33 1.9 15.37-3.33 25.35-12.49'/%3e%3cpath d='M659.84 263.77s-13.38 22.14-11.98 24.24c1.4 2.1 10.5-4.96 15.07-10.3 4.55-5.34 8.13-13.23 8.13-13.23'/%3e%3cpath d='M666.23 266.6s-13.6 25.27-12.02 27.37c1.57 2.1 9.46.38 14.19-9.54 4.73-9.92 4.32-16.32 4.32-16.32l-6.49-1.51z'/%3e%3cpath d='M674.13 267.81s-15.11 31.2-12.13 34.24c2.98 3.06 19.7-23.65 20.48-27.43 1.34-6.63-8.53-7.38-8.53-7.38m-31.69-20.05s-13.66 6.49-10.86 7.82c2.8 1.34 15.59-4.39 17.34-4.96 1.75-.57-6.48-2.86-6.48-2.86z'/%3e%3cpath d='M644.36 249.29s-8.4 6.68-6.66 8.4c1.75 1.71 14.54-5.16 17-7.26 2.45-2.1-10.34-1.14-10.34-1.14z'/%3e%3cpath stroke-width='.58' d='M662 249.82s-11.5 15.45-7.97 16.06c3.52.61 16.87-9.96 17.05-11.79.19-1.83-9.08-4.27-9.08-4.27z'/%3e%3cpath d='M667.13 253.29s-12.26 15.45-8.76 16.4c3.5.96 3.85-1.52 3.85-1.52s9.64-8.01 10.34-10.11c.7-2.1-5.08-4.96-5.08-4.96'/%3e%3cpath d='M670.99 256.92s-8.94 15.45-6.66 16.4c2.28.96 5.96-2.86 9.64-7.43 3.68-4.58-2.98-8.97-2.98-8.97z'/%3e%3cpath d='M673.26 263.98s-5.26 9.73-3.85 12.78c1.4 3.05 6.48-2.29 8.93-5.72 2.45-3.44-5.08-7.06-5.08-7.06zm2.21 27s-3.5 13.16-.88 14.5c5.15 2.61 8.47-9.11 8.94-13.55.52-4.96-8.06-.95-8.06-.95z'/%3e%3cpath d='M699.54 273.18s-3.5-1.14-6.13-1.14c0 0-7.71-6.1-11.91-6.68-4.2-.57-.62-.67-.62-.67s-.44-10.01-1.66-10.78c0 0-.7-10.3-7.18-11.06-6.49-.76-21.03.57-23.66-.38-2.62-.96-10.68-4.32-25.92-.2-15.6 4.23-46.3 18.01-47.88 18.4-1.58.37 35.26-8.1 45.6-12.67 0 0 10.33-.76 13.49-1.72 0 0-11.74 5.73-.88 3.25 10.86-2.48 8.41 0 8.41 0s-1.05 2.48 5.08 1.14 6.13 0 6.13 0 7.01 2.48 12.44-.76c0 0 2.8 9.73 6.3 11.06 0 0 4.17 8.92 12.93 10.63 0 0 4.16 2.95 5.04 3.52l4.95 1.63 5.3-4.14'/%3e%3cpath d='M627.71 246.81s-35.04 12.59-33.81 16.02c1.22 3.44 36.61-9.72 42.22-13.35 5.6-3.62-7.88-2.86-7.88-2.86'/%3e%3c/g%3e%3cg fill='%23452c25' stroke='%23000' stroke-width='.55'%3e%3cpath stroke-width='.49' d='m869.44 278.12 13.78 7.82s3.36 2.79-4.02 1.15c-7.38-1.65-23.11-7.08-52.84-26.2-13.44-8.66-17.68-8.41-17.68-8.41l18.73.5 42.03 25.14z'/%3e%3cpath stroke-width='.49' d='m873.99 274.72 13.78 7.82s3.36 2.79-4.02 1.15c-7.38-1.65-23.11-7.08-52.84-26.2-13.44-8.66-2.63 7.13-2.63 7.13l2.28-10.38 43.43 20.48z'/%3e%3cpath stroke-width='.48' d='M896.91 282.25s-16.45-3.06-22.45-7.44c0 0 1.06 1.89-7-1.77 0 0 3.11 7.05-19.54-8.38-22.66-15.44-14.74-7.68-14.74-7.68l6.34-1.64s34.78 13.9 38.6 15.35c3.81 1.46 18.8 11.56 18.8 11.56z'/%3e%3cpath d='m810.88 288.41 5.51 7.86s-1.83 7.37-20.97-6.97c-19.13-14.34-18.13-13.15-18.13-13.15l10.57-1.48 23.21 13.18m-25.05 4.5s8.89 11.63 6.9 13.07c-1.97 1.45-12.47.83-19.96-10.55-7.5-11.38-.16-.58-.16-.58l.7-18.4 12.71 15.9'/%3e%3cpath d='M795.15 287s8.56 11.04 7.62 12.72c-.93 1.68-13 .61-22.6-10.28-9.62-10.9-1.44-14.38-1.44-14.38L795 286.42m48.91-5.94s24.39 10.49 6.3 9.8c0 0-35.43-9.54-53.76-25.24l5.18-6.85 42 21.68'/%3e%3cpath d='M856.71 277.45s13.2 8 14.18 11.05c.99 3.05-41.02-7.84-63.18-26.3l9.9-4.84 39.1 20.09zm-38.34 7.26s9.55 7.84 8.46 8.75c-1.08.9-20.44-1.99-35.64-13.69l1.82-6.98 25.55 11.55'/%3e%3cpath d='M834.7 284.04s9.42 6.5 7.47 7.18c-1.96.68-9.35 6.49-44.4-14.04l-4.13-2.27 5.57-8.75 35.5 17.3'/%3e%3cpath d='M798.72 264.81s11.4 10.2 9.94 11.67c-1.45 1.47-15.02-1.76-21-6.2-5.98-4.45-10.33-10.15-10.33-10.15l12.7-2.74 8.69 7.42z'/%3e%3cpath d='m785.14 247.77 20.76 12.37s16.94 11.96 15.15 13.03c-1.8 1.07-15.14-3.1-24.6-8.26-9.47-5.17-20.45-16.28-20.45-16.28m-3.96 57.66s3.87 9.9 1.56 10.75c-2.31.86-8.04-.9-12.64-9.87-4.6-8.97 2.43-4.29 2.43-4.29l8.65 3.41z'/%3e%3cpath d='M778.92 299.89s5.8 9.6 4.54 10.69c-1.27 1.09-8.92 4.4-17.26-7.97-8.33-12.37 8.58-9.76 8.58-9.76l4.14 7.04z'/%3e%3cpath d='M761.58 256.61s19.8 38.23 18.15 40.26c-1.65 2.03-9.47 0-13.85-10.11-4.38-10.11-7.96-23.23-7.96-23.23l3.66-6.92zm23.06 9.72s16.52 14.04 13.13 15.81c-3.4 1.77-9.97-.79-19.63-10.35-9.66-9.56 6.34-6.04 6.34-6.04'/%3e%3cpath d='M776.64 266.57s11.8 21.68 10.33 23.72c-1.47 2.04-10.33-5.39-14.7-10.91-4.36-5.53-7.67-13.56-7.67-13.56'/%3e%3cpath d='M764.94 258.27s8.4 15.8 6.08 16.67c-2.3.86-5.85-3.1-9.37-7.83-3.51-4.73 3.29-8.84 3.29-8.84zm.19 32.33s3.04 13.3.37 14.52c-5.23 2.4-8.14-9.45-8.46-13.9-.35-4.98 8.09-.62 8.09-.62zm-10.46 21.08s.7 9.96-.73 10.85c-1.43.9-4.94 1.13-8.86-7.24-3.92-8.36-2.1-5.24-2.1-5.24l9.63-4.75 2.1 5.43'/%3e%3cpath d='M764.03 309.58s1.4 10.37-.72 10.66c-2.11.3-7.95-3.19-10.19-9.58-2.23-6.4 9.82-5.13 9.82-5.13l1.63 3.69'/%3e%3cpath d='M754.39 277.06s10.82 24.22 9.08 27.67c-3.4 6.75-13.24-14.75-16.21-23.15-3.32-9.39 7.13-4.52 7.13-4.52z'/%3e%3cpath d='M749.37 281.11s14.76 26.66 8.53 27.28c-6.22.62-17.53-19.34-19.43-23.97-1.9-4.64 10.9-3.3 10.9-3.3z'/%3e%3cpath d='M748.49 286.64s7.26 25.55 2.58 23.29c-4.67-2.26-10.3-21.5-11.07-25.66-.77-4.15 8.49 2.37 8.49 2.37zm25.5-36.32s11.2 17.1 7.56 17.6c-3.63.51-16.9-11.42-17.02-13.4-.12-1.97 9.46-4.2 9.46-4.2z'/%3e%3cpath d='M767 251.04s14.27 19.48 9.97 20.47c-4.3.99-4.63-2.06-4.63-2.06s-11.39-10.26-12.15-12.86c-.77-2.6 6.39-5.8 6.39-5.8m27.41-1.06s13.43 7.04 10.58 8.26c-2.84 1.22-15.43-5.02-17.16-5.67-1.73-.64 6.58-2.59 6.58-2.59zm-12.85 1.61s9.81 10.12 7.24 13.55c-2.58 3.43-16.2-12.82-18.06-14.88-1.86-2.07 11.89.93 11.89.93m-24.87 14.46s15.8 30.78 12.9 33.91c-2.92 3.13-20.48-23.08-21.1-26.88-.6-3.8 8.36-7.6 8.36-7.6'/%3e%3cpath stroke-width='.64' d='M748.26 268.19s6.32 9.63 5.96 14.82c-.36 5.19-9.55-7.43-10.34-9.8-.8-2.38 4.38-5.02 4.38-5.02z'/%3e%3cpath d='M761.25 263.2s4.92 9.94 3.4 12.93c-1.5 3-8.2-6.04-10.53-9.57-2.33-3.53 7.13-3.36 7.13-3.36z'/%3e%3cpath stroke-width='.66' d='M738.45 272.97s7.71 8.56 7.34 13.12c-.37 4.56-11.57-6.66-12.55-8.76-.98-2.1 5.21-4.36 5.21-4.36z'/%3e%3cpath d='M788.31 248.28s11.68 10.47 9.86 12.12c-1.8 1.64-17.6-9.67-19.98-11.87-2.38-2.2 10.12-.25 10.12-.25z'/%3e%3cpath d='m778.44 247.52 9.13 7.7s8.49 5.66 7.03 7.13c-1.45 1.47-14.74-4.62-17.1-7.39-2.36-2.77-2.08-5.62-2.08-5.62l3.02-1.82zm30.09 2.42s34.58 14.02 33.23 17.4c-1.34 3.38-36.25-11.22-41.73-15.08-5.47-3.85 7.98-2.53 7.98-2.53'/%3e%3cpath d='M809.78 254.39s25.96 14.62 22.94 16.02c-3.03 1.4-21.62-3.56-31.21-10.06-9.6-6.5-13.68-10.1-13.68-10.1l11.84-2.77 10.11 6.91zm-63.92 17.77s4.92 9.94 3.4 12.93c-1.5 3-6.39-2.55-8.72-6.08-2.33-3.54 5.32-6.85 5.32-6.85zm1.17 22.41s4.06 14.48-.42 17.16c-4.47 2.68-7.39-14.43-7.43-18.25-.04-3.82 7.85 1.09 7.85 1.09z'/%3e%3cpath d='M726.92 270.71s14.44-6.34 17-5.83c0 0 3.03-.76 4.65-2.03 1.63-1.27 5.36-4.31 5.36-4.31s-2.56-17.5 15.83-15.72c18.4 1.78 42.61 4.06 47.5 4.82 4.9.76 22.82 5.83 27.02 7.86 4.19 2.03 31.5 14.39 37.09 16.42 3.3 1.2 10.6 5.76 16.01 9.29 3.72 2.42-.11.69-.11.69s-44.23-23.48-59.87-26.62c-3.91-.79.27 4.48.27 4.48s-10.16-4-14.35-5.78c-4.2-1.78-7.68-2.54-11.64-2.29-3.96.26-6.99-.5-9.32-1.26-2.32-.76-15.6-1.27-17.92-1.52-2.33-.26-4.2-.76-4.2-.76l.94 1.52-6.52-1.02-1.87 2.8s-6.28 1.26-6.75-.77c-.46-2.03-3.73 9.13-5.36 12.42-1.63 3.3-7.68 3.3-9.54 5.33-1.86 2.03-3.03 3.3-3.96 3.8-.93.51-5.59 3.3-7.22 3.3s-11.64.76-11.64.76l-2.56-4.06 1.16-1.52zm18.99 40.99s.26 12.8-.48 13.72c-.73.93-7.2.66-7.23-8.88-.02-9.55 1.75-9.86 1.75-9.86l6.15 4.65'/%3e%3cpath d='M742.56 296.15s4.06 14.48-.42 17.16c-4.47 2.68-7.39-14.43-7.43-18.25-.05-3.82 7.85 1.09 7.85 1.09z'/%3e%3cpath d='M739.24 298.29s4.06 14.48-.42 17.16c-4.47 2.68-7.39-14.43-7.43-18.25-.04-3.82 7.85 1.09 7.85 1.09z'/%3e%3c/g%3e%3cpath d='M741.9 357.31s2.49 3.1 2.18 4.1c0 0 2.56-2.58-.74-6.24l-1.44 2.14zm-20.58-5.88h1.5l.56 1.4-.21 1.28-1.3.6s-2.11-.55-1.6 1.98c0 0-.99-4.64 1.05-5.26zm10.54 10.39 1.54-1.7 1.66.87s-.69 4.5-.95 4.83c-.26.33-.3.38-.3.51s-.27-.85-.77-1.42c-.5-.56-1.01-3.04-1.18-3.09zm-16.11-5.59-.76-2.27.88-1.2 1.79-.01.75.36s1.44 3.27.18 4.98c0 0-.53-1.84-1.14-2.1 0 0-1.33-.2-1.7.24zm-16.68 3.91s-2.51 4.2.75 6.3c0 0-.2-3.92 2.35-4.76l-3.1-1.54zm-8.64-1.7 2.27-.59.22.1s-1.49 2.87-1.09 3.57c.41.7-2.03-1.27-1.4-3.08z' fill='%23d9c0b9' stroke-width='.55' stroke='%23000'/%3e%3cpath fill='%23bd8759' stroke='%23000' stroke-width='.55' d='M730.39 333.74s.08 7.8.08 9.18c0 1.39-.16 3.47-.96 4.68-.79 1.21-1.59 1.9-2.86 1.9-1.27 0-4.61-.17-5.25 1.05-.64 1.2-1.11 1.9-1.11 1.9s2.06-1.21 2.38 0c.32 1.21-.8 2.25-.8 2.25s1.92.35 3.67-.69 2.7-1.21 3.5-1.21c.8 0 1.43.86 1.43.86s.48 2.6.32 4.16c-.16 1.56-.48 4.68 1.27 4.68 0 0 .64-1.56 1.27-1.73.64-.17 2.39 1.56 2.07 2.08 0 0 .32-3.3-.32-5.2-.63-1.9-.95-3.99-.95-3.99s5.41 1.91 5.89 2.6c.47.7 1.75 1.91 2.22 1.74.48-.18 0-1.74.96-2.08.95-.35 1.43.52 1.43.52s-1.59-3.64-3.98-4.85c-2.38-1.22-3.98-1.22-4.93-2.26-.95-1.04-1.12-2.25-1.27-3.46-.16-1.22.04-11.69.04-11.69l-4.1-.44zm-27.02 19.83s-3.96 3.07-4.4 4.51c-.45 1.45-.58 2.84-.58 2.84s3.55-.43 3.11 1.53c0 0 1.15.66 2.98-3.59s3.56-6.08 4.86-5.96c1.3.13 2.95 1.39 3.78 2.27.83.9 1.98 1.55 3.43 1.14 0 0-1.52-2.31-.56-2.82.95-.5 2.41-.4 2.41-.4s-1.2-2.88-3.8-3.3c-2.6-.42-4.4-1.14-3.79-2.27.62-1.13 3.94-9.91 3.94-9.91l-4.4-6.47-1.77 5.63s.58 3.32.6 4.18c.02.85-3.5 8.12-3.98 8.54-.47.43-9.92 4.08-11.04 4.44-1.12.36-3.47 3.15-3.47 3.15l-.27 2.1s1.58-1.3 2.09-.52c0 0 1.1-1.39 2.08-.87.98.52.82.72.82.72s1.75-1.15 2.06-1.72c.3-.56.4-.5.4-.5l2.78-.48'/%3e%3cpath d='M708.49 345.51c-.41.07-.7.01-.98-.18m2.5-3.67a3.3 3.3 0 0 1-1.3-.46m-.27 2.44c.3.17.63.23.98.18m-4.22 5.85c.19.13.41.21.65.23m26.53-3.86c.65.11 1.24.46 1.91.52m-.79-2.43c-.51.13-.95.03-1.27-.35m1.58-1.9c-.6.07-1.23.04-1.75-.17m-.47 7.79c.6.08 1.17.38 1.75.52m-1.59 1.91c.3-.07.57-.01.8.17m-.33 6.41c.4-.07.78-.01 1.11.17m-21-8.68c-.5.08-.9.38-1.1.87m4.34-.56c-.7.4-1.32.97-1.4 1.78m-18.72 1.79c.54.5 1.34.78 1.81 1.23m40.85-3.87c-.41.19-.69.56-.8 1.04m3.03-.35a.76.76 0 0 0-.48.7' fill='none' stroke='%23000' stroke-width='.55'/%3e%3cpath fill='%23452c25' stroke='%23000' stroke-width='.55' d='M747.46 301.88s-1.23-5.54-2.1-6.3c-.88-.77.35-1.54.35-1.54s-2.28-5.54-3.68-6.5c-1.4-.95.17-1.71.17-1.71s-2.45-3.83-4.2-4.97c-1.75-1.15 0-1.34 0-1.34s-1.83-5.13-6.1-7.48c0 0-2.83-2.98-5.72-3.8-2.89-.82-10.05-1.58-18.7-1.42-9.12.16-12.98 6.48-12.98 6.48l-.59 7.33 1.32-.9-1.93 9.14c-.3 2.09 1.63 5.71 1.74 10.08.03 1.38.12 2.82.28 4.3a37.88 37.88 0 0 0 3.1 11.9c.15.3.28 1.2.45.9.44-.76 1.44 2.6 2.34 3.8 0 0 .54 4.55.97 2.86.17-.65 1.63 2.58 2.54 4.61.32.74 2.05 5.76 1.98 3.47-.07-2.5 1.52 5.32 1.52 6.45l2.1-3.06 1.05 3.44 1.75-.2-.52 3.26s4.9-4.02 5.08-5.55c.17-1.52.35-2.67.35-2.67l1.58-1.53 2.45-3.82s6.13 4.77 6.83 6.5c.7 1.71 1.4 3.24 1.4 3.24l1.58-1.53 1.4 3.44.88-1.72.85 2.4.07-.15.56 1.57c.43.4 1.4.6 3.25-2.48 2.62-4.4 2.45-7.83 2.62-8.6.18-.76 1.23 1.34 1.23 1.34s2.28-4.2 1.93-6.88c-.35-2.68 1.4-1.72 1.4-1.72s.35-7.07 0-8.8c-.35-1.71 1.23-1.33 1.23-1.33s-.53-8.4-1.06-9.36c-.52-.96 1.23-1.15 1.23-1.15z'/%3e%3cpath d='M735.18 282.43c1.24.37 1.84 1.76 2.37 2.85-.03-.07.08-.38.01-.52-.53-1.08-1.14-2.5-2.38-2.86 0 0-.08.5 0 .53m1.12 5.28c2.28 1.93 2.48 4.57 2.35 7.45 0 .1.03.6.05.27.13-3.05.1-6.14-2.4-8.25.06.05-.1.44 0 .53m4.75 2.7c1.26 2.07 1.38 4.35 1.38 6.74 0 .3.05.3.05 0 0-2.54-.06-5.03-1.42-7.25.04.05-.09.39-.01.51m1.66 9.99c-.14 1.48-.4 2.93-.7 4.39-.01.1.02.5.03.46.3-1.49.56-2.97.7-4.47.01-.07-.01-.59-.03-.38m-1.53 7.66c.12.97.24 1.93.14 2.9 0 .08.01.6.04.39.13-1.24 0-2.44-.14-3.67-.03-.2-.05.31-.04.38m-2.95-9.62c0 1.64.01 3.27.15 4.9.02.21.04-.3.03-.38-.12-1.5-.13-3-.13-4.52 0-.3-.05-.3-.05 0m-1.25 10.62c.13 1.55.13 3.1.13 4.67 0 .3.05.3.05 0 0-1.69 0-3.37-.14-5.05-.02-.2-.05.31-.04.38m7.01-1.35c.68.71 1.1 1.55 1.24 2.53.02.1.04-.08.04-.1v-.36a4.8 4.8 0 0 0-1.28-2.6c.06.07-.1.42 0 .53m-.42-10.72c.7.58 1.26 1.29 1.82 2-.07-.08.1-.41 0-.53a12.8 12.8 0 0 0-1.82-2c.06.05-.1.44 0 .53m-5.76 8.02c0 1.46-.14 2.9-.4 4.34-.03.1.01.5.02.46.3-1.59.42-3.19.43-4.8 0-.3-.05-.3-.05 0m-3.06 3.19c.12 1.3.12 2.6 0 3.9 0 .08.02.6.04.38.14-1.55.14-3.1 0-4.66-.02-.2-.05.31-.04.38m-10.04-34.24c.8.13 1.48.5 2.2.87.02 0 .33.2.38.12.06-.08-.21-.32-.23-.34a6.35 6.35 0 0 0-1.5-1.1c-.9-.48-1.8-.97-2.83-1.14-.2-.03.56.7.6.73.37.3.9.78 1.38.86m-27.28 26.45c.52 1 .6 2.15 1.12 3.14-.03-.06.08-.38.01-.51-.52-1-.6-2.15-1.12-3.14.04.06-.08.38-.01.51m4.76-26.98c1.17-.42 2.41-.43 3.64-.57.05 0 .02-.54 0-.53-1.22.14-2.47.15-3.64.57-.09.03.02.52 0 .53m6.99-.57a7.93 7.93 0 0 1 3.5-.57c.03 0 .03-.53 0-.53-1.2 0-2.39.04-3.5.57-.1.04.03.52 0 .53m-12.16 6.18c-.15.03-.15.14-.16.28v.36c.02.1.04-.08.04-.1 0 .1.06 0 .12 0 .07-.02.01-.54 0-.54m-.73 18.83c0 .98 0 1.97.15 2.94.02.1.04-.08.04-.1l-.01-.36c-.13-.82-.13-1.65-.13-2.48 0-.3-.05-.3-.05 0m34.7-18.58c.5.14.8.5.97.99a.8.8 0 0 0 .03-.19c0-.1.02-.23-.02-.32-.16-.5-.48-.87-.98-1.01 0 0-.08.5 0 .53m.56 8.56a6.94 6.94 0 0 1 1.67 2.85c-.02-.09.06-.37.02-.52a7 7 0 0 0-1.69-2.86c.06.06-.1.42 0 .53m-1.82-6.28c.76.66 1.4 1.42 2.1 2.14-.07-.06.1-.43 0-.53-.7-.72-1.34-1.49-2.1-2.14.06.05-.1.44 0 .53m2.09 14.25a6.06 6.06 0 0 1-.55 3.51c-.06.14.04.44.01.52.61-1.46.83-2.93.57-4.49-.01-.05-.05.36-.03.46m1.95 4.42c.1.66.12 1.3 0 1.97a1.6 1.6 0 0 0 0 .36c0 .02 0 .2.03.1a8.9 8.9 0 0 0 0-2.89c-.02-.1-.04.08-.04.1l.01.36m7.56 15.6c.5 1.79.54 3.61.54 5.46 0 .3.05.3.05 0 0-2.02-.03-4.02-.58-5.97.03.08-.05.36-.01.51m-1.26 3.63a30.58 30.58 0 0 1-1.4 3.71c-.06.14.05.45.02.52.57-1.2.98-2.46 1.4-3.72.04-.14-.05-.43-.02-.51m-42.21-12.05c1.17 1.52 1.8 3.35 2.79 4.99-.03-.06.09-.4.01-.51-.99-1.65-1.62-3.48-2.8-5.01.07.08-.1.4 0 .53m7.41.18c-1.07.14-1.33-1.4-2.24-1.71.02 0-.08.5 0 .53.9.32 1.17 1.85 2.24 1.71.06 0 .02-.53 0-.53m-4.2 7.09c.77 1.35 1.27 2.83 2.1 4.14-.04-.05.09-.4.01-.51-.82-1.31-1.33-2.8-2.1-4.14.04.05-.08.38-.01.51m4.9 1.73a11.07 11.07 0 0 1 2.09 3.42c-.03-.08.06-.37.01-.52a11.2 11.2 0 0 0-2.1-3.43c.07.08-.1.41 0 .53m-.43 5.13c.43.9.82 1.82 1.26 2.71-.03-.06.08-.38.01-.51-.43-.9-.82-1.82-1.26-2.71.04.06-.07.38-.01.51m4.61 1c.25.94.4 1.9.4 2.88 0 .3.05.3.05 0a13.55 13.55 0 0 0-.44-3.4c.03.1-.05.37-.01.52m-1.96 4.26c.3 1.36.7 2.68 1.4 3.88-.03-.05.09-.39.02-.51-.7-1.18-1.1-2.5-1.4-3.83 0-.05-.04.36-.02.46m1.13-18.1c1.1.42 2.21.84 3.36 1.14 0 0 .07-.51 0-.53-1.15-.3-2.25-.72-3.36-1.14.02 0-.09.5 0 .53m.84 4.71c1.32.73 2.7 1.32 4.05 2-.03-.02.1-.48 0-.53-1.34-.68-2.73-1.27-4.05-2 .04.02-.1.47 0 .53m1.26 5.28c.68.83 1.42 1.59 2.24 2.29-.06-.06.1-.45 0-.54-.82-.7-1.56-1.45-2.24-2.28.07.08-.1.41 0 .53m1.39 6.56c.57.9.83 1.91.97 2.97.02.1.04-.08.04-.1l-.01-.36a7.39 7.39 0 0 0-.99-3.02c.04.05-.08.39-.01.51m3.91-16.31c.12.63.27 1.26.43 1.88-.03-.09.05-.36.01-.51-.15-.6-.3-1.22-.41-1.83-.02-.1-.04.08-.04.1 0 .12-.01.24.01.36m9.79-3.91c-.28.7-.6 1.36-.98 2-.07.12.05.46.01.51.38-.64.7-1.3.98-2 .06-.14-.04-.43-.01-.51m4.03-.17c0 1.12-.02 2.24-.27 3.34-.02.1.02.51.03.46.28-1.25.3-2.52.3-3.8 0-.3-.06-.3-.06 0m.85 6.19c.1.96 0 1.91-.13 2.87-.02.1.02.5.02.46.17-1.24.28-2.46.15-3.7-.03-.21-.05.3-.04.37m3.08 5.86a5.44 5.44 0 0 1-1.94 3.25c-.1.1.06.48 0 .53a5.54 5.54 0 0 0 1.97-3.32c.01-.1-.02-.5-.03-.46m-9.92-5.74c-.28.56-.64 1.06-.98 1.57-.05.07-.02.25-.02.33 0 .02.02.21.03.18.34-.51.7-1.01.98-1.57.04-.08.02-.23.02-.32 0-.02-.02-.21-.03-.19m1.13 7.85a7.8 7.8 0 0 1-1.4 1.57c-.1.08.06.49 0 .53.56-.43.98-1 1.4-1.57.04-.06.03-.2.03-.26 0-.03-.04-.26-.03-.27m-3.5 4.14c-1.37-1.35-2-3.08-1.4-5.05.06-.14-.03-.43 0-.51a5.9 5.9 0 0 0 1.4 6.1c-.06-.07.1-.44 0-.54m-4.62-4.36c.1.8.1 1.6-.13 2.37-.05.15.04.43.01.51.33-1.08.3-2.23.15-3.34-.02-.1-.04.08-.04.1l.01.36m10.63 5.23c-.29.97-.81 1.82-1.26 2.71-.06.14.05.45.02.52.44-.9.97-1.75 1.25-2.72.05-.14-.04-.42-.01-.51m6.85 2.85a38.1 38.1 0 0 1-1.96 3c-.08.11.05.47.02.51.68-.98 1.36-1.95 1.95-3 .07-.12-.04-.45-.01-.51m3.34 3.6a70.2 70.2 0 0 0-.57 5.52c0 .09.02.6.05.27.13-1.78.27-3.56.55-5.33.01-.1-.02-.5-.03-.46m4.33-6.41c.01.62.13 1.24.14 1.86 0 .37.05.02.05-.15-.01-.62-.13-1.23-.14-1.85 0-.38-.05-.03-.05.14m-45.98-20.15a11.3 11.3 0 0 0 .57 5.34c-.03-.08.06-.37 0-.51a9.03 9.03 0 0 1-.54-4.37c.01-.1-.03-.5-.03-.46'/%3e%3cpath fill='%23dcddde' d='M697.1 285.19s-.53-5.3.96-5.88c0 0 .53-4.87 7.01-4.2 0 0 2.2-3.62 5.7-1.71 0 0 3.32-1.63 5.25-.67 1.93.95 4.3 2.57 4.47 2.95 0 0 2.8-.57 4.11.48s.7 4.48.7 4.48 3.16 2.42 3.42 4.55c.26 2.13.26 2.99-.44 3.56 0 0 1.4 1.15 1.14 2.77s-1.58 3.97-1.84 3.97.18 4.23-1.22 5.66c-1.4 1.43-2.72 1.72-3.33 1.91-.61.2-2.2 2.48-3.68 2.77-1.49.28-3.5-2.3-3.68-3.06-.18-.76-2.19-1.62-2.19-1.62s-4.56 4.87-7.62 4.1a7.93 7.93 0 0 1-4.82-3.81c-.26-.48-1.14-4-1.14-4s-3.41-2.01-3.15-3.92c.26-1.9 1.66-4.2 1.66-4.2l-1.31-4.13z'/%3e%3cg fill='%23fff'%3e%3cpath d='M712.57 281.17c2.95-2.7 6.85-5.56 11.04-4.56 0 0 .07-.52 0-.54-4.19-1-8.09 1.86-11.04 4.57-.1.1.06.47 0 .53m14.19 3.23c-2.96-2.01-8.14-2.75-11.04-.27-.1.1.06.48 0 .53 2.9-2.48 8.08-1.74 11.04.27-.05-.03.1-.46 0-.53m-11.3 4.55c1.21 3.93 2.78 7.93 2.1 12.13-.02.1.02.5.02.46.74-4.55-.78-8.82-2.1-13.1.02.08-.07.36-.02.51m-4.74 2.39c.73 3.97.26 7.99 0 11.98-.02.1.01.6.04.27.28-4.23.76-8.5-.01-12.7-.01-.06-.05.35-.03.45m6.32-2.92c3.86.92 7.64 3.49 9.72 6.97-.04-.06.08-.39.01-.51a15.86 15.86 0 0 0-9.73-7s-.07.52 0 .54m-3.44 5.37c.01 2.44.2 4.89-.5 7.26-.05.15.03.43 0 .51.77-2.53.57-5.15.55-7.77 0-.3-.05-.3-.05 0m6.07-.54c2.43 2 4.35 5.04 4.71 8.24.03.21.05-.3.04-.37a13.17 13.17 0 0 0-4.75-8.4c.06.05-.1.44 0 .53m-17.87 6.7c.8-1.15 1.8-2.45 3.15-2.94.08-.04-.02-.53 0-.54-1.36.5-2.35 1.81-3.16 2.97-.08.11.04.46.01.51m5.78-20.88c-.51-2.18-2.15-3.47-3.9-4.65.04.03-.1.42 0 .48 1.74 1.16 3.38 2.45 3.89 4.63-.02-.09.04-.32.01-.46m-3.42-.04c-2.02-.96-4.11-1.07-6.3-1.07-.05 0-.05.53 0 .53 2.19 0 4.28.11 6.3 1.07-.03-.01.1-.48 0-.53m6.32-.34c.27-2.1-.04-4.08-1.85-5.37.04.03-.1.4 0 .46 1.52 1.09 2.07 2.6 1.83 4.5a2 2 0 0 0 .02.41m7.61 2.48c1.9-1.01 3.97-.82 6.04-.8.04 0 .04-.54 0-.54-2.07-.01-4.14-.2-6.04.8-.1.06.04.52 0 .54m3.42 5.1c2.93.31 5.17 1.82 7.1 4.03-.13-.15.2-.84 0-1.07-1.93-2.2-4.17-3.72-7.1-4.03-.04 0-.11 1.06 0 1.07m-12.89 8.08c-.7 2.8-.16 6.35-3.4 7.5-.18.06.03 1.05 0 1.06 3.28-1.16 2.73-4.7 3.43-7.53.07-.3-.08-.85-.03-1.03'/%3e%3cpath d='M715.45 292.16c1.12 2.95 2.7 5.96 2.09 9.23-.04.2.03 1.01.05.92.74-4.03-.7-7.48-2.11-11.18.06.16-.14.75-.03 1.03m4.22-.52a6.95 6.95 0 0 1 5.75 5.83c.03.21.08-.16.08-.19.01-.24 0-.49-.02-.73-.39-2.97-2.88-5.6-5.81-5.98-.04 0-.12 1.06 0 1.07m-.03 4.22c.45 2.45 1.14 4.9.27 7.35-.1.29.09.86.03 1.03 1.08-3.06.31-6.22-.25-9.3-.02-.1-.09.71-.05.92m-1.55-10.66c3.15-.53 6.47-1 9.2 1.07-.11-.08.2-.9 0-1.06-2.73-2.08-6.05-1.6-9.2-1.08-.13.03-.02 1.07 0 1.07m-5.76-6.25c.38-2.6 2.67-4.46 4.97-5.3.17-.06-.04-1.05 0-1.06-2.38.86-4.64 2.77-5.02 5.44a3.7 3.7 0 0 0-.02.73c0 .03.04.4.07.19m-2.87 1.56c-.08-2.88-1.34-5.2-2.58-7.73.05.12-.14.68-.03.91 1.12 2.26 2.45 4.47 2.52 7.07.02.66.1.05.09-.25m-2.64 1.55c-.56-2.57-2.25-4.27-4.5-5.44.08.04-.19.96 0 1.06 2.17 1.14 3.9 2.8 4.45 5.3.02.1.1-.71.05-.92m-4.24-1.03c-1.47-1.02-3.01-1.99-4.8-2.26-.02 0-.1.82 0 .83 1.79.28 3.33 1.24 4.8 2.26-.08-.05.16-.72 0-.83m9.17 12.06c.25 2.73.6 5.48-.77 7.97-.13.25.1.9.03 1.03 1.63-2.98 1.11-6.5.81-9.75-.03-.42-.08.61-.07.75'/%3e%3cpath d='M714.92 291.62c.91 2.56 1.99 5.3 1.8 8.08 0 .17.06 1.2.1.54.22-3.4-.75-6.5-1.87-9.65.05.16-.13.74-.03 1.03m2.12-3.74c2.6.8 5.2 1.65 7.1 3.76-.13-.14.2-.84 0-1.07-1.9-2.1-4.5-2.95-7.1-3.76.02.01-.16 1.02 0 1.07m-7.06-5.79c.28-2.27.52-4.53.54-6.82 0-.6-.1-.6-.1 0a54.3 54.3 0 0 1-.51 6.07c-.02.14.02 1.17.07.75m-4.77-1.45a23.15 23.15 0 0 1-5.26-3.49c.12.1-.2.89 0 1.07a23.12 23.12 0 0 0 5.26 3.49c-.06-.03.19-.98 0-1.07m-.79 13.69a6.64 6.64 0 0 0-2.64 3.24c-.08.19-.04.46-.04.66 0 .04.05.41.07.37a6.57 6.57 0 0 1 2.61-3.2c.2-.13-.1-1.01 0-1.07m3.37 2c-.05 1.87-1.08 3.42-2.32 4.7-.2.22.13.94 0 1.08a7.93 7.93 0 0 0 2.42-5.5c0-.34-.08-1.03-.1-.28m8.82-14.7c1.55-2.45 5.3-2.65 7.8-3.34.16-.04 0-1.06 0-1.06-2.53.69-6.26.9-7.83 3.37-.15.24.1.93.03 1.03m-17.23-.04a8.55 8.55 0 0 1-1.7-.8c.05.03-.12.6 0 .66.55.31 1.1.62 1.7.8-.01 0 .1-.63 0-.66m.34 12.54c-.54.22-1.1.45-1.47.93-.1.1-.05.4-.05.53l.01.38c0-.02.03.17.04.15.37-.48.93-.7 1.47-.92.08-.04.05-.47.05-.54 0-.02-.02-.54-.05-.53m2.26.58a6.8 6.8 0 0 0-2.62 2.45c-.12.17.08.73.03.8a6.73 6.73 0 0 1 2.6-2.41c.14-.07-.05-.82-.01-.84m4.29 1.06c-.97 2.37-3.62 4.98-1.7 7.63-.06-.1.19-.81.03-1.03-1.33-1.83 1.01-3.9 1.7-5.57.11-.28-.1-.88-.03-1.03m3.03-.04c.07 2.41-.35 4.8-.77 7.15-.04.21.04 1.02.05.92.5-2.77.9-5.53.82-8.35-.02-.75-.11-.06-.1.28m7.75-2.85c1.76 2.3 3.31 4.78 4.06 7.62-.04-.18.11-.73.03-1.03-.75-2.86-2.32-5.34-4.09-7.66.13.18-.19.82 0 1.07m.91-1.85c2.89 2.2 6.1 4.27 8.14 7.39-.06-.1.18-.8.03-1.03-2.05-3.13-5.27-5.21-8.17-7.43.1.09-.2.91 0 1.07'/%3e%3cpath d='M719.66 287.22a6.78 6.78 0 0 1 3.1.31c.92.34 1.68 1.1 2.51 1.6.84.5 1.69.97 2.37 1.69.9.94.91 2.55 1.17 3.77.02.08.09-.61.05-.79-.22-1-.33-2-.67-2.97-.33-.94-1.14-1.52-1.94-2.02-.95-.61-1.88-1.23-2.82-1.85-1.12-.73-2.5-.77-3.77-.65-.1.01-.04.91 0 .91'/%3e%3cpath d='M726.73 293.14c.32.93.7 1.85 1.01 2.78-.03-.1.08-.48.02-.67-.32-.93-.7-1.85-1.01-2.78.03.11-.08.48-.02.67m-8.09-14.73c2.04-.56 4.12-.93 6.12-1.62.17-.06-.03-1.06 0-1.07-2 .7-4.08 1.06-6.12 1.62-.16.05.01 1.07 0 1.07m-8.49 1.02a9.3 9.3 0 0 1 1.36-2.88c.76-1.13.87-2.55 1.8-3.58.2-.23-.13-.93 0-1.07-.77.85-1.04 1.95-1.48 2.98-.52 1.25-1.35 2.17-1.7 3.52-.09.3.07.85.02 1.03m-6.95 19.06a9.33 9.33 0 0 0 .35 5.26c-.06-.16.14-.75.03-1.03a5.63 5.63 0 0 1-.33-3.31c.05-.23.03-.5.02-.73 0-.04-.03-.4-.07-.19m4.22 3.31c-.73 1-.74 2.5-.35 3.65.01.04.06-.31.06-.35 0-.2.02-.44-.04-.62-.21-.64-.05-1.16.33-1.68.08-.1.05-.37.05-.5 0-.05-.07-.47-.05-.5m3.14-1.68c-.03 1.01-.57 1.97-1 2.86-.08.2.07.64.03.74.52-1.1 1-2.16 1.04-3.4.01-.24-.05-.74-.07-.2m.09-5.92v1.27c0 .04 0 .54.05.54.06 0 .05-.5.05-.54v-1.27c0-.04.01-.53-.05-.53-.06 0-.05.5-.05.53m-1.43.74c.08.15.15.3.2.46.04.23.06.24.06.04l-.05.26c-.04.24-.03.5-.01.73 0 .04.03.4.07.2.16-.88.2-1.92-.24-2.72-.03-.05-.07.34-.07.38 0 .17-.05.5.04.65m-2.04-.67a14.3 14.3 0 0 0-.47 2.02c-.03.24-.03.5-.01.73 0 .03.03.4.07.2.1-.66.24-1.3.44-1.92.06-.2.04-.45.03-.66 0-.05-.05-.41-.06-.37m-1.57.09a11.7 11.7 0 0 1-3.51 2.66c-.2.11.08 1.02 0 1.07a11.7 11.7 0 0 0 3.51-2.66c.09-.11.05-.4.05-.54 0-.05-.07-.51-.05-.53m-2.72.46c-.58.46-1.23.8-1.93 1.04-.17.06.03 1.06 0 1.07.7-.25 1.35-.58 1.93-1.04.1-.08.05-.44.05-.54l-.05-.53m-3.85-.94c-.56.25-1.14.47-1.7.72-.15.06.04.83 0 .85.56-.25 1.14-.46 1.7-.72.15-.06-.04-.83 0-.85m11.73-.47c.01.7.12 1.37.25 2.06.04.2.07-.16.07-.2.02-.23.03-.5-.02-.73-.09-.46-.2-.94-.2-1.41 0-.05-.05-.42-.06-.37-.07.19-.04.45-.04.65m1.81-.83c0 .82.09 1.6.38 2.37.01.04.06-.33.06-.38 0-.2.04-.46-.03-.65-.16-.43-.3-.88-.3-1.34 0-.04 0-.53-.06-.53s-.05.5-.05.53m1.4-.18c.24.34.52.81.53 1.25 0 .04.05.41.06.37.07-.2.05-.45.04-.65a3.44 3.44 0 0 0-.6-2c-.04-.05-.07.34-.07.38 0 .15-.05.52.04.65m1.71-.68c.6.13 1.14.37 1.59.81l.05-.53c0-.11.04-.45-.05-.54a3.15 3.15 0 0 0-1.59-.8s-.14 1.03 0 1.06m.91-1.39c.7.58 1.47 1.02 2.38 1.16.03 0 .12-1.05 0-1.07a4.83 4.83 0 0 1-2.38-1.16l-.05.54c0 .1-.04.45.05.53m1.92-4.63c.61 0 1.21.1 1.81.23.01 0 .14-1.04 0-1.06-.6-.13-1.2-.23-1.81-.24-.08 0-.08 1.07 0 1.07m-.89-2.21c.37-.6.92-1.05 1.46-1.49.09-.07.05-.43.05-.53l-.05-.53c-.55.45-1.11.9-1.49 1.52-.09.15-.04.5-.04.66 0 .03.04.42.07.37m-1.69-2.14c.1-.7.34-1.33.77-1.9.08-.11.05-.4.05-.53 0-.06-.07-.5-.05-.53a4.3 4.3 0 0 0-.84 2.77c0 .03.04.4.07.19m-1.37-.99c.7-.98 1.17-2.1 1.81-3.12.1-.15.04-.5.04-.66 0-.04-.03-.42-.07-.37-.64 1.01-1.11 2.14-1.8 3.12-.1.14-.05.5-.04.66 0 .03.02.42.06.37'/%3e%3cpath d='M711.45 276.86c.03 1.2.11 2.39.36 3.56.05.2.07-.15.08-.2.01-.22.03-.5-.02-.72-.21-.96-.3-1.94-.32-2.92-.02-.75-.1-.06-.1.28m-5.06.84c.18.43.42.84.64 1.26a8.28 8.28 0 0 1 .46 1.12c-.06-.22.05-.16-.08.07-.15.24.1.9.03 1.02.3-.53.26-1.39.12-1.96-.22-.92-.78-1.68-1.14-2.54.06.15-.15.75-.03 1.03m-1.01 2.08a18.6 18.6 0 0 0-2.27-1.85l-.05.53c0 .1-.04.47.05.53a18.8 18.8 0 0 1 2.27 1.86l.05-.54c0-.11.04-.44-.05-.53m3.31 1.11c.47-2.34.38-4.68-.58-6.88.06.15-.15.75-.03 1.03.7 1.6.91 3.17.56 4.93-.05.23-.03.5-.02.73 0 .03.03.4.07.19m4.96-3.06c.08 0 .08-1.07 0-1.07s-.08 1.07 0 1.07'/%3e%3cpath d='M708.04 280.99c.12-1.32.43-2.62.57-3.94a5.8 5.8 0 0 0 0-1.13c-.03-.27-.09-.26-.11 0-.14 1.32-.45 2.62-.57 3.94a6.1 6.1 0 0 0 0 1.13c.03.27.08.27.11 0m14.34 8.22a4.68 4.68 0 0 1 2.81 2.29c.04.07.1-.5.1-.56 0-.28.06-.73-.06-.99a4.76 4.76 0 0 0-2.85-2.34c.04.01-.25 1.52 0 1.6m-3.88 7.96c.2.68.22 1.3.1 2.01-.07.35-.05.74-.03 1.1 0 .05.05.59.1.28.3-1.6.34-3.37-.13-4.93-.01-.06-.1.49-.1.56 0 .3-.03.68.06.98m-3.23-2.16c0 1.32.08 2.64-.19 3.94-.07.35-.05.74-.02 1.1 0 .05.04.58.1.28.36-1.75.28-3.54.27-5.32 0-.05.01-.8-.08-.8s-.08.74-.08.8m-1.64 1.43c-.46 1.75-.9 3.51-1.27 5.29-.06.35-.04.74-.02 1.1 0 .05.04.58.1.28.35-1.73.79-3.43 1.23-5.13.12-.45-.11-1.27-.04-1.54m2.21 1.12c.01 1.5.19 3.03.02 4.53-.04.37-.03.76 0 1.13.03.27.08.26.11 0 .22-1.9.05-3.77.03-5.66 0-.06.01-.8-.08-.8s-.08.74-.08.8m-10.61.8c.03-.48.03-.57-.01-.29a2.5 2.5 0 0 1-.31.8c-.13.23-.06.72-.06.98 0 .05.06.64.1.56.56-1 .51-2.32.36-3.43-.04-.3-.1.24-.1.29-.03.36-.03.73.02 1.09m4.66-3.16c.31.6.29 1.12.28 1.78 0 .05 0 .8.08.8.09 0 .08-.75.08-.8 0-1.1.12-2.31-.4-3.32-.04-.08-.1.5-.1.56 0 .26-.07.73.06.98m1.27-.55c.17.14.32.29.44.48l.12.27c.04.1.05.39.04.05 0 .16.01.32.04.48 0 0 .02.18.06.08.1-.29.06-.68.06-.98-.02-.78-.13-1.48-.76-1.98-.03-.02-.06.26-.06.24a5.49 5.49 0 0 0 0 1.13c.01.04.01.19.06.23m1.57-1.42c.25.5.54 1 .8 1.5.03.09.05-.06.05-.08.03-.15.03-.31.04-.47l-.01-.62c0-.1 0-.27-.05-.37-.25-.5-.54-1-.79-1.5-.04-.08-.06.07-.06.08l-.03.48v.61c0 .1 0 .27.05.37m3.51-1.27a39.9 39.9 0 0 0 1.95 2.58c-.03-.03.07-.72.07-.8 0-.2.06-.64-.07-.8-.68-.81-1.3-1.66-1.9-2.52-.06-.08-.1.5-.1.56-.01.22-.1.78.05.98m1.81-3.01c.47.83 1.01 1.6 1.6 2.34-.02-.03.08-.72.08-.8 0-.19.06-.63-.07-.8a17 17 0 0 1-1.57-2.28c-.04-.08-.1.5-.1.56 0 .25-.07.75.06.98m-17.65-8.05a7.08 7.08 0 0 0-1.7-1.04 4.6 4.6 0 0 0-.08.8c0 .1-.04.74.08.8.62.26 1.18.62 1.7 1.04l.08-.8c0-.15.06-.69-.08-.8m5.53-1.9a4.55 4.55 0 0 1 .17.48c0 .16.01.33.04.48 0 0 .02.18.06.08.1-.29.06-.68.05-.98 0-.55-.06-1.1-.28-1.6-.04-.09-.06.07-.06.08l-.03.48c-.01.28-.07.71.05.98m4.36-4.15a5.74 5.74 0 0 1-.62 3.07c-.14.23-.07.73-.06.98 0 .06.05.64.1.56.84-1.44.77-3.41.73-5.04 0-.06-.07-.62-.1-.55-.1.29-.06.68-.05.98m.98 5.91a6.46 6.46 0 0 0 2.06-2.58c.12-.25.06-.71.06-.98 0-.05-.06-.63-.1-.56a6.3 6.3 0 0 1-2.02 2.52c-.13.1-.08.67-.08.8 0 .05.06.81.08.8m2.72-.11c.32-.33.59-.7.9-1.04.05-.05.05-.17.06-.24a5.83 5.83 0 0 0 0-1.13c0 .03-.03-.25-.05-.23-.32.33-.6.7-.91 1.04-.05.05-.05.17-.06.24a5.49 5.49 0 0 0 0 1.13c0-.03.04.25.06.23m4.08.71c-1.02 0-2.04-.01-3.06-.12-.07 0-.16 1.59 0 1.6 1.02.1 2.04.12 3.06.12.11 0 .12-1.6 0-1.6m-.91 3.68c1.36.82 2.68 1.7 4.08 2.43-.1-.06.3-1.44 0-1.6-1.4-.73-2.72-1.61-4.08-2.43.13.08-.3 1.42 0 1.6'/%3e%3cpath d='M717.28 287.82c1.21.77 2.53 1.36 3.63 2.32l.07-.8c0-.16.06-.68-.07-.8-1.1-.96-2.42-1.55-3.63-2.32-.02-.01-.08.76-.08.8 0 .13-.05.71.08.8m-7.8-5.81c.17-.58.17-1.2.17-1.81 0-.06.01-.8-.08-.8s-.08.74-.08.8c0 .22 0 .03 0 0 0 .1-.02.18-.05.27-.1.3-.06.67-.06.98 0 .16.01.32.04.48 0-.02.03.18.06.08m-9.54-4.26c1.06 1.3 2.41 2.25 3.72 3.27.97.75 1.7 2.04 2.74 2.63-.12-.07.3-1.42 0-1.6-.94-.53-1.58-1.67-2.41-2.37-1.39-1.16-2.89-2.1-4.05-3.53.2.24-.3 1.24 0 1.6m2.27 4.31a31.68 31.68 0 0 1-1.81-2.08c-.02-.02-.06.26-.06.23-.02.19-.02.38-.02.57 0 .19-.06.63.08.8.58.71 1.17 1.42 1.8 2.08l.09-.8c0-.17.06-.66-.08-.8m-1.27 10.56c-.43.78-.79 1.59-1.34 2.29-.13.16-.08.6-.08.8 0 .08.1.76.08.8.57-.72.94-1.55 1.38-2.35.13-.24.06-.72.06-.98 0-.06-.06-.64-.1-.56m1.19 1.6c-.02.89-.32 1.78-.43 2.66-.05.37-.04.76 0 1.13.02.27.07.26.1 0 .15-1.14.46-2.21.48-3.36 0-.3.05-.7-.05-.99-.03-.06-.1.5-.1.56m4.18 7.35c.76-2.53.67-5.2.62-7.81-.02-1.12-.16-.09-.15.42.04 1.98.06 3.94-.51 5.85-.13.44.12 1.28.04 1.54m2.45-6.14c.29.88.35 1.68.2 2.6a5.2 5.2 0 0 0-.02 1.08c0 .05.06.6.1.29.28-1.8.34-3.76-.24-5.51-.02-.06-.1.49-.1.56 0 .3-.04.68.06.98m2.4-.89a5.55 5.55 0 0 1 1.06 3.9c-.01.25.08 1.78.14.8.13-2.08.18-4.6-1.2-6.3.02.03-.08.72-.08.8 0 .2-.05.64.08.8'/%3e%3cpath d='M711.82 293.47c.55 2.3.98 4.62 1.21 6.97.06.63.13-.92.11-1.13a55.1 55.1 0 0 0-1.28-7.38c.07.28-.15 1.08-.04 1.54m2.27-.58a15 15 0 0 1 2.38 4.51c.02.06.1-.48.1-.55 0-.32.03-.68-.06-.99a14.98 14.98 0 0 0-2.38-4.51c.1.13-.28 1.21-.04 1.54m4.68-3.86c-.47-.8-1.45-.9-2.29-.84-.15.01-.07 1.6 0 1.6.8-.07 1.8 0 2.25.78.04.08.1-.5.1-.56 0-.25.07-.75-.06-.98'/%3e%3cpath d='M716.37 288.4c1.47-.21 2.94-.23 4.42-.23.12 0 .12-1.6 0-1.6-1.48 0-2.95.02-4.42.23-.18.03-.05 1.6 0 1.6m2.72-12.13c-1.17 1.4-1.8 3.31-2.2 5.09-.07.34-.04.74-.02 1.09 0 .06.04.59.1.29.38-1.69 1-3.54 2.12-4.87.14-.16.08-.61.08-.8 0-.08-.1-.77-.08-.8m-6.38 1.37c.22 1.35.77 2.6 1.15 3.9.02.06.1-.49.1-.56 0-.31.03-.68-.06-.98-.36-1.25-.9-2.45-1.11-3.74-.05-.3-.1.24-.1.29-.03.36-.04.73.02 1.09m-1.21 2.33a6.39 6.39 0 0 1-1.22-2.17c-.04-.1-.07.1-.06.08-.03.16-.04.32-.04.48 0 .3-.04.68.05.98.26.84.73 1.55 1.27 2.23.02.02.06-.26.06-.24l.02-.56c0-.2.05-.63-.08-.8m-2.15 1.05a16.4 16.4 0 0 1-4.99-2.43c.17.12-.3 1.36 0 1.6a16.4 16.4 0 0 0 4.99 2.43c-.04-.01.25-1.52 0-1.6'/%3e%3c/g%3e%3cg stroke-width='0'%3e%3cpath fill='%23d9c0b9' stroke='%23000' stroke-width='.55' d='M670.35 297.23s-2.95-5.08 5.24-7.57c0 0 2.48 1.35 3.05 2.28 0 0-1.43 2.39-6.1 3 0 0-2.1.63-2.19 2.29z'/%3e%3cpath fill='%235e3f17' d='M675.77 290.98c-1.34.82-3.45.83-3.87 2.68v.12c.43-1.85 2.54-1.85 3.87-2.67.03-.01-.01-.12 0-.13'/%3e%3cpath fill='%23d9c0b9' stroke='%23000' stroke-width='.55' d='M671.21 296.4s3.3.7 5.52-.93c1.83-1.34 2.48-.73 2.96-.63 0 0 .1-1.65-1.05-2.9 0 0-2.32 1.91-4.03 2.43-1.71.52-2.87.35-3.4 2.03z'/%3e%3cpath fill='%23dba05f' stroke='%23000' stroke-width='.55' d='M711.3 280.57s-7.05 1.2-8.9 1.63a50.5 50.5 0 0 1-7.54.86c-1.47 0-3.72-1.18-5.3-1.5-1.56-.32-6.65-.85-8.5 1.07s-3.04 2.56-3.63 3.2c-.58.64-2.94 2.73-3.04 3.65-.09.93.6 2.31 1.77 2.31 1.18 0 3.64 2.5 3.64 3.03 0 .87 3.22 1.8 6.27 1.79 5.49-.03 8.19-2.8 16.42-1.83 4.48.53 12.72-2.99 14.2-5.12 1.46-2.13 2.34-4.37.87-6.82-1.46-2.45-5.87-2.2-6.26-2.27z'/%3e%3cpath d='M681.79 288.47s-.02.16-.05-.09l-.04-.18-.05-.13-.01-.15c-.03-.05.15.04.72-.52l.48-.73c-.04.02.7-.91 1.77-1.16 1.08-.25 2.07-.07 2.21-.06.05-.06-2.44-.1-2.6.2 0-.2 2.4-.28 2.52-.11.03-.06-2.25-.08-2.42.24 0-.14 2.07-.24 2.3-.05 0 0-.39-.05-.5-.04l.19.04h-.3l-.16-.02c0-.01.45.05.48.1 0 0 .2-.07-.6-.02 0 0-.5-.1-1.3.16-1.07.16-1.03 1.6-2.64 2.52'/%3e%3cpath fill='none' d='M681.62 287.87c.1 0 .79-.27 1.45-1.5-.19-.33 2.49-1.38 2.77-1.04 0-.01.73 0 1.14.07'/%3e%3cpath fill='none' d='M684.27 285.55c-.27-.04-1.63 1.1-1.5 1.17-.3.7-1.07 1.17-1.15 1.15m2.76-2.15c0-.09 1.84-.26 2.2-.13m-2.54.62c-.05-.2 1.91-.46 2.1-.33'/%3e%3cpath d='M686.09 287.46s.08.05-.03-.06l-.08-.1-.05-.08-.07-.06s-.06.03-.56.46c0 0-.21.16-.47.4 0-.02-.48.4-1 .69-.57.08-1.38.45-1.38.6-.05-.23 1.61-.66 1.59-.69.12.08-1.48.37-1.5.7-.06-.2 1.46-.58 1.52-.59.08.1-1.34.33-1.38.63 0 .01.2-.19.27-.2l-.1.08c.05-.05.12-.06.18-.08l.1-.05s-.28.13-.27.19c.01.03-.16-.02.37-.16 0 .05 1.34-.27 2.86-1.68'/%3e%3cpath fill='none' d='M685.84 287.12c0-.02-.59.58-1.2 1 0 .1-1.24.84-1.57.75-.02-.04-.53.22-.74.48'/%3e%3cpath fill='none' d='M683.99 288.6c.1-.1.88-.63.88-.64.28-.3.97-.85.98-.85m-1.83 1.63c.07.06-1.17.23-1.37.53m1.72-.56c.08.16-1.32.53-1.38.58'/%3e%3cpath fill='%23c6262c' stroke='%23000' stroke-width='.55' d='M688.04 281.76s-.1-2.24-2.25-3.1c-2.15-.84-4.6-.95-5.48-.84-.88.1-1.03.5-2.13.67-1.1.18-2.28.71-2.28.71s0-.1-.58.96c-.6 1.07-1.57 1.6-1.08 2.56s.17 1.13.77 1.3c.6.2-.3-.32-.3-.32s-3.77 1.22-2.86 3.53c.92 2.31 1.84 1.45 2.12 1.4.27-.05 2.13-1 2.13-1l3.06-2.86s3.6-1.41 3.99-1.52c.39-.1 2.1.04 2.1.04l2.79-1.53z'/%3e%3cpath d='M685.31 287.01c0 .56-.57 1.28-1.27 1.6-.7.34-1.26.15-1.26-.4 0-.56.56-1.28 1.26-1.61.7-.33 1.27-.15 1.27.41'/%3e%3cpath fill='%235e3f17' d='M708.62 292.91a5.35 5.35 0 0 0 2.05-.93'/%3e%3cpath d='M674.86 285.06c.58.01 1.25.31 1.16 1.02v.38c.01.09.03.09.04 0 .06-.43.08-.93-.09-1.34-.18-.45-.67-.58-1.11-.6-.04 0-.04.54 0 .54m2.77 1.07a2.7 2.7 0 0 0-.26-2.4c.03.05-.1.4-.02.52.3.42.45.85.27 1.37-.06.14.04.43.01.51m2.24-2.37c-.14-.93-.47-1.97-1.33-2.45.04.02-.1.47 0 .53.84.47 1.17 1.47 1.3 2.38.02.1.04-.08.04-.1l-.01-.36m1.97-.48c.12-.87.05-1.8-.67-2.38.06.05-.1.45 0 .54.4.32.72.84.64 1.38v.36c0 .02.02.2.03.1m-3.3-2.91c1.93-.98 5.85-1.41 7.36.54-.07-.09.1-.41 0-.54-1.51-1.94-5.43-1.51-7.36-.53-.1.05.04.51 0 .53' fill='%23842116'/%3e%3cpath d='M680.38 294.73c.61 0 1.24 0 1.84-.13.07-.02 0-.54 0-.54-.6.14-1.23.14-1.84.14-.04 0-.04.53 0 .53m-1.16-8.54c-.5 0-.35.61-.66.87-.04.03-.02.21-.02.26l.02.27c.3-.26.17-.86.66-.87.04 0 .04-.53 0-.53m1.7 1.15c.26-.48.76-.67 1.22-.9.1-.05-.04-.52 0-.54-.47.24-.97.44-1.23.93-.04.08-.02.24-.02.32 0 .02.02.22.03.19m2.21 2.94c.42.03.74-.15.99-.48.04-.06.02-.2.02-.27 0-.03-.03-.25-.02-.26-.25.33-.57.51-.99.48-.03 0-.05.53 0 .53m1.74-.62a3.1 3.1 0 0 0 1.56-1.35c.04-.08.02-.25.02-.33 0-.02-.02-.21-.03-.19a3.07 3.07 0 0 1-1.55 1.34c-.1.04.02.52 0 .53m-2.74-2.88c-.39.65-1.11.98-1.55 1.59-.08.1.04.47.01.51.44-.6 1.17-.94 1.55-1.59.05-.07.03-.24.02-.32 0-.02-.02-.22-.03-.19m1.19 8.5c1.4.07 2.74-.11 4.1-.48.07-.02-.01-.53 0-.53-1.36.36-2.7.55-4.1.48-.03 0-.05.53 0 .53m6.44-.24c1.82-1.32 3.36-2.46 3.96-4.77.04-.15-.04-.42-.02-.51-.59 2.3-2.14 3.44-3.94 4.75-.1.07.05.5 0 .53m1.09-3.17a6.43 6.43 0 0 0 2.74-3.42c.05-.15-.05-.44-.02-.52a6.39 6.39 0 0 1-2.72 3.4c-.1.07.04.51 0 .54m-.62-8.07c1-.12 2.08.7 2.78 1.35-.07-.06.1-.44 0-.54-.7-.64-1.79-1.46-2.78-1.34-.06 0-.02.53 0 .53m25.84 4.02c1.13-1.83.51-4.12-.66-5.75.03.04-.1.4-.01.51.99 1.39 1.65 3.13.66 4.73-.08.12.04.46.01.51m-19.72-2.58c1.14.83 4.29 2.94 3.43 4.67-.07.13.04.45.01.51 1.18-2.37-1.86-4.57-3.44-5.71.05.03-.1.45 0 .53m8.86 8.51a5.98 5.98 0 0 0 .3-1.89c-.02-.09-.03-.09-.04 0-.05.47-.1.93-.27 1.38-.04.1-.02.23-.02.32 0 .02.02.21.03.19m-31.26-5.34c.44-.65.3-1.52-.13-2.12.03.04-.1.4-.02.51.12.16.21.32.29.5.1.22-.03.42-.15.6-.05.06-.02.25-.02.32 0 .02.01.22.03.19m19.67 5.65c.62-.4 1.05-.98 1.2-1.73.02-.11.01-.24 0-.36 0-.02-.01-.2-.03-.1-.13.71-.58 1.28-1.17 1.66-.1.06.05.5 0 .53m2.95-.24c.27-.3.36-.65.38-1.04 0-.1.02-.23-.02-.33l-.03.19c0 .23-.19.49-.33.65-.04.05-.03.2-.03.26 0 .03.04.26.03.27m17.82-9.78c.48.86.56 1.8.35 2.77-.03.1.01.5.02.46a5.37 5.37 0 0 0-.36-3.74c.04.06-.08.38-.01.51m-1.78 1.81c.35.87.32 1.77.22 2.69 0 .07.02.59.04.38a7.24 7.24 0 0 0-.25-3.58c.03.07-.07.37-.01.51m-1.67 1.55c0 .65 0 1.3-.22 1.91-.05.15.05.44.02.52.28-.77.25-1.62.25-2.43 0-.3-.05-.3-.05 0' fill='%237a2e26'/%3e%3c/g%3e%3cpath fill='%23dcddde' stroke='%23000' stroke-width='.27' d='M694.56 275.41c-7.07.4-14.05-4.3-14.05-4.3-8.76-1.7-9.27-9.63-9.27-9.63-3.5-1.34-6.52-10.34-6.52-10.34-5.43 3.24-12.23.04-12.23.04s0-1.34-6.13 0c-6.13 1.33-5.08-1.15-5.08-1.15s2.45-2.48-8.4 0c-10.87 2.48.87-3.24.87-3.24-3.16.95-13.5 1.72-13.5 1.72-3.78.17-7.63 2.04-11.83 3.23-2.6.75-7.07 1.61-9.33 2.58-6.02 2.57-18.09 8.1-28.05 12.02-13.1 5.14-23.5 9.05-22.81 8.89.82-.2 14.23-8.7 31.03-16.31 15.6-7.08 33.5-13.62 42.53-16.19 11.7-3.88 21.3-2.02 26.74-.05 2.63.96 17.13-.44 23.6.32 6.5.76 7.17 11.42 7.17 11.42 1.22.76 1.66 10.78 1.66 10.78s-3.6.1.61.67c4.2.57 11.92 6.67 11.92 6.67 2.62 0 2.92-.1 2.92-.1s1.53-1.92 3.63-2.72c2.1-.8 4.03-1.61 6.4-1.79 2.36-.18 5.7-.2 8.06.07 2.37.27 5.16.29 8.5.91 3.32.63 3.67.81 4.72 1.17 1.05.36 2 .12 2 .12 4.32-1.8 12.35-5 14.2-4.64 0 0 3.03-.76 4.66-2.03 1.62-1.26 5.35-4.3 5.35-4.3s-2.57-18.11 15.82-16.34c18.4 1.78 42.79 4.14 47.68 4.9 4.89.76 22.4 5.76 26.59 7.8 4.2 2.02 16.24 7.42 21.6 9.79 2.17.96 10.46 4.63 16.59 7.05a61.3 61.3 0 0 1 16.08 9.69c-5.77-2.44-10.43-5.23-15-7.21-3.7-1.6-7.56-2.35-10.56-3.69-6.38-2.83-11.3-5.41-15.16-7.21-14.24-6.64-14.11-6.9-19.88-7.36-3.98-.3 2.86 4.86 2.86 4.86s-13.04-5.07-17.23-6.85c-4.2-1.77-7.69-2.53-11.65-2.28-3.95.25-6.98-.5-9.3-1.27-2.34-.76-15.61-1.27-17.94-1.52-2.33-.25-4.19-.76-4.19-.76l.93 1.52-6.52-1.01-1.86 2.79s-6.29 1.26-6.75-.77c-.47-2.02-3.73 9.13-5.36 12.43-1.63 3.3-9.07 2.2-10.93 4.23-1.86 2.03-5.84 3.39-6.77 3.9-.93.5-3.75.26-5.38.26-2.43 0-.36.04-4.34.8 0 0-3.44-.04-4.75-.58a73.89 73.89 0 0 0-5.66-1.78c-1.99-.57-13.05-.82-14.63-.73-1.57.09-4.24.9-6 1.62-1.74.72-4.8 2.6-4.8 3.04'/%3e%3cpath fill='%23452c25' d='M695.29 273.29s-.74.57-.93 2c-.18 1.42-.1.85-.1.85'/%3e%3cpath fill='%23574f4c' d='M731.03 271.21c.94.7 1.9 1.41 2.74 2.24.02.03.3.28.2.08-.1-.22-.28-.42-.44-.58a26.97 26.97 0 0 0-3.02-2.5c-.18-.13.01.18.04.22.13.2.29.4.48.54'/%3e%3c/svg%3e\"},9927:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 33 21'%3e%3cpath fill='%23FFF' d='M0 0h33v21H0z'/%3e%3cpath d='M0 0h33v14H0z'/%3e%3cpath fill='%234891D9' d='M0 0h33v7H0z'/%3e%3c/svg%3e\"},5174:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 600'%3e%3cpath d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M0 0h900v400H0z'/%3e%3cpath fill='%23ce1126' d='M0 0h900v200H0z'/%3e%3cg fill='%23fff' stroke='%23c09300'%3e%3cpath stroke-width='1.27' stroke-linejoin='round' d='m450.81 302.4 68.488 63.579-4.876-115.47c-.716-17.5-15.924-13.485-26.97-7.172-11.192 7.172-23.959 7.172-37.447 2.437-13.485 4.735-26.253 4.735-37.444-2.437-11.046-6.313-26.252-10.328-26.97 7.172l-4.879 115.47L450.81 302.4z'/%3e%3cpath d='m393.47 246.49-4.734 112.32-8.035 7.168 4.879-115.47c2.294-1.578 6.313-4.017 7.89-4.017zm9.62 8.04-4.017 93.955-8.032 8.22 4.877-108.49c1.579 1.577 6.314 5.45 7.172 6.31zm8.75 7.17-3.155 78.362-6.455 6.31 4.018-89.406c1.574 1.578 4.73 3.874 5.592 4.734zm9.47 4.02-3.156 66.787-6.313 5.12 3.156-74.345c1.579.717 4.735 2.438 6.313 2.438zm8.75 0-2.297 55.657-6.455 6.313 2.44-61.252c1.575 0 5.593 0 6.312-.718z' id='a' fill='%23c09300' stroke='none'/%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 900 0)'/%3e%3cpath fill='%23c09300' stroke-width='1.074' d='m453.16 315.06 9.613 43.755-3.158 3.155-3.3-2.439-5.451-39.018 2.296 39.018-3.157 4.016-3.157-4.016 2.296-39.018-5.45 39.018-3.303 2.44-3.154-3.156 9.611-43.755h6.314z'/%3e%3cg id='b' fill='none' stroke-width='1.27' stroke-linejoin='round'%3e%3cpath fill='%23fff' stroke-width='1.189' d='m428.48 295.84-19.08 67.705 26.255 4.018 11.188-50.924-18.363-20.8z'/%3e%3cpath d='m422.17 318.94 2.296 5.593 12.405-11.848'/%3e%3cpath d='m430.76 304.92 2.596 24.346 7.89-10.328m-3.156 4.012 4.31 14.875m1.69-5.465-8.718 13.241m2.72 13.216-2.791-13.198-2.436-13.423-5.84 7.91-2.562-9.12-8.174 8.385 4.157 15.25 5.738-9.434 3.155 9.612 5.89-9.162'/%3e%3cpath d='m414.99 361.97 5.3-7.444 3.452 11.457 4.735-8.032 3.157 9.614'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='matrix(-1 0 0 1 900 0)'/%3e%3cg stroke-width='1.27' stroke-linejoin='round' stroke-linecap='round'%3e%3cpath stroke-width='2.378' d='M450 393.81c19.943 0 39.024-1.578 50.213-4.734 4.735-.859 4.735-3.298 4.735-6.455 4.736-1.578 2.295-7.17 5.595-7.17-3.3.862-4.016-5.595-8.033-4.732 0-5.597-5.596-6.313-10.33-4.738-9.47 3.158-26.255 3.875-42.18 3.875-15.924-.717-32.567-.717-42.18-3.875-4.733-1.575-10.326-.859-10.326 4.738-4.018-.863-4.736 5.594-8.034 4.731 3.299 0 .86 5.593 5.594 7.17 0 3.158 0 5.597 4.878 6.456 11.045 3.156 30.128 4.734 50.068 4.734z'/%3e%3cpath d='M422.89 363.54c6.454.861 13.628 1.578 19.225.861 3.153 0 5.45 5.45-.863 6.313-5.593.715-14.345 0-19.08-.862-4.017-.718-12.768-2.295-18.364-3.876-5.594-2.436-1.576-7.168 1.578-6.452 4.879 1.577 11.192 3.157 17.505 4.016zm54.23 0c-6.457.861-13.628 1.578-19.081.861-3.3 0-5.596 5.45.717 6.313 5.596.715 14.347 0 19.078-.862 4.019-.718 12.77-2.295 18.364-3.876 5.597-2.436 1.58-7.168-1.577-6.452-4.878 1.577-11.19 3.157-17.501 4.016z'/%3e%3cpath d='M403.09 360.39c-4.877-.861-7.172 4.732-5.593 7.887.717-1.578 4.017-1.578 4.735-3.155.858-2.437-.718-2.437.858-4.732zm19.08 14.67c0-3.153 3.155-2.765 3.155-5.921 0-1.577-.86-4.018-2.437-4.018-1.579 0-3.158 1.578-3.158 3.156-.718 3.157 2.44 3.63 2.44 6.783zm22.71-9.08c4.73 0 4.262 6.314 1.966 9.47 0-2.295-4.017-3.156-4.017-4.732 0-2.442 3.626-2.442 2.051-4.738zm52.03-5.59c4.878-.861 7.174 4.732 5.595 7.887-.718-1.578-4.017-1.578-4.734-3.155-.86-2.437.718-2.437-.86-4.732zm-19.08 14.67c0-3.153-3.153-2.765-3.153-5.921 0-1.577.86-4.018 2.438-4.018 1.577 0 3.156 1.578 3.156 3.156.718 3.157-2.44 3.63-2.44 6.783zm-22.71-9.08c-4.732 0-4.263 6.314-1.967 9.47 0-2.295 4.015-3.156 4.015-4.732.001-2.442-3.626-2.442-2.048-4.738z'/%3e%3cpath d='M404.67 361.97c1.58 0 4.018.718 4.735 1.577l-4.74-1.58zm7.88 2.44c.862 0 4.018.716 5.596 1.575l-5.6-1.58zm28.7 3.15c-1.578 0-4.734 0-5.593.715l5.59-.72zm-8.75 0c-.859-.862-4.016-.862-5.593 0h5.59zm62.84-5.59c-1.578 0-3.875.718-4.735 1.577l4.735-1.577zm-7.89 2.44c-.86 0-4.017.716-5.595 1.575l5.6-1.58zm-28.7 3.15c1.58 0 4.735 0 5.595.715l-5.6-.72zm8.75 0c.86-.862 4.018-.862 5.595 0h-5.6z' stroke-width='.891'/%3e%3cg fill='%23c09300' stroke='none'%3e%3cpath d='M403.34 374.58c-.534-.102-.815-.525-.68-1.025.164-.609.651-.957 1.112-.794.294.104.83.645.832.839.003.222-.28.752-.402.754-.053 0-.135.046-.182.102-.1.118-.413.175-.68.124zm54.93 3.92c-.199-.074-.515-.518-.515-.724.002-.387.574-1.018.929-1.021.175-.001.655.248.834.434.325.338.254.893-.154 1.208-.201.155-.8.212-1.094.103zm.36 2.48c-.42-.142-.574-.348-.608-.814-.036-.485.012-.56.525-.84l.365-.2.347.155c.48.214.693.445.71.767.018.348-.24.704-.64.883-.352.158-.373.16-.699.05z'/%3e%3cpath d='M407.75 370.09c-.346-.01-.821.307-1.094.469-.649.152-1.404.55-2.031.125-.617-.191-1.438-.04-1.531.718.158.652 1.071 1.025 1.625.594.41-.537 1.531-.853 1.656.063-.457.692-.405 1.609-.781 2.344-.061.457-.252.892-.5 1.28-.462.047-.954-.007-1.344.282-.626.034-1.265.345-1.625.875-.403.578-.789 1.165-.906 1.875.107.725.937.933 1.562.969.667.183 1.335.424 2 .625 1.086.243 2.102.635 3.188.875 1.584.477 3.248.697 4.844 1.125.167.055.324.104.5.125.662.137 1.007-.583 1.062-1.125.329-1.16.58-2.34.906-3.5.225-.466.497-1.517-.406-1.281-.515.308-.952.773-1.594.812-.874.05-.375.945-.031 1.313.076.587-.11 1.288-.5 1.75-.52.33-1.172-.057-1.719-.188-.574.01-1.723-.283-1.187-1.062.19-.577.207-1.209.437-1.782.294-.614.336-1.285.469-1.937-.361-.777-.979.256-1.469.344-.338.234-1.605.334-.937.937.575.437.134 1.197.03 1.75-.036.77-.837.954-1.468.781-.628-.03-1.501-.497-.969-1.187.121-.575.322-1.14.438-1.719.237-.698.437-1.363.687-2.062a5.78 5.78 0 0 1 .625-1.75c.018-.686.478-1.276.47-1.97-.048-.338-.2-.461-.407-.468zm-3.594 7.25a.353.353 0 0 1 .219.031c.25.106.257.31 0 .531-.112.097-.24.191-.281.188-.468-.04-.606-.11-.625-.281-.017-.151.03-.195.343-.344a1.45 1.45 0 0 1 .344-.125zm-1.036 5.02c-.496-.466-.416-.806.317-1.353.314-.234.505-.208.863.12.553.504.575.823.087 1.255-.24.213-.346.257-.627.26-.293.003-.376-.034-.64-.282zm3.05.92a.86.86 0 0 1-.623-1.088c.129-.434.203-.477.84-.483.716-.007.854.112.861.741.004.355-.023.437-.2.6-.207.193-.605.297-.878.23zm89.11.08c-.227-.189-.273-.274-.275-.515-.003-.41.233-.712.746-.944.682-.308.96-.266 1.216.186.342.601.325.847-.084 1.252-.225.224-.268.237-.785.242-.507.003-.565-.01-.818-.221zm-85.06 1.15c-.364-.097-.552-.37-.557-.807-.004-.334.02-.387.253-.57.152-.118.39-.22.579-.245.267-.037.364-.013.58.138.55.387.667.77.348 1.14-.34.397-.662.488-1.203.344zm21.92.98c-.08-.1-.26-.16-.278-.287.032-.555.059-1.117.236-1.648.096-.523.012-1.07.194-1.579.187-.927.187-1.882.402-2.803.01-.475.055-.95.193-1.406.157-.722.013-1.476.226-2.19-.023-.267.285-.983.556-.559.394.577.912 1.045 1.421 1.516.438.252.036.624-.266.75-.416.163-.517.62-.487 1.022-.058.414-.225.806-.242 1.23-.087.622-.07 1.254-.151 1.876-.182.609-.113 1.26-.173 1.888.008.398-.182.76-.156 1.16-.048.406-.066.894-.407 1.172-.329.166-.804.138-1.068-.142zm29.7-9.8c-.482.365-.914.795-1.344 1.219-.592.449.487.71.625 1.094.157.586.148 1.21.188 1.812.179.552.258 1.138.218 1.719-.051.622-.863.491-1.218.844-.492.207-.688.69-1.063 1.03-.246.484-.312 1.077-.344 1.626.036.448-.302.95 0 1.344.04.055.086.132.125.187.102.145.343.03.5.063.504-.029 1.029.047 1.5-.157 1.21-.209 2.432-.226 3.657-.28.749.023 1.47-.238 2.218-.22.587.13.851-.506.844-.968-.332-.654-.045-1.429-.312-2.094-.235-.673-.143-1.428-.25-2.125-.015-.549-.711-.752-1.063-.344-.341.345-.893.414-1.156.844-.297.602.627.603.781 1.062.176.465.118.98.156 1.47.115.592-.529.625-.937.687-.537.2-1.29.336-1.594-.313-.19-.48-.165-.993-.219-1.5-.013-.892-.227-1.768-.28-2.656-.052-1.097-.242-2.187-.313-3.281-.01-.456-.071-1.198-.72-1.063zm-.625 8.25.313.031.03.375.032.375-.406.125a3.28 3.28 0 0 1-.407.094 2.55 2.55 0 0 1-.187-.125c-.22-.159-.164-.385.125-.688.163-.17.239-.203.5-.187zm-29.965-9.28c-.38.135-.862.693-1.25.688-.88.062-.757.919-.125 1.218.083.26.005.588.031.875.123.79-.375 1.425-.281 2.22-.044.87-.307 1.717-.344 2.593-.247.903-.25 1.832-.406 2.75-.104.823-.7.533-1.219.312-.004-.356-.027-.705-.031-1.062.216-.817-.441-1.056-1.094-1.156-.686.065-1.023-.523-.875-1.125.295-.351 1.036-.254 1.5-.313.981.204.942-1.112.438-1.562-.345-.636-1.199-.91-1.438-1.563.096-.866-.48-1.732-1.187-2.156-1.089-.076-1.91.863-2.313 1.781-.452.131-.904.267-1.344.438-.709.177-1.72 1.407-.75 1.875.545.15 2.2.528 1.47 1.28-.413.708-1.202.72-1.907.532-.724 0-1.53-.352-1.5-1.187-.148-.75-.123-1.558-.469-2.25-.148-.84-1.1-.643-1.156.125-.733.534-.636 1.397-.125 2.03.319.73.003 1.578-.313 2.25-.19.876-1.155.906-1.843 1.188-.338.131-1.629-.078-1.156.657.753.265 1.652.505 2.437.312.823-.102 1.538-.665 1.938-1.375.552-.56 1.502-.267 2.218-.281.773-.002 1.563.542 2.313.187.217-.564 1.222-1.495 1.531-.53-.053.862.71 1.325 1.5 1.218.864-.05.544.61.531 1.125.057.934.66 1.425 1.438 1.812.265.072.545.048.812 0 .748-.235 1.554-.568 1.781-1.406.304-.68.311-1.45.532-2.156.177-1.13.406-2.26.437-3.406.276-1.039.197-2.136.406-3.188.133-.782.231-1.563.313-2.344-.092-.417-.272-.487-.5-.406zm-6.781 4.156c.151.019.235.204.25.531.016.365.206.661.437.72.183.045.167.238-.03.374-.116.08-.322.127-.688.125-.578-.003-.937-.153-1.25-.469l-.188-.187.281-.188c.142-.108.399-.332.563-.5.285-.29.473-.424.625-.406zm66.031-7.876a8.365 8.365 0 0 0-1.656.25c-1.04-.065-1.563 1.027-.563 1.563.602 1.534 1.54-.317 2.5-.188 1.438.28 1.56 1.832 1.781 3 .081 1.157.415 2.282.75 3.375.963 1.07-.72 1.74-1.437.906-.611-.664-1.92-1.48-2.656-.562-.904.382-.94 1.59-1.688 1.937-1.209.368-1.361-1.119-2-1.75-.587-.824-1.71-.896-2.625-1.187-.429-.869-.205-2.346-1.094-2.938-.745.304-2.113 1.702-.968 2.344 1.117.96-.488 1.401-1 2.063-.732.814-.849 1.936-.969 2.968-1.26.696-1.504-.787-1.656-1.718-.098-1.112-1.036-.786-1.688-.375-.952.385-1.428 1.29-2.094 2-.08.647.038 1.356.032 2.03.216.812 1.202.431 1.812.376.979-.41 1.38.627.594 1.219-.532.676-2.22.322-2.063 1.406.544.063 1.111.043 1.657 0 1.09-.298 2.261-1.068 2.375-2.281.143-1.059 1.667-.866 2.5-1.094 1.04-.3 2.294-.377 2.53.937.71.745 2.25 1.584 3.032.563.795-.485 1.176-1.338 1.125-2.25-.162-.785 1.269-.813 1.625-.375.521.858 2.151.605 2.938.125.836-.617 1.017-1.705 2.218-1.719 1.783-.534 3.635-.841 5.375-1.5 1.41-.307-.21-1.198-.562-1.719-1.074-.53-2.008 1.642-3.219.563-.936-.716-.872-2.077-1.219-3.125-.237-1.358-.177-2.923-1.156-4-.672-.715-1.586-.887-2.531-.844zm-6.813 9.469c.126-.003.268.06.5.187.439.242.751.643.75.969 0 .213-.054.227-.375.375-.197.091-.42.189-.5.188-.18-.002-.624-.357-.625-.5 0-.06-.058-.287-.125-.47-.117-.32-.099-.316.063-.53.103-.138.187-.216.313-.22zm6.532.344c.372-.025.593.091.75.375.181.329.058.58-.407.78-.203.089-.407.16-.437.157-.03-.003-.198-.102-.375-.219-.27-.177-.31-.264-.313-.468-.003-.316.35-.597.782-.625zm-8.938.093c.11-.017.209.04.344.156.18.155.237.28.281.594a2.23 2.23 0 0 1 0 .625c-.048.226-.053.216-.562.219-.64.006-.7-.064-.688-.656.008-.377.012-.478.219-.688.16-.162.297-.233.406-.25zm-5.5 1.438a.57.57 0 0 1 .438.437c.065.318.008.462-.25.594-.222.113-.734.15-.875.063a.613.613 0 0 1-.188-.188c-.068-.121-.055-.18.031-.25.06-.05.126-.12.125-.156 0-.037.068-.163.157-.281a.543.543 0 0 1 .562-.22zm9.25 1.187a.651.651 0 0 1 .438.156c.185.163.179.4-.031.563-.136.104-.872.095-1.125 0-.113-.042-.156-.099-.157-.219-.002-.14.038-.227.281-.344.205-.097.416-.155.594-.156zm-17.171 4.819c-.096-.063-.238-.117-.095-.222.173-.302.518-.407.825-.52a3.436 3.436 0 0 0 1.373-1.118c.05-.333.424-.513.422-.861.003-.475.032-.962-.084-1.426-.129-.426-.452-.752-.827-.974-.256-.202-.674-.258-.768-.614-.053-.343.253-.604.36-.91.223-.421.411-.863.651-1.275.26-.288.659-.015.793.263.19.277.357.576.45.897.303.332.571.721.68 1.162.148.31.383.602.369.966 0 .416.235.787.22 1.206.014.56.013 1.145-.191 1.674-.14.294-.421.47-.607.733-.319.295-.67.579-1.08.736-.289.092-.457.426-.819.345-.514.009-1.037.079-1.547-.004.032.054-.156-.092-.125-.058zm-6.85.45c-.243-.25-.295-.355-.298-.6-.003-.248.045-.346.282-.586.439-.443.653-.453 1.41-.07.722.365.967.399 1.032.14.062-.25.478-.48.874-.481a.82.82 0 0 1 .592.203c.251.196.263.227.27.68.004.463-.002.48-.29.736-.278.244-.323.259-.666.224-.437-.043-.7-.244-.77-.588-.052-.25-.14-.31-.206-.14-.021.055-.129.122-.239.15-.204.051-.549.268-.794.5-.093.087-.255.128-.519.131-.355.003-.405-.018-.678-.299zm-19.82-8.9c-.665.007-1.38.566-1.469 1.219.152.752.777 1.49.375 2.281.278 1.013-.761 1.397-1.469.813-.427-.972-.643-2.036-1.28-2.907-.805-.227-1.155 1.057-1.72 1.5.28.755 1.096 1.433 1.188 2.375.195.915-.361 1.93-1.156 2.406-.686.655-1.626.421-2.47.563-1.023.599.753.818 1.22.844 1.047.106 2.135-.032 2.906-.813.769-.367.71-1.697 1.625-1.844 1.588-.07 3.163.244 4.75.282.85.203 2.163-.101 2.75.53.002 1.108.94 1.791 1.844 2.22.498.138 1.024-.48 1.53-.594.966-.308.673-1.502 1.25-1.969 1.651-.09 3.317-.07 4.97-.093.314.007.407-.44.625-.626-.037-.638-.06-1.272-.157-1.906-.318-.806.052-1.844-.53-2.53-.83-.227-1.537.533-2.376.593-.926.412-1.706 1.268-1.75 2.312-.548.897-1.427-.16-1.125-.906-.034-.325.07-.704-.031-1-.507-.608-1.395-.41-2.094-.5-1.018.04-2.012-.18-3.031-.156-.893-.068-1.822.078-2.688-.156-1.031-.03-.89-1.039-1.062-1.75a1.018 1.018 0 0 0-.625-.188zm2 3.688c.343.006.667.051 1 .093.43.071.89-.148 1.313 0 .976.166 1.953.127 2.937.219.26-.004.446.185.625.344.002.683 0 1.379 0 2.062-.03.258.076.598-.156.781a.7.7 0 0 1-.25.125c-.27-.07-.558-.247-.688-.5-.041-.357.018-.704.031-1.062-.007-.093.04-.237 0-.313a1.248 1.248 0 0 0-.718-.25c-.85-.029-1.682-.091-2.531-.125-.707-.044-1.434.06-2.125-.125-.269-.097-.618-.064-.782-.343-.234-.273.104-.597.344-.72a2.28 2.28 0 0 1 1-.187zm11.281.25c.159-.003.21.05.281.343.046.188.1.417.125.5.037.118-.022.156-.187.219-.494.186-.986.168-1.156-.063-.078-.104.012-.434.156-.562.29-.259.61-.437.781-.438z'/%3e%3c/g%3e%3c/g%3e%3cpath stroke-width='1.15' d='M449.98 327.23c32.642-25.106 29.843-61.883 29.843-61.883a12.72 12.72 0 0 1-2.54.258c-6.848 0-23.179-3.917-26.989-8.892-4.081 4.503-20.77 8.892-27.574 8.892-.861 0-1.722-.086-2.54-.258 0 0-2.843 36.776 29.8 61.883z'/%3e%3cpath stroke-width='.916' d='M477.22 268.04a13.55 13.55 0 0 1-.848.026c-6.205 0-20.619-3.183-26.175-7.957-5.82 4.41-20.47 7.957-26.576 7.957a4.7 4.7 0 0 1-.85-.086c-.014 1.39.059 2.832.145 4.144.323 4.9 1.183 9.819 2.488 14.552 4.108 14.895 12.516 27.553 24.572 37.155 12.066-9.61 20.484-22.28 24.6-37.186 1.308-4.732 2.17-9.65 2.496-14.55.086-1.285.157-2.692.148-4.055z'/%3e%3cpath fill='%23c09300' d='M439.38 265.03c-5.872 1.845-12.229 3.031-15.75 3.031a4.7 4.7 0 0 1-.844-.093c-.014 1.39.07 2.845.156 4.156a72.77 72.77 0 0 0 2.47 14.53c2.764 10.026 7.506 19.033 13.968 26.782V265.03zm20.62-.09v49.25c6.794-7.921 11.733-17.206 14.594-27.562a72.952 72.952 0 0 0 2.469-14.531c.085-1.284.166-2.7.156-4.063-.28.018-.56.032-.844.032-3.73 0-10.42-1.17-16.375-3.125z' stroke='none'/%3e%3cg stroke-width='1.27'%3e%3cpath stroke-width='1.218' d='M462.31 253.09c.667.04-.902-3.568-.902-3.568 1.765 1.804 8.43 2.235 8.43 2.235-4-1.766-7.998-15.096-7.528-25.721.432-10.664-1.528-14.86-3.097-16.428-2-2-8.43-3.764-12.664-4-2.392-.117-2 1.804-2 1.804-4.43-1.137-8.86-1.568-10.86-.235-1.883 1.255-2.275 7.528-.902 6.43 3.332-2.666 6.234-.235 8.233 2.666 1.764 2.549 1.647 9.763-.902 18.192-2.666 8.861-9.959 17.722-9.959 17.722 3.96 0 9.528-3.528 9.528-3.528l-1.333 5.528c4.195-2 7.528-5.097 7.528-5.097l3.999 4.195c1.333-1.764 4-4.195 4-4.195s3.332 3.529 8.429 4z'/%3e%3cpath fill='none' d='M446.12 227.57s-2.235 16.428-6.43 21.094m9.96-21.524s-.863 16.623-3.764 21.956m6.894-21.286s0 18.192 1.098 21.289m2.862-20.389s.902 15.291 4.666 20.819'/%3e%3cpath fill='%23c09300' stroke-width='.354' d='M442.08 219.61c-.196-1.45-.549-2.588-1.059-3.333-2-2.901-4.9-5.332-8.233-2.666 0 0 1.137-3.529 3.568-3.646 1.882-.118 6.155 1.411 9.92 7.841 0 0-2.784-.627-3.45-.039-1.256 1.098-.746 1.843-.746 1.843z'/%3e%3cpath fill='%23c09300' stroke-width='.354' d='M432.44 209.26c.274-.902.706-1.725 1.255-2.078 2-1.333 6.43-.902 10.86.235 0 0-.392-1.921 2-1.803 4.234.235 10.664 2 12.663 3.999.47.51 1.02 1.255 1.49 2.391h-.078c-.98-1.372-3.764-1.293-4.431-1.215-1.059.118-1.725.078-3.137.431-.666.157-1.686.353-2.235.784-.43.353-.784 1.647-1.45 1.647-1.059 0-.98-.274-1.255-.588-.353-.431-.549-1.059-.902-1.02-1.097.197-2.862-.666-5.096-2.43-2.235-1.765-3.098-2.196-5.999-2-2.862.235-3.764 1.843-3.764 1.843l.079-.196z'/%3e%3ccircle cx='448.824' cy='210.672' r='1.176' stroke='none'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e\"},346:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300'%3e%3cpath d='M0 0h600v150H0z'/%3e%3cpath fill='%23007a3d' d='M0 150h600v150H0z'/%3e%3cpath fill='%23fff' d='M0 100h600v100H0z'/%3e%3cpath d='m0 0 200 150L0 300z' fill='%23c4111b'/%3e%3ccircle cx='300' cy='150' r='40' fill='%23c4111b'/%3e%3ccircle cx='315' cy='150' r='40' fill='%23fff'/%3e%3cpath d='m289.263 174.22 17.056-12.192 16.923 12.377-6.325-19.99 17-12.27-20.965-.16-6.416-19.961-6.632 19.89-20.966-.067 16.867 12.454-6.542 19.92z' fill='%23c4111b'/%3e%3c/svg%3e\"},3553:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3e%3cpath fill='%23ea0437' d='M0 0h1000v500H0z'/%3e%3cpath d='M0 500h1000V250' fill='%234189dd'/%3e%3cpath d='M0 0h1000v250' fill='%2312ad2b'/%3e%3cpath d='M230.25 369.162c-10.81 2.985-17.008 11.371-16.85 19.284l53.211-.213c.478-8.503-6.517-16.367-17.166-19.464 52.097-1.076 97.357-20.59 105.58-33.112-8.138-3.532-17.548 2.152-24.257.844 15.928-7.361 63.647-38.248 55.889-71.36-6.031 18.392-24.3 33.609-32.081 37.694 17.826-27.067 42.166-55.247 21.049-77.069 1.066 12.648-8.037 26.567-12.058 27.613 10.34-28.6 20.206-64.507-2.197-88.179 2.942 8.556 1.754 32.691-2.297 33.776-1.248-19.448-4.566-60.353-25.047-59.77 6.505 5.79 9.351 21.595 9.496 37.56-4.668-10.937-9.972-19.171-21.318-27.247-9.178-17.602-25.508-32.186-41.84-42.634 1.833 12.812 3.35 22.92 21.24 36.209-9.328-.58-18.652-18.262-28.62-18.752-7.93-.382-14.151 7.185-27.108 2.83 1.434 4.277 7.48 6.171 8.755 9.335-2.775 1.917-9.364-.299-14.84-3.151 7.534 10.263 19.208 16.297 29.12 14.26 11.786-2.266 24.424-1.068 36.477 5.791-3.079 1.581-15.06 1.571-22.75.609 6.99 7.076 11.677 11.766 23.83 11.689 10.855-.071 16.546-5.79 19.334-2.248 6.808 8.067 11.39 16.13 17.085 25.628-12.58 1.39-8.788-14.228-22.799-22.216-7.872 16.293 9.055 35.608 20.577 43.637.155 12.247 1.945 22.494 7.14 31.818 3.501 6.574 8.028 13.303 6.321 28.14-6.897-5.024-13.638-21.966-11.158-35.416-8.633 2.355-12.008 17.535-7.94 25.177 3.04 5.818 5.07 16.951 1.564 21.928-3.417 4.637-3.775 4.118-3.73 14.07.122 5.955-3.205 12.997-8.623 17.907 1.131-4.196 2.421-11.415 1.168-15.927-4.283 7.265-15.028 14.783-18.412 22.595-3.322 7.829-4.165 21.39-20.245 24.517-20.686 4.106-27.826 7.691-41.137 13.138-1.477-10.11 2.945-31.193 11.399-29.99 8.254 1.468 33.28-8.624 24.328-29.707-1.768 6.645-7.666 13.13-14.043 13.417 6.89-8.939 19.185-18.194 13.197-33.172-3.329 6.367-8.564 14.007-16.503 18.306 8.51-16.31.988-21.189-9.118-7.756-3.817 5.182-6.122 15.567-8.547 28.756-3.97-10.727-3.708-24.847-8.412-36.313-4.914-12.399 6.521-15.673 11.903-14.678 13.177 3.518 35.198 3.516 33.562-18.253-5.691 7.364-15.671 9.638-26.449 6.987 12.104-8.838 21.661-25.464 8.173-34.143-.45 9.204-7.573 19.524-17.083 24.277-2.226-7.766-2.226-16.009-.317-25.045-5.31 5.59-9.189 17.22-12.273 30.441-.232-13.069 2.24-22.485 4.073-29.515 2.78-10.269 9.687-3.587 20.262-2.83 10.183.578 24.204-5.05 21.524-18.86-3.477 5.464-10.615 7.59-17.907 7.012 8.78-5.318 24.076-14.77 15.687-29.307-3.524 5.506-4.665 10.216-14.865 11.905 2.672-6.145 3.115-14.833 11.032-18.276-14.123-2.812-22.208 6.456-26.318 20.972-1.667-10.064-3.65-13.77-4.045-21.13 7.634-8.479 8.433-25.066-8.094-28.775-.98 8.556-.69 10.595 1.19 17.561-7.758-4.608-18.692-7.151-25.972-.634 4.932 5.322 12.566 10.008 24.332 4.203-2.78 9.093-10.008 7.537-19.942 4.07 6.072 11.404 13.734 13.43 22.19 12.116 4.428 11.673 4.623 20.542-8.315 37.542.598-10.564-.153-18.434-8.546-26.976-7.192-7.044-13.038.301-1.798 15.962-6.819-5.021-14.536-15.213-16.86-25.403-2.248 12.589-.224 27.426 6.745 35.743-3.296 3.522-7.044-.374-12.588-8.991 2.097 27.576 13.862 32.897 29.673 26.75.45 15.136.45 29.15 1.35 47.434-9.22-13.262-20.907-23.154-27.428-25.627-2.022 7.419 5.622 17.084 9.893 22.48-6.52-1.35-20.683-12.14-20.683-12.14-1.424 12.29 14.465 23.68 24.73 28.775-12.064-.525-17.387-5.095-25.18-12.589.151 34.095 36.942 28.174 43.837 22.93.9 16.785 2.182 36.19 3.08 52.976-10.4-1.815-9.582-4.942-18.482-5.766-24.7-.963-44.295-29.652-50.783-50.755-1.862 3.473-.385 7.107-2.088 11.374-4.01-10.359-9.134-23.737-16.005-29.963 1.75 6.039 1.935 12.175 1.327 23.462-2.358-7.313-4.552-9.555-4.71-18.14.15-6.59 6.358-11.452 6.014-20.722-.254-6.768-6.427-21.436-7.335-32.791-2.989 11.687-4.865 24.007-9.443 31.242 2.275-12.48 1.546-21.093 5.394-29.492 4.446-8.843 8.226-16.738 5.266-25.662-2.838 3.447-1.862 6.578-8.993 14.953-1.55-9.107 9.22-23.683 19.673-29.543 7.372-3.884 16.664-17.777 10.61-27.3-6.931 4.98-10.044 11.706-19.837 23.2 6.985-27.305 25.134-34.45 46.862-34.543 4.808-.022 14.501-1.758 17.222-8.12-6.125 2.364-13.366 2.665-19.81 1.375 4.69-6.885 14.566-5.99 23.77-6.03 7.218-.035 18.488-1.014 23.044-11.295-8.806 3.815-22.54 4.609-31.188 1.907 13.753-7.126 35.294-7.893 46.342-17.244-12.593-9.398-44.104 2.19-64.007 15.84 5.563-5.087 14.355-14.11 19.206-21.395-10.886-5.219-38.415 25.279-47.899 43.4-9.007 5.086-12.61 13.06-16.108 18.625 4.8-16.218 5.308-27.987 9.313-41.342-30.877 10.629-18.043 67.679-24.76 81.327.791-15.068.151-34.426-6.053-44.408-9.51 7.255-10.278 49.959-1.349 85.51-3.224-9.513-9.31-18.395-11.262-29.974-14.076 25.671 8.251 55.957 26.92 79.881-14.055-7.32-27.951-23.067-37.08-36.268 2.52 45.947 50.501 55.494 57.95 66.786-10.11-4.706-29.439-14.019-37.64-4.26 13.351 3.082 24.002 6.645 32.584 12.27 12.452 15.548 36.032 22.347 77.098 24.065z' fill='%23ffc726'/%3e%3c/svg%3e\"},1934:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 750 500'%3e%3cpath fill='%23c60b1e' d='M0 0h750v500H0z'/%3e%3cpath fill='%23ffc400' d='M0 125h750v250H0z'/%3e%3cg stroke='%23000' stroke-width='.39'%3e%3cg stroke-width='.26'%3e%3cpath fill='%23ad1519' stroke-linejoin='round' d='M167.99 222.24s-.51 0-.79-.16-1.13-.96-1.13-.96l-.68-.49-.62-.85s-.73-1.18-.4-2.09c.34-.91.91-1.23 1.42-1.5.51-.26 1.58-.59 1.58-.59s.85-.37 1.13-.42c.28-.06 1.3-.32 1.3-.32s.28-.16.56-.27c.29-.11.68-.11.91-.16.22-.06.79-.24 1.13-.26.52-.02 1.36.1 1.64.1s1.24.05 1.64.05c.39 0 1.8-.11 2.2-.11.39 0 .68-.05 1.13 0 .45.06 1.24.32 1.47.43s1.58.59 2.09.75 1.75.37 2.32.64c.56.27.91.72 1.19 1.1.28.37.34.78.45 1.05.11.26.11.84 0 1.11-.11.26-.51.81-.51.81l-.62 1.02-.79.64s-.57.54-1.02.48c-.45-.04-5.03-.86-7.97-.86s-7.64.86-7.64.86h.01z'/%3e%3cg fill='%23c8b100'%3e%3cellipse cx='175.66' cy='215.68' rx='1.38' ry='2.5'/%3e%3cellipse cx='175.68' cy='215.68' rx='.64' ry='2.3'/%3e%3cellipse cx='175.68' cy='213.04' rx='.93' ry='.87' stroke='none'/%3e%3cpath stroke-width='.3' d='M176.96 212.74v.58h-2.53v-.58h.94v-1.32h-.62v-.57h.62v-.57h.6v.57h.62v.57h-.62v1.32h.99'/%3e%3cpath fill='none' d='M175.94 212.2a.93.87 0 1 1-.5 0'/%3e%3cpath d='M175.68 222.08h-4.81l-.11-1.18-.23-1.23-.23-1.53c-1.33-1.75-2.55-2.9-2.96-2.65.1-.32.22-.56.47-.71 1.18-.7 3.61.98 5.44 3.74.16.25.32.5.46.75h3.97c.14-.25.3-.5.46-.75 1.82-2.76 4.26-4.44 5.43-3.74.26.15.37.39.47.71-.41-.24-1.62.9-2.96 2.65l-.23 1.53-.23 1.23-.1 1.18h-4.84z'/%3e%3cpath fill='none' d='M167.55 215.44c.91-.53 3.02 1.14 4.73 3.74m11.55-3.74c-.91-.53-3.01 1.14-4.73 3.74'/%3e%3c/g%3e%3cg id='a' fill='%23c8b100'%3e%3cpath d='M168.58 224.25c-.2-.57-.58-1.08-.58-1.08 1.95-.57 4.66-.93 7.67-.94 3.01.01 5.75.37 7.69.94 0 0-.22.38-.52.91-.17.3-.39.81-.38.81-1.75-.54-4.02-.81-6.8-.82-2.79.01-5.46.35-6.86.86.02 0-.1-.32-.23-.68h.01'/%3e%3cpath d='M175.67 226.73c2.43-.01 5.11-.38 6.1-.63.66-.2 1.05-.49.98-.84-.04-.16-.18-.3-.37-.38-1.46-.47-4.07-.8-6.71-.8-2.63 0-5.27.33-6.72.8-.19.08-.33.22-.37.38-.07.35.32.64.98.84.99.25 3.68.62 6.11.63zm7.81-4.65-.59-.53s-.57.34-1.28.24c-.7-.11-.93-.97-.93-.97s-.79.67-1.44.62c-.65-.06-1.07-.62-1.07-.62s-.71.51-1.33.46c-.62-.06-1.21-.83-1.21-.83s-.63.8-1.25.86c-.62.05-1.13-.54-1.13-.54s-.28.59-1.07.72-1.47-.62-1.47-.62-.45.73-.99.92c-.54.18-1.24-.27-1.24-.27s-.12.27-.2.43-.31.19-.31.19l.18.47c1.93-.56 4.56-.91 7.53-.91s5.67.35 7.61.92l.2-.54h-.01z'/%3e%3cpath d='m175.69 219.49.28.05c-.05.12-.06.24-.06.38 0 .58.5 1.05 1.12 1.05.49 0 .91-.31 1.06-.73.01.01.11-.38.15-.38.03 0 .03.41.05.41.07.53.55.89 1.1.89.62 0 1.11-.47 1.11-1.06 0-.04 0-.08-.01-.12l.35-.35.19.44c-.07.14-.1.29-.1.46 0 .56.47 1.01 1.06 1.01.37 0 .69-.18.88-.45l.23-.29v.36c0 .34.14.66.49.71 0 0 .38.03.91-.38.52-.41.8-.75.8-.75l.03.42s-.51.84-.97 1.1c-.25.15-.64.31-.95.25-.32-.05-.55-.31-.67-.61-.23.14-.51.22-.8.22-.63 0-1.2-.35-1.42-.86-.29.31-.69.5-1.16.5-.51 0-.97-.23-1.26-.58-.28.27-.67.43-1.09.43-.55 0-1.05-.28-1.33-.69-.29.41-.78.69-1.34.69-.42 0-.81-.16-1.09-.43-.29.35-.75.58-1.25.58-.48 0-.88-.19-1.17-.5-.22.51-.79.86-1.42.86-.29 0-.56-.08-.79-.22-.12.3-.35.56-.68.61-.3.06-.69-.1-.94-.25-.47-.26-1.02-1.1-1.02-1.1l.07-.42s.29.34.81.75.91.38.91.38c.34-.05.49-.37.49-.71v-.36l.22.29c.19.27.51.45.88.45.59 0 1.06-.45 1.06-1.01a.89.89 0 0 0-.1-.46l.19-.44.35.35c-.01.04-.01.08-.01.12 0 .59.49 1.06 1.11 1.06.55 0 1.03-.36 1.11-.89.01 0 .01-.41.04-.41.05 0 .14.39.16.38.14.42.56.73 1.06.73.61 0 1.11-.47 1.11-1.05 0-.14 0-.26-.05-.38l.29-.05h.01z'/%3e%3cpath stroke-linejoin='round' d='M175.67 222.23c-3.01.01-5.72.37-7.67.94-.13.04-.29-.06-.33-.17-.04-.13.05-.28.18-.32 1.95-.6 4.73-.98 7.82-.98s5.88.38 7.83.98c.13.04.22.19.18.32-.04.11-.2.21-.33.17-1.95-.57-4.67-.93-7.68-.94z'/%3e%3cpath d='M165.43 221c-.01.01-.38-.48-.65-.73-.2-.18-.68-.33-.68-.33 0-.08.28-.28.58-.28.18 0 .35.07.45.2l.04-.2s.24.05.35.32c.12.29.05.72.05.72s-.05.2-.14.3zm1.89-.78-.11.66-1.4.15-.21-.12.04-.23 1.06-.87.62.41'/%3e%3cpath d='M165.45 220.75c.12-.12.36-.09.53.06.18.15.24.38.12.5-.12.13-.36.1-.53-.06-.18-.15-.24-.38-.12-.5zm2.57.13c-.06-.18 0-.37.13-.42.14-.03.3.09.37.27.06.19 0 .38-.14.42-.13.04-.29-.08-.36-.27zm.65-.84.51.48 1.22-.66.09-.21-.17-.17-1.4-.12-.25.68'/%3e%3cpath d='m170.08 217.76-.67.64.86 1.14.23.09.17-.18.3-1.37-.89-.32'/%3e%3cpath d='m172.36 219.3-.26.63-1.4-.13-.18-.16.1-.22 1.22-.64.52.52'/%3e%3cellipse cx='170.51' cy='219.65' rx='.49' ry='.47'/%3e%3cpath d='M172.87 219.95c-.03-.2.07-.37.21-.39s.28.13.3.33c.03.19-.07.37-.21.38-.14.02-.28-.13-.3-.32zm.91-.71.4.57 1.34-.42.14-.18-.15-.2-1.33-.39-.4.62'/%3e%3cpath d='m175.66 217.15-.86.52.64 1.38.22.14.22-.14.64-1.38-.86-.52'/%3e%3cpath d='m177.55 219.24-.39.57-1.34-.42-.14-.18.14-.2 1.34-.39.39.62'/%3e%3cellipse cx='175.67' cy='219.21' rx='.49' ry='.47'/%3e%3cpath d='M178.5 219.95c.02-.2-.08-.37-.22-.39s-.28.13-.3.33c-.02.19.07.37.21.38.14.02.28-.13.31-.32zm.49-.65.26.63 1.4-.13.18-.16-.1-.22-1.22-.64-.52.52'/%3e%3cpath d='m181.27 217.76.67.64-.86 1.14-.23.09-.17-.18-.3-1.37.89-.32'/%3e%3cpath d='m182.68 220.04-.51.48-1.22-.66-.1-.21.19-.17 1.4-.12.24.68'/%3e%3cellipse cx='180.85' cy='219.65' rx='.49' ry='.47'/%3e%3cpath d='M183.34 220.88c.06-.18 0-.37-.13-.42-.14-.03-.3.09-.37.27-.06.19 0 .38.14.42.13.04.29-.08.36-.27zm2.39.12c.01.01.38-.48.66-.73.19-.18.67-.33.67-.33 0-.08-.28-.28-.58-.28-.18 0-.35.07-.45.2l-.04-.2s-.24.05-.36.32c-.11.29-.03.72-.03.72s.04.2.13.3zm-1.89-.78.11.66 1.4.15.21-.12-.05-.23-1.05-.87-.62.41'/%3e%3cpath d='M185.74 220.75c-.11-.12-.35-.09-.53.06s-.24.38-.12.5c.12.13.36.1.54-.06.18-.15.23-.38.11-.5z'/%3e%3c/g%3e%3cg id='b' fill='none'%3e%3cpath fill='%23ad1519' d='m168.05 224.3.31-.5.65.13-.38.56-.58-.19'/%3e%3cpath fill='%23058e6e' d='m170.85 223.81-.69.11c-.18.02-.35-.09-.38-.26a.32.32 0 0 1 .27-.35l.7-.1.71-.11c.18-.02.34.09.37.25.02.17-.1.33-.27.35l-.71.11'/%3e%3cellipse fill='%23fff' cx='173.19' cy='223.3' rx='.44' ry='.41'/%3e%3cpath fill='%23ad1519' d='M175.7 223.48h-.96c-.18 0-.33-.14-.33-.31s.14-.31.32-.31h1.96c.19 0 .33.14.33.31s-.15.31-.33.31h-.99'/%3e%3cellipse fill='%23fff' cx='178.16' cy='223.3' rx='.44' ry='.41'/%3e%3cpath fill='%23058e6e' d='m180.5 223.81.69.11c.18.02.35-.09.38-.26a.313.313 0 0 0-.27-.35l-.7-.1-.71-.11c-.18-.02-.35.09-.37.25a.3.3 0 0 0 .27.35l.71.11'/%3e%3cpath fill='%23ad1519' d='m183.24 224.33-.25-.53-.67.06.32.59.6-.12'/%3e%3cpath fill='%23ad1519' stroke-linejoin='round' d='M175.66 226.16c-2.43 0-4.63-.22-6.3-.65 1.67-.43 3.87-.69 6.3-.7 2.44 0 4.65.27 6.33.7-1.68.43-3.89.65-6.33.65z'/%3e%3cpath stroke-width='.01' d='M176.8 226.08v-1.16m-.58 1.2.01-1.23m-.43 1.25v-1.26'/%3e%3cpath stroke-width='.02' d='M175.44 226.15v-1.27'/%3e%3cpath stroke-width='.03' d='M175.09 226.15v-1.27'/%3e%3cpath stroke-width='.04' d='M174.77 226.15v-1.27m-.33 1.27v-1.27'/%3e%3cpath stroke-width='.05' d='M174.16 226.15v-1.27'/%3e%3cpath stroke-width='.06' d='m173.61 226.08-.01-1.15m.27 1.17v-1.21'/%3e%3cpath stroke-width='.07' d='M173.1 226.03v-1.06m.26 1.09-.01-1.13'/%3e%3cpath stroke-width='.08' d='M172.42 225.97v-.93m.23.94V225m.23 1.02V225'/%3e%3cpath stroke-width='.09' d='M172.19 225.96v-.9'/%3e%3cpath stroke-width='.1' d='M171.97 225.92v-.85'/%3e%3cpath stroke-width='.11' d='M171.73 225.89v-.78'/%3e%3cpath stroke-width='.12' d='m171.24 225.82-.01-.62m.26.66v-.7m-.5.61v-.55'/%3e%3cpath stroke-width='.13' d='M170.76 225.73v-.46'/%3e%3cpath stroke-width='.14' d='M170.51 225.67v-.36'/%3e%3cpath stroke-width='.15' d='M170.26 225.64v-.27'/%3e%3cpath stroke-width='.18' d='M169.99 225.58v-.13'/%3e%3c/g%3e%3c/g%3e%3cg id='c'%3e%3cg fill='%23005bbf'%3e%3cpath d='M191.28 330.68c-1.54 0-2.91-.33-3.93-.87-1-.51-2.36-.82-3.86-.82-1.51 0-2.9.32-3.91.83-1.01.53-2.4.86-3.92.86-1.54 0-2.92-.36-3.93-.9-1-.49-2.33-.79-3.79-.79-1.52 0-2.86.29-3.86.81-1.02.54-2.42.88-3.95.88v2.41c1.53 0 2.93-.35 3.95-.88 1-.52 2.34-.82 3.86-.82 1.45 0 2.79.31 3.79.8 1.01.53 2.39.9 3.93.9 1.52 0 2.91-.33 3.92-.86 1.01-.52 2.4-.84 3.91-.84 1.5 0 2.86.32 3.86.83 1.02.54 2.37.87 3.91.87l.02-2.41z'/%3e%3cpath fill='%23ccc' d='M191.28 333.09c-1.54 0-2.91-.33-3.93-.87-1-.51-2.36-.83-3.86-.83-1.51 0-2.9.32-3.91.84-1.01.53-2.4.86-3.92.86-1.54 0-2.92-.37-3.93-.9-1-.49-2.33-.8-3.79-.8-1.52 0-2.86.3-3.86.82-1.02.53-2.42.88-3.95.88v2.41c1.53 0 2.93-.35 3.95-.88 1-.52 2.34-.82 3.86-.82 1.45 0 2.79.31 3.79.8 1.01.54 2.39.9 3.93.9 1.52 0 2.91-.34 3.92-.86s2.4-.84 3.91-.84c1.5 0 2.86.32 3.86.84 1.02.53 2.37.86 3.91.86l.02-2.41'/%3e%3cpath d='M191.28 335.5c-1.54 0-2.91-.33-3.93-.86-1-.52-2.36-.84-3.86-.84-1.51 0-2.9.32-3.91.84s-2.4.86-3.92.86c-1.54 0-2.92-.36-3.93-.9-1-.49-2.33-.8-3.79-.8-1.52 0-2.86.3-3.86.82-1.02.53-2.42.88-3.95.88v2.4c1.53 0 2.93-.34 3.95-.88 1-.51 2.34-.8 3.86-.8 1.45 0 2.79.3 3.79.79 1.01.54 2.39.89 3.93.89 1.52 0 2.91-.32 3.92-.85 1.01-.52 2.4-.83 3.91-.83 1.5 0 2.86.31 3.86.82 1.02.55 2.37.86 3.91.86l.02-2.4'/%3e%3cpath fill='%23ccc' d='M191.26 340.32c-1.54 0-2.89-.33-3.91-.87-1-.51-2.36-.82-3.86-.82-1.51 0-2.9.31-3.91.83s-2.4.86-3.92.86c-1.54 0-2.92-.37-3.93-.9-1-.5-2.33-.79-3.79-.79-1.52 0-2.86.29-3.86.81-1.02.53-2.42.88-3.95.88v-2.4c1.53 0 2.93-.36 3.95-.9 1-.51 2.34-.8 3.86-.8 1.45 0 2.79.3 3.79.79 1.01.54 2.39.89 3.93.89 1.52 0 2.91-.32 3.92-.85 1.01-.52 2.4-.83 3.91-.83 1.5 0 2.86.31 3.86.82 1.02.55 2.39.86 3.93.86l-.02 2.42'/%3e%3cpath d='M191.26 342.73c-1.54 0-2.89-.33-3.91-.86-1-.52-2.36-.84-3.86-.84-1.51 0-2.9.32-3.91.84s-2.4.86-3.92.86c-1.54 0-2.92-.37-3.93-.9-1-.5-2.33-.8-3.79-.8-1.52 0-2.86.3-3.86.82-1.02.53-2.42.88-3.95.88v-2.39c1.53 0 2.93-.37 3.95-.9 1-.52 2.34-.81 3.86-.81 1.45 0 2.79.3 3.79.79 1.01.53 2.39.9 3.93.9 1.52 0 2.91-.34 3.92-.86s2.4-.83 3.91-.83c1.5 0 2.86.31 3.86.82 1.02.54 2.38.87 3.93.87l-.02 2.41z'/%3e%3c/g%3e%3cg fill='%23c8b100'%3e%3cpath stroke-linejoin='round' d='M166.92 320.78c.05.21.13.4.13.62 0 1.46-1.27 2.63-2.81 2.63h22.94c-1.55 0-2.81-1.17-2.81-2.63 0-.21.04-.41.09-.62-.13.05-.29.06-.44.06h-16.69c-.13 0-.29-.02-.41-.06z'/%3e%3cpath d='M167.33 319.27h16.69c.57 0 1.02.35 1.02.78s-.45.79-1.02.79h-16.69c-.56 0-1.02-.36-1.02-.79s.46-.78 1.02-.78zm-3.06 10.59h22.87v-5.83h-22.87v5.83z'/%3e%3c/g%3e%3cpath fill='%23ccc' d='M167.55 318.32h16.25v-79.63h-16.25v79.63z'/%3e%3cpath fill='none' d='M179.13 238.8v79.46m1.83-79.46v79.46'/%3e%3cg fill='%23c8b100'%3e%3cpath d='M164.58 232.37h22.29v-5.84h-22.29v5.84z'/%3e%3cpath stroke-linejoin='round' d='M166.92 236.26a.91.91 0 0 1 .41-.07h16.69c.17 0 .32.03.46.08-.58-.19-.99-.71-.99-1.32s.45-1.14 1.03-1.33c-.14.04-.33.08-.49.08h-16.7c-.17 0-.33-.01-.47-.06l.09.02c.6.18.94.71.94 1.29 0 .56-.38 1.13-.97 1.31z'/%3e%3cpath d='M167.33 236.19h16.69c.57 0 1.02.35 1.02.78 0 .44-.45.79-1.02.79h-16.69c-.56 0-1.02-.35-1.02-.79 0-.43.46-.78 1.02-.78zm0-3.82h16.7c.57 0 1.03.3 1.03.66 0 .37-.46.67-1.03.67h-16.7c-.56 0-1.02-.3-1.02-.67 0-.36.46-.66 1.02-.66z'/%3e%3c/g%3e%3c/g%3e%3cg id='d' fill='%23ad1519'%3e%3cpath d='M162.48 298.62c-2.26 1.3-3.8 2.64-3.55 3.31.12.61.84 1.07 1.87 1.75 1.62 1.13 2.6 3.14 1.83 4.07 1.34-1.08 2.19-2.69 2.19-4.49 0-1.87-.9-3.56-2.34-4.64z'/%3e%3cpath stroke-linejoin='round' d='M200.4 268.47c-3.54-1.46-9.57-2.55-16.49-2.78-2.39.02-5.04.25-7.79.7-9.72 1.63-17.13 5.51-16.54 8.67.01.06.04.2.05.26 0 0-3.64-8.21-3.7-8.52-.65-3.51 7.56-7.82 18.35-9.62 3.39-.57 6.69-.79 9.56-.76 6.9 0 12.9.89 16.52 2.23l.04 9.82'/%3e%3cpath d='M167.52 278.47c-4.51-.32-7.58-1.53-7.94-3.41-.28-1.5 1.25-3.17 3.97-4.68 1.21.14 2.58.3 4 .3l-.03 7.79m16.31-6.09c2.82.43 4.93 1.13 5.98 1.99l.1.17c.5 1.03-1.97 3.22-6.11 5.67l.03-7.83'/%3e%3cpath stroke-linejoin='round' d='M157.42 293.83c-.43-1.28 3.97-3.86 10.18-6.14 2.84-1.01 5.18-2.07 8.09-3.35 8.63-3.82 15-8.2 14.22-9.79l-.09-.17c.46.38 1.18 8.24 1.18 8.24.78 1.46-5.05 5.78-13 9.58-2.54 1.22-7.91 3.2-10.44 4.09-4.54 1.57-9.04 4.54-8.63 5.64l-1.51-8.09v-.01z'/%3e%3c/g%3e%3cg stroke-width='.26'%3e%3cpath fill='%23ad1519' stroke-width='.27' d='M324.85 220.42s-.74.78-1.28.89c-.53.1-1.21-.49-1.21-.49s-.48.51-1.08.64c-.59.14-1.41-.66-1.41-.66s-.57.8-1.07.99c-.51.18-1.13-.24-1.13-.24s-.23.39-.65.61c-.18.09-.48-.05-.48-.05l-.6-.38-.68-.72-.62-.24s-.28-.91-.31-1.07c-.02-.16-.08-.57-.08-.57-.13-.65.87-1.4 2.3-1.72.82-.19 1.54-.18 2.06-.02.57-.48 1.78-.82 3.2-.82 1.29 0 2.42.27 3.04.7.61-.43 1.74-.7 3.03-.7 1.42 0 2.62.34 3.19.82.53-.16 1.24-.17 2.07.02 1.42.32 2.43 1.07 2.3 1.72 0 0-.06.41-.08.57-.03.16-.32 1.07-.32 1.07l-.62.24-.68.72-.58.38s-.3.14-.48.05c-.43-.21-.66-.61-.66-.61s-.62.42-1.13.24c-.51-.19-1.07-.99-1.07-.99s-.82.8-1.42.66c-.59-.13-1.07-.64-1.07-.64s-.68.59-1.21.49c-.54-.11-1.27-.89-1.27-.89z'/%3e%3cg fill='%23c8b100'%3e%3cellipse cx='324.82' cy='216.2' rx='1.38' ry='1.96'/%3e%3cellipse cx='324.85' cy='216.2' rx='.63' ry='1.81'/%3e%3cellipse cx='324.84' cy='213.95' rx='.93' ry='.88' stroke='none'/%3e%3cpath stroke-width='.3' d='M326.13 213.64v.58h-2.53v-.58h.94v-1.3h-.62v-.58h.62v-.58h.61v.58h.61v.58h-.61v1.3h.98'/%3e%3cpath fill='none' d='M325.11 213.12a.93.88 0 1 1-.51-.01'/%3e%3c/g%3e%3cg fill='none' stroke-width='.21'%3e%3cpath stroke-width='.26' stroke-linecap='round' d='M314.41 219.99c-.13-.33-.22-.7-.22-1.08 0-1.59 1.26-2.88 2.83-2.88.5 0 .96.13 1.37.37'/%3e%3cpath stroke-width='.26' d='M319.48 217.93c-.15-.26-.29-.54-.29-.84 0-1.15 1.19-2.08 2.64-2.08.62 0 1.2.17 1.65.45m6.69 2.5c.15-.26.25-.57.25-.87 0-1.15-1.18-2.08-2.64-2.08-.62 0-1.19.17-1.64.45'/%3e%3cpath stroke-width='.26' stroke-linecap='round' d='M335.21 219.99c.13-.33.21-.7.21-1.08 0-1.59-1.26-2.88-2.82-2.88-.5 0-.97.13-1.38.37'/%3e%3cellipse cx='313.57' cy='218.68' rx='.45' ry='.43'/%3e%3cellipse cx='313.74' cy='217.1' rx='.45' ry='.43'/%3e%3cellipse cx='314.76' cy='215.9' rx='.45' ry='.43'/%3e%3cellipse cx='316.11' cy='215.25' rx='.45' ry='.43'/%3e%3cellipse cx='317.55' cy='215.31' rx='.45' ry='.43'/%3e%3cellipse fill='%23fff' cx='318.43' cy='217.08' rx='.45' ry='.43'/%3e%3cellipse cx='318.68' cy='215.58' rx='.45' ry='.43'/%3e%3cellipse cx='319.81' cy='214.64' rx='.45' ry='.43'/%3e%3cellipse cx='321.23' cy='214.19' rx='.45' ry='.43'/%3e%3cellipse cx='322.67' cy='214.24' rx='.45' ry='.43'/%3e%3cellipse cx='326.94' cy='214.24' rx='.45' ry='.43'/%3e%3cellipse cx='328.39' cy='214.19' rx='.45' ry='.43'/%3e%3cellipse cx='329.8' cy='214.64' rx='.45' ry='.43'/%3e%3cellipse cx='330.93' cy='215.58' rx='.45' ry='.43'/%3e%3cellipse fill='%23fff' cx='331.18' cy='217.08' rx='.45' ry='.43'/%3e%3cellipse cx='332.06' cy='215.31' rx='.45' ry='.43'/%3e%3cellipse cx='333.51' cy='215.25' rx='.45' ry='.43'/%3e%3cellipse cx='334.86' cy='215.9' rx='.45' ry='.43'/%3e%3cellipse cx='335.88' cy='217.1' rx='.45' ry='.43'/%3e%3cellipse cx='336.05' cy='218.68' rx='.45' ry='.43'/%3e%3c/g%3e%3cuse xlink:href='%23a' x='149.17'/%3e%3cuse xlink:href='%23b' x='149.17'/%3e%3c/g%3e%3cuse xlink:href='%23c' x='149.17'/%3e%3cuse xlink:href='%23d' transform='matrix(-1 0 0 1 500.57 0)'/%3e%3cpath d='M166.42 264.65c1.99-.72 3.29-1.58 2.66-3.14-.41-1-1.43-1.19-2.97-.63l-2.71.99 2.44 6.03c.27-.12.54-.24.81-.34.28-.1.57-.18.85-.26l-1.08-2.64v-.01zm-1.18-2.91.69-.25c.57-.21 1.21.1 1.5.8.21.53.16 1.13-.5 1.55-.21.13-.46.23-.7.33l-.99-2.43m7.54-2.52c-.29.08-.57.16-.86.22-.29.05-.59.09-.88.12l1.41 6.28 4.38-.88c-.05-.12-.12-.26-.14-.38-.03-.14-.03-.28-.04-.41-.77.22-1.61.46-2.61.66l-1.26-5.61m8.78 5.41c.82-2.28 1.82-4.46 2.81-6.67-.18.03-.36.06-.54.07s-.37.01-.54 0c-.53 1.61-1.18 3.21-1.87 4.8-.82-1.51-1.73-2.99-2.43-4.51-.34.04-.69.09-1.03.12-.34.02-.7.01-1.04.02 1.26 2.06 2.48 4.11 3.64 6.23.16-.03.32-.06.5-.08.16-.01.33.01.5.02m9.16-4.83c.15-.31.31-.6.48-.89-.24-.22-.96-.55-1.81-.63-1.79-.18-2.81.61-2.93 1.69-.26 2.26 3.31 2.07 3.14 3.57-.07.64-.75.9-1.48.83-.81-.08-1.41-.53-1.51-1.19l-.22-.02c-.12.39-.29.77-.48 1.15.53.34 1.21.53 1.85.59 1.83.19 3.22-.54 3.35-1.74.23-2.15-3.37-2.27-3.23-3.54.06-.53.47-.88 1.4-.79.67.07 1.08.43 1.26.95l.18.02m119.58 5.18c.62-2.33 1.41-4.58 2.19-6.87-.17.05-.35.09-.53.11-.17.03-.36.04-.54.05-.37 1.64-.88 3.29-1.42 4.94-.96-1.44-2-2.84-2.83-4.3-.34.07-.68.15-1.02.2s-.69.07-1.04.11c1.45 1.94 2.85 3.89 4.2 5.91.16-.04.32-.1.5-.12.16-.02.33-.02.49-.03m6.18-6.82c-.29.01-.59.04-.88.03-.3 0-.6-.04-.89-.06l-.12 6.41 4.49.08c-.03-.13-.06-.28-.06-.41s.04-.27.07-.4c-.81.05-1.68.1-2.71.08l.1-5.73m7.04 1.05c.72.06 1.41.19 2.1.31-.01-.13-.03-.27-.02-.41.01-.13.06-.26.1-.39l-6.07-.5c.01.14.03.27.02.4-.01.14-.06.27-.1.4.62-.02 1.37-.02 2.21.05l-.53 5.77c.29 0 .59 0 .88.03.3.02.59.07.88.11l.53-5.77m2.49 6.32c.29.05.59.09.88.15.28.06.57.15.85.23l.72-2.94.08.01c.16.41.38.9.49 1.19l.9 2.22c.36.06.71.11 1.05.18.36.08.7.18 1.04.28l-.31-.67c-.48-1-.99-2.01-1.41-3.02 1.12.04 1.98-.36 2.2-1.26.15-.62-.1-1.11-.68-1.53-.44-.31-1.28-.47-1.83-.6l-2.44-.53-1.54 6.29m3.14-5.42c.71.16 1.59.27 1.59 1.07-.01.21-.03.35-.06.48-.23.94-.94 1.26-2.13.91l.6-2.46m8.42 7.35c-.05.69-.18 1.37-.31 2.1.3.14.61.27.9.44.3.16.57.34.86.52l.6-7.23c-.14-.06-.27-.12-.41-.19-.13-.07-.25-.15-.37-.24l-6.38 4.05c.17.08.35.16.51.25.17.09.31.19.47.28.54-.45 1.1-.82 1.74-1.3l2.39 1.31v.01zm-1.81-1.66 2.13-1.37-.25 2.4-1.88-1.03' fill='%23c8b100' stroke='none'/%3e%3cpath fill='%23ad1519' stroke-width='.26' d='M249.65 182.72c6.64 0 12.56.99 16.41 2.51 2.2 1 5.16 1.73 8.4 2.17 2.47.33 4.81.39 6.85.24 2.73-.06 6.67.74 10.62 2.48 3.26 1.45 5.99 3.21 7.8 4.91l-1.57 1.4-.45 3.96-4.3 4.92-2.15 1.83-5.09 4.07-2.6.21-.79 2.25-32.91-3.86-33.02 3.86-.79-2.25-2.61-.21-5.08-4.07-2.15-1.83-4.3-4.92-.44-3.96-1.58-1.4c1.82-1.7 4.54-3.46 7.8-4.91 3.95-1.74 7.89-2.54 10.62-2.48 2.04.15 4.38.09 6.85-.24 3.24-.44 6.2-1.17 8.4-2.17 3.86-1.52 9.44-2.51 16.08-2.51z'/%3e%3cg fill='%23c8b100'%3e%3cpath d='m225.34 191.42 1.38 1.11 2.08-3.4c-2.25-1.38-3.8-3.78-3.8-6.51 0-.31.02-.61.06-.91.21-4.34 5.5-7.92 12.2-7.92 3.48 0 6.63.95 8.84 2.48.06-.67.12-1.25.21-1.86-2.43-1.42-5.6-2.28-9.05-2.28-7.71 0-13.74 4.39-14.03 9.57-.03.31-.05.61-.05.92 0 2.76 1.26 5.26 3.26 6.99l-1.1 1.81'/%3e%3cpath d='M225.43 191.46c-2.63-1.97-4.27-4.64-4.27-7.58 0-3.38 2.22-6.4 5.58-8.41-2.07 1.67-3.33 3.83-3.51 6.23-.03.31-.05.61-.05.92 0 2.76 1.26 5.26 3.26 6.99l-1.01 1.85'/%3e%3cpath d='M202.21 194.89c-1.48-1.65-2.38-3.79-2.38-6.12 0-1.41.33-2.75.91-3.95 2.13-4.38 8.82-7.57 16.76-7.57 2.16 0 4.23.23 6.14.67-.42.46-.75.97-1.08 1.48-1.59-.31-3.29-.48-5.06-.48-7.27 0-13.36 2.83-15.12 6.65a7.33 7.33 0 0 0-.73 3.2c0 2.32 1.09 4.4 2.79 5.82l-2.63 4.3-1.41-1.12 1.81-2.88z'/%3e%3cpath d='M204.9 180.48c-1.91 1.21-3.36 2.69-4.16 4.34-.58 1.2-.91 2.54-.91 3.95 0 2.33.9 4.47 2.38 6.12l-1.6 2.59c-1.53-1.96-2.42-4.26-2.42-6.7 0-4.2 2.67-7.87 6.71-10.3zm45.14-9.21c1.76 0 3.28 1.16 3.64 2.73.23 1.38.38 2.95.41 4.62.01.18-.01.35-.01.52 0 .2.04.41.05.61.06 3.52.56 6.62 1.27 8.52l-5.36 5.14-5.43-5.14c.72-1.9 1.22-5 1.29-8.52 0-.2.04-.41.04-.61 0-.17-.01-.34-.01-.52.03-1.67.18-3.24.41-4.62.36-1.57 1.94-2.73 3.7-2.73z'/%3e%3cpath d='M250.04 172.94c.91 0 1.68.58 1.87 1.39.23 1.31.37 2.8.4 4.38 0 .16-.01.32-.01.48 0 .2.03.39.04.59.05 3.32.53 6.25 1.21 8.05l-3.54 3.35-3.54-3.35c.67-1.8 1.15-4.73 1.21-8.05 0-.2.04-.39.04-.59 0-.16-.01-.32-.01-.48.03-1.58.17-3.07.4-4.38.18-.81 1.02-1.39 1.93-1.39zm24.66 18.48-1.39 1.11-2.08-3.4c2.26-1.38 3.81-3.78 3.81-6.51 0-.31-.02-.61-.06-.91-.21-4.34-5.5-7.92-12.2-7.92-3.49 0-6.63.95-8.84 2.48-.06-.67-.12-1.25-.22-1.86 2.44-1.42 5.6-2.28 9.06-2.28 7.71 0 13.74 4.39 14.03 9.57.03.31.05.61.05.92 0 2.76-1.27 5.26-3.27 6.99l1.11 1.81'/%3e%3cpath d='M274.61 191.46c2.63-1.97 4.27-4.64 4.27-7.58 0-3.38-2.22-6.4-5.58-8.41 2.07 1.67 3.33 3.83 3.51 6.23.03.31.05.61.05.92 0 2.76-1.27 5.26-3.27 6.99l1.02 1.85'/%3e%3cpath d='M297.83 194.89c1.47-1.65 2.38-3.79 2.38-6.12 0-1.41-.33-2.75-.91-3.95-2.14-4.38-8.82-7.57-16.76-7.57-2.16 0-4.23.23-6.15.67.43.46.76.97 1.09 1.48 1.58-.31 3.29-.48 5.06-.48 7.27 0 13.35 2.83 15.11 6.65.47.97.73 2.06.73 3.2 0 2.32-1.09 4.4-2.79 5.82l2.63 4.3 1.42-1.12-1.81-2.88z'/%3e%3cpath d='M295.14 180.48c1.91 1.21 3.36 2.69 4.16 4.34.58 1.2.91 2.54.91 3.95 0 2.33-.91 4.47-2.38 6.12l1.6 2.59c1.53-1.96 2.41-4.26 2.41-6.7 0-4.2-2.67-7.87-6.7-10.3z'/%3e%3cellipse fill='%23005bbf' stroke-width='.26' cx='250.05' cy='167.3' rx='4.43' ry='4.2'/%3e%3cpath stroke-width='.26' d='M248.89 155.54v2.26h-2.42v2.3h2.42v6.61h-3.05c-.03.21-.22.37-.22.59 0 .58.12 1.14.35 1.64 0 .02.02.02.03.03h8.12c0-.01.02-.01.03-.03.22-.5.35-1.06.35-1.64 0-.22-.19-.38-.22-.59h-2.96v-6.61h2.42v-2.3h-2.42v-2.26h-2.43z'/%3e%3c/g%3e%3cg fill='%23fff'%3e%3cellipse cx='250.04' cy='188.94' rx='1.91' ry='1.8'/%3e%3cellipse cx='250.04' cy='185.4' rx='1.91' ry='1.8'/%3e%3cellipse cx='250.04' cy='181.6' rx='1.52' ry='1.44'/%3e%3cellipse cx='250.04' cy='178.18' rx='1.1' ry='1.04'/%3e%3cellipse cx='250.04' cy='175.18' rx='.88' ry='.83'/%3e%3cellipse cx='198.94' cy='198.67' rx='1.1' ry='1.04'/%3e%3cellipse cx='197.44' cy='196.02' rx='1.1' ry='1.04'/%3e%3cellipse cx='196.44' cy='192.94' rx='1.1' ry='1.04'/%3e%3cellipse cx='196.31' cy='189.64' rx='1.1' ry='1.04'/%3e%3cellipse cx='197.12' cy='186.4' rx='1.1' ry='1.04'/%3e%3cellipse cx='198.81' cy='183.45' rx='1.1' ry='1.04'/%3e%3cellipse cx='201.06' cy='181.02' rx='1.1' ry='1.04'/%3e%3cellipse cx='203.68' cy='179.01' rx='1.1' ry='1.04'/%3e%3cellipse cx='206.8' cy='177.36' rx='1.1' ry='1.04'/%3e%3cellipse cx='210.04' cy='176.19' rx='1.1' ry='1.04'/%3e%3cellipse cx='213.66' cy='175.54' rx='1.1' ry='1.04'/%3e%3cellipse cx='217.1' cy='175.36' rx='1.1' ry='1.04'/%3e%3cellipse cx='220.47' cy='175.48' rx='1.1' ry='1.04'/%3e%3cellipse cx='224.21' cy='190.32' rx='1.1' ry='1.04'/%3e%3cellipse cx='222.34' cy='187.65' rx='1.1' ry='1.04'/%3e%3cellipse cx='221.35' cy='184.75' rx='1.1' ry='1.04'/%3e%3cellipse cx='221.47' cy='181.57' rx='1.1' ry='1.04'/%3e%3cellipse cx='222.16' cy='178.37' rx='1.1' ry='1.04'/%3e%3cellipse cx='223.84' cy='175.48' rx='1.1' ry='1.04'/%3e%3cellipse cx='226.4' cy='173.47' rx='1.1' ry='1.04'/%3e%3cellipse cx='229.39' cy='171.81' rx='1.1' ry='1.04'/%3e%3cellipse cx='232.7' cy='170.82' rx='1.1' ry='1.04'/%3e%3cellipse cx='236.13' cy='170.23' rx='1.1' ry='1.04'/%3e%3cellipse cx='239.5' cy='170.28' rx='1.1' ry='1.04'/%3e%3cellipse cx='242.99' cy='170.87' rx='1.1' ry='1.04'/%3e%3cellipse cx='246.23' cy='171.99' rx='1.1' ry='1.04'/%3e%3cellipse cx='253.8' cy='171.99' rx='1.1' ry='1.04'/%3e%3cellipse cx='257.04' cy='170.87' rx='1.1' ry='1.04'/%3e%3cellipse cx='260.54' cy='170.28' rx='1.1' ry='1.04'/%3e%3cellipse cx='263.9' cy='170.23' rx='1.1' ry='1.04'/%3e%3cellipse cx='267.34' cy='170.82' rx='1.1' ry='1.04'/%3e%3cellipse cx='270.64' cy='171.81' rx='1.1' ry='1.04'/%3e%3cellipse cx='273.64' cy='173.47' rx='1.1' ry='1.04'/%3e%3cellipse cx='276.19' cy='175.48' rx='1.1' ry='1.04'/%3e%3cellipse cx='277.88' cy='178.37' rx='1.1' ry='1.04'/%3e%3cellipse cx='278.57' cy='181.57' rx='1.1' ry='1.04'/%3e%3cellipse cx='278.69' cy='184.75' rx='1.1' ry='1.04'/%3e%3cellipse cx='277.69' cy='187.65' rx='1.1' ry='1.04'/%3e%3cellipse cx='275.83' cy='190.32' rx='1.1' ry='1.04'/%3e%3cellipse cx='279.57' cy='175.48' rx='1.1' ry='1.04'/%3e%3cellipse cx='282.94' cy='175.36' rx='1.1' ry='1.04'/%3e%3cellipse cx='286.38' cy='175.54' rx='1.1' ry='1.04'/%3e%3cellipse cx='290' cy='176.19' rx='1.1' ry='1.04'/%3e%3cellipse cx='293.24' cy='177.36' rx='1.1' ry='1.04'/%3e%3cellipse cx='296.36' cy='179.01' rx='1.1' ry='1.04'/%3e%3cellipse cx='298.97' cy='181.02' rx='1.1' ry='1.04'/%3e%3cellipse cx='301.22' cy='183.45' rx='1.1' ry='1.04'/%3e%3cellipse cx='302.91' cy='186.4' rx='1.1' ry='1.04'/%3e%3cellipse cx='303.72' cy='189.64' rx='1.1' ry='1.04'/%3e%3cellipse cx='303.6' cy='192.94' rx='1.1' ry='1.04'/%3e%3cellipse cx='302.6' cy='196.02' rx='1.1' ry='1.04'/%3e%3cellipse cx='301.1' cy='198.67' rx='1.1' ry='1.04'/%3e%3c/g%3e%3cg fill='%23c8b100'%3e%3cpath d='M250.15 226.18c-12.26-.02-23.25-1.47-31.09-3.83-.57-.18-.87-.7-.84-1.25-.01-.52.29-1 .84-1.17 7.84-2.36 18.83-3.81 31.09-3.83 12.27.02 23.25 1.47 31.09 3.83.55.17.84.65.83 1.17.03.55-.27 1.07-.83 1.25-7.84 2.36-18.82 3.81-31.09 3.83'/%3e%3cpath d='M250.07 216.09c-12.41.03-23.55 1.58-31.39 4 .65-.31.59-1.12-.22-3.2-.98-2.53-2.5-2.42-2.5-2.42 8.66-2.56 20.73-4.16 34.16-4.18 13.44.02 25.6 1.62 34.27 4.18 0 0-1.53-.11-2.51 2.42-.81 2.08-.87 2.89-.21 3.2-7.84-2.42-19.19-3.97-31.6-4'/%3e%3cpath d='M250.12 210.3c-13.43.02-25.5 1.62-34.16 4.18-.58.17-1.19-.05-1.38-.6s.12-1.18.7-1.35c8.71-2.67 21.08-4.35 34.84-4.38 13.77.03 26.19 1.71 34.9 4.38.58.17.89.8.7 1.35s-.8.77-1.38.6c-8.67-2.56-20.78-4.16-34.22-4.18'/%3e%3cpath d='m250.2 199.78 1.23.22c-.19.5-.24 1.05-.24 1.63 0 2.57 2.21 4.65 4.92 4.65 2.18 0 4.04-1.35 4.67-3.21.08.05.47-1.68.68-1.66.17.02.15 1.8.22 1.77.31 2.34 2.46 3.93 4.87 3.93 2.71 0 4.91-2.08 4.91-4.65 0-.19-.01-.38-.04-.57l1.54-1.52.83 1.94c-.33.61-.46 1.3-.46 2.03 0 2.46 2.1 4.44 4.69 4.44 1.63 0 3.06-.78 3.9-1.97l.99-1.25-.01 1.53c0 1.55.66 2.93 2.16 3.18 0 0 1.73.1 4.03-1.7 2.29-1.8 3.55-3.29 3.55-3.29l.2 1.8s-1.9 2.95-3.97 4.15c-1.14.66-2.86 1.35-4.23 1.13-1.44-.24-2.48-1.4-3.01-2.74-1.03.61-2.25.97-3.55.97-2.81 0-5.33-1.54-6.32-3.86-1.29 1.4-3.09 2.25-5.2 2.25-2.24 0-4.29-1.01-5.57-2.56a7.198 7.198 0 0 1-4.88 1.87c-2.48 0-4.69-1.22-5.94-3.05-1.25 1.83-3.46 3.05-5.94 3.05-1.89 0-3.61-.71-4.87-1.87-1.28 1.55-3.34 2.56-5.58 2.56-2.11 0-3.9-.85-5.19-2.25-1 2.32-3.52 3.86-6.32 3.86-1.31 0-2.52-.36-3.55-.97-.54 1.34-1.57 2.5-3.02 2.74-1.36.22-3.08-.47-4.22-1.13-2.08-1.2-3.98-4.15-3.98-4.15l.2-1.8s1.27 1.49 3.56 3.29c2.29 1.81 4.02 1.7 4.02 1.7 1.51-.25 2.16-1.63 2.16-3.18l-.01-1.53.99 1.25c.84 1.19 2.28 1.97 3.9 1.97 2.59 0 4.69-1.98 4.69-4.44 0-.73-.13-1.42-.46-2.03l.83-1.94 1.54 1.52c-.02.19-.04.38-.04.57 0 2.57 2.2 4.65 4.91 4.65 2.42 0 4.56-1.59 4.88-3.93.06.03.05-1.75.22-1.77.2-.02.6 1.71.67 1.66.64 1.86 2.49 3.21 4.68 3.21 2.71 0 4.91-2.08 4.91-4.65 0-.58-.03-1.13-.24-1.63l1.29-.22'/%3e%3cpath d='M208.37 206.32a2.24 2.24 0 0 0-.72-1.06c-.79-.68-1.84-.79-2.36-.25-.07.07-.13.17-.17.25 0 0-1.11-2.08-2.41-2.78-1.29-.7-3.49-.52-3.49-.52 0-1.6 1.3-2.89 2.99-2.89.99 0 1.92.41 2.48 1.11l.23-1.07s1.36.27 1.98 1.82-.06 3.8-.06 3.8.34-.96.85-1.61c.51-.64 1.81-1.34 2.49-1.66.67-.31 1.37-.79 1.37-.79s.03.18.05.61c.03.51-.01.83-.01.83 1.24-.17 2.69.04 3.83.48-.49.95-1.41 1.84-2.62 2.3 0 0 .44.36.83.75.34.34.44.49.44.49s-.85.13-1.27.19c-.43.05-1.84.28-2.69.22-.62-.04-1.32-.14-1.74-.22'/%3e%3cpath fill='%23ad1519' d='M205.29 205.01c.52-.54 1.57-.43 2.36.25.8.67 1.02 1.66.51 2.19-.51.54-1.57.42-2.36-.25-.79-.68-1.02-1.66-.51-2.19'/%3e%3cpath fill='%23fff' d='M216.39 205.91c-.28-.83-.03-1.65.57-1.83.6-.19 1.32.33 1.6 1.16s.03 1.65-.57 1.84c-.6.18-1.31-.34-1.6-1.17'/%3e%3cpath d='M226.12 201.86c-.33-.27-.59-.64-.67-1.08s.01-.87.23-1.23c0 0-.88-.44-1.83-.69-.72-.19-1.99-.2-2.37-.2-.38-.02-1.15-.03-1.15-.03s.07.17.28.55c.27.46.5.75.5.75-1.27.29-2.35 1.12-3.03 2.09.99.68 2.3 1.1 3.6.97 0 0-.12.34-.2.86-.06.43-.06.61-.06.61s.71-.26 1.07-.39c.35-.13 1.54-.55 2.15-.96.8-.54 1.48-1.25 1.48-1.25'/%3e%3cpath d='M225.68 191.65c1.06.67 1.98 1.79 2.3 3.03 0 0 .13-.25.71-.59.59-.33 1.09-.32 1.09-.32s-.17.97-.25 1.32c-.09.34-.09 1.38-.32 2.32-.23.93-.63 1.68-.63 1.68-.42-.34-.99-.51-1.58-.41-.58.1-1.06.44-1.32.9 0 0-.66-.58-1.21-1.38-.55-.81-.93-1.78-1.13-2.08-.21-.3-.72-1.15-.72-1.15s.47-.18 1.14-.05c.67.12.88.32.88.32-.14-1.28.28-2.62 1.04-3.59'/%3e%3cpath d='M228.97 201.38a1.727 1.727 0 0 0-.42-2.3s.67-.71 1.47-1.26c.6-.41 1.8-.82 2.15-.95.36-.13 1.07-.4 1.07-.4s0 .18-.06.61c-.08.52-.2.87-.2.87 1.3-.14 2.62.29 3.61.98-.69.97-1.77 1.79-3.04 2.08 0 0 .23.28.5.74.21.39.28.56.28.56l-1.15-.03c-.38 0-1.65-.01-2.37-.2-.95-.25-1.84-.69-1.84-.69'/%3e%3cellipse fill='%23ad1519' cx='227.37' cy='200.45' rx='2.17' ry='2.06'/%3e%3cpath fill='%23fff' d='M237.76 201.77c-.11-.87.31-1.63.93-1.7.63-.07 1.23.57 1.34 1.44.11.86-.3 1.63-.93 1.7-.62.07-1.22-.57-1.34-1.44'/%3e%3cpath d='M248.5 199.83c-.32-.36-.53-.82-.53-1.33 0-.5.19-.97.51-1.32 0 0-.89-.67-1.89-1.12-.77-.35-2.18-.59-2.6-.67l-1.28-.24s.04.2.2.67c.2.56.4.93.4.93-1.47.08-2.85.81-3.81 1.76.96.94 2.34 1.66 3.81 1.75 0 0-.2.36-.4.93-.16.46-.2.67-.2.67l1.28-.24c.42-.08 1.83-.32 2.6-.67 1-.46 1.91-1.11 1.91-1.11'/%3e%3cpath d='M250.11 188.36c1.05.95 1.85 2.36 1.95 3.82 0 0 .19-.27.91-.53.73-.26 1.28-.16 1.28-.16s-.39 1.05-.55 1.42c-.17.37-.39 1.53-.84 2.53-.44 1-1.05 1.76-1.05 1.76-.4-.45-1-.75-1.67-.75-.68 0-1.27.3-1.67.75 0 0-.61-.76-1.05-1.76-.45-1-.67-2.16-.84-2.53s-.56-1.42-.56-1.42.56-.1 1.28.16.92.53.92.53c.1-1.46.86-2.87 1.89-3.82'/%3e%3cpath d='M251.76 199.83c.33-.36.53-.82.53-1.33 0-.5-.19-.97-.51-1.32 0 0 .89-.67 1.9-1.12.76-.35 2.17-.59 2.6-.67l1.26-.24s-.02.2-.19.67c-.2.56-.4.93-.4.93 1.47.08 2.86.81 3.81 1.76-.95.94-2.33 1.66-3.81 1.75 0 0 .2.36.4.93.16.46.19.67.19.67l-1.26-.24c-.43-.08-1.84-.32-2.6-.67-1.01-.46-1.92-1.11-1.92-1.11'/%3e%3cellipse fill='%23ad1519' cx='250.14' cy='198.5' rx='2.17' ry='2.06'/%3e%3cpath fill='%23fff' d='M262.58 201.77c.11-.87-.3-1.63-.93-1.7s-1.23.57-1.34 1.44c-.11.86.31 1.63.93 1.7.63.07 1.23-.57 1.34-1.44'/%3e%3cpath d='M271.38 201.38c-.22-.35-.32-.79-.25-1.23.09-.44.33-.81.67-1.07 0 0-.67-.71-1.47-1.26-.61-.41-1.8-.82-2.16-.95-.35-.13-1.06-.4-1.06-.4s-.01.18.06.61c.08.52.19.87.19.87-1.29-.14-2.61.29-3.6.98.68.97 1.77 1.79 3.03 2.08 0 0-.23.28-.49.74-.22.39-.28.56-.28.56l1.14-.03c.38 0 1.66-.01 2.37-.2.95-.25 1.84-.69 1.84-.69'/%3e%3cpath d='M274.67 191.65c-1.06.67-1.98 1.79-2.31 3.03 0 0-.12-.25-.71-.59-.58-.33-1.09-.32-1.09-.32s.17.97.26 1.32c.09.34.09 1.38.31 2.32.23.93.64 1.68.64 1.68.42-.34.99-.51 1.57-.41.59.1 1.06.44 1.33.9 0 0 .66-.58 1.21-1.38.54-.81.92-1.78 1.12-2.08.21-.3.72-1.15.72-1.15s-.47-.18-1.14-.05c-.67.12-.88.32-.88.32.15-1.28-.28-2.62-1.03-3.59'/%3e%3cpath d='M274.22 201.86c.34-.27.6-.64.67-1.08.09-.44 0-.87-.22-1.23 0 0 .88-.44 1.83-.69.72-.19 1.99-.2 2.36-.2.39-.02 1.15-.03 1.15-.03s-.06.17-.28.55c-.26.46-.49.75-.49.75 1.26.29 2.34 1.12 3.03 2.09-.99.68-2.31 1.1-3.6.97 0 0 .11.34.19.86.06.43.06.61.06.61s-.71-.26-1.06-.39c-.36-.13-1.55-.55-2.16-.96-.79-.54-1.48-1.25-1.48-1.25'/%3e%3cellipse fill='%23ad1519' cx='272.98' cy='200.45' rx='2.17' ry='2.06'/%3e%3cpath fill='%23fff' d='M283.96 205.91c.28-.83.03-1.65-.57-1.83-.6-.19-1.32.33-1.61 1.16-.28.83-.03 1.65.57 1.84.6.18 1.32-.34 1.61-1.17'/%3e%3cpath d='M291.97 206.32c.11-.37.36-.75.72-1.06.79-.68 1.85-.79 2.36-.25.07.07.14.17.18.25 0 0 1.1-2.08 2.4-2.78s3.5-.52 3.5-.52c0-1.6-1.31-2.89-3-2.89-.99 0-1.92.41-2.47 1.11l-.23-1.07s-1.36.27-1.98 1.82.05 3.8.05 3.8-.33-.96-.84-1.61c-.51-.64-1.81-1.34-2.49-1.66-.68-.31-1.37-.79-1.37-.79s-.03.18-.06.61c-.02.51.02.83.02.83-1.25-.17-2.7.04-3.83.48.48.95 1.4 1.84 2.61 2.3 0 0-.43.36-.83.75-.33.34-.43.49-.43.49s.85.13 1.27.19c.43.05 1.84.28 2.68.22.63-.04 1.32-.14 1.74-.22'/%3e%3cpath fill='%23ad1519' d='M295.05 205.01c-.51-.54-1.57-.43-2.36.25-.79.67-1.02 1.66-.51 2.19.51.54 1.57.42 2.36-.25.79-.68 1.02-1.66.51-2.19'/%3e%3c/g%3e%3cg fill='none'%3e%3cpath fill='%23ad1519' stroke-linejoin='round' d='M250.12 224.57c-11.06-.01-21.07-1.29-28.68-3.26 7.61-1.97 17.62-3.17 28.68-3.19 11.07.02 21.13 1.22 28.74 3.19-7.61 1.97-17.67 3.25-28.74 3.26z'/%3e%3cpath stroke-width='.05' d='M258.04 224.28v-6.01m-3.02 6.21.04-6.37m-2.24 6.45v-6.49'/%3e%3cpath stroke-width='.09' d='M250.95 224.64v-6.57'/%3e%3cpath stroke-width='.14' d='M249.16 224.64v-6.57'/%3e%3cpath stroke-width='.18' d='M247.48 224.64v-6.57'/%3e%3cpath stroke-width='.23' d='M245.81 224.64v-6.57'/%3e%3cpath stroke-width='.28' d='M244.32 224.64v-6.57'/%3e%3cpath stroke-width='.33' d='m241.48 224.28-.04-5.97m1.39 6.05v-6.25'/%3e%3cpath stroke-width='.37' d='M238.86 224.01v-5.5m1.33 5.66-.04-5.86'/%3e%3cpath stroke-width='.42' d='M235.35 223.7v-4.84m1.15 4.92v-5.08m1.19 5.24v-5.28'/%3e%3cpath stroke-width='.46' d='M234.12 223.66v-4.68'/%3e%3cpath stroke-width='.51' d='M232.97 223.42v-4.36'/%3e%3cpath stroke-width='.56' d='M231.74 223.31v-4.06'/%3e%3cpath stroke-width='.6' d='m229.22 222.95-.04-3.22m1.33 3.38v-3.62'/%3e%3cpath stroke-width='.63' d='M227.93 222.68v-2.84'/%3e%3cpath stroke-width='.68' d='M226.74 222.45v-2.36'/%3e%3cpath stroke-width='.73' d='M225.45 222.13v-1.85'/%3e%3cpath stroke-width='.77' d='M224.12 221.98v-1.38'/%3e%3cpath stroke-width='.91' d='M222.72 221.66v-.67'/%3e%3cpath d='M220.12 221.66c7.75-2.18 18.29-3.52 30-3.54 11.72.02 22.31 1.36 30.06 3.54'/%3e%3cpath fill='%23ad1519' d='m216.72 217.16 1.22-1.59 3.37.43-2.69 1.96-1.9-.8'/%3e%3cpath fill='%23fff' d='M224.03 215.28c0-.58.49-1.04 1.1-1.04s1.1.46 1.1 1.04c0 .57-.49 1.04-1.1 1.04s-1.1-.47-1.1-1.04'/%3e%3cpath fill='%23058e6e' d='m233.64 215.07-2.36.27c-.61.07-1.17-.33-1.24-.9-.08-.57.35-1.09.96-1.15l2.37-.28 2.42-.28c.6-.07 1.15.33 1.22.9s-.36 1.09-.96 1.16l-2.41.28'/%3e%3cpath fill='%23fff' d='M240.54 213.35c0-.58.49-1.04 1.1-1.04.6 0 1.1.46 1.1 1.04 0 .57-.5 1.04-1.1 1.04-.61 0-1.1-.47-1.1-1.04'/%3e%3cpath fill='%23ad1519' d='M250.15 214.16h-3.29c-.6 0-1.11-.46-1.11-1.03 0-.58.49-1.04 1.1-1.04h6.64c.61 0 1.1.46 1.1 1.04 0 .57-.51 1.03-1.11 1.03h-3.33'/%3e%3cpath fill='%23fff' d='M257.56 213.35c0-.58.5-1.04 1.1-1.04.61 0 1.1.46 1.1 1.04 0 .57-.49 1.04-1.1 1.04-.6 0-1.1-.47-1.1-1.04'/%3e%3cpath fill='%23058e6e' d='m266.66 215.07 2.36.27c.6.07 1.17-.33 1.24-.9s-.36-1.09-.96-1.15l-2.37-.28-2.42-.28c-.61-.07-1.15.33-1.22.9-.08.57.36 1.09.96 1.16l2.41.28'/%3e%3cpath fill='%23fff' d='M274.07 215.28c0-.58.49-1.04 1.1-1.04s1.1.46 1.1 1.04c0 .57-.49 1.04-1.1 1.04s-1.1-.47-1.1-1.04'/%3e%3cpath fill='%23ad1519' d='m283.57 217.16-1.21-1.59-3.37.43 2.69 1.96 1.89-.8'/%3e%3c/g%3e%3cg stroke-width='.52'%3e%3cpath fill='%23ccc' d='M250.49 344.33c-13.08 0-26.05-3.2-36.95-8.54-8.03-3.98-13.36-12-13.36-21.19v-33.3H300.6v33.3c0 9.19-5.32 17.21-13.36 21.19-10.9 5.34-23.66 8.54-36.75 8.54z'/%3e%3cpath fill='%23ffd691' d='M252.91 329.55c2.09.63 3.15 2.19 3.15 4.01 0 2.38-2.3 4.18-5.3 4.18-2.99 0-5.42-1.8-5.42-4.18 0-1.79 1-3.8 3.08-3.94 0 0-.06-.19-.24-.5-.22-.23-.64-.66-.64-.66s.79-.15 1.25.02c.46.18.77.47.77.47s.21-.43.52-.76c.3-.33.7-.53.7-.53s.46.38.61.64c.15.27.25.59.25.59s.42-.35.79-.49c.37-.15.84-.26.84-.26s-.13.46-.22.69-.14.72-.14.72'/%3e%3cpath fill='%23058e6e' d='M250.32 340.32s-3.98-2.68-5.7-3.04c-2.21-.47-4.69-.09-5.76-.15.03.03 1.29.93 1.84 1.48s2.39 1.65 3.43 1.91c3.22.81 6.19-.2 6.19-.2m1.14.24s2.54-2.66 5.21-3.02c3.15-.44 5.22.26 6.44.58.03 0-1.01.49-1.56.87-.55.37-1.97 1.57-4.14 1.59-2.18.03-4.58-.23-4.97-.17-.4.06-.98.15-.98.15'/%3e%3cpath fill='%23ad1519' d='M250.69 337.28c-1-.93-1.62-2.25-1.62-3.72 0-1.46.62-2.78 1.63-3.71a5.08 5.08 0 0 1-.01 7.43'/%3e%3cpath fill='%23058e6e' d='M249.68 342.71s.61-1.52.67-2.83c.06-1.09-.15-2.17-.15-2.17h.8s.39 1.16.39 2.17c0 1.02-.18 2.37-.18 2.37s-.55.08-.73.17c-.19.09-.8.29-.8.29'/%3e%3cg fill='%23c8b100'%3e%3cpath fill='%23ad1519' d='M250.32 314.57c0 13.16-11.16 23.82-25.05 23.82s-25.15-10.66-25.15-23.82v-33.35h50.2v33.35'/%3e%3cpath d='M200.03 314.12c.15 7.02 2.95 12.25 5.73 15.67v-49.47h-5.66l-.07 33.8zm11.05 20.11c1.57.83 3.72 2.22 6.03 2.77l-.15-56.96h-5.88v54.19zm11.2 4.02c2.3.23 4.01.19 5.87 0v-58.21h-5.87v58.21zm11.04-1.25c2.3-.46 4.9-1.89 6.03-2.63v-54.33h-5.88l-.15 56.96zm11.49-7.76c2.45-2.18 4.75-7.12 5.59-12.76l.14-36.44h-5.87l.14 49.2z'/%3e%3c/g%3e%3cpath fill='%23ad1519' d='M300.65 281.22v33.35c0 13.16-11.28 23.82-25.17 23.82-13.9 0-25.16-10.66-25.16-23.82v-33.35h50.33'/%3e%3cpath id='e' fill='%23c8b100' stroke='%23c8b100' stroke-width='.26' d='M272.71 306.14c.05-.14.12-.27.19-.4l-4.26-4.74-1.67.72-3.06-3.39 1-1.46-5.34-5.99c-.07.02-.2.02-.27.04l.03 4.02 1.75.5v4.46l-1.75.48-.03 4.08c.84.26 1.48.88 1.74 1.67l3.21.01.51-1.67h4.72l.5 1.67zm-6.98-18.5v1.61h2.76v-1.61zm-7.3 20.37c.64 0 1.16-.49 1.16-1.1s-.52-1.11-1.16-1.11c-.65 0-1.17.5-1.17 1.11s.52 1.1 1.17 1.1zm15.99-9.73-1.76-.48v-4.46l1.76-.5-.01-1.92c-.85-.25-1.51-.87-1.79-1.67h-2.68l-.51 1.67h-4.71l-.51-1.67h-3.09c-.08.22-.17.42-.29.61l5.38 5.96 1.67-.71 3.06 3.4-1 1.45 4.18 4.64c.09-.04.18-.08.28-.12zm-7.25-1.39-1.29 1.04 1.77 1.98 1.29-1.05zm8.004 36.186c-1.24-.065-2.255-.902-2.514-2.016-1.67-.23-3.25-.66-4.73-1.3l.84-1.43c1.29.55 2.66.91 4.08 1.11.31-.66.86-1.16 1.58-1.4l.01-5.62-1.76-.49v-4.46l1.76-.48v-7.64a.882.882 0 0 1-.2-.09l-3.98 4.42 1 1.44-3.06 3.4-1.67-.71-3.3 3.67c.57.87.55 2-.11 2.85a15.58 15.58 0 0 0 3.24 2.75l-.84 1.44c-1.42-.89-2.7-1.99-3.79-3.22-.87.26-1.86.11-2.6-.5-1.15-.93-1.29-2.56-.3-3.64l.14-.16c-.69-1.56-1.16-3.24-1.32-5l1.71.01c.14 1.5.51 2.93 1.09 4.27.49-.06 1-.01 1.46.16l3.32-3.68-1-1.45 3.06-3.4 1.67.72 3.99-4.43a2.15 2.15 0 0 1-.21-.46l-2.76.01-.5 1.67h-4.72l-.51-1.67-3.24-.01c-.27.76-.9 1.36-1.69 1.62l-.01 4.04-1.71-.01v-4.01c-1.1-.33-1.91-1.31-1.91-2.47 0-1.15.82-2.15 1.92-2.48l.01-4.05-1.76-.48v-4.46l1.76-.5v-4.05c-1.08-.35-1.84-1.32-1.84-2.45 0-1.43 1.22-2.58 2.73-2.58 1.22 0 2.25.74 2.61 1.78h3.09l.51-1.67h4.71l.51 1.67h2.68c.357-1.031 1.363-1.767 2.559-1.78l.071 8.37h-.85v2.61h.845l-.021 21.59h-.784v2.61h.78zm-5.914-18.306-1.29-1.04-1.78 1.98 1.29 1.04zm-9.96-18.44h-1.69l-.01 2.61h1.7zm9.16 11.41v-1.6h-2.85v1.6zm-10.6 9.69-1.76-.39-.25-4.45 1.75-.58v2.56c0 .99.09 1.92.26 2.86zm1.46-5.52 1.75.41s.09 2.87.05 2.22c-.04-.74.19 2.24.19 2.24l-1.76.58c-.18-.9-.24-1.84-.24-2.79zm10.81 16.93.39-1.7c-1.52-.48-2.93-1.18-4.17-2.09l-1.26 1.11c1.48 1.15 3.19 2.08 5.04 2.68zm-.85 1.44-1.3 1.22c-1.47-.54-2.86-1.26-4.12-2.11l.38-1.77c1.5 1.13 3.21 2.03 5.04 2.66z'/%3e%3cuse xlink:href='%23e' transform='matrix(-1 0 0 1 550.43 0)'/%3e%3cpath fill='%23058e6e' d='M272.59 306.94c0-1.44 1.23-2.6 2.74-2.6s2.73 1.16 2.73 2.6c0 1.43-1.22 2.58-2.73 2.58s-2.74-1.15-2.74-2.58' stroke='none'/%3e%3cg fill='%23c8b100' stroke-width='.46'%3e%3cpath fill='%23ad1519' stroke-width='.52' d='M200.12 281.25h50.18v-55.72h-50.18v55.72z'/%3e%3cpath d='M217.34 238.41h-.92v-.92h-1.62v3.69h1.62v2.55h-3.47v7.39h1.85v14.79h-3.7v7.63h28.42v-7.63h-3.69v-14.79h1.85v-7.39h-3.47v-2.55h1.62v-3.69h-1.62v.92h-.93v-.92h-1.61v.92h-1.16v-.92h-1.62v3.69h1.62v2.55h-3.46v-8.09h1.84v-3.7h-1.84v.93h-.93v-.93h-1.62v.93h-.92v-.93h-1.85v3.7h1.85v8.09h-3.47v-2.55h1.62v-3.69h-1.62v.92h-.92v-.92h-1.85v.92zm-6.24 35.13h28.42m-28.42-1.85h28.42m-28.42-1.85h28.42m-28.42-1.85h28.42m-28.42-2.08h28.42m-24.72-1.62h21.03m-21.03-1.85h21.03m-21.03-2.08h21.03m-21.03-1.84h21.03m-21.03-1.85h21.03m-21.03-1.85h21.03m-21.03-1.85h21.03m-22.88-1.85h24.73m-24.73-1.85h24.73m-24.73-1.85h24.73m-24.73-1.84h24.73m-21.26-1.85h17.79m-10.63-1.85h3.47m-3.47-1.85h3.47m-3.47-1.85h3.47m-3.47-1.85h3.47m-5.32-2.31h7.16m-12.47 7.86h3.69m-5.31-2.31h6.93m-6.93 33.97v-1.85m0-1.85v-1.85m-1.85 1.85v1.85m3.47 0v-1.85m1.84 3.7v-1.85m0-1.85v-1.85m0-2.08v-1.62m0-1.85v-2.08m-1.84 7.63v-2.08m-3.47 2.08v-2.08m7.16 0v2.08m1.62-2.08v-1.62m-5.31-1.85v1.85m3.69-1.85v1.85m3.47-1.85v1.85m-1.85-1.85v-2.08m1.85-1.84v1.84m0-5.54v1.85m-1.85-3.7v1.85m1.85-3.7v1.85m-3.47-1.85v1.85m-3.69-1.85v1.85m-1.62-3.7v1.85m3.46-1.85v1.85m3.47-1.85v1.85m1.85-3.7v1.85m-3.47-1.85v1.85m-3.69-1.85v1.85m-1.62-3.69v1.84m6.93-1.84v1.84m-3.47-5.54v1.85m15.95-1.85h-3.7m5.32-2.31h-6.94m6.94 33.97v-1.85m0-1.85v-1.85m1.85 1.85v1.85m-3.47 0v-1.85m-1.85 3.7v-1.85m0-1.85v-1.85m0-2.08v-1.62m0-1.85v-2.08m1.85 7.63v-2.08m3.47 2.08v-2.08m-7.17 0v2.08m-1.62-2.08v-1.62m5.32-1.85v1.85m-3.7-1.85v1.85m-3.46-1.85v1.85m1.84-1.85v-2.08m-1.84-1.84v1.84m0-5.54v1.85m1.84-3.7v1.85m-1.84-3.7v1.85m3.46-1.85v1.85m3.7-1.85v1.85m1.62-3.7v1.85m-3.47-1.85v1.85m-3.47-1.85v1.85m-1.84-3.7v1.85m3.46-1.85v1.85m3.7-1.85v1.85m1.62-3.69v1.84m-6.94-1.84v1.84m3.47-5.54v1.85m-7.16 18.71v-2.08m0-5.54v-1.85m0 5.55v-1.85m0-5.55v-1.85m0-1.85v-1.84m0-3.7v-1.85m0-1.85v-1.85m-8.78 4.85h3.69m3.47-5.54h3.47m3.46 5.54h3.7'/%3e%3cpath d='M230.05 273.54v-4.86c0-.92-.46-3.7-4.85-3.7-4.16 0-4.62 2.78-4.62 3.7v4.86h9.47z'/%3e%3cpath d='m222.19 268.91-2.31-.23c0-.92.23-2.31.93-2.77l2.08 1.62c-.23.23-.7.92-.7 1.38zm3.93-2.31 1.16-2.08c-.46-.23-1.39-.46-2.08-.46-.46 0-1.39.23-1.85.46l1.15 2.08h1.62zm2.31 2.31 2.31-.23c0-.92-.23-2.31-.92-2.77l-2.08 1.62c.23.23.69.92.69 1.38zm-6.7-8.08v-5.09c0-1.38-.92-2.54-2.54-2.54s-2.54 1.16-2.54 2.54v5.09h5.08zm7.16 0v-5.09c0-1.38.93-2.54 2.55-2.54 1.61 0 2.54 1.16 2.54 2.54v5.09h-5.09zm-8.78-12.48.23-4.62h-4.39l.47 4.62h3.69zm6.94 0 .46-4.62h-4.39l.23 4.62h3.7zm3.46 0-.46-4.62h4.62l-.46 4.62h-3.7z'/%3e%3cpath d='M228.43 273.54v-4.16c0-.7-.46-2.78-3.23-2.78-2.54 0-3.01 2.08-3.01 2.78v4.16h6.24zm-7.16-13.18v-4.39c0-1.15-.69-2.31-2.08-2.31s-2.08 1.16-2.08 2.31v4.39h4.16zm8.09 0v-4.39c0-1.15.69-2.31 2.08-2.31 1.38 0 2.08 1.16 2.08 2.31v4.39h-4.16z' fill='%230039f0' stroke='none'/%3e%3c/g%3e%3cpath fill='%23ccc' d='M250.28 281.25h50.32v-55.72h-50.32v55.72z'/%3e%3cpath fill='%23db4446' stroke-width='.39' d='m275.93 239.26.05-.62.09-.34s-1.61.13-2.46-.11-1.61-.59-2.4-1.25c-.79-.68-1.1-1.1-1.67-1.18-1.36-.22-2.4.4-2.4.4s1.02.37 1.78 1.31 1.59 1.41 1.95 1.53c.59.18 2.66.05 3.22.07.57.03 1.84.19 1.84.19z'/%3e%3cg fill='none' stroke-width='.39'%3e%3cpath fill='%23ed72aa' d='M283.46 237s.01.72.08 1.4c.06.67-.22 1.24-.11 1.61s.16.66.3.93c.14.26.21.94.21.94s-.38-.28-.74-.54c-.35-.27-.6-.44-.6-.44l.1 1.03c.04.31.22.89.51 1.24.29.33.87.89 1.05 1.33.18.45.14 1.44.14 1.44s-.46-.75-.87-.89c-.39-.14-1.26-.62-1.26-.62s.79.79.79 1.55c0 .75-.32 1.6-.32 1.6s-.36-.68-.83-1.12c-.47-.45-1.13-.9-1.13-.9s.52 1.17.52 1.95c0 .79-.15 2.47-.15 2.47s-.39-.64-.79-.96c-.4-.31-.87-.58-1.02-.78-.14-.21.48.64.54 1.16.07.51.32 2.35 1.92 4.69.94 1.37 2.39 3.77 5.5 2.98 3.11-.78 1.96-4.97 1.3-6.92-.65-1.95-.98-4.11-.94-4.87.04-.75.58-2.97.51-3.39-.07-.41-.24-2 .14-3.28.4-1.33.73-1.85.95-2.4.21-.55.39-.86.46-1.34s.07-1.37.07-1.37.58 1.06.73 1.44c.14.38.14 1.5.14 1.5s.11-1.12.98-1.67 1.88-1.13 2.13-1.44.33-.51.33-.51-.08 1.92-.62 2.67c-.36.49-1.77 2.09-1.77 2.09s.73-.28 1.23-.3c.51-.04.87 0 .87 0s-.62.48-1.41 1.64c-.8 1.16-.47 1.26-1.05 2.22s-1.05 1-1.78 1.58c-1.08.87-.5 4.34-.36 4.86.15.51 2.03 4.76 2.07 5.79.03 1.03.21 3.33-1.6 4.8-1.16.95-3.07.96-3.51 1.23-.43.28-1.29 1.13-1.29 2.91 0 1.79.64 2.06 1.15 2.51.51.44 1.16.2 1.3.55.15.34.22.54.44.75.21.2.36.44.29.82-.08.38-.91 1.23-1.2 1.85-.29.61-.87 2.23-.87 2.47s-.07.99.18 1.37c0 0 .91 1.06.29 1.26-.4.14-.78-.25-.97-.2-.54.14-.83.47-.98.45-.36-.07-.36-.25-.4-.76-.03-.51-.01-.72-.17-.72-.22 0-.33.18-.37.45s-.04.89-.29.89-.61-.45-.83-.55-.83-.2-.87-.48c-.03-.27.36-.85.76-.96.4-.1.76-.3.51-.51-.26-.2-.51-.2-.76 0-.25.21-.79.04-.76-.27.04-.31.11-.69.07-.86-.03-.17-.47-.51.1-.82.59-.31.84.27 1.42.17s.86-.31 1.08-.65.18-1.06-.22-1.5c-.39-.45-.79-.52-.94-.8-.14-.27-.36-.92-.36-.92s.11 1.2.04 1.37-.04.89-.04.89-.39-.45-.72-.79c-.32-.34-.65-1.37-.65-1.37s-.03.96-.03 1.34c0 .37.43.72.29.86-.15.13-.83-.72-1.02-.86-.18-.14-.76-.58-1.01-1.06s-.44-1.16-.51-1.41c-.07-.24-.19-1.31-.07-1.58.18-.4.47-1.13.47-1.13h-1.41c-.76 0-1.3-.23-1.59.28s-.15 1.54.21 2.88c.37 1.33.58 1.98.48 2.22-.11.24-.58.79-.76.89-.19.11-.69.07-.91-.03-.21-.1-.57-.27-1.26-.27s-1.12.03-1.37-.03c-.26-.07-.88-.38-1.17-.31s-.79.32-.65.72c.22.61-.21.75-.51.72-.29-.04-.53-.14-.9-.24-.36-.11-.9 0-.83-.42.07-.41.22-.44.4-.74.18-.32.25-.52.04-.54-.25-.02-.51-.05-.7.11-.2.16-.51.51-.76.38-.26-.14-.46-.43-.46-1.08 0-.64-.68-1.2-.05-1.17.62.03 1.41.48 1.55.13s.06-.51-.28-.78-.76-.43-.31-.77c.45-.35.56-.35.74-.54.17-.18.41-.79.73-.64.62.3.02.73.65 1.42.62.69 1.01.94 2.06.83 1.04-.11 1.33-.24 1.33-.54 0-.29-.09-.82-.12-1.04-.02-.21.15-.99.15-.99s-.48.3-.63.59c-.13.29-.42.8-.42.8s-.11-.6-.08-1.09c.02-.29.12-.79.11-.89-.03-.27-.23-.94-.23-.94s-.16.73-.28.94c-.11.21-.16 1.07-.16 1.07s-.67-.58-.48-1.55c.13-.75-.12-1.74.11-2.06.22-.33.75-1.64 2.06-1.69 1.3-.05 2.31.05 2.77.03.45-.03 2.06-.33 2.06-.33s-2.97-1.52-3.64-1.98c-.68-.45-1.73-1.63-2.07-2.16-.34-.54-.65-1.58-.65-1.58s-.53.02-1.02.29c-.48.27-.96.67-1.24.99s-.73 1.05-.73 1.05.08-.94.08-1.23-.06-.86-.06-.86-.33 1.28-1.01 1.76c-.68.49-1.47 1.15-1.47 1.15s.08-.71.08-.88c0-.16.17-.99.17-.99s-.48.72-1.21.86c-.74.13-1.81.11-1.9.56-.08.45.2 1.07.03 1.39s-.54.54-.54.54-.42-.35-.79-.38c-.36-.03-.71.16-.71.16s-.31-.4-.19-.67c.11-.26.67-.66.54-.83-.15-.16-.6.06-.88.19-.28.14-.88.27-.82-.19.05-.45.2-.72.05-1.04-.14-.32-.05-.53.18-.61.22-.08 1.12.02 1.21-.19.08-.21-.22-.48-.82-.61-.59-.14-.88-.49-.57-.78.32-.3.4-.38.54-.64.14-.27.2-.76.74-.51.53.24.42.83.99 1.01.56.19 1.89-.08 2.17-.24s1.19-.83 1.5-.99c.31-.15 1.61-1.12 1.61-1.12s-.76-.53-1.05-.8c-.28-.27-.78-.91-1.04-1.05-.25-.13-1.5-.61-1.92-.64-.42-.02-1.72-.48-1.72-.48s.59-.19.79-.35c.19-.16.64-.56.87-.53.22.02.28.02.28.02s-1.21-.05-1.47-.13c-.25-.08-.99-.54-1.27-.54s-.84.11-.84.11.76-.48 1.38-.59c.62-.1 1.1-.08 1.1-.08s-.96-.27-1.19-.58c-.22-.33-.45-.8-.62-1.02-.17-.21-.28-.56-.59-.59s-.85.38-1.16.35-.54-.22-.57-.67c-.02-.46 0-.3-.1-.54-.12-.24-.57-.8-.15-.93.43-.14 1.33.08 1.42-.08.08-.16-.48-.65-.85-.83-.37-.19-.96-.51-.65-.78.31-.26.62-.37.79-.61s.37-.91.74-.7c.36.21.87 1.26 1.16 1.18.28-.08.3-.83.25-1.15-.06-.32 0-.88.28-.83s.51.43.96.46c.45.02 1.13-.11 1.07.21-.05.32-.31.71-.62 1.06-.3.36-.45 1.05-.25 1.5.2.46.71 1.19 1.16 1.48s1.3.51 1.84.85c.53.35 1.78 1.34 2.2 1.45s.85.32.85.32.48-.21 1.13-.21 2.14.1 2.71-.14 1.3-.64 1.08-1.15c-.23-.51-1.47-.96-1.36-1.36s.57-.43 1.33-.46c.76-.02 1.8.14 2-.94.2-1.06.26-1.68-.81-1.92-1.08-.24-1.87-.27-2.07-1.04-.2-.78-.39-.97-.17-1.18.23-.21.62-.32 1.41-.37.8-.06 1.7-.06 1.96-.25.25-.18.3-.69.61-.91.31-.21 1.53-.4 1.53-.4s1.46.71 2.8 1.71c1.21.9 2.3 2.23 2.3 2.23'/%3e%3cpath d='M269 243.39s-.8.23-1.1.67c-.37.53-.34 1.07-.34 1.07s.68-.56 1.56-.33c.87.24.96.33 1.33.3s1.27-.35 1.27-.35-.74.86-.65 1.45c.08.58.19.85.17 1.15-.06.72-.6 1.61-.6 1.61s.31-.19 1.05-.35c.73-.16 1.36-.51 1.75-.81.39-.29.9-1.02.9-1.02s-.16 1 0 1.42c.17.44.23 1.67.23 1.67s.47-.42.85-.62c.19-.11.7-.38.9-.7.14-.22.32-1.06.32-1.06s.11.9.39 1.34c.28.42.7 1.74.7 1.74s.29-.86.6-1.21.68-.8.7-1.07c.03-.27-.08-.85-.08-.85l.39.85m-11.41.61s.48-.83.93-1.1c.46-.26 1.08-.74 1.25-.8.16-.05.9-.46.9-.46m.99 5.17s1.09-.55 1.41-.75c.68-.4 1.16-1.12 1.16-1.12'/%3e%3cpath stroke-width='.26' d='M282.57 240.9s-.34-.48-.42-.65c-.09-.15-.23-.48-.23-.48'/%3e%3cpath d='M278.33 257.41s2.04 1.26 1.98 2.31c-.06 1.04-1.13 2.41-1.13 2.41'/%3e%3c/g%3e%3cpath stroke-width='.26' d='M273.05 236.24s-.17-.48-.2-.62c-.03-.13-.12-.29-.12-.29s.88 0 .85.27c-.02.27-.28.27-.34.37-.05.11-.19.27-.19.27z'/%3e%3cpath stroke-width='.05' d='m277.06 234.85-.06-.43s.77 0 1.13.26c.57.4.93 1.02.91 1.05-.1.09-.54-.27-.85-.37 0 0-.23.05-.45.05-.23 0-.34-.11-.37-.21-.03-.12.03-.3.03-.3l-.34-.05z'/%3e%3cpath d='m273.08 240.14.33-.53.34.49-.67.04m.81-.02.4-.53.43.48-.83.05m-.36-3.29.82.29-.74.38-.08-.67m.99.27.73.18-.59.46-.14-.64' stroke-width='.26'/%3e%3cpath d='M261.88 236.08s.48.34.85.4c.37.05.76.05.82.05.05 0 .17-.54.11-.91-.2-1.2-1.3-1.47-1.3-1.47s.33.73.17 1.07c-.23.48-.65.86-.65.86zm-2.29 1.04s-.43-.77-1.33-.67c-.9.11-1.5.81-1.5.81s1-.03 1.25.13c.37.24.48.86.48.86s.54-.32.71-.54c.16-.21.39-.59.39-.59zm-1.1 3.13s-.77.11-1.19.59c-.43.49-.36 1.4-.36 1.4s.5-.54.95-.54c.46 0 1.16.16 1.16.16s-.22-.56-.22-.8-.34-.81-.34-.81zm2.57 10.12s-.42-.45-1.16-.32c-.74.14-1.22.97-1.22.97s.63-.17 1-.08c.36.08.62.45.62.45s.34-.29.45-.45.31-.57.31-.57zm-.85 2.97s-.62-.1-1.16.33c-.53.43-.56 1.25-.56 1.25s.51-.43.91-.37c.39.05.87.27.87.27s.08-.51.11-.64c.09-.38-.17-.84-.17-.84zm1.45 2.74s-.05.79.33 1.28c.4.51 1.13.59 1.13.59s-.24-.53-.28-.8c-.06-.4.34-.75.34-.75s-.37-.38-.73-.38c-.37 0-.79.06-.79.06zm7.34 7.04s-.51-.64-1.21-.62c-.71.03-1.45.69-1.45.69s.88-.07 1.11.22c.23.3.45.67.45.67s.4-.21.57-.35c.17-.13.53-.61.53-.61zm-2.17 2.81s-.93-.14-1.39.35c-.45.48-.42 1.36-.42 1.36s.56-.61 1.07-.56 1.08.32 1.08.32-.09-.53-.15-.78c-.05-.24-.19-.69-.19-.69zm2.01 2.97s-.46.64-.12 1.15 1.05.75 1.05.75-.26-.37-.14-.8c.09-.34.67-.8.67-.8l-1.46-.3zm12.4 1.21s-.81-.19-1.27.08c-.45.26-.82 1.39-.82 1.39s.74-.62 1.28-.54c.53.08.93.3.93.3s.08-.46.02-.78c-.03-.19-.14-.45-.14-.45zm.4 2.99s-.62.64-.4 1.18c.23.54.62 1.1.62 1.1s-.02-.8.23-1.02c.37-.32 1.05-.37 1.05-.37s-.54-.48-.71-.54c-.17-.05-.79-.35-.79-.35zm3.11.94s-.31.78.28 1.28c.59.52 1.11.57 1.11.57s-.46-.81-.32-1.23c.15-.45.54-.72.54-.72s-.74-.25-.85-.22c-.11.02-.76.32-.76.32z' fill='%23db4446' stroke-width='.39'/%3e%3cg fill='%23c8b100' stroke-width='.26'%3e%3cpath d='m282.88 232.71-.29.02c-.01.03-.14.24-.26.35-.26.25-.65.28-.86.07a.486.486 0 0 1-.14-.41c-.17.09-.35.09-.51-.01-.26-.15-.32-.5-.14-.79.03-.06.06-.14.11-.18l-.02-.32-.35.08-.1.19c-.22.25-.54.31-.7.17a.526.526 0 0 1-.13-.27c0 .01-.09.09-.17.11-.54.13-.75-1.05-.77-1.35l-.17.25s.16.7.08 1.3c-.08.59-.29 1.19-.29 1.19.74.19 1.86.8 2.97 1.65s1.98 1.78 2.34 2.42c0 0 .58-.32 1.18-.51s1.36-.2 1.36-.2l.22-.21c-.32.05-1.58.1-1.56-.43 0-.08.07-.18.08-.18a.697.697 0 0 1-.3-.06c-.18-.13-.18-.43.02-.69l.18-.13.01-.34-.34.05c-.03.04-.11.09-.15.13-.27.23-.65.25-.86.03a.416.416 0 0 1-.11-.46.58.58 0 0 1-.45-.05c-.26-.15-.31-.52-.11-.8.09-.14.28-.31.31-.32l-.07-.3h-.01z'/%3e%3cpath d='M280.63 233.4c.05-.07.15-.06.23 0s.1.16.06.21c-.05.06-.15.06-.24-.01-.07-.05-.1-.15-.05-.2zm.95.79-.33-.25c-.06-.04-.07-.12-.04-.16.04-.04.12-.04.18 0l.33.26.33.25c.05.04.08.12.04.16s-.12.04-.18 0l-.33-.26m-1.74-1.19-.26-.15c-.07-.04-.1-.12-.07-.17s.11-.06.17-.02l.26.16.26.15c.06.03.09.11.07.16-.03.05-.11.06-.17.02l-.26-.15m-1.04-.71c.05-.06.16-.06.24 0 .08.07.1.16.05.22-.05.05-.15.05-.23-.01s-.1-.15-.06-.21zm3.83 2.63c.05-.05.03-.14-.05-.21-.08-.06-.19-.06-.24 0-.04.05-.02.15.06.21s.18.06.23 0zm.57.66.22.21c.05.05.13.07.18.03.04-.04.04-.11-.01-.16l-.21-.21-.22-.21c-.05-.05-.14-.07-.18-.03-.05.03-.04.11.01.16l.21.21m.95.81c.05-.06.03-.15-.05-.21-.08-.07-.18-.07-.23-.01s-.03.15.05.22c.08.05.18.06.23 0z' fill='%23000' stroke-width='.05'/%3e%3cpath d='m281.4 230.36-.59.01-.11.87.06.14.15-.01.76-.51-.27-.5'/%3e%3cpath d='m281.4 230.36-.59.01-.11.87.06.14.15-.01.76-.51-.27-.5'/%3e%3cpath d='m279.8 230.84-.02.54.92.12.15-.07-.02-.15-.53-.71-.5.27'/%3e%3cpath d='m281.7 231.92-.49.27-.54-.71-.01-.15.14-.06.93.11-.03.54'/%3e%3cpath d='M280.51 231.25c.08-.13.26-.17.39-.09.14.07.18.24.1.37s-.26.17-.39.09a.26.26 0 0 1-.1-.37zm-2.15-.9c-.02.01-.13-.46-.26-.71-.08-.19-.39-.43-.39-.43.03-.05.42-.19.87.09.38.31-.03.87-.03.87s-.09.14-.19.18z'/%3e%3cpath d='m279.39 230.66-.42.37-.68-.6.06-.08.03-.15.92-.07.09.53'/%3e%3cpath d='M278.24 230.29c.05-.15.18-.23.28-.2.11.04.15.18.1.33s-.18.23-.29.2c-.11-.04-.15-.18-.09-.33zm5.43 1.48-.59-.06-.25.85.05.14.15.01.83-.41-.19-.53'/%3e%3cpath d='m282.01 232.03-.1.54.9.23.15-.04.01-.14-.43-.79-.53.2'/%3e%3cpath d='m283.73 233.36-.53.2-.42-.78.01-.15.15-.03.89.23-.1.53'/%3e%3cpath d='M282.65 232.54c.1-.12.28-.13.4-.04.13.09.15.26.05.38s-.28.13-.41.04a.26.26 0 0 1-.04-.38zm2.99 1.07.11.55-.87.3-.16-.04-.01-.14.36-.81.57.14'/%3e%3cpath d='m285.49 235.2-.56.13-.31-.83.04-.15.15-.02.85.35-.17.52'/%3e%3cpath d='m283.97 233.66-.18.52.85.34.16-.02.03-.14-.3-.83-.56.13'/%3e%3cpath d='M284.91 234.63c.12-.11.12-.28.02-.39a.318.318 0 0 0-.41-.02c-.11.11-.12.28-.01.39.1.11.29.12.4.02zm1.38 1.8c0 .01.5.03.79.09.2.04.52.27.52.27.06-.04.12-.42-.28-.79-.39-.28-.88.22-.88.22s-.12.12-.15.21z'/%3e%3cpath d='m285.75 235.54-.29.46.76.51.09-.08.13-.04-.12-.88-.57.03'/%3e%3cpath d='M286.37 236.53c.14-.07.21-.22.15-.31s-.22-.1-.36-.02-.2.22-.14.31c.05.09.21.1.35.02z'/%3e%3c/g%3e%3cg stroke-width='.61'%3e%3cellipse fill='%23ad1519' cx='250.43' cy='281.01' rx='16.26' ry='18.3'/%3e%3cellipse fill='%23005bbf' cx='250.44' cy='280.97' rx='11.44' ry='13.42'/%3e%3cg id='f' fill='%23c8b100' stroke-width='.34'%3e%3cpath stroke-linejoin='round' d='M245.03 271.74s-1.35 1.48-1.35 2.86c0 1.39.57 2.54.57 2.54-.21-.55-.76-.94-1.41-.94-.83 0-1.5.63-1.5 1.42 0 .22.14.58.24.77l.49.99c.16-.37.54-.57.98-.57.59 0 1.08.45 1.08 1.01 0 .09-.01.17-.04.25l-1.22.01v1.03h1.09l-.81 1.61 1.07-.42.81.91.84-.91 1.07.42-.8-1.61h1.08v-1.03l-1.22-.01c-.02-.08-.02-.16-.02-.25 0-.56.47-1.01 1.06-1.01.44 0 .82.2.98.57l.49-.99c.1-.19.24-.55.24-.77 0-.79-.67-1.42-1.49-1.42-.66 0-1.21.39-1.41.94 0 0 .57-1.15.57-2.54 0-1.38-1.39-2.86-1.39-2.86z'/%3e%3cpath d='M242.87 281.11h4.36v-1.03h-4.36v1.03z'/%3e%3c/g%3e%3cuse xlink:href='%23f' x='10.63'/%3e%3cuse xlink:href='%23f' x='5.31' y='9.14'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e\"},4178:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 720 360'%3e%3cpath fill='%23da121a' d='M0 0h720v360H0z'/%3e%3cpath fill='%23fcdd09' d='M0 0h720v240H0z'/%3e%3cpath fill='%23078930' d='M0 0h720v120H0z'/%3e%3cg transform='translate(360 180)'%3e%3ccircle fill='%230f47af' r='120'/%3e%3cg id='a'%3e%3cpath fill='%23fcdd09' d='m0-96-4.206 12.944 17.348 53.39h-23.13l-2.599 8h74.163l11.011-8H21.553z'/%3e%3cpath stroke='%23fcdd09' stroke-width='4' d='m25.863-35.597 30.564-42.069'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='rotate(72)'/%3e%3cuse xlink:href='%23a' transform='rotate(144)'/%3e%3cuse xlink:href='%23a' transform='rotate(216)'/%3e%3cuse xlink:href='%23a' transform='rotate(288)'/%3e%3c/g%3e%3c/svg%3e\"},4617:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 810 540'%3e%3cdefs%3e%3cg id='d'%3e%3cg id='b'%3e%3cpath id='a' d='M0 0v1h.5z' transform='rotate(18 3.157 -.5)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cg id='c'%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='scale(-1 1)'/%3e%3c/g%3e%3c/defs%3e%3cpath fill='%23039' d='M0 0h810v540H0z'/%3e%3cg fill='%23fc0' transform='matrix(30 0 0 30 405 270)'%3e%3cuse xlink:href='%23d' y='-6'/%3e%3cuse xlink:href='%23d' y='6'/%3e%3cg id='e'%3e%3cuse xlink:href='%23d' x='-6'/%3e%3cuse xlink:href='%23d' transform='rotate(-144 -2.344 -2.11)'/%3e%3cuse xlink:href='%23d' transform='rotate(144 -2.11 -2.344)'/%3e%3cuse xlink:href='%23d' transform='rotate(72 -4.663 -2.076)'/%3e%3cuse xlink:href='%23d' transform='rotate(72 -5.076 .534)'/%3e%3c/g%3e%3cuse xlink:href='%23e' transform='scale(-1 1)'/%3e%3c/g%3e%3c/svg%3e\"},9314:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1800 1100'%3e%3cpath fill='%23fff' d='M0 0h1800v1100H0z'/%3e%3cpath fill='%23003580' d='M0 400h1800v300H0z'/%3e%3cpath fill='%23003580' d='M500 0h300v1100H500z'/%3e%3c/svg%3e\"},5916:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3e%3cclipPath id='a'%3e%3cpath d='M0 0v150h700v150H600zm0 300v100h300V0h300z'/%3e%3c/clipPath%3e%3cpath fill='%23012169' d='M0 0h1200v600H0z'/%3e%3cpath d='m0 0 600 300M0 300 600 0' stroke='%23fff' stroke-width='60'/%3e%3cpath d='m0 0 600 300M0 300 600 0' stroke='%23c8102e' stroke-width='40' clip-path='url(%23a)'/%3e%3cpath d='M300 0v400M0 150h700' stroke='%23fff' stroke-width='100'/%3e%3cpath d='M300 0v400M0 150h700' stroke='%23c8102e' stroke-width='60'/%3e%3cpath d='M0 300h600V0h600v600H0z' fill='%2369b3e7'/%3e%3cg stroke-miterlimit='4.8'%3e%3cpath fill='%23fff' d='M778.8 143.94v205.09c0 67.08 121.2 106.91 121.2 106.91s121.2-39.833 121.2-106.91V143.94z'/%3e%3cpath fill='%23c8102e' d='M883.2 216v92.344H778.8v33.6h104.4v107.6l16.8 6.396 16.8-6.396v-107.6h104.4v-33.6H916.8V216z'/%3e%3cpath fill='%23c8102e' d='M778.8 143.94h242.4v79.2H778.8z'/%3e%3cg stroke-miterlimit='3'%3e%3cg fill='%23fff' stroke='%23000' stroke-width='.805'%3e%3cellipse stroke-width='.803' cx='798.23' cy='192.212' rx='13.623' ry='10.962'/%3e%3cellipse cx='798.23' cy='186.525' rx='12.114' ry='6.123'/%3e%3cellipse cx='798.23' cy='198.769' rx='12.114' ry='6.123'/%3e%3cellipse cx='798.23' cy='192.213' rx='12.114' ry='6.123'/%3e%3c/g%3e%3cpath fill='%23fedd00' stroke='%23000' stroke-width='1.2' d='m1015.2 207.43-1.985-5.476s-5.433-2.216-5.847-5.102c-.968-7.694-3.714-10.578-7.83-11.678-4.125-1.1-6.868.689-6.868.689-1.24 1.787-7.426 1.787-10.859 1.921-3.434.14-3.493-1.492-3.493-1.492-2.668.02-3.79-1.941-3.79-1.941-1.746-3.487-3.045-4.792-3.908-5.233 4.457.066 7.813-1.991 12.844-7.27 5.493-5.772 9.415-3.54 9.415-3.54-2.666 5.39.887 4.913.887 4.913 7.28-3.706.96-13.051-1.237-12.638-2.198.41-2.825-1.07-2.825-1.07.067 1.678-2.44 2.345-2.44 2.345 1.88-10.674-4.489-13.504-4.489-13.504-.964.962-1.516 2.884-1.516 2.884-1.783 6.458-7.69 5.497-14.29 2.335-6.592-3.158-24.179 3.3-29.672 5.497-5.5 2.199-15.528 5.634-24.596.55-9.064-5.087-11.269-4.124-14.839-3.16-3.574.96-9.888 2.475-12.222 1.235-2.338-1.236-5.002-1.313-5.002-1.313.636-.355-.358-1.846-.358-1.846-2.747-3.708.358-5.981.358-5.981s-5.115 1.44-3.08 10.169l.934 1.309s.685 2.746 2.2 3.571l-.054.601s1.293-.6 1.7 1.184c.418 1.785 2.34.138 3.164-1.372 0 0-1.376 7.97 8.52 9.892 0 0-1.107-1.238-.693-2.062.41-.824-1.234-1.517-1.095-2.75.136-1.232-2.47-1.782-.414-2.748 2.058-.962 3.026-2.886 7.42-.275s7.834 2.064 7.834 2.064-2.681-5.502-1.204-5.499c1.477.002 8.123 8.23 11.394 7.823 3.272-.403 9.593-4.113 12.754-2.74 0 0 .271-1.648 12.36-3.71 12.092-2.061 27.006-8.087 32.599-2.807 0 0 .654 4.182 2.987 5.283 0 0-.418 8.654-15.385 3.842l-5.43-1.428s-.834-2.629-29.304 4.693c0 0-1.675.585-2.775 1.412-1.102.82-2.614-.414-8.247 1.645-5.628 2.065-26.654 8.935-39.564 6.46l-.017.034c-2.844-.85-5.508-.41-5.616-.859-.14-.55 1.513.14 1.513.14-.96-1.102-1.374-1.191-1.374-1.191-10.855-1.19-8.936-6.094-8.936-6.094l.553 1.512c1.787-2.334-.692-7.83-.692-7.83l-.105.018a5.679 5.679 0 0 0-.1-.5l.897-.62c5.222-4.397 11.269-5.222 11.269-5.222-3.575-4.394-11.134-2.058-11.134-2.058.14-5.358-2.058-11.542-2.058-11.542-7.423.825-11.678 7.006-11.678 7.006-.275-5.494-7.284-8.652-7.284-8.652 2.608 3.158.964 10.714.964 10.714l.274.138c-.434-.011-.688 0-.688 0l-.156 1.62-.257-.108s-2.608.96-5.63 7.83c0 0-.305 1.623-1.474 3.087-.01-.19.01-.36-.013-.559 0 0-3.376 4.423-11.176 0 0 0-10.598-6.288-14.323-6.055-3.725.232-6.174 1.979-5.937 3.026 0 0-8.504-.7-11.413 4.19 0 0-6.403 2.329-.93 7.57 0 0 .733 2.277 2.326 3.497 0 0-.226-4.784.933-3.378 0 0 .302.472.874.802.152.67.666 2.534 1.804 3.483l.82-.26c.124-1.193.382-2.7.647-3.334.125.017.225.032.27.035-.036.035-.07.055-.104.087l1.513 2.329 1.745-.931c.817-.12 1.863.7 1.863.7l1.98-1.632c-.012-.018-.024-.021-.036-.04 1.95.326 2.483-3.454 2.483-3.454 1.752.46 3.39-.055 4.785-.9.85 3.134 7.791 6.496 7.791 6.496l.299-.026c-.588.376-.937.658-.937.658 3.158 2.202 9.067 1.651 9.067 1.651-2.47.964-2.125 5.537-2.125 5.537-1.444.593-1.585 2.018-1.585 2.018 4.81 1.92 8.095.33 8.095.33.264 1.565-.125 1.732-.125 1.732-1.922 4.12-2.747 8.105-2.747 8.105.042.018.091.027.132.042-.059.108-.132.212-.177.324 0 0-8.384 2.91-12.11 6.986 0 0-.35-1.166-1.399-1.166-1.047 0-4.308-2.675-5.822-3.143-1.51-.463-3.725.468-4.308-.23-.527-.635-.29-5.405-1.298-6.174l.019.004-1.049-2.91c-.698 1.512-3.608 1.161-3.608 1.161-.116.07-.563.396-1.197.869-.58.031-1.249-.17-1.249-.17-.299.062-.594.9-.811 1.716-.117.086-.235.176-.353.266v-.817c-.58.465-1.745-.233-2.213-.233-.228 0-.51.667-.739 1.352-1.184.22-2.754.279-2.754.279-.466.233-.119 3.842-.119 3.842-3.374 1.865-1.746 4.657-1.746 4.657 1.864 9.083 17.35 5.007 18.515 6.174 1.162 1.166 3.843 1.395 5.24 1.395 1.395 0 3.14 3.378 5.122 3.727 1.981.35 0-2.677 9.183-4.87 9.178-2.194 12.239-5.959 12.239-5.959 2.875-.554 3.675-4.049 3.89-5.46.028.65.104 1.37.209 2.19.414 3.161-1.77 4.312-1.77 4.312l7.955-2.388c3.157-.825 2.746-3.575 2.746-3.575 3.022 8.657 8.52 9.206 8.52 9.206 1.098-3.298.963-4.26.963-4.26l2.472-.135c.1-1.864-1.545-3.226-2.497-3.86l3.87 2.348 1.508-.275c0 1.374 2.062 2.608 2.062 2.608l.278-1.782c1.787 2.335 5.083 1.51 5.083 1.51a11.039 11.039 0 0 0-.291-1.284c7.04 4.346 18.286-1.189 18.286-1.189 3.021.687 3.434-1.1 3.434-1.1 3.434.41 4.231-1.937 4.231-1.937 8.083-.7 13.772-6.446 13.772-6.446 3.98-.275 4.11-3.122 4.11-3.122s3.991.788 7.84-4.022c8.928-12.775 22.28-6.124 22.28-6.124l-7.72.489c-20.194-.136-11.822 13.598-11.822 13.598l1.245-.132c1.923.411 8.515 5.633 6.085 9.522-.039.068-.091.13-.136.193-4.117 5.636-11.742.26-13.915-4.495-2.2-4.807-6.599-3.707-6.599-3.707s-11.4 1.924-6.73 10.991l.17.005c.086 2.213 1.475 4.734 5.542 7.24 2.284 3.231 9.794 3.568 15.31 2.373 2.566-.56 16.112-6.384 16.112-6.384.993-2.95 4.36-2.27 7.38-6.529s-4.26-5.772-5.907-8.105c-1.651-2.339.414-1.925.414-1.925 6.592 3.573 7.141-7.832 7.141-7.832.69 6.593 6.458 8.38 6.458 8.38 3.574-3.568.967-10.852.967-10.852 8.519 15.25 13.678 12.822 13.678 12.822-4.587-2.84-2.278-6.64-2.278-6.64 4.117 16.211 21.022 2.062 21.022 2.062-.824 2.332.004 3.705 1.513 5.217 1.51 1.512 3.297 2.2 2.476 4.948-.827 2.747-8.653 2.2-8.653 2.2s-7.698-.411-7.007 6.046c.403 1.509 5.49 2.058 7.414 1.648 0 0-.794.173 2.05.553.953.122 2.104.143 3.275.104 3.279-.1 6.77-.657 6.77-.657 4.391-.959 3.707-2.476 3.707-2.476 6.726-1.24 7.418-5.775 7.418-5.775z'/%3e%3cpath d='M791.954 179.295c.005-.007.361-.848 1.04-.95.522-.077 1.157.31 1.828 1.125l.367-.276c-.015-.027-1.813-2.646-1.097-4.495.32-.824 1.114-1.39 2.357-1.67l-.1-.452c-1.403.322-2.306.98-2.686 1.958a3.132 3.132 0 0 0-.202 1.136c0 .904.318 1.82.645 2.522-.407-.255-.803-.36-1.184-.303-.69.104-1.026.601-1.208.925zM1004 215.28c-4.59.728-11.328 1.132-11.864-.257-.094-.247-.11-1.238 3.648-3.685l-.438-.673c-3.136 2.042-4.398 3.518-3.96 4.646.962 2.5 10.799 1.072 12.763.759zm-87.8 2.65c-1.046-1.6-.576-3.793 1.398-6.523l-.65-.47c-2.194 3.019-2.672 5.524-1.422 7.435z'/%3e%3cpath d='M910 211.02c.1 2.768 2.056 5.339 5.8 7.632l.42-.686c-3.504-2.144-5.322-4.49-5.417-6.974-.138-3.812 3.89-6.752 3.929-6.783l-.47-.654c-.18.128-4.418 3.216-4.262 7.465zm78.29 1.03c-1.259 1.859-.838 4.11-.82 4.205l.788-.155c-.007-.022-.372-2.026.703-3.604.645-.949 1.686-1.564 3.097-1.832l-.145-.79c-1.635.31-2.85 1.04-3.623 2.176zm-179.37-35.16-.248-.062-.034.255c-.007.025-.358 2.464-1.464 3.127-.31.185-.643.206-1.028.065l-1.878-1.142c-.375-.33-.696-.573-1.238-.414-.108-.14-.538-.724-.538-1.662 0-.105.007-.216.022-.329.134-1.1.902-2.161 2.29-3.151l-.264-.376c-1.505 1.075-2.338 2.243-2.484 3.48a3.351 3.351 0 0 0 .697 2.448l.112.129.152-.07c.418-.185.539-.076.946.284l2.027 1.233c.514.19.99.155 1.422-.102 1.144-.685 1.545-2.681 1.639-3.235 4.877 1.048 8.802-4.88 8.972-5.135l-.39-.252c-.035.062-4.04 6.134-8.713 4.909z'/%3e%3cpath d='M797.23 175.98c-.244.988-.077 1.957.487 2.882.539.878 1.07 1.344 1.623 1.418.674.093 1.213-.407 1.688-.845.346-.324.674-.625.944-.605l.42.29.36-.288-.747-.46c-.472-.035-.868.332-1.29.726-.421.386-.853.793-1.314.73-.4-.056-.832-.463-1.29-1.207-.497-.815-.647-1.669-.436-2.53.526-2.176 3.127-3.775 3.155-3.79l-.236-.393c-.117.068-2.792 1.71-3.364 4.072zm-6.71 31.06c.233-.841.88-1.558 1.919-2.135-.205.02 1.019 1.015 2.069.904l.681-.369c.279.24 2.097 1.895 2.097 3.992 0 .441-.08.894-.279 1.353l.426.179c1.33-3.15-2.015-5.944-2.046-5.974l-.122-.096-.207.134-.596.324c-.86.09-1.979-.819-1.987-.827-1.411.615-2.133 1.43-2.4 2.399zm15.53-8.04c-1.004.085-3.802.62-4.715 2.071-.33.527-.379 1.107-.139 1.733l.367.977c.871 2.343 1.776 4.765 2.763 5.312l.223-.4c-.838-.465-1.75-2.913-2.556-5.072l-.365-.977c-.187-.494-.156-.928.095-1.328.75-1.19 3.265-1.765 4.365-1.856.641-.052.85 2.313.977 3.727l.457-.042c-.183-2.083-.376-4.236-1.472-4.145z'/%3e%3cpath d='M798.38 201.3c-.588.526-.47 1.318-.462 1.352.005.218.266 6.068 3.044 7.277l.183-.421c-2.514-1.096-2.767-6.845-2.771-6.901-.001-.035-.083-.616.317-.966.421-.375 1.259-.403 2.42-.084l.123-.442c-1.34-.37-2.3-.308-2.854.185z'/%3e%3cpath d='M796.18 201.78c-1.229.856-1.178 3.298-1.177 3.4l.46-.008c0-.026-.046-2.303.98-3.015.383-.264.887-.275 1.501-.027l.17-.425c-.765-.312-1.418-.287-1.934.075zm66.15-32.29c.022.038 1.31 2.945 1.31 5.305 0 .419-.198.717-.291 1.081-.052-.135-.5-1.366-.5-1.366l-.39.987c-.017.055-.525 1.384.382 2.883 1.2 1.977 4.187 3.243 8.884 3.758h-.002c0 .004.059.055.066.065-.195.026-.341.08-.385.122l-.189.16.025.4c.122.488.678.512 1.784.554.187.01.49.055.705.066.275.077.557.153.557.153l-.094-.108c1.07.074 2.274.338 3.581.826-.289.076-.995.252-.995.252l1.162.458c.088.035 8.648 3.474 12.191 6.303-1.006.872-5.3 4.08-12.736 2.247l-1.246-.306.845.965c.052.058 4.896 5.614 5.9 8.983-1.687.017-8.185-.042-10.455-1.971l-.588.535c.03.05 3.115 4.576 3.804 8.105-.884.116-3 .203-4.252-1.433l-.577-.751-.313 2.037c-.605-.456-1.367-1.137-1.367-1.867v-.48l-1.833.333-3.765-2.283a7.975 7.975 0 0 0-.605-.365c-.004-.004-.035-.022-.035-.022l-.027-.016-.39.706s.448.267.577.348c.806.525 2.186 1.67 2.325 3.188-.595.035-2.448.136-2.448.136l.046.426v.067c0 .252-.08 1.304-.848 3.679-1.158-.276-5.37-1.744-7.858-8.874l-.775.192c.004.02.013.114.013.265 0 .65-.23 2.279-2.465 2.86-.013.004-4.15 1.248-6.452 1.937.43-.616.824-1.46.824-2.685 0-.26-.017-.54-.051-.837-.14-1.036-.224-1.899-.224-2.619 0-1.501.369-2.395 1.406-3.031l-.362-.716c-.097.038-9.618 3.82-14.339 2.25.216-.922 1.016-4.162 2.628-7.616l-.208.198c.31-.132.625-.615.364-2.166l-.086-.528-.484.233c-.03.015-3.052 1.363-7.417-.236.089-.358.32-1.001 1.235-1.38l.268-.108-.026-.292c0-.01-.01-.213-.01-.531 0-1.179.184-3.94 1.88-4.602l-.18-.777c-.055.007-5.161.415-8.257-1.307.812-.56 2.519-1.592 4.505-1.878l.318-.045.022-.318c.004-.016.011-.11.011-.26 0-.403-.156-1.219-.511-2.04 1.178.328 2.59.625 3.091.249l.17-.128-.146-3.099-.803.039.123 2.562c-.504.027-1.788-.23-3.035-.626l-1.234-.392.795 1.024c.645.829.727 1.858.737 2.331-2.79.519-4.976 2.251-5.07 2.33l-.41.337.435.303c2.4 1.672 6.153 1.817 8.08 1.775-1.136 1.28-1.328 3.421-1.328 4.492 0 .22.007.278.011.386-1.363.736-1.568 2.118-1.577 2.182l-.03.3.282.116c4.125 1.644 6.941.85 7.897.497.007.128.035.302.035.393 0 .378-.07.494-.07.494-2.026 4.248-2.875 8.286-2.885 8.324l-.066.334.313.124c3.828 1.53 10.705-.559 13.75-1.634-.399.689-.632 1.464-.632 2.429 0 .809.098 1.718.233 2.731.035.257.05.494.05.724 0 2.28-1.541 3.142-1.615 3.18l.306.741 7.955-2.389c1.84-.478 2.531-1.565 2.824-2.489 3.139 7.444 8.066 8.115 8.285 8.14l.32.027.1-.302c.766-2.287.943-3.449.978-4.01a439.55 439.55 0 0 0 2.462-.131l.02-.361c.004-.063.004-.123.004-.182 0-.658-.205-1.24-.49-1.764.498.3 1.377.834 1.377.834l1.318-.24c.344 1.33 1.923 2.374 2.127 2.499l.512.307s.188-1.212.267-1.74c1.965 1.758 4.753 1.235 4.885 1.202l.352-.09-.052-.357c-.4-2.688-2.204-5.886-3.265-7.596 3.491 1.587 9.85 1.471 10.163 1.461l.474-.016-.093-.465c-.564-2.825-4.094-7.272-5.57-9.04 8.201 1.541 12.606-2.714 12.795-2.907l.288-.306-.317-.278c-2.757-2.402-9.112-5.19-11.665-6.257l.894-.226-.883-.494c-2.135-1.2-4.398-1.349-5.928-1.415l-.007-.012c-.97-1.111-1.464-1.289-1.589-1.316-5.546-.612-7.579-2.166-8.317-3.366-.062-.099-.031-.166-.077-.262.12-.16.244-.318.244-.318.535-.697.726-1.63.726-2.617 0-2.547-1.294-5.457-1.367-5.625l-.738.334z'/%3e%3cpath d='M836.8 167.86c-.017.08-.608 3.119-3.196 4.543-1.947 1.07-4.52.982-7.639-.266l-.351-.14.037.376c.008.078.213 1.864 1.897 3.172 1.402 1.092 3.408 1.475 5.922 1.2-.841.998-3.544 4.452-3.544 7.802 0 .177.011.354.028.528.344.247 4.58 1.395 6.544-1.116.07 1.077.379 4.522 1.724 5.87.737.733.91 1.804.91 2.66 0 .771-.146 1.367-.146 1.379l-.152.613.511-.372c.163-.119 4.057-2.971 5.302-6.707-.004.01.623-.937 1.825-1.325-.025.163-.046.33-.046.563 0 1.444.633 4.064 4.836 5.671l.345.132-.031-.367a7.135 7.135 0 0 1-.028-.726c0-1.055.146-2.993 1.15-3.997.662-.66.86-1.404.86-2.049 0-.507-.112-.918-.226-1.22.849.215 2.855.862 3.672 2.39 1.186 2.223 5.338.454 5.516.38l-.143-.437c-.017.004-1.746.391-2.837-.358-.48-.33-.768-.837-.869-1.51l-.192-2.31c-.042-1.047-.187-1.712-.713-2.271.55-.05 1.652-.031 2.118 1 .734 1.617 3.251 1.774 3.356 1.783l.861.045-.723-.468c-.024-.014-2.198-1.456-1.822-3.336l.313-1.376c.595-2.48 1.585-6.632.779-9.181l-.438.14c.2.636.282 1.39.282 2.196 0 2.26-.64 4.944-1.072 6.738l-.316 1.395a2.608 2.608 0 0 0-.052.538c0 1.217.79 2.146 1.405 2.705-.74-.16-1.766-.512-2.151-1.37-.605-1.326-2.229-1.387-3.004-1.23l-.542.109.462.307c.73.487.75 1.054.802 2.293l.195 2.358c.115.804.473 1.419 1.06 1.824.515.35 1.117.4 1.666.44-1.233.321-2.924.522-3.531-.62-1.145-2.132-4.292-2.702-4.424-2.727l-.48-.083.24.421c.026.046.358.652.358 1.422 0 .546-.167 1.171-.733 1.735-1.116 1.126-1.287 3.167-1.287 4.296 0 .221.011.252.015.387-3.595-1.511-4.231-3.749-4.231-5.016 0-.539.104-.898.118-.945l.105-.354-.365.062c-1.746.288-2.472 1.71-2.503 1.77-.999 2.991-3.71 5.359-4.691 6.148a6.88 6.88 0 0 0 .066-.895c0-.935-.202-2.126-1.05-2.976-1.43-1.429-1.624-5.973-1.624-6.019l-.03-.82-.4.712c-1.582 2.833-6.2 1.472-6.245 1.46-.195-3.58 3.866-8.16 3.908-8.206l.425-.472-.626.092c-2.652.384-4.712.03-6.123-1.06a4.63 4.63 0 0 1-1.644-2.499c3.076 1.146 5.656 1.21 7.642.113 2.774-1.534 3.383-4.675 3.407-4.807 2.913-6.606 5.458-7.649 5.486-7.656l-.16-.431c-.115.04-2.74 1.073-5.768 7.95z'/%3e%3cpath d='m843.45 158.07-.194.007-2.364 3.24.702.07c12.829 1.248 19.613 8.988 19.679 9.068l.296.344 2.326-2.527-.17-.26c-6.506-10.244-20.136-9.947-20.275-9.942zm.22.804c1.585.004 13.27.365 19.189 9.331-.29.313-.935 1.019-1.28 1.397-1.387-1.438-7.962-7.582-19.237-8.906a631.23 631.23 0 0 1 1.328-1.822z'/%3e%3cpath d='M841.6 164.84c-1.096 1.495-2.114 3.707-2.114 4.742 0 .198.038.354.122.453.007.01.046.013.059.029-1.336 1.197-2.131 3.196-2.131 5.456 0 1.243.22 2.538.681 3.773l.257.695c1.259 3.424 2.344 6.384 7.788 4.641 5.244-1.675 5.45-2.011 6.77-4.189l.345-.564c.72-1.17 1.506-1.404 2.343-1.652.999-.3 2.034-.608 2.942-2.4l.883-1.324c.953-1.313 2.142-2.94 2.285-5.023l-.46-.031c-.132 1.95-1.28 3.518-2.197 4.78l-.922 1.388c-.82 1.616-1.715 1.884-2.664 2.167-.883.263-1.79.534-2.604 1.853l-.348.566c-1.27 2.096-1.431 2.366-6.512 3.994-5.027 1.606-5.946-.9-7.218-4.364l-.257-.702c-1.433-3.818-.313-7.669 1.55-9.049l.64-.475-.887.1c-.01-.038-.02-.071-.02-.131 0-.624.681-2.611 2.037-4.464 1.158-1.578 3.89-3.142 3.92-3.157l-.23-.399c-.115.069-2.845 1.63-4.058 3.287z'/%3e%3cpath d='M839.16 178.65c.9.624 2.166.58 3.692 0 .007.544.129 1.7 1.078 2.538 1.116.988 2.965 1.178 5.5.574l-.108-.446c-2.375.567-4.089.407-5.087-.469-1.072-.945-.922-2.45-.918-2.463l.042-.394-.365.155c-1.537.662-2.74.702-3.575.125-1.495-1.04-1.383-3.755-1.38-3.786l-.46-.022c-.001.124-.127 3.002 1.581 4.188z'/%3e%3cpath d='M842.07 174.99c-.656.156-.827.706-.827 1.13 0 .102.011.197.024.279.115 1.182 1.398 1.969 2.563 2.306 1.133.328 2.528.35 3.077-.356.22-.282.38-.79-.1-1.61-1.75-2.977-4.581-1.811-4.737-1.749zm1.888 3.271c-1.02-.291-2.142-.953-2.232-1.933-.022-.094-.132-.752.448-.89l.046-.015c.104-.047 2.611-1.136 4.19 1.55.281.48.327.845.132 1.093-.338.44-1.454.526-2.584.195zm-1.934-3.254c.004-.004.046-.018.046-.018l-.046.018zm1.626 5.973c-.295 2.514-.115 2.574.066 2.63l.16.05.18-.212 1.456-1.92-1.828-.866-.034.318zm.421.376.737.348c-.198.253-.566.744-.845 1.11.007-.378.053-.912.108-1.458zm-4.211-2.396-.097 2.376 1.995-2.413-1.887-.209-.011.246zm.449.266.552.06c-.195.233-.324.392-.585.706.02-.37.027-.575.033-.766z'/%3e%3cpath d='M838.53 178.2c.017.031 1.484 2.9 1.745 3.947.167.665 1.015 1.422 2.027 1.797 1.008.38 1.953.318 2.659-.174l1.325-1.101c.441-.425.588-.544.945-.483l.077-.453c-.601-.101-.894.179-1.34.603l-1.269 1.058c-.782.546-1.739.313-2.239.12-.946-.35-1.63-1.028-1.742-1.48-.275-1.094-1.721-3.92-1.78-4.04l-.408.206zm1.91-8.6c-1.62.748-2.305 2.713-2.333 2.796l.435.151c.007-.019.654-1.87 2.092-2.53.702-.322 1.488-.311 2.344.025l.17-.425c-.973-.393-1.884-.396-2.708-.017zm10.89 5.16c.128.096 3.188 2.414 1.43 5.243l.39.243c1.984-3.188-1.514-5.83-1.545-5.858l-.275.372zm-9.2.45s-.476 1.73 1.957 2.34c0 0-2.288-.02-2.433-.61-.154-.591.013-1.9.476-1.73zm7.44 2.07c0 .15-.122.274-.271.274a.275.275 0 0 1-.271-.274c0-.148.124-.271.27-.271.15 0 .272.123.272.271zm.27 1.08c0 .15-.122.275-.271.275s-.268-.125-.268-.275c0-.146.119-.27.268-.27s.271.125.271.27z'/%3e%3ccircle cx='848.01' cy='177.825' r='.27'/%3e%3cpath d='M848.75 179.45a.27.27 0 0 1-.539 0c0-.151.123-.275.268-.275.149 0 .271.123.271.275zm-7.1-7.32a.273.273 0 0 1-.546 0c0-.146.125-.271.271-.271.154 0 .275.125.275.271z'/%3e%3ccircle cx='841.65' cy='173.22' r='.27'/%3e%3ccircle cx='840.09' cy='172.68' r='.27'/%3e%3cpath d='M840.83 174.3a.276.276 0 0 1-.275.271.273.273 0 0 1 0-.546.278.278 0 0 1 .275.275zm4.74-9.55s3.518 2.165.132 6.228c0 0 1.666-1.237 1.836-3.362.178-2.123-1.207-3.816-1.968-2.866zm13.5 5.84c-1.133.582-2.764-.496-3.58-1.514-.814-1.02-2.5-1.28-3.55.58-1.048 1.864-2.56 2.562-2.56 2.562s1.477-.872 2.998-2.503c1.512-1.627 2.385-.32 3.87.466s1.717.959 2.763.552l.059-.143z'/%3e%3cpath d='M858.78 170.86c-.463.348-1.312.64-2.212-.09-.9-.727-1.658-1.715-2.792-1.134-1.138.584-3.293 2.212-3.293 2.212s3.495-2.417 4.165-1.892c.668.526 2.243 1.805 3.202 1.43.961-.383.93-.526.93-.526z'/%3e%3cpath d='M856.1 172.34c-1.105-.844-2.212.989-3.143.76-.931-.237-1.69-1.779-1.69-1.779s.877 1.631 2.097 1.252c1.224-.377 2.069-1.135 2.824-.555.757.585-.088.322-.088.322z'/%3e%3cpath d='M854.37 172.57c-2.183.226-2.399-1.813-2.399-1.834 0 0 .689 1.78 2.619 1.457l-.22.377z'/%3e%3cpath d='M854.3 171.18c.143.552.112.803-.473.803-.588 0-.987-.196-.987-.766 0-.571 1.374-.392 1.46-.037zm-7.84-3.03c0 .38-.313.685-.7.685s-.462-.26-.462-.636.076-.73.462-.73.7.307.7.681z'/%3e%3cpath d='M844.05 165.71s3.74.04 1.888 4.72c0 0 1.425-2.33.531-4.006-.897-1.674-2.305-1.252-2.305-1.252s-.343.317-.114.538z'/%3e%3cpath d='M843.94 167.58c-.01.938.616 1.907 1.856 2.876l.286-.36c-1.123-.876-1.69-1.72-1.682-2.506.007-.786.612-1.253.619-1.26l-.275-.37c-.032.026-.79.604-.804 1.62z'/%3e%3cpath d='M844.77 168.37c.16.539.577.946 1.244 1.212l.17-.425c-.527-.21-.855-.518-.972-.913-.237-.796.403-1.724.41-1.732l-.372-.267c-.036.048-.779 1.12-.48 2.125zm5.13 2.6s.696 1.512-.32 3.143c-1.02 1.63-.992 1.544-.992 1.544s1.224-2.241.759-3.175c-.462-.931.553-1.512.553-1.512zm14.55 15.79c3.842.724 12.51 7.52 12.6 7.59l.498-.636c-.365-.282-8.915-6.985-12.948-7.744l-.15.79zm3.41 9.59c.257 3.41 3.967 5.528 4.127 5.614l.392-.7c-.038-.018-3.49-1.996-3.72-4.975l-.799.061zm-9.21.71c0 3.824 3.584 8.45 3.738 8.647l.632-.497c-.034-.043-3.567-4.602-3.567-8.15h-.803zm-12.15.43c.632 1.262.566 1.902.403 2.215-.19.353-.58.407-.594.41l.094.801c.295-.035.887-.24 1.2-.816.383-.7.253-1.7-.383-2.964l-.72.354z'/%3e%3cg fill='%23fff' stroke='%23000' stroke-width='.36'%3e%3cpath d='M791.86 178.63s.233 2.56 2.212 4.079c0 0-.233-2.8.35-3.96 0-.001-1.046-1.165-2.562-.119zm3.95 1.63s.468 2.326 1.865 3.376l.82-.233s.347-2.914.813-3.262c.466-.347-1.979 1.048-3.498.119z'/%3e%3cpath d='m799.31 180.14 1.513 2.33 1.745-.932-.348-2.792s-1.046-.237-2.91 1.394z'/%3e%3cpath d='m806.41 180.61-1.98 1.63s-1.046-.816-1.864-.699l.352-2.562s1.397-1.047 3.492 1.631zm-14.09 24.1s-.348-3.61.119-3.842c0 0 1.394.465 1.977-.12 0 0 .816 2.914.582 4.078-.231 1.163-1.628.701-2.678-.116zm8.97-3.73s-.115-3.028.466-3.38c0 0 2.91.351 3.608-1.16l1.049 2.91s-3.26-.351-5.123 1.63z'/%3e%3cpath stroke-width='.35' d='M798.15 201.56s.58-3.143 1.165-3.26c0 0 1.513.465 1.979-.12l-.115 3.847c0-.001.115-1.632-3.029-.467zm-3.38.47s.698-2.795 1.165-2.795c.468 0 1.632.699 2.213.233v2.096s-2.566-.58-2.911 2.91l-.467-2.444z'/%3e%3c/g%3e%3c/g%3e%3cg fill='%2300ad50' stroke='%23000' stroke-width='.78'%3e%3cpath d='M840.16 260s7.914 7.35 5.845 13.758c0 0 5.087-10.932-.375-14.137-5.47-3.203-5.657-.748-5.47.38z'/%3e%3cpath fill='%23862633' d='M830.17 267.15s-2.07 2.833.188 4.906c0 0-2.448 3.574-.56 6.595 0 0-1.51 3.203-1.133 6.596 0 0-1.321 5.275 1.505 7.73 0 0 3.018 1.508 4.34.188 0 0 2.636-3.957.938-8.109 0 0 1.885-3.39-.188-7.725 0 0 .567-2.45-1.13-5.274 0 0 1.13-1.888.186-3.394 0 0-3.767-3.961-4.146-1.513z'/%3e%3cpath d='M832.43 257.92s-9.422-18.09-16.02-18.848c-6.598-.755-6.972-7.16-6.972-7.16s.752 3.015 6.031 3.015c5.278 0 15.456 7.349 16.585 13.003 1.13 5.653 2.263 4.902 2.263 4.902l-1.887 5.088z'/%3e%3cpath d='M832.43 256.6s3.394-22.805 18.286-23.184c14.885-.38 9.989 1.13 13.567-1.321 0 0-9.985 5.281-16.208 6.032-6.217.754-11.308 12.812-11.119 15.08.187 2.259-3.391 6.596-5.088 5.09-1.697-1.509.563-1.697.563-1.697z'/%3e%3cpath d='M835.82 265.09s3.391-9.047 9.235-6.029c0 0-4.526-8.673-12.629-1.134 0 0 3.582 4.9 3.394 7.163zm-11.31-9.06s4.902 20.17-2.639 26.387c0 0 .187-10.361-4.335-16.582-4.52-6.223 4.522-13.003 6.974-9.805z'/%3e%3cpath d='M825.08 259.62s8.86 8.484 9.427 11.31c.567 2.827 2.637-8.48-1.508-11.682-4.147-3.209-8.67-3.773-8.67-3.773l.751 4.145z'/%3e%3cpath fill='%23862633' d='M808.74 281.85s.803 3.56 2.988 4.25c0 0 .113 2.645 2.068 3.448 0 0-1.037 2.184.69 3.56 0 0-.347 4.367 1.263 5.289 0 0 3.911-.23 5.285-1.38 0 0 .806-2.868-1.374-5.747 0 0 .34-2.758-1.843-4.25 0 0 .69-3.68-2.069-5.057 0 0-.457-2.99-2.184-4.482.001-.001-3.33 4.71-4.824 4.369z'/%3e%3cpath d='M813.1 277.48s-11.606-4.252-18.042 1.84c0 0 9.88 1.38 11.147 3.333 1.264 1.95 7.352-3.216 6.895-5.173z'/%3e%3cpath d='M809.54 284.72s-.918-.803-2.066-1.61c-1.15-.802-10.916-3.446-12.3 5.977 0 0-3.563-9.307 1.609-10.573 5.175-1.266 9.312 1.724 12.757 6.206m-7.64-19.26s3.577 7.726 4.9 8.108c1.318.372 2.26-.942 2.26-.942s-4.71-6.974-7.16-7.166zm-2.64-11.87s-3.018-9.988-6.596-7.35c-3.581 2.639-2.64 9.798-2.64 9.798s-7.162-7.346-3.017-13.192c4.152-5.842 12.253.566 12.253 10.744z'/%3e%3cpath fill='%23862633' d='M807.37 274.13s0 1.885 1.32 2.448c1.32.566 3.77 1.505 3.77.38 0-1.131-1.884-5.467-2.642-4.9-.755.567-2.069.56-2.448 2.072z'/%3e%3cpath d='M805.11 262.45s-.377-8.668 5.274-11.876c0 0 1.134.194 1.7-1.501 0 0-4.528 10.927-3.207 16.393l-.187.755'/%3e%3cpath d='M806.24 251.89s10.177-21.112 22.618-13.762c0 0-13.004 2.64-17.714 11.876l-4.715 6.967-.188-5.082z'/%3e%3cpath d='M800.77 259.62s-3.017-14.134-4.9-16.016c-1.887-1.886-5.091-3.959-8.862-.756 0 0 6.6-5.845 13.572-.942 6.971 4.9 5.464 12.628 5.464 12.628l-.751 9.802L800.58 260'/%3e%3cpath d='M811.7 276.39s-12.44-23.552-20.542-6.78c0 0-1.512 4.332.184 6.025 0 0-4.524-3.39-2.45-11.682 2.07-8.29 15.828-4.524 19.79 2.263 3.957 6.784 5.09 10.18 4.524 10.552-.567.38-1.507-.378-1.507-.378zm35.06 6.79s9.05-18.66 14.324-10.18c0 0 1.506 4.145-.757 5.845 0 0-3.577-4.335-6.78.942-3.205 5.275-1.885 4.902-1.885 4.902s-3.394.942-4.902-1.51z'/%3e%3cpath d='M860.32 278.84s4.9 2.635 3.209 7.913c0 0 6.591-12.625-2.452-13.758.001 0 1.698 3.96-.757 5.845zm.57-12.81s11.876 3.39 12.252 8.484c0 0 2.076-9.805-4.711-12.82 0 .001-8.107 1.322-7.541 4.336z'/%3e%3cpath d='M866.17 250.38c5.09-9.989 11.498 3.204 11.498 3.204s2.26-10.364-4.145-12.252c-6.411-1.884-10.556 22.05-10.556 22.05l-7.54 1.697s2.074-20.917 13.381-22.805l1.318.19'/%3e%3cpath d='M857.12 256.41s-7.16-14.7-12.061-16.206c-4.902-1.508 2.642-3.77 5.657-.944 3.01 2.824 8.665 6.408 8.101 13.948l-1.697 3.202zm-7.35 20.17s2.072-9.985 7.726-13.003c5.653-3.018 10.932-1.884 10.932-1.884s-6.788 1.505-7.914 4.902c-1.133 3.39-3.018 3.577-3.018 3.577l-7.726 6.408z'/%3e%3cpath fill='%23862633' d='M846.76 283.18s-3.203 6.032-2.452 6.972c0 0-3.39 4.9-2.072 7.35 0 0 3.394 2.639 4.902 1.506 0 0 3.953-5.462 2.824-8.48 0 0 2.638-3.578 1.7-5.838 0 0-3.956.187-4.902-1.51z'/%3e%3cpath d='M830.18 272.41c.212.108 2.116 1.032 3.396.605l.916-.783-.72-.357c-.47.931-2.542.163-3.234-.18l-.358.715zm-.31 5.85-.156.79c.162.03 3.986.771 5.81-.849l-.535-.599c-1.524 1.353-5.08.669-5.119.658zm-.97 6.66-.472.65c.046.035 4.49 3.2 7.334-.256l-.623-.512c-2.362 2.868-6.08.233-6.239.118zm-17.26.96.167.43c.16-.065 3.925-1.577 4.164-4.331l-.457-.042c-.215 2.472-3.838 3.929-3.874 3.943zm2.13 3.44.032.458c.147-.01 3.623-.27 4.23-2.7l-.448-.116c-.524 2.107-3.78 2.354-3.814 2.358zm.72 3.56-.025.462c.167.007 4.06.209 5.382-1.948l-.393-.243c-1.18 1.927-4.926 1.733-4.964 1.729zm29.53-2.44c.07.073 1.748 1.732 3.71 1.658.96-.034 1.811-.476 2.53-1.303l-.608-.528c-.567.653-1.224 1.001-1.948 1.029-1.606.058-3.104-1.408-3.119-1.426l-.565.57z' fill='%23000' stroke='none'/%3e%3c/g%3e%3cg fill='%23862633' stroke='%23000' stroke-width='.42'%3e%3cpath d='M961.06 304.22a1.66 1.66 0 0 0-.608.403l.608-.403zm13.86-3.47c-.134-.344-.222-.2-.4-.352-.253-.208-.4-.876-.622-1.125-.132-.153-.285-.004-.428-.042-.324-.713-.705-1.464-1.046-2.152a.597.597 0 0 0 .094-.32c0-.028-.16-.577-.17-.601-.098-.153-.252-.063-.345-.3-.105-.236-.025-.701-.063-.98-.027-.232-.118-.36-.104-.688.014-.285.167-.616.149-.866-.007-.156-.191-.507-.246-.64-.223-.538-.41-1.046-.438-1.71-.028-.602.093-.97.138-1.492.056-.625-.275-.929-.275-1.506.004-.442.19-.938.244-1.334a9.952 9.952 0 0 0 .033-1.884c-.04-.532-.19-.852-.108-1.45.022-.146.091-.264.108-.47-.004-.146-.004-.287-.004-.43v-.858c0-.278.028-.592.004-.863-.024-.225-.156-.458-.156-.636 0-.306.195-.451.153-.866-.027-.299-.07-.369-.138-.629-.132-.493-.042-.991-.123-1.52-.038-.252-.119-.333-.143-.622-.033-.34.071-.458.105-.7.035-.24.07-.555.038-.81-.038-.306-.183-.522-.143-.855l-.111 3.782c-.094-3.3-.226-6.355-.226-6.355l-5.018-2.357s-.425 9.214-.317 10.496c.1 1.287.532 10.076.317 11.147-.216 1.072-.744 6.429-.744 6.429s-2.454 1.714-3.414 3.64c-.964 1.93-.748 2.573-1.072 2.573l2.385-.372-1.776 1.186a1.085 1.085 0 0 1 1.106.171c.04.034.306.26.34.26.093 0 .223-.238.337-.28.37-.125.681.568 1.032.515.188-.028.445-.226.599-.427.127-.17.176-.47.31-.584.122-.104.42.017.549.017.35 0 .705.011 1.056 0 .467-.013.845-.67 1.275-1.043.401-.337.696-.456 1.125-.43.469.034.893.472 1.37.5.361.018.612.062.904-.317.201-.264.344-.656.535-.931l1.186-.184c.235.098.475.206.676.198.303-.014.616-.051.916-.004.114.015.34.282.433.216.064-.049.172-.41.237-.518-.027-.145-.071-.506-.124-.628z'/%3e%3cpath d='M964.77 304.05c.302 0 .58-.07.834.152.042.08.08.158.119.233a.26.26 0 0 0 .25.035c.171.115.206.18.393.223.174.037.365-.007.539-.004.22.007.326.083.531.167.358.146.594.007.904-.216.359-.264.49-.062.834.269.258.246.205.223.438.055.035-.08.076-.156.115-.223.115-.048.233-.08.35-.101.193-.09.383-.08.565-.149.19-.074.33-.285.531-.247.174.035.373.176.539.23.16.054.23.086.362.183.24-.493.768-.64 1.106-.879.351-.243.678.052 1.064.056.205 0 .288-.12.434-.167.164-.06.35.026.508-.039.167-.062.198-.223.382-.243.34-.042.72.513 1.06.618.191.063 1.076.261.946-.389-.125-.62-.68-.19-.8-.625-.063-.247.067-.599-.01-.876-.066-.253-.344-.546-.511-.601-.209-.066-.33.152-.508-.018-.146-.136-.201-.644-.33-.845-.171.125-.278.24-.504.194-.258-.062-.233-.15-.425-.393-.417-.522-.657.313-1.042.18-.293-.093-.564-.83-.794-1.13-.122-.16-.466-.678-.643-.562-.299.194-.027.758-.183 1.008-.112.174-.508-.004-.65.024-.226.049-.268.108-.432.379-.33.546-.522.98-1.035.918-.244-.028-.427-.275-.665-.185-.253.097-.396.368-.674.4-.202.016-.435.024-.633-.052-.194-.088-.414-.452-.591-.553a.23.23 0 0 0-.24-.046c-.02-.01-.288-.167-.292-.167-.31-.09-.284-.079-.41.33-.074.254-.101.515-.195.755-.09.202-.288.451-.403.587-.216.233-.32.17-.601.254-.226.074-.526.425-.647-.027-.18-.682.5-1.7-.258-1.523-.198.046-.317.083-.438.376-.134.337-.026.555-.086.925-.08.465-.968 1.248-.792 1.669.118.296.514-.16.622-.086.18.124.129.42.257.619.269.41 1.065-.636 1.11-.07m-3.221-4.073c-.002-.059-.013-.115-.017-.176-.212-.039-.452-.264-.647-.268-.183-.01-.542.438-.668.653-.389.643-.28 1.519-.935 1.506-.16-.004-.535-.112-.675-.015-.246.174-.09.69-.09 1.04 0 .33.15 0-.027.428-.053.118-.212.156-.254.313-.132.56.333.382.539.376a103.36 103.36 0 0 1 1.575 0c.317.007.508-.105.803-.22.194-.066.608-.062.773-.236.059-.066.25-.508.277-.612.042-.216-.04-.477.01-.657.084-.316.367-.195.418-.622.136-1.048-.982-.264-.806-1.294'/%3e%3c/g%3e%3cg stroke='%23000' stroke-width='.78'%3e%3cpath d='M974.21 271.28c0 1.356-.928 2.448-2.078 2.448-1.137 0-2.073-1.092-2.073-2.448 0-1.352.935-2.452 2.073-2.452 1.15.001 2.078 1.1 2.078 2.452zm-6.78-3.02c0 1.352-.929 2.448-2.074 2.448-1.147 0-2.078-1.096-2.078-2.448s.931-2.45 2.078-2.45c1.145 0 2.074 1.098 2.074 2.45z'/%3e%3cpath d='M971.01 269.2c0 1.356-.929 2.448-2.074 2.448s-2.072-1.092-2.072-2.448.928-2.45 2.072-2.45 2.074 1.095 2.074 2.45z'/%3e%3cpath d='M967.54 271.44c0 1.356-.932 2.454-2.076 2.454s-2.072-1.1-2.072-2.454c0-1.352.927-2.448 2.072-2.448s2.076 1.094 2.076 2.448z'/%3e%3cpath d='M970.76 273.31c0 1.352-.935 2.454-2.075 2.454-1.143 0-2.076-1.102-2.076-2.454s.933-2.448 2.076-2.448c1.139.001 2.075 1.096 2.075 2.448z'/%3e%3c/g%3e%3cpath fill='%2300ad50' stroke='%23000' stroke-width='.78' d='M971.76 246.58s20.918-29.209 43.348 1.134c0 0 .187 3.018-1.885 6.22l-.567-2.448-1.318.374-.376-1.507-2.455-.187.758-3.206-2.642 2.074.379-2.263-3.016 3.02.38-6.411-3.207 5.466.376-3.767-1.13 1.693-.68-2.196-1.013 2.196-1.512-1.128v1.507l-2.635-2.262-.942 3.015-1.319-3.202-.378 2.26-1.322-2.64-.184 2.83-4.339-1.887.942 2.639-2.069-1.505.376 1.505-2.824-.563.185 1.694-3.015-.566.567 1.506-4.148-.562 1.502 1.696-.417.69s22.66-7.473 24.168 20.796l-4.148 2.072 1.133-2.256-1.133-.757-3.39-2.635.942-3.585-1.129.38-.19-2.073-.565.376-1.322-2.073-.376.755-.942-2.454-.942 1.7-.567-4.148-1.505 2.643-.192-1.509-.566.942-1.884-2.263-.56 1.508-.76-1.13-.562 1.318-2.074-1.888v1.513l-1.317-1.134-.571.755-3.198-1.697-.196 1.505-1.692-1.505-.568 1.505s20.55 11.689 14.137 30.725l-1.134 2.448-.372-6.404-1.884 3.39 1.31-7.35-1.31 1.317-.194-2.823-1.69 2.823-.574-3.201-.748.942-1.136-4.902-.942 2.076-1.506-5.466-1.13 2.26-.754-4.708-.755 2.826-2.263-4.149-.374 1.693-1.317-3.39-.759 1.134s-3.769-.192-4.898-1.134c-1.13-.938-4.336 5.657-4.336 5.657l.378-3.96-1.317 2.635v-2.635l-2.452 7.914-.566-5.653-1.319 4.9-.568-1.505-.375 2.075-.755-.758-.658 2.225-1.23-.903v3.014l-1.129-1.508-.942 4.524-.564-1.88v2.068l-.942-1.126-.945 4.524-1.318-1.884-.185 3.2.56 2.454-1.505-.755.567 3.953s-5.844-10.927 1.133-21.484c6.968-10.55 16.393-13.38 16.393-13.38l-.946-.938-.187-.945-5.653 2.826.19-1.7-1.509 1.32-.375-1.884-.946 1.697-.184-.755-1.322 2.076-.757-3.018-.94 3.585-.889-2.507-1.937 5.33v-3.957l-1.508 4.148-.564-4.524-1.13 5.274v-4.711l-1.7 4.711-1.129-4.52-.755 4.332-1.129-3.39-1.134 5.087-1.693-4.524-.942 6.787-1.13-2.643-.19 4.902-1.315-3.014 1.315 6.404-1.697-2.448.568 3.957-2.448-4.336.187 5.094-1.321-1.7-.568 1.885s-.56-19.6 12.816-23.372c13.386-3.768 22.055 1.133 22.055 1.133l-5.087-4.145.564-1.321h-1.884l.754-1.509-3.957.191 1.13-1.508-3.018.375v-.94l-1.884 1.503.754-1.693-2.638 1.693-.161-2.507-1.349 2.135-.748-2.263-6.034 6.028 1.695-6.218-1.129 1.322-.187-1.322-1.697 2.642-.378-1.887-.755 2.26-.567-2.637-1.314 2.637-1.323-2.446-.563 3.205-.945-1.7-1.13 2.45-1.505-1.51-.191 1.51-3.016-1.32.755 2.264-2.263-1.884-.568 3.014-1.315-1.508-.942 3.772-.942-3.583-.942 2.827s11.786-30.286 41.605-10.526c0 0 3.247 3.176 4.002 5.436.755 2.264.19.38.19.38l-.567-20.92 1.13 9.047.754-3.206-.187 4.713 3.012-6.598s-3.577 10.933-2.26 14.89c0 0 1.322-12.626 5.848-14.136l-4.148 9.046 1.317-.19-.942 1.888h1.13l-1.366 2.99-.707 1.534.751 1.506 1.139-1.141z'/%3e%3cpath d='m968.66 258.87.594.535c.08-.083 1.944-2.069 5.074.574l.518-.616c-3.742-3.164-6.17-.522-6.186-.493zm-.91-10.26-.122.725 1.453-.62a360.89 360.89 0 0 1-.999 1.748l2.168-.721a9103.73 9103.73 0 0 1-2.688 3.517l.64.494 4.276-5.601-2.657.886c.277-.482 1.14-2.005 1.14-2.005l-2.298.988.475-2.874-.795-.133-.593 3.596z'/%3e%3cpath d='M963.76 248.84s.528 1.169.925 2.039c-.171-.071-1.475-.593-1.475-.593l4.35 7.694s.525-.67.556-.712c-.438 1.123-.876 2.256-.876 2.256l.751.292 1.875-4.822-.692-.393-1.51 1.933c-.406-.723-1.91-3.386-2.625-4.645.09.034 1.207.484 1.207.484s-.82-1.812-1.203-2.653l1.63 1.018v-2.868h-.803v1.419l-2.663-1.662.553 1.213zm-2.74 9.66.32.737c1.178-.504 2.148-.588 2.885-.237.863.414 1.123 1.304 1.126 1.31l.775-.208c-.01-.052-.352-1.248-1.543-1.822-.952-.458-2.152-.385-3.563.22zm3.376 8.15-.66-4.215.795-.125.661 4.214zm5.789-.694-1.074-3.22.765-.255 1.073 3.22zm2.124 2.38-.807-3.216.782-.196.807 3.216z'/%3e%3cpath d='M811.41 365.04s-3.534-1.606-5.143-.43c-1.608 1.181-1.389 2.892-2.783 2.784 0 0 5.354 1.179 6.532-.216 1.177-1.387 1.394-1.819 1.394-1.819m.65 1.161s-2.326 3.11-1.522 4.93c.802 1.822 2.523 1.978 2.116 3.315 0 0 2.302-4.974 1.196-6.426-1.105-1.442-1.474-1.745-1.474-1.745m-4.236-8.684s-3.71 1.15-4.126 3.095c-.426 1.946.879 3.086-.232 3.931 0 0 4.782-2.68 4.737-4.506-.045-1.823-.163-2.284-.163-2.284m1.964 1.044s1.76-3.467.652-5.118c-1.106-1.663-2.832-1.52-2.662-2.904 0 0-1.414 5.296-.073 6.536 1.343 1.23 1.763 1.468 1.763 1.468m-3.32-1.242s.085-3.876-1.632-4.889c-1.715-1.015-3.209-.141-3.658-1.467 0 0 1.026 5.389 2.774 5.928 1.746.525 2.227.556 2.227.556m6.629 6.332s4.068-1.397 4.392 2.998c.32 4.39-.216 2.893-.216 2.893s-2.142-4.713-4.496-5.464l.32-.427z' stroke='%23000' stroke-width='.78' fill='%2300ad50'/%3e%3cpath d='M811.99 366.59c0 .094.426 3.414.426 3.414l.572-.073-.43-3.322c.014.004 1.39-7.3 1.39-7.3l-.567-.105-1.391 7.386z'/%3e%3cpath d='m808.29 365.51-.19.542c1.946.684 4.661-1.454 4.774-1.544l-.36-.448c-.024.017-2.578 2.034-4.224 1.45zm5.098-4.286-9.102-4.605.363-.717 9.102 4.605z'/%3e%3cpath d='m806.79 360.19-.568-.567 1.821-1.82.567.568zm3.185-.885-1.927-4.18.729-.336 1.928 4.18zm2.695 5.115.052.804c2.475-.168 3.08 1.435 3.084 1.453l.79-.164c-.094-.459-1.086-2.284-3.926-2.093z'/%3e%3cpath d='M854.43 366.27c3.035-1.7 3.643-7.657 3.643-7.657-.726 2.191-6.31 4.375-6.31 4.375 4.126-2.556 9.101-14.084 9.101-14.084-1.334 4.13-12.138 7.526-19.06 11.411-6.923 3.883-3.279 15.058-3.279 15.058-1.94-1.337-5.706-7.283-6.432-12.509-.733-5.219-2.796-7.28-7.531-7.889-4.738-.608-7.529 4.732-7.529 4.732l-7.04 3.647 7.159.24s5.106 1.704 5.106 5.71c0 4.008-4.493 20.034 2.91 29.021 5.153 6.245 24.166 9.833 24.166 9.833' stroke='%23000' fill='%23FFF'/%3e%3cpath d='M840.47 378.65s1.457-7.165 6.192-6.922c4.735.243 6.07-5.34 8.863-6.192 2.793-.848 17.242-4.731 18.821-11.656 0 0-1.335 11.416-14.568 17.122 0 0 10.681-3.523 11.898-5.83 0 0-4.739 10.2-16.272 11.778 0 0 10.806-.849 12.385-3.761 0 0-4.857 6.433-12.869 7.285 0 0 7.405 3.035 9.35.484 0 0-4.009 4.735-8.989 5.096l1.34.366s-4.736 5.587-9.958 1.822c-5.219-3.766-5.344.974-5.344.974' stroke='%23000' fill='%23FFF'/%3e%3cpath d='M851.25 389.45s6.098 10.202 6.707 15.665c0 0 11.658 12.872 16.028 13.595 0 0-2.065.848-5.831-2.305 0 0 3.157 3.278 3.766 3.4.604.125-2.552-.243-3.039-1.095 0 0 1.338 1.948 2.187 2.19.852.244-.849-.242-.849-.242s-1.581-.244-2.309-.852c-.73-.605-.243 1.575-.243 1.575s-1.822-.486-2.427-1.092c-.608-.605.244 1.34.244 1.34l-1.578-.367-1.092.726s-.122.73-.856.123c-.723-.601-2.061 0-2.061 0s-.975.852-1.457.243c-.482-.606-2.323 2.336-2.323 2.336l-7.645-18.455' stroke='%23000' fill='%23FFF'/%3e%3cpath d='m858.505 422.928-9.662-18.393 1.014-.533 9.663 18.393zm8.442-1.24-16.531-18.51.858-.766 16.532 18.51zm3.771-1.632-18.864-17.58.783-.84 18.865 17.58zM823.44 360.84s-1.231-2.204-2.303-1.376c-1.069.825-1.685.976-1.87.919 0 0 1.076.059 1.687-.522.613-.586 1.656-.216 2.486.979zm-6.66-1.01s.676 1.398.685 1.422c-.068.004-.763 2.257-.763 2.257l.553.17.75-2.453c-.013-.213-.703-1.642-.703-1.642l-.522.246z'/%3e%3cpath d='M823.16 360.5s-.918 1.075-2.176.766l-1.252-.306s1.066.06 1.776.093c.7.029 1.618-.337 1.652-.553z'/%3e%3cpath d='M822.86 360.72s-1.132-1.195-1.9-.858c0 0 1.35-.43 2.116.73l-.216.128z'/%3e%3cpath d='M822.67 360.5s-1.286.887-2.699-.09l-.086-.066.183-.059c.001.001 1.778.735 2.602.215z'/%3e%3ccircle cx='821.573' cy='360.284' r='.383'/%3e%3cpath d='M822.61 394.2s-.996 1.834-.475 2.939c.528 1.103 2.89 1.675 3.205 3.146.317 1.475 1.105 1.471 2.208 1.266 1.105-.212 1.314-.264 1.314-.264s-4.625-2.473-5.834-6.46l-.418-.627z'/%3e%3cg stroke='%23000' fill='%23862633' stroke-width='.48'%3e%3cpath d='M972.09 356.85s8.418-11.099 15.882-8.184c7.465 2.917 12.316 4.321 12.316 4.321s.142 7.475-3.828 7.475c-3.96 0-7.757-7.465-11.366-5.246-3.616 2.215-6.584 5.25-6.818 6.296-.233 1.048-9.562 1.283-6.185-4.662z'/%3e%3cpath stroke-width='.78' d='M940.14 410.37s-2.328 2.444-1.278 3.031c1.054.581 3.146-.122 3.146-.935 0-.82-1.395-2.329-1.868-2.096z'/%3e%3cpath stroke-width='.78' d='M938.28 412.7s-4.312-2.455-7.694 3.376c-3.387 5.83-6.182 15.277-8.164 16.56-1.981 1.282 19.241-9.328 19.475-13.758 0 0 1.397-5.716-.817-5.602-2.215.122-2.333.356-2.8-.576z'/%3e%3cpath d='M938.86 413.4s-4.43 1.043-5.362 7.337c-.932 6.303-7.114 9.565-7.462 9.797m74.264-77.544s-6.738 2.344-5.574 7.01'/%3e%3c/g%3e%3cpath fill='%23fedd00' stroke='%23000' stroke-width='.48' d='M948.54 366.64s.232-15.976 13.284-15.277c2.473.23 1.294 3.146 1.294 3.146s2.823-1.977 4.113 1.166c0 0 4.117-1.864 4.585 2.218 0 0 4.47-.58 3.88 3.032 0 0 3.056-.699 2.942 1.867 0 0 3.526-1.4 3.17 2.215 0 0 3.882-2.566 3.297 2.096 0 0 3.999-2.794 5.404 1.869 1.411 4.662-3.995 14.574-9.287 17.138'/%3e%3cpath d='M984.81 367.61c.018.125 1.76 12.498-5.257 17.026l.247.39c7.27-4.69 5.482-17.356 5.466-17.484l-.456.068zm-8.45 13.55.324.33c4.444-4.325 5.4-15.976 5.434-16.469l-.455-.038c-.011.122-.977 11.974-5.303 16.177zm-4.15-2.77.458.037c.572-7.195 6.196-15.425 6.256-15.509l-.38-.258c-.058.082-5.75 8.413-6.334 15.73zm-3.26-2.1.458.046c.8-8.68 6.533-15.196 6.59-15.258l-.341-.308c-.06.064-5.891 6.688-6.707 15.52zm-4.55-2.9.458.017c.456-10.25 7.18-15.28 7.247-15.33l-.272-.371c-.065.051-6.967 5.2-7.433 15.684zm-4.2-2.55.462-.014c-.336-9.328 6.835-14.912 6.91-14.97l-.279-.364c-.073.06-7.434 5.78-7.093 15.348zm-7.57-3.41.455.056c1.249-10.097 10.236-12.725 10.326-12.75l-.125-.441c-.09.024-9.373 2.729-10.656 13.135z'/%3e%3cpath fill='%2300ad50' stroke='%23000' stroke-width='.48' d='M940.84 386s-2.212-14.813 6.648-19.472c0 0 1.637-.352 2.566 1.748 0 0 4.666-1.98 4.784 1.978 0 0 2.33-1.864 2.914.7 0 0 5.013-1.047 4.08 2.683 0 0 4.197-1.165 3.847 2.445 0 0 4.2-1.514 3.497 1.635 0 0 4.429-1.047 3.382 2.567 0 0 5.483-.581 3.85 3.265 0 0 4.081-1.048 3.146 2.1 0 0 5.366.935 2.914 4.315-2.448 3.378-8.63 8.51-14.686 10.724'/%3e%3cpath fill='%2300ad50' stroke='%23000' stroke-width='.48' d='M936.06 400.92s-3.616-12.355 3.269-15.509c0 0 1.275-.352 1.51.935 0 0 1.519-1.985 2.686-.233 0 0 3.495-1.633 4.315.931 0 0 2.33-1.985 3.498.928 0 0 2.216-.928 2.216 1.401 0 0 3.03-1.282 3.03 1.517 0 0 2.91-1.165 2.33 1.981 0 0 4.433.699 3.15 2.798 0 0 3.97 1.046 2.448 2.683 0 0 4.312-.466 1.981 2.448 0 0 3.265-1.047 1.402 2.57-1.869 3.612-7.695 7.576-11.776 8.041'/%3e%3cpath fill='%2300ad50' stroke='%23000' stroke-width='.48' d='M940.37 410.71s-7.694-7.462-4.075-9.676c0 0 1.626.462 2.211 2.097 0 0 1.864-2.681 2.918.115 0 0 2.8-.931 2.8.938l2.21 1.634s2.57-.236 2.104 1.398c0 0 2.799-.352 2.68 1.165 0 0 2.452.115 2.219 1.745 0 0 4.193.7 2.329 2.803 0 0-7.346 1.512-12.475-.585 0 0-2.688-.936-2.92-1.634z'/%3e%3cpath d='m966.76 398.38.164.427c4.56-1.755 12.478-12.564 12.816-13.024l-.372-.275c-.084.117-8.174 11.164-12.608 12.871zm-2.59-1.97.223.4c3.967-2.213 11.867-12.676 12.2-13.121l-.366-.278c-.079.112-8.174 10.834-12.058 12.998zm-2.25-.92.296.352c4.19-3.478 10.291-14.966 10.552-15.452l-.406-.216c-.062.117-6.32 11.896-10.441 15.317zm-2.06-2.65.456.064c.796-5.807 8.953-14.947 9.032-15.037l-.34-.308c-.338.38-8.334 9.336-9.148 15.281zm-16.33-7.06.46-.04c-.686-8.203 6.18-17.238 6.25-17.328l-.364-.277c-.074.089-7.044 9.262-6.346 17.645zm4.32.72.456-.08c-1.136-6.576 6.63-15.928 6.71-16.02l-.351-.298c-.327.389-7.984 9.605-6.815 16.398zm6.64 2.42.46-.013c-.226-7.507 6.976-15.032 7.05-15.11l-.33-.32c-.072.077-7.414 7.743-7.18 15.443zm-15.84 13.6.43-.16c-2.615-6.937 1.926-15.819 1.972-15.906l-.414-.212c-.045.091-4.677 9.149-1.988 16.278zm3.02.45.438-.142c-2.281-7.065 1.585-16.535 1.626-16.628l-.427-.176c-.037.092-3.966 9.721-1.637 16.946zm12.5 7.06.157.434c7.44-2.676 12.305-9.46 12.353-9.525l-.375-.269c-.046.067-4.826 6.738-12.134 9.36zm-1.53-1.62.187.421c5.934-2.677 11.467-10.146 11.52-10.223l-.37-.269c-.056.075-5.514 7.443-11.337 10.07zm-1.44-.56.269.373c4.641-3.362 10.604-11.982 10.667-12.07l-.378-.257c-.061.088-5.977 8.638-10.558 11.953zm-7.44-4.33.456-.066c-1.026-7.414 3.773-16.208 3.824-16.295l-.403-.223c-.051.091-4.923 9.018-3.877 16.584zm3.23 2.01.31.34c4.788-4.322 6.418-15.971 6.484-16.464l-.456-.064c-.014.119-1.672 11.981-6.338 16.188z'/%3e%3cpath d='m950.27 406.91.269.372c6.758-4.888 8.59-14.274 8.605-14.365l-.449-.086c-.018.09-1.815 9.295-8.425 14.08zm.78-20.23c0 .438.022.875.062 1.318-.007-.038-5.125 16.583-5.125 16.583l.438.135 5.139-16.674c-.794-8.06 6.296-16.859 6.366-16.945l-.354-.288c-.071.08-6.526 8.093-6.526 15.871z'/%3e%3cpath d='M956.41 390.74c-.067.233-1.627 11.618-7.768 15.818l.26.38c6.315-4.32 7.849-15.545 7.911-16.019 2.725-3.243 9.005-14.614 9.069-14.728l-.404-.222c-.063.114-6.318 11.45-9.068 14.77zm-18.13 12.44c.046.239 1.072 5.896 2.246 7.891l.396-.231c-1.136-1.926-2.175-7.68-2.186-7.74l-.456.08zm2.91.07c.05 2.816.064 7.436-.094 7.847l.428.168c.236-.592.146-6.784.128-8.019l-.462.004z'/%3e%3cpath d='m941.45 411.32.418.187c1.971-4.29 2.578-7.249 2.586-7.277l-.452-.09c-.007.024-.602 2.942-2.552 7.18z'/%3e%3cpath d='m941.89 411.45.233.396c3.657-2.125 4.506-5.821 4.536-5.976l-.448-.1c-.01.036-.841 3.66-4.321 5.68z'/%3e%3cpath d='m942.57 411.77.046.455c3.584-.358 6.025-4.711 6.13-4.895l-.405-.223c-.023.045-2.429 4.328-5.771 4.663z'/%3e%3cpath d='m942.93 412 .028.458c5.754-.354 8.343-3.793 8.448-3.938l-.372-.272c-.024.032-2.577 3.415-8.104 3.752z'/%3e%3cpath d='m943.34 412.12-.094.449c.31.07 7.642 1.625 10.152-2.197l-.385-.251c-2.334 3.558-9.601 2.013-9.673 1.999z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='4.2' d='M778.8 143.94v205.09c0 67.08 121.2 106.91 121.2 106.91s121.2-39.833 121.2-106.91V143.94z'/%3e%3c/g%3e%3c/svg%3e\"},7971:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1200 600'%3e%3cpath fill='%23012169' d='M0 0h1200v600H0z'/%3e%3cpath d='M0 300h600V0h600v600H0z' fill='%23012169'/%3e%3cpath fill='%23012169' d='M0 0h600v300H0z'/%3e%3cpath d='M0 0v33.54L532.92 300H600v-33.54L67.08 0zm600 0v33.54L67.08 300H0v-33.54L532.92 0z' fill='%23fff'/%3e%3cpath d='M250 0v300h100V0zM0 100v100h600V100z' fill='%23fff'/%3e%3cpath d='M0 120v60h600v-60zM270 0v300h60V0zM0 300l200-100h44.72l-200 100zM0 0l200 100h-44.72L0 22.36zm355.28 100 200-100H600L400 100zM600 300 400 200h44.72L600 277.64z' fill='%23c8102e'/%3e%3cpath d='M998.104 481.751c-6.102-.967-11.383-3.718-17.285-9.84l-2.96-2.9-3.567 1.247c-18.613 6.271-40.543 10.618-66.673 11.055-33.923.568-63.053-4.427-80.093-11.848l-5.36-2.046-2.81 2.908c-6.164 6.65-12.367 10.021-19.428 10.558-6.724.512-15.925-2.828-20.559-7.463-1.906-1.906-2.222-2.567-3.115-6.51-.835-3.691-2.893-9.156-4.354-11.564-.663-1.093-2.202-3.207-3.42-4.698-5.955-7.29-6.146-7.745-4.387-10.5 2.305-3.612 5.875-5.927 10.05-6.518 1.338-.19 2.502-.415 2.587-.5.086-.086-.49-1.18-1.281-2.431-2.083-3.3-3.45-6.12-3.105-6.412.165-.14 1.926-1.404 3.913-2.811 7.753-5.489 9.815-8.7 12.652-19.715.86-3.335 1.942-6.699 2.406-7.474 1.907-3.19 5.737-5.049 11.007-5.344 4.059-.228 6.125.218 10.494 2.26 8.634 4.037 17.5 11.393 24.832 20.604l3.16 3.968-.22 3.433c-.706 11.018-1.653 17.1-3.531 22.68-.698 2.074-.998 3.474-.788 3.678.495.483 10.474 3.524 15.576 4.746 7.892 1.89 17.553 3.376 28.49 4.38 6.855.63 32.714.63 39.21 0 10.503-1.018 22.608-3.068 30.356-5.14 6.442-1.724 13.732-4.127 13.732-4.528 0-.237-.231-.986-.514-1.663-1.634-3.91-2.95-11.894-3.42-20.738l-.322-6.087 2.927-3.633c3.54-4.393 9.519-10.376 13.562-13.571 4.035-3.188 9.735-6.64 13.24-8.019 6.886-2.709 15.988-1.192 19.065 3.178.545.774 2.023 4.254 3.284 7.732 4.086 11.266 5.824 13.709 13.342 18.745 1.54 1.031 2.8 2.126 2.8 2.431 0 .306-1.138 2.8-2.53 5.541-1.39 2.742-2.529 5.09-2.529 5.216 0 .126.702.23 1.56.23 4.648 0 10.442 3.61 12.406 7.728.764 1.602.49 2.585-1.406 5.024-.846 1.088-2.57 3.31-3.83 4.936-3.204 4.132-5.213 8.119-6.748 13.39-2.085 7.156-2.184 7.364-4.564 9.567-2.505 2.32-8.118 5.2-11.889 6.101-2.987.714-7.564.998-9.963.617z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23500' stroke='%23500' stroke-linejoin='round' paint-order='markers stroke fill' stroke-width='1.318'/%3e%3cg color='%23000' paint-order='markers stroke fill'%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m987.012 436.644 10.916-9.88c-.044-4.722-2.756-8.62-6.476-10.051-3.274-1.26-6.415-1.337-10.161 2.745.396 7.444 1.691 11.221 5.721 17.186z' overflow='visible' fill='none' stroke='%23520' stroke-width='.158' stroke-linejoin='round'/%3e%3cpath d='m999.716 451.516 3.44 5.25c.767.145 1.545.28 2.32.417-.417 3.5 1.573 8.636 1.573 8.636s-13.567 7.529-20.46 11.195c-3.586-2.612-6.915-6.225-10.049-10.832l-3.4-5.435c3.359-1.217 6.567-2.374 6.871-2.495.64-.256 15.493-6.146 15.493-6.146z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23951b1d'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M1003.565 456.84c9.135 1.698 19.21 2.53 19.847 12.037.343 7.174-13.117 12.716-21.523 13.237-7.125.442-13.652-3.215-19.489-8.88 6.658-3.337 20.271-7.965 21.165-16.394z' overflow='visible' fill='%23e2a950'/%3e%3cpath d='M1023.412 468.877c.343 7.174-13.1 13.279-21.523 13.237-9.98-.048-18.176-5.386-25.349-15.933l-10.85-17.338c-5.23-8.317-6.03-20.829-6.35-32.091 6.28-8.405 13.428-16.438 24.443-22.814 5.573-3.15 11.301-5.944 19.554-2.897 5.418 1.909 6.723 5.873 7.424 10.14-.506 17.55-1.754 34.92-11.045 50.334l3.44 5.251c9.24 1.751 19.61 2.463 20.256 12.11z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='none' stroke='%23520' stroke-width='.158' stroke-linejoin='round'/%3e%3cpath d='M983.003 428.905c.757 2.264 1.783 4.429 3.187 6.455-6.216 4.75-13.67 8.262-21.814 11.085-.06-.124-.118-.25-.177-.376a32.044 32.044 0 0 1-.86-1.993c-.124-.315-.25-.626-.366-.947-.103-.286-.199-.58-.296-.87a40.04 40.04 0 0 1-.376-1.172c-.04-.133-.077-.268-.116-.402 7.152-4.099 13.747-7.638 20.818-11.78z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23c98c26'/%3e%3cpath d='M1013.903 458.961c5.132 1.502 9.117 4.058 9.509 9.916.343 7.174-13.1 13.278-21.523 13.237-3.96-.02-7.636-.887-11.082-2.567.321-.16 9.338-2.002 13.273-4.525 2.872-1.841 6.018-5.888 7.042-7.425 1.024-1.536 1.535-5.635 2.56-8.195a2.89 2.89 0 0 1 .221-.44z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23ab1e2b'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M1013.903 458.961a25.13 25.13 0 0 1 2.518.868c-.122 2.253 1.345 4.152 1.13 6.262-.18 1.779-1.002 3.491-1.992 4.98-1.384 2.078-3.248 3.889-5.34 5.25-2.34 1.521-5.1 2.323-7.787 3.077-2.743.769-4.328.75-8.422 1.45a25.226 25.226 0 0 1-3.203-1.301c1.683-.938 4.656-1.235 6.285-1.96 1.63-.724 3.892-1.537 5.793-2.623 1.902-1.087 3.622-2.445 3.984-2.807.362-.362 3.348-3.803 3.62-4.256.271-.453 2.794-6.579 3.414-8.94z' overflow='visible' fill='%23c47645'/%3e%3cpath d='M980.724 395.824c.074.84.134 1.84.188 2.93.064 1.407.077 2.832.085 4.259.004.8.013 1.597.008 2.4-.008 1.335-.015 2.67-.026 4.006-.01 1.162.001 2.316.008 3.471.007.914.012 1.828.039 2.734.013.455.02.91.04 1.363.039.857.092 1.708.16 2.554v.018s-.106 6.216 1.022 9.373c.975 2.731 3.943 6.428 3.943 6.428l-13.812 7.676-7.992 3.407c-.004 0-.008.003-.013.005-.042-.086-.08-.176-.121-.263 0-.001-.001-.004-.003-.005-2.89-7.87-4.654-20.451-4.91-29.428 5.678-7.597 12.074-14.887 21.384-20.928z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23ca6b5b'/%3e%3cpath d='M980.902 407.108c-.003 1.44.08 7.29.126 8.712a73.28 73.28 0 0 0 .198 3.72v.019l.003.005c.306 3.74.968 7.352 2.294 10.72l-21.281 10.597-.015-.057c-.014-.044-.026-.089-.039-.134a47.537 47.537 0 0 1-.458-1.683l-.014-.044-.074-.307c-.16-.654-.31-1.317-.448-1.987l-.005-.016v-.002a.066.066 0 0 0-.003-.011l-.005-.023c-.077-.378-.14-.764-.211-1.146a70.04 70.04 0 0 1-.7-4.648 91.522 91.522 0 0 1-.114-.965 95.91 95.91 0 0 1-.227-2.191v-.008l-.002-.01-.006-.063c-.002-.027-.002-.055-.005-.082-.13-1.487-.235-2.98-.317-4.472z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23e2b269'/%3e%3cpath d='M981.036 416.327c.127 3.49.459 6.903 1.259 10.145-6.041 2.844-17.175 8.28-21.106 10.163-.089-.433-.164-.875-.245-1.313a70.314 70.314 0 0 1-.383-2.3c-.047-.308-.1-.613-.142-.924l-.005-.036c-.008-.061-.012-.124-.02-.185a93.396 93.396 0 0 1-.462-4.166l-.028-.358z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23f2d196'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M985.256 433.846c.299.51.592 1.02.934 1.514-6.217 4.75-13.671 8.265-21.816 11.088a31.001 31.001 0 0 1-.932-2.112z' overflow='visible' fill='%23951b1d'/%3e%3cpath d='M980.724 395.824c1.198 13.408-2.183 28.494 5.466 39.536-6.217 4.75-13.671 8.265-21.816 11.088-4.044-8.213-4.743-19.464-5.034-29.696 5.678-7.597 12.074-14.887 21.384-20.928z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='none' stroke='%23520' stroke-width='.158' stroke-linejoin='round'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M998.495 425.01c1.147-1.174 2.755-3.056 4.066-4.76 3.532-4.588 6.143-9.468 7.415-13.852.446-1.541.59-2.422.64-3.939.042-1.298.04-1.327-.156-2.304-.609-3.041-1.514-4.974-3.042-6.496-1.263-1.259-2.582-2.007-4.898-2.78-2.303-.768-4.296-1.075-6.56-1.01-3.565.103-6.626 1.112-11.365 3.745-1.153.64-3.357 1.966-3.643 2.19-.113.088-.118.144-.067.704.184 2.017.215 3.638.22 11.618.003 5.977.027 8.63.087 9.603.046.739.097 1.385.113 1.436.02.062.233-.106.652-.517.982-.963 1.751-1.532 2.734-2.023 2.031-1.015 4.118-1.03 6.694-.047 2.699 1.03 4.845 3.254 5.911 6.127.257.691.516 1.696.585 2.269.025.205.064.408.087.452.028.052.209-.091.527-.416z' overflow='visible' fill='%23faecbd'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M982.198 418.372c1.316-1.236 2.897-2.132 4.233-2.4.5-.099.52-.114.519-.385-.001-.156.268-5.53.597-11.945.33-6.414.576-11.685.547-11.713-.123-.124-4.82 2.408-6.587 3.55-.7.453-.663.335-.523 1.72.05.497.128 5.487.173 11.089.045 5.602.109 10.317.142 10.479.033.162.086.292.117.29.032-.003.384-.31.782-.685z' overflow='visible' fill='%23ae4c33' stroke='%23000' stroke-width='.011' stroke-linejoin='round'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M991.702 416.567c0-.043.81-6.037 1.8-13.32.99-7.285 1.774-13.27 1.743-13.3-.115-.115-2.357.25-3.415.555-.598.173-1.678.545-2.4.827l-1.313.514v.83c0 .863-.959 20.663-1.08 22.283l-.068.92.44-.072c.611-.099 2.32.17 3.393.536.495.168.9.27.9.227z' overflow='visible' fill='%23dba35a' stroke='%23000' stroke-width='.016' stroke-linejoin='round'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M999.467 423.861c4.144-4.659 7.143-9.202 9.12-13.817 1.855-4.326 2.363-7.66 1.628-10.694-1.15-4.743-3.256-7.007-7.897-8.485-1.917-.61-3.66-.92-5.357-.952-.834-.015-1.543 0-1.575.036-.032.035-.674 4.673-1.426 10.306a8734.61 8734.61 0 0 1-1.785 13.315l-.418 3.073.775.416c2.655 1.424 4.558 4.043 5.257 7.234.12.545.261.992.315.992.053 0 .667-.64 1.363-1.424z' overflow='visible' fill='%23e9be79' stroke='%23000' stroke-width='.016' stroke-linejoin='round'/%3e%3cpath d='m988.315 432.11 5.462-4.154 2.621-2.319s1.337-.761 1.188-1.385c-.856-3.606-3.174-6.382-6.317-7.565-3.47-1.306-6.195-.743-8.953 1.85l-1.021.96.142 1.408c.53 5.263 1.582 9.27 3.82 12.942.354.581 1.362-.516 1.417-.516.054 0 1.64-1.222 1.64-1.222z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23012169' stroke='%23500' stroke-width='.989' stroke-linejoin='round'/%3e%3c/g%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m813.01 435.622-10.916-9.88c.044-4.722 2.756-8.62 6.476-10.051 3.274-1.26 6.415-1.337 10.161 2.745-.396 7.444-1.69 11.221-5.72 17.186z' color='%23000' overflow='visible' fill='none' stroke='%23520' stroke-width='.158' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cpath d='m800.306 450.494-3.44 5.25c-.766.145-1.544.28-2.32.417.418 3.5-1.573 8.636-1.573 8.636s13.567 7.528 20.46 11.195c3.587-2.612 6.916-6.225 10.049-10.832l3.401-5.435c-3.36-1.217-6.568-2.374-6.872-2.495-.64-.257-15.493-6.147-15.493-6.147z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23951b1d' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M796.457 455.818c-9.134 1.697-19.21 2.53-19.846 12.037-.343 7.174 13.116 12.716 21.522 13.237 7.126.442 13.653-3.215 19.49-8.88-6.658-3.338-20.272-7.965-21.166-16.394z' color='%23000' overflow='visible' fill='%23e2a950' paint-order='markers stroke fill'/%3e%3cpath d='M776.61 467.855c-.343 7.174 13.1 13.278 21.523 13.237 9.98-.048 18.176-5.386 25.349-15.933l10.85-17.338c5.23-8.318 6.03-20.829 6.35-32.091-6.28-8.405-13.428-16.438-24.443-22.814-5.573-3.15-11.3-5.944-19.554-2.897-5.417 1.908-6.723 5.873-7.423 10.14.505 17.55 1.754 34.92 11.044 50.334l-3.44 5.25c-9.24 1.752-19.61 2.464-20.256 12.112z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='none' stroke='%23520' stroke-width='.158' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cpath d='M817.02 427.883c-.758 2.264-1.784 4.428-3.188 6.455 6.217 4.75 13.67 8.262 21.814 11.085.06-.124.118-.25.178-.376.307-.647.591-1.312.86-1.993.123-.315.25-.626.365-.947.104-.286.199-.58.296-.87.13-.388.257-.777.376-1.172.04-.133.077-.268.116-.402-7.152-4.099-13.747-7.638-20.817-11.78z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23c98c26' paint-order='markers stroke fill'/%3e%3cpath d='M789.262 400.158c-2.578 16.13-10.122 19.841-17.382 24.262 0 0 23.003 56.794 128.552 56.13 89.789 0 118.38-34.52 127.467-57.578-15.17-8.326-13.815-15.38-17.382-22.814 3.334 14.887-28.885 55.328-109.722 55.405-94.496.09-112.814-46.953-111.533-55.405z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23eed3a6' stroke='%23520' stroke-width='.158' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cpath d='m1013.208 407.385-.512.937c-6.268 12.911-13.017 18.092-21.804 24.667-10.82 8.096-23.872 12.991-36.717 17.187-8.767 2.864-17.992 4.262-27.154 5.325-13.238 1.536-26.633 1.975-39.95 1.493a181.461 181.461 0 0 1-26.429-2.91c-7.423-1.373-14.726-3.412-21.906-5.744-5.925-1.924-11.846-3.992-17.414-6.784-6.307-3.164-17.954-11.214-17.954-11.214l-10.371-11.267-5.845-10.637c-3.484 9.346-9.464 12.446-15.271 15.982 0 0 23.003 56.794 128.553 56.129 89.788 0 118.377-34.519 127.463-57.576-10.211-5.604-12.911-10.632-14.689-15.588z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23e6ba74' paint-order='markers stroke fill'/%3e%3cpath d='M787.152 408.436c-3.484 9.347-9.464 12.447-15.271 15.984 0 0 7.654 18.792 34.219 34.631-.35-3.343-2.09-18.143-2.09-18.724 0-.64-.002-9.473-.77-9.985-.769-.512-9.985-10.5-10.37-11.267-.266-.533-3.613-6.682-5.718-10.64z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23e2a950' paint-order='markers stroke fill'/%3e%3cpath d='M1018.563 416.854c2.744 2.546 5.814 4.275 8.84 6.118 0 0-1.266 6.195-7.239 13.523-.593-1.227-1.972-3.17-1.972-3.376 0-.64-1.154-4.994-1.154-6.146 0-1.152.258-6.529.258-7.68 0-.294.513-1.226 1.267-2.44z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23c98c26' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M789.262 400.158c-2.578 16.13-10.122 19.841-17.382 24.262 0 0 23.003 56.794 128.552 56.13 89.789 0 118.38-34.52 127.467-57.578-15.17-8.326-13.815-15.38-17.382-22.814 3.334 14.887-28.885 55.328-109.722 55.405-94.496.09-112.814-46.953-111.533-55.405z' color='%23000' overflow='visible' fill='none' stroke='%23520' stroke-width='.158' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cpath d='M786.12 457.94c-5.133 1.501-9.118 4.057-9.51 9.915-.342 7.174 13.1 13.278 21.523 13.237 3.96-.02 7.636-.887 11.082-2.567-.321-.16-9.338-2.002-13.273-4.525-2.871-1.841-6.018-5.889-7.042-7.425-1.024-1.536-1.535-5.635-2.56-8.196a2.89 2.89 0 0 0-.22-.44z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23ab1e2b' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M786.12 457.94c-.876.255-1.723.538-2.519.867.123 2.253-1.344 4.152-1.13 6.262.18 1.779 1.002 3.491 1.993 4.98 1.383 2.077 3.247 3.889 5.34 5.25 2.34 1.521 5.099 2.323 7.786 3.076 2.743.77 4.328.75 8.422 1.45 1.09-.357 2.158-.79 3.203-1.3-1.682-.938-4.655-1.235-6.285-1.96-1.63-.724-3.892-1.537-5.793-2.623-1.901-1.087-3.621-2.445-3.983-2.807-.362-.362-3.349-3.803-3.62-4.256-.272-.453-2.794-6.579-3.415-8.94z' color='%23000' overflow='visible' fill='%23c47645' paint-order='markers stroke fill'/%3e%3cpath d='M819.298 394.802a80.54 80.54 0 0 0-.188 2.93 108.468 108.468 0 0 0-.085 4.259c-.004.8-.013 1.597-.007 2.4.007 1.335.015 2.67.025 4.006.01 1.162 0 2.315-.008 3.47-.006.915-.012 1.829-.038 2.735-.013.455-.022.91-.041 1.362a68.941 68.941 0 0 1-.16 2.555v.018s.106 6.215-1.021 9.373c-.975 2.73-3.943 6.428-3.943 6.428l13.811 7.676 7.992 3.406.013.006c.043-.086.08-.177.121-.263l.003-.005c2.891-7.87 4.655-20.451 4.91-29.428-5.677-7.597-12.073-14.888-21.384-20.928z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23ca6b5b' paint-order='markers stroke fill'/%3e%3cpath d='M819.12 406.086c.003 1.44-.08 7.29-.125 8.712a73.839 73.839 0 0 1-.199 3.72v.019l-.002.005c-.307 3.74-.969 7.352-2.295 10.719l21.281 10.598.016-.057.038-.134c.162-.554.315-1.115.459-1.684l.013-.043.074-.307c.16-.655.31-1.317.449-1.988 0-.005.003-.01.005-.015v-.003l.002-.01.006-.023c.077-.379.14-.764.21-1.146a70.04 70.04 0 0 0 .701-4.648c.04-.32.078-.643.113-.965a95.91 95.91 0 0 0 .227-2.191v-.008c0-.004.003-.007.003-.01.001-.021.002-.042.005-.063.003-.027.003-.055.005-.082.13-1.487.235-2.98.317-4.473z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23e2b269' paint-order='markers stroke fill'/%3e%3cpath d='M818.987 415.305c-.127 3.489-.46 6.903-1.26 10.145 6.042 2.844 17.175 8.28 21.107 10.163.088-.433.164-.875.244-1.313.14-.76.269-1.525.384-2.3.046-.308.099-.614.141-.924l.006-.036c.008-.061.012-.124.02-.185.186-1.375.336-2.766.461-4.166.01-.12.018-.24.029-.358z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23f2d196' paint-order='markers stroke fill'/%3e%3cpath d='M780.902 418.426c-2.744 2.546-5.814 4.276-8.84 6.118 0 0 2.161 5.299 8.134 12.627.593-1.227 1.076-2.274 1.076-2.48 0-.64 1.154-4.993 1.154-6.146 0-1.152-.258-6.528-.258-7.68 0-.294-.513-1.226-1.266-2.439z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23c98c26' paint-order='markers stroke fill'/%3e%3cg color='%23000' paint-order='markers stroke fill'%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m787.874 471.692-4.952-14.595 8.872 4.98 1.178 2.715-.272 2.535-.543 1.72-1.268 1.357z' overflow='visible' fill='%23f9e7d9' stroke='%23500' stroke-width='.158' stroke-linejoin='round'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M763.295 441.225c-1.037 1.628-.214 2.326 0 3.329 0 0 6.87 7.444 9.282 11.842 1.947 3.55 4.033 11.459 4.033 11.459-.59-2.845 4.655-7.382 8.45-7.682 2.95-.233 6.859 1.96 7.425 4.865.517 2.65-1.295 5.993-4.609 6.658 8.955-2.025 4.482-10.674 2.816-14.66 0 0-2.602-4.532-3.456-6.985-1.678-4.82-3.2-14.972-3.2-14.972-10.834-4.111-16.627-.302-20.741 6.146z' overflow='visible' fill='%23e6ba74'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M775.254 433.383c-4.035.163-7.056 1.92-9.496 4.588 4.153 7.18 10.65 17.955 10.65 17.955L768.8 438c2.909-3.218 6.59-3.734 10.863-2.173l-.252-2.078c-1.492-.288-2.882-.417-4.158-.366z' overflow='visible' fill='%23f9e7d9'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M780.133 433.885c1.12 7.778 2.907 21.033 3.646 26.536a6.65 6.65 0 0 1 1.282-.247c2.95-.233 6.857 1.96 7.423 4.864.467 2.39-.968 5.34-3.687 6.383 7.664-2.414 3.499-10.55 1.895-14.386 0 0-2.601-4.532-3.455-6.985-1.678-4.82-3.2-14.97-3.2-14.97a29.255 29.255 0 0 0-3.904-1.195zm8.664 37.536c-.3.095-.584.199-.922.275.323-.064.628-.163.922-.275z' overflow='visible' fill='%23c47645'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m781.062 434.132 5.678 26.168c2.582.484 5.28 2.361 5.744 4.738.467 2.39-.968 5.34-3.687 6.383 7.664-2.414 3.499-10.55 1.895-14.386 0 0-2.601-4.532-3.455-6.985-1.678-4.82-3.2-14.97-3.2-14.97a29.975 29.975 0 0 0-2.975-.948z' overflow='visible' fill='%23ab1e2b'/%3e%3cpath d='M572.738 673.714c-.682 1.023-.14 1.461 0 2.091 0 0 4.514 4.678 6.098 7.44 1.28 2.232 2.65 7.2 2.65 7.2-.388-1.787 3.058-4.638 5.551-4.826 1.938-.147 4.506 1.232 4.879 3.057.34 1.664-.852 3.765-3.028 4.183 5.883-1.273 2.944-6.706 1.85-9.211 0 0-1.71-2.848-2.271-4.389-1.103-3.028-2.103-9.406-2.103-9.406-7.117-2.584-10.923-.19-13.626 3.86z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='none' stroke='%23520' stroke-width='.102' stroke-linejoin='round' transform='matrix(1.5221 0 0 1.5916 -108.474 -631.053)'/%3e%3c/g%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M814.767 432.824c-.3.51-.593 1.02-.935 1.514 6.218 4.75 13.671 8.265 21.817 11.087.335-.681.64-1.39.932-2.11z' color='%23000' overflow='visible' fill='%23951b1d' paint-order='markers stroke fill'/%3e%3cpath d='M819.298 394.802c-1.198 13.407 2.183 28.494-5.466 39.536 6.218 4.75 13.671 8.265 21.817 11.087 4.044-8.212 4.742-19.463 5.033-29.695-5.677-7.597-12.073-14.888-21.384-20.928z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='none' stroke='%23520' stroke-width='.158' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M996.536 430.922c-37.437 26.401-123.877 41.537-183.525 4.701l.286 27.417c19.508 9.905 47.501 17.758 87.137 17.509 46.357 0 76.372-9.209 95.842-21.284z' color='%23000' overflow='visible' fill='%23faecbd' paint-order='markers stroke fill'/%3e%3cg style='line-height:125%25;;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center'%3e%3cpath d='M812.504 448.458q-1.816 3.144-4.913 3.845-3.002.677-6.143-1.138l-3.599-2.1q1.426-1.345 2.989-4.048l2.939-5.087q1.423-2.463 2.218-4.963l1.42.845q9.226 5.487 5.09 12.646zm-2.267-1.376q1.515-2.623.78-5.092-.71-2.373-3.293-3.936l-6.375 11.034q6.024 2.95 8.888-2.006zm12.491 11.475-2.538 2.356-7.755-3.61q1.263-1.43 2.752-4.721l2.347-5.19q1.107-2.448 1.619-4.942l8.056 3.75-2.206 1.872q-1.129-1.483-2.781-2.253-.208-.096-1.054-.452l-2.18 4.821 4.792 2.23-2.445 1.762q-1.041-1.315-3.077-2.378l-2.338 5.17q2.705 1.029 3.345 1.2 1.705.486 3.463.385zm11.089 2.876q-.794 2.14-2.877 2.745-1.87.526-4.042-.304-1.402-.536-2.563-1.785l1.096-2.955q.368 1.182.79 1.79.56.797 1.523 1.165 1.06.405 2.062.044 1.067-.374 1.458-1.428.407-1.097-.607-2.774l-1.918-3.064q-.926-1.917-.305-3.59.73-1.966 2.606-2.576 1.726-.568 3.706.188 1.328.507 2.456 1.583l-1.012 2.727q-.582-1.165-.855-1.517-.514-.656-1.403-.995-.92-.352-1.721-.037-.841.324-1.18 1.236-.387 1.043.632 2.71l1.906 3.096q.906 1.971.248 3.742zm5.889 6.697-3.407-1.114q1.175-1.884 1.792-3.828l2.21-6.96q.832-2.618.938-4.767l3.407 1.114q-1.161 1.803-1.993 4.421l-2.175 6.85q-.653 2.055-.772 4.284zm16.245 4.645-2.815-.772q-2.094-3.304-4.051-8.806l-.586 2.196q-.713 2.678-.784 5.123l-3.456-.947q.987-1.57 1.778-4.538l1.77-6.644q.535-2.006.656-4.594l1.711.47q3.268.895 4.704 1.998 2.24 1.733 1.484 4.567-.725 2.723-4.103 3.216 1.253 4.19 3.692 8.73zm-2.172-12.523q.762-2.857-2.807-4.136l-1.702 6.387q1.601.258 2.742-.198 1.367-.551 1.767-2.053zm15.233 12.06-1.973 2.86-8.343-1.814q.927-1.674 1.675-5.215l1.18-5.583q.557-2.633.522-5.18l8.667 1.883-1.752 2.314q-1.42-1.199-3.197-1.586-.224-.048-1.126-.209l-1.096 5.187 5.155 1.12-2.009 2.258q-1.298-1.054-3.513-1.642l-1.175 5.56q2.861.41 3.522.434 1.77.1 3.463-.387zm24.293-12.086-.935 2.759q-1.276-.64-2.203-.848-.734-.164-2.333-.238l-.344 9.651q-.134 3.774.376 5.8l-3.792-.145q.658-1.785.803-5.854l.34-9.552q-1.859.052-2.76.14-1.498.164-2.69.562l1.02-2.756zm16.588 16.989-3.794.096q.528-2.08.492-3.446l-.114-4.33-7.297.185.058 2.214q.076 2.89.74 5.532l-3.794.095q.528-2.056.449-5.081l-.18-6.826q-.08-3.1-.723-5.41l3.793-.095q-.532 2.376-.483 4.221l.084 3.198 7.297-.185-.06-2.25q-.068-2.595-.717-5.139l3.794-.096q-.535 2.242-.463 5.009l.17 6.432q.091 3.517.748 5.876zm15.262-4.579-1.144 3.51-9.016.721q.438-1.985.134-5.811l-.479-6.034q-.225-2.846-1.026-5.423l9.367-.749-1.085 2.889q-1.8-.782-3.723-.629-.241.02-1.205.134l.445 5.605 5.571-.446-1.362 2.911q-1.634-.672-4.06-.589l.477 6.01q3.028-.464 3.707-.642 1.826-.442 3.4-1.457zm26.307-1.107-2.955.629q-3.465-2.051-7.827-6.195l.48 2.305q.587 2.81 1.658 5.1l-3.626.773q.18-1.918-.47-5.035l-1.455-6.974q-.44-2.105-1.53-4.55l1.795-.383q3.43-.73 5.266-.396 2.87.532 3.491 3.507.596 2.858-2.289 4.921 3.103 3.27 7.462 6.298zm-7.822-10.52q-.626-2.999-4.511-2.479l1.399 6.704q1.597-.525 2.436-1.49 1.004-1.159.676-2.735zm14.046 8.748-3.578.976q-.027-2.308-.572-4.35l-1.95-7.311q-.733-2.75-1.836-4.678l3.578-.976q-.006 2.23.728 4.98l1.919 7.195q.576 2.159 1.711 4.164zm15.225-13.921q.036 1.376.268 2.338.143.598.723 2.278.6 1.736 1.215 2.754-2.559 1.961-5.152 2.878-3.666 1.297-6.607.006-3.058-1.337-4.331-5.025-1.313-3.802.29-7.043 1.58-3.194 5.325-4.519 1.833-.648 4.225-.768l.952 2.758q-2.589-.74-4.992.11-2.56.905-3.417 3.36-.793 2.28.127 4.946.925 2.678 2.794 3.915 2.062 1.359 4.622.454 1.296-.459 2.939-1.804l-.713-2.065q-.666-1.93-1.767-3.336zm19.043.277-3.334 1.639q-.36-2.069-.934-3.27l-1.823-3.807-6.412 3.151.932 1.947q1.217 2.542 2.858 4.622l-3.333 1.638q-.349-2.047-1.623-4.707l-2.875-6.004q-1.306-2.725-2.796-4.518l3.334-1.639q.473 2.334 1.25 3.956l1.346 2.812 6.412-3.15-.948-1.98q-1.093-2.282-2.682-4.281l3.334-1.638q.416 2.214 1.581 4.648l2.71 5.657q1.48 3.093 3.003 4.924zm5.136-23.29.786 2.739q-1.372.217-2.227.58-.676.289-1.991 1.143l5.083 7.909q1.988 3.093 3.52 4.42l-3.105 2.05q-.466-1.802-2.609-5.136l-5.031-7.828q-1.453 1.103-2.122 1.688-1.103.987-1.832 1.985l-.716-2.784z' style=';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center' aria-label='DESIRE THE RIGHT' font-weight='400' font-size='13.552' font-family='Narkisim' letter-spacing='.932' word-spacing='4.557' text-anchor='middle'/%3e%3c/g%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M801.528 423.987c-1.148-1.173-2.756-3.055-4.067-4.759-3.531-4.588-6.143-9.468-7.414-13.853-.447-1.54-.59-2.42-.64-3.938-.042-1.298-.04-1.327.155-2.305.61-3.04 1.514-4.973 3.042-6.495 1.264-1.26 2.582-2.007 4.899-2.78 2.302-.768 4.296-1.075 6.56-1.01 3.565.103 6.625 1.111 11.364 3.745 1.153.64 3.358 1.966 3.644 2.19.112.088.118.143.067.704-.185 2.016-.215 3.638-.22 11.618-.003 5.977-.028 8.63-.088 9.602-.045.74-.096 1.386-.113 1.437-.02.062-.232-.106-.652-.517-.982-.963-1.75-1.532-2.734-2.023-2.03-1.016-4.118-1.03-6.694-.047-2.699 1.03-4.844 3.254-5.91 6.127-.257.69-.516 1.696-.585 2.268-.025.205-.064.409-.088.453-.028.052-.209-.091-.526-.417z' color='%23000' overflow='visible' fill='%23faecbd' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M817.824 417.35c-1.316-1.237-2.897-2.133-4.232-2.4-.501-.1-.52-.114-.52-.386.002-.155-.267-5.53-.597-11.944-.329-6.414-.575-11.685-.547-11.713.124-.124 4.821 2.408 6.587 3.55.7.453.664.335.524 1.719-.05.498-.129 5.488-.174 11.09-.045 5.601-.108 10.317-.141 10.479-.033.162-.086.292-.118.29-.032-.003-.384-.311-.782-.685z' color='%23000' overflow='visible' fill='%23ae4c33' stroke='%23000' stroke-width='.011' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M808.32 415.545c0-.043-.81-6.037-1.8-13.321s-1.773-13.269-1.742-13.3c.114-.114 2.356.251 3.414.556.599.173 1.679.545 2.4.827l1.313.513v.831c0 .863.96 20.663 1.08 22.283l.068.92-.44-.072c-.611-.099-2.32.17-3.393.535-.495.169-.9.271-.9.228z' color='%23000' overflow='visible' fill='%23dba35a' stroke='%23000' stroke-width='.016' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M800.555 422.839c-4.143-4.659-7.142-9.202-9.12-13.817-1.855-4.326-2.362-7.661-1.627-10.694 1.149-4.743 3.255-7.007 7.896-8.485 1.917-.61 3.661-.92 5.357-.952.834-.016 1.543 0 1.575.036.032.035.674 4.673 1.426 10.306.752 5.633 1.556 11.625 1.786 13.315l.418 3.073-.776.416c-2.655 1.424-4.558 4.043-5.257 7.234-.12.545-.26.992-.314.992-.054 0-.667-.64-1.364-1.424z' color='%23000' overflow='visible' fill='%23e9be79' stroke='%23000' stroke-width='.016' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cpath d='M812.157 433.244c-3.19-2.288-6.046-4.667-8.653-7.209-.863-.84-1.517-1.56-1.453-1.6.063-.04.237-.582.385-1.205.856-3.606 3.175-6.382 6.317-7.565 3.47-1.306 6.196-.744 8.953 1.85l1.021.96-.141 1.408c-.53 5.263-1.898 9.675-4.135 13.347-.354.58-.688 1.056-.743 1.056-.054 0-.752-.469-1.551-1.042zm-21.61 23.391c-.464-.56-2.974-5.816-3.388-7.097-.473-1.462-1.243-4.455-1.42-5.52l-.097-.576 1.25 1.194c3.026 2.893 7.07 6.299 9.885 8.325.65.467 1.182.896 1.185.952 0 .078-.857 1.438-1.099 1.737-.02.027-1.294.27-2.828.54-1.535.271-2.914.523-3.064.56-.154.037-.34-.014-.424-.115z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23012169' stroke='%23500' stroke-width='.989' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cg color='%23000' paint-order='markers stroke fill'%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m1012.15 472.736 4.95-14.595-8.871 4.98-1.178 2.715.272 2.535.543 1.72 1.268 1.357z' overflow='visible' fill='%23f9e7d9' stroke='%23500' stroke-width='.158' stroke-linejoin='round'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M1036.728 442.27c1.037 1.628.214 2.325 0 3.328 0 0-6.87 7.445-9.282 11.843-1.947 3.55-4.033 11.458-4.033 11.458.59-2.844-4.655-7.381-8.45-7.681-2.95-.234-6.859 1.96-7.425 4.865-.517 2.649 1.295 5.993 4.609 6.657-8.955-2.025-4.482-10.673-2.816-14.66 0 0 2.602-4.531 3.456-6.985 1.678-4.82 3.2-14.97 3.2-14.97 10.834-4.112 16.627-.303 20.741 6.144z' overflow='visible' fill='%23e6ba74'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M1024.77 434.428c4.034.162 7.055 1.92 9.495 4.588-4.153 7.179-10.65 17.954-10.65 17.954l7.607-17.926c-2.909-3.217-6.59-3.733-10.863-2.173l.252-2.078c1.492-.288 2.882-.417 4.158-.365z' overflow='visible' fill='%23f9e7d9'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M1019.89 434.93c-1.12 7.778-2.907 21.033-3.646 26.536a6.613 6.613 0 0 0-1.282-.247c-2.95-.234-6.857 1.96-7.423 4.864-.467 2.39.968 5.34 3.687 6.383-7.664-2.415-3.499-10.55-1.895-14.386 0 0 2.601-4.532 3.455-6.985 1.678-4.82 3.2-14.97 3.2-14.97a29.255 29.255 0 0 1 3.904-1.195zm-8.664 37.536c.3.094.584.199.922.275a5.705 5.705 0 0 1-.922-.275z' overflow='visible' fill='%23c47645'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m1018.96 435.177-5.677 26.168c-2.582.484-5.28 2.36-5.744 4.738-.467 2.39.968 5.34 3.687 6.383-7.664-2.415-3.499-10.55-1.895-14.386 0 0 2.601-4.532 3.455-6.985 1.678-4.82 3.2-14.97 3.2-14.97a29.975 29.975 0 0 1 2.975-.948z' overflow='visible' fill='%23ab1e2b'/%3e%3cpath d='M572.738 673.714c-.682 1.023-.14 1.461 0 2.091 0 0 4.514 4.678 6.098 7.44 1.28 2.232 2.65 7.2 2.65 7.2-.388-1.787 3.058-4.638 5.551-4.826 1.938-.147 4.506 1.232 4.879 3.057.34 1.664-.852 3.765-3.028 4.183 5.883-1.273 2.944-6.706 1.85-9.211 0 0-1.71-2.848-2.271-4.389-1.103-3.028-2.103-9.406-2.103-9.406-7.117-2.584-10.923-.19-13.626 3.86z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='none' stroke='%23520' stroke-width='.102' stroke-linejoin='round' transform='matrix(-1.5221 0 0 1.5916 1908.497 -630.008)'/%3e%3c/g%3e%3cpath d='M1009.326 457.738c.419-.542 2.683-5.623 3.056-6.861.427-1.414 1.44-4.18 1.6-5.21l.087-.557-1.127 1.155c-2.73 2.797-6.633 6.28-9.173 8.239-.585.451-1.066.866-1.068.92 0 .076.709 1.072.927 1.362.02.025 1.167.26 2.552.522 1.384.262 2.628.505 2.764.54.139.037.306-.013.382-.11z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23012169' stroke='%23500' stroke-width='.923' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cpath d='M899.032 441.717s-127.428-32.369-126.685-155.514l.982-162.78h251.408l.985 161.845c.743 123.145-126.69 156.45-126.69 156.45z' font-size='12' fill='%232a7fff' fill-rule='evenodd'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M859.96 271.502c-1.107-.336-1.654-.836-1.654-1.513 0-.336-.17-.53-.42-.478-.232.048-.613-.176-.848-.497-.396-.543-.293-.735 1.463-2.715l1.89-2.13.845-3.601c.887-3.775 2.164-11.526 2.488-15.098.206-2.274.413 2.31-.144 2.11-1.945-.273-2.802-3.676-5.764-3.836-3.097-.166-4.4-5.722-5.244-5.976-2.237-.674-6.306-1.593-10.15-5.464-3.494-3.519-3.742-3.879-5.613-8.13-.472-1.074-1.508-2.924-2.301-4.113l-1.443-2.16-.323-4.553c-.178-2.505-.532-5.538-.787-6.74-.495-2.343-.448-2.998.508-7.066.51-2.17.562-3.069.397-6.884l-.19-4.387-1.462-1.56c-1.903-2.031-2.558-3.59-2.85-6.789-.387-4.229-2.008-8.04-5.101-8.885-.812-.222-2.933-.26-6.625-.118-7.524.29-9.25 1.219-9.655-1.453-.095-.63-.438-1.427-.76-1.774-.433-.464-.68-1.37-.939-3.443l-.352-2.813.921-1.265c2.607-3.577 11.966-13.09 19.453-19.772.93-.83 1.234-1.34 1.358-2.269.18-1.362.773-1.938 2.246-2.189 2.012-.341 2.19-.428 2.68-1.306.54-.97 1-1.071 2.46-.538.847.308 1.04.278 1.622-.25.597-.542 1.003-.595 4.155-.546 3.012.046 3.637.142 4.539.692.575.35 2.005.967 3.178 1.37 1.173.402 2.35.93 2.616 1.173s1.263.761 2.216 1.152c2.323.952 6.224 3.257 8.61 5.088 1.07.821 2.896 1.996 4.056 2.611 3.674 1.948 11.765 8.318 12.345 9.72.293.708.76 1.127 1.717 1.54.723.313 1.875 1.089 2.56 1.724l1.246 1.154 4.657.475c8.341.85 12.663 1.061 21.844 1.068 10.27.008 13.407-.209 23.423-1.615 11.674-1.639 16.47-2.01 23.288-1.804 6.47.196 7.855.389 10.487 1.462 3.7 1.508 10.079 5.823 13.42 9.079 2.737 2.666 6.279 10.14 8.277 17.468 1.174 4.302 1.499 7.405 1.036 9.895-.55 2.96-1.464 3.375-2.605 1.181-1.236-2.377-1.845-3.408-1.95-3.302-.064.064.032 1.01.211 2.103.244 1.485.241 2.358-.01 3.46-.578 2.526-.437 3.325 1.124 6.366l1.461 2.846-.29 2.938c-.158 1.615-.292 3.679-.296 4.586l-.008 1.649-1.336.515c-1.333.513-1.335.517-1.093 1.582.876 3.84-.45 7.75-3.272 9.64-.867.581-1.59 1.203-1.605 1.382-.155 1.79.918 9.129 1.766 12.074.661 2.298.737 4.426.286 8.052-.31 2.494-.707 3.528-2.528 6.583l-1.019 1.71.661 2.109c.363 1.16.673 2.567.689 3.128.027.989-.018 1.031-1.428 1.367-2.11.503-4.27.484-5.018-.045-.352-.25-.932-.379-1.302-.291-.366.087-.856.034-1.088-.119-.355-.233-.257-.685.627-2.866 1.058-2.613 2.358-7.128 2.708-9.404.105-.684-.023-2.775-.287-4.7-.585-4.258-1.566-6.485-4.428-10.05-1.551-1.932-2.415-2.715-3.973-3.598-1.094-.62-2.092-1.128-2.217-1.128s-.58.98-1.013 2.176c-.837 2.315-1.27 2.88-2.605 3.392-.836.32-.837.326-.7 2.444.076 1.167.505 3.253.953 4.634l.814 2.513-1.242 2.775c-.684 1.526-1.47 3.438-1.75 4.25-.616 1.795-1.717 4.004-2.765 5.55l-.78 1.152.652 2.08c.359 1.144.665 2.538.68 3.1.027.988-.017 1.03-1.427 1.367-2.425.577-4.318.495-5.23-.229-.603-.479-.85-.542-1.021-.262-.244.398-1.463.161-1.463-.284 0-.142.436-1.356.97-2.698 1.181-2.967 1.917-5.729 3.11-11.669l.91-4.53-.638-1.785c-1.095-3.068-4.324-9.2-5.263-9.997-.49-.415-1.246-.748-1.705-.748-.623 0-1.152-.368-2.171-1.512l-1.348-1.512-2.541 1.218c-1.653.793-2.947 1.22-3.701 1.221-.638.001-2.05.087-3.14.19-1.779.17-2.022.272-2.395.999-.98 1.914-1.793 2.152-3.456 1.012l-1.072-.733-.844.629c-.738.55-1.079.605-2.727.435-1.619-.168-2.033-.106-2.943.436-.883.525-1.288.592-2.428.4a17.056 17.056 0 0 0-2.837-.174 6.426 6.426 0 0 1-2.771-.526c-1.037-.463-1.538-.529-2.46-.32-1.944.437-8.533.161-10.302-.432-1.305-.437-1.723-.463-2.618-.165-1.623.54-2.67.305-3.232-.725-1.081-1.985-2.558-.553-2.367 2.295.13 1.921-.444 2.552-2.318 2.552-1.231 0-1.453.1-1.896.856-.275.47-.803.995-1.172 1.165-.64.294-.664.415-.506 2.595.115 1.587.02 2.96-.313 4.49-.826 3.806-1.035 5.332-1.224 8.972l-.185 3.54 1.207 2.703c.663 1.486 1.206 2.828 1.206 2.981 0 .153-.45.626-1.002 1.05-1.385 1.066-3.927 1.62-6.193 1.348-1.604-.192-1.95-.357-3.04-1.445l-1.228-1.227 1.507-2.179c2.066-2.985 2.39-4.403 2.38-10.445-.009-6.15-.426-11.78-.895-12.072-.389-.243-1.584 2.02-1.746 2.185-.057.057-2.253.098-2.596 3.392-.697 6.682-1.23 9.143-2.75 12.716l-1.04 2.44.888 2.452c1.007 2.786.954 2.989-1.023 3.896-1.251.574-4.815.714-6.35.249z' color='%23000' overflow='visible' fill='%23333' stroke='%23333' stroke-width='3.938' paint-order='markers stroke fill'/%3e%3cg color='%23000' paint-order='markers stroke fill'%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M861.759 234.84c.386 1.289 1.803 6.827 1.803 8.501 0 1.674-1.16 7.212-1.16 8.887 0 1.674-2.317 10.947-2.317 10.947l6.182 1.03 2.575-6.053s1.03-5.538 1.03-6.31c0-.773.902-11.077.902-11.077l-.386-6.697z' overflow='visible' fill='%23c27e50'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m868.97 236.772-6.051.13c.386.773.128 1.803 1.287 3.22 1.16 1.416 2.318 2.833 2.833 3.348.515.516.773 1.417.773 2.963 0 1.545.128 2.704.128 4.636s-1.158 5.795-1.415 6.826c-.258 1.03-2.062 5.794-2.062 5.794s1.388-.578 2.124-.234l2.256-5.303s1.03-5.539 1.03-6.312c0-.772.902-11.075.902-11.075l-.175-3.022z' overflow='visible' fill='%23ab612e'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m860.154 263.257-4.007 4.372c.139.438.724 1.29.981 1.677.09.135 2.077-2.448 2.18-2.321.16.195-1.94 2.658-1.748 2.833 1.364 1.232 3.556 1.914 6.51 1.545 2.362-.446 3.284-.863 4.099-2.277l-1.867-4.918z' overflow='visible'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M861.534 264.735c-.161.29-3.185 4.647-3.097 4.74 2.223 2.39 8.304 2.027 8.441.075-3.183.462-5.246 1.2-7.212-1.24z' overflow='visible' fill='%23a1a1a1'/%3e%3c/g%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M850.433 236.05c1.276.639 3.617 5.32 3.617 5.32s1.277 2.34 2.34 2.553c1.064.213 0-1.064 2.34.639 2.341 1.702 5.32 2.978 5.32 2.978l4.256-.212s4.255-.851 5.106-1.277c.852-.426 1.277.213 1.915-2.128.639-2.34 1.49-2.766 1.703-5.958.212-3.191.212-8.723.212-8.723l-.85-3.617h-5.746l-7.66.425-5.532-.425-2.553 3.617z' color='%23000' overflow='visible' fill='%23acacac' paint-order='markers stroke fill'/%3e%3cg style='marker:none' fill='%23e2c773' stroke='%23000' stroke-width='.25' stroke-linejoin='round' paint-order='markers stroke fill' color='%23000'%3e%3cpath d='M849.357 154.702s-1.658-2.448-1.974-2.921c-.316-.474-1.5-2.527-2.685-4.502-1.185-1.974-1.176-2.756-2.212-3.79-1.184-1.184-2.745-2.025-4.343-2.528-2.444-.768-5.1-.737-7.66-.631-1.44.06-2.891.272-4.264.71-2.175.696-5.606 2.606-6.159 3.001-.553.395-3.712 3.554-3.712 3.554s-1.658 1.58-2.132 2.132c-.474.553-2.527 2.448-3.238 3-.71.553-2.843 3.397-3.317 3.791-.474.395-.71.711-1.343 1.343-.631.632-1.026 1.421-1.263 1.737-.236.316-.79 1.264-.79 1.264s0 1.342.237 2.053c.162.764-.063 2.574.553 3.632.32.552 1.5 1.185 1.5 1.185 3.847.1 7.544.573 7.266-1.895-.76 1.834-4.276 3.665-7.266 1.888l-.315 1.35c.12.605.097 1.253.868 1.658 2.119 1.041 3.82 1.145 5.528 1.263l4.896-.71c1.638-.185 6.265-.21 8.466 2.234 1.558 1.75 4.628 7.603 3.98 9.755l20.977-.559-.106-16.064-.426-8.511z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23d7b5a0' stroke='%237d5035' stroke-width='.422'/%3e%3cpath d='M820.463 144.038c-.575.562-.739.824-1.772 1.608-1.033.785-1.95 1.699-3.793 3.726-1.843 2.026-3.638 2.828-2.077 3.596 1.561.77.979 1.29 1.382 1.887.402.596.209 1.804.938 3.656.73 1.851 4.333 2.128 4.333 2.128s2.837.601 3.03-.398c.194-.999-.876-2.968 1.039-3.219 1.914-.25 2.58 1.122 3.849-.343 1.268-1.464.732-4.314 2.222-5.321 1.49-1.007 1.885-1.708 1.885-1.708s-2.989.717-3.966.683c-.978-.034-3.879-1.114-4.164-2.05-.285-.936-.874-4.912-.874-4.912z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23d0a386' stroke='none'/%3e%3cpath d='m804.423 162.678 1.027-1.342c.733-.009 1.052.274 1.264.631.386.19.77.35 1.105-.078l-.079-1.264c.545.382 1.028.778 1.105 1.264-.226.617-.508 1.216-1.973 1.421-.738.19-1.572.95-2.152 1.876-.11-.995-.081-1.882-.297-2.508z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23000' stroke-width='.158'/%3e%3cpath d='M812.658 151.787c1.259.948 2.013.764 2.137 2.674.124 1.91-.386 1.692-.039 2.177.347.486 1.847 1.49 2.137 2.674.289 1.185.34 1.857.174 2.582-.165.725-.357 1.343-.252 1.773.106.431.582 1.912.582 1.912s-1.235-.383-1.632-1.541c-.397-1.158-.423-.462-2.112-1.305-8.182 11.42-3.695-3.781-4.069-4.375-.373-.593-2.304-1.491-2.304-1.491 1.808-1.78 3.777-4.47 5.378-5.08z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23dec7b7' stroke='none'/%3e%3cpath d='M834.069 155.376c-.387.644-.902 1.932-2.061 2.576-1.16.644-3.606 1.16-4.637 1.16-1.03 0-1.931-1.16-2.575.128-.644 1.288-1.03 1.803-1.417 2.962-.386 1.16-2.447 1.16-2.576 1.932-.129.773-.773 1.16-.901 2.705a28.049 28.049 0 0 1-.387 2.833s1.03-2.576 2.318-2.704c1.288-.13 1.417 0 3.091-.13 1.675-.128 2.963-.257 3.864-1.416.902-1.16 2.705-2.19 4.122-2.318 1.416-.129 2.704-.387 3.348-2.06.644-1.675 1.16-1.675.644-2.963-.515-1.288-2.833-2.705-2.833-2.705zm-8.157-9.598c1.64 0 1.549-.182 2.368 0 .82.182 1.366.637 1.822 1.275.455.637.182 1.184 1.275 1.275 1.092.09 1.82.546 1.82.546s.365.91.73.82c.364-.091.455-1.822.455-2.641 0-.82-.82-2.368-.82-2.368l-1.64-.91s-.594-.243-1.687-.516-1.226.242-1.773.242c-.546 0-.82-.273-1.457.455-.637.729-1.184 1.457-1.184 1.457z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23d0a386' stroke='none'/%3e%3c/g%3e%3cpath d='M823.681 149.512s.73-1.056 1.184-1.503c.34-.334.679-.74 1.138-.865.752-.205 1.612-.047 2.323.273.52.234.91.364 1.275 1.138.364.774.09.729.592 1.048.5.318.637.455.637.455s-.319.182-1.002.546c-.683.365-1.154.675-1.776.911-.454.173-.927.408-1.411.364-.616-.055-1.118-.527-1.685-.774-.256-.111-.774-.318-.774-.318s-.364.09-.592.5c-.228.41-.455.547-.683 1.093a27.974 27.974 0 0 1-.637 1.366l-.274.41s-.182-.683-.182-1.047c0-.364.046-.82.137-1.366.09-.547.728-1.457.728-1.457z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23662900' paint-order='markers stroke fill'/%3e%3cg color='%23000' paint-order='markers stroke fill'%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M874.38 240.636c0 2.061.644 6.182.773 9.016.129 2.833.129 4.508.129 6.31v4.219l-.612 3.284 6.15-.033s-.495-1.306-.31-2.982c.301-2.725.696-6.425.696-7.063 0-1.03-.386-8.243-.386-8.243l-1.16-4.121z' overflow='visible' fill='%23c27e50'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M874.896 243.985s-.13 3.864.386 5.152c.515 1.288 3.477.644 4.121 2.704.644 2.061 1.288 4.38 1.288 4.38l.36-2.448.8-2.511.772-4.186-2.125-12.235s-7.405 0-7.405.773c0 .772 1.803 8.371 1.803 8.371z' overflow='visible' fill='%23ab612e'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m874.628 263.32-3.484 4.798c.187.42.865 1.2 1.165 1.556.104.123 1.786-2.67 1.903-2.555.18.175-1.627 2.862-1.415 3.014 1.495 1.069 3.75 1.497 6.644.793 2.295-.71 3.163-1.23 3.812-2.728l-2.414-4.673z' overflow='visible'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M876.166 264.63c-.127.307-2.635 4.98-2.537 5.063 2.48 2.12 8.48 1.068 8.395-.887-3.11.821-5.075 1.788-7.306-.412z' overflow='visible' fill='%23a1a1a1'/%3e%3c/g%3e%3cg color='%23000' paint-order='markers stroke fill'%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M943.21 225.555c.91 4.917 2.368 10.2 4.007 12.932 1.64 2.732 4.553 9.653 4.553 9.653s-1.457 5.282-1.457 6.557c0 1.275-1.639 7.559-1.639 7.559l6.01-.638s2.915-4.189 3.461-6.739c.547-2.55 2.915-6.01 2.915-7.103s-1.64-4.918-1.64-4.918-.364-7.468-.364-8.743c0-1.275.182-9.107.182-9.107z' overflow='visible' fill='%23c27e50'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m959.24 225.008-12.194.417c1.264 2.869 2.343 5.027 4.178 7.779 2.185 3.278.911 2.187 3.097 6.558 2.185 4.371 1.457 4.917 3.097 6.92 1.639 2.004 2.001 3.644 2.001 3.644s.766-.88 1.567-2.181c.035-.134.073-.272.073-.37 0-1.093-1.64-4.916-1.64-4.916s-.362-7.47-.362-8.744c0-1.275.182-9.107.182-9.107z' overflow='visible' fill='%23ab612e'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m949.633 263.374-1.068 4.437c1.693 1.652 4.876.696 7.985-.128l-1.803-6.054-6.182.516-2.319 5.409c1.248.522 2.262.83 2.069.031z' overflow='visible'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M954.36 262.917c.129.322 1.481 4.25 1.481 4.25-2.198.818-4.324 1.273-6.182.387l5.023-1.03z' overflow='visible' fill='%238a8a8a'/%3e%3c/g%3e%3cpath d='M937.441 228.14c1.277.639 3.617 5.32 3.617 5.32s1.277 2.34 2.34 2.553c1.065.213 0-1.064 2.341.639 2.34 1.702 5.32 2.979 5.32 2.979l4.255-.213s4.256-.851 5.107-1.277c.85-.425 1.276.213 1.915-2.128.638-2.34 1.49-2.766 1.702-5.957.213-3.192.213-8.724.213-8.724l-.851-3.617h-5.745l-7.66.425-5.532-.425-2.554 3.617z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23acacac' paint-order='markers stroke fill'/%3e%3cg color='%23000' paint-order='markers stroke fill'%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M965.18 230.029c1.288 3.735 5.308 7.608 6.08 9.024.773 1.417.142.691 2.548 3.902.129 4.121 1.416 7.598.901 9.401-.515 1.804-1.674 6.955-1.674 6.955l5.667-.515s1.288-2.318 2.06-3.477c.773-1.16 1.932-3.993 1.932-3.993s-.128-5.28-.128-5.924c0-.644-1.546-7.985-1.546-7.985l-3.477-5.152-2.834-2.962z' overflow='visible' fill='%23c27e50'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M966.982 228.401c1.159 2.447 4.557 7.197 6.746 7.97 2.19.772 2.27 2.205 2.27 2.205s.643 1.159.514 3.477c-.128 2.318-1.288 3.349.516 5.41 1.803 2.06 3.734 2.575 3.734 2.575l1.817.979.433-6.805-1.348-4.22-.644-3.992-.745-5.987-5.695-3.415z' overflow='visible' fill='%23ab612e'/%3e%3cpath d='m974.039 260.152-1.068 4.438c1.693 1.65 4.876.695 7.985-.129l-1.803-6.053-6.182.515-2.319 5.41c1.248.521 2.262.83 2.069.03z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible'/%3e%3cpath d='M978.766 259.696c.129.322 1.481 4.25 1.481 4.25-2.198.817-4.324 1.273-6.182.386l5.023-1.03z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%238a8a8a'/%3e%3c/g%3e%3cpath d='M820.59 143.702c1.193-1.948 2.116-2.089 3.205-3.101.706-.657 2.158-1.93 2.158-1.93s-.122-2 .502-2.645c1.017-1.054 4.285-.972 4.285-.972s.023-1.586.608-1.9c1.017-.546 3.329.943 3.329.943s.59-1.448 1.246-1.688c1.139-.418 3.541.837 3.541.837s1.641-.92 2.524-.837c1.223.115 1.838 1.369 3.221 1.794 1.383.426 2.7.554 3.907 1.185.652.34 1.732 1.369 1.732 1.369s2.012.53 2.949.971c.958.45 2.69 1.688 2.69 1.688s1.225.506 1.778.865c1.333.867 3.648 3.072 3.648 3.072s2.278 1.016 3.374 1.61c1.07.58 3.115 1.9 3.115 1.9s2.193 1.767 3.268 2.674c.945.797 2.797 2.433 2.797 2.433s1.822.738 2.414 1.472c.47.583.324 1.86.738 2.124s1.962.526 2.797 1.073c.862.564 2.168 2.2 2.168 2.2 13.929 1.834 28.3 2.343 43.257 1.09 0 0 17.094-2.912 25.728-3.009 5.34-.06 10.936-.335 15.949 1.505 5.512 2.023 14.444 10.08 14.444 10.08l4.514 8.125 3.009 9.329c2.515 8.505-.597 15.54-2.106 9.328-.805.831-3.282-8.091-3.16-8.275l-.903-4.965 1.655 9.404 1.204 5.34-.752 3.16-.753-1.955.753 4.212 2.858 4.966v2.256l-.451.602-.15 6.77-2.86.904c.812 2.209 1.378 4.356.603 6.168l-1.806 3.612-3.46 2.106c-.014 1.54.594 3.159-.903 4.514-1.241.295-2.304 1.575-3.912-.15 0 0-1.434 1.62-2.407 1.654-.989.035-2.558-1.504-2.558-1.504l-2.859.451-3.761-1.956-3.01 1.354h-1.956l-4.664-3.31s-4.062-.903-4.514 0c-.451.903-2.407 1.354-2.407 1.354l-3.761-1.203-3.611 1.053-1.655 1.204-3.01 2.106-2.708-.301s-3.31-.451-3.61.451c-.302.903-.773 2.834-1.957 3.01-1.232.182-2.859-2.408-2.859-2.408s-.777 1.515-1.504 1.806c-1.219.487-3.912-.452-3.912-.452s-1.445 1.505-2.407 1.655c-1.035.162-3.01-.902-3.01-.902s-1.486.713-2.256.601c-1.048-.151-2.709-1.655-2.709-1.655s-1.965.82-3.009.903c-1.513.12-4.514-.602-4.514-.602s-1.342.627-2.051.584c-1.399-.085-2.553-1.428-3.874-1.63-.855-.13-1.471 1.252-1.885 1.252-1.053 0-1.953-.576-1.953-.576l-.615-1.472-1.122-.35-.687.387c1.015 1.321-.38.89-.752 1.204l.602 2.256c-.223.839.423 1.75-1.956 2.408 0 0-1.956-.753-2.107 0-.15.752-.902 1.655-.902 1.655s-2.619.038-2.408.602c.432 1.153.945 2.307 0 3.46 0 0-2.062.757-3.088.552-.92-.184-2.366-1.52-2.366-1.52l-1.015-2.793s-3.105-.115-4.364-.903c-1.394-.873-3.009-3.912-3.009-3.912h-2.859s-4.062-.15-4.664-.15c-.602 0-7.69.238-11.134-1.204-2.63-1.102-6.62-5.417-6.62-5.417s-3.164-2.958-4.213-4.814c-.647-1.146-1.204-3.762-1.204-3.762l-1.805-2.858s-1.866-2.247-2.257-3.611c-.18-.627 0-1.956 0-1.956l-.451-6.922s-1.043-2.663-1.054-4.062c-.014-1.91 1.355-5.567 1.355-5.567l.451-3.761-.602-3.762s.316-1.863 0-2.708c-.535-1.432-2.21-2.158-3.009-3.46-.594-.97-1.08-2.042-1.279-3.16-.185-1.041.28-2.127.105-3.17-.242-1.435-1.566-4.076-1.566-4.076l.634-1.33s4.363-4.364 5.717-4.364c1.354 0 4.136.703 5.785-.3 2.036-1.24 3.757-3.791 3.611-6.17-.146-2.392-3.462-3.495-4.363-5.717-1.025-2.527-.97-8.125-.97-8.125l-1.355-3.31-1.956-2.257-5.567-1.053z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23c9c9c9' stroke='%23b3b3b3' stroke-width='.158' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cpath d='M836 204.832c3.607.515 4.895.773 7.857-.128 2.962-.902 5.795-2.19 5.795-2.19s-1.674 2.576-3.09 3.349c-1.417.772-3.736 2.19-3.607 2.704.13.515.258.13 2.319-.644 2.06-.772 6.053-2.833 2.962.773-3.091 3.606-4.508 4.121-4.766 4.894-.257.773-1.674 2.705-1.545 3.864.129 1.159 5.023-.644 5.023-.644s-2.06 1.545-4.122 3.606c-2.06 2.06-3.09 2.962-3.09 2.962s-2.319-1.288-2.448-5.924c-.128-4.637-1.545-9.66-1.803-10.69-.257-1.03 0-2.318 0-2.318z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23acacac' paint-order='markers stroke fill'/%3e%3cpath d='M839.06 220.893c-.387.103-.087-.61-1.591-.61-1.325 0-2.192-.1-3.007-.282.035.043.2.263.2.263l1.808 2.859s.556 2.615 1.203 3.761c1.05 1.857 4.213 4.815 4.213 4.815s3.99 4.314 6.62 5.416c3.443 1.442 10.532 1.204 11.134 1.204.542 0 3.55.112 4.205.136a26.335 26.335 0 0 1-.799-1.923c-1.805-4.814-2.407-3.31-3.61-4.514-1.204-1.203-1.205-.601-3.31-3.61-2.107-3.01-6.32-1.505-6.32-1.505s-3.31-.301-5.416-2.106c-2.107-1.806-.782-.487-2.587-2.594-.677-.79-2.638 2.853-2.742-1.31z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23959595' paint-order='markers stroke fill'/%3e%3cpath d='M836.264 134.295s-1.433 2.345-1.954 2.997c-.522.652-2.608.784-3.13.784l-2.997 1.694 4.562.13 3.78 3.519 3.26 6.126-1.435-6.256 5.475 1.435s.131 3.518-.13 4.17c-.26.652-2.086 4.042-2.607 5.346-.522 1.303 4.562 5.083 4.562 5.083v-4.04l6.388-4.043 4.824-3.649 3.519 2.738s3.519 5.475 3.519 6.127c0 .19-.32.839-.75 1.63-3.236 2.792-5.698 6.56-7.785 10.298-1.477 5.585-10.634 1.604-4.485-2.303 1.493-2.004 3.807-4.698 5.74-7.16-3.411 1.54-8.617.93-11.73 2.902-4.233 3.504-11.596 8.968-14.967 10.085 1.461.078 2.984-.198 4.402.237 6.773-1.167 2.4 4.927-2.002 3.995-6.46-.198 1.094 2.89 3.811 2.052 3.734-.43 11.923-.052 6.014 4.355 6.877 3.124 12.64-2.238 18.128-5.398 1.818 1.79-5.618 6.888-7.756 9.108-3.534 4.677-8.504 4.302-13.431 4.205-2.548 2.142 3.28 1.356 4.756 1.478.217 3.918-14.752 2.284-8.664 8.245 6.083.483 12.413.952 18.317-.97 4.663-1.639.622 2.113-.609 3.468 1.981 3.07 8.161-2.203 11.682-2.49 2.381 5.2-7.209 5.635-10.344 8.604 3.164.437 13.713.443 17.386-5.076 4.425-3.838 6.04 2.353 2.43 4.787-4.413 3.545-10.154 7.35-15.559 7.666-7.07-4.732-6.015 3.748-11.089 6.808 8.194 1.366.642 3.259 4.064 4.604 6.58 1.55 10.432-6.348 16.438-2.158 5.33 4.252 1.247-9.583 5.595-6.783-1.697-6.376 6.6-4.366 6.878.481.678 4.4 3.59 3.238 2.887-.681.325-3.332-.122-6.476-2.595-8.981-1.968-5.89 8.102-3.73 6.451 1.794 2.297 8.673.661-9.632 4.153-5.977 3.513 4.356 1.39 12.648 6.565 15.3 4.076-1.824 8.396 5.001 10.726 2.336 4.403-4.841.533-12.37 1.073-18.3 3.192-3.209 4.394 3.544 3.3 6.172.204 4.576-.43 9.278.361 13.768 1.895-.907 3.573-6.806 4.148-9.913.323-4.094-2.308-11.296 4.504-10.137-.357 4.797 1.6 7.637 5.261 10.21 4.55 5.189-1.61-8.225 4.13-4.712 1.278 1.563 5.182 13.223 4.884 7.377 1.366-5.994-1.025-11.468-1.158-17.347 2.961-1.336 5.941 5.987 6.439 9.276 2.072-.073-3.303-10.276-1.737-10.082 5.67 2.525 8.607 8.205 10.429 13.895 2.633 6.938-.393-3.767-.826-6.26 2.992 5.338 6.032 10.713 8.262 16.495.258-3.909-.41-7.731-1.405-11.5-1.59-8.34 4.15-.397 5.822 2.88 3.964 4.206 5.411 9.656 7.672 14.804.826 4.354 1.643.2 3.192-1.243 4.589-5.252-1.157-11.505-1.168-17.464 1.47-6.081 3.213 4.112 3.673 6.13 2.216.551 3.852 11.384 4.018 6.95.095-1.272.143-1.814.187-2.297.142-2.726.238-5.455.17-8.195 8.826 7.79 5.35-12.778-1.253-24.17-2.169-5.249 2.313.061 2.543 2.593 5.081 1.483-1.367-9.947 3.287-7.96 2.21 6.906.573-3.623.013-5.785-4.5-4.54-8.7-11.683-15.857-12.478.349.332.644.674.943 1.01.06.237.544.777 1.15 1.403-.022-.03-.107-.157-.136-.197.062.083.168.213.21.27 1.942 1.996 5.669 5.369 6.62 7.579 1.968 7.35-6.29-1.816-7.963-1.118 2.99 5.894-2.363 1.946-4.582.087-3.56-4.008-5.279-10.425-11.148-11.694-2.127 1.91 5.375 5.95 6.915 8.72 1.733 1.468 6.489 10.13 3.504 8.906-.775-.468-1.145-.73-1.505-.983-3.393-1.735-8.958-5.159-11.075-9.002-4.544-5.36-1.921 1.502 1.29 3.267.294 2.653 5.013 12.942-.374 10.21-5.657-4.298-7.21-11.33-11.405-16.656-1.431.981 1.873 8.601 1.25 12.288 1.124 6.809-2.884 1.64-4.494-1.522-4.006-1.886-2.09-10.698-5.26-10.604-1.551 4.72-1.689.911-3.003-1.57-1.852 3.883-.828 8.221-1.185 12.341.433 7.564-3.58-1.12-4.52-4.073.493-4.57-1.756-4.21-2.453-.122-.415 8.6-5.6-.693-5.34-4.31 2.268-5.032-6.856-8.432-6.406-2.727 2.132 4.817 3.573 12.313.372 17.349.871-6.59-6.262-10.95-5.171-17.801-1.588-5.252-3.394-.483-3.843 2.483.391 5.811-1.59 9.486-5.186 13.723-3.328 5.438-2.562-1.647-3.352-4.193-2.06-9.028-.867 4.11-2.917 6.636-2.67-3.211-2.851-10.525-2.708-15.442 1.897-5.99-2.063.775-2.428 1.54-.12.195-.182.27-.312.486-3.43 7.654-2.946-1.994-3.384-5.543-.157-4.491-.755-.766-.98 1.213-.022.166-.033.205-.055.39-.705 2.33-.426 14.092-3.601 7.965-1.516-1.556-1.215-11.893-2.012-6.927-.126 7.853-5.116-2.242-3.102-5.708.106-6.093-.141 1.31-1.138 3.112-2.77-3.663-1.913-7.666-.75-11.784-.856.302-1.669.673-2.444 1.093-.047-.5-.105-1.053-.165-1.35-.13-.651-.391-1.172-.521-2.997s.391-2.086.391-2.086-2.345-.262-2.867-.784c-.521-.521-1.305 0-4.043-.651-2.737-.652-6.517-3.911-7.95-5.475-1.434-1.565-1.305-1.955-2.087-2.868-.782-.912-1.435 2.087-1.435 2.087s-2.866-.131-4.17-3.26c-1.303-3.128-1.302-1.435-1.302-1.435s-3 2.87-4.695.784c-1.694-2.086-1.435-3.389-1.435-3.389zm126.265 45.312a31.8 31.8 0 0 0 2.016.963c-1.92-1.42-3.526-2.029-2.016-.963zm8.157-11.497c-.02-.022-.051-.051-.072-.073.197.263.217.273.072.073zm8.932 53.51c-.064 1.233-.119 2.466-.207 3.7.216-2.34.386-5.644.207-3.7zm-122.998-62.7c1.872-.845 3.212-2.328 3.351-5.26-.277 1.156-1.672 3.122-3.351 5.26z' fill='%23e5e5e5'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M843.479 157.145c-.404-1.793-.897-3.56.109-5.776.563-1.843 3.2-3.361 5.34-3.705 3.295-.529 8.407.112 9.6 2.848.798 1.828 1.23 4.251-2.401 5.414-2.7.993-5.3 4.293-8.29 4.706-1.238-1.188-1.65-2.527-4.358-3.487z' color='%23000' overflow='visible' fill='%232c1c12' paint-order='markers stroke fill'/%3e%3cpath d='M843.294 156.864c-.393-1.75-.875-3.475.107-5.638.55-1.8 3.124-3.283 5.213-3.618 3.218-.516 8.208.109 9.373 2.78.778 1.786 1.201 4.151-2.344 5.286-2.636.97-5.174 4.192-8.093 4.595-1.209-1.16-1.612-2.468-4.256-3.405z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23d6b39d' paint-order='markers stroke fill'/%3e%3cpath d='M845.9 155.481c1.255-.465 1.65 1.262 1.597 1.756 2.83-2.342 6.04-4.809 7.128-4.374.467-2.892-8.278-4.118-8.724 2.618z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23181818' stroke='%236f3f1e' stroke-width='.158' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cg paint-order='markers stroke fill'%3e%3cpath style='marker:none' d='M826.927 147.576c-.92.001-1.74.483-2.045 1.201l-.067.221s-.128.302-.296.428c-.166.125-.63.377-.893.629-.413.393-.793.843-1.048 1.352-.21.415-.377 1.341-.377 1.341s.413-.92.683-1.341c.256-.4.53-.796.882-1.116.242-.22.823-.531.823-.531l.307.322-.213-.745c.159 1.339 1.34 1.83 2.244 1.83 1.2 0 2.172-.802 2.174-1.793 0-.993-.973-1.798-2.173-1.798z' fill-rule='evenodd' stroke='%23000' stroke-width='.158' stroke-linejoin='round'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M826.93 147.575a2.172 1.797 0 0 0-1.883.904l-.097.157v.001a1.579 1.579 0 0 0-.155.415c1.009.296 3.11.281 4.281.058a1.524 1.524 0 0 0-.047-.192 2.172 1.797 0 0 0-.001-.006v-.001a1.586 1.586 0 0 0-.074-.19c0-.001 0-.002-.002-.002-.033-.062-.067-.12-.1-.181a2.172 1.797 0 0 0-1.922-.963z' color='%23000' overflow='visible' fill='%23794d2f'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m825.803 149.454.098.348 1.927-.014s.32-.39.265-.348c-.056.041-2.29.013-2.29.013z' color='%23000' overflow='visible' stroke='%23000' stroke-width='.158' stroke-linejoin='round'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M826.742 151.077a2.424 2.424 0 0 1-1.251-.454 1.951 1.951 0 0 1-.506-.587 9.823 9.823 0 0 1-.225-.748c0-.006.017-.038.037-.073l.039-.064.085.02c.216.056.596.113.95.144a15.192 15.192 0 0 0 2.506-.023c.174-.017.556-.068.609-.082.025-.006.025-.006.025.15 0 .256-.046.453-.162.677-.349.68-1.214 1.108-2.107 1.04zm1.118-1.214a.933.933 0 0 0 .143-.157c.172-.217.171-.215.16-.279-.01-.05-.012-.053-.055-.06a46.704 46.704 0 0 1-1.415.008l-.977-.006v.048c.001.07.11.436.135.455.018.013.18.015 1 .008.605-.005.991-.012 1.009-.018z' color='%23000' overflow='visible' fill='%23e6c74d' stroke='%23e6e600' stroke-width='.001' stroke-linejoin='round'/%3e%3c/g%3e%3cpath d='M811.227 171.794c-1.46-.16-2.718-.487-3.844-1.001-.702-.32-.934-.605-1.069-1.313-.056-.296-.044-.46.07-.978l.138-.623.52.15c.791.23 1.639.311 2.316.223.654-.086 1.131-.216 1.117-.304-.006-.034-.03-.057-.054-.05-.657.17-1.224.23-1.833.196-1.223-.068-2.096-.374-2.966-1.042-.503-.385-.733-.748-.874-1.381-.079-.351-.077-.36.131-.667.308-.454 1.084-1.197 1.462-1.4a3.56 3.56 0 0 1 .79-.271c.845-.177 1.426-.596 1.663-1.2.128-.327.056-.572-.278-.952-.295-.335-.811-.719-.896-.666-.03.018-.041.336-.025.706l.03.673-.176.08c-.246.112-.652-.016-.826-.26-.185-.26-.608-.459-.994-.468l-.324-.008-.354.456c-.195.251-.395.513-.443.583-.05.07-.105.11-.125.09-.02-.02-.054-.37-.076-.778l-.04-.743.26-.423c.975-1.591 1.404-2.158 2.448-3.232 1.197-1.23 1.067-1.176 1.892-.796.5.231.831.563.945.948.04.135.119.538.176.897.057.358.172.801.256.984.225.492 1.19 1.442 1.733 1.705.497.242 1.252.407 1.86.407.275 0 .52.04.672.112.318.15 2.138 1.998 2.404 2.44.245.408.615 1.787.735 2.739.12.95.053 3.544-.105 4.124l-.124.454-2.346.342c-2.529.368-2.667.377-3.846.247z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23d4d4d4' paint-order='markers stroke fill'/%3e%3cpath d='M843.857 153.96s1.569-3.961 3.307-4.873c2.262-1.186 5.402-1.126 7.662.063.727.383 1.412 2.02 1.412 2.02s-1.705-.917-2.636-.925c-2.709-.023-4.34-.091-6.268.752-1.395.61-3.477 2.963-3.477 2.963z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23c99472' paint-order='markers stroke fill'/%3e%3cpath d='M830.849 181.392c3.606.258 6.182 0 7.212 0 1.03 0-.773-.257 1.288 1.803 2.06 2.061 0 1.546 2.834 2.319 2.833.772 8.757.257 8.757.257s-2.575 2.06-4.379 2.06c-1.803 0-6.954-.514-8.5 0-1.545.516-3.348 2.577-3.348 2.577l.772 2.575h-2.06l.772-5.409-2.318-3.606zm39.668-27.819s1.03 2.318 1.03 4.122c0 1.803.773 2.575.773 2.575l.515 1.803 2.576.258 1.803 4.121s0-6.182 2.06-5.151c2.061 1.03 1.804-1.546 2.834 1.288 1.03 2.833 2.06 5.409 2.06 5.409s-1.545-2.576 1.546-2.834c3.091-.257 4.637-1.03 4.894.516.258 1.545 0 1.803-.257 3.606-.258 1.803-1.03 4.379-.258 3.09.773-1.287.258-2.833 1.546-2.317 1.287.515.772-1.546 2.06 2.318s1.288 4.379 1.288 4.379.515-.258 1.03-4.637c.516-4.379-1.287-4.894.516-6.697s2.759-4.43 5.335-3.142c2.576 1.288 2.392-1.494 3.68 4.43 1.288 5.924 2.318 7.727 2.318 7.727s0-1.803-.257-6.182c-.258-4.378-.515-5.666-.515-5.666l-4.38-1.546s-6.954 1.03-7.984 1.03c-1.03 0-4.38 0-6.182-.772-1.804-.773-11.077-3.091-11.077-3.091l-5.924-3.349zm43.016 8.5c9.273 0 9.788-.515 15.455-.515s7.985-2.06 11.076-2.318 4.894-.258 9.273-.258c4.38 0 4.122-2.318 11.592-.257 7.47 2.06 8.242 2.576 9.53 3.09 1.288.516 6.182 3.607 6.182 3.607l5.925 5.924s-5.667-4.894-7.213-5.924c-1.545-1.03-8.5-2.576-8.5-2.576s-1.546-.257-1.546 1.546 2.834 4.636 2.834 4.636l5.152 3.091 1.803 3.606-4.637-4.121s-2.833-1.03-3.09.258c-.258 1.288.772 3.348.772 3.348s-2.834-3.09-4.121-5.667c-1.288-2.575-2.061-4.379-3.607-5.409-1.545-1.03-4.894-2.318-4.894-2.318s-6.697-2.06-5.667 0c1.03 2.06.773 1.03 2.061 3.606 1.288 2.576 2.318 1.803 5.41 6.44 3.09 4.636 3.863 5.409 1.545 3.09-2.318-2.318-2.834-2.833-4.38-5.151-1.545-2.318-2.832-3.864-4.636-4.121-1.803-.258-2.318-1.803-2.318.257s-1.545.773 0 3.349c1.546 2.576 1.288 2.318 2.06 5.151.774 2.834 3.35 7.47 3.35 7.47s-2.319-1.03-3.092-3.09c-.772-2.061-3.348-4.895-3.863-7.47-.515-2.576-2.576-5.41-2.576-5.41l-3.349-.515s-.772 1.03-.772 2.318-.516-1.03-.516 2.319c0 3.348.258 2.06.773 6.182.515 4.12 0 1.287-1.03-.516s-1.803-3.863-2.576-6.697c-.773-2.833-1.546-4.636-1.546-4.636l-2.06 2.06-1.546-2.318s-2.576-.515-2.576.515-1.287 3.606-1.287 5.925v7.47s-1.288-3.864-1.288-5.41c0-1.545-1.546-6.182-2.061-5.151-.515 1.03-3.606 1.03-3.606 2.318v3.09s1.545 0-1.03-4.893c-2.576-4.894-5.41-5.925-5.41-5.925z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23acacac' paint-order='markers stroke fill'/%3e%3cpath d='M902.775 183.116c0 2.186-1.093 4.007-1.275 7.468-.182 3.46-.91 4.553-.182 9.29.728 4.735 2.914 12.385 2.914 14.388 0 2.004.182 7.286.547 0 .364-7.286-1.64-11.293-1.64-12.568 0-1.275-.364-4.189-.364-8.378 0-4.19.546-7.286.546-7.286l-.546-3.824zm11.657-4.917c.546 3.824.546 2.732-.182 8.196-.729 5.464-1.093 7.65-.91 9.107.181 1.457 1.092 7.285 1.456 10.017.364 2.732-.182 6.193.182 3.643.365-2.55-.364-9.289-.364-12.75 0-3.46-.364-3.825 0-7.285s.364-6.74.364-6.74zm9.653 5.281c0 2.55-.364 8.197-.364 11.111 0 2.914.729 7.286 1.64 10.564.91 3.279 1.274 6.74 1.274 6.74s2.55-2.55 0-7.468-2.003-10.929-2.003-12.75c0-1.822-.547-8.196-.547-8.196zm8.743-7.831c0 2.185-.546 4.007.364 7.467s1.275 2.55.729 5.464c-.547 2.915-.91 2.915-.91 5.465s.181 4.189.181 4.189-.182-4.554.547-5.829c.728-1.275 1.275-5.1 1.275-6.375 0-1.274-.911-2.367-1.093-3.46-.182-1.093-.91-3.825-.91-3.825zm12.932 6.557c0 2.003-1.093 4.37-.729 8.196.365 3.825-1.093 3.46 1.457 6.921 2.55 3.46 2.368 4.007 4.007 6.74 1.64 2.731 3.097 8.196 3.097 8.196s-1.275-8.561-1.822-9.29c-.546-.728-3.642-6.01-3.824-7.103-.183-1.093-1.458-2.368-1.822-4.007-.364-1.64-.364-9.653-.364-9.653zm12.021 1.457c1.457 3.096.91 2.003 1.821 6.921.911 4.918-.182 4.007 1.093 8.014s2.004 6.01 3.097 8.378c1.092 2.368.91 2.368 2.732 5.647 1.821 3.278 2.732 6.01 3.096 7.65.364 1.639 1.093-.911.364-3.097-.728-2.185-1.821-4.371-2.732-7.65-.91-3.278-2.732-5.646-3.278-7.65-.547-2.003-2.368-4.37-2.368-5.646 0-1.275-1.275-7.832-1.275-7.832l-1.093-2.732zm-73.038-6.011c0 2.186-1.821 5.829-1.639 8.56.182 2.733 1.64 8.925 1.821 9.654.183.729 1.093 3.096 1.458 6.193.364 3.096.364 5.464.91 3.096.547-2.368.182-9.289-.728-12.021-.911-2.732-2.004-3.279-2.004-5.646v-4.554c0-1.093.182-5.282.182-5.282zm-34.424-1.639c2.914-.182 4.918-.91 7.832-2.55 2.914-1.64 5.464-5.464 6.01-6.193.547-.728 1.64-6.01 1.64-4.735 0 1.275.364 4.007-1.457 6.739-1.822 2.732 1.275 1.821-3.279 3.825-4.553 2.003-1.821 1.457-4.918 2.185-3.096.729-5.828.729-5.828.729zm-.911 16.574c2.368-1.092 7.65-1.639 9.471-4.553 1.822-2.914.183-3.096 2.915-5.1 2.732-2.003 1.821-.91 4.553-3.825 2.732-2.914 3.46-5.1 3.46-5.1l-2.913 6.193s-2.004-.364-3.279 3.096c-1.275 3.461-.546 3.097-1.821 4.736-1.275 1.64 3.278.182-2.186 2.186-5.464 2.003-7.65 1.821-7.65 1.821zm13.114 4.918c2.004-.364 4.007-1.639 5.829-4.735 1.821-3.097 2.732-5.282 4.553-6.922 1.822-1.639 3.643-5.828 3.643-5.828s-.364 5.1-.91 5.828c-.547.729-3.461 1.275-3.643 2.55-.183 1.275.182 1.457-.729 3.097-.91 1.639-1.093 1.639-1.64 2.55-.546.91-2.367 2.367-2.367 2.367l-2.732.729zm104.184-13.842c.364 2.367 1.093 6.192 2.368 8.014 1.275 1.821 4.007 5.828 4.917 8.196.911 2.368 3.097 10.2 3.097 10.2s.182-4.736-.182-6.01c-.365-1.276-1.457-4.008-1.822-5.465-.364-1.457-2.185-4.736-2.732-5.828-.546-1.093-2.368-2.732-2.55-3.825-.182-1.093-3.096-5.282-3.096-5.282zm4.189-3.643s1.275.364 2.186.91c.91.547 3.096.183 4.189 1.093 1.093.911 2.914 1.822 3.278 3.279l.547 2.186s-1.275-2.368-2.55-3.279c-1.275-.91-2.914-1.457-4.554-2.003a42.092 42.092 0 0 1-2.914-1.093z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23c9c9c9' paint-order='markers stroke fill'/%3e%3cpath d='M858.312 229.808c2.368-.546 2.025 2.486 7.67 1.94 5.647-.547 9.108-2.733 9.836-4.008.729-1.275.729-7.103 1.458-6.557.728.547 1.275 4.736 2.55 5.282 1.274.547 1.82 2.186 3.642.547 1.822-1.64 2.732-2.186 2.915-3.825.182-1.64-.183-5.646.728-4.918.91.729 3.279 7.286 3.279 7.286s0-6.01 1.092-4.554c1.093 1.457 2.732 5.282 2.732 5.282s1.088-4.392 2.608-4.566c.847-.097 1.953 2.803 4.3 3.585 6.557 2.186 3.96.528 6.51 1.803s-.897-3.347 3.292-3.347c1.683 0 2.015 3.11 3.224 4.125 1.801 1.512 2.618-1.283 2.618-1.283s3.13-3.595 3.677-4.506c.546-.91-.729-8.378 1.274-4.007 2.004 4.371 4.825 5.692 4.825 5.692l1.937 1.308s2.71-1.718 3.438-1.536c.729.182 2.19.663 3.101.663.91 0 1.877-1.736 2.6-2.556l2.158-2.45s-.459-3.303 4.489-3.677c2.326-.375 3.316 6.927 5.138 7.292 1.821.364-2.523-8.093.574-5.726 3.096 2.368 2.704 5.726 4.89 7.183 8.367 13.36.953 1.8 1.78 2.796l3.106 2.589s1.704 4.97.26 5.68c-2.412 1.187-3.246-1.762-3.246-1.762s-4.814-5.296-7.547-5.478c-2.732-.183-4.553-2.368-9.653 0-5.1 2.367-3.096 1.457-7.468 3.096-4.37 1.64-5.1 2.55-8.378 2.368-3.278-.182-4.896.999-8.356.999s1.14-.788-5.518.386c-5.24.925-10.422 1.769-15.037 1.277-1.32-.14-2.593.743-3.808.095-1.198-3.219 1.524-3.326 1.391-4.943-3.754 1.127-4.223 1.266-6.01 2.365-2.733 3.642-.877 3.606-3.245 5.064-2.368 1.457-4.77 4.592-4.77 4.592s-.364.547-3.278-2.732c-2.914-3.278 1.86-.543-3.786-2-5.647-1.457-.727-1.89-5.28-2.437-.458.198-2.752-2.112-2.752-2.112z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23acacac' paint-order='markers stroke fill'/%3e%3cpath d='M948.194 211.543s.01 3.067-.743 4.534c-.752 1.467-1.805 0-5.115.367-3.31.367-1.956 4.035-1.956 4.035l-2.708 3.667-1.204.734-6.018 1.711s-3.31 0-4.965-1.345c-1.655-1.344-1.505-.978-2.859-1.956s-3.009 1.712-3.46 2.445c-.452.734-2.558 2.812-4.965 3.057-2.408.244-2.107-2.934-3.01-4.035-.902-1.1-.3 1.834-1.203 3.18-.903 1.344-1.655.244-4.815-1.101s-3.46.367-3.46.367l-5.115-4.524s-.301 2.567-1.054 5.624c-.752 3.056-3.009 3.79-4.062 7.58-.171.616-.812.704-.953 1.138.12.06 1.4.724 2.375.724.414 0 1.03-1.122 1.886-1.016 1.321.164 2.473 1.255 3.872 1.324.71.035 2.052-.474 2.052-.474s3 .587 4.514.489c1.043-.068 3.009-.734 3.009-.734s1.66 1.222 2.708 1.345c.77.09 2.257-.489 2.257-.489s1.974.865 3.009.734c.962-.123 2.407-1.345 2.407-1.345s2.693.763 3.912.367c.727-.237 1.504-1.467 1.504-1.467s1.627 2.104 2.86 1.956c1.182-.143 1.654-1.712 1.955-2.445.3-.734 3.613-.367 3.613-.367l3.017-.321 2.7-1.146 1.656-.978s2.374-.87 3.61-.856c1.296.014 2.471 1.09 3.762.978.879-.077 1.545-.913 2.407-1.1 1.47-.32 3.06-.39 4.514 0 1.131.303 3.044 1.755 3.044 1.755-.027-.047 3.055.048 3.032.005-1.01-.352-6.072-2.204-6.72-6.48-1.054-3.912-.847-2.04-2.653-5.585-1.805-3.545-2.637-10.351-2.637-10.351zm-75.617 21.366c1.803 0 4.25-.773 4.508-1.288s.129-1.803.644-1.674.386 1.932 1.417 2.06c1.03.13 4.765-2.447 3.606-.901-1.16 1.545-3.864 1.803-3.993 3.348-.128 1.546-.901 2.19-.901 2.19s-.902-1.803-1.546-2.06c-.644-.258-3.735-1.675-3.735-1.675z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23959595' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M808.633 168.28a6.193 6.193 0 0 1-1.228-.16 3.086 3.086 0 0 1-.544-.229 3.554 3.554 0 0 1-.271-.15c-.004-.004.03-.004.112-.001a.468.468 0 0 1 .152.017c.136.054.353.122.539.169a6.36 6.36 0 0 0 1.101.166c.165.013.692.011.847-.003.332-.03.632-.08.947-.156a1.83 1.83 0 0 1 .143-.031c.017 0 .041.027.041.047 0 .071-.303.169-.777.249a4.731 4.731 0 0 1-1.062.082z' color='%23000' overflow='visible' paint-order='markers stroke fill'/%3e%3cpath d='M988.258 207.132c-.676.426-1.219 1.052-1.538 1.265-.677.451.15 3.31.226 4.514.075 1.203-1.88 2.708-3.837 3.084-1.956.376-.827 3.912-1.43 5.717-.601 1.806-.601 3.611-1.052 4.965-.452 1.354-3.46 2.483-3.837 3.762-.244.83.31 2.549 1.138 4.189.442-.176.872-.414 1.326-.522 1.497-1.355.89-2.973.902-4.514l3.46-2.106 1.806-3.611c.776-1.812.21-3.96-.601-6.169l2.858-.902.15-6.77.452-.603v-2.256z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23959595' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M857.122 225.357c1.177.09 5.07 1.992 6.066 3.53.995 1.54.362 2.354 2.715 4.618 2.354 2.263 5.704 3.44 6.066 3.62.362.182 1.63 1.268 4.164 1.811 2.535.544 1.177 1.63 2.626 1.087 1.448-.543 1.358-1.087 2.535-2.626 1.176-1.539 2.444-3.53 3.168-3.983.724-.453 1.449-1.81 1.54-3.53.09-1.72 1.538-1.268.09-4.255-1.449-2.988-4.527-7.514-5.16-9.416-.634-1.9-1.902-4.707-2.354-4.526-.453.181-5.432 1.267-6.337 2.535-.906 1.267-4.617 3.53-5.251 4.255-.634.724-4.346 2.897-4.98 3.62-.633.725-4.526 3.35-4.888 3.26z' color='%23000' overflow='visible' fill='%23e5e5e5' paint-order='markers stroke fill'/%3e%3cpath d='M859.415 222.073c3.86-.191 3.644-.733 5.998-.733 2.353 0 .358.149 4.341.149 3.984 0 5.07-.362 7.243-1.63 2.172-1.267 4.345-4.526 4.345-4.526s-1.812 3.003-3.804 4.994c-1.992 1.992-3.162 1.948-5.516 1.767-2.354-.18-6.251-.062-6.251-.062l-8.69.724zm5.632 5.21s3.63.138 5.443.075c2.179-.076 4.44.12 6.518-.544 1.4-.447 3.791-2.247 3.791-2.247s-1.735 1.369-2.705 1.885c-1.203.641-2.469 1.252-3.813 1.48-2.02.342-4.103-.033-6.145-.212-1.036-.091-3.09-.437-3.09-.437zm6.156 5.431s2.173.725 4.526 0c2.354-.724 2.173-.724 4.346-1.63 2.173-.904 3.44-2.172 2.716-1.448-.725.725-3.622 2.173-3.622 2.173l-4.526 1.087z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23c9c9c9' stroke='%23b3b3b3' stroke-width='.158' stroke-linejoin='round' paint-order='markers stroke fill'/%3e%3cg color='%23000' paint-order='markers stroke fill'%3e%3cpath d='m825.778 272.774 7.985-3.091c-3.006-4.306-3.743-9.136-3.606-14.167 3.307 3.021 6 6.38 8.914 10.372-4.828-6.039-4.492-9.17-4.218-15.069l6.122 9.333c-.296-3.118-.98-6.112 1.288-10.046 2.748 2.72 3.235 6.945 3.864 11.076.447-3.12 1.334-5.311 3.396-8.316 1.638 3.319 1.888 7.431 1.844 11.712 1.128-3.074 2.203-6.194 4.155-8.561.866 2.72 1.378 7.214 1.06 10.29.912-4.023 3.747-4.912 6.941-5.213.514 1.03.348 2.56-.957 4.924 1.767-1.917 3.68-3.755 7.001-4.836-.182 1.916-.406 3.834-2.489 5.868 3.38-3.43 5.663-7.309 11.505-9.731l-3.734 10.526c2.565-5.096 5.895-9.962 13.264-13.617.007 2.405-.119 4.788-1.545 6.954 2.557-4.076 6.665-6.822 12.621-7.985-.399 2.694-2.297 5.049-4.379 7.213 3.235-2.839 6.114-6.335 12.107-7.47l-5.152 7.985c3.792-2.459 7.077-5.748 12.107-6.182.655 1.21-4.637 6.44-4.637 6.44s10.86-9.185 16.743-8.758c-1.678 3.917-3.363 6.219-7.47 9.015 3.4-2.502 6.11-5.841 11.076-6.44-.633 2.267.917 4.253-3.09 6.955 2.98-1.25 6.007-3.27 8.757-.58.404-2.14 1.228-3.653 2.318-4.765 3.076 2.404 3.858 3.456 4.894 5.86-.797-3.03-.483-5.812.258-8.5 4.11 2.411 3.008 6.244 3.67 9.595.593-3.638-1.537-8.122 3.542-10.368 1.306 2.697 1.522 5.03 1.288 7.213 3.844-1.547 6.374-3.176 7.47-4.894 1.486.609 1.686 2.055-.257 4.894 3.09-2.627 6.182-6.041 9.273-5.41-.528 1.405-.696 3.203-1.675 5.796 2.92-5.12 5.68-6.113 10.69-6.568-.395 2.18-2.358 5.033-5.152 8.242 5.242-6.862 10.643-10.051 16.228-9.015-1.417 3.099-2.182 6.316-7.212 8.758 4.289-2.27 8.45-5.83 13.394-1.546-2.638 2.924-7.115 4.24-12.493 4.766l12.235 11.204-.515 11.077-168.202-2.834z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%233d6c1e'/%3e%3cpath d='M840.917 271.572s4.67 1.58 4.124-.241c-.545-1.821-2.366-5.65-2.366-5.65s1.642-.725 2.55 0c.908.733 2.366 1.463 2.366 1.463l.546-2.188-2.183-2.366s.908-1.275 1.82 0c.909 1.275 1.46 2.004 2.367 2.728.913.73 3.463 2.367 3.463 2.367l1.641-2.183 1.638 1.642 2.366-2.734 1.275 4.009 3.824-3.284s-.183 1.825 0 2.733c.184.918-.545 3.284 1.092 2.555 1.642-.73 4.554-3.284 4.554-3.284s-1.82 3.1-.725 3.462c1.092.367.908 2.004 2.545.367 1.642-1.642 1.642-1.825 2.917-3.1 1.275-1.275 1.82-4.37 1.82-1.82s.184 3.645.184 3.645.179 1.275 1.275 1.092c1.092-.184 1.642-.546 2.55-1.459.908-.907 1.458-3.095 2.733-3.457 1.275-.367 2.367-.184 4.009-1.096 1.637-.908 4.186-2.005 4.916-2.005.724 0-1.826-1.275 1.82.367 3.641 1.642 4.187 1.275 4.916 1.821.73.546.913.362 5.284 2.733 4.37 2.367 3.578-4.138 3.578-4.138s10.523 11.691 11.72 11.793c.942.077-4.54-6.293-3.752-6.148 2.086.377 5.027 3.41 5.027 3.41l.86-2.174-4.641-3.124 6.283.145-3.004-2.878-.183-1.821s1.641-.184 2.366.179c.729.367-.908 2.187 3.641 2.004 4.554-.179 4.737-.725 4.737-.725s1.459-.729 2.367.908c.912 1.642-.039-.531 2.51.387 2.55.907 1.822 2.728 2.734.724.908-2.004 1.092-3.096 1.092-3.096l1.642 4.009s1.27.908 1.453.178c.184-.724.724-2.55.724-2.55l1.28 2.734 1.092-1.275 1.096-1.642 2.728-.908 2.55-.724 1.459.908.912-.546 2.004.179 1.637-.546 1.642.73 1.821.723 2.366 1.464s-1.458.545 1.459-.184c2.912-.729 3.279-2.187 5.462-2.187 2.187 0 5.466-1.275 6.558-.725 1.09.546.907-1.096 2.187 1.27 1.275 2.367 1.454 1.275 2.366 5.1.908 3.83.908 3.284.908 7.833 0 4.554-.362 6.925-.362 6.925l-43.351-.184-63.2-1.275-25.498-.183-9.47-2.115-2.125-4.665 4.41 1.313z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23294814' stroke='%23007300' stroke-width='.159' stroke-linejoin='round'/%3e%3cpath d='m850.038 273.338 1.897 14.224 7.304 4.413 11.924.12.226-8.453-2.795 1.352 1.897-4.534-3.259.771.966-2.999-3.993 1.417-1.159-4.121-2.06 2.575-.645-3.606-1.931 2.319.257-3.478-2.576 2.447-.901-3.606-1.675 4.379zm75.73-1.803.74 6.514-3.566-3.215 1.795 8.55 6.067 4.556 12.519 3.031-.52-2.884.712-3.726 3.211-1.637-3.056-2.817-2.705 1.287v-2.447l-2.447 1.675-.258-5.796-3.135 4.446.045-4.188-3.702 2.15.224-4.597-1.736 2.195-1.355-5.158-1.159 3.607zm20.349 8.629 7.34 3.993 12.063-3.724-1.501-10.959-2.06 3.22-.774-3.477-1.674 2.962-2.704-3.22v3.864l-3.607-4.25v6.568s-4.121-3.606-4.121-3.09c0 .514.644 3.348.644 3.348l-3.22.257 3.606 2.447z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%2398b432'/%3e%3cpath d='M832.196 260.98c.182.911-.364.82 1.093 3.097 1.457 2.277 1.275 2.186 2.368 3.916s1.457 2.641 1.457 2.641l-3.46.91 4.917-.455 1.275-.364s-1.821-1.184-2.004-1.64c-.182-.454-2.367-2.913-2.64-4.097-.274-1.184-1.549-3.188-1.549-3.188z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%233d6c1e'/%3e%3cpath d='M831.923 260.343c0 .365.455.456.91 1.822.456 1.366 1.002 2.64 1.185 3.005.182.364 1.001 2.003 1.457 2.55.455.546 1.457 1.457 1.457 1.457l-.911-3.552s-1.184-2.094-1.366-2.732c-.182-.637-2.732-2.55-2.732-2.55zm3.643-4.735c-.091.364-.16 2.459.205 3.005.364.546.25 1.002.979 2.368.728 1.366 1.821 3.096 1.821 3.096zm6.557-3.097s-.611 1.92-.638 2.914c-.04 1.507.729 4.463.729 4.463zm7.288 1.909.87 3.961.386 5.055s-1.835-3.187-1.674-3.574c.16-.386.418-5.441.418-5.441zm5.764 3.671.644 3.317-.097 3.67s-.836-2.172-.934-3.316c-.104-1.226.387-3.67.387-3.67zm7.502 4.057.096 1.546-.547 1.706-1.256.419.676-.998s.42-1.095.451-1.224c.033-.128.58-1.449.58-1.449zm6.117.065c.065.129-.064 1.61-.064 1.61l-.966 1.964-1.964 1.674 1.352-2.028 1.16-1.836zm8.436-3.463s-.91 2.185-.91 2.458c0 .274-1.367 4.099-1.367 4.099l-.774 2.003s-2.96 1.73-2.686 1.685c.273-.046 1.867-1.366 2.185-2.004.319-.637 1.275-3.551 1.503-3.87.228-.319 1.184-3.188 1.184-3.188zm10.245-3.051c.046.318-.273 2.595-.41 3.187-.136.592-.637 1.594-.865 2.095-.227.5-1.32 2.185-1.684 2.64-.365.456-1.64 1.094-2.004 1.458-.364.364-1.32.82-1.73 1.366-.41.546-2.004 2.504-2.004 2.504s.319-1.593.729-2.23c.41-.638-.091-1.23 1.23-2.05 1.32-.82 2.14-1.138 2.458-1.412.319-.273 1.002-1.183 1.412-1.775.41-.592 1.366-2.778 1.502-2.96.137-.182 1.366-2.823 1.366-2.823zm10.565-1.321c0 .273-.501 1.73-.684 1.958-.182.228-.956 1.366-1.32 1.867-.364.501-1.275 1.275-1.548 1.548-.273.273-.228.592-1.184 1.184s-1.457.774-2.004 1.047c-.546.274-2.003 1.048-2.003 1.048s1.548-1.548 2.23-1.867c.684-.319 1.64-.729 2.187-1.64.546-.91 2.322-2.731 2.322-2.731s.273-.775.956-1.139c.683-.364 1.047-1.275 1.047-1.275zm7.604-.318c-.365.41-.729.5-1.23 1.32-.5.82-.728 1.002-1.275 2.003-.546 1.002-.82 1.23-1.275 2.05-.455.82-.683 1.32-1.138 1.775-.455.456-2.687 1.503-2.687 1.503s.592-.82 1.366-1.412c.775-.591 1.048-1.502 1.64-2.276.592-.774 2.504-3.643 2.504-3.643zm7.331 1.457c0 .182 0 .637-.592 1.183-.592.547-1.275.957-1.548 1.321-.274.364-.456.273-1.366 1.366-.911 1.093-1.549 1.412-2.095 2.231-.546.82-2.641 2.004-2.641 2.004s1.184-.956 2.05-1.867c.864-.91.773-1.73 1.866-2.55 1.093-.82 1.457-1.093 2.186-1.685.728-.592 2.14-2.003 2.14-2.003zm12.112-2.414c-.137.319-.592 1.139-1.23 2.186-.637 1.047-1.047 1.366-1.548 2.14-.5.774-.774 1.23-1.138 2.14-.364.91-.228 1.002-.728 1.594-.501.592-1.275.91-2.14 1.184-.866.273-2.004.546-3.051.774-1.048.228-2.277 1.002-2.277 1.002s1.138-1.093 1.867-1.457c.728-.365 1.821-.911 2.64-1.23.82-.319 1.913-.865 2.323-1.32.41-.456 1.047-1.594 1.275-2.095.228-.5 1.366-2.004 1.594-2.231.227-.228.683-1.002.865-1.32.182-.32 1.548-1.367 1.548-1.367zm3.597 3.006c-.09.364-.683.728-.637 1.548.045.82.228 1.366.045 1.776-.182.41-.319.546-.91 1.047-.592.5-1.367.592-1.685 1.23-.319.637-.547.864-.547.864s.182-1.457.683-2.094c.501-.638.957-.956 1.366-1.275.41-.319.501-.638.638-1.184.136-.546.091-1.002.273-1.23.182-.227.774-.682.774-.682zm8.926 1.639s-.684.637-.775 1.366c-.091.728-.546 1.685-.319 2.413.228.729.365.865.41.364.045-.5 0-1.229.273-1.684.273-.456.638-1.867.638-1.867zm5.562-2.168c-.194.708-.644.386-.644 1.674 0 1.288-.193 1.095 0 2.125s.129 1.868.515 2.963c.386 1.094.708 1.867.708 1.867s-.257-2.06-.193-2.576c.064-.515-.064-1.674.064-2.447.13-.773 0-1.803 0-2.19 0-.386-.45-1.416-.45-1.416zm5.924-1.16s-.901.194-1.095.774c-.193.58-.837.386-.837 1.932 0 1.545-.064.901-.064 2.125 0 1.223-.129 3.477-.129 3.477s.45-.45.515-1.481c.065-1.03-.064-1.932.193-2.77.258-.836.194-1.61.451-2.06.258-.45.966-1.996.966-1.996zm9.708 2.4c-.05.403-.055.819-.177 1.207-.159.504-.065.322-.709 1.417-.644 1.094-1.352 1.61-1.352 1.61s1.618-1.33 2.19-2.19c.282-.425.558-.907.58-1.417.02-.5-.452-1.432-.452-1.432s-.047.537-.08.805zm7.663-1.385c-.032.354-.161.998-.21 1.53-.048.53-.257.917-.354 1.61-.096.692-.16 1.062-.418 1.448-.258.387-.354.355-.982.95-.628.596-.676.95-.129.612.547-.338.982-.547 1.288-.998.306-.451.58-1.481.773-2.013.193-.53.257-1.271.338-1.754.08-.483-.08-1.015-.08-1.079 0-.064-.226-.306-.226-.306zm8.758-.451c-.049.355.112.854-.065 1.337s-.386.885-.595 1.48c-.21.596-.676.967-1.095 1.643-.419.676-.644.95-1.095 1.352-.45.403-1.851.902-1.851.902s1.513-1.176 1.916-1.53c.402-.354.499-1.175 1.046-1.787.547-.612.74-1.272.95-1.594.21-.322.418-.998.467-1.094.048-.097.322-.709.322-.709zm11.38-1.016c-.137.228-.32.41-.547 1.184-.228.774-.273 1.184-.683 1.776-.41.592-.956 1.139-1.32 1.822-.365.683-.729.956-1.275 1.548-.547.592-3.142 1.411-3.142 1.411s.91-.5 1.821-1.366c.91-.865 1.412-1.776 1.913-2.504.5-.729.728-1.867 1.548-2.596.82-.728 1.685-1.275 1.685-1.275zm5.828 6.602c-.637.32-1.002.32-1.73 1.048-.729.729-2.368 1.23-3.142 1.457-.774.228-2.914.41-3.279.501-.364.091-3.233.364-3.233.364s.729.547 1.913.501c1.184-.045 1.958-.455 2.823-.5.865-.046 1.548-.501 2.14-.547.592-.045 2.459-.91 2.641-1.047.182-.137.729-.319 1.093-.729s.774-1.047.774-1.047z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%2398b432'/%3e%3c/g%3e%3cpath d='M814.068 267.333c-18.062 0-24.082 15.755-42.143 15.755v31.513c3.192-.985 30.103-15.755 42.143-15.755 12.042 0 30.103 15.755 42.143 15.755 12.042 0 29.811-15.755 42.143-15.755 12.042 0 34.193 15.755 48.166 15.755 18.062 0 26.456-15.755 42.144-15.755 12.041 0 26.522 15.447 36.122 15.755 0-10.503 1.358-30.037 1.358-30.037l-.492-1.293c-5.155.184-18.927-15.938-36.988-15.938-18.062 0-30.104 15.757-45.988 15.078-15.883-.679-26.26-15.078-44.322-15.078-18.061 0-24.081 15.755-42.143 15.755s-24.081-15.755-42.143-15.755zm.25 64.878c-12.334.117-32.754 16.584-34.468 16.829 1.623.829 15.716 25.31 15.716 25.31s5.722-3.281 18.061-5.253c12.341-1.972 25.23 11.291 39.707 13.523 14.478 2.233 32.2-13.523 44.58-13.523 12.042 0 28.438 16.543 44.322 13.523 15.883-3.019 22.078-20.002 37.043-19.388 14.964.612 20.985 5.865 20.985 5.865l18.061-21.01s-18.076-14.277-33.12-15.016c-15.044-.74-21.063 15.016-39.125 15.016-24.082 0-30.213-15.755-48.166-15.755-18.062 0-24.082 15.755-42.143 15.755-18.062 0-28.723-15.998-41.453-15.876zm85.704 73.642a29.836 29.836 0 0 0-1.689.003c-18.358.538-24.981 15.755-49.964 15.755 0 1.293 43.72 21.01 49.964 21.01 6.248 0 60.714-22.165 49.97-21.01-24.202 0-31.178-15.291-48.28-15.758z' font-size='12' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='M892.857 422.741c-15.785-2.99-28.273-11.317-37.04-24.696-4.7-7.172-7.905-14.746-8.667-20.483-.438-3.3-1.265-3.86-4.741-3.208-1.963.367-2.35.198-4.217-1.838-1.131-1.233-2.058-2.41-2.06-2.615 0-.205-.42-1.172-.93-2.148-.51-.976-.783-2.346-.608-3.045.28-1.111-.326-1.55-4.843-3.51-2.84-1.23-5.502-2.369-5.917-2.528-.55-.21-.382 1.468.617 6.181 1.409 6.646 1.412 7.368.04 7.368-.71 0-1.865-2.62-1.634-3.71.12-.569-2.086-11.253-2.366-11.459-.571-.42-12.992-5.761-13.397-5.761-.79 0-16.529-9.1-16.239-9.39.325-.325 11.533 4.348 21.61 9.01 3.94 1.822 7.26 3.216 7.38 3.096.12-.12-.207-2.482-.726-5.25-1.146-6.111-1.154-6.436-.147-6.436.52 0 1.247 2.022 2.094 5.83a992.285 992.285 0 0 0 1.492 6.643c.25 1.032 8.058 4.707 27.049 12.729 4.61 1.947 8.85 3.8 9.421 4.119.572.318 1.318.579 1.658.579.869 0 .63-17.492-.247-18.08-.45-.302-.42-.443.094-.449 1.405-.017.752-2.174-1.065-3.515l-1.813-1.339-1.56 1.227c-2.105 1.653-4.055 1.545-5.513-.307-1.084-1.376-1.42-1.473-3.295-.956-1.705.47-2.155.403-2.45-.363-.443-1.155.47-1.758 3.41-2.254 1.242-.21 2.257-.565 2.257-.79 0-.226-.77-1.346-1.71-2.49-3.151-3.828-4.457-7.13-4.724-11.946-.215-3.878-.051-4.87 1.215-7.326.982-1.903 1.216-2.84.712-2.84-.666 0-1.767-1.732-1.344-2.113.145-.13 6.74-1.932 14.084-3.847 2.327-.607 2.544-.828 2.544-2.584 0-1.486-.484-2.307-2.14-3.627l-2.142-1.706-1.34 1.257c-1.755 1.648-4.029 1.597-5.649-.126-2.478-2.635-2.158-2.903 5.883-4.92l5.089-1.277v-1.991c0-2.116-1.371-3.305-5.502-4.77-1.653-.586-2.345-.47-5.147.853-3.982 1.881-4.107 1.882-6.314.027-3.065-2.576-4.73-3.192-7.15-2.647-3.191.72-3.137.164.127-1.278 2.29-1.011 3.5-1.18 6.23-.865 2.906.334 3.883.162 6.885-1.213 3.453-1.582 3.546-1.591 7.184-.698 2.028.498 3.821.762 3.986.586.165-.176-.037-.44-.449-.587-.412-.147-.748-.648-.748-1.114 0-.614.795-.848 2.884-.848h2.884l-.257 6.578c-.142 3.618-.159 6.578-.038 6.578.12 0 2.103-.56 4.407-1.247 2.304-.686 4.857-1.342 5.674-1.457 1.71-.242 2.635.812 1.7 1.937-.35.422-.467.767-.26.767.208 0-.343.808-1.223 1.794-1.618 1.814-4.157 2.392-5.336 1.215-.991-.99-5.047 5.058-5.047 7.527 0 1.718.192 2.048 1.048 1.803 3.214-.92 14.536-3.967 14.744-3.967.926 0 .749 2.083-.27 3.172-.677.722-2.218 3.309-3.427 5.747-1.757 3.547-2.192 5.102-2.173 7.774.027 3.74 1.84 7.877 4.973 11.35 1.008 1.117 1.708 2.23 1.558 2.474-.151.244-1.167.61-2.258.815-1.58.296-2.138.798-2.74 2.46-.881 2.435-2.439 3.44-4.926 3.18-1.477-.155-2.114.24-3.772 2.333-1.098 1.385-2.182 2.332-2.41 2.103.196 9.71.021 15.646-.264 22.602-.092 2.605.174 3.432 1.788 5.555 4.781 6.286 13.17 12.95 17.387 13.811.44.09 1.203.316 1.697.503s1.975.48 3.293.652c1.317.172 3.068.49 3.891.708a52.58 52.58 0 0 0 3.177.707l1.68.311c-.186-13.206-.039-26.417-.26-39.622-.098-4.647-.242-5.207-1.718-6.656-1.572-1.544-1.634-1.555-2.637-.448-1.304 1.44-3.654 1.441-5.837.003-.936-.617-2.244-.98-2.905-.808-.68.178-1.432-.048-1.73-.519-.813-1.282-.653-1.73.615-1.73.64 0 1.313-.245 1.498-.544.185-.299-.655-3.46-1.867-7.026-1.744-5.133-2.212-7.436-2.246-11.06-.041-4.257.133-4.917 2.496-9.457 2.166-4.163 2.364-4.825 1.347-4.502-.922.292-1.193.104-1.193-.83 0-.855.57-1.365 1.946-1.742 1.07-.294 4.303-1.154 7.185-1.913l5.238-1.379v-2.002c0-1.565-.247-2.003-1.13-2.003-.623 0-1.744-.495-2.492-1.1-1.32-1.067-1.392-1.067-2.46 0-1.437 1.435-2.964 1.392-4.913-.14-3.287-2.581-2.109-3.58 6.655-5.641 4.09-.963 4.34-1.116 4.34-2.669 0-1.43-.505-1.896-3.815-3.523-4.637-2.28-6.005-2.326-9.597-.321-3.351 1.87-4.643 1.663-8.22-1.323-2.49-2.077-2.748-2.155-6.199-1.869l-3.6.299 2.993-1.443c2.655-1.28 3.51-1.401 7.556-1.07 4.156.34 4.824.235 7.48-1.177 3.351-1.782 6.324-1.959 10.689-.636 2.065.625 2.751.678 2.245.172-1.29-1.287-.791-1.684 2.115-1.685l2.844-.001-.2 6.488-.2 6.488 5.743-1.498c3.16-.824 5.901-1.342 6.093-1.15.728.727-1.33 4.825-3.282 6.537-2.009 1.761-3.494 1.966-6.102.839-1.216-.526-2.352 1.866-2.352 4.952v2.267l8.532-2.3c4.692-1.266 8.868-2.172 9.28-2.015.856.327 1.028 2.117.203 2.117s-5.917 10.734-6.7 14.123c-.588 2.544-.508 3.674.555 7.875 1.556 6.145 3.369 10.294 4.497 10.294.477 0 1.031.426 1.231.946.504 1.312.527 1.275-1.067 1.675-.863.216-1.58.95-1.805 1.847-.205.82-1.322 2.436-2.48 3.594-2.217 2.213-4.139 2.639-6.417 1.421-1.09-.582-1.415-.476-2.206.723-.51.773-1.508 2.032-2.215 2.798-1.268 1.372-1.288 1.742-1.352 24.094l-.065 22.702 3.447-.026c1.896-.015 4.66-.287 6.142-.605 1.482-.319 3.368-.726 4.191-.906.823-.18 2.279-.715 3.235-1.19.956-.474 2.088-.861 2.515-.861.427 0 .992-.385 1.255-.855.263-.47.692-.846.953-.835 4.904-2.965 7.027-4.634 10.257-6.046.754-.625.944-7.323.944-7.323s-.54-11.876-.58-21.384c-.035-1.561.354-1.76.58-3.025 0-.987-.32-1.794-.71-1.794-.39 0-1.308-.561-2.039-1.247-1.28-1.201-1.387-1.209-2.92-.206-1.52.995-1.689.99-3.798-.097-1.215-.627-3.286-1.14-4.603-1.14-1.661 0-2.395-.26-2.395-.844 0-.47 1.058-1.146 2.395-1.529 2.749-.788 2.757-.865.657-6.42-.833-2.205-1.832-5.73-2.22-7.831-.634-3.434-.574-4.256.59-8.082.712-2.342 1.469-4.71 1.681-5.264.316-.821.1-.95-1.179-.706-1.055.202-1.678.003-1.914-.611-.48-1.25-.192-1.374 8.651-3.714l7.804-2.065v-2.248c0-1.827-.218-2.248-1.164-2.248-.64 0-1.575-.587-2.078-1.304-.862-1.229-.98-1.246-2.027-.299-.612.553-1.58 1.005-2.152 1.005-2.1 0-5.342-2.515-4.948-3.839.09-.303 2.842-1.255 6.116-2.117l5.953-1.567.18-2.119c.168-1.972-.012-2.22-2.555-3.564-2.665-1.407-2.783-1.417-4.57-.398-2.491 1.422-3.715 1.319-5.876-.497-1.462-1.23-2.234-1.469-3.788-1.177l-1.95.368 1.716-.973c1.113-.63 2.588-.881 4.191-.712 1.687.177 3.227-.114 4.84-.915 2.014-1 2.768-1.082 5.088-.552 2.47.565 4.381.336 2.575-.308-.412-.147-.749-.648-.749-1.114 0-.613.794-.847 2.872-.847h2.871l-.249 5.68c-.136 3.125-.011 5.682.284 5.682.458 0 7.37-1.809 10.537-2.757.76-.228 1.048.024 1.048.915 0 1.324-1.064 2.865-3.868 5.607-1.388 1.357-2.165 1.67-3.592 1.448-1.559-.243-2.014.01-3.167 1.778-1.461 2.235-1.821 5.575-.6 5.553 1.038-.019 13.445-3.395 14.208-3.866 1.616-.998 1.118 1.925-1.046 6.125-4.984 9.677-5.255 12.695-1.861 20.77 1.61 3.832 2.074 4.461 3.056 4.15.945-.3 1.122-.116.96.999-.138.951-.763 1.51-2.06 1.845-1.193.307-2.468 1.354-3.553 2.917-1.902 2.741-4.566 4.387-6.242 3.856-.816-.259-1.41.137-2.195 1.464-.591 1-1.272 1.82-1.513 1.82-.241 0-.395 1.076-.343 2.391.187.74.126 1.524.098 2.286-.012.848.822 2.039.387 1.353-.327-.515-.557 4.02-.59 11.604-.052 12.413-.049 12.447 1.144 11.368.659-.595 1.197-1.444 1.197-1.887 0-.442.333-.737.74-.655.486.099.741-.665.748-2.237 0-1.461.3-2.417.758-2.466.411-.045 1.017-.114 1.347-.155.874-.11.21-.945.316-2.109-.232-1.447-.113-2.077-.148-2.87.114-1.746.625-2.87-.154-2.87a.607.607 0 0 0-.613.598c-.638-1.196-.11-.471-.722-1.6-.162-.62.058-2.55.488-2.951.63-.587 12.656-2.554 17.896-3.46.658-.115 1.4-.242 1.646-.284.247-.042.45-2.331.45-5.087 0-4.976-.013-5.016-1.753-5.736-1.382-.571-2.192-.566-3.825.024-1.85.668-2.241.615-3.643-.486-.915-.719-2.067-1.104-2.761-.923-.655.171-1.19.044-1.19-.282 0-.751 3.025-1.377 4.63-.957.67.174 2.04-.107 3.045-.627s2.182-.834 2.614-.7c.433.135 1.528.408 2.433.606l1.647.36v6.567c0 7.689-.846 7.197 8.68 5.043 3.623-.82 7.664-1.552 8.981-1.628 2.36-.136 2.394-.109 2.301 1.86-.059 1.245-.547 2.315-1.297 2.84-2.57 1.797-3.064 13.934-.62 15.24 1.248.668 1.533 3.496.365 3.628-.412.046-4.271.017-8.577-.065l-7.827-.148-1.904 5.316c-5.55 15.494-17.474 29.454-30.936 36.216-4.222 2.12-11.226 4.56-16.155 5.625-6.098 1.318-20.454 1.594-26.21.504zm-34.42-79.343c2.686-.648 2.844-.797 2.844-2.677 0-1.095-.178-1.99-.396-1.99-.746 0-6.014 3.599-7.15 4.885-1.129 1.276-1.127 1.28.362.875a204.87 204.87 0 0 1 4.34-1.093zm35.025-.564 4.939-1.294v-2.582c0-2.202-.154-2.527-1.048-2.209-1.407.5-8.095 5.22-9.085 6.413-1.026 1.234-.682 1.212 5.194-.328zm37.868.18c3.815-1.075 3.895-1.139 4.077-3.288.102-1.205-.046-2.191-.332-2.191-.678 0-5.356 3.067-7.637 5.007-2.187 1.86-1.39 1.957 3.892.471zm-59.059-3.346c2.912-.8 5.447-1.607 5.634-1.794.187-.186-2.534-.34-6.047-.34h-6.386v1.795c0 2.174.104 2.179 6.8.34zm42.493-2.54c3.234-.687.249-1.369-6.035-1.378l-6.137-.01v4.672l5.239-1.462c2.88-.804 6-1.624 6.933-1.822zm31.148 1.942c2.912-.8 5.447-1.607 5.634-1.794.187-.186-2.384-.34-5.712-.34s-6.19.223-6.357.495c-.378.61.231 3.094.758 3.094.21 0 2.765-.655 5.677-1.455z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23280b0b' stroke='%23280b0b' stroke-width='1.305' paint-order='markers stroke fill'/%3e%3cpath d='M900.986 444.359s-132.072-29.614-131.336-152.76V118.033l258.776-.002 1.947 172.633c.736 123.145-129.387 153.696-129.387 153.696zm-.185-5.493S773.868 409.35 774.603 286.204l.972-162.78h247.276l1.701 161.845c.736 123.145-123.75 153.597-123.75 153.597z' font-size='12' fill='%23fff' fill-rule='evenodd' stroke='%23000' stroke-width='1.234'/%3e%3cg transform='matrix(1.48121 0 0 1.54883 323.943 -124.042)'%3e%3cg stroke='%23512007' stroke-width='.385' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' fill='none' paint-order='markers stroke fill'%3e%3cpath style='marker:none' d='M413.302 472.407c.995-3.535 7.855-27.87 7.855-27.87l1.97-4.34m-6.409 30.301c0-.29 6.4-30.27 6.4-30.27m-3.384 27.461c.21-1.27 3.167-22.559 3.167-22.559l.218-4.901' transform='matrix(1 0 0 1.00603 -8.772 -141.32)'/%3e%3cpath style='marker:none' d='m405.267 325.302 4.657.522m-3.587-4.396 4.132.654m-3.056-4.452 3.513.634m-2.536-4.414 3.092.579' transform='matrix(1 0 0 1.00603 1.916 -3.19)'/%3e%3cpath style='marker:none' d='m420.228 447.356 2.48.553' transform='matrix(1 0 0 1.00603 -8.772 -141.32)'/%3e%3cpath d='m405.637 323.398 4.518.589m-3.398-4.463 4.132.654m-3.08-4.452 3.512.634m-2.61-4.415 3.092.58' style='marker:none' transform='matrix(1 0 0 1.00603 1.916 -3.19)'/%3e%3cpath d='m404.572 327.21 4.963.514' style='marker:none' stroke-width='.395' transform='matrix(1 0 0 1.00603 1.916 -3.19)'/%3e%3cpath style='marker:none' d='m404.018 329.119 5.303.504' stroke-width='.404' transform='matrix(1 0 0 1.00603 1.916 -3.19)'/%3e%3c/g%3e%3cpath style='marker:none' d='m414.16 265.564 9.275 5.285 2.616 6.394' fill='none' stroke='%23512007' stroke-width='.271' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cg style='marker:none' fill='none' stroke='%23512007' stroke-width='.317' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'%3e%3cpath transform='matrix(1.21616 0 0 1.2235 -125.57 -237.034)' d='M414.44 468.467c.995-3.536 6.717-23.929 6.717-23.929l1.97-4.342m-6.003 28.989c0-.291 5.995-28.956 5.995-28.956m-3.629 29.159c.211-1.27 3.41-24.258 3.41-24.258l.219-4.901' style='marker:none'/%3e%3cpath d='m405.267 325.302 4.657.522m-3.587-4.396 4.132.654m-3.056-4.452 3.513.634m-2.536-4.414 3.092.579' style='marker:none' transform='matrix(1.21616 0 0 1.2235 -112.572 -69.046)'/%3e%3cpath transform='matrix(1.21616 0 0 1.2235 -125.57 -237.034)' d='m420.228 447.356 2.48.553' style='marker:none'/%3e%3cpath style='marker:none' d='m405.637 323.398 4.518.589m-3.398-4.463 4.132.654m-3.08-4.452 3.512.634m-2.61-4.415 3.092.58m-7.231 14.685 4.963.514m-5.517 1.395 5.303.504' transform='matrix(1.21616 0 0 1.2235 -112.572 -69.046)'/%3e%3c/g%3e%3cpath style='marker:none' d='M336.133 310.078c11.183-14.064 19.469-27.856 27.418-42.95m-45.12 35.079c5.532-3.359 25.725-15.526 37.338-24.97 5.752-4.676 8.082-10.678 8.082-10.678m.867.221c-.29 0 8.575 6.002 8.575 6.002l1.6 6.787m56.39 30.521c-.29 0-33.137-41.326-33.137-41.617 0-.29-9.047-6.81-9.047-6.519l-7.618 9.992' fill='none' stroke='%23512007' stroke-width='.271' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cg style='marker:none' fill='none' stroke='%23512007' stroke-width='.484' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' font-size='12'%3e%3cpath style='marker:none' d='m413.635 471.006 7.58-27.036 2.013-3.776m-7.036 31.609 6.163-27.544.873-4.065m-4.396 31.175 4.788-26.855-.392-4.32m-9.302 27.033 6.102.863' transform='matrix(.84711 0 0 .78432 5.016 -42.669)' stroke-width='.474'/%3e%3cpath style='marker:none' d='m380.154 325.92 5.185.74m-4.065-4.836 4.772.65m-3.737-4.788 4.28.555m-2.989-4.703 3.57.568' transform='matrix(.84711 0 0 .75482 34.964 74.706)'/%3e%3cpath style='marker:none' d='m419.95 447.418 3.568.624' transform='matrix(.84711 0 0 .78432 5.016 -42.669)' stroke-width='.474'/%3e%3cpath d='m383.951 311.503 3.568.568m-4.744 3.58 4.28.555m-5.519 3.583 4.773.65' style='marker:none' transform='matrix(.84711 0 0 .75482 34.964 74.706)'/%3e%3c/g%3e%3cg stroke-width='.618' color='%23000' paint-order='markers stroke fill'%3e%3cpath d='M412.808 266.403s-2.355-.847-3.566-.742c-1.172.103-2.093 1.14-3.256 1.306-1.018.144-2.055-.458-3.07-.297-.93.148-2.574 1.127-2.574 1.127s1.658-.573 2.48-.415c1.216.234 1.9 1.797 3.133 1.92 1.164.117 2.116-1.224 3.286-1.186 1.318.042 3.598 1.572 3.598 1.572z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23fff' fill-opacity='.996' stroke='%23512007' stroke-width='.542' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996'/%3e%3cpath d='M409.242 265.662c-.064.006-.126.024-.19.035v.886c-1.11.127-1.91 1.32-3.025 1.385-1.032.06-1.906-.914-2.939-.944-.666-.02-1.704.317-2.326.541-.015.008-.037.018-.05.026.603-.207 1.654-.526 2.31-.462 1.1.109 1.9 1.324 3.005 1.342 1.08.017 1.902-1.18 2.982-1.216h.044v.87c.062-.006.125-.01.19-.009.125.004.464.067.604.096v-.854c1.356.245 2.95 1.153 2.95 1.153v-1.166s-1.631-.626-2.95-.72v-.948a3.221 3.221 0 0 0-.605-.015z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23a00'/%3e%3c/g%3e%3cg transform='translate(.233)' stroke-width='.541' color='%23000' paint-order='markers stroke fill'%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' d='M387.842 262.276h2.411v72.953h-2.411z'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23e6ab87' d='M388.247 262.26h1.601v72.984h-1.601z'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23efc9b2' d='M388.667 262.26h.762v72.984h-.762z'/%3e%3crect ry='0' rx='0' y='261.268' x='387.119' height='.787' width='3.857' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996'/%3e%3c/g%3e%3cg stroke-width='.541' color='%23000' paint-order='markers stroke fill'%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' d='M363.077 266.818h2.411v72.953h-2.411z'/%3e%3crect style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' width='3.857' height='.787' x='362.354' y='265.697' rx='0' ry='0' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23e6ab87' d='M363.574 266.923h1.417v72.743h-1.417z'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23efc9b2' d='M363.958 266.923h.648v72.743h-.648z'/%3e%3c/g%3e%3cg stroke-width='.541' color='%23000' fill='%23dd8b59' stroke='%23512007' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' d='M413.073 265.655h2.411v72.953h-2.411z'/%3e%3crect ry='0' rx='0' y='264.597' x='412.351' height='.787' width='3.857' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible'/%3e%3c/g%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23e6ab87' paint-order='markers stroke fill' d='M413.479 265.669h1.601v72.984h-1.601z'/%3e%3cpath style='marker:none' d='m323.837 304.704 10.787-2.11 16.432 14.763-13.114 2.075z' fill='none' stroke='%23512007' stroke-width='.271' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23efc9b2' paint-order='markers stroke fill' d='M413.898 265.669h.762v72.984h-.762z'/%3e%3cg style='marker:none' fill='none' stroke='%23512007' stroke-width='.484' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' font-size='12'%3e%3cpath style='marker:none' d='m413.635 471.006 7.58-27.036 2.013-3.776m-7.036 31.609 6.163-27.544.873-4.065m-4.396 31.175 4.788-26.855-.392-4.32m-9.302 27.033 6.102.863' transform='matrix(-.84711 0 0 .78432 772.984 -43.832)' stroke-width='.474'/%3e%3cpath style='marker:none' d='m380.154 325.92 5.185.74m-4.065-4.836 4.772.65m-3.737-4.788 4.28.555m-2.989-4.703 3.57.568' transform='matrix(-.84711 0 0 .75482 743.036 73.543)'/%3e%3cpath style='marker:none' d='m419.95 447.418 3.568.624' transform='matrix(-.84711 0 0 .78432 772.984 -43.832)' stroke-width='.474'/%3e%3cpath d='m383.951 311.503 3.568.568m-4.744 3.58 4.28.555m-5.519 3.583 4.773.65m-5.448 3.51 4.773.651' style='marker:none' transform='matrix(-.84711 0 0 .75482 743.036 73.543)'/%3e%3c/g%3e%3cpath style='marker:none' d='M445.08 320.351c-.29-.872-.463-2.436-.556-3.669-.088-1.16-.175-2.337 0-3.488.195-1.283 1.158-3.729 1.158-3.729s-25.289 3.623-25.289 3.914c0-.335-.156 6.885-.156 6.885z' fill='%23e98e01' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='marker:none' d='m439.854 312.355.01 6.577h3.205l-.032-7.119zm-4.648.67-.008 5.907 3.214-.068-.017-6.331zm-4.633 5.907.04-5.059 3.023-.487.12 5.544zm-4.517-.012-.016-4.378 3.026-.542.065 4.932zm-4.656.012.162-3.74 3.01-.463.026 4.198z' fill='%23e9b001' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='marker:none' d='M333.946 301.377c0 .872 3.721 18.639 3.721 18.639.078.334 1.296.45 1.181-.334-.042-.287-4.003-18.36-4.003-18.36-.454-.42-.445-.126-.9.055z' fill='%23dd8b59' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='marker:none' d='m323.442 303.82 24.465 10.784-.078 1.053-24.352-10.398-8.886-4.968 8.851 3.53z' fill='%23dd8b59' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='marker:none' d='M354.218 286.541s-3.798 2.741-2.926 7.973c.872 5.232 4.655 8.237 4.945 8.237.291 0 3.902-3.662 7.39-4.534 3.489-.873 12.226-.36 12.226-.36s-4.45-4.626-3.577-8.986c.872-4.36 4.293-8.099 4.293-8.099s-21.479 5.77-22.35 5.77z' fill='%23fec618' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='marker:none' d='m444.654 307.765-18.022-28.487' fill='none' stroke='%23512007' stroke-width='.271' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='marker:none' d='M380.124 281.604c0 .581-3.928 4.83-3.685 9.523.23 4.434 3.198 11.15 3.489 11.15.291 0 4.897-4.646 8.676-5.518 3.778-.872 12.9.251 12.61.251-.29 0-3.235-7.32-3.235-10.517 0-3.198 4.804-11.007 4.804-11.007z' fill='%23fec618' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cg color='%23000' paint-order='markers stroke fill'%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M399.596 281.13c-4.772 1.128-16.548 3.885-22.076 4.987-.398 1.136-.713 2.303-.717 3.197-.006 1.388-.232 3.223.2 4.988l21.4-4.884c-.388-1.175-.647-2.344-.556-3.295.126-1.305.891-3.199 1.749-4.992z' overflow='visible' fill='%23fed65b'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m398.794 282.927-21.901 4.737c-.147.594-.35 1.167-.353 1.65-.004.942-.256 2.091.054 3.285l21.381-4.745c-.12-.618-.178-1.209-.128-1.73.084-.87.458-2.007.947-3.197z' overflow='visible' fill='%23fedf82'/%3e%3c/g%3e%3cg transform='matrix(.9935 -.1088 .11896 .9935 -31.642 44.095)' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round'%3e%3cuse height='100%25' width='100%25' transform='matrix(.99572 .08841 -.09667 .99572 28.306 -28.34)' id='b' xlink:href='%23a' y='0' x='0' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='4' stroke-dasharray='none'/%3e%3cuse height='100%25' width='100%25' transform='translate(5.666 -.532)' xlink:href='%23b'/%3e%3cuse height='100%25' width='100%25' transform='translate(-5.708 .577)' xlink:href='%23b'/%3e%3c/g%3e%3cpath style='marker:none' d='M405.627 303.318s2.99 9.099 6.181 12.586c1.973 2.156 7.557 4.651 7.557 4.651M379.715 303s4.047 17.915 11.024 22.275a952.102 952.102 0 0 1 12.789 8.139' fill='none' stroke='%23512007' stroke-width='.271' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='marker:none' d='M379.774 303.244s7.767 13.31 14.162 17.962c6.395 4.65 15.115 9.01 15.115 9.01m-53.484-27.614c2.034 3.488 1.744 10.174 4.069 12.499 2.325 2.326 5.814 7.558 5.814 7.558' fill='none' stroke='%23512007' stroke-width='.271' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='marker:none' d='M356.148 302.893c1.163 1.744 4.406 10.428 6.395 13.08 1.454 2.326 16.278 17.15 16.278 17.15' fill='none' stroke='%23512007' stroke-width='.271' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' d='M432.986 300.673h.471v11.355h-.471z'/%3e%3cpath style='marker:none' d='M419.365 314.45c3.198 0 27.324-4.65 27.324-4.65s.872-2.907 0-2.907-27.324 5.523-27.324 5.523z' fill='%23e96a01' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' id='a' d='m119.614 166.093-.438-1.408-1.474.053 1-1.083-.783-1.25 1.439.324.69-1.303.439 1.408 1.474-.053-1 1.084.783 1.25-1.439-.325z' transform='matrix(.673 -.09611 .1005 .64363 291.729 188.469)' color='%23000' clip-rule='nonzero' display='inline' overflow='visible' visibility='visible' opacity='1' color-interpolation='sRGB' color-interpolation-filters='linearRGB' vector-effect='none' fill='red' fill-opacity='.996' fill-rule='nonzero' stroke='%23512007' stroke-width='.813' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='4' stroke-dasharray='none' stroke-dashoffset='0' stroke-opacity='.996' paint-order='markers stroke fill' color-rendering='auto' image-rendering='auto' shape-rendering='auto' text-rendering='auto'/%3e%3cuse xlink:href='%23b' transform='matrix(.99274 -.11507 .12581 .99274 -32.657 51.235)' width='100%25' height='100%25' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round'/%3e%3crect ry='0' rx='0' y='264.597' x='412.351' height='.787' width='3.857' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath d='M405.154 275.569c-.23.602 1.54 1.923 2.92 1.814 1.379-.11 1.73-1.157 2.093-1.627.322.56.876 2.971 4.396 1.817 2.919-1.073 2.679-2.794 3.089-3.188.251.068.711.649 1.348.672 2.506.095 4.672-4.166 4.397-4.145-.276.022-17.668 4.904-18.243 4.657z' style='marker:none' fill='%23fec618' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' transform='matrix(.96841 -.24935 .271 .96258 0 0)' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' d='M315.065 367.106h19.723v.981h-19.723z'/%3e%3cpath d='M379.682 273.515s1.06 1.999 2.892 1.779c1.83-.22 1.851-2.083 1.851-2.083s1.102 2.867 3.946 2.26c2.843-.608 3.511-3.611 3.511-3.611s1.451 1.963 3.702.895c2.251-1.069 3.113-4.182 2.85-4.151-.26.031-18.752 4.911-18.752 4.911z' style='marker:none' fill='%23fec618' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath transform='matrix(.96841 -.24935 .271 .96258 0 0)' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' d='M291.353 358.737h19.723v.981h-19.723z'/%3e%3cpath d='M355.231 277.698c-.478.324.107 2.122 2.097 2.019 2.501-.286 2.724-2.612 2.724-2.612s.715 3.268 3.86 2.638c3.143-.63 4.806-4.829 4.806-4.829s.08 1.585 2.207 1.337c2.229-.592 2.568-3.217 2.568-3.217-6.057 1.602-12.169 3.088-18.262 4.664z' style='marker:none' fill='%23fec618' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' transform='matrix(.96841 -.24935 .271 .96258 0 0)' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' d='M266.32 356.808h19.723v.981H266.32z'/%3e%3cg stroke-width='.541' color='%23000' paint-order='markers stroke fill'%3e%3cpath d='M387.683 262.817s-3.905-1.405-5.913-1.23c-1.944.171-3.47 1.89-5.4 2.165-1.687.24-3.408-.759-5.09-.492-1.544.245-4.269 1.869-4.269 1.869s2.75-.951 4.114-.689c2.016.388 3.149 2.98 5.194 3.185 1.931.194 3.51-2.03 5.45-1.967 2.185.07 5.966 2.606 5.966 2.606z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23fff' fill-opacity='.996' stroke='%23512007' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996'/%3e%3cpath d='M381.769 261.588c-.108.01-.21.039-.315.057v1.47c-1.841.21-3.168 2.187-5.018 2.295-1.71.1-3.16-1.514-4.873-1.564-1.105-.032-2.826.526-3.858.897l-.083.043c1.002-.344 2.744-.873 3.831-.766 1.824.18 3.15 2.195 4.983 2.225 1.792.029 3.154-1.957 4.945-2.016.023-.001.05.001.073.001v1.44c.104-.01.209-.016.315-.013.208.007.77.111 1.002.158V264.4c2.249.407 4.893 1.912 4.893 1.912l-.001-1.933s-2.704-1.038-4.892-1.195v-1.57c-.233-.046-.8-.043-1.002-.025z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23a00'/%3e%3c/g%3e%3cg stroke-width='.618' color='%23000' paint-order='markers stroke fill'%3e%3cpath d='M362.907 267.566s-3.422-1.231-5.182-1.077c-1.703.15-3.04 1.655-4.732 1.896-1.478.211-2.987-.665-4.461-.43-1.353.214-3.74 1.637-3.74 1.637s2.409-.834 3.605-.604c1.767.34 2.759 2.611 4.551 2.791 1.693.17 3.076-1.779 4.777-1.724 1.914.062 5.227 2.284 5.227 2.284z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23fff' fill-opacity='.996' stroke='%23512007' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' stroke-width='.542'/%3e%3cpath d='M357.724 266.489c-.094.008-.184.034-.276.05v1.288c-1.613.184-2.776 1.917-4.397 2.012-1.499.087-2.77-1.327-4.27-1.371-.969-.028-2.477.46-3.381.786l-.073.037c.878-.3 2.404-.764 3.358-.67 1.597.157 2.76 1.923 4.366 1.949 1.57.025 2.764-1.715 4.333-1.767l.064.001v1.262a2.3 2.3 0 0 1 .276-.011c.182.006.675.097.878.138v-1.241c1.97.357 4.288 1.676 4.288 1.676l-.001-1.694s-2.37-.91-4.287-1.047v-1.377c-.204-.04-.702-.037-.878-.021z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' overflow='visible' fill='%23a00'/%3e%3c/g%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' transform='matrix(.96841 -.24935 .271 .96258 0 0)' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' d='M261.207 364.593h25.51v1.269h-25.51zm26.818 1.625h25.51v1.269h-25.51z'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' transform='matrix(.96841 -.24935 .271 .96258 0 0)' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' d='M288.025 366.218h25.51v1.269h-25.51zm19.341 28.401h19.723v.981h-19.723z'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' transform='matrix(.96841 -.24935 .271 .96258 0 0)' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' d='M307.366 394.619h19.723v.981h-19.723z'/%3e%3cpath style='marker:none' d='M21.125 565.715a2.375 2.375 0 0 0-1.074 4.494c-.067.22-.1.447-.102.676a2.37 2.37 0 0 0 2.174 2.36 2.368 2.368 0 0 0-.014.247c0 1.312 1.32 2.375 2.632 2.375 1.027 0 1.437-.885 1.743-1.024l3.065 1.09c-1.347 2.807 9.148 43.71 51.92 41.518 42.233-2.165 50.885-41.566 50.885-41.566s-19.023-.219-19.391-.219c-.367 0-14.705 18.451-33.084 18.066-18.38-.384-24.26-4.997-28.305-8.84-4.043-3.843-7.719-9.609-7.719-9.609l-21.105-9.088c-1.419-.454-.892-.48-1.625-.48z' transform='matrix(.79077 0 0 .75625 330.038 -113.63)' fill='%23dd8b59' fill-rule='evenodd' stroke='%23512007' stroke-width='.7' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M390.46 339.321c-9.839-.78-19.23-3.926-24.24-8.459-1.718-1.554-3.385-3.519-3.85-4.991-.179-.568-.212-1.388-.28-1.467-.069-.079-2.067-.58-4.317-1.231-6.215-1.8-5.956-1.923-6.622-2.21-.143-.327-.391-1.074-.493-1.074a1.87 1.87 0 0 1-.488-.11c-.192-.071-.302-.013-.302.16 0 .15.172.316.382.368.508.127.517.962.013 1.22-.615.315-1.289.214-1.908-.284-.69-.555-.773-1.12-.177-1.204.61-.087 1.194-.929 1.043-1.504-.081-.31-.255-.473-.503-.473-.463 0-.482.16-.054.46.304.213.304.256-.004.706-.601.877-2.049.572-2.532-.535-.36-.824-.366-.813.382-.813.36 0 .792-.051.962-.114.434-.16.911-1.113.77-1.54-.12-.36-.857-.51-.857-.173 0 .1.086.182.191.182.299 0 .225.673-.109.992-.748.715-2.381-.018-2.413-1.084a3.376 3.376 0 0 1 .12-.96c.151-.454 1.011-.957 1.637-.957.522 0 17.82 7.106 17.997 7.393.802 1.301 4.081 5.158 5.678 6.678 3.494 3.327 6.638 4.914 11.896 6.003 4.849 1.005 12.617 1.343 15.72.685 3.758-.798 7.365-2.285 10.792-4.451 2.896-1.83 4.721-3.265 7.662-6.026l2.6-2.44 1.864.052 1.864.053-1.102 1.37c-6.79 8.44-14.706 13.8-22.677 15.354-1.913.373-6.47.596-8.644.424z' color='%23000' overflow='visible' fill='%23fecf3e' paint-order='markers stroke fill'/%3e%3cg stroke='%23512007' stroke-width='.385' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' fill='none' paint-order='markers stroke fill'%3e%3cpath style='marker:none' d='M413.684 471.046c.995-3.536 7.473-26.508 7.473-26.508l1.97-4.342m-6.027 28.941c0-.291 6.019-28.908 6.019-28.908m-3.003 26.098c.21-1.27 2.785-21.197 2.785-21.197l.218-4.901' transform='matrix(-1 0 0 1.00603 787.264 -141.848)'/%3e%3cpath style='marker:none' d='m405.267 325.156 4.657.523m-3.587-4.454 4.132.655m-3.056-4.368 3.513.634m-2.536-4.347 3.092.579' transform='matrix(-1 0 0 1.00603 776.576 -3.718)'/%3e%3cpath style='marker:none' d='m420.228 447.356 2.48.553' transform='matrix(-1 0 0 1.00603 787.264 -141.848)'/%3e%3cpath d='m405.637 323.277 4.657.523m-3.537-4.36 4.132.654m-3.08-4.391 3.512.634m-2.61-4.371 3.092.58' style='marker:none' transform='matrix(-1 0 0 1.00603 776.576 -3.718)'/%3e%3c/g%3e%3cpath style='marker:none' d='M355.552 304.616c-.478.323.108 2.122 2.098 2.018 2.5-.285 2.723-2.017 2.723-2.017s1.053 2.433 4.197 1.803c3.143-.63 4.47-3.995 4.47-3.995s.08.992 2.206.744c2.229-.592 2.569-3.217 2.569-3.217-6.058 1.602-12.17 3.088-18.263 4.664z' fill='%23fec618' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath transform='matrix(.96841 -.24935 .271 .96258 0 0)' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' d='M256.258 382.41h25.51v1.269h-25.51z'/%3e%3cg style='marker:none'%3e%3cpath d='M432.984 300.672s-1.755-.632-2.658-.553c-.874.077-1.56.85-2.428.973-.758.108-1.532-.341-2.288-.221-.694.11-1.919.84-1.919.84s1.236-.427 1.85-.31c.906.175 1.415 1.34 2.334 1.432.869.087 1.578-.912 2.45-.884.983.031 2.682 1.171 2.682 1.171z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23fec618' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3c/g%3e%3cpath style='marker:none' d='M404.583 284.44s-2.315 4.72-2.327 7.248c-.018 3.763 3.072 10.822 3.363 10.822.291 0 4.774-4.633 8.262-4.924 3.488-.291 11.226-.21 11.226-.21s-3.288-5.681-2.997-8.878c.29-3.198 4.184-9.978 4.184-9.978z' fill='%23fec618' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath transform='matrix(.96841 -.24935 .271 .96258 0 0)' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' d='M309.91 375.046h25.51v1.269h-25.51z'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M350.237 321.831c1.019-.48.84-1.823-.258-1.782m-4.319-2.449c2.458 1.047 2.84-1.845 1.852-1.504m-.226 3.889c2.005.303 2.115-2.015 1.188-1.671' color='%23000' overflow='visible' fill='none' stroke='%23512007' stroke-width='.271' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cg style='marker:none' fill='none' stroke='%23512007' stroke-width='.317' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'%3e%3cpath style='marker:none' d='M414.44 467.944c.995-3.535 6.717-23.406 6.717-23.406l1.97-4.342m-6.121 28.205c0-.29 6.113-28.172 6.113-28.172m-3.511 28.375c.21-1.27 3.293-23.474 3.293-23.474l.218-4.901' transform='matrix(-1.21616 0 0 1.2235 903.715 -236.92)'/%3e%3cpath style='marker:none' d='m405.267 325.302 4.657.522m-3.587-4.396 4.132.654m-3.056-4.452 3.513.634m-2.536-4.414 3.092.579' transform='matrix(-1.21616 0 0 1.2235 890.717 -68.932)'/%3e%3cpath style='marker:none' d='m420.228 447.356 2.48.553' transform='matrix(-1.21616 0 0 1.2235 903.715 -236.92)'/%3e%3cpath d='m405.637 323.398 4.518.589m-3.398-4.463 4.132.654m-3.08-4.452 3.512.634m-2.61-4.415 3.092.58m-7.231 14.685 4.963.514m-5.517 1.395 5.303.504' style='marker:none' transform='matrix(-1.21616 0 0 1.2235 890.717 -68.932)'/%3e%3c/g%3e%3cpath style='marker:none' d='M380.202 303.726s1.168 2.204 3.188 1.961c2.018-.242 2.041-2.296 2.041-2.296s1.215 3.161 4.35 2.492c3.134-.67 3.87-3.982 3.87-3.982s1.6 2.165 4.082.987c2.482-1.178 3.432-4.61 3.143-4.576-.288.035-20.674 5.414-20.674 5.414z' fill='%23fec618' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' transform='matrix(.96841 -.24935 .271 .96258 0 0)' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' d='M281.439 387.928h25.51v1.269h-25.51z'/%3e%3cpath style='marker:none' d='M405.364 303.16s1.787 11.317 4.99 15.941c1.668 2.407 6.977 5.523 6.977 5.523' fill='none' stroke='%23512007' stroke-width='.271' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='marker:none' d='M405.302 303.976c-.23.602 1.54 1.923 2.92 1.813 1.38-.109 1.73-1.156 2.094-1.626.321.56.875 2.971 4.395 1.816 2.919-1.072 2.68-2.793 3.09-3.187.25.067.71.648 1.347.672 2.507.094 4.673-4.167 4.397-4.145-.276.022-17.667 4.903-18.243 4.657z' fill='%23fec618' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath transform='matrix(.96841 -.24935 .271 .96258 0 0)' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23dd8b59' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' d='M304.496 394.392h25.51v1.269h-25.51z'/%3e%3cpath style='marker:none' d='m418.203 321.717 27.871.582c.517-1 .33-1.552.034-2.035l-27.894-.29z' fill='%23e96a01' fill-rule='evenodd' stroke='%23512007' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m352.252 304.395 23.967-6.164.18.642-23.983 6.163z' color='%23000' overflow='visible' fill='%23e6ab87' paint-order='markers stroke fill'/%3e%3cpath d='m352.468 304.475 23.38-6.041.123.46-23.433 5.977z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23efc9b2' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m352.388 285.97 23.966-6.164.181.642-23.983 6.163z' color='%23000' overflow='visible' fill='%23e6ab87' paint-order='markers stroke fill'/%3e%3cpath d='m352.603 286.05 23.38-6.041.124.46-23.433 5.977z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23efc9b2' paint-order='markers stroke fill'/%3e%3cpath d='m355.17 277.17 18.096-4.654.137.485-18.109 4.653z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23e6ab87' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m355.333 277.23 17.654-4.56.092.347-17.692 4.512z' color='%23000' overflow='visible' fill='%23efc9b2' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m379.983 272.725 18.096-4.654.137.485-18.109 4.653z' color='%23000' overflow='visible' fill='%23e6ab87' paint-order='markers stroke fill'/%3e%3cpath d='m380.146 272.786 17.653-4.562.093.348-17.693 4.512z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23efc9b2' paint-order='markers stroke fill'/%3e%3cpath d='m405.076 274.964 18.095-4.654.137.485-18.109 4.654z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23e6ab87' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m405.238 275.025 17.654-4.562.092.348-17.692 4.512z' color='%23000' overflow='visible' fill='%23efc9b2' paint-order='markers stroke fill'/%3e%3cpath d='m378.634 280.856 23.966-6.163.18.642-23.983 6.163z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23e6ab87' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m378.849 280.937 23.38-6.042.123.46-23.433 5.977z' color='%23000' overflow='visible' fill='%23efc9b2' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m402.328 283.93 23.966-6.162.181.641-23.983 6.164z' color='%23000' overflow='visible' fill='%23e6ab87' paint-order='markers stroke fill'/%3e%3cpath d='m402.543 284.012 23.38-6.042.124.46-23.433 5.977z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23efc9b2' paint-order='markers stroke fill'/%3e%3cpath d='m378.04 303.436 23.967-6.164.18.642-23.983 6.163z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23e6ab87' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m378.256 303.516 23.38-6.041.123.46-23.433 5.977z' color='%23000' overflow='visible' fill='%23efc9b2' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M373.268 285.873c-4.355 1.079-14.551 3.595-21.916 5.347a8.711 8.711 0 0 0-.06 3.294 13.259 13.259 0 0 0 1.33 3.945l20.436-4.759c-.673-1.468-1.114-3.166-.781-4.828.21-1.05.569-2.064.991-2.999z' color='%23000' overflow='visible' fill='%23fed65b' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M372.766 287.12c-2.645.668-15.246 3.846-21.584 5.368a9.079 9.079 0 0 0 .11 2.026c.194 1.162.534 2.208.945 3.142l20.443-4.89c-.44-1.232-.668-2.574-.403-3.894.12-.599.289-1.185.49-1.752z' color='%23000' overflow='visible' fill='%23fedf82' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M423.76 283.506c-4.502 1.126-15.612 3.884-20.827 4.986-.376 1.136-.672 2.303-.677 3.196-.006 1.388.412 3.223.955 4.988l19.423-4.883c-.366-1.175-.61-2.344-.523-3.295.118-1.305.84-3.199 1.65-4.992z' color='%23000' overflow='visible' fill='%23fed65b' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m423.003 285.302-20.504 4.737c-.138.594-.24 1.167-.243 1.65-.004.942.186 2.091.48 3.284l19.495-4.744c-.113-.619-.168-1.21-.12-1.73.078-.87.432-2.007.892-3.197z' color='%23000' overflow='visible' fill='%23fedf82' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m402.205 303.892 23.966-6.163.18.642-23.983 6.163z' color='%23000' overflow='visible' fill='%23e6ab87' paint-order='markers stroke fill'/%3e%3cpath d='m402.42 303.973 23.38-6.041.123.46-23.432 5.976z' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='%23efc9b2' paint-order='markers stroke fill'/%3e%3cuse x='0' y='0' xlink:href='%23c' id='d' transform='translate(14.52 2.971)' width='100%25' height='100%25' fill='%23520' stroke='%232b1100'/%3e%3cg transform='translate(-.135)' fill='%23520' stroke='%232b1100'%3e%3cellipse ry='.913' rx='.955' cy='328.845' cx='367.833' id='e' style='marker:none' opacity='1' vector-effect='none' fill='%23520' fill-opacity='1' fill-rule='evenodd' stroke='%232b1100' stroke-width='.541' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='4' stroke-dasharray='none' stroke-dashoffset='0' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cuse height='100%25' width='100%25' transform='translate(23.503 -8.526)' xlink:href='%23d'/%3e%3c/g%3e%3cg transform='translate(-.101)' fill='%23520' stroke='%232b1100'%3e%3cuse height='100%25' width='100%25' transform='translate(8.712 5.555)' id='c' xlink:href='%23e' y='0' x='0' fill='%23520' stroke='%232b1100'/%3e%3cuse height='100%25' width='100%25' transform='translate(29.243)' xlink:href='%23c'/%3e%3c/g%3e%3c/g%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='m288.864 682.347 8.903 2.593c2.214 10.233 21.926 16.04 34.514 14.994 10.772-.896 19.986-8.545 26.775-17.513' color='%23000' overflow='visible' fill='none' stroke='%23512007' stroke-width='.232' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' transform='matrix(1.48121 0 0 1.54883 419.01 -682.25)'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M296.071 684.503c.63 6.791 9.553 18.81 33.508 18.81 23.2 0 32.449-21.02 32.449-21.02' color='%23000' overflow='visible' fill='none' stroke='%23512007' stroke-width='.232' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' transform='matrix(1.48121 0 0 1.54883 419.01 -682.25)'/%3e%3cpath d='M293.562 683.837c.728 7.865 8.265 24.187 36.005 24.187 26.866 0 36.456-25.455 36.456-25.455' style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' color='%23000' overflow='visible' fill='none' stroke='%23512007' stroke-width='.269' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' transform='matrix(1.48121 0 0 1.54883 419.01 -682.25)'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M291.315 683.184c-.235 5.794 8.842 29.466 38.189 29.072 26.032-.35 36.788-23.303 39.244-29.58' color='%23000' overflow='visible' fill='none' stroke='%23512007' stroke-width='.301' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill' transform='matrix(1.48121 0 0 1.54883 419.01 -682.25)'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M901.958 406.694c-12.297-.727-22.395-3.729-30.346-9.025-2.337-1.556-3.715-2.678-5.706-4.643-4.184-4.13-6.944-8.862-7.88-13.512-.13-.647-.205-1.208-.166-1.247.039-.038.513.065 1.054.229l.984.298.167.736c.25 1.106 1.029 2.904 1.831 4.225 1.963 3.235 5.22 6.342 9.414 8.984 1.893 1.193 6.193 3.338 8.579 4.28 11.147 4.405 24.698 6.256 34.164 4.665 9.475-1.59 18.61-6.778 27.377-15.546 3.237-3.237 5.486-5.833 8.494-9.801l1.067-1.409 1.829.023c1.005.013 1.853.05 1.883.08.032.03-.371.87-.895 1.862-2.577 4.9-6.193 9.87-10.258 14.104-8.867 9.238-19.835 14.592-32.043 15.645-1.536.132-7.617.164-9.549.05z' color='%23000' overflow='visible' fill='none' stroke='%23512007' stroke-width='.042' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M904.291 414.053c-7.36-.216-14.667-1.43-20.583-3.418-2.954-.992-4.149-1.488-6.933-2.877-8.738-4.358-15.029-10.568-19.108-18.863-1.78-3.62-3.061-7.691-3.462-11.006l-.1-.82.37.091c.202.052.923.264 1.601.472l1.232.38.195 1.197c.106.658.439 1.936.738 2.838 2.695 8.132 10.1 15.438 20.154 19.88 4.612 2.037 10.385 3.648 16.135 4.502 5.925.878 13.958 1.094 18.846.504 13.361-1.611 25.11-8.457 34.401-20.044 2.51-3.132 4.764-6.573 6.5-9.926l1.05-2.03 2.706.1c1.489.057 2.722.115 2.74.133.076.063-1.158 2.764-2.232 4.889-2.444 4.834-5.487 9.438-9.115 13.792-1.779 2.135-5.611 5.98-7.621 7.643-8.293 6.868-17.347 10.863-27.539 12.152-1.877.238-6.62.522-7.922.475a361.97 361.97 0 0 0-2.053-.064z' color='%23000' overflow='visible' fill='none' stroke='%23512007' stroke-width='.042' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M902.878 420.574c-9.436-.558-16.674-2.363-23.891-5.957-9.716-4.837-17.754-12.688-23.076-22.539-2.141-3.964-3.983-8.779-4.65-12.167-.384-1.948-.593-3.819-.425-3.819.058 0 .694.17 1.412.377l1.306.378.09.719c.325 2.638 1.154 5.884 2.15 8.428 4.307 10.99 12.856 19.306 24.73 24.052 5.456 2.18 11.458 3.542 18.816 4.27 2.958.292 12.105.249 14.571-.07 11.252-1.45 20.756-5.79 29.514-13.474 1.705-1.496 4.791-4.67 6.353-6.533 4.423-5.277 8.65-12.077 11.022-17.732l.56-1.335h1.623c.894 0 1.669.046 1.725.103.267.267-3.269 7.922-5.346 11.569-5.915 10.389-13.331 18.687-21.753 24.338-7.824 5.249-16.343 8.281-25.819 9.189-1.63.157-7.454.288-8.914.203z' color='%23000' overflow='visible' fill='none' stroke='%23512007' stroke-width='.042' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M900.261 423.107c-4.98-.355-9.044-1.045-13.242-2.249-14.592-4.186-26.494-14.208-34.205-28.802-2.76-5.226-5.167-12.287-5.423-15.911l-.083-1.183.692.212c.382.117 1.021.312 1.422.43l.728.216.099 1.162c.487 5.774 3.573 13.487 8.051 20.118 8.957 13.266 22.574 21.505 38.918 23.55 22.39 2.8 41.341-5.014 55.508-22.89 4.58-5.78 8.984-13.328 11.812-20.254l.895-2.193 1.078-.04 1.077-.042-.214.749c-1.343 4.69-3.868 10.567-6.54 15.224-7.202 12.552-17.42 21.757-29.937 26.97-6.487 2.702-13.688 4.33-21.583 4.882-1.866.13-7.496.162-9.054.051z' color='%23000' overflow='visible' fill='none' stroke='%23512007' stroke-width='.042' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.996' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M902.556 406.645c-12.884-.658-23.64-3.947-31.928-9.764-4.454-3.125-8.382-7.53-10.515-11.79-1.114-2.223-2.117-5.249-2.12-6.392v-.379l.813.224c.447.122.864.268.927.323.063.054.21.474.325.933.315 1.243 1.75 4.079 2.753 5.437 2.38 3.225 6.098 6.312 10.53 8.743 8.911 4.886 20.36 7.901 31.55 8.31 11.702.428 21.513-3.175 31.76-11.663 2.188-1.814 8.076-7.72 9.952-9.984a153.606 153.606 0 0 0 2.961-3.713l1.446-1.884h3.61l-.703 1.4c-4.04 8.05-11.37 16.505-18.696 21.563-6.49 4.48-13.852 7.318-21.526 8.295-2.128.27-8.62.47-11.14.341z' color='%23000' overflow='visible' fill='%23fec413' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M904.678 413.995c-8.401-.268-15.838-1.59-22.636-4.027-2.103-.753-6.353-2.805-8.655-4.178-4.45-2.656-8.592-6.345-11.587-10.32-3.01-3.997-5.559-9.221-6.755-13.846-.41-1.59-.92-4.315-.825-4.41.024-.024.707.153 1.519.392l1.475.436.245 1.252c.737 3.754 2.645 7.741 5.314 11.1 3.506 4.413 9.047 8.606 14.884 11.264 8.273 3.766 17.848 5.637 28.875 5.641 4.028.002 6.296-.156 9.119-.634 11.816-2.002 22.232-8.103 30.729-18 3.245-3.78 6.257-8.252 8.292-12.311l.656-1.309 1.236.017c.68.01 1.886.058 2.68.107l1.442.088-.492 1.132c-.91 2.09-2.84 5.804-4.16 8.004-3.427 5.71-7.544 10.826-12.183 15.137-8.57 7.964-18.989 12.837-30.048 14.057-2.083.23-6.722.525-7.479.476a75.01 75.01 0 0 0-1.646-.068z' color='%23000' overflow='visible' fill='%23e9b001' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M899.537 420.244c-7.384-.802-12.941-2.238-18.656-4.821-10.16-4.592-18.562-12.312-24.313-22.338-1.788-3.118-3.677-7.52-4.6-10.718-.544-1.888-1.05-4.575-1.05-5.577 0-.578.026-.624.298-.538.163.052.713.214 1.221.359.509.145.95.29.98.32.03.03.15.653.266 1.383.643 4.052 1.76 7.49 3.673 11.304 2.075 4.137 4.514 7.426 8.08 10.896 8.843 8.605 21.702 13.416 37.471 14.02 8.573.328 14.055-.284 20.657-2.304 10.744-3.289 20.886-10.681 28.515-20.785 3.453-4.573 6.922-10.442 8.752-14.808l.608-1.45h.53c.29 0 1.017.04 1.614.091 1.278.108 1.272-.184.056 2.667-1.896 4.448-5.072 10.37-7.508 14.002-8.641 12.884-19.25 21.463-31.744 25.672-3.427 1.155-6.703 1.902-10.938 2.495-2.292.32-11.374.405-13.912.13z' color='%23000' overflow='visible' fill='%23e98e01' paint-order='markers stroke fill'/%3e%3cpath style='isolation:auto;mix-blend-mode:normal;solid-color:%23000;solid-opacity:1;marker:none' d='M900.929 423.062c-5.757-.428-9.506-1.044-13.752-2.259-8.644-2.472-16.143-6.823-22.638-13.134-4.962-4.821-8.967-10.312-12.129-16.627-2.618-5.23-4.572-11.155-4.955-15.03l-.093-.944 1.275.381c.701.21 1.309.416 1.35.457.041.041.144.708.228 1.482.422 3.88 1.99 8.727 4.34 13.42 6.088 12.157 16.141 21.463 28.407 26.296 7.103 2.8 14.393 4.113 22.848 4.118 5.412.004 9.476-.454 14.184-1.597 12.992-3.153 24.113-10.666 33.32-22.51 1.728-2.223 4.454-6.296 6.108-9.125 1.475-2.524 4.135-7.886 5.229-10.54l.845-2.051.993-.042.993-.041-.208.678c-.114.373-.275.922-.357 1.22-.082.297-.463 1.398-.847 2.446-3.607 9.864-9.076 18.615-15.906 25.453-10.265 10.275-23.074 16.134-38.625 17.666-2.046.202-9.157.391-10.61.283z' color='%23000' overflow='visible' fill='%23d05f01' paint-order='markers stroke fill'/%3e%3c/svg%3e\"},2883:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-19 -10 38 20'%3e%3cpath fill='%2375b2dd' d='M-19-10h38v20h-38z'/%3e%3cg id='c' transform='translate(0 -6)' fill='%23fff'%3e%3cg id='b'%3e%3cpath id='a' d='M0-2v2h1' transform='rotate(18 0 -2)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(216)'/%3e%3cuse xlink:href='%23b' transform='rotate(288)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='rotate(90)'/%3e%3cuse xlink:href='%23c' transform='rotate(180)'/%3e%3cuse xlink:href='%23c' transform='rotate(270)'/%3e%3c/svg%3e\"},2619:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 16'%3e%3cpath fill='%23FFF' d='M0 0h22v16H0z'/%3e%3cg fill='%230065BD'%3e%3cpath d='M6 0h4v16H6z'/%3e%3cpath d='M0 6h22v4H0z'/%3e%3c/g%3e%3cg fill='%23ED2939'%3e%3cpath d='M7 0h2v16H7z'/%3e%3cpath d='M0 7h22v2H0z'/%3e%3c/g%3e%3c/svg%3e\"},9206:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3e%3cpath fill='%23ED2939' d='M0 0h3v2H0z'/%3e%3cpath fill='%23fff' d='M0 0h2v2H0z'/%3e%3cpath fill='%23002395' d='M0 0h1v2H0z'/%3e%3c/svg%3e\"},9297:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3e%3cpath fill='%233a75c4' d='M0 0h400v300H0z'/%3e%3cpath fill='%23fcd116' d='M0 0h400v200H0z'/%3e%3cpath fill='%23009e60' d='M0 0h400v100H0z'/%3e%3c/svg%3e\"},4170:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 15'%3e%3cpath fill='%23FFF' d='M0 0h25v15H0z'/%3e%3cg fill='%23CE1124'%3e%3cpath d='M11 0h3v15h-3z'/%3e%3cpath d='M0 6h25v3H0z'/%3e%3c/g%3e%3c/svg%3e\"},9488:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3e%3cclipPath id='a'%3e%3cpath d='M0 0v30h60V0z'/%3e%3c/clipPath%3e%3cclipPath id='b'%3e%3cpath d='M30 15h30v15zv15H0zH0V0zV0h30z'/%3e%3c/clipPath%3e%3cg clip-path='url(%23a)'%3e%3cpath d='M0 0v30h60V0z' fill='%23012169'/%3e%3cpath d='m0 0 60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3e%3cpath d='m0 0 60 30m0-30L0 30' clip-path='url(%23b)' stroke='%23C8102E' stroke-width='4'/%3e%3cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3e%3cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3e%3c/g%3e%3c/svg%3e\"},3782:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 600'%3e%3crect width='100%25' height='100%25' fill='%230065BD'/%3e%3cpath d='m0 0 1000 600M0 600 1000 0' stroke='%23fff' stroke-width='120'/%3e%3c/svg%3e\"},1365:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 830 498'%3e%3cpath fill='%2300ab39' d='M0 249h830v249H0z'/%3e%3cpath fill='%23fff' d='M0 0h830v249H0z'/%3e%3cg stroke='%23000' stroke-width='1.8'%3e%3cpath d='M543.282 29.532c-.011.02-.019.044-.031.063.033-.018.061-.044.094-.063h-.063zm-.031.063c-52.242 28.887-99.003 58.945-144.969 97.25-22.06 19.27-15.833 34.631-16.687 51.937.711 11.618-2.511 22.426-9.656 28.938-16.35 3.306-32.715 6.632-49.063 9.938-1.566-4.524-3.121-9.042-4.687-13.563 1.495-6.94 7.232-10.352 19.312-6 .952-8.923-6.227-12.555-14.625-15.656-2.885-2.246-6.468-3.971-6-11.688-1.412-17.467 26.615 1.25 26.875 1.25.261 0-.934-17.627-13.812-21.156-7.022-2.485-9.994-9.892-7.313-15.375 5.618-11.209 16.194.878 24.282 1.312-.304-7.316-2.387-12.531-8.688-18.437-3.392-2.087-11.722-3.657-11.938-7.156-.176-4.752 7.808-6.784 18.782-5.469-2.288-6.66-9.668-10.968-19.813-14.094l-6-10.437c-2.841-5.26-4.115-5.402 2.469-15.375 5.915-3.827 13.774-9.237 19.688-13.063l-6.532-.781c.869-7.131.969-9.53 2.625-21.375-6.346 8.672-14.275 7.121-21.406 10.687 0 0-20.33 3.61-26.875 12.25-.261 0-51.125-2.593-51.125-2.593-10.84 1.51-20.099 4.582-21.906 15.125-24.792 2.502-50.755.289-69.657 24 12.87-.609 24.136-3.674 38.594-1.813 0 0 12.321.233 14.875 13.281.261.522 4.188.532 4.188.532 1.566 1.217 3.121 2.439 4.687 3.656.609-1.652 1.204-3.317 1.813-4.969l4.187 2.875c.434-1.826.879-3.642 1.313-5.469 1.392.957 2.764 1.919 4.156 2.875.087-2.174.195-4.357.281-6.53l5.469 3.905v-8.593s20.192-.047 26.344 12.781c.262.261-56.665 10.463-111.657 5.75 5.306-2.609 10.602-5.235 15.907-7.844-20.05-4.076-38.901-7.761-56.594-21.656 6.677 25.137 41.181 54.663 48.25 54.531 0 .261-6.781-12.25-6.781-12.25 19.916.87 39.835 1.725 59.75 2.594 2.175 6.61 1.213 14.02 6.531 19.844 0 0-3.299 10.925 4.031 15.375.262.521 8.75-22.157 8.75-22.157s2.6 6.101 5.219 10.157c3.795-19.508 25.031-22.688 25.031-22.688s4.438 10.176 4.438 10.438c-6.636.96-14.89 14.486-10.438 21.906-4.45.085-12.351 13.186-9.906 20.344-3.741 3.723-13.058 8.686-10.688 24.281-7.334 1.572-11.676 14.991-9.406 29.219-11.349 10.564-8.563 29.956 1.563 37.812-4.203 3.74-6.791 6.616-6.781 11.219-3.996-1.485-7.68-.244-9.407 2.375-4.898-5.021-11.931-9.418-16.937-4.719-1.296-5.94-9.032-12.474-17.5-11.718.496-6.264-2.755-14.018-11.719-16.719 0 0-1.814-29.358-10.719-38.875-.873-5.326.51-8.948 7.844-13.313 7.323-3.906 8.879-6.935 8.344-18 2.887-7.396 5.08-14.936-3.906-20.062.27 8.795-2.43 13.031-6 16.937-4.266-.621-5.756 4.358-8.626 6.532-4.016-5.414 8.472-13.799-.781-25.844-.521-.523-6.459-15.723-21.125-15.375 6.971 4.082 9.92 10.951 9.906 18-4.624 13.045-6.973 23.127-2.343 38.093-6.093-9.128-9.549-26.482-14.594-29.5-4.422-.862-6.582-11.321-23.75-8.343 7.406 1.992 9.757 7.647 11.75 12.781-4.541 2.342-2.285 8.519 1.031 12.781-.63 10.015 5.37 15.866 14.344 19.594-1.478 13.653-2.96 27.283-4.438 40.937-3.564-.454-9.05 13.425-11.218 13.844-3.489 2.171-9.581 8.01-2.594 9.656-2.076 7.492-4.001 12.009-15.156 13.563 0 0 11.787 6.991 21.562-4.969 10.474-.262 7.03-12.752 12.094-18.25 0-.26 2.874-2.066 7.062-13.062 1.832 9.819 11.908 39.888 34.688 54.812 19.856 21.256 36.175 41.33 36 69.656 7.75-7.208 12.378-18.624 15.938-29.5 10.776-3.748 26.191-5.179 39.937-4.562-2.358 4.961-4.997 9.721-1.594 12.938-9.593 3.294-11.695 10.256-7.843 17.218-10.112 6.867-10.778 11.28-10.938 22.688-18.708 23.985-30.249 23.188-48.781 16.968-6.086-3.572-15.505-8.714-19.844-6-8.004-5.334-19.512-6.126-21.406 6 6.006-4.978 9.592-4.018 14.375.782-.962 2.436-1.766 4.862 1.812 6.25-1.566 1.739-3.121 3.48-4.687 5.218-8.613-1.324-20.194-1.25-23.219 11.219 4.424-3.665 14.24-4.525 22.156-1.031 1.479.522 2.959 1.04 4.438 1.562.174 2 .358 4 .531 6 0 0-11.732-1.811-14.875 17.219 11-11.702 18.781-8.625 18.781-8.625 4.239 6.205 19.841 5.271 31.063-4.937 15.762-8.812 20.357 3.851 30.531-4.438 8.436-6.292 18.417-2.108 25.281 5.219 7.915 2.969 16.2 5.413 22.719 0 0 0 7.963-5.081 15.906 3.125.087-9.253-6.47-14.169-15.375-14.344l-2.625-2.625c-8.349-1.74-17.73-1.034-25.031-5.218 3.442-13.066 8.457-24.904 18.25-34.969 12.088-12.958 20.987-18.85 36.25-38.688-.589 11.211 8.003 23.677 12.531 35.063 0 0 9.116-14.555 10.438-26.375.26 0 11.423-5.81 16.187-10.75 10.056 6.237 26.446-4.994 37.032-14.281 6.524 2.47 11.478 2.292 19.062 0-6.088 12.39 3.521 23.883 18.781 28.687 1.411 10.938 12.459 13.229 29.219 13.313.706 6.436 10.688 7.312 10.688 7.312-6.308 2.94-9.596 5.886-9.376 12.531-6.464.044-11.36 1.671-13.062 9.125-8.876.152-17.922.833-25.562 5.219-8.176-1.269-18.122-4.657-24.532-11.219-3.306-2.783-4.131-6.796-9.906-8.344-3.66-4.326-8.039-3.36-9.406.782-3.783-2.955-17.972-4.328-20.344 9.125 6.624-4.848 12.564-6.696 16.719-.781-2.264 4.106 5.516 6.455 12.25 8.093 4.776.296 13.247 4.647 15.906 12-6.16 1.869-15.496 1.253-21.656-3.406-5.476-4.582-12.872-4.036-16.938-1.031-5.64-3.596-19.071 3.193-19.593 14.062 5.658-5.184 10.807-7.691 15.937-4.406-2.553.606-1.583.855-1.313 2.344l13.032 7.562c-6.394 1.687-12.405 4.238-9.625 16.156 0 0 5.208-10.296 16.937-6.5.261-.26 1.617 3.678 4.969 1.032 5.076-5.776 16.682-8.362 26.875-9.375 8.18-.977 16.347-3.387 23.469 1.281 6.341-3.262 13.401-5.456 20.625-.25 8.523 2.696 14.746 12.631 25.562 8.094 5.379-3.723 11.99-3.912 18.782 3.656.082-9.543-7.069-12.742-17.219-14.875-2.349-1.393-4.683-2.795-7.031-4.187-6.522-.958-13.072.198-19.594-2.876 34.134-8.824 58.062-27.859 74.906-55.031 5.392 1.913 10.764 3.805 16.156 5.719 3.825.245 4.117 1.574 12 3.938.297-11.614-4.689-23.578-25.562-24.782l-27.406-10.437c-5.818-6.135-8.447-19.152-1.032-26.875 7.258-6.463 8.525-5.689 13.313-13.563 5.822-.53 11.309 5.469 16.687 5.469 2.554 7.587 17.274 14.294 26.625 12 5.859 5.187 17.008 8.07 29.219 3.906 6.93 6.067 15.959 8.6 26.594 3.906 2.823 2.824 8.783 5.069 15.656 3.657.522 0 3.473 7.541 10.969 10.187-3.268 3.176-1.259 16.966 2.093 21.906-2.288 5.302-3.008 10.958-1.062 16.438-7.559 4.86-9.098 8.475-5.719 16.688-9.899 15.906-21.741 17.724-32.875 12.812-4.002-2.522-7.998-5.071-12-7.594-4.261-4.175-8.52-8.325-12.781-12.5-2.17-2.037-6.66-2.677-7.594 1.813 0 0-16.399-3.658-17.719 10.187 6.798-6.62 16.438-.792 16.438-.531s-2.296 1.823-.531 4.469c.397-.331 11.973 4.32 22.281 8.75 5.6 2.122 6.831 2.786 9.281 4.094a441.984 441.984 0 0 0-9.281-4.094c-6.275-2.379-12.388-4.279-14.188-3.813-5.84-.545-12.034-1.27-14.874 3.125-6.278 2.656-16.084 4.783-15.657 16.438 4.239-6.94 10.055-6.647 17.469-6-.174.522-.326 1.04-.5 1.562 8.05 3.667 6.523-.998 14.031-1.687 6.277-.576 15.174 1.672 19.875 3.25-5.913 1.739-13.954 1.009-17.75 5.219-.696 1.392-3.131.823-2.062 4.156 0 0-11.534-.298-14.625 15.656 11.728-7.509 20.615-7.281 20.875-7.281.261 0 3.656.781 3.656.781s14.084-9.406 14.344-9.406c.262 0 13.638-5.923 19.812.781 5.389 2.649 11.153 2.818 16.719-.531 10.966-4.77 21.231-5.104 31.313 1.594l9.124 5.468c1.304-.869 2.603-1.755 3.907-2.625 0 0 10.329-2.917 17.906 6.281-3.132-15.914-14.5-16.437-14.5-16.437-.87-.783-1.756-1.561-2.625-2.344-5.392-2.087-10.764-4.194-16.156-6.281-2.354-5.826-8.268-10.465-2.375-17.469 6.02-29.926 13.218-52.401 1.562-82.719 10.871 4.696 19.005 19.217 32.625 14.094 0-12.176-44.822-35.294-79.062-53.875 56.094-2.87 123.51-44.277 97.594-96.906 4.088-12.697 8.162-25.397 12.25-38.094 5.77 11.623 17.453 20.483 27.937 24.25-8.641-16.496-13.6-66.93-8.625-101.75-22.603 27.922-47.563 52.702-74.094 77.875 13.05 3.05 24.453.904 37.063-.656-3.566 7.305-7.029 14.632-10.594 21.938-34.473-20.188-74.947-5.038-75.25 21.906 1.179 31.42 40.027 35.885 62.437 24.937-4.442 28.647-70.281 18.094-70.281 18.094-23.394-8.064-45.613-6.683-70.187-6.5 5.106-15.71 33.46-29.652 55.062-23.5-30.243-33.91 4.275-76.008 45.906-88.97-45.376-14.965-6.304-49.557 27.657-74.343 0 0-97.663 41.101-106.563 40.969-27.779-2.087-20.207-34.967-9.625-52.656zM236.72 69.064c2.273.012 4.945.234 7.062.75 4.404 1.073 9.763 1.688 9.688 3-2.039 3.412-7.047 7.529-11.969 7.281-4.921-.248-7.766-3.198-9.406-10.594.503-.272 2.352-.45 4.625-.437zm411.094 115.875c6.403-.088 14.074 2.62 21.562 10.562-3.6 10.37-34.842 15.697-36.937.344-.633-4.641 6.016-10.78 15.375-10.906z' fill='%23d21034'/%3e%3cpath d='m268.98 159.71 4.737 6.891m-.215.217s0 9.259 1.938 9.476m-4.307 4.952c.215.216 4.954 8.184 4.954 8.184m-13.569 2.153c.215 0 6.031 6.677 6.031 6.677m5.051-5.18c0 .215 5.501 10.565 5.932 10.565m-13.136-3.447s1.938 12.491 3.66 12.061m-11.801 10.828 5.556 8.339m4.738-17.229s3.015 11.845 5.383 10.767m2.364-17.879c.216.215 5.606 7.974 7.112 6.897m-1.291 3.014 5.168 10.338m-13.783-2.37c.215.432 4.307 12.277 4.307 12.277m-14.214-6.03s3.877 13.137 7.323 10.982m-8.83 6.462s.215 6.891 3.661 7.321m2.37-10.767c0 .215 3.445 4.954 3.445 4.954m6.398-13.149 2.862 4.534m6.246-12.921 4.308 5.383m-24.293-67.137c.215 5.815 9.437-2.048 13.098-7.002m-17.018 27.19s10.122-7.107 17.875-17.875m-21.106 34.889c7.107-1.938 20.183-17.753 22.767-26.152m-24.275 41.873c1.94.861 26.367-16.732 27.014-29.653m-27.659 43.221c0-.215 22.33-5.693 31.591-30.244m-32.79 48.826s35.657-21.381 37.595-37.102m240.77 73.006s-2.299 18.453-20.82 21.252m26.635 11.699c.215-.216 17.659-19.383 13.137-25.198m27.351 6.676s-.215 13.353-11.199 22.613m32.95-18.735s.432 16.151-6.46 22.612m26.488-12.922s-7.727 15.126-10.526 16.634m10.191 10.173s10.167 2.534 13.397-4.143m-10.761 26.084s9.399 1.697 13.706-7.347m-14.714 24.284s7.607 6.391 12.776-2.007m-121.95-122.44s-.862 32.735 45.225 39.41c51.472 14.215 75.807 6.677 78.823 64.394-1.938 21.967-4.668 46.778-20.604 37.301m-152.32-110.95s7.323 13.136 16.152 12.275c11.629-3.446 15.936 3.661 15.936 3.661m-63.53-2.8s19.383 9.476 35.964-5.815m-33.811-7.753c1.722 22.613-26.059 35.535-37.043 33.382m38.36 53.27c.216 0 15.05-8.905 12.036-15.152m-41.566 1.94c.431-.432 24.982-2.801 29.505-11.631m-40.919-24.552c0-.215 34.845.097 37.213 6.557m9.09-27.231s-34.028 58.148 28.858 58.148m-64.824-59.01s-7.323 21.753-17.66 29.074m-18.52-36.61s12.636 24.449-.071 36.509m-32.879-29.618c.215.43 4.091 34.673-4.524 44.364m-11.843-43.287s1.291 21.751-5.169 29.504c-6.462 7.753 1.513 23.856 1.513 23.856m-78.5 10.457s4.624 8.114 11.086 5.313m-3.231-23.042s10.337 4.522 13.783 2.799m-2.584-39.411s-15.291 4.307-9.476 22.397c8.829 7.108 17.444 6.03 17.444 6.03m-38.119 48.456c-.215 0 1.723 14.215 11.63 3.446 6.891-14.428 28.643-55.132 33.597-69.131m10.121-6.675s-10.553-8.184-10.121 3.23c-.217 7.106 3.229 8.829 3.229 8.829.43 5.169 4.954 12.49 8.614 5.815 1.508-6.461-1.076-9.261-1.076-9.261m6.03-11.63c-9.476-.646-14.644 20.245 3.662 7.11m6.245-14.216s-2.368 3.232-6.03-.215c-1.939-3.445-8.829 15.507 3.231 16.152 2.153-5.6 8.83-7.107 8.83-7.107m5.6-17.875s-5.385 2.584-7.323 2.153c-6.461 1.508-5.17 16.584 3.014 15.722 2.799-3.23 5.815-7.753 5.815-7.753m-52.29-29.83c-.216 0-21.372 33.268 11.794 42.098m256.71-92.175s-12.922 10.984-.862 28.643c-40.058-.645-61.592 17.875-63.315 30.365-51.041-3.66-41.78 11.416-58.364 16.368-22.182-18.521-54.702-8.183-52.548 10.337-14.861-20.89-37.688-10.767-40.487-5.599-2.8 5.169-1.723-25.628-1.723-25.628s-14.86 6.677-25.199 18.952c.217-8.183 0-21.536 0-25.843-12.418 2.512-24.407 2.654-37.257 2.369m-33.596-9.476s18.52 10.337 41.349-3.661m-42.857-33.596s14.43 12.92 41.566 8.829m-32.52-38.55s3.229 10.553 34.243 11.199m-23.74-35.604s11.679 14.283 27.4 12.13m-17.443-32.52s4.522 7.753 21.751 9.045m-11.631-31.658s9.046 9.907 19.384 8.184m34.431-88.698s4.006-4.005 10.682-2.003m-13.573 23.142s-12.463-.445-11.573-5.34c.892-5.563 13.13-9.569 13.13-9.569s16.243-10.458 18.691-14.019m-73.432 56.966 15.8 30.263 7.565-11.349 4.006 7.788 6.453-11.348 11.126 7.12-4.228-13.796 9.345-.667s-2.448-6.676-10.904-8.01c2.226-1.78 10.014-6.899 10.014-6.899s-4.449-5.118-11.348-5.34c2.225-2.448 5.34-8.456 5.118-8.456-.222 0-6.899-1.558-6.899-1.558s15.8 5.118 28.038-2.003m-30.25-24.467c.222.223-.891 6.231-4.229 9.791m-56.742 6.899s9.774-2.69 17.088-1.165c7.245 1.488 16.958 4.057 16.958 4.057s11.57-1.557 15.354-4.228m-73.656 7.789s-1.334 4.672-1.779 7.788c0 2.225-7.122 5.118-7.122 5.118m13.353-22.475s6.23 7.788 6.452 12.238c.223 4.45-4.672 7.789-4.672 7.789m-66.089 33.156-6.454-10.458 5.786-2.003m117.2 156.72c-5.168-6.676 3.876-109.19 23.044-135.89-6.676 48.24 15.506 97.558 21.105 97.343m-102.4-125.99s8.722 3.337 26.812-10.984m24.443 34.676 12.975.16m389.49-80.51s-216.19 101.02-219.34 106.37c36.505-11.015 191.33-36.82 195.11-34.616-9.126 2.203-197 45.315-205.81 55.7 46.889-1.573 145.08 15.106 160.49 31.155-33.358-7.552-133.12-22.343-163.64-15.735 22.344 5.35 107.94 60.737 107.94 69.548-12.902-12.272-115.81-54.757-119.9-50.665 23.6 14.16 56.96 66.714 56.958 79.617-6.923-11.014-66.4-74.898-69.861-70.807 6.294 8.813 18.766 84.222 12.39 87.717 0-9.126-23.09-75.13-24.978-77.017-4.721 1.258-34.152 80.528-28.321 87.899-3.776-26.433.628-81.604 7.866-79.402-12.901 1.888-54.078 56.18-49.673 64.677 1.259-13.532 3.1-22.507 26.386-67.51-25.805 1.573-79.302 35.247-88.43 47.205 7.239-21.398 52.555-57.59 72.381-60.107m93.316-78.747c22.85-12.68 93.46-38.557 140.56-57.543m-184.91 125.78s15.576-.222 31.153-42.501c15.35-57.85 137.07-122.38 139.52-134.4m-376.67 235.07s-3.615 7.703-8.066 9.929m25.525 1.744s-4.829 9.382-5.942 13.832m22.65-9.243s4.052 12.803.714 18.812m-47.239-52.053c-12.238 6.899 6.964 50.494 65.041 54.722m-9.346-23.587s-1.557 7.788 9.346 23.365c-3.115 17.356 13.195 30.996 19.649 33.22m-33.67-213.01c0-.222 1.78-4.672 1.78-4.672l1.984 5.144 3.193-.083 2.107-5.158 1.73 5.177h3.173l1.957-5.748 2.957 5.442 2.512.128 1.977-6.63 4.077 4.75 1.481-.574 1.27-6.632 4.028 4.638 1.155-.677 1.868-6.536 3.345 4.86 1.685-.55 1.563-5.492 3.11 5.048m-50.532 8.149 24.274-.361c7.723-.115 20.442-10.82 34.684-7.481m-110.12 59.774s4.005 8.679 9.569 3.783m-18.914 2.003s-7.789 20.917 1.557 25.81M129.47 158.45s0 4.895 10.236-2.67M97.633 268.37s8.233 2.448 6.898 8.679m-3.788-104.81s5.118 2.448 10.014-5.117m44.282 245.89c8.01-.445 9.735 3.172 17.023 3.172 8.396.256 16.577-3.172 27.26-6.065m68.757 19.36c-.223 0-3.783 7.565-.667 11.347m-113.49-10.68s12.685-10.46 19.36-4.005c6.454 2.226 10.013 1.78 10.013 1.78m-22.69-27.59s3.115 8.01-7.344 6.898m-3.115 11.57s6.675 4.23-.89 9.792m4.895 7.566s9.123 1.336 3.782 8.678m290.91-64.115s24.776 2.564 25.915 4.415c2.85-2.991 24.972-20.911-2.225-23.473-4.555 18.654-23.263 19.343-23.69 19.058zm-8.828 12.388c9.255 7.404 5.463 11.84 34.513-7.666m-47.756 16.923s13.67 14.667 23.637-3.134m-49.695 8.402-18.51 9.682m-33.322 13.67s11.25-9.682 16.518-4.556c5.268 5.126 27.624-4.413 27.624-4.413m-35.74-33.037s3.845 7.689-3.56 8.686m-11.107 15.379s3.901 7.23-3.646 9.223m12.332 10.428s11.677.569 7.547 9.397m101.67-10.964s-6.408 5.41-1.708 11.535m94.691-50.408s7.404 3.559-1.424 9.683m-7.404 12.815s5.553 5.839 1.851 10.679m13.67 11.676s7.688 2.136 6.835 8.544m100.81-14.24s-6.408 4.699-2.99 10.823m-111.139-197.97c15.38-1.852 37.45 32.322 48.698 39.015m67.272-87.425s7.79 6.8.936 23.205m13.505-49.366c2.167 1.686 10.54 6.154 16.07 16.496m5.311-67.659c0 .142-10.822 29.191-10.822 29.191m22.925-30.615s-2.136 25.915-5.268 31.184m-42.957 47.223c-3.6 10.371-34.84 15.678-36.935.326-1.065-7.816 18.503-19.872 36.935-.326z' fill='none' stroke-linejoin='round'/%3e%3cpath d='m236.48 69.148 12.02 2.225s-8.46 11.349-12.02-2.225z' stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e\"},5564:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3e%3cclipPath id='a'%3e%3cpath d='M0 0v30h60V0z'/%3e%3c/clipPath%3e%3cclipPath id='b'%3e%3cpath d='M30 15h30v15zv15H0zH0V0zV0h30z'/%3e%3c/clipPath%3e%3cg clip-path='url(%23a)'%3e%3cpath d='M0 0v30h60V0z' fill='%23012169'/%3e%3cpath d='m0 0 60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3e%3cpath d='m0 0 60 30m0-30L0 30' clip-path='url(%23b)' stroke='%23C8102E' stroke-width='4'/%3e%3cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3e%3cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3e%3c/g%3e%3c/svg%3e\"},1898:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 500 300'%3e%3cdefs%3e%3cg id='c'%3e%3cg id='b'%3e%3cpath id='a' d='M0-1v1h.5' transform='rotate(18 0 -1)' fill='%23fcd116'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(216)'/%3e%3cuse xlink:href='%23b' transform='rotate(288)'/%3e%3c/g%3e%3c/defs%3e%3cpath fill='%23ce1126' d='M0 0h500v300H0z'/%3e%3cpath fill='%23007a5e' d='M42 42h416v216H42z'/%3e%3cpath d='M42 42h416L42 258h416z' fill='%23fcd116'/%3e%3ccircle cx='250' cy='150' r='36' fill='%23ce1126'/%3e%3cuse xlink:href='%23c' transform='matrix(33 0 0 33 250 150)'/%3e%3cuse xlink:href='%23d' x='-100'/%3e%3cuse id='d' xlink:href='%23c' transform='matrix(19.5 0 0 19.5 250 21)'/%3e%3cuse xlink:href='%23d' x='100'/%3e%3cuse xlink:href='%23d' x='-100' y='258'/%3e%3cuse xlink:href='%23d' y='258'/%3e%3cuse xlink:href='%23d' x='100' y='258'/%3e%3cpath d='M67.749 150.41c4.504 8.39 13.265 17.52 20.916 20.73.123-8.52-2.9-19.44-7.034-28.14l-13.882 7.41z' fill='%23ce1126'/%3e%3cpath d='M60.112 121.63c6.529 13.61-16.933 46.08 22.156 53.69-4.822-6.58-7.931-17.44-6.755-26.16 8.201 3.12 16.83 12.25 20.317 19.23 10.23-37.15-26.24-34.89-35.718-46.76z' fill='%23fcd116'/%3e%3c/svg%3e\"},5676:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 300 200'%3e%3cdefs%3e%3cg id='c'%3e%3cclipPath id='a'%3e%3cpath d='M-109 104a104 104 0 0 0 0-208h218a104 104 0 0 0 0 208z'/%3e%3c/clipPath%3e%3cpath id='b' d='M-55 74a55 55 0 0 1 110 0V-74a55 55 0 0 1-110 0z' clip-path='url(%23a)'/%3e%3cuse xlink:href='%23b' transform='rotate(90)'/%3e%3c/g%3e%3c/defs%3e%3cpath style='fill:%23fff' d='M0 0h300v200H0z'/%3e%3cpath d='M130 0v80H0v40h130v80h40v-80h130V80H170V0h-40z' style='fill:red'/%3e%3cuse xlink:href='%23c' transform='translate(64.45 39.45)' fill='red'/%3e%3cuse xlink:href='%23c' transform='translate(235.55 160.55)' fill='red'/%3e%3cuse xlink:href='%23c' transform='translate(235.55 39.45)' fill='red'/%3e%3cuse xlink:href='%23c' transform='translate(64.45 160.55)' fill='red'/%3e%3c/svg%3e\"},9209:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3e%3cpath fill='%23ED2939' d='M0 0h3v2H0z'/%3e%3cpath fill='%23fff' d='M0 0h2v2H0z'/%3e%3cpath fill='%23002395' d='M0 0h1v2H0z'/%3e%3c/svg%3e\"},9654:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-18 -12 36 24'%3e%3cpath fill='%23fff' d='M-18-12h36v24h-36z'/%3e%3cpath d='M0-12v24M-18 0h36' stroke='%23e8112d' stroke-width='6' fill='none'/%3e%3cpath id='a' d='m-9 2 1-1h9v-2h-9l-1-1z' fill='%23f9dd16'/%3e%3cuse xlink:href='%23a' transform='rotate(90)'/%3e%3cuse xlink:href='%23a' transform='rotate(-90)'/%3e%3cuse xlink:href='%23a' transform='rotate(180)'/%3e%3c/svg%3e\"},3426:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 450 300'%3e%3cpath fill='%23006b3f' d='M0 0h450v300H0z'/%3e%3cpath fill='%23fcd116' d='M0 0h450v200H0z'/%3e%3cpath fill='%23ce1126' d='M0 0h450v100H0z'/%3e%3cpath d='m225 100 32.492 100-85.065-61.803h105.146L192.508 200z'/%3e%3c/svg%3e\"},3983:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 512 256'%3e%3cpath fill='%23da000c' d='M0 0h512v256H0z'/%3e%3cpath fill='%23fff' d='M0 0h512v171.5H0z'/%3e%3cg stroke='%23000'%3e%3cg id='a' fill='%23da000c' stroke-linecap='square'%3e%3cpath fill='%23000' stroke='none' d='M196.571 116.303h64v43.993h-64z'/%3e%3cpath d='M229.819 153.865H190.75l-8.66 5.7v6.04h47.729m-16.35-37.011c5.625 0 10.219 4.689 10.219 10.469v14.78h7.343v-56H190.75v56h12.5v-14.78c0-5.554 4.515-10.47 10.219-10.47z'/%3e%3cpath fill='%23000' stroke='none' d='M204.528 59.962h18.523v33.959h-18.523z'/%3e%3cpath d='M223 88.656h-16.209v-5.75h-11.885v5.75h-8.062v-5.75h-4.813v10.438H223m-36.156-.038h34.97v4.538h-34.97z'/%3e%3cpath d='M200.719 47.625v35.281h6.072V73.22c0-3.63 2.562-6.6 6.147-6.781.115-.006.226 0 .343 0a6.78 6.78 0 0 1 6.781 6.78v9.688h5.782V47.625zm-2.188-4.781v4.781h29.25v-4.781zm-3.75-9.156v9.156h35.094v-9.157h-5.406v4.657h-6.531v-4.657h-9.97v4.657h-6.53v-4.657zM182.09 159.564H230m31-2.751h-32.438l-9.78 4.718v7.031H261'/%3e%3cpath stroke-linecap='butt' d='M218.771 161.52H262'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 512 0)'/%3e%3cg fill='%23f8d80e'%3e%3cg stroke-linecap='round'%3e%3cpath stroke-width='.768' d='M273.297 150.031c-2.654.883-5.053 2.369-7.469 3.753-3.1 1.831-6.107 3.827-8.904 6.099-.985.649-1.93 1.36-2.69 2.273-1.025.878-2.064 2.055-1.868 3.513.051.643.873-.755 1.414-.823a4.39 4.39 0 0 1 3.142-.471c1.271-1.339 2.91-2.236 4.325-3.406 3.004-2.243 6.236-4.168 9.525-5.961 1.148-.589 2.3-1.186 3.525-1.602l-1-3.375z'/%3e%3cpath d='M260.4 157.391v3.912m2.417-5.618v3.883m2.416-5.388v3.858m2.417-5.344v3.981'/%3e%3cpath stroke-width='.768' d='m238.891 150.156-1.188 3.313c5.537 2.1 10.81 4.878 15.798 8.06 1.691 1.15 3.467 2.266 4.796 3.846.293.81-.514 1.489-1.314 1.244-.732-.249-1.453-.532-2.226-.004-1.107.503-2.106 2.141-.426 2.69 2.315 1.556 6.082.88 7.195-1.844.581-1.402.618-3.196-.508-4.345-2.063-2.364-4.797-4.008-7.421-5.672-4.69-2.82-9.573-5.374-14.706-7.288z'/%3e%3cpath d='m254.05 158.035-.313 3.34m3.095-1.635-.862 3.269m3.834-.997-1.808 2.537m2.719 3.631-2.61-1.4m3.423-1.351-2.995.28m-.868 4.056-.205-2.633m-.892-.376-2.473 1.822m-9.418-15.641v3.115m6.286.192v3.534m-3.143-5.185v3.32'/%3e%3c/g%3e%3cpath d='M235.781 227.563v8.03h5.031v-4.03h6.844v4.03h5.406v-8.03zm0 11.062v8.063h17.281v-8.063h-5.406v4.031h-6.844v-4.031z'/%3e%3cpath d='M253.052 193.651h4.99v58.115h-4.99z'/%3e%3cpath d='M253.052 198.679h4.99v50.06h-4.99z'/%3e%3cpath stroke-width='1.024' d='m255.547 179.406 10.625 6.188-10.625 6.156-10.625-6.156zm-14.219 3.969h-2.781v4.438h2.781l14.219 8.25 14.219-8.25h2.78v-4.438h-2.78l-14.22-8.25z'/%3e%3cpath stroke-width='1.024' d='M255.344 164.281c-2.419.34-4.226 2.73-4.094 5.134.01 3.738-.018 7.476.014 11.214.129 2.408 2.233 4.566 4.675 4.588 1.985.188 3.979-.972 4.811-2.78l-1.718-1.031c-.444 1.184-1.724 1.918-2.97 1.781-1.634.046-2.958-1.544-2.812-3.134.01-3.713-.019-7.428.015-11.14.09-1.516 1.535-2.755 3.048-2.6.626-.18 1.487.676 1.875-.063.583-.83-.415-1.477-.97-1.937-.613-.085-1.253-.008-1.874-.032zm5.781 3.906c-.396.746-1.216 1.19-1.875 1.58v7.514l2 1.156c-.008-3.204.016-6.408-.011-9.611-.032-.197-.008-.499-.114-.639z'/%3e%3c/g%3e%3cg fill='%23da000c'%3e%3cpath fill='%23000' d='M240.803 38.351h29.329v53.255h-29.329z' stroke='none'/%3e%3cpath d='M238.75 38.375v44.563h9.313v-13.22c0-3.048 1.952-7.28 7.937-7.28s7.938 4.232 7.938 7.28v13.22h9.312V38.374zm15.813 5h2.875v15.25h-2.875zm-8.25 3h2.906v11.156h-2.906zm16.468 0h2.906v11.156h-2.906zm-27.187-14.406v6.343h40.812V31.97zm-3.844-7.375v7.375h48.5v-7.375h-6.094v4.062h-6.875v-4.062h-7.844v4.062h-6.875v-4.062h-7.843v4.062h-6.875v-4.062zm-9 73.25v4.594h66.5v-4.594z'/%3e%3cpath d='M220.031 82.906v14.938h71.938V82.906h-6.813v5.75h-9.062v-5.75h-12.156v5.75h-15.875v-5.75h-12.157v5.75h-9.062v-5.75z'/%3e%3cpath stroke-linejoin='round' d='M228.688 102.438v54.343h12.843v-20.344c0-9.582 6.397-14.093 14.469-14.093 7.759 0 14.469 4.51 14.469 14.094v20.343h12.844v-54.344z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e\"},9860:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12'%3e%3cpath fill='%23fff' d='M0 0h18v12H0z'/%3e%3cpath fill='%23d00c33' d='M0 6h18v6H0zm3 0a4 4 0 0 0 8 0 4 4 0 0 0-8 0'/%3e%3c/svg%3e\"},3671:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 18'%3e%3cpath d='M0 0h27v18H0' fill='%233A7728'/%3e%3cpath d='M0 0h27v11H0' fill='%230C1C8C'/%3e%3cpath d='M0 0h27v6H0' fill='%23CE1126'/%3e%3cpath d='M0 6.5h27m0 5H0' stroke='%23FFF'/%3e%3c/svg%3e\"},5948:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3e%3cpath fill='%23ce1126' d='M0 0h1v2H0z'/%3e%3cpath fill='%23fcd116' d='M1 0h1v2H1z'/%3e%3cpath fill='%23009460' d='M2 0h1v2H2z'/%3e%3c/svg%3e\"},3797:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23ED2939' d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M0 0h600v600H0z'/%3e%3cpath fill='%23002395' d='M0 0h300v600H0z'/%3e%3c/svg%3e\"},1836:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3600 2400'%3e%3cpath fill='%23e32118' d='M0 0h3600v2400H0z'/%3e%3cpath fill='%23fff' d='M0 0h3600v1600H0z'/%3e%3cpath fill='%233e9a00' d='M0 0h3600v800H0z'/%3e%3cpath d='M0 0v2400l900-1200z' fill='%230073ce'/%3e%3cg stroke='%23000'%3e%3cpath fill='%23fff' stroke-width='4.8' d='M1608 958.8h383V1360c0 135-176 31-191 103-26-74-191 33-191-111 0-140-1-393.2-1-393.2z'/%3e%3cpath fill='%2373452b' d='M1827 1399s-5 5-14 1-10-257-10-257c20-22 36-29 36-29l12 10c-45 23-41 56-37 113 1 21 1 48 6 74 7 33 21 61 22 82 1 13-15 6-15 6z'/%3e%3cpath fill='%2373452b' d='M1796 1108h18c-15 145-2 231-2 273 0 14 8 19 7 19-18 20-27-1-27-1z'/%3e%3cpath fill='%23a36629' d='M1768 1399c-17 8-19-8-18-10 37-75 53-240 19-258l2-16c13 4 25 21 25 21 5 185 0 261-3 264-18 19-25-3-26-5'/%3e%3cpath fill='none' d='M1767 1396c-3-16 26-57 24-100m25 35c9 25 13 47 11 68'/%3e%3cpath fill='%23009a3b' d='M1855 1040c6-7 6-7 17-7 2-15 27-15 29 4 20-4 24 8 16 20 19-5 36 0 31 22 34 9 21 33 6 38-2 15-16 20-35 14-24 17-38 11-49-6-27 4-29-2-41-17-21 9-25 9-43-2-1 14-6 10-15 9 1 18-6 26-22 20 12 25-19 36-34 15-14 1-15-3-22-8-6 20-28 17-32 6-28-4-25-19-2-20 2-16 16-13 25-11 1-10 7-8 12-6-3-7-1-11 8-13-13-17-5-23 8-29-7-16 5-15 14-16-1-17 4-20 22-22-2-6 1-11 11-11-6-17 2-20.9 20-18 3-24.7 56-13 52 21 15 2 20 5 24 17z'/%3e%3cg fill='none'%3e%3cpath d='M1748 1031c4 2 9 0 10 11 8-14 18-6 18 10m55-29c-4 6-19 6-17 22-5-7-15-9-19-2m60-3c0 4-1 16-5 22m67-5c1 1-14 0-21 5m58 55c-4-2-12-7-18 1 0-4 0-15-11-15m-6 28c0-10-2-13-4-16m-29 2c-8-6-16 3-16 8m-42-17c0-4-3-12 4-15m-118 57c2-10 9-10 8-15-1-8-10-15-21-4'/%3e%3cpath d='M1722 1135c6-2 12-1 14 2m-31-39c4-4 14-3 20 0m0-24c5 0 14-2 17 7 11-17 19-15 21-11m20-2c8-3 22 5 30 19 4-11 10-9 16-10m38 10c13-6 21 6 25 11 6-8 11-8 17-8m-163 21c3-5 10-6 15-3-1-9 5-13 9-11'/%3e%3c/g%3e%3cpath d='m1787 902.6-22 1-11 19.7-12-18.8-22 .9 10-19.8-12-18.8 23-1 10-19.7 12 18.8 22-.9-10 19.8zm-94 7.3-22 5.4-6 21.3-16-16-21 5.2 6-21.3-15-16.2 21-5.3 6-21.4 16 16 22-5.2-7 21.4zm-91 18.7-20 9.9-1 22.2-19-12.2-20 9.8 2-22.2-19-12.3 20-10 2-22.2 18 12.2 20-9.8-1 22.2zm214-26 22 1 10 19.7 12-18.8 22 .9-10-19.8 12-18.8-22-1-11-19.7-12 18.8-22-.9 10 19.8zm94 7.3 21 5.4 6 21.3 16-16 21 5.2-6-21.3 16-16.2-22-5.3-6-21.4-16 16-21-5.2 6 21.4zm90 18.7 20 9.9 1 22.2 19-12.2 20 9.8-1-22.2 18-12.3-20-10-1-22.2-19 12.2-20-9.8 2 22.2z' fill='gold' stroke-width='3.5'/%3e%3cg fill='%23fff' stroke-width='3.5'%3e%3cpath d='m2027 1352 25 36 23-34-16-29zm-159 105 2 36s10 0 19-3c8-3 15-9 15-9l-1-19zm-134 0-2 35s-9 0-18-2c-8-2-15-7-15-7l-10-24zm-161-105-26 36-28-46 21-22z'/%3e%3cpath d='M1698 1529c0 34 206 34 206 0v-48c0 25-206 20-206 0z'/%3e%3cpath d='M1514 1418c18 92 184 94 184 94v-31c-4-12 3-16 30-20 11-1 6-17 6-17s-72 13-123-7c-69-28-79-82-79-82s-5 42-18 63zm573 0c-17 92-183 94-183 94v-31c3-12-4-16-31-20-11-1-5-17-5-17s72 13 123-7c68-28 76-82 76-82s7 42 20 63z'/%3e%3cpath d='M1527 1383c-46-25-10-51-6-125 7 45 58 64 52 93-21 1-31-31-41 4l-5 28zm547 0c46-26 8-51 4-125-7 45-57 64-51 93 20 1 30-31 40 4l7 27z'/%3e%3c/g%3e%3cpath d='m1555 1417 5 4-11 12c-4.403 4.803-5.467 7.98-2.41 10.905 3.797 3.63 6.466 2.368 10.41-1.905l12-13 4 4-11.99 13.989c-6.508 7.594-12.55 5.856-17.617 1.123-4.416-4.124-6.947-10.102-.454-17.454l12.1-13.6zm20 17 5 3-1 24 11-17 5 3-16 26-6-3 1-24-11 17-5-3zm9 42 14-28 5 3-13 27zm22-24-11.04 28.98L1606 1485c10.29 3.75 15.12-.78 18.39-9.48 3.3-8.85 1.86-15.36-8.43-19.5L1606 1452zm3.96 7.02c10.35 3.6 10.98 7.53 8.16 14.64-2.73 6.75-5.28 9.39-15.12 4.32l6.96-18.96zM1639 1463l-18 27 6.96 2.04 4.02-7.02 12 3 1.02 7.02 6.96.96-6.96-31.98-6-1.02zm1.98 7.02 1.98 12-7.98-1.02 6-10.98zm15.12-4.42-1.084 30.99 11.772.23c10.941.208 14.051-5.62 14.318-14.91.271-9.45-3.208-15.153-14.298-15.715l-10.708-.596zm6.003 5.377c10.964.044 12.838 3.543 12.453 11.195-.366 7.273-1.955 10.588-12.884 8.969l.43-20.164zM1761 1509v31.98h7.02v-12s6 .36 10.98-.96c3.93-1.02 6.66-3.54 6.75-9.75.09-6.09-3.45-9.27-9.57-9.27h-15.2zm7.02 4.98 7.05.09c5.88 0 4.77 8.91.18 8.91h-7.23v-9zM1797 1509l-13.02 31.98h7.02l3-7.98h13.02l3 7.98h6.96l-13-32h-7zm3 7.02 4.98 12h-9l4.02-12zm17 18.98 17-21h-15v-5h24v5l-18 21h18v6h-26zm101-62 6-1 3 18c1.067 6.401-1.858 10.764-6.414 12.445-5.19 1.914-11.806.164-12.586-8.445l5-1c1.165 5.152 3.237 5.599 5.636 4.791 1.904-.64 2.889-3.64 2.364-6.79zm10-1.8 5.92-1.123 2.74 14.98c1.172 6.409 3.183 9.135 7.351 8.407 5.174-.903 5.741-3.8 4.64-9.51l-3.68-15.98 6.057-.915 4.019 16.623c2.35 9.722-2.729 13.578-9.546 14.851-5.939 1.11-12.253-.399-14.322-9.987zm31 13.8 5-2c2.453 4.405 6.28 4.178 9.255 2.863 4.133-1.827 4.606-5.44 2.562-6.663-2.914-1.743-9.869.733-13.615-.634-4.482-1.635-6.406-4.156-6.177-8.032.276-4.666 4.381-7.23 8.846-8.615 4.996-1.55 9.926-1.003 13.129 5.081l-6 2c-1.953-3.287-4.466-3.131-6.697-2.078-1.866.882-4.784 2.538-3.222 5.206 1.277 2.18 8.626.765 12.498.923 4.004.164 7.24 2.836 7.781 6.687.755 5.368-1.234 8.276-7.44 10.697-7.667 2.99-14.583-.36-15.92-5.435zm27-25-8 4-2-5 22-9 2 4-8 4 9 22-5 3zm13-11 5-3 14 26-5 3zm34 2 6-2c2.821 5.932-1.415 16.715-11.775 16.493-15.164-.325-16.805-17.027-14.421-22.536 4.005-9.252 15.224-9.075 20.196-3.957l-5 4c-3.17-4.067-10.212-1.504-10.688 2.237-.776 6.106 1.912 11.788 7.371 14.483 4.629 2.285 11.761-3.46 8.316-8.72zm-3-21 5-4 18 24-5 4zm19-15-4.98 4.02 10.98 30 4.98-4.98-3-6 9-8.04 6 3 5.04-3.96L2049 1415zm1.98 7.02L2061 1427l-6 6-4.02-10.98z' stroke='none'/%3e%3c/g%3e%3c/svg%3e\"},8281:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 18'%3e%3cpath fill='%230D5EAF' d='M0 0h27v18H0z'/%3e%3cpath fill='none' stroke-width='2' stroke='%23FFF' d='M5 0v11M0 5h10m0-2h17M10 7h17M0 11h27M0 15h27'/%3e%3c/svg%3e\"},4273:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 750 375'%3e%3cdefs%3e%3clinearGradient id='b'%3e%3cstop stop-color='%23d5dfff' offset='0'/%3e%3cstop stop-color='%23FFF' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient id='a'%3e%3cstop stop-color='%23474747' offset='0'/%3e%3cstop stop-color='%23f50' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient id='f' y2='102.99' xlink:href='%23a' gradientUnits='userSpaceOnUse' x2='228.97' gradientTransform='matrix(.74087 0 0 1.3286 40.513 .006)' y1='102.99' x1='215.83'/%3e%3clinearGradient id='c' y2='173.45' xlink:href='%23a' gradientUnits='userSpaceOnUse' y1='218.47' gradientTransform='matrix(1.5101 0 0 .65184 40.513 .006)' x2='110.94' x1='109.34'/%3e%3clinearGradient id='d' y2='337.23' gradientUnits='userSpaceOnUse' y1='316.38' gradientTransform='matrix(1.2315 0 0 .79928 40.513 .006)' x2='126.02' x1='125.91'%3e%3cstop stop-color='%23b50000' offset='0'/%3e%3cstop stop-color='%23ffc500' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient id='g' y2='1003.7' xlink:href='%23b' gradientUnits='userSpaceOnUse' y1='1040.4' gradientTransform='matrix(2.5627 0 0 .38409 40.513 .006)' x2='78.221' x1='117.6'/%3e%3clinearGradient id='h' y2='226.38' xlink:href='%23b' gradientUnits='userSpaceOnUse' y1='245.98' gradientTransform='matrix(.88634 0 0 1.1105 40.513 .006)' x2='255.03' x1='264.72'/%3e%3clinearGradient id='e' y2='147.35' xlink:href='%23b' gradientUnits='userSpaceOnUse' y1='149.38' gradientTransform='matrix(.55904 0 0 1.7607 40.513 .006)' x2='456.4' x1='407.87'/%3e%3c/defs%3e%3cpath fill='%23012169' d='M0 0h750v375H0z'/%3e%3cpath d='M0 0v20.963L333.073 187.5h41.925v-20.963L41.925.001H0zm374.998 0v20.962L41.925 187.5H0v-20.962L333.073 0h41.925z' fill='%23FFF'/%3e%3cpath d='M156.25 0v187.499h62.499V0h-62.5zM0 62.5V125h374.998V62.5H0z' fill='%23FFF'/%3e%3cpath d='M0 75v37.5h374.998V75H0zM168.75 0v187.499h37.499V0h-37.5zM0 187.499l125-62.5h27.95l-125 62.5H0zM0 0l125 62.5H97.05L0 13.976V0zm222.049 62.5 125-62.5h27.95l-125 62.5h-27.95zm152.95 124.999-125-62.5h27.95l97.05 48.525V187.5z' fill='%23c8102e'/%3e%3cpath d='M552.668 265.56s-2.08 5.49-3.266 5.49-5.49-2.373-5.49-2.373-3.117 5.049-4.75 5.34c-1.634.299-5.937-.738-5.937-.738s-4.155 0-4.304-.596c-.149-.59.15-1.776.15-1.776s-5.936 4.744-7.272 4.446c-1.336-.292-5.788-5.93-5.788-5.93l-.742 2.968-8.458-.298-7.42-4.75s-4.156 6.824-4.304 6.675-7.272 1.633-7.272 1.633l-.445-1.335-4.749-2.82s3.71-5.191 3.71-5.34-1.78-.745-1.78-.745l-2.672 2.23-5.49 3.558-5.491-2.522 2.374-4.452.297-3.267 4.304-6.526 52.682-51.202 25.97 47.935-3.857 14.395z' stroke='%23000' stroke-width='.828' fill='%236a4c2d'/%3e%3cpath d='m590.096 268.665 13.712-.497-5.838-2.881 52.251-1.969-7.383-2.813-6.54-8.862-27.075-2.037s-2.037-1.546-5.347-.776c-.137-2.105-2.67-4.85-2.67-4.85l-16.668-1.267-10.408 7.104 7.03 18.003 8.936.845z' stroke='%23000' stroke-width='.828' fill='%23FFF'/%3e%3cpath d='m121.32 150.76 2.22-7.56s3.89-6.56 3.89-9.46c0-2.89 2.9-6.33 2.9-6.33s8.89-2.56 10.78 2.89c9.57-14.46 20.8-.67 20.8-.67l3.11-3.67 6.34-7.78s9.01 8.45 9.12 9.89c.11 1.45 1.55.45 1.55.45l9.79-.78s4.64 3.64 3.67 10.56c3.45 2.04 6.56 14.01 6.56 14.01l-80.73-1.55z' stroke='%23000' stroke-width='1pt' fill='url(%23c)' transform='matrix(.621 0 0 .621 461.4 21.482)'/%3e%3cpath d='M590.102 170.97c1.05-.64 4.353-1.69 3.95-6.521s-4.59-5.397-6.924-5.235c-2.342.161-4.434 2.173-4.434 2.173l-7.732-4.912s3.87-24.405 7.974-25.933c3.9-2.813 4.59-4.03 4.59-4.67 0-.646-1.448-2.26-1.448-2.26l-25.212-2.981-23.84 2.82s-1.851 2.819-1.609 3.949c.242 1.124.323 2.335 4.59 5.638 4.725 3.633 7.973 24.486 7.973 24.486s-6.682 3.298-7.086 2.894c-.403-.397-2.415-.8-3.465-.64-1.043.162-4.508 1.932-4.508 6.521 0 4.596 3.465 7.253 3.465 7.253s22.79-2.657 26.175 3.62c3.304-7.57 24.964-4.911 27.541-6.203z' stroke='%23000' stroke-width='.828' fill='%23656263'/%3e%3cpath stroke-linejoin='round' d='M614.657 145.601s.254-2.651 2.142-3.912c1.894-1.26 14.507-1.894 17.537 0 3.024 1.894 4.16 11.228 4.16 11.228s1.895 3.279 2.019 5.676.379 4.036.379 4.036 10.091 13.122 10.215 24.977c1.137 8.073.882 29.64-2.266 37.837-.13 10.222-4.416 16.904-4.416 16.904s1.006 1.763.882 3.658c-.13 1.894-1.136 3.657-1.136 3.657l14.755 7.316-5.422-2.019s5.552 4.67 5.422 4.546c-.125-.13-6.18-2.906-6.18-2.906l3.658 3.658c-.124-.125-8.954-4.037-8.954-4.037s4.16 3.912 3.912 3.788c-.255-.124-6.688-3.155-6.688-3.155s4.036 4.292 3.912 4.037-5.8-2.521-5.8-2.521l.248 2.142s-4.54-.254-4.54-3.658c-2.272-1.26-3.781-3.03-3.781-3.03l-10.47-1.764-11.861-35.446 2.776-59.914.757-3.025-1.26-8.073z' stroke-opacity='.979' stroke='%23000' stroke-width='.776'/%3e%3cpath stroke-width='.822' d='M606.733 337.074s-6.074-12.774-9.098-12.954c-2.732-5.21 9.495-47.792 33.149-50.22 13.004 1.068 1.068 14.99-7.483 10.706 1.068 3.745 5.34 9.104 5.34 9.104s-16.922 7.315-21.908 43.364z' stroke='%23000' fill='%23fb0'/%3e%3cpath d='M525.307 338.937s5.03-14.544 8.08-14.724c3.055-.18-8.08-48.469-32.313-48.829-13.105 1.08-1.077 15.078 7.54 10.768-1.077 3.776-5.385 9.16-5.385 9.16s17.054 7.359 22.078 43.625z' stroke='%23000' stroke-width='.828' fill='%23fb0'/%3e%3cpath d='M547.539 248.104c-.062-.118-6.018 1.869-2.161 8.352.292-2.509 2.974-4.03 2.974-4.03s-4.086 4.85.236 8.936c.528-3.857 2.981-5.08 2.981-5.08s-3.036 8.936.056 10.743c.354-3.564 2.627-5.135 2.627-5.135s-2.745 7.998-.292 9.805c.292-3.03 2.335-4.378 2.335-4.378s-1.223 8.297 1.987 8.88c.062-2.924 2.397-5.78 2.397-5.78s-1.055 6.768 3.968 7.066c.063-2.57.994-5.49.994-5.49s2.28 7.18 5.608 6.012c-.056-2.1.056-6.074 0-6.074-.062 0 2.099 6.831 6.073 5.552-.584-1.931.23-4.21.23-4.21s2.105 4.266 5.9 2.862c.645-1.285-.175-3.794-.175-3.794s5.546 5.726 7.241 2.28-4.44-4.615-4.44-4.615h4.148s-1.34-3.502-6.949-4.266c1.926-.876 3.913-.23 3.913-.23s-1.168-4.384-6.893-4.85c2.223-.757 4.676-.23 4.676-.23s-.764-4.148-7.067-5.315c.993-1.112 3.676-.758 3.676-.758s-2.509-3.912-5.372-3.683c-2.862.236-28.733-2.626-28.671-2.57z' stroke='%23000' stroke-width='.828' fill='%2300713d'/%3e%3cpath d='M573.056 269.186s2.279 1.112 2.223 2.106m-.876-3.912s2.92 2.042 2.863 3.558m-.298-4.614s2.341 1.459 2.453 3.738m1.459-2.801s1.174 2.51.764 2.975m1.578-1.633c.173 1.987-.18 2.16-.18 2.16m-28.616-14.717s2.745 1.751 2.515 4.204m-2.689-2.099s1.285 1.224.994 2.043m2.397-4.086s1.807 2.51 1.223 4.26m1.869-2.627s.82 1.578.062 2.453m1.398-1.694s.993 1.576.117 2.104m-1.222 3.093s2.564.584 2.918 2.509m-1.404-4.26s2.69.173 2.981 3.036m.584-4.03c.056 0 1.807 3.099 1.515 4.086m1.931-3.794s.696 2.98.174 3.912m2.043-2.745c0 .062.056 3.447.056 3.447m-3.44-8.117s1.69.64 1.571 2.28m.001-3.801s2.16 1.23 1.93 3.565m.584-4.552s1.87 2.217 1.168 4.67m2.098-4.149s-.695 2.745-.41 3.857m2.398-1.988s-1.224.938-.584 2.106m-10.041 8.581s.403 2.106 0 2.454m-2.689-3.677s1.34 2.335.875 3.503m-3.739-3.62s1.522 1.75 1.46 3.154m-3.794-2.807s1.403 1.348 1.285 2.105m-2.509-.062s1.342 1.404 1.28 1.696' stroke-width='.776' stroke-linecap='round' stroke='%233ec26d' fill='none'/%3e%3cpath d='M529.002 173.49c6.44-.118 12.88-.23 19.32-.347 0 0 12.76 0 14.14 4.142 2.415-5.521 13.45-5.173 13.45-5.173l20.003-.69c.118 16.097.23 32.193.348 48.29-3.907 18.735-17.475 31.962-32.423 37.595-17.823-5.75-29.087-20.81-32.764-37.943-.695-15.29-1.385-30.585-2.074-45.874z' stroke='%23000' stroke-width='.828' fill='%23FFF'/%3e%3cpath d='m535.883 173.31 28.137 74.98 25.418-76.613c-7.887.51-24.803-1.242-26.902 5.95-3.254-6.434-21.052-3.839-26.653-4.317z' stroke='%23000' stroke-width='.828' fill='%23006b00'/%3e%3cpath d='M555.034 213.905c1.087.565 1.056-20.35 2.478-20.996.404-1.733.609-2.49 1.118-4.328-1.223-2.168-6.7-2.062-8.731-.218.913 2.919 1.316 3.894 1.316 3.894 2.745 4.44 2.199 22.12 3.82 21.648z' stroke='%23006b00' stroke-linecap='round' stroke-width='.428' fill='%23ffc900'/%3e%3cpath stroke-linejoin='round' d='M547.495 52.251s1.994-2.259 2.08-2.8c.094-.543 9.036-.904 14.365-10.842 2.98-5.24 0-2.168 0-2.168l-.18-2.53s3.707-3.523 2.353-5.421c-1.36-1.897-.907 2.44-3.074 2.35s-.994-4.699-.994-4.699-.18-.542-.813-.813c-.907.09-.633 1.717-1.447 1.897-.813.181-1.534-3.794-1.534-3.794s-1.354-1.807-2.534 3.885c.634 6.053 4.521 4.878 4.521 8.854 0 3.975-3.434 7.047-4.427 7.137-.994.09-.634-3.343-.634-3.343s-.54-1.626-.9-1.626 1.987-.361 1.627-4.879c-.814-5.42-1.447 1.265-2.894.994-1.447-.27-.36-4.969.18-5.51s-.633-2.802-3.794 2.98c-.274 2.801-.634-.722-1.267-.542-1.08 2.26-.9 3.885.633 5.963 2.26 2.078 3.708 4.156 3.615 5.24-.087 1.085-1.267 3.524-2.888 3.524-1.627 0 .087-2.982 0-3.976-.093-.993-2.8-4.607-2.8-4.607s-1.901-3.072-1.721-3.162c.18-.09-.18-.542-1.08 2.62-.907 3.162-1.994-2.078-1.994-2.078s-1.26 3.884 1.447 6.234c-2.074-.271-2.254.542-2.254.542 0 1.084 2.8 1.536 3.16 3.433.36 1.897-2.893 2.981-2.893 2.981s1.36 1.897 5.148-1.806c.093 2.348-1.44 3.975-1.44 3.975 1.26.572 2.253.511 2.433 1.987z' stroke='%23000' stroke-width='.776' fill='%23cdad56'/%3e%3cpath stroke-linejoin='round' d='M535.1 52.251s-1.689-2.507-1.763-3c-.081-.493-8.31.623-12.202-9.413-2.532-4.769 0-1.973 0-1.973l.154-2.302s-2.695-3.297-1.544-5.023.677 2.22 2.157 2.227c1.84-.082.844-4.275.844-4.275s.153-.493.69-.74c.766.083 1.082 2.556 1.772 2.72s2.117-2.91 2.564-3.542c.634-.09.61-2.548 1.609 2.631-.534 5.508-5.099 4.44-5.099 8.057s2.913 6.412 3.758 6.494c.844.082.54-3.041.54-3.041s.46-1.48.764-1.48c.31 0-2.683.574-2.373-3.536.69-3.848 2.217.248 3.447 0 1.23-.246-.143-4.069.211-4.653.08-.583 1.888-3.09 2.59 2.442.23 2.549 1.62-2.193 2.155-2.029.925 2.055-.404 4.8-1.708 6.691-1.92 1.89-2.789 3.962-2.708 4.949.075.986.528 2.212 1.913 2.212 1.379 0 .466-1.72.54-2.623s2.379-3.832 2.379-3.832c.453-.722.074-2.072.552-2.696.752.008 1.062-1.035 1.826 1.842.77 2.877 1.69-1.891 1.69-1.891s1.073 3.535-1.23 5.673c1.763-.247 1.918.493 1.918.493 0 .986-.838 1.397-1.148 3.123s.919 2.713.919 2.713-1.15 1.727-4.372-1.644c-.08 2.137 1.23 3.617 1.23 3.617-1.081.521-1.92.466-2.075 1.81z' stroke='%23000' stroke-width='.682' fill='%23cdad56'/%3e%3cpath d='M584.743 184.494c-1.683-1.527-1.882-.192-2.708-.534-.41-.167-.726-.546-1.08-.894-.304-.317-.67-.447-1.074-.615-.156.454-.305.9-.46 1.354s.429 1.205.416 1.882c-.118 1.006-.528 1.844-1.795 2.186.36-.714.566-.745.454-1.621-.05-.435-1.273-1.211-1.124-1.62.223-.665.608-1.43.323-2.094-.516.354-1.199.168-1.714.385-.441.193-.466 1.006-1.075 1.342-.62.292-1.993.149-3.142-.503.702-.528 1.28-.174 1.981-.702.348-.267.335-1.403.683-1.67.354-.268 1.193-.547 1.54-.814-.316-.36-.298-.925-.614-1.285-.311-.36-1.708-.286-2.025-.64-.633-.72-.51-1.664-1.143-2.379 1.634.584 1.398 1.38 1.808 1.317.77-.373 1.54-.44 1.943-.273.41.174 1.18 1.18 1.584 1.347.155-.453.379-1.024.528-1.478.155-.453-.683-1.235-.534-1.689.31-.9 1.068-1.701 1.372-2.608.112.876.255 1.608.366 2.478.056.434.913.664.97 1.099.055.44-.448 1.447-.398 1.888.472-.093 1.149-.031 1.614-.124.472-.094.783-1.18 1.249-1.273.937-.187 1.614-.13 2.564.05-.701.651-1.242.608-1.683 1.204-.347.267.137 1.143-.875 1.757-.38.224-1.379-.043-1.733.224.317.36.634.714.95 1.074.31.36 1.727.528 2.043.888.628.714.963 1.571.789 2.341zm-43.265.739c1.683-1.527 1.882-.192 2.714-.534.403-.173.72-.552 1.074-.894.304-.317.67-.447 1.074-.62.156.453.31.906.46 1.36.155.453-.422 1.198-.41 1.875.112 1.012.522 1.844 1.789 2.192-.36-.714-.566-.752-.454-1.621.056-.435 1.273-1.211 1.124-1.627-.223-.658-.608-1.428-.323-2.093.522.36 1.199.174 1.72.385.435.199.466 1.012 1.069 1.348.627.292 2 .149 3.142-.503-.702-.534-1.28-.174-1.981-.708-.348-.261-.33-1.404-.683-1.665-.348-.267-1.186-.552-1.54-.82.316-.353.298-.925.614-1.285.317-.354 1.714-.28 2.025-.64.633-.713.515-1.657 1.143-2.378-1.634.584-1.391 1.379-1.801 1.323-.777-.373-1.547-.447-1.95-.273-.404.167-1.18 1.173-1.584 1.347-.155-.453-.372-1.024-.528-1.478s.69-1.235.534-1.689c-.304-.906-1.068-1.701-1.372-2.608-.112.87-.255 1.602-.366 2.478-.056.434-.913.664-.97 1.099-.049.435.454 1.447.398 1.882-.472-.094-1.149-.031-1.614-.118-.466-.1-.777-1.187-1.249-1.28-.937-.186-1.608-.13-2.564.05.701.658 1.242.609 1.683 1.211.347.267-.137 1.143.875 1.757.38.224 1.385-.043 1.733.224a73.93 73.93 0 0 0-.944 1.074c-.317.36-1.733.528-2.043.882-.634.72-.969 1.577-.795 2.347z' fill='%23ffc900'/%3e%3cpath stroke-linejoin='round' d='M583.234 189.326c-1.528 1.186-11.37 3.676-11.476 12.227-.1 8.552 1.726 10.501-.1 10.719-3.552 0-4.06-9.526-3.961-13.75.105-4.222.204-3.57.204-3.57s2.435.646 2.236 2.708c-.205 2.055 2.434-5.093 1.522-7.036 1.62 1.62 3.757.975 3.757.863 0-.106-1.218-1.404-1.727-2.378s1.826.54 1.826.54.1-1.627-1.931-1.515c-2.64 0 .41-.87.41-.87s1.521 1.41 2.54-.105c-1.118-1.193-2.745-1.845-2.745-1.845s-1.423-2.701-3.348-3.241c-2.235-.547-1.93.968-4.47.757-.504.969-.504 1.08.508 1.404-1.726 1.192-.813 3.57-.813 3.57s2.745-1.186 2.64.758c-.1 1.95-1.622 1.627-2.64.435-.913-.54-1.217.54-1.217.54l1.422 1.515s-2.739-.105-3.453 1.733c1.522-.106 2.335.329 2.335.329s-3.148 1.403-3.453 2.161-.403-.863-.503-.863c-.105 0-3.049-1.087-3.049-1.087l-1.018 4.682s2.037 2.031 3.148 1.38c1.118-.647 3.149-2.597 4.366-2.056-3.552 2.707-7.104 6.6-9.036 7.147-.503-.434-2.23-2.167-2.943-1.304-.708.87-.199 1.95.714 1.845.913-.112-2.944.863-2.136 2.49.813 1.62.714 1.515 1.422 1.08.714-.434-.609-.54 2.03-1.298s2.54-1.515 2.54-1.515-.509 1.186-1.931 1.515c-1.422.323-2.534.323-2.23.758.305.429.913 1.186.709 1.62s2.943-2.272 3.757-.105c2.13-.112 3.552-2.707 2.54-4.223.099 1.621 1.117 2.168.502 2.925-.608.758 4.776-2.49 2.137-4.44.708 1.621.813 2.925.813 2.925s1.217-.112 1.522-.546c.304-.429-.609 1.192-.205 1.515.403.329 2.335 2.167 1.521 3.465-.503-.758-.608-1.95-1.217-1.838-.609.105-3.148 1.95-4.67 2.055s1.826 5.633 1.826 5.633-2.335-.33-2.64-.112-1.825-1.95-2.13-.646c-.509 1.621.51.969.51.969s-1.323-.646-2.03.112c-.715.757-1.423 1.515-.914 1.838.503.323 2.739.323 3.043.217s-2.54.218-2.738.54c-.205.324-.609 1.516 0 1.95s2.13-.217 2.229-.54c.105-.329.205 1.186.205 1.186s2.64.218 2.64-2.484c0-2.707.204 1.944.204 1.944s2.64.435 2.739-2.273c.105-2.701.304 1.845.304 1.845s1.726-.547 1.726-.975c0-.435-.099 5.409-1.316 7.036-1.932-1.305-3.149.863-3.149.863s.1 3.136-.105 3.893c-.199.758 1.322-.428 1.422-.757.105-.323 1.931-1.186 2.03-1.404.106-.217.61-1.298.61-1.298s-.405 1.516-1.112 1.733c-.715.211-1.423.969-1.118 1.62s1.422 1.081 1.825 1.733c.404.646 1.826-3.788 1.826-3.788l.106.975s1.825-.434 2.03-1.298c.2-.869-1.93-1.627-.205-3.03 1.727-1.41 0 1.298 0 1.298s.61 2.055 1.013 2.055c.41 0 1.422-3.9.41-4.868-1.019-.975 1.521 1.186 1.521 1.186s1.422-4.006-.1-4.546c-1.527-.54-2.235-.758-2.235-.758s.814-1.08.404-1.186c-.404-.111 2.136 2.379 2.54 1.727.41-.646 1.018-2.596-1.925-3.677-2.95-1.08-.106-4.117-.106-4.117s1.832 2.167 3.148.975c1.317-1.186-.099-1.186-.099-1.186s3.75-2.385 3.856-3.577c-.714-.105-1.93.112-1.93.112s2.135-1.41 1.626-3.683c-.813 1.193-1.931 1.193-1.931 1.193s1.832-1.838 1.521-3.571c-1.111.863-1.012 1.515-1.726 1.298-.708-.218-1.925-7.036.919-7.47 2.838-.43 1.317 3.359 1.416 3.359.105 0 4.266-1.733 0-4.546 1.018-.33 3.148 1.62 3.148 1.62s-.913-4.762-5.483-1.837c1.118-1.193 1.832-1.95 2.745-1.733s4.16-.112 4.16-1.08c-.807-.652-2.533.323-3.452 0-.913-.33 6.502-.87 5.893-4.546z' stroke='%23006b00' stroke-linecap='round' stroke-width='.428' fill='%23ffc900'/%3e%3cpath d='M481.3 118.54s12.25-6.43 18.37 1.54m4.9 12.24c-.31 0-4.29 3.98-5.21 3.98m13.48 8.88s11.32.92 18.67-10.41' transform='matrix(.3316 0 0 .35352 391.45 150.228)' stroke='%23006b00' stroke-linecap='round' stroke-width='1.25' fill='none'/%3e%3cpath d='M525.08 141.81s.92 6.13 2.76 6.13c1.83 0-3.06 1.53-4.9.3 2.14 2.76 3.37 7.66 0 9.49' transform='matrix(.3316 0 0 .35352 391.45 150.228)' stroke='%23006b00' stroke-linecap='round' stroke-width='1.25' fill='none'/%3e%3cpath d='M519.26 218.97s-3.98 4.28-8.88 4.59' transform='matrix(.3316 0 0 .35352 391.45 150.228)' stroke='%23006b00' stroke-linecap='round' stroke-width='1.25' fill='%23e80000'/%3e%3cpath d='M523.86 199.37s-2.45-12.24-.92-15.31c.92-3.98 4.9-5.51 7.96-10.71m-8.27 17.14s-3.06 7.35-16.53 4.9m20.21-23.27s.91 9.8-11.33 6.13m-3.68-50.21s-4.9 4.28-3.06 10.1' transform='matrix(.3316 0 0 .35352 391.45 150.228)' stroke='%23006b00' stroke-linecap='round' stroke-width='1.25' fill='none'/%3e%3cpath d='M567.087 191.703s2.132-.866 2.54-1.3c.404-.432 1.117-1.298 1.32-1.949.202-.647-1.423-1.623-.61-3.03.507-.649 1.216-.757 2.437 0 1.216.757-1.118-2.38-2.335-2.488-1.22-.109-2.033.865-2.334.649-.305-.217.1.866-.408.866s1.014.866.915 1.408c-.103.541 1.622 2.38 1.522 2.814-.103.432-2.54 2.92-3.047 3.03z' fill='%23006b00'/%3e%3cpath stroke-linejoin='round' d='M534.27 97.112c2.79-.636 3.24.07 2.75 2.449-1.31-.66-1.79-1.217-2.75-2.449z' transform='matrix(.3316 0 0 .35352 391.45 150.228)' stroke='%23ffc900' stroke-linecap='round' stroke-width='1.25' fill='%23ffc900'/%3e%3cpath stroke-linejoin='round' d='M514.71 233.52s-1.03 6.41 1.49 6.94c-.13-2.48.54-4.17 1.16-4.83-.54-.25-2.53-2.07-2.65-2.11zm-5.68-7.89c-2.32-.33-6.23 1.59-5.11 3.91 1.89-1.62 3.63.13 4.95-1.52.4-.46.29-1.81.16-2.39zm-.02-4.58s-3.65-.58-4.16 1.95c2.52-.32 3.27-.59 4.11-.06.24-.54.01-1.76.05-1.89z' transform='matrix(.3316 0 0 .35352 391.45 150.228)' stroke='%23006b00' stroke-width='1.25' fill='%23e80000'/%3e%3cpath stroke-linejoin='round' d='M493.54 184.94s2.19.82 2.81 3.06c1.74-1.08 2.57-5.83-2.81-3.06zm-5.42 5.45c.09-.04 4.59-2.77 5.05-.16-.95.95-1.37 1.57-2.11 1.78-.58 0-1.74-1.78-2.94-1.62zm-.45 8.85c.08-.04 2.89-2.52 3.97-.87 1.07 1.66-.87 1.57-.87 1.57s-.99-.45-3.1-.7zm-3.97-49.28c-.04 0-3.6-1.37-5.09 1.11 2.36.29 3.19 1.12 4.26 1.95-.29-1.04-.78-2.61.83-3.06zm-6.9 18.56s.16-4.17 2.14-5.87c1.12.62 1.45 1.61 2.2 2.85-1.49.33-3.48.42-4.34 3.02zm9.5-2.98s-3.92 1.82-2.64 3.81c1.28-1.37 2.69-.95 2.69-.99s0-2.77-.05-2.82z' transform='matrix(.3316 0 0 .35352 391.45 150.228)' stroke='%23006b00' stroke-width='1pt' fill='%23e80000'/%3e%3cpath stroke-linejoin='round' d='M480.64 125.6c-1.41 1.58 1.74 5.01 5.04 4.51.83-3.72-4.21-5.66-5.04-4.51z' transform='matrix(.3316 0 0 .35352 391.45 150.228)' stroke='%23006b00' stroke-width='1pt' fill='%23ffc900'/%3e%3cpath d='M550.815 192.088c-.229.619.68 1.489 1.207 1.245.213-.637-.968-1.736-1.207-1.245z' fill='none'/%3e%3cpath stroke-linejoin='round' d='M484.28 122.75s.62 2.94 3.47 2.15c-.45-2.27-2.44-3.97-2.44-3.97-.12.67.41 1.7-1.03 1.82zm1.9 8.52s1.57 1.69 4.67-1.78c-1.4.41-3.88-.83-3.88-.83s0 2.4-.79 2.61z' transform='matrix(.3316 0 0 .35352 391.45 150.228)' stroke='%23006b00' stroke-width='1pt' fill='%23e80000'/%3e%3cpath stroke-linejoin='round' d='M480.46 118.86c-1.4 1.57.59 3.76 3.89 3.27.83-3.72-3.06-4.42-3.89-3.27z' transform='matrix(.3316 0 0 .35352 391.45 150.228)' stroke='%23006b00' stroke-width='1pt' fill='%23ffc900'/%3e%3cpath d='M144.62 266.62s7.04-2.01 10.78 1.01c3.73 3.01 3.73.28 3.73.28s5.46 2.01 7.04 1.58-1.15.15 1-1.15c2.16-1.29-4.31.29-4.88-2.44-1.01-1.72.14-3.88-2.15-3.16-1.58-2.01 1-3.44.43-5.6-1.58 1.15-2.45-.43-3.74 2.44-3.01-.57-.43-4.74-3.73-5.17 0 3.02-2.44 3.16-2.59 4.89-1.43 1-7.75 4.74-5.89 7.32z' fill='url(%23d)' transform='matrix(.621 0 0 .621 461.4 21.482)'/%3e%3cpath d='M500.91 329.237c2.836-.683 18.2 3.397 24.124 9.744-1.26-11.309-4.392-19.972-4.392-19.972s-9.155-2.614-10.412-1.353c-1.843 1.937-7.38 7.756-9.32 11.581zm-4.683-52.238c-1.077.18-2.154.9-3.231 2.695-1.257 3.049-2.154 10.768-3.95 12.563s-3.41 1.974-3.41 3.595c0 1.615.18 5.384 5.026 6.819 4.847.18 12.567-7.72 12.567-7.72s3.95-4.309 5.564-8.973c-9.334 3.23-15.977-5.39-12.566-8.98z' stroke='%23000' stroke-width='.828' fill='%23c01500'/%3e%3cpath stroke-width='.822' d='M631.237 327.436c-2.813-.677-18.35 3.379-24.231 9.688 1.248-11.24 4.36-19.86 4.36-19.86 1.086-.292 8.985-2.595 10.233-1.341 1.826 1.925 7.713 7.713 9.638 11.513zm4.353-51.934c1.069.18 1.447 1.584 2.323 3.372 1.242 3.03 2.528 7.452 4.31 9.234 1.782 1.789 3.384 4.428 3.384 6.036s-.372 3.776-5.185 5.204c-4.807.18-11.78-5.998-11.78-5.998s-3.919-4.28-5.521-8.924c9.265 3.217 15.264-5.055 12.47-8.924z' stroke='%23000' fill='%23c01500'/%3e%3cpath d='M490.842 319.37s9.693 6.638 9.874 9.693c26.032-38.601 92.454-50.63 130.329-2.695 5.03-6.645 10.234-8.793 10.234-8.793-39.85-52.065-119.201-45.6-150.437 1.794z' stroke='%23000' stroke-width='.828' fill='%23fb0'/%3e%3cg stroke-width='1pt' stroke='%23000' fill='%231e5aa6'%3e%3cpath d='m589.6 171.69 3.794-.094-6.776 8.583 8.13 9.488-15.991 20.146 15.09 18.158c-1.658 4.067-3.583 7.768-6.148 11.116l-8.67-9.582 15.718-19.6-12.916-14.636 7.768-23.58zm-54.208 1.713-4.067.094 7.588 8.215-8.036 10.03 16.712 18.164-13.824 18.518c1.658 4.068 4.037 8.582 6.595 11.923l8.222-10.39-16.891-18.79 12.377-15.718-8.676-22.046z' stroke-width='.828'/%3e%3cpath d='m554.184 222.19-5.962 7.948 21.319 24.666c3.763-1.9 6.72-4.067 9.942-6.682l-11.116-12.83 4.521-13.283 6.502 7.496-20.325 25.933c-3.403-1.447-7.167-3.708-10.57-6.509l10.75-13.637-5.061-13.103zm-6.595-12.377 3.887 4.88-2.534-6.594-1.353 1.714z' stroke-width='.828'/%3e%3cpath stroke-width='.802' d='M575.416 214.129c.08-.094 3.136-4.161 3.136-4.161l-1.186-1.62-1.95 5.78z'/%3e%3c/g%3e%3cg font-family='Timmons' font-size='14' font-weight='bold'%3e%3ctext y='362.397' x='-328.344' transform='matrix(.403 -.473 .473 .403 461.4 21.482)'%3e%3ctspan y='362.397' x='-328.344'%3eL%3c/tspan%3e%3c/text%3e%3ctext y='384.266' x='-292.335' transform='matrix(.436 -.442 .442 .436 461.4 21.482)'%3e%3ctspan y='384.266' x='-292.335'%3eE%3c/tspan%3e%3c/text%3e%3ctext y='451.681' x='-239.78' transform='matrix(.4737 -.33822 .35254 .46837 461.4 21.482)'%3e%3ctspan y='451.681' x='-239.78'%3eO%3c/tspan%3e%3c/text%3e%3ctext y='429.958' x='-188.526' transform='matrix(.51446 -.3478 .3478 .51446 461.4 21.482)'%3e%3ctspan y='429.958' x='-188.526'%3eT%3c/tspan%3e%3c/text%3e%3ctext y='451.479' x='-115.426' transform='matrix(.56 -.268 .268 .56 461.4 21.482)'%3e%3ctspan y='451.479' x='-115.426'%3eE%3c/tspan%3e%3c/text%3e%3ctext y='453.046' x='-94.111' transform='matrix(.567 -.252 .252 .567 461.4 21.482)'%3e%3ctspan y='453.046' x='-94.111'%3eR%3c/tspan%3e%3c/text%3e%3ctext y='454.982' x='-68.371' transform='matrix(.576 -.232 .232 .576 461.4 21.482)'%3e%3ctspan y='454.982' x='-68.371'%3eR%3c/tspan%3e%3c/text%3e%3ctext y='445.666' x='112.016' transform='rotate(-4.6 467.783 -5492.19) scale(.621)'%3e%3ctspan y='445.666' x='112.016'%3eR%3c/tspan%3e%3c/text%3e%3ctext y='430.793' x='180.225' transform='matrix(.62 0 0 .62 461.4 21.482)'%3e%3ctspan y='430.793' x='180.225'%3eR%3c/tspan%3e%3c/text%3e%3ctext y='275.217' x='414.759' transform='matrix(.54 .307 -.307 .54 461.4 21.482)'%3e%3ctspan y='275.217' x='414.759'%3eR%3c/tspan%3e%3c/text%3e%3ctext y='193.05' x='483.878' transform='rotate(39.8 201.03 648.008) scale(.621)'%3e%3ctspan y='193.05' x='483.878'%3eE%3c/tspan%3e%3c/text%3e%3ctext y='414.028' x='309.116' transform='matrix(.59837 .11248 -.09645 .5911 461.4 21.482)'%3e%3ctspan y='414.028' x='309.116'%3eO%3c/tspan%3e%3c/text%3e%3ctext y='459.272' x='105.058' transform='matrix(.56007 -.08172 .08475 .60547 461.4 21.482)'%3e%3ctspan y='459.272' x='105.058'%3eO%3c/tspan%3e%3c/text%3e%3ctext y='455.835' x='-45.708' transform='matrix(.582 -.215 .215 .582 461.4 21.482)'%3e%3ctspan y='455.835' x='-45.708'%3eA%3c/tspan%3e%3c/text%3e%3ctext y='144.724' x='518.35' transform='rotate(45.196 204.897 565.016) scale(.621)'%3e%3ctspan y='144.724' x='518.35'%3eA%3c/tspan%3e%3c/text%3e%3ctext y='388.298' x='271.188' transform='rotate(11.357 122.69 2331.003) scale(.621)'%3e%3ctspan y='388.298' x='271.188'%3eA%3c/tspan%3e%3c/text%3e%3ctext y='455.168' x='40.322' transform='matrix(.61 -.115 .115 .61 461.4 21.482)'%3e%3ctspan y='455.168' x='40.322'%3eM%3c/tspan%3e%3c/text%3e%3ctext y='448.079' x='94.429' transform='matrix(.618 -.064 .064 .618 461.4 21.482)'%3e%3ctspan y='448.079' x='94.429'%3eP%3c/tspan%3e%3c/text%3e%3ctext y='437.607' x='155.088' transform='matrix(.62 0 0 .62 461.4 21.482)'%3e%3ctspan y='437.607' x='155.088'%3eP%3c/tspan%3e%3c/text%3e%3ctext y='276.665' x='405.134' transform='matrix(.54 .306 -.306 .54 461.4 21.482)'%3e%3ctspan y='276.665' x='405.134'%3eP%3c/tspan%3e%3c/text%3e%3ctext y='409.793' x='232.095' transform='rotate(6.586 44.083 4020.832) scale(.621)'%3e%3ctspan y='409.793' x='232.095'%3eI%3c/tspan%3e%3c/text%3e%3ctext y='132.089' x='530.392' transform='rotate(46.59 205.751 546.6) scale(.621)'%3e%3ctspan y='132.089' x='530.392'%3eT%3c/tspan%3e%3c/text%3e%3ctext y='218.519' x='464.158' transform='rotate(36.82 198.426 703.928) scale(.621)'%3e%3ctspan y='218.519' x='464.158'%3eT%3c/tspan%3e%3c/text%3e%3ctext y='361.961' x='313.725' transform='matrix(.596 .175 -.175 .596 461.4 21.482)'%3e%3ctspan y='361.961' x='313.725'%3eM%3c/tspan%3e%3c/text%3e%3ctext y='123.248' x='513.704' transform='rotate(47.66 206.381 533.067) scale(.621)'%3e%3ctspan y='123.248' x='513.704'%3eG%3c/tspan%3e%3c/text%3e%3c/g%3e%3cpath d='M620.339 146.266s3.75-3.21 6.42-3.304m-5.88 2.857c.087-.087 22.387-3.21 23.095-3.925m-23.008 4.105c.087-.093 24.97-2.143 24.97-2.143m-25.057 2.23s26.486-1.249 28.094.093m-28.187-.18s25.958.18 26.405.8m-26.312-.8 24.97 2.049m-25.237-1.869c.087 0 25.418 2.23 27.914 5.44m1.335 4.545c-.087-.086-8.65-10.258-29.342-10.078m.093.18s14.357.98 18.903 5.974m-18.636-6.154s9.272-1.783 18.996 9.905' stroke-width='.828' stroke='%23fff700' stroke-linecap='round' fill='none'/%3e%3cpath d='M247.4 217.74s20.72.82 20.72 2.85-15.44 5.89-15.64 14.42 11.78 9.14 12.59 19.9c.81 10.77-9.34 12.39-11.37 15.24-2.04 1.42-6.91 16.65-6.3 25.59s3.25 39.2 7.92 45.3c3.66 2.84 9.14 11.98 15.03 9.14 5.89-2.85 1.83-13.2 1.22-16.05-.61-2.84 2.44-7.51 2.44-11.78s-2.24-7.72-2.03-8.73c.2-1.02 16.45 3.86 15.43 19.9-1.01 16.05-7.51 11.17-7.51 11.17s2.03 19.71-3.05 22.35c-9.14 4.87-15.84-1.02-15.84-1.02l.86 4.01-6.95-3.6s-8.94-12.8-10.97-18.49c-2.03-5.68-4.47-31.07-3.66-36.56.81-5.48 1.42-37.58 1.02-39.2-.41-1.63-2.03-28.44-1.02-32.5 1.02-4.06 7.31-21.94 7.11-21.94z' stroke='%23000' stroke-width='1pt' fill='url(%23e)' transform='matrix(.621 0 0 .621 461.4 21.482)'/%3e%3cpath d='M601.162 153.42s8.955-8.7 14.128-7.695c2.645 0 .124 1.895.124 1.895s4.54.378 5.173 2.397c.124.881-2.149 1.136-2.149 1.136s1.895.379 2.019 2.018c.13 1.64-19.17.373-19.295.249z' stroke='%23000' stroke-width='.828' fill='%23ff7000'/%3e%3cpath d='M601.665 153.04s9.589-1.26 13.625-5.296m-3.912 2.651s7.06-.254 7.06.758' stroke='%23000' stroke-width='.828' fill='none'/%3e%3cpath stroke-linejoin='round' d='M636.479 253.575s6.054-1.391 7.694-3.534c1.012-.758 6.31 7.949-7.694 3.534z' stroke='%23000' stroke-width='.776' fill='%23FFF'/%3e%3cpath d='M634.84 203.497s.757 4.67-1.386 7.818c-1.136 1.261-4.545 3.41-4.545 4.925 0 1.51 1.26 3.527 1.012 5.297-.255 1.764-2.143 3.534-2.018 5.043 0 1.515 2.142 9.588 1.887 9.712m-6.048-47.929s-4.794 1.64-5.807 6.434' stroke='%23FFF' stroke-linecap='round' stroke-width='.776' fill='none'/%3e%3cpath d='M621.717 150.395s1.646 4.54 6.943.249c-3.41-4.664-6.943-.124-6.943-.249z' stroke='%23000' stroke-width='.828' fill='%23c75b00'/%3e%3cpath d='M625.632 150.204c0 .244-.254.442-.568.442s-.567-.198-.567-.442c0-.243.254-.441.567-.441s.568.198.568.441z'/%3e%3cpath d='M578.403 139.857s10.047 10.874 16.55 10.756c1.18 3.192-2.957 6.16-4.609 7.576-3.31-1.062-6.303.192-13.984-9.26.478-6.03 2.16-8.836 2.043-9.072zm13.593-25.293c1.298-4.018 3.9-7.21 6.142-7.564-.59-3.074 4.732-16.662 20.214-21.866.943 6.974-6.62 13.83-6.62 13.83s22.809-3.9 27.417-9.694c-.472 2.602-5.08 18.792-29.43 18.674 9.222 8.75-2.95 15.724-8.153 13.594 9.576-7.328-2.714-11.7-9.57-6.974z' stroke='%23000' stroke-width='.828' fill='%23FFF'/%3e%3cpath d='M599.796 108.894c4.608-2.956 6.26-2.956 10.048-2.366-2.72.354-2.72.472-2.72.472s-.236.354 1.416 1.894c-1.888-.478-3.546-1.54-8.744 0z' stroke='%23CCC' stroke-width='.828' fill='%23cccccd'/%3e%3cpath d='M598.02 107s9.104-4.844 14.184-8.154' stroke='%23000' stroke-width='.828' fill='none'/%3e%3cpath d='M590.22 158.177s12.532 3.427 13.948-14.538c-2.72-7.8-6.502-24.585-.708-29.43-5.322-3.663-11.11.119-11.11.119-.354.826-5.086 7.563 1.298 19.381-15.127-4.018-8.98 10.284-8.98 10.284.59-2.248 8.626-4.372 10.638 7.092.826 2.838-5.44 7.21-5.086 7.092z' stroke='%23000' stroke-width='.828' fill='%2300F'/%3e%3cpath d='M604.286 143.757s13.24-7.092 12.88-23.753c-11.228.236-15.246 14.767-15.246 14.767l2.366 8.986z' stroke='%23000' stroke-width='.828' fill='%2300F'/%3e%3cpath d='M544.956 142.931s-9.806 8.508-15.364 5.788c-4.136 2.484-8.98-1.888-8.98-1.888s5.67 20.915 26.002 5.788c-.354-4.608-1.422-9.334-1.658-9.688z' stroke='%23000' stroke-width='.828' fill='%23FFF'/%3e%3cpath d='M529.474 148.365c.826-4.372 4.254-6.502 6.974-2.366 3.664.714 7.328-14.296-5.676-11.818 3.664-19.617-7.325-26.945-7.325-26.945s-3.9 21.747-2.127 25.765c1.773 4.018-2.6-7.446-16.664-10.638-.237 16.432 15.719 24.114 15.719 24.114s4.491 4.136 9.099 1.888z' stroke='%23000' stroke-width='.828' fill='%2300F'/%3e%3cpath d='M530.772 134.063s-6.142 5.204-4.726 12.296m-4.608-13.004s-1.418 5.08 1.655 12.29m-2.601 1.658s2.837-4.608 8.982 1.298' stroke='%23000' stroke-width='.828' fill='none'/%3e%3cpath d='M521.674 115.39c0-.118-9.336 0-3.782 9.457-4.136 1.298-13.354-4.725-6.972-12.767-20.92-.472-29.429-10.514-29.429-19.736 6.146 6.384 20.801 3.782 26.001 7.682-6.382-5.906-5.082-14.066-5.082-14.066s17.847 5.322 21.037 21.158c-1.064 3.074-1.536 8.508-1.773 8.272z' stroke='%23000' stroke-width='.828' fill='%23FFF'/%3e%3cpath d='M507.318 99.616c3.444 3.503 12.293 4.552 16.784 8.452' stroke='%23000' stroke-width='.828' fill='none'/%3e%3cpath stroke-width='.589' d='M511.392 109.956s7.326-.944 9.45 1.652c-2.867 0-3.823-.708-7.963.832 1.168-.596.849-1.658 1.486-1.658s-2.654-.826-2.973-.826z' stroke='%23CCC' fill='%23cccccd'/%3e%3cpath d='M547.912 52.635s4.017-3.546 8.39-.355c-1.976 5.904-9.098 3.664-9.098 3.664s.236 2.955-.472 4.373c1.422 1.072 2.595 4.61 2.595 4.61s7.328-1.773 8.868 1.418c2.807-.388 4.844 0 4.844 0s5.676-1.418 7.682-1.418c2.012 0 8.39 1.654 8.98 2.836.596 1.181 2.72 9.1 4.142 8.982 1.415-.118-3.428 1.89-4.732-.118-1.298-2.01-.944 2.6-.944 2.6s4.017 4.254 4.49 5.2c.471.943-2.478 8.625-.237 13.947-1.968.18-2.123 2.242-2.123 2.242-.112 2.341-3.074 2.956-3.074 2.956l-.708-3.192-2.012 1.186.826-2.484s2.72-6.62 2.956-8.744c.236-2.13-2.484-5.911-4.608-5.911-2.13 0-3.664 6.737-3.664 6.737s-1.062 5.08-.708 5.552-1.422-1.652-1.422-1.652-.944 3.074-1.652 4.018-2.248 1.298-2.248 1.298-1.062-3.074-.708-4.254 5.794-5.788 5.322-9.097c-.478-3.31 0-2.484-.124-2.602-.118-.118-2.832-2.482-2.95-3.782-.118-1.3-3.546 1.655-8.036.709-1.378 2.402-1.54 8.388-1.54 8.388s-.472 7.21.472 8.042c.95.826-2.36 2.596-2.36 2.596l-2.366 3.192s-.826-2.006-.826-1.888-1.658 1.18-1.658 1.18l.95-2.366c-.062-1.788 2.298-6.676 2.298-10.812s.298-8.568.298-8.568-4.372-.237-4.254 4.252c.118 4.497-1.061 4.733-.825 6.03s1.415 4.962 1.061 6.03c-.354 1.062-1.77 1.416-1.77 1.416l-.353.59s-4.372 2.012-4.254 2.838-.118-2.366-.118-2.366L542 96.48s2.602-1.652 2.602-5.788-.597-4.725-.479-5.67c.118-.95.715-4.377.597-4.731-.118-.355-2.478.945-3.192.945-.708 0 1.304-2.482 1.54-4.255s-2.366 1.655-4.49-.354c.987-2.182 2.478-2.837 2.714-4.491s-1.652 1.418-3.31.236c.136-1.586 1.776-2.954 1.776-2.954s-1.348-.166-1.894 0c-1.062-.355 1.186-2.01 1.304-4.373s-1.304-3.31-1.304-3.428-2.36-2.127-2.714-2.954-.354-1.773-.354-1.773-3.906 2.836-8.514-3.191c4.223-3.604 8.75-.946 8.75-.946s1.18-3.31 6.614-3.073c5.44.237 6.501 3.31 6.266 2.955z' stroke='%23000' stroke-width='.828' fill='%23923f00'/%3e%3cpath d='M577.645 113.769c.093 0 10.035.298 10.135 5.614.1 5.31-3.05 3.937-3.149 3.937s-7.284-.888-7.284-.888l.298-8.663z' stroke='%23000' stroke-width='.828' fill='%2300F'/%3e%3cpath d='M567.995 112.29s12.401-.092 11.712 5.317c-.69 5.415-3.838 4.334-3.838 4.334l-6.005-.497-1.87-9.153z' stroke='%23000' stroke-width='.828' fill='%23fffeff'/%3e%3cpath d='m561.008 111.7 7.185.59s4.329.59 4.136 4.727c-.198 4.135-4.434 4.235-4.434 4.235l-6.986-.398.1-9.153z' stroke='%23000' stroke-width='.828' fill='%2300F'/%3e%3cpath d='M544.18 113.769c-.1 0-10.042.298-10.142 5.614-.093 5.31 3.056 3.937 3.155 3.937s7.284-.888 7.284-.888l-.298-8.663z' stroke='%23000' stroke-width='.828' fill='%23FFF'/%3e%3cpath d='M553.823 112.29s-12.4-.092-11.712 5.317c.69 5.415 3.838 4.334 3.838 4.334l6.005-.497 1.87-9.153z' stroke='%23000' stroke-width='.828' fill='%2300F'/%3e%3cpath d='m560.816 111.7-7.185.59s-4.335.59-4.136 4.727 4.428 4.235 4.428 4.235l6.986-.398-.093-9.153z' stroke='%23000' stroke-width='.828' fill='%23FFF'/%3e%3cpath d='M580.054 171.46s5.167-7.614 7.347-6.8c1.9.633.453 6.526-.453 7.073l-6.894-.273zm-35.415 1.36c-1.627-2.267-3.987-8.52-6.16-6.8-1.907.633-.454 6.526.453 7.073l5.707-.273z' stroke='%23000' stroke-width='.828' fill='%235e0043'/%3e%3cpath d='M548.06 157.76s10.067 6.204 13.37 6.366 13.774-8.055 13.774-8.055' stroke='%23000' stroke-width='.828' fill='none'/%3e%3cpath d='m549.03 133.442 1.93-2.416 9.67 4.913 9.824-4.354 1.931 2.019-10.954 7.731-12.402-7.893z' stroke='%23000' stroke-width='.828' fill='%235e0043'/%3e%3cpath stroke-linejoin='round' d='M541.354 133.312c.782.987 7.03 8.582 8.16 14.866 1.124 6.285-.646-8.62-.646-8.62s7.731 3.789 7.973 6.205 3.695-.162 3.863-.578l-22.387-14.537 3.037 2.664zm38.197-.435s-8.135 10.712-7.166 22.387c-1.677-5.589-.323-14.817-.323-14.817l-1.77 1.13s-1.85 7.893-4.191 9.098c-.392-.938-.317-1.286-.317-1.286s-2.497 3.217-2.98 3.54.16 10.874.16 10.874.839 7.65 1.801 7.57c-1.099.534-2.446 1.372-2.446 1.372l-1-20.418 2.285-2.298s3.062-3.701 3.304-7.328c-1.329 1.13-2.82 1.453-2.82 1.453s-.403 5.155-1.608 5.875c-1.21.727-1.242 2.074-1.242 2.074l-.285-6.738 18.598-12.488z' stroke='%23474747' stroke-width='.776' fill='%23474747'/%3e%3cpath d='m560.946 145.278 1.578 32.212' stroke='%23000' stroke-linecap='round' stroke-width='.776' fill='none'/%3e%3cpath d='M541.136 160.66s3.702 2.18 5.074 8.781c12.078-.888 15.867 3.385 15.867 3.385s9.904-4.75 14.5-3.869c1.608-3.378 6.197-7.731 6.197-7.731' stroke='%23000' stroke-width='.828' fill='none'/%3e%3cpath d='m536.081 129.089 24.865 16.27 22.394-15.06s4.67-2.576 4.266-4.427c-.398-1.857-2.012-1.13-2.82-.807-.8.323-23.436 16.35-23.436 16.35l-24.082-15.226s-1.77-.56-2.093.565c-.323 1.13.664 1.77.906 2.335z' stroke='%23000' stroke-width='.828' fill='%23b4b6b9'/%3e%3cpath stroke-linejoin='round' d='M580.551 124.866s-6.365-2.701-6.365-.36c0 2.335.18 2.577 1.205 4.08 1.018 1.496-.783 2.459-.783 2.459s-.242-.658-.602-1.683c-.36-1.018-3.782-1.739-4.08-2.937-.298-1.205.72-3.124-1.323-3.36-2.037-.242-4.018.839-4.44 3.18s-3.061 7.8-3.061 7.8l.36-12.42c4.483.316 12.805 1.297 19.207 2.036-1.919-.298.72.125.665.783-.18.54-.845.596-.783.422zm-22.511-3.124c-1.136 0-6.843.659-8.284 1.503-1.44.839 2.341 2.155 1.863 3.298s-.54 3.421-2.341 2.943c-1.801-.484-7.862-3.483-8.042-4.502s-1.441-1.08-1.441-1.08 17.407-2.342 18.245-2.162z' stroke='%23474747' stroke-width='.776' fill='%23474747'/%3e%3cpath d='m560.785 120.314-.044 15.264M549.03 102.33s-6.975 11.32-7.111 11.669' stroke='%23000' stroke-width='.828' fill='none'/%3e%3cpath d='M161.8 129.74s4.89 6.67 4.33 8.56c2 1.56 4.23 7.79 4.23 7.79' stroke='%23000' stroke-width='1pt' fill='url(%23f)' transform='matrix(.621 0 0 .621 461.4 21.482)'/%3e%3cpath d='M573.615 101.361s-6.558 9.253-6.353 9.942' stroke='%23000' stroke-width='.828' fill='none'/%3e%3cpath d='M540.013 57.364c-.149.517-.985.717-1.867.447s-1.478-.909-1.33-1.426c.15-.518.985-.718 1.868-.448s1.477.91 1.329 1.427zm2.651-.183c.148.517.984.718 1.867.447s1.477-.908 1.329-1.426c-.149-.517-.985-.718-1.867-.447s-1.478.909-1.33 1.426z'/%3e%3cpath stroke-linejoin='round' d='M619.438 248.849s-2.434.46-2.353.683c.074.23-7.073.46-7.223.23-.155-.23-1.068 1.217-1.068 1.217l1.143-.683s1.745 1.82 2.28 1.67-.23.683-.075.838c.149.15.683-.304.683-.304l11.811-.199-5.198-3.452z' stroke='%23000' stroke-width='.828' fill='%23ff7000'/%3e%3cpath stroke-linejoin='round' d='m623.841 252.525-9.65.28s-2.428 2.204-2.584 2.732c-.149.534 1.596.683 1.596.683l.535 1.826 1.217-.454s8.203 1.218 15.736-.46c3.8-1.328 4.465-2.924 1.8-3.893-2.657-.969-8.575-.677-8.65-.714z' stroke='%23000' stroke-width='.776' fill='%23ff7000'/%3e%3cpath d='m208.37 403.93 27.97-1.25-5.21-4.42 75.65-3.05-2.61-6.01-84.7 3.4 10.19 4.76-22.88.68.68 2.38-6-.23s6.68 2.6 6.91 3.74z' stroke='%23000' stroke-width='1pt' fill='url(%23g)' transform='matrix(.621 0 0 .621 461.4 21.482)'/%3e%3cpath d='M239.73 249.42c-2.23-1.11-12-2.44-22.89 4.67l.45 25.11s15.99-8.67 23.77-6.67c-.45-7.78-.45-17.77-1.33-23.11z' stroke='%23000' stroke-width='1pt' fill='url(%23h)' transform='matrix(.621 0 0 .621 461.4 21.482)'/%3e%3cpath d='m514.231 223.71-40.959 40.664m59.214-40.365-33.244 43.78m31.76-55.207-44.374 53.723m-1.336-.745 4.304-5.043m49.864-20.927-17.216 23.747m-.742 3.117.446 9.048m25.374-27.603-18.252 22.859m14.991-1.783 7.421-12.171m-4.602-2.372-8.904 10.09m6.234-19.586-6.085 7.415m-1.783-18.251s-18.55 27.156-18.253 29.386m16.322-32.944c-.44.292-16.025 20.921-16.025 20.921m-.89 6.527-2.82 3.415m-3.562 5.198-4.303 5.639' stroke-width='.828' stroke='%23000' fill='none'/%3e%3cpath d='M512.205 161.207s-1.257 3.95 0 5.924c1.256 1.975 9.155 17.953 9.155 17.953s5.388-6.644 7.363-6.824c1.974-.174 1.074 17.239 1.074 17.239s-3.23 3.049-5.204 2.869c-1.976-.18 4.844 6.824 4.664 12.749s-8.974 35.366-12.205 35.9c-3.232.54 1.436-5.384 1.256-6.999s-1.077-.54-1.795-2.335 1.078-4.49.718-6.284c-.359-1.795-1.975-1.435-2.154-2.69-.18-1.26 1.077-1.614.898-3.055-.18-1.434-2.155-1.074-1.975-2.335.18-1.254.359-.714.18-3.049s-.539 1.615-2.514 1.795-3.59 4.67-3.59 4.67-3.95 5.564-7.9 3.049c2.334 5.03.54 7.185-.358 7.359-.898.18.717 3.95-1.437 4.13s1.616 8.439-.897 9.16c2.692 1.254.538 2.868.538 2.868s-6.222.522-4.847 8.62c-18.311-6.465-27.287-17.593-27.108-28.902.18-11.314 3.77-21.542 12.567-25.312 2.513-9.34 6.822-19.393 6.822-19.393s-.718-4.13-.18-6.819c.54-2.695 3.052-5.384 3.052-5.384s-.36-6.465-.179-9.694c.18-3.235 1.436-4.67 1.615-6.464s-.538-10.955 1.257-12.57 5.206-1.434 7.001-2.508c1.796-1.08 4.13-3.056 6.463-2.876s4.308 1.795 4.308 1.795 8.798 0 9.336 3.41c.538 3.415-1.795 4.67-1.795 4.67s1.257 4.85-4.13 9.333z' stroke='%232b2b2b' stroke-width='.828' fill='%238a9396'/%3e%3cpath d='M504.394 148.77c.282.52-.36 1.413-1.433 1.994s-2.172.63-2.454.11c-.281-.521.36-1.414 1.434-1.995s2.172-.63 2.453-.11z' stroke='%232b2b2b' stroke-width='.828' fill='%23cecfcf'/%3e%3cpath d='M502.904 149.676c0 .329-.299.595-.667.595-.368 0-.667-.266-.667-.595 0-.328.299-.594.667-.594.368 0 .667.266.667.594z'/%3e%3cpath d='M516.03 155.618s2.18 9.737-.427 16.456m1.097-20.716s4.255 5.626 3.706 12.625m-3.294-13.861c.138 0 3.568 3.018 3.43 5.074m-2.606-6.31s2.333 1.646 2.881 3.292' stroke='%232b2b2b' stroke-width='.388' fill='none'/%3e%3cpath d='M516.838 147.924s-8.37 13.587-7.273 22.095' stroke='%23000' stroke-width='.828' fill='none'/%3e%3cpath d='M517.387 147.514s-11.115 6.589-13.173 28.131' stroke='%232b2b2b' stroke-width='.388' fill='none'/%3e%3cpath d='m516.152 151.495-4.391 3.29' stroke='%23000' stroke-width='.828' fill='none'/%3e%3cpath d='M500.097 176.881s6.175-25.66 17.153-29.367' stroke='%232b2b2b' stroke-width='.388' fill='none'/%3e%3cpath d='M521.503 185.525s5.903-7.408 7.275-7.135.957 17.152.957 17.152-4.39 3.291-5.347 3.155c-.963-.137 4.937 7.961 4.8 10.98s-.273 3.017-.273 3.017 0-1.782-1.372-4.664-.553-6.179-9.47-13.45c-2.196-4.528 4.391 2.744 5.762 1.645 1.373-1.093-2.469-10.563-2.332-10.7z' stroke='%232b2b2b' stroke-width='.828' fill='%232b2b2b'/%3e%3cpath d='M511.014 143.794s-2.48.677-2.82 1.69c-.338 1.018-1.803 2.03-2.592 1.688-.79-.335-2.256-1.577-2.256-1.577' stroke='%232b2b2b' stroke-width='.828' fill='none'/%3e%3cpath stroke-linejoin='round' d='M496.919 152.476s-3.721 3.72-1.917 4.173c1.804.447 3.721-2.931 3.721-2.931s0 5.75 1.579 4.844c1.579-.9 6.201-4.167 6.201-4.167s1.579-.118 1.917 0c.339.111 4.285 3.49 6.878 2.254-1.465 3.831-3.157 4.285-3.157 4.285s-2.706 3.496-6.201 2.701c-3.496-.789-4.398-2.254-4.398-2.254s-2.932.23-3.834-1.124c-.902-1.354-1.24-2.143-1.24-2.143s-1.691 1.69-2.143.9c-.45-.788 0-5.414 2.594-6.538z' stroke='%232b2b2b' stroke-width='.776' fill='%232b2b2b'/%3e%3cpath d='M518.005 147.29s-6.878-2.03-9.246 1.354c-2.368 3.378-1.804 5.297-.564 5.633' stroke='%232b2b2b' stroke-width='.828' fill='none'/%3e%3cpath d='M519.066 147.098c0 .81-.58 1.468-1.297 1.468s-1.296-.657-1.296-1.468.58-1.468 1.296-1.468 1.297.657 1.297 1.468z'/%3e%3cpath d='M499.048 164.647s2.805 4.316 6.149 5.502-2.32 2.211-5.664-.05c-2.427-3.29-1.78-5.663-1.78-5.663s.647-.652 1.295.211zm24.002 25.461s-7.875-10.948-10.14-11.544c-2.266-.59 1.725-1.074 4.153 1.242 2.427 2.316-.647-3.776-.647-3.776l6.634 14.078z' stroke='%232b2b2b' stroke-width='.828' fill='%232b2b2b'/%3e%3cpath stroke-linejoin='round' d='M498.293 253.376c3.02-.807 16.18 7.551 19.147 9.656 2.967 2.1 9.171.752 9.171.752s-2.863 1.726-4.64 2.16c-1.78.43 5.286.43 5.286.43s-16.828 4.638-33.926-4.366c-1.565-7.011 3.667-8.576 4.962-8.632z' stroke='%232b2b2b' stroke-width='.776' fill='%232b2b2b'/%3e%3cpath d='M517.548 192.803s-2.211-.428-3.344-1.726c-1.132-1.292-2.75-4.477-4.423-5.825-1.672-1.347-10.032-5.93-13.052-5.608s-3.938-.322-4.316-.701-1.617.161-1.402 1.726c.216 1.565-2.32 5.018-1.402 6.632.917 1.621 5.232 8.198 6.095 8.415.863.217.324 3.832.324 3.832s3.829 3.88 4.8 4.098c.97.217 1.941.92 1.834 1.832-.108.92-4.208 5.937-4.208 5.937s-4.422 2.316-4.476 3.614c-.054 1.292 1.078 3.987 4.585 4.85 3.505.863 12.944.162 13.43-.646.485-.807 1.24-5.663.916-6.148s-2.643-1.943-3.83-1.726c-1.185.217-2.264 1.186-2.157 1.403.108.218-1.671 1.13-1.671.267s3.505-4.744 3.829-4.421c.324.323 5.286.807 6.203 3.291.917 2.478.917 4.26 3.505 3.993 2.59-.273 6.202-2.645 6.525-7.607s-2.91-8.309-3.72-8.793-3.506-2.106-3.721-2.857c-.216-.758-.755-3.235-.324-3.832z' stroke='%232b2b2b' stroke-width='.828' fill='%232b2b2b'/%3e%3cpath d='M470.893 214.706s8.36-2.16 10.517-2.105c2.158.05 10.302 3.825 12.676 6.148 2.373 2.316 7.227 7.818 10.41 7.334 3.182-.485 4.099-1.13 4.099-1.13l-1.241 2.372s-2.589.702-3.883.379c-1.295-.323-3.83-1.137-6.365-3.615-2.535-2.484-10.356-9.172-16.99-8.687-6.634.49-10.464 7.017-10.464 7.017s.054-3.186.324-3.887-1.402 1.509-1.402 1.509l2.319-5.335z' stroke='%232b2b2b' stroke-width='.828' fill='%232b2b2b'/%3e%3cpath d='M501.69 221.177c.055.05 2.104.59 5.556.59s5.286-1.51 5.286-1.51l-.216-1.347.54-1.888s2.642 2.696 2.588 3.236-1.078.758-1.078.758l-.378-1.298-.916 1.136s-5.017 3.987-7.767 3.397c-2.751-.596-5.286-2.372-4.585-2.807.701-.428 1.079-.267.97-.267zm-12.19 7.067s-3.02-.056-4.368.59-1.834 1.46-2.75 1.347c-.917-.105-1.619-1.291-1.35-1.776.378-.757 2.158-1.726 5.556-1.459 3.398.273 2.913 1.298 2.913 1.298zm10.573 8.197c0-.161-.216-4.421-1.888-6.148-1.672-1.726-3.722-1.726-4.639-1.515-.917.217 3.398 2.105 3.83 3.347s1.834 4.695 1.456 5.558c-.378.857-1.079-2.428-3.722-3.347s-6.31-.429-5.555.758 3.722.105 5.232 2.639 2.643 5.235 2.643 5.235l.485-1.838 1.349-.373.161-3.509.648-.807z' stroke='%232b2b2b' stroke-width='.828' fill='%232b2b2b'/%3e%3cpath stroke-linejoin='round' d='m497.915 250.246-2.75-5.502s-.864-3.503-3.183-4.477c-2.319-.97-5.394-.808-5.448.378s4.963 2.695 5.286 3.348c.324.645.162 1.726-.27 1.776-.43.055-2.642-.808-3.775-.54-1.133.273-1.78 1.726-3.452 1.297-1.672-.435-3.075-5.769-2.427-6.31.647-.54-1.24.97-1.618-.434s.54-5.769-.108-6.31c-.647-.54-3.775-2.427-3.83-2.806-.053-.373.162-21.462 17.8-3.987-7.552-8.955-10.518-7.986-11.92-8.036-1.025 0-7.875.59-9.601 9.328-1.726 8.737-3.776 3.291-3.776 3.291s-.377 3.776 1.457 4.856c1.833 1.075-.864 4.204-.864 4.204s-3.29-8.035-2.804-11.544c-.647 2.807-.593 9.762 3.56 17.37 4.854 5.123 9.439 9.873 21.628 15.208 6.419-9.812 6.095-10.998 6.095-11.11z' stroke='%232b2b2b' stroke-width='.776' fill='%232b2b2b'/%3e%3cpath stroke-linejoin='round' d='M486.373 250.302s3.56.428 4.53 2.267c.971 1.831 1.403 4.638 1.403 4.638.593-1.186.862-2.21 2.05-3.074s2.05-.975 1.995-1.62-3.776-4.583-5.663-4.8-5.178 2.049-5.178 2.049-.593.863.863.54z' stroke='%232b2b2b' stroke-width='.776' fill='%238a9396'/%3e%3cg stroke-width='1.25' stroke-linecap='round' fill='none'%3e%3cpath d='M494.504 259.58s9.225 4.204 24.42 4.477' stroke='%238a9396' stroke-width='.776'/%3e%3cpath d='M525.3 216.755s-.788 7.744-6.744 23.02' stroke='%232b2b2b' stroke-width='.776'/%3e%3cpath d='M524.115 221.519s-1.788 5.557-6.75 9.724' stroke='%232b2b2b' stroke-linecap='butt' stroke-width='.828'/%3e%3c/g%3e%3c/svg%3e\"},4523:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 960 600'%3e%3cdefs%3e%3cradialGradient id='a'%3e%3cstop stop-color='%23f9f0aa' offset='.22'/%3e%3cstop stop-color='%23b07e09' offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='d' xlink:href='%23a' gradientUnits='userSpaceOnUse' cx='447.42' cy='308.27' r='16.53'/%3e%3cradialGradient id='e' xlink:href='%23a' gradientUnits='userSpaceOnUse' cx='451.56' cy='313' r='10.91'/%3e%3cradialGradient id='f' xlink:href='%23a' gradientUnits='userSpaceOnUse' cx='454.11' cy='308.64' r='9.78'/%3e%3cradialGradient id='g' xlink:href='%23a' gradientUnits='userSpaceOnUse' cx='458.39' cy='307.06' r='17.35'/%3e%3cradialGradient id='j' xlink:href='%23a' gradientUnits='userSpaceOnUse' cx='445.98' cy='252.36' r='13.02'/%3e%3cradialGradient id='m' gradientUnits='userSpaceOnUse' cx='477.86' cy='215.27' r='.34'%3e%3cstop stop-color='%23a50a0a' offset='.26'/%3e%3cstop stop-color='%234c0505' offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='n'%3e%3cstop stop-color='%23fff' offset='0'/%3e%3cstop stop-color='%23fff' stop-opacity='0' offset='1'/%3e%3c/radialGradient%3e%3clinearGradient id='h' gradientUnits='userSpaceOnUse' x1='473.91' y1='259.17' x2='472.36' y2='231.96'%3e%3cstop stop-color='%23b07e09' stop-opacity='0' offset='.22'/%3e%3cstop stop-color='%23b07e09' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient id='i' gradientUnits='userSpaceOnUse' x1='483.13' y1='296.66' x2='485.49' y2='326.58'%3e%3cstop stop-color='%23b07e09' stop-opacity='0' offset='.22'/%3e%3cstop stop-color='%23b07e09' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient id='k' gradientUnits='userSpaceOnUse' x1='451.54' y1='249.52' x2='455.37' y2='240.58'%3e%3cstop stop-color='%23f9f0aa' offset='.22'/%3e%3cstop stop-color='%23b07e09' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient id='l' gradientUnits='userSpaceOnUse' x1='473.31' y1='237.25' x2='475.93' y2='270.45'%3e%3cstop stop-color='%23f9f0aa' offset='.22'/%3e%3cstop stop-color='%23b07e09' offset='1'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath fill='%234997d0' d='M0 0h960v600H0z'/%3e%3cpath fill='%23fff' d='M320 0h320v600H320z'/%3e%3cg stroke='%2324420e'%3e%3cpath d='M452.12 377.48c2.67-.4 4.2-1.14 6.04-1.79m2.21-4.05a13.03 13.03 0 0 1 3 4.64m-8.12-5.08a15.4 15.4 0 0 1 3.14 4.15m-49.58-136.58c-1.04 1.6-3.1 2.73-4.78 3.43m-.34-.2c.04-1.37-.24-3.03.05-4.4m-1.98 5.03c.11.37.44 1.4.68 2.03m2.02.92c-.38.08-1.52.26-2.03.34m-3.95-.88c-.01 2.52.29 5.55.53 7.82m-1.79-.96c.47.76.95 1.5 1.54 1.88m-4.58 6.47c.49.94.94 2.12 1.3 3.96m3.72-4.63c-.41.2-1.21.93-1.93 1.54m1.59 4.4c-.98.87-2.2 1.5-3.43 2.12m-3.81 40.41a15.98 15.98 0 0 0 3.96 4.68m.58 1.69a8 8 0 0 1-2.95-.97m4.4 8.41 1.69.97m-.44 3.47c1.25.82 2.51 2.28 3.77 3.86m-1.45 2.85c1.39.3 2.5.64 3.23 1.06m-1.06 2.42 2.12.07m1.21-5.38c-.1 1.53-.25 2.97-.48 4.25m1.01 1.59.43-1.64m4.69 5.99-.15 3.24m39.21 27.9-1.16 1.6m-2.41-3.92-.68-1.83' fill='none' stroke-width='.44'/%3e%3cg stroke-width='.16'%3e%3cpath fill='%23406325' d='M486.11 384.93c-.8-1.26-2.1-2.03-3.28-2.66-7.72-4.05-15.4-5.84-24.11-7.24-2.02-.34-4.03-2.22-6.09-3.19-4.96-2.36-10.49-3.28-15.31-5.7a7.78 7.78 0 0 1-2.1-1.54c-1.93-2.22-5.4-2.9-7.55-4.97-8.33-7.87-17.18-15.12-21.77-25.55-5.57-12.7-12.5-25.79-11.57-40.23.61-9.12-.75-18.35 1.5-27.04 3.33-12.9 7.59-25.64 15.4-36.31l-1.3.82c-7.87 10.67-12.13 23.42-15.46 36.31-2.24 8.7-.89 17.92-1.5 27.04-.93 14.44 6 27.53 11.57 40.28 4.59 10.38 13.49 17.62 21.78 25.55 2.15 2.02 5.62 2.7 7.53 4.97.57.63 1.83 1.4 2.11 1.54 4.83 2.42 10.35 3.34 15.31 5.65 2.06 1.02 4.08 2.85 6.1 3.2 8.7 1.4 16.38 3.23 24.1 7.23a8.02 8.02 0 0 1 3.28 2.66l1.36-.82'/%3e%3cg fill='%2367923d'%3e%3cpath d='M406.34 331.62c-2.8-6.3-1.36-21.6-.2-23.53 6.63 13 4.43 23.74.2 23.53zm45.86 45.39c-7.1.36-20.61 9.3-21.86 11.4 15.08.11 24.02-7.32 21.86-11.4zm7.46-4.29c-6.85-5.45-14.19-23.66-14.03-26.5 15.1 10.83 18.93 24.28 14.03 26.5z'/%3e%3cpath d='M454.61 372.78c-6.95-4.24-15.79-20.11-15.94-22.75 15.2 8.19 20.2 20.12 15.94 22.75zM439.05 366c.98-7.82-5.67-24.24-7.59-25.98-2.95 16.47 3 27.57 7.59 25.98zm-27.31-24.28c-2.3-5.65-.61-19.32.47-21 5.52 11.7 3.26 21.22-.47 21zm-13.71-76.83c3.59-6.65 18.38-15.71 20.99-15.93-6.77 14.57-18.04 19.83-20.99 15.93z'/%3e%3cpath d='M398.74 259.33c2.15-7.28 14.87-19.27 17.36-20.03-3.73 15.67-13.68 23.17-17.36 20.03zm27.81 99.15c-5-6.18-8.01-23.86-7.29-26.36 11.27 12.51 12.03 25.23 7.29 26.36zm-28.65-36.46c-6.9 1.09-21.36-4.64-22.92-6.34 14.53-3.15 24.29 2.07 22.92 6.34zm-2.22-9.68c.82-5.58 8.67-15.8 10.36-16.66-1.1 11.96-7.45 18.6-10.36 16.66zm51.33 58.54c-8.48.43-24.63 11.1-26.13 13.62 18.03.14 28.7-8.74 26.13-13.62z'/%3e%3c/g%3e%3cg fill='%23406325'%3e%3cpath d='M406.41 331.47c4.23.21 6.4-10.4-.27-23.38 1.21 12.32 1.2 22.31.27 23.38zm11.18 19.99c-4.47-5.47-19.38-11.33-21.71-11.14 8.88 12.08 19.88 15.1 21.71 11.14zm-24.42-52.98c-1.15-8.04-12.33-22.71-14.74-23.97 1.51 17.18 10.55 26.7 14.74 23.97zm8.39 34.29c-5-3.68-18.97-5.34-20.94-4.72 10.14 8.3 20.21 8.46 20.94 4.72zm-9.36-24.83c-2.89-5.69-14.81-13.48-16.9-13.7 5.53 12.39 14.57 16.94 16.9 13.7zm2.73-47.54c.9-7.57-5.53-23.45-7.34-25.16-2.87 15.93 2.91 26.67 7.34 25.16zm4.47-14.92c2.66-6.5.76-22.43-.52-24.42-6.4 13.51-3.83 24.65.52 24.42z'/%3e%3cpath d='M404.42 237.83c3.14-4.77 4.16-17.68 3.48-19.47-7.23 9.71-6.95 18.94-3.48 19.47zm5.95-6.14c4.4-3.48 9.22-15.5 9.08-17.43-9.74 6.95-12.22 15.84-9.08 17.43zm-16.05 43.2c.1.87-.98-8.18-10.05-18.31.4 14.81 6.25 20.42 10.05 18.31zm32.56 85.78c-6.18-4.56-23.39-6.73-25.77-5.93 12.56 10.36 24.88 10.55 25.77 5.93zm12.07 5.24c-4.54 1.6-10.44-9.42-7.54-25.88 2.81 13.95 6.18 25.06 7.54 25.88zm13.3 11.15c2.12 4.08-6.7 11.44-21.79 11.31 11.96-4.89 21.24-9.86 21.79-11.31zm7.39-4.47c4.86-2.25 1.1-15.54-14-26.37 8.59 13.21 14.45 24.61 14 26.37z'/%3e%3cpath d='M454.57 372.67c4.28-2.67-.69-14.44-15.9-22.64 9.41 11.18 16.1 20.97 15.9 22.64zm-42.79-30.99c3.73.22 5.96-9.26.48-20.92.72 10.97.42 19.97-.48 20.92zm-13.76-76.74c2.95 3.9 14.05-1.3 20.84-15.92-10.17 9.34-19.23 16.06-20.84 15.92z'/%3e%3cpath d='M398.86 259.33c3.68 3.14 13.54-4.3 17.27-19.98-8.1 11.25-15.64 19.74-17.27 19.98zm27.72 99.09c4.74-1.12 3.95-13.78-7.25-26.27 5 13.41 8.01 24.75 7.25 26.27zm-28.87-36.46c1.4-4.24-8.3-9.37-22.8-6.26 12.26 2.2 22.04 5.04 22.8 6.26zm-1.94-9.61c2.9 1.89 9.18-4.66 10.29-16.62-4.68 9.18-9.17 16.27-10.29 16.62zm51.2 58.68c2.58 4.88-7.96 13.67-26.04 13.52 14.29-5.84 25.38-11.78 26.04-13.52z'/%3e%3cpath d='M399.36 326.3c-2.66-6.26-14.8-15.46-16.98-15.84 4.94 13.64 14.25 19.15 16.98 15.84z'/%3e%3c/g%3e%3cg fill='%2367923d'%3e%3cpath d='M392.42 273.92c4.07-4.67 17.47-9.13 19.6-8.86-8.04 10.4-17.94 12.51-19.6 8.86zm25.07 77.59c-1.8 3.92-12.7.92-21.65-11.15 10.89 6.83 20.25 11.5 21.65 11.15zm-24.39-53.05c-4.2 2.73-13.13-6.74-14.69-23.88 6.63 13.2 13.04 23.38 14.69 23.88zm8.42 34.34c-.77 3.73-10.69 3.59-20.86-4.72 10.72 3.4 19.73 5.34 20.86 4.72zm-9.45-24.95c-2.33 3.24-11.29-1.27-16.8-13.66 8.19 7.97 15.48 13.75 16.8 13.66zm2.76-47.55c-4.43 1.56-10.16-9.08-7.3-25 2.67 13.48 5.94 24.17 7.3 25zm4.47-14.86c-4.3.23-6.87-10.81-.47-24.32-.82 12.8-.5 23.23.47 24.32zm5.04-7.67c-3.47-.53-3.72-9.66 3.52-19.37-2.74 9.98-4.15 18.37-3.52 19.37zm5.98-6.08c-3.14-1.64-.7-10.43 9.04-17.34-5.53 8.65-9.32 16.18-9.04 17.34z'/%3e%3cpath d='M394.25 274.9c-3.8 2.1-9.58-3.5-9.99-18.32 5.1 11.68 8.6 17.8 9.99 18.32zm32.57 85.8c-.89 4.63-13.14 4.4-25.68-5.9 13.17 4.28 24.25 6.7 25.68 5.9zm-8.17-9.48c-4.02-4.34-7.16-17.35-6.75-19.24 9.01 8.74 10.22 18.16 6.75 19.24zm-16.88-24.99c-3.57-5.79-3.88-20.9-2.92-22.96 8.26 11.81 7.25 22.59 2.92 22.96zm-2.63.09c-2.74 3.3-11.93-2.16-16.87-15.83 8.13 9.1 15.47 15.8 16.87 15.83z'/%3e%3c/g%3e%3cg fill='%23406325'%3e%3cpath d='M392.37 274c1.62 3.62 11.45 1.53 19.5-8.88-11.98 6.8-16.72 9.74-19.5 8.88zm9.34 52.07c4.33-.37 5.33-11.04-2.93-22.85 2.66 11.86 3.79 21.68 2.93 22.85zm16.96 25.11c3.47-1.07 2.25-10.45-6.71-19.18 4.4 9.73 7.2 18.01 6.71 19.18z'/%3e%3cpath d='M394.23 291.77c2.06-8.39-1.7-22.6-4.3-25.56-4.72 15.43-.24 26.6 4.3 25.56z'/%3e%3c/g%3e%3cpath fill='%2367923d' d='M393.93 293.77c-5.9 1.34-8.64-12.03-4.08-27.08 1.07 13.55 2.83 26.15 4.08 27.08z'/%3e%3cpath fill='%2367923d' d='M392.73 293.72c-.56-7.53 6.93-23.09 8.91-24.7 2.02 15.8-4.46 26.3-8.91 24.7z'/%3e%3cpath fill='%23406325' d='M392.84 293.61c4.41 1.64 10.85-8.76 8.83-24.56-3.5 13.26-7.44 23.76-8.83 24.56z'/%3e%3cpath fill='%2367923d' d='M394.13 303.26c0-7.6 8.47-22.23 10.56-23.62.84 16.16-6.33 25.83-10.56 23.62z'/%3e%3cpath fill='%23406325' d='M394.21 303.41c4.23 2.21 11.3-7.36 10.47-23.52-4.4 12.85-9.05 22.9-10.47 23.52z'/%3e%3c/g%3e%3cg fill='%23ba1f3e' stroke='%23511124' stroke-width='.22'%3e%3ccircle stroke-width='.19' cx='396.83' cy='251.27' r='1.08'/%3e%3ccircle stroke-width='.19' cx='405.2' cy='245.07' r='1.08'/%3e%3ccircle stroke-width='.19' cx='401.56' cy='241.71' r='1.09'/%3e%3ccircle cx='392.5' cy='313.12' r='1.28'/%3e%3ccircle cx='395.03' cy='297.13' r='1.28'/%3e%3ccircle cx='408.21' cy='334.46' r='1.28'/%3e%3ccircle cx='402.39' cy='336.43' r='1.28'/%3e%3ccircle cx='446.7' cy='367.63' r='1.28'/%3e%3ccircle cx='449.61' cy='374.71' r='1.28'/%3e%3c/g%3e%3c/g%3e%3cg stroke='%2324420e'%3e%3cpath d='M561.15 258.97c.62.62 1.17.8 2.3 1.9m-6.63-18.95c-.04-1.37-.63-3.6-.92-4.97m3.45 2.98c.06 1.95-.22 3.8-1.06 5.5m-4.16-.53c1.75 1.58 3.5 3.08 5.26 3.9m3.82 1.22a18.7 18.7 0 0 1-.68 5.94m.32 1.51 1.31-2.26m-1.86 12.22c1.4.3 2.81 1.95 3.5 3.48m.48-1.29 1.64-2.19m1.71 30.73a23.98 23.98 0 0 1-2.46 3.48m-3.96-.07c.79 1.46 1.56 2.95 2.6 4.03m2.45 5.87a13.19 13.19 0 0 1-4.44 4.03m.14 4.5c-1.1.75-2.43 2.95-3.69 4.71m8.44-20.18-2.12.87m-1.4-7.49 1.26 1.11m-9.3 37.39c-.84-.1-1.46 0-2.12.07m-2-1.93.61 1.64m-7.71 5.12c-.26 1.87-.07 3.73.2 5.6m4.31-9.02 1.02 2.25m3.83-.2-2.53.41m-30.85 25.27-.92 1.74m11.9-3.93c-1.5.19-2.78-.04-4.1-.2m-5.46 5.94a27.28 27.28 0 0 0-2.94-.96m-14.74 2.66c-.9.77-1.99 2.44-3.07 4.1m-.55-4.57c-2.43 1.25-3.18 3.71-4.44 5.8m2.8 2.87a52.47 52.47 0 0 1-5.33-2.05m16.77-.68c-2.32-1.2-4.75-1.09-7.14-1.47m10.76-.34c-3.63-.7-7.01-.61-10.28-.14m7.78-2.6-1.4-.58m-5.53 5.5-2.32-1.3m57.94-49.19c-1.26.82-2.51 2.28-3.77 3.86m1.83-79.62-2.15-.72' fill='none' stroke-width='.44'/%3e%3cg stroke-width='.16'%3e%3cpath fill='%23406325' d='M474.39 384.85c.8-1.26 2.1-2.03 3.28-2.66 7.72-4.05 15.4-5.84 24.11-7.24 2.02-.34 4.03-2.22 6.1-3.19 4.95-2.36 10.48-3.28 15.3-5.7a7.78 7.78 0 0 0 2.11-1.54c1.92-2.22 5.38-2.9 7.54-4.97 8.33-7.87 17.18-15.12 21.77-25.55 5.57-12.7 12.5-25.79 11.57-40.22-.61-9.13.75-18.35-1.5-27.05-3.33-12.9-7.59-25.64-15.4-36.31l1.3.82c7.87 10.67 12.13 23.42 15.46 36.31 2.24 8.7.89 17.92 1.5 27.05.93 14.43-6 27.52-11.57 40.27-4.6 10.38-13.49 17.63-21.78 25.55-2.15 2.02-5.62 2.7-7.54 4.97a9.98 9.98 0 0 1-2.1 1.54c-4.83 2.42-10.35 3.34-15.31 5.66-2.06 1-4.08 2.84-6.1 3.18-8.7 1.4-16.38 3.24-24.1 7.25a8.02 8.02 0 0 0-3.28 2.65l-1.36-.82'/%3e%3cg fill='%23406325'%3e%3cpath d='M553.65 334.6c2.74-7.42 0-24.84-1.49-26.95-6.65 15.37-3.34 27.5 1.49 26.95z'/%3e%3cpath d='M546.54 341.64c2.3-5.65.61-19.32-.47-21-5.52 11.7-3.26 21.22.47 21zm16.81-74.15c-3.3-6.1-16.87-14.42-19.26-14.62 6.21 13.37 16.55 18.2 19.26 14.62z'/%3e%3cpath d='M561.76 259.47c-1.8-6.07-12.4-16.05-14.47-16.7 3.1 13.07 11.4 19.32 14.47 16.7zm4.74 14.96c-3.54-4.05-15.16-7.93-17.01-7.7 6.98 9.04 15.57 10.87 17.01 7.7zm-2.8 46.33c6.13.97 18.96-4.12 20.34-5.63-12.9-2.8-21.55 1.84-20.34 5.63zm-.15-5.64c-.04-5.64-6.4-16.86-7.96-17.93-.55 12 4.8 19.45 7.96 17.93z'/%3e%3cpath d='M563.96 301.44c0-7.6-8.47-22.23-10.56-23.62-.84 16.16 6.33 25.83 10.56 23.62zm-52.89 75.27c4.48 5.5 19.65 11.13 22.09 10.9-8.8-12.23-20.07-15.05-22.09-10.9z'/%3e%3c/g%3e%3cg fill='%2367923d'%3e%3cpath d='M553.56 334.43c-4.82.55-8.09-11.44-1.4-26.79-.49 14.2.24 25.63 1.4 26.79zm-53.37 43.66c7.1.36 20.61 9.3 21.86 11.4-15.08.11-24.02-7.32-21.86-11.4zm0-7.94c2.1-7.97 15-21.21 17.51-22.15-3.6 17.13-13.74 25.53-17.51 22.15zm21.27-4.23c-.98-7.82 5.67-24.24 7.58-25.98 2.96 16.47-3 27.58-7.58 25.98zm21.46-14.54c4.47-5.47 19.38-11.33 21.71-11.14-8.88 12.08-19.88 15.1-21.71 11.14zm25.79-53.26c.9-6.33 9.71-17.88 11.6-18.87-1.19 13.52-8.3 21.02-11.6 18.87z'/%3e%3cpath d='M557.02 336.18c5.82-4.29 22.1-6.23 24.4-5.5-11.81 9.67-23.55 9.85-24.4 5.5zm10.27-24.52c3.03-5.98 15.57-14.17 17.75-14.4-5.8 13.02-15.3 17.8-17.75 14.4zm-1.48-45.56c-.1-7.63 7.98-22.73 9.97-24.24 1.16 16.14-5.73 26.2-9.97 24.24zm-6.93-25.92c-2.32-5.28-1.1-18.41-.1-20.07 5.56 10.96 3.68 20.17.1 20.07zm-4.23-2.18c-5.27-4.68-10.64-19.76-10.41-22.1 11.75 9.26 14.39 20.36 10.41 22.1z'/%3e%3cpath d='M566.28 272.54c-.32.82 2.94-7.7 14.22-15.3-4.01 14.26-11.04 18.27-14.22 15.3zm-34.1 89.9c7-5.17 26.53-7.63 29.23-6.72-14.25 11.74-28.22 11.97-29.23 6.72zm14.33-20.84c-3.73.22-5.96-9.26-.48-20.92-.72 10.97-.42 19.97.48 20.92zm16.85-74.07c-2.7 3.58-12.9-1.2-19.12-14.61 9.33 8.57 17.64 14.74 19.12 14.61zm-1.7-8.06c-3.07 2.62-11.29-3.58-14.4-16.65 6.76 9.37 13.05 16.45 14.4 16.65zm4.89 15.03c-1.4 3.15-9.94 1.33-16.92-7.7 10.39 5.89 14.5 8.45 16.92 7.7zm-2.69 46.21c-1.25-3.76 7.36-8.32 20.24-5.56-10.88 1.95-19.57 4.48-20.24 5.56zm-.4-5.6c-3.14 1.47-8.45-5.88-7.89-17.88 3.36 9.74 6.83 17.38 7.89 17.88z'/%3e%3cpath d='M563.88 301.59c-4.23 2.2-11.3-7.36-10.47-23.52 4.4 12.85 9.05 22.9 10.47 23.52zm-52.69 75.07c2.02-4.15 13.15-1.38 21.98 10.89-11-6.75-20.49-11.3-21.98-10.89z'/%3e%3c/g%3e%3cg fill='%23406325'%3e%3cpath d='M521.55 365.83c4.54 1.6 10.44-9.42 7.54-25.88-2.81 13.95-6.18 25.06-7.54 25.88z'/%3e%3cpath d='M531.83 360.59c4.34-6.65 5.55-24.55 4.58-26.97-9.94 13.6-9.41 26.33-4.58 26.97zm-31.69 17.54c-2.12 4.08 6.7 11.44 21.79 11.31-11.95-4.88-21.24-9.86-21.79-11.31zm.16-8.05c3.79 3.34 13.8-4.95 17.4-22.08-8.12 12.42-15.71 21.8-17.4 22.08zm42.71-18.65c1.8 3.92 12.7.92 21.65-11.15-10.89 6.83-20.25 11.51-21.65 11.15zm25.75-53.33c3.3 2.15 10.34-5.3 11.56-18.8-5.21 10.4-10.26 18.4-11.56 18.8zm-11.69 38.11c.9 4.35 12.45 4.18 24.31-5.5-12.5 3.97-23 6.22-24.31 5.5zm10.36-24.64c2.45 3.4 11.87-1.33 17.66-14.35-8.6 8.37-16.28 14.44-17.66 14.35zm-1.51-45.56c4.24 2.02 11.06-7.95 9.9-24.1-4.08 13.14-8.46 23.42-9.9 24.1zm-6.96-25.87c3.54.1 5.41-9.03-.13-20 .95 10.5.9 19.08.13 20zm-4.23-2.24c3.97-1.74 1.33-12.71-10.42-21.97 6.47 11.02 10.85 20.57 10.42 21.97zm11.61 34.67c3.17 2.97 10.14-1.06 14.15-15.33-7.8 10.08-12.68 15.17-14.15 15.33zm-34.09 89.91c1 5.25 14.91 5 29.13-6.69-14.94 4.85-27.5 7.6-29.13 6.69z'/%3e%3cpath d='M539.14 354.75c3.27-4.93 4.27-18.27 3.56-20.08-7.48 10.08-7.16 19.57-3.56 20.08zm19.6-28.61c3.57-5.79 3.88-20.9 2.92-22.96-8.26 11.81-7.25 22.59-2.92 22.96z'/%3e%3c/g%3e%3cpath d='M531.79 360.54c-4.83-.64-5.33-13.31 4.55-26.87-3.62 13.85-5.46 25.44-4.55 26.87zm35.16-68.33c-.94-7.76 3.98-20.14 6.63-22.52 2.58 14.38-2.66 23.95-6.63 22.52zm-27.84 62.49c-3.6-.5-3.9-9.95 3.54-20-2.78 10.3-4.21 18.93-3.54 20zm23.36-104.24c-2.17-5.88.03-20.04 1.24-21.77 5.28 12.25 2.63 22.11-1.24 21.77zm-58.08 120.15c2.47-8.1 16.2-21.08 18.8-21.91-4.33 17.42-15.06 25.52-18.8 21.91zm54.53-41.59c2.66-6.26 14.8-15.46 16.98-15.84-4.94 13.64-14.25 19.14-16.98 15.84zm-.12-3.03c-4.33-.37-5.33-11.04 2.93-22.85-2.66 11.86-3.79 21.68-2.93 22.85z' fill='%2367923d'/%3e%3cpath fill='%23406325' d='M567 294.04c5.16 1.84 9.08-9.89 6.6-23.91-2.43 12.06-5.38 23.2-6.6 23.91z'/%3e%3cpath fill='%23406325' d='M567.77 293.64c.56-7.53-6.93-23.09-8.92-24.7-2.01 15.8 4.47 26.3 8.92 24.7zm-5.22-43.22c3.83.34 6.47-9.43 1.19-21.69.33 11.45-.29 20.75-1.19 21.69zM504.5 370.53c3.79 3.62 14.37-4.42 18.7-21.84-8.84 12.35-16.96 21.61-18.7 21.84zm54.64-41.49c2.74 3.3 11.93-2.16 16.87-15.83-8.13 9.1-15.47 15.8-16.87 15.83z'/%3e%3cpath fill='%2367923d' d='M567.66 293.53c-4.41 1.64-10.85-8.76-8.83-24.56 3.5 13.26 7.44 23.76 8.83 24.56z'/%3e%3c/g%3e%3cg fill='%23ba1f3e' stroke='%23511124' stroke-width='.22'%3e%3ccircle cx='564.63' cy='254.9' r='1.08'/%3e%3ccircle cx='568.41' cy='266.82' r='1.08'/%3e%3ccircle cx='569.76' cy='304.3' r='1.28'/%3e%3ccircle cx='564.65' cy='297.29' r='1.28'/%3e%3ccircle cx='549.91' cy='337.17' r='1.28'/%3e%3ccircle cx='556.2' cy='339.9' r='1.28'/%3e%3ccircle cx='513.8' cy='372.26' r='1.28'/%3e%3ccircle cx='506.8' cy='377.29' r='1.28'/%3e%3ccircle cx='557.05' cy='249.25' r='1.08'/%3e%3c/g%3e%3c/g%3e%3cg id='b' fill='%238c959d' stroke='%23485654' stroke-width='.11'%3e%3cpath d='M434.25 336.27c-.13 1.07.84 2.34 2.13 2.07.38-.08.62-.58.13-.49-.43.1-.88-.07-1.2-.37a1.68 1.68 0 0 1-.4-1.92l-.66.7v.01z'/%3e%3cpath stroke='none' d='M437.24 338.34c-1.02 1.17-2.57 1.68-3.43.83-.57-.56-.77-1.2-.47-1.9l-1.12 1.22c.05.1.72 1.31 1.71 1.76 1.22.55 2.97-.28 4.02-1.56.74-.91 1.56-2.43.97-3.61a3.98 3.98 0 0 0-1.97-1.7l-1.03 1.1c.51-.24 1.15-.13 1.7.31 1.27 1.04.53 2.5-.38 3.55z'/%3e%3cpath fill='%23485654' stroke='none' d='M437.24 338.34a4 4 0 0 1-1.16.96c-.45.23-.96.39-1.47.31-.26-.03-.51-.13-.72-.3-.2-.16-.37-.35-.5-.57a1.61 1.61 0 0 1-.25-.74c-.02-.26.04-.53.14-.77l.12.08-1.11 1.24.01-.1c.28.48.63.94 1.05 1.3a1.99 1.99 0 0 0 1.5.57c.53-.01 1.07-.2 1.56-.47a5.1 5.1 0 0 0 1.3-1.05c.37-.41.69-.88.93-1.38.24-.5.41-1.05.38-1.6a1.83 1.83 0 0 0-.23-.77c-.13-.24-.3-.46-.5-.66-.39-.4-.86-.72-1.37-.93l.1-.02-1.04 1.09-.09-.12c.24-.1.5-.14.76-.11.25.02.5.11.71.24.43.26.8.65.93 1.14.13.5 0 1.01-.21 1.45a5.1 5.1 0 0 1-.84 1.2v.01zm0 0c.31-.38.6-.78.8-1.23.19-.44.3-.94.16-1.4-.13-.46-.5-.83-.9-1.06-.4-.24-.92-.3-1.34-.1l-.09-.12 1.02-1.11.04-.04.05.02a4.17 4.17 0 0 1 1.98 1.66c.15.25.23.55.25.85.05.6-.13 1.17-.38 1.7-.25.52-.58 1-.96 1.44-.4.43-.85.8-1.36 1.08a3.7 3.7 0 0 1-1.67.5 2.2 2.2 0 0 1-1.62-.63 5 5 0 0 1-1.07-1.37l-.03-.05.04-.05 1.13-1.22.12.08c-.1.22-.15.46-.14.7.01.24.1.48.22.68.12.21.29.4.47.56.19.16.42.25.66.3.49.08 1-.06 1.43-.28.45-.22.85-.54 1.19-.91z'/%3e%3cpath fill='%236c301e' stroke='%23351710' stroke-width='.22' stroke-linejoin='round' d='m515.24 249.25-40.14 39.52c-3.05 3.03-37.96 36.37-41.1 39.38-1.1 1.32-4.23 4.86-4.56 5.35-2.13 2.31-4.44 5.33-7.2 8.03-.5.62-1.14.4-1.73.74a23.38 23.38 0 0 0-5.06 4.37l-12.2 13.5c-.8.86-1 1.39-.47 1.88l6.62 8.85c1.23 1.2 2.65 1.83 3.2.81 3.15-5.44 10.96-13.75 13.91-20.33 1.77-3.93 3.98-11.06 5.56-12.78 1.94-2.16 7.17-7.73 11.8-12.7l.94-1 .94-1.02c23.51-23.95 50.72-53.05 70.53-73.56-.78-.78-.29-.31-1.04-1.04z'/%3e%3cpath d='M431.89 328.11c-1.23.04-2.02-.7-2.85-1.4 1.17.35 2.35.8 3.45.34l-.6 1.06z'/%3e%3cpath fill='%23b2b6ba' stroke-width='.22' d='m557.05 220.1-31.8 26.22c-.31.37-.63.27-.93 0l-2.9-2.42.02-.1c0-.17-.04-.33-.09-.47l1.42-1.45c.18-.22.12-.3-.12-.55l-.59-.6c-.22-.17-.41-.03-.64.18L520 242.4c-.74.03-1.33.63-1.35 1.36-19.24 18.73-35.8 35.44-54.94 53.87l-22.57 21.55c-.81 1.05-4.3 2.91-6.6 4.41a5.63 5.63 0 0 0-1.82 1.55l-1.84 5.43c-.58 1.2-2.43 4-2.51 4.2 2.36 2.38 2.24 2.2 3.86 3.72 1.82-2.02 6.7-7.1 11.12-11.85.35-.38.38-.42.83-.97a13.32 13.32 0 0 0-2.6-2.74l-.62-.55c-.17-.16.24-.44.42-.64 26.47-25.58 54.96-53.7 78.28-76.6a1.41 1.41 0 0 0 1.02-.1l2.79 3.22c.65.65 1.2.63 1.73.4l31.86-28.55z'/%3e%3cpath fill='%23485654' stroke='none' d='M430.95 330.39c.2.03.4.05.6.03.2-.02.4-.07.58-.16l-.02.02a139.62 139.62 0 0 1 1.47-4.74l.01.02c-.2-.22-.43-.42-.73-.5.3.06.56.25.77.46l.01.02v.01l-.71 2.38-.75 2.37v.01h-.02c-.19.1-.4.15-.6.15-.2 0-.41-.03-.61-.07z'/%3e%3ccircle fill='none' stroke-width='.16' cx='438.18' cy='328.13' r='.62'/%3e%3ccircle fill='none' stroke-width='.16' cx='434.44' cy='331.88' r='.62'/%3e%3cpath fill='%23485654' stroke='none' d='M440.97 322.38a11.74 11.74 0 0 1-1.74-1.63 11.63 11.63 0 0 1 1.74 1.63z'/%3e%3cpath d='m502.17 259.06 3.49 3.41.64-.59-3.48-3.4-.65.58z'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='scale(-1 1) rotate(-2.84 -9.26 19640.24)'/%3e%3cg stroke='%2324420e' stroke-width='.16'%3e%3cpath fill='%2367923d' d='M433.91 365.36c-7.87-3.32-26.89-.67-29.22.93 16.29 8.01 29.54 4.58 29.22-.93zm89.02 3.32c7.87-3.32 26.89-.67 29.22.93-16.29 7.98-29.54 4.58-29.22-.93z'/%3e%3cpath fill='%23406325' d='M433.76 365.48c.32 5.5-12.79 8.89-29.07.9 15.29.94 27.79.38 29.07-.9zm89.32 3.29c-.32 5.5 12.79 8.89 29.07.9-15.29.94-27.79.41-29.07-.9z'/%3e%3c/g%3e%3cg id='c'%3e%3cpath fill='%23b2b6ba' stroke='%23485654' stroke-width='.22' d='M508.49 359.99c-20.73-30.12-52-54.61-76.1-68 3.55-.16 11.46 3.89 14.67 5.96 23.94 15.42 44.3 35.8 65.66 59.82a35.2 35.2 0 0 1-3.44 3.05l-.79-.83z'/%3e%3cpath fill='%238c959d' d='m510.55 359.75-1.45 1.4C486.09 331.51 454 303.2 432.43 292c30.08 13.86 55.4 41.77 78.03 67.65l.09.09z'/%3e%3cpath fill='%23485654' d='m510.56 359.75-1.45 1.4a302.96 302.96 0 0 0-16.87-19.73 336.02 336.02 0 0 0-18.37-18.34 284.92 284.92 0 0 0-19.8-16.76 195.86 195.86 0 0 0-10.55-7.56c-3.6-2.4-7.3-4.66-11.13-6.65l.1-.2c7.89 3.65 15.33 8.2 22.37 13.29a210.61 210.61 0 0 1 20.03 16.63 359.99 359.99 0 0 1 18.33 18.5c5.9 6.36 11.63 12.89 17.34 19.42za897.45 897.45 0 0 0-17.42-19.35c-5.92-6.35-12-12.56-18.35-18.47-6.36-5.9-13-11.51-20.04-16.59a134.67 134.67 0 0 0-22.36-13.23l.1-.2c3.84 2 7.54 4.28 11.14 6.68 3.6 2.4 7.11 4.95 10.55 7.58a284.86 284.86 0 0 1 19.8 16.8 336.06 336.06 0 0 1 18.34 18.37 302.66 302.66 0 0 1 16.8 19.8h-.01l1.45-1.39z'/%3e%3cg fill='%23fab81c' stroke='%236c301e' stroke-width='.11'%3e%3cpath stroke-width='.22' d='M517.5 355.07a18.32 18.32 0 0 0-5.26 2.23c-.23 1.4-1.95 2.95-3.58 3.3l-.6-.76a.13.13 0 0 0-.17-.04 6.9 6.9 0 0 0-.57.34c-.6-.1-1.34.2-1.66.97-.38.97.39 2.25 1.23 3.09.92.73 1.38 1.07 2.45.92 1.09-.23 1.68-1.22 1.93-1.53 3.72 4.5 6.52 6.93 11.23 10.64 2.1.02 3.22-1.3 2.52-2.8-.23-.5-.84-.84-1.33-.66.04-.15.02-.3 0-.45 2.46-2.26 3.5-5.08.91-9.87-2.22-4.03-4.71-5.4-7.09-5.38h-.01zm6.25 4.53c.43.74.69 1.38 1.02 2.05 1.48 3 .2 6.6-2.33 7.71-.13 0-.09-.02-.22.02.42-.69-.82-2.15-1.46-1.64.3-.76-.67-2.02-1.46-1.7.42-.7-.53-1.9-1.42-1.5.46-.77-.32-1.87-1.24-1.67.27-.82-.42-1.76-1.35-1.6.07-.72-.16-1.12-.51-1.45 1.11-.85 2.35-2.15 3.44-2.74 2.72-1.18 4.4 1.07 5.52 2.52z'/%3e%3cpath d='M524.89 362.77c-.52-.25-.76-.76-.59-1.1.17-.35.7-.44 1.22-.18.52.25.8.74.63 1.09-.17.34-.74.45-1.26.2v-.01z'/%3e%3cpath d='M524.59 361.75c-.52-.25-.76-.76-.59-1.1.17-.35.7-.44 1.22-.18.52.25.8.74.63 1.09-.17.34-.74.45-1.26.2v-.01z'/%3e%3cpath d='M523.97 360.62c-.52-.25-.76-.76-.59-1.1.17-.35.7-.44 1.22-.18.52.25.8.74.63 1.09-.17.34-.74.45-1.26.2v-.01z'/%3e%3cpath d='M523.19 359.6c-.52-.25-.76-.76-.59-1.1.17-.35.7-.44 1.22-.18.52.25.8.74.63 1.09-.17.34-.74.44-1.26.2v-.01z'/%3e%3cpath d='M522.16 358.61c-.52-.25-.76-.76-.59-1.1.03-.05.01-.14.06-.12.2.1.64.19.6-.14-.07-.1-.15-.22-.07-.14.14 0 .46.14.63.22.52.26.8.75.63 1.1-.17.33-.74.44-1.26.19v-.01z'/%3e%3c/g%3e%3cpath d='M511.27 363.6c.68-1.77 2.05-3.41 3.5-3.8m-3.27 4.05c1.26.26 3.3-1.24 3.8-2.59m-2.61 4.04c1.66.38 3.3-1.22 3.93-2.4m-2.44 3.98c1.96.06 3.16-1.33 3.74-2.39m-2.23 3.92c1.66.01 3.17-1.36 3.65-2.42m-2.19 3.82c1.8-.07 3.08-.9 3.62-2.07m-1.98 3.49c1.66.1 3-.9 3.44-1.86m-1.66 3.31c1.66.1 2.7-.93 3.14-1.9' fill='%23fab81c'/%3e%3cpath d='M511.27 363.6a7.03 7.03 0 0 1 2.3-3.24c.36-.26.77-.47 1.2-.57-.42.14-.8.37-1.16.63-.35.27-.66.58-.95.92a9.24 9.24 0 0 0-1.39 2.26zm.23.25c.4.06.8-.04 1.18-.2a5.65 5.65 0 0 0 1.95-1.4c.27-.29.51-.62.68-.99-.13.4-.36.74-.62 1.06a5.26 5.26 0 0 1-1.98 1.42 2.1 2.1 0 0 1-1.21.11zm1.19 1.45c.4.07.82.04 1.2-.09.39-.12.75-.3 1.08-.54a6.24 6.24 0 0 0 1.65-1.77 5.2 5.2 0 0 1-1.6 1.86c-.33.23-.7.43-1.1.53-.4.11-.84.13-1.23.01zm1.49 1.58a3.83 3.83 0 0 0 2.18-.69c.32-.21.6-.48.86-.76.26-.3.5-.6.7-.94-.33.7-.85 1.34-1.5 1.79a3.37 3.37 0 0 1-2.24.6zm1.51 1.53a4.1 4.1 0 0 0 2.11-.77 5.16 5.16 0 0 0 1.54-1.65c-.14.36-.36.68-.61.97a4.25 4.25 0 0 1-1.9 1.29c-.37.12-.76.18-1.14.16zm1.46 1.4c.36-.04.73-.1 1.08-.19a4.63 4.63 0 0 0 1.89-1.01c.26-.26.48-.55.65-.87-.13.34-.34.65-.6.93a3.5 3.5 0 0 1-.88.66c-.66.34-1.4.5-2.14.48zm1.64 1.42a4.54 4.54 0 0 0 1.97-.48c.3-.15.58-.35.84-.58s.47-.5.63-.8c-.12.32-.33.61-.58.86a3.58 3.58 0 0 1-2.86 1zm1.78 1.45c.33 0 .65-.04.96-.12a3.3 3.3 0 0 0 1.62-.99c.22-.23.4-.5.56-.79a2.96 2.96 0 0 1-3.14 1.9z' fill='%236c301e'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='scale(-1 1) rotate(-3.41 -13.8 16470.84)'/%3e%3cg stroke='%2324420e' stroke-width='.16'%3e%3cpath fill='%23406325' d='M409.24 240.02c7.21-2.37 18.73-15.45 19.48-17.92-15.6 4.16-22.76 14.35-19.48 17.92zm145.74 4.7c-1.7-7.04-13.28-19.01-15.57-19.91 2.77 15.16 11.92 22.76 15.57 19.91z'/%3e%3cpath fill='%2367923d' d='M409.24 240.02c-3.32-3.57 3.8-13.67 19.34-17.82-10.96 8.4-19.2 16.18-19.34 17.82zm145.74 4.7c-3.66 2.9-12.72-4.65-15.49-19.77 7.17 11.07 13.94 19.51 15.49 19.77z'/%3e%3c/g%3e%3cg stroke='%23999270' stroke-width='.16'%3e%3cpath fill='url(%23d)' d='M452.21 318.1s-6.16.66-7.88-7.83c-1.85-9.09 5.3-10.06 5.3-10.06s8.1-.78 13.15-.9l2.24 17.95-12.81.84z'/%3e%3cpath fill='url(%23e)' d='M453.02 315.36s-3.98.76-4.8-5.55c-.59-4.48 2.18-5.11 2.18-5.11l9.23 1.56.05 8.24-6.66.86z'/%3e%3cpath fill='url(%23f)' d='M450.4 304.7s5.9-.43 8.99-.83l1.28 5.71-7.1.45s-.49-5.16-3.17-5.33z'/%3e%3cpath fill='url(%23g)' d='M449.16 300.36s7.58-1.86 8.52 6.49c.24 2.18-.94 7.17-4.66 8.51l13.88-1.45-1.26-15.01-4.68.39s-9.92.34-11.8 1.07z'/%3e%3cpath fill='%23f9f0aa' d='M452.2 318.1c.05 0 51.9-3.5 57.22-3.27 15.74-8.64-.08-42.56-13.35-61.54 1.52-4.27-29.85-13.89-44.04-13.02-1.78.1-3.5.23-5.16.35-7.7.82-7.77 10.7-4.63 16.93 3.04 6.04 30.31 55.12 11.14 60.31l-1.18.24z'/%3e%3cpath fill='url(%23h)' d='M507.79 273.34a148.36 148.36 0 0 0-11.72-20.05c1.52-4.27-29.86-13.89-44.04-13.02-1.79.1-3.51.23-5.16.35-7.7.82-7.77 10.7-4.64 16.93.96 1.9 4.3 8.04 7.85 15.73'/%3e%3cpath fill='url(%23i)' d='M455.04 284.95c5.55 14.65 8.66 30.12-1.64 32.9l-1.18.24c.05 0 51.9-3.49 57.22-3.27 8.54-4.68 7.8-16.8 3.2-29.94'/%3e%3cpath fill='url(%23j)' d='M447.4 243.49c-3.7 0-4.66 3.56-4.6 5.82.13 5.9 4.6 6.19 4.6 6.19l5.96-.33 2.86-12.17-8.82.49z'/%3e%3cpath fill='url(%23k)' d='m447.4 243.53 8.82-.49.91 9.09-7.7.34s2.5-7.28-2.03-8.94z'/%3e%3cpath fill='url(%23l)' d='M496.12 253.29c6.69-1.07 6.6-10.07 2.03-13.67-15.5-.57-35.9-.15-50.63.96 1.67-.05 6.33.37 6.85 6.5a8.2 8.2 0 0 1-3.06 7 6.93 6.93 0 0 1-3.9 1.45c.24.1 2.16.01 3.6-.08.73-.05 2.54-.27 3.05-.33 21.01-2.76 41.99-1.83 41.99-1.83h.07z'/%3e%3cpath d='M458.47 267.42c-.14-.33-.32-.75-.73-.8-.25 0-.65-.06-.57-.4.24-.11.54-.04.8-.06.56 0 1.11-.12 1.67-.15.34.1.26.54-.1.46-.41.1-.18.57-.08.81.44 1.04.87 2.08 1.33 3.1.12.31.38.58.72.61.36.04.75.05 1.09-.11.3-.2.24-.63.2-.94-.13-.36.54-.28.5.04.12.43.27.86.44 1.27-.02.2-.28.15-.42.17-1 .08-1.99.13-2.98.22-.32-.01-.8.28-.99-.1-.12-.38.51-.16.6-.45 0-.33-.2-.62-.31-.92l-1.17-2.75zm4.83-.34c-.14-.32-.3-.72-.69-.8-.24-.02-.65-.01-.61-.37.15-.16.45-.06.67-.1.59.03 1.17-.08 1.76-.14.29-.02.4.52.02.45-.35.01-.38.4-.23.65.47 1.14.96 2.28 1.44 3.41.1.25.24.55.54.59.25.05.65-.03.7.32-.04.26-.43.11-.63.16a6.58 6.58 0 0 0-1.55.12c-.23.06-.55.02-.56-.27.05-.28.58-.07.6-.4-.03-.33-.2-.62-.32-.93l-1.14-2.69zm4.46.71c.09.23.4.06.59.08.26-.03.54-.22.51-.51-.04-.45-.26-.91-.63-1.19-.34-.24-.78-.21-1.17-.16-.02.16.1.3.15.45l.55 1.33zm.67 1.6c.16.35.28.74.56 1.01.25.17.57.1.85.07.3-.02.48-.33.38-.61-.14-.64-.55-1.3-1.24-1.44-.3-.05-.61-.06-.91 0-.02.15.09.3.13.43l.23.54zm-2.04-2.38c-.15-.34-.3-.76-.68-.92-.25-.08-.65.03-.7-.32.06-.3.56-.1.8-.16.86-.03 1.74-.27 2.6 0 .73.17 1.39.8 1.44 1.58.03.38-.26.68-.58.84-.04-.14.37.06.5.08.6.19 1.13.58 1.39 1.14.2.4.35.93.04 1.32-.36.4-.94.41-1.44.43-.75.02-1.5.03-2.25.18-.26.04-.45-.48-.08-.45.37-.02.4-.42.24-.67l-1.28-3.05zm7.42-1.9c.33-.05.36.32.46.53.1.29.27.54.35.83-.28.28-.5-.14-.63-.36-.14-.24-.38-.47-.69-.45-.4 0-.81.02-1.22.07-.14.16.07.4.12.58.19.45.36.9.56 1.34.27-.02.62.02.81-.2.08-.24-.27-.75.21-.65.3.17.26.6.42.89.12.38.38.72.49 1.11-.26.29-.53-.13-.62-.36-.19-.35-.63-.3-.96-.3-.24-.05-.08.17-.04.28.21.5.38 1.01.66 1.48.2.34.65.3 1 .28.32-.02.72-.03.92-.34.21-.25-.28-.75.13-.83.35-.03.34.38.43.6.07.29.18.56.28.83-.02.2-.28.14-.42.16-1.02.07-2.04.11-3.06.2-.3 0-.8.23-.9-.2.02-.3.64-.14.55-.55-.07-.35-.25-.66-.37-1-.38-.89-.73-1.8-1.12-2.68-.14-.3-.37-.62-.73-.63-.24.04-.6-.13-.47-.41.35-.07.72-.02 1.07-.06l2.77-.16zm2.31 1.32c-.15-.35-.3-.77-.68-.93-.26-.08-.72.01-.7-.4.25-.18.66-.03.97-.08.8-.01 1.62-.24 2.41 0 .82.23 1.52.97 1.57 1.84.03.41-.3.75-.68.86-.3.02.23.1.3.2.64.3 1.08.87 1.41 1.47.08.23.52.7.59.25-.03-.5.64-.08.49.26 0 .36-.35.59-.68.58-.47.04-.9-.23-1.14-.62-.42-.55-.71-1.22-1.27-1.66-.23-.17-.56-.27-.83-.15-.05.14.07.28.1.41.19.41.31.85.55 1.22.2.31.6.36.94.36.36.09.25.58-.13.43-.58 0-1.17-.04-1.75.08-.27.13-.87.01-.65-.37.28-.02.67-.17.48-.53-.33-.87-.7-1.73-1.05-2.6l-.25-.62zm1.4.9c.14.32.6.14.87.1.35-.07.34-.5.23-.77-.16-.47-.37-1.03-.9-1.2-.25-.03-.84-.2-.88.16.2.53.43 1.05.63 1.58l.05.12zm7.22 1.71c.1.26.21.61.54.66.25.05.66-.03.71.33-.04.26-.43.1-.63.14a7.1 7.1 0 0 0-1.6.08c-.24.07-.56-.03-.53-.32.13-.2.65-.03.62-.4-.08-.4-.27-.77-.41-1.15l-1.15-2.88c-.1-.31-.45-.3-.7-.28-.28 0-.69.06-.69.41-.08.23.22.62-.04.74-.3.06-.36-.28-.43-.5-.1-.31-.26-.6-.38-.92.03-.21.32-.17.49-.2l4.13-.16c.3-.05.5.19.52.47.1.34.27.66.41.98-.11.33-.5.04-.55-.2-.2-.35-.51-.7-.94-.7-.26 0-.64-.1-.82.14.01.24.15.45.22.67l1.23 3.09zm3.73-.91c-.2 0-.1.24-.12.37.01.28-.02.57.03.85.13.3.53.23.79.31.23.13.17.5-.14.4-.42-.03-.85-.08-1.27.02-.25.14-.71-.12-.49-.39.2-.03.45-.1.5-.33.07-.42.03-.84.04-1.26l.02-3.71c.12-.28.52-.05.6.16 1.2 1.52 2.38 3.05 3.6 4.54.2.23.46.4.77.42.26 0 .4.53.03.42-.52-.03-1.03-.06-1.54.03-.23 0-.5.1-.7-.03-.24-.17-.07-.43.2-.4.35-.1 0-.48-.12-.65-.19-.26-.38-.52-.59-.75-.17-.09-.37-.03-.55-.04l-1.06.04zm1.17-.51c.19.01-.05-.16-.08-.24l-1.28-1.66c.09-.01.02.18.04.26v1.68l1.32-.04zm3.06-1.85c-.15-.4-.35-.89-.82-.98-.24.04-.7-.18-.45-.44.55 0 1.1.03 1.65-.02.7-.06 1.42-.04 2.08.2a4.35 4.35 0 0 1 2.92 3.33c.1.6-.08 1.3-.63 1.64-.73.47-1.64.38-2.47.33-.47-.02-.94.04-1.4.09-.3-.04-.34-.51.02-.46.37 0 .37-.42.23-.66l-1.13-3.03zm1.97 2.5c.15.33.24.75.56.97.3.14.66.12.98.08.44-.06.72-.5.72-.91a4.27 4.27 0 0 0-.63-2.13 2.65 2.65 0 0 0-1.84-1.37c-.33-.05-.67-.1-1-.05-.07.13.06.27.1.4l1.11 3zm-21.11 12.41c.12.35.44.6.8.63.26.05.7-.01.72.36-.14.23-.53.07-.77.12-.52 0-1.04 0-1.55.1-.28 0-.57.12-.84.04-.24-.12-.2-.47.1-.43.26-.05.61-.13.63-.44-.02-.29-.18-.54-.28-.8l-1.15-2.75c-.09-.33-.45-.34-.71-.29-.25.05-.62.13-.68-.22.03-.29.5-.24.7-.39.31-.12.62-.25.94-.35.22-.05.32.15.38.32l1.71 4.1zm.75-4.51c.68-.03 1.37.08 2.05 0 .3-.03.1-.5.38-.47.37.02.31.48.33.74a.52.52 0 0 1-.56.58c-.54.03-1.07-.05-1.6-.02.12.42.29.81.44 1.21.03-.13.46-.15.64-.18a2.78 2.78 0 0 1 2.61 1.54c.22.48.33 1.1-.02 1.55-.4.45-1.03.54-1.6.55-.49 0-1.06-.11-1.35-.55-.17-.22-.14-.68.22-.64.3 0 .66.26.6.6.17.22.53.14.78.13.3 0 .59-.24.57-.55 0-.49-.18-.97-.45-1.36-.3-.43-.78-.71-1.3-.7-.3-.05-.55.15-.83.15-.29-.04-.34-.37-.44-.58-.23-.6-.46-1.2-.65-1.82-.02-.1.08-.2.18-.18zm6.85 1.02c-.16-.4-.37-.88-.84-.97-.24.06-.7-.17-.46-.43.55-.02 1.11 0 1.67-.07.7-.08 1.43-.07 2.1.18 1.5.5 2.71 1.82 2.94 3.39.09.58-.11 1.24-.63 1.56-.72.47-1.61.4-2.43.38-.45 0-.9.07-1.34.13-.3-.04-.36-.5 0-.46.38-.03.35-.45.2-.69l-1.21-3.02zm2.03 2.46c.16.34.26.75.59.97.3.14.65.1.97.05.44-.07.69-.52.68-.94 0-.76-.32-1.48-.7-2.13a2.64 2.64 0 0 0-1.86-1.33 3 3 0 0 0-.98-.02c-.07.13.06.27.1.4l1.2 3zm6.44-4.26c.31-.05.35.3.44.5.1.29.24.55.34.84-.19.3-.5-.06-.59-.29-.14-.24-.35-.52-.67-.5-.41-.03-.82 0-1.23.03-.23.1.01.39.05.56.18.45.35.92.54 1.36.27 0 .58.01.8-.15.18-.21-.27-.74.21-.68.33.12.28.57.42.84.12.4.35.74.49 1.14-.18.33-.54-.06-.6-.3-.14-.33-.51-.37-.82-.36-.2-.03-.37.01-.23.22.22.51.38 1.05.66 1.54.2.35.65.3 1 .3.32-.01.73 0 .93-.32.2-.24-.2-.66.08-.8.34-.1.42.27.47.51.08.31.18.6.29.9-.03.2-.28.14-.43.16-1.03.04-2.06.06-3.09.12-.28-.01-.69.21-.87-.1-.18-.4.5-.19.53-.53.03-.3-.15-.58-.25-.86-.38-.96-.75-1.94-1.14-2.9-.14-.31-.36-.66-.74-.68-.24.04-.6-.13-.46-.4.36-.07.73-.01 1.1-.04l2.77-.11zm-27.28 14.28c.15.49.67.69 1.11.82.77.26 1.6.52 2.15 1.16.3.37.52.85.5 1.34-.04.5-.47.87-.93.99-.57.18-1.2.13-1.73-.1-.27-.11-.17.47-.5.27-.24-.18-.16-.56-.3-.81-.1-.33-.24-.65-.38-.97.01-.32.48-.15.5.1.32.6.92 1.12 1.63 1.13.36 0 .8-.18.83-.59.01-.53-.41-.95-.86-1.18-.64-.33-1.38-.44-2-.81a1.94 1.94 0 0 1-.94-1.61c.01-.44.37-.78.77-.9.5-.17 1.05-.2 1.56-.06.24.13.34-.27.6-.07.11.2.08.46.2.67.07.29.26.54.33.82-.16.25-.47.02-.52-.2-.22-.36-.52-.77-.98-.8-.35-.03-.79-.03-1.01.29-.1.15-.1.35-.03.51zm6.69-1.65c.33-.06.34.31.42.53.08.27.2.53.29.8-.14.28-.5.02-.54-.21-.14-.26-.34-.58-.67-.56-.41 0-.82.03-1.23.08-.23.1 0 .39.03.57l.46 1.36c.27-.02.58-.01.8-.18.2-.2-.19-.6.14-.7.38-.05.35.44.44.68.1.45.33.85.46 1.29-.14.32-.53.01-.55-.25-.1-.33-.48-.4-.79-.37-.17 0-.42 0-.27.22.18.5.32 1.02.55 1.5.12.3.45.35.73.33.39-.03.84.01 1.15-.28.24-.24.04-.59.1-.85.24-.2.52.06.5.34.06.34.15.68.26 1.02-.04.2-.3.14-.44.17-1.02.08-2.04.13-3.06.23-.28-.02-.68.23-.85-.1-.16-.37.45-.2.53-.5.09-.29-.1-.57-.17-.85-.33-.98-.65-1.96-1-2.94-.12-.3-.33-.66-.7-.66-.24.06-.6-.13-.43-.4.35-.07.71-.03 1.07-.07l2.77-.2zm4.18 4.14c.1.3.27.64.61.7.25.09.67-.07.73.29 0 .32-.49.15-.7.2-.52-.03-1.03 0-1.53.1-.22.04-.55.11-.6-.18-.06-.34.45-.15.56-.4.08-.26-.06-.52-.13-.77-.34-1-.66-2.01-1.01-3.01-.11-.3-.27-.68-.63-.71-.23-.01-.63-.03-.56-.37.18-.16.49-.05.71-.08.74.01 1.45-.2 2.19-.15.75.03 1.48.51 1.73 1.23.17.4.22.92-.08 1.28-.39.45-1.02.55-1.58.62-.21-.03-.04.2-.03.3l.32.95zm-.57-1.72c.2.03.46-.03.67-.08.32-.07.48-.4.4-.7a2.24 2.24 0 0 0-.54-1.17c-.3-.26-.75-.26-1.12-.17-.13.12 0 .32.04.47l.55 1.65zm6.15 1.43c.09.25.17.61.5.65.24.06.65-.03.68.32-.06.27-.44.12-.64.16a7.09 7.09 0 0 0-1.6.1c-.23.09-.55-.01-.5-.3.14-.22.65-.05.64-.42-.05-.39-.21-.75-.33-1.13l-.95-2.9c-.07-.31-.43-.3-.68-.27-.25.02-.62.05-.69.35-.08.25.04.53-.01.78-.24.16-.47-.1-.46-.33-.08-.35-.2-.68-.34-1-.01-.24.3-.22.47-.24l4.15-.25c.3-.05.49.19.48.47.08.34.22.66.34.98-.06.28-.48.13-.5-.12-.17-.36-.44-.74-.87-.76-.28 0-.63-.06-.86.12-.05.2.08.4.13.6l1.04 3.19zm2.1-3.29c-.1-.3-.22-.7-.57-.79-.24-.06-.65.01-.63-.35.1-.22.42-.09.61-.12.6.02 1.2-.06 1.79-.12.26-.12.48.42.15.42-.25 0-.55.19-.44.47.13.53.32 1.05.48 1.57.24.73.47 1.47.72 2.2.07.23.25.43.5.44.24 0 .66.04.59.38-.18.16-.48.06-.71.08-.54-.04-1.07.05-1.6.11-.24.1-.54-.13-.4-.37.2-.1.65-.05.62-.39-.08-.4-.24-.8-.36-1.2l-.75-2.33zm5.76-1.6c.32-.06.33.3.4.52.08.27.2.54.28.81-.14.29-.5.02-.53-.22-.13-.26-.33-.57-.67-.56-.4-.01-.82.02-1.23.05-.23.1-.01.4.02.57.14.45.28.91.44 1.36.27-.01.58 0 .8-.16.2-.2-.18-.61.16-.7.37-.03.34.45.42.7.09.45.32.85.44 1.29-.11.29-.52.04-.52-.22-.1-.32-.43-.45-.74-.42-.15.02-.5-.07-.36.17.17.52.3 1.05.53 1.55.12.28.45.35.73.33.4-.02.85.03 1.16-.26.25-.22.05-.58.11-.84.26-.2.53.07.5.35.06.34.15.68.25 1.02-.05.2-.28.14-.43.16-1.03.05-2.07.1-3.1.17-.27-.02-.64.2-.83-.07-.22-.39.38-.25.5-.48.14-.27-.04-.55-.1-.81l-.96-3c-.12-.31-.32-.7-.7-.7-.25.05-.6-.15-.43-.41.34-.07.7-.02 1.05-.05l2.81-.15zm2 .96c-.07-.36-.34-.68-.73-.62-.38.1-.5-.57-.04-.43.51 0 1.03-.08 1.53.03.25.27.44.58.66.86l2.17 2.9c-.15.04-.03-.18-.05-.3l.36-3.54c.27-.22.73-.13 1.07-.2.29-.04.93-.13.75.35-.34.06-.77.22-.54.65.36 1.2.74 2.39 1.12 3.58.07.41.49.54.86.52.31.02.33.57-.05.43-.6 0-1.2-.04-1.78.07-.27.09-.82.06-.64-.36.3-.05.8-.14.58-.57-.31-1.06-.65-2.11-.98-3.17.07.1-.01.25 0 .38-.1.99-.23 1.97-.3 2.97-.04.26.05.57-.07.8-.24.1-.39-.12-.5-.28l-2.86-3.7c.1-.04.09.2.14.3.3.95.59 1.92.91 2.87.1.39.5.5.85.5.38.2.1.55-.23.41-.5-.07-1 .03-1.5.08-.3 0-.32-.5.03-.44.47 0 .33-.53.22-.8l-1.02-3.28.04-.01zm8.74.85c.06.22.36.07.53.1.28-.02.62-.18.63-.5.01-.44-.16-.9-.5-1.19-.33-.25-.77-.23-1.16-.2-.04.15.06.31.1.46l.4 1.33zm.49 1.6c.12.35.19.74.45 1.02.24.18.56.1.84.09.26-.02.49-.23.46-.5-.03-.6-.31-1.26-.9-1.5a2.4 2.4 0 0 0-1.07-.09c-.12.1.03.3.05.43l.17.55zm-1.78-2.4c-.11-.35-.22-.77-.58-.94-.23-.09-.64.02-.66-.34.08-.28.54-.07.77-.13.89 0 1.8-.23 2.66.06.7.18 1.28.82 1.28 1.56 0 .4-.33.71-.69.86-.02-.13.36.07.5.1.53.19 1.02.55 1.23 1.1.17.4.28.94-.04 1.32-.36.4-.95.43-1.45.44-.8 0-1.59-.01-2.37.12-.29.03-.4-.5-.04-.45.36 0 .46-.38.32-.66l-.93-3.04zm5.01-.18c-.11-.35-.22-.77-.58-.94-.24-.09-.69.02-.66-.37.19-.25.65-.04.95-.1.68 0 1.36-.13 2.04-.05.79.1 1.54.65 1.74 1.45.14.42.05.95-.36 1.19-.09.1-.52.2-.45.19.6.24 1.12.69 1.41 1.27.16.26.25.58.47.8.27.2.3-.17.34-.33.35-.18.53.32.39.58-.15.42-.68.5-1.06.4-.34-.07-.6-.34-.76-.64-.34-.54-.55-1.17-1.03-1.61-.22-.2-.56-.31-.85-.2-.07.14.04.29.06.43.13.4.21.8.39 1.17.16.33.54.41.87.41.32 0 .35.56-.03.43-.6 0-1.22-.07-1.83.03-.22 0-.53.14-.67-.1-.22-.42.41-.22.55-.46.1-.28-.06-.56-.12-.84l-.81-2.71zm1.31.92c.1.32.56.15.8.14.3-.03.47-.32.4-.6-.07-.45-.19-.94-.54-1.25-.3-.23-.72-.23-1.08-.16-.16.12-.01.34.02.5l.4 1.37zm6.89-2.54c.31-.05.33.3.38.51.08.28.2.55.26.83-.13.26-.49.03-.51-.2-.13-.26-.3-.6-.63-.6a9.5 9.5 0 0 0-1.28 0c-.24.08-.03.38-.01.56.13.45.25.91.4 1.36.25 0 .53 0 .77-.1.29-.16-.1-.6.2-.7.36-.09.36.39.42.63.06.47.3.9.4 1.35-.12.28-.52.02-.52-.23-.08-.3-.37-.46-.66-.44-.15.02-.56-.12-.44.13.16.53.27 1.07.49 1.57.1.3.44.36.72.36.4-.01.85.06 1.18-.22.26-.22.07-.58.14-.84.26-.18.53.1.49.37.05.34.12.68.21 1.02-.05.2-.3.12-.45.14-1.04.02-2.07.03-3.11.07-.27-.03-.6.15-.82-.06-.26-.38.3-.3.47-.47.2-.22.04-.5-.02-.75-.3-1.03-.58-2.06-.89-3.08-.1-.3-.27-.68-.63-.72-.24.01-.61-.1-.49-.4.3-.1.66 0 .98-.04l2.95-.05zm-32.82 13.13c-.1-.37-.22-.85-.64-.95-.24 0-.65-.06-.5-.4.3-.12.67-.02 1-.07.82-.04 1.65-.24 2.46-.02a3.54 3.54 0 0 1 2.59 2.36c.22.73.26 1.6-.23 2.24-.52.67-1.42.85-2.22.86-.61 0-1.23 0-1.84.12-.24.14-.63-.1-.42-.36.25-.07.67-.15.59-.52-.1-.51-.25-1.01-.36-1.52l-.43-1.74zm1.64 2.44c.1.32.14.7.4.94.28.17.62.1.92.08.47-.07.82-.48.9-.94a3.91 3.91 0 0 0-.39-2.22c-.26-.6-.8-1.08-1.44-1.22a2.98 2.98 0 0 0-1.16-.04c-.08.12.02.27.04.4l.73 3zm7.06-4.43c.32-.06.31.3.36.51.06.28.16.54.22.82-.13.26-.5.06-.5-.19-.12-.25-.27-.58-.6-.58-.42-.02-.85.02-1.27.06-.24.08-.05.38-.04.57.12.45.21.9.34 1.35.27-.01.58 0 .82-.17.21-.19-.13-.61.2-.69.38-.04.3.45.37.69.05.44.25.85.34 1.29-.12.28-.53.05-.5-.21-.08-.33-.41-.46-.71-.42-.15.02-.5-.07-.37.17.13.52.22 1.05.4 1.55.1.3.44.35.7.33.42-.02.9.02 1.22-.3.25-.23.02-.61.17-.84.3-.17.49.14.45.4.03.34.09.66.16.99-.06.2-.3.14-.47.16-1.02.07-2.05.12-3.07.2-.26-.01-.56.15-.78.01-.26-.27.1-.4.32-.44.3-.1.26-.44.19-.68-.27-1.08-.51-2.16-.79-3.24-.08-.3-.23-.67-.6-.7-.23.03-.6-.08-.46-.39.3-.12.65-.03.97-.07l2.93-.18zm6.49 4.1c.04.3.28.57.6.62.23.1.6-.04.73.24.1.35-.39.24-.6.25-.56 0-1.14-.02-1.7.07-.3.02-.58.1-.87.07-.27-.12-.15-.5.15-.45.27-.06.63-.13.7-.44.04-.27-.07-.53-.12-.79l-.64-2.76c-.03-.33-.39-.34-.64-.3-.22.01-.58.17-.66-.16-.03-.34.47-.27.67-.4.37-.13.74-.28 1.11-.38.21-.05.3.15.32.32l.95 4.11zm3.69-3.32c-.07-.36-.28-.79-.69-.84-.3-.05-.67.03-.78.34-.1.38.04.81.37 1.03.28.2.6.3.9.45.06-.12.24-.35.23-.56.02-.14 0-.29-.03-.42zm.84 2.9c-.1-.5-.57-.78-1-.96-.18-.03-.44-.27-.56-.17-.3.27-.46.71-.32 1.1.12.49.48.97 1 1 .35.05.77-.1.87-.47a.96.96 0 0 0 0-.5zm.89-.22a1.2 1.2 0 0 1-.47 1.3 2.4 2.4 0 0 1-2.02.24 1.67 1.67 0 0 1-1.19-1.28c-.12-.49.08-1.04.52-1.31.1-.1.49-.14.17-.22-.5-.24-.99-.64-1.09-1.22-.12-.49.1-1.03.55-1.27.86-.47 2.09-.2 2.59.67.21.37.25.86 0 1.22-.15.2-.33.4-.57.45.49.1.93.4 1.22.79.14.19.24.4.29.63zm3.26.56c.24 0 .5-.14.54-.4.09-.19-.08-.6.26-.58.3.02.27.37.3.6.03.4 0 .87-.34 1.13-.25.16-.56.1-.84.1-.56-.02-1.12-.14-1.68-.07-.24.02-.5.28-.72.1-.19-.23-.07-.52 0-.77.2-.61.62-1.12 1.1-1.54.33-.3.7-.65.76-1.13.04-.41-.08-.84-.3-1.19-.28-.45-.94-.6-1.4-.32-.22.15-.4.5-.22.75.21.16.6.01.7.35.13.23 0 .6-.3.6-.44.06-.84-.28-.95-.7a1.2 1.2 0 0 1 .5-1.4c.5-.3 1.13-.3 1.68-.17.57.14 1.04.58 1.22 1.14.15.43.16.93-.08 1.34-.38.72-1.15 1.07-1.66 1.67-.14.16-.25.38-.19.59.08-.2.4-.13.58-.17.35-.01.7.08 1.04.07zm3.94-.42c.04.31.27.58.58.63.23.1.57-.01.72.23.14.34-.33.28-.54.27-.59-.02-1.18-.05-1.77.02-.29.02-.58.09-.86.05-.28-.13-.13-.5.16-.44.27-.05.63-.11.72-.42.03-.27-.07-.53-.11-.79l-.58-2.77c-.02-.28-.32-.34-.55-.3-.24-.03-.56.16-.71-.1-.18-.35.34-.35.55-.44.4-.12.8-.28 1.22-.38.21-.05.3.15.31.32l.86 4.12z' fill='%23b07e09' stroke='none'/%3e%3c/g%3e%3cg fill='%23448127' stroke='%2334541f' stroke-width='.22'%3e%3cpath fill='url(%23m)' stroke='%234c0505' d='m475.8 219.41-3.77 4.48c-1.2 5.24 1.78 9.19 7.65 12.62 4.75 2.95 13.55 3.69 16.33 1.3l-13.72-13.06-6.49-5.34z'/%3e%3cpath d='M503.58 354.27c-.67-.81-1.35-1.62-2.04-2.42-8.55 11.3-19.24 21.42-32.61 28.57 15.07-4.27 24.94-15.26 34.65-26.15zm-15.44 35.71c5.32-10.77 11.73-21.54 18.2-32.32-.7-.88-1.42-1.76-2.14-2.63-7.35 12.18-15.98 26.68-16.06 34.95zm41.73-114.5c-.98-4.25-2.27-8.84-4.3-13.05-2.67-5.44-6.63-10.84-11.84-16.8-9.38-10.18-18.77-20-31.93-27.26l.07-.14.08.05h.16l-.16-.2h.47l-.25-.26h.43l-.35-.4h.46l-.32-.33h.49l-.28-.36.4.03-.37-.39.55-.1-.45-.28.48-.1-.4-.27.59-.19-.52-.3.65-.3-.63-.45.67-.23-.73-.3.62-.31-.73-.13.5-.57-.7.04.31-.6-.67.05-.04-.05.37-.45-.68.12.3-.61-.65.32.18-.7-.62.43.1-.72-.59.5.06-.7-.5.54.04-.72-.5.6-.06-.7-.4.55-.2-.67-.34.67-.17-.71-.32.71-.15-.71-.27.71-.2-.67-.22.67-.16-.6-.24.72-.23-.67-.24.77-.29-.69-.13.82-.35-.67-.04.8-.38-.6-.03.78-.4-.57.03.7-.44-.37.22.74-.53-.3.2.65-.43-.24.15.63-.4-.13.21.47-.03.07-.3-.06.17.36a9.03 9.03 0 0 0-.35 3.52c.02.23.6.46.69.6.28.44.23.67.23.67-1.6 2.58-3.02 4.57-3.18 7.53 1.28-1.62 2.6-3.6 4.46-3.6-.92 1.54-1.35 6.17-.32 6.88l.77-1.36c.03 1.08.18 1.8.39 2.33.32-.65.64-1.28.96-1.75.07 1.51.27 2.72.7 3.32.43-.74 1.01-1.2 1.62-1.57-.2.86-.52 1.67-.39 2.7.65-1.1 1.3-1.75 1.94-2.51-.38 1.58-.04 2.77.41 4.52.4-2.08.56-2.3 1.52-3.17.1 1.9-.26 3.63.14 4.7.88-1.68 1.46-1.44 1.98-2.53-.1 1.58-.41 3.3-.01 4.7a4.48 4.48 0 0 1 1.94-2.67c.06 2.2.57 1.84-.8 3.7.58.27 2.54-.37 3.6-.83-.5 1.18-.35 2.1-.87 2.94 1.08-.54 2-1.42 2.9-2.32-.42 1.35-1.52 2.7-.97 4.05.25-1.26 1.28-2.3 2.24-2.49-.15.7-.25 2.17-1.27 2.88 2.44.25 3.4-1.4 4.64-2.7-.16 1.36-.12 2.44 1.55 4.35-.34-2.43.24-1.93 1.34-3.39.54 2.15 1.15 4.43 3.39 6.02-.93-2.27-1.1-3.44-.58-4.87.29 1.48 1.69 3.25 2.02 4.65.2-1.55.44-3.05.96-4.06.65 1.76 1.2 3.57 1.36 5.6.48-1 .88-2.03 1.16-3.08 19.73 20.62 24.13 46.84 2.5 74.54 7.78-5.25 9.78-13.57 14.1-20.67-4.21 9.3-6.09 19.74-13.51 27.43 7.19-6.2 8.71-11.89 13.03-17.87-4.6 12.5-10.98 26.2-19.82 38.75 1.57 1.7 3.14 3.44 4.72 5.18l4.1-6.84c9.37-15.44 24.65-37.5 16.91-71.15z'/%3e%3c/g%3e%3cpath fill='%23eac102' stroke='%23a08307' stroke-width='.22' d='M473.16 215.29c-1 .23-1.4.64-2.11 1.44.92.2 1.7.25 2.52.27.26-.03.34-.35.29-.59l-.13-.95c-.02-.22-.6-.2-.87-.09l.3-.08z'/%3e%3cpath fill='%23a08307' d='M471.04 216.73a9.89 9.89 0 0 1 2.13-.49 9.82 9.82 0 0 1-2.13.49z'/%3e%3cellipse stroke='%23000' stroke-width='.1' cx='477.68' cy='215.42' rx='.78' ry='.81'/%3e%3cellipse fill='url(%23n)' cx='477.86' cy='215.26' rx='.34' ry='.35'/%3e%3cg fill='%2334541f'%3e%3cpath d='M488.18 389.69a83.38 83.38 0 0 1 3.31-8.79c1.26-2.86 2.66-5.67 4.14-8.43a199.58 199.58 0 0 1 7.11-12.16l2.51-3.97-2.42 4.03-2.4 4.03c-1.58 2.7-3.14 5.41-4.61 8.17a133.67 133.67 0 0 0-4.18 8.4 98.1 98.1 0 0 0-3.46 8.72zm-18.84-9.46a75.8 75.8 0 0 0 26.08-19.07 153.49 153.49 0 0 0 6.95-8.34 111.9 111.9 0 0 1-6.83 8.45 81.9 81.9 0 0 1-7.74 7.63 69.95 69.95 0 0 1-18.46 11.33zm37.28-29.34a136.2 136.2 0 0 0 4.3-6.66c1.37-2.26 2.69-4.55 3.96-6.86a331.1 331.1 0 0 0 3.75-6.99l3.68-7.03-1.75 3.57-1.78 3.54c-1.2 2.35-2.44 4.7-3.71 7.01-1.29 2.31-2.6 4.6-4 6.85a93.84 93.84 0 0 1-4.45 6.57zm5.89-25.11a60.2 60.2 0 0 0 8.5-13.4 72.56 72.56 0 0 0 4.98-15.06l.41-1.95a61.14 61.14 0 0 0 .7-5.91c.17-2.65.17-5.3-.04-7.95a53.36 53.36 0 0 0-3.64-15.42 50.47 50.47 0 0 1 3.79 15.41 54.3 54.3 0 0 1-.32 11.94c-.08.66-.17 1.3-.28 1.97l-.41 1.95a72.68 72.68 0 0 1-5.06 15.09 58.22 58.22 0 0 1-8.63 13.33z'/%3e%3cpath d='M510.87 320.07a35.91 35.91 0 0 0 4.9-5.85 52.06 52.06 0 0 0 3.8-6.62c1.1-2.3 2.1-4.65 3.02-7.02.46-1.18.92-2.38 1.36-3.57l.33-.9.3-.9c.18-.6.35-1.22.58-1.83v.02c.5-2.53.77-5.1.8-7.67.03-2.58-.17-5.16-.57-7.7-.4-2.55-1-5.06-1.73-7.53-.73-2.48-1.6-4.91-2.56-7.3 1 2.38 1.9 4.8 2.66 7.27a57.63 57.63 0 0 1 1.77 7.54c.42 2.55.63 5.13.61 7.72a41.44 41.44 0 0 1-.78 7.71v.02c-.22.59-.4 1.2-.58 1.81l-.3.91-.34.9c-.45 1.2-.91 2.38-1.38 3.57a96.55 96.55 0 0 1-3.07 7.01 51.58 51.58 0 0 1-3.84 6.62 35.96 35.96 0 0 1-4.98 5.79z'/%3e%3cpath d='M505.05 349.23c1.2-1.66 2.39-3.33 3.57-5l1.78-2.5c.59-.84 1.2-1.66 1.73-2.54a68.5 68.5 0 0 0 2.9-5.4c.9-1.85 1.82-3.68 2.71-5.52 1.78-3.69 3.5-7.4 4.97-11.23a75.28 75.28 0 0 0 3.45-11.76c.85-4 1.41-8.06 1.88-12.13.43-4.06.48-8.18.04-12.25a52.36 52.36 0 0 0-2.72-11.94 72.65 72.65 0 0 0-5.1-11.16 72.6 72.6 0 0 1 5.2 11.13 52.4 52.4 0 0 1 2.77 11.96c.44 4.08.41 8.2 0 12.28-.46 4.07-1.02 8.14-1.86 12.15a75.52 75.52 0 0 1-3.5 11.79 145.12 145.12 0 0 1-5 11.22c-.9 1.85-1.82 3.67-2.73 5.51a67.34 67.34 0 0 1-2.92 5.4c-.53.89-1.16 1.7-1.75 2.53l-1.8 2.5c-1.2 1.65-2.4 3.31-3.62 4.96z'/%3e%3cpath d='M507.81 352.25c2.36-3.84 4.71-7.68 6.95-11.58 2.25-3.9 4.49-7.82 6.47-11.86a81.9 81.9 0 0 0 5-12.52 74.15 74.15 0 0 0 2.71-13.2c.59-4.46.93-8.96.93-13.46s-.37-9-1.2-13.42a57.58 57.58 0 0 0-3.98-12.87 54 54 0 0 0-6.96-11.53 54.08 54.08 0 0 1 7.06 11.49 57.58 57.58 0 0 1 4.02 12.88 73.26 73.26 0 0 1 1.24 13.45 102.9 102.9 0 0 1-1.37 16.83 74.24 74.24 0 0 1-2.28 9.88 82.1 82.1 0 0 1-5.04 12.53c-2 4.05-4.24 7.96-6.5 11.85a442.64 442.64 0 0 1-7.05 11.53zM480 220.77c.47-.01.95.04 1.42.11a18.85 18.85 0 0 1 4.08 1.25c1.74.77 3.37 1.77 4.9 2.9a35.81 35.81 0 0 1 6.16 5.9c.6.74 1.2 1.48 1.76 2.24a60.86 60.86 0 0 0-3.78-4.23 37.82 37.82 0 0 0-4.27-3.73 26.78 26.78 0 0 0-4.84-2.93c-.86-.4-1.74-.74-2.65-1-.9-.27-1.83-.47-2.78-.51z'/%3e%3c/g%3e%3cg fill='%23448127'%3e%3cpath d='M496.38 231.57s3.06 1.8 4.73 4.44c0 0-4.72-.88-8.07-4.65'/%3e%3cpath fill='%2334541f' d='M496.38 231.57a14.43 14.43 0 0 1 2.66 1.9 13.11 13.11 0 0 1 2.16 2.48l.13.22-.24-.06a15.7 15.7 0 0 1-4.41-1.75c-1.37-.79-2.63-1.8-3.64-3a15.17 15.17 0 0 0 3.72 2.86c.68.38 1.4.72 2.12 1 .73.28 1.49.52 2.25.68l-.12.17c-.28-.46-.6-.9-.96-1.3a16.08 16.08 0 0 0-2.36-2.23c-.42-.34-.86-.67-1.31-.97z'/%3e%3cpath d='M489.58 230.69s7.23 4.61 8.27 4.98c0 0-1.6-3.48-5.05-4.97'/%3e%3cpath fill='%2334541f' d='m489.58 230.69 4.14 2.49a156.88 156.88 0 0 0 3.11 1.84c.35.2.7.4 1.06.55l-.13.14a12.91 12.91 0 0 0-2.07-2.9 10.73 10.73 0 0 0-2.89-2.11c.56.22 1.1.5 1.6.85a11.03 11.03 0 0 1 3.55 4.08l.12.24-.25-.1c-.77-.33-1.44-.76-2.14-1.17l-2.06-1.27c-1.36-.86-2.7-1.73-4.04-2.64z'/%3e%3cpath d='M492.46 228.36s3.76 1.6 4.61 4.38c0 0-6.75-2.84-7.96-4.35'/%3e%3cpath fill='%2334541f' d='M492.46 228.36a10.67 10.67 0 0 1 2.8 1.68c.43.35.81.75 1.14 1.2.33.44.61.93.77 1.47l.07.22-.21-.1a77.2 77.2 0 0 1-4.13-1.93c-.68-.35-1.35-.71-2-1.11-.32-.2-.64-.4-.95-.63-.3-.23-.6-.47-.84-.77.25.29.56.5.87.72.32.21.65.4.98.6a84.15 84.15 0 0 0 6.16 2.94l-.15.12c-.16-.5-.41-.98-.73-1.42a7.8 7.8 0 0 0-1.09-1.18 12.7 12.7 0 0 0-2.7-1.81z'/%3e%3cpath d='M486.76 231.25s6.65 4.76 8.61 4.76c0 0-1.95-3.26-5.39-4.75'/%3e%3cpath fill='%2334541f' d='M486.76 231.25a124.04 124.04 0 0 0 4.18 2.65c.7.42 1.42.83 2.16 1.2.37.18.74.36 1.12.5.37.15.77.3 1.15.3l-.09.16a15.68 15.68 0 0 0-2.32-2.76 12.98 12.98 0 0 0-2.98-2.04c1.13.45 2.17 1.13 3.09 1.93a12.97 12.97 0 0 1 2.4 2.76l.1.17h-.2a3.76 3.76 0 0 1-1.23-.31c-.39-.16-.77-.34-1.13-.53-.74-.38-1.46-.8-2.16-1.22a63.89 63.89 0 0 1-4.09-2.81z'/%3e%3cpath d='M486.76 232.74s3.46 2.92 5.43 2.92c0 0-1.95-3.26-5.4-4.75'/%3e%3cpath fill='%2334541f' d='M486.76 232.74a32.06 32.06 0 0 0 2.59 1.74c.44.26.9.5 1.37.7.24.1.48.2.73.26.24.07.49.11.74.12l-.1.15c-.3-.5-.67-.99-1.06-1.45a13 13 0 0 0-4.23-3.35c1.13.45 2.16 1.13 3.08 1.93a12.95 12.95 0 0 1 2.4 2.77l.1.15h-.2c-.54 0-1.06-.18-1.54-.39-.48-.2-.94-.46-1.39-.74a20.06 20.06 0 0 1-2.49-1.89z'/%3e%3cpath d='M485.03 226.18s7.2 5.12 8.06 7.9c0 0-6.52-3-7.73-4.5'/%3e%3cpath fill='%2334541f' d='M485.03 226.18a51.63 51.63 0 0 1 4.5 3.49c.73.62 1.42 1.28 2.06 1.99.32.35.63.71.91 1.1.28.4.55.8.7 1.28l.06.24-.22-.1a79.6 79.6 0 0 1-4-2.04c-.66-.37-1.31-.74-1.94-1.15-.32-.2-.62-.42-.92-.65-.3-.23-.6-.47-.82-.77.25.29.55.5.85.73.3.21.62.4.94.6.64.39 1.3.75 1.96 1.1 1.33.69 2.66 1.36 4.02 1.98l-.14.13a4.68 4.68 0 0 0-.66-1.22c-.27-.39-.57-.75-.89-1.1-.63-.7-1.32-1.35-2.02-2a71.2 71.2 0 0 0-4.4-3.62z'/%3e%3c/g%3e%3cg stroke='%2324420e' stroke-width='.16'%3e%3cpath fill='%23406325' d='M445.02 370.33c-4.89 3.64-18.55 5.43-20.45 4.8 9.94-8.27 19.73-8.47 20.45-4.8zm69.76 4.44c5.25 4.77 21.1 8.05 23.48 7.46-10.55-10.77-22.1-11.86-23.48-7.46z'/%3e%3cpath fill='%2367923d' d='M444.98 370.3c-.72-3.67-10.46-3.45-20.38 4.78 10.45-3.45 19.24-5.41 20.38-4.78zm69.91 4.41c1.37-4.4 12.8-3.34 23.36 7.46-11.88-5.02-21.94-8.1-23.36-7.46z'/%3e%3c/g%3e%3c/svg%3e\"},6296:c=>{c.exports=\"data:image/svg+xml,%3csvg clip-rule='evenodd' fill-rule='evenodd' image-rendering='optimizeQuality' shape-rendering='geometricPrecision' text-rendering='geometricPrecision' viewBox='0 0 216958.34 116416.66' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0-.005h216958.33V116416.66H0z' fill='%23c62139'/%3e%3cpath d='M5291.666 5291.667h206375v105833.331h-206375z' fill='%2300297b'/%3e%3cpath d='M108537.167 28617.296s-18122.53 14420.028-18122.53 29399.058c0 14981.029 18122.541 29783.057 18122.541 29783.057s18006.53-13724.025 18006.53-29783.057c0-16057.03-18006.54-29399.058-18006.54-29399.058z' fill='%2392dbfc'/%3e%3cpath d='M92419.719 67159.562c4716.233 11327.588 16117.447 20639.81 16117.447 20639.81s11603.943-8844.17 16181.373-20640.687' fill='%23008ce7'/%3e%3cpath d='M124781.681 63890.343c-2794.003 1999.002-18515.022 1039-18515.022 1039l-879.002 2238.004 18719.024 57.999c78-306.998 265-672 330-982.002z' fill='%239c8431'/%3e%3cpath d='M96651.642 73153.356c796.01 26.008 1589.01 193.997 2301.011 576 1273 668 2011.001 662.999 3383 683.999 1436.002 21.987 2563.004 1079.003 4115.006 1123.003 2859.004 80 4061.005 1500.001 1838.002 1499.001-1050.002-1.059-3301.004-706.001-4389.006-558.001-1654.002 168-2610 294.002-3834.001 1267.003-1166.001-1400.001-2332.002-2940.004-3414.012-4591.005zm5656.011 7128.008c709.002-485.002 1197.002-864.002 1885.002-885.002 1337.002-41 1793.003-868 3338.005-867 1756.003 322 4136.005-211 5529.007-520.002 2473.004-570 1300.002-2300.004-197-2928.003-1210.002-518.001-3478.004-26.009-4885.006-540.001-1065.002-416-187-1079.001 386-1220.001 578-106 1198.002 85 1917.002 201.999 1284.002 113.001 2897.004-7.011 4025.006-182 2331.002-356.998 2235.001-1041 3360.005-1057.002 821-38 1446.002-281.998 2006-682.001 658.002-439 1343.003-1340.002 2139.004-1304l468.002 20.003c-4916.007 9510.012-13745.019 15753.018-13745.019 15753.018s-2853.004-2184.001-6226.008-5790.005z' fill='%23ffde52'/%3e%3cpath d='M113608.667 73315.355c305.001 1180.003 628.002 1581.003 1868.003 1884.001 1224.002 303.001 3094.003-887 1935.004-2042.003-1103.004-1074-2265.005-1349-3253.005-2316.003-1533.002-1520-3636.006-4662.006-4635.006-7633.01-1093.002-3248.003-903.002-12392.016-854.002-17024.022 1.006-54 133-86 148-108 71-102 139 33 28.001-646-29-174-167-354-166-530 1.005-314.002-1084.001 343-1370.003 903-65 128 208.001 493 208.001 565 37 4444.006-441 13218.017 739 17190.024 730.001 2459.003 2062.003 4358.006 3268.005 6115.007 723.001 1126.001 1769.002 2341.003 2084.002 3642.006z' fill='%238c4200'/%3e%3cg fill-rule='nonzero'%3e%3cpath d='M100086.654 60304.335c-14-2.117-69-8.996-122-16.007-377-46-780-204.999-1075.001-425-420-313-698-814.002-791-1429.003-26.01-172-25.01-615 1-784 74-474.999 248-894.002 498-1200 74-90.001 216-228.002 303-293.002 205-156 470-278.002 749-346 200-50 323-65 563-72 334.001-7.99 569.001 22.013 833.001 110 338 111.002 600.005 291 785.005 537.002 125 165.999 287 534.998 310 705.001 12 92.998-25.001 162-107 196.998-26.001 11.006-156 50.001-290 86-269.004 72.002-307.004 74.002-367.004 23.998-40-33.999-54-60-89-169-16-46-55-139.999-88-207-51-102.999-72-134-141-203-69-69.999-99-90.999-202-141-228-111.001-484.001-149-779.001-113.001-216 26.008-450 114.001-597 225.001-327 246-509.001 732-490 1306.001 25 783 357 1214.002 1040 1351.003 131 26.008 417 26.008 557 0 204-38 503-155.001 672-263.001l61-38v-249l1.01-250.002-539-3.995-539-3.996-34-23.997c-19-13.997-45-40-58-59-24-33-24-38.002-24-331.002 1-293 1-298 25-331 13-18.996 40-45 59-58.001l34-25.003 923 2.117 924 2.117 33 23.997c19 12.99 45 42 59 64l24.001 39.003 2.01 765c2.011 815 0 848-49 907-13.999 17.013-78 69-141 115.002-436 320.998-900 511.998-1377 567-123.001 13.996-481.001 18.996-557.001 7.99zm4829.003 41.003c-483-37.002-848.002-181.002-1114.002-438.002-262-253-392-570-450-1098-17-147-18-302.002-17-1496.004 2.01-1286 3-1334 23-1373 11.002-22.014 37-53.002 57-69l38-28.002 317.001-2.99c306-2.116 319-2.116 364 20.003 28 13.996 56 39.002 71 62l24.001 39.003 4 1380c3.001 1216.003 5.001 1393.001 20 1489.002 40 250 80 343.002 197 460 147 146 300 200.002 590 210 267.002 7.99 450.002-22.013 607.002-99 181-88 263-226.998 325-544.999 23-120.002 23-139.002 32-1501.004 9.001-1543 2.011-1415 85-1478l39-29h330.002c368 1.057 357-1.059 416 76.999l30 39 1.005 1238.001c1.006 1242.003-5 1502.003-38 1736.005-71 497.998-236 812.998-554 1059-107 82.999-151 111-256.001 162.999-161 81-347 136.001-558 166-110 16.007-471.001 27-583.001 18.996zm4322.006-67.001c-14-2.99-45-26.008-70-50-51-51.002-65-98-50-162 18.998-79.002 1583.001-4115.006 1608.001-4147.005 49-66 63-68 429-67 366.001 0 380.001 2.99 430.001 68 12.999 18.998 401.001 958.001 862.002 2089 732 1797.004 837 2062.003 837 2110.004 0 60.999-24 103-81 144-34 23.997-35 23.997-401 22.991h-367l-40-30.998c-51-39-50-35.002-287.002-655-108-283.001-201-523.002-207-533-9-17.992-55-18.997-735-20.003-681.002-1.058-726.002 0-733 17.013-4.002 10-96.002 261.998-205.002 559.998-108 297-206 556.001-218 575.001-11.999 18.997-37 45-55 58.002-33 23.997-39 23.997-363 25.003-181 1.058-340-1.058-354-3.995zm2343.002-2066.003c-15.999-45-404-1083-414-1108-4-11.008-9.001-6.007-17 16.006-18 54.001-415 1113.002-420 1122.001-3 3.995 191 7.99 430 8.996h436.001zm3314.005 2062.003c-46-13.997-96-67-109-116.002-7.002-27.998-9.002-713-4.001-2121.001l7.001-2079.002 28-38c56-73 51-72 552-71 417 1.057 452 2.115 487.002 20.001 20.002 11.007 46.998 35 58.999 53 11.986 17.013 244.999 702 517.001 1520.003 273 818.002 498 1488.002 501 1488.002 2.99 0 235-665.002 516-1477.003 319.002-924 521-1493 538.003-1519 56-81 50.998-80 510-79 390.999 0 408.999 1.058 446 22.013 21.009 11.985 49.999 40 65 61l26.01 40-2.99 2091.003c-3.995 1971-5.001 2093.001-22.992 2125.002-10.002 17.992-36.002 46.998-58.002 63l-39 29.998-319-1.058c-316 0-319 0-353-25.003-18.997-12.99-45-39.002-58.002-58.002l-25.003-33.999-2.99-1200.002-2.99-1199-55.999 158.999c-31 88-221.001 632-422.002 1209-353 1011.003-368 1052.003-409 1094.003-25.002 26.01-56 46-77 50.001-20.003 3.995-153.002 6.985-297 6.985-251-1.058-264-2.117-309-25.003-26.009-12.99-57.002-39-69-56.999-12.013-17.992-207-581.002-433.002-1251.001-226-669.002-415-1217.002-419-1217.002-5 0-8.998 542.002-10.998 1206-2.011 1351.003 4 1252.004-80 1308.003l-43 28.001-298 1.058c-164.002 1.06-313.002-2.99-331.002-8.996z' fill='%23fff'/%3e%3cpath d='M100058.654 60119.336c-542-62-1030-302.001-1324.001-652-248-294-408-682-461-1118.003-17-143.999-16-484 2.01-621.998 62-475.002 250-918.002 519-1223.003 459-521 1412-731.003 2186.001-481 488 156.999 778 454.999 943 966 23 71 40 131 38 134-6.001 3.996-422 117.002-453 123-18 2.99-27-13.997-54-93.999-77-226.002-194-414.001-324-518.001-284-226-684-309-1153-238.001-300 46-598 200.002-769 398-257.001 297.003-384.001 661-400.001 1142.003-15 476 71 839 270 1139 323 488 1075 706.002 1744.001 506 214-64 447-174.997 611-292l75.999-53.998 1.006-385v-386.002l-604.005-1.058-605-1.058 1.01-236.001v-236l864 2.116 864.001 1.059-2.011 752.001-1.006 752-95 70c-389 286.002-779.004 459.003-1196.004 533.001-154 27.001-522 37-678 18.997zm4787.003 36.999c-392-43-697.002-169-913.002-379-197-191-310-428-369-772.998-42-248.003-45-376.003-43-1696.005l2.01-1293.001 265.001 1.059h264l2.011 1379c2.011 1467.002 1.006 1443.002 57 1664.004 71 282 281 491 581.002 578 240 70 564 71 837 2.99 324-81 498-255 586-585.001 68-253 67.002-229 74-1690.002l7.002-1345.001 265 1.058h264l-3 1247c-1.005 718-7.001 1317.001-14 1413.003-45 632-209 974-592 1233-151 103-356 181-582 223-98 17.992-576.001 31.001-688.001 18.997zm4474.006-113.998c12.999-33.002 366-948.002 785-2034.004l763.002-1974.002 286-2.117 287-2.99 822.001 2020.003c452 1111.002 825.001 2029.003 829.001 2040.004 7.001 18.998-11.001 20.003-292 20.003l-300-1.058-52-135.001c-29-74-134-351-235-614l-183.002-478.003-862-3.995-862.002-5-224 616-224 616.001-281-1.059h-280zm2534.002-1625.003c-3-11.007-121-326-261-700.001-140-374-298-808-350-966.002-52-157-97-288-99-291-3-2.99-23 66-44 153.001-69 289-135 487-381 1137.003-133 354.999-246 654-250 664.998-8.002 18.997 30 20.003 691 21.008 660 1.06 699 0 694-18.997zm3112.005-354 4-2039.001 400 3.995 399 3.995 540 1625.003c297 893 557.001 1680.002 577.001 1749.003 21.008 68 40 121.999 43 119.999 2.117-2.99 69.001-196.001 148-430.001 80.003-233 350.002-1017.001 601.002-1742.003l457.002-1318.001 358-2.116 358-2.117-3.995 2038.002-3.995 2039.004-253-1.058h-253l2.99-1713.003c2.115-942.002-1.06-1707.003-7.013-1701.002-5 6.006-256 718-557.001 1582.003-300.998 864-568 1629-593 1700l-46 129.002h-477.999l-582.002-1726.003c-320-949-586-1733.003-591-1743.002-5-8.996-10.999 767.001-12.999 1725.003l-4 1741.001h-253l-253-1.058z' fill='%23bd0728'/%3e%3c/g%3e%3cpath d='M97273.642 44871.316c77 106.001 66 563.001 66 563.001 63 38 1085.01-870.001 1085.01-829.001 1 191.001 24 585.001 24 585.001s1058.001-1006.001 1102.001-900.001c49 119-4 702.001-4 702.001s704-776.001 833-916.001c93.001-100 78.001 126 87.001 491 2.01 65 1153.998-850 1223.998-866 149-32 195 475 187 602-6 94 1063.002-610 1016.002-517l79 541c298-41 1008.001-306 1435.001-237 137 22 130 91 8.001 141-2058.002 833.001-3641.002 2089.002-4563.002 3839.005-314 596-410 1116.001-327 1247.001 0 0 370-796 787-921 56-16 93 510 150 480 0 0 316-798.002 544-1092.002 61-79 163 419.001 228 345.001 0 0 164-534.001 484.999-906.001 46-53 129 505 180 458 333.001-307 646.001-1077 771.001-1134 87-68 102 640 185 579 0 0 475.002-954.002 759.002-1127.002 182-112 175 521 175 521 362-357 761-949 950-1206 87.002-118 39 780 132 815 119 46 899.002-688 987.002-703 58-10.002 126 209-26 385-12.002 13.999-964.001 1112.001-964.001 1112.001 185 35 257-17 390 18 395 104-740.001 755.001-721.001 877.001 0 0 547-10.002 364 96-132 77-855 1008-855 975.002 0-17 363 8 361 112-3 193-601 1188-607 1182-33-33 321-43 369 55 88 181.002-614.001 986.002-477.001 1123.002 18.999 19 401 6.001 571 44 82 18 312 1462.002 254 1404.002-12.997-13.999 246.002-1354.001 403.002-1762.002 96-247 403 373 428 318-12.999 0-62-881.001-19-1282.001 12-112 233 117 230 10.002-8-243.002-28-503.002 22-740.002 38-179 226 323 299.001 188 0 0-228-872-133-1118 63-162.002 215 392 315 414 0 0-56-678.002 49-853.002l317 340.001c69-109 56-1165.001 120-1264.001 53-83 382.001 396 431.001 321 44-68-139-852.002-98-914.002 58-89 419.001 218 426 212.001 147-148 142.001-517.001 204.001-654.001 166-371 1118.001-419 1230.001-155 55.001 128 17 293-5 492 9.001 8.001 477 42 481 6.001 0 0-56 437-23 918.002 5 64 475-16 481 48 43 453-61 495-61 495 4 33 317.001-48 322.001-12.999 34 221-37 490-177 749-21 37.002 448-36 455 7.002 57 340 68 610.001 9.001 1090.001-5 39 459.001-339 466.001-300 70 404-10.999 840 31 1258.001 10.001 97.001 307-289 334-177 27 110-66 910.001-21 955.001 0 0 497.001-25 541.001 17 394.001 370 319 1016.001 319 1016.001 108-80 67.001-858-42-1570.002-12-75 382.001-46 370.001-116 0 0-432-260-574-984.002-30.001-155 417-123 417-123-124-285-342-339-527.001-613-60-90 464-131 464-157 1.006-273-442-403-671-687-98-121 478-127.002 478-127.002-169-235-726-338-1010-649-155-169 565-335 556-364-79-249-756-327-1084.002-608.002-68-58 428.001-254 428.001-254-50-106-1131.001-817-581-752 232 28 703 358 740 308 0 0-20-415 28-465 181-188.002 805.001 798 1017.001 758 0 0 78-706 174.001-725 228-43 506 1028 731 1028 30 0 47-619 163-653 131.001-38 278.001 694 444.001 856.001 154.001 149 156.001-572.001 246.001-435.001 153 221 190 682.001 399 885.002 136 132 161-636.002 312-533.002 175 119.001 134 517.002 331.001 713.002 94 93 157-507 264-419 95 77 159 811 261.001 927 130 148 280-387 415-302 97 62 74 697 164 833 184 282.002 280.002-341 402.001-245 85 65 269 795.002 346.001 853.002 171 130 265-332 395-267 94 46 284 986 362 962 51-15.999 177-2142.002-641.002-3039.004-1333-1462.002-3720.003-2306.002-5668.005-2327.002 0 0 979.001-195 1005-357 52.001-323 538.002-285 877.002-211 60 12.999 28-571.002 36-574.002 303-7 574.001 172 864.001 348 90 55-183-585-87-530 372 215 786 278 1037.001 539 66 69.002-76-493-76-493 186-45 553.001 223 697.001 474 70 124.002-4-655 51-517 0 0 648 220 718 493 0 0 53.002-494 140-468 260.001 68 488.003 507 691.002 570 0 0-84-440-17.992-423 488 123 1018.001 425 1017.001 423-275-688-1318.002-1409.001-3153.004-1602.002-337-34.999-1704.002-91-2863.004 178.002-950 220-1700.002 345-1546.002 195 628.002-615.002 1643.002-690.002 1922.003-833.002 200-102-673-439-500-487 172-41 952-106 952-106 169-132-567-390.001-457-582.002 220-385 1521.002-35 1632.003-181 36-49-559.002-401-534.002-453 95-195 1253.002 144 1280.002-26 0 0-351-262-601-477.001-30-26 1034-312 1034-312-20-20-182-134-426-229-223-87 934.002-388 934.002-388-1466.002-670.002-5271.008 1236-6026.008 3214.003-196 472-202-41-161-441.001 39-430 93-807 47-1202.002-14-117-311 311.001-331 197.001-76-420 149-881.001 46-1347.001-34-157-428.002 463-480.002 306-144-431 108-1037.002 6.001-1631.002-40-232-413 497-538 289-146-241-82-1134.002-151-1269.002-56-108-388.001 428-416.001 327-450-1637.002 148-1841.002-716-918-30.001 32-222.001-968.002-255.001-934.002-354 758.002-934.002-540-1132.002-419-148 92 404 594 410 820 3.001 109-508 116-508 116 11 187 972.002 711.002 1003.002 916.002 25 169-680.002 127-680.002 127 22 229 823.002 447 867.002 690.002 25 134-375 164-362 300 21 209 774 622 799 835.001 17 148-481 209-493 347-15 167 1000 727.001 1001 884.001 1.006 222-404 108-588 220-259 157.001 831 793.001 877.002 974.002 36 159-436.002 19-452.002 164-20 190 534.002 477.001 661.002 803.001 127 322-3.001 404-185.001 276-365-257-1837.002-1821.002-2228.003-2238.003-568-606-1731.002-1285-2891.004-1325-121 37 624.002 564 629.002 755 1.005 49-335.001 122-320.001 137 206 206 847.001 451 847.001 451l-184 331.001c43 97 347 123 834 283 0 0-365 226-338 247 258 206 758.002 358 758.002 358l-492.001 165c-29 95 1107.001 550.002 1107.001 550.002s-355 306-339 322c87 87 922 280 922 280 14 14-590 202-586 206 219 219 823.002 290.001 964.002 652.002 0 0 83 206-156 167-940.002-341-2396.004-1047.001-5219.004-770.001-2886.011 376.001-5085.013 2885.003-5047.013 3135.004 0 0 1032-740.001 1141.001-590z' fill='%23109421'/%3e%3cg fill='%238c4200' transform='translate(201503.018 49556.295)'%3e%3cellipse cx='-76406.734' cy='-54552.762' rx='609.989' ry='646.731' transform='rotate(-32.773) skewX(.012)'/%3e%3cellipse cx='80113.359' cy='46920.699' rx='696.674' ry='738.637' transform='matrix(-.84082 -.54131 -.5415 .8407 0 0)'/%3e%3cellipse cx='80494.336' cy='47852.852' rx='743.691' ry='788.485' transform='matrix(-.84082 -.54131 -.5415 .8407 0 0)'/%3e%3c/g%3e%3cpath d='M102199.713 69706.336h919v687h-919z'/%3e%3cpath d='M97603.708 70148.337s6037.009 459.999 9739.011-334.999c0 0 311.001 210.999-136 732.999-447 521.001-1578 632.999-2199.001 745 0 0-149 335-137 509 12.999 174.001 392 156.001 578 118.002l186-37.002s-87 652.002-2372.001 739.002c-750.001 28.998-3222.999 81-3745.999-652.002 0 0 453 37.002 571 0 118-36.999 32-509-12.01-578.001-42.99-67.998-1603 0-2422-757.999-203-216.001-300-446-300-528 0-7.012 250 44 250 44zm3146.01 1267s1651.998 211 3553 0c0 0 50 360-37.001 497.001-87 136.999-2280.001 242.001-3385.999 50.001-178-57.002-184-275.003-130-547.002z' fill='%238c4200'/%3e%3cpath d='M98443.718 69854.337s2240-2382.001 1554-7352.007c0 0 2333.998 601.001 4713 4034.005 0 0 694 697 1510.001 3183.001z' fill='%23fdf9ff'/%3e%3cpath d='M108540.72 26889.305S89359.708 41168.314 89359.708 58005.326c0 16839.012 19181.012 31522.022 19181.012 31522.022s19058.02-13472.01 19058.02-31522.022c0-18049.013-19058.02-31116.021-19058.02-31116.021zm-7 3456.003S91469.708 43048.315 91469.708 58027.326c0 14981.012 17064.012 28044.022 17064.012 28044.022s16955.02-11985.01 16955.02-28044.022c0-16057.011-16955.02-27682.018-16955.02-27682.018z' fill='%23c62139'/%3e%3c/svg%3e\"},2203:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-2 -3 12 6'%3e%3cpath fill='%23ce1126' d='M-2-3h4v6h-4z'/%3e%3cpath fill='%23fcd116' d='M2-3h8v3H2z'/%3e%3cpath fill='%23009e49' d='M2 0h8v3H2z'/%3e%3cg id='b'%3e%3cpath id='a' d='M0-1v1h.5' transform='rotate(18 0 -1)' fill='%23000'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(216)'/%3e%3cuse xlink:href='%23b' transform='rotate(288)'/%3e%3c/svg%3e\"},5418:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 300'%3e%3cpath fill='%23009e49' d='M0 0h500v300H0z'/%3e%3cpath d='m0 0 500 150L0 300z' fill='%23fff'/%3e%3cpath d='M0 13.05 456 150 0 286.95z' fill='%23fcd116'/%3e%3cpath d='m0 0 250 150L0 300z'/%3e%3cpath d='M0 17.5 220.85 150 0 282.5z' fill='%23ce1126'/%3e%3c/svg%3e\"},9588:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 600'%3e%3cpath fill='%23de2910' d='M0 0h900v600H0z'/%3e%3cg id='a'%3e%3cpath d='M449.964 299.913c-105.263-44.486-58.602-181.581 42.07-174.69-20.366 10.467-23.318 29.997-11.687 48.09 13.024 20.256-1.2 52.848-18.806 60.767-28.935 13.025-34.728 47.75-11.577 65.833z' fill='%23fff'/%3e%3cpath d='m444.272 200.92-5.92 9.294-2.144-10.815-10.679-2.759 9.625-5.39-.671-10.999 8.085 7.49 10.256-4.043-4.61 10.01 7.001 8.505zm6.288 97.839c-12.731-6.534-22.996-20.155-27.468-36.431-5.115-18.67-2.173-38.743 8.083-55.038l-2.208-1.394c-10.64 16.929-13.693 37.743-8.386 57.12 4.728 17.221 15.214 31.097 28.787 38.064z' fill='%23de2910'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='rotate(72 450 300)'/%3e%3cuse xlink:href='%23a' transform='rotate(144 450 300)'/%3e%3cuse xlink:href='%23a' transform='rotate(216 450 300)'/%3e%3cuse xlink:href='%23a' transform='rotate(288 450 300)'/%3e%3c/svg%3e\"},6382:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 10080 5040'%3e%3cdefs%3e%3cclipPath id='b'%3e%3cpath d='M0 0h6v3H0z'/%3e%3c/clipPath%3e%3cclipPath id='c'%3e%3cpath d='M0 0v1.5h6V3zm6 0H3v3H0z'/%3e%3c/clipPath%3e%3cpath id='a' d='m0-360 69.421 215.845 212.038-80.301L155.99-35.603l194.985 115.71-225.881 19.651 31.105 224.59L0 160l-156.198 164.349 31.105-224.59-225.881-19.651 194.986-115.711-125.471-188.853 212.038 80.301z'/%3e%3cpath id='e' d='M0-210 54.86-75.508l144.862 10.614L88.765 28.842l34.67 141.052L0 93.334l-123.435 76.56 34.67-141.052-110.957-93.736L-54.86-75.508z'/%3e%3cuse id='d' xlink:href='%23a' transform='scale(2.1)'/%3e%3c/defs%3e%3cpath fill='%23012169' d='M0 0h10080v5040H0z'/%3e%3cpath d='m0 0 6 3m0-3L0 3' stroke='%23fff' stroke-width='.6' clip-path='url(%23b)' transform='scale(840)'/%3e%3cpath d='m0 0 6 3m0-3L0 3' stroke='%23e4002b' stroke-width='.4' clip-path='url(%23c)' transform='scale(840)'/%3e%3cpath d='M2520 0v2520M0 1260h5040' stroke='%23fff' stroke-width='840'/%3e%3cpath d='M2520 0v2520M0 1260h5040' stroke='%23e4002b' stroke-width='504'/%3e%3cg fill='%23fff'%3e%3cuse xlink:href='%23d' x='2520' y='3780'/%3e%3cuse xlink:href='%23a' x='7560' y='4200'/%3e%3cuse xlink:href='%23a' x='6300' y='2205'/%3e%3cuse xlink:href='%23a' x='7560' y='840'/%3e%3cuse xlink:href='%23a' x='8680' y='1869'/%3e%3cuse xlink:href='%23e' x='8064' y='2730'/%3e%3c/g%3e%3c/svg%3e\"},5220:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 72 36'%3e%3cpath style='fill:%230073cf' d='M0 0h72v36H0z'/%3e%3cpath style='fill:%23fff' d='M0 12h72v12H0z'/%3e%3cg id='c' transform='matrix(2 0 0 2 36 18)' fill='%230073cf'%3e%3cg id='b'%3e%3cpath id='a' transform='rotate(18 3.157 -.5)' d='M0 0v1h.5z'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(-72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(-144)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='translate(10 -3.2)'/%3e%3cuse xlink:href='%23c' transform='translate(10 2.8)'/%3e%3cuse xlink:href='%23c' transform='translate(-10 -3.2)'/%3e%3cuse xlink:href='%23c' transform='translate(-10 2.8)'/%3e%3c/svg%3e\"},1276:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1200 600'%3e%3cpath fill='%23171796' d='M0 0h1200v600H0z'/%3e%3cpath fill='%23fff' d='M0 0h1200v400H0z'/%3e%3cpath fill='red' d='M0 0h1200v200H0z'/%3e%3cpath fill='red' d='M600.037 455.185c64.152 0 116.636-52.487 116.636-116.635V199.954H483.399V338.55c0 64.151 52.487 116.635 116.635 116.635z'/%3e%3cpath fill='%23fff' d='M600.037 453.316c62.928 0 114.411-51.485 114.411-114.41V202.198H485.623v136.706c0 62.929 51.486 114.411 114.414 114.411z'/%3e%3cg fill='red'%3e%3cpath d='M533.916 206.5h-44.03v48.376h44.03zm0 96.749h44.03v-48.373h-44.03zm-44.03 35.387c0 4.393.272 8.726.779 12.988h43.251V303.25h-44.03v35.387zm132.094-35.387h-44.034v48.375h44.034zm0 96.748h44.03v-48.373h-44.03zm44.03 26.463A111.488 111.488 0 0 0 691.15 400h-25.14v26.46zm-132.091-26.463h44.03v-48.373h-44.03zm-25.18 0a111.46 111.46 0 0 0 25.18 26.492v-26.492h-25.18z'/%3e%3cpath d='M607.632 448.373a109.46 109.46 0 0 0 14.345-1.958v-46.418h-44.03v46.424c4.668.957 9.445 1.611 14.303 1.949 5.127.317 10.254.299 15.379 0zm101.585-96.749c.51-4.277.782-8.625.782-13.033v-35.34h-43.992v48.376h43.21zm-87.237-48.375h44.03v-48.373h-44.03zm0-96.749h-44.03v48.376h44.03zM710 254.876V206.5h-43.99v48.376z'/%3e%3c/g%3e%3cpath fill='%23fff' d='m712.464 198.535 27.3-61.885-20.799-33.587-34.46 12.758-24.194-27.656-31.88 18.27-28.426-23.282-28.427 23.281-31.88-18.27-24.197 27.654-34.46-12.757-20.805 33.595 27.265 61.897c34.357-15.55 72.451-24.214 112.507-24.214 40.037 0 78.114 8.658 112.461 24.196z'/%3e%3cpath fill='%230093dd' d='m516.26 118.552-.051.06-34.173-12.655-19.123 30.876 7.325 16.656 18.558 42.126a274.588 274.588 0 0 1 43.227-14.953l-15.76-62.107z'/%3e%3cpath fill='%23fff' stroke='%23000' stroke-width='.35' d='M514.293 149.084a16.572 16.572 0 0 1 1.916 7.752c0 9.2-7.503 16.703-16.703 16.703-8.107 0-14.896-5.83-16.395-13.51 2.885 5.1 8.362 8.554 14.618 8.554 9.244 0 16.786-7.538 16.786-16.785 0-.925-.077-1.83-.222-2.717z'/%3e%3cpath d='m498.985 125.975-.056.275-1.165 5.995 4.6 4.02.21.183-.266.092-5.773 1.99-1.182 5.993-.056.275-.21-.186-4.61-4.005-5.778 1.973-.27.092.057-.279 1.164-5.992-4.597-4.02-.213-.186.266-.092 5.773-1.987 1.182-5.993.056-.275.21.184 4.61 4.007 5.778-1.972z'/%3e%3cpath d='m492.048 134.488 4.31 3.758 5.393-1.857zm.035-.19 9.707 1.899-4.295-3.756zm-10.42-2.041 9.704 1.899-4.31-3.756zm9.668 2.091-9.707-1.898 4.295 3.753zm.542-.364 6.499-7.455-5.4 1.842zm-6.978 8.006 6.498-7.455-5.408 1.854zm6.646-7.328-6.498 7.456 5.4-1.843zm6.979-8.006-6.499 7.455 5.409-1.854zm-7.023 7.352-3.208-9.354-1.105 5.598zm3.445 10.047-3.208-9.354-1.1 5.61zm-3.025-9.419 3.208 9.357 1.105-5.599zm-3.444-10.048 3.208 9.358 1.098-5.614z' fill='%23f7db17'/%3e%3cpath fill='%23171796' d='m571.874 109.257-.059.047-31.614-18.115-23.942 27.363 15.761 62.108a274.725 274.725 0 0 1 45.147-7.542l-5.296-63.86z'/%3e%3cpath d='M528.11 165.245a290.314 290.314 0 0 1 47.745-7.974l-1.339-16.143a306.934 306.934 0 0 0-50.392 8.416l3.983 15.701zm-7.923-31.214a322.445 322.445 0 0 1 53.005-8.853l-1.315-15.847a338.401 338.401 0 0 0-55.603 9.286l3.913 15.414z' fill='red'/%3e%3cg transform='scale(.00296)'%3e%3cpath fill='%230093dd' d='m212105 36890-23 13-9517-7794-9497 7778 1788 21560c2543-210 5113-322 7709-322 2608 0 5190 113 7744 325l1795-21560z'/%3e%3cg id='a'%3e%3cpath d='M202545 46585c-18-2-44 10-69 45-186 250-359 469-545 720-195 61-242 180-167 348-261-26-291 193-302 432-250-379-522-482-814-307-11-230-187-338-439-392-180-10-319-65-436-145-60-42-110-64-170-106-126-88-226-5-172 74 267 434 535 868 802 1302-14 80 6 151 88 204 47 133 93 265 140 397-11 38-21 75-32 113-221-105-443-118-664-133-170-8-287-50-361-137-54-63-91-26-92 82-3 534 162 1014 599 1492-231 4-462 11-694 21-79 6-95 39-73 104 126 304 339 579 822 766-208 112-327 285-357 520-9 224-75 382-212 455-60 32-81 65-24 106 253 185 565 193 895 112-157 270-226 553-198 850 208 56 412 15 614-52-29 61-44 175-52 309-7 115-41 229-104 343-32 33-65 84 4 102 336 91 648 52 915-47 0 243 2 487 76 727 18 58 70 102 125 26 155-214 322-396 527-517 31 90 75 168 156 215 96 55 147 170 153 343 0 30-2 60 35 90 149 7 514-380 589-597 206 121 284 246 439 461 55 76 99 29 128-25 62-243 67-481 66-724 267 99 579 138 915 47 69-19 36-70 4-102-62-114-105-250-113-365-9-133-14-226-43-287 202 68 405 108 614 52 29-297-53-579-211-850 330 80 655 73 908-112 57-41 35-74-24-106-136-73-203-231-212-455-30-235-149-409-357-520 483-187 696-463 822-766 22-66 6-99-73-104-231-10-480-24-711-27 437-478 606-961 604-1495-1-108-38-146-92-82-74 87-179 137-348 146-222 15-435 24-656 128-11-38-21-75-32-113 46-132 106-260 153-393 82-53 102-123 88-204 267-434 513-868 781-1302 54-79-46-162-171-74-60 42-110 64-170 106-117 80-257 134-437 145-251 54-417 167-428 397-293-175-564-73-814 307-11-239-41-457-302-432 75-168 17-291-178-352-186-250-458-470-644-720-31-35-51-47-69-45z'/%3e%3cg fill='%23f7db17'%3e%3cpath d='M205075 47978c-51-26-124 17-162 95s-33 170 19 196c40 20 84-6 119-56l22-36c2-3 4-6 5-9 38-78 49-163-2-188zm-5008 0c52-26 124 17 162 95s39 165-13 191-103-24-141-102-60-158-9-184zm4539 905c-32 0-59 27-59 59s26 59 59 59 59-26 59-59c0-32-26-59-59-59zm-4032 0c-32 0-59 26-59 59 0 32 26 59 59 59s59-26 59-59-26-59-59-59zm4294-304c-754-91-1506-133-2260-133s-1509 41-2269 115c-26 8-21 90 14 86 756-73 1507-113 2256-113 743 0 1485 40 2228 129 39 4 54-80 32-84z'/%3e%3cpath d='M200319 48495c768-75 1530-117 2289-116 754 0 1507 42 2261 133l111-184c-32 10-62 9-90-5-76-38-92-161-36-274 56-114 164-175 240-138 39 19 62 62 68 114l446-739c-204 130-328 214-581 252-281 41-409 139-368 307 38 156-57 133-201 54-314-171-541 71-652 353-73 186-159 181-168-13-4-70 0-131-7-200-21-223-89-286-216-224-161 78-175 25-137-58 28-60 86-128 66-221-9-67-66-92-151-98-182-244-467-483-649-727-182 244-374 483-556 727-86 5-142 30-152 98-20 93 52 157 80 217 38 82 23 135-137 57-127-61-186-3-207 220-7 69-10 139-13 209-9 194-95 199-168 13-111-282-352-524-667-353-145 79-203 102-182-54 23-172-107-266-388-307-253-37-377-122-581-252l419 682c12-25 29-45 53-57 76-38 184 24 240 138 56 113 40 237-36 274-10 5-21 8-32 10l100 163zm4389 911c-7 3-7 4-24 11-46 19-80 66-134 124-57 60-128 125-211 188-12 10-25 19-44-6s-7-35 6-44c80-62 149-124 204-182 30-32 56-63 77-92-95-11-190-21-284-30-79 24-157 55-222 95-59 35-107 77-137 125-8 14-16 27-44 11-27-16-19-30-11-44 35-58 91-107 158-147 33-20 69-38 106-54-107-9-214-18-321-25-22 13-42 29-61 47-20 19-39 42-56 67-9 13-18 26-44 8s-18-31-8-44c19-29 41-54 64-77l9-9c-80-5-161-10-241-14-2 2-5 5-8 7-21 18-40 38-55 59s-28 43-38 67c-6 15-12 29-41 18-29-12-23-26-17-41 12-29 27-55 45-81 8-11 18-22 27-33-115-5-230-9-344-12-4 5-9 8-14 11-25 15-47 32-66 51s-35 40-48 63c-8 14-16 28-43 12-28-16-20-29-12-43 16-28 35-54 59-77 7-7 14-13 21-19-122-2-244-4-365-4-120 0-240 1-360 3 8 7 15 13 22 20 23 23 42 49 59 77 8 14 16 27-12 43s-35 2-44-12c-13-23-29-44-48-63s-41-36-66-51c-6-3-12-7-15-12-115 2-230 6-345 11 11 11 20 23 29 35 19 25 33 52 45 81 6 15 12 29-17 41s-35-3-41-18c-9-24-22-46-38-67-15-21-34-41-55-59-4-3-7-6-10-10-81 4-162 8-243 13 4 4 9 8 13 12 24 23 45 48 64 77 9 13 18 26-8 44s-35 5-44-8c-18-26-36-48-56-67s-41-35-64-49c-1-1-3-2-5-3-110 7-220 14-330 23 43 18 85 38 122 61 67 40 124 89 158 147 8 14 16 27-11 44-27 16-35 3-44-11-29-48-78-90-137-125-72-44-159-77-246-102h-2c-90 7-179 15-268 24 22 33 51 68 86 106 55 58 124 120 204 182 13 9 25 19 6 44s-32 15-44 6c-83-64-155-128-211-188-37-38-99-111-135-140-196-90-354-127-575-147-153-14-318-9-458-79 36 85 75 164 126 229 53 68 120 121 209 147 8 2 21 16 22 25 28 157 84 286 169 386 52 60 114 110 188 149-75-81-132-166-172-251-67-142-90-286-77-420 1-16 3-32 34-29 32 3 30 19 29 35-11 123 9 256 72 387 56 118 159 237 291 346 24 19 0 63-29 55-154-44-290-123-383-231-89-104-149-237-180-397-94-32-165-90-222-164-47-60-85-131-118-205 28 428 182 801 456 1137 61 75 165 182 255 216 92 35 95 100-20 101-34 1-69 1-105 1 84 31 164 66 233 105 127 73 217 162 224 273 1 16 2 32-29 34-32 2-33-14-34-29-6-86-82-160-192-223-113-65-259-117-402-160-154 0-312-1-459 3 39 28 80 57 131 84 82 44 188 86 343 122 89 21 166 52 233 91 71 42 130 93 177 150 10 12 20 25-5 45s-34 8-45-5c-42-52-95-98-159-135-61-36-133-64-216-84-161-38-272-81-358-128-75-40-131-82-184-123 180 393 450 573 835 689 23 7 43 13 61 19 3 1 6 1 9 2 86 21 175 40 266 55 92 15 166 28 261 37 16 1 32 3 29 34-3 32-19 30-34 29-99-9-174-22-266-38-58-10-115-21-171-33-26 6-64 9-107 12-232 14-420 225-435 494 0 5 0 11-1 16 88-80 179-157 273-212 117-68 239-103 364-69 15 4 31 8 22 39-8 31-23 27-39 22-106-28-212 3-316 63-108 63-213 158-315 253-24 147-82 285-205 377 61 34 104 65 163 45 86-39 172-78 261-108 91-31 184-52 282-57 16-1 32-1 33 31s-14 32-31 33c-91 4-179 24-264 53-75 26-149 58-222 91 221 47 460-1 667-79 60-22 105-42 133-41 51-30 112-53 172-79 66-28 132-51 182-57 16-2 32-4 35 28 4 32-12 33-28 35-112 13-127 21-222 79 0 21-66 57-126 96-36 24-70 52-87 67-95 86-144 181-188 287-29 70-52 145-68 224 55-108 121-211 201-303 94-108 208-201 345-265 14-7 29-13 42 15 13 29-1 35-15 42-129 60-236 147-324 250-90 103-161 222-219 345-31 64-8 1-42 86 110-122 212-224 323-307 132-100 283-157 418-133 15 3 31 6 26 37s-21 28-37 26c-116-21-250 32-369 121-121 92-244 223-366 361 184 26 366-26 542-85 91-30 183-135 239-152 19-24 38-46 57-67 33-37 67-71 102-100 12-10 24-20 45 4s8 34-4 45c-33 28-65 60-96 94-32 35-62 73-92 113-6 8-13 17-24 16-60 70-151 162-172 240-57 210-25 370-122 576 71-38 128-81 175-134 53-60 94-135 128-230 37-104 95-195 167-270 75-77 165-136 261-172 15-5 30-11 41 19s-4 35-19 41c-87 32-169 86-238 157-66 68-119 151-153 247-37 102-81 183-141 250-44 50-95 91-156 127 52-3 78-10 121-7 79-6 211-66 279-119 66-51 116-120 154-206 6-15 13-29 42-16s23 27 16 42c-42 96-99 174-173 231-56 43-121 75-196 93 161-5 311-42 467-100 65-24 87-168 127-208 32-58 66-112 105-158 47-56 101-101 164-127 15-6 29-12 41 18 12 29-3 35-17 41-52 21-98 60-139 108-36 42-68 93-98 147 10 73-51 228-53 305-7 205-2 409 53 612 53-71 107-134 162-192 0-5 0-10 1-15 18-106 33-219 40-332 7-112 7-223-6-329-2-16-4-32 27-35 32-4 34 12 35 28 14 111 14 226 7 340-6 90-16 180-30 269 54-51 53-51 77-103 37-80 59-159 67-237 9-80 5-157-13-230-4-15-7-31 24-38s35 8 38 24c19 80 25 165 14 252-8 65-24 132-49 199 56-42 114-82 178-122-4-75-5-153-3-227 2-68 7-134 18-190 4-20 7-40 47-33s37 27 33 48c-9 50-14 111-16 177-2 78 0 162 4 243 5 82 49 185 125 230 103 62 158 163 186 274 16-145 17-280 3-400-17-143-55-267-114-368-8-14-16-27 12-44 27-16 35-2 43 12 63 110 104 241 122 393 17 146 13 310-13 488 102-82 381-258 352-594-7-27-16-52-28-75-7-14-14-28 14-42s35 0 42 14c17 33 30 69 39 110 5 24 8 49 11 76 13-7 45-43 51-39 24 16 58 38 80 54-21-60-35-120-42-178-10-87-5-172 14-252 4-15 7-31 38-24s27 23 24 38c-18 73-22 151-13 230 9 77 31 157 67 237 4 8 8 16 5 25 24 21 47 42 70 65-13-84-22-170-28-255-8-115-7-230 7-341 2-16 4-32 35-28s29 20 27 35c-13 106-13 217-6 329 7 113 22 225 40 332 1 2 1 5 1 7 54 59 95 120 152 196 55-203 73-407 66-612-2-76-69-227-65-302-30-55-63-107-100-151-41-49-87-87-139-108-15-6-29-12-18-41 12-29 27-24 41-18 62 26 117 71 164 127 38 45 72 98 103 154 57 7 78 179 143 212 154 57 298 94 453 100-75-19-140-50-195-93-74-57-131-135-173-231-6-15-13-29 16-42s35 2 42 16c38 86 88 156 154 206 85 66 289 124 400 127-61-37-113-78-157-128-59-67-104-148-141-250-34-95-87-179-153-247-68-71-150-124-238-157-15-6-29-11-19-41 11-29 26-24 41-19 96 36 186 94 261 172 72 74 130 166 167 270 34 95 75 169 128 230 47 54 105 98 177 135-98-207-66-367-122-577-35-129-232-277-193-320 45-51 133 88 248 127 175 59 357 111 540 85-122-138-244-269-366-361-119-90-237-140-352-120-16 3-31 6-37-26-5-31 10-34 26-37 135-24 269 32 401 132 111 84 201 175 311 298-18-47 0-14-30-77-59-123-130-241-220-345-89-102-196-189-324-250-14-7-28-13-15-42 13-28 28-22 42-15 137 65 251 157 345 265 81 93 147 198 203 307-15-81-39-157-68-227-44-106-93-201-188-287-62-56-209-140-208-179-29-15-33-11-63-24-61-26-121-46-164-52-16-2-32-4-28-35 4-32 19-30 35-28 50 6 115 28 182 56 33 14 66 43 98 60 53 4 139 47 208 74 206 78 446 126 666 79-73-33-147-65-223-91-85-29-172-49-264-53-16-1-32-1-31-33s17-31 33-31c98 4 191 26 282 57 89 30 175 69 261 108 59 27 101-7 163-45-123-92-181-230-205-376l-2-2c-102-95-207-190-315-253-104-60-210-91-316-63-15 4-31 8-39-22-8-31 7-35 22-39 125-33 247 1 364 69 94 55 186 132 274 213 0-6-1-11-1-17-15-270-203-480-435-494-78-5-189 21-186-32 4-59 97-44 234-86 385-116 655-296 836-690-54 41-110 83-186 124-86 47-198 91-358 128-82 19-154 48-216 84-64 38-117 84-159 135-10 12-20 25-45 5s-14-32-5-45c47-57 106-108 177-150 67-39 145-70 233-91 155-36 261-78 343-122 51-27 92-55 131-84-148-4-305-3-459-3-143 44-289 96-402 160-110 63-186 136-192 223-1 16-2 32-34 29-32-2-31-18-29-34 8-111 97-200 224-273 69-39 149-74 233-105-35 0-70 0-104-1-116-2-112-66-20-101 90-34 190-141 251-216 271-334 412-714 456-1130-33 72-69 140-115 198-57 73-128 131-222 164-31 160-91 293-180 397-92 108-216 185-369 230-29 8-52-35-29-55 132-109 221-226 278-344 62-131 83-264 72-387-1-16-3-32 29-35 31-3 33 13 34 29 12 134-10 278-78 420-40 85-97 170-172 251 73-39 136-89 187-149 85-100 141-229 170-386 1-8 14-22 22-25 89-27 155-79 209-147 51-65 90-143 126-228-140 69-304 64-457 78-213 19-369 68-554 152z'/%3e%3cpath d='M204649 49231c-680-88-1359-113-2041-114-684 0-1369 40-2058 112-20 6-15 33-14 46 2 28 37 35 121 27 643-60 1285-93 1932-93 674 0 1351 21 2038 102 33 9 77-85 22-81z'/%3e%3cpath fill-rule='evenodd' d='M200570 49160c683-71 1362-110 2038-110 675 0 1349 40 2025 127l31-127c-17 9-37 15-58 15-67 0-123-55-123-123s55-123 123-123c51 0 94 31 113 75l60-170c-724-84-1446-122-2171-122-729 0-1459 38-2193 107l58 164c22-32 59-54 101-54 68 0 123 55 123 123s-55 123-123 123c-12 0-25-2-36-6l33 94-2 7zm3067-416c-68 0-123 55-123 123s55 123 123 123 123-55 123-123-55-123-123-123zm0 64c-33 0-59 27-59 59s26 59 59 59c32 0 59-27 59-59s-26-59-59-59zm-1082-91c-67 0-123 55-123 123s55 123 123 123 123-55 123-123-55-123-123-123zm0 64c-32 0-59 26-59 59s26 59 59 59 59-26 59-59c0-32-26-59-59-59zm-1064-40c-68 0-123 55-123 123s55 123 123 123c67 0 123-55 123-123s-55-123-123-123zm0 64c-33 0-59 26-59 59s26 59 59 59c32 0 59-26 59-59 0-32-26-59-59-59z'/%3e%3c/g%3e%3cpath d='M202601 47974c-14-68-49-129-100-175-51-47-116-78-187-88-33-4-39-58-7-68 60-20 114-67 157-133 45-69 79-157 95-256 5-34 64-35 69-1 15 84 51 153 97 208 55 66 125 112 193 138 31 12 25 63-8 68-59 9-105 42-141 87-50 62-81 145-100 221-8 33-62 31-69-2zm33-118c20-52 47-103 81-146 28-34 60-64 99-84-51-30-100-70-143-120-28-34-53-73-73-116-19 59-45 112-75 158-31 47-67 86-108 116 50 19 95 47 134 82 34 31 63 68 85 110zm799 5115-515 206c-17 7-35 14-48-21-14-34 4-41 21-48l515-206c17-7 35-14 48 21 14 34-4 41-21 48zm59-326-604 328c-16 9-33 18-51-15s-1-42 15-51l604-328c16-9 33-18 51 15s1 42-15 51zm-1826-65 604 328c16 9 33 18 15 51s-34 24-51 15l-604-328c-16-9-33-18-15-51s34-24 51-15zm51 322 515 206c18 7 35 14 21 48-14 35-31 28-49 21l-515-206c-17-7-34-14-21-48 14-35 31-28 48-21zm224 434c137 33 261 48 358 31 88-16 155-60 191-146v-493c-107-1-212-15-303-41-109-31-170-98-201-178-41-107-27-235-4-329 5-18 9-36 45-27s32 27 27 45c-20 82-33 194 1 284 23 60 69 110 152 133 91 25 198 38 307 38 107 0 214-13 304-40 82-24 148-69 192-123s65-117 57-176c-5-36-24-62-49-80-34-24-82-35-128-37-47-2-94 7-142 16-25 5-50 9-77 13-19 2-37 5-42-32s14-40 32-42c23-3 48-8 73-12 52-10 105-20 159-18 60 2 121 18 168 51 42 29 72 72 80 131 11 80-16 163-73 233-53 65-131 119-229 147-83 24-178 38-274 42v483c3 5 3 11 2 16 37 82 102 125 188 141 97 18 221 2 358-31 18-5 36-9 45 27 8 37-9 41-28 45-146 35-279 51-388 32-92-17-165-58-215-132-49 74-124 115-215 132-109 20-242 4-388-32-18-4-37-8-28-45 8-36 27-32 45-27zm356 210 402-9c19 0 38-1 38 37 1 38-18 38-37 38l-402 9c-19 0-37 1-38-37s18-38 37-38zm593-3082c151-125 293-227 423-297 133-72 254-111 359-106 19 1 37 1 36 39-1 37-20 37-39 36-92-4-200 32-322 97-125 67-263 166-410 289-14 12-29 24-53-5s-9-41 5-53zm-605 56c-141-130-298-240-445-314-139-71-268-108-363-100-19 2-37 4-40-34-4-37 15-39 34-40 110-10 252 31 404 107 152 77 315 191 461 325 14 13 28 25 2 53-25 27-39 15-53 2zm-213 1004c37-83 83-155 136-219 53-63 112-119 174-170 14-12 29-24 52 5 24 29 9 41-5 53-59 48-114 101-164 160-49 59-91 125-125 201-8 17-15 34-49 19s-27-32-19-49zm371-1734c49 66 88 139 114 223 26 82 40 175 39 279 5 80 6 165-7 249-13 86-42 170-97 246-43 60-101 97-165 113-53 13-109 10-164-7 29 100 51 208 6 308-8 18-33 27-51 18-43-22-86-43-128-62s-84-36-127-51l-1-1c-95-37-173-73-236-112-65-39-115-80-150-124l1 2c-44-49-72-106-88-170-14-55-20-114-22-174-72-39-138-78-194-116-64-43-118-87-161-131-13-14-26-27 1-53s40-12 53 1c39 40 89 80 150 121 60 40 128 81 204 121 124 13 247 51 370 109 106 50 211 115 317 192 13 7 19 16 27 20 8 6 16 13 25 19 51 22 104 28 152 16 47-11 90-39 122-84 48-66 72-139 84-214 12-77 11-157 6-234v-2c1-97-12-183-35-258-24-76-58-142-102-201-11-15-22-30 7-52s41-7 52 7zm-375 1047c-104-77-207-141-311-190-105-49-210-83-314-98 2 48 8 93 18 135 13 52 35 99 71 138l1 1c30 37 73 72 130 107 60 36 134 71 225 106l-1-1c45 16 89 34 133 54 31 14 61 28 93 44 19-83-10-179-37-267-2-8-5-15-9-29zm776-1003c-44 59-79 125-102 201-24 76-36 161-35 258v2c-5 77-6 158 6 234 12 75 37 148 84 214 32 45 75 72 122 84 48 12 101 6 152-16 8-6 17-13 25-19 6-4 13-12 27-20 105-77 211-143 317-192 123-58 246-95 370-109 75-40 144-80 204-121s111-81 149-121c13-13 26-27 53-1s14 39 0 53c-43 44-97 88-161 131-57 38-122 77-194 116-2 61-8 119-22 174-16 63-44 121-88 170l1-2c-35 44-85 85-150 124-63 38-141 75-237 112l-1 1c-43 15-85 32-127 51-43 19-85 40-128 62-18 9-43 0-51-18-45-100-23-208 6-308-55 18-111 20-164 7-64-15-122-53-165-113-55-76-84-160-97-246-13-85-12-169-7-249-1-104 13-196 39-279 26-84 65-158 114-223 11-15 22-30 52-7 30 22 19 37 7 52zm940 715c-105 15-209 49-314 98-104 49-207 113-311 190-4 13-6 21-8 29-27 88-56 184-37 267 31-15 62-30 93-44 44-20 87-38 133-54l-1 1c91-35 165-70 225-106 58-34 100-70 131-107l1-1c35-39 57-86 71-138 11-42 16-87 19-135z'/%3e%3cpath fill-rule='evenodd' d='M203459 50602c-119 0-216 97-216 216s97 217 216 217 216-97 216-217c0-119-97-216-216-216zm0 69c-81 0-147 66-147 147s66 147 147 147 147-66 147-147-66-147-147-147zm0 60c-48 0-87 39-87 87s39 87 87 87 87-39 87-87-39-87-87-87zm-1697-124c119 0 217 97 217 216s-97 217-217 217c-119 0-216-97-216-217 0-119 97-216 216-216zm0 69c81 0 147 66 147 147s-66 147-147 147-147-66-147-147 66-147 147-147zm0 60c48 0 87 39 87 87s-39 87-87 87-87-39-87-87 39-87 87-87z'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='rotate(-2.173 -55532.79 156275.842)'/%3e%3cuse xlink:href='%23a' transform='rotate(2.18 459865.852 156275.761)'/%3e%3c/g%3e%3cpath fill='%23171796' d='m683.871 118.584-.074.027-23.992-27.422-31.546 18.08-5.32 63.861a274.6 274.6 0 0 1 45.145 7.556l15.784-62.099z'/%3e%3cpath d='M634.482 122.518c1.096-.267 2.178-.323 3.226.32.46.19.806.432 1.019.743.486-.376.98-.728 1.493-1.03.72-.534 1.454-1.005 2.245-1.268 1.132-.575 2.26-.915 3.392-1.02 1.196-.203 2.399-.215 3.596-.144a6.48 6.48 0 0 1 2.885.865c.835.414 1.667.832 2.502 1.247.883.491 1.766.936 2.648 1.309 1.12.441 2.379.59 3.72.64.658.023 1.304.023 1.938-.145.512-.137.832.19.267.536-4.147 2.544-7.397.281-10.17-.732a20.117 20.117 0 0 1 2.667 2.124c1.054 1.016 2.233 2.047 4.318 2.997 1.265.575 2.642 1.028 4.41 1.043.6.006 1.245-.018 1.944-.133.352-.057.503-.024.51.16.005.124-.027.373-.238.512-1.069.717-2.076.907-3.199.978-2.138.136-4.425-.566-6.516-1.689-1.674-.9-2.802-1.996-4.135-2.98-1.33-.98-2.48-1.525-3.714-1.786-1.218-.26-2.536-.23-3.647.113.332.065.613.222.785.42.572.338 1.307.486 2.37.608.554.065.382.447-.471.906-.512.66-1.179 1.016-2.065.93-1.22.809-1.655.32-2.064-.21-.05.335-.148.663-.293.98a.753.753 0 0 1-.018.533c.195.303.29.596.225.919a.77.77 0 0 0 .272.491c.255.231.418.498.45.824.004.216.122.394.294.554.249.204.5.385.75.69.737.266 1.078.832 1.199 1.564.557.18.788.583.897 1.063.317.134.608.293.774.575 1.137.003 2.248.003 3.287.112.975.104 1.769.711 2.48 1.5.48.073.965.097 1.463-.016.512-.225 1.054-.397 1.644-.447.974-.083 1.952-.133 2.882.089.63.151 1.122.486 1.525.942.58.66 1.475.572 2.24.246 1.036-.442 1.898-.427 2.959.038.453-.175.906-.257 1.36-.21.387-.42.799-.524 1.222-.536.69-.024 1.191.083 1.06.968-.035.24-.177.471-.358.554-.316.685-.92.886-1.688.82-.083.472-.275.821-.583 1.046.352 1.087.014 1.523-.791 1.508-.17.314-.42.51-.85.447a1.726 1.726 0 0 1-1.09.643c.047.284.168.418.37.723.548.83-.276 1.164-1.028 1.176.193.548.216 1.096.148 1.644.767.465.871.953.163 1.436.518.907.317 1.573-.655 2.059-.014.506-.065 1.016-.402 1.3-.231.196-.563.231-.344.598.394.652.308 1.476-.275 1.5-.125-.013-.237.005-.246.204 0 .068-.06.136-.175.204-.7.376-1.354.806-1.955 1.3-.089.06-.178.101-.267.021-.438.954-1.255 1.922-2.159 2.897-.14.717-.545 1.203-1.217 1.454a.512.512 0 0 1-.4.409c.376.418.518.82.154 1.217-.447.49-1.037.966-1.626 1.117-1.253.32-2.038.26-2.542-.22-.444-.423-.27-.743.012-.876-.773.062-.93-.346-.91-.891.045-.273.137-.237.41-.228.42.011.8-.217 1.196-.347.154-.26.356-.486.604-.675.14-.877.694-1.363 1.446-1.65.607-.231 1.188-.818 1.75-1.576.347-.598.697-1.194 1.043-1.792-.243-.317-.308-.634-.317-.95a1.847 1.847 0 0 1-.696-.647c-.545-.038-.77-.284-.85-.625a1.294 1.294 0 0 1-.409-.053c-.266.172-.536.323-.87.308a8.618 8.618 0 0 1-1.363 1.138c-.163.45-.486.63-.88.687-1.12.133-1.789 1.528-2.405 2.097-.249.184-.403.51-.512.9-.054.735-.181 1.31-.584 1.321-.361-.014-.418-.053-.43-.091a1.482 1.482 0 0 0-.47.02c.302.332.35.75.07 1.117-.278.361-.678.474-1.063.5-.796.054-1.442-.017-2.04-.26-.572-.234-.64-.575-.622-.906-.412-.196-.495-.391-.45-.584.056-.249.284-.376.57-.296a3.06 3.06 0 0 1 .747-.246c.723-.779 1.467-1.448 2.284-1.76.24-.29.515-.55.85-.767.095-.699.554-1.25 1.117-1.762a2.51 2.51 0 0 1 .275-.758c-.032-.151.01-.222.012-.365-.228-.423-.364-.933-.195-1.356a1.642 1.642 0 0 1-.063-.676c-1.344.8-1.759.528-1.913-.121-.492.412-.95.604-1.28.012-.476.142-.956.302-1.433.112-.311.122-.625.231-.984.255-.145.287-.34.575-.604.862-.015.604-.225 1.209-.613 1.813a11.588 11.588 0 0 1-.87 1.934c.005.207-.024.415-.134.625.104.743-.145 1.105-.554 1.288-.11.3-.272.602-.521.9-.012.099-.021.2-.033.297.163.439.19.874-.255 1.312-.358.225-.74.462-1.12.649-.447.22-.861.116-1.237-.02-.66-.238-.61-.469-.525-.694a.805.805 0 0 1-.651-.009c-.16-.1-.261-.204-.42-.308-.143-.257-.193-.491.153-.675.436-.193.732-.335 1.075-.687.119-.267.27-.468.483-.522.207-.485.462-.814.809-.903.254-.601.527-1.265.85-1.84.112-.174.195-.355.142-.553-.006-.163.006-.317.142-.41.077-.064.213-.124.042-.215a1.7 1.7 0 0 1 .204-1.443c.35-.527.74-1.8.37-2.426-.068-.35-.136-.75-.092-1.078-.127-.006-.222.012-.349-.077-.284-.175-.521-.009-.738.308-.157.397-.314.747-.47.747-.149 1.024-.652 1.821-1.176 2.026-.122.47-.199.941-.134 1.412.054.513 0 .862-.237.922-.26.065-.503.216-.654.634a1.28 1.28 0 0 0-.092.42c.361.373.252.838-.095 1.182-.782.77-1.753.658-2.781.355-.744-.293-.924-.604-.85-.92-1.055-.09-.845-.898.03-1.141.938-.264 1.7-.865 2.324-1.724.057-1.019.29-1.712.839-1.822.053-.625.249-1.187.512-1.72.276-.483.444-1.014.347-1.66-.584-.364-.608-.74-.071-1.125.177-.104.157-.21-.063-.317-.355-.035-.31-.376-.287-.696-.015-.166-.1-.252-.258-.255-.788-.115-.592-.438-.254-.788.142-.16.237-.396.089-.491-.122-.077-.205-.347-.232-.584-.482-.364-.275-.737 0-1.096-.272-.23-.4-.568-.438-.962-.897-.039-1.232-.495-.746-1.159.204-.28.468-.55.788-.808.207-.335.405-.67.308-1.004-.258-.655.565-1.15 1.27-1.659a1.1 1.1 0 0 1-.154-.512c-.397-.383-.296-.738.142-1.076a1.33 1.33 0 0 1-.162-.521c-.987.196-.98-.394-.522-1.342-.571-.329-.411-.912.625-1.8.015-.205.054-.362.113-.472a2.395 2.395 0 0 0-1.25.38c-.394.257-.785.225-1.18.062-.12-.196-.307-.362-.52-.513-.27-.237-.332-.503-.276-.788-1.161.066-1.383-.793-.687-1.3.388-.308.672-.63.779-.983.314-.797.98-1.34 1.63-1.896 0-.228.05-.456.12-.687-.287-.193-.589-.332-.92-.359a1.47 1.47 0 0 0-.717-.796c-.217-.13-.288-.252-.154-.545-.617-.551-.463-.886-.306-1.203z'/%3e%3cg fill='%23f7db17'%3e%3cpath d='M655.548 152.429c-.068.005-.139.011-.219.008-.299.305-.657.61-.99.871-.286-.332-.713.033-.295.234l-.214.148c-.136.362-.26.516-.663.578-.062.009-.125.02-.187.035a3.69 3.69 0 0 1 .018-.447c.018-.18.047-.355.086-.527.006-.033.015-.062-.047-.077s-.072.018-.077.05a5.446 5.446 0 0 0-.092.542 3.438 3.438 0 0 0-.018.495c-1.016.326-1.603 1.383-2.296 2.136-.299.257-.45.613-.56.986-.059.198-.08 1.108-.284 1.123-.098.003-.201 0-.31 0-.11-.166-.259-.17-.445-.012-.424-.01-.874-.012-1.25.047-.258.279.45.175.826.406.172.104.246.308.178.592-.347.827-2.28.56-2.923.22-.3-.157-.311-.338-.3-.596a2.7 2.7 0 0 0 .406-.03c.231-.032.46-.1.684-.228.063-.035.128-.07.057-.198s-.137-.092-.199-.056c-.19.11-.385.166-.58.192-.202.03-.41.03-.608.021-.017 0-.035-.003-.05 0-.112-.065-.198-.142-.151-.21.047-.065.234.006.27.017.299-.139.56-.228.882-.29.682-.728 1.375-1.413 2.314-1.789.281-.338.586-.604.953-.847.13-.812.525-1.244 1.114-1.783a2.78 2.78 0 0 1 .32-.868c-.036-.187-.009-.305 0-.495-.225-.426-.358-.796-.18-1.273-.11-.347-.095-.58-.054-.9a.436.436 0 0 0-.003-.181 7.777 7.777 0 0 1 1.06-.717 3.87 3.87 0 0 0 .048 1.004l-.003.003c-.1.11-.187.216-.246.329a.662.662 0 0 0-.092.346c0 .033 0 .065.065.062.066 0 .066-.032.063-.065a.54.54 0 0 1 .077-.281c.053-.098.133-.199.228-.3a.132.132 0 0 0 .023-.032c.311-.009.616-.175.922-.42a7.67 7.67 0 0 0 .823-.821c-.003.444-.006.889-.012 1.333a2.928 2.928 0 0 0-.672.88c-.015.03-.03.056.026.085.06.03.074 0 .086-.03.163-.322.37-.589.61-.81h.012c.065 0 .065-.033.065-.066v-.003a3.963 3.963 0 0 1 1.146-.658c-.056.392-.082.774-.014 1.14.074.404.264.783.649 1.115a.06.06 0 0 0 .023.012z'/%3e%3cpath d='M636.2 141.161c.05-.092.178-.21.22-.201l.023-.006c.14-.261.285-.504.436-.723.195-.284.403-.536.622-.75.023-.023.047-.044.092 0 .044.048.02.069 0 .092-.214.208-.415.45-.608.729-.148.216-.29.453-.426.71.044.06.065.152.041.217.045.406.098.634.279.868a.253.253 0 0 1 .062-.041c.074-.181.175-.341.3-.483.153-.172.34-.317.565-.439a2.24 2.24 0 0 0 .379-.394c.1-.133.18-.27.237-.408.012-.03.024-.06.086-.036.06.024.047.056.035.086a1.99 1.99 0 0 1-.251.438 2.57 2.57 0 0 1-.41.418s-.008.006-.011.006c-.21.115-.391.252-.533.412-.11.121-.196.257-.264.408.095.069.136.255.048.374-.27.388-.59.616-.086.947a.791.791 0 0 0 .237.64c.115.122.103.545-.181.85-.267.27-.062.199.213.231.021.006.042.015.062.021v-.003c.101-.195.22-.37.35-.533.127-.16.267-.311.409-.453.198-.196.355-.409.468-.625.11-.21.174-.427.186-.634.003-.033.003-.065.071-.06.066.004.063.036.06.069a1.763 1.763 0 0 1-.202.687 2.64 2.64 0 0 1-.491.655c-.14.139-.273.281-.397.441a3.249 3.249 0 0 0-.335.512c.332.202.225.563.275.895a.584.584 0 0 1 .172.047c.003-.006.006-.012.012-.017l.196-.308.308-.49c.017-.026.035-.056.088-.02.057.036.039.062.021.089l-.308.489-.195.308c-.003.006-.006.012-.01.014.205.166.22.468-.032.7-.494.373-.355.488.107.784.06.436.062.785-.033 1.156.003.009.003.02.006.032.012.122.02.246.03.368l.03.37c.002.032.005.065-.06.07s-.068-.026-.07-.058l-.03-.37a.77.77 0 0 1-.006-.095c-.024.056-.048.115-.077.177-.332.726-.676 1.318-.75 2.133-.797.19-.678.974-.723 1.668-.628.847-1.356 1.525-2.366 1.863-.19.062-.649.174-.693.414-.006.086.308.273.51.163.556-.533.834-.237.195.308-.05.104-.01.22.1.317.578.519 2.009.687 2.66.276.483-.302.735-.634.314-1.093.027-.652.282-1.289.969-1.472.08-.148.056-.424.02-.575-.065-.566.024-1.07.163-1.614.024-.068.074-.125.187-.154.26-.054.761-.809.918-1.535.039-.157.062-.32.092-.482.042-.252.14-.297.267-.149.121-.162.118-.26.192-.447.267-.388.652-.699 1.102-.48a3.795 3.795 0 0 1-.22-1.04 3.39 3.39 0 0 1 .143-1.288c.018-.062.039-.121.136-.106l.388-.922c.13-.308.26-.619.391-.927.012-.03.024-.059.083-.035s.048.056.036.086l-.391.927c-.13.308-.258.613-.388.918.056.041.038.095.02.148-.118.37-.157.78-.127 1.179.03.432.136.85.296 1.19.015.033.033.066.027.098.213.125.21.154.201.439-.006.222.024.441.077.708.424.782-.017 2.09-.43 2.745a1.357 1.357 0 0 0-.168 1.043c.255.246.089.5-.136.673-.018.059 0 .127.003.186.023.255-.068.468-.202.678-.346.625-.613 1.292-.891 1.946-.504.14-.607.433-.809.904-.293.083-.323.169-.447.438-.338.34-.66.545-1.093.74-.358.164-.012.32.24.492.228.17.527-.198.714-.476.204-.308.411-.217.278.023a2.432 2.432 0 0 0-.27.841c-.076.214.735.377.874.383.495.023 1.117-.46 1.505-.705.323-.33.273-.616.13-1.016l.003-.027a2.463 2.463 0 0 1-.595-.06 4.29 4.29 0 0 1-.699-.23c-.03-.012-.06-.024-.036-.086.024-.06.057-.048.086-.036.231.095.454.175.679.222.186.042.379.063.583.057l.033-.311c.257-.317.435-.628.574-1.007.548-.258.551-.525.477-1.111.122-.237.148-.376.14-.646.36-.643.657-1.3.903-1.996.432-.575.64-1.117.59-1.801.038-.267.136-.418.331-.409.142-.198.27-.403.385-.63a.575.575 0 0 0 .071.005.083.083 0 0 1 0-.047c.036-.157.077-.297.13-.412a.997.997 0 0 1 .178-.281c.08-.196.11-.385.09-.57a1.379 1.379 0 0 0-.193-.553.615.615 0 0 1-.146-.231c-.026-.092-.008-.184.083-.276.024-.023.048-.044.092 0 .045.048.024.072 0 .092-.053.05-.062.098-.047.145a.57.57 0 0 0 .121.187l.006.012c.116.198.193.403.213.613s-.008.427-.103.643c0 .003-.012.018-.012.02a.902.902 0 0 0-.163.252 2.11 2.11 0 0 0-.121.385c-.003.01-.003.018-.006.024.305 0 .574-.095.868-.24l.017-.018a1.8 1.8 0 0 0 .436-.536 2.36 2.36 0 0 0 .249-.72c.005-.032.011-.062.077-.053.062.012.056.045.053.074a2.527 2.527 0 0 1-.264.761c-.1.187-.219.338-.337.457.473.142.885.003 1.335-.137-.065-.634-.056-1.116.012-1.496.074-.411.214-.702.388-.92.021-.027.039-.051.092-.013.05.042.033.066.012.092-.163.205-.293.477-.361.865-.066.362-.077.824-.015 1.434.006-.003.015-.003.023-.006.19.323.29.557.679.305.142-.095.29-.19.409-.314.044-.047.03-.074.065-.113.37-.394.743-.76 1.113-1.087.374-.328.747-.61 1.12-.838.027-.018.056-.035.089.02s.006.072-.02.09a8.062 8.062 0 0 0-1.103.823c-.317.279-.634.587-.95.918.017.057.026.154.035.303.033.438.113.702.738.462a3.18 3.18 0 0 0 .708-.341c.157-.095.29-.175.382-.196.204-.16.405-.31.61-.447.198-.133.4-.255.598-.361a3.63 3.63 0 0 1 .163-.69c.193-.569.515-1.096.921-1.594l.021-.018c.338-.183.613-.4.832-.645a2.86 2.86 0 0 0 .513-.82c.012-.03.023-.06.086-.036.059.023.047.056.035.085a3.07 3.07 0 0 1-.533.857c-.228.254-.51.48-.859.669-.394.486-.708.995-.892 1.543a3.328 3.328 0 0 0-.145.593c.012.003.024.014.036.038.03.06 0 .074-.027.086a.097.097 0 0 0-.026.015c-.039.32-.03.657.03 1.007.275-.009.553-.163.834-.391.3-.243.605-.578.907-.918.003-.01.003-.015.012-.021.074-.243.169-.456.293-.628a1.18 1.18 0 0 1 .498-.409c.03-.012.059-.026.085.036.024.059-.003.07-.035.086a1.078 1.078 0 0 0-.444.364c-.119.166-.21.373-.282.61l-.012 1.386c.015-.011.033-.023.048-.038.34-.264.731-.46 1.155-.613.044-.018.095.023.086.07-.065.416-.1.827-.033 1.206.065.356.225.688.545.984a3.475 3.475 0 0 1 .584-.77c.003-.006.006-.012.015-.015a5.07 5.07 0 0 1 .376-.34c.095-.087.19-.176.281-.264.095-.086.19-.175.285-.264.023-.024.047-.044.091.003s.021.071-.003.092c-.094.089-.19.174-.284.263-.095.086-.19.175-.284.264l-.003.003a3.89 3.89 0 0 0-.35.314c.003.121.01.24.015.361.003.065.003.13.006.196.272.074.435.077.714.07.092.549.139.635.616.647a4.055 4.055 0 0 1 .018-.572 2.5 2.5 0 0 1 .142-.616c.012-.03.024-.06.083-.039.062.024.05.054.038.083-.07.184-.112.38-.136.584-.02.18-.024.367-.018.56h.039c.19.39.414.583.817.758.113-.178.196-.356.25-.533a1.71 1.71 0 0 0 .07-.596c-.003-.032-.003-.065.06-.068.065-.003.068.027.07.06.015.213-.011.426-.077.64s-.168.423-.31.633c-.012.018-.024.036-.045.036.018.228.056.397.136.568.06-.127.122-.254.193-.373.098-.172.21-.326.346-.462.024-.024.045-.044.092 0 .045.044.024.068 0 .092a2.09 2.09 0 0 0-.326.435 4.979 4.979 0 0 0-.228.453c.045.078.101.155.166.243-.758 1.3-1.57 3.102-3.066 3.694-.773.305-1.11.7-1.264 1.525-.29.226-.498.454-.687.768-.504.168-.954.42-1.5.397 0 .352.116.506.469.509.672-.338.823-.4.882-.352.083.07-.094.553-.651.944-.086.054-.083.086-.033.175.471.738 1.706.474 2.37.3.474-.125 1.33-.688 1.567-1.162.092-.219-.116-.5-.323-.731-.948.145-.767-.765.047-.385.276-.083.311-.086.388-.391.726-.282 1.028-.587 1.194-1.366.732-.788 1.466-1.6 1.993-2.544.146-.178.231-.492.19-.655.13-.154.201-.35.249-.527.047-.19.077-.376.07-.566 0-.032-.002-.065.063-.068s.065.03.068.062a2.2 2.2 0 0 1-.074.601 5.599 5.599 0 0 1-.15.463c.046.118.07.198.174.168.634-.51 1.274-.868 1.958-1.291.047-.29.234-.433.521-.444.116.003.157-.033.199-.14.16-.4-.042-.675-.234-1.007-.178-.494.139-.613.456-.85.331-.246.308-.897.32-1.273h.003c-.012-.063-.024-.128-.039-.193a3.279 3.279 0 0 0-.113-.4c-.011-.03-.02-.062.039-.083.062-.02.071.01.083.042.05.145.089.281.118.414.012.054.021.107.033.157.317-.163.649-.352.773-.705.11-.39-.104-.76-.293-1.093a11.957 11.957 0 0 1-.743.32c-.03.012-.06.024-.084-.035s.006-.074.036-.083a12.774 12.774 0 0 0 .859-.38c.142-.094.287-.195.39-.328.229-.329-.384-.625-.597-.758 0-.01.003-.018.003-.027-.308-.281-.614-.566-.922-.847-.023-.02-.047-.045-.003-.092s.069-.027.092-.003l.853.782c.048-.483.054-.945-.097-1.425-.048-.154-.104-.305-.157-.456a1.395 1.395 0 0 1-.598-.498 1.296 1.296 0 0 1-.2-.619c-.002-.032-.002-.065.063-.07.065-.004.065.029.071.062.015.201.065.39.175.556.11.17.275.317.515.439.258.133.8.065 1.114-.086.435-.246-.133-.744-.267-1.037-.094-.21-.118-.426-.16-.651.039-.006.077-.015.119-.021a1.304 1.304 0 0 0-.175-.184.752.752 0 0 0-.234-.142c-.03-.012-.062-.02-.038-.083.02-.062.053-.05.083-.038.097.035.19.091.275.165.083.072.16.157.234.258a1.89 1.89 0 0 0 .127-.024c.43-.085.667-.325.927-.633a4.495 4.495 0 0 0-.467-.483 12.61 12.61 0 0 0-.534-.45c-.023-.021-.05-.042-.009-.092s.066-.03.092-.01c.184.149.368.3.54.457.174.16.34.329.491.512.015.018.03.036.018.06.394.035.459-.045.657-.397a1.892 1.892 0 0 0-.237-.513 3.126 3.126 0 0 0-.394-.483c-.023-.023-.044-.047 0-.091.048-.045.072-.021.092 0 .154.16.297.328.41.503a1.9 1.9 0 0 1 .25.542c.184.003.383.012.54-.083.344-.204.053-.939-.036-1.223a.052.052 0 0 0 .015-.012 3.452 3.452 0 0 0-.136-.086c-.08-.05-.163-.1-.243-.154-.027-.018-.053-.035-.02-.089.035-.056.062-.038.088-.02l.243.154.178.112.08-.062c.252-.201.34-.468.417-.746.119-.427.143-.237.64-.311.536-.083.827-.143 1.144-.77.165-.083.251-.155.28-.359.054-.37.025-.56-.399-.592-.592-.048-.954.07-1.354.462.054.08.107.163.16.243.018.026.036.053-.017.091-.054.036-.071.01-.09-.017l-.15-.231c-.54-.054-.972.032-1.475.222l-.151-.062c.106.142.19.278.251.411.086.19.13.37.137.542 0 .033.003.065-.063.068s-.065-.03-.068-.062c-.006-.157-.044-.32-.124-.494s-.202-.359-.373-.554l-.003-.003c-.421-.151-.806-.228-1.2-.22.065.066.133.13.198.193.086.083.172.166.255.249.024.024.048.044 0 .092-.044.047-.068.023-.092 0a20.421 20.421 0 0 1-.254-.25 20.421 20.421 0 0 1-.255-.248c-.009-.009-.018-.018-.024-.027a3.445 3.445 0 0 0-1.063.276c-.24.1-.486.178-.726.222.178.172.329.364.447.584.125.225.22.473.282.749.006.033.015.062-.048.077s-.07-.018-.077-.047c-.059-.264-.15-.504-.27-.717s-.266-.403-.44-.569c-.018-.015-.033-.033-.027-.056a2.225 2.225 0 0 1-.658.003l.264.435c.015.03.027.06-.03.086-.059.027-.074 0-.086-.03l-.242-.509a1.807 1.807 0 0 1-.593-.234c.062.234.11.486.145.752.048.353.077.729.086 1.126 0 .032.003.065-.062.065s-.065-.033-.065-.062a9.81 9.81 0 0 0-.083-1.11 5.874 5.874 0 0 0-.187-.89 2.077 2.077 0 0 1-.266-.248 2.624 2.624 0 0 0-.711-.554 1.186 1.186 0 0 1-.26.91c-.022.026-.04.05-.093.011-.05-.041-.032-.065-.012-.092a1.058 1.058 0 0 0 .22-.9c-.406-.187-.853-.279-1.316-.317a6.64 6.64 0 0 1 .687 1.09c.184.15.282.334.338.536.054.198.066.412.074.628 0 .032.003.065-.062.068s-.065-.03-.068-.062a2.608 2.608 0 0 0-.068-.599.893.893 0 0 0-.302-.476c-.003-.003-.018-.018-.018-.021-.1-.202-.213-.4-.335-.596a5.762 5.762 0 0 0-.411-.568l-.006-.006a6.246 6.246 0 0 0-.471-.009c.026.036.053.071.077.11a.721.721 0 0 1 .106.308c.003.032.006.065-.059.07s-.068-.026-.07-.059a.623.623 0 0 0-.09-.254.843.843 0 0 0-.139-.172c-.326.009-.649.035-.96.062.326.418.587.85.788 1.295a6.01 6.01 0 0 1 .462 1.53c.006.033.012.066-.053.075-.062.012-.068-.02-.074-.053a5.99 5.99 0 0 0-.453-1.5 6.4 6.4 0 0 0-.827-1.335l-.047.003a4.295 4.295 0 0 0-.75.145c.11.068.205.136.288.204.112.092.201.184.278.276.021.027.042.05-.009.092s-.07.018-.091-.01a1.966 1.966 0 0 0-.261-.26 3.003 3.003 0 0 0-.373-.255 5.97 5.97 0 0 0-.385.14c-.071.026-.14.053-.21.074.219.157.429.329.63.521.243.234.471.498.676.803.017.026.035.053-.018.089s-.071.008-.092-.018a4.744 4.744 0 0 0-.655-.782 5.859 5.859 0 0 0-.705-.572c-.266.06-.536.074-.805.065.166.33.31.66.42.996.119.361.202.725.228 1.096.003.032.006.065-.059.07s-.068-.026-.07-.059a4.47 4.47 0 0 0-.223-1.066 7.779 7.779 0 0 0-.447-1.043 8.492 8.492 0 0 1-.495-.053c.095.302.178.613.249.93.083.373.15.756.201 1.144.003.032.006.065-.056.074-.065.008-.068-.024-.074-.057a11.558 11.558 0 0 0-.199-1.131 11.598 11.598 0 0 0-.275-1.013c-.468-.507-.986-1.001-1.62-1.265a2.13 2.13 0 0 1 .468 1.404c0 .033-.003.065-.065.062-.066 0-.066-.035-.063-.065a2.041 2.041 0 0 0-.15-.835 2.094 2.094 0 0 0-.439-.658 2.44 2.44 0 0 0-.447-.089 19.527 19.527 0 0 0-1.25-.083c.32.29.571.557.548.88-.003.033-.006.065-.071.06s-.063-.04-.06-.072c.021-.299-.275-.568-.622-.876-.248-.01-.5-.012-.75-.015.137.139.256.278.35.417.13.19.223.38.267.57v.008c.027.293.098.55.228.764.127.21.311.373.563.489.03.015.06.027.032.086s-.056.047-.085.032a1.368 1.368 0 0 1-.62-.539 1.88 1.88 0 0 1-.245-.811 1.568 1.568 0 0 0-.246-.522 3.344 3.344 0 0 0-.43-.494c-.278 0-.554-.003-.832-.003.116.329.196.666.252 1.01.065.42.095.85.103 1.285 0 .033 0 .065-.065.065s-.065-.032-.065-.062a8.927 8.927 0 0 0-.1-1.267 5.592 5.592 0 0 0-.261-1.031h-.077a1.253 1.253 0 0 0-.61-.548.754.754 0 0 1-.133.352c-.018.027-.04.054-.093.018s-.035-.062-.017-.089a.618.618 0 0 0 .112-.338c-.041-.017-.086-.035-.133-.056-.133-.557-.258-.788-.702-.977a2.966 2.966 0 0 1-.042.477c-.035.201-.1.405-.222.6-.017.028-.035.057-.089.022-.056-.036-.038-.063-.02-.09a1.52 1.52 0 0 0 .204-.553c.03-.169.039-.34.039-.507l-.077-.026c-.119-.78-.261-1.215-1.07-1.523.01.101.012.205.006.308a1.704 1.704 0 0 1-.112.536c-.012.03-.024.063-.083.039s-.048-.053-.039-.083c.065-.169.095-.335.104-.498a2.375 2.375 0 0 0-.024-.459c-.172-.195-.417-.382-.628-.59.006.288-.032.572-.112.86a3.825 3.825 0 0 1-.483 1.042c-.018.027-.036.057-.089.021-.056-.035-.038-.062-.02-.089.216-.334.373-.672.467-1.007.092-.32.125-.643.101-.965a1.282 1.282 0 0 1-.222-.326.58.58 0 0 1-.018.041l-.095.214c-.014.03-.026.059-.086.035-.059-.027-.047-.056-.035-.086.032-.07.062-.142.095-.213.023-.056.05-.116.074-.172a1.17 1.17 0 0 1-.015-.11c-.027-.248-.16-.44-.34-.604l-.004-.003a1.887 1.887 0 0 1-.089.234c-.056.122-.13.24-.225.362-.02.026-.038.05-.091.012-.05-.042-.03-.066-.012-.092.089-.113.157-.225.21-.335.044-.095.077-.19.1-.287a1.202 1.202 0 0 1-.189-.308.995.995 0 0 1-.124.213 1.454 1.454 0 0 1-.243.246c-.024.02-.05.041-.092-.01s-.015-.07.009-.091c.092-.074.163-.148.22-.222s.094-.145.12-.22c.042-.115.057-.04.018-.227.068-.368-.068-.587-.263-.892a.089.089 0 0 1 .012-.024 1.114 1.114 0 0 0-.394.104 3.58 3.58 0 0 0-.57.332c-.026.018-.052.035-.088-.018-.039-.053-.012-.071.018-.089.21-.142.409-.26.59-.34.183-.08.352-.125.497-.116a.462.462 0 0 0 .015-.284c-.593.219-1.06.322-1.437.346a2.05 2.05 0 0 1-.948-.145c-.03-.015-.059-.027-.032-.086.023-.06.056-.047.086-.035.234.1.515.16.888.136.37-.024.827-.125 1.413-.344l-.006-.018a4.24 4.24 0 0 0 .252-.699c-.21.057-.418.054-.625.048h-.042c-.032 0-.065-.003-.065-.065 0-.065.036-.065.065-.065h.042c.22.002.438.008.654-.063a6.26 6.26 0 0 0 .039-.23c.033-.258.335-.32.548-.09.178.19.34.391.515.474.356.17.756.018 1.043-.213l-.264-.086c-.032-.009-.062-.02-.041-.08.02-.062.05-.053.08-.041.112.035.225.07.338.11l.077-.08c.734.062 1.211-.092 1.682-.566a8.657 8.657 0 0 1-1.114-.039c-.355-.041-.648-.112-.865-.22-.03-.014-.059-.029-.03-.085.03-.06.06-.044.087-.03.201.101.482.17.823.208.347.038.755.05 1.22.035h.006c.042-.047.083-.097.128-.15.201-.084.403-.176.55-.341-.855-.092-1.67-.261-2.437-.661-.199-.222-.513-.347-.847-.432-.622-.077-1.173.077-1.68.34-.133-.124-.237-.237-.367-.358-.195-.024-.38-.128-.575-.151-.26-.03-.533.02-.793-.01-.033-.002-.066-.005-.057-.07.006-.065.039-.062.071-.057.261.03.534-.02.794.01.252.029.492.139.744.168.84-.317 1.537-.491 2.138-.465a7.1 7.1 0 0 1 2.16-.272.192.192 0 0 1-.027-.024c-.086-.086-.045-.13 0-.172.394-.4.486-.767.358-1.099-.13-.343-.485-.666-.98-.962-.527.059-1.034-.083-1.594-.021-.35.038-.693.115-1.03.228.28.1.527.267.728.504.249.293.427.693.521 1.196.012.06.021.122-.097.142-.119.024-.13-.038-.142-.097-.086-.46-.246-.82-.468-1.085-.234-.334-.77-.465-.94-.533-.56.057-1.11.119-1.59.243-.361.092-.678.22-.921.409.361-.077.737-.062 1.063.1.311.155.575.445.74.916.021.056.04.115-.076.154s-.137-.018-.154-.077c-.14-.406-.359-.649-.616-.776-.513-.255-1.57-.033-2.018.3-.26.195-.52.446-.779.74-.047.056-.097.11-.207.014-.11-.097-.062-.15-.012-.204.27-.305.542-.575.824-.782.272-.201.554-.347.844-.415.296-.328.734-.527 1.24-.657.496-.128 1.061-.193 1.636-.249-.169-.34-.385-.545-.634-.655-.267-.118-.572-.136-.903-.103-.69.237-1.304.607-1.893 1.025.053 0 .107 0 .157.003.175.011.332-.015.477.041.056.02.115.041.074.157-.05.14-.433.053-.566.044a1.69 1.69 0 0 0-.5.048c-.027.006-.057.015-.083.006-.72.444-1.236.894-1.834 1.4l-.1.036c-.534-.02-.901.054-1.12.22-.199.15-.214.388-.175.707-.092.3-.207.628-.237.978-.625.536-1.321 1.072-1.644 1.854-.071.228-.192.43-.343.61.127.021.23.06.31.122.03.023.057.047.08.077a2.88 2.88 0 0 1 .069-.394c.044-.184.11-.353.195-.489.018-.027.036-.053.089-.018.056.036.038.062.02.09-.08.12-.139.278-.18.45-.05.204-.077.429-.083.636-.003.065-.121.071-.13.006a.358.358 0 0 0-.14-.252.65.65 0 0 0-.337-.106 3.93 3.93 0 0 1-.436.397c-.124.1-.242.21-.27.373-.017.284.333.335.664.355.756.045.154.474.57.85.2.14.387.303.53.501.287.104.464.08.66-.009.038-.512-.006-.773.219-.773h.024a.96.96 0 0 1 .053-.195c.039-.095.095-.193.172-.288.02-.024.041-.05.092-.009s.03.065.009.092a1.009 1.009 0 0 0-.152.255.937.937 0 0 0-.053.213c.039.077.03.228.027.498.43-.21.82-.264 1.259-.285.82-.96 1.17-.716.45-.017l-.116.219c-.124.24-.204.426-.23.752-.21.184-1.242 1.03-.857 1.345.27-.039.439-.027.335.175-.127.27-.512.829-.385 1.137.047.113.213.1.376.062l.036-.032c.27-.22.554-.471.82-.764a4.75 4.75 0 0 0 .708-.993c.027-.053.053-.103.13-.086.08-.296.175-.59.282-.885.11-.305.234-.613.367-.922a.066.066 0 0 1 .113-.011c.112.163.222.281.331.358.098.071.196.104.29.104s.193-.033.291-.098a1.4 1.4 0 0 0 .323-.34c.018-.027.038-.054.092-.015s.035.062.014.091c-.118.166-.234.288-.355.37s-.24.125-.364.122a.63.63 0 0 1-.365-.13 1.417 1.417 0 0 1-.296-.3c-.115.27-.222.54-.32.81-.11.298-.204.6-.287.9.068.056.038.11.012.163a5.17 5.17 0 0 1-.753 1.051 7.307 7.307 0 0 1-.699.667c.033.219.09.426.19.64.447-.386.865-.777 1.232-1.18a7.47 7.47 0 0 0 .94-1.258c.017-.027.032-.057.088-.024s.039.062.024.089c-.13.225-.279.444-.439.66.03.045.006.062-.017.083-.048.039-.075.193-.086.391-.018.27 0 .604.03.844.002.033.008.066-.057.074s-.068-.023-.074-.056c-.033-.252-.047-.595-.033-.868.003-.07.012-.136.021-.195a15.78 15.78 0 0 1-.302.346c-.373.412-.8.809-1.256 1.2l-.012.009a.883.883 0 0 0 .042.07c-.397.288-.72.389-.276.774l.445-.32.473-.34c.027-.018.054-.039.092.014s.012.071-.015.092l-.476.34-.46.33a.778.778 0 0 0 .113.453.66.66 0 0 1 .098-.01l.995-.722c.027-.02.053-.038.092.015s.012.071-.015.092c-.32.234-.643.468-.966.702a.892.892 0 0 1-.115.148c-.326.234-1.463.936-1.342 1.422v.003c.273-.077.545-.172.806-.306.27-.139.533-.325.782-.58.023-.024.044-.044.092 0 .044.044.023.068 0 .092-.258.263-.53.453-.812.601v.012c-.003.044-.003.089-.006.133s-.003.089-.006.133c-.003.033-.003.066-.068.063s-.062-.036-.062-.068c.003-.045.003-.09.006-.134.003-.023.003-.05.003-.074a4.526 4.526 0 0 1-.702.252c.097.46-.143.853-.388 1.247-.14.113-1.277 1.034-.803 1.31.127.061.27.091.412.106z'/%3e%3cpath d='M636.716 125.14c-.237-.143-.542-.318-.838-.377a1.801 1.801 0 0 0-.631-.702c-.22-.142-.22-.13-.137-.287.25-.027.353-.095.356-.163.13.003.243.02.338.053a.51.51 0 0 1 .251.175c.021.027.039.053.092.012.053-.039.033-.065.012-.092a.678.678 0 0 0-.314-.22 1.279 1.279 0 0 0-.462-.058c-.015 0-.027 0-.039.006a.929.929 0 0 0-.414-.069c-.17-.16-.311-.346-.243-.577.009.009.024.012.038.015.134.038.258.077.365.127.103.045.19.1.248.166.021.024.045.047.092.003s.027-.068.006-.092a.93.93 0 0 0-.29-.198 2.228 2.228 0 0 0-.281-.104c.977-.198 1.85-.184 2.725.335.459.19.675.408.924.746l-.249.21c-.572-.014-.992.066-1.256.267-.237.178-.284.498-.293.817z'/%3e%3c/g%3e%3cpath d='M656.147 152.189c-.193.118-.35.201-.548.234a.09.09 0 0 0 .023-.024c.128-.24.276-.45.442-.64l.065-.074.009.237.009.27zm2.449 5.242c-.13.196-.29.374-.47.536-.178.16-.38.312-.596.454-.027.017-.056.035-.092-.018s-.009-.071.018-.089a5.08 5.08 0 0 0 .58-.441 2.55 2.55 0 0 0 .45-.513c.018-.026.036-.053.092-.017.054.035.036.062.018.088zm1.62-1.931-.245.376c-.018.027-.036.054-.092.018-.054-.035-.036-.062-.018-.089.083-.124.163-.252.246-.376.018-.027.035-.053.092-.018.053.036.035.062.017.092zm-.882-.124c-.042.186-.11.364-.228.527s-.294.308-.545.424c-.03.014-.06.026-.086-.033s.003-.074.032-.086c.231-.107.388-.237.495-.382a1.2 1.2 0 0 0 .207-.48c.006-.032.015-.062.077-.047s.057.044.048.077zm1.587-1.937a1.149 1.149 0 0 0-.171.222 1.437 1.437 0 0 0-.125.272c-.012.03-.02.062-.083.042s-.053-.054-.041-.083a1.42 1.42 0 0 1 .326-.542c.023-.024.044-.045.091 0 .045.044.024.068 0 .092zm1.298.127c-.056.184-.11.37-.178.554a3.53 3.53 0 0 1-.258.563c-.017.026-.032.056-.088.023s-.042-.062-.024-.089c.104-.18.18-.36.249-.539.065-.18.118-.364.174-.548.01-.032.018-.062.08-.044s.054.047.045.08zm-.589-7.592c.402.593.491 1.203.506 1.816a9.11 9.11 0 0 1 .157-.67l.009-.02c.169-.237.275-.474.329-.708s.053-.471.011-.705c-.006-.033-.011-.062.054-.074.062-.012.07.02.077.053.044.252.044.507-.012.758a2.098 2.098 0 0 1-.34.747c-.11.412-.19.826-.267 1.241l-.015.077c-.012.062-.13.053-.13-.012 0-.047 0-.092.002-.139.01-.773.018-1.55-.482-2.284-.018-.026-.039-.053.017-.092.054-.035.074-.008.092.018zm-.987 1.271c-.006.05-.009.1-.015.148-.003.05-.009.1-.012.151-.003.033-.006.065-.07.06s-.063-.04-.06-.072c.003-.05.009-.1.012-.148.003-.05.009-.1.015-.15.003-.033.006-.066.07-.06s.063.038.06.071zm-.275 1.724c.1.329.177.663.234 1.007.038.234.062.47.074.714.026-.045.056-.086.088-.128a1.5 1.5 0 0 1 .418-.346c.027-.018.056-.033.089.024s.006.074-.024.088a1.31 1.31 0 0 0-.379.317.88.88 0 0 0-.184.403c-.011.065-.13.054-.13-.012.003-.355-.027-.702-.08-1.04s-.13-.666-.228-.989c-.009-.032-.02-.062.042-.08s.07.012.08.042zm1.374.616a4.436 4.436 0 0 1 .08 1.487c-.003.032-.009.065-.074.056s-.06-.041-.056-.074c.026-.222.035-.453.023-.696a4.503 4.503 0 0 0-.1-.746c-.006-.033-.015-.063.05-.077.062-.015.071.017.077.05zm1.178-.219c.045.243.069.48.057.708-.012.23-.056.45-.151.663-.08.243-.086.486-.044.729.041.249.136.497.248.75.015.029.027.058-.032.085s-.074-.003-.086-.032a3.173 3.173 0 0 1-.26-.78 1.622 1.622 0 0 1 .05-.796l.003-.006a1.7 1.7 0 0 0 .139-.62 2.812 2.812 0 0 0-.056-.678c-.006-.032-.012-.062.053-.074s.07.021.077.054zm.57-1.956c-.03.122-.06.247-.092.371-.03.122-.06.246-.092.37-.006.033-.015.063-.077.048s-.056-.048-.048-.08c.03-.122.06-.246.092-.37.03-.122.06-.246.092-.37.009-.033.015-.063.08-.048.062.015.056.047.047.08zm-.584-3.246c.036.113.068.226.104.338.009.033.017.062-.045.08-.062.02-.07-.012-.08-.041l-.103-.338c-.012-.033-.021-.062.041-.08s.071.012.08.041zm.299-2.467c.003.154.003.308-.009.969a.967.967 0 0 0-.293.477 1.7 1.7 0 0 0-.009.731c.006.033.012.065-.053.077s-.071-.02-.077-.053a1.778 1.778 0 0 1 .012-.788c.059-.222.174-.4.331-.54l-.026-.41c-.003-.155-.003-.309-.006-.46 0-.033 0-.065.065-.065s.065.032.065.065zm-2.449-.859c.379.249.705.524.93.85.228.329.358.705.343 1.15a.067.067 0 0 1-.092.056l-.642-.276c.142.921.106 1.656-.095 2.219a2.003 2.003 0 0 1-1.17 1.232.064.064 0 0 1-.086-.08c.11-.35.175-.699.201-1.048s.012-.7-.047-1.046c-.006-.033-.012-.065.053-.074.065-.012.071.02.074.053.06.359.077.72.048 1.078a4.8 4.8 0 0 1-.166.942c.459-.225.785-.586.968-1.099.202-.565.232-1.318.072-2.271-.01-.05.044-.092.088-.072l.661.285a1.718 1.718 0 0 0-.32-.975c-.216-.31-.527-.574-.894-.814-.027-.018-.054-.036-.018-.092.035-.053.062-.036.089-.018zm6.412-1.262-.053.128c-.018.042-.033.086-.05.127-.012.03-.024.06-.083.036s-.048-.054-.036-.083l.054-.128c.018-.042.032-.086.05-.127.012-.03.024-.06.083-.036s.047.054.035.083zm-1.508-.032c.125.05.226.118.309.201.083.08.145.175.198.279.015.03.03.059-.026.085-.06.03-.075 0-.086-.026-.048-.092-.104-.175-.175-.246s-.157-.13-.267-.172c-.03-.012-.059-.024-.035-.083s.053-.047.083-.035zm-2.239.642a1.4 1.4 0 0 1 .326.631c.056.234.065.495.036.773-.003.033-.006.066-.071.06s-.063-.039-.057-.071a2.193 2.193 0 0 0-.032-.732 1.292 1.292 0 0 0-.296-.572c-.021-.023-.045-.047.006-.091.047-.045.07-.018.091.005zm-7.568.729-.026.255a8.156 8.156 0 0 0-.024.255c-.003.032-.006.065-.071.059s-.062-.039-.056-.071c.009-.086.017-.172.023-.255l.027-.255c.003-.032.006-.065.071-.059s.062.039.06.071zm1.404-.74c.036.121.072.243.11.364l.033.11c.008.032.017.062-.045.08s-.07-.012-.08-.045l-.032-.11c-.036-.12-.071-.242-.11-.364-.009-.03-.018-.062.044-.08s.072.012.08.045zm2.88 1.934a.757.757 0 0 1 .026.157 1.37 1.37 0 0 1 0 .157c-.003.032-.006.065-.07.059s-.063-.038-.06-.071a1.046 1.046 0 0 0 0-.136.69.69 0 0 0-.024-.137c-.009-.032-.018-.062.045-.08s.07.015.08.048zm.992-2.192a.42.42 0 0 1 .118.195.292.292 0 0 1-.03.21c-.014.03-.032.06-.088.027-.056-.03-.042-.059-.027-.088.02-.042.027-.08.018-.122s-.039-.089-.083-.136c-.024-.024-.044-.045 0-.092.044-.044.068-.024.092 0zm-6.872.346c0 .155.024.303.074.439.05.14.13.27.243.39.15.173.228.341.27.513.04.17.044.335.053.498 0 .032.003.065-.063.068s-.065-.03-.068-.062c-.006-.16-.011-.32-.047-.474a1.076 1.076 0 0 0-.24-.46 1.318 1.318 0 0 1-.27-.432 1.407 1.407 0 0 1-.082-.485c0-.033 0-.066.065-.066s.065.033.065.066zm2.781 1.872c.154.288.24.57.273.854.035.28.018.568-.033.867a1.46 1.46 0 0 0 .208 1.002c.174.296.45.577.805.838a3.573 3.573 0 0 1-.16-1.123c.018-.426.148-.838.447-1.226.128-.166.214-.338.273-.512.062-.175.095-.353.118-.525.003-.032.01-.065.072-.056.065.006.059.038.056.071-.024.184-.06.367-.122.551s-.157.37-.293.548a1.984 1.984 0 0 0-.42 1.152c-.018.406.07.827.207 1.26.018.055-.05.103-.098.073-.447-.302-.788-.634-.998-.986-.204-.347-.287-.711-.222-1.087.047-.288.062-.563.03-.833s-.113-.533-.258-.805c-.015-.027-.033-.057.026-.086.057-.033.074-.003.09.026zm-1.116 1.71c0 .308-.086.616-.24.924a4.233 4.233 0 0 1-.471.722c.097-.038.198-.077.296-.124a2.867 2.867 0 0 0 .874-.622c.121-.124.243-.27.367-.441.018-.027.038-.054.092-.015s.032.065.015.092a4.485 4.485 0 0 1-.38.456 3.101 3.101 0 0 1-.337.302 30.597 30.597 0 0 1 .086.427c.006.032.014.062-.05.077-.063.014-.072-.018-.078-.05l-.047-.229c-.009-.047-.018-.095-.03-.142-.154.11-.31.192-.462.264-.177.082-.352.145-.527.21-.056.02-.11-.056-.071-.104.249-.296.459-.59.604-.883.145-.29.228-.577.228-.864 0-.033 0-.066.065-.066s.066.033.066.066zm-1.36-.11v.293c0 .033 0 .065-.065.065s-.065-.032-.065-.065v-.293c0-.033 0-.065.065-.065s.065.032.065.065z'/%3e%3cpath d='M653.709 142.07c.178.436.225.842.157 1.22-.065.38-.246.732-.515 1.064l-.01.009c-.257.222-.45.489-.592.788a3.267 3.267 0 0 0-.228.646c.071-.098.142-.19.228-.276a1.39 1.39 0 0 1 .637-.38 5.94 5.94 0 0 0 .77-.503 5.03 5.03 0 0 0 .676-.63c.02-.024.044-.048.091-.006s.027.065.006.091c-.213.24-.444.454-.693.646s-.512.364-.794.518l-.014.006c-.243.066-.43.19-.587.347s-.281.352-.403.554c-.032.053-.13.018-.118-.045.065-.367.163-.713.31-1.027s.35-.593.623-.827c.255-.314.423-.646.486-1.001s.017-.738-.152-1.15c-.011-.029-.023-.058.036-.085.06-.024.074.006.086.035zm2.763 4.432c-.041.118.045.228.22.453l.118.154c.234.31.32.663.326 1.033.006.362-.062.738-.133 1.102-.012.063-.119.06-.128-.003a2.236 2.236 0 0 0-.482-1.075c-.255-.32-.596-.604-.987-.865-.026-.018-.053-.035-.018-.092.036-.053.063-.035.09-.017.402.27.752.562 1.015.894.202.252.353.524.442.824a4.25 4.25 0 0 0 .074-.765c-.006-.343-.086-.669-.3-.956-.044-.063-.082-.11-.115-.151-.204-.264-.302-.391-.24-.575.012-.03.02-.062.083-.041s.05.053.041.082zm1.179-.078c.048.05.098.101.146.155.047.05.097.1.145.154.023.023.044.047-.003.091s-.071.021-.092-.003c-.048-.05-.098-.1-.145-.154-.048-.05-.098-.1-.145-.154-.021-.023-.045-.047.003-.091s.07-.021.091.002zm1.446.466c-.092.29-.18.577-.27.867-.092.29-.18.578-.272.868-.01.033-.018.062-.08.042-.062-.018-.053-.05-.042-.08.092-.29.181-.578.27-.868.092-.29.18-.578.272-.868.01-.033.018-.062.08-.044.063.02.054.05.042.083zm.817 4.848a.302.302 0 0 0 0 .217c.012.03.024.062-.038.083-.06.023-.071-.006-.083-.039a.433.433 0 0 1 0-.311c.012-.033.024-.062.083-.039.062.024.05.054.038.083zm-.859-1.424c-.038.15-.08.305-.118.456a26.13 26.13 0 0 1-.119.459c-.008.032-.017.062-.08.047-.062-.017-.056-.047-.047-.08l.119-.459c.038-.15.08-.305.118-.456.009-.033.015-.062.08-.047.062.014.056.047.047.08zm-1.238-.006.113.112c.024.024.044.045 0 .092-.048.045-.071.024-.092 0l-.113-.112c-.023-.024-.044-.045 0-.092.048-.045.072-.024.092 0zm-1.454-.696c-.03.086-.06.171-.092.257-.03.086-.06.172-.092.258-.012.03-.02.062-.083.039-.059-.021-.05-.054-.038-.083.03-.086.06-.172.092-.258.03-.086.059-.172.091-.258.012-.032.021-.062.083-.041s.05.053.042.083zm-2.083 2.2a.867.867 0 0 0-.171.279c-.039.1-.06.204-.077.314-.006.032-.012.065-.074.053-.065-.012-.06-.041-.054-.074a1.97 1.97 0 0 1 .086-.338.962.962 0 0 1 .196-.32c.02-.023.044-.047.092-.002s.026.068.003.091zm-5.959 5.838a.829.829 0 0 1-.127.199 1.373 1.373 0 0 1-.199.193c-.024.02-.05.041-.092-.012-.041-.05-.014-.071.01-.092a1.02 1.02 0 0 0 .287-.34c.014-.03.026-.06.085-.036.06.026.045.056.033.086zm.933-.494a.44.44 0 0 1-.127.169.765.765 0 0 1-.202.115c-.032.012-.062.024-.083-.038-.023-.062.01-.074.039-.083.065-.024.121-.056.163-.092s.07-.077.092-.121c.011-.03.026-.06.085-.033s.045.056.033.086zm1.238-.756c-.02.036-.044.072-.077.107s-.077.071-.133.107c-.027.018-.056.035-.089-.02s-.006-.075.024-.09a.476.476 0 0 0 .169-.166c.017-.026.032-.056.088-.02.057.032.039.059.024.089zm1.863-4.845c-.059.174-.1.346-.115.518s-.006.344.03.512c.005.033.014.063-.048.078s-.071-.018-.077-.05c-.041-.184-.05-.371-.033-.555s.06-.367.122-.548c.012-.032.02-.062.083-.041s.05.053.041.083zm1.268-12.894c-.006.145-.044.287-.113.43s-.165.28-.293.42c-.02.024-.044.048-.092.003s-.026-.068-.003-.092c.119-.13.21-.26.273-.388a.96.96 0 0 0 .098-.379c0-.032.003-.065.068-.062s.062.035.062.068zm-1.294-1.143c.112.195.18.394.219.592.038.196.047.394.035.59 0 .032-.003.065-.068.062s-.062-.036-.062-.068c.012-.187.003-.37-.033-.557-.035-.184-.1-.37-.204-.554-.015-.027-.033-.056.024-.089s.074-.003.089.024zm-1.715 2.126a1.888 1.888 0 0 1-.507-.52.816.816 0 0 1-.118-.546c.006-.032.011-.062.074-.053.065.012.059.041.053.074a.69.69 0 0 0 .1.459c.095.16.252.32.472.483.026.018.053.038.014.092s-.065.032-.091.014zm1.898 3.226v.282c0 .032 0 .065-.065.065s-.065-.033-.065-.066v-.281c0-.033 0-.065.065-.065s.065.032.065.065zm-2.426-2.444c.382.362.61.797.732 1.28.077.3.11.616.116.948.002 0 .008-.003.014-.003.172-.06.305-.213.397-.46.098-.26.148-.621.157-1.08 0-.003.006-.03.01-.033.135-.222.218-.447.275-.67s.083-.45.103-.678c.006-.056.083-.08.119-.032.222.314.417.64.568.99s.252.719.29 1.122c.004.032.007.065-.059.07s-.068-.026-.07-.058a3.631 3.631 0 0 0-.279-1.082 4.834 4.834 0 0 0-.453-.82 3.62 3.62 0 0 1-.09.521c-.055.231-.141.46-.28.69-.01.468-.063.839-.163 1.108-.107.287-.267.465-.477.536-.021.006-.039.012-.057.003-.003.16-.011.323-.023.489-.003.033-.006.065-.071.06s-.063-.04-.06-.072c.045-.539.033-1.051-.085-1.513a2.471 2.471 0 0 0-.697-1.218c-.023-.02-.047-.044-.003-.092s.069-.023.092-.003zm1.422 6.081-.08.513-.08.51c-.003.032-.009.064-.074.053-.062-.01-.06-.042-.053-.074l.08-.51.08-.512c.006-.033.009-.063.074-.054.062.012.06.042.053.074zm-2.731 1.159.071.388c.006.032.012.062-.053.074-.062.012-.071-.021-.077-.054l-.071-.388c-.006-.032-.012-.062.053-.074.062-.012.071.021.074.054zm2.361-3.134a2.838 2.838 0 0 1-.199.746 2.78 2.78 0 0 1-.432.696l-.003.003c-.234.255-.347.519-.382.794s.003.563.08.856c.009.033.015.062-.047.08-.063.015-.072-.015-.08-.047a2.363 2.363 0 0 1-.083-.904c.038-.299.163-.59.414-.865a2.62 2.62 0 0 0 .412-.66c.098-.231.16-.468.19-.714.003-.033.008-.065.07-.056.066.009.06.041.057.074zm-.616-.918c.044.248.006.494-.098.743a2.79 2.79 0 0 1-.483.723l-.006.006c-.222.186-.379.39-.503.601a5.133 5.133 0 0 0-.308.66c-.012.03-.024.06-.086.036-.06-.024-.048-.053-.036-.083.092-.228.187-.456.317-.678s.296-.436.527-.631c.202-.228.359-.456.457-.684.094-.222.13-.448.088-.667-.005-.032-.011-.062.054-.077.062-.012.07.02.077.054zm-3.012 1.43a2.16 2.16 0 0 1-.193 1.298c-.184.373-.477.693-.835.98-.024.02-.05.041-.092-.012-.042-.05-.015-.07.012-.092.343-.275.625-.583.8-.936s.248-.752.18-1.223c-.003-.033-.009-.065.056-.074s.068.024.074.056zm-3.848 2.13c.038.077.074.154.11.23.04.084.08.164.118.247.015.03.026.059-.03.086-.059.026-.074 0-.086-.03-.038-.083-.08-.163-.118-.246-.036-.077-.074-.154-.11-.228-.015-.03-.026-.06.03-.086.06-.026.074 0 .086.03zm-1.526.03c-.003.293.021.583.092.861.074.279.193.548.388.806l.006.012c.098.198.154.397.193.598.026.148.044.297.053.445.187-.199.329-.4.432-.61.119-.243.181-.495.187-.756 0-.032 0-.065.065-.062.065 0 .065.032.062.065a1.96 1.96 0 0 1-.198.809c-.127.26-.314.51-.56.75-.038.038-.107.01-.11-.045-.008-.193-.023-.385-.059-.572s-.089-.373-.177-.56c-.202-.27-.33-.554-.406-.847s-.101-.592-.098-.897c0-.033 0-.066.065-.066s.065.033.065.066zm.208 5.21a3.287 3.287 0 0 1 .225-.957c.012-.03.023-.06.083-.036.062.024.047.054.038.083a3.155 3.155 0 0 0-.216.916c-.003.032-.003.065-.071.059-.065-.003-.062-.036-.06-.068zm-.178 1.451.08-.578c.003-.032.009-.065.074-.056s.06.042.056.074l-.08.578c-.003.032-.009.065-.074.056s-.059-.041-.056-.074zm-.998 2.432c.095-.095.186-.207.272-.332.09-.127.172-.266.255-.412.015-.03.033-.056.089-.026.056.032.041.059.024.089a5.182 5.182 0 0 1-.261.423c-.092.13-.187.249-.29.35-.024.023-.048.044-.092 0s-.021-.068 0-.092zm-1.443-8.16v.24c0 .032 0 .065-.065.065s-.065-.033-.065-.066v-.24c0-.032 0-.065.065-.065s.065.033.065.066zm-2.44 5.621c-.003-.059-.006-.118-.012-.177l-.012-.18c0-.034-.003-.066.062-.07s.068.028.068.063l.012.178c.003.06.006.118.012.178 0 .032.003.065-.062.068s-.068-.027-.068-.063zm6.128-9.999c-.124.43-.222.876-.213 1.259.006.37.11.678.376.85.31.201.447.503.577.796.01.018.015.036.024.054.039-.145.071-.3.086-.453.02-.19.02-.374-.006-.54-.006-.032-.012-.065.053-.077.063-.011.072.021.074.054.03.177.03.376.01.574a3.13 3.13 0 0 1-.14.643c-.018.053-.095.06-.118.009a7.43 7.43 0 0 1-.098-.213c-.122-.276-.249-.56-.53-.74-.308-.2-.43-.546-.439-.957-.006-.397.092-.856.22-1.298.008-.032.017-.062.08-.044s.053.047.044.08zm-.43-1.639c.042.335.03.643-.026.954a5.007 5.007 0 0 1-.29.951 3.01 3.01 0 0 0-.208 1.25c.02.424.13.844.326 1.244.015.03.03.06-.03.086-.059.03-.074 0-.086-.03a3.17 3.17 0 0 1-.124-2.598 4.75 4.75 0 0 0 .281-.926 2.84 2.84 0 0 0 .027-.913c-.003-.032-.009-.065.056-.074.063-.008.069.024.074.057zm-2.846 4.053a.989.989 0 0 0-.074.586c.035.199.121.4.243.601.018.027.032.057-.02.09-.057.032-.075.005-.09-.024a1.88 1.88 0 0 1-.258-.646 1.095 1.095 0 0 1 .083-.66c.015-.03.027-.06.086-.033s.045.056.033.086zm-1.241-.445c.02.116.027.252.015.388a1.072 1.072 0 0 1-.09.338v.003a.497.497 0 0 0-.047.329c.024.115.083.23.163.35.018.026.036.053-.017.091s-.072.012-.092-.018a1.065 1.065 0 0 1-.184-.396.605.605 0 0 1 .06-.415.951.951 0 0 0 .076-.293 1.382 1.382 0 0 0-.012-.353c-.005-.032-.011-.065.054-.074.065-.012.07.02.074.053zm7.257-10.748a2.897 2.897 0 0 0 .39 1.833c.019.026.033.056-.023.089s-.071.003-.089-.024c-.163-.284-.287-.587-.358-.904s-.092-.651-.048-1.007c.003-.032.006-.065.072-.056.065.006.062.039.056.071zm-.91.879c.17.3.314.622.424.974s.184.741.21 1.17c.003.033.003.066-.062.069s-.065-.03-.068-.063a4.71 4.71 0 0 0-.616-2.085c-.015-.03-.033-.056.024-.089s.074-.003.088.024zm-4.508.139c-.435.62-.625 1.123-.66 1.558-.036.433.08.794.252 1.129l.002.009c.119.343.172.684.163 1.027a3.232 3.232 0 0 1-.198 1.025c-.012.033-.02.063-.083.039-.062-.02-.05-.054-.039-.083.119-.329.184-.655.193-.984a2.81 2.81 0 0 0-.154-.977c-.18-.352-.302-.738-.264-1.194s.234-.983.685-1.623c.017-.027.038-.053.091-.018.054.039.036.066.015.092zm4.203-1.783a.918.918 0 0 1-.065.572c-.077.174-.21.34-.409.497-.201.157-.32.362-.373.608-.056.251-.044.545.018.873.006.033.012.066-.053.077-.062.012-.071-.02-.077-.053-.063-.347-.074-.655-.015-.924a1.14 1.14 0 0 1 .42-.681c.181-.143.3-.294.37-.448a.793.793 0 0 0 .057-.491c-.006-.033-.015-.063.05-.077.063-.012.071.02.077.05zm-4.452.382c.086.276.09.545.01.815-.078.266-.238.53-.48.788l-.006.006a1.512 1.512 0 0 0-.465.72c-.092.28-.125.595-.143.92-.003.033-.003.066-.068.063s-.062-.036-.062-.068c.018-.335.053-.658.148-.954s.249-.563.5-.776a1.87 1.87 0 0 0 .451-.735 1.263 1.263 0 0 0-.009-.74c-.009-.033-.02-.063.042-.08s.07.012.08.044zm2.548.133a.954.954 0 0 0 0 .29c.015.093.05.181.11.267.017.027.035.054-.018.092-.054.036-.071.012-.092-.018a.784.784 0 0 1-.13-.317 1.02 1.02 0 0 1 0-.328c.002-.033.008-.066.074-.057s.059.042.056.074zm-.122-.669a1.066 1.066 0 0 0-.539.5c-.124.235-.198.537-.222.907.015.018.024.033.024.044.124.17.21.37.263.596.06.246.08.524.072.826 0 .033-.003.065-.069.062s-.062-.035-.062-.065a3.029 3.029 0 0 0-.068-.794 1.528 1.528 0 0 0-.225-.524c-.483.45-.72.948-.735 1.49-.017.566.205 1.182.631 1.84.018.026.036.056-.017.091s-.072.006-.09-.02c-.44-.682-.669-1.322-.651-1.914.018-.583.273-1.117.797-1.596v-.003c.02-.406.1-.738.24-.999.142-.263.34-.45.604-.56.03-.011.06-.023.086.036.024.06-.006.074-.036.086zm-.722-.936c-.006.053-.012.095-.015.14-.033.307-.065.654-.3.864-.13.116-.213.252-.272.397a1.97 1.97 0 0 0-.11.486c-.002.032-.005.065-.07.056-.066-.006-.06-.038-.057-.074.02-.18.056-.355.119-.518a1.15 1.15 0 0 1 .305-.448c.195-.174.23-.497.257-.779.006-.053.012-.103.015-.142.003-.032.01-.065.074-.056s.06.041.057.074zm7.076 7.55c.077.16.14.326.18.495s.063.343.054.524c0 .033-.003.065-.068.062s-.062-.035-.062-.068a1.791 1.791 0 0 0-.048-.489 2.429 2.429 0 0 0-.175-.468c-.014-.03-.026-.059.033-.085s.071 0 .086.03zm.021 2.322c.056.267.059.54.011.812s-.148.551-.296.832c-.1.234-.198.468-.299.702-.015.03-.027.06-.086.036s-.047-.056-.035-.086c.1-.234.198-.471.299-.705l.003-.006c.145-.27.24-.533.287-.794a2.008 2.008 0 0 0-.012-.764c-.006-.032-.012-.065.05-.077.063-.015.072.018.078.05zm-1.475-2.162c.423.471.699.969.829 1.493.133.524.118 1.075-.042 1.65-.008.032-.017.062-.08.044s-.053-.047-.044-.08c.154-.554.169-1.08.042-1.584s-.394-.984-.803-1.44c-.02-.024-.042-.047.006-.092s.07-.017.092.006zm-.131 2.607a6.646 6.646 0 0 1-1.084 1.653 3.148 3.148 0 0 0-.672 1.173c-.018.059-.13.038-.125-.024.012-.196-.012-.391-.065-.587s-.142-.394-.26-.59v.004c-.237-.35-.338-.702-.32-1.052.02-.35.16-.696.408-1.042.143-.243.243-.489.314-.732s.107-.489.116-.734c0-.033.003-.066.068-.063s.062.036.062.068a3.26 3.26 0 0 1-.45 1.529l-.003.006c-.234.329-.367.654-.385.977-.018.326.08.649.3.975l.002.003c.124.207.216.414.276.625.026.097.047.195.059.293a3.312 3.312 0 0 1 .586-.91 6.15 6.15 0 0 0 .62-.811 6.68 6.68 0 0 0 .444-.812c.014-.03.026-.059.086-.032s.044.056.032.086zm-3.865-1.244c-.01.323.02.625.086.909.065.281.171.545.32.788.017.027.032.056-.021.089-.056.035-.071.006-.089-.02a2.817 2.817 0 0 1-.335-.824 3.742 3.742 0 0 1-.089-.942c0-.033.003-.065.066-.063.065.003.065.036.062.066zm-2.201 1.179v.379c0 .032 0 .065-.065.065s-.065-.033-.065-.065v-.38c0-.032 0-.065.065-.065s.065.033.065.066zm.729-2.012c.006.223-.024.439-.092.646-.071.207-.18.406-.34.592-.022.024-.042.05-.093.006-.05-.041-.026-.065-.006-.091a1.62 1.62 0 0 0 .314-.551 1.71 1.71 0 0 0 .086-.602c0-.032-.003-.065.063-.065s.065.033.065.062zm-1.982 3.905c-.355-.886-.441-1.588-.352-2.16a2.455 2.455 0 0 1 .705-1.374c.234-.24.438-.477.571-.773s.196-.652.148-1.132c-.003-.033-.006-.065.06-.071s.065.027.07.06c.048.503-.017.879-.16 1.196-.139.314-.352.563-.595.811a2.339 2.339 0 0 0-.67 1.304c-.085.55 0 1.232.347 2.094.012.03.024.06-.035.083s-.074-.006-.086-.036zm-1.143-1.455a.9.9 0 0 0-.057.43c.015.142.069.287.157.432.018.027.036.056-.02.089-.057.035-.071.006-.09-.021-.097-.16-.156-.323-.174-.486s.003-.326.065-.488c.012-.03.024-.06.083-.039.062.024.048.053.039.083zm5.621-3.993c.235.329.37.67.398 1.025s-.054.723-.255 1.105c-.015.027-.03.056-.086.027-.06-.03-.042-.06-.027-.086.19-.359.267-.702.24-1.034-.024-.332-.154-.652-.373-.96-.02-.026-.039-.053.015-.092s.07-.012.092.015zm1.757-1.374a3.002 3.002 0 0 1 .089 2.088c-.018.06-.124.047-.127-.018-.012-.326-.08-.619-.202-.877s-.302-.48-.536-.669c-.024-.02-.05-.041-.009-.092s.065-.03.092-.009a2.018 2.018 0 0 1 .746 1.262c.039-.216.057-.432.048-.649a2.81 2.81 0 0 0-.22-.989c-.011-.03-.023-.06.036-.086.06-.023.074.006.086.036zm1.043-1.425c.23.228.394.53.494.903.098.368.134.8.116 1.295v.003c-.024.21-.033.415-.009.604.02.187.074.358.172.513.018.026.035.056-.018.091-.056.036-.074.006-.092-.02a1.326 1.326 0 0 1-.192-.57 2.85 2.85 0 0 1 .009-.633v.003c.017-.483-.018-.903-.11-1.256-.095-.35-.246-.63-.46-.844-.023-.024-.047-.045 0-.092.045-.047.069-.024.093 0zm-2.767-.275c-.15.183-.243.4-.287.64a2.42 2.42 0 0 0 .006.8c.006.032.012.061-.053.073-.063.012-.069-.02-.075-.053a2.528 2.528 0 0 1-.005-.844c.047-.261.15-.495.314-.7.02-.023.041-.05.091-.008s.03.065.01.092zm-5.423 3.652c-.024.539-.18.977-.433 1.339-.251.358-.595.642-1 .88-.028.017-.057.032-.09-.024s-.006-.071.024-.09c.388-.227.72-.5.96-.843.24-.341.388-.756.411-1.268 0-.033.003-.065.069-.062s.062.035.062.068zm-.14-1.866c.03.201.018.397-.026.592a2.715 2.715 0 0 1-.22.584c-.014.03-.029.056-.085.03-.06-.03-.045-.06-.03-.087.095-.19.169-.373.21-.554s.054-.358.027-.545c-.003-.032-.009-.065.056-.074s.072.024.074.057zm3.673-.27v.184l.063.954.006.085c.003.033.003.066-.06.072h-.02c-.01.011-.024.017-.054.017-.065 0-.065-.032-.065-.065v-1.054l-.018-.258c-.003-.033-.006-.065.06-.071.065-.003.068.027.07.06v.02c.015.012.015.032.015.053zm.887-1.638c-.262.317-.365.622-.371.921s.086.599.222.895c.308.495.409.986.376 1.48-.03.493-.192.981-.409 1.47-.014.03-.026.06-.085.033s-.045-.057-.033-.086c.213-.474.367-.951.397-1.425a2.31 2.31 0 0 0-.359-1.41l-.003-.006c-.145-.314-.242-.63-.236-.957.005-.328.121-.66.4-1 .02-.024.04-.051.091-.01s.03.066.01.092zm-5.697-10.156c.43-.33.85-.516 1.292-.563.438-.045.891.05 1.383.281l.489-.006c.165-.003.334-.006.5-.006.033 0 .065 0 .065.065s-.032.065-.065.065c-.169.003-.335.006-.5.006l-.45.006-.01.01c-.527.464-.977.719-1.377.802a1.324 1.324 0 0 1-1.09-.237c-.032-.024-.065-.047-.02-.113s.08-.044.112-.02a1.2 1.2 0 0 0 .966.21c.35-.074.746-.29 1.211-.684-.427-.187-.818-.26-1.194-.222-.408.041-.805.219-1.211.53-.033.023-.065.047-.113-.015-.047-.065-.017-.089.015-.113z'/%3e%3cpath d='M639.447 126.22c.18 0 .326.146.326.326a.327.327 0 0 1-.326.326c-.178 0-.326-.145-.326-.326s.145-.325.326-.325zm2.243 1.97c.233-.121.414-.251.565-.385a2.71 2.71 0 0 0 .367-.406c.018-.026.039-.053.092-.014s.032.065.015.091a2.83 2.83 0 0 1-.385.43c-.157.14-.347.272-.593.4-.03.015-.059.03-.086-.027-.03-.056-.003-.074.027-.086zm4.623-1.913a.652.652 0 0 1 .361.003.957.957 0 0 1 .35.192c.023.021.05.042.009.092s-.066.03-.092.009c-.101-.083-.205-.14-.302-.166s-.196-.026-.294-.003c-.032.01-.062.018-.08-.047-.017-.062.015-.071.045-.08zm-2.645.106c.103-.236.26-.417.477-.533.213-.112.482-.16.811-.13.033.003.065.006.06.071s-.04.062-.072.06c-.305-.027-.55.014-.74.115a.91.91 0 0 0-.418.47c-.012.03-.026.06-.086.033s-.047-.056-.032-.086zm.302.433a.529.529 0 0 1 .145-.3.697.697 0 0 1 .335-.183c.032-.009.062-.018.08.045s-.015.07-.045.08a.556.556 0 0 0-.272.148.432.432 0 0 0-.11.23c-.006.033-.012.063-.074.054s-.06-.041-.053-.074zm-4.402 1.464a1.993 1.993 0 0 0-.183.352 1.028 1.028 0 0 0-.06.414c.003.033.006.065-.059.068s-.068-.026-.071-.059a1.18 1.18 0 0 1 .065-.468c.048-.136.119-.26.196-.379.017-.027.035-.056.089-.02.056.035.038.062.02.088zm1.262.565v.195c0 .033 0 .066-.065.066s-.065-.033-.065-.066v-.195c0-.033 0-.065.065-.065s.065.032.065.065zm-.82-1.41a1.2 1.2 0 0 0 .388.074c.13 0 .263-.018.394-.047.032-.006.062-.015.077.047s-.018.071-.048.08a1.748 1.748 0 0 1-.426.05 1.244 1.244 0 0 1-.433-.083c-.032-.011-.062-.023-.038-.083.023-.062.053-.047.083-.038zm.811-2.367a.397.397 0 0 0-.26.08.472.472 0 0 0-.163.237c-.01.033-.018.062-.08.045s-.054-.05-.045-.08c.033-.104.1-.22.21-.302a.538.538 0 0 1 .341-.107c.033 0 .065.003.065.065 0 .065-.032.065-.065.065zm-1.312.134a.995.995 0 0 0-.234.136.318.318 0 0 0-.104.142c-.012.033-.02.062-.083.042s-.05-.05-.041-.083a.46.46 0 0 1 .145-.202c.068-.056.157-.11.27-.157.03-.012.059-.024.083.036.026.059-.003.074-.036.086zm-.809.023a.852.852 0 0 0-.337.412c-.012.03-.021.062-.083.039-.06-.021-.05-.054-.039-.083.036-.098.09-.187.154-.267s.142-.148.231-.21c.027-.018.054-.036.092.017s.012.072-.018.092zm-1.04.833a2.174 2.174 0 0 0-.473.489c-.018.026-.039.053-.092.014s-.033-.065-.015-.092c.074-.103.154-.198.237-.284s.172-.163.264-.231c.026-.02.053-.039.092.012.038.053.011.07-.015.092zm.104 1.146c-.062.068-.124.136-.186.201l-.19.202c-.02.023-.044.047-.092.003s-.026-.068-.003-.092l.187-.201c.062-.066.124-.134.19-.202.02-.024.044-.047.091-.003s.027.068.003.092zm-1.051.305v.403c0 .032 0 .065-.065.065s-.065-.033-.065-.065v-.403c0-.033 0-.065.065-.065s.065.032.065.065zm1.347 1.771c-.02.22-.04.439-.062.66l-.006.063c-.003.033-.005.065-.07.06s-.063-.04-.06-.072c.003-.02.003-.041.006-.062l.062-.66c.003-.033.006-.066.071-.06s.063.039.06.071zm-.79-.586c-.003.142-.01.287-.015.43 0 .032-.003.065-.068.062s-.062-.036-.062-.066c.003-.145.008-.287.014-.432 0-.033.003-.065.069-.062s.062.035.062.068zm-.735-5.61a.91.91 0 0 1 .584.584c.012.032.02.061-.042.082s-.07-.012-.083-.041a.811.811 0 0 0-.195-.317.87.87 0 0 0-.311-.19c-.03-.012-.06-.023-.039-.083.024-.062.054-.05.083-.038zm6.451 8.412a2.034 2.034 0 0 1 .027 1.685c-.012.03-.024.06-.083.036s-.047-.056-.035-.086c.11-.264.163-.527.157-.79a1.973 1.973 0 0 0-.184-.792c-.015-.03-.027-.059.033-.086s.074.003.085.033zm-2.103 2.432c.092-.317.225-.593.38-.844s.328-.48.503-.705c.201-.261.335-.545.406-.836.077-.314.08-.64.024-.948-.006-.032-.012-.062.053-.074.062-.011.071.021.074.054.06.326.056.666-.024 1a2.29 2.29 0 0 1-.43.887 7.893 7.893 0 0 0-.494.693 3.27 3.27 0 0 0-.364.811c-.01.033-.018.062-.08.045s-.054-.048-.045-.08zm-2.703-.714c.043-.119.109-.222.198-.314s.198-.169.328-.231c.03-.015.06-.027.086.03.027.059 0 .074-.032.085a.993.993 0 0 0-.294.205.716.716 0 0 0-.168.27c-.012.029-.024.062-.083.038-.06-.02-.05-.053-.039-.083zm-.525-.19c.1-.13.201-.251.317-.358.118-.11.251-.202.406-.264.03-.012.059-.023.082.036.024.062-.005.074-.038.083a1.18 1.18 0 0 0-.364.237c-.11.1-.208.222-.303.343-.02.027-.038.054-.091.012-.054-.038-.033-.065-.012-.092zm2.802-2.778c.112.05.219.074.323.077s.204-.012.302-.039c.032-.008.062-.017.08.045s-.015.071-.045.08a.995.995 0 0 1-.71-.044c-.03-.015-.06-.027-.033-.086s.056-.045.086-.033zm-1.395-.181.097-.112.012-.015c.021-.024.045-.047.092-.006.048.044.027.068.006.092l-.012.015a3.445 3.445 0 0 1-.1.112c-.021.024-.042.048-.092.006-.048-.041-.027-.068-.006-.092zm30.165 8.703c.062.068.115.139.163.216.044.077.08.157.11.243.011.032.02.062-.042.08-.062.02-.071-.012-.083-.042a.95.95 0 0 0-.098-.216.995.995 0 0 0-.145-.192c-.02-.024-.044-.048.003-.092s.071-.021.092.003zm-33.489 15.716c.143.13.29.249.454.332.16.08.337.13.539.13.032 0 .065 0 .065.065s-.033.066-.065.066c-.223 0-.418-.057-.599-.146a2.202 2.202 0 0 1-.483-.35c-.023-.02-.047-.044-.002-.09s.068-.028.091-.004z'/%3e%3cg fill='red'%3e%3cpath d='M661.016 124.479c.744.032 1.46.003 2.07-.098-.651.471-1.483.788-2.38.936.174-.136.287-.278.337-.423a.533.533 0 0 0-.027-.415zm-1.774-.184c.483.08.983.136 1.478.17.006.01.015.02.02.032.08.11.104.216.069.32-.042.118-.154.242-.338.37-.05.035-.1.07-.03.169a7.037 7.037 0 0 1-1.516.026.22.22 0 0 0 .05-.041c.181-.19.297-.385.33-.59a.783.783 0 0 0-.063-.453zm-13.11-3.767a16.54 16.54 0 0 1 2.55-.116c.285.116.495.284.625.507.143.248.193.574.134.98-.01.06-.018.121.103.136.122.018.13-.044.137-.103.065-.463.006-.839-.163-1.135a1.307 1.307 0 0 0-.32-.367c.077.003.154.006.23.012.996.053 1.77.337 2.634.767a.121.121 0 0 1 .02.024c.184.192.247.39.217.595-.033.216-.163.45-.37.69-.039.047-.08.092.015.172.091.08.133.032.171-.015.234-.275.388-.548.427-.815a.87.87 0 0 0-.045-.435c.73.361 1.47.708 2.19 1.087.014.009.029.015.044.024a.14.14 0 0 0 .012.047.607.607 0 0 1-.065.53c-.11.157-.309.294-.596.4-.056.021-.112.042-.07.157.04.113.1.092.156.071.338-.127.575-.29.71-.491a.79.79 0 0 0 .134-.566c.477.258.954.524 1.443.758l.003.003c.086.172.1.326.032.468-.07.151-.237.293-.5.424-.054.026-.11.053-.057.163s.11.083.163.056c.317-.157.519-.338.613-.54a.68.68 0 0 0 .054-.432c.169.074.34.145.515.21.471.175 1.04.326 1.65.439a.08.08 0 0 0 .015.018c.112.157.15.308.124.453-.026.151-.118.305-.266.46-.042.044-.083.085.003.17a.323.323 0 0 0 .038.033c-1.851-.19-3.498-1.075-5.222-1.741-.204-.08-.412-.157-.616-.237-.637-.24-1.28-.566-1.92-.827a.2.2 0 0 0-.082-.041c-.045-.015-.086-.03-.13-.041-.027-.012-.057-.021-.084-.033.003.003.01.006.012.009a10.594 10.594 0 0 0-1.771-.415 7.639 7.639 0 0 0-2.032-.02l-.113-.018c.06-.365.012-.685-.168-.963a1.564 1.564 0 0 0-.587-.518z'/%3e%3cpath d='M643.102 121.342c.85-.37 1.712-.607 2.592-.752.403.16.67.355.82.586.145.228.18.495.13.803a5.246 5.246 0 0 0-2.299.281c-.195-.411-.458-.66-.766-.796a1.553 1.553 0 0 0-.477-.125zm9.321 4.716a11.62 11.62 0 0 0-.699-.418c-1.152-.634-2.473-1.025-3.797-1.075.012-.01.02-.02.033-.03.47-.48.574-.933.414-1.356-.124-.33-.411-.634-.808-.91.444-.023.856.003 1.318.068.651.092 1.496.311 2.266.622.19.415.243.78.16 1.087-.086.323-.33.593-.72.815-.053.03-.107.06-.047.166s.112.077.165.044c.454-.254.732-.574.836-.965.08-.302.056-.64-.077-1.016.521.234.992.512 1.32.817.43.296.854.596 1.268.91.003.527-.15.826-.405.983-.27.163-.655.184-1.093.14-.06-.007-.122-.013-.134.109v.006z'/%3e%3cpath d='M654.959 127.965c-.77-.601-1.523-1.23-2.331-1.771.447.035.847 0 1.15-.18.292-.181.485-.495.517-1.008.483.373.948.767 1.39 1.19.222.211.444.419.672.623 0 .003.003.006.003.012.053.19.071.352.056.488a.574.574 0 0 1-.139.33.684.684 0 0 1-.34.192c-.217.062-.498.074-.845.035-.056-.006-.115-.012-.13.092z'/%3e%3cpath d='M657.616 129.716a14.382 14.382 0 0 1-.767-.424c-.59-.35-1.144-.75-1.686-1.167.332.027.61.009.836-.053a.937.937 0 0 0 .456-.264.806.806 0 0 0 .201-.468 1.153 1.153 0 0 0-.003-.266c.53.453 1.087.873 1.689 1.24.314.193.63.374.944.543-.003.02 0 .041.003.065.039.243-.097.397-.346.495-.29.115-.723.162-1.218.192-.056.003-.11.006-.115.1z'/%3e%3cpath d='M660.453 130.83c-.9-.246-1.77-.59-2.568-.978.457-.033.86-.086 1.15-.201.328-.13.518-.332.506-.655.527.267 1.055.498 1.59.687.096.21.101.382.013.527-.107.178-.341.326-.631.454-.057.023-.113.05-.063.16v.002z'/%3e%3cpath d='M666.366 130.228c.077-.012.55-.136.305.045-1.742 1.14-3.952 1.137-6.034.6.323-.144.587-.319.72-.538.1-.163.118-.35.071-.554.663.216 1.336.37 2.029.459a.47.47 0 0 1-.11.317c-.11.136-.296.27-.6.403-.057.023-.114.047-.063.16.047.112.104.086.16.062.343-.151.566-.311.696-.474a.687.687 0 0 0 .163-.441c.856.092 1.741.08 2.666-.042zm-12.044 30.002c-.13.137-.24.288-.346.466-.507.168-.954.42-1.5.396 0 .353.116.507.469.51.672-.338.823-.4.882-.353.083.071-.094.554-.651.945-.086.054-.083.086-.033.175.471.738 1.706.474 2.37.3.474-.125 1.33-.688 1.567-1.162.092-.216-.116-.5-.323-.732-.524.08-.705-.162-.622-.331-.554-.196-1.17-.237-1.813-.214zm-18.936-5.968a4.095 4.095 0 0 1-1.315.729c-.19.062-.649.174-.693.414-.006.086.308.273.51.163.556-.533.834-.237.195.308-.05.104-.01.22.1.317.578.519 2.009.687 2.66.276.483-.302.735-.634.314-1.093.003-.104.015-.205.033-.308l-.797-.08-.489-.285-.518-.441zm12.464 4.336c-.047.006-.098.012-.145.021-.258.279.45.175.826.406.172.104.246.308.178.592-.347.827-2.28.56-2.923.22-.3-.157-.311-.338-.3-.596a2.7 2.7 0 0 0 .406-.03c.231-.032.46-.1.684-.228.063-.035.128-.074.057-.198-.071-.127-.137-.092-.199-.056-.19.106-.385.166-.58.192-.202.03-.41.03-.608.021h-.05c-.112-.065-.198-.142-.151-.21.047-.065.234.006.27.017.299-.139.56-.228.882-.29.045-.044.086-.092.13-.136.59.05 1.153.14 1.526.275zm-8.942-.506c-.119.071-.16.172-.246.358-.338.34-.66.545-1.093.74-.359.164-.012.32.24.492.228.17.527-.198.714-.476.204-.308.411-.217.278.023a2.432 2.432 0 0 0-.27.842c-.076.213.735.376.874.382.495.023 1.117-.46 1.505-.705.323-.33.273-.616.13-1.016l.003-.027a2.463 2.463 0 0 1-.595-.06 4.29 4.29 0 0 1-.7-.23c-.029-.012-.058-.024-.035-.086.015-.039.033-.048.054-.045l-.853-.195zm3.462-32.967c.137-.006.273-.012.406.003.252.03.492.139.744.168.84-.317 1.537-.491 2.138-.465a7.1 7.1 0 0 1 2.16-.272.192.192 0 0 1-.027-.024c-.086-.086-.045-.13 0-.172.394-.4.486-.767.358-1.099-.13-.343-.486-.666-.98-.962-.527.059-1.034-.083-1.594-.02-.35.038-.693.115-1.03.227.28.1.527.267.728.504.249.293.427.693.521 1.196.012.06.021.119-.097.143s-.13-.039-.143-.098c-.085-.46-.245-.82-.468-1.084-.234-.335-.77-.465-.938-.533-.56.056-1.111.118-1.591.242-.361.092-.678.22-.921.41.361-.078.737-.063 1.063.1.311.154.575.444.74.915.021.056.04.116-.076.154s-.137-.018-.154-.077c-.14-.406-.359-.649-.617-.776-.512-.255-1.57-.032-2.017.3-.26.195-.521.447-.779.74-.026.032-.056.062-.092.065.96.065 1.926.115 2.672.415zm-2.846-.542c-.02-.054.015-.092.047-.13.27-.306.542-.575.824-.783.272-.201.554-.346.844-.414.296-.33.734-.528 1.244-.658.495-.127 1.06-.193 1.632-.249-.169-.34-.385-.545-.634-.654-.267-.119-.575-.137-.903-.104-.69.237-1.304.607-1.893 1.025.053 0 .107 0 .157.003.175.012.332-.015.477.041.059.02.115.042.074.157-.05.14-.433.054-.566.045a1.69 1.69 0 0 0-.5.047c-.03.006-.057.015-.083.006-.62.382-1.087.77-1.588 1.194.38.133.675.29.868.474z'/%3e%3c/g%3e%3cpath fill='%230093dd' d='m711.17 195.594 25.923-58.758-19.123-30.876-34.102 12.627-15.784 62.1a274.19 274.19 0 0 1 43.082 14.91z'/%3e%3cpath fill='%23fff' d='M678.11 141.244a314.594 314.594 0 0 1 49.48 17.126l-10.002 22.68a289.893 289.893 0 0 0-45.586-15.775z'/%3e%3cpath fill='red' d='m719.196 177.407 6.683-15.145a310.646 310.646 0 0 0-48.812-16.895l-3.94 15.494a294.82 294.82 0 0 1 46.3 16.025l-.23.521z'/%3e%3cpath d='M681.878 157.168c.447-.282.924-.214 1.404-.137.388-.145.835-.195 1.32-.177.208-.113.448-.193.72-.243.146-.113.152-.234.021-.364-.121-.149-.19-.294-.198-.442-.77-.447-1.055-1.128-1.348-1.804-.438-.115-.643-.263-.69-.43-.213-.02-.424-.04-.634-.064-.998.11-1.256-.214-1.611-.477-.296-.098-.554-.26-.72-.572-.11-.14-.22-.275-.329-.415-.272-.346-.19-.805.222-.779.29.033.578.033.845-.082.31-.14.776-.137 1.128-.107.418-.024.681-.293 1.087-.673l-.006-.485c-.065-.175.018-.252.249-.228.542.017.865.272 1.084.634.631.11 1.129.411 1.463.941.839.003 1.404.32 1.472.631.05.228-.195.49-.574.768.003.056.006.115.006.171.225.196.373.391.45.584.471.18.921.423 1.342.779 1.2-.14 3.222.731 5.956 2.476 1.775.317 3.496.809 5.148 1.523.35.011.7.02 1.046.032 2.965-.438 5.838-.1 8.504 1.937 1.007.122 1.91.439 2.784.8.649.267 1.31.37 1.976.433a9.91 9.91 0 0 1 3.255.873c1.218.273 2.355.655 3.06 1.508.5.604.38 1.161-.258 1.392-.385.812-1.152.847-2.301.447-.791.146-1.662-.488-2.453-1.084-1.099-.352-2.109-.986-3.107-1.661-.518-.388-1.043-.634-1.552-.744-.4-.086-.758-.142-.998 0-.119.071-.104.113 0 .199a1.6 1.6 0 0 1 .536 1.004c.056.37-.003.796.018 1.25.023.477.31.823.79 1.12.33.2.72.414 1.286.494.27.053.347.21.338.415.15.722.29 1.451.554 2.106.074.186.216.275.43.432.73.527.352 1.117-.315 1.244-.583.516-1.087.862-1.685.998-.477.16-.673-.035-.833-.27a.604.604 0 0 1-.554-.307c-.583-.43-.085-1.176 1.31-.856.03-.163.148-.214.266-.21-.083-.362-.13-.765.027-1.14-.124-.08-.231-.182-.412-.24-.503-.16-.98-.392-1.356-.744-.714-.673-1.83-1.235-2.906-1.801-.889-.045-1.55-.453-2.245-.8l-.942-.012c-.276-.092-.5.003-.667.202-.278.337-.601.281-.983.237-.438-.05-.883-.018-1.321-.024-.216.053-.43.121-.664.124-.494-.026-.977-.032-1.306.243-.272.287-.545.267-.817.16-.205-.095-.353-.195-.439-.302-.343-.071-.566-.157-.64-.26-.577-.164-.74-.327-.713-.49-.768-.183-.403-.787.094-.808.587-.024 1.123.089 1.698.169.482.136 1.078.056 1.472-.3.254-.23.35-.429.66-.6-.992-.066-1.724-.24-2.263-.581-1.451-.915-2.612-1.138-3.536-.362-.246.14-.439.196-.702.095a1.329 1.329 0 0 0-.73-.035c-.523.118-1.042.053-1.566-.137-.767.193-1.531.234-2.298.077-.65.341-1.123.38-1.425.119-.285-.16-.554-.323-.809-.498-.412-.062-.59-.166-.607-.302-.527-.06-.592-.252-.59-.462-.219-.252-.136-.444.083-.607.391-.163.797-.222 1.247.009.27.127.468.252.631.379.3-.036.557 0 .782.083.166-.26.637-.273 1.153-.243.257-.172.565-.293.96-.329a3.25 3.25 0 0 1-.033-.184c-.519-.136-.785-.512-1.043-.891-.797-.015-1.368-.35-1.937-.7-.468.04-.844-.115-1.209-.334-.296.024-.625.036-.936-.044a3.19 3.19 0 0 1-1.75 0c-.388.035-.7-.003-1.02-.033-.363.418-.772.492-1.22.279-.245-.311-.595-.516-1.036-.631-.335-.11-.439-.255-.498-.412-.409-.252-.326-.5.068-.69.297-.142.667-.169 1.23.11.183.068.388.115.619.133z'/%3e%3cpath fill='%23fff' d='M701.41 163.121c-.04-.068-.122-.24-.421-.068-.927-.05-1.964-.038-2.743-.497-.812-.477-1.647-.975-2.545-.94.267-.251.599-.423.984-.527.515-.136 1.125-.145 1.8-.035.949.154 1.784.338 2.43.58.622.234 1.06.525 1.253.898a.507.507 0 0 0 .053.06c.249.16.465.322.646.494.136.127.254.26.355.403a3.123 3.123 0 0 1-.892-.054 3.593 3.593 0 0 1-.924-.32z'/%3e%3cpath d='m703.542 118.368.053.279 1.167 6.042-4.641 4.046-.213.187.27.095 5.817 2.01 1.181 6.043.057.279.213-.187 4.65-4.031 5.827 1.996.27.092-.054-.278-1.167-6.046 4.641-4.046.214-.186-.27-.092-5.817-2.014-1.182-6.043-.057-.278-.213.186-4.653 4.034-5.824-1.999z'/%3e%3cpath d='m700.698 128.667 4.337-3.78 5.453 1.879zm10.512-2.041 4.352-3.782 5.435 1.88zm9.826-1.709-4.337 3.78-5.453-1.878zm-10.513 2.044-4.35 3.78-5.436-1.878zm-6.365-8.036 5.441 1.866 1.102 5.66zm7.026 8.08 5.45 1.878 1.09 5.649zm6.392 7.655-5.441-1.864-1.102-5.66zm-7.026-8.081-5.45-1.875-1.09-5.649zm3.777-9.532 1.105 5.646-4.352 3.782zm-3.487 10.124 1.1 5.66-4.346 3.771zm-3.433 9.366-1.104-5.645 4.35-3.783zm3.487-10.124-1.1-5.66 4.346-3.768z' fill='%23f7db17'/%3e%3c/svg%3e\"},2032:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 500 300'%3e%3cpath fill='%23d21034' d='M0 0h500v300H0z'/%3e%3cpath fill='%2300209f' d='M0 0h500v150H0z'/%3e%3cg fill='%23f1b517' stroke='%23000' stroke-width='.183'%3e%3cpath fill='%23fff' d='M202.679 112.284h94.642v75.341h-94.642z' stroke='none'/%3e%3cpath fill='%23016a16' stroke='%23016a16' d='m269.047 166.766-19.314.56-19.227.22s-9.878 3.653-13.916 4.473c-4.026.817-3.503 2.14-6.618 2.836-2.496.558-2.784.734-4.248.83-.886.058-1.977.74-3.045 1.49v10.45h94.642v-9.939c-1.026-.559-2.004-.944-3.004-1.284-1.39-.472-2.327-.99-4.823-1.547-3.115-.696-2.592-2.019-6.618-2.836-4.038-.82-13.829-5.253-13.829-5.253z'/%3e%3cg id='a'%3e%3cpath d='m244.529 143.512 1.397-.033 2.555 10.75-.545 3.385-3.407-14.102z'/%3e%3cpath fill='%23fff' d='m243.064 136.346.954 8.284 1.022-.066-1.976-8.218z'/%3e%3cpath d='m245.722 154.589-4.293-11.538 1.601-.098 5.009 14.101-2.317-2.465z'/%3e%3cpath fill='%23fff' d='m239.419 136.477 1.772 8.02h1.43l-3.202-8.02z'/%3e%3cpath d='m241.906 150.546-2.521-5.424 1.09-.23 4.6 9.007-3.169-3.353z'/%3e%3cpath fill='%23fff' d='m236.08 138.778 2.794 7.626h1.43l-4.224-7.626z'/%3e%3cpath fill='%230a328c' d='m242.249 151.364-11.436-12.484c-3.571 2.828-2.908 8.021-2.908 8.021l12.957 10.166 1.387-5.703z'/%3e%3cpath fill='%23d20014' d='m248.861 158.235-8.483-8.594c-3.587.125-.741 5.48-.56 6.152l9.043 7.734v-5.292z'/%3e%3cpath d='m248.139 156.757-17.54-18.78-.684.483 18.561 20.622-.337-2.325zm-18.553-19.985-.385-.446.038-.891-3.619-2.303 1.617 3.64 1.232.223.385.446.732-.669z'/%3e%3cpath d='M227.738 138.11c.616-.743 1.348-1.486 2.657-2.192l1 1.45-2.155 1.82-1.502-1.078z'/%3e%3cpath fill='%230a328c' stroke='%230a328c' d='m225.811 141.278.588 1.026c.364-.135 4.031-3.457 4.031-3.457l2.632-.08.756-.838c-1.932-2.08-3.752.297-3.752.297l-4.255 3.052z'/%3e%3cpath fill='%23d20014' stroke='%23d20014' d='M227.911 143.007c.14-.918 1.876-3.214 2.128-3.295 1.303.391 2.515 1.141 3.835-1.837-1.148 1.459-3.471-.027-3.471-.027l-1.008.838.028.405-3.052 2.836 1.54 1.08z'/%3e%3cpath fill='%230a328c' d='m237.252 154.672-14.367-11.411c-2.46 2.503-.415 10.231-.415 10.231l14.043 7.608.739-6.428z'/%3e%3cpath fill='%23d20014' d='m249.166 163.917-11.818-9.467c-4.036.566-.864 6.506-.623 7.16l12.481 6.77-.04-4.463z'/%3e%3cpath d='m248.697 162.005-25.554-19.182-.587.591 26.837 20.955-.696-2.364zm-26.769-20.198-.46-.374-.122-.885-3.979-1.662 2.248 3.314 1.254.014.459.374.6-.781z'/%3e%3cpath d='M220.349 143.433c.473-.835 1.06-1.689 2.222-2.603l1.246 1.259-1.795 2.153-1.673-.809z'/%3e%3cpath fill='%230a328c' stroke='%230a328c' d='m218.925 146.641.16 1.06c.337-.188 3.56-3.726 3.56-3.726l2.586-.477.527-.833c-1.797-2.114-3.713.698-3.713.698l-3.12 3.278z'/%3e%3cpath fill='%23d20014' stroke='%23d20014' d='M220.971 148.545c-.123-.982 1.22-3.863 1.455-3.98 1.547.46 2.894 1.152 3.462-2.07-.897 1.614-3.46.363-3.46.363l-.86.979.121.53-2.61 3.37 1.892.808z'/%3e%3cpath fill='%230a328c' d='M236.224 161.651c-.19-.046-18.517-10.442-18.517-10.442-1.334 2.252-.128 5.52.457 6.029.034 1.5-.602 2.306.707 5.439.386 2.036 1.328 3.913 2.7 5.027 1.671 6.417 8.222 6.848 10.746 1.624l3.907-7.677z'/%3e%3cpath fill='%23d20014' d='m248.352 168.512-12.548-7.355c-4.036.567.085 8.056.326 8.71l12.116 4.304.106-5.659z'/%3e%3cpath d='m246.243 165.846-28.35-15.089-.484.672 29.905 16.647-1.071-2.23zm-29.715-15.909-.514-.3-.265-.856-4.2-1.04 2.758 2.934 1.24-.177.515.301.466-.862z'/%3e%3cpath d='M215.232 151.782c.332-.896.773-1.828 1.772-2.907l1.436 1.056-1.425 2.398-1.783-.547z'/%3e%3cpath fill='%230a328c' stroke='%230a328c' d='m214.1 155.181.593 1.167c.307-.232 3.004-4.578 3.004-4.578l2.492-.82.469-1.014c-2.002-1.85-3.498 1.342-3.498 1.342l-3.06 3.903z'/%3e%3cpath fill='%23d20014' stroke='%23d20014' d='M216.772 156.836c-.2-.999.484-4.197.7-4.345 1.56.465 2.863.597 3.223-2.622-.907 1.529-3.328.953-3.328.953l-.71 1.085.15.38-2.059 3.95 2.024.599z'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 499.859 0)'/%3e%3cpath fill='%23016a16' stroke='%23016a16' d='m248.757 125.603-.465 9.07h2.9l-.425-8.992 3.023-.424-.335-3.582-7.51.29.041 3.253 2.771.385z'/%3e%3cg id='b' fill='%23016a16'%3e%3cpath d='M249.817 121.898c-7.764-7.771-13.878-3.98-15.334-2.902.963.187 1.826-.412 2.273-.48-.28.353-.865 1.229-.865 1.229s2.4-1.134 2.668-1.03c-.346.276-.727.936-.727.936.178.069 1.528-1.057 1.795-1.077-.411.466-.539 1.528-.539 1.528l1.17-.545c.304.216-.085.63.18.609 1.944-.16 4.677 1.777 5.053 2.372'/%3e%3cpath d='M247.895 123.321c-.81-1.854-15.588-5.005-18.56.244 1.164.293 2.276-.976 2.276-.976l-.101 1.171 1.972-1.512-.708 1.56 1.568-1.268-.05 1.269 1.921-2.098-.253 1.22 1.72-.732-.203 1.024'/%3e%3cpath d='M247.238 123.614c-3.793-2.537-9.66-.83-9.66-.83-3.741 2.099-5.736 1.72-6.22 5.611.355-.146 1.366-1.366 1.366-1.366l.759 1.513.252-2.147.607 1.659.91-2.732.203 1.854 1.416-1.854.657.536.607-1.415.556.927s.961-.585 1.518-.244l1.062-1.22.252.879.91-1.073.355.78.91-.83-.05.586 3.135.05'/%3e%3cpath d='M246.38 124.053c-2.643-.05-10.226 2.812-12.188 5.806a13.29 13.29 0 0 1 1.263-.635l.387 1.203.473-1.203.1.927c.29-.724.618-.806 1.164-.049l.202-1.122.304 1.073.505-1.17s.318 1.269.506 1.22c0 0 .838-2.195 1.214-2.294l.1 1.366.506-1.366.456 1.025.1-1.464.506 1.122s.266-1.103.658-1.317l.758.683 3.378-2.427'/%3e%3cpath d='M246.888 124.678c-3.521 1.35-6.67 6.179-6.43 8.226 1.565-1.941 1.229-1.674 1.928.56 0 0 .264-1.955.53-2.187l.459 1.446.17-1.892.47.022-.12-1.187.7.535c-.164-.678-.339-.907.385-1.489 0 0-.917.117-.193-1.535l.675.651s-.12-.721.12-1l2.485-.861'/%3e%3cpath d='m247.229 125.04-1.33 2.534.682.197-1.535 1.152 1.296-.132s-1.978.724-2.217 2.665l2.013-.888s-1.706 1.744-1.945 2.797l1.16-1.02s-1.125 1.217-.955 3.06l.853-.954c-.205 2.237-.137 2.435.887 4.146 0 0-.273-2.633.034-2.962l2.25 2.337-1.261-3.324s1.398 2.106 2.25 1.909l-1.773-2.698 1.74 1.414-1.978-2.961 1.841.56s-1.33-1.679-1.228-2.732l1.262 1.382s-.477-1.58-.34-2.04l.647.132-1.262-1.448.853-.165-.102-.954.614-.197-.034-1.053'/%3e%3cpath d='M248.559 125.797c-2.183 2.961-1.057 7.535-2.353 9.871'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='matrix(-1 0 0 1 499.859 0)'/%3e%3cpath d='M250.945 166.535s1.189-9.945 1.186-14.225c-.002-3.37-.814-10.835-.814-10.835H247.9s-.52 7.429-.442 10.789c.1 4.281 1.186 14.27 1.186 14.27h2.301z'/%3e%3cpath d='M247.674 141.953h3.96l-.465-2.666h-2.87l-.625 2.666z'/%3e%3cpath d='M247.927 139.816h3.539l-.667-2.666h-2.18l-.692 2.666z'/%3e%3cpath d='M248.155 137.655h2.949l-.499-2.666h-1.876l-.574 2.666z'/%3e%3cpath d='M250.709 134.673h-2.063l-.209.964h2.44l-.168-.964zm.423 29.694h-2.62m2.763-1.947h-2.94m3.329-1.976h-3.727m3.919-2.153h-3.9m3.927-2.152h-4.102m4.262-1.968h-4.45m4.46-1.791h-4.65m4.622-2.161h-4.65m4.495-2.135h-4.495m4.289-2.17h-4.065m3.868-1.959h-3.672'/%3e%3cpath fill='%230a328c' stroke='%230a328c' d='M249.909 119.044c-.688-.324-2.245-1.313-1.783-1.903l.713-1.214c1.01-2.277-.018-1.395-.126-2.106-.103-.682 3.865-.149 3.924 1.397.016.426-.295.176-.252 2.611l-.755 1.458c-.565.053-1.234-.014-1.721-.243z'/%3e%3cpath d='m250.392 124.934-.986-.83.273-7.105.965.283-.252 7.652z'/%3e%3cpath fill='%23d20014' stroke='%23d20014' d='M251.672 119.246c.62-.362 1.024-1.443.65-2.085-1.016-1.287-1.673-.756-3.378-1.336-.34.362-1.055 1.059-.902 1.579 2.242 1.056 1.372.156 2.114.288.4.07.658.545 1.516 1.554z'/%3e%3cuse xlink:href='%23c' transform='matrix(1 0 0 -1 -.002 320.37)'/%3e%3cpath fill='%23016a16' stroke='%23fff' stroke-width='.181' stroke-linecap='round' d='M238.358 161.75c0 1.299-.815 2.353-1.818 2.353s-1.819-1.054-1.819-2.353v-1.276h3.637v1.276z'/%3e%3cellipse fill='%23fff' cx='236.539' cy='160.063' rx='1.806' ry='.898' stroke='none'/%3e%3cpath fill='%23016a16' stroke='%23f1b517' d='m236.126 161.075-.31-3.297h1.382l-.226 3.297h-.846z'/%3e%3cpath id='c' fill='%23016a16' stroke='%23fff' stroke-width='.237' stroke-linecap='round' d='M238.538 160.118c-.265.493-1.06.852-1.999.852-.938 0-1.728-.359-1.993-.852a.756.756 0 0 0-.099.359c0 .669.937 1.21 2.092 1.21s2.092-.541 2.092-1.21a.748.748 0 0 0-.093-.359z'/%3e%3cg id='d'%3e%3cpath d='m246.035 172.786-7.06-2.19-3.076-5.254-10.893-.535.378 3.94 9.28 1.777.882 1.581 10.666 2.968-.177-2.287z'/%3e%3cpath fill='%23503200' d='m238.662 174.254-11.149-16.398-.547.411 11.06 16.467.636-.48z'/%3e%3cpath fill='%23fff' d='m228.551 158.5-1.19-1.992c-.223-.368-.561-.49-1.059-.228-.484.255-.437.76-.24 1.123l1.101 1.852 1.388-.755z'/%3e%3cpath d='m239.986 164.127-22.496-2.286-.547 3.27 22.387 2.252.656-3.236z'/%3e%3cpath d='m217.089 160.997-.583 4.538h.948l.656-4.151-1.021-.387zm3.755.738-.255 4.08.583.07.474-3.622-.802-.528zm15.241 1.759-.547 3.834 1.094-.035.437-3.799h-.984zm3.351.105-.779 4.434 1.238.18.354-2.332c.1.468.531.824 1.046.824.589 0 1.07-.464 1.07-1.032s-.481-1.026-1.07-1.026c-.409 0-.78.24-.94.687l.231-1.662-1.15-.073zm-8.119.72-3.094 3.482.361.423 3.97-2.711-1.237-1.194zM224.124 173l3.094-3.482-.361-.423-3.97 2.711 1.237 1.194zm8.096-.871-3.764-2.91-.387.273 2.965 3.756 1.186-1.119zm-9.282-6.716 3.816 2.81.464-.348-2.99-3.755-1.29 1.293zm4.152-2.319.365 4.573.513-.022 1.207-4.452-2.085-.099zm1.251 11.095-.365-4.573-.565-.053-.691 4.626h1.621zm5.06-6.163-4.795.51-.073.457 4.85.634.018-1.601zm-11.408 1.583 4.68-.74.1-.364-4.842-.54.062 1.644z'/%3e%3cellipse cx='227.693' cy='168.548' rx='1.27' ry='1.225'/%3e%3cpath fill-rule='evenodd' stroke-linecap='round' d='M234.438 168.548c0 3.592-3.022 6.507-6.745 6.507-3.723 0-6.745-2.915-6.745-6.507 0-3.592 3.022-6.507 6.745-6.507 3.723 0 6.745 2.915 6.745 6.507zm-1.347 0c0 2.874-2.419 5.207-5.398 5.207s-5.398-2.333-5.398-5.207c0-2.874 2.419-5.207 5.398-5.207s5.398 2.333 5.398 5.207z'/%3e%3cpath d='m223.48 165.264-1.057-.796m8.611.025.902-.92m1.031 9.128-1.109-.87m-8.378 1.865.954-1.02m21.762-10.554 1.155 5.886-.942.497-1.014-6.299.801-.084z'/%3e%3cpath fill='%23fff' d='M245.592 161.364c-.535-.224-1.232.155-2.374-1.292-1.878 1.723-.107 1.98.179 3.686.53.218.858-1.323 2.302-1.481.179-.018 2.298-.203 2.298-.203l-.532-.726s-1.474.04-1.873.016z'/%3e%3cpath fill='%23fff' d='m246.359 162.518-.214-1.756c-.232-.62-1-.087-1 .275l.197 1.619 1.017-.138z'/%3e%3cpath fill-rule='evenodd' d='m240.765 167.372.019 1.637c-.536.183-.454.585-.437 1.168l.019 4.772c-.19.316-.778.331-1.054.58-.277.247-.242.729 1.02 1.046l.975.035c1.486-.325 1.793-.818 1.048-1.095-.397-.148-.919-.324-1.117-.557l.033-1.137.964.035c.26 0 .753-.652.77-1.185l.005-2.47c-.035-1.401-1.085-1.559-1.38-1.542l.021-1.29-.886.003zm1.63 2.73c.018-.4-.555-.757-.786-.767s-.734.467-.751.867v1c.034.367.327 1.61.915 1.701.28.043.64-.4.64-.767l-.017-2.034z'/%3e%3cpath d='M234.275 172.328c-.636-.257-.63 1.172-.63 1.172l1.002.01c.44.2.792.843.512 1.159-.231.261-2.177-.441-2.308-.037.344 1.941 2.917 2.688 3.848 1.839.91-.83 1.141-3.048-1.817-3.629l-.607-.514zm.595.528-.292.639' fill='%23fff'/%3e%3cpath d='m214.943 173.055-.963-4.05m2.132 3.817-1.48-3.153m4.026 2.324-3.337-1.792m4.782 1.427-6.192-2.688'/%3e%3cpath fill='%23d20014' stroke='%23d20014' d='M210.215 166.013s-2.254-.036-2.656.122c-.162.064.567.825.416 1.115-.563 1.083-4.394.934-4.697.698-.519-.405 3.568-.753 3.595-1.029.03-.316-.605-1.146-.506-1.655.128-.661 1.788-.907 1.788-.907l2.06 1.656z'/%3e%3cpath fill='%23503200' d='m213.233 168.05-5.102-4.222s-.225-.238-.413-.033c-.184.2.069.431.069.431l5.263 4.348.183-.524z'/%3e%3cpath d='M218.146 172.217c-.09-.087-4.155-3.608-4.155-3.608l-.271-1.028s-.628.425-.858.645-.587.819-.587.819l1.138.052 3.595 3.294 1.138-.174z'/%3e%3cellipse cx='232.534' cy='177.056' rx='.74' ry='.715'/%3e%3cellipse cx='230.641' cy='175.716' rx='.74' ry='.715'/%3e%3cellipse cx='228.091' cy='176.593' rx='.74' ry='.715'/%3e%3cellipse cx='224.153' cy='177.445' rx='.74' ry='.715'/%3e%3cellipse cx='222.487' cy='177.64' rx='.74' ry='.715'/%3e%3cellipse cx='220.846' cy='177.64' rx='.74' ry='.715'/%3e%3cellipse cx='219.18' cy='177.591' rx='.74' ry='.715'/%3e%3cellipse cx='219.988' cy='176.325' rx='.74' ry='.715'/%3e%3cellipse cx='221.604' cy='176.398' rx='.74' ry='.715'/%3e%3cellipse cx='223.144' cy='176.203' rx='.74' ry='.715'/%3e%3cellipse cx='222.361' cy='174.961' rx='.74' ry='.715'/%3e%3cellipse cx='220.846' cy='174.937' rx='.74' ry='.715'/%3e%3cpath fill-rule='evenodd' d='M236.47 177.991c0-.316-.769-.18-.769-.55 0-.412 1.173-.11 1.335.252.66-.596.944-.16 1.348.02.575-.855 1.287-.823 1.981-.197.401-.443 1.41-.297 1.757.197.664-.66 1.255-.497 1.715-.02.186-.346.458-.27.654-.02.354-.628 1.242-.44 1.616-.024.332-.366.673-.08 1.114.19.297-.28.778-.227.778.05 0 .29-.628.188-.628.474 0 .256.458.127.458.45 0 .255-.68.35-.785-.056-.23.44-1.062.271-1.144-.138-.276.335-.897.436-1.246-.059-.286.234-.63.267-.787.031-.517.556-1.388.442-1.688-.17l-.294.012c-.508.69-1.302.37-1.52-.01-.853.615-1.362.42-1.838.02-.548.666-1.381.62-1.573 0-.368.267-1.137.33-1.137.017 0-.301.653-.192.653-.469zm1.655.15c0 .143-.195.26-.436.26s-.435-.117-.435-.26.195-.26.435-.26.436.117.436.26zm1.82-.218c0 .172-.235.312-.524.312-.289 0-.524-.14-.524-.312 0-.173.235-.312.524-.312.29 0 .524.14.524.312zm3.575.197c0 .175-.212.316-.474.316s-.474-.141-.474-.316c0-.174.212-.316.474-.316s.474.142.474.316zm-1.904-.083c0 .22-.207.4-.463.4s-.464-.18-.464-.4.208-.4.464-.4.463.18.463.4zm4.06.01c0 .198-.186.358-.414.358s-.415-.16-.415-.358c0-.197.186-.357.415-.357s.414.16.414.357zm-1.244.083c0 .128-.12.231-.267.231-.148 0-.268-.103-.268-.23s.12-.231.268-.231c.147 0 .267.103.267.23zm2.422.094c0 .183-.135.331-.302.331s-.301-.148-.301-.331c0-.183.135-.332.301-.332s.302.149.302.332z'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='matrix(-1 0 0 1 499.859 0)'/%3e%3cg stroke-width='.231'%3e%3cpath fill='%230a328c' stroke='%230a328c' d='M249.837 165.718c-2.512 0-4.55.944-4.55 2.102 0 .199.057.39.169.572.543.629 2.307 1.087 4.398 1.087 1.957 0 3.625-.402 4.277-.97.164-.216.256-.446.256-.689 0-1.158-2.038-2.102-4.55-2.102z'/%3e%3cpath stroke-width='.187' d='M254.427 167.981v7.058c0 .828-2.048 1.5-4.572 1.5s-4.573-.672-4.573-1.5v-7.058c0 .828 2.049 1.5 4.573 1.5 2.524 0 4.572-.672 4.572-1.5z'/%3e%3cpath fill='%23d20014' stroke='%23d20014' stroke-width='.183' d='M245.282 167.982v1.082l2.22 6.845 1.772-5.264 1.946 5.465 1.425-5.159 1.783 3.469v-1.92l-1.656-3.363a8.25 8.25 0 0 1-.593.134l-1.028 3.812-1.447-3.604a14.522 14.522 0 0 1-.715-.023l-1.453 3.627-1.661-4.367c-.376-.217-.593-.466-.593-.734z'/%3e%3cpath fill='%230a328c' stroke='%230a328c' stroke-width='.187' d='M254.427 173.721v1.318c0 .827-2.048 1.499-4.572 1.499s-4.573-.672-4.573-1.5v-1.317c0 .828 2.049 1.5 4.573 1.5 2.524 0 4.572-.672 4.572-1.5z'/%3e%3cpath stroke-width='.187' d='M251.737 175.085c-.372.055-.769.097-1.185.118l.011 1.317a12.24 12.24 0 0 0 1.186-.118l-.012-1.317zm-4.869-.23-.012 1.312c.353.1.75.185 1.186.246v-1.317a8.907 8.907 0 0 1-1.174-.241zm-1.586-1.132v1.317c0 .246.185.474.506.679l.023-1.3c-.336-.21-.529-.444-.529-.696zm9.146.14-.023.006c-.08.267-.379.516-.831.723l.006 1.312c.53-.245.848-.54.848-.863v-1.178z'/%3e%3cpath fill='none' stroke-width='.187' d='M254.427 168.027v7.012c0 .828-2.048 1.5-4.572 1.5s-4.573-.672-4.573-1.5v-7.012'/%3e%3cpath fill='%23fff' stroke='%23fff' stroke-width='.192' d='M253.392 167.52c0 .501-1.584.907-3.537.907-1.954 0-3.538-.406-3.538-.907s1.584-.907 3.538-.907c1.953 0 3.537.406 3.537.907z'/%3e%3cpath d='m248.698 168.19.157 1.25c.307.022.626.038.953.04l.232-1.29h-1.342zm4.103-.303-.912.247.058 1.177a8.91 8.91 0 0 0 .866-.19l-.012-1.234zm-5.404-1.908c-.259.076-.5.165-.72.263l.127.945.581-.185.012-1.023zm2.44-.373c-.122 0-.241.007-.36.011l.197 1.183.605-.012.238-1.154a9.727 9.727 0 0 0-.68-.028zm2.673.418-.122 1.034.691.244.076-1.015a5.259 5.259 0 0 0-.645-.263z'/%3e%3cpath stroke-width='.183' d='m245.993 168.8.184-1.288-.935-.506.028 1.465.723.329zm8.403-.278.042-1.288-.876.262.834 1.026z'/%3e%3c/g%3e%3cpath d='M263.686 160.029c.83-.115 2.062 1.024 2.136 2.433.06 1.118-1.69 1.06-1.69 1.06-.09.458-1.055.881-1.84.916-.763.033.207-1.432.207-1.432-.475-1.26.148-2.748.148-2.748l1.039-.229z'/%3e%3cpath d='m262.499 162.948.801-.029s.061.414.208.43c.157.017.326-.401.326-.401l1.217-.029'/%3e%3cpath fill='%23d20014' stroke='%23f1b517' d='M264.131 160.859c.68-.491.084-1.48-.386-1.489l-1.098.029c-.517.01-1.392.573-1.276 1.06.102.423.387.617.831.543.202-.033.626-.563.831-.572.275-.013.878.588 1.098.429z'/%3e%3cpath fill-rule='evenodd' d='M214.242 174.855c-.617.078-.731.788-.5 1.44-2.686.756-5.086 1.74-7.455 2.406-.095-.474 1.174-1.845 1.174-1.845.336.162.587.93.587.93.084-1.578 1.639-2.628 1.639-2.628-.924-.122-3.732.967-4.068 1.412 0 0 1.087-.121 1.255 0 0 0-2.14 2.312-2.237 3 .333.75 4.027 1.311 4.027 1.311-.058.195-1.087.93-1.087.93 1.47.323 3.685-.717 4.347-1.35 0 0-1.728-.143-3.074-1.234 0 0 .277.68.11 1.004 0 0-2.1-.605-2.318-.953.006-.03 4.966-1.315 7.368-2.001.088.429.565 1.24 1.138 1.048.374-.125.256-.866.117-1.39a.77.77 0 0 0 .505.185c.422 0 .767-.327.767-.735 0-.407-.345-.74-.767-.74a.757.757 0 0 0-.72.505c-.096-.453-.345-1.354-.808-1.295zm1.889 1.528c0 .19-.16.345-.358.345s-.358-.155-.358-.345.16-.345.358-.345.358.154.358.345z'/%3e%3cpath d='M293.068 177.884c.183-.367-.162-2.212-.162-2.212-.373.042-.882.681-.882.681.48-1.511-.865-4.037-.865-4.037.91.19 3.945 3.128 4.103 3.657 0 0-1.33-.474-1.53-.415.217 1.506 1.258 2.205 1.65 2.988 0 0-1.726.38-1.553 1.822l-1.127.021c-.39-.481.152-1.276.152-1.276l-7.739-3.241c-.499-.21-1.62-.718-1.452-1.318.17-.604 2.016.251 2.47.398l6.935 2.932z'/%3e%3cpath d='m285.635 176.541.91-1.673c.326-.44-.346-.92-.823-.356l-1.02 1.527c-.454.837.5 1.067.933.502z'/%3e%3cg fill='%23fff'%3e%3cpath d='m231.367 180.366-.063-1.825-2.207.122-.126 1.987 2.396-.284z'/%3e%3cpath d='m215.237 182.924-2.95-1.655c12.168 1.115 14.653-3.13 17.593-3.356 1.808-.141 2.09 2.002-1.412.982l.905 2.241s-8.638 4.86-17.129 2.853l2.993-1.065zm53.012-2.558.063-1.825 2.7.062.125 1.988-2.888-.225z'/%3e%3cpath d='m284.939 182.477 2.777-1.515c-13.94.415-10.766-2.29-17.74-3.048-1.802-.196-3.156 2.12 1.413.982l-.906 2.241 2.193.002c4.748 3.127 11.156 3.406 15.401 2.402l-3.138-1.064z'/%3e%3cpath d='M228.418 178.908v3.154s7.728 2.868 21.519 2.868c13.85 0 21.519-2.868 21.519-2.868v-3.154s-5.85 2.695-21.52 2.695c-15.61 0-21.518-2.695-21.518-2.695z'/%3e%3c/g%3e%3cpath fill='%23000' d='m229.573 182.08.682-2.31.317.088-.602 2.037 1.18.324-.081.272-1.496-.411zm2.236-1.015.038-.454.102-.39.338.083-.102.389-.193.416-.183-.045zm3.326-.156.322.063-.286 1.36c-.05.236-.118.418-.203.546s-.208.222-.371.281c-.164.059-.363.065-.598.019a1.217 1.217 0 0 1-.536-.224.66.66 0 0 1-.242-.391c-.032-.156-.021-.359.031-.608l.287-1.36.323.064-.287 1.358c-.043.204-.055.358-.036.463s.07.192.156.264a.73.73 0 0 0 .335.147c.237.047.418.028.54-.056.123-.084.216-.273.278-.569l.287-1.357zm.363 2.51.402-2.37.333.053.975 2.064.315-1.86.312.048-.402 2.37-.333-.052-.975-2.066-.315 1.862-.312-.05zm2.541.383.342-2.378.326.044-.342 2.378-.326-.044zm.937-1.049c.047-.396.194-.694.441-.893.247-.2.545-.28.894-.242.228.025.427.1.598.226.171.125.293.287.367.486.074.199.097.418.069.656a1.382 1.382 0 0 1-.23.633c-.123.18-.283.308-.48.386a1.279 1.279 0 0 1-.619.081 1.202 1.202 0 0 1-.604-.231 1.056 1.056 0 0 1-.364-.49 1.31 1.31 0 0 1-.071-.612zm.337.042c-.034.288.02.523.16.706.14.183.332.288.574.315a.814.814 0 0 0 .638-.184c.178-.15.286-.377.322-.684a1.19 1.19 0 0 0-.041-.52.761.761 0 0 0-.259-.37.83.83 0 0 0-.427-.168.865.865 0 0 0-.625.164c-.185.135-.3.382-.342.741zm2.309 1.417.202-2.394.337.027 1.144 1.982.16-1.88.314.026-.203 2.393-.337-.027-1.143-1.983-.16 1.88-.314-.024zm3.489.242.109-2.399 1.677.071-.013.283-1.348-.057-.034.743 1.167.05-.013.282-1.167-.049-.049 1.09-.329-.014zm1.833.079 1.004-2.383.355.007.97 2.42-.375-.008-.275-.732-1.041-.02-.288.722-.35-.007zm.738-.973.844.016-.247-.67a6.39 6.39 0 0 1-.166-.501 2.98 2.98 0 0 1-.143.456l-.288.7zm1.914 1.01.005-2.4h.33l-.006 2.401h-.33zm1.542-.006-.031-2.118-.82.011-.004-.283 1.972-.027.004.283-.823.012.031 2.117-.33.005zm2.442-.058-.116-2.398.329-.015.102 2.115 1.225-.055.014.283-1.554.07zm1.675-.073.776-2.46.354-.025 1.193 2.325-.374.026-.343-.705-1.038.071-.22.744-.348.024zm.644-1.033.841-.058-.308-.645a6.445 6.445 0 0 1-.213-.485c-.02.156-.053.312-.1.467l-.22.721zm2.921.758-.273-2.386 1.67-.178.032.282-1.342.143.084.739 1.161-.124.033.282-1.161.123.124 1.085-.328.034zm1.825-1.37c-.058-.394.006-.718.193-.972.186-.253.453-.404.8-.452a1.24 1.24 0 0 1 .64.073c.197.08.358.207.482.38.123.175.203.381.238.62.035.24.017.463-.056.667s-.194.368-.365.491c-.17.123-.362.2-.576.23a1.221 1.221 0 0 1-.646-.077 1.085 1.085 0 0 1-.48-.386 1.327 1.327 0 0 1-.23-.574zm.337-.041c.043.286.156.5.34.644a.817.817 0 0 0 .637.164.8.8 0 0 0 .57-.333c.133-.188.178-.435.132-.741a1.201 1.201 0 0 0-.176-.493.781.781 0 0 0-.347-.295.842.842 0 0 0-.458-.058.85.85 0 0 0-.561.311c-.144.176-.19.443-.137.8zm2.614.806-.444-2.363 1.085-.19a1.52 1.52 0 0 1 .51-.023.558.558 0 0 1 .315.177.673.673 0 0 1 .169.338.586.586 0 0 1-.09.453c-.09.135-.25.239-.48.31a.87.87 0 0 1 .218.084c.11.067.22.157.328.267l.547.569-.407.071-.417-.435a4.647 4.647 0 0 0-.295-.284c-.075-.065-.14-.108-.194-.13s-.108-.033-.16-.036a1.065 1.065 0 0 0-.182.02l-.376.066.197 1.049-.324.057zm.076-1.377.696-.122c.148-.026.262-.06.34-.105a.367.367 0 0 0 .189-.398.358.358 0 0 0-.178-.254c-.098-.057-.238-.07-.42-.038l-.774.136.147.781zm3.93-.262.34.01c-.007.269-.083.49-.227.66a1.034 1.034 0 0 1-.595.34c-.262.058-.487.053-.675-.015s-.347-.189-.478-.365a1.606 1.606 0 0 1-.275-.6 1.366 1.366 0 0 1-.004-.67c.054-.203.16-.37.316-.503s.341-.223.556-.27c.243-.053.46-.037.654.046a.973.973 0 0 1 .464.428l-.3.141a.757.757 0 0 0-.332-.32.693.693 0 0 0-.431-.028.813.813 0 0 0-.438.231.689.689 0 0 0-.183.405 1.39 1.39 0 0 0 .029.466c.046.2.117.367.212.502a.686.686 0 0 0 .358.273c.144.046.29.052.439.02a.71.71 0 0 0 .422-.25c.101-.126.15-.293.149-.5zm.916.653-.67-2.312 1.734-.467.079.273-1.416.381.205.708 1.326-.357.078.272-1.326.357.228.787 1.472-.396.079.273-1.79.481z' stroke='none'/%3e%3c/g%3e%3c/svg%3e\"},7710:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 3'%3e%3cpath fill='%23436F4D' d='M0 0h6v3H0z'/%3e%3cpath fill='%23FFF' d='M0 0h6v2H0z'/%3e%3cpath fill='%23CD2A3E' d='M0 0h6v1H0z'/%3e%3c/svg%3e\"},2126:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3e%3cpath fill='%23FFF' d='M0 0h3v2H0z'/%3e%3cpath fill='%23CE1126' d='M0 0h3v1H0z'/%3e%3c/svg%3e\"},7884:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300'%3e%3cpath style='fill:%23169b62;fill-opacity:1;stroke:none' d='M0 752.362h200v300H0z' transform='translate(0 -752.362)'/%3e%3cpath style='fill:%23fff;fill-opacity:1;stroke:none' d='M200 752.362h200v300H200z' transform='translate(0 -752.362)'/%3e%3cpath style='fill:%23ff883e;fill-opacity:1;stroke:none' d='M400 752.362h200v300H400z' transform='translate(0 -752.362)'/%3e%3c/svg%3e\"},9571:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1100 800'%3e%3cpath d='M0 0h1100v800H0z' fill='%23fff'/%3e%3cpath d='M0 75h1100v125H0zm0 525h1100v125H0z' fill='%230038b8'/%3e%3cpath d='M423.816 472.853h252.368L550 254.295zM550 545.705l126.184-218.558H423.816z' fill='none' stroke='%230038b8' stroke-width='27.5'/%3e%3c/svg%3e\"},2509:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300'%3e%3cpath style='fill:%23cf142b;fill-opacity:1;fill-rule:nonzero;stroke:none' d='M0 0h600v300H0z'/%3e%3cpath d='M419.102 546.464c.291-.879.877-9.946.584-9.946-.293 0-13.747-15.793-13.454-15.793.294 0 17.257 3.803 17.257 3.216 0-.583 6.727-16.67 6.727-16.963 0-.291 8.19 19.597 8.19 19.597l16.67 7.313-11.7 9.65s2.634 18.72 2.634 19.013c0 .291-11.7-11.116-11.7-11.116l-12.87 1.463s-1.754-5.85-2.338-6.434z' style='font-size:12px;fill:%23f9dd16;fill-opacity:.98823499;fill-rule:evenodd;stroke:%23000;stroke-width:2.40245399pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M328.48 300.674c-11.114 5.723-53.768 54.478-59.618 62.082-4.9 11.04-14.486 25.005-24.36 33.995-10.54 7.973-16.397 18.866-14.946 29.18-.118 12.834 7.078 21.572 12.81 30.602 3.392 4.125 7.957 6.792 12.81 7.116 9.955 1.315 10.84 4.38 15.822 6.278 19.628 26.725 48.91 46.432 69.998 62.043 13.442 7.085 22.79 14.17 25.992 18.038 6.175 11.789 5.038 23.285 4.193 28.933-5.219 19.69-10.439 39.38-15.657 59.071-2.633 16.087 11.347 12.47 12.099 9.252 6.308-8.19 15.724-2.438 29.177-49.82 6.167-8.302 12.337-16.605 18.504-24.908 0 0 7.119-2.847 7.119-3.558 10.823-12.995 2.582-20.433-3.56-22.773-4.508-1.66-9.015-3.323-13.522-4.983 0 0-15.657-15.657-16.368-15.657-7.44-21.643-43.96-67.85-52.443-74.283-5.872-6.12-8.666-8.726-14.24-12.13-8.569-4.099-11.334-5.432-16.583-7.527-4.37-1.754-1.26-6.552 1.52-8.745 28.926-15.746 51.855-33.245 79.61-51.038l4.27-2.847-9.963-56.933c-15.42-5.456-30.84-10.915-46.26-16.37-2.426 1.66-4.269 3.322-6.405 4.982z' style='font-size:12px;fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:3.71638179;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M367.185 600.428c.147-.583 28.955-5.85 28.955-5.85s-3.364 10.677-3.51 10.677l-28.662 8.627 3.217-13.454z' style='font-size:12px;fill:%23f9dd16;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M292.113 491.958c5.557-14.77 20.983-26.466 31.345-29.692' style='font-size:12px;fill:none;stroke:%23000;stroke-width:2.40245399pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M366.15 600.688c1.86-.524 10.117-2.934 12.521-3.308 2.566-.601 5.12-1.274 7.587-2.069 2.847-.581 4.63-1.117 7.587-1.655 2.316-.884 4.606-1.49 7.083-2.069M360.934 618.5c.24-.322 2.203-2.057 3.613-2.895 1.66-.524 7.338-2.934 9.485-3.309 2.292-.6 4.572-1.273 6.775-2.068 2.544-.581 4.135-1.117 6.778-1.655 2.068-.884 4.113-1.49 6.323-2.069' style='font-size:12px;fill:none;stroke:%23000;stroke-width:2.65663357pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M372.632 496.138h-.414c1.295 0 .5-.108-1.242 2.068-.62 1.672-5.929 5.377-9.927 5.377-1.929.207-4.893.413-6.825.413-.55 0-1.31-.413-1.862-.413m19.856 77.765h2.067c2.145 0 4.298.382 6.205.413 2.069 0 4.137.586 6.206.586 2.087.296 4.603.2 6.763.507 2.421.082 4.365.56 6.885.56 2.032.077 3.128.416 5.38.416l-5.38-.416c2.032.077 3.128.416 5.38.416m-47.569 47.98c.22-.323 2.018-2.057 3.308-2.896 1.52-.523 6.72-2.933 8.687-3.308 2.097-.6 4.185-1.273 6.203-2.068 2.33-.582 3.786-1.118 6.206-1.656 1.895-.884 3.767-1.49 5.79-2.068m8.541-59.901c-1.17 3.397.345 4.25.972 5.716 1.091 1.42 3.875 3.584 8.274 4.963 1.696.457 3.001.904 4.964 1.656 1.3.12 1.939.444 2.895.826m-180.758-137.74h.413c-1.298 0-.52.084 1.655-1.655 1.343-1.502 2.465-2.182 3.721-3.722M260.02 464.8c.275 0 24.062-11.988 26.601-14.55 1.8-1.304 3.162-2.68 5.35-4.163 1.404-.732 2.41-1.672 3.725-2.481 1.093-1.583 2.52-2.54 3.308-3.988 1.46-1.266.833-2.638 2.018-4.164.56-1.561 1.607-4.192 1.948-5.622m30.295 17.791c.13.855-.38 3.49-.343 5.496-.082 2.326-3.073 9.51-6.689 11.655' style='font-size:12px;fill:none;stroke:%23000;stroke-width:2.40245399pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M290.53 447.356c.14 0 3.76 1.177 9.812 3.04 7.284 2.618 22.434 12.165 23.938 13.48 1.535 1.208 4.281 2.286 5.333 3.72 1.646 1.423 2.852 3.064 4.137 4.55 1.512 1.844 2.8 3.403 3.722 4.964 4.6 3.731 16.976 29.565 17.372 31.023a63.455 63.455 0 0 1 2.068 4.55c.918 1.058 1.54 2.552 2.482 4.138.865 2.056 1.833 2.993 2.898 4.55 1.369.951 3.214 2.758 4.963 3.721 1.864 1.595 3.613 2.244 4.963 3.31 1.951.83 23.751 14.61 24.763 15.3 1.991 1.6 8.072 7.901 3.803 12.485-1.812 1.55-3.443 3.601-4.99 4.478-1.576 1.579-3.77 2.285-5.581 3.102-9.821 2.902-14.823 1.862-16.755 1.862h-2.068M242.383 398.622c2.791 1.093 1.665.286 4.178 1.43 1.688.74 2.8.759 4.46 1.364 1.762.565 6.682 1.451 9.046 3.825 1.735 1.566 3.058 2.89 4.964 4.034 2.253 1.554 3.88 2.246 6.674 3.411 2.356.882 4.992 1.86 7.375 1.944 2.477.144 3.07.021 5.446.021h5.793-5.793 5.793' style='font-size:12px;fill:none;stroke:%23000;stroke-width:2.40245399pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M241.717 426.234c6.203-.414 16.543 1.448 16.75 1.448l13.65-.206c7.172-.692 8.755-3.448 9.928-5.38 2.688-4.134 4.55-5.583 6.619-8.684 3.308-2.482 7.86 3.308 8.067 3.308 11.58 10.962 2.273 24.404 1.653 24.817-5.79 5.31-7.032 5.653-10.547 2.275-3.517-4.137-4.55-5.996-7.445-7.445-5.583-2.688-17.166-.62-17.375-.62-.206 0-5.996 2.275-5.996 2.275-2.828 1.034-4.62 3.518-9.514 4.342-4.963.346-6.619-.137-9.1-4.135-3.309-5.17-1.656-11.376 3.31-11.995z' style='font-size:12px;fill:%23ffe606;fill-rule:evenodd;stroke:%23000;stroke-width:2.40245399pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M565.566 175.36c-.909.177-9.1 4.11-8.956 4.365.144.255-7.03 19.723-7.173 19.467-.144-.255-5.142-16.906-5.653-16.618-.51.286-17.828 2.306-18.084 2.45-.253.142 13.068-16.743 13.068-16.743l-1.795-18.116 14.146 5.469s15.027-11.47 15.283-11.613c.253-.143-3.956 15.646-3.956 15.646l7.583 10.502s-4.24 4.395-4.463 5.19z' style='font-size:12px;fill:%23f9dd16;fill-opacity:.98823499;fill-rule:evenodd;stroke:%23000;stroke-width:2.40245457pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M395.73 374.811c10.435 6.883 73.838 20.169 83.333 21.542 12.025-1.139 28.896.373 41.571 4.574 12.116 5.28 24.481 5.046 32.76-1.273 11.245-6.187 15.335-16.741 20.398-26.164 1.933-4.979 2.02-10.264-.075-14.654-3.734-9.322-1.495-11.595-2.283-16.868 13.676-30.207 16.505-65.389 19.777-91.422-.412-15.19 1.182-26.81 2.985-31.497 7.25-11.16 17.827-15.803 23.165-17.834 19.721-5.101 39.443-10.2 59.164-15.302 15.313-5.589 5.308-16.002 2.135-15.08-10.23-1.486-9.831-12.512-57.726-1.018-10.26-1.307-20.52-2.616-30.78-3.922 0 0-5.97-4.81-6.59-4.461-16.632-3.066-19.077 7.762-18.106 14.264.762 4.742 1.521 9.486 2.283 14.228 0 0-5.974 21.32-5.626 21.94-15.22 17.093-37.876 71.981-39.327 82.529-.686 9.91-4.43 8.121-3.426 17.754.038 7.528-.838 2.828 1.675 18.338.613 4.669-5.094 4.308-8.368 2.96-27.9-17.497-54.392-28.907-83.504-44.381l-4.574-2.326-44.744 36.586 8.401 48.346c2.636 1.302 4.989 2.093 7.482 3.141z' style='font-size:12px;fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:3.71638179;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M638.05 194.167c-.582.158-19.29-22.372-19.29-22.372s10.955-2.3 11.026-2.173l21.567 20.756-13.304 3.79z' style='font-size:12px;fill:%23f9dd16;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M580.29 312.765c-15.599 2.395-33.353-5.32-41.244-12.77' style='font-size:12px;fill:none;stroke:%23000;stroke-width:2.40245457pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M638.783 194.943c-1.368-1.365-7.515-7.381-9.02-9.294-1.782-1.942-3.62-3.839-5.522-5.6-1.902-2.196-3.242-3.487-5.161-5.802-1.906-1.585-3.555-3.284-5.274-5.16m43.059 21.673c-.398-.052-2.872-.913-4.294-1.731-1.27-1.19-6.153-4.958-7.532-6.647-1.647-1.703-3.35-3.36-5.124-4.891-1.753-1.933-3-3.057-4.764-5.097-1.784-1.37-3.314-2.855-4.902-4.498' style='font-size:12px;fill:none;stroke:%23000;stroke-width:2.65663414pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='m544.473 240.531.202.36c-.634-1.129-.339-.382 2.412.07 1.761-.28 7.592 2.532 9.552 6.017 1.125 1.58 2.758 4.063 3.705 5.747.27.48.281 1.344.552 1.826m58.054-55.421-.202-.36-.81-1.44c-1.051-1.87-1.773-3.934-2.68-5.612-1.015-1.803-1.517-3.893-2.531-5.696-.766-1.965-2.082-4.11-2.873-6.144-1.115-2.15-1.651-4.08-2.886-6.276-.93-1.81-1.17-2.93-2.274-4.893l2.274 4.893c-.93-1.81-1.17-2.93-2.274-4.893m65.135 17.951c-.389-.035-2.782-.752-4.145-1.465-1.202-1.07-5.85-4.42-7.141-5.951-1.551-1.534-3.16-3.024-4.843-4.394-1.649-1.746-2.83-2.753-4.484-4.598-1.7-1.219-3.145-2.553-4.64-4.033m-56.4 21.911c3.534-.644 3.535-2.384 4.505-3.648.703-1.647 1.225-5.135.271-9.645-.433-1.702-.683-3.059-.99-5.138-.531-1.192-.562-1.908-.698-2.929m-31.477 225.067-.202-.36c.636 1.13.327.411-2.254-.632-1.967-.434-3.11-1.08-5.068-1.42m20.083-35.375c-.135-.24-22.242-15.1-25.72-16.058-2.018-.929-3.886-1.442-6.25-2.623-1.327-.864-2.64-1.28-3.989-2.03-1.916-.176-3.448-.952-5.097-.929-1.82-.652-2.708.566-4.619.282-1.635.277-4.442.653-5.855 1.056m.66-35.126c.682-.532 3.23-1.38 4.96-2.394 2.067-1.069 9.795-1.982 13.437.119' style='font-size:12px;fill:none;stroke:%23000;stroke-width:2.40245457pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M542.188 336.004c-.069-.121-.817-3.854-2.16-10.042-1.287-7.633-.39-25.518.019-27.473.3-1.93-.105-4.852.63-6.472.433-2.132 1.272-3.987 1.939-5.837.865-2.22 1.593-4.106 2.502-5.676.998-5.839 17.451-29.286 18.528-30.347a63.46 63.46 0 0 1 2.953-4.033c.472-1.318 1.47-2.593 2.39-4.19 1.368-1.762 1.71-3.065 2.546-4.756.158-1.66.829-4.154.811-6.15.477-2.407.186-4.25.454-5.95-.234-2.106 1.094-27.862 1.2-29.082.418-2.52 2.931-10.909 9.02-9.434 2.238.82 4.826 1.236 6.348 2.155 2.148.6 3.84 2.166 5.439 3.345 7.343 7.138 8.887 12.008 9.834 13.692l1.014 1.803m-82.461 193.466-.203-.36c.548.974.244.488-.45-1.645-.184-1.835-.75-4.317-1.035-6.061-.371-1.812-1.22-3.876-.99-5.138-.649-1.84-.24-3.36-.067-5.183.516-2.28.748-3.929.812-6.15.25-2.726.049-4.658.204-7.234-.718-2.12-.865-3.896-1.96-6.015-.973-2.026-1.718-3.9-2.883-5.972l-2.839-5.049 2.84 5.05-2.84-5.05' style='font-size:12px;fill:none;stroke:%23000;stroke-width:2.40245457pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M547.698 388.905c-3.4-5.205-6.845-15.13-6.946-15.31 0-.003-6.87-11.798-6.87-11.798-4.118-5.912-7.296-5.942-9.554-6.017-4.921-.317-7.097-1.23-10.814-1.513-3.785-1.668-.969-8.474-1.07-8.654 3.88-15.466 20.159-13.94 20.823-13.603 7.465 2.445 8.373 3.36 7.152 8.078-1.883 5.094-2.997 6.905-2.841 10.139.392 6.184 7.872 15.266 7.974 15.449.102.18 4.922 4.112 4.922 4.112 2.287 1.958 5.33 2.303 8.447 6.165 2.734 4.157 3.124 5.836.856 9.959-2.885 5.417-9.105 7.018-12.079 2.993z' style='font-size:12px;fill:%23f9dd16;fill-opacity:1;fill-rule:evenodd;stroke:%23000;stroke-width:2.40245457pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M238.862 224.504c.121-.366.365-4.14.243-4.14s-5.722-6.574-5.6-6.574c.122 0 7.183 1.583 7.183 1.339 0-.243 2.8-6.939 2.8-7.061 0-.121 3.409 8.157 3.409 8.157l6.939 3.044-4.87 4.017s1.096 7.792 1.096 7.914c0 .121-4.87-4.627-4.87-4.627l-5.357.609s-.73-2.435-.973-2.678z' style='fill:%23f9dd16;fill-opacity:.98823499;fill-rule:evenodd;stroke:%23000;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' transform='rotate(117.437 234.631 155.127) scale(.84038)'/%3e%3cpath d='M201.141 122.196c-4.626 2.382-22.38 22.676-24.815 25.841-2.04 4.595-6.03 10.408-10.14 14.15-4.387 3.319-6.825 7.853-6.221 12.146-.049 5.342 2.946 8.979 5.332 12.738 1.412 1.717 3.312 2.827 5.332 2.962 4.144.547 4.512 1.823 6.586 2.613 8.17 11.124 20.358 19.327 29.136 25.825 5.595 2.949 9.486 5.898 10.819 7.508 2.57 4.907 2.097 9.692 1.745 12.043l-6.517 24.588c-1.096 6.696 4.723 5.19 5.036 3.851 2.626-3.409 6.545-1.015 12.145-20.737l7.702-10.368s2.963-1.185 2.963-1.481c4.505-5.409 1.075-8.505-1.482-9.479l-5.628-2.074s-6.517-6.517-6.813-6.517c-3.097-9.009-18.39-28.426-21.921-31.104-3.456-2.271-2.043-3.264-5.743-4.865-2.739-1.522-.855-.881-6.995-3.133-1.819-.73-.524-2.727.633-3.64 12.04-6.554 21.584-13.838 33.137-21.244l1.777-1.185-4.147-23.698-19.255-6.814c-1.01.691-1.777 1.383-2.666 2.074z' style='fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:%23000;stroke-width:1.54691064;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none' transform='rotate(117.437 234.631 155.127) scale(.84038)'/%3e%3cpath d='M217.252 246.966c.061-.243 12.052-2.435 12.052-2.435s-1.4 4.444-1.461 4.444l-11.93 3.591 1.339-5.6z' style='fill:%23f9dd16;fill-opacity:1;fill-rule:evenodd;stroke:none' transform='rotate(117.437 234.631 155.127) scale(.84038)'/%3e%3cpath d='M186.004 201.816c2.313-6.148 8.734-11.016 13.047-12.359' style='fill:none;stroke:%23000;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' transform='rotate(117.437 234.631 155.127) scale(.84038)'/%3e%3cpath d='M216.821 247.074c.774-.218 4.211-1.221 5.212-1.377 1.068-.25 2.131-.53 3.158-.861 1.185-.242 1.927-.465 3.158-.689.964-.368 1.917-.62 2.948-.861m-16.647 11.202c.1-.134.917-.856 1.504-1.205.691-.218 3.054-1.221 3.948-1.377.954-.25 1.903-.53 2.82-.861 1.059-.242 1.721-.465 2.821-.689.861-.368 1.712-.62 2.632-.861' style='font-size:12px;fill:none;stroke:%23000;stroke-width:1.10579996pt' transform='rotate(117.437 234.631 155.127) scale(.84038)'/%3e%3cpath d='M219.519 203.556h-.172c.539 0 .208-.045-.517.861-.258.696-2.468 2.238-4.132 2.238-.803.086-2.037.172-2.841.172-.229 0-.545-.172-.775-.172m8.265 32.369h.86c.893 0 1.789.159 2.583.172.861 0 1.722.244 2.583.244.869.123 1.916.083 2.815.211 1.008.034 1.817.233 2.866.233.846.032 1.302.173 2.239.173l-2.239-.173c.846.032 1.302.173 2.239.173m-19.8 19.971c.092-.134.84-.856 1.377-1.205.633-.218 2.797-1.221 3.616-1.377.873-.25 1.742-.53 2.582-.861.97-.242 1.576-.465 2.583-.689.789-.368 1.568-.62 2.41-.861m3.555-24.933c-.487 1.414.144 1.769.405 2.379.454.591 1.613 1.492 3.444 2.066.706.19 1.249.376 2.066.689.541.05.807.185 1.205.344m-75.239-57.333h.172c-.54 0-.216.035.689-.689.559-.625 1.026-.908 1.549-1.549m8.738 14.503c.115 0 10.016-4.99 11.073-6.056.749-.543 1.316-1.116 2.227-1.733.584-.305 1.003-.696 1.55-1.033.455-.659 1.049-1.057 1.377-1.66.608-.527.347-1.098.84-1.733.233-.65.669-1.745.811-2.34m12.61 7.405c.054.356-.158 1.453-.143 2.288-.034.968-1.279 3.958-2.784 4.851' style='fill:none;stroke:%23000;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' transform='rotate(117.437 234.631 155.127) scale(.84038)'/%3e%3cpath d='M185.345 183.251c.058 0 1.565.49 4.084 1.265 3.032 1.09 9.338 5.064 9.964 5.611.639.503 1.782.952 2.22 1.549.685.592 1.187 1.275 1.722 1.894.629.767 1.165 1.416 1.549 2.066 1.915 1.553 7.066 12.306 7.231 12.913.289.568.647 1.359.861 1.894.382.44.641 1.062 1.033 1.722.36.856.763 1.246 1.206 1.894.57.396 1.338 1.148 2.066 1.549.776.664 1.504.934 2.066 1.378.812.345 9.886 6.081 10.307 6.368.829.666 3.36 3.289 1.583 5.197-.754.645-1.433 1.499-2.077 1.864-.656.657-1.569.951-2.323 1.291-4.088 1.208-6.17.775-6.974.775h-.861m-53.373-69.385h.172c-.465 0-.227-.011.689.172.703.308 1.719.609 2.41.861.733.235 1.655.348 2.066.689.8.14 1.268.598 1.894 1.033.722.652 1.273 1.073 2.066 1.549.938.647 1.68.968 2.583 1.55.916.172 1.59.481 2.582.516.934.06 1.766.172 2.755.172h2.411-2.411 2.411m35.984-26.686h-.345c.637 0 .458-.023-.516.172-1.017.525-2.371.922-3.272 1.377-1.028.34-2.133.717-3.099 1.206-1.094.641-2.102 1.162-3.099 1.893-.991.531-1.965 1.185-2.927 1.722-.959.521-1.751 1.024-2.582 1.722-.694.385-1.637.93-2.411 1.549-.727.261-1.252.779-1.721 1.206-.911.807-1.469 1.226-2.411 2.066-.495.468-1.153 1.018-1.894 1.721-.778.519-1.62 1.517-2.238 2.066-.396.517-.976 1.132-1.549 1.55-.441.555-.952 1.285-1.55 1.722-.355.528-.976 1.216-1.55 1.894-.465.569-1.105 1.142-1.549 1.721-.598.662-1.056 1.329-1.722 1.894-.119.398-.369.604-.516.861' style='fill:none;stroke:%23000;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' transform='rotate(117.437 234.631 155.127) scale(.84038)'/%3e%3cpath d='M165.027 174.459c2.582-.172 6.886.603 6.972.603l5.682-.086c2.985-.288 3.644-1.435 4.132-2.239 1.119-1.721 1.894-2.324 2.755-3.615 1.377-1.033 3.272 1.377 3.358 1.377 4.82 4.563.946 10.158.688 10.33-2.41 2.21-2.927 2.353-4.39.947-1.464-1.722-1.894-2.496-3.099-3.099-2.324-1.119-7.145-.258-7.232-.258-.086 0-2.496.947-2.496.947-1.177.43-1.923 1.464-3.96 1.807-2.066.144-2.755-.057-3.788-1.721-1.377-2.152-.689-4.735 1.378-4.993z' style='fill:%23f9dd16;fill-opacity:1;fill-rule:evenodd;stroke:%23000;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' transform='rotate(117.437 234.631 155.127) scale(.84038)'/%3e%3cpath d='M332.302 290.148c-2.276-2.067 42.81 16.337 49.014 16.546 8.48-3.102 43.433-32.676 43.433-32.676.345 2.895 1.584 10.409 4.96 11.996-13.51 10.962-25.781 21.508-39.292 32.468.966 17.373-2.205 35.78 6.618 55.221 0 0-10.546.205-10.546 0-9.307-9.307-12.618-54.185-12.618-54.185-14.821-6.619-29.644-13.029-44.465-19.648 2.138-1.38 3.86-5.652 2.896-9.722z' style='font-size:12px;fill:%23f9dd16;fill-opacity:.98742095;fill-rule:evenodd;stroke:%23000;stroke-width:2.40244999pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3cpath d='M375.199 336.153c.72-.523-8.133 4.113-10.407 5.277-40.961 21.85-62.04 53.634-63.354 54.835-.708 1.354-2.011 3.16-3.204 4.929-.96 1.483-2.338 3.018-3.246 4.518-1.255 1.738-3.893 5.17-5.334 6.694-.18.982.683-.336.4.317m113.133-102.538c-.795-.402 7.378 5.351 9.453 6.84 38.166 26.431 76.072 30.638 77.74 31.257 1.529.01 3.73.343 5.849.595 1.759.175 3.753.698 5.503.82 2.119.32 6.378 1.096 8.393 1.681.954-.29-.611-.453.098-.502' style='font-size:12px;fill:none;stroke:%23000;stroke-width:2.40244999pt' transform='translate(163.243 23.834) scale(.3498)'/%3e%3c/svg%3e\"},2908:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 225 150'%3e%3cpath fill='%23f93' d='M0 0h225v150H0z'/%3e%3cpath fill='%23fff' d='M0 50h225v50H0z'/%3e%3cpath fill='%23128807' d='M0 100h225v50H0z'/%3e%3cg transform='translate(112.5 75)'%3e%3ccircle r='20' fill='%23008'/%3e%3ccircle r='17.5' fill='%23fff'/%3e%3ccircle r='3.5' fill='%23008'/%3e%3cg id='d'%3e%3cg id='c'%3e%3cg id='b'%3e%3cg id='a' fill='%23008'%3e%3ccircle r='.875' transform='rotate(7.5 -8.75 133.5)'/%3e%3cpath d='M0 17.5.6 7 0 2l-.6 5L0 17.5z'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='rotate(15)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(30)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='rotate(60)'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='rotate(120)'/%3e%3cuse xlink:href='%23d' transform='rotate(-120)'/%3e%3c/g%3e%3c/svg%3e\"},141:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 600 300'%3e%3cdefs%3e%3cclipPath id='c'%3e%3cpath d='M0 0v75h350v75h-50zm300 0H150v200H0v-50z'/%3e%3c/clipPath%3e%3cclipPath id='b'%3e%3cpath d='M0 0h300v150H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3cpath fill='%23FFF' d='M0 0h600v300H0z'/%3e%3cpath id='a' fill='%23002b7f' d='M600 260.881c-6.723 4.045-12.499 13.498-30.36 13.498-35.711 0-44.641-19.902-71.427-19.902-17.856 0-26.785 19.902-44.641 19.902-35.715 0-44.643-19.902-71.429-19.902-17.857 0-26.786 19.902-44.643 19.902-35.714 0-44.643-19.902-71.428-19.902-17.858 0-26.786 19.902-44.643 19.902-35.714 0-44.643-19.902-71.429-19.902-17.858 0-26.786 19.902-44.643 19.902-35.714 0-44.643-19.902-71.428-19.902-17.858 0-23.215 14.182-33.929 14.182v25.621c10.714 0 16.071-14.181 33.929-14.181 26.785 0 35.714 19.901 71.428 19.901 17.857 0 26.785-19.901 44.643-19.901 26.785 0 35.715 19.901 71.429 19.901 17.857 0 26.785-19.901 44.643-19.901 26.785 0 35.714 19.901 71.428 19.901 17.857 0 26.786-19.901 44.643-19.901 26.786 0 35.714 19.901 71.429 19.901 17.856 0 26.785-19.901 44.641-19.901 26.786 0 35.716 19.901 71.427 19.901 17.861 0 23.637-5.64 30.36-9.684v-29.435z'/%3e%3cuse transform='translate(0 -49.753)' xlink:href='%23a'/%3e%3cuse transform='translate(0 -99.507)' xlink:href='%23a'/%3e%3cuse transform='translate(0 -149.26)' xlink:href='%23a'/%3e%3cuse transform='translate(0 -199.014)' xlink:href='%23a'/%3e%3cuse transform='translate(0 -248.768)' xlink:href='%23a'/%3e%3cpath fill='%23FFF' d='M0 0h300v152H0z'/%3e%3cg clip-path='url(%23b)'%3e%3cpath fill='%2300247d' d='M0 0h300v150H0z'/%3e%3cpath d='m0 0 300 150m0-150L0 150' stroke='%23fff' stroke-width='30'/%3e%3cpath d='m0 0 300 150m0-150L0 150' stroke='%23cf142b' stroke-width='20' clip-path='url(%23c)'/%3e%3cpath d='M150 0v200M0 75h350' stroke='%23fff' stroke-width='50'/%3e%3cpath d='M150 0v200M0 75h350' stroke='%23cf142b' stroke-width='30'/%3e%3c/g%3e%3cpath d='M814.961-301.181 797.244 407.48c0 37.298 80.097 37.298 88.583 0L868.11-301.181h-53.149z' transform='matrix(.12095 0 0 .28726 347.839 166.046)' style='fill:%23a24300;stroke-width:6.935;stroke:%23fff'/%3e%3cg transform='matrix(.43857 0 0 .37683 122.2 25.058)'%3e%3cg transform='matrix(-.31451 .10485 -.1383 -.30323 1046.472 373.319)'%3e%3cg id='d' style='fill:none;stroke-width:1;stroke:%23000'%3e%3cpath d='m496.063 549.213 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.299 35.433-35.433-35.433 106.299 35.433-35.433-35.433 106.299-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.299 35.433 35.433-35.433-106.299 35.433 35.433-35.433-106.299 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z' transform='translate(177.166 -224.052)' style='fill:%23006d00;stroke-width:8.25;stroke:%23fff'/%3e%3cpath d='M496.063 549.213v496.067m-70.866-177.17 70.866 106.299 70.866-106.299' transform='translate(177.166 -224.052)'/%3e%3cpath d='m425.197 797.244 70.866 106.299 70.866-106.299' transform='translate(177.166 -224.052)'/%3e%3cpath d='m425.197 726.378 70.866 106.299 70.866-106.299' transform='translate(177.166 -224.052)'/%3e%3cpath d='m425.197 673.228 70.866 88.583 70.866-88.583' transform='translate(177.166 -224.052)'/%3e%3cpath d='m425.197 620.079 70.866 88.582 70.866-88.582' transform='translate(177.166 -224.052)'/%3e%3cpath d='m442.913 566.929 53.15 106.299 53.15-106.299' transform='translate(177.166 -224.052)'/%3e%3c/g%3e%3c/g%3e%3cuse xlink:href='%23d' transform='matrix(.23652 -.28186 .29496 .22762 354.567 204.654)'/%3e%3cuse xlink:href='%23d' transform='matrix(.15164 .33524 -.3329 .1673 907.539 -153.47)'/%3e%3cuse xlink:href='%23d' transform='matrix(-.20952 .30246 -.3147 -.19945 1141.363 167.58)'/%3e%3cuse xlink:href='%23d' transform='matrix(-.20772 -.25838 .23618 -.23515 689.986 567.277)'/%3e%3cg transform='matrix(-.36218 -.09947 -.2098 .31773 1222.415 -24.23)'%3e%3cg id='e' style='fill:none;stroke-width:1;stroke:%23000'%3e%3cpath d='m460.63 549.213 28.643 70.866 42.223-53.15-10.184 88.583 27.9-35.433-17.716 88.582 25.249-35.433-25.249 88.583 35.433-35.433-35.433 106.299 35.433-35.433-35.433 106.299 35.433-35.433-35.433 106.299-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.299 35.433 35.433-35.433-106.299 35.433 35.433-35.433-106.299 35.433 35.433-45.617-88.583 45.617 35.433-53.15-88.582 42.966 35.433-25.25-88.583 35.433 53.15.001-70.866z' transform='translate(283.465 -124.016)' style='fill:%23006d00;stroke-width:8.25;stroke:%23fff'/%3e%3cpath d='m467.208 584.646 28.855 124.016v336.618' transform='translate(283.465 -124.016)'/%3e%3cpath d='m436.23 885.827 59.833 88.582 60.682-88.582' transform='translate(283.465 -124.016)'/%3e%3cpath d='m434.533 814.961 61.53 88.582 60.682-88.582' transform='translate(283.465 -124.016)'/%3e%3cpath d='m435.381 744.095 60.682 88.582 59.833-88.582' transform='translate(283.465 -124.016)'/%3e%3cpath d='m432.835 690.945 63.228 70.866 53.149-70.866' transform='translate(283.465 -124.016)'/%3e%3cpath d='m425.197 637.796 70.866 70.865 45.406-70.865' transform='translate(283.465 -124.016)'/%3e%3cpath d='m436.124 593.238 53.15 86.886 35.327-95.478' transform='translate(283.465 -124.016)'/%3e%3c/g%3e%3c/g%3e%3cuse xlink:href='%23e' transform='matrix(.36088 .10411 .01321 .38053 452.761 -239.266)'/%3e%3cg style='fill:none;stroke-width:1;stroke:%23000'%3e%3cpath d='m354.331 531.496 88.583 88.583 17.716-53.149v88.582l35.433-35.433-17.716 88.583 35.432-35.434-17.716 88.584 35.433-35.433-17.716 106.299 35.433-35.433-35.433 106.299 35.433-35.433-17.717 106.298-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-53.15-82.294 35.434 11.429-35.433-106.299 35.433 35.433-53.15-106.299 35.433 35.433-53.15-88.584 53.15 35.434-70.866-88.583 53.149 35.433-70.866-70.866 70.866 35.433-53.149-88.583z' transform='matrix(.04613 -.36474 .32602 .0648 386.005 315.21)' style='fill:%23006d00;stroke-width:8.25;stroke:%23fff'/%3e%3cpath d='m586.061 213.273 34.084-17.138 18.145-3.018 15.147-.302 26.102 1.875 23.533 1.195 46.596 6.12'/%3e%3cpath d='m700.19 218.668 26.041-18.63-26.538-24.25'/%3e%3cpath d='m670.937 215.888 32.135-20.003-26.538-24.25'/%3e%3cpath d='m650.112 215.34 29.427-20.65-26.76-22.499M611.1 220.835l27.19-27.718-21.912-14.014'/%3e%3cpath d='m599.021 222.708 21.124-26.573-16.842-7.28m25.942 28.962 26.845-24.987-21.538-16.974'/%3e%3c/g%3e%3c/g%3e%3cpath d='m52.504 257.674 98.536-17.68 102.642 17.68-47.626 19.801-87.861 1.415-65.691-21.216z' style='fill:%239d9d9d;stroke-width:1.008;stroke:%23000' transform='translate(412 157.18) scale(.25333)'/%3e%3cpath d='M151.789 98.445c-17.223 5.987-36.302-8.425-67.359 15.094 0 0-54.144-23.163-58.257 30.371-.165 2.167 8.57 15.223 9.786 14.29 6.804-5.224-3.23 5.072-3.23 6.56 0 1.5.998 2.333 1.335 2.994.331.667 1.163 1.665 1.329 4.494.165 2.828-6.137 10.544-3.474 13.372 2.657 2.829 2.822 10.984 2.822 13.311 0 2.326 1.666 8.816 2.829 10.151 1.163 1.328 3.159 4.653 3.159 7.481 0 2.829 1.163 10.647.661 12.637-.496 1.996 2.994 4.494 6.16 5.492 3.159.998 43.935 1.706 101.162.708 57.233-.998 76.328 8.057 99.974-.543 3.655-1.328 4.322-4.322 3.992-5.988-.337-1.659 0-6.979.998-8.314.998-1.328 7.653-11.975 6.318-13.971 1.256-1.134 10.589 5.39 4.645-.436-1.524-1.493.853-17.216 1.673-20.528.827-3.318 2.096-9.549 3.621-10.706 1.532-1.157-2.598-5.488-2.305-6.27.298-.788 1.411-3.229 2.962-4.341 0 0 2.885-13.527 1.106-20.176-1.767-6.655-8.27-36.583-48.862-30.588 0 0-54.34-20.9-71.045-15.094z' style='fill:%23c00;stroke-width:1.629;stroke:%23000' transform='translate(412 157.18) scale(.25333)'/%3e%3cg transform='translate(413.752 163.796) scale(.27506)'%3e%3cg transform='matrix(.49697 -.0446 .08947 .72677 44.7 100.543)' stroke-width='1.241'%3e%3cg id='f'%3e%3cpath d='M49.75.125c-5.093.89-15.156 29.245-12.609 38.75 1.763 6.58 4.498 11.12 6.047 13.906-3.405-4.685-11.383-13.75-22.25-13.75-13.664 0-15.431 29.948-15.094 31.875.001.007-.002.026 0 .032.001.004.029.027.031.031h.031c.613-.715 6.142-13.094 19.657-13.094 8.896 0 15.829 7.035 18.375 10.031-.001.945.022 1.858.031 2.782-2.004 2.828-3.282 9.531-9.469 17.968C27.023 98.852 4.128 99.897.281 100h49.532c.047 0 .109.003.156 0 .022.002.04-.001.062 0 .047.003.109 0 .157 0h49.531c-3.847-.103-27.18-1.148-34.656-11.344-6.188-8.437-7.028-15.14-9.032-17.968.009-.924.032-1.837.032-2.782 2.545-2.996 9.478-10.031 18.375-10.031 13.514 0 19.043 12.379 19.656 13.094h.031c.002-.004.03-.027.031-.031.002-.006-.001-.025 0-.032.337-1.927-1.43-31.875-15.093-31.875-10.868 0-18.846 9.065-22.25 13.75 1.548-2.786 4.29-8.575 5.718-13.906C65.118 29.219 55.091.132 50 .125c-.08 0-.169-.014-.25 0zm-6.437 52.844c.352.49.662.912.906 1.281.005.008.541 2.977.547 2.984-.003.064 2.627 10.186 2.624 10.25-.264-.392-3.737-13.915-4.077-14.515zm13.375 0c-.341.6-4.033 14.123-4.297 14.515-.003-.064 3.393-13.139 3.39-13.203 0-.01-.437 2.964-.437 2.953.244-.369.991-3.775 1.344-4.265z' style='fill:%23f7d917;stroke-width:1.241;stroke:%23000'/%3e%3cpath d='M42 67.578s4-1.859 8-1.859 8 1.859 8 1.859v4.953s-4-1.859-8-1.859-8 1.859-8 1.859v-4.953z' style='fill:%23f7d917;stroke-width:1.241;stroke:%23000'/%3e%3c/g%3e%3c/g%3e%3cuse xlink:href='%23f' transform='matrix(.49538 .0597 -.0636 .7295 168.919 96.59)'/%3e%3cg style='fill:%23f7d917;stroke-width:.715;stroke:%23000'%3e%3cpath d='m24.308 134.56 9.69-11.814s.903 1.168 0 0C14.132 97.065 13.127 82.331 15.363 74.87c2.236-7.461 6.709-15.544 18.635-25.493 11.926-9.948 20.156-4.419 31.336-4.419 11.181 0 14.163 2.487 23.852 3.731 9.69 1.243 35.778 2.487 35.778 2.487v-6.84s1.029.192 0 0c-11.518-2.147-26.088 0-35.778-2.487-9.689-2.487-17.889-3.108-28.324-3.108-10.435 0-17.92-3.043-24.628 1.31-6.709 4.352-14.908 11.813-20.871 18.031C9.4 64.3 6.419 76.735 7.164 84.818c.746 8.083 3.727 14.923 8.199 21.14 4.473 6.218 3.727 11.192 5.218 15.544 1.491 4.353 3.727 13.679 3.727 13.058zm214.947 0-9.69-11.814s-.904 1.168 0 0c19.865-25.681 20.87-40.415 18.634-47.876-2.236-7.461-6.708-15.544-18.634-25.493-11.926-9.948-20.156-4.419-31.337-4.419-11.181 0-14.162 2.487-23.852 3.731-9.69 1.243-35.778 2.487-35.778 2.487v-6.84s-1.029.192 0 0c11.519-2.147 26.088 0 35.778-2.487 9.69-2.487 17.889-3.108 28.324-3.108 10.436 0 17.92-3.043 24.629 1.31 6.708 4.352 14.907 11.813 20.87 18.031 5.963 6.218 8.945 18.653 8.199 26.736-.745 8.083-3.727 14.923-8.199 21.14-4.472 6.218-3.727 11.192-5.217 15.544-1.491 4.353-3.727 13.679-3.727 13.058z'/%3e%3cpath style='stroke-width:.835' d='M115.553 38.701h34.563v70.894h-34.563z'/%3e%3c/g%3e%3cg style='fill:%23f7d917;stroke-width:.5;stroke:%23000'%3e%3cpath d='M119.684-23.799s3.72 3.028 6.575 6.922c2.856 3.893 4.846 8.652 4.846 8.652s-4.759-1.99-8.652-4.846c-3.894-2.855-6.922-6.575-6.922-6.575V6.656s3.028-3.72 6.922-6.575c3.893-2.856 8.652-4.846 8.652-4.846s-1.534 3.927-2.524 8.653c-.891 4.25-8.183 14.064-8.183 14.064l21.303 1.429s-3.542-11.243-4.969-15.493c-1.536-4.578-2.167-8.653-2.167-8.653s4.759 1.99 8.653 4.846c3.893 2.855 6.921 6.575 6.921 6.575v-26.302s-3.028 3.72-6.921 6.575c-3.894 2.856-8.653 4.846-8.653 4.846s1.99-4.759 4.846-8.652c2.855-3.894 6.575-6.922 6.575-6.922h-26.302z'/%3e%3cpath d='M149.978 23.076a17.143 17.143 0 1 1-34.286 0 17.143 17.143 0 1 1 34.286 0z'/%3e%3cpath d='M116.074 25.535h34.102s.494-6.596-1.974-9.064h-10.594l-.179-9.888h-10.042l-.179 9.888s-7.127.357-10.41.357c-1.489 4.041-1.26 4.381-1.26 4.381l.536 4.326z'/%3e%3c/g%3e%3cg style='fill:%23f7d917;stroke-width:.75;stroke:%23000'%3e%3cpath d='M110.877 107.221s6.212 5.056 10.979 11.557c4.767 6.501 8.09 14.446 8.09 14.446s-7.946-3.323-14.446-8.09c-6.501-4.767-11.557-10.979-11.557-10.979v43.916s5.056-6.211 11.557-10.979c6.5-4.767 14.446-8.09 14.446-8.09s-3.323 7.946-8.09 14.447c-4.767 6.5-10.979 11.557-10.979 11.557h43.916s-6.212-5.057-10.979-11.557c-4.767-6.501-8.09-14.447-8.09-14.447s7.946 3.323 14.446 8.09c6.501 4.768 11.557 10.979 11.557 10.979v-43.916s-5.056 6.212-11.557 10.979c-6.5 4.767-14.446 8.09-14.446 8.09s3.323-7.945 8.09-14.446c4.767-6.501 10.979-11.557 10.979-11.557h-43.916zM27.24 181.78l21.625-3.813s-6.995-3.901-12.819-9.475c-5.824-5.574-10.476-12.822-10.476-12.822s8.402 1.892 15.632 5.458c7.23 3.566 13.288 8.806 13.288 8.806l-7.626-43.249s-3.901 6.995-9.475 12.819c-5.574 5.824-12.822 10.475-12.822 10.475s1.892-8.401 5.458-15.631c3.566-7.23 8.806-13.288 8.806-13.288l-21.625 3.813L27.24 181.78zm199.599-60.72s5.24 6.058 8.806 13.288c3.566 7.23 5.458 15.631 5.458 15.631s-7.248-4.651-12.822-10.475c-5.574-5.824-9.475-12.819-9.475-12.819l-7.626 43.249s6.058-5.24 13.288-8.806c7.23-3.566 15.632-5.458 15.632-5.458s-4.652 7.248-10.476 12.822c-5.823 5.574-12.819 9.475-12.819 9.475l21.625 3.813 10.034-56.907-21.625-3.813z'/%3e%3cpath d='m27.464 179.533.15 31.506s52.648-17.928 105.296-17.928 105.296 17.928 105.296 17.928v-31.506s-52.685-17.929-105.371-17.929c-52.686 0-105.371 17.929-105.371 17.929z'/%3e%3c/g%3e%3cg fill='%23FFF' stroke='%23000'%3e%3cg transform='translate(21.246 -360.32) scale(.66123)'%3e%3cpath id='g' d='M2.02 723.052a12.122 12.122 0 1 1-24.243 0 12.122 12.122 0 1 1 24.243 0z'/%3e%3c/g%3e%3cuse xlink:href='%23g' transform='translate(10.965 -378.602) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(8.822 -400.03) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(15.25 -420.03) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(28.822 -436.459) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(47.394 -447.887) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(68.108 -446.459) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(88.822 -443.03) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(109.537 -440.887) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='matrix(-.66123 0 0 .66123 242.316 -360.32)'/%3e%3cuse xlink:href='%23g' transform='matrix(-.66123 0 0 .66123 252.597 -378.602)'/%3e%3cuse xlink:href='%23g' transform='matrix(-.66123 0 0 .66123 254.74 -400.03)'/%3e%3cuse xlink:href='%23g' transform='matrix(-.66123 0 0 .66123 248.312 -420.03)'/%3e%3cuse xlink:href='%23g' transform='matrix(-.66123 0 0 .66123 234.74 -436.459)'/%3e%3cuse xlink:href='%23g' transform='matrix(-.66123 0 0 .66123 216.169 -447.887)'/%3e%3cuse xlink:href='%23g' transform='matrix(-.66123 0 0 .66123 195.454 -446.459)'/%3e%3cuse xlink:href='%23g' transform='matrix(-.66123 0 0 .66123 174.74 -443.03)'/%3e%3cuse xlink:href='%23g' transform='matrix(-.66123 0 0 .66123 154.026 -440.887)'/%3e%3cg transform='translate(1.04)'%3e%3cuse xlink:href='%23g' transform='translate(138.474 -378.32) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(138.474 -392.602) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(138.474 -404.03) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(138.474 -414.459) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(138.474 -447.887) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(138.474 -446.459) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(138.474 -439.03) scale(.66123)'/%3e%3cuse xlink:href='%23g' transform='translate(138.474 -428.887) scale(.66123)'/%3e%3c/g%3e%3c/g%3e%3cg fill='%23FFF' stroke='%23000'%3e%3cg transform='translate(-.457 -2)'%3e%3cpath id='h' d='M143.571 136.291a10.357 10.357 0 1 1-20.714 0 10.357 10.357 0 1 1 20.714 0z'/%3e%3c/g%3e%3cuse xlink:href='%23h' transform='translate(-108.714 16.786)'/%3e%3cuse xlink:href='%23h' transform='translate(107.286 16.786)'/%3e%3c/g%3e%3c/g%3e%3cpath style='fill:%23002b7f;stroke-width:.841;stroke:%23000' d='M134.791 210.096h34.762v15.153h-34.762z' transform='translate(412 157.18) scale(.25333)'/%3e%3cpath d='M16.043 233.111a22.995 8.556 0 1 1-45.99 0 22.995 8.556 0 1 1 45.99 0z' transform='matrix(-.1718 -.01744 .00604 .24262 461.52 156.97)' style='fill:%233e8225;stroke-width:1.5;stroke:%23000'/%3e%3cpath d='m36.937 229.285-8.709 8.709 10.101 5.832 23.493-6.294-4.187-13.304-20.698 5.057zm230.469 0 8.71 8.709-10.102 5.832-23.493-6.294 4.187-13.304 20.698 5.057z' style='fill:%23c00;stroke-width:1.086;stroke:%23000' transform='translate(412 157.18) scale(.25333)'/%3e%3cpath d='M16.043 233.111a22.995 8.556 0 1 1-45.99 0 22.995 8.556 0 1 1 45.99 0z' transform='matrix(.1718 -.01744 -.00604 .24262 439.58 156.97)' style='fill:%233e8225;stroke-width:1.5;stroke:%23000'/%3e%3cg fill='%23FFF' stroke='%23000' transform='translate(412 157.18) scale(.25333)'%3e%3cg transform='translate(1.07 -3.476)'%3e%3cpath id='i' d='M126.203 214.704a4.278 4.278 0 1 1-8.556 0 4.278 4.278 0 1 1 8.556 0z'/%3e%3c/g%3e%3cuse xlink:href='%23i' transform='translate(2.406 10.16)'/%3e%3cuse xlink:href='%23i' transform='translate(-52.406 6.15)'/%3e%3cuse xlink:href='%23i' transform='translate(-47.059 18.984)'/%3e%3cuse xlink:href='%23i' transform='matrix(-1 0 0 1 303.075 -3.476)'/%3e%3cuse xlink:href='%23i' transform='matrix(-1 0 0 1 301.738 10.16)'/%3e%3cuse xlink:href='%23i' transform='matrix(-1 0 0 1 356.55 6.15)'/%3e%3cuse xlink:href='%23i' transform='matrix(-1 0 0 1 351.203 18.984)'/%3e%3c/g%3e%3cpath d='M238.538 280.603c3.267-.567 22.977-5.253 27.127-7.76-2.678-4.828-7.484-8.605-3.744-7.018 2.014.855 3.607-5.799-2.239-10.885-16.973 5.567-57.68 15.739-108.829 15.739-52.344 0-93.562-10.707-110.535-16.273-5.846 5.086-4.025 10.864-4.378 13.023-.003.017.003 2.725 1.069 4.879 5.754 6.251 24.394 9.332 27.662 9.9 15.352 2.666 30.705 6.697 86.148 6.697 51.289 0 72.366-5.635 87.719-8.302z' style='fill:%23fff;stroke-width:1.714;stroke:%23000' transform='translate(412 157.18) scale(.25333)'/%3e%3cg transform='translate(391.394 139.673) scale(.27506)'%3e%3cpath d='M132.906 289.655c-3.009.523-22.147 7.301-25.968 9.61.003.014-.003.045 0 .061.325 1.988-3.322 11.251 2.062 15.935 15.632-5.127 59.525-20.406 106.634-20.406 48.209 0 88.14 15.279 103.772 20.406 5.384-4.684 1.737-13.947 2.063-15.935.003-.016-.004-.047 0-.061-3.822-2.309-22.96-9.087-25.969-9.61-14.14-2.455-28.772-11.586-79.835-11.586-47.237 0-68.619 9.131-82.759 11.586z' style='fill:%23fff;stroke-width:1.578;stroke:%23000'/%3e%3cg transform='matrix(1.38439 -.14324 .15642 1.26776 -86.626 -64.755)'%3e%3cg id='k' fill='%23000' stroke='%23000'%3e%3cg transform='translate(56.864 150.9) scale(.4996)'%3e%3cpath id='j' d='M115.508 301.56a1.872 1.872 0 1 1-3.743 0 1.872 1.872 0 1 1 3.743 0z'/%3e%3c/g%3e%3cuse xlink:href='%23j' transform='translate(55.527 153.307) scale(.4996)'/%3e%3cuse xlink:href='%23j' transform='translate(57.398 154.911) scale(.4996)'/%3e%3cpath d='m113.518 303.669 8.526-3.166-4.185 2.392 2.686-.083-2.492 1.168 4.001.275-8.536-.586z'/%3e%3c/g%3e%3c/g%3e%3cuse xlink:href='%23k' transform='matrix(1.38439 -.14324 .15642 1.26776 -45.032 -76.658)'/%3e%3cuse xlink:href='%23k' transform='matrix(1.37843 .19234 -.15163 1.26835 100.17 -120.86)'/%3e%3cuse xlink:href='%23k' transform='matrix(1.38439 .14324 .15642 -1.26776 54.434 659.458)'/%3e%3cuse xlink:href='%23k' transform='matrix(1.38439 .14324 .15642 -1.26776 96.412 670.42)'/%3e%3c/g%3e%3c/svg%3e\"},8247:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath d='M0 0h900v600H0z' fill='%23ce1126'/%3e%3cpath d='M0 200h900v400H0z' fill='%23fff'/%3e%3cpath d='M0 400h900v200H0z'/%3e%3cg transform='translate(-1.009 -.584) scale(2.18978)' fill='%23007a3d'%3e%3cpath d='M246.026 120.178c-.558-.295-1.186-.768-1.395-1.054-.314-.438-.132-.456 1.163-.104 2.318.629 3.814.383 5.298-.873l1.308-1.103 1.54.784c.848.428 1.748.725 2.008.656.667-.176 2.05-1.95 2.005-2.564-.054-.759.587-.568.896.264.615 1.631-.281 3.502-1.865 3.918-.773.201-1.488.127-2.659-.281-1.438-.502-1.684-.494-2.405.058-1.618 1.239-3.869 1.355-5.894.299zm5.734-5.242c-.563-.717-1.239-3.424-1.021-4.088.192-.576.391-.691.914-.527.918.287 1.13.92.993 3.064-.107 1.747-.366 2.206-.886 1.551zm-67.516-1.946c-.185 1.311 2.325 4.568 3.458 5.158-.77.345-1.728.188-2.434.576-3.948 3.948-18.367 18.006-21 21.366 7.799.154 16.448-.106 23.761-.44-.007-5.299 5.018-5.572 8.381-7.502 1.73 2.725 6.075 2.516 6.618 6.617 0 4.91.009 12.307.009 17.646h-66.625c-1.172 5.176-5.844 9.125-12.354 7.5 2.014-2.104 5.405-2.827 6.619-5.734 1.024-6.365-2.046-10.296-4.031-13.906 3.284-1.195 3.782-1.494 7.121-3.737-2.344 7.12 6.091 6.338 12.353 6.175.211-2.417.089-5.271-1.766-5.624 2.396-.87 2.794-1.168 6.619-4.412v9.593c14.886 0 30.942-.111 46.139-.111 0-3.002.795-7.824-1.581-7.824-2.269 0-.107 6.173-1.87 6.173h-35.63c0-1.328-.034-4.104-.034-6.104 1.51-1.51 1.331-1.379 11.648-11.697 1.028-1.031 8.266-7.568 14.599-13.713zm89.06-.254c2.487 1.339 4.457 3.191 7.502 3.972-.354 1.261-1.476 1.759-1.77 3.087v26.91c3.402.75 4.118-1.178 5.737-2.205.442 4.307 3.186 8.529 3.088 11.91h-14.559c.002-14.555.002-29.114.002-43.674zm-19.412 14.412s5.296-4.471 5.296-4.643v23.484l3.814-.006c0-8.947-.118-18.022-.118-26.338 1.548-1.549 4.58-3.791 5.338-5.358v42.06c-10.746 0-30.793.012-33.443.012-.493-8.729-.577-17.771 9.6-15.826v-3.563c-.311-.609-.868.147-.998-.645 1.615-1.617 2.163-2.029 6.538-5.852 0 4.612.08 15.5.08 15.5 1.07 0 3.153.004 3.857.004.001.002.036-18.227.036-18.829zm-12.553 18.603c.716 1.075 3.154 1.056 3.04-.755-.411-1.493-3.616-.924-3.04.755z'/%3e%3ccircle cx='144.527' cy='161.369' r='2.042'/%3e%3cpath d='M207.549 112.779c2.488 1.339 4.457 3.191 7.502 3.971-.353 1.26-1.476 1.76-1.768 3.087v26.911c3.401.749 4.117-1.18 5.736-2.206.441 4.308 3.185 8.528 3.088 11.91h-14.56c.002-14.556.002-29.114.002-43.673z'/%3e%3c/g%3e%3c/svg%3e\"},9339:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 630 360'%3e%3cpath fill='%23da0000' d='M0 0h630v360H0z'/%3e%3cpath fill='%23fff' d='M0 0h630v240H0z'/%3e%3cpath fill='%23239f40' d='M0 0h630v120H0z'/%3e%3cg transform='translate(8.4 100.4)'%3e%3cg id='e'%3e%3cg id='c' fill='none' stroke='%23fff' stroke-width='2'%3e%3cpath id='b' d='M0 1h26M1 10V5h8v4h8V5h-5M4 9h2m20 0h-5V5h8m0-5v9h8V0m-4 0v9' transform='scale(1.4)'/%3e%3cpath id='a' d='M0 7h9m1 0h9' transform='scale(2.8)'/%3e%3cuse xlink:href='%23a' y='120'/%3e%3cuse xlink:href='%23b' y='145.2'/%3e%3c/g%3e%3cg id='d'%3e%3cuse xlink:href='%23c' x='56'/%3e%3cuse xlink:href='%23c' x='112'/%3e%3cuse xlink:href='%23c' x='168'/%3e%3c/g%3e%3c/g%3e%3cuse xlink:href='%23d' x='168'/%3e%3cuse xlink:href='%23e' x='392'/%3e%3c/g%3e%3cg fill='%23da0000' transform='matrix(45 0 0 45 315 180)'%3e%3cg id='f'%3e%3cpath d='M-.548.836A.912.912 0 0 0 .329-.722 1 1 0 0 1-.548.836'/%3e%3cpath d='M.618.661A.764.764 0 0 0 .422-.74 1 1 0 0 1 .618.661M0 1l-.05-1L0-.787a.31.31 0 0 0 .118.099V-.1l-.04.993zM-.02-.85 0-.831a.144.144 0 0 0 .252-.137A.136.136 0 0 1 0-.925'/%3e%3c/g%3e%3cuse xlink:href='%23f' transform='scale(-1 1)'/%3e%3c/g%3e%3c/svg%3e\"},74:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2500 1800'%3e%3cpath d='M0 0h2500v1800H0' fill='%23003897'/%3e%3cpath d='M700 0h400v1800H700M0 700h2500v400H0' fill='%23fff'/%3e%3cpath d='M800 0h200v1800H800M0 800h2500v200H0' fill='%23d72828'/%3e%3c/svg%3e\"},8451:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3e%3cpath fill='%23009246' d='M0 0h1v2H0z'/%3e%3cpath fill='%23fff' d='M1 0h1v2H1z'/%3e%3cpath fill='%23ce2b37' d='M2 0h1v2H2z'/%3e%3c/svg%3e\"},2306:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 30 18'%3e%3cpath fill='%23fff' d='M0 0h30v18H0z'/%3e%3cpath d='m0 0 30 18M0 18 30 0' stroke='%23df112d' stroke-width='2'/%3e%3cg stroke='%23000' stroke-width='.015'%3e%3cpath fill='%23e8112d' d='M16.57 2.693c.385 1.561.174 3.489-1.567 4.559-1.742-1.07-1.953-2.998-1.568-4.559.41-.373 2.276-.603 3.135 0z'/%3e%3cpath fill='%23f9dd16' d='M15 2.38c.638 0 1.233.169 1.584.388.068-.539.312-1.077.6-1.484-.3-.006-.435.154-.438.32-.075-.213-.37-.2-.46-.085.329.222.075.616-.222.535-.14-.038-.213-.135-.24-.277a.162.162 0 1 0-.068-.01.35.35 0 0 1-.384.165c-.156-.044-.222-.185-.222-.31 0-.325.313-.375.407-.319-.006-.219-.35-.394-.457-.213a.585.585 0 0 0-.1-.713c-.213.2-.219.5-.1.713-.106-.181-.45-.006-.457.213.094-.056.407-.006.407.32a.312.312 0 0 1-.222.31.35.35 0 0 1-.383-.167.162.162 0 1 0-.07.011c-.026.142-.1.239-.239.277-.297.081-.55-.313-.222-.535-.09-.116-.385-.128-.46.084-.003-.165-.138-.325-.438-.319.288.407.532.945.6 1.484.351-.22.946-.388 1.584-.388z'/%3e%3cg id='a'%3e%3cg fill='%23f9dd16'%3e%3cpath d='M16.324 3.91c-.038.01-.038.06-.058.06.1-.003.148-.031.179-.081-.022.02-.003.058-.01.067.073-.025.108-.088.082-.13.017.024.064.037.08.039-.052-.04-.016-.133-.098-.18.027-.002.08.03.095.066-.013-.083-.025-.136-.093-.182.007.008.046.016.062 0a.11.11 0 0 1-.053-.103c.005-.04-.022-.05-.074-.036a1.2 1.2 0 0 1-.214.018c-.129 0-.241 0-.348-.074.16.067.364-.073.364-.189 0-.128-.158-.233-.477-.163-.32.07-.709.04-.709-.066 0-.107.279-.121.422-.1.143.023.246.037.514-.058-.066.026-.279.033-.448-.015-.169-.048-.584-.048-.587.176-.004.224.442.204.826.147.224-.033.342-.01.342.063 0 .07-.206.099-.364.08a1.226 1.226 0 0 0-.507.041c-.156.046-.264 0-.437.03-.083.014-.286 0-.386-.166-.062.044-.247.136-.278.226-.045.083-.015.165.044.246.074.102-.037.086-.116.09-.108.005-.253-.012-.329-.097-.067-.076-.156-.137-.227-.081-.037.029-.002.067.027.057.029-.011.063.01.094.024a.127.127 0 0 0-.124.014c-.03.026.006.075.041.058.028-.014.084-.023.12.01-.039-.007-.08-.006-.1.016-.02.021-.005.052.038.05.069-.003.086.045.155.035a.107.107 0 0 0-.077.044c.064-.03.135.05.218.032-.032.013-.084.045-.084.07.05-.058.382.043.39-.081a.105.105 0 0 1-.019.097c.042-.026.18-.035.222-.134.004.03-.002.068-.027.077.044.014.102-.019.161-.107.024-.035.03-.058.025-.084a.197.197 0 0 0 .148-.051c.047-.04.099.033.18-.019.08-.051.15-.007.194-.033.044-.026.105.01.153-.02.047-.03.122.014.2-.048.125.045.27.13.626.064.204-.037.268.032.268.125 0 .065-.038.07-.066.072-.113.007-.162-.043-.207-.027-.03.011-.048.06-.005.077-.036.018-.031.052-.013.065.018.013.066.001.098-.014-.041.019-.084.052-.06.088.015.02.052.039.087-.006.035-.046.1-.084.14-.078zm-2.261-.969c-.103-.042-.137-.043-.114.04.01.036.035.087.06.11 0-.035.014-.132.054-.15z'/%3e%3cpath d='M14.384 2.941c.103-.042.138-.043.114.04a.275.275 0 0 1-.06.11c0-.035-.013-.132-.054-.15z'/%3e%3cpath d='M14.224 2.885c.195 0 .22.091.218.205 0 .123-.067.08-.104.239-.015.061-.064.065-.114.065s-.098-.004-.113-.065c-.038-.158-.104-.116-.105-.24 0-.113.024-.204.218-.204z'/%3e%3cpath d='M13.723 3.336c-.05-.03-.082-.01-.102-.004.064.017.067.1.214.138-.033-.01-.052.01-.083-.007.06.047.128.103.272.104.08.001.024.042-.028.019.054.056.162.01.23.112.013-.08-.127-.204-.063-.294-.198-.009-.214-.118-.328-.206-.093-.07-.102-.143-.143-.278-.018-.062-.09-.1-.13-.085-.035.012-.047.043-.017.065.03.023.068.026.076.083-.039-.047-.097-.064-.125-.034-.017.017-.01.058.026.062.06.006.017.064.085.121-.06-.067-.112-.074-.144-.037-.02.022 0 .061.041.057.06-.006.13.145.219.184zm1.597.567c-.031.006-.022.057-.064.06.1 0 .152-.023.2-.062-.022.013-.031.046-.033.065.053-.046.18-.05.246-.037.066.013.077-.018.1-.06.025-.043-.008-.067-.041-.1s-.04-.079-.033-.156c-.177-.235-.493-.121-.496-.018.114.132.128.117.224.136.095.018.154.018.09.071-.022.019-.114.01-.186.013-.16.007-.233-.11-.28-.05-.04.05 0 .073.08.07-.055 0-.128-.002-.115.049.02.086.103-.016.135.02-.027-.007-.07.01-.071.036-.002.026.06.06.13.005a.2.2 0 0 1 .114-.042z'/%3e%3cpath d='M15.457 3.545a.303.303 0 0 0-.177-.02m-.687-.007c-.047.101-.019.151-.012.198m-.491-.679c.033.017.051-.03.099.02-.013-.015-.03.037-.066.003m.232-.023c-.032.017-.05-.03-.098.02.013-.015.03.037.066.003'/%3e%3cpath d='M14.257 3.056c-.011.01-.012-.007-.004.036.016.08.034.117-.03.117-.066 0-.046-.037-.03-.117.008-.043.007-.026-.004-.036'/%3e%3c/g%3e%3cpath d='M14.224 3.362c.052 0 .082-.001.074-.075-.003-.03.036-.041.022-.089.015.059-.096.053-.096.027 0 .026-.111.032-.097-.027-.013.048.026.06.022.09-.008.073.023.074.075.074zm-.047-.149-.126-.035m.126.042-.14-.002m.141.009-.12.032m.212-.046.126-.035m-.126.042.141-.002m-.141.009.12.032' fill='%23ff0016' stroke-width='.008'/%3e%3cpath d='M13.573 2.837c-.036-.045-.128-.007-.13.05.031-.037.082.016.11.005.018-.008.035-.036.02-.055zm-.047.108c-.037-.046-.128-.007-.13.05.03-.037.081.015.109.004.02-.007.036-.036.02-.054zm-.024.145c-.041-.042-.128.007-.123.063.026-.04.082.007.108-.007.019-.01.032-.04.015-.056zm.044.448c-.046-.036-.126.022-.116.077.022-.042.083-.002.108-.02.016-.011.026-.043.008-.057zm-.003.098c-.054-.02-.113.06-.085.109.007-.047.077-.028.095-.052.013-.016.013-.049-.01-.057zm.071.074c-.055-.021-.114.059-.086.108.007-.047.078-.028.096-.051.012-.017.012-.05-.01-.058zm1.434.141c-.055-.02-.114.06-.086.11.007-.048.078-.029.096-.052.012-.017.012-.05-.01-.058zm.073.067c-.056-.014-.105.072-.072.118.002-.048.074-.037.089-.062.01-.018.007-.05-.016-.056zm-.051-.161c-.051-.03-.122.04-.104.093.016-.045.082-.014.104-.035.015-.014.02-.046 0-.058zm1.02.115c-.057-.014-.106.072-.073.118.002-.048.074-.037.09-.062.01-.018.006-.05-.017-.056zm.001-.09c-.051-.028-.12.044-.1.096.015-.045.082-.017.103-.038.014-.014.018-.047-.003-.058zm.04.17c-.057-.01-.102.077-.067.122 0-.048.072-.04.086-.066.01-.019.005-.051-.019-.056zm-1.903-.634c.036 0 .05.01.05.075 0 .137-.001.196-.045.196-.045 0-.042-.056-.042-.157 0-.052 0-.079-.01-.074 0-.035.015-.04.047-.04z' fill='%230051ba' stroke-width='.002'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(.9 0 0 .9 1.453 1.671)'/%3e%3cuse xlink:href='%23a' transform='matrix(.67 0 0 .75 4.909 3.354)'/%3e%3c/g%3e%3c/svg%3e\"},6413:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 6'%3e%3cpath fill='%23009B3A' d='M0 0h12v6H0'/%3e%3cpath stroke='%23FED100' d='M-6 9 18-3V9L-6-3'/%3e%3c/svg%3e\"},9191:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 840 420'%3e%3cpath fill='%23007a3d' d='M0 0h840v420H0z'/%3e%3cpath fill='%23fff' d='M0 0h840v280H0z'/%3e%3cpath d='M0 0h840v140H0z'/%3e%3cpath d='M0 0v420l420-210z' fill='%23ce1126'/%3e%3cpath d='m129.787 180 6.508 16.485 16.947-5.19-8.83 15.367 14.623 10.014-17.52 2.676 1.289 17.677L129.787 225l-13.016 12.03 1.289-17.678-17.52-2.676 14.623-10.014-8.83-15.367 16.946 5.19L129.787 180z' fill='%23fff'/%3e%3c/svg%3e\"},3923:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23fff' d='M0 0h900v600H0z'/%3e%3ccircle fill='%23bc002d' cx='450' cy='300' r='180'/%3e%3c/svg%3e\"},6755:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-120 -80 240 160'%3e%3cdefs%3e%3cpath id='a' d='M-1 55.426h2V-38c2-2 2-5 2-8 0-2 0-10-3-18.663C-3-56-3-48-3-46c0 3 0 6 2 8z' stroke-miterlimit='10' transform='rotate(30)'/%3e%3c/defs%3e%3cpath fill='%23fff' d='M-120-80h240V80h-240z'/%3e%3cpath d='M-120-80h240v48h-240z'/%3e%3cpath fill='%23060' d='M-120 32h240v48h-240z'/%3e%3cg id='b'%3e%3cuse xlink:href='%23a' stroke='%23000'/%3e%3cuse xlink:href='%23a' fill='%23fff'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='scale(-1 1)'/%3e%3cpath fill='%23b00' d='M-120-24v48h101c3 8 13 24 19 24s16-16 19-24h101v-48H19C16-32 6-48 0-48s-16 16-19 24z'/%3e%3cpath id='c' d='M19 24c3-8 5-16 5-24s-2-16-5-24c-3 8-5 16-5 24s2 16 5 24'/%3e%3cuse xlink:href='%23c' transform='scale(-1 1)'/%3e%3cg fill='%23fff'%3e%3cellipse rx='4' ry='6'/%3e%3cpath id='d' d='M1 5.85s4 8 4 21-4 21-4 21z'/%3e%3cuse xlink:href='%23d' transform='scale(-1)'/%3e%3cuse xlink:href='%23d' transform='scale(-1 1)'/%3e%3cuse xlink:href='%23d' transform='scale(1 -1)'/%3e%3c/g%3e%3c/svg%3e\"},3867:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 600'%3e%3cpath d='M0 0h1000v600H0z' fill='red'/%3e%3cpath d='M454.869 259.272c-11.177-6.943-23.032-12.701-35.225-17.443-10.5 15.58-16.596 34.208-16.596 54.36 0 9.992 1.524 19.645 4.403 28.79 5.08-11.685 11.516-23.031 19.306-33.87a188.215 188.215 0 0 1 28.112-31.837zm-29.806-24.556c13.21 4.573 25.91 10.5 38.104 17.443 2.71-2.37 5.588-4.403 8.298-6.435-12.87-7.113-26.588-12.87-40.644-17.274-2.032 2.033-4.064 4.065-5.758 6.266zm11.855-12.023c15.241 4.064 29.805 9.652 43.522 16.934 3.218-2.032 6.436-3.895 9.484-5.757-14.564-7.452-29.975-12.87-45.894-16.766a57.437 57.437 0 0 0-7.112 5.589zm14.394-10.161c16.766 3.387 33.023 8.806 48.265 16.257 15.41-7.451 31.668-12.87 48.264-16.257-14.056-8.298-30.652-13.04-48.264-13.04s-34.04 4.742-48.265 13.04zm103.81 4.742a209.349 209.349 0 0 0-45.893 16.596 283.47 283.47 0 0 1 9.484 5.757c13.886-7.282 28.45-12.87 43.522-16.934-2.201-2.033-4.572-3.895-7.112-5.42zm13.21 11.346c-14.056 4.234-27.604 9.991-40.644 17.104a158.93 158.93 0 0 1 8.468 6.435c12.023-6.943 24.725-12.87 37.934-17.443-1.694-2.201-3.557-4.233-5.758-6.096zm11.177 13.378a198.118 198.118 0 0 0-35.055 17.274c10.33 9.314 19.644 19.983 28.112 31.837a204.81 204.81 0 0 1 19.305 33.87c2.71-9.314 4.234-18.798 4.234-28.79 0-20.152-6.097-38.78-16.596-54.19zm-8.298 66.385c-10.161-16.427-22.354-30.991-35.902-43.353-3.048 2.201-6.266 4.403-9.145 6.604 22.862 21.338 41.321 48.095 53.006 79.255 2.71-4.064 5.25-8.298 7.282-12.532-4.234-10.16-9.314-20.152-15.241-29.974zm-53.684-44.03c3.049-2.202 6.097-4.404 9.315-6.436-2.71-2.37-5.589-4.572-8.468-6.774-3.217 2.032-6.435 4.064-9.653 6.266h.17c2.879 2.202 5.758 4.572 8.636 6.943zm-17.95-13.549c3.217-2.032 6.604-4.064 9.652-5.927-3.217-2.032-6.435-4.064-9.652-5.927-3.218 1.863-6.266 3.895-9.484 5.927 3.218 1.863 6.266 3.895 9.484 5.927zm-9.145 6.605c-3.218-2.202-6.266-4.234-9.484-6.266l-8.636 6.605c3.217 2.201 6.265 4.233 9.314 6.435a173.309 173.309 0 0 1 8.806-6.774zm9.145 6.774c-2.88 2.201-5.758 4.572-8.806 7.113 3.048 2.37 5.927 4.91 8.806 7.45 2.879-2.54 5.757-5.08 8.806-7.45-2.88-2.371-5.758-4.912-8.806-7.113zm0 31.668a213.913 213.913 0 0 0-33.362 47.587c-6.266 11.854-11.177 24.217-14.903 36.579 14.226 7.96 30.652 12.701 48.265 12.701s34.039-4.742 48.264-12.701c-3.726-12.362-8.637-24.725-14.903-36.58-9.145-17.78-20.322-33.7-33.361-47.586zm-55.885 64.183c11.007-28.112 27.265-52.667 47.248-72.99-2.88-2.709-5.758-5.249-8.806-7.958-23.2 22.523-41.83 50.465-53.176 82.81a94.433 94.433 0 0 0 10.33 9.823c1.356-3.895 2.88-7.79 4.404-11.685zm64.521-72.99c19.983 20.323 36.24 44.878 47.418 72.99 1.524 3.895 2.879 7.79 4.233 11.685 3.726-3.048 7.282-6.266 10.5-9.822-11.516-32.346-30.144-60.288-53.345-82.811-3.048 2.71-5.927 5.25-8.806 7.959zm-88.23 63.845c11.685-31.16 30.144-57.748 53.175-79.085a186.939 186.939 0 0 0-9.314-6.774c-13.548 12.531-25.74 27.095-35.902 43.522a215.114 215.114 0 0 0-15.24 29.805c2.031 4.403 4.571 8.468 7.281 12.532zm80.102-159.187c59.61 0 108.213 48.603 108.213 108.213 0 59.61-48.603 108.214-108.213 108.214-59.61 0-108.214-48.603-108.214-108.214 0-59.61 48.603-108.213 108.214-108.213zm47.756-23.709c-3.048 3.557-6.435 8.129-9.822 15.41-.847-1.862-.847-4.063-.34-6.434.848-7.79 3.05-12.532 7.114-19.137 1.354-2.37 2.71-4.403 3.386-6.943 2.54-7.62 2.033-17.781-3.556-25.74.847 8.975-1.863 16.426-4.91 20.998-.509.847-1.017 1.355-1.694 2.033-3.218 3.217-6.774 6.435-11.347 13.886-2.54 4.064-5.08 8.975-7.451 16.765-1.016-1.693-1.355-3.725-1.185-6.096-.34-7.96 1.016-12.87 3.895-20.152 1.016-2.54 2.032-4.742 2.37-7.452 1.186-7.79-.846-17.781-7.62-24.725 2.201 8.637.846 16.427-1.524 21.508-.508.846-.847 1.524-1.355 2.201-2.71 3.726-5.589 7.451-9.145 15.41-1.693 4.573-3.556 9.823-4.572 17.782-1.355-1.524-2.033-3.556-2.202-5.927-1.524-7.79-1.016-12.87.678-20.49.677-2.541 1.354-4.912 1.185-7.622 0-7.959-3.556-17.442-11.346-23.37 3.556 8.298 3.387 16.258 1.862 21.677-.338.677-.677 1.524-1.016 2.201-2.032 4.234-4.403 8.299-6.604 16.766-1.016 4.742-2.032 10.33-1.863 18.29-1.355-1.355-2.37-3.218-3.048-5.42-2.71-7.62-3.049-12.531-2.371-20.49.17-2.71.339-5.081 0-7.621-1.355-7.96-6.435-16.766-14.903-21.338 4.742 7.62 5.758 15.58 5.08 20.999l-.507 2.54c-1.355 4.403-3.049 8.806-3.895 17.612-.34 4.742-.508 10.33 1.016 18.29-1.694-1.186-2.88-2.879-3.895-4.911-3.895-7.113-4.911-12.024-5.589-19.814-.17-2.71-.339-5.08-1.355-7.62-2.37-7.621-8.806-15.58-17.95-18.629 5.927 6.605 8.298 14.225 8.298 19.814 0 .847 0 1.693-.17 2.54-.677 4.572-1.524 9.314-1.016 17.951.508 4.742 1.186 10.33 3.895 17.95-1.863-.846-3.387-2.37-4.742-4.233-4.91-6.266-6.604-11.007-8.467-18.628-.677-2.71-1.185-4.911-2.54-7.451-3.557-6.944-11.177-13.887-20.66-15.58 6.773 5.757 10.33 13.04 11.346 18.458.169.847.169 1.694.169 2.54.17 4.573 0 9.315 1.863 17.952 1.185 4.572 2.71 9.991 6.604 16.934-1.862-.508-3.556-1.693-5.25-3.387-5.927-5.419-8.467-9.822-11.346-17.104-1.016-2.54-2.032-4.741-3.556-6.943-4.742-6.266-13.21-11.854-23.031-12.024 7.79 4.573 12.362 11.008 14.225 16.258l.508 2.54c.847 4.572 1.355 9.314 4.572 17.443 1.863 4.403 4.403 9.483 9.314 15.75-2.032-.17-3.895-1.186-5.757-2.541-6.605-4.403-9.823-8.467-14.056-15.072-1.355-2.37-2.54-4.403-4.573-6.266-5.588-5.588-14.902-9.822-24.555-8.467 8.298 3.387 13.886 9.144 16.596 14.056.339.677.677 1.524 1.016 2.37 1.524 4.234 2.71 8.807 7.113 16.427 2.54 4.065 5.758 8.637 11.685 14.225-2.032 0-4.065-.677-6.097-1.693-7.282-3.387-11.007-6.774-16.088-12.701-1.863-2.032-3.387-3.895-5.588-5.589-6.436-4.572-16.258-7.282-25.572-4.403 8.806 2.032 15.241 6.774 18.459 11.177.677.678 1.016 1.355 1.355 2.202 2.201 4.064 4.234 8.467 9.822 15.072 3.048 3.725 6.943 7.79 13.548 12.362-1.863.339-3.895 0-6.266-.847-7.62-2.032-11.854-4.91-17.782-9.991-2.032-1.694-3.895-3.218-6.265-4.572-7.113-3.557-17.274-4.573-26.08-.34 8.975.509 16.088 4.404 20.152 8.13.508.677 1.016 1.185 1.524 2.032 2.88 3.556 5.42 7.62 12.024 13.378 3.557 3.048 8.129 6.435 15.41 9.992-1.862.677-4.063.677-6.265.17-7.96-.848-12.532-3.05-19.306-7.114-2.37-1.354-4.403-2.71-6.943-3.387-7.62-2.54-17.612-2.032-25.572 3.557 8.807-.847 16.427 1.863 21 4.91.677.509 1.354 1.017 1.862 1.694 3.387 3.218 6.605 6.774 13.887 11.347 4.064 2.54 9.145 5.25 16.765 7.451-1.693 1.016-3.725 1.355-6.096 1.355-7.96.17-12.87-1.186-20.152-4.065-2.54-1.016-4.742-2.032-7.452-2.37-7.79-1.186-17.781.846-24.725 7.62 8.637-2.201 16.597-.847 21.508 1.524.846.508 1.524.847 2.201 1.355 3.726 2.71 7.451 5.589 15.58 9.145 4.403 1.693 9.653 3.556 17.612 4.572-1.524 1.355-3.556 2.032-5.757 2.202-7.96 1.693-12.87 1.016-20.66-.678-2.541-.677-4.912-1.185-7.622-1.185-7.959 0-17.442 3.556-23.2 11.346 8.128-3.556 16.088-3.387 21.507-1.862.847.338 1.524.677 2.37 1.016 4.065 2.032 8.299 4.403 16.766 6.604 4.573 1.016 10.161 2.032 18.12 1.863-1.354 1.355-3.217 2.37-5.419 3.048-7.451 2.71-12.531 3.049-20.321 2.371-2.71-.17-5.08-.339-7.79 0-7.79 1.355-16.597 6.435-21.169 15.072 7.451-4.911 15.41-5.927 21-5.25.846.17 1.523.339 2.37.508 4.403 1.525 8.806 3.049 17.612 3.895 4.742.34 10.33.508 18.29-1.016-1.186 1.694-2.879 2.88-4.911 3.895-6.943 3.895-12.024 4.911-19.814 5.589-2.71.338-5.08.508-7.62 1.355-7.621 2.37-15.411 8.806-18.629 17.95 6.774-5.927 14.395-8.128 19.983-8.298.847 0 1.694 0 2.54.17 4.403.677 9.145 1.524 17.951 1.016 4.742-.339 10.33-1.186 17.782-3.895-.678 1.863-2.202 3.387-4.234 4.742-6.266 4.91-11.007 6.604-18.628 8.467-2.54.677-4.911 1.185-7.282 2.54-7.113 3.557-13.887 11.177-15.58 20.66 5.588-6.773 12.87-10.33 18.29-11.346.846-.169 1.693-.169 2.54-.169 4.572-.17 9.483 0 17.95-1.863 4.573-1.185 9.992-2.71 17.105-6.604-.508 1.862-1.863 3.725-3.557 5.25-5.419 5.927-9.822 8.467-17.104 11.346-2.37 1.185-4.572 2.032-6.774 3.556-6.435 4.742-12.023 13.21-12.193 23.031 4.573-7.79 11.177-12.362 16.427-14.225.847-.17 1.524-.339 2.37-.508 4.573-.847 9.315-1.355 17.444-4.572 4.403-1.863 9.483-4.403 15.918-9.145-.338 1.863-1.185 3.726-2.71 5.588-4.402 6.605-8.297 9.823-15.071 14.056-2.202 1.355-4.234 2.54-6.266 4.573-5.588 5.588-9.653 14.902-8.298 24.555 3.218-8.298 8.975-13.886 13.887-16.596.846-.339 1.524-.677 2.37-1.016 4.403-1.355 8.976-2.71 16.427-7.113 4.065-2.54 8.637-5.758 14.225-11.685.17 2.032-.508 4.065-1.693 6.097-3.387 7.282-6.774 11.007-12.701 16.088-2.032 1.863-3.895 3.387-5.42 5.588-4.572 6.436-7.281 16.258-4.402 25.572 1.862-8.806 6.604-15.241 11.177-18.459.677-.508 1.354-1.016 2.032-1.355 4.064-2.201 8.467-4.234 15.241-9.822 3.556-3.048 7.62-6.943 12.193-13.548.339 1.863 0 4.064-.677 6.266-2.202 7.62-4.911 11.854-10.161 17.782-1.694 2.032-3.218 3.895-4.403 6.435-3.556 7.112-4.742 17.104-.508 25.91.677-8.975 4.403-16.088 8.298-19.983.508-.677 1.185-1.185 1.863-1.694 3.725-2.878 7.62-5.419 13.378-12.023 3.048-3.557 6.435-8.129 9.992-15.41.677 1.862.677 4.063.338 6.265-1.016 7.96-3.048 12.532-7.112 19.306-1.524 2.37-2.71 4.403-3.557 6.943-2.37 7.62-1.862 17.781 3.726 25.74-.847-8.975 1.694-16.595 4.911-21.168.508-.677 1.016-1.354 1.524-1.862 3.218-3.387 6.774-6.605 11.516-13.887 2.37-4.064 5.08-9.145 7.282-16.765 1.016 1.693 1.355 3.725 1.355 6.096.338 7.96-1.016 12.87-4.065 20.152-1.016 2.54-1.862 4.742-2.37 7.452-1.186 7.79.846 17.781 7.62 24.725-2.201-8.637-.847-16.597 1.694-21.508.338-.846.677-1.524 1.185-2.201 2.71-3.726 5.758-7.451 9.145-15.58 1.863-4.403 3.726-9.653 4.742-17.612 1.185 1.524 1.862 3.556 2.201 5.757 1.524 7.96 1.016 12.87-.847 20.66-.677 2.541-1.185 4.912-1.185 7.622 0 7.959 3.726 17.442 11.516 23.2-3.557-8.128-3.557-16.088-1.863-21.507.17-.847.508-1.524.847-2.37 2.032-4.065 4.403-8.299 6.604-16.766 1.016-4.573 2.032-10.161 1.863-18.12 1.524 1.354 2.37 3.217 3.048 5.419 2.88 7.451 3.049 12.531 2.54 20.49-.338 2.541-.508 4.912 0 7.621 1.186 7.96 6.266 16.766 14.903 21.338-4.742-7.62-5.927-15.58-5.08-20.999 0-.847.169-1.693.508-2.54 1.354-4.403 3.048-8.806 3.895-17.612.169-4.742.338-10.33-1.016-18.29 1.524 1.186 2.879 2.879 3.895 4.911 3.895 6.943 4.91 12.024 5.588 19.814.17 2.71.339 5.08 1.186 7.62 2.54 7.621 8.806 15.411 18.12 18.629-5.927-6.774-8.298-14.395-8.468-19.983 0-.847 0-1.694.17-2.54.677-4.403 1.693-9.145 1.016-17.951-.339-4.742-1.186-10.33-3.726-17.782 1.694.847 3.218 2.202 4.573 4.234 4.91 6.266 6.773 11.007 8.636 18.628.508 2.54 1.186 4.911 2.371 7.282 3.726 7.113 11.177 13.887 20.83 15.58-6.943-5.588-10.5-12.87-11.516-18.29-.169-.846-.169-1.693-.169-2.54 0-4.572.17-9.314-1.694-17.95-1.185-4.573-2.878-9.992-6.773-17.105 2.032.508 3.725 1.863 5.25 3.557 5.927 5.419 8.467 9.822 11.515 17.104 1.016 2.37 1.863 4.572 3.556 6.774 4.742 6.435 13.21 12.023 22.862 12.193-7.62-4.573-12.193-11.177-14.056-16.427-.338-.847-.508-1.524-.677-2.37-.677-4.573-1.355-9.315-4.572-17.444-1.863-4.403-4.234-9.483-9.145-15.75 2.032.17 3.895 1.017 5.758 2.541 6.604 4.403 9.822 8.298 13.886 15.072 1.355 2.202 2.71 4.403 4.573 6.266 5.588 5.588 14.902 9.653 24.555 8.298-8.298-3.218-13.886-8.975-16.427-13.887-.508-.846-.846-1.524-1.016-2.37-1.524-4.403-2.879-8.976-7.282-16.427-2.54-4.065-5.758-8.637-11.515-14.225 1.862 0 3.895.508 6.096 1.693 7.113 3.387 11.008 6.774 16.088 12.701 1.694 2.032 3.218 3.895 5.42 5.42 6.435 4.741 16.257 7.281 25.57 4.572-8.636-2.032-15.071-6.774-18.458-11.347-.508-.677-1.016-1.354-1.355-2.032-2.201-4.064-4.064-8.467-9.653-15.241-3.217-3.556-7.112-7.62-13.717-12.193 2.032-.339 4.064 0 6.266.677 7.62 2.202 11.854 5.08 17.95 10.161 2.033 1.694 3.896 3.218 6.267 4.403 7.112 3.556 17.104 4.742 25.91.508-8.975-.677-15.919-4.403-19.983-8.298-.677-.508-1.185-1.185-1.694-1.863-2.71-3.725-5.419-7.62-11.854-13.378-3.726-3.048-8.298-6.435-15.41-9.992 1.862-.677 3.894-.677 6.265-.338 7.79 1.016 12.532 3.048 19.137 7.282 2.37 1.354 4.403 2.54 6.943 3.387 7.62 2.37 17.781 1.862 25.74-3.726-8.975.847-16.426-1.694-20.998-4.911l-2.033-1.524c-3.217-3.218-6.435-6.774-13.886-11.516-4.064-2.37-8.976-5.08-16.766-7.282 1.694-1.016 3.895-1.355 6.097-1.355 8.129-.338 13.04 1.016 20.152 4.065 2.54 1.016 4.742 1.862 7.452 2.37 7.79 1.186 17.781-.846 24.725-7.62-8.637 2.201-16.427.847-21.508-1.694-.677-.338-1.524-.677-2.201-1.185-3.726-2.71-7.451-5.589-15.41-9.145-4.404-1.693-9.823-3.556-17.782-4.742 1.524-1.185 3.556-1.862 5.927-2.201 7.79-1.524 12.87-1.016 20.49.847 2.541.677 4.912 1.185 7.622 1.185 7.959 0 17.442-3.726 23.37-11.346-8.298 3.387-16.258 3.387-21.508 1.693-.846-.17-1.693-.508-2.37-.847-4.234-2.032-8.299-4.403-16.766-6.604-4.742-1.016-10.16-2.032-18.29-1.863 1.355-1.524 3.218-2.37 5.42-3.048 7.62-2.88 12.7-3.049 20.49-2.54 2.71.338 5.081.508 7.79 0 7.79-1.186 16.597-6.266 21.17-14.903-7.621 4.742-15.411 5.927-21 5.25-.847-.17-1.693-.339-2.54-.678-4.403-1.354-8.806-3.048-17.443-3.895-4.742-.17-10.5-.338-18.29 1.186 1.017-1.694 2.71-3.049 4.912-4.065 6.943-3.895 11.854-4.91 19.644-5.588 2.71-.17 5.08-.339 7.62-1.186 7.621-2.54 15.58-8.806 18.629-18.12-6.605 5.927-14.225 8.298-19.814 8.468-.847 0-1.693 0-2.54-.17-4.573-.677-9.314-1.693-17.951-1.016-4.742.339-10.33 1.186-17.95 3.895.846-1.863 2.37-3.387 4.233-4.742 6.266-4.91 11.007-6.773 18.628-8.636 2.71-.508 4.911-1.186 7.451-2.371 6.944-3.726 13.887-11.177 15.58-20.83-5.757 6.943-12.87 10.5-18.459 11.516-.846.169-1.693.169-2.54.169-4.572 0-9.314-.17-17.781 1.694-4.742 1.185-10.161 2.878-17.104 6.773.508-2.032 1.693-3.725 3.387-5.25 5.419-5.927 9.822-8.467 17.104-11.515 2.54-1.016 4.741-1.863 6.943-3.556 6.266-4.742 11.854-13.21 12.024-22.862-4.573 7.62-11.008 12.193-16.258 14.056-.846.338-1.693.508-2.54.677-4.572.847-9.314 1.355-17.443 4.572-4.234 1.863-9.314 4.234-15.75 9.145.17-1.863 1.186-3.895 2.541-5.758 4.403-6.604 8.467-9.822 15.072-13.886 2.37-1.355 4.403-2.71 6.266-4.573 5.588-5.588 9.822-14.902 8.467-24.555-3.387 8.298-9.144 13.886-14.056 16.596-.677.339-1.524.677-2.201.847-4.403 1.524-8.976 2.879-16.596 7.282-4.065 2.54-8.637 5.758-14.225 11.515 0-1.862.677-3.895 1.693-5.927 3.387-7.282 6.774-11.007 12.701-16.257 2.032-1.694 3.895-3.218 5.589-5.42 4.572-6.435 7.282-16.257 4.403-25.57-2.033 8.636-6.774 15.071-11.177 18.458-.678.508-1.355 1.016-2.202 1.355-4.064 2.201-8.467 4.064-15.072 9.653-3.725 3.217-7.79 7.112-12.193 13.717-.508-1.863-.17-4.064.678-6.266 2.201-7.62 4.91-11.854 9.991-17.95 1.694-2.033 3.387-3.727 4.572-6.267 3.557-7.112 4.573-17.104.34-25.91-.509 8.975-4.235 15.919-8.13 19.983-.677.677-1.185 1.185-1.862 1.694-3.726 2.71-7.79 5.419-13.548 12.023z' fill='%23ff0'/%3e%3c/svg%3e\"},3108:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 625 400'%3e%3cpath fill='%23032ea1' d='M0 0h625v400H0z'/%3e%3cpath fill='%23e00025' d='M0 100h625v200H0z'/%3e%3cg fill='%23fff' stroke='%23000' stroke-width='.96' transform='translate(117.143 -434.934)'%3e%3cg stroke-linejoin='bevel'%3e%3cpath d='M139.02 623.46h113.8v43.788h-113.8z'/%3e%3cpath d='M246.95 647.64h3.586v16.495h-3.586zm-107.93-8.15h113.8v5.09h-113.8zm0-6.9h113.8v4.489h-113.8z'/%3e%3cpath stroke-width='.945' d='M139.02 625.7h113.8v4.354h-113.8z'/%3e%3cpath d='M168.98 647.64h3.586v16.495h-3.586zm48.99 0h3.586v16.495h-3.586zm-78.05 0h3.586v16.495h-3.586zm7.03 0h3.586v16.495h-3.586zm7.5 0h3.586v16.495h-3.586zm7.5 0h3.586v16.495h-3.586zm62.82 0h3.586v16.495h-3.586zm7.5 0h3.586v16.495h-3.586zm7.5 0h3.586v16.495h-3.586z'/%3e%3cpath stroke-linejoin='miter' d='M94.509 669.55c1.76-.897 3.768-2.984 4.425-5.319h193.07c.657 2.335 2.665 4.422 4.425 5.319z'/%3e%3c/g%3e%3cpath d='M193 556.8s-.144-4.112 2.25-4.157c2.396.044 2.251 4.157 2.251 4.157zm-12.49 54.54v-5.536c-.079-2.768-2.76-2.968-2.838-4.986 0 0-.346-3.027.452-4.408 1.084 4.047 3.056 3.304 3.056 1.64 0-1.453-1.117-2.804-3.408-6.33-.732-1.128-.28-4.66.747-5.923.398 3.07.853 4.54 2.171 4.54.805 0 1.462-.524 1.462-2.062 0-1.957-1.325-2.945-1.977-4.725-.76-2.078-.236-4.196 1.026-5.38.541 3.03.38 4.237 1.726 4.237 2.713-.858 0-4.786-.58-5.777-.666-1.155.897-3.46.897-3.46.863 2.69 1.14 2.91 2.07 2.66 1.174-.315 1.023-2.056-.41-3.463-.904-.889-.808-2.212.163-3.274.975 1.905 2.223 1.79 2.343.658l-.784-4.393h17.255l-.857 4.249c-.245 1.216 1.396 1.48 2.416-.514.972 1.062 1.067 2.385.163 3.274-1.432 1.407-1.584 3.148-.41 3.463.93.25 1.208.03 2.07-2.66 0 0 1.403 1.571.897 3.46-.58.99-3.293 4.919-.58 5.777 1.346 0 1.185-1.208 1.726-4.237 1.263 1.184 1.786 3.302 1.026 5.38-.651 1.78-1.976 2.768-1.976 4.725 0 1.538.657 2.062 1.461 2.062 1.319 0 1.774-1.47 2.172-4.54 1.026 1.263 1.479 4.795.747 5.922-2.291 3.527-3.408 4.878-3.408 6.33 0 1.665 1.971 2.408 3.056-1.64.797 1.382.451 4.41.451 4.41-.079 2.017-2.759 2.217-2.838 4.985v5.536zm7.22-46.02-.397-3.125h15.838l-.397 3.125zm1.06-3.19-.341-2.569h13.604l-.341 2.569zm2.16-2.66-.227-2.569h9.058l-.227 2.569zm33.02 110.08c-2.027-.781-4.977-2.919-4.977-5.07v-24.297l2.638-3.358h-52.776l2.53 3.359v24.297c0 2.15-2.027 4.288-4.053 5.07z'/%3e%3cpath stroke-linejoin='bevel' d='M178.24 647.64h3.586v16.495h-3.586zm30.32 0h3.586v16.495h-3.586z'/%3e%3cpath d='M167.91 609.17v27.656h54.023v-5.957l.078-21.7c-2.21.869-2.597 2.872-2.597 2.872v11.777h-48.75V612.04s-.544-2.003-2.754-2.871z'/%3e%3cpath d='M214.6 669.55c-1.766-.781-5.612-2.919-5.612-5.07v-27.192c.378-1.518 2.436-2.414 3.761-3.358h-35.823c1.705.902 3.606 1.652 4.285 3.359v27.192c0 2.15-3.041 4.288-4.807 5.069z'/%3e%3cpath d='M219.41 634.22v-19.587h-4.91v-1.909h-38.84v1.909h-4.91v19.587zm-12.55 35.33c-1.73-.781-4.249-2.919-4.249-5.07v-23.214l1.42-2.11h-17.69l1.42 2.11v23.215c0 2.15-2.519 4.288-4.249 5.07z'/%3e%3cpath stroke-width='.981' d='M190.71 639.16h8.966v30.377h-8.966z'/%3e%3cpath stroke-linejoin='bevel' d='M204.38 632.48c.021-2.001 5.838-2.091 8.832-3.795H177.26c2.994 1.704 8.675 1.844 8.675 3.795l1.217 3.882 14.883.598z'/%3e%3cpath d='M211.41 611.34c0-4.899.205-6.786 1.71-6.786v15.58c-3.69 1.34-6.325 6.05-6.325 6.05h-23.211s-2.634-4.71-6.325-6.05v-15.58c1.856 0 1.868 1.972 1.868 6.786zm1.71-2.01c0-5.618 4.851-6.25 4.851-6.25v5c-1.846-.08-2.737 1.578-2.737 4.044 0 2.466 1.487 2.506 1.487 2.506v14.19h-3.601z'/%3e%3cpath d='M177.28 609.33c0-5.618-4.851-6.25-4.851-6.25v5c1.846-.08 2.737 1.578 2.737 4.044 0 2.466-1.487 2.506-1.487 2.506v14.19h3.601z'/%3e%3cg fill='none' stroke-width='.8'%3e%3cpath d='M186.84 570.62h17.128m-19.158 5.35h20.921m-22.951 6.49h24.904m-27.024 7.93h29.536m-30.216 9.04h30.426'/%3e%3cpath stroke-width='.96' d='M170.75 628.92h48.661m-33.221.01h18.036v6.629H186.19z'/%3e%3c/g%3e%3cpath d='M183.93 614.24c2.99 3.59 2.713 9.68 2.679 13.27h17.343c-.035-3.59-.312-9.68 2.678-13.27zm9.75-41.13-2.376-1.224v-3.497c.971.292 2.062.411 2.168 1.96.338-2.21.948-2.103 1.907-2.964.958.861 1.568.753 1.906 2.963.107-1.548 1.197-1.667 2.169-1.96v3.498l-2.377 1.224z'/%3e%3cpath d='m193.52 578.85-3.946-2.713v-3.223c1.383.32 2.936.451 3.088 2.149.482-2.423 1.35-3.675 2.715-4.62 1.365.945 2.233 2.197 2.715 4.62.152-1.698 1.705-1.828 3.089-2.149v3.223l-3.947 2.713z'/%3e%3cpath d='m193.24 587.8-4.538-3.985v-4.736c1.591.471 3.377.663 3.552 3.157.553-3.56 1.552-5.4 3.121-6.787 1.57 1.388 2.568 3.227 3.122 6.787.175-2.494 1.96-2.686 3.551-3.157v4.736l-4.537 3.985zm8.37 5.29-4.104 5.676h-4.646l-4.104-5.676zm-15.22 9.53c2.053 1.122 2.81 3.357 3.03 7.553h11.55c.22-4.196.977-6.431 3.03-7.553z'/%3e%3cpath stroke-linejoin='bevel' d='M204.17 593.09v-5.702c-1.95.537-3.213 1.691-3.776 3.258 0-1.893-2.49-6.257-5.207-8.43-2.724 2.432-5.257 6.38-5.206 8.43-.464-1.492-1.826-2.721-3.776-3.258v5.702z'/%3e%3cpath stroke-linejoin='bevel' d='M205.04 602.62v-5.702c-2.138.537-3.522 1.691-4.139 3.258 0-1.893-2.73-6.258-5.708-8.43-2.986 2.432-5.763 6.38-5.707 8.43-.508-1.492-2.002-2.721-4.139-3.258v5.702z'/%3e%3cpath stroke-linejoin='bevel' d='M207.44 614.32v-6.577c-2.66.687-4.312 2.653-5.15 3.8 0-3.561-4.02-8.99-7.1-10.768-3.16 1.825-7.101 7.435-7.101 10.768-.86-1.14-2.49-3.113-5.15-3.8v6.577z'/%3e%3cpath stroke-linejoin='bevel' d='M206 628.92v-6.762c-2.346.92-3.048 3.18-3.786 4.717.29-6.859-3.862-14.23-7.024-16.1-3.163 1.87-7.393 9.4-7.024 16.1-.758-1.527-1.44-3.797-3.786-4.717v6.762z'/%3e%3cpath d='M204.36 639.16v-6.762c-2.458.585-2.61 1.491-3.392 3.006.29-4.097-2.611-8.77-5.773-10.64-3.163 1.87-6.064 6.544-5.774 10.64-.782-1.515-.878-2.421-3.392-3.006v6.762z'/%3e%3cg id='a'%3e%3cpath d='M98.935 664.23v-20.44c-.67-2.603-2.88-4.905-4.54-5.366V620.43l3.741 2.023 4.271 18.81v22.966z'/%3e%3cpath d='M98.935 664.31v-20.519c-.67-2.603-2.88-4.905-4.54-5.366v-19.243c2.511 0 3.741 3.273 3.741 3.273l4.271 18.81v22.887z'/%3e%3cpath d='M96.275 669.55c1.73-.781 4.249-2.919 4.249-5.07v-25.547l-1.185-2.108h43.522l-1.699 2.108v25.547c0 2.151 1.73 4.289 3.46 5.07z'/%3e%3cpath d='M135.84 669.55c-1.73-.781-4.249-2.919-4.249-5.07v-24.297l3.62-3.359h-29.589l3.62 3.36v24.296c0 2.151-2.52 4.289-4.25 5.07z'/%3e%3cpath d='M131.69 669.55c-1.73-.781-4.249-2.919-4.249-5.07v-21.965l2.37-3.359h-18.799l2.37 3.36v21.965c0 2.15-2.52 4.288-4.25 5.069z'/%3e%3cpath d='M115.92 639.16h8.982v30.393h-8.982z'/%3e%3cpath stroke-linejoin='bevel' d='M103.7 647.64h3.586v16.495H103.7zm30.75 0h3.586v16.495h-3.586zm-33.81-27.82h4.32v16.909h-4.32zm0-3.18h4.295v3.139h-4.295z'/%3e%3cpath stroke-width='1.034' stroke-linejoin='bevel' d='M136.17 623.46h6.16v13.054h-6.16z'/%3e%3cpath d='M104.89 636.6v-28.941c1.232 0 1.422 4.242 4.249 4.242 1.472 0 1.315-1.757.489-3.188-.732-1.268-1.637-3.018-.407-6.279.843 2.495 3.112 3.287 2.693 1.722-.72-2.688-2.795-3.13-1.239-7.302.54 3.48 2.773 3.327 2.231 1.304-.61-2.28-1.873-3.214-.316-6.428.873 3.65 2.052 3.435 2.052 1.171 0-3.347-.128-6.957 4.203-8.296 0 0 .25-3.068 1.812-3.068s1.813 3.068 1.813 3.068c4.33 1.34 4.202 4.95 4.202 8.296 0 2.264 1.18 2.478 2.052-1.17 1.558 3.213.295 4.147-.315 6.427-.543 2.023 1.69 2.177 2.23-1.304 1.557 4.172-.517 4.614-1.238 7.302-.42 1.565 1.85.773 2.693-1.722 1.23 3.26.325 5.011-.407 6.279-.826 1.43-.983 3.188.489 3.188 2.827 0 3.017-4.242 4.249-4.242V636.6zm-6.766-21.86v22.079h2.511v-22.135c-.905-.457-1.755-.527-2.511.056z'/%3e%3cpath d='M98.203 629.03c3.112 1.591 6.195 3.433 6.975 7.793h-6.975zm43.167-6.61v14.407h2.035v-14.443c-.635-.298-1.503-.344-2.035.036z'/%3e%3cpath d='M143.41 628.92c-3.112 1.591-6.195 3.433-6.975 7.793h6.975zm-20.58-33.65 1.814-1.525v-1.953c-.664.065-1.026.293-1.516.936-.417-1.295-1.334-2.305-2.562-2.933-1.229.628-2.146 1.593-2.563 2.887-.49-.643-.852-.825-1.516-.89v1.953l1.815 1.525z'/%3e%3cpath d='m123.8 600.16.843-1.825v-2.539c-.664.066-1.026.297-1.516.949-.417-1.313-1.334-2.338-2.562-2.974-1.229.636-2.146 1.615-2.563 2.927-.49-.651-.852-.836-1.516-.902v2.539l.844 1.825z'/%3e%3cpath d='m123.93 606.79 2.695-3.287v-3.243c-.986.111-1.524.503-2.252 1.606-.62-2.222-1.981-2.708-3.806-3.786-1.825 1.078-3.187 1.485-3.806 3.707-.729-1.103-1.267-1.416-2.252-1.527v3.243l2.694 3.287z'/%3e%3cpath d='M124.72 613.3s3.14-2.74 3.327-4.244v-3.467c-1.217.143-2.368.459-3.267 1.883-.765-2.87-1.959-3.67-4.212-5.062-2.253 1.392-3.447 2.192-4.212 5.062-.899-1.425-2.05-1.74-3.267-1.883v3.467c.397 1.504 3.327 4.244 3.327 4.244z'/%3e%3cpath d='M126.06 625.32s4.301-4.761 4.4-6.616v-5.406c-1.61.223-3.132 1.33-4.321 3.551-1.011-4.475-2.59-7.595-5.57-9.765-2.98 2.17-4.56 5.29-5.57 9.765-1.19-2.221-2.712-3.329-4.321-3.551v5.406c.308 1.855 4.4 6.616 4.4 6.616z'/%3e%3cpath d='M126.06 632.43s3.676-3.742 4.4-5.366v-5.406c-1.61.223-3.132 1.33-4.321 3.551-1.011-4.475-2.59-7.037-5.57-9.207-2.98 2.17-4.56 4.732-5.57 9.207-1.19-2.221-2.712-3.329-4.321-3.551v5.406c.933 1.624 4.4 5.366 4.4 5.366z'/%3e%3cpath d='M127.54 636.56c-1.073-4.668-1.996-8.13-7.163-11.641-5.167 3.51-6.09 6.973-7.163 11.641z'/%3e%3cpath d='M130.2 639.16v-6.762c-2.346.92-4.467 2.28-5.249 3.795-.873-3.754-2.557-5.408-4.653-7.679-2.097 2.271-3.501 3.925-4.375 7.679-.782-1.515-2.902-2.875-5.249-3.795v6.762z'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 390.74 0)'/%3e%3cpath d='M72.694 694.25h245.33v12.531H72.694z'/%3e%3cpath d='M66.228 706.76h258.26v12.512H66.228zm19.348-31.25h219.56v8.11H85.576z'/%3e%3cpath d='M79.157 683.56h232.4v10.622h-232.4zm10.255-14.28h211.89v6.174H89.412z'/%3e%3cpath d='M112.41 669.31h16.005v49.935H112.41z' stroke-width='1.045'/%3e%3cpath d='M115.95 669.31h8.917v49.936h-8.917z' stroke-width='1.043'/%3e%3cpath d='M187.08 669.31h16.006v49.935h-16.005z' stroke-width='1.045'/%3e%3cpath d='M190.73 669.31h8.917v49.936h-8.917z' stroke-width='1.043'/%3e%3cpath d='M262.19 669.31h16.005v49.935H262.19z' stroke-width='1.045'/%3e%3cpath d='M265.73 669.31h8.917v49.936h-8.917z' stroke-width='1.043'/%3e%3cpath d='M98.935 664.23h193.07M115.79 712.97h9.244m-9.244-6.25h9.244m-9.244-6.25h9.244m-9.244-6.25h9.244m-9.244-6.25h9.244m-9.244-6.25h9.244m-9.244-6.25h9.244m65.736 37.51h8.607m-8.607-6.253h8.607m-8.607-6.254h8.607m-8.607-6.253h8.607m-8.607-6.253h8.607m-8.607-6.253h8.607m-8.607-6.254h8.607m66.193 37.51h9.244m-9.244-6.25h9.244m-9.244-6.25h9.244m-9.244-6.25h9.244m-9.244-6.25h9.244m-9.244-6.25h9.244m-9.244-6.25h9.244' fill='none'/%3e%3c/g%3e%3c/svg%3e\"},9584:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 600 300'%3e%3cdefs%3e%3cstyle%3e.str1%7bstroke:%23000;stroke-width:.46;stroke-miterlimit:22.9256%7d.fil3%7bfill:none%7d%3c/style%3e%3c/defs%3e%3cpath fill='%23c81010' d='M0 0h600v162H0z'/%3e%3cg id='bird'%3e%3cpath id='bird_outline' class='str1' d='M305.75 27.34c-19.08-7.89-30.76-9.34-43.81-9.47-18.9.13-27.92 8.25-45.94 9 7.14 7.69 33.02 9.57 43.93-.53 16.22 1.69 19.9 6.07 24.25 11.52-6.77-1.07-14.57-3.02-21.04 4.14-5.46 1.1-7.99 0-17.33 0-4.36 0-5.87 2.14-5.81 6 2.82-3.9 22.31-1.6 27.09 0 3.67 1.23 7.57 6.32 12.22 7.15 12.19 2.17 29.68-4.2 45.81-8.54L360 42h-23.93L366 36h-32.54c-.69-.79-2.34-1.81-3.66-2.68 8.37-5.39 15.77-15.19 17.66-19.92 15.09-.15 24.83-1.55 36.54-4.29-77.18-8.54-59.61.67-78.25 18.23z' fill='%23f8d000'/%3e%3cpath id='eye' d='M270.06 39.89c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5z' fill='%23000'/%3e%3cpath id='eye_outline' d='M270.06 39.89c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5z' fill='none' fill-rule='nonzero' stroke='%23000' stroke-width='.15' stroke-miterlimit='22.926'/%3e%3cpath class='fil3 str1' d='M290.13 38.29S283.86 42 279.7 42m45.42 4.61S330.85 42 336.07 42M233.82 24.6s4.66-2.44 6.86-3.09m12.45-.39s7.39-3.19 15.62-3.03m4.36 3.81s9.69-1.63 18.64.36m-7.5 1.98s8.04-1.35 15.75.83m-7.48 1.62s8.19.11 12.26 1.69M216 26.87s11.49 3.14 20.83-1.35m-19.37 2.71s14.92 3.68 21.74-3.15m-16.74 5.73s11.24 3.62 20.08-5.72m-9.64 7.99s9.08-2.6 12.52-7.95m-5.42 8.1s6.09-4.22 8.28-7.98m70.18 3.22s2.38 2.99 11.34 4.85m-9.76-6.26s3.85 3.85 11.87 4.79m-9.93-6.6s3.91 3.36 12.42 4.61m-10.49-6.54s5.98 3.99 12.79 4.45m-10.43-6.97s4.19 3.91 12.5 4.88m-10.74-6.89s4.91 4.22 12.63 4.8m-10.9-6.9s3.01 3.48 12.94 4.39m-11.18-6.66s3.35 3.68 12.78 4.48m-11.41-6.35s5.9 4.45 12.73 4.36m-11.56-6.06s7.8 4.68 12.45 4.53m-11.03-6.69s6.2 3.86 11.98 4.71m-38.62 16.98s2.5 1.89 4.84 1.81m-3.4-3.21s2.17 1.85 5.15 1.84m-3.4-3.56s2.46 2.3 5.41 1.88m-3.75-3.54s2.94 2 5.57 1.94m-3.73-3.83s2.18 1.89 5.63 2.07m-3.99-4.15s2.56 2.27 5.82 2.35m-4.09-3.85s2.48 1.59 5.99 1.89m-4.42-3.64s3.35 1.18 6.42 1.47m-4.61-3.61s2.31 1.62 6.41 1.52m-4.78-3.66s2.74 1.82 6.26 1.86m-5.06-3.89s3.68 2.06 6.85 1.6m-5.51-4.03s2.33 2.55 6.67 2.46m-5.73-3.56s4.18 2.35 7.01 1.75m-5.24-3.08s3.17 1.93 6.07 1.85m-2.85-2.82s5.65 2.88 13.29-.24m-8.48 2.29s11.42 2.62 16.37-1.96m-7.41 2.64s7.85.82 16.63-1.96m-11.41 2.01s11.92 2.4 32.63.09M243.24 32.96s5.33-3.51 7.54-7.55m-3.55 6.9s4.29-4.16 5.54-6.74m-1.58 5.67s3.53-3.17 4.31-5.39m-21.55-.19s7.66-1.67 25.98.68m-18.9-3.74s6.42-3.11 12.14-4.06m-5.76 2.77s4.69-2.21 11.61-3.31m-.95 2.89s6.49-2.77 14.43-2.51m-6.22 2.56s8.9-1.99 17.1-.87m6.73 5.22s6.79-.31 14.6 1.63m-26.21-4.36s9.73-.52 16.4.71m43.77-14.7s3.36 2.91 12.72 4.76m-7.44-4.29s5.26 2.99 13.56 4.03m-8.04-3.99s7.38 3.21 15.18 3.41m-7.01-2.71s7.52 1.81 16.84 1.32m-112.07 9.68s5.1-2.1 14.14-1.93m19.49 9.57s3.06-.37 6.86 1.44'/%3e%3cpath class='fil3 str1' d='M284.18 37.86c2.11.33 4.12.58 5.95.43 7.16-3.91 12.05-7.58 15.62-10.95'/%3e%3c/g%3e%3cg fill='%23f8d000' stroke='%23000' stroke-width='.46' stroke-miterlimit='22.926'%3e%3cg id='rays_6'%3e%3cg id='rays_2' transform='rotate(-84.706 300 156)'%3e%3cpath id='wavy' d='M290.63 105.87A50 50 0 0 1 300 66a50 50 0 0 0 9.37 39.87' transform='rotate(13.4 300 156)'/%3e%3cpath id='straight' d='M290.63 105.87 300 63l9.37 42.87'/%3e%3c/g%3e%3cuse xlink:href='%23rays_2' transform='rotate(21.18 300 156)'/%3e%3cuse xlink:href='%23rays_2' transform='rotate(42.35 300 156)'/%3e%3c/g%3e%3cuse xlink:href='%23rays_6' transform='rotate(63.53 300 156)'/%3e%3cuse xlink:href='%23rays_6' transform='rotate(127.06 300 156)'/%3e%3ccircle cx='300' cy='156' r='51'/%3e%3c/g%3e%3cpath fill='%23183070' d='M0 162h600v138H0z'/%3e%3cpath d='M-36 168q30-12 60 0t60 0 60 0 60 0q30-12 63 0t66 0q33-12 63 0t60 0 60 0 60 0 60 0' fill='none' stroke='%23fff' stroke-width='24' id='wave'/%3e%3cuse xlink:href='%23wave' y='48'/%3e%3cuse xlink:href='%23wave' y='96'/%3e%3c/svg%3e\"},740:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 500 300'%3e%3cpath fill='%233A75C4' d='M0 0h500v300H0z'/%3e%3cpath fill='%23CE1126' d='M0 0h500v225H0z'/%3e%3cpath fill='%23FFF' d='M0 0h500v150H0z'/%3e%3cpath fill='%23FFC61E' d='M0 0h500v75H0z'/%3e%3cpath fill='%233D8E33' d='m0 300 250-150L0 0v300z'/%3e%3ccircle fill='%23FFF' cx='85' cy='150' r='67.5'/%3e%3ccircle fill='%233D8E33' cx='115' cy='150' r='67.5'/%3e%3cpath id='a' fill='%23FFF' d='m100.01 89.2 7.36 22.588-19.258-13.949h23.776L92.63 111.788l7.38-22.588z'/%3e%3cuse xlink:href='%23a' y='32.208'/%3e%3cuse xlink:href='%23a' y='64.417'/%3e%3cuse xlink:href='%23a' y='96.625'/%3e%3c/svg%3e\"},1552:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 750 500'%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='none' d='M0 0h750v500H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3cg clip-path='url(%23a)'%3e%3cpath d='M750 0H0v500' fill='%23009e49'/%3e%3cpath d='M0 500h750V0' fill='%23ce1126'/%3e%3cpath d='M0 500 750 0' stroke='%23fcd116' stroke-width='210'/%3e%3cpath d='M0 500 750 0' stroke='%23000' stroke-width='150'/%3e%3cg id='d' transform='rotate(-33.69 514.716 -777.095)' fill='%23fff'%3e%3cg id='c'%3e%3cpath id='b' d='M0-70V0h35' transform='rotate(18 0 -70)'/%3e%3cuse xlink:href='%23b' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='rotate(72)'/%3e%3cuse xlink:href='%23c' transform='rotate(144)'/%3e%3cuse xlink:href='%23c' transform='rotate(216)'/%3e%3cuse xlink:href='%23c' transform='rotate(288)'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='translate(-285 190)'/%3e%3c/g%3e%3c/svg%3e\"},4848:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 72 36'%3e%3cpath fill='%23024FA2' d='M0 0h72v36H0z'/%3e%3cpath fill='%23fff' d='M0 6h72v24H0z'/%3e%3cpath fill='%23ED1C27' d='M0 7h72v22H0z'/%3e%3ccircle fill='%23fff' cx='24' cy='18' r='8'/%3e%3cg transform='matrix(7.75 0 0 7.75 24 18)' fill='%23ED1C27'%3e%3cg id='b'%3e%3cpath id='a' transform='rotate(18 3.157 -.5)' d='M0 0v1h.5z'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(-72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(-144)'/%3e%3c/g%3e%3c/svg%3e\"},9831:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-36 -24 72 48'%3e%3cpath fill='%23fff' d='M-36-24h72v48h-72z'/%3e%3cg transform='rotate(-56.31)'%3e%3cg id='b'%3e%3cpath id='a' d='M-6-25H6m-12 3H6m-12 3H6' stroke='%23000' stroke-width='2'/%3e%3cuse xlink:href='%23a' y='44'/%3e%3c/g%3e%3cpath stroke='%23fff' d='M0 17v10'/%3e%3ccircle fill='%23cd2e3a' r='12'/%3e%3cpath fill='%230047a0' d='M0-12A6 6 0 0 0 0 0a6 6 0 0 1 0 12 12 12 0 0 1 0-24z'/%3e%3c/g%3e%3cg transform='rotate(-123.69)'%3e%3cuse xlink:href='%23b'/%3e%3cpath stroke='%23fff' d='M0-23.5v3M0 17v3.5m0 3v3'/%3e%3c/g%3e%3c/svg%3e\"},970:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 6'%3e%3cpath fill='%23007a3d' d='M0 0h12v2H0z'/%3e%3cpath fill='%23fff' d='M0 2h12v2H0z'/%3e%3cpath fill='%23ce1126' d='M0 4h12v2H0z'/%3e%3cpath d='m0 0 3 2v2L0 6z'/%3e%3c/svg%3e\"},3941:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1200 600'%3e%3cclipPath id='a'%3e%3cpath d='M0 0v150h700v150H600zm600 0H300v350H0v-50z'/%3e%3c/clipPath%3e%3cpath fill='%23012169' d='M0 0h1200v600H0z'/%3e%3cpath d='m0 0 600 300m0-300L0 300' stroke='%23fff' stroke-width='60'/%3e%3cpath d='m0 0 600 300m0-300L0 300' stroke='%23c8102e' stroke-width='40' clip-path='url(%23a)'/%3e%3cpath d='M300 0v350M0 150h700' stroke='%23fff' stroke-width='100'/%3e%3cpath d='M300 0v350M0 150h700' stroke='%23c8102e' stroke-width='60'/%3e%3cpath d='M0 300h600V0h600v600H0z' fill='%23012169'/%3e%3cpath d='M989.722 232.949v93.45c0 80.992-38.339 108.787-89.617 130.832-51.278-22.045-90.096-49.84-90.096-130.831v-93.451h179.713z' fill='%23fff' stroke='%23fff' stroke-width='9.6' stroke-linejoin='round'/%3e%3cuse xlink:href='%23b' width='100%25' height='100%25' stroke='%23fff' stroke-width='9.6' stroke-linejoin='round'/%3e%3cuse xlink:href='%23c' width='100%25' height='100%25' stroke='%23fff' stroke-width='9.6' stroke-linejoin='round'/%3e%3cg stroke='%23000' stroke-width='1.438'%3e%3cg id='b' fill='%23fcea83'%3e%3cpath d='M754.417 449.563c2.875 7.668 23.483 17.732 47.444 4.792 16.294-9.105 26.838-22.044 36.901-45.048 2.876-5.75 4.313-12.94-2.396-17.252-5.271-3.834-13.898-8.147-17.732-11.981-1.916-1.917-3.833-3.355-5.271-4.793.958.959 1.917 1.917 2.875 3.355 9.585 11.502-.479 28.275-11.022 38.339-7.668 7.188-21.566 24.92-41.694 8.147-4.313-3.834-14.377 11.98-9.105 24.44zm291.373 0c-3.355 7.668-23.962 17.732-47.444 4.792-16.294-9.105-26.838-22.044-37.38-45.048-2.397-5.75-3.835-12.94 2.875-17.252 5.271-3.834 13.898-8.147 17.731-11.981 1.917-1.917 3.355-3.355 5.272-4.793-.959.959-1.917 1.917-2.875 3.355-9.585 11.502.479 28.275 10.543 38.339 7.667 7.188 22.045 24.92 42.172 8.147 4.314-3.834 13.898 11.98 9.106 24.44z'/%3e%3cpath d='M900.105 490.778c38.339 0 97.285-17.253 128.914-77.636 5.272-10.064 0-15.336-6.23-18.69-6.71-2.876-14.856-9.585-19.17-13.898 7.668 7.668 6.23 12.94.96 21.566-24.442 40.735-57.988 61.342-104.474 61.342-46.486 0-80.032-20.607-104.473-61.342-5.271-8.627-6.71-13.898.48-21.566-3.835 4.313-12.46 11.022-19.17 13.898-6.23 3.354-11.502 8.626-6.23 18.69 31.63 60.384 91.054 77.636 129.394 77.636z'/%3e%3c/g%3e%3cpath d='M811.446 409.787c-.958-4.792-7.189-2.875-9.105 2.875-2.397-3.354-4.793-6.709-6.71-10.543-5.75-8.626-6.71-14.377 1.438-22.524 3.834-3.834 11.502-8.147 16.773-3.355 11.023 9.106 5.272 23.962-2.396 33.547zm176.838 0c.958-4.792 7.668-2.875 9.585 2.875 2.396-3.354 4.792-6.709 6.709-10.543 5.75-8.626 6.71-14.377-1.917-22.524-3.355-3.834-11.022-8.147-16.773-3.355-10.543 9.106-5.272 23.962 2.396 33.547zm-233.867 39.776c-4.792-7.189-8.626-25.879-9.585-30.671-1.437-4.313-1.917-8.147 3.355-10.064 5.272-1.917 10.064 4.792 12.46 10.543 2.396 5.751 6.23 14.377 10.543 24.92-10.543-6.23-19.17-1.917-16.773 5.272zm291.373 0c4.313-7.189 8.147-25.879 9.585-30.671.958-4.313 1.917-8.147-3.355-10.064-5.271-1.917-10.064 4.792-12.46 10.543-2.396 5.751-6.23 14.377-10.543 24.92 10.543-6.23 18.69-1.917 16.773 5.272z' id='c' fill='%23c8102e'/%3e%3cg fill='%2300493d' stroke='none'%3e%3cpath d='m782.213 406.432-3.834 1.917c-.958.48-.958 1.438-.958 1.917h-.48l-1.917-4.313h.48c0 .479.479.958 1.437.479l8.147-4.313c.959-.48.959-.959.48-1.438l.479-.48 2.396 4.793h-.48c-.478-.479-.958-.958-1.916-.479l-3.355 1.917 1.438 2.875 3.834-1.437c.958-.48.48-1.438.48-1.917h.478l1.917 4.313c-.479-.48-.958-.959-1.917-.48l-8.147 4.314c-.958.479-.958.958-.479 1.437l-.48.48-2.395-4.313.479-.48c.48.48.958.959 1.917.48l3.834-1.917zm8.147 6.23c.958-.48.958-.958.48-1.917h.478l4.793 7.189-3.355 2.396v-.48c1.917-1.437 1.917-3.354 1.438-3.833-.48-.48-.959-.959-.959-1.438-.479 0-.479-.48-1.437.48-.48.478-3.355 2.395-3.355 2.395.48.48.959 1.917 3.355.48h.479l-5.272 3.833v-.479c2.397-1.917 1.438-3.354.959-3.834l-3.355 2.397c-.958.479-.958.958-.958 1.437.479 0 .479.48.958.959.48.958 1.917 1.917 4.313.958l.48.48-3.834 1.437-4.793-7.668h.48c.479.48.958.959 1.916.48zm7.667 18.211-3.355 2.875c-.479.48-.479 1.438 0 1.917h-.479l-3.355-3.354.48-.48c.479.48.958.959 1.917 0l6.23-6.23c.958-.479.958-.958.479-1.917l3.355 3.834c-.48-.479-1.438-.479-1.917 0l-2.876 2.876 2.396 2.396 2.876-2.396c.958-.959.48-1.438 0-1.917l.48-.48 3.354 3.834h-.48c-.479 0-.958-.479-1.916.48l-6.23 5.75c-.959.959-.959 1.438-.48 1.917v.48l-3.354-3.834c.479 0 1.437.48 1.917 0l3.354-3.355zm7.189 10.064 1.438 1.438 1.917-4.313s-1.438.479-3.834 1.917l.479.958-.48.48-.958-.96c-.479.48-.958.48-1.437.96-1.438.958-.959 1.437-.48 1.916v.48l-2.396-2.397h.48l1.916-.479 9.585-5.272.48.48s-.48.479-4.793 10.064c0 .958-.48 1.437 0 2.396l-3.834-3.355.48-.48c.479.96 1.437.96 1.916 0 0-.478.48-1.437.48-1.916l-1.438-1.438.479-.479zm3.834 9.585.48-.48c.478.48.958.48 1.916 0l6.23-8.146-.479-.48c-.958-.479-2.396-.479-3.834.959v-.48l1.917-2.395 7.189 5.271-2.397 2.876h-.479c1.438-1.438.959-3.355 0-3.834v-.48l-6.23 8.147c-.958.48-.48 1.438 0 1.917h-.48z'/%3e%3cpath d='m821.51 452.439-2.396 3.355c-.48.958 0 1.437.479 1.917l-.48.479-3.833-2.876v-.479c.958.48 1.438.48 1.917-.48l5.271-7.188c.48-.958 0-1.437-.479-1.917l.48-.479 3.833 2.876v.479c-.958-.48-1.437-.48-1.917.48l-2.396 3.354 2.876 1.917 2.396-3.355c.48-.958 0-1.438-.48-1.917l.48-.48 3.834 2.876v.48c-.48-.48-1.438-.48-1.917.479l-4.793 7.668c-.958.479-.479.958 0 1.437v.48l-4.313-2.876h.48c.479 0 .958 0 1.437-.48l2.396-3.833zm9.585 13.418.48-.48c.478.48 1.437.48 1.916-.478l3.834-8.147c.48-.959 0-1.438-.48-1.917l8.148 3.833-1.917 3.834-.48-.479c1.438-1.917 0-3.834-.479-4.313-.479 0-.958-.48-1.437-.48-.48 0-.48 0-.959.96-.479.478-1.917 3.354-1.917 3.354.48.48 1.438 1.438 3.355-.959h.48l-2.876 5.751-.48-.479c1.438-2.875-.479-3.355-.958-3.355l-1.917 3.834c-.48.959 0 1.438.48 1.438v.48zm13.897 6.71c-1.438-.958-1.438-3.834 0-6.71.958-2.875 2.875-5.27 4.792-4.312 1.438.479.959 3.354 0 6.23-1.437 3.354-3.354 5.271-4.792 4.792h-.48c3.355 1.438 5.752-.48 7.19-3.834 1.437-2.875.958-6.23-1.918-7.668-2.875-1.437-5.75.48-7.188 3.834-1.438 3.355-.959 6.71 1.917 7.668zm14.857.958 1.917-5.75c.48-.96 0-1.439-.48-1.918l2.397.48v.479c-.48 0-.959 0-1.438.958l-1.917 5.751c-.958 2.396-2.396 4.313-5.271 3.355-1.917-.48-3.355-2.876-2.397-5.272l2.397-6.23c.479-.958 0-1.438-.48-1.917v-.48l4.314 1.918v.479c-.48-.48-1.438-.48-1.438.48l-2.396 6.23c-.48 1.916-.48 3.833.958 4.312 1.438.48 2.876-.479 3.834-2.875z'/%3e%3cpath d='M864.162 467.295c0-.48 0-.48-.48-.48l3.355.48 2.876 9.105 1.438-5.75c.479-.959 0-1.438-.48-1.917l2.876.479-.48.48c-.479 0-.958 0-1.437.958l-2.396 10.543h-.48l-3.834-11.502-2.396 7.668c0 1.438.48 1.438.959 1.917v.48l-2.876-.96v-.479c.48.48 1.438 0 1.438-.958l2.396-8.626-.479-1.438z'/%3e%3cpath d='M880.456 476.88c-.958 4.313-2.875 5.272-3.834 5.272h-.958s-.48-.48 0-.959l1.437-9.585c.48-.479.48-.958.959-.479h.958c.959 0 1.917 1.917 1.438 5.751l1.438.48c.958-4.793-.959-6.71-3.355-7.19-1.917-.479-4.792-.958-4.792-.958v.48c.479.479 1.437.479.958 1.916l-1.438 8.627c-.479.958-.958 1.437-1.437 1.437h-.48l4.793.959c2.396.48 4.792 0 5.75-5.272zm4.313-3.834c0-.958-.958-1.438-1.438-1.438v-.479l8.627.959-.48 3.833c0-2.396-1.437-3.354-2.396-3.354-.48-.48-.958-.48-1.438-.48-.479 0-.479 0-.479 1.438 0 .48-.48 3.834-.48 3.834.48 0 1.918.48 2.876-2.396l-.479 6.23h-.48c0-2.875-1.437-2.875-1.916-2.875l-.48 4.313c0 .958 0 .958.48.958l.958.48c1.438 0 2.876-.48 3.834-3.355h.48l-.959 3.834-9.105-.959c.958 0 1.437-.48 1.917-1.438zm15.815 5.751c0 4.313-1.438 5.75-2.875 5.75-.48-.478-.48-.478-.959-.478l-.48-.48.48-10.064c0-.479 0-.479.48-.479h.958c.958 0 2.396 1.438 2.396 5.751h1.917c0-4.792-2.396-6.23-4.792-6.23-1.917-.48-4.793-.48-4.793-.48v.48c.48 0 1.438.48 1.438 1.438l-.48 9.105c0 .959-.479 1.438-.958 1.438v.48h4.313c2.397 0 4.793-.96 5.272-6.231h-1.917zm13.898 3.834c0 .958.48.958 1.438.958v.48l-5.272.479c.48-.48 1.438-.959 1.438-1.917l-.959-9.105c-.479-.959-.958-.959-1.917-.959v-.48l5.272-.478c-.48.479-1.438.958-.958 1.917zm4.792.958v-.48c.48 0 .958-.478.958-1.437l-1.916-10.064h-.48c-.958.48-1.917 1.438-1.437 3.355h-.48l-.479-3.355 8.626-1.438.48 3.355h-.48c0-1.917-1.437-2.396-2.875-2.396h-.48l1.918 10.064c0 .958.479 1.438 1.437 1.438v.479zm20.607-9.585-1.917-5.75c0-.96-.958-.96-1.438-.96v-.479l2.397-.958v.48c-.48.478-.48.478-.48 1.437l1.917 6.23c.48 1.917.48 4.792-2.396 5.75-1.917.48-4.313-.478-4.792-3.354l-1.917-6.23c-.48-.958-.959-.958-1.438-.958l-.48-.48 4.793-1.437v.479c-.48.48-.958.958-.48 1.917l1.439 6.23c.479 1.917 1.917 2.875 3.354 2.875 1.438-.479 1.917-2.396 1.438-4.792zm5.272-3.354c2.396-.958 1.917-2.396 1.438-3.834-.48-1.438-1.438-2.396-2.396-1.917-.48 0-.959.48-.48.959l1.438 4.792.48.48.958 3.833c.479.959 1.437.959 1.917.48v.479l-4.313 1.917-.48-.48c.959-.479.959-.958.959-1.917l-3.355-8.147c-.48-1.437-.958-.958-1.917-.958v-.48l4.793-1.916c1.916-.48 3.833 0 4.792 1.917.48 2.396-.48 3.834-2.396 4.792-.48 0-.959.48-.959.48zm11.981 1.437c-1.438.48-3.355-1.438-4.792-4.792-1.438-2.876-1.438-5.751 0-6.23 1.437-.48 3.354 1.437 4.792 4.313 1.438 2.875 1.438 5.75 0 6.709 2.875-.958 3.834-4.313 2.396-7.668-1.438-2.875-4.313-4.792-7.188-3.834-2.876 1.438-3.834 4.793-2.397 7.668 1.438 3.355 4.314 5.272 7.189 3.834zm.479-13.418h-.958l2.875-1.917 8.626 4.792-2.875-5.271c-.48-.959-1.438-.959-1.917-.959v-.479l2.396-.958c-.48.479-.958.958 0 1.917l4.792 9.584-.479.48-10.543-5.751 3.834 7.188c.479.959 1.438.959 1.917.48v.479l-2.396 1.437v-.479c.479-.48.479-.958 0-1.917l-3.834-7.668-1.438-.958zm21.565 1.438v-.48c0-.478.48-.958 0-1.916l-5.75-8.147h-.48c-.959.48-1.438 2.396 0 3.834l-.48.479-1.916-3.355 7.188-4.792 1.917 2.875c-1.437-1.437-2.875-1.437-3.834-.958l-.479.48 5.75 8.146c.48.959 1.439.959 1.918.48v.479zm5.272-11.502 2.875 3.355c.48.479 1.438.479 1.917 0v.479l-3.834 3.355v-.48c.48-.479.48-.958 0-1.917l-5.75-7.188c-.48-.959-.959-.48-1.917-.48l3.834-3.354v.48c0 .478-.48.958 0 1.916l2.396 2.876 2.875-1.917-2.396-3.355c-.48-.959-1.438-.48-1.917-.48l3.834-3.354v.48c-.48.479-.48.958 0 1.916l5.75 7.189c.48.479.96.479 1.438 0l.48.479-3.834 3.355-.48-.48c.48-.479.96-.958.48-1.917l-2.876-3.354zm4.313-10.064c-.48-.48-1.438-.48-1.917 0v-.48l6.23-5.75 2.876 2.875h-.48c-1.437-1.917-3.354-.958-4.313-.479 0 .48-.48.48-.958.959 0 0 0 .479.479 1.437l2.875 2.876c.48-.48 1.917-1.438 0-3.834h.48l3.833 4.313v.48c-2.396-2.397-3.354-.96-3.833-.48l2.875 2.875c.48.959.958.959.958.959l1.438-1.438c.48-.48.959-1.917 0-4.792h.48l1.916 3.354-6.23 6.23-.479-.479c.48-.479.959-.958 0-1.917zm11.497-13.419c-.48.48-.48 1.438.48 1.917.958.958 1.916.958 3.833 0 .959-.48 2.876-.959 4.313.48 2.396 2.395 1.438 4.312.959 5.27-.48.48-1.438.96-1.917 1.438-.48 0-.48 0-.48.48v.479l-3.354-2.875h.48c1.916.958 3.833 1.437 4.791 0 .959-.959 0-1.917-.479-2.397-.958-.958-1.917-.958-3.354 0-1.438.48-3.355.48-4.793-.479-1.917-1.917-1.917-3.355-.958-4.792.479-.48 1.438-.959 1.917-1.438.479 0 .479 0 0-.958l3.354 2.396h-.479c-2.396-.959-3.834-.48-4.313.479zm4.32-3.834c-.958-.48-1.438 0-1.917.48h-.48l5.273-7.669 3.354 2.397-.48.479c-1.916-1.438-3.833-.48-4.312 0 0 .48-.48.958-.48 1.438-.479 0-.479.479.48.958.479.48 3.354 2.396 3.354 2.396.48-.479 1.438-1.437-.479-3.354v-.48l4.792 3.834c-2.875-1.437-3.354 0-3.833.48l3.354 2.396c.959.479 1.438.479 1.438.479 0-.48.48-.959.958-1.438.48-.958.959-2.396-.958-4.313l.48-.48 2.395 2.876-4.792 7.189h-.48c.48-.959.48-1.438-.478-2.396zm12.94-8.626-1.438 2.396c-1.917-1.917-2.875-3.354-2.875-3.354l4.313.958h.959c.479 0 1.437.48 1.916.48 1.438.478.959.958.48 1.916h.479l2.396-4.313c-.958.959-1.438.48-2.396.48-10.064-1.918-11.023-2.397-11.023-2.397v.48l7.668 8.626c.48.479.48 1.437.48 1.917h.479l1.437-2.397-.479-.479c-.48.959-.958 1.438-1.917 0l-.958-.958 1.437-3.355zm-2.88-10.543c-.48.48-.48 1.438.959 1.917 1.437.48 1.916 0 3.354-.959 1.438-.958 2.875-1.916 4.792-.958 2.876 1.438 2.397 3.834 1.917 4.792-.479.48-.958 1.438-1.437 1.917v.959l-3.834-1.917c2.396.48 4.313 0 4.792-1.438.48-.958-.48-1.917-.958-2.396-.959-.48-1.917 0-3.355.958-1.438 1.438-2.875 1.917-4.792.959-1.917-.959-2.876-2.396-1.917-3.834 0-.958.958-1.438 1.438-1.917 0-.48 0-.48-.48-.958v-.48l3.834 1.917h-.48c-2.395-.479-3.833.48-3.833 1.438z'/%3e%3c/g%3e%3c/g%3e%3cuse height='100%25' width='100%25' xlink:href='%23d' stroke='%23fff' stroke-width='9.6' stroke-linejoin='round'/%3e%3cuse height='100%25' width='100%25' xlink:href='%23e' stroke='%23fff' stroke-width='9.6' stroke-linejoin='round'/%3e%3cuse height='100%25' width='100%25' xlink:href='%23f' stroke='%23fff' stroke-width='9.6' stroke-linejoin='round'/%3e%3cuse height='100%25' width='100%25' xlink:href='%23g' stroke='%23fff' stroke-width='9.6' stroke-linejoin='round'/%3e%3cg stroke='%23000' stroke-width='1.438'%3e%3cg id='d' fill='%23073163'%3e%3cpath d='M863.203 232.47c-6.23 1.438-10.543 1.917-16.294-3.355-3.834-3.834-2.875-10.543.958-12.94 4.314-2.874 8.147-4.791 13.42-3.354 5.27 1.438 19.168 14.377 15.814 14.857-3.355 0-8.626 3.354-13.898 4.792zm14.857-23.004c1.917-1.438 4.313-2.396 10.543-2.875 5.751-.48 10.064-.48 11.502 3.833 1.917 5.272 3.354 11.502 7.188 14.378-2.396 1.437-14.377 2.875-18.69.479-5.75-2.876-7.188-13.898-10.543-15.815zm41.214.48c1.917-1.438 4.313-1.438 10.543-.958 6.23.479 8.626.958 10.064 5.271 1.438 4.792 0 11.023 2.876 15.336-2.876.958-12.46.958-15.815-2.397-5.272-3.833-4.793-14.856-7.668-17.252z' fill='%23fff'/%3e%3cpath d='M948.028 212.821c-4.313-.958-7.189-1.438-9.105 0 2.396 2.875.479 14.377 5.271 18.21 3.355 2.397 11.981 2.876 13.898-2.395 2.396-4.793 2.396-11.981-10.064-15.815zm-49.361-4.792c1.438-1.438 4.313-1.917 10.064-1.917 6.23 0 10.064.959 11.98 4.792 1.918 4.793 1.439 11.023 4.793 14.857-1.438 1.917-14.377 1.917-18.21-.959-5.272-3.354-5.752-14.377-8.627-16.773zm-40.735 4.313c0-2.396 3.355-2.875 11.98-3.355 8.627-.958 9.106-.479 11.982 5.751 1.438 3.355 3.354 9.106 7.188 11.023-10.543 2.396-13.897 3.833-19.648.479-4.313-2.396-9.106-8.147-10.064-10.543-.48-1.438-.48-2.876-1.438-3.355z'/%3e%3c/g%3e%3cg fill='%23f9d050' stroke-width='.647'%3e%3cg id='f'%3e%3cpath d='M880.935 163.46c-10.064-7.668-22.045-14.856-33.067-16.294 7.188 4.313 27.316 20.128 32.588 25.4'/%3e%3cpath d='M886.686 156.271c-11.98-8.147-25.879-17.253-39.297-18.21 10.064 5.27 24.92 17.73 33.067 27.795m21.565-23.003c6.71-14.856 13.898-23.003 23.483-32.109-4.793 10.064-10.065 30.671-12.46 38.818'/%3e%3cpath d='M912.565 140.457c4.792-10.543 11.98-19.649 24.441-25.4-6.23 6.23-15.815 24.92-18.211 34.985'/%3e%3cpath d='M916.878 150.041c5.75-8.147 17.253-23.483 37.86-31.63-11.981 11.981-29.713 34.026-34.026 42.652m2.875-.479c8.626-4.792 25.879-12.46 38.339-10.064-7.668 2.876-30.671 13.419-40.735 23.003'/%3e%3cpath d='M921.67 157.23c8.147-8.626 23.003-21.566 38.818-26.837-11.502 11.022-35.943 35.942-39.297 39.776m-22.524-18.211c-5.75-17.732-14.377-34.505-27.316-39.776 7.188 10.543 16.294 25.878 21.086 48.881m-4.793-9.584c-9.585-11.502-22.524-23.003-37.38-25.4 10.063 5.751 26.837 22.525 33.067 38.819'/%3e%3cpath d='M892.916 151c-11.98-21.566-21.086-25.4-26.358-29.713 4.313 8.147 14.856 29.713 21.087 38.819'/%3e%3cpath d='M868.954 149.562c5.75 3.355 14.377 11.502 17.253 16.773' fill='none'/%3e%3cpath d='M868.954 159.626c2.875 2.396 8.147 5.272 12.94 9.585m44.089-2.397c4.792-3.834 15.335-10.064 20.607-11.98m-23.961 8.626c4.792-6.23 14.377-14.856 17.732-17.732m-4.314-11.981c-4.313 4.792-14.377 16.773-18.21 22.524m5.75-26.837c-3.355 4.313-10.064 16.773-11.98 21.086m-25.88-20.127c2.875 7.668 8.147 20.607 10.064 25.879m-14.377-17.732c1.917 2.875 5.75 9.585 7.189 14.377'/%3e%3c/g%3e%3cg id='g'%3e%3cpath d='M897.708 136.143c0-4.313 2.875-9.105 5.75-9.105 3.355 0 5.752 5.75 5.752 9.105 0 3.834-2.876 7.189-5.751 7.189-2.876 0-5.751-2.876-5.751-7.189z'/%3e%3cpath d='M891.478 139.977c.48-4.792 3.834-8.626 6.71-8.147 2.875.48 4.312 6.23 3.833 9.585-.48 3.834-3.834 6.709-6.23 6.23-2.396 0-4.792-3.355-4.313-7.668zm12.94 1.438c-.958-4.313.958-9.105 3.834-9.585 2.875-.479 5.75 4.313 6.23 8.147.958 3.834-1.438 7.668-3.834 7.668-2.396.48-5.75-1.917-6.23-6.23z'/%3e%3cpath d='M897.229 145.249c0-4.792 2.875-9.105 5.75-9.105 3.355 0 5.752 5.271 5.752 9.105 0 3.834-2.876 7.189-5.751 7.189-2.876 0-5.751-2.876-5.751-7.189z'/%3e%3cpath d='M888.603 147.645c0-4.313 3.355-9.105 6.23-9.105 2.875 0 5.75 5.75 5.75 9.105 0 3.834-3.354 7.189-5.75 7.189-2.875 0-6.23-2.876-6.23-7.189zm17.732-1.917c0-4.313 2.875-9.105 5.75-9.105 3.355 0 5.752 5.75 5.752 9.105 0 3.834-2.876 7.189-5.751 7.189-2.876 0-5.751-2.876-5.751-7.189z'/%3e%3cpath d='M904.418 149.562c0-4.792 3.355-9.105 6.23-9.105 2.875 0 5.75 5.271 5.75 9.105 0 3.834-2.875 7.189-5.75 7.189s-6.23-2.876-6.23-7.189z'/%3e%3cpath d='M896.75 153.875c0-4.792 2.875-9.105 5.75-9.105 3.355 0 5.752 5.75 5.752 9.105 0 3.834-2.876 7.189-5.751 7.189-2.876 0-5.751-2.876-5.751-7.189zm-11.981 0c0-4.792 2.396-9.105 4.792-9.105 2.397 0 4.313 5.75 4.313 9.105 0 3.834-2.396 7.189-4.313 7.189-2.396 0-4.792-2.876-4.792-7.189zm26.837-.958c0-4.313 2.396-8.626 4.792-8.626 2.397 0 4.793 5.271 4.793 8.626 0 4.313-2.876 7.189-4.793 7.189-2.396 0-4.792-2.876-4.792-7.189z'/%3e%3cpath d='M914.482 161.064c.958-4.792 3.834-8.626 5.75-8.147 1.918.48 2.397 6.23 1.439 9.585-.48 4.313-3.355 6.709-5.272 6.23-1.917-.48-2.875-3.834-1.917-7.668z'/%3e%3cpath d='M905.376 159.626c.48-4.313 3.355-8.626 5.75-8.147 2.876 0 4.314 5.75 3.835 9.105-.48 4.314-2.876 7.189-5.272 6.71-2.396 0-4.792-3.355-4.313-7.668zm-13.418 1.438c-1.438-4.792-4.313-8.147-6.23-7.668-1.917.48-2.396 6.23-1.438 9.585.959 3.834 3.834 6.23 5.751 5.75 1.438-.478 2.875-3.833 1.917-7.667z'/%3e%3cpath d='M888.603 160.105c0-4.313 2.396-8.626 4.792-8.626 2.876 0 4.793 5.271 4.793 8.626 0 4.313-2.396 7.189-4.793 7.189-1.917 0-4.792-2.876-4.792-7.189z'/%3e%3cpath d='M895.791 162.022c0-4.792 2.875-9.105 5.75-9.105 3.355 0 5.752 5.271 5.752 9.105 0 3.834-2.876 7.189-5.751 7.189-2.876 0-5.751-2.876-5.751-7.189zm2.397-52.716c-.958 3.834-4.313 7.189-1.917 12.46-4.313-1.438-8.147-1.917-11.502 1.917 4.314-.48 8.147.959 10.064 3.834-3.834-.48-5.75 1.438-6.709 3.834 3.355-.959 6.71-1.917 8.147-1.438-1.438 1.438-3.834 3.834-4.313 5.75 2.875-2.395 6.23-1.916 8.147-3.354-1.438 3.355 1.438 6.71 3.834 10.064-.48-4.792 2.396-8.147.958-10.543 4.313.959 4.793 4.792 11.023 4.792-2.396-1.437-3.834-6.23-6.71-6.23 1.438-.479 7.189-.958 8.147 0-.958-1.917-4.313-3.834-6.23-3.834 1.917-1.916 5.272-5.75 7.668-6.709-3.355.48-8.626.959-10.543 3.834 4.792-3.834 3.834-11.022 9.105-11.98-2.875-.48-7.188 1.437-10.543 4.792 1.438-2.876 1.438-6.71 3.355-7.668-3.834.958-8.147 5.75-9.585 8.147 0-2.396-1.438-6.23-2.396-7.668zm2.396 7.668c0 1.438 0 4.313-.48 5.272m6.71-5.751c-.958.958-2.875 4.313-2.875 7.189'/%3e%3cpath d='M909.689 122.246c-1.438.958-2.875 2.396-3.355 4.313' fill='none'/%3e%3c/g%3e%3c/g%3e%3cg id='e' fill='%23059334'%3e%3cpath d='M858.89 169.69c-3.355 0-6.23-1.438-8.147-3.834-3.355-4.313-12.46-6.23-16.294-2.396-1.438.958-3.355.958-4.792 1.438-2.397 0-5.272 2.396-4.313 7.188 1.916-1.438 2.396 0 3.833 0 .959-.48.48.48.48 1.438 0 2.396 5.271 7.188 10.064 6.71 5.271 0 7.667 1.916 8.626 2.875 1.437 1.437.479.958 1.437 3.354 1.438 1.438 1.917 1.917-.479 3.834-3.354 2.876-5.75 9.585 0 14.856 6.23 4.793 22.045 11.981 39.777-1.917 17.252-13.418 44.09-5.75 46.006-.958 2.397 4.792 3.355 7.668 3.834 10.064.48 1.917 2.876 3.834 6.23 3.355 3.355 0 7.189 1.437 9.106 2.875 2.396 1.438 5.75.959 4.792-3.355-1.917-13.418-10.064-15.335-11.022-21.565 4.792.479 8.147.479 10.064-1.438 1.437-1.917 3.354-5.271 5.271-6.23 1.438-.958 1.438-1.917-.479-1.438-2.396.48-3.834 1.438-8.147.959-22.045-2.396-83.866-19.17-95.847-15.815z'/%3e%3cpath d='M956.654 185.984c-2.396 1.438-4.792 3.834-9.105 9.585-4.793 6.23-19.17 12.46-36.902 12.46-17.252 0-27.795-2.876-35.463-9.106-4.313-3.354-7.668-5.271-10.543-6.709-5.272-2.396-6.23-7.668-4.793-11.98-1.437 2.395-2.396 4.791-5.271 4.312-1.917 0-5.75 0-4.792 1.917-.48-.958-.48-2.396-.959-2.875l-.958-.959c1.437.959 4.792-1.917 7.188-1.917 1.917.48 4.313-1.917 3.834-4.792-.48-2.396-.958-4.313-1.438-6.23 3.834-1.917 54.154 7.188 64.218 8.147 10.064.48 38.818 4.792 34.984 8.147z' fill='%23000'/%3e%3cpath d='M865.6 167.773c4.792-4.792 10.543-7.189 16.294-5.75h1.438c2.875-2.397 9.584-2.876 13.418-.96h1.917c5.751-1.916 16.773 0 20.607 3.835l1.438.958c12.94-.958 20.607 4.792 29.713 13.898.958.958 2.396 2.875 4.792 3.355 2.875.479 3.355 1.916.958 3.354-2.875 1.438-5.271 3.834-10.063 9.106-4.314 5.75-18.211 11.501-35.464 11.501-16.773 0-26.837-2.875-34.505-8.626-4.313-3.355-7.668-5.272-10.064-6.71-2.875-.958-6.709-4.792-5.271-8.626.958-3.833-1.438-8.626-3.355-13.418 1.438-.959 5.272-2.396 7.189-1.438l.958-.48z'/%3e%3cg fill='%2300493d'%3e%3cpath d='M950.424 179.754c-9.105-9.105-16.773-14.856-29.713-13.898 0 .48 0 1.917-.479 2.876 7.668 2.875 18.69 11.501 23.483 17.731 1.917-1.917 5.271-4.313 6.709-6.709zm-31.15-14.856c-3.834-3.834-14.856-5.75-20.607-3.834 0 1.917 0 4.792-.959 6.71 3.355 1.437 6.23 4.792 9.106 8.146 1.917-.479 6.71-1.917 9.105-2.396.959-1.917 2.876-6.23 3.355-8.626zm-22.524-3.834c-3.834-1.917-10.543-1.438-13.419.958-.958 1.917-1.437 5.751-1.437 7.668 1.917 0 4.792 1.438 5.75 2.396 2.876-.958 6.71-2.875 8.148-4.313.479-1.917 1.437-4.792.958-6.709zm-31.15 6.709c4.792-4.792 10.543-7.189 16.294-5.75-.958 1.437-1.438 4.312-1.438 7.188-5.271-.48-11.98.958-14.856 2.875v-4.313z'/%3e%3cpath d='M941.798 187.422c-4.313-6.23-14.856-13.419-22.045-16.773 0 .479-.958 2.396-1.438 3.834 2.876 4.313 8.627 13.897 11.023 19.17 2.396-.96 9.105-3.835 12.46-6.231zm-36.422 10.543c.958-6.71 1.438-16.294 1.438-19.649 2.396-.479 7.188-1.917 9.105-2.396 2.396 3.834 8.147 13.898 10.543 18.69-5.75 1.438-15.335 3.834-21.086 3.355zm-16.773-23.004c2.396-.958 5.75-2.875 8.147-4.792 1.917 1.437 5.75 4.792 7.189 6.709 0 4.313-1.438 16.773-1.917 21.086-3.834 0-10.064-.958-13.419-2.875.48-7.189.958-15.336 0-20.128zm-23.962 5.751c.48-.958.958-4.313.958-5.75 3.834-2.397 13.42-4.793 20.608-.96.479 4.793 0 16.774-.48 19.65-6.23-4.793-16.294-11.502-21.086-12.94z'/%3e%3c/g%3e%3cg fill='none'%3e%3cpath d='M840.679 172.086c-.958 0-1.438-2.875-3.355-2.875-.479 0-1.917.479-2.396 0 0 .958.48 1.917.959 2.396.479 1.437 2.875.479 4.792.479z' fill='%23000' stroke='none'/%3e%3cpath d='M840.679 180.233c5.75 0 6.71-7.189 9.585-7.668m-6.23 8.147c4.313 1.917 7.668-8.147 11.022-7.668m-19.648-4.792c1.438 0 2.396-1.917 4.792.48.959.958 2.397 1.437 3.355 1.437m-.959 5.272c-1.917 2.875-5.272 4.792-7.189 3.834m-.958-15.815c-1.438.958-2.396 2.875-3.355 4.313m-1.437 2.875v2.396'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3cg transform='translate(.002 -.032)' stroke-width='1.438'%3e%3cpath d='M989.72 232.95v93.451c0 80.991-38.339 108.79-89.617 130.83-51.278-22.045-90.096-49.84-90.096-130.83V232.95h179.71z' fill='%23fff'/%3e%3cpath d='M900.1 312.02c4.313 0 11.022-3.834 16.773-9.585 6.23-6.709 16.773-9.105 27.796 0 11.022 9.106 17.732 5.272 23.482 0 5.75-5.271 10.543-7.188 21.566-7.188v-62.301h-179.71v62.3c11.022 0 15.815 1.918 21.566 7.19 5.75 5.27 12.46 9.105 23.483 0 11.502-9.106 21.566-6.71 28.275 0 5.272 5.75 11.981 9.584 16.773 9.584z' fill='%23cf142b'/%3e%3cpath d='M900.1 359.95c5.75 0 17.252-6.23 20.128-7.668 10.543-6.23 18.211-.479 24.441 2.396 6.71 2.876 19.169 6.23 26.837 0 7.668-6.23 11.981-5.75 17.252-5.75.958-7.189.958-14.377.958-22.524v-5.751c-6.709-1.438-10.064.479-17.252 6.71-7.188 6.23-15.336 4.791-25.879.958-10.064-4.314-20.128-11.981-30.192 0-2.875 3.354-9.584 8.147-16.294 8.147-7.188 0-13.419-4.793-16.294-8.147-10.543-11.981-20.128-4.314-30.192 0-10.543 3.833-19.169 5.271-26.358-.959-6.709-6.23-10.064-8.147-17.252-6.71v5.752c0 8.147.48 15.336 1.438 22.524 5.272 0 9.106-.48 16.773 5.75 7.668 6.23 20.607 2.876 26.837 0 6.71-2.875 14.377-8.626 24.92-2.396 2.876 1.438 13.898 7.668 20.128 7.668zm0 20.6c7.189 0 15.815-2.875 23.482-7.189 9.585-5.271 16.294-2.875 25.879 1.918 10.064 4.792 18.211 3.354 23.962 0 2.875-1.917 5.272-5.751 11.502-4.314-2.875 11.981-7.189 22.524-12.46 31.15-9.585 2.397-14.856 2.397-24.92-1.917-10.064-4.792-22.524-7.667-29.233-3.354-6.23 3.834-12.939 5.75-18.211 5.75-5.272 0-11.981-1.916-18.211-5.75-6.71-4.313-19.169-1.438-29.233 3.354-10.064 4.314-15.336 4.314-24.92 1.917-5.272-8.626-9.585-19.169-12.46-31.15 6.23-1.437 8.626 2.397 11.502 4.314 5.272 3.354 13.898 4.792 23.482 0 10.064-4.793 16.773-7.189 26.358-1.917 7.668 4.313 16.294 7.188 23.482 7.188zm0 76.68c19.169-8.147 36.901-17.252 51.278-29.713-3.834-1.438-6.23-.48-9.585-2.875-3.354-2.397-13.419-3.355-22.045 1.437-9.105 4.313-12.939 5.272-19.649 5.272-6.709 0-10.543-.959-19.649-5.272-8.626-4.792-18.69-3.834-22.045-1.437-3.354 2.396-5.75 1.437-9.584 2.875 14.377 12.46 31.63 21.566 51.278 29.713z' fill='%230b50a0'/%3e%3cg id='h'%3e%3cpath d='m831.1 383.43 23.962-73.802 23.962 73.802-62.78-45.527h77.636z' fill='%23f9d050'/%3e%3cpath d='m835.89 376.72 49.84-36.422h-61.342l49.361 36.422-18.69-58.467z' fill='%23024919'/%3e%3c/g%3e%3cuse xlink:href='%23h' height='100%25' width='100%25' x='90.097'/%3e%3cuse xlink:href='%23h' height='100%25' width='100%25' y='52.237' x='45.048'/%3e%3cpath d='M989.72 232.95v93.451c0 80.991-38.339 108.79-89.617 130.83-51.278-22.045-90.096-49.84-90.096-130.83V232.95h179.71z' fill='none' stroke='%23000'/%3e%3cpath d='M862.208 280.702s-3.037-.024-4.253-.736c-1.323-.774-2.739-3.511-2.739-3.511s-3.348.543-4.888.21c-1.608-.349-3.91-2.188-3.91-2.188 1.537-.227 2.686-.46 4.175-1.664 0 0-2.964-.157-4.652-.807-1.47-.566-3.869-2.44-3.869-2.44 1.37-.34 2.853-.299 3.932-1.638 0 0-2.903.026-4.218-.455-1.313-.48-3.398-2.326-3.398-2.326 1.595-.139 3.113-.434 4.139-1.724 0 0-2.94.1-4.186-.39-1.72-.675-4.352-2.926-4.352-2.926 1.655-.124 3.3-.267 4.553-1.206l-.93-1.889c-1.124-2.28-3.476-1.476-5.04-2.104-1.535-.618-2.395-2.3-2.479-3.244-.148-1.664.703-4.206 4.458-3.675-1.867-2.846.077-4.89 2.064-5.709 1.909-.786 3.595-.571 4.89 2.543 0 0 1.743-1.409 2.687-1.618 1.314-.29 2.795.145 3.262 1.375.192.506.262 1.564-.06 2.195-.51.999-1.632 1.683-1.998 3.144-.415 1.654 1.113 4.54 1.113 4.54s7.218 5.717 10.538 8.85c1.767 1.666 4.976 5.272 4.976 5.272l.177-.103h7.155l.639 12.072-7.786.152z' fill='%23e4c900' stroke='%23806600' stroke-width='.697'/%3e%3cpath d='M852.804 262.287c-2.122-1.886-7.788-6.095-7.788-6.095s-1.297-3.144-1.467-5.304a5.337 5.337 0 0 1 .564-2.822c.453-.874 1.782-1.192 2.032-2.144.078-.3-.026-.665-.226-.903-.238-.284-.646-.473-1.016-.451-1.397.082-3.611 2.144-3.611 2.144s-1.385-2.488-2.596-3.047c-.512-.237-1.172-.216-1.693 0-.492.203-.976.619-1.129 1.128-.486 1.619 1.016 4.966 1.016 4.966s-3.258-.828-4.514 0c-.479.316-.725 1.01-.678 1.58.053.624.507 1.216 1.016 1.58 1.387.995 4.966 1.242 4.966 1.242l4.176 5.643-4.402 1.241c1.677.913 2.99 1.223 7.562 1.242-.931 1.957-2.296 2.627-3.499 3.499l7.675 1.128c-.667 1.92-2.673 2.098-3.612 2.935 1.471.978 3.588 1.472 5.886 1.83.365.058.735.111 1.108.163-1.523-.21-1.263-9.76.23-9.555z' fill='%23fee46e'/%3e%3cpath d='M851.247 264.44c-4.09-7.098-5.009-5.963-10.123-9.563 3.614 6.412 3.293 5.888 10.123 9.563z' fill='%23ffefa7'/%3e%3cpath d='M842.294 240.84c1.367 1.696 1.523 2.474 1.211 4.455.648.674 1.27.837 1.807.674 1.08-.329 1.584-1.19 1.333-2.383-.802-.503-.932-2.017-4.351-2.746zm-8.172.898c-.565-.02-1.252.039-2.105.227 1.947.977 2.41 1.62 2.948 3.553.869.345 1.5.236 1.922-.135.847-.746.95-1.739.227-2.72-.703-.095-1.299-.864-2.992-.925zm-2.421 7.677c-.906.276-2.135-.617-4.924 1.49 2.177.077 2.866.468 4.16 2 .934-.048 1.464-.41 1.692-.923.459-1.032.138-1.976-.928-2.567z' fill='%23377bc8' stroke='%232c5aa0' stroke-width='.697'/%3e%3cpath d='M897.612 286.245c-1.26-.368-2.8-2.026-4.138-2.018-1.408.008-2.402.794-3.11 1.85-.338.505.192 2.392.72 2.754l2.426 1.668s-1.519 1.745-1.634 2.727c-.1.854.329 1.539.94 2.213.798.878.994 1.218 2.265 1.403.759.11 2.555-.221 2.555-.221s-.042 1.4.402 2.046c.804 1.171 2.169 2.203 3.728 2.039 1.218-.129 1.613-.313 2.257-1.22.51-.719.408-2.556 1.237-3.313l3.37-3.078c1.455.88 1.417 2.193 1.236 3.547 0 0 2.163-1.367 2.807-2.346.67-1.02.935-3.428.935-3.428 1.37 1.235 1.823 2.34 1.53 3.815 0 0 2.202-1.375 2.91-2.346.798-1.092 1.486-3.454 1.486-3.454 1.003.975 1.214 2.363.832 4.06 0 0 2.46-1.649 3.118-2.977.52-1.05.832-2.887.832-2.887 2.99.217 4.921-1.085 5.053-2.432.102-1.045-1.08-2.47-3.488-2.883 0 0-.89-1.327-1.226-2.308-.231-.675-.248-1.442 0-2.112.497-1.34 1.656-2.468 2.839-3.432 1.628-1.325 5.17-2.991 5.17-2.991l-1.036-5.19-12.065-1.848-13.336 3.287c2.43 1.115 7.875 4.928 7.43 6.373-.166.541-1.324 1.053-1.878 1.777-.408.533-.096 1.385.304 1.936.561.77 1.901.947 2.332 1.672.388.652.564 1.233.102 1.847-.914 1.213-3.985 1.723-5.475 2.376-2.715 1.191-7.312 3.788-7.312 3.788-1.43.186-2.8-.309-4.118-.693z' fill='%23e4c900' stroke='%23806600' stroke-width='.697'/%3e%3cpath d='M902.307 288.792s3.352-1.764 5.132-2.643c2.807-1.387 7.713-1.753 8.946-4.63 0 0 .349-.64.235-1.526-.171-1.327-2.484-2.423-1.76-3.871l.586-1.174s2.46 1.06 3.168 1.877c.575.665.657 1.772 1.408 2.23.77.47 2.698.234 2.698.234l1.173 3.402s1.786-.014 2.464.821c.198.245.236.647.117.939-.188.464-1.273.582-1.746.748-.922.323-2.346-.72-2.346-.72s.494 2.307.25 3.054c-.167.517-.82 1.408-.82 1.408-.52-.881-.857-1.31-3.198-2.496 0 0-.282 1.967-.91 3.202-.292.572-1.174 1.526-1.174 1.526s-.535-1.086-.939-1.526c-.756-.823-2.96-1.207-2.96-1.207s-.434 2.413-1.054 3.699c-.228.474-.618 1.173-.618 1.173s-.423-1.108-.822-1.525c-.472-.495-1.76-1.056-1.76-1.056l-4.545 3.754s-.687 2.221-1.757 2.935c-.619.413-.95.211-1.617-.117-.324-.16-.614-.472-.704-.821-.29-1.122.442-2.528.442-2.528s-2.445.958-4.054.501c-.612-.174-1.376-.655-1.407-1.29-.074-1.466 2.058-2.848 2.058-2.848s-2.407-.566-3.406-1.937c-.326-.447-.557-1.193-.235-1.642.37-.518 1.253-.477 1.877-.352 1.191.237 1.734 1.656 2.938 1.82l4.34.586z' fill='%23ffe66f'/%3e%3cpath d='M917.938 284.359c-5.907-.303-10.523 2.555-15.242 5.739 6.053.028 10.69-1.993 15.242-5.74z' fill='%23ffefa7'/%3e%3cpath d='M922.003 269.91s-.23 4.317-2.033 5.422c-.776.475-1.863.673-2.71.338-.82-.323-1.394-1.203-1.694-2.032-.192-.531-.508-1.864-.508-1.864s-2.756-1.26-4.235-1.355c-2.178-.139-6.437 1.186-6.437 1.186.727-2.26 2.684-4.112 4.743-5.929l7.114-.508 5.76 4.743z' fill='%23efd300' stroke='%23806600' stroke-width='.697'/%3e%3cpath d='M935.781 241.223c1.684-.224 5.14-1.055 6.301-2.428l2.057-2.428c-.321 4.037-2.03 6.654-5.657 8.428-2.894 1.415-6.235 1.742-9.387 1.428-1.984-.198-5.657-1.428-5.657-1.428 2.015 2.615.99 4.462-1.543 5.713 0 0 .375-2.505-.386-2.857-1.642-.758-3.492.23-5.236 1.391-1.288.858-3.237 1.258-4.55 1.24-2.188-.029-3.4-.06-5.447-.92-1.233-.52-3.374-2.501-4.28-2.304-1.959.425-4.431.664-5.545 2.502-.387.639-.34 1.638 0 2.31.761 1.506 2.473 2.292 3.985 2.694 4.496 1.197 8.166 1.189 12.605.429 4.574-.783 9.915-2.351 14.488-3.297 4.533-.939 10.378-2.711 13.813-3.568 6.071-1.514 8.795-1.722 13.338-1.642 7.957.141 10.562 4.834 10.32 9.956-.249 5.262-5.043 7.644-9.148 9.12-7.218 2.596-17.128 1.118-23.356.94 0 0 2.088 1.943 3.035 2.83 1.11 1.041 1.664 3.216 3.035 3.747 1.88.728 4.756-.715 6.744-.843 2.78-.178 7.503.187 7.503.187.724-.818 1.192-1.386 1.944-1.63.539-.176 1.387-.186 1.82-.002.855.363 1.431 1.481 1.072 3.563 0 0 .594.923 1.499 1.136.958.225 2.077.027 2.624.218.9.316 2.36 1.31 2.36 1.31s-1.547.545-2.19.98c-.44.298-1.029 1.285-1.029 1.285s2.119.04 3.004.476c.948.468 1.823 1.788 1.823 1.788s-1.275-.1-1.883.326c-.465.326-1.227 1.223-1.227 1.223s2.48-.224 3.325.596c.748.726 1.609 2.026 1.609 2.026s-1.338-.032-1.971.17c-.412.132-1.14.664-1.14.664s1.714.992 2.467 2.145c.602.92.751 2.979.751 2.979s-1.01-.84-1.63-1.15c-.387-.192-1.266-.161-1.266-.161l.402 4.226c.098 1.04 1.41 2.165 1.644 2.969.295 1.014.221 1.395-.308 2.283-.678 1.138-2.078 1.37-3.29 1.142-.667-.126-1.606-1.063-1.606-1.063s-.683 1.403-1.144 1.833c-.772.72-1.104.629-2.11.586-.773-.033-1.46-.194-1.995-.814-.615-.714-1.041-2.851-1.041-2.851l-2.374.521c-.516.114-2.079-.76-2.253-1.31-.365-1.155-.4-2.322.308-3.259.674-.889 2.535-.935 3.483-1.425 1.215-.628 2.383-2.444 2.383-2.444s-3.967-3.39-5.682-5.497c-.944-1.16-2.566-3.87-2.566-3.87s-5.058 1.693-6.965 2.037c-4.705.848-9.715 0-9.715 0-7.19 0-11.974-12.267-18.513-15.068-1.995-.854-2.934-.72-5.021-.203-7.576 1.877-15.664 12.542-23.17 14.741-3.08.903-9.53 1.222-9.53 1.222s-1.057 2.527-2.055 3.248c-1.087.785-3.814.836-3.814.836s-.697 3.022-1.496 4.17c-.835 1.2-3.128 2.362-3.128 2.362.338-1.379.54-2.434.061-4.175 0 0-1.14 2.41-2.25 3.552-.965.994-3.32 2.222-3.32 2.222.189-1.286.729-2.506 0-3.961 0 0-.97 2.435-1.813 3.335-.841.899-3.067 1.877-3.067 1.877.431-1.39.707-2.78 0-4.17 0 0-.922 2.497-1.748 3.336-1.14 1.157-3.884 2.425-3.884 2.425.463-1.434.908-2.868.565-4.302l-1.866-.003c-2.252-.005-2.396 2.292-3.445 3.338-1.03 1.027-2.703 1.05-3.505.73-1.414-.565-2.672-2.55-.955-5.467-2.97.384-4.517-1.862-4.51-3.86.007-1.92.586-3.614 3.581-3.41 0 0-.387-1.662-.236-2.536.21-1.218 1.073-2.275 2.24-2.156.48.048 1.371.427 1.78.957.644.838.821 2.059 1.894 2.969 1.214 1.03 4.1.946 4.1.946s5.61-3.665 9.311-5.143c1.97-.787 7.561-1.976 7.561-1.976l.176-16.583c3.36.25 1.915.285 4.757.183 4.082-.148 14.805 1.85 14.805 1.85l7.636-.63s12.736-2.32 18.795-3.046c3.053-.365 6.137-.628 9.202-.434 4.617.29 8.582 1.673 12.922 1.957 3.649.239 6.14.688 9.789.435 5.209-.362 14.52.063 17.478-5.622.768-1.475.374-3.496-.772-4.633-1.512-1.499-2.587-2.063-4.604-1.548-1.064.272-2.416 1.173-2.549 2.283a3.13 3.13 0 0 0 .473 2.064c.782 1.221 1.665 1.59 1.665 1.59s-2.26.366-3.288-.549c-1.083-.962-2.056-4.018-2.056-4.018-.509.78-.883 1.635-.797 2.745.073.957-.003 1.556.962 3.008 0 0-2.39-.185-3.535-1.643-.77-.98-1.398-3.928-1.398-3.928-.678.744-1.092 1.948-1.121 2.836-.042 1.282.458 1.845.71 3.192 0 0-2.356-.77-3.289-2.192-.723-1.104-1.109-4.003-1.109-4.003-2.71.75-7.885 1.811-13.519 3.155-3.969.947-10.03 2.403-14.315 3-7.358 1.028-12.714.496-17.237-1.636-2.354-1.11-3.415-2.177-4.021-4.697-.345-1.43.162-3.457 1.33-5.034 1.63-2.2 4.459-3.846 7.619-4.716 0 0 8.37-2.496 13.244-3 7.816-.806 10.994.407 14.26.864 2.122.297 4.406-.19 5.075-1.076.562-.746 1.493-1.55.239-3.349 0 0 1.588.035 2.643 2.202.43.885-.1 2.93-.1 2.93z' fill='%23fee46e'/%3e%3cpath d='M944.148 236.369s-2.274 3.868-3.92 5.024c-2.073 1.456-4.61 2.262-6.99 2.606-2.314.334-4.675-.25-6.992-.56-2.686-.358-6.684-2.14-6.684-2.14.81 1.428 1.632 2.854 1.844 4.28 0 0-2.528-.672-3.861-.232-1.05.346-3.044 1.318-4.06 1.79-1.579.735-4.112-.013-5.79-.255-1.734-.25-2.343-1.176-3.902-.674l-1.518.488 4.917 2.885 4.918.744 3.073-.651 3.38-2.047 2.69-.186.768 1.21.077 2.14 1.766-1.768.462-1.49-.539-2.604 3.611 1.116 4.61.372 4.764-.93 4.226-2.047 2.074-2.605 1.076-4.467zm12.588 12.943a6.254 6.254 0 0 0-3.213 1.021c-1.415 1.359-1.296 2.982-1.28 4.34-.726-1.26-1.3-3.44-1.938-5.225-1.763 1.809-1.857 4.414-2.34 6.555-.991-1.89-1.445-4.134-2.049-6.024-2.037 1.713-2.57 3.78-3.219 5.491-.509-1.098-1.006-2.243-1.134-4.96-.261.099-.426.172-.651.261-6.042.821-19.646 5.258-30.207 6.322-5.851.59-12.24.2-15.925-2.432-1.625-1.16-2.725-2.754-3.023-4.893l-.543 2.497 1.736 3.285 3.907 2.233 7.378 1.71 8.03-.79 4.557-.526 23.858-5.49.518 3.094 1.61 2.037 2.157.974-.841-2.746.33-1.86.84-1.196 1.208 3.455 1.645 1.373 2.23.575-.913-1.682-.073-2.215.694-1.638 1.134 2.923 1.317 1.107 2.962.265-1.829-2.08-.365-1.861 1.207-1.506 2.779-.664 2.158.84 1.682 1.596.513 2.48-.442 1.848c4.162-3.686.138-8.648-4.465-8.494zm4.465 8.494c-.037.034-.068.068-.107.1l.073.045.034-.145zm3.665-4.643c-.225 2.796-1.192 4.99-2.712 6.648-7.205 7.861-23.288 5.235-31.004 2.544l-3.473-.551a35.499 35.499 0 0 0-1.724-.74c-2.58-.569-2.024-.28-4.868-.458-3.066-.194-6.15.069-9.202.434-6.06.726-18.796 3.045-18.796 3.045l-7.635.63s-10.724-1.997-14.806-1.85c-2.842.103-1.397.067-4.757-.183l-.03 2.795s3.513.923 6.778 1.585l-.948.064-4.725 8.346c-.205-1.564-.853-3.904-.853-3.904l-.495 6.283-.906 1.601-5.549 1.388-5.642 2.561-4.432 3.172-4.432-1.22-1.713-3.05s.406 3.524 1.41 4.636c1.231 1.365 4.835 1.586 4.835 1.586s5.235-3.71 8.06-5.001c1.226-.561 2.497-.952 3.779-1.3.444.506 1.035 1.107 1.7 1.587.634.456 1.994 1.168 1.994 1.168.159-3.832 2.367-3.787 5.687-5.796l.34 2.345s6.254-2.136 7.955-4.043c1.136-1.274 2.238-2.774 2.733-4.552.368-1.322.304-3.553.216-5.029 1.392-.008 2.79-.048 4.245-.1 6.387-.226 13.236-3.118 19.586-3.976 5.085-.687 10.708-1.683 15.336-.822 3.887.724 5.378 2.277 8.73 4.767 2.82 2.093 5.68 7.725 9.456 7.725 0 0 2.136-.132 3.529-.329 1.754-.248 2.989-.983 4.75-1.15 2.397-.23 5.693.254 5.693.254 1.553-2.191 2.348-2.236 2.794-1.957.983.614 1.117 1.973.231 3.35.978.744 1.602 1.966 4.576 1.792-1.31 1.153-1.705 1.729-2.243 3.15 1.116-.408 2.286-.02 3.956.513-1.182 1.12-1.507 2.233-1.916 3.218 1.11-.16 1.94.108 3.933.483-1.138.66-1.993.973-2.184 1.887 1.299.82 1.179.497 3.069 2.27-1.201.174-1.934.176-2.402 1.11l2.29 4.034-.305-3.758s.88-.031 1.267.162c.62.308 1.63 1.149 1.63 1.149s-.15-2.059-.752-2.98c-.752-1.151-2.466-2.144-2.466-2.144s.727-.531 1.14-.663c.633-.202 1.97-.171 1.97-.171s-.86-1.3-1.609-2.027c-.845-.82-3.325-.595-3.325-.595s.762-.897 1.227-1.223c.608-.427 1.884-.326 1.884-.326s-.875-1.32-1.823-1.788c-.885-.436-3.004-.476-3.004-.476s.587-.986 1.028-1.285c.643-.435 2.19-.979 2.19-.979s-1.459-.995-2.36-1.311c-.546-.191-1.665.008-2.624-.218-.905-.212-1.498-1.136-1.498-1.136.359-2.082-.218-3.2-1.074-3.563-.432-.184-1.28-.174-1.82.002-.75.245-1.219.813-1.942 1.631 0 0-4.724-.366-7.504-.188-1.987.128-4.864 1.571-6.744.844-1.37-.531-1.925-2.707-3.035-3.747-.947-.888-3.035-2.83-3.035-2.83l-.143-.208 7.094.443 7.149.107h4.501c5.177-1.264 11.206-2.645 13.68-8.979l.089-4.703zm-53.529 12.074c-1.873-.039-4.004.583-5.696 1.31-4.836 2.08-12.416 8.379-12.416 8.379-2.144 1.339-5.225 3.556-7.512 4.484-3.495 1.418-10.975 1.653-10.975 1.653s-1.015 3.86-2.379 4.596c-1.207.652-3.908-.823-3.908-.823s.044 2.187-.113 3.36c-.143 1.071-1.19 3.088-1.19 3.088s-.27-1.593-.623-2.264c-.517-.982-2.095-2.4-2.095-2.4s-.424 2.22-.85 3.223c-.549 1.294-2.152 3.498-2.152 3.498s-.214-1.32-.454-1.92c-.436-1.09-1.756-2.95-1.756-2.95s-.532 2.296-.962 3.361c-.366.906-1.36 2.538-1.36 2.538s-.26-.849-.452-1.234c-.536-1.073-1.927-2.95-1.927-2.95s-.955 2.454-1.586 3.567c-.394.696-1.36 1.92-1.36 1.92s-.02-2.208-.623-2.88c-.564-.629-1.68-.9-2.435-.755-2.48.476-3.444 2.93-5.097 5.114-.356.47-1.12.741-.825.206.452-.82.11-1.582-.214-2.008-.365-.478-1.065-.764-1.567-.454-.767.473 1.819-3.201 1.756-3.201 0 0-2.61.09-3.852-.206-.718-.17.631.235.465-1.922-.157-2.032-1.75-1.832-1.31-1.99 1.218-.435 3.224.482 3.224.482s-.929-.963-.51-1.822c.191-.391 1.294-1.189 1.469-2.2.253-1.473-.94-2.636-.986-2.525-.524 1.27-2.031.938-2.242 2.156-.15.875.237 2.537.237 2.537-2.995-.205-3.573 1.49-3.58 3.409-.008 1.998 1.54 4.243 4.51 3.86-1.718 2.917-.46 4.902.954 5.466.802.32 2.475.297 3.505-.73 1.049-1.046 1.193-3.343 3.445-3.338l1.866.004c.343 1.434-.102 2.868-.565 4.301 0 0 2.743-1.267 3.884-2.425.826-.838 1.748-3.335 1.748-3.335.707 1.39.431 2.779 0 4.169 0 0 2.225-.977 3.067-1.876.842-.9 1.813-3.336 1.813-3.336.729 1.456.189 2.676 0 3.962 0 0 2.355-1.229 3.32-2.223 1.11-1.141 2.25-3.552 2.25-3.552.48 1.742.277 2.796-.062 4.175 0 0 2.294-1.162 3.129-2.362.799-1.148 1.496-4.169 1.496-4.169s2.727-.052 3.813-.836c.999-.722 2.056-3.248 2.056-3.248s6.45-.32 9.53-1.222c7.506-2.2 15.594-12.864 23.17-14.742 2.086-.517 3.026-.652 5.021.203 6.538 2.8 11.322 15.068 18.512 15.068 3.238 0 5.011.848 9.715 0 1.907-.344 6.965-2.036 6.965-2.036s1.623 2.71 2.566 3.869c1.716 2.108 5.682 5.498 5.682 5.498s-1.167 1.815-2.382 2.443c-.949.49-2.81.536-3.483 1.425-.71.937-.673 2.103-.308 3.258.174.55 1.737 1.424 2.252 1.31l2.374-.52s.427 2.136 1.042 2.85c.535.62 1.222 1.04 1.994 1.073 1.007.043 1.339-.124 2.11-.844.461-.43 1.145-1.832 1.145-1.832s.938.936 1.606 1.062c1.211.229 2.611-.004 3.29-1.142.529-.889-.138-3.112-.433-4.126 0 0-.027 2.151.16 2.897-.83-1.873-3.117-1.817-3.865.074-1.128-.71-1.433-1.939-1.433-1.939l-.588 2.457c-.3.466-.066 1.102-.647 1.437-.089-2.368-1.632-2.608-2.992-1.995-.427-.855-.205-2.287-.205-2.287s-1.333.64-2.296.905c-.573.158-.198-.399-.351-1.085-.18-.805-1.32-.588-1.09-.726 1.218-.737 2.522-1.01 3.683-1.874 1.062-.79 2.35-3.363 2.35-3.363s-4.128-3.49-6.015-5.803c-1.516-1.858-3.333-5.72-3.333-5.72s-7.452 2.342-11.619 2.53c-2.485.113-5.987.013-8.268-1.187-4.066-2.14-6.59-7.436-10.309-10.361-2.366-1.862-4.333-4.005-7.138-4.38a7.025 7.025 0 0 0-.786-.059z' fill='%23e4c900'/%3e%3cpath d='m934.302 236.32.066.154.013-.058-.079-.096zm.066.154-.381 1.663-1.816 1.816-2.131.67-3.554-.383-5.368-.765h-5.998l-6.71.956-6.553 1.626-3.71 1.624s2.523.46 3.789.383c3.768-.227 7.39-1.885 11.13-2.486 2.252-.36 4.52-.754 6.79-.67 2.95.111 5.814 1.396 8.762 1.53 1.555.072 3.255.434 4.658-.381.806-.469 1.609-1.338 1.815-2.391.198-1.01-.555-2.807-.724-3.192zm18.87 10.035-7.776.554-9.262 2.215c10.604 1.891 23.35-6.057 28.246 4.62l.071-1.662-2.132-3.234-3.202-1.833-5.946-.66zm11.208 7.388-.003.09.114.138c-.035-.08-.075-.15-.11-.228zm-48.645 10.188c11.838 7.67 13.26 19.316 28.81 14.17-13.979 1.103-14.852-12.53-28.81-14.17zm-11.94 1.817c-13.742 5.445-17.27 5.238-19.01 7.203-.736.83-.763 1.936-1.436 3.087-.669 1.144-1.981 2.331-3.537 3.335 9.716-.199 17.382-10.493 23.982-13.625zm46.942 11.279c1.4 5.666 4.904 9.056 8.688 12.433-1.656-5.712-4.513-9.402-8.688-12.433zm-90.156 7.226c-7.593.667-7.975 3.687-11.01 5.088 8.056-.788 7.417-1.81 11.01-5.088z' fill='%23fff1a1'/%3e%3cpath d='M935.781 241.223c1.684-.224 5.14-1.055 6.301-2.428l2.057-2.428c-.321 4.037-2.03 6.654-5.657 8.428-2.894 1.415-6.235 1.742-9.387 1.428-1.984-.198-5.657-1.428-5.657-1.428 2.015 2.615.99 4.462-1.543 5.713 0 0 .375-2.505-.386-2.857-1.642-.758-3.492.23-5.236 1.391-1.288.858-3.237 1.258-4.55 1.24-2.188-.029-3.4-.06-5.447-.92-1.233-.52-3.374-2.501-4.28-2.304-1.959.425-4.431.664-5.545 2.502-.387.639-.34 1.638 0 2.31.761 1.506 2.473 2.292 3.985 2.694 4.496 1.197 8.166 1.189 12.605.429 4.574-.783 9.915-2.351 14.488-3.297 4.533-.939 10.378-2.711 13.813-3.568 6.071-1.514 8.795-1.722 13.338-1.642 7.957.141 10.562 4.834 10.32 9.956-.249 5.262-5.043 7.644-9.148 9.12-7.218 2.596-17.128 1.118-23.356.94 0 0 2.088 1.943 3.035 2.83 1.11 1.041 1.664 3.216 3.035 3.747 1.88.728 4.756-.715 6.744-.843 2.78-.178 7.503.187 7.503.187.724-.818 1.192-1.386 1.944-1.63.539-.176 1.387-.186 1.82-.002.855.363 1.431 1.481 1.072 3.564 0 0 .594.922 1.499 1.135.958.226 2.077.027 2.624.218.9.316 2.36 1.31 2.36 1.31s-1.547.545-2.19.98c-.44.299-1.029 1.285-1.029 1.285s2.119.04 3.004.477c.948.467 1.823 1.787 1.823 1.787s-1.275-.1-1.883.326c-.465.326-1.227 1.223-1.227 1.223s2.48-.224 3.325.596c.748.726 1.609 2.026 1.609 2.026s-1.338-.032-1.971.17c-.412.133-1.14.664-1.14.664s1.714.993 2.467 2.145c.602.92.751 2.979.751 2.979s-1.01-.84-1.63-1.15c-.387-.192-1.266-.161-1.266-.161l.402 4.226c.098 1.04 1.41 2.165 1.644 2.969.295 1.014.221 1.395-.308 2.283-.678 1.138-2.078 1.37-3.29 1.142-.667-.126-1.606-1.063-1.606-1.063s-.683 1.403-1.144 1.833c-.772.72-1.144.92-2.15.876-.773-.033-1.42-.484-1.955-1.104-.615-.714-1.041-2.851-1.041-2.851l-2.374.521c-.516.114-2.079-.76-2.253-1.31-.365-1.155-.4-2.322.308-3.259.674-.889 2.535-.935 3.483-1.425 1.215-.627 2.383-2.443 2.383-2.443s-3.967-3.39-5.682-5.498c-.944-1.16-2.566-3.87-2.566-3.87s-5.058 1.693-6.965 2.037c-4.705.848-9.715 0-9.715 0-7.19 0-11.974-12.267-18.513-15.068-1.995-.854-2.934-.72-5.021-.203-7.576 1.877-15.664 12.542-23.17 14.742-3.08.902-9.53 1.221-9.53 1.221s-1.057 2.527-2.055 3.249c-1.087.784-3.814.835-3.814.835s-.697 3.022-1.496 4.17c-.835 1.2-3.128 2.362-3.128 2.362.338-1.379.54-2.434.061-4.175 0 0-1.14 2.41-2.25 3.552-.965.994-3.32 2.222-3.32 2.222.189-1.285.729-2.506 0-3.961 0 0-.97 2.435-1.813 3.335-.841.899-3.067 1.877-3.067 1.877.431-1.39.707-2.78 0-4.17 0 0-.922 2.498-1.748 3.336-1.14 1.157-3.884 2.425-3.884 2.425.463-1.434.908-2.868.565-4.301l-1.866-.004c-2.252-.005-2.396 2.292-3.445 3.338-1.03 1.027-2.703 1.05-3.505.73-1.414-.564-2.672-2.55-.955-5.467-2.97.384-4.517-1.862-4.51-3.86.007-1.92.586-3.614 3.581-3.41 0 0-.387-1.661-.236-2.536.21-1.218 1.073-2.275 2.24-2.156.48.048 1.371.427 1.78.957.644.839.821 2.059 1.894 2.969 1.214 1.03 4.1.947 4.1.947s5.61-3.665 9.311-5.144c1.97-.787 7.561-1.976 7.561-1.976l.176-16.583c3.36.25 1.915.285 4.757.183 4.082-.147 14.805 1.85 14.805 1.85l7.636-.63s12.736-2.32 18.795-3.045c3.053-.366 6.137-.628 9.202-.435 4.617.29 8.582 1.673 12.922 1.957 3.649.239 6.14.688 9.789.435 5.209-.361 14.52.063 17.478-5.622.768-1.475.374-3.496-.772-4.632-1.512-1.5-2.587-2.064-4.604-1.549-1.064.272-2.416 1.174-2.549 2.283-.071.602.019 1.132.473 1.843.782 1.221 1.665 1.81 1.665 1.81s-2.625.145-3.654-.769c-1.083-.962-1.69-3.797-1.69-3.797-.509.78-.883 1.635-.797 2.745.073.957-.003 1.556.962 3.009 0 0-2.39-.186-3.535-1.644-.77-.98-1.398-3.927-1.398-3.927-.678.743-1.092 1.947-1.121 2.835-.042 1.283.458 1.845.71 3.192 0 0-2.356-.769-3.289-2.192-.723-1.103-1.109-4.003-1.109-4.003-2.71.75-7.885 1.811-13.519 3.156-3.969.947-10.03 2.402-14.315 3-7.358 1.027-12.714.496-17.237-1.637-2.354-1.11-3.415-2.177-4.021-4.697-.345-1.43.162-3.457 1.33-5.034 1.63-2.2 4.459-3.846 7.619-4.716 0 0 8.37-2.496 13.244-3 7.816-.806 10.994.407 14.26.864 2.122.297 4.406-.19 5.075-1.076.562-.746 1.493-1.55.239-3.349 0 0 1.588.036 2.643 2.203.43.885-.1 2.93-.1 2.93z' fill='none' stroke='%23806600' stroke-width='.697'/%3e%3cpath d='M879.187 264.843c1.815 1.129 3.808-.35 4.219-.502 0 0-.87-.606-1.457-2.063-.395-.98-.532-2.71-.569-3.521-.135-3.014 1.067-3.481 1.106-3.253 0 0 1.997-.685 2.825-1.323.785-.603 1.147-1.652 1.364-2.618.324-1.448-.247-3.576-.247-3.576-2.9-.168-3.638.216-4.318 1.104 0 0-.06-1.48-.463-2.832-.201-.674-.665-1.677-1.14-2.327-.49-.667-.988-.972-.988-.972-.018.769-.709 1.471-1.062 2.007 0 0-.294-2.944-1.033-4-.57-.814-2.141-1.899-2.13-1.895.012.003-1.786.102-2.704.482-1.191.492-3.025 2.814-3.025 2.814-.009-.643-.213-1.607.186-2.264 0 0-.583-.011-1.355.288-.75.29-1.682.886-2.214 1.345-1.068.922-1.916 2.137-1.916 2.137-.048-1.164-.444-1.834-3.043-3.257 0 0-1.628 1.486-2.135 2.88-.338.931-.596 2.01-.26 2.941.353.984 1.667 2.636 1.667 2.636.155-.171.917.87-.821 3.336-.468.664-1.516 2.049-2.376 2.66-1.28.912-2.339.954-2.339.954.646 1.682.823 2.37 3.284 2.695-5.61 4.026-6.246 10.448-1.94 15.919.281-.657 1.243-2.15 1.81-2.722-.06-.047.073 3.161 1.674 4.795.52.53.773 3.481 1.523 4.409.685.846 1.647 1.767 1.647 1.767s.746-2.34 1.841-2.704c1.102-.368 3.161-.956 3.84-1.17 1.368-.432 3.802-3.345 3.802-3.345l-.428 3.562c7.38-2.616 9.065-7.627 7.175-14.387z' fill='%23fee46e'/%3e%3cpath d='M864.88 255.754c.322 2.11-.689 6.289-1.486 7.429l4.797 1.923 4.735.546c-.387-1.938 1.51-5.726 2.455-7.015l-3.48.075-1.553-1.552-2.842.63-2.626-2.036z' fill='%23504416'/%3e%3cpath d='M865.826 256.952c-.627 2.27-.267 2.688-.15 3.585l1.384-2.964-1.234-.621zm6.717 2.185-.39 3.248c.572-.7 1.1-.865 1.765-3.124l-1.375-.124zm-6.86 2.287c-.572.7-1.1.866-1.765 3.125l1.375.123.39-3.248zm6.035 1.723-1.383 2.964 1.234.621c.627-2.27.266-2.688.15-3.585z' fill='%23fff'/%3e%3cpath d='M869.449 244.046c-.953-.002-1.877.043-2.562.153-1.733.276-1.807.998-1.807.998 3.163.08 5.42 1.273 7.32 2.904l-1.812 2.65s.558.944 1.037 1.106c.477.162 1.49-.25 1.49-.25l-.276-3.487c2.731-.019 5.321.454 7.72 1.598 0 0 .183-.76-1.057-1.876-1.474-1.327-4.51-3.071-6.013-3.455-.783-.2-2.452-.337-4.04-.34zm-1.118 9.353a1.52 1.49 15.929 0 0-1.465 1.075 1.52 1.49 15.929 0 0 1.053 1.851 1.52 1.49 15.929 0 0 1.872-1.016 1.52 1.49 15.929 0 0-1.054-1.85 1.52 1.49 15.929 0 0-.406-.06zm4.556 1.3a1.52 1.49 15.929 0 0-1.465 1.076 1.52 1.49 15.929 0 0 1.053 1.85 1.52 1.49 15.929 0 0 1.872-1.016 1.52 1.49 15.929 0 0-1.053-1.85 1.52 1.49 15.929 0 0-.407-.06zm-9.291 4.657c-3.25.001-6.835 4.148-6.797 9.012 2.31-3.182 7.174-6.866 7.109-9a3.707 3.707 0 0 0-.313-.013zm11.108 4.297c-.413 1.997 1.262 6.203.781 9.907 2.138-4.743 1.433-9.083-.781-9.907zm-12.523 3.422s-.85 1.726-.892 3.126c-.028.936 0 1.918.343 2.79.355.9 2.604 2.605 2.604 2.605l-.605 2.11s2.416-1.044 2.915-1.86c.382-.624 1.535-3.192 1.535-3.192l-2.532 1.971s-2.556-2.02-2.973-3.126c-.643-1.7-.394-4.424-.394-4.424z' fill='%23ffefa7'/%3e%3cpath d='M866.291 247.441c-.898-.051-1.531.275-1.735.989-.272.952.395 1.977 1.806 2.38 1.41.402 2.783-.317 3.054-1.269.272-.952-.733-1.521-2.143-1.924a4.55 4.55 0 0 0-.982-.176zm9.881 2.86c-.706-.029-1.22.176-1.39.77-.272.953.514 2.288 1.924 2.69 1.41.403 2.518-.116 2.79-1.067.272-.952-.47-1.722-1.88-2.124-.528-.151-1.02-.252-1.444-.27z' fill='%23fff'/%3e%3cpath d='M866.301 247.203a2.764 2.764 0 0 0-.894.09c-.532.152-.92.528-1.075 1.075-.156.546-.034 1.117.312 1.594.347.476.91.874 1.656 1.087 1.52.434 3.01-.322 3.33-1.445.161-.562-.08-1.06-.52-1.408-.438-.347-1.045-.605-1.764-.81a4.673 4.673 0 0 0-1.045-.183zm-.016.468c.28.017.592.072.931.169.691.197 1.255.458 1.603.733.348.276.468.51.357.901-.223.78-1.446 1.492-2.746 1.12-.664-.189-1.132-.517-1.404-.892-.272-.374-.355-.8-.24-1.205.116-.405.364-.646.77-.762a2.2 2.2 0 0 1 .729-.064zm9.897 2.402a3.098 3.098 0 0 0-.435.018c-.556.063-1.024.359-1.184.92-.32 1.124.545 2.552 2.066 2.986.746.213 1.434.173 1.98-.05.545-.221.951-.641 1.107-1.188a1.52 1.52 0 0 0-.346-1.481c-.37-.41-.963-.736-1.695-.945-.54-.154-1.042-.25-1.493-.26zm-.024.478c.392.01.869.089 1.387.237.677.193 1.18.473 1.464.786.284.313.368.65.252 1.055-.115.406-.41.722-.839.896-.429.175-1 .207-1.663.018-1.3-.371-1.964-1.622-1.741-2.402.111-.39.337-.525.778-.576.11-.012.232-.017.362-.014z' style='text-indent:0;text-decoration-line:none;text-transform:none' color='%23000' fill='%23d1b948'/%3e%3cpath d='M866.35 245.326c-.645-.086-1.42.024-1.887.476-.28.27-.324 1.136-.324 1.136l1.01.012 1.136.324 2.451 1.099 2.686-.155s-1.468-.6-2.185-1.007c-.97-.549-1.784-1.736-2.887-1.884zm12.865 3.672c-.927-.237-1.99.255-2.964.215-.824-.034-2.444-.314-2.444-.314l2.2 1.549 2.66.36 1.109.316.864.523s.419-.758.324-1.136c-.158-.63-.758-1.133-1.351-1.4-.127-.056-.265-.079-.398-.113zm-15.586 14.264c-2.576 6.23 7.39 9.381 8.848 2.525-2.676-.188-5.477-.675-8.848-2.525z' fill='%23e4c900'/%3e%3cpath d='m863.391 262.626-.203.495c-.69 1.67-.536 3.21.127 4.398.664 1.187 1.816 2.002 3.097 2.389 1.28.386 2.699.343 3.923-.294 1.223-.636 2.206-1.884 2.595-3.712l.117-.52-.543-.032c-2.641-.185-5.356-.658-8.662-2.472l-.45-.252zm.31.763c2.915 1.489 6.41 2.223 8.776 2.434-.394 1.269-1.185 2.784-2.041 3.23-.975.506-2.863.64-3.934.317-1.07-.323-2.456-1.654-2.982-2.596-.465-.831-.197-2.163.182-3.385z' style='text-indent:0;text-decoration-line:none;text-transform:none' color='%23000' fill='%23806600'/%3e%3cpath d='M867.727 257.805c-1.241 4.1-2.321 8.733-1.48 13 2.966-3.18 4.483-7.647 5.592-11.783.006-.167-.815-.537-.92-.669-.257-.324-.693-1.09-.693-1.09s-.829.523-1.297.634c-.4.094-1.202-.092-1.202-.092z' fill='%23377bc8' stroke='%232c5aa0' stroke-width='.697'/%3e%3cpath d='M875.206 239.046c.011.004-1.786.103-2.705.482-1.19.492-3.024 2.814-3.024 2.814-.01-.642-.214-1.606.185-2.264 0 0-.583-.01-1.354.288-.75.291-1.683.886-2.215 1.345-1.068.922-1.915 2.137-1.915 2.137.94-.033 3.033-1.92 3.843-1.737.686.155.21 1.992.873 2.076.904.115 1.708-1.3 2.832-2.29.998-.878 2.383-1.546 3.046-1.329.667.218 1.495 1.52 1.847 2.793.416 1.505.723 3.126 1.414 3.464.686.335 1.282-1.53 1.98-1.295.83.278 1.215 3.118 2.008 3.535 0 0-.06-1.48-.463-2.832-.201-.674-.665-1.677-1.14-2.327-.49-.667-.988-.972-.988-.972-.018.77-.708 1.471-1.062 2.008 0 0-.294-2.945-1.032-4-.57-.815-2.142-1.9-2.13-1.896zm-11.964 10.506c-1.023 1.734.262 3.4 2.33 3.77l-.8 2.04 1.174 2.301 2.141.746 2.025-.8 1.346 1.826 1.88.423 2.418-1.454.967-1.638 1.511-.092 1.291-.62.459-1.608c-1.201.86-2.386 1.702-4.818.69-.07 1.289-.384 2.089-.83 2.545-.532.545-1.252.6-1.965.413-.889-.233-1.65-1.239-2.001-1.771-.88.527-1.631.927-2.175.749-1.137-.371-1.774-1.047-1.96-1.827-.197-.827.113-1.77.87-2.59-4.503-1.19-2.888-2.388-3.863-3.103zm-2.326.583c-.468.664-2.758 4.323-3.618 4.936-1.28.91-2.339.952-2.339.952.646 1.682.822 2.37 3.283 2.695-5.61 4.026-6.246 10.448-1.939 15.919.28-.657 1.242-2.149 1.81-2.722-.06-.047.073 3.162 1.674 4.796.52.53.773 3.48 1.523 4.408.685.847 1.647 1.768 1.647 1.768s.746-2.34 1.841-2.705c1.103-.367 3.161-.956 3.84-1.17 1.367-.43 3.802-3.344 3.802-3.344l-.428 3.562c7.38-2.616 9.064-7.627 7.175-14.388 1.815 1.13 3.808-.35 4.218-.5 0 0-.869-.608-1.457-2.065-.395-.98-.504-2.711-.568-3.52l-.175-2.22s-.835 2.492-1.033 3.185c-.198.694.07 3.16.07 3.16-1.198-.423-2.405-.816-3.462-1.734 0 0 1.268 5.003 1.405 7.386.074 1.288-.365 3.575-.861 4.766-.527 1.262-3.09 3.197-3.09 3.197s.616-3.202.604-4.3c-.017-1.56-.636-5.523-.636-5.523s-.885 4.061-1.589 5.271c-.8 1.378-2.27 3.806-2.27 3.806.412-3.884.206-4.107-.294-5.576 0 0-.92 4.832-2.627 6.908-.426.518-2.043.934-2.967 1.415-1.025.535-1.342 1.11-1.342 1.11s-.967-2.703-1.236-3.328c-.596-1.383-1.779-2.836-2.182-4.286-.592-2.133 2.266-6.718 2.266-6.718-1.058.02-2.117 1.263-3.258 2.633-.933 1.12-1.998 2.3-2.512 3.153 0 0-.914-3.331-.899-4.32.022-1.4.549-2.804 1.269-4.005 1.168-1.95 6.306-5.953 6.306-5.953-1.414.38-2.694.883-5.375.103 0 0 2.121-2.488 2.469-3.073 1.065-1.793.664-2.473.955-3.68zm9.573 2.047c-1.063-.019-2.4.122-2.4.122l.143.92.965.373 1.307 1.944 3.326-.892.442-.762s-1.877-1.394-2.87-1.62a4.81 4.81 0 0 0-.913-.085z' fill='%23e4c900'/%3e%3cpath d='M879.187 264.843c1.815 1.129 3.808-.35 4.219-.502 0 0-.87-.606-1.457-2.063-.395-.98-.532-2.71-.569-3.521-.135-3.014 1.067-3.481 1.106-3.253 0 0 1.997-.685 2.825-1.323.785-.603 1.147-1.652 1.364-2.618.324-1.448-.247-3.576-.247-3.576-2.9-.168-3.638.216-4.318 1.104 0 0-.06-1.48-.463-2.832-.201-.674-.665-1.677-1.14-2.327-.49-.667-.988-.972-.988-.972-.018.769-.709 1.471-1.062 2.007-.328-2.717-.933-4.268-3.162-5.896-2.59.062-4.086 1.32-5.73 3.296-.009-.642-.213-1.606.186-2.263 0 0-.583-.012-1.355.287-.75.291-1.682.887-2.214 1.346-1.068.922-1.916 2.137-1.916 2.137-.048-1.164-.444-1.834-3.043-3.257 0 0-1.628 1.485-2.135 2.88-.337.931-.596 2.01-.26 2.941.353.984 1.667 2.636 1.667 2.636.156-.171.917.87-.821 3.336-.468.664-1.515 2.048-2.376 2.66-1.28.912-2.339.954-2.339.954.646 1.682.823 2.37 3.284 2.695-5.61 4.026-6.246 10.448-1.94 15.918.281-.657 1.243-2.148 1.81-2.721-.06-.048.073 3.161 1.674 4.795.52.53.773 3.48 1.523 4.409.685.846 1.647 1.767 1.647 1.767s.746-2.34 1.841-2.704c1.103-.368 3.161-.956 3.84-1.17 1.368-.432 3.802-3.345 3.802-3.345l-.427 3.562c7.38-2.616 9.064-7.627 7.175-14.387z' fill='none' stroke='%23806600' stroke-width='.697'/%3e%3cpath d='M861.223 242.63s-1.183 1.827-1.008 3.017c.14.946 1.767 3.075 1.767 3.075s1-3.092.843-4.24c-.115-.843-1.602-1.852-1.602-1.852zm4 3.945a1.58 1.58 0 0 0-.646.169c-.441.216-.742.284-.929.938.543-.087.893-.284 1.338-.483.106-.053.27-.053.554.056.568.22 1.357.852 2.228 1.104 1.247.36 2.86-.065 3.496-.134-.069.262-.19 1.032-.467 1.435-.14.205-1.178.601-1.656 1.055a14 14 0 0 0-.67.673c-.198.216-.364.389-.464.661-.2.55-.09 1.134-.09 1.134l.023.312.299.096c1.1.358 1.29.76 1.563 1.616l.043.134.1.079c.116.102.202.184.305.25.103.065.238.12.359.133.24.029.286-.02.51-.007l.19.013.148-.13c.684-.582 1.068-.82 2.191-.544l.294.074.194-.25s.393-.441.513-1.014c.06-.284-.078-.431-.132-.719-.054-.288-.13-.607-.214-.925-.167-.638-.696-1.8-.708-2.05-.022-.487.234-1.138.314-1.397.507.396 1.648 1.732 2.89 2.082.874.247 1.878.126 2.476.24.3.056.437.143.5.244l.882 1.116c.186-.654-.036-1.071-.296-1.488-.261-.416-.492-.37-.913-.45-.84-.16-1.812-.061-2.388-.223-1.417-.4-2.778-1.917-2.778-1.917l-.4-.348-.3.443s-.544.824-.485 2.13c.023.506.524 1.492.688 2.119.081.313.156.617.201.86.046.244.037.445.038.44-.022.11-.127.263-.22.414-1.06-.155-2.235.347-2.891.867-.116.002-.273-.007-.264-.004-.014-.01-.056-.05-.09-.077-.281-.799-1.178-2.025-2.173-2.458.001-.177-.006-.363.032-.469-.002.006.106-.167.273-.35.168-.182.392-.402.626-.625.47-.445 1.452-.882 1.739-1.3.74-1.078.71-2.065.71-2.065l-.028-.537-.523.085s-1.816.58-3.23.17c-.575-.165-1.348-.761-2.147-1.07a1.54 1.54 0 0 0-.615-.108zm-1.918 2.535c-.774 1.045-.896 2.162-.447 3.027.375.72 1.13 1.177 2.012 1.469-.05.141-.064.164-.126.371-.134.45-.273.975-.22 1.484.11 1.04.691 1.878 1.44 2.516.652.558 1.532.792 2.348.752.503-.025.949-.218 1.305-.401.127-.066.14-.082.244-.144.199.406.498.902 1.057 1.289.672.465 1.534.727 2.383.599.972-.148 1.906-.552 2.55-1.379.314-.403.473-.923.596-1.376.045-.161.036-.169.065-.297.947.283 1.842.198 2.518-.268.803-.555 1.239-1.57 1.21-2.778-.692.352-.075 1.382-1.594 2.324-.494.341-1.21.416-2.136 0l-.706-.579.046 1.003s-.061.34-.172.745c-.11.405-.3.878-.43 1.047-.468.6-1.273.9-2.087 1.023-.545.083-1.216-.108-1.704-.446-.467-.323-.893-1.214-.914-1.303l-.23-.97-.49.543c-.12.133-.457.273-.748.423-.291.15-.635.274-.917.288-.593.03-1.272-.165-1.692-.524-.626-.534-1.21-1.428-1.29-2.184-.023-.212.066-.714.187-1.117.12-.403.356-.724.356-.724l.401-.517-.809.05c-.931-.198-1.59-.66-1.867-1.193-1.004-1.111-.097-1.917-.139-2.753zm21.9.365s-1.794.074-2.337.728c-.74.893-1.521 4.045-1.521 4.045s2.505-.949 3.123-1.678c.777-.918.736-3.095.736-3.095z' style='text-indent:0;text-decoration-line:none;text-transform:none' color='%23000' fill='%23806600'/%3e%3cpath d='M867.072 248.081a.996.996 0 0 0-.965.723.996.996 0 0 0 .685 1.23.996.996 0 0 0 1.23-.683.996.996 0 0 0-.684-1.23.996.996 0 0 0-.266-.04zm9.932 2.844a.996.996 0 0 0-.935.722.996.996 0 0 0 .684 1.231.996.996 0 0 0 1.23-.685.996.996 0 0 0-.683-1.23.996.996 0 0 0-.296-.038z' fill='%232b2200'/%3e%3cpath d='M839.961 281.706c-.73.339-1.794-.467-3.97 1.828 1.797-.074 2.387.268 3.54 1.707.767-.113 1.183-.512 1.341-1.04.32-1.06.001-1.98-.91-2.495zm51.148 2.94c-.883.342-2.175-.459-4.803 1.845 2.177-.081 2.894.259 4.296 1.693.927-.116 1.429-.517 1.619-1.045.382-1.062-.006-1.981-1.112-2.493zm-54.916 3.412c-.56.66-1.8.43-3.05 3.58 1.626-.929 2.282-.896 3.811-.127.667-.47.918-1.036.892-1.596-.054-1.128-.647-1.82-1.653-1.857zm55.992 4.888c-.636.7-2.15.561-3.469 3.799 1.91-1.048 2.704-1.064 4.6-.409.777-.519 1.046-1.102.98-1.66-.134-1.12-.892-1.768-2.11-1.73zm-52.04 2.656c-.297-.015-.62.078-.955.285-.229.905-1.408 1.426-1.253 4.917 1.058-1.763 1.645-2.116 3.291-2.332.398-.802.394-1.444.148-1.92-.31-.598-.735-.924-1.23-.95zm111.248.373c-.21.011-.434.07-.67.177-.308.87-1.527 1.231-1.687 4.722 1.21-1.612 1.825-1.886 3.48-1.884.468-.743.523-1.382.321-1.887-.304-.763-.812-1.16-1.444-1.128zm-51.56 2.36c-.359.023-.736.156-1.119.405-.18.93-1.545 1.598-.989 5.05 1.087-1.889 1.756-2.315 3.716-2.74.394-.848.322-1.486-.025-1.928-.435-.555-.983-.825-1.582-.787zm64.578.238c-.602-.055-1.132.325-1.5 1.123.227.906-.514 2.133 1.221 4.927.068-2.177.393-2.867 1.66-4.157-.038-.933-.337-1.463-.76-1.693a1.619 1.619 0 0 0-.621-.2zm-7.12 1.013c-.384.035-.765.27-1.116.706.024.946-.955 1.897.118 5.142.533-2.08.995-2.643 2.497-3.488.165-.913-.009-1.52-.368-1.874-.361-.358-.747-.52-1.131-.485z' fill='%23377bc8' stroke='%232c5aa0' stroke-width='.697'/%3e%3c/g%3e%3c/svg%3e\"},3025:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 2000 1000'%3e%3cpath fill='%2300afca' d='M0 0h2000v1000H0z'/%3e%3cg fill='%23fec50c' transform='translate(1080.472 420)'%3e%3ccircle r='134.55'/%3e%3cg id='c'%3e%3cg id='b'%3e%3cpath id='a' d='M0-152.9c8-.1 11-5.1 11-11.1 0-8-11-46.1-11-46.1S-11-172-11-164c0 6 3 11.1 11 11.1z'/%3e%3cuse xlink:href='%23a' transform='rotate(90)'/%3e%3cuse xlink:href='%23a' transform='rotate(180)'/%3e%3cuse xlink:href='%23a' transform='rotate(270)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(22.5)'/%3e%3cuse xlink:href='%23b' transform='rotate(45)'/%3e%3cuse xlink:href='%23b' transform='rotate(67.5)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='rotate(11.25)'/%3e%3c/g%3e%3cg fill='%23fec50c'%3e%3cpath d='M1056.467 711.467c-3.6.2-7.1.666-10.534 1.766-4.7.634-9.2 2.267-13.866 3.034l-1.867.3-3.133.3c.2.866.333 1.733.333 2.6 0 .9-.1 1.766-.333 2.5-.2.7-.834 1.566-1.334 2.1-.666.733-1.366 1.366-2.2 1.766-.8.4-1.7.567-2.6.634-.9.033-1.833 0-2.7-.334-.9-.3-1.733-.866-2.5-1.533-.933.233-1.9.4-2.8.5-.933.1-1.8.1-2.633 0-.933-.267-1.9-.567-2.8-.933s-1.767-.834-2.6-1.367c-3.4 2-7.2 3.9-9.267 7.4-1.166 1.6-1.4 3.433-1.666 5.333-.167 2.334.433 4.8 1.433 6.967.367.633.667-2.3 1.8-2.7 1.9-1.567 4.267-2.7 6.667-3.333 2.033-1.034 1.766.066.933 1.666-.2.834-1.333 4 .2 2.4 6.767-3 14.267-3.6 21.567-4.166 10.6-1.1 21.233-1.334 31.866-1.467 10 .133 20 .267 30 .633 4.767.134 9.567 1.2 14.267.4 1.133-.3 2.9-.366 3.567-1.033-2.134-1.233-4.634-1.267-7-1.567H1080.2c-5.3-.533-10.833-.6-15.833-2.6-1.334-.533-2.567-1.8-3.834-.433-1.9.667-3.933 1.133-5.933 1.267-3.5.266-7-.467-10.233-1.767 2.333-3.233 5.133-6.067 7.7-9.067-2.067-.333-4.067-.766-6.134-1.266 3.634-2.5 7-5.334 10.534-8z'/%3e%3cpath d='M1212.2 746.01c-7.245 4.35-12.775-3.362-18.831-5.675-4.325 2.349-4.729 10.208-8.77 13.93-4.835 5.502-10.76-1.537-10.319-6.965-5.782 4.874-8.706 15.922-18.057 14.446-4.43-3.615-7.721-11.201-11.106-2.564-2.76 4.222-10.11 10.23-13.916 3.854-1.178-5.63-4-12.25-7.063-3.308-2.102 6.325-8.85 10.978-15.379 8.209-3.574-2.922 2.865-13.727-1.684-12.958-6.8 4.495-10.753 15.658-20.242 14.764-3.685-4.136 2.236-11.144-1.806-15.735-4.77 6.123-10.063 15.089-18.315 15.735-3.988-3.232.157-12.501-2.39-13.873-8.467 5.078-17.401 14.128-28.05 11.294 4.15-15.873 21.49-21.442 36.073-22.68 25.089-3.084 51.484 2.586 75.624-6.47 3.9-2.373 13.35-5.739 9.985-11.243-2.98-4.347 7.753-2.647 8.785-7.724-.639-6.43 4.927-5.545 10.364-6.108 24.376-1.052 48.455 4.082 72.758 4.954 1.836 11.842-11.3 20.157-21.876 16.5-5.052.819-12.627-11.615-11.142-2.57-1.018 4.748-.305 11.018-4.643 14.189m-207.4-24.248c5.643 5.165 9.6-.973 14.875-3.216 17.692-6.085 33.128-16.719 48.346-27.344 9.22-7.63 17.214-17.525 29.597-20 24.155-7.303 49.832-6.417 74.08-13.157 18.465-25.28 49.826-34.299 76.097-48.83 5.899-1.833 8.178-6.688 10.062-12.048 10.028-15.83 23.689-29.857 39.845-39.439 7.644-4.177 16.764-6.582 25.418-4.672-.62 10.307-6.533 19.442-13.672 26.57 5.842-.128 10.863-3.819 16.767-3.611 2.023 10.578-9.4 16.114-15.478 22.7 3.385.787 16.353 1.768 9.286 5.159-9.005 6.25-19.289 10.541-27.602 17.799 7.67 1.378 8.544 3.008.745 5.782-4.222 2.862-12.341 3.862-13.126 9.437 5.794 3.561-2.669 7.097-5.933 8.255-6.242 1.454-12.798 4.165-4.507 8.907-3.136 4.738-9.865 5.749-15.356 5.28 1.666 5.37 4.078 11.379-2.892 13.748-15.624 11.81-33.96 20.402-53.6 22.367 24.535 1.886 49.806-2.668 70.772-16.011 2.768-3.273 17.282-6.79 9.164-9.542-3.822-1.59-12.016-3.357-12.57-6.271 11.355-7.006 25.664-4.514 37.88-8.676.316-3.955-9.292-2.855-12.874-3.755-8.543-.7-8.042-2.88.195-3.688 10.422-2.76 22.226-3.303 30.993-10.098-7.138-3.307-16.116-.396-23.732-3.096 12.911-5.65 28.142-6.217 39.726-14.704 5.277-5.87-6.76-4.036-10.267-3.893-7.15 1.245-10.456-2.178-2.332-5.149 13.87-10.227 31.433-16.87 41.176-31.697 2.308-3.319 5.433-13.319-1.928-9.722-9.68 3.219-18.198 14.101-29.228 10.735 21.733-16.844 42.413-36.02 57.267-59.33.768-6.723-9.785-7.45-12.532-2.172-13.963 13.454-26.6 29.335-44.477 37.77 17.121-16.525 31.276-36.092 43.626-56.372 2.648-6.032 9.764-13.286 5.902-19.983-6.225-5.153-14.013-.436-17.248 5.73-10.854 14.17-19.096 30.709-33.054 42.25 12.22-23.321 24.871-48.147 25.18-75.046-.038-5.538-1.15-13.694-8.67-12.66-5.962 1.069-4.546 9.992-7.004 14.505-5.411 18.377-7.951 38.279-19.05 54.37 2.497-14.933 6.866-30.5 3.512-45.58-1.567-6.739-12.45-3.84-11.048 2.83-13.002 65.86-57.194 123.46-114.99 156.78-26.464 14.973-56.023 24.626-86.096 29.002-8.09 1.771-16.84.732-24.572 3.49-18.736 14.367-30.08 38.407-53.802 45.935-10.632 5.284-24.496 6.356-32.098 16.233-.658 1.263-.8 2.727-.774 4.128'/%3e%3cpath d='M1075.8 654.95c-3.5 6.354-5.56 13.658-10.06 19.347-13.541-12.321-33.171-11.914-50.347-12.734-14.177-.757-29.594-2.065-40.563-12.176-11.539-9.452-20.958-21.724-33.852-29.393-11.769-3.2-23.633-7.204-33.095-15.271-20.22-16.482-31.8-40.937-51.558-57.933-3.767-3.708-8.209-6.581-12.429-9.727-4.01.977-2.195 9.631-7.102 5.22-2.67-1.9-9.348-2.085-9.95.569 6.041 7.96 12.088 17.049 12.925 27.23-4.12.422-11.445-.87-13.487.664 5.471 8.2 12.484 15.473 20.452 21.263-3.822.614-11.353.28-12.818 1.82 7.909 6.446 16.39 13.034 26.747 14.69 2.12 2.794-3.1 8.19 1.29 10.576 2.545 1.04 10.944 2.78 5.159 5.675-3.97 2.675-2.497 8.91 2.58 8.77 3.21 1.64 10.417 2.041 10.981 4.88-2.845 2.895-11.698 6.328-4.163 9.04 7.039 3.904 15.067 6.439 23.105 6.717-4.034 3.394-9.004 5.32-13.156 8.513 18.55 10.877 39.113 18.03 59.433 24.919 8.09 2.703 16.274 5.223 24.66 6.81-24.368-1.407-47.921-8.621-70.115-18.495-11.503-5.045-23.084-9.92-34.873-14.265 5.169-2.69 11.148-3.347 16.509-5.675-11.128-2.23-23.285-2.96-33.067-9.077 1.5-2.676 7.183-2.802 10.326-4.164 5.911-1.416 9.578-3.134 1.243-3.648-8.405-2.281-18.045-1.257-25.452-6.328.477-3.04 8.229-1.98 11.386-3.293 3.976-.683 8.396-1.255 11.573-3.93-12.994-5.387-29.99-1.57-40.168-13.045-2.347-4.372 7.289-.85 10.033-1.579 6.973 0 14.467 2.216 21.107-.595-18.934-8.313-39.215-16.095-53.655-31.471-1.603-2.472-6.407-9.225-2.531-10.06 11.239 1.487 19.374 13.753 31.396 11.844 1.597-2.153-6.984-5.681-9.126-8.758-17.528-15.041-34.54-31.364-46.825-51.066-.845-6.58 9.497-7.565 12.22-2.484 13.405 12.911 25.514 27.977 42.21 36.791 5.924 2.873-3.402-3.4-4.644-5.675-15.427-17.914-30.113-36.834-40.895-57.932-1.93-3.802-5.128-10.686.646-12.71 5.773-2.892 11.501 1.048 14.428 6.007 11.342 14.305 19.688 31.307 33.817 43.225-12.037-23.359-24.889-47.948-25.2-74.828.283-5.21.618-13.092 7.684-12.878 5.933-.9 4.996 6.696 6.94 10.318 5.846 19.747 8.395 41.121 20.122 58.556-2.59-14.649-6.403-29.735-3.87-44.627.584-4.89 6.089-6.37 9.682-3.414 2.905 7.11 3.51 15.89 6.157 23.491 15.06 51.52 48.875 96.832 92.941 127.24 36.292 24.891 79.362 39.75 123.32 42.341 3.97.346 7.956.466 11.932.71'/%3e%3ccircle cx='1020' cy='720.887' r='2.367'/%3e%3ccircle cx='1019.8' cy='720.507' r='.965' stroke='%2300afca' stroke-width='.381'/%3e%3c/g%3e%3cg fill='%23fec50c'%3e%3cg id='f'%3e%3cg id='e'%3e%3cpath d='M120 72.922s-9.61-8.076-12.874-4.025c-5.25 6.515 16.14 38.968 16.14 50.396 0 18.759-12.517 23.86-27.973 26.539-10.371 1.798-27.259-.752-27.259-.752 3.18-4.273 5.248-5.532 10.606-5.873-5.965-3.097-12.039-9.82-12.039-20.284 0-16.138 6.643-22.79 6.643-40.983 0-10.093-8.276-22.941-8.276-22.941 14.629 1.464 21.879 15.009 17.754 25.834 2.328.335 4.442-.19 6.258-1.91 1.07 3-.62 6.483-2.883 9.484 1.823.974 3.162.39 6.066-.21-.276 3.092-2.128 6.376-6.66 9.468 13.151-3.415 21.243 5.751 21.243 15.347 0 7.248-5.079 12.443-10.044 12.443-1.604 0-3.961-.661-5.29-1.654-.938 1.995-.455 4.665.51 6.66-3.638-.962-5.948-3.123-4.304-7.621-2.795-.257-5.018-1.201-6.53-3 1.532-1.963 3.857-3.093 6.53-3.001-2.035-4.2.233-6.55 3.538-8.456 0 0-2.102 8.456 3.265 8.456 2.413 0 4.612-.786 4.612-4.343 0-3.097-2.707-7.387-8.966-7.114-6.258.273-11.332 4.315-11.332 14.306 0 9.216 7.434 13.8 17.23 14.096 8.833.273 15.5-4.512 15.5-13.625 0-12.128-17.508-39.773-17.508-50.58 0-8.11 7.292-12.636 14.427-12.636 9.252 0 17.058 9.161 17.058 9.161l-5.435 6.815z'/%3e%3cpath id='d' d='M122.02 292.14c0 20.27-18.198 30.688-32.498 30.688-19.266 0-29.524-11.519-29.524-26.598 0-8.548 1.566-13.911 5.507-22.092 0 0 31.78-66.091 44.153-91.653 1.543-3.188 2.041-6.818 2.041-12.138 0-8.217-7.97-14.933-16.327-15.139-7.618-.19-15.918 7.102-15.918 15.412 0 10.093 5.236 14.593 10.612 14.593 6.616 0 9.252-2.72 9.252-7.365 0-3.237-1.563-4.637-3.81-4.637-5.674 0-4.081 7.638-4.081 7.638-2.818-.617-5.134-3.497-3.81-7.093a10.23 10.23 0 0 1-5.51-3.273c1.521-1.475 3.266-2.613 5.51-3-1.329-4.388.447-6.531 4.286-7.433-.775 1.687-.801 3.24-.544 4.705 6.043-1.719 15.306 1.016 15.306 11.456 0 10.365-7.194 19.093-20.681 16.912 3.208 1.534 4.84 4.673 5.17 8.183-2.45-.954-5.17-1.09-5.17-1.09 1.577 2.78 3.767 5.177 3.673 10.637-2.5-1.137-4.823-3.242-8.027-1.91 5.03 9.898-1.15 23.512-16.871 26.733 5.754-6.745 8.571-14.027 8.571-21.277 0-23.496-6.53-27.445-6.53-43.78 0-6.835 3.513-14.215 10.476-19.231v.273c-4.602-1.233-7.55-3.499-9.245-6.578 10.515-2.982 25.8-2.927 34.006.302 9.434 1.093 16.02 8.33 17.96 12.004 1.94 3.67 5.709 16.953 0 28.912-6.25 13.088-35.712 75.56-44.898 95.198-1.948 4.165-3.13 8.583-3.13 13.366 0 12.03 11.02 16.23 17.28 16.23 7.483 0 15.102-5.7 15.102-12.82 0-4.511-2.45-7.228-5.987-7.228-8.458 0-7.944 7.195-6.258 11.729-5.264-2.367-8.324-6.592-7.483-11.047-2.98-.409-5.817-1.822-8.435-4.774 2.06-2.6 4.572-4.567 8.435-4.637-1.687-6.912 2.94-9.835 7.483-11.456-1.437 5.073-2.38 10.911 6.258 10.911 6.3 0 11.258 1.091 14.15 5.183.17-5.456.68-27.005.68-27.005.364-8.098-10.838-7.867-17.958-5.456 2.687-9.327 8.198-14.37 20.952-13.093-3.096-1.295-6.395-4.208-6.395-9.82.002-7.593 6.162-16.005 10.206-18.492l2.022 79.051z'/%3e%3cuse xlink:href='%23d' transform='matrix(1 0 0 -1 0 645.08)'/%3e%3c/g%3e%3cuse xlink:href='%23e' transform='matrix(-1 0 0 1 240 0)'/%3e%3c/g%3e%3cuse xlink:href='%23f' transform='matrix(1 0 0 -1 0 1000)'/%3e%3c/g%3e%3c/svg%3e\"},5984:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 400'%3e%3cpath fill='%23ce1126' d='M0 0h600v400H0z'/%3e%3cpath fill='%23002868' d='M0 100h600v200H0z'/%3e%3ccircle fill='%23fff' cx='300' cy='200' r='80'/%3e%3c/svg%3e\"},2012:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 750 500'%3e%3cpath fill='%23ed1c24' d='M0 0h750v500H0z'/%3e%3cpath fill='%23fff' d='M0 125h750v250H0z'/%3e%3cpath fill='%2300a651' d='M371.59 125c-5.367 11.3-15.473 19.198-25.132 26.672-1.589 1.387-5.54 4.075-2.673 6.12 2.455-2.744 9.195.89 5.278 3.841-3.509 3.285-8.34 4.487-12.236 7.197-3.45 1.874-6.949 3.832-9.685 6.701-.186 4.482 5.562 2.001 7.894 3.869 3.038 3.247-1.288 8.721-5.274 7.47-5.097.155-8.618 4.64-10.545 8.92-3.987 6.165-11.543 7.99-17.557 11.499-3.442 2.006-6.781 4.226-9.985 6.567-4.131 2.824-.537 8.416 3.858 7.044 4.744-.473 9.013-4.201 13.925-3.127 4.455 1.565 5.705 7.387 4.187 11.452-1.124 3.254-3.85 5.547-6.032 8.089-3.545 3.59-8.18 5.921-13.067 7.033-4.723 1.585-8.968 4.479-12.066 8.385-3.596 3.62-7.178 7.299-11.31 10.317-1.306 3.332 2.378 6.17 5.45 6.08 6.472-.407 10.958-5.704 16.47-8.426 4.575-2.056 9.958 2.874 8.84 7.64-.355 4.636-4.696 6.989-8.555 8.415-11.346 5.704-21.197 13.975-29.944 23.1-1.81 3.69-6.783 2.605-9.46 5.177-1.745 3.255 2.633 4.972 5.245 4.637 11.225-1.35 21.7-6.094 31.622-11.315 3.69-1.764 7.155-4.086 10.992-5.492 3.603-.89 8.628.677 9.273 4.778-.005 4.33-4.294 6.727-7.691 8.419-10.475 5.503-21.971 8.546-33.168 12.184-4.191-1.172-7.349 6.285-2.75 7.626 4.861 1.668 10.03.33 15.004.112 15.378-2.356 28.828-10.677 43.204-16.057 5.976-1.948 13.03.77 15.98 6.37 2.963 4.992 2.692 11.556-.434 16.406-4.94 10.568-12.45 20.282-22.531 26.358-6.329 3.133-13.716 4.332-19.14 9.129-5.016 1.653 2.515 8.431 3.604 3.052 3.014-4.111 8.33-5.34 13.153-5.51 7.247-.789 14.943-2.126 20.574-7.143 5.049-3.92 10.024-9.328 16.879-9.413 3.788.45 7.535 3.494 11.383 1.636 3.366-1.54 8.648-.638 9.527 3.502 1.607 4.842 6.598 7.045 10.556 9.636 1.433 2.012 6.193 7.2 7.29 2.626-.885-3.263.38-8.255 4.66-7.165 3.739.167 7.301 1.546 11.033 1.772 4.969 1.029 9.113 4.43 11.935 8.538 1.94 2.68 6.192 7.286 9.351 3.732 1.96-3.676-1.781-6.742-4.828-8.055-4.442-2.752-8.24-6.418-12.123-9.89-5.724-5.345-10.669-12.145-11.577-20.132-1.232-7.963-.584-16.085.455-24.027 1.308-5.113 7.847-7.904 12.418-5.187 6.433 2.935 12.821 7.135 20.196 6.68 10.657.229 21.608-1.812 32.022 1.277 10.135 3.192 17.38 11.744 27.253 15.445 2.21 1.343 5.037.065 5.847-2.295.978-2.121.288-4.835-1.756-6.044-11.441-11.549-27.078-17.16-40.315-26.184-4.168-1.058-4.927-7.763-1.074-9.7 5.065-3.68 12.232-1.967 16.726 1.829 3.795 2.223 8.07 3.888 12.523 3.892 4.561-1.428 2.35-8.027-1.734-8.524-7.399-4.177-12.698-11.033-19.109-16.466-3.69-3.125-7.73-6.29-12.69-6.896-2.711-.493-5.485-.601-8.232-.417-2.576-2.8.857-7.087 4.188-6.736 3.419.23 6.818.484 10.232.008 3.815-.28 7.627-.674 11.455-.7 3.091 2.104 9.267-1.531 6.478-5.16-3.047-2.67-7.454-2.438-11.095-3.808a171.078 171.078 0 0 0-19.497-5.125c-4.612-.275-4.043-6.344.01-7.014 2.652-.989 4.958 1.049 7.504 1.365 4.348.934 8.838.922 13.184 1.87 3.685-1.82.836-7.203-2.497-7.517-7.866-2.813-14.663-7.889-21.308-12.827-7.337-5.518-13.993-11.899-21.42-17.289-2.694-1.67-7.111-2.15-7.82-5.851-.25-3.405 3.757-4.955 6.598-4.16 4.03 1.19 7.786 3.263 11.894 4.281 3.223.548 6.545 1.501 9.652 1.095 3.943-2.477-1.691-4.06-3.73-4.92-5.258-2.836-9.93-6.614-14.66-10.216-4-3.413 3.39-4.92 5.932-3.607 4.25 1.778 4.734-4.415 1.558-5.973-3.743-1.592-6.962-4.234-10.356-6.538-6.133-4.365-13.079-7.821-20.618-8.781-8.452-.85-16.34-5.71-20.825-12.938-2.78-4.119-4.82-8.674-6.794-13.218zm-27.758 47.418c4.356.129 3.687 7.98-.602 7.456-4.165-.268-3.91-8.3.602-7.456zm41.09 4.228c4.24-.759 5.137 6.977.902 7.34-4.413.79-6.048-7.83-.902-7.34zm-12.035 1.008c4.298.845 3.533 8.332-.804 8.397-3.173.707-6.593 2.872-9.803 1.25-2.61-2.762 1.163-6.845 4.077-7.742 2.235-.45 4.291-1.466 6.53-1.905zm27.699.032c4.14 1.511 2.68 8.822-1.688 8.729-4.13.553-6.054-6.338-2.202-7.972 1.247-.442 2.553-.815 3.89-.757zm-46.725 8.294c3.045 2.898 1.247 8.49-2.508 9.827-2.706 1.506-6.396 5.067-9.344 2.137-1.6-3.58 2.415-6.275 4.777-8.261 2.107-1.639 4.433-3.126 7.075-3.703zm34.778 16.163c4.36 2.059 2.147 9.916-2.638 9.428-3.93-.996-3.417-7.737.541-8.274.749-.287 1.435-.708 2.097-1.154zm-13.834.78c4.077 1.91.964 8.715-3.143 7.734-4.259-.5-4.18-7.987.516-7.31.885-.045 1.799-.067 2.627-.423zm29.822 3.903c4.469-1.386 9.85 3.218 8.4 7.887-1.992 3.62-6.918 4.078-10.446 2.725-4.051-.2-6.776-6.29-3.167-8.87 1.494-1.127 3.376-1.59 5.213-1.742zm-66.016 1.171c3.695-2.01 7.619 4.032 4.476 6.698-2.081 3.06-7.427 4.31-9.784.907-1.958-3.324 1.208-8.909 5.308-7.605zm-17.05 2.862c4.192.574 6.924 4.381 8.473 8.007.378 4.418-6.141 6.842-8.985 3.627-3.198-2.006-5.997-6.132-4.32-9.96 1.032-1.521 3.09-2.149 4.832-1.674zm102.003 15.969c4.55-1.2 7.853 6.071 3.946 8.702-3.572 3.244-10.516-1.054-8.654-5.683.926-1.716 2.778-2.857 4.708-3.02zm-57.904 8.293c3.815.486 2.58 7.097-.948 6.875-3.786-.701-2.919-7.248.948-6.875zm-19.35 3.512c3.111-2.201 7.124 3.172 4.536 5.676-3.102 2.185-7.126-3.103-4.536-5.676zm30.766.65c3.606 2.192 5.747 6.278 6.196 10.4-1.729 3.853-8.403 2.924-9.156-1.178-1.32-3.244-.103-7.417 2.96-9.221zm10.737 6.375c4.648-1.167 2.98 8.547-.9 5.177-1.29-1.53-.6-4.05.9-5.177zm-67.432 6.765c3.078-.901 7.564.046 8.413 3.578.359 3.32-3.291 5.046-5.966 5.869-4.287 1.322-8.48 3.494-13.09 3.202-3.454-1.975-4.695-6.016-5.927-9.541 3.335-3.127 8.245-2.21 12.38-2.992a95.993 95.993 0 0 1 4.19-.116zm104.6 15.22c3.925-1.924 8.146 4.307 4.86 7.217-4.11 4.732-12.025 5.61-16.94 1.636-.591-4.187 3.591-7.228 7.307-7.83 1.563-.44 3.116-1.1 4.772-1.023zm22.063 4.781c4.46-.767 7.974 5.596 4.789 8.889-3.015 4.545-10.204 5.737-14.314 2.011-1.602-3.768 1.648-7.695 5.108-8.904 1.487-.633 2.895-1.444 4.417-1.996zm-110.94 6.765c4.13-.408 7.914 3.69 7.372 7.763 2.99 2.942-2.305 8.424-5.284 5.377-2.625-3.18-2.611-7.496-3.628-11.303-.045-.846.58-1.94 1.54-1.837zm31.71 2.374c4.27-1.846 9.795 3.263 7.47 7.588-1.66 3.522-8.136 2.341-7.92-1.739-.012-1.952-.17-3.953.45-5.849zm-15.428 2.764c4.282-.981 8.21 4.57 5.831 8.273-4.269.38-6.485-4.687-5.83-8.273z'/%3e%3c/svg%3e\"},9875:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300'%3e%3cpath fill='%236Cf' d='M0 0h600v300H0z'/%3e%3cpath fill='%23FFF' d='m200 274 100-14 100 14L300 27z'/%3e%3cpath d='m213.5 274 86.5-14 86.5 14L300 60z'/%3e%3cpath fill='%23FCD116' d='M200 274h200L300 150z'/%3e%3c/svg%3e\"},325:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1000 600'%3e%3cpath fill='%23002b7f' d='M0 0h1000v600H0z'/%3e%3cpath fill='%23ce1126' d='M0 300h1000v300H0z'/%3e%3cg fill='%23ffd83d' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cg id='a'%3e%3cpath d='m216.377 122.289-1.838 62.5h-63.42c-7.802-15.169-14.246-28.052-14.246-45.497 0-14.6 11.483-26.195 28.033-26.195 17.52 0 36.77 5.904 51.471 9.192z' stroke='none'/%3e%3cg stroke-width='1.5'%3e%3cpath d='M144.456 125.16v36.076m5.094-39.756v48.033m5.093-50.561v57.225m5.093-58.407v44.882m5.094-45.104v45.327m5.093-46.91v46.885m5.094-46.885v46.885m5.093-46.426v46.885m5.094-46.425v46.885m5.093-43.899v46.886m5.093-46.426v52.86m5.094-52.86v46.886m5.093-46.886v46.886'/%3e%3cpath d='M176.395 117.923c10.764 1.775 34.407 12.837 31.71 27.803-3.821 21.21-16.208 12.698-32.629 9.65l-12.408 4.137c-4.44 4.532-10.978 8.683-15.395 3.217h-7.353v28.722h81.342V122.06z' fill='%23000'/%3e%3c/g%3e%3ccircle cx='212.815' cy='112.983' r='4.94'/%3e%3ccircle cx='201.713' cy='110.311' r='4.94'/%3e%3ccircle cx='190.45' cy='107.482' r='4.94'/%3e%3ccircle cx='179.143' cy='105.596' r='4.94'/%3e%3ccircle cx='167.836' cy='104.481' r='4.94'/%3e%3ccircle cx='156.749' cy='105.113' r='4.94'/%3e%3ccircle cx='146.179' cy='108.732' r='4.94'/%3e%3ccircle cx='137.276' cy='115.28' r='4.94'/%3e%3ccircle cx='130.957' cy='124.414' r='4.94'/%3e%3ccircle cx='127.912' cy='135.156' r='4.94'/%3e%3ccircle cx='128.027' cy='146.301' r='4.94'/%3e%3ccircle cx='130.152' cy='157.215' r='4.94'/%3e%3cpath d='m214.998 119.531-.46 6.434c-12.29-1.883-29.714-8.732-45.955-8.732-15.006 0-26.654 6.003-26.654 21.14 0 14.919 6.317 28.485 14.705 42.28l-8.731 4.136c-7.803-15.169-14.247-28.052-14.247-45.497 0-14.6 11.484-28.952 31.25-28.952 17.52 0 35.39 5.904 50.092 9.191z'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 443.938 0)'/%3e%3cpath d='m221.969 53.125-5.156 9.656 5.156 9.625 5.156-9.625-5.156-9.656zm0 24.375-5.156 9.625 5.156 9.656 5.156-9.656-5.156-9.625zm-18.382-2.547 8.132 5.156 8.105-5.156-8.105-5.156-8.132 5.156zm20.526 0 8.106 5.156 8.131-5.156-8.131-5.156-8.106 5.156z'/%3e%3ccircle cx='221.969' cy='75.069' r='3.906'/%3e%3ccircle cx='221.969' cy='100' r='10.455'/%3e%3cpath d='M219.344 89.875c0 3.114-.022 4.924-.031 6.625-2.52.112-5.006.377-7.438.781m20.188 0a62.126 62.126 0 0 0-7.438-.781v-6.625m-12.781 12.688a61.391 61.391 0 0 1 10.125-.844c3.45 0 6.83.293 10.125.844' fill='none' stroke-width='1.5'/%3e%3cpath d='M211.75 117.688c-.992 17.082-3.009 34.479-9.656 47.124l10.812-4.375c3.777-14.328 4.57-32.842 5.719-41.593l-6.875-1.156zm20.438 0-6.875 1.156c1.148 8.75 1.942 27.265 5.718 41.594l10.813 4.375c-6.648-12.646-8.665-30.043-9.656-47.125z'/%3e%3cpath d='M221.953 154.688c-12.913 0-22.399 6.086-22.969 21.593-3.156-5.555-16.51-23.025-28.968-20.687-7.41 1.39-13.957 11.666-12.844 23.437-6.135-17.63-24.107-20.519-37.219-10.094 11.642 9.573 16.821 37.835 26.625 50.094h150.75c9.804-12.259 15.014-40.521 26.656-50.094-13.112-10.425-31.083-7.536-37.218 10.094 1.113-11.771-5.466-22.047-12.875-23.437-12.459-2.338-25.781 15.132-28.938 20.687-.57-15.507-10.086-21.594-23-21.594z'/%3e%3cg stroke-width='1.5'%3e%3cpath d='M297.107 219.026c0 5.58-33.662 11.718-75.138 11.718-41.476 0-75.138-6.137-75.138-11.718s33.662-8.502 75.138-8.502c41.476 0 75.138 2.92 75.138 8.502z' fill='%23000'/%3e%3ccircle cx='221.969' cy='114.445' r='3.504'/%3e%3ccircle cx='221.969' cy='122.027' r='3.734'/%3e%3ccircle cx='221.969' cy='130.184' r='4.079'/%3e%3ccircle cx='221.969' cy='139.261' r='4.653'/%3e%3ccircle cx='221.969' cy='149.371' r='5.113'/%3e%3cpath d='M219.938 159.206c-.553-.007-1.076.459-.938 1.344.163 1.043.367 2.995.563 4.312.22 1.493 1.09 1.13 1.312-.031.221-1.161.132-1.906.188-4.063.027-1.078-.573-1.555-1.125-1.562zm4.062 0c-.553.007-1.153.484-1.125 1.562.055 2.157-.034 2.902.188 4.063.22 1.161 1.091 1.524 1.312.031.195-1.317.4-3.269.563-4.312.138-.885-.385-1.351-.938-1.344zm-7.687.562c-.506.07-1.03.58-1 1.125.055.996.33 2.19.437 3.688.11 1.548 1.202.947 1.313.062.11-.884.235-2.192.125-3.906-.042-.643-.323-.925-.657-.969a.842.842 0 0 0-.218 0zm11.093 0c-.334.043-.615.326-.656.97-.11 1.713.015 3.02.125 3.905.11.885 1.202 1.486 1.313-.062.107-1.499.382-2.692.437-3.688.03-.544-.494-1.054-1-1.125a.842.842 0 0 0-.219 0zm-15.437 1.75c-.463.12-.889.677-.75 1.313.276 1.272.531 2.678.531 3.969 0 1.106.945.711 1-.063a59.74 59.74 0 0 0 .156-3.906c0-1.115-.474-1.432-.937-1.313zm19.687 0c-.329.091-.625.477-.625 1.313 0 1.493.102 3.132.157 3.906.055.774 1 1.169 1 .063 0-1.291.254-2.697.53-3.97.14-.635-.286-1.192-.75-1.312a.551.551 0 0 0-.312 0zm-59.093.171c-.555-.018-.943.734-.563 1.563.608 1.327 1.254 2.165 1.875 3.594.553 1.271 1.401.478 1.125-.407-.277-.884-.577-1.87-1.406-3.75-.311-.705-.699-.989-1.031-1zm98.812 0c-.332.011-.72.295-1.031 1-.83 1.88-1.13 2.866-1.406 3.75-.277.885.571 1.678 1.125.407.62-1.43 1.266-2.267 1.875-3.594.38-.83-.009-1.581-.563-1.563zm-94.812.063c-.408.124-.656.642-.407 1.25.498 1.216 1.217 2.463 1.719 3.781.442 1.161 1.426.832 1.094-.219-.332-1.05-.43-1.665-1.094-3.656-.332-.995-.905-1.28-1.312-1.156zm90.5 0c-.35.074-.752.41-1 1.156-.664 1.99-.763 2.606-1.094 3.656-.332 1.05.651 1.38 1.094.22.502-1.319 1.22-2.566 1.718-3.782.25-.608.002-1.126-.406-1.25a.592.592 0 0 0-.312 0zm-85.5.969c-.515.097-.913.882-.563 1.843.443 1.217 1.072 2.368 1.625 3.75.553 1.383 1.471 1.104 1.25.22-.221-.886-.492-2.352-1.156-4.563-.29-.968-.757-1.327-1.156-1.25zm80.812 0c-.4-.077-.866.282-1.156 1.25-.664 2.211-.935 3.677-1.156 4.562-.222.885.696 1.164 1.25-.219.553-1.382 1.182-2.533 1.625-3.75.35-.961-.049-1.746-.563-1.843zm-93.187.687c-.557.057-1.065.965-.72 1.656.554 1.106.904 1.483 1.438 2.657.553 1.216 1.159.274.938-.5-.222-.775-.505-1.676-.781-2.782-.203-.81-.541-1.065-.875-1.03zm105.562 0c-.334-.034-.672.221-.875 1.031-.276 1.106-.56 2.007-.781 2.782-.222.774.384 1.716.937.5.534-1.174.884-1.55 1.438-2.657.345-.69-.162-1.599-.719-1.656zm-67.031 2.798c-.584 0-1.208.774-1 1.5.331 1.161.844 2.19 1.219 3.687.331 1.327 1.274.666 1.218-.218-.055-.885-.207-2.089-.593-3.97-.146-.704-.494-.999-.844-1zm28.5 0c-.35 0-.699.295-.844 1-.387 1.88-.538 3.084-.594 3.969-.055.884.887 1.545 1.219.218.374-1.496.887-2.526 1.219-3.687.207-.726-.416-1.5-1-1.5zm-14.25 1.187c-.72 0-.819.966-.844 1.75-.083 2.572-1.15 5.069-2.062 6.313-.913 1.244-2.256.913-3.5.25-1.245-.664-1.986-1.16-3.313-2.156-1.327-.996-2.334-.414-.75 1.843 4.617 6.58 9.625 12.205 9.625 22.938 0 1.388.242 1.812.844 1.812.601 0 .875-.424.875-1.812 0-10.733 4.976-16.357 9.594-22.938 1.583-2.257.577-2.839-.75-1.843-1.327.995-2.069 1.492-3.313 2.156-1.244.663-2.588.994-3.5-.25-.913-1.244-1.98-3.741-2.062-6.313-.026-.784-.125-1.75-.844-1.75zm-35.281-1.61a.6.6 0 0 0-.188.031c-.269.085-.448.41-.344.97.186 1.001.88 2.966 1.157 3.905.276.94 1.432.74 1.156-.53-.277-1.273-.262-1.657-.594-3.095-.181-.786-.747-1.269-1.187-1.28zm70.562 0c-.44.012-1.006.495-1.187 1.281-.332 1.438-.318 1.822-.594 3.094-.277 1.272.88 1.472 1.156.531.276-.94.97-2.904 1.156-3.906.104-.56-.075-.884-.343-.969a.6.6 0 0 0-.188-.03zm-91.531.406c-.579.046-.994.773-.406 1.844.633 1.157 1.72 2.608 2.218 3.438.498.829 1.359.27.75-.782-.608-1.05-.812-2.257-1.531-3.75-.27-.56-.684-.777-1.031-.75zm112.5 0c-.348-.027-.762.19-1.031.75-.72 1.493-.924 2.7-1.532 3.75-.608 1.051.253 1.61.75.782.498-.83 1.585-2.281 2.219-3.438.588-1.071.173-1.798-.406-1.844zm-144.188 3.33c-.668-.036-.877 1.17-.25 1.968.913 1.161 1.548 1.777 2.594 2.719.83.746 1.07-.222.656-.969-.414-.746-1.014-1.505-1.843-2.75-.455-.682-.853-.952-1.157-.969zm175.875 0c-.303.016-.701.286-1.156.968-.83 1.245-1.43 2.004-1.844 2.75-.414.747-.173 1.715.657.969 1.046-.942 1.68-1.558 2.593-2.719.627-.798.418-2.004-.25-1.969zm-170.843 1c-.533.006-.884.4-.47 1.312.595 1.306 1.378 2.786 1.876 3.781.497.995 2.014 1.33 1.406-.219-.608-1.548-.728-2.343-1.281-3.78-.277-.72-1-1.102-1.531-1.095zm165.812 0c-.532-.008-1.255.374-1.531 1.093-.553 1.438-.673 2.233-1.281 3.781-.609 1.549.908 1.214 1.406.22.498-.996 1.28-2.476 1.875-3.782.414-.913.063-1.306-.469-1.313zm-175.562.343c-.774.008-.84.784-.157 1.281.913.664 2 1.4 3.063 2.25 1.244.996 1.726.08 1.062-.75-.663-.829-1.31-1.67-2.968-2.5-.415-.207-.743-.284-1-.28zm185.312 0c-.258-.002-.585.074-1 .281-1.659.83-2.305 1.671-2.969 2.5-.663.83-.181 1.746 1.063.75 1.062-.85 2.15-1.586 3.062-2.25.684-.497.618-1.273-.156-1.28zm-109.656.719c-.433.06-.807.552-.625 1.187.331 1.161.708 2.392.937 3.594.222 1.162 1.565 1.176 1.344.125-.22-1.05-.332-2.365-.719-3.969-.145-.601-.448-.89-.75-.937a.637.637 0 0 0-.187 0zm33.812 0c-.301.047-.605.336-.75.937-.386 1.604-.498 2.919-.718 3.97-.222 1.05 1.122 1.036 1.343-.126.23-1.202.606-2.433.938-3.594.181-.635-.192-1.127-.625-1.187a.637.637 0 0 0-.188 0zm-63.906-1.985c-.34.094-.536.744-.281 1.656 1.41 5.06 1.842 7.724 1.594 8.969-.25 1.244-.932 1.414-1.844 1a18.844 18.844 0 0 1-2.813-1.594c-.829-.581-1.692.114-.5 1.094 6.055 4.976 10.252 10.664 11.875 17.562.332 1.41 1.218 1.576.969 0-1.372-8.69-1.636-15.833.438-20.312.779-1.684-.006-3.3-1.25-.563-.83 1.825-2.172 2.545-3.25.969-1.079-1.576-3.306-5.78-3.97-7.688-.248-.715-.555-1.046-.812-1.093a.354.354 0 0 0-.156 0zm94.031 0c-.256.047-.563.378-.812 1.093-.664 1.908-2.89 6.112-3.969 7.688-1.079 1.576-2.42.856-3.25-.969-1.244-2.737-2.03-1.12-1.25.563 2.074 4.479 1.81 11.622.438 20.312-.25 1.576.637 1.41.968 0 1.623-6.898 5.82-12.586 11.875-17.562 1.192-.98.33-1.675-.5-1.094-.829.58-1.9 1.179-2.812 1.594-.912.414-1.595.244-1.844-1-.249-1.245.184-3.91 1.594-8.97.254-.911.058-1.561-.281-1.655a.354.354 0 0 0-.157 0zm-124.468 2.422c-.547.007-1 .39-.75 1.22.398 1.328 1.223 2.764 1.5 3.593.276.83 1.165.442 1-.719-.166-1.16-.248-1.853-.47-3.125-.11-.636-.734-.976-1.28-.969zm155.062 0c-.546-.007-1.17.333-1.281.97-.222 1.271-.303 1.963-.469 3.124-.166 1.161.723 1.548 1 .719.276-.83 1.101-2.265 1.5-3.594.249-.83-.204-1.212-.75-1.219zm-136.281-1.735c-.635-.114-.727 1.524-.188 2.188.72.885 1.718 1.954 2.719 3.156.83.995 1.342.11.844-.719-.498-.83-1.236-1.711-2.563-3.812-.332-.526-.6-.775-.812-.813zm117.5 0c-.212.038-.48.287-.813.813-1.327 2.1-2.065 2.982-2.562 3.812-.498.83.014 1.714.844.719 1-1.202 2-2.271 2.718-3.156.54-.664.448-2.302-.187-2.188zm-132 3.954c-.394-.028-.729.292-.563 1.094.232 1.116.567 2.043.844 3.094.276 1.05 1 .87 1-.125 0-.996-.178-2.106-.344-3.157-.083-.525-.543-.878-.937-.906zm146.5 0c-.394.028-.855.381-.938.906-.166 1.051-.344 2.161-.343 3.157 0 .995.723 1.175 1 .125.276-1.051.612-1.978.843-3.094.166-.802-.168-1.122-.562-1.094zm-133.406 1.421c-.62.094-1.164.692-.438 1.625 1.161 1.493 2.432 2.54 2.875 3.094.442.553 1.563.349.844-.813-.735-1.186-1.846-2.615-2.344-3.5-.187-.331-.566-.462-.937-.406zm120.062 0c-.272.029-.548.158-.687.406-.498.885-1.61 2.314-2.344 3.5-.72 1.162.401 1.366.844.813.442-.553 1.713-1.601 2.875-3.094.725-.933.18-1.531-.438-1.625a.889.889 0 0 0-.25 0zm-140.719 4.173c-.488-.044-.657.35 0 1.25 1.493 2.046 3.14 5.142 3.25 6.469.111 1.327-.545 1.312-1.156 1.312-1.825 0-2.716-1.332-4.375-1.719-1.659-.387-1.9.486-.719 1.344 6.083 4.424 12.179 9.36 14.625 13.844.995 1.825 2.34 2.492 1.594.75-2.287-5.337-2.841-9.857-2.344-12.594.498-2.737 1.177-4.58 1.094-6.156-.083-1.576-.977-1.468-1.344 0-.249.995-.73 2.314-1.062 2.812-.332.498-1.666.777-2.938-.937-1.272-1.714-4.48-5.015-5.531-5.844-.394-.31-.8-.505-1.094-.531zm161.625 0c-.293.026-.7.22-1.093.531-1.051.83-4.26 4.13-5.532 5.844-1.272 1.714-2.606 1.435-2.937.937-.332-.498-.814-1.817-1.063-2.812-.367-1.468-1.26-1.576-1.343 0-.083 1.576.595 3.419 1.093 6.156.498 2.737-.056 7.257-2.343 12.594-.747 1.742.598 1.075 1.593-.75 2.447-4.485 8.543-9.42 14.625-13.844 1.181-.858.94-1.73-.718-1.344-1.66.387-2.55 1.72-4.375 1.72-.611 0-1.268.014-1.157-1.313.11-1.327 1.757-4.423 3.25-6.47.657-.9.489-1.293 0-1.25z' fill='%23000' stroke='none'/%3e%3cpath d='m150.127 212.651 1.95 6.174m2.06-7.344 1.728 6.24m2.605-6.953 1.187 6.365m2.833-7.169 1.27 6.349m3.886-6.858 1.032 6.392m4.452-6.385 1.112 6.378m4.242-8.189.803 6.425m4.234-6.1.803 6.425m4.071-7.074.804 6.424m4.089-6.93.442 6.46m4.786-6.461.384 6.463m4.357-6.79.326 6.467m4.9-6.793.272 6.47m5.74-6.632.272 6.469m79.044.177-1.95 6.174m-2.06-7.344-1.729 6.24m-2.604-6.953-1.187 6.365m-2.833-7.169-1.27 6.349m-3.886-6.858-1.033 6.392m-4.452-6.385-1.112 6.378m-4.241-8.189-.804 6.425m-4.233-6.1-.804 6.425m-4.07-7.074-.804 6.424m-4.09-6.93-.441 6.46m-4.787-6.461-.383 6.463m-4.357-6.79-.327 6.467m-4.9-6.793-.271 6.47m-5.74-6.632-.272 6.469m-7.202-6.89v7.123'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e\"},1616:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1200 600'%3e%3cpath fill='%23ffb700' d='M0 0h1200v600H0z'/%3e%3cpath d='M50 300 215 50h165v500H215z' fill='%23ff5b00'/%3e%3cpath fill='%23005641' d='M50 50h165v500H50z'/%3e%3cpath fill='%238d2029' d='M430 50h725v500H430z'/%3e%3cpath id='a' d='M1086.1 466.06s6.798 13.841 14.309 19.48c11.128 8.356 33.945 7.752 43.629 17.5 11.604 11.495-.9 26.682-.796 28l.636 8.02s-7.824.095-11.119.609c-4.953.772-6.886 4.803-16.109 4.204-23.189-1.505-22.254-22.397-23.566-40.25-1.164-6.798-3.859-15.662-5.39-22.458-1.313-5.828-1.594-15.105-1.594-15.105z' fill='%23ffb700' stroke='%23000' stroke-width='2.126'/%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 1585 0)'/%3e%3cuse xlink:href='%23a' transform='matrix(1 0 0 -1 0 600)'/%3e%3cuse xlink:href='%23a' transform='rotate(180 792.5 300)'/%3e%3cuse xlink:href='%23b' stroke='%23000' stroke-width='5.56'/%3e%3cg id='b' fill='%23ffb700'%3e%3cpath d='m681.54 479.56 4.36-2.517 1.864 2.522c2.485 3.359 9.36 3.321 13.921-.078l3.488-2.598 2.921 2.598c3.84 3.417 11.012 3.422 15.591.012 3.206-2.388 3.653-2.436 5.773-.619 1.264 1.083 4.97 2.316 8.237 2.74 5.882.764 5.971.722 9.413-4.442 2.883-4.324 3.334-6.075 2.646-10.269-.456-2.78-.947-7.256-1.092-9.945-.26-4.87-.233-4.9 6.86-7.37 3.917-1.364 8.452-3.193 10.076-4.065 2.833-1.52 10.643-10.699 10.643-12.508 0-.48-3.05-1.214-6.78-1.632-14.833-1.664-17.345-9.629-7.702-24.423 15.725-24.128 25.215-47.625 25.278-62.593.029-6.69.41-8.937 1.27-7.482 3.513 5.946-2.782 30.877-12.317 48.78l-3.839 7.209 3.663-.844c2.015-.463 13.861-5.461 26.325-11.107 34.115-15.45 45.833-18.479 67.911-17.549 18.498.78 26.375 4.393 39.435 18.09 6.918 7.257 13.583 12.45 25.775 20.08 25.975 16.26 27.058 17.667 28.293 36.788 1.251 19.373.628 20.424-14.024 23.661-12.524 2.767-20.375 8.606-22.481 16.717-1.125 4.332 1.242 4.457 7.556.399l4.627-2.974 2.058 2.974c2.705 3.91 8.455 3.926 13.23.036l3.606-2.939 3.687 2.939c5.729 4.565 13.347 3.458 15.497-2.252.414-1.098 1.517-.746 3.75 1.195 4.186 3.637 14.914 5.197 16.072 2.337.443-1.09-.397-3.786-1.866-5.988-6.242-9.36-8.195-13.823-8.276-18.918-.113-7.087 2.001-10.505 10.06-16.268 9.792-7.001 12.817-16.033 5.372-16.033-4.598 0-9.232-4.064-12.187-10.686-6.008-13.461-4.83-28.552 4.186-53.657 9.159-25.5 10.175-30.202 10.211-47.256.03-13.79-.317-16.174-3.455-23.734-1.918-4.623-5.81-11.505-8.649-15.294l-5.161-6.89 6.627-5.49c20.234-16.764 16.095-44.199-8.263-54.77-7.452-3.233-9.314-3.519-22.372-3.431-7.834.053-19.78 1.083-26.546 2.29-6.899 1.232-18.575 2.221-26.585 2.254-12.725.05-14.885-.263-19.79-2.873-5.112-2.722-5.99-4.014-6.99-10.305-.206-1.293-1.11-2.583-2.01-2.867-1.738-.548-9.77 6.423-10.957 9.51-.586 1.524-1.063 1.418-2.781-.613-1.14-1.349-2.733-4.449-3.54-6.888-2.026-6.136.463-10.735 7.675-14.181l5.595-2.674-3.3-2.048c-6.808-4.225-18.385-1.334-22.572 5.635-1.184 1.972-2.476 3.588-2.87 3.593-.395.003-2.646-1.877-5.003-4.18-8.79-8.59-5.766-21.297 5.991-25.177 6.27-2.069 11.818-.49 12.972 3.69 1.763 6.383 7.241-2.007 6.259-9.584-.654-5.037-.556-5.212 2.93-5.212 4.847 0 15.165 6.362 18.356 11.32 3.706 5.756 3.437 14.822-.642 21.58l-3.203 5.305 4.19-.84c6.143-1.23 12.112-5.045 15.13-9.671 3.193-4.892 3.536-14.416.705-19.555-2.743-4.981-2.428-5.772 1.627-4.089 6.897 2.863 10.584 6.02 13.35 11.431 2.49 4.873 2.63 6.084 1.281 11.156-.832 3.13-2.683 7.246-4.113 9.149-2.228 2.962-2.304 3.459-.529 3.459 3.305 0 10.206-3.128 12.658-5.737 1.238-1.319 3.044-4.564 4.012-7.213l1.76-4.816 2.024 3.67c2.86 5.192 8.422 9.863 15.204 12.77 7.293 3.127 10.33 3.303 6.516.379-2.572-1.973-7.31-15.878-5.875-17.238.846-.8 10.747 6.818 22.053 16.968 10.695 9.6 17.415 12.746 27.238 12.746 12.548 0 19.854-10.923 14.214-21.251-3.288-6.022-10.613-6.858-14.896-1.701-1.97 2.371-2.51 4.257-1.933 6.745.707 3.047.431 3.453-2.345 3.453-3.647 0-10.837-4.667-23.606-15.321-19.471-16.248-43.13-30.02-60.214-35.05-10.963-3.229-34.383-4.489-45.528-2.45-12.062 2.207-26.329 9.11-34.101 16.5-13.772 13.093-13.991 30.517-.581 46.384l3.84 4.546-2.6 4.039c-3.783 5.877-3.459 13.785.804 19.61 1.877 2.566 3.77 4.664 4.208 4.662.437 0 .917-1.65 1.065-3.665.377-5.097 2.564-8.511 6.319-9.863 3.381-1.218 5.567-.643 21.05 5.537 16.29 6.502 43.078 6.949 71.562 1.194 13.964-2.821 30.43-2.655 37.674.38 13.279 5.563 16.357 20.036 6.595 31.022-4.225 4.756-8.3 6.692-21.983 10.448-10.412 2.857-12.878 3.047-36.543 2.81-20.218-.201-27.484.187-35.737 1.91-8.96 1.87-14.47 2.06-40.79 1.396l-30.43-.767 3.374 2.795c1.856 1.537 4.478 3.427 5.827 4.202 2.295 1.317 2.219 1.494-1.193 2.76-2.005.742-6.455 1.35-9.888 1.35h-6.244l-.84 5.306c-.462 2.919-.427 6.326.078 7.571.744 1.838.467 2.102-1.47 1.398-1.313-.477-4.97-1.416-8.126-2.086-3.157-.67-7.406-2.034-9.442-3.031-3.425-1.677-3.806-1.632-5.067.6-1.127 1.994-11.702 9.864-13.254 9.864-.25 0-.574-1.517-.719-3.372-.144-1.855-1.67-6.684-3.39-10.731-1.72-4.047-3.516-8.462-3.991-9.811-.717-2.035-1.041-2.14-1.906-.613-.573 1.012-1.41 3.77-1.859 6.132-.45 2.36-2.043 6.195-3.541 8.522l-2.724 4.23-1.738-3.617c-1.865-3.883-4.961-7.91-6.082-7.91-.378 0-1.023 1.243-1.432 2.76-.855 3.17-8.197 11.957-9.99 11.957-.66 0-1.201-2.483-1.201-5.518s-.583-5.519-1.295-5.519-1.295.785-1.295 1.745c0 2.334-6.27 9.292-8.373 9.292-.918 0-2.394.828-3.281 1.84-2.312 2.638-4.203 2.268-3.231-.633.456-1.36.16-4.532-.659-7.051l-1.932-5.958c-.309-.954-2.556-.7-7.312.824-7.685 2.464-10.26 2.028-6.308-1.068 1.444-1.131 3.642-5.051 4.883-8.71 1.242-3.66 3.073-6.906 4.07-7.215 1.396-.433 1.322.102-.324 2.327-1.175 1.589-2.14 3.732-2.144 4.762 0 1.03-.89 3.473-1.966 5.428-1.077 1.956-1.753 3.749-1.504 3.985.25.236 3.174-.875 6.498-2.468l6.044-2.898.025 2.592c.014 1.426.742 5.188 1.618 8.36l1.594 5.766 4.114-1.891c4.205-1.933 8.188-8.822 8.188-14.164 0-2.64 1.512-2.235 2.132.571.182.824 1.131 3.915 2.11 6.87l1.78 5.371 2.816-3.391c1.55-1.866 3.492-5.525 4.316-8.131 1.432-4.526 3.68-6.471 3.68-3.185 0 2.368 6.462 10.861 7.709 10.131.602-.353 1.802-3.54 2.666-7.083 1.796-7.369 4.695-12.38 6.537-11.302.692.405.962 1.192.599 1.748s1.125 5.347 3.307 10.646a4484.425 4484.425 0 0 1 4.87 11.856c.797 1.963 1.517 1.678 6.194-2.453 2.911-2.57 5.554-5.448 5.872-6.395.48-1.431 1.13-1.379 3.852.31 3.807 2.363 16.605 6.169 17.593 5.233.37-.351.75-3.712.844-7.47l.17-6.832 3.68.764c2.025.42 6.281.393 9.459-.058l5.778-.82-5.15-3.533c-2.832-1.943-5.695-4.458-6.363-5.588-.711-1.204-3.232-2.226-6.087-2.469-7.715-.655-21.388-8.324-21.388-11.996 0-.689 1.893.483 4.208 2.605 5.135 4.706 12.27 7.66 18.5 7.66h4.661l-2.884-3.835c-1.656-2.204-3.142-6.384-3.491-9.822-.556-5.481-1.135-6.353-6.858-10.331-3.438-2.39-7.696-5.972-9.462-7.96l-3.212-3.615-1.639 4.292c-.901 2.36-2.003 4.292-2.448 4.292-.445 0-2.177-1.38-3.85-3.066s-3.377-3.06-3.787-3.052c-.41.007-1.892 2.28-3.293 5.047l-2.547 5.034-1.968-2.901c-1.083-1.596-3.64-4.42-5.683-6.274s-3.118-3.373-2.388-3.373 3.251 1.933 5.603 4.294l4.277 4.294 1.74-3.146c1.033-1.867 1.42-4.734.952-7.053-.682-3.38-.586-3.576.71-1.455.824 1.35 3.326 3.936 5.56 5.748l4.061 3.294 2.803-5.134c2.79-5.11 2.81-5.12 4.078-2.068 1.698 4.08 13.98 14.149 24.437 20.032 1.612.907.933-2.211-2.044-9.38-.788-1.9-1.433-5.323-1.433-7.608 0-3.39-.978-4.899-5.314-8.198-6.26-4.763-8.283-8.15-9.463-15.835-.478-3.113-1.573-6.575-2.434-7.694-1.278-1.66-1.489-.73-1.147 5.047.23 3.894-.276 8.736-1.125 10.759l-1.545 3.68-1.194-3.067c-.656-1.686-3.56-4.619-6.453-6.516-2.893-1.898-4.923-3.77-4.512-4.16.411-.389 3.387 1.34 6.613 3.844 4.915 3.814 5.998 4.227 6.678 2.547.8-1.973 0-10.562-1.546-16.563-.77-2.996-.703-2.98 2.994.716 2.726 2.726 4.234 5.978 5.402 11.65 1.484 7.207 2.232 8.407 8.896 14.258 4.002 3.514 7.484 6.191 7.74 5.95.254-.24.759-9.33 1.121-20.199.696-20.84-.09-25.8-5.11-32.239l-2.578-3.308 4.054-4.373c5.288-5.705 7.717-10.277 8.77-16.515l.857-5.075-4.575 4.333c-3.747 3.548-5.536 4.333-9.875 4.333-4.296 0-5.975-.72-8.87-3.805-3.474-3.702-9.63-7.264-15.549-8.997-2.187-.64-2.914-.362-2.914 1.118 0 1.084-1.207 4.213-2.684 6.953l-2.684 4.983-5.624-5.558c-3.45-3.41-7.543-6.064-10.589-6.865-7.78-2.046-8.202-1.843-8.202 3.954 0 8.793-3.754 10.431-10.51 4.587-5.152-4.455-9.424-5.424-19.192-4.35l-7.543.829 1.357 3.405c1.134 2.845.878 4.043-1.55 7.273-3.94 5.24-9.063 7.51-16.949 7.51-3.632 0-8.177.752-10.1 1.67-1.923.919-6.701 1.977-10.619 2.352-3.917.375-8.092 1.044-9.278 1.487-1.855.693-2.059.122-1.461-4.098.915-6.458-3.597-11.222-10.627-11.222-9.122 0-13.33 8.159-9.757 18.922.688 2.071 1.587 5.338 2 7.259.427 1.993 4.535 7.283 9.568 12.318 4.85 4.854 9.435 9.904 10.188 11.223.753 1.32 3.24 3.436 5.529 4.704l4.16 2.306-.548-4.452c-.603-4.893.463-5.66 3.066-2.208.93 1.235 3.295 3.23 5.253 4.434 3.086 1.896 3.561 1.935 3.561.288 0-1.045.63-3.454 1.398-5.353l1.398-3.452 2.425 4.697c1.333 2.583 5.671 8.455 9.639 13.048 7.698 8.912 12.389 18.87 9.968 21.163-.982.93-3.636.858-9.138-.248-4.264-.857-9.54-1.31-11.722-1.007-4.457.62-4.808.044-2.067-3.388 2.893-3.623 2.433-4.22-3.25-4.22-6.576 0-22.901-3.152-29.168-5.632-6.094-2.411-7.5-1.81-9.293 3.969-.808 2.6-2.286 7.314-3.285 10.474l-1.816 5.744 6.592-.635c3.626-.349 8.29-1.143 10.364-1.764 2.075-.621 3.96-.951 4.19-.734.23.218-.695 2.463-2.055 4.988l-2.472 4.593 4.11-.838c2.261-.461 5.662-1.589 7.559-2.506 3.3-1.596 3.564-1.48 6.167 2.697 3.2 5.138 5.761 4.927 6.33-.522.587-5.632 2.44-4.8 5.925 2.665 3.351 7.177 6.838 9.711 7.508 5.456.223-1.412 2.028-3.712 4.012-5.11 4.014-2.827 7.039-1.979 8.773 2.46 1.795 4.596-2.209 9.333-13.853 16.392-23.327 14.14-36.886 33.479-40.757 58.128-3.492 22.233 7.413 45.207 29.29 61.708 10.469 7.896 27.1 16.23 26.043 13.05-4.488-13.504-4.34-39.273.25-43.62.689-.653.452 2.036-.527 5.975-3.645 14.672-2.061 26.363 7.282 53.763 8.451 24.782 7.281 35.373-4.679 42.374-3.841 2.248-6.315 2.619-16.643 2.493-11.207-.136-12.428.09-16.026 2.957-3.488 2.78-8.01 11.906-8.01 16.165 0 2.307 2.561 2.002 7.596-.905z'/%3e%3cpath d='m863.45 479.06 4.701-3.021 3.19 3.021c4.18 3.958 9.076 3.87 13.094-.237 1.754-1.792 3.329-3.033 3.5-2.759.17.274.953 1.603 1.737 2.952.994 1.707 3.036 2.566 6.723 2.826 4.441.313 5.634-.117 7.399-2.668l2.104-3.04 4.627 2.974c12.67 8.142 19.42-.4 13.758-17.411-2.879-8.65-1.296-13.512 7.983-24.521 3.913-4.643 7.118-9.598 7.122-11.011 0-2.254-.724-2.556-5.932-2.453-4.983.1-6.44-.436-9.064-3.323-4.266-4.697-4.013-10.075.756-16.044l3.81-4.769-6.76-4.587c-3.717-2.523-10.421-8.492-14.898-13.265-10.054-10.719-19.94-15.802-32.975-16.955l-8.74-.773.012 6.616c.017 8.517 4.014 16.71 14.924 30.588 12.405 15.779 13.271 18.222 13.774 38.846l.425 17.442-3.59 3.406c-3.243 3.077-4.706 3.47-15.173 4.073-9.964.575-12.058 1.089-14.982 3.68-3.883 3.44-5.045 5.311-6.244 10.062-.699 2.77-.415 3.373 1.583 3.373 1.338 0 4.55-1.36 7.135-3.022zm-266.63-45.08c1.109-1.5 2.016-3.92 2.016-5.38 0-2.205.985-2.793 5.831-3.481l5.832-.828-3.89-3.1c-4.62-3.682-5.047-6.558-.975-6.564 4.056 0 10.925-4.212 11.97-7.328.485-1.449.18-3.384-.691-4.377-2.274-2.595-6.549-2.204-7.343.672-.853 3.09-2.282 3.099-5.522.03-4.873-4.615-4.982-14.169-.226-19.732 2.242-2.621 2.222-2.793-.636-5.5-3.075-2.912-5.27-8.675-3.826-10.043.46-.435 2.889-.089 5.398.771 3.565 1.221 4.973 1.24 6.442.085 4.45-3.498-.371-7.995-7.507-7.003-2.872.4-4.058 0-4.47-1.49-.312-1.13-2.824-2.605-5.654-3.32-5.057-1.278-5.093-1.263-5.093 2.221 0 3.818-2.18 4.539-6.32 2.09-3.366-1.991-6.63-.446-6.63 3.138 0 3.343 3.363 4.992 9.39 4.604 4.621-.298 4.793 3.139.403 8.08l-3.156 3.552 2.5 3.593c3.704 5.32 3.392 14.158-.654 18.547l-3.172 3.44-2.081-2.759c-2.892-3.834-6.848-3.577-7.932.516-.71 2.68-.123 3.905 3.233 6.745 2.255 1.908 5.548 3.47 7.318 3.47 4.378 0 4.207 3.443-.345 6.922l-3.56 2.721 5.503.854c3.027.47 5.503 1.353 5.503 1.963 0 2.339 3.814 9.615 5.04 9.615.709 0 2.195-1.227 3.304-2.726z'/%3e%3cpath d='M668.48 402.92c5-1.97 15.821-11.134 15.821-13.398 0-.712-2.987-3.997-6.637-7.3-7.683-6.951-16.04-18.657-18.204-25.501-1.13-3.569-6.585-9.678-21.951-24.581l-20.448-19.832-5.894 1.493c-3.241.82-7.196 1.512-8.788 1.537-2.744.041-2.695.199.954 3.022l3.848 2.979 5.396-2.995c5.23-2.903 5.417-2.92 6.062-.585.378 1.368-.437 3.738-1.883 5.48-1.402 1.687-2.2 3.602-1.775 4.254.426.652-.921 2.016-2.993 3.03-3.84 1.881-6.505 8.071-3.474 8.071 2.726 0 8.737-7.417 8.044-9.925-.355-1.285-.183-2.606.381-2.937 2.342-1.37 2.195 4.453-.183 7.317-1.402 1.688-2.2 3.602-1.775 4.255.426.652-.921 2.016-2.993 3.03-3.815 1.869-6.506 8.071-3.503 8.071 2.944 0 8.857-7.087 8.125-9.739-.383-1.387-.235-2.792.33-3.123 1.576-.923 2.427 3.674 1.096 5.927-.713 1.206-.707 2.853.017 4.16 1.31 2.366-.019 6.91-2.432 8.323-1.035.605-.334 1.793 2.175 3.688 3.631 2.742 3.702 3.03 3.702 15.13 0 10.112.408 12.722 2.266 14.482 2.085 1.976 2.266 1.983 2.266.089 0-2.07 3.632-4.599 6.603-4.599.876 0 6.351 4.64 12.167 10.312 5.85 5.706 11.973 10.561 13.707 10.87 1.723.308 3.588.634 4.145.726.557.092 3.18-.687 5.828-1.73zM605.96 354c0-3.26-6.724-6.74-14.767-7.641-6.493-.729-6.6-.688-6.6 2.556 0 2.685 1.022 3.741 5.504 5.693 7.202 3.135 15.863 2.804 15.863-.608z'/%3e%3cpath d='M613.33 353.7c3.28-2.976 4.834-6.516 2.86-6.516-2.269 0-8.292 5.406-8.292 7.442 0 3.179 1.118 2.988 5.432-.926zm-6.99-9.64c.278-1.84-.86-3.067-4.27-4.607-7.355-3.322-16.15-4.86-18.268-3.196-3.9 3.067-1.301 7.183 5.003 7.924 2.538.298 5.98 1.072 7.648 1.72 4.846 1.882 9.454 1.024 9.887-1.841zm0-9.85c.396-2.624-1.282-3.563-14.978-8.383-10.225-3.6-14.752-1.902-11.484 4.305 1.138 2.163 3.049 3.15 7.334 3.792 3.187.478 7.543 1.41 9.68 2.074 5.707 1.772 9.005 1.148 9.448-1.788zm6.86-9.23c2.067-2.095 3.757-4.567 3.757-5.494 0-3.006-8.161 2.313-9.201 5.996-1.248 4.419.775 4.232 5.444-.502zm-6.86-.62c.45-2.989-4.52-5.688-14.294-7.762-7.171-1.522-10.334-.659-9.797 2.673.293 1.82 2.681 3.149 9.457 5.263 10.843 3.384 14.104 3.345 14.634-.174zm9.56-13.91c12.525-5.575 13.608-19.635 1.798-23.326-4.904-1.533-8.035-.707-9.912 2.615-1.437 2.543-.476 7.167 1.49 7.167.664 0 1.208.856 1.208 1.902 0 4.882-19.123 7.094-26.965 3.12-2.755-1.397-3.955-5.022-1.662-5.022 1.714 0 2.898-3.693 2.023-6.306-1.193-3.559-4.78-4.792-9.983-3.431-11.74 3.07-11.41 16.865.543 22.719 9.8 4.8 31.287 5.092 41.46.563z'/%3e%3cpath d='M608.11 299.64c.725-.687.41-1.742-.806-2.698-2.663-2.093-2.52-5.206.4-8.77 2.193-2.675 2.467-6.68 3.222-47.073 1.301-69.611 6.478-121.97 13.3-134.53 2.717-5.001 2.336-5.02-4.683-.245-9.042 6.152-15.926 14.163-22.026 25.63-11.516 21.652-15.518 50.78-15.518 112.96 0 35.306.24 39.925 2.251 43.244 1.91 3.152 2.012 4.316.67 7.683-.87 2.183-1.264 4.268-.877 4.635 2.571 2.435 21.302 1.79 24.067-.83zm105.23-66.38c.392-.601-.475-3.636-1.926-6.745-2.264-4.847-3.176-5.652-6.4-5.652-10.102 0-26.341-4.514-43.083-11.976-9.668-4.309-13.007-5.3-14.166-4.201-2.958 2.801 1.958 9.45 9.571 12.946 6.754 3.1 25.635 6.91 34.248 6.91 4.997 0 5.115.226 2.271 4.336l-2.091 3.023 5.652.145c3.11.08 7.4.566 9.538 1.081 5.549 1.337 5.6 1.338 6.387.133z'/%3e%3cpath fill='%23000' d='M772.35 264.63c0-1.8-5.284-6.675-10.638-9.817-4.205-2.467-4.9-2.542-4.909-.53-.014 3.055-2.73 10.731-3.798 10.731-.601 0-1.49-1.5-1.977-3.333-.486-1.833-2.524-5.446-4.53-8.029l-3.645-4.695-2.84 4.35c-2.646 4.056-7.231 8.028-9.266 8.028-.486 0-.58-2.136-.211-4.747.402-2.836.092-5.086-.77-5.59-.794-.465-1.444-.303-1.444.36 0 1.528-6.367 8.75-7.714 8.75-.555 0-1.332-2.069-1.727-4.598-.394-2.53-1.065-6.53-1.49-8.891-.426-2.361.48-.76 2.014 3.557l2.789 7.85 3.058-4.784c1.681-2.631 3.06-5.506 3.064-6.39 0-.882.572-1.273 1.264-.869.691.405 1.654 3.568 2.139 7.029l.881 6.292 3.365-3.689c1.85-2.029 4.019-4.745 4.818-6.036 1.427-2.304 1.508-2.302 4.347.106 1.59 1.349 4.036 4.575 5.434 7.17 1.399 2.595 2.73 4.526 2.959 4.292.228-.234.74-2.909 1.138-5.944.398-3.035.753-5.631.79-5.769.197-.752 10.134 5.708 13.811 8.978 2.363 2.102 4.607 3.528 4.987 3.168.38-.36.691-3.461.691-6.892 0-5.317-.563-6.742-3.815-9.648-3.74-3.343-3.844-3.361-5.226-.916-1.793 3.173-3.908 3.219-3.908.084 0-2.287-7.066-11.08-8.904-11.08-.477 0-1.965 1.932-3.307 4.293-1.343 2.36-2.786 4.29-3.208 4.287-1.813-.011-11.774-11.117-11.77-13.122 0-1.594.672-1.187 2.418 1.476 1.327 2.024 3.978 5.045 5.89 6.713 3.874 3.379 5.282 2.557 6.776-3.953.426-1.855 1.166-3.373 1.645-3.373 1.656 0 10.327 9.21 11.547 12.264l1.224 3.066.928-3.373c1.134-4.124 2.385-4.277 4.195-.514.757 1.572 4.492 4.84 8.302 7.263l6.926 4.405 1.39-4.43c.764-2.437 1.777-3.837 2.25-3.112.706 1.081-1.094 8.423-2.453 10.002-.203.237-2.448-1.07-4.987-2.905l-4.617-3.335-.019 5.97c-.012 3.284-.369 7.213-.798 8.73-.84 2.968-3.069 3.803-3.069 1.15zm-34.53-47.6c-8.231-6.872-9.481-8.445-9.299-11.702l.194-3.467.537 3.349c.314 1.955 2.506 4.885 5.269 7.042l4.732 3.694 2.907-3.363c1.6-1.85 2.929-4.053 2.955-4.896.067-2.199.461-2.014 6.034 2.821 4.952 4.296 5.03 4.317 5.765 1.533.411-1.552.265-4.473-.323-6.492-1.618-5.55-1.301-6.388 1.15-3.04 1.222 1.667 3.186 4.025 4.365 5.238 2.052 2.113 2.177 2.087 2.941-.613.439-1.551.806-4.39.815-6.309l.019-3.488 4.464 5.06c4.17 4.728 4.554 4.902 5.827 2.65.75-1.326 1.372-4.517 1.383-7.09.014-3.325.364-4.164 1.21-2.898 1.412 2.114.431 7.87-2.176 12.775l-1.871 3.52-2.457-3.827c-3.142-4.893-4.188-4.814-6.204.466-1.905 4.99-3.144 5.37-5 1.533-1.202-2.483-1.43-2.179-2.283 3.037l-.948 5.797-5.679-4.407-5.678-4.407-2.553 2.903c-1.404 1.596-2.572 3.592-2.596 4.435-.052 1.827-1.417 1.884-3.5.146zm73.22-25.6c-2.996-2.7-5.06-5.275-4.587-5.723.474-.448 1.007-.577 1.185-.285.178.291 2.627 2.866 5.442 5.723 6.483 6.576 5.15 6.762-2.04.285zm-97.53-10.08c-2.725-3.685-2.537-6.127.78-10.121 2.398-2.886 3.493-3.278 7.68-2.746 2.684.34 8.463 2.713 12.84 5.272 5.056 2.955 10.285 4.935 14.335 5.427 3.507.426 6.376.587 6.376.357 0-.23-1.456-2.603-3.237-5.274-4.228-6.344-4.083-7.024.686-3.224 4.895 3.901 10.75 5.042 23.836 4.644l6.393-.194-3.71-3.666c-5.186-5.127-3.59-5.587 2.138-.616 5.373 4.663 5.036 4.991-6.271 6.12-4.805.48-9.972.132-14.267-.96-6.426-1.635-6.675-1.61-5.458.544.702 1.242 1.838 2.257 2.525 2.257.687 0 1.25.63 1.25 1.398 0 2.365-13.88.285-20.512-3.073-15.15-7.67-17.058-8.335-20.664-7.199-2.006.633-4.015 2.484-4.707 4.338-2.31 6.188 6.466 10.997 10.085 5.528 1.049-1.586.804-2.67-1.04-4.599-2.525-2.642-2.288-3.019 1.12-1.78 2.42.88 2.746 6.69.495 8.821-2.576 2.44-8.453 1.749-10.674-1.254z'/%3e%3cpath fill='%23000' d='M773.19 166.07c-1.895-1.794-.41-2.234 8.085-2.392 10.508-.196 16.89-1.947 24.42-6.7 6.033-3.81 7.669-3.06 1.942.89-5.224 3.602-13.372 6.371-21.239 7.218-3.81.41-8.15.978-9.647 1.263-1.497.284-3.1.158-3.561-.279z'/%3e%3c/g%3e%3c/svg%3e\"},7073:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 209 110'%3e%3cpath fill='%23bf0a30' d='M0 0h209v110H0z'/%3e%3cpath d='M0 15h209M0 35h209M0 55h209M0 75h209M0 95h209' stroke='%23fff' stroke-width='10'/%3e%3cpath fill='%23002868' d='M0 0h50v50H0z'/%3e%3cg transform='matrix(15 0 0 15 25 25)'%3e%3cg id='b'%3e%3cpath id='a' fill='%23fff' transform='rotate(18 3.157 -.5)' d='M0 0v1h.5z'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(-72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(-144)'/%3e%3c/g%3e%3c/svg%3e\"},7192:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 450 300'%3e%3cpath fill='%23009543' d='M0 0h450v300H0z'/%3e%3cpath fill='%23fff' d='M0 0h450v210H0z'/%3e%3cpath fill='%2300209f' d='M0 0h450v90H0z'/%3e%3cg fill='%23fff'%3e%3cpath fill='%23000' stroke='%23000' d='M224.76 95.569c-1.71.037-3.378 1.93-3.378 1.93l.147 20.234-6.388 6.692h5.172l-.044 11.603-30.591 41.193-4.522-1.563-7.904 16.86s19.55 12.243 47.925 11.908c31.144-.37 48.064-12.471 48.064-12.471l-8.168-16.644-4 1.74-30.983-40.98-.043-11.949h5.17l-7.037-6.609.041-20.159s-1.751-1.82-3.46-1.783z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='5' d='M235.43 144.01h-21.153s-7.678-16.176-6.433-27.485c1.267-11.515 7.848-16.963 16.598-17.059 10.345-.115 15.767 5.07 17.405 16.598 1.623 11.424-6.417 27.947-6.417 27.947z'/%3e%3cpath d='M187.79 182.57c-.346.461-2.882 5.533-2.882 5.533l4.38-.923-1.498-4.61zm2.53 6.57-4.61 1.498 5.532 2.19-.922-3.688zm2.08-6.46 2.305 6.8 5.648-1.613-1.498-3.227-6.455-1.96zm3.57 9.23.807 2.766 7.492 1.845-2.997-6.34-5.302 1.729zm8.3-5.77 2.651 6.34 5.648-2.19-1.844-2.767-6.455-1.383zm3.69 8.65.922 2.42 8.76 1.268-3.688-5.763-5.994 2.075zm8.41-6.8 3.227 5.648 8.184-2.997-.922-2.19-10.489-.461zm4.73 7.72 1.729 2.997 10.143-.346-3.804-5.648-8.068 2.997zm10.72-7.49 2.766 4.726 6.455-3.112-1.729-2.536-7.492.922zm10.6 3.57-6.455 3.227 1.73 2.767 8.644-1.384-3.919-4.61zm2.08-4.96 3.343 4.15 5.417-4.265-1.844-1.96-6.916 2.075zm9.91 2.19-5.187 3.919 1.383 2.42 7.147-1.844-3.343-4.495zm7.15-8.18 1.268 1.844-3.573 5.302-3.689-4.725 5.994-2.421zm2.42 4.61 2.19 4.38-4.38 1.498-.346-2.074 2.536-3.804z'/%3e%3c/g%3e%3c/svg%3e\"},6906:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 3'%3e%3cpath fill='%23C1272D' d='M0 0h5v3H0z'/%3e%3cpath fill='%23006A44' d='M0 0h5v2H0z'/%3e%3cpath fill='%23FDB913' d='M0 0h5v1H0z'/%3e%3c/svg%3e\"},9207:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 600'%3e%3cpath fill='%2300a1de' d='M0 300h1000v300H0z'/%3e%3cpath fill='%23ed2939' d='M0 0h1000v300H0z'/%3e%3cpath fill='%23fff' d='M0 200h1000v200H0z'/%3e%3c/svg%3e\"},5590:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3e%3cpath fill='%239E3039' d='M0 0h1200v600H0'/%3e%3cpath fill='%23FFF' d='M0 240h1200v120H0'/%3e%3c/svg%3e\"},1084:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 960 480'%3e%3cpath fill='%23239e46' d='M0 0h960v480H0z'/%3e%3cpath d='M0 0h960v360H0z'/%3e%3cpath fill='%23e70013' d='M0 0h960v120H0z'/%3e%3ccircle cx='480' cy='240' r='60' fill='%23fff'/%3e%3ccircle cx='492.132' cy='240' r='52.132'/%3e%3cpath d='m509.175 240 80.7-26.221L540 282.426v-84.852l49.875 68.647z' fill='%23fff'/%3e%3c/svg%3e\"},3365:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath transform='scale(-1 1)' style='fill:%23c1272d;fill-opacity:1;stroke:none' d='M-900 0H0v600h-900z'/%3e%3cpath d='m450 224.315-44.467 136.87 116.401-84.559h-143.87l116.403 84.559z' style='fill:none;stroke:%23006233;stroke-width:14.62993431;stroke-miterlimit:4;stroke-dasharray:none'/%3e%3c/svg%3e\"},6072:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 750 600'%3e%3cpath fill='%23FFF' d='M0 0h750v600H0z'/%3e%3cpath fill='%23CE1126' d='M0 0h750v300H0z'/%3e%3c/svg%3e\"},4399:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1800 900'%3e%3cpath fill='%23cc092f' d='M0 0h1800v900H0z'/%3e%3cpath fill='%23ffd200' d='M0 0h1200v900H0z'/%3e%3cpath fill='%230046ae' d='M0 0h600v900H0z'/%3e%3cpath d='M847.69 183.24c-3.223 0-6.038.822-7.68 2.1 2.609.76 4.506 3.166 4.506 6.092v7.423h-7.422c-2.907 0-5.315-1.87-6.093-4.454-1.278 1.642-2.099 4.457-2.099 7.679 0 3.223.821 6.039 2.099 7.679.761-2.61 3.166-4.506 6.093-4.506h7.422v35.681c0 2.805-1.754 5.132-4.198 5.989 3.541.482 6.588 5.234 7.423 7.833.837-2.593 3.884-7.351 7.424-7.833a6.28 6.28 0 0 1-4.251-5.989v-35.683h7.424c2.908 0 5.315 1.87 6.093 4.456 1.277-1.642 2.098-4.459 2.098-7.68 0-3.223-.82-6.038-2.098-7.679-.761 2.609-3.167 4.504-6.093 4.504h-7.424v-7.422c0-2.908 1.869-5.315 4.455-6.093-1.64-1.276-4.457-2.098-7.679-2.098z'/%3e%3cpath fill='%23f5d402' d='M847.69 184.78c-1.678 0-3.156.314-4.402.716 1.664 1.447 2.765 3.544 2.765 5.939v7.423c0 .106-.031.207-.052.308v1.177h-1.178c-.1.021-.202.051-.307.052h-7.424c-2.367 0-4.439-1.083-5.886-2.713-.416 1.259-.768 2.697-.768 4.403 0 1.678.314 3.156.716 4.402 1.447-1.664 3.543-2.763 5.938-2.763h8.959c-.01.154-.052.303-.052.459v.768c.021.1.051.201.052.307v35.681c0 2.317-1.195 4.139-2.765 5.58a11.976 11.976 0 0 1 2.918 2.561c.737.885 1.03 1.751 1.536 2.661.507-.908.799-1.776 1.536-2.661a12.036 12.036 0 0 1 2.867-2.509c-1.584-1.437-2.765-3.305-2.765-5.631v-37.168h1.229c.1-.02.201-.05.307-.05h7.423c2.366 0 4.438 1.083 5.886 2.712.415-1.258.769-2.695.769-4.402 0-1.677-.315-3.156-.717-4.402-1.447 1.664-3.543 2.763-5.938 2.763h-7.423c-.105 0-.207-.031-.307-.052h-1.178v-1.177c-.021-.099-.051-.201-.052-.308v-7.422c0-2.367 1.084-4.438 2.713-5.887-1.259-.414-2.696-.768-4.402-.768'/%3e%3cpath d='M940.609 313.987c-4.535-3.221-8.258-6.862-10.904-11.11-6.372-10.223-9.061-22.773-9.061-35.527 0-5.391 6.04-11.46 6.04-15.82 0-6.59-.614-10.544-.614-10.544 2.143.292 5.887 4.095 5.887 4.095s-.129-10.938-3.585-12.849c0 0 1.398-1.438 6.451-1.587-1.42-3.596-8.446-7.986-8.446-7.986.351-.629 1-1.173 1.842-1.638 1.765-.976 4.245-1.62 6.142-1.997-2.022-.419-4.352-1.061-6.91-1.895-5.842-1.903-12.719-4.697-19.146-7.78-11.732-5.628-20.669-5.99-25.596-5.99-3.575.001-8.84.099-11.927 2.152-2.825 1.875-2.595 4.314-3.584 5.17-2.33 2.016-6.321 1.945-8.243 1.945-12.44 0-12.901 13.311-12.901 13.311s3.181-4.813 8.805-4.813c9.351 0 16.433 5.094 16.433 7.013 0 .777-.964.921-1.023.921-6.108 0-15.326-3.516-20.223-3.686v2.406c10.931 3.803 22.013 9.187 22.013 32.917 0 14.943-1.789 30.19-9.265 42.183-2.648 4.247-6.418 7.881-10.955 11.11l44.385 8z'/%3e%3cg id='a'%3e%3cpath d='m896.222 303.988-44.383 10c-2.019-.61-11.513-3.56-18.174-7.269-11.726-6.532-17.806-13.03-31.74-13.669v-10.598c0-5.662 2.049-10.763 2.049-16.177-5.874-1.575-22.178-21.51-37.218-30.358-22.13 14.334-39.265 37.865-39.265 48.686 0 0 .665 232.51 0 313.51 0 4.668-2.815 11.263-2.815 11.263 8.079-3.418 22.888-23.68 26.006-31.382v3.687c12.201-5.564 21.135-20.184 25.136-27.747.071 1.094.257 3.839.257 3.839 10.9-9.555 24.776-66.038 24.776-66.038l23.124 22.725s-8.363 16.976-11.621 20.015c0 0 2.184.277 4.658.256-1.522 2.188-13.147 18.925-16.791 25.238-3.41 5.906-5.816 3.277-11.058 3.277-4.347 0-14.2 6.925-15.818 9.727-1.701 2.945-2.968 6.523-2.968 9.471 0 3.24 3.43 7.68 3.43 7.68.369-1.552 1.023-2.1 1.023-2.1s9.013 11.228 10.341 12.695c1.034 1.143 5.645 1.886 7.27.411 4.066-3.697 8.002-6.282 11.621-11.62 1.863-2.752 2.005-5.905 4.146-8.859 7.162-9.88 21.415-28.799 24.675-33.12.218 1.203.405 2.205.612 3.43 3.694-7.458 21.451-21.707 21.451-21.707l18.578 8.55s-34.687 79.735-65.476 91.995c0 0 13.395 5.691 29.845 14.232a447.91 447.91 0 0 1 7.372 3.943 203.524 203.524 0 0 0 6.399-8.14c9.836-13.16 19.455-28.413 19.455-28.413.67 3.961-4.524 16.194-13.31 31.281-1.728 2.964-3.53 6.064-5.529 9.213a333.743 333.743 0 0 1 6.655 3.892c16.295 9.805 31.598 21.077 37.267 31.432l4-10.009-4-10.009V317.264l2-5z'/%3e%3cg fill='%23b07f55'%3e%3cpath d='M896.202 667.221c-5.749-6.236-17.769-13.855-31.278-20.886 16.334-29.316 24.428-75.655 20.63-84.88 0 0-6.705 24.033-14.898 37.729-7.586 12.684-16.925 26.95-25.954 37.526-7.428-3.169-14.631-5.828-20.785-7.68 27.058-20.843 54.726-89.742 54.726-89.742l-28.612-13.26s-10.704 12.479-14.18 14.796c0 0-1.485-6.206-2.355-8.396 0 0-4.101 3.102-6.346 3.176 0 0-.671-4.212-1.178-6.964-2.825 1.883-7.525 1.485-7.525 1.485 4.127-1.954 9.01-13.925 9.01-13.925l-27.322-36.343s-9.597 46.116-20.528 55.596v-198.58l8.652 8.036 13.105-12.235v-9.317l-11.621 10.852v-28.105a94.373 94.373 0 0 0 3.788-6.194c1.881 3.279 7.96 13.329 15.101 19.505 1.175-4.778 8.908-9.318 8.908-9.318s2.771 7.508 7.012 9.368c1.492-2.628 10.394-8.446 10.394-8.446s-7.616 1.157-10.7 4.045c-2.649-.593-3.328-11.058-3.328-11.058s-11.207 5.459-13.156 9.368c-2.137-.578-5.464-8.988-6.759-12.44a74.752 74.752 0 0 1 8.345-.46c3.196 0 7.285 1.514 11.569 3.532 4.707 2.216 9.631 5.022 14.028 7.014 5.632 2.55 14.153 3.068 16.637 3.174-2.845 2-5.973 3.826-9.367 5.529 0 0 13.411-.124 22.832-4.813 3.361-2.162 6.849-4.316 9.829-6.86-1.293 3.593-3.306 7.839-6.452 11.467 13.836-1.171 20.726-9.072 22.679-11.723.918 2.375 2.553 6.187 5.119 9.47h5v340zM794.247 267.298l.255 6.348v18.687c-5.019-1.727-11.326-9.973-14.384-14.334v-2.56c0-2.408 1.417-4.167 2.457-5.119l-3.02-1.074c-1.152 1.313-2.406 3.263-2.406 5.784v1.485l-9.009 9.676-8.856-13.413v-3.276c0-2.208 1.698-4.67 3.123-6.348l-2.97-1.075c-1.499 1.942-3.072 4.559-3.072 7.013v2.661a10183.97 10183.97 0 0 1-10.187 10.496l-5.17-11.109c6.205-8.595 16.266-18.219 25.749-25.125 0 0 20.564 18.881 27.49 21.283zm-52.12 18.123v15.411l-7.167 6.654v-22.883c0-2.191.918-4.831 2.456-7.731z'/%3e%3cpath d='M764.447 291.359v9.522l-8.241 7.731v-29.794zm-11.161 17.202-8.243-7.679v-11.159l8.243-8.652zm37.627-11.57c-1.914 2.705-6.927 9.321-12.337 12.236v-26.16c1.241 2.064 6.934 11.274 12.337 13.924zm-15.257-12.594v24.163l-8.243-7.679v-8.549zm-33.53 25.75v24.113l-7.167-6.707v-10.7zm11.154 7.731v8.651l-8.244 7.678v-24.009zm11.158-7.678v24.01l-8.241-7.731v-8.549zm11.213 7.73v8.549l-8.243 7.73v-24.01zm11.159 16.33-8.244-7.731v-8.036c2.843-1.735 5.702-4.924 8.243-8.293zm-20.885 10.648 8.703-8.089v198.63s.607 9.856 1.024 16.279l-18.429 18.634V336.766zM752.253 562.94c0 6.385-11.659 21.273-17.303 24.675v-250.74l8.6 8.036 8.703-8.09z'/%3e%3c/g%3e%3cg fill='%23d10429'%3e%3cpath d='m824.535 541.388 6.348-4.352s.423 2.1.972 4.967c-2.718 3.716-18.331 25.024-26.057 35.425-1.921 2.584-3.534 9.163-3.534 9.163s-2.814-1.331-2.814-3.736c0-2.362.308-5.171.308-5.171s-2.101 2.406-5.735 2.406c0-2.903 5.614-6.052 5.836-10.186-4.281 3.174-7.999 1.545-12.951 3.072-5.393 1.661-6.895 3.927-8.549 3.84-.974-.053-1.856-1.733-1.484-2.765.644-1.787 7.314-6.733 11.977-7.627 1.117-.214 9.903 1.912 11.673-.819 7.292-11.252 19.13-29.518 20.272-31.278.752-.18 1.444-.371 1.995-.719 0 0-.067 5.751 1.743 7.78z'/%3e%3cpath d='M783.72 576.452c.353.408.322 1.006-.053 1.33l-2.866 2.508c-.375.324-.977.255-1.33-.154-.354-.408-.324-1.006.052-1.331l2.866-2.508a.851.851 0 0 1 .665-.204c.238.027.488.154.666.359zm4.351 3.02c.857.988.802 2.388-.103 3.175l-6.962 6.091c-.906.788-2.367.63-3.226-.357-.857-.988-.803-2.439.103-3.225l6.962-6.041a2.206 2.206 0 0 1 1.229-.513c.712-.058 1.46.254 1.997.87zm3.99 4.71c.857.988.803 2.387-.103 3.174l-7.012 6.092c-.906.787-2.316.63-3.175-.358-.858-.987-.803-2.438.104-3.224l6.961-6.041a2.07 2.07 0 0 1 1.178-.513c.711-.058 1.51.252 2.047.87zm2.403 3.737a2.37 2.37 0 0 1 1.997.819c.858.988.803 2.439-.102 3.225l-6.963 6.042c-.906.787-2.316.629-3.174-.359s-.854-2.388.051-3.175l7.014-6.091c.338-.296.749-.427 1.177-.461z'/%3e%3c/g%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 1792.404 0)'/%3e%3cpath fill='%23b07f55' d='M885.934 206.637c11.458 0 19.517 5.224 30.359 10.033 2.841 1.26 5.45 2.281 7.779 3.071-1.459 1.293-2.594 2.592-2.918 3.687 0 0 4.859.9 7.064 4.967 0 0-4.62.524-5.375 3.224 2.588.195 5.159 3.457 5.171 6.605l-6.553-2.049s1.587 7.358 1.587 15.358c0 4.086-5.886 8.894-5.886 15.819 0 21.734 5.475 30.088 9.369 36.807 1.523 2.629 2.761 5.654 5.324 7.935-11.218-5.973-19.556-13.439-19.556-20.374v-26.262h-2.918v26.262c0 5.029 1.228 7.372 1.228 7.372 1.761 5.564 5.321 14.152 7.526 17.61-10.321-5.578-15.564-12.563-15.564-15.153v-36.092h-2.918v36.603l.563 2.508c-1.251 1.88-2.877 4.106-3.993 4.863-1.113-.756-2.69-2.986-3.943-4.863l.564-2.508v-36.603h-2.918v36.092c0 2.589-5.243 9.575-15.563 15.153 2.205-3.459 5.764-12.046 7.524-17.61 0 0 1.229-2.342 1.229-7.372v-26.262h-2.918v26.262c0 6.927-8.307 14.405-19.505 20.374 2.537-2.283 3.757-5.321 5.272-7.935 4.258-7.348 9.522-16.683 9.522-43.258 0-9.974-1.475-16.755-4.044-21.501-.781-1.566-1.833-5.734 4.146-5.734 3.097 0 10.188 5.478 10.188 5.478s-.292-4.371-3.891-6.86c-.597-.413-1.586-1.712-1.586-2.919 0-.904 1.551-3.135 2.763-3.686.833-.378-12.183-2.646-12.183-8.549 0-1.229.773-2.048 3.479-2.048 3.545 0 9.312 4.249 14.438 4.249 3.789 0 5.283-.922 9.163-.922 4.742 0 14.635 8.979 18.019 8.651-3.783-2.375-9.894-11.365-19.145-11.365-3.211 0-6.117.717-9.114.717-3.841 0-7.623-3.533-11.774-3.533-2.782 0-5.889.155-6.349-.564-.805-1.255-.08-1.983.666-3.02 1.409-1.957 5.366-2.525 9.267-2.661a77.953 77.953 0 0 1 3.433-.05c1.09.011 2.099.053 2.971.053z'/%3e%3cpath fill='%23cc092f' d='M848.73 220.69s2.419-4.581 8.534-4.581c2.556 0 10.992-.177 10.992-.177 1.124 2.921 6.249 7.802 6.249 12.878 0 0-5.202-9.377-19.723-9.377-3.649 0-6.054 1.256-6.054 1.256z'/%3e%3cpath fill='%23d10429' d='M872.34 230.6s-3.093 3.258-3.765 4.997c-3.061-1.16-8.399-6.661-8.399-6.661s4.525 2.642 12.163 1.664z'/%3e%3cpath d='M867.44 221.97s-3.568-1.144-3.568-2.342c0-1.526 1.733-1.526 2.769-.337.713.819.798 2.68.798 2.68z'/%3e%3cellipse cx='882.798' cy='222.06' rx='5.112' ry='4.043'/%3e%3ccircle fill='%23f5d402' cx='882.8' cy='222.06' r='3.56'/%3e%3ccircle cx='882.799' cy='222.06' r='1.511'/%3e%3cpath d='m801.375 591.952 16.201 8.838-3.93 18.029-16.201-8.84z'/%3e%3cpath d='m725.9 418.73-5.836 2.663L786 565.813h7.014zm77.762 170.32-4.76 4.915 2.969 6.553 5.784-2.662z'/%3e%3cpath d='M746.39 532.6s5.554 11.472 9.775 13.045c-2.183-.595-9.271 2.006-9.271 2.006s12.499 11.165 23.1 11.898c8.99.619 13.355-3.868 13.355-3.868l-1.801-9.524s-5.5-6.642-14.302-9.707c-8.894-3.098-20.857-3.848-20.857-3.848zm41.87-20.55s-7.669 6.565-9.768 14.169c-2.1 7.605 1.368 16.247 1.368 16.247l6.444 12.021s8.931-4.753 12.73-11.86c3.799-7.108 2.406-16.698 2.406-16.698s-7.075 2.634-7.975 3.8c1.493-7.884-5.206-17.679-5.206-17.679zm-24.65-3.07s-8.722 2.948-17.192 2.438c-8.068-.487-14.777-7.262-14.777-7.262s6.688-4.526 9.989-3.923c-3.631-1.327-8.896-10.423-8.896-10.423s7.482-2.261 14.116.24c6.634 2.503 12.419 9.77 12.419 9.77l4.342 9.16zm3-42.6s4.362 9.032 3.328 12.171c1.353-2.09 6.474-5.345 6.474-5.345s3.096 14.624.135 23.656c-2.96 9.031-11.974 12.47-11.974 12.47l-9.943-19.337s-1.48-7.164 1.62-12.837c3.101-5.673 10.36-10.779 10.36-10.779zm-56.75-23.91s9.427-.99 18.051 2.583c7.21 2.993 9.42 8.433 9.42 8.433l3.551 9.52s-10.261 3.848-18.368.906c-8.108-2.945-14.065-12.68-14.065-12.68s5.666-2.149 7.823-1.343c-3.142-1.39-6.41-7.419-6.41-7.419v.001zm29.65-17.67s4.137 5.313 4.261 11.424c1.103-3.249 6.268-6.84 6.268-6.84s5.312 12.855 4.146 21.982c-1.166 9.128-8.809 14.527-8.809 14.527l-9.531-18.092s-3.106-7.415-2.191-13.167c.916-5.75 5.856-9.836 5.856-9.836zm-32.65-34.6s-1.709 9.854 1.199 15.53c2.598 5.065 4.252 6.176 4.252 6.176-4.954-3.269-12.444-3.551-12.444-3.551s2.666 10.721 9.037 15.612 16.195 3.748 16.195 3.748 6.46-8.6 6.01-17.865c-.449-9.265-7.808-19.197-7.808-19.197s-2.902 6.02-3.158 10.514c-1.878-4.633-13.285-10.966-13.285-10.966zm77 165.07.265 3.537c5.875.055 6.75-.53 8.256 1.322 1.003 1.234 3.389 2.311 5.787 1.215 2.4-1.095 3.475-3.977 2.38-6.376s-3.326-2.92-5.475-2.496c-1.319.26-2.187 1.313-3.306 1.891-2.128 1.102-7.909.908-7.909.908z'/%3e%3cpath d='m783.35 552.57 2.859 2.095c-3.067 5.014-4.024 5.446-3.251 7.705.515 1.504.166 4.097-2.035 5.553-2.2 1.455-5.214.841-6.669-1.358-1.454-2.2-.715-4.366.783-5.965.92-.982 2.27-1.16 3.353-1.803 2.062-1.223 4.959-6.228 4.959-6.228zm-19.9-42 .264 3.537c5.876.054 6.75-.53 8.256 1.321 1.002 1.233 3.389 2.311 5.787 1.215 2.401-1.095 3.476-3.976 2.379-6.375-1.095-2.4-3.325-2.92-5.474-2.496-1.32.261-2.187 1.313-3.305 1.891-2.129 1.101-7.909.908-7.909.908z'/%3e%3cpath d='m764.64 511.82 2.5 2.517c-3.809 4.474-4.824 4.753-4.411 7.104.276 1.567-.473 4.075-2.874 5.17-2.399 1.095-5.279.021-6.376-2.379-1.095-2.399-.028-4.425 1.701-5.771 1.061-.825 2.425-.793 3.593-1.258 2.227-.887 5.867-5.382 5.867-5.382zm-20.97-43.1.265 3.537c5.876.054 6.75-.53 8.257 1.323 1.003 1.231 3.388 2.309 5.788 1.213 2.398-1.095 3.474-3.975 2.379-6.377-1.097-2.399-3.326-2.919-5.476-2.495-1.32.261-2.187 1.313-3.306 1.891-2.128 1.102-7.908.907-7.908.907z'/%3e%3cpath d='m745.3 467.98 2.499 2.516c-3.809 4.475-4.822 4.754-4.411 7.105.276 1.566-.473 4.074-2.873 5.169-2.399 1.094-5.28.02-6.376-2.379-1.094-2.4-.027-4.426 1.701-5.771 1.061-.827 2.424-.793 3.594-1.26 2.227-.887 5.866-5.38 5.866-5.38zm-22.7-43.44.264 3.536c5.876.055 6.751-.53 8.256 1.321 1.004 1.234 3.39 2.311 5.788 1.217 2.4-1.097 3.475-3.977 2.38-6.377s-3.326-2.921-5.476-2.496c-1.318.261-2.186 1.314-3.305 1.891-2.128 1.101-7.909.908-7.909.908z'/%3e%3cpath d='m724.23 423.8 2.498 2.517c-3.808 4.475-4.823 4.753-4.41 7.105.276 1.566-.474 4.074-2.873 5.169-2.4 1.095-5.28.021-6.375-2.379-1.096-2.399-.028-4.427 1.699-5.771 1.062-.825 2.425-.793 3.594-1.26 2.226-.886 5.866-5.38 5.866-5.38z'/%3e%3cpath d='m803.71 597.062 10.048 5.482-2.438 11.183-10.049-5.482zm-43.99-96.972c-2.106.874-5.23-8.295-7.524-13.318-2.353-5.155-7.131-13.1-5.774-13.72 1.489-.68 3.451 3.492 5.859 8.767 2.408 5.273 9.412 17.449 7.439 18.269zm-21.63-48.29c-2.105.877-4.41-5.127-6.703-10.151-2.353-5.154-4.645-8.795-3.288-9.415 1.49-.68 3.69 3.837 5.616 8.055 1.866 4.088 6.348 10.69 4.374 11.512zm50.04 109.49c-1.653.442-8.869-14.662-14.703-27.442-5.833-12.779-10.177-23.119-8.82-23.736 1.49-.681 6.213 11.391 12.049 24.172 5.835 12.781 12.713 26.673 11.475 27.006z' fill='%23f5d402'/%3e%3cpath d='M709.76 396.19s-.255 7.201 2.127 11.285c2.383 4.086 7.704 5.715 7.704 5.715s.254-7.199-2.128-11.283c-2.383-4.086-7.703-5.717-7.703-5.717zm-4.98 16.29s6.255.368 9.868 3.136c3.61 2.768 5.009 8.535 5.009 8.535s-4.146.421-7.756-2.347c-3.611-2.769-7.121-9.324-7.121-9.324zm19.63-14.54s-2.08 4.77-1.84 9.912c.239 5.143 3.24 10.937 3.24 10.937s2.713-6.174 2.474-11.318c-.238-5.143-3.147-8.075-3.874-9.531zm-10.53 46.36s3.071 4.288 7.799 6.626c4.728 2.337 11.773 2.424 11.773 2.424s-3.516-4.562-8.245-6.9c-4.728-2.337-11.327-2.152-11.327-2.152zm1.52 9.96s2.257 4.421 6.384 6.316c4.129 1.896 12.574 1.74 12.574 1.74s-3.24-4.131-7.368-6.027c-4.128-1.897-11.591-2.029-11.591-2.029zm23.77-23.58s-2.495 4.123-2.251 8.666c.245 4.545 3.227 9.511 3.227 9.511s2.097-5.693 1.852-10.237c-.244-4.545-2.829-7.94-2.829-7.94zm9.19 5.83s-4.269 5.73-4.882 11.621c-.613 5.89 2.428 11.942 2.428 11.942s5.157-5.178 5.77-11.068c.613-5.892-3.316-12.493-3.316-12.493zm-11.77 54.4s.513 2.118 2.297 4.367c1.783 2.251 4.836 4.632 4.836 4.632s2.949-.948 6.615-.155c3.665.795 8.54 4.06 8.54 4.06s-5.247-7.831-10.695-10.876c-5.448-3.043-11.591-2.029-11.591-2.029zm-.54 13.46s6.793-2.902 12.387-2.153c5.595.749 10.639 5.171 10.639 5.171s-7.561 2.616-13.155 1.868c-5.596-.749-9.872-4.886-9.872-4.886zm28.71-31.58s-6.007 6.364-6.511 11.887c-.503 5.522 4.871 10.669 4.871 10.669s-.264-3.542.661-5.874c.926-2.332 2.893-4.822 2.893-4.822s.838-2.843.514-5.123c-.453-3.186-2.428-6.737-2.428-6.737zm8.62 7.37s-5.662 5.729-7.158 11.864c-1.497 6.135 1.17 12.676 1.17 12.676s5.149-4.062 6.646-10.196c1.497-6.135-.659-14.344-.659-14.344zm14.18 36.98s2.565 5.355 3.215 9.833c.652 4.477.048 6.027.048 6.027s-2.652 2.607-3.841 4.14c-1.528 1.97-1.752 5.576-1.752 5.576s-5.325-7.916-4.504-13.703c.82-5.786 6.834-11.874 6.834-11.874zm11.22 12.39s-6.818 4.503-9.523 9.123c-2.708 4.617-1.304 9.349-1.304 9.349s4.858-.428 7.566-5.046c2.706-4.618 3.26-13.427 3.26-13.427zm-44.8 19.02s9.826-.268 15.832 1.209c6.006 1.475 8.192 4.695 8.192 4.695s-6.753 3.162-12.759 1.686c-6.006-1.475-11.266-7.591-11.266-7.591zm-1.66-11.66s4.433 6.873 10.164 9.367c7.898 3.435 17.043 1.77 17.043 1.77s-4.968-6.089-11.804-8.777c-6.838-2.687-15.403-2.359-15.403-2.359z' fill='%23097754'/%3e%3cpath d='m1088.74 401.944 1.281 2.712s-2.08.714-3.022 2.559c-.94 1.847.615 4.455.615 4.455s-10.804-.943-12.491.154c-1.528.99.647 8.474-.359 14.795-1.402 8.81-4.875 8.07-5.017 9.777-.138 1.659 1.331 4.249 1.331 4.249s-2.026.638-2.458 1.485c-.695 1.362.484 3.875-.358 5.528-4.7 9.223-11.64 22.836-16.228 31.843-.641 1.257-2.363 1.737-3.226 3.43-.796 1.562-.153 3.839-.153 3.839s-3.041.182-4.096 2.253c-1.121 2.2-.461 5.17-.461 5.17s-1.923.246-2.868 2.099c-1.009 1.981.7 3.02.259 3.891-6.169 12.102-13.434 26.368-17.867 35.068-1.631 3.199-7.338 3.84-10.65 10.341-3.214 6.306 1.382 10.955 1.382 10.955s-4.772.432-6.04 2.919c-1.292 2.535-.27 6.384 3.174 8.139 3.444 1.754 7.207.334 8.5-2.201 1.267-2.487-1.281-6.604-1.281-6.604s6.463.931 9.675-5.376c3.313-6.501.52-11.441 2.15-14.641 4.434-8.7 11.7-22.965 17.867-35.068.445-.871 2.267-.117 3.276-2.098.944-1.853 0-3.532 0-3.532s2.822-1.23 3.943-3.431c1.056-2.071-.563-4.658-.563-4.658s2.223-.792 3.02-2.354c.862-1.693.228-3.35.869-4.609 4.59-9.006 11.531-22.62 16.229-31.841.843-1.655 3.555-2.221 4.249-3.585.432-.846-.255-2.866-.255-2.866s2.988-.296 4.248-1.383c1.298-1.118-1.337-3.516 4.967-9.829 4.522-4.528 11.817-7.192 11.722-9.01-.105-2.01-7.218-10.187-7.218-10.187s3.001-.253 3.942-2.098c.941-1.846.308-3.994.308-3.994l2.968-.512V393.65zm-98.136 196.074a3.498 3.498 0 0 0 0 3.121s-3.583-1.12-4.812-.512c-1.158.573 0 17.458 0 17.458s14.295-9.018 14.077-10.29c-.23-1.352-3.225-3.635-3.225-3.635 1.158-.186 2.061-.912 2.509-1.791.47-.925.533-3.568-2.714-5.223-1.216-.62-2.299-.804-3.175-.716-1.455.147-2.365 1.01-2.66 1.588z'/%3e%3cg fill='%23f5d402'%3e%3cpath d='m1091.34 402.51 6.757 3.431-.101-8.14zm-2.61 4.915c-.868 1.704-.025 3.886 1.894 4.863 1.92.977 4.148.373 5.018-1.33.868-1.704.023-3.885-1.895-4.863a4.2 4.2 0 0 0-2.201-.462c-1.208.083-2.273.727-2.816 1.792zm-11.62 6.195c-.711.46.256 6.545.051 11.722-.194 4.882-1.756 6.257-2.611 7.935-.789 1.549-3.634 3.379-3.634 3.379l2.354 2.355s1.532-2.386 3.942-7.118c2.843-5.579 2.751-15.688 3.585-16.227.725-.469 6.655-1.946 6.655-1.946-.001 0-5.442-.294-8.447-.255-1.003.013-1.73.048-1.895.155z'/%3e%3cpath d='M1077.73 441.725s.787-2.188 3.533-7.577c3.311-6.499 10.379-11.213 10.544-12.389.172-1.212-2.457-6.91-2.457-6.91s-6.235 1.195-7.117 2.048c-.852.823-.476 9.267-3.788 15.767-2.744 5.388-4.094 7.372-4.094 7.372z'/%3e%3cpath d='M1093.65 422.22c.052.989-8.163 6.861-11.007 12.439-2.41 4.731-3.43 7.373-3.43 7.373l3.277.512s-.226-3.367.563-4.915c.854-1.677 1.079-3.731 4.915-6.757 4.068-3.209 9.567-6.014 9.522-6.861-.041-.782-6.144-8.344-6.144-8.344s2.257 5.692 2.304 6.553zm-24.06 36.5c4.936-9.688 6.444-10.348 7.065-11.569.669-1.312.509-3.078-1.689-4.199-.824-.419-1.531-.526-2.15-.459-1.033.111-1.784.767-2.201 1.586-.622 1.222-.285 2.855-5.223 12.544l-11.212 21.961s-1.175 2.156 1.024 3.276c2.199 1.119 3.174-1.127 3.174-1.127zm-19.81 25.188c-.611 1.201.436 2.964 2.355 3.943 1.919.976 3.996.791 4.607-.41.611-1.2-.486-2.964-2.406-3.943-.959-.489-1.935-.687-2.764-.613-.83.072-1.486.424-1.792 1.023zm-4.15 6.245c-.792 1.553.443 3.783 2.765 4.968 2.322 1.183 4.84.886 5.631-.667.792-1.554-.444-3.782-2.765-4.967-.871-.442-1.733-.677-2.56-.716-1.374-.065-2.576.411-3.071 1.382zm-2.61 6.964c-.611 1.199.437 2.963 2.355 3.941 1.919.978 3.995.791 4.608-.409.611-1.2-.437-2.964-2.355-3.942-.96-.49-1.986-.688-2.816-.615-.828.073-1.485.424-1.792 1.025zm-1.69 6.655s-12.448 24.5-16.84 33.121c-1.404 2.754-7.312 4.47-9.625 9.011-2.33 4.568-.686 8.844 2.354 10.392 3.039 1.549 7.502.423 9.83-4.146 2.313-4.54.235-10.353 1.637-13.106 4.393-8.624 16.843-33.122 16.843-33.122s1.226-2.156-.973-3.276a2.372 2.372 0 0 0-1.433-.255c-1.212.155-1.793 1.381-1.793 1.381zm-31.49 56.874c-.933 1.83.134 4.269 2.405 5.426 2.272 1.158 4.904.601 5.837-1.228.933-1.83-.186-4.27-2.457-5.427-.852-.435-1.721-.637-2.56-.614-1.399.04-2.643.7-3.225 1.843zm-16.583 37.423c-.71.024-1.298.249-1.535.717-.477.935.508 2.413 2.201 3.276 1.693.862 3.464.782 3.942-.154.477-.937-.51-2.414-2.201-3.276-.847-.432-1.695-.588-2.407-.564zm-5.836 4.606v12.082l9.83-7.065s-1.333-2.354-4.25-3.84c-2.917-1.485-5.58-1.178-5.58-1.178z'/%3e%3c/g%3e%3cpath fill='%23f5d402' d='M993.643 333.597c0-6.626 8.703-13.157 8.703-13.157H790.1s8.703 6.53 8.703 13.157v157.986c0 4.162 1.286 6.872 3.328 9.521 2.041 2.853 6.39 6.795 10.903 9.727 13.94 9.053 37.246 18.599 54.88 26.621 14.694 6.684 20.671 9.381 28.309 18.839 7.639-9.458 13.667-12.154 28.361-18.839 17.631-8.021 40.938-17.568 54.879-26.621 4.515-2.932 8.864-6.873 10.904-9.727 2.042-2.649 3.276-5.359 3.276-9.521z'/%3e%3cpath fill='%23d10429' d='M803.82 422.981v-89.385c0-5.059-2.56-8.139-2.56-8.139h189.928s-2.56 3.081-2.56 8.139l.054 89.385-92.431 28z'/%3e%3cpath fill='%230b45bb' d='m988.681 422.981-57.234-1.075h-70.393l-57.234 1.075v68.601c0 3.448 3.578 11.525 24.215 21.807 34.111 16.998 60.33 24.934 68.189 34.607 7.858-9.673 34.077-17.61 68.189-34.607 20.636-10.282 24.214-18.359 24.214-21.807z'/%3e%3cpath d='M930.063 419.401s33.019-8.326 33.019-43.617c0-27.563-33.103-41.237-34.044-47.814-3.235 11.381 11.058 27.1 11.058 45.715 0 24.086-17.764 25.239-17.764 25.239-4.157 0-5.841 2.968-7.475 2.968-3.497-.365-5.143-4.813-8.601-4.813-3.247 0-5.74 5.017-10.033 5.017-4.292 0-6.735-5.017-9.983-5.017-3.456 0-5.103 4.448-8.6 4.813-1.634 0-3.319-2.968-7.476-2.968 0 0-17.763-1.153-17.763-25.239 0-18.615 14.295-34.336 11.058-45.715-.938 6.577-34.041 20.25-34.041 47.814 0 35.291 33.019 43.617 33.019 43.617l-9.42 17.149s13.645.683 20.887 6.861c8.733 7.448 7.883 23.229 7.883 34.709 0 9.045-1.143 18.59-5.784 22.524-6.232 5.284-10.445 5.675-10.445 11.878 0 5.174 3.977 6.211 10.445 9.625 8.287 4.373 7.901 10.238 20.22 10.238 12.321 0 11.985-5.864 20.273-10.238 6.468-3.414 10.444-4.451 10.444-9.625 0-6.203-4.214-6.594-10.444-11.878-4.641-3.936-5.784-13.48-5.784-22.524 0-11.48-.849-27.261 7.883-34.709 7.243-6.177 20.886-6.861 20.887-6.861z'/%3e%3cpath d='m896.22 330.42-5.735 16.281-15.614-7.424 7.423 15.615-16.279 5.784 16.279 5.785-7.423 15.563 15.614-7.423 5.735 16.279 5.785-16.279 15.614 7.423-7.422-15.563 16.279-5.785-16.279-5.784 7.422-15.615-15.614 7.424-5.785-16.281zm-35.17 91.49s-20.387-4.984-28.002-15.051c-13.313 11.976-29.232 16.126-29.232 16.126s16.607 7.498 29.232 17.048c5.817-8.336 28.002-18.123 28.002-18.123zm70.39 0s22.186 9.786 28.004 18.123c12.623-9.55 29.229-17.048 29.229-17.048s-15.917-4.151-29.229-16.126c-7.615 10.066-28.004 15.051-28.004 15.051zm-62.04 21.7-7.935 7.934 7.935 7.935 7.935-7.935-7.935-7.934zm53.7 0-7.934 7.934 7.934 7.935 7.935-7.935-7.935-7.934zm-55.697 46.33c0 10.025-.972 15.307-.972 15.307s11.186-3.293 13.414-14.641c1.044-5.32 2.207-24.918-3.175-28.259l-14.59-2.867c1.576 3.899 5.323 15.977 5.323 30.46zm48.426-27.592c-5.381 3.34-4.218 22.938-3.174 28.259 2.227 11.348 13.413 14.641 13.413 14.641s-.972-5.282-.972-15.307c0-14.483 3.747-26.562 5.324-30.46zm-82.824.567c-5.031 1.262-8.071 6.385-6.808 11.416.193.77.511 1.481.87 2.15a9.254 9.254 0 0 0-2.304-.461 9.55 9.55 0 0 0-.972 0c-4.761.16-8.73 3.903-9.061 8.755-.354 5.174 3.579 9.629 8.755 9.983a9.393 9.393 0 0 0 2.251-.103 9.217 9.217 0 0 0-1.125 1.996c-1.937 4.813.409 10.351 5.222 12.288 4.812 1.935 10.298-.461 12.234-5.273a9.067 9.067 0 0 0 .564-2.202 9.277 9.277 0 0 0 1.586 1.689c3.979 3.328 9.931 2.801 13.259-1.177a9.364 9.364 0 0 0-1.178-13.208c-.602-.504-1.27-.9-1.945-1.228a9.316 9.316 0 0 0 2.098-.972c4.395-2.755 5.725-8.609 2.969-13.004-1.894-3.021-5.222-4.574-8.549-4.351a9.465 9.465 0 0 0-4.403 1.434 9.33 9.33 0 0 0-1.791 1.433 9.436 9.436 0 0 0-.256-2.303c-1.104-4.403-5.151-7.305-9.522-7.117a9.522 9.522 0 0 0-1.894.255zm99.82 27.335c1.017 9.587 8.808 17.619 18.429 19.914-1.643-2.687-2.735-5.682-3.072-8.856-1.205-11.37 7.588-20.581 19.607-20.581 1.894 0 3.729.234 5.528.667-4.237-6.947-12.215-11.775-20.887-11.775-12.018.001-20.813 9.263-19.605 20.631z'/%3e%3cg fill='%23ffd200'%3e%3cpath d='M847.592 373.684c0 18.128 9.667 28.821 22.576 28.821 2.462 0 5.155 3.328 7.475 3.328 3.782 0 6.298-4.198 8.601-4.198 2.927 0 4.9 4.607 9.982 4.607 5.083 0 7.107-4.607 10.034-4.607 2.302 0 4.818 4.198 8.6 4.198 2.321 0 5.012-3.328 7.475-3.328 12.909 0 22.577-10.693 22.577-28.821 0-14.784-12.416-32.81-11.058-35.734 0 0 24.214 17.369 24.214 37.832 0 32.963-33.429 41.109-33.429 41.109l7.525 16.944s-10.362 1.554-16.689 6.656c-8.439 6.805-8.55 25.191-8.55 37.626 0 14.648.545 20.855 5.837 24.829 5.58 4.193 9.777 5.096 9.777 9.369 0 3.723-4.345 5.246-9.983 7.73-6.413 2.827-7.052 7.731-16.33 7.731-9.279 0-9.867-4.904-16.28-7.731-5.637-2.484-9.983-4.006-9.983-7.73 0-4.273 4.197-5.176 9.777-9.369 5.292-3.974 5.836-10.181 5.836-24.829 0-12.435-.11-30.821-8.549-37.626-6.328-5.104-16.689-6.656-16.689-6.656l7.524-16.944s-33.428-8.145-33.428-41.109c0-20.463 24.215-37.832 24.215-37.832 1.358 2.924-11.057 20.95-11.057 35.734zM883.58 509.81c-6.567 0-10.75 1.386-10.75 3.379 0 1.994 4.184 3.328 10.75 3.328 1.75 0 3.737-1.019 3.737-3.328s-1.988-3.379-3.737-3.379zm25.34 0c-1.75 0-3.737 1.071-3.737 3.379-.001 2.309 1.987 3.328 3.737 3.328 6.568 0 10.75-1.333 10.75-3.328 0-1.994-4.183-3.379-10.75-3.379z'/%3e%3cpath d='m896.28 341.38 3.686 10.394 9.931-4.761-4.71 9.982 10.342 3.687-10.342 3.686 4.71 9.931-9.931-4.71-3.737 10.341-3.686-10.341-9.931 4.71 4.71-9.931-10.341-3.686 10.341-3.687-4.71-9.982 9.931 4.761 3.737-10.394zm-46.133 81.148c-.002 0-17.099 12.696-17.099 12.696l-.206.255-.358-.307-18.941-11.877s12.087-4.167 19.198-11.415c6.728 7.703 17.406 10.648 17.406 10.648zm128.801.767s-12.609 6.28-18.943 11.877l-.357.307-.204-.255c-5.986-6.871-17.098-12.696-17.098-12.696s10.676-2.945 17.405-10.648c7.111 7.248 19.197 11.415 19.197 11.415zM869.4 447.4l4.147 4.145-4.147 4.199-4.198-4.199 4.198-4.145zm53.7 0 4.199 4.145-4.199 4.199-4.146-4.199 4.146-4.145zm-48.067 18.119c2.897 3.998 2.405 10.462 2.405 19.455 0 9.067-6.808 12.541-6.808 12.541 0-21.794-2.247-27.034-3.43-33.635zm50.267-1.639c-1.185 6.602-3.429 11.841-3.429 33.634 0 0-6.809-3.474-6.809-12.541 0-8.993-.492-15.455 2.406-19.454l7.832-1.639z'/%3e%3cpath id='b' d='M842.832 472.128c.204.816.226 1.618.153 2.407-.06.654-.234 1.248-.46 1.842-1.133-.414-2.359-.615-3.635-.615-3.159 0-5.987 1.39-7.935 3.585a7.308 7.308 0 0 1-1.33-1.536c-.42-.649-.775-1.359-.973-2.15-.982-3.913 1.411-7.876 5.324-8.857.488-.124 1-.185 1.484-.204a7.29 7.29 0 0 1 7.372 5.528z'/%3e%3cuse xlink:href='%23b' transform='rotate(72 838.89 486.468)'/%3e%3cuse xlink:href='%23b' transform='rotate(144 838.89 486.468)'/%3e%3cuse xlink:href='%23b' transform='rotate(216 838.89 486.468)'/%3e%3cuse xlink:href='%23b' transform='rotate(288 838.89 486.468)'/%3e%3ccircle cx='838.89' cy='486.468' r='7.065'/%3e%3cpath d='M962.925 476.942c-11.729 2.268-20.17 12.628-18.942 24.727-3.738-3.096-6.473-7.266-6.962-11.877-.951-8.979 5.571-15.922 15.41-15.922 3.761 0 7.375 1.152 10.494 3.072z'/%3e%3c/g%3e%3c/svg%3e\"},6249:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 640 320'%3e%3cpath fill='%23d3ae3b' d='M0 0h640v320H0z'/%3e%3cpath fill='%23c40308' d='M16 16h608v288H16z'/%3e%3cpath fill='%23B96B29' d='M389.64 157.4c1.87-.53 8.39-2.43 12.98-6.16 4.6-3.72 5.49-6.7 5.86-8.32.37-1.61.53-2.88-.66-1.96-1.19.93-4.75 3.73-7.18 5.08a26.85 26.85 0 0 1-5.99 2.35c-1.32.37-2.37.6-1.1.1 1.26-.5 5.4-1.95 8.6-5.15 3.19-3.2 5.71-7.99 5.76-10.93.06-2.94-.15-2.73-1.1-2-.94.74-4.3 4.9-6.2 6.47a60.01 60.01 0 0 1-6.46 4.57c-1.52.9-3.67 1.89-.68-.16 3-2.05 8.67-6.88 10.98-13.13 2.31-6.25 1.89-9.93 1.84-10.56-.06-.63-.58-1.9-1.1-.73-.53 1.15-4.32 8.72-7.36 11.97-3.05 3.26-2.31 2.63-3 3.15-.68.53-1.83 1.47-.36-.37 1.47-1.83 4.52-6.09 6.1-10.29 1.57-4.2 1.99-8.4 2.04-10.82.05-2.42-1-5.78-1.47-6.78s-.95-1.73-1.1-.58c-.16 1.16-2.58 8.62-3.9 12.24a47.14 47.14 0 0 1-4.46 8.51c-.52.8-1.89 2.42-.42-.31s4.31-10.77 4.68-18.39c.37-7.61-.68-11.81-1.74-13.92-1.05-2.1-1.96-2.84-1.96-2.84s.18 5.2-1.37 12.67-3.82 11.41-3.82 11.41-.95 1.08-.3-.71a31.8 31.8 0 0 0 1.77-8.36c.44-4.72.5-10.1-.88-14.66-1.5-4.98-4.1-7.52-4.1-7.52-.73 7.14-.59 16.34-3.2 23.8-.5-.44-1.14-1.25-1.4.4a42.09 42.09 0 0 1-4.66 12.9c-3.22 5.87-4.53 6.64-4.53 6.64s-.6-1.43-1.02-2.2c-.41-.78-.65-1.2-1.19-.13-.54 1.08-2.33 5.2-6.27 9.74-3.93 4.55-6.14 6.76-6.02 10.16.12 3.41 1.9 5.14 4.3 6.7 2.38 1.55 2.8 2.39 2.44 4.24-.36 1.85-2.5 2.51-4.35 2.57-1.86.06-4.18-.12-5.02.36-.83.48-.9 1.67-1.73 2.5-.83.84-1.2 1.32-1.97 1.44l-.67.09c-.17-8.99 3.31-13 3.31-13l-9.73-11.42-1.5.7a2.72 2.72 0 0 0-.29-.44 7.46 7.46 0 0 1-1.72-5.18c.48.05 1.46.4 2.34.22.88-.17.22-1.06-.05-1.9-.26-.84-.53-3.76-.35-4.86l.26-1.55s1.42 1.55 2.3 1.55c.88 0 .8-.89.92-1.86.2-1.47.9-3.32 2.03-4.34 0 0 1.55 1.07 3.31 1.07a8.7 8.7 0 0 0 6.04-2.3c1.9-1.82 1.85-2.26 1.85-2.26s3.53 1.24 6.22 1.37c2.7.14 5.56-.3 6.93-3.14 1.36-2.83-.4-5.44-.7-5.88-.32-.44-1.2-.8-1.2 0s.05 2.92-1.59 3.98c-1.63 1.06-2.9 1.02-4.45.53a13.68 13.68 0 0 0-8.73-.23c.12-.11 2.13-2.18 4.1-2.78 2.03-.62 3.22.22 3.88 1.02s1.23 2.08 1.76.22a6.9 6.9 0 0 0-.66-5.35 5.05 5.05 0 0 0-4.76-2.04c-1.98.23-2.69.53-2.69.53s-1.01-2.87-3.57-3.4c-3.12-.65-6.56.52-9.26 2.03 0 0-2.12.5-4.28-.13a13.96 13.96 0 0 1-3.64-1.81l.73-2.35 1.27-.43c.64-.25.5-.46.59-1 .08-.54-1.22-1.48-1.22-1.48s-.18-1.61 1.94-2.72c2.13-1.11 1.9-.93 1.9-.93s1.25.24 1.76-.13c.5-.37.5-.6.5-.6s.94-.31 1.3-.88c.34-.57.4-1.39.15-2.05-.25-.66-.57-.8-.22-1.1.34-.32.66-1.08.69-1.61l.03-.67s.72-.25.7-1.35c-.04-1.1-.64-1.55-.99-1.65-.34-.09-.56-.09-.56-.09s-.06-.66-.63-1.54c-.57-.89-.94-1.27-.94-1.27s.4-.31.19-1.04a1.94 1.94 0 0 0-1.23-1.32c-.5-.16-1.04 0-1.04 0s-1.67-1.01-2.45-1.42l-.98-.5s-.03-.7-.31-1.08-.95-.54-1.3-.54-.71.2-.71.2-2.84-.73-4-.92c-1.16-.2-1.23-.29-1.23-.29s-2.51-1.2-3.49-1.38c-.97-.2-1.25-.29-1.25-.29s1.01-1.23 1.08-2.65a3.95 3.95 0 0 0-1.89-3.36c-.57-.33-.87-.39-1.06-.5l-.02-.98 1.9.19.15-3.04-1.84.23.28-1.83-3.86-.05.29 1.83-1.86-.12.16 3 1.95-.26-.19 1.14s-.71.12-1.32.56c-1 .6-1.86 1.77-1.8 3.2.07 1.41.92 2.67.92 2.67s-.25.07-1.23.25c-.97.2-3.49 1.4-3.49 1.4s-.06.09-1.23.28c-1.16.19-4 .91-4 .91s-.37-.19-.72-.19c-.34 0-1 .16-1.28.54-.29.38-.32 1.07-.32 1.07l-.97.5c-.8.42-2.46 1.43-2.46 1.43s-.53-.16-1.04 0c-.5.16-1 .6-1.22 1.32s.19 1.04.19 1.04-.38.38-.95 1.26c-.56.89-.63 1.55-.63 1.55s-.22 0-.56.1c-.35.09-.95.53-.98 1.64-.03 1.1.7 1.35.7 1.35l.03.66c.03.54.34 1.3.69 1.61.34.32.03.44-.22 1.1-.25.67-.2 1.49.15 2.06.35.56 1.3.87 1.3.87s0 .23.5.6 1.76.14 1.76.14-.23-.18 1.9.93c2.12 1.1 1.93 2.72 1.93 2.72s-1.3.94-1.21 1.48c.08.54-.06.75.59 1 .65.24 1.26.43 1.26.43l.73 2.35c-.8.54-2.22 1.4-3.63 1.81-2.16.62-4.28.13-4.28.13-2.7-1.5-6.14-2.68-9.26-2.03-2.56.53-3.58 3.4-3.58 3.4s-.7-.3-2.68-.53a5.06 5.06 0 0 0-4.77 2.04 6.9 6.9 0 0 0-.66 5.35c.53 1.86 1.1.57 1.76-.22.67-.8 1.86-1.64 3.89-1.02 1.97.6 3.98 2.66 4.1 2.78a13.68 13.68 0 0 0-8.73.23 4.67 4.67 0 0 1-4.46-.53c-1.63-1.06-1.59-3.19-1.59-3.98s-.88-.44-1.19 0-2.07 3.05-.7 5.88c1.36 2.83 4.23 3.27 6.92 3.14 2.7-.13 6.22-1.37 6.22-1.37s-.04.44 1.85 2.26c1.9 1.8 4.28 2.3 6.04 2.3s3.31-1.07 3.31-1.07c1.14 1.02 1.83 2.87 2.03 4.34.13.97.04 1.86.93 1.86.88 0 2.29-1.55 2.29-1.55s.09.44.26 1.55c.18 1.1-.08 4.02-.35 4.86-.26.84-.93 1.73-.04 1.9.88.18 1.85-.17 2.33-.22 0 2.12-.42 3.52-1.72 5.18l-.27.4c-.48-.2-.96-.43-1.44-.67l-9.73 11.44s3.5 4.02 3.3 13.06v-.07c-.17-.01-.4-.04-.7-.09-.78-.12-1.14-.6-1.97-1.43-.84-.84-.9-2.03-1.73-2.51s-3.17-.3-5.02-.36c-1.85-.06-4-.72-4.35-2.57-.36-1.85.06-2.69 2.44-4.24 2.4-1.56 4.18-3.29 4.3-6.7.12-3.4-2.09-5.61-6.03-10.16-3.94-4.54-5.73-8.66-6.26-9.74s-.78-.65-1.2.12c-.41.78-1.01 2.21-1.01 2.21s-1.31-.77-4.54-6.63a42 42 0 0 1-4.65-12.91c-.26-1.65-.9-.84-1.4-.4-2.62-7.46-2.47-16.66-3.2-23.8 0 0-2.6 2.54-4.1 7.52-1.38 4.57-1.33 9.94-.89 14.66.42 4.5 1.33 7.15 1.77 8.36.66 1.79-.3.71-.3.71s-2.26-3.94-3.81-11.41c-1.56-7.47-1.38-12.67-1.38-12.67s-.9.74-1.96 2.84c-1.05 2.1-2.1 6.3-1.73 13.92.37 7.62 3.2 15.66 4.68 18.39 1.47 2.73.1 1.1-.43.31a47.3 47.3 0 0 1-4.46-8.5c-1.31-3.63-3.73-11.09-3.89-12.25-.16-1.15-.63-.42-1.1.58-.47 1-1.52 4.36-1.47 6.78a34.3 34.3 0 0 0 2.05 10.82c1.57 4.2 4.62 8.46 6.09 10.3 1.47 1.83.31.89-.37.36s.05.1-3-3.15-6.82-10.82-7.35-11.97c-.52-1.16-1.05.1-1.1.73-.05.63-.47 4.3 1.84 10.56 2.31 6.25 7.98 11.08 10.98 13.13 3 2.05.84 1.05-.69.16-1.52-.9-4.57-3-6.46-4.57-1.89-1.58-5.25-5.73-6.2-6.46-.94-.74-1.15-.95-1.1 2s2.58 7.72 5.77 10.92c3.2 3.2 7.33 4.65 8.6 5.15 1.27.5.21.27-1.1-.1a26.8 26.8 0 0 1-6-2.35c-2.42-1.35-5.98-4.15-7.17-5.08-1.19-.92-1.03.35-.66 1.96.37 1.61 1.26 4.6 5.85 8.32 4.6 3.73 11.11 5.63 12.99 6.16 1.87.53.55.53.55.53s-.74-.1-4.54-.95-9.55-3.86-11.1-4.84c-1.56-.98-1.8-1.35-1.59.71.21 2.06 2.4 6.48 5.91 8.54s9.84 3.12 11.48 3.2c1.63.08 1.21.31.47.37-.74.05-2.56.05-5.54-.3-2.44-.28-6.07-1.46-7.3-1.88-.14-.53-.27-1.04-.33-1.35-.14-.79-.55-.67-.8-.5-.27.18-.42.32-1.28.76-.88.44-.9-.09-.93-.35-.03-.26-.2-1.4-.24-1.98-.03-.58-.35-.61-.75-.44l-3.08 1.32c-.72.32-.06.9.32 1.6.38.7.96 1.71.96 1.71l-2.41.65c-.58.14-.4.55-.26.96.14.4 1.04 2.44 1.28 3.02s.75.24.75.24l1.83-1.08.64 2.44c-.03.04-.85.2-1.77.85-.93.65-.7 1.48.41 1.8 1.11.33 2.4.89 3.84 3.48 1.43 2.6 1.8 7.28 2.68 14.65.88 7.36 5.59 11.12 6.24 11.58s.27.84.27.84-.64.93-.37 2.36a3.55 3.55 0 0 0 2.17 2.5c.65.24.47.89.47.89s-.33 1.57 0 4.45c.32 2.87 2.68 6.11 3.32 6.67.65.55.7.83.6 1.07-.09.23-.5.04-1.29.64a8.15 8.15 0 0 0-2.22 2.46c-.55 1.02-.37 1.62-.18 3.01.18 1.4 2.22 2.65 2.22 2.65s-.37.09-.47 1.1c-.09 1.03.65 2.19 1.58 2.93.92.74 2.68 1.1 2.68 1.1l.23 1.5c.09.6 1.24 1.2 1.98 1.61.74.42 2.17.19 2.78-.09.6-.28 1.01.05 1.38.65.37.6.23 2.92.23 3.85 0 .92-.55 1.9-.23 2.36.32.46 1.2.14 2.08-.37.88-.51 1.11-.14 1.9.37a6 6 0 0 0 2.35.93c.33-.05.19-.88.19-1.58s.12-2.27.45-2.5c.15-.1 1.5-.21 2.55-.65.49-.2 1.11-.42 1.16-.88.04-.46-.65-.46-2.18-1.25-1.52-.79-1.8-1.25-2.77-1.9-.97-.65-.5-.88-.5-1.16 0-.28.46-.6.64-.97s.1-1.2.1-1.2.78-.8 1.15-1.21c.37-.42.83-1.07 1.34-1.49s1.3-2.4 1.8-3.06c.5-.64 1.66-1.34 2.36-2.22.69-.88 2.54-2.32 3.6-3.01 1.06-.7 3.93-2.04 3.93-2.04s-.05 1.71.7 2.55c.73.83 1.7-.65 4.98-2.97 3.28-2.32 5.78-3.15 5.78-3.15s.69 1.06 1.57 2.18c.87 1.1 1.66-.05 5.68-5.61a72.84 72.84 0 0 1 8.97-9.9l.9.4c-.09.22-.17.46-.25.72-.37 1.16-.97 1.9-1.75 3.5-.79 1.62-1.98 1.98-3.36 4.15-1.39 2.16-1.57 3.64-1.7 5.85-.15 2.2 1.1 2.67 1.1 2.67s-2.03 1.98-2.63 3.45c-.6 1.47-.92 4.47-.92 4.47s-.32.13-1.06 1.65c-.74 1.53-2.07 1.75-4 3.69-1.94 1.93-4.1 2.76-5.12 3.36-1 .6-.73 1.2-.46 1.98.28.78 1.66 1.56 3.27 2.16 1.62.6 2.17.37 3.27.32 1.1-.04.23.83-.23 1.3-.46.45-1.06 2.06-.96 3.86.09 1.8 1.42 1.38 3.08 1.1 1.66-.27 3.6-1.1 3.6-1.1l-.19.5c-.18.51-.28.88-.28 2.31 0 1.43.23 2.12.65 2.49.41.36 1.24-.42 1.84-.6.6-.19 1.61-.78 3.09-1.1 1.47-.33 2.02-.97 2.02-.97s-.37.46-.46 1.47c-.1 1.01-.05 2.53.19 3.4.22.88.87 1.94 1.88 2.86 1.02.92 1.25.5 1.98-.64.74-1.15 2.26-2.63 2.26-2.63s.09.37 1.1 3.64c1.02 3.27 4.33 5.99 4.33 5.99s3.32-2.72 4.33-6c1.01-3.26 1.1-3.63 1.1-3.63s1.52 1.48 2.26 2.63c.74 1.15.97 1.56 1.98.64a6.29 6.29 0 0 0 1.89-2.85c.23-.88.27-2.4.18-3.41-.09-1.01-.46-1.47-.46-1.47s.55.64 2.03.96c1.47.33 2.48.92 3.08 1.1.6.2 1.43.97 1.84.6.42-.36.65-1.05.65-2.48s-.1-1.8-.28-2.3l-.18-.51s1.93.83 3.6 1.1 2.98.7 3.08-1.1c.09-1.8-.51-3.4-.97-3.87-.46-.46-1.34-1.33-.23-1.29 1.1.05 1.66.28 3.27-.32 1.6-.6 3-1.38 3.27-2.16.27-.78.55-1.38-.46-1.98-1.02-.6-3.18-1.43-5.11-3.36-1.94-1.94-3.27-2.16-4.01-3.69-.74-1.52-1.06-1.65-1.06-1.65s-.32-3-.92-4.47c-.6-1.47-2.62-3.45-2.62-3.45s1.24-.46 1.1-2.67c-.14-2.21-.32-3.69-1.7-5.85-1.38-2.17-2.58-2.53-3.37-4.15-.78-1.6-1.38-2.34-1.74-3.5a21.1 21.1 0 0 0-.24-.7l1.19-.51a72.7 72.7 0 0 1 8.99 9.9c4.02 5.57 4.8 6.73 5.68 5.62.88-1.11 1.57-2.18 1.57-2.18s2.5.83 5.78 3.15c3.28 2.32 4.25 3.8 4.99 2.97.39-.44.47-1.17.52-1.73a69.7 69.7 0 0 1 7.84 2.78c2.85 1.2 3.16 1.83 5.42 3.61s5.48 1.62 8.53.69c3.04-.93 11.16-3.6 14.42-5.02 3.25-1.4 5.58-2.64 5.92-3.3.34-.65.72-2.47.72-3.12 0-.65-.72-1.62-.96-1.79-.24-.17-.13-.69-.07-1.1a3.45 3.45 0 0 0-.65-2.2c-.5-.55-.44-.75-.37-2.33.14-3.36-2.25-7.58-5.64-8.93 0 0-.09-.39-.36-.62-.28-.22-.73-.43-.73-.43s.06-1.93.04-2.34c-.02-.41.16-.37.4-.25.22.11.58.57 1.13.7.55.15.9-.25 1.01-.86.11-.62.57-1.86.78-2.48.2-.62-.05-.71-.3-.78-.25-.07-1.07-.16-1.46-.25-.4-.1-.4-.12-.3-.32.1-.21.23-.53.73-1.31s.05-.8-.44-.96c-.48-.17-2.65-.83-3.24-.92-.6-.1-.73.4-.73.66s.02 1.36.04 1.77-.36.3-.6.18a8.45 8.45 0 0 1-1.16-.76c-.41-.32-.7-.02-.87.44-.16.46-.66 2.34-.82 2.9-.16.54-.12.98.11 1.07.23.1 1.3 0 1.95 0 .64 0 .27.37.27.37s-.69 1.12-.91 1.56c-.23.43-.62.5-1.15.5h-1.4s-3.52.13-6.1 2.05c-2.6 1.92-3.32 3.52-3.72 4.44-.4.93-.86.73-1.26 1.06-.4.34-1.52 1.53-1.52 2.26 0 .73.26 1.13-.87 1.86-1.12.73-2.05 3.9-.53 5.57 1.53 1.65 2.13 3.3 2.6 4.1.45.8 0 1.13-.4 1.13s-1.24-.67-1.93-1.2c-.7-.5-4.2-3.24-5.7-4.37-1.5-1.12-.4-1-.4-1s.38.04 1.26-.33 1.02-.83.14-1.1a11.14 11.14 0 0 1-3.05-1.72c-.46-.47-.7-.98.19-1.44.87-.46 2.81-1.71 1.29-2.13-1.53-.42-3.33-.74-4.8-1.16-1.49-.42-1.63-.83-1.63-.83l.98-1.4s.78-1.1-.14-1.25-3.14-.41-5.18-1.3c-4.06-1.75-6.6-4.74-7.55-8.38l.07-.09c.76 1.5 2.53 4.3 5.19 4.4 3.64.12 4.06-1.02 3.22-2.22s-1.79-2.27-2.03-2.62c-.24-.36-.3-.84.66.06s2.77 3.94 8.26 3.58c5.5-.36 5.46-1.43 5.46-1.73 0-1.06-1.11-1.22-1.77-1.88-.35-.35-.56-.85.55-.43s3.83.93 7.52.13c1.46-.3 5.33-2 5.7-3.96 0 0-2.45-.13-4.17-.87-1.71-.74-2.74-1.35-.92-.98 1.82.37 5.36 1.11 8.47.06 1.82-.62 4.17-2.1 4.17-4.79 0 0-3.38-.71-4.62-1.16-1.24-.45-1.64-.8-1.64-.8s4.83 1.54 9.21-.68c4.38-2.22 4.57-5.26 4.57-5.97s-.1-.93-.1-.93-4 .98-6.97.95c-2.99-.02-3.9-.29-3.9-.29s8.33-.23 12.52-2.8c4.2-2.56 4.44-7.6 4.44-7.6s-4.75 1.68-7.73 2.03c-2.98.34-4.8.34-5.54.29-.74-.06-1.16-.3.47-.37 1.64-.08 7.97-1.14 11.48-3.2 3.5-2.06 5.7-6.48 5.91-8.53.21-2.07-.03-1.7-1.58-.72-1.56.98-7.31 4-11.11 4.84-3.8.84-4.54.95-4.54.95s-1.46-.07.42-.6zm-150.1 9.58-1.68.96s-.67-1.37-.85-1.77c-.17-.41-.08-.59.15-.59.23 0 .93-.2 1.48-.26.08 0 .15-.02.21-.03.19.52.43 1.09.75 1.66l-.06.04zm51.18 29.97c-1.02 1.9-3.79 3.9-5.82 4.78s-4.25 1.15-5.18 1.3c-.92.13-.14 1.24-.14 1.24l.97 1.4s-.13.41-1.61.83-3.28.74-4.8 1.16c-1.53.41.4 1.67 1.28 2.13.88.46.65.97.19 1.44-.46.46-2.17 1.43-3.05 1.71s-.74.75.14 1.12c.88.36 3.28.83 3.28.83s-.05.1-1.52 1.2a12.1 12.1 0 0 1-5.78 1.95c-1.71.1-4.41.2-7.84.05-3.43-.16-3.82-.24-3.82-.24s-.12-1.14-.36-2.84c-.23-1.69-1.26-4.1-2.05-5.2-.78-1.1-2.44-3.3-2.44-3.3s.04-.48.16-1.03.04-1.14-.36-2.18c-.4-1.05-2.4-2.57-2.4-2.57s-.09-1.12-.09-2.16-.72-5.13-1.36-7.05c-.64-1.92-3.76-6.97-5.2-9.37-1.45-2.4-2.3-5.96-2.74-8.73-.43-2.76-.26-3.67-.11-4.4.06-.31.2-.6.32-.86a8.6 8.6 0 0 0 2.32 2.08c4.2 2.56 12.54 2.8 12.54 2.8s-.93.27-3.9.3c-2.99.02-6.97-.96-6.97-.96s-.11.21-.11.93.19 3.75 4.56 5.97c4.38 2.22 9.21.69 9.21.69s-.4.34-1.63.79c-1.24.45-4.62 1.16-4.62 1.16 0 2.7 2.35 4.17 4.17 4.78 3.11 1.06 6.65.32 8.47-.05 1.82-.37.8.24-.93.98-1.7.74-4.16.87-4.16.87.37 1.96 4.24 3.65 5.7 3.96 3.69.8 6.4.3 7.52-.13s.9.08.55.42c-.66.67-1.78.83-1.78 1.89 0 .3-.03 1.37 5.46 1.73s7.31-2.69 8.27-3.59c.95-.9.9-.42.65-.06-.23.36-1.19 1.44-2.02 2.63-.84 1.2-.42 2.33 3.22 2.21 2.68-.08 4.45-2.93 5.2-4.42l.05.07.15.2c-.34.88-.93 2.32-1.58 3.54zM335 78.19c-.5-.94-.76-1.39-.76-1.39s2.07.97 3.3 2.36c1.23 1.4 1.2 2.13 1.39 2.81.18.69 0 1.94-.19 3.13-.18 1.18-.18 1.89.06 2.3.23.43.44.64.44.64s-.92.23-1.78.57c-.86.35-1.99.66-2.62.14-.63-.53-.78-.9-.39-1.24.4-.34 1.86-.76 2.04-3.28.18-2.52-.99-5.1-1.49-6.04zm-11.28 6.86c.47-1.2.67-2.34.3-4.8-.3-2.06-.7-3.82-.8-6.04 0 0 1.53.33 3.72 2.34 2.2 2 2.7 4.07 2.7 5.07s-.53 2.23-.61 3.2c-.09.98.27 1.85.27 1.85s-.8.33-1.52.83c-.73.5-1.23.8-2.34.75-1.1-.05-1.78-.55-2.42-.89s-1.05-.39-1.05-.39 1.27-.72 1.74-1.92zm-10.7-8.5c2.2-2 3.72-2.34 3.72-2.34-.1 2.22-.5 3.98-.8 6.05-.36 2.45-.17 3.59.3 4.79.48 1.2 1.75 1.92 1.75 1.92s-.41.06-1.05.39c-.64.33-1.3.84-2.42.9-1.11.05-1.61-.26-2.33-.76-.73-.5-1.53-.83-1.53-.83s.36-.87.27-1.84c-.08-.98-.6-2.2-.6-3.2 0-1.01.5-3.07 2.7-5.08zm-7.91 12.2c-.63.52-1.75.2-2.62-.13-.86-.35-1.78-.58-1.78-.58s.21-.21.45-.63c.23-.42.23-1.13.05-2.31-.18-1.19-.37-2.44-.18-3.13.18-.68.15-1.42 1.38-2.8 1.23-1.4 3.3-2.37 3.3-2.37s-.26.45-.76 1.39c-.5.95-1.67 3.52-1.49 6.04.18 2.52 1.65 2.94 2.04 3.28.4.34.23.71-.4 1.24zm29.24 21.07c-2.16 1.2-3.4.93-3.3 1.82.08.88 2.02 1.55 2.02 1.55s-1.98 2.12-3.53 3.1c-1.54.97-3.35 1.59-3.35 1.59s-.62.08-.27 1.06c.36.97.97 1.63 1.46 1.9.48.26.75.35.75.35s-2.69 2.88-3.88 3.8c-1.2.94-1.85 1.25-2.82 1.64-.97.4-.49 2-.27 2.7.22.7 1.06 1.68 1.55 1.82.48.13.66.48.04 1.46-.46.72-2 2.65-2.74 3.72l-.04.02c-.73-1.06-2.29-3.01-2.75-3.74-.62-.98-.44-1.33.04-1.46s1.32-1.11 1.54-1.82c.22-.7.71-2.3-.26-2.7-.97-.4-1.63-.7-2.82-1.63-1.2-.93-3.88-3.8-3.88-3.8s.26-.1.75-.36a3.6 3.6 0 0 0 1.45-1.9c.35-.98-.26-1.06-.26-1.06s-1.81-.62-3.36-1.6c-1.54-.97-3.52-3.1-3.52-3.1s1.94-.66 2.03-1.54c.08-.89-1.15-.62-3.31-1.82s-2.87-2.7-2.87-2.7 2.51-.83 3.75-3.36c.44-.89.54-1.7.5-2.39l.1.04c4 1.3 8.7 1.83 12.9 1.83 4.18 0 8.87-.53 12.87-1.83l.1-.04c-.05.69.06 1.5.5 2.4 1.23 2.52 3.74 3.36 3.74 3.36s-.7 1.5-2.86 2.7z'/%3e%3cpath fill='%23D4AF3A' d='M347.47 158.5c0-6.79 3.12-11.08 3.12-11.08l-8.5-9.73c-8.08 3.13-15.5 3.32-22.09-.04-6.6 3.36-14 3.17-22.1.04l-8.5 9.73s3.13 4.3 3.13 11.08c0 6.79-1.31 11.82-2.08 15.1-.76 3.29-1.42 9.41.33 13.8 1.75 4.37 3.61 8.2 11.16 11.37s11.5 4.82 14.12 7c2.63 2.2 3.94 3.95 3.94 3.95s1.31-1.76 3.94-3.94c2.63-2.2 6.57-3.83 14.12-7 7.55-3.18 9.4-7.01 11.16-11.39 1.75-4.38 1.1-10.5.33-13.79-.76-3.28-2.07-8.3-2.07-15.1z'/%3e%3cpath fill='%23B96B29' d='M344.8 161.3c-1.06-6.48 2.67-12.19 2.67-12.19l-7.27-8.5c-5.6 3.15-13.4 2.72-20.17-.4-6.78 3.12-14.58 3.55-20.18.4l-7.27 8.5s3.74 5.7 2.67 12.19c-1.07 6.48-3.36 16.74-2.79 20.92.58 4.18 3.53 9.02 6.57 11.57s7.54 4.67 10.74 5.82a30.98 30.98 0 0 1 7.8 4.51c1.47 1.15 2.46 2.14 2.46 2.14s.98-.99 2.46-2.14 4.6-3.36 7.79-4.5c3.2-1.16 7.71-3.3 10.75-5.83 3.03-2.55 5.98-7.39 6.56-11.57.57-4.2-1.73-14.45-2.8-20.93z'/%3e%3cpath fill='%231D5E91' d='M344.1 162.07c-1.05-7 2.1-12.63 2.1-12.63l-6.56-7.31c-5.55 2.85-12.29 2.11-19.63-.44-7.35 2.55-14.09 3.29-19.64.44l-6.56 7.3s3.16 5.64 2.1 12.64-2.66 14.92-2.35 19.57c.02.32.06.64.1.97h5.98s.35-.4 1.01-.69c.67-.28.86-.47.86-.47s.12-1.21.85-1.46c.73-.26 1.05-.26 1.33-.26s.5-.06.86-.41c.35-.35 1.3-1.2 1.7-2.42s.67-1.68.67-2.47c0-.8.29-2.07.29-2.07s-.16-.38-.76-.15c-.6.22-.7-.39-.76-.99-.07-.6-.03-1.84.31-2.41s.48-.77.48-.77l-.25-.95s-3.8.76-4.47-2.19c-.66-2.95-.79-4.38-.88-4.7-.1-.32-.2-.48-.7-.44-.5.03-1.59-.32-2.35-1.85-.76-1.52-.82-2.15-.6-2.76.22-.6.64-.38.76-.19.13.2 1.14 1.65 1.55 1.24.42-.41.2-.41-.38-1.56s-.38-1.52-.31-2.1c.06-.56-.2-1.33-.2-1.64 0-.32.36-.58.7-.42.35.16.67.42.83.6.16.2.22.48.54.3s.12-1.25.12-1.6c0-.34.41-.6.92-.31.5.28.76.82.76 1.2 0 .39.03.73.22.73s.41-.57.45-.95c.03-.38.25-.95.6-.47.35.47.47 1.17.35 1.9-.13.73.12.35-.13 1.62s-.38 1.84-.35 2.8c.03.95.06 1.49.54 2.66.47 1.18.85 2.54 1.74 2.57l1.14.04s.98-1.9 1.74-2.35c.76-.45 1.84-.51 2.6-.6.76-.1 1.07-.33 1.07-.52s-.25-.25-1.17-.38c-.91-.12-1.67-.35-1.7-1.05-.04-.7.15-1.3-.45-1.33-.6-.03-2.09-.51-2.63-1.5-.53-.98-.4-1.2-.34-1.74s.76-1.62 1.2-.6.73 1.14 1.1 1.36c.39.23.9.29.64-.41-.25-.7-.41-1.14-.35-1.65.07-.5.41-.73.83-.83.4-.1 1.64-.47 2.28-.6.63-.13.66-.19.66-.19s.06-.44.89-.7a5.96 5.96 0 0 1 1.96-.28c.6 0 1.04.1 1.84-.29.79-.38 1.42-.44 1.93-.41.5.03.88.22 1.26.47.38.26.26.6.26.96 0 .35.06.54.6.54s1.01 0 1.52.19c.5.19 1.2.47.76 1.01-.44.54-.47 1.15-.76 1.12-.28-.04-.25.28-.38.47-.13.2-.22.35.1.54.31.2.34.38.79.8.44.4 1.1.85.44 1.52-.66.67-1.84 1.2-1.84 1.2s-.66.32.1.77c.76.44 1.1 1.37 1.4 1.52.28.16.56.42.75.51.2.1.16.73.16.73s-.41.29-.98.51c-.57.22-1.17.48-1.71.48s-.82 0-.6.5c.22.51.6 1.05.7 1.34.09.28.22.8.22.8s.88.18 1.67.18c.8 0 1.14.03 2.88-.16 1.75-.18 2.25-.25 3.93-.06 1.68.2 1.93.13 2.38.29.44.16.88.38.88.38s2.38-.03 3.68-.32c1.3-.28 1.61-1.11 1.42-1.55-.19-.45-.16-1.12-2.44-1.43-2.28-.32-3.2-.2-5-.55-1.8-.34-4.62-1.27-5.13-3.52-.5-2.25 1.33-3.2 2.25-3.65.92-.45 2.91-1.14 3.83-1.52.92-.39 2.6-.77 4.37-.51 1.77.25 2.79.73 3.48.31.7-.4 1.27-.1 1.14.54-.12.64-.82 1.94-2.82 2.54-1.99.6-4.4.67-5.7.32-1.3-.35-2.27-.86-3.06-.57-.8.29-1.68 1.27-.83 2.44.86 1.18 5.23 1.53 6.4 1.66 1.17.12 5.5-.2 6.74 1.96 1.24 2.17.25 4.58-1.2 5.12-1.46.54-2.7.89-3.8 1.05l-1.1.15s.5 1.15.5 1.63c0 .47-.07 1.36.47 1.7.54.36 1.3.61 2.22.52.92-.1 2.03.54 2.09 1.36.06.83.32 1.97.41 3.62.1 1.65 0 3.02 0 3.02s-.06.64-.28 1.24c-.23.6-1.37 2.94-1.37 2.94h6.38c.05-.33.08-.65.1-.97.26-4.71-1.35-12.63-2.4-19.63z'/%3e%3cpath fill='%236D8C3E' d='M294.42 185.72a18.27 18.27 0 0 0 7.75 9.55c5.45 3.28 7.8 2.85 12.94 6.2 5.14 3.34 4.83 3.9 4.9 3.9s-.25-.57 4.89-3.9c5.14-3.35 7.5-2.92 12.94-6.2a18.25 18.25 0 0 0 7.75-9.55h-51.16z'/%3e%3cpath fill='%23D4AF3A' d='M298.88 158.13c.58.61 1.02.8 1.91.71.9-.1 1.1.56 1.26 1.26.16.71.16 2.38.8 3.92.65 1.54 2.8 1.63 2.8 1.63a9.6 9.6 0 0 1 .65-2.56c.06-.14.34-.83-.43-.83s-.74-.31-1.2-1.05a14.44 14.44 0 0 1-1.57-3.97c-.21-1.27.19-3.14.4-3.82.22-.68.25-1.14 0-1.26-.25-.13-.74 0-.74 0s.19.58-.03.67c-.22.1-.4-.3-.55-.74-.16-.43-.34-.37-.65-.34-.3.04-.3.31-.1.62.22.3.1.86.1.86s-.68-.49-.95-.61c-.28-.13-.93.12-1 .49-.05.37.26 1.32.84 1.82.59.49.59 1.5.4 1.97-.18.46-1.05.4-1.23.18a.53.53 0 0 0-.8 0c-.25.28-.5.44.09 1.05zm-.34-1.63s-.34-.28-.46-.43l-.37-.5s-.06.16-.06.53.4.77.4.77l.49-.37zm1.29-4.28c.28-.12.5-.19.28-.5-.22-.3-.4-.64-.62-.7-.22-.06-.4-.03-.4-.03s.25.55.3.9c.07.33.17.45.44.33zm1.61-1.3c-.03.28.03.4.28.28.24-.13.34-.47.21-.71-.12-.25-.4-.43-.4-.43l-.18-.13c-.02 0 .1.71.08.98zm2.3.37c.03-.3-.1-.65-.1-.65s0 .37-.15.59c-.15.22-.12.15.03.34.15.19.18.03.21-.28zm3.62 15.66c.45 1.05 1.6-.6 2.65-1.93 1.04-1.32 1.01-.3.87.77a5.1 5.1 0 0 0 .7 2.98c.42.73.77.31.94-.21.17-.52.31-1.6.66-2.13s.7-.07.73.38.6 1.47 1.12 2.06c.52.6.77-.2.94-.94s.38-1.85.52-2.31c.14-.45.63-.07.63-.07l1.05 1.01c.7.67.76-.38.83-.9.07-.53-.1-1.68.1-1.86.22-.17.8.25 1.72.7.9.46.87-.42.76-.9-.1-.5-.62-1.62-1.36-2.24-.73-.63-.83-1.37-.59-1.68.25-.32 1.12-.04 1.67-.1.56-.08.84-.15 1.26-.22.42-.07.42-.49.42-.49s-.32-.52-.9-1.05c-.6-.52-.95-.94-1.68-1.12-.73-.17-1.74 0-1.74 0l-.1-.2c-.11-.21-.32-.21-.46 0-.14.2-.49.48-.77.73-.28.24-.45.38-.63.28-.17-.1.14-.35.14-.35s.39-.28.74-.98c.34-.7.45-1.37.17-1.68-.28-.32-1.05 0-1.46 0-.42 0-.67.07-.7-.14-.04-.21.42-.1.94-.18.52-.07.84-.7 1.01-1.22s.31-.46.63-.14c.31.31.6.24.66.03.07-.2.35-.73.7-1.26.35-.52.56-1.25.17-1.74-.38-.5-1.32-.42-1.7-.1-.39.3-.63.62-.74 1.4-.1.76-.31.34-.31.1s-.32-.64-.18-.95c.14-.31 0-.66 0-.66s-.07-.67-.8-.8-1.57.03-2.3.2-.6.8-.6.8-.55.04-1.14.11c-.6.07-1.3.32-1.85.46-.56.14-.77.2-.77.48 0 .29.1.74.1.74s.46 0 .7.14c.25.14.1.38-.17.49-.28.1-.39.14-.39.49s.14.42.42.42.87 0 1.57.31c.7.32.87.95.8 1.3-.07.35-1.04.8-1.53.8s-.63.1-.63.42c0 .32.6.28.6.28s.59.04 1.74.17c1.15.15 1.32.39 1.85.84.52.46.14.56-.1.7-.25.14-.64.46-1.02.6-.38.14-.63.42-.98.49s-1.22.03-2.82.66c-1.6.63-2.16 2.73-2.16 2.73s.2-.07.94-.45c.73-.39 1.64-.8 2.47-1.33.84-.53.84.24.42.98-.42.73.39.59.63.38.24-.21.56-.42 1.36-.84s.52.25.52.25-.24.49-.31 1.64c-.07 1.16 1.15.07 1.7-.66s.81 0 .4.84c-.43.84-1.23 1.5-1.68 1.5-.46 0-.8-.49-.84-.77s.14-1.12-.14-1.33c-.28-.2-1.08.04-1.67.39-.6.35-.74.07-.87-.25-.14-.31.2-.42.07-.63-.14-.2-.46 0-.7.1-.25.11-.8.43-1.88.99-1.09.55-1.02.87-1.02 1.67s.2 1 .65 2.04z'/%3e%3cpath fill='%23D4AF3A' d='M317.82 149.44c.23-.14.64-.3.64-.3s.51-.13.99-.2c.47-.06.39-.33.28-.55-.1-.23-.28-.31-.9-.31s-1.01.31-1.36.45c-.35.15-.76.25-.76.25l.3.43c.23.35.58.4.8.24zm2.52 2.5c.25 0 .52-.14.52-.14s.45-.23.86-.38c.41-.14.58-.2.82-.7.25-.49-.27-.49-.99-.67-.72-.2-1.07.06-1.15.32-.08.27-.06.58-.35 1.1-.29.5.04.47.3.47zm-.23.63c-.7 0-1.48 1.05-1.77 1.24s-.12.37-.12.37.2.43.28.84c.09.41.1 1.11.1 1.11s.11.04.52.04c.41 0 .66-.2 1.05-.5s.7-.38 1.26-.49c.55-.1.82-.2 1.44-.53s-.33-.9-.99-1.44a2.46 2.46 0 0 0-1.77-.62zm-9.31 2.42c.55-.06.8-.34.8-.65s-.28-.64-.99-.58c-1.73.15-3.41-.47-3.72-2.19 0 0-.59 1.08.5 2.28 1.08 1.2 2.86 1.2 3.42 1.14zm-5.91 27.32c.09.15.2.25.3.3h2.66c.46-.12.46-.54.48-.83.03-.34.3-1.31.66-3.08.37-1.77 1-3.03 1.26-3.74s-.26-.95-.45-1.4c-.18-.44-.47-1.23-.55-1.63-.08-.4-.7-.34-1.05-.32s-.4.58-.45 1.11c-.05.53-.29 2.08-.55 3.42-.26 1.35-1.78 3.14-2.2 3.54-.43.4-.77.55-1.06.55s-.91 0-1.23.18c-.31.19-.63.69-.66 1.08-.02.4.6.61.6.61s.5-.29.7-.53c.17-.23.6-.29 1.01-.36.42-.08.48.07.32.28-.16.2-.11.25.21.81zm-4.07-.14c-.2.07-.35.27-.44.44h1.74a.93.93 0 0 0-.17-.44c-.21-.26-.77-.13-1.13 0z'/%3e%3cpath fill='%23D4AF3A' d='M303.18 182.12c-.21.12-.47.3-.6.49h1.87c.07-.18.09-.4-.14-.6-.42-.34-.84-.05-1.13.1zm16.22-.77c-.2 0-.39.18-.68.39-.3.2-.38.52-.43.77l.01.1h.8a.14.14 0 0 0 .05-.1c0-.23.1-.44.43-.73.35-.3.03-.43-.17-.43zm1.56.86c0-.25-.1-.47-.27-.45s-.48.34-.72.52c-.14.1-.24.23-.32.33h1.17c.07-.14.14-.29.14-.4z'/%3e%3cpath fill='%23D4AF3A' d='M328.18 173.58c.56-.4.47-.52.5-.95.02-.43.02-.57-.2-.72-.23-.16-1.07-.53-1.86-.53s-2.28.19-2.84.57c-.57.39-.84 1.77-.84 2.49s.11.84.32.84.54-.52.54-.52.74.97 1.2 1.65c.45.68.24.95.04 1.47-.2.52-.95 1.9-1.53 2.2-.6.3-1.04.02-1.74-.1-.7-.1-1.09.1-1.5.5s-.01.73.23.73c.25 0 .6-.02.86.32.19.23.06.77-.03 1.08h3.46c.59-.26 1-1.07 1.15-1.52.18-.5.93-1.15 1.3-1.49.35-.34.4-.56.4-1.31s-.2-1.18-.48-1.7a3.1 3.1 0 0 1-.38-1.7c.06-.46.8-.93 1.37-1.34z'/%3e%3cpath fill='%23D4AF3A' d='M322.49 164.95c.35.56.17.67-.32.78-.5.1-1.04.19-1.81.13-.78-.07-.76.04-.78.43a3.4 3.4 0 0 1-.54 1.8c-.45.61-1.01.38-1.36.14s-.54-.18-.67.26-.36.73-.73 1.38c-.37.64-.6.67-.86.6s-.5-.45-.76-.47-.67-.54-1.05-1.17c-.4-.62-.59.07-.84.6-.26.54-.52.93-1.02.87-.5-.07-1.05-1-1.33-1.56s-.46-1.1-.89-1.07c-.43.02-1.14.92-1.62 1.16-.47.24-.6.15-.81-.15-.22-.3-.5.1-.78.82-.28.71.02 1.31.4 1.5.4.2 1.17-.36 1.7-.7.5-.35.75-.26 1.29-.26.53 0 .5.88.73 2.18.24 1.29.99 1.46.99 1.46s.26.22.84-.77c.58-1 .65-1.97 1.2-1.97.57 0 .61.13 1.17.91.56.78 1.04 1.36 1.36.78.32-.59.6-1.45.97-1.75.37-.3.71-.39.33.17-.4.56-.57 1.17.23.93s3.84-1.47 5.07-1.7c0 0 1.44-.24 3.1-.33 1.66-.08 2.07-.2 2.72-.2.65 0 .67-.06.71-.49.05-.43-.3-.34-1.5-.34-1.21 0-2.06.15-2.9.28-.84.13-1.22.1-1.08-.1.16-.23.4-.38 1.36-.53a39.7 39.7 0 0 1 4-.28c1.03-.02.7.3.62 1-.09.68.08 1.7.15 2.35.06.64.08.84.65 1.74s2.5 1.47 3.06 1.77c.56.3.47 0 .45-.54-.02-.54.43-.52.93-.24.5.29 1.31.52 1.9.67.58.15.66.26.66.56s.07.97.13 1.6c.07.63.05.82-.21 1.2s-1.36 1.52-1.36 1.52-.5 0-1.55.26c-1.06.26-1.39.75-1.5 1.18s.2.56.25.74c.02.1 0 .32 0 .51h.24c.09-.15.22-.35.38-.56.37-.47 1.3-.58 1.9-.3.4.18.4.6.36.86h2.41a86.8 86.8 0 0 0 1.3-2.59c.26-.58.41-.94.43-1.74s.11-3.88-.04-4.06c-.15-.17.04-.69 0-1.55-.04-.86 0-1.5-1.6-1.66-1.6-.15-2.09-.82-2.63-1.36-.54-.54-.4-1.79-.84-3.3-.43-1.5-1.48-1.74-3.36-2.11-1.88-.37-3.26-.4-4.66-.28s-3.14.32-4.12.24c-.95-.12-.8.16-.45.72z'/%3e%3cpath fill='%23D4AF3A' d='M331.55 182.27c-.16.1-.27.23-.35.34h1.63c.01-.14-.01-.3-.16-.47-.24-.3-.72-.13-1.12.13zm2.92-.11c-.27.13-.44.3-.54.45h1.65v-.19c-.06-.26-.56-.54-1.1-.26zm-40.72 1.03c.1.51.21 1.03.36 1.55h51.79c.14-.52.27-1.04.36-1.55h-52.51zm34.9-24.74c1.64 1.09 6.83 1.15 9.27 1.64 2.44.48 2.27 2.35 1.52 3.32-.75.98-4.18 1.1-4.8 1.18.34.23.84.95.84.95l1.4-.12c1.04-.08 2.85-.34 4.08-1.38 1.24-1.03 1.15-2.7.06-3.81-1.1-1.12-2.9-1.23-4.74-1.44-1.83-.2-3.27-.34-5.33-.68-2.07-.35-3.07-1.18-3.07-2.39 0-1.2 1.12-1.83 1.92-2.06.8-.23 2.1-.57 3.24-.15 1.15.43 2.5.5 4.77.2 2.26-.28 2.78-1.86 2.78-1.86s-.29.14-1.44.17c-1.14.03-1.98-.49-4.07-.52-2.1-.02-2.84.72-3.82 1.07-.97.34-3.58.6-4.36 2.3-.77 1.7.12 2.5 1.76 3.58z'/%3e%3cellipse rx='.98' ry='.96' cy='150.64' cx='315.04' fill='%23B96B29'/%3e%3cpath fill='%23B96B29' d='M336.02 152.28c-1.3-.11-2.99.23-2.99.23s.32.26.75.23 1.2-.06 2.47.17c1.26.23 2.18-.37 2.18-.37s-1.12-.14-2.41-.26z'/%3e%3cpath fill='%231D5E91' d='M323.74 176.38c-.32-.5-.4-.45-.77-.14-.36.32-.72-.77-.77-1.44-.04-.68.27-2.76.27-2.76s-1.76.36-2.71.68c-.95.31-1.86.4-2.63.59s-1.17.36-1.58.27c-.4-.1-1.27-.14-1.94-.14s-.64.14-1.32.81c-.67.68-.85 1.04-1.4 2.31a13.45 13.45 0 0 0-.9 3.98c-.12 1-.32 1.7-.44 2.06h8.11l.33-.83c.22-.46.66-.76.98-.9s.6-.16.74-.52c.15-.36.56-.66.98-.85s1.17-.08 1.85.1c.68.2.91-.27 1.1-.52.2-.26.28-.62.64-1.09.36-.46.1-.89.1-.89s-.34-.22-.66-.72zm13.01.22c-.1-.47-.06-.53-.34-.6-.28-.06-.74-.14-1.15-.31-.4-.17-.36.91-.36.91s-.95.1-2.04-.02c-1.08-.13-2.35-1.1-2.8-1.43-.44-.31-.93-1.04-.93-1.04s-.34.32-.68.51-.54.88-.6 1.56c-.06.68.79 1.5.85 2.18.06.68-.74 2.04-1.15 2.6-.27.37-.63 1.18-.83 1.65h3.92a2 2 0 0 1 .42-.66c.4-.4 1.08-.48 1.08-.48s0-.17.15-.53c.15-.37.55-.8 1.53-1.17.98-.39 2.14-.45 2.14-.45s.47-.38.81-.91c.34-.53.1-1.33-.02-1.8z'/%3e%3cpath fill='%23D4AF3A' d='M304.15 219.77c.73.24 2.1-.3 2.77-1.12.68-.82.93-2.1 1.41-2.82l.84-1.27s-.1 1.2-.75 2.81a10.31 10.31 0 0 0-.57 4.54c.29 1.8 1.45 2.1 2.14 1.85.51-.19 1.3-.98 2.01-2.18.23-.38.4-.9.61-1.32.46-.88.88-2.31 1.08-2.27.45.09.16 1.1 0 1.78-.35 1.36-1.03 3.36-1.08 4.57s.1 3.4 1.32 3.5c1.21.1 1.84-.97 2.52-3.45.69-2.48.83-3.26 1.12-3.26.3 0 .3 1.7.3 2.43 0 .25 0 .94.1 1.64.2 1.33.58 2.92.97 3.28.58.53 1.07.43 1.07.43s.48.1 1.07-.43c.58-.54 1.06-4.19 1.06-4.92s0-2.43.3-2.43c.29 0 .43.78 1.11 3.26.69 2.48 1.32 3.55 2.53 3.45 1.22-.1 1.37-2.28 1.32-3.5s-.73-3.21-1.07-4.57c-.34-1.36.14-1.27 1.07.49.29.54.59 1.21.88 1.68.65 1.03 1.28 1.65 1.74 1.82.68.24 1.85-.05 2.14-1.85.3-1.8-1.07-6.96-1.07-6.96l.59.88c.48.73.73 2 1.4 2.82.69.83 2.05 1.36 2.78 1.12s.83-1.6.3-4.04c-.54-2.43-2.73-3.8-4.29-5.74-1.43-1.79-2.53-4.93-2.7-5.43a17.96 17.96 0 0 0-5.23 3.7c-3.22 3.35-3.92 4.2-3.92 4.2s-.7-.85-3.91-4.2a18.03 18.03 0 0 0-5.27-3.71c-.18.41-1.52 3.42-2.96 5.23-.72.9-1.71 1.57-2.42 2.44-.82 1-1.31 2.2-1.6 3.5-.52 2.43-.42 3.79.3 4.04z'/%3e%3cpath fill='%23D4AF3A' d='M304.06 228.01c.94-.83 1.43-1.29 1.43-1.29s.68-.57.51.52c-.17 1.08-.54 3.31-.31 4.28.23.97.34 1.8 1.54 1.08 1.2-.71 1.48-1.14 2.05-1.74.57-.6 1.17-.85 1.03.09-.14.94-.57 2.37-.37 4.28.2 1.91 1.14 2.2 2.37.57a21.5 21.5 0 0 0 2.34-3.91c.37-.8 1.11-1.48 1.11 0 0 3.2.73 7.83 4.25 9.07 3.52-1.24 4.25-5.88 4.25-9.07 0-1.48.74-.8 1.11 0 .38.8 1.12 2.28 2.34 3.9 1.23 1.63 2.17 1.35 2.37-.56.2-1.91-.23-3.34-.37-4.28s.46-.69 1.03-.09c.57.6.85 1.03 2.05 1.74 1.2.72 1.32-.11 1.54-1.08.23-.97-.14-3.2-.3-4.28-.18-1.09.5-.52.5-.52s.49.46 1.43 1.29a4 4 0 0 0 2.24.88s.6-3.35-.8-5.35-1.9-2.66-1.9-2.66-.8-.04-1.4-.27c-.6-.24-1.2-.67-1.2-.67v1.85s1.72 1.63 2.12 2.11c.4.48 1.2 1.31.03.51s-2.14-1.6-2.14-1.6-.23 1.69-.72 2.12c-.48.42-1.17.48-1.45.37l-.29-.12-.08.66s1.05 1.97 1.2 2.77c.14.8-.09.71-.57-.32-.49-1.02-1.43-2.34-1.86-3.05s-1.05-1.2-1-.28c.06.9-.31 2.56-.63 3.16-.3.6-.5.8-.5.8s.65 2.31.73 2.74c.09.43.03.91-.34.37s-1.43-2.82-1.43-2.82-1.4-.06-1.8-.46c-.4-.4-1.02-1.94-1.02-1.94s-.57 1.97-1.05 2.6c-.47.63-1.57 1.26-1.57 1.26s-.08 3.41-.16 4.02c-.08.6-.1.86-.36.86-.25 0-.28-.26-.36-.86-.08-.6-.16-4.02-.16-4.02s-1.1-.63-1.57-1.26c-.48-.63-1.05-2.6-1.05-2.6s-.63 1.54-1.03 1.94c-.4.4-1.8.46-1.8.46s-1.05 2.28-1.42 2.82c-.37.54-.43.06-.34-.37s.74-2.74.74-2.74-.2-.2-.51-.8a8.2 8.2 0 0 1-.63-3.16c.06-.92-.57-.43-1 .28s-1.37 2.03-1.85 3.05c-.49 1.03-.72 1.12-.57.32s1.2-2.77 1.2-2.77l-.1-.66-.28.12c-.28.11-.97.05-1.45-.37-.49-.43-.72-2.12-.72-2.12s-.97.8-2.14 1.6c-1.17.8-.37-.03.03-.51s2.11-2.11 2.11-2.11v-1.85s-.58.43-1.19.67c-.6.23-1.4.27-1.4.27s-.5.65-1.9 2.66c-1.4 2-.8 5.35-.8 5.35s1.3-.04 2.25-.86zm17.17 22.31c-.9-1.05-1.2-1.58-1.2-1.58s-.3.52-1.2 1.58c-.9 1.05-3.01 2.7-3.01 2.7s.18 2.8 1.2 4.3c.86 1.27 1.67 2.43 3 3.3a10.97 10.97 0 0 0 3.02-3.3c1.01-1.5 1.2-4.3 1.2-4.3s-2.11-1.65-3.01-2.7z'/%3e%3cpath fill='%23B96B29' d='M319.57 253.73c.08.65.03 2.28.42 2.28s.34-1.63.42-2.28c.08-.65.11-2.2.11-2.2h-1.06s.04 1.55.12 2.2z'/%3e%3cpath fill='%23D4AF3A' d='M319.98 100.87c-3.77.06-8.18-.46-10.62-1.36l-2.59.57c4.01 1.5 7.36 2.1 13.21 2.15 5.85-.06 9.2-.64 13.2-2.15l-2.59-.57c-2.43.9-6.85 1.42-10.62 1.36zm13.7-3.14c-.3-.25-2.01-1.47-2.46-1.7-.45-.22-.1-.82-.02-1.07.07-.25 2-.8 3.08-1.07 1.06-.27.9-.5.9-.5s-.63-.72-4.5-1.14c-3.88-.43-10.69-.33-10.69-.33s-6.8-.1-10.68.33c-3.87.42-4.5 1.14-4.5 1.14s-.17.23.9.5 3 .82 3.08 1.07c.07.25.42.85-.02 1.07a27.9 27.9 0 0 0-2.46 1.7c-.3.25-.33.64.15.67.47.02.48.02 1.8-.25 4-.8 7.75-1.01 11.74-1.07 3.98.06 7.73.28 11.72 1.07 1.33.27 1.34.27 1.81.25.47-.03.45-.42.15-.67z'/%3e%3cpath fill='%23D4AF3A' d='M329.27 99.37c-2.66-.31-4.35-.66-9.27-.61-4.92.04-6.6.3-9.27.61 1.68.68 4.38 1.01 9.27 1.01s7.6-.34 9.27-1zm-10.09-36.48 2.03-.16-.19-1.78 2.18.3.09-1.75-2.29.21.4-1.89-2.52-.02.44 1.91-2.22-.2v1.74l2.2-.25zm4.43 2.87h-2.73v-2.33a4.02 4.02 0 0 0-1.51-.01v2.34h-2.82a3.05 3.05 0 0 0-.12 1.33h7.3a2.9 2.9 0 0 0-.14-1.33z'/%3e%3cpath fill='%231D5E91' d='M320.08 70.03c1.62 0 3-.95 3.48-2.27h-6.97a3.67 3.67 0 0 0 3.5 2.27zm1.5-6.38v1.6h1.8a3.5 3.5 0 0 0-1.8-1.6zm-3.01 0c-.8.32-1.43.89-1.8 1.6h1.8v-1.6z'/%3e%3cpath fill='%23B96B29' d='M322.17 93.31c-.69-.32-2.19-.96-2.19-.96l-2.2 1.09c-.77.39-.67.27-.91.84s.02.76.36.91c.34.15 2.79 1.4 2.79 1.4l3.01-1.4c.6-.27.48-.55.32-.98-.16-.42-.5-.57-1.17-.9z'/%3e%3cpath fill='%23D4AF3A' d='m317.64 94.03 2.4 1.22 2.37-1.22-2.43-1.14zm2.34-9.38s-.2.84-.47 1.2c-.27.36-.48.69-.4 1.12.08.44.58.73.87.73.3 0 .8-.29.87-.73.08-.43-.13-.76-.4-1.12-.26-.35-.47-1.2-.47-1.2z'/%3e%3ccircle cy='88.56' cx='320' r='.45' fill='%23D4AF3A'/%3e%3cpath fill='%23D4AF3A' d='M318.39 86.24s.78-.87 1.07-1.42c.29-.54.52-1.03.52-1.03s.24.49.52 1.03c.3.55 1.07 1.42 1.07 1.42s1.1-.58 1.73-2.68c.64-2.11-.14-4.33-.43-6.73s-.52-6.52-.52-6.52c-.83.48-1.62.68-2.37.7a4.89 4.89 0 0 1-2.37-.7s-.23 4.13-.52 6.52c-.29 2.4-1.07 4.62-.43 6.73.64 2.1 1.73 2.68 1.73 2.68z'/%3e%3cellipse rx='1.89' ry='1.83' cy='81.51' cx='319.98' fill='%23B96B29'/%3e%3cellipse rx='1.82' ry='1.76' cy='77.22' cx='319.98' fill='%23B96B29'/%3e%3cellipse rx='1.74' ry='1.68' cy='73.12' cx='319.98' fill='%23B96B29'/%3e%3cellipse rx='1' ry='.97' cy='81.18' cx='319.98' fill='%23D4AF3A'/%3e%3cellipse rx='.97' ry='.93' cy='76.91' cx='319.98' fill='%23D4AF3A'/%3e%3cellipse rx='.85' ry='.82' cy='72.82' cx='319.98' fill='%23D4AF3A'/%3e%3cpath fill='%23b96b29' d='M319.93 224.04c.12.02.14-.28.16-.83.03-.56.1-1.9.23-2.7.14-.78-.2-.73-.41-.69-.21.05-.33.65-.33 1s.1 2.34.1 2.76.13.44.25.46z'/%3e%3cg id='a'%3e%3cpath fill='%23d4af3a' d='M300.28 239.41c.84-.53 1.57-1.13 3.48-2.4 1.9-1.26 2.6-2.66 2.6-2.66h-.67c-.36 0-.67-.51-.7-1.02-.03-.5 0-1.55.14-2.76.14-1.2-.2-2.19-.2-2.19s-.8.76-2.04 1.4c-1.24.65-1.74.34-1.74.34l-.31-1.23s-.53 1.12-1.29 2.44c-.76 1.33-2.8 2.79-4.26 3.89s-3.06 2.25-4.27 2.67c-1.2.42-.5.99-.5.99s1.2 1.2 4.32 1.77 4.6-.7 5.44-1.24z'/%3e%3cpath fill='%23d4af3a' d='M311.17 238.2c-1.11-.12-1.78-.54-2-1.75-.13-.78.06-3.8.06-3.8s-.36.32-.78.82c-.42.5-1.38.62-1.38.62s-.14.42-.56 1.1c-.42.67-.95 1.5-2.02 2.16-1.06.68-2.3 1.47-3.11 2.14-.81.68-1.77 1.47-2.83 2.06a4.66 4.66 0 0 0-2.39 3.12c-.36 1.58-.08 2.08 1.15 2 1.24-.09 1.38.03 3.37-.48 1.99-.5 4.82-2.73 6.9-4.05 2.08-1.32 3.59-3.94 3.59-3.94z'/%3e%3cpath fill='%23d4af3a' d='M316.69 240.02s-.84-1.07-1.15-2.28l-.9-3.6s-.28.76-.95 2.2c-.67 1.43-1.82 1.77-1.82 1.77s-.06.62-1.01 1.83a14.03 14.03 0 0 1-3.8 3.18c-1.42.84-3.27 2-4.28 3.43-1.01 1.43-1.1 2.92-.62 3.57.48.65 1.15-.09 2.1-.56s3.68-.9 7.44-2.93c3.76-2.02 4.99-6.61 4.99-6.61z'/%3e%3cpath fill='%23d4af3a' d='M318.32 248.44c1.04-1.55 1.2-5.32 1.2-5.32s-.36-.25-.86-.67c-.5-.42-1.49-1.91-1.49-1.91s-.62 1.29-1.29 2.5a9.4 9.4 0 0 1-2.41 2.92c-1.4 1.3-3.31 2.57-4.13 3.94-.8 1.38-.36 4.14.17 5.07.54.93 1.3.61 2.08-.14.78-.76 1.04-.96 2.41-2.14s3.28-2.7 4.32-4.25z'/%3e%3cpath fill='%23b96b29' d='M305.98 216.89c.55-1.13 1.18-2.5 1.68-3.19.5-.7.86-1.49.86-1.49s-1.34 1.22-1.87 2.09c-.53.86-.86 1.7-1.1 2.64-.24.93-.12 1.08.43-.05zm5.33.96c.22-.74.34-1.24.34-1.24s.21-.72.1-.77c-.13-.05-.68.45-1.06 1.67-.39 1.23-.96 3-.84 3.07.12.08 1.24-1.99 1.46-2.73zm4.2 3.38.24-.55s.43-1.4.43-1.68c0-.29-.14-.62-.5.1s-.38 1.41-.46 1.72c-.07.32-.48 1.4-.36 1.5.12.09.41-.56.65-1.09zm-13.04 12.8-.56-.34s-.34.45-.82.96c-.47.5-1 .7-1.37 1.18-.36.48-.93 1.07-1.8 1.52s-1.2.6-1.03.73c.17.14.76-.2.76-.2s.25-.02 1.29-.64 1.29-.96 1.96-1.55 1.57-1.66 1.57-1.66zm4.55 5.38c.4-.42.81-.7.59-.93-.23-.22-.5-.2-.87.11s-1.4 1.3-1.88 1.72c-.48.42-.87.67-1.35 1.04-.47.37-1.51.93-2.02 1.2-.5.3-.02.32-.02.32s.39-.2.81-.34c.42-.14 1.63-.67 1.63-.67s.47-.23 1.12-.68c.64-.45 1.6-1.35 1.99-1.77zm5.24 3.63c.34-.67-.03-.48-.59-.25-.56.22-1.82 1.6-2.55 2.1s-1.35.71-1.96 1.02c-.62.31-.62.48-.6.62.03.14.29.14.54.03.25-.12 1.12-.62 1.12-.62s.37-.11.7-.14c.34-.03.82-.4 1.57-1.04.76-.65 1.43-1.04 1.77-1.72zm2.44 4.81c-.93.56-2.52 1.83-2.94 2.67-.43.85-.7 1.44-.57 1.58.14.14.6-.14.79-.48.2-.34.62-.85.62-.85s1.6-1.57 2.18-1.94 1.55-1.4 1.77-2.02c.22-.62.06-.96.06-.96s-.99 1.44-1.91 2z'/%3e%3cpath fill='%23c52126' d='M289.99 113.28c-.85-.5-3.13-1.47-5.56-1.68-2.42-.2-4.3.16-6.31.7a6.98 6.98 0 0 1-3.77.14 5.23 5.23 0 0 1-3.54-3.95s-1.6 2.06.03 4.29a4.8 4.8 0 0 0 2.86 1.95c3.4.68 6.73-1.4 9.56-1.57 2.72-.18 4.86 1.55 4.86 1.55s.64.53 1.55 0c.9-.53 1.17-.93.32-1.43z'/%3e%3cpath fill='%23d4af3a' d='m280.2 211.66-.8-.1c-.47-.07-1.47-.4-1.77-.54-.3-.13-.77-.17-1.07.17-.3.34-2.75 1.78-2.75 1.78h4.05c1.4 0 2.34-1.31 2.34-1.31z'/%3e%3cpath fill='%23d4af3a' d='M291.59 210.97v-.4l-.54-1.16s-.63.39-1.24 1.02c-.79.82-1.64 1.97-2.02 2.46-.67.86-1.61 1.68-.8.3.8-1.38 1.07-1.98 1.72-2.9.64-.91 1.13-1.32 1.05-1.37-.08-.06-.6-.14-2.3-.35-1.69-.22-2.74-.87-3.52-1.33-.78-.46-2.18-1.21-2.18-1.21s-2.88 1.21-3.96 1.48-1.73.43-.68.95c1.06.51 1.94.67 2.46 1 .5.32 2.1.83 3.07.83.97 0 2.6.03 1.96.7-.64.68-1.37 1.98-2.07 3.95-.7 1.97-.73 3.73-.73 4.6s.1 1.72.1 1.72 1.2-1.32 4.37-3.32a56.1 56.1 0 0 1 4.96-2.94c.59-.27.89-.27.78-1.03-.1-.76-.43-2.62-.43-3z'/%3e%3cpath fill='%23d4af3a' d='m303.73 201.31-.59-.27a.7.7 0 0 0-.15.05c-.37.2-2.3 1.5-3.1 2.76-.77 1.27-1.56 1.38-.7 0a11.94 11.94 0 0 1 2.84-3.32 35.56 35.56 0 0 1-4.9-2.8 7.49 7.49 0 0 1-1.07 1.65c-.67.7-2.17 1.3-2.17 1.3s1.2-1.22 1.6-2.16c.27-.6.44-1.23.53-1.62a21.1 21.1 0 0 1-3.21-3.06c-.2.8-.84 2.77-2.76 4.9-2.5 2.8-7.5 4.22-7.5 4.22s-1.74.19-.33.56 2.43 1 5.19.52c2.76-.48 2.94-.6 3.32-.7.37-.12 1.38-.04 0 .48s-4.6 1-5.82.9c-1.23-.12-2.91-.38-1.16.55s2.5 1.3 3.58 1.3 1.53.35 2.58.35c1.04 0 1.34-.2 2.08-.34.75-.15 1.23.11 1.23.4 0 .3-1 1.13-.96 3.18.03 2.05.18 3.4.37 3.99.19.6.63 1.56.93 2.13.3.55.41 1.11.7-.08.3-1.2.98-2.9 1.24-4.06.26-1.16.4-1.2.52-1.8.11-.6.75-1.04.45.04s-.64 2.46-.86 3.43c-.22.97-.74 2.76.15 1.35.9-1.42 4.25-5.19 4.8-5.86s1.02-1.3 1.43-1.86c.4-.56 1.56-1.3 2.12-2.13.5-.74 1.99-2.18 2.63-2.7-.95-.4-1.95-.83-3.01-1.3zm-46.36-86.08c.09 2.06 2.36 5.99 3.66 8.09 1.3 2.1 1.65 2.94 1.43 3.08-.23.13-.76-.94-1.48-1.88-.71-.93-2.1-3.12-3.25-4.78s-2.86-5.58-3.08-5.94c-.22-.36-.31-.58-.9-.13-.57.44-1.69 4.78-.35 7.73 1.34 2.94 3.35 5.09 4.2 6.12.84 1.02 1.96 2.63 1.78 2.77-.18.13-.5-.27-1.52-1.34s-2.72-2.9-3.84-4.25a31.7 31.7 0 0 1-2.56-4.09c-.16-.3-.37-.21-.53-.06-.37.37-.95 1.23-.7 3.57.36 3.26 2.05 5.14 3.57 6.8 1.52 1.64 3.03 3.03 2.81 3.25s-1.78-1.16-2.85-2.19a95.4 95.4 0 0 1-4.29-4.29c-.58-.7-1.42-.35-1.38 2.46s3.17 5.68 4.46 7.24c1.3 1.56 2.9 2.5 2.77 2.81-.14.32-1.43-.49-2.28-1.07-.84-.58-4.01-2.64-4.64-3.08-.62-.45-.93.4-.13 3.08s3.12 4.82 4.5 5.8c1.39.99 3.62 2.2 3.48 2.51-.13.31-1.07-.09-2.36-.72-1.3-.62-2.85-1.2-3.97-1.51-1.12-.32-1.11.49-1.11.49s-.23 2.27 1.42 4.1 3.53 2.55 5.31 2.86c1.78.32 2.05.4 2 .68-.04.26-.22.3-.62.3s-2.05.19-3.57.19-2.31.35-2.31 1.02-.05 1.57 2.23 3.09c2.27 1.52 4.81 1.74 5.88 1.96 1.07.23 1.12.32.9.63-.23.31-.72.27-2.41.45-1.7.17-2.72.84-2.95 1.29-.22.45.14 1.79 1.52 2.73 1.38.93 3.17 1.25 5.84 1.07 2.68-.18 3.35-.23 3.44.22.09.45-.8.58-2.14.8-1.34.23-2.37.23-3.13.86-.75.62-.17 1.92 1.12 2.85s4.5.94 5.84.85 3.4-.58 3.53-.22-.98.9-2.37 1.38c-1.38.5-1.78.8-2.05 1.39-.27.58-.04 1.12 1.6 1.74 1.66.63 4.07.63 5.32.05s1.91-.8 2.14-.58c.22.22 0 .44-.27.76-.27.3-1.34 1.16-2.72 1.52s-1.52.35-2 1.47c-.5 1.12.75 2.01 3.25 2.1 2.5.09 5.84-.9 6.91-1.52 1.07-.63 1.47-.76 1.65-.54.18.23.14.36-.4.76s-2.23 1.61-3.08 1.84c-.84.22-.93.84-.93 1.43 0 .58-.23 1.74 2 2.27 2.23.54 4.86.14 7.27-1.56a5.5 5.5 0 0 0 1.48-1.39c-.19-2.28-.09-3.85.19-5.3a8.81 8.81 0 0 1-2.3-.55c-1.33-.53-1.86-1.78-2.18-2.45-.31-.67-.76-.67-1.3-.5-.53.18-1.06.4-1.82.36s-2.36-.44-3.52-1.83c-1.16-1.39-.94-2.72-.99-3.4-.04-.67-1.11-.17-1.65-.17-.53 0-2.1-.23-3.52-1.21-1.43-.98-1.43-2.32-1.56-2.86-.14-.54-.72-.9-1.16-1.07-.45-.18-1.16-.36-2.14-1.16-.98-.8-1.34-2.37-1.39-2.9-.04-.54-.62-.59-2.63-1.61s-1.83-3.18-1.74-4.02c.1-.85 1.03-1.57 1.03-1.88 0-.32-.67-.4-1.34-.8s-2.36-1.08-2.4-3.58c-.05-2.5 1.6-2.77 1.6-2.77s-.31-.13-.98-.54c-.67-.4-2.5-1.65-2.5-3.12 0-1.48.67-2.15 1.16-2.5.49-.36 1.83-.72 1.83-.72s-.85-.54-1.2-1.7c-.36-1.16-.5-2.59.35-3.62.85-1.02 2.27-1.02 3.03-1.02s1.43.4 1.7.18c.27-.23.31-.4.04-.99a4.38 4.38 0 0 1-.09-2.5c.23-.49.27-1.47 2.19-2.1 1.92-.62 3.92.67 4.55 1.03s.36-.5.36-1.12c0-.62-1.3-2.19-2.77-4.42s-2.14-3.4-3.8-6.8-2.71-7.76-2.94-8.88c-.22-1.12-.67-.58-.67-.58s-.44.18-1.47 2.77a16.66 16.66 0 0 0-1.11 7.01z'/%3e%3cpath fill='%23d4af3a' d='M291.02 160.92a5.02 5.02 0 0 1-3.8-2.36c-1.14-1.67-2.87-2.07-5.85-2.01-3 .05-4.37-1.38-5.12-3.46-.74-2.07.12-4.43 3.16-5.92s4.43-3.17 4.54-5.76c.12-2.59-3.04-5.81-6.2-9.43s-5.63-8.75-5.63-8.75-.92 1.2-.92 2.41.46 2.48 0 2.82c-.46.35-.63-.51-2.47-1.32-1.84-.8-3.34-.92-4.48.4s0 3.63 1.03 4.72c1.03 1.1 1.9 1.9 1.6 2.3s-1.83-.63-2.35-.97-1.72-1.67-3.5-1.5-2.42.69-2.59 2.19c-.17 1.5 1.61 2.82 2.76 3.4 1.15.57 1.6 1.09 1.32 1.31-.29.24-.57 0-1.1-.17a5.35 5.35 0 0 0-2.86 0c-.92.35-2.42 1.61-1.04 3.17 1.38 1.55 4.25 2.13 4.83 2.24.57.12.86-.06.92.4.05.47-1.21.47-2.76.52s-2.01 1.56-1.78 2.7 2.81 2.42 4.25 2.65c1.44.23 1.95 0 2.07.4.11.4-.17.58-.98.81-.8.23-2.35.4-2.64 1.67-.29 1.27-.35 1.84.86 2.94 1.2 1.09 3.16.92 3.73.8.58-.11 1.27-.75 1.84-.17.58.57-.51 1.04-1.5 1.73-.97.69-.91 2.01.76 2.93 1.66.92 3.33.58 4.02.35s1.6-1.33 2.07-.64c.46.7-1.44.93-2.24 1.9-.8.98-.52 2.6 1.09 3.57 1.6.98 4.25.29 4.7-.11.47-.4 1.04-.58 1.39-.23.34.34-.17 1.26-.52 2.07-.34.8-.98 3.16 1.44 4.08 2.41.92 4.6-1.15 5-1.55.4-.4.8-.46 1.15-.29.34.17.17.52-.12.92-.29.4-.92 2.13.8 3.34 1.18.82 2.47.76 3.16.64.36-1.34.83-2.78 1.3-4.8H290c-.23 0-.27.34-.27.48s.07.25-.14.25c-.2 0-.23.12-.53.33-.3.2-.58.46-.74.34-.16-.11.62-.53.83-.78.2-.25.62-.65.65-.92.02-.28.16-.44.57-.78.13-.11.23-.24.31-.36.28-1.34.55-2.92.8-4.82.16-1.29.26-2.5.3-3.64l-.76-.04zm-49.11-35.87c2.57 5.2 6.2 8.12 6.2 8.12s-.48-1.3-.7-2.18c-.2-.89-.04-1.9-.04-1.9s-.91-1.16-2.6-3.75-2.56-6.42-2.56-6.42 1.56 3.83 2.78 5.86c1.21 2.03 2.61 3.69 2.61 3.69s.5-1.8.84-1.9c.35-.08.61.2.91.6.3.39.57.35.57.35s-.42-.85-1.06-1.88c-.29-.47-.71-.97-1-1.45-.97-1.5-3.03-4.38-4.09-7.25-1.06-2.88-3.37-10.09-3.77-12.2-.4-2.12-.8-.96-1.21.6-.4 1.56-.96 3.78-.6 7.1s1.15 7.42 3.72 12.61zm3.32 14.02c.96.7 2.37 1.66 2.37 1.66s-.23-.52-.37-1.14-.2-1.91-.2-1.91l-1.9-1.68a27.83 27.83 0 0 1-3.73-3.98c-1.95-2.42-.38-.97 1.2.76s4.63 4.25 4.63 4.25l.02-.56c.02-.53.18-.9.47-1.27.28-.36.13-.41-1.58-1.72-1.71-1.32-6.15-6.3-7.96-9.28-1.81-2.98-3.77-7.01-3.77-7.01s-.96 5.95 2.66 12.5c3.63 6.56 7.2 8.67 8.16 9.38zm19.02 37.53c1.99-.77 1.44-2.73 1.44-2.76s-1.22.38-2.34.8c-1.12.42-3.87 1.22-4.96 1.25-1.09.03-1.09-.12-1.12-.29-.03-.16.83 0 2.4-.28 1.57-.3 4.32-1.74 4.8-2.06.48-.32.42-.38-.28-.45a3.02 3.02 0 0 1-1.57-.6c-.26-.23-1 .1-2.79.5-1.8.42-5.51 1.07-8.36 1.07s-5.51-.48-5.96-.58c-.45-.1-.93.16.45 2.47 1.38 2.31 6.21 3.56 9.58 3.53 3.36-.04 6.72-1.83 8.71-2.6zm-8.94-4.77c3.47.03 4.76-1 4.76-1s0-.18-.47-.89c-.47-.7-.38-1.9-.38-1.9s-.82.14-2.26.35c-1.44.2-3.12.4-4.97.08s-1.06-.53.4-.35c1.48.18 4.3-.36 5.21-.68.91-.32.53-.62-.08-.82-.62-.2-2.3-1.27-2.3-1.27s-4.2.53-8.11.09c-3.91-.44-6.39-1.44-7.18-1.56s-.76.2-.76.2-.21.36 1.14 2.48c1.35 2.12 4 3.5 6.24 4.15 2.23.65 5.29 1.1 8.76 1.12zm-.89-8.13s-.15-.2-.35-.91c-.2-.71.38-1.24.38-1.24s-.8-.23-3.38-.56c-2.6-.32-2.74-.53-4.33-.88-1.58-.36-2.64-.83-2.61-1s.53.08 1.47.44c.94.35 4.9.76 6.58 1 1.68.23 2.62.41 2.91.23.3-.17 1.33-.44 1.33-.44s-.7-.2-1.59-.35a5.6 5.6 0 0 1-2.15-.86c-.47-.32-.61-.41-2.73-.64-2.12-.24-3.82-.92-7.62-2.3-3.79-1.39-6.64-3.03-7.4-3.65-.77-.62-.71-.18-.5.62.2.8.17 1.8 2.08 4.03 1.91 2.24 2.85 3.21 7.67 4.98 4.83 1.77 10.24 1.53 10.24 1.53zm-14.26-11.75c4.26 3 9.26 4.1 10.32 4.24.24-.28-.26-1.28-.03-1.89.28-.72.74-.73 1.77-.79 1.02-.06.35-.27.11-.27s-.29-.02-2-.47c-1.7-.44-3.44-.7-5.79-1.59-2.35-.88-3.06-1.53-3-1.7.06-.18 1.09.56 3.27 1.38 2.17.82 4.7 1.15 6.08 1.44 1.39.3.18-.3-.47-.68-.64-.38-1.56-1.8-1.56-1.8s-1.53-.26-4.02-1.02a32.52 32.52 0 0 1-6.68-2.8c-.72-.4-1.41-.93-2.16-1.47-1.43-1.02-2.87-2.07-3.43-2.48-.85-.62-.58-.12-.5.27s.68 2.15 2.03 4.1c1.35 1.94 1.8 2.52 6.06 5.53zm-.7-8.45c4.2 3.33 7.82 4.36 8.44 4.62.62.27.56-.09.44-.44-.12-.35-.2-1.5-.2-1.5l-3.18-1.83c-1.68-.97-3.53-2.3-4.77-3.15-1.23-.85-.5-.8-.11-.47.38.32 2.08 1.33 3.79 2.39 1.7 1.06 4.3 2.59 4.3 2.59s.05-.56.4-.91 1.24-.27 1.24-.27-.44-.44-.7-.85c-.27-.42-1.65-.86-3.21-1.6-1.56-.73-4.36-2.79-6.41-4.53a83.89 83.89 0 0 1-6.33-6.45c-.26-.35-.44-.3-.47.15-.03.44-.17.73.27 2.74.44 2 2.3 6.18 6.5 9.51zm14.88-31.47c.48.99 1 1.74 1.38 2.38.56.98.88 1.6.88 1.6s.12-.34.03-.92-.18-1.4-.02-2.36c.08-.52.19-1.04.16-1.5-.03-.52-.2-.97-.28-1.27-.13-.56-.74-3.02-1.03-4.75-.3-1.73-.6-4.2-.59-6.39.03-2.18.34-1.08.34-.02s.11 2.68.45 5.17c.34 2.5 1.4 6.3 1.4 6.3s.06-.58.38-1.41.83-1.78 1.23-2.82c.4-1.03.26-1.2.26-1.2s-1.47-7.07-1.86-10.41a427.64 427.64 0 0 1-1.01-12.12c-2.16 2.18-3.77 7.9-4.05 13.3-.22 4.08.44 7.85.63 9.38.38 3.03.9 5.4 1.7 7.04zm-4.79 11.15c.07-1.6.43-2.81 1.47-3.17 0 0-.92-1.6-1.71-3.88-.55-1.56-1-3.57-1.23-5.1-.56-3.8-1.01-7.7.11-1.3 1.13 6.38 2.49 8.64 2.49 8.64l1.63 2.66c-.24-1.17-.28-1.99-.21-3.26s.22-3 .6-4.37c0 0-1.97-3.96-3.2-8.7s-1.96-9.08-1.98-11.65l-.17-3.45s-2.03 1.53-2.71 9.27c-.68 7.75 1.35 15.15 2.37 17.98 1.02 2.82 2.54 6.33 2.54 6.33zm22.16 59.06s-.32-.22-1.28-.83-.67-2.44-.67-2.44-.26.19-.97.67c-.7.48-1.5 1.03-2.46 1.41s-1.44.65-2.05.84c-.61.19-.45-.07.06-.36.51-.28.68-.44 1.96-.96 1.28-.51 3.84-2.76 3.84-2.76s-.6-.06-1.67-.1-2.4-.57-2.4-.57-1.05.96-5.32 2.79c-4.26 1.83-7.88 2.3-7.88 2.3s.45 2.2 2.5 2.93c1.7.74 4.04 1.19 8.62.1 4.58-1.1 7.72-3.02 7.72-3.02zm5.61 4.37c.35-1.8-.67-3.05-.67-3.05s-.23.13-.87.7c-.64.58-1.57 1.68-3.36 2.57s-2.44.84-.7-.1 4.26-3.56 4.26-3.56l-.68-.25c-.67-.26-1.82.19-6.63 3.08-4.8 2.88-7.62 2.98-7.62 2.98s2.14 2.6 7.97 2.4c5.83-.18 7.95-2.97 8.3-4.77zm11.02-2.09s-.64.9-1.5 1.48-3.18.93-3.18.93-.1.25-.54.83c-.45.58-1.44 1.96-2.47 2.7-1.02.73-2.62 1.21-2.72 1.02s.93-.58 1.92-1.19c1-.6 1.9-1.73 2.56-2.5.68-.77-.28-.64-.28-.64s-1.22.03-2.34-.06c-1.12-.1-.9 0-1.22.54s-.77 1.03-1.6 2c-1.02 1.17-1.98 2.23-2.95 3.39-.64.77-.16 1-.16 1s.29.48 2.88.77c1.6.17 3.34-.03 5.17-1.08 1.13-.66 2.3-1.7 3.49-3 3.1-3.4 2.94-6.19 2.94-6.19zm1.38 7.02c-.64.83-1 1.19-1 1.19s.45-1.38.84-2.02c.2-.35.43-.67.6-.9-.44-.96-.79-2-1.05-3.12-.28.93-1.17 3.64-2.27 5.4-1.35 2.14-2.53 2.92-1.77 3.5.77.57 2.28.7 3.98-.14 1.64-.8 2.11-2.2 2.34-3.34-.28-.45-.55-.91-.8-1.4-.22.13-.52.38-.87.83z'/%3e%3cellipse rx='1.19' ry='1.09' cy='105.75' cx='289.34' fill='%23d4af3a'/%3e%3cpath fill='%23d4af3a' d='M286.83 103.69c1.09-.03 1.67-.54 2.87-.42 1.42.13 3.34.96 5.67 2.2a9.7 9.7 0 0 0 6.55.57c.65-.19 1.3-.54 1.91-.9 2.84-1.6 2.15-4.76 2.15-4.76a11.12 11.12 0 0 1-7.09 2.15s.19.14.6.55c.41.42 1.16.9.91 1.1-.24.21-1.28-.78-2.14-1.42a12.92 12.92 0 0 0-4.35-2.15c-2.2-.65-4.66-.7-6.3.22-1.66.92-1.8 2.07-1.56 2.53.12.26.43.34.78.33zm30.81 23.11c-.5-.14-1.37-.28-2.51-1.33a47.76 47.76 0 0 1-4.21-4.63c-.32-.55-.19-1.06.6-1.38.77-.32 1.32-1.33 1.32-1.33s-1.7-.64-2.83-1.47c-1.15-.82-3.8-3.2-4.17-3.8s-.18-.7.37-.87c.55-.19.69-.56.69-.56s-1.24-.77-2.38-1.7c-1.14-.9-2.7-2.42-2.7-2.42-1.71.69-4.4.4-5.85.14-2.56-.46-4.44-1.52-4.44-1.52s-.09.41-.4 1.2c-.33.77-1.52 1.23-2.7.45-1.2-.78-.92-2.47-.92-2.47s-.96-.6-2.93-1.33-3.56-.83-5.16-.1c-1.6.74-2.38 2.94-2.38 4.6 0 1.64.87.95 1.05.72.18-.23.55-1.42 2.56-1.74 2.01-.32 3.84.64 6.13 2.52 2.28 1.88 2.79 2.02 3.93 3.21 1.14 1.2.23 1.84-1.74 2.48s-4.48-.64-4.57-.6c-.38.2.85 1.94 2.54 2.6 1.7.66 3.87.24 5.55-.44 1.15-.46 1.36.02 1.7.37 1.85 1.95 2.33 3.78 2.65 6a2.7 2.7 0 0 0 1.73-2.01c.07-.37.19-1.2.83-.6.64.6 1.14 3.9 1.14 5.41s-.46 3.54-.46 3.54l.46-.05c.28-.05.82-.37 1.55-.78.74-.41.78.05.78.87s.28 2.39 1.37 5.18 2.7 3.72 2.7 3.72.32-.55.64-1.65c.32-1.1.55-3.26.55-5.14s-.5-5.92-.5-5.92 2.29 2.8 4.66 3.5c2.38.68 4.76.27 5.76-.88s.1-1.65-.41-1.79z'/%3e%3cpath fill='%23d4af3a' d='M302 134.04s-.72 1.6-1.12 2.17-.56.65-.56.65.72.62 1.77.94c1.05.33 1.99.53 1.99.53s-1.18-1.62-1.6-2.76c-.41-1.14-.48-1.53-.48-1.53zm14.28-.94c-.35-.9-.57-1.4-.57-1.4-1.46.3-4.23-.4-5.43-1.12 0 0 1.1 2.23 2.2 3 1.09.77 1.24.81 1.24.81s-1.1.18-2.56-1.27c-1.47-1.44-2.13-3.1-2.13-3.1s.33 3.85-.26 6.2-.72 2.68-.72 2.68 3.1.55 6.57-.42c3.45-.96 3.72-1.27 3.72-1.27s.41-.1-.13-.83a18.68 18.68 0 0 1-1.93-3.28z'/%3e%3cpath fill='%23b96b29' d='M310 124.64c-1.06-1.22-1.17-1.52-1.17-1.52s-.37.38-.05.9a11.1 11.1 0 0 0 2.87 2.45 7.4 7.4 0 0 0 2.07.77l-.05-.2s-2.6-1.18-3.67-2.4zm-4.22 8.03s-.27-4.84-.27-5.56-.45-.53-.45-.53l-.53.24 1.04 7.08c.11.76.49.7.68.66-.38-.2-.45-1.67-.47-1.89zm-6.53-20.95c-.4-.4-1.28-.69-.43.26.86.96 1.98 2.14 2.3 3.13.34.99.53 2.2-.03 1.94-.56-.26-.95-.26-1.54-.75a9.86 9.86 0 0 0-2.18-1.45c-.46-.13-1.28 0-.62.72.66.73 1.38 1.42 2.63 2.34 1.25.92 1.98 1.31 2.64 1.78.65.46 1.31.85 1.31.85s-.6-3.95-1.68-5.7-2-2.72-2.4-3.12zm-21.34 66.15c-.8.6-1.85.86-1.85.86s-.5-.03-.5.16.58 0 1.19-.1c.6-.12 1.44-.73 1.74-.95.3-.22.75-.5.6-.88-.13-.4-.38.3-1.18.91zm6.89 3.69c-.17.2-1.5 1.19-1.5 1.19s-.4.28-.85.44c-.44.17-.55.42-.55.42s.08.1.55-.03c.47-.14 1.85-1.1 2.3-1.5.44-.38.63-.5.47-.66-.17-.16-.25-.05-.42.14zm-27.93-49.63c.25.3.55.71.69.58.14-.14-.03-.28-.36-.66-.33-.39-.52-.58-.52-.58s-.47-.75-.75-1.02c-.27-.28-.68-.42-.16.22.52.63.85 1.16 1.1 1.46zm-2.12 4.65c.3.28.58.52.9.88s.59.74.78.55c.19-.2-.5-.6-.8-.99-.3-.39-.55-.63-.94-.94s-.85-.55-.85-.55.6.78.91 1.05zm.79 7.51c.53.55 1.3.72 1.41.5.11-.22-.06-.4-.5-.62-.43-.22-1.15-.69-1.5-.94a7.61 7.61 0 0 1-.97-.77c-.25-.25-.54-.47-.63-.38-.1.08.73.96.97 1.1.25.14.7.56 1.22 1.11zm1.52 6.01c0-.22.05-.33-.39-.36-.44-.03-1.05-.1-1.05-.1s-.86-.34-.91-.18c-.06.17.72.5 1.05.56.33.05.75.16.94.27.2.11.36.03.36-.19zm.66 6.53c-.94 0-1.74-.22-1.8-.08s.45.36.92.52c.47.17 1.35.22 1.96.25s.72-.1.7-.41c-.04-.3-.84-.28-1.78-.28zm7.36 7.15c-.14-.14-.47-.03-1 .08-.52.11-1.38.28-1.88.25s-1.57-.05-1.57-.05l-.61.14c0 .14.8.1 1.96.25 1.16.13 1.94-.11 2.5-.2.54-.08.74-.33.6-.47zm3.04 5.09c-.58.22-1 .28-1.44.28-.44 0-1.5.19-1.5.19s-.49.06-.4.25c.08.2.24 0 .68-.06.45-.05.78 0 1.55-.02.78-.03 1.22-.23 1.69-.3.47-.1 1-.34.75-.65-.25-.3-.75.09-1.33.31zm5.92 3.85c-.33.33-1.6 1.2-1.6 1.2s-.25.19-.75.43-.47.37-.39.5.39-.2.67-.3 1.18-.72 1.65-1.1c.47-.4 1.08-.7.97-.98-.1-.28-.22-.08-.55.25zm-9.85-49.85s.11.25 1.13 1.53c1.02 1.28.48.07.22-.25-.26-.33-1.75-2.45-2.26-3.03-.51-.59-.59-.3-.33.07.26.37 1.24 1.68 1.24 1.68zm-2.15 6.56c.15-.15-.18-.3-.77-1.02l-1.75-2.23s-.33-.69-.43-.62c-.11.08.4 1.17.87 1.65.48.47 1.1 1.38 1.42 1.78s.51.59.66.44zm2.83 12.3c0-.36-1.16-.3-1.68-.41l-1.46-.3s-1.1-.2-1.12-.06c-.03.13.22.27.82.38.6.11 1.51.39 2.2.5s1.24.25 1.24-.11zm-2.83-6.64c.77.62 1.28.91 1.68 1.13.4.22.73.55.95.3.22-.26-.19-.45-.84-.74-.66-.29-.99-.54-.99-.54l-.7-.37c-.32-.18-.87-.4-.1.22zm6.6-4.38c-.47-.4-.88-.62-.88-.62s-.58-.55-.69-.37c-.1.19.66.73 1.02 1.06.37.33 1.02 1.28 1.35 1.1.33-.19-.33-.77-.8-1.17zm-4.31 17.14-1.05.28c-.41.1-.44.3.3.3s1.06-.2 1.8-.33c.75-.14 1-.22.89-.47-.11-.25-.5-.17-.8-.08l-1.14.3zm1.16 6.21c-.06.14.53 0 .91-.14.39-.14 1.2-.55 1.66-.69.47-.14.47-.22.47-.5 0-.27-.5-.05-1.1.14-.61.2-1.39.8-1.39.8s-.5.25-.55.39zm7.99 3.76c.55-.33.67-.58.47-.75-.2-.16-.36-.14-.8.22-.44.36-1.3.97-1.3.97s-.44.17-.77.34-.75.44-.64.6c.1.17.8 0 1.16-.3.36-.3 1.33-.75 1.88-1.08zm3.77 4.99c.22-.2.88-.41 1.19-.64.3-.22.5-.88.25-.97s-.39.28-.91.67c-.53.39-2.33 1.58-2.33 1.58l-.47.19c-.5.2-.27.33.14.28.42-.06.7-.06 1.19-.44.5-.4.72-.48.94-.67zm5.58 4.73c.47-.2 1.16-.8 1.5-1.1.33-.31.74-.7.5-.9-.26-.19-.53.06-.92.42s-1.41 1.44-1.41 1.44-.14.03-.7.47c-.55.44.04.36.23.17.2-.2.33-.3.8-.5z'/%3e%3cpath fill='%23d4af3a' d='m305.58 96.59 2.25-1.6-2.65-.68-1.7 1.36z'/%3e%3cellipse rx='2.15' ry='2.07' cy='94.72' cx='312.78' fill='%23b96b29'/%3e%3cellipse cx='312.78' rx='1.29' cy='94.28' ry='1.24' fill='%23d4af3a'/%3e%3cpath fill='%23d4af3a' d='M308.3 87.6c.55.21 1.27.12 1.27.12s.22-.95-.3-1.41c-.53-.47-1-.8-1.32-1.1l-.38-.42s0 .82-.04 1.34c-.04.51.22 1.27.77 1.48z'/%3e%3cellipse cx='309.44' rx='.39' cy='88.65' ry='.37' fill='%23d4af3a'/%3e%3cpath fill='%23d4af3a' d='M306.51 88.25c-.17.23-.53.6-.53.6s.44.02.8.27c.36.26.82.48 1.24.43.43-.05.6-.45.52-.74-.1-.28-.3-.57-.99-.83-.7-.26-.87.04-1.04.27z'/%3e%3cpath fill='%23d4af3a' d='M308.01 90.76c-1.35.12-3.13-1.37-3.13-1.37-.17 1.2-.9 1.81-2.04 2.04l.1.05s1.06.54 2.3.73c.57.09 1.07 0 1.67-.13a7.06 7.06 0 0 0 2-.63c.81-.5.57-1.8.57-1.8s-.12.98-1.47 1.1zm-5.25-1.36c-.55-.2-1.38-.6-1.73-.62-.34-.02-.85-.1-.76.54.09.64.74.95 1.38.97.64.02.97-.23 1.35-.42.38-.19.31-.26-.24-.47zm-4.22-2.29c-.6-.43-1.14-.55-1.14-.55s-.4 1.04-.17 1.68c.22.65.69.82 1.26.8.57-.02 1.42-.31 1.17-.75a3.38 3.38 0 0 0-1.12-1.18z'/%3e%3cellipse cx='299.09' rx='.47' cy='90.04' ry='.34' fill='%23d4af3a'/%3e%3cpath fill='%23d4af3a' d='M300.38 84.86c-.37-1.77-.31-3.7 1.37-6.16 1.68-2.46 4.6-3.45 4.6-3.45s.1-.2 1.03-1.19c.94-1 2.84-2.24 2.84-2.24s-2.2.55-3.46.95v.06c0 .85-.67 1.54-1.5 1.54-.33 0-.62-.1-.87-.27-.68.13-2.94 1.49-3.52 1.97.14.23.23.51.23.81 0 .85-.68 1.54-1.51 1.54-.25 0-.49-.06-.7-.17l-.19.33c-.47.87-.82 1.7-1.08 2.48.38.26.64.76.64 1.33 0 .85-.57 1.53-1.28 1.54-.05.5-.04.85-.02 1 .06.5.25.8 1.12 1.06.87.24 2.05 1.77 2.05 1.77.09 0 .7-1.12.25-2.9z'/%3e%3cpath fill='%23d4af3a' d='M305.74 73.5c.32-.25.37-.65.12-.87-.25-.23-.71-.2-1.03.06-.31.26-.37.65-.12.88.25.22.71.2 1.03-.06zm-5.64 3.82c.36-.33.42-.82.14-1.1-.29-.3-.8-.26-1.17.07-.35.32-.41.82-.13 1.1.28.29.8.25 1.16-.07z'/%3e%3cellipse cx='296.74' rx='.87' cy='82.11' ry='.86' fill='%23d4af3a'/%3e%3cpath fill='%23d4af3a' d='M315.54 70.02c-.45.1-1.29.37-2.54 1.02h.02c.87 0 1.55.56 1.55 1.28s-.8 1.5-1.66 1.5-1.46-.75-1.46-1.47c0-.17.04-.34.11-.49l-1.19.77c-2.77 1.87-3.42 2.77-4.8 5.33-1.36 2.55-1.86 5.35-1.27 7 .6 1.65 2.77 2 2.8 2s-.25-.26-.28-.57c-.03-.31.07-.47.16-1.09.1-.62.03-1.37.03-1.37s.5-.06.78.28c.28.35.68.75.96 1.1.28.33 1.03.99 1.03.99s.44-.63.44-1.37c0-.75-.5-1.56-.6-2.87s.6-3.64 1.87-5.35a15.05 15.05 0 0 1 4.39-3.61c.72-.34.84-.87.87-1.18.03-.32.1-.53.16-1.31s-.65-.75-1.37-.6z'/%3e%3cpath fill='%23d4af3a' d='M312.79 72.97c.49 0 .94-.44.94-.84 0-.4-.39-.72-.88-.72s-.88.33-.88.73.33.83.82.83zm4.12 16.28c.67.27 1.42.12 1.78-.12.35-.24.47-.84.05-1.19a1.34 1.34 0 0 0-1.43-.12c-.39.22-1.26.84-1.26.84s.2.32.86.59z'/%3e%3cpath fill='%23d4af3a' d='M319.05 90c-.24.37-.42.6-1.16.63s-1.55-.02-2.03-.5c-.49-.49-.82-1.17-.82-1.17l-.84-.01s-.28 1.16-.65 1.48c-.37.33-1.66.38-2.22-.04s-1.08-.94-1.18-.88 0 .49.58.99.98.8 1.92.8h5.32s1.08.07 1.39-.58c.3-.64.32-1.05.17-1.2-.14-.17-.24.1-.48.48z'/%3e%3cpath fill='%23d4af3a' d='M310.96 89.1c.8.44 1.24.17 1.53-.19.3-.35.34-.51.34-.51s-.75-.28-1.12-.5c-.36-.2-.61-.41-.98-.37-.36.05-.42.1-.42.1s-.15 1.02.65 1.47z'/%3e%3cellipse cx='307.11' rx='1.77' cy='81.24' ry='1.76' fill='%23b96b29'/%3e%3cpath fill='%23b96b29' d='M310.19 75.14c-.71-.47-1.75-.28-2.33.43-.58.72-.47 1.68.24 2.16.71.48 1.76.29 2.34-.43.57-.7.46-1.68-.25-2.16z'/%3e%3cellipse cx='307.04' rx='1.03' cy='81.01' ry='.98' fill='%23d4af3a'/%3e%3cpath fill='%23d4af3a' d='M309.45 75.34c-.46-.13-1.02.1-1.26.5s.01.83.62.96c1.12.22 1.66-1.18.64-1.46z'/%3e%3c/g%3e%3cpath fill='%23D4AF3A' d='M282.34 212.67s-2.74 1.31-3.61 1.54c-.87.24-1.07.24-1.07.24s-1.87 1.7-3.25 2.51c-1.44.85-3.09 1.47-4.74 1.65-2.14.23-8.03.16-10.67.06s-4.28.54-5.42 1.82c-1.13 1.27-1.4 3.11.04 4.52s3.04.7 3.57-.16c.54-.88.27-1.98.04-2.49-.24-.5.47-.67 1.2-.7.74-.03 1.98.07 3.11.23 1.14.17 3.15.84 4.02 1.31.87.47.36.54-.24.44s-1.27-.34-2.34-.74a9.28 9.28 0 0 0-2.64-.64c-.67-.03-.44.34-.3.57.13.24.5.8.6 1.08.1.27-.2 1.27-.2 1.27l.33.64s.4-.64.54-.97c.13-.34-.04-.98.1-1.28s.7-.3 1.14.2c.43.5.93 1.11 1.17 2.38.23 1.28-.2 2.18-.2 2.18s.53.44.63.74c.1.3-.13 1.51-.13 1.51s.36.24.7-.47c.33-.7.73-1.94.83-2.38.1-.44.4-1.24.94-.64s.9 1.34 1 1.71c.1.37.1.67.1.67s1.2-1.17 1.6-1.84 1.25-1.68 2.38-2.62c1.14-.94 3.11-2.81 4.08-3.45.97-.64 3.45-1.98 4.22-2.45s.9-.5 1.03-1.81c.14-1.31.77-2.48 1.07-3.39.3-.9.36-1.24.36-1.24zm-43.85-49.15c-.02-.22-.47-1-.58-1.4-.11-.4-.51-.16-.51-.16s-.87.49-1.52.67-.73-.07-.8-.4c-.07-.34-.22-1.4-.34-2.13-.1-.74-.26-.7-.53-.58-.27.11-1.07.4-1.63.65-.55.24-.38.51-.2.82.18.32.83 1.64 1.12 2.1.29.48.02.68-.32.83-.33.16-.82.23-1.49.45s-.62.38-.56.6c.07.23.52 1.15.76 1.57.25.42.47.13.47.13s.71-.64 1.31-.94c.6-.28.65-.2.8.25.16.45.85 2.8.99 3.24.13.45.35.4.67.27.3-.13.73-.2 1.09-.31.35-.11.49-.83.49-.83s-1.32-2.37-1.67-2.97c-.36-.6 0-.74.26-.78.27-.05 1.05-.16 1.72-.32.66-.17.48-.55.46-.78zm14.86 64.38c-.1-.57 0-1.14-.43-1.58a5.4 5.4 0 0 1-1.17-2c-.2-.71.16-1.05.1-1.45-.07-.4-.6-.4-1.14.03-.54.44-1.24.84-1.24 2.11 0 1.28.47 2.79 2.24 3.32 1.77.54 1.74.14 1.64-.43zm1.8-.61s-.37-.23-.54.1-.13.5.34 1.24.77.9 1.3 1.24c.54.34.17-.33.1-.53-.06-.2 0-.47-.13-.64-.13-.17-.2-.37-.2-.9 0-.54-.87-.5-.87-.5z'/%3e%3cpath fill='%23D4AF3A' d='M257.32 233.33c.33-.5.64-.64 1.44-1s2.27-.58 2.77-.61c.5-.03 1.64-1 1.47-2.01-.16-1.01-.9-1.41-1.54-1.55s-1.2-.13-1.4.17c-.2.3-.57.7-1.27.94s-.8.47-1.24.6c-.43.14-.1.4-.47.7-.36.31-.86 0-1.43-.16-.57-.17-.6-.27-1.24-.3l-2.3-.14s-.07-.03-.44-.03-.4.07-.57.47c-.17.4.03 1.41.44 1.91.4.5 1.7.74 2.57 1 .87.28 1.3.38 2.04.51.76.13.86 0 1.2-.5zm8.13.8c.7-.47.3-1.27.13-1.78-.16-.5-1.13-.6-1.63-.6s-.77 0-1.04.23c-.27.24-.64.57-1.37.8-.74.24-1.3.51-2.31.91-1 .4-1.3 1.08-1.74 1.35-.43.26-1.27 0-1.27 0s-.6-.17-.8 0c-.2.16 0 .5.4.93.4.44 1.17.4 2.04.68.87.26 1.04.06 1.37-.17.33-.24.6-.74 1.2-1.1.6-.38 1.91-.44 2.55-.51a6.15 6.15 0 0 0 2.49-.74zm0-3.05c.3.27.64.64.9.2.27-.43.7-1.34.4-1.88-.3-.53-.66-1-.66-1s-.5 1.54-.74 1.94c-.22.41-.19.47.11.74zm-2.71-4.63c0-.87-.6-1.95-.6-1.95s-.2.8-.57 1.51c-.37.7-.74 1.08-.74 1.08s.87.23 1.2.23.72.01.72-.86zm-5.01 1.85c.94-.2 1.44-.57 1.84-.9s.64-1.25.37-1.71c-.27-.48-.94-.98-1.2-.98h-.5s-.28.87-.64 1.31c-.37.44-.8.74-.77 1.3.03.57-.04 1.17.9.97zm1.9-4.26a1.6 1.6 0 0 0-.43-1.2l-.5-.5s-.07.66-.14 1.03-.1.44-.1.44.27.27.5.37c.23.09.63.3.66-.14zm-11.56-23.79.63-3.95c-.47-3.95-2.53-7.7-4.16-10.28a49.03 49.03 0 0 1-4.06-8.8 24.93 24.93 0 0 1-1.23-6.66c0-1.55.66-2.35.66-2.35s.29-.42.02-.69c-.26-.26-.68-.02-1.1.4s-.86 1.2-1.04 1.75c-.17.56-.17.75-.17.75s-.84-.2-2.19-.08c-1.34.1-1.98.22-2.03.5-.04.3.18.51 1.15.93.97.42 1.59.6 2.07 1.18.49.57 1.73 3.46 2.1 4.86.39 1.4 1.2 5.18 1.53 8.15s1.33 6.57 2.73 9.57c.46.99 2.97 5.67 5.09 4.73zm2.45 6.96c-.92.51-.88 4.25-.47 6.19.4 1.94 2.3 4.35 2.88 5 .57.64.7.64 1.01.47.31-.17.44-.17.44-.17s.82-.27 1.43-.74c.6-.48.37-1.67.27-2.73-.1-1.05-.92-3.16-2.4-5.6-1.49-2.46-2.24-2.94-3.15-2.43zm1.01-3.03c0-1.22-1.06-2.14-2.27-2.14a2.1 2.1 0 0 0-1.4.43c-1.23 1.1-.49 3.89 1.3 3.89.64 0 1.4-.11 1.86-.56.42-.39.51-1.04.51-1.62zm17.68 35.14c-.49-.09-.77-.28-1.5-.77-.7-.49-1.86-1.5-2.06-1.98-.2-.5-.2-.52-.89-.29-.69.23-1.66.2-2.4.23-.75.03.08.86.6 1.64.51.77.34 3.38.34 3.38s0 .23-.12.6c-.11.38-.03.64.17.72.2.09.32-.08.84-.69.51-.6 1.46-2.18 1.46-2.18l.95.23c.8.2 2.1.09 2.75-.11.68-.2.36-.7-.13-.78z'/%3e%3cpath fill='%23D4AF3A' d='M266.14 241.34c-.34-.06-.49-.09-.66.14-.17.23-.32.66-.4.9-.09.22-.06.42.14.6.2.17.5.37.5.37s.28.31.57.46c.28.14.34-.29.34-.6 0-.32.17-.9.17-1.27s-.3-.55-.65-.6z'/%3e%3cpath fill='%231D5E91' d='M396.62 216.11c-.84-.2-1.2-.52-1.2-.52s-.35-.04-.64.48c-.27.52-1.35 1.2-1.35 1.2s-1.51.4-1.72 1.43c-.2 1.04.52 1.4 1.24 1.28.72-.12 2.48-.48 3.23-1.4.76-.91.88-1.43 1.04-1.8.14-.34.23-.46-.61-.66zm2.35-8.26c-.55-2.3-2.03-5.16-4.9-6.58 0 0-1.08 3.79-1.4 4.98-.32 1.2-.32 1.16.6 1.4.91.24 3.86.88 4.46 1.04s1.6.67 1.24-.85zm-13.68-2.15c.68.12.6-.16.84-1.08l1.43-5.46s-3.03-.12-5.66 1.16c-2.63 1.27-3.79 3.62-3.79 3.62s.68.28 2.48.68c1.8.4 4.03.95 4.7 1.07zm-7.02 6.26c-1.07-.2-1.48-.32-1.48-.32s.68 2.6 1.8 4.03c1.12 1.44 2.35 2.15 4.67 2.2 2.3.03 4.06-1.24 4.34-2.24.28-1 .76-1.75.76-1.75s-4.19-.56-5.9-.96c-1.74-.4-3.13-.76-4.21-.96z'/%3e%3cpath fill='%23D4AF3A' d='M377.55 210.32c1.04.24 9.57 1.87 10.29 2.03.72.16 1.32.32 1.52.12.2-.2.32-.32 1.07-.6.76-.27.72-1.03.72-1.03s.2-.72.28-1.44c.08-.72.48-.96 1.32-.08.83.88 1 2.15 1.15 3.4.16 1.23 2.12 1.55 2.87 1.67.76.12 1.12-.12 1.56-.84.44-.72.68-2.15.8-3.07.12-.92.04-.84-.92-1.08-.96-.24-5.38-1.23-6.18-1.44-.8-.2-.64-.71-.52-1.27s1.87-6.18 1.87-6.18c-1.25-.78-3-1.24-5.1-1.48 0 0-1.28 5.74-1.52 6.62-.24.88-.8.88-1.71.72-.92-.16-7.54-1.71-7.54-1.71l-.52 1.23c-.52 1.24-.76 2.71-.76 3.47s.27.74 1.3.97z'/%3e%3cpath fill='%23D4AF3A' d='M400.2 215.51c-.88-.57-1.53-.73-1.99.34-.45 1.07-.5 2.64-1.64 3.75-1.14 1.11-2.75 2.26-4.35 2.14-1.6-.11-2.52-.5-2.14-2.33.38-1.83 2.83-2.4 3.4-3.36s.42-2.07-.42-2.8c-.84-.72-2.06-.88-2.4-.65a5.29 5.29 0 0 0-1.84 2.45c-.5 1.38-.8 2.49-1.87 3.37a8.1 8.1 0 0 1-5.96 1.26c-2.13-.5-2.9-1.15-3.7-3.25-.8-2.1-1.76-5.58-2.18-5.97-.42-.38-.95-.69-1.87-.04-.91.65-.99 1.61-1.1 2.38-.12.76 0 1.64.91 2.75.92 1.1 1.87 2.22 2.22 3.36.34 1.15 1.37 2.91-.08 2.99-1.45.07-2.1.11-3.2-.96-1.11-1.07-5.43-4.02-6.61-4.97-1.19-.96-1.68-1.26-1.68-1.26-2-.04-4-.86-6-2.22 0 0 1.15 2.94 1.38 4.05.23 1.11.19 1.72.19 1.72s4.35 2.22 6.07 3.06c1.72.84 5.2 2.83 6.87 3.86 1.68 1.04 3.1 2.64 6.07 2.03 2.98-.61 9.01-2.45 10.96-3.02 1.95-.57 7.33-1.91 9.32-3.29s2.17-1.3 2.52-2.68c.34-1.35 0-2.1-.88-2.69zm-11.49-20.59c.33-.04.46-.09 1.48-.22 1.02-.14.64.84.46 1.21-.17.38-.48 1.13-.9 1.84-.42.7.13.82.42.93.28.11.7.15 1.52.38.82.22.66-.38.69-.69.02-.31.06-1.93.15-2.5.09-.57.62-.42.82-.3l1.12.6c.42.23.62-.01.7-.26s.3-.68.47-1.32c.18-.64-.22-.51-.62-.51s-.97 0-1.63-.02c-.66-.02-.24-.67-.24-.67L394 192c.37-.6.24-.68-.14-.8l-1.87-.46c-.33-.09-.49-.04-.49.18s-.04 1.37-.04 1.81c0 .44-.04.7-.62.73-.57.02-.93-.31-1.39-.82-.46-.5-.66-.3-.7-.1-.05.19-.43 1.65-.52 2.05-.1.39.11.37.44.32zm3.2 14.49s-.04 1.16-.16 1.55c-.12.4-.4 1 .08 1.16.48.16.92.36 1.2.28.28-.08.15-.64 0-1.11a4.27 4.27 0 0 0-.76-1.48l-.35-.4zm7.02 4.62c.16.36.48.44.72.52.24.08.56.08.56-.36s.08-1-.28-1.48c-.36-.48-.55-.82-.76-.12-.2.72-.4 1.1-.24 1.44zm-24.45-4.66c.2.04.96.28.96.28s0-1.12.16-1.88c.15-.75.47-1.27.2-1.27s-.44.24-.64.56c-.2.31-.76.4-.96 1.31-.2.91.08.95.28 1z'/%3e%3ccircle cy='207.45' cx='379.27' r='1.56' fill='%23B96B29'/%3e%3ccircle cy='208.53' cx='383.65' r='1.59' fill='%23B96B29'/%3e%3ccircle cy='211.24' cx='396.42' r='1.6' fill='%23B96B29'/%3e%3ccircle cy='209.57' cx='388.04' r='1.6' fill='%23B96B29'/%3e%3ccircle cy='205.74' cx='389.2' r='1.6' fill='%23B96B29'/%3e%3ccircle cy='201.91' cx='390.32' r='1.6' fill='%23B96B29'/%3e%3ccircle cy='207.3' cx='379.38' r='.78' fill='%23D4AF3A'/%3e%3ccircle cy='208.37' cx='383.77' r='.8' fill='%23D4AF3A'/%3e%3ccircle cy='211.08' cx='396.54' r='.8' fill='%23D4AF3A'/%3e%3ccircle cy='209.41' cx='388.16' r='.8' fill='%23D4AF3A'/%3e%3ccircle cy='205.58' cx='389.32' r='.8' fill='%23D4AF3A'/%3e%3ccircle cy='201.75' cx='390.44' r='.8' fill='%23D4AF3A'/%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 639.97 0)' height='320' width='640'/%3e%3c/svg%3e\"},82:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23ED2939' d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M0 0h600v600H0z'/%3e%3cpath fill='%23002395' d='M0 0h300v600H0z'/%3e%3c/svg%3e\"},3675:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23007E3A' d='M0 0h900v600H0z'/%3e%3cpath fill='%23FC3D32' d='M0 0h900v300H0z'/%3e%3cpath fill='%23FFF' d='M0 0h300v600H0z'/%3e%3c/svg%3e\"},8562:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 570 300'%3e%3cpath fill='%23003893' d='M0 0h570v300H0z'/%3e%3cpath d='M0 295.2V288L570 35v87.4z' fill='%23fff'/%3e%3cpath d='M0 290.4v-4.8L570 4.8v58.8z' fill='%23dd7500'/%3e%3cg fill='%23fff' transform='translate(109.536 109.536)'%3e%3cg id='b'%3e%3cpath d='M0-93 5.59 0H-5.59z'/%3e%3cpath id='a' d='M0-66.588 6.824 0H-6.824z' transform='rotate(15)'/%3e%3cuse xlink:href='%23a' transform='rotate(15)'/%3e%3cuse xlink:href='%23a' transform='rotate(30)'/%3e%3cuse xlink:href='%23a' transform='rotate(45)'/%3e%3cuse xlink:href='%23a' transform='rotate(60)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(90)'/%3e%3cuse xlink:href='%23b' transform='rotate(180)'/%3e%3cuse xlink:href='%23b' transform='rotate(270)'/%3e%3c/g%3e%3c/svg%3e\"},8006:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 28'%3e%3cpath fill='%23d20000' d='M0 0h56v28H0z'/%3e%3cg fill='%23ffe600'%3e%3cpath d='M0 0h8.4L28 13.5 47.6 0H56L0 28h8.4L28 14.5 47.6 28H56zm56 11.2v5.6L0 11.2v5.6zM25.2 0 28 12l2.8-12zm0 28L28 16l2.8 12z'/%3e%3ccircle cx='28' cy='14' r='4.5' stroke='%23d20000'/%3e%3c/g%3e%3c/svg%3e\"},3692:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 450 300'%3e%3cpath fill='%23CE1126' d='M0 0h450v300H0z'/%3e%3cpath fill='%23FCD116' d='M0 0h300v300H0z'/%3e%3cpath fill='%2314B53A' d='M0 0h150v300H0z'/%3e%3c/svg%3e\"},9086:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 18 12'%3e%3cpath fill='%23FECB00' d='M0 0h18v6H0z'/%3e%3cpath fill='%23EA2839' d='M0 6h18v6H0z'/%3e%3cpath fill='%2334B233' d='M0 4h18v4H0z'/%3e%3cg transform='translate(9 6.422) scale(4.422)'%3e%3cpath id='a' fill='%23FFF' d='M-.325 0 0-1l.325 1z'/%3e%3cuse xlink:href='%23a' transform='rotate(-144)'/%3e%3cuse xlink:href='%23a' transform='rotate(-72)'/%3e%3cuse xlink:href='%23a' transform='rotate(72)'/%3e%3cuse xlink:href='%23a' transform='rotate(144)'/%3e%3c/g%3e%3c/svg%3e\"},4158:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4800 2400'%3e%3cg fill='%23f9cf02'%3e%3cg transform='scale(5)'%3e%3cpath fill='%23c4272f' d='M0 0h960v480H0z'/%3e%3cpath fill='%23015197' d='M320 0h320v480H320z'/%3e%3ccircle cx='160' cy='164' r='44'/%3e%3ccircle cx='160' cy='144' r='48' fill='%23c4272f'/%3e%3ccircle cx='160' cy='152' r='32'/%3e%3cpath d='M140 92a20 20 0 0 0 40 0c0-8-5-9-5-12s3-7-3-12c3 5-2 6-2 11s2 5 2 9a4 4 0 0 1-8 0c0-4 4-8 4-14s-1-8-4-13-8-9-4-13c-6 2-3 10-3 15s-4 8-4 14 3 7 3 11a4 4 0 0 1-8 0c0-4 2-4 2-9s-5-6-2-11c-6 5-3 9-3 12s-5 4-5 12ZM72 216v192h40V216Zm136 0v192h40V216Zm-88 32v16h80v-16Zm0 112v16h80v-16Zm0-144h80l-40 24Zm0 168h80l-40 24Z'/%3e%3c/g%3e%3cg stroke='%23c4272f' stroke-width='24'%3e%3ccircle cx='800' cy='1560' r='212'/%3e%3cpath fill='none' d='M800 1348a106 106 0 0 1 0 212 106 106 0 0 0 0 212'/%3e%3c/g%3e%3c/g%3e%3cg fill='%23c4272f'%3e%3ccircle cx='800' cy='1454' r='40'/%3e%3ccircle cx='800' cy='1666' r='40'/%3e%3c/g%3e%3c/svg%3e\"},2914:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 660 440'%3e%3cpath fill='%2300785E' d='M0 0h660v440H0z'/%3e%3cpath fill='%23FBD116' d='m330 82.958-14.208 43.735 37.203-27.027h-45.99l37.203 27.027z'/%3e%3cg id='a'%3e%3cpath fill='%23FFF' d='M330 303.99h-93.937c-1.184-1.2-2.35-2.423-3.488-3.667H330a1.962 1.962 0 0 1 1.306 1.736A1.968 1.968 0 0 1 330 303.99zm0-28.725c.545-1.114 1.607-3.694 1.125-6.921a11.356 11.356 0 0 0-1.125-3.492c-5.271 4.988-15.175 12.981-29.785 17.401a74.286 74.286 0 0 1-21.548 3.173h-57.872a132.363 132.363 0 0 0 5.364 7.333h55.945c18.242.001 34.954-6.58 47.896-17.494zm-100.461-22.637a29.595 29.595 0 0 1-8.887 1.926c13.629 15.415 33.545 25.144 55.723 25.144 21.066 0 40.091-8.775 53.625-22.867a404.194 404.194 0 0 0 4.167-53.998A404.18 404.18 0 0 0 330 140.801c-6.045 5.419-17.371 17.128-22.71 35.079a74.291 74.291 0 0 0-3.072 21.203c0 15.291 4.623 29.506 12.547 41.329-9.731-12.57-15.526-28.338-15.526-45.454 0-11.369 2.558-22.144 7.126-31.783a29.782 29.782 0 0 1-6.904-11.902c-6.121 10.804-9.618 23.284-9.618 36.581 0 16.539 5.409 31.819 14.552 44.172-15.923-16.693-38.377-27.099-63.25-27.099-1.336 0-2.667.034-3.989.093a29.924 29.924 0 0 1 6.188 8.157c24.742.038 47.078 10.377 62.964 26.949-15.171-12.672-34.698-20.303-55.995-20.303-11.902 0-23.25 2.382-33.594 6.696 10.629 28.085 37.78 48.075 69.574 48.075 2.059 0 4.1-.093 6.116-.258a74.7 74.7 0 0 1-13.22 1.174c-20.061 0-38.269-7.956-51.65-20.882zM330 334.01h-48.684c15.067 5.988 31.492 9.281 48.684 9.281a10.003 10.003 0 0 0 1.146-4.542A10.016 10.016 0 0 0 330 334.01zm0-22.458h-85.83a132.307 132.307 0 0 0 7.169 5.729H330c.197-.201 1.167-1.236 1.167-2.865s-.97-2.663-1.167-2.864zm0 11.458h-70.304a131.655 131.655 0 0 0 13.242 7.333H330a6.927 6.927 0 0 0 1.063-3.844A6.902 6.902 0 0 0 330 323.01z'/%3e%3cpath fill='%23FBD116' d='m237.639 150.67-13.442 28.839 27.822-15.433-31.575-3.874 23.268 21.699zm23.024-38.4 9.303 30.429 10.362-30.092-26.068 18.254 31.819.552z'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 660 0)'/%3e%3c/svg%3e\"},8787:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3e%3cpath fill='%230071bc' d='M0 0h1000v500H0z'/%3e%3cg fill='none' stroke='%23000' stroke-width='1.935'%3e%3cpath fill='%23fff' d='M557.817 395.544s17.632-18.65 34.586-15.09c5.086-19.665 24.244-21.191 24.244-21.191s-1.865-21.7 22.717-26.448c.679-14.75 15.598-26.956 15.598-26.956s-3.052-22.888 12.546-28.143c-9.494-18.14 3.22-31.365 3.051-31.704-.17-.339-16.106-28.652-1.865-36.79-15.088-12.715-10.172-27.125-10.172-27.125s-16.445-4.239-10.511-23.905c-13.563-2.374-16.276-24.244-16.276-24.244s-20.853 4.238-23.396-13.902c-13.732 2.204-15.258-11.359-15.428-11.359-.17 0-27.295 7.29-32.72-13.224-10.511 5.426-15.09-4.238-15.09-4.238s-15.088 7.46-24.073-6.951c-17.971 11.19-27.974-.509-27.974-.509s-23.566 15.597-31.364 3.56c-13.902 14.072-26.279 7.969-26.279 7.969s-10.51 18.649-27.465 13.902c-3.899 17.292-23.396 17.632-23.396 17.632s2.035 15.258-21.361 19.327c-3.052 17.97-15.259 21.022-15.259 21.022s1.187 17.463-9.833 23.057c3.9 9.834-6.273 21.87-6.273 21.87s10.85 13.563-3.899 28.822c14.241 3.73 3.9 28.313 3.9 28.313s19.666 8.816 7.29 25.091c14.071 4.578 9.663 15.767 9.833 22.38 8.985 4.068 16.953 2.033 13.054 20.174 27.634 3.052 14.58 18.31 14.58 18.31s12.885.509 7.799 10.68c23.565-.508 26.956 17.633 26.956 17.633s21.87-5.765 24.753 2.712c2.882 8.477-9.494 65.611-9.494 65.611s-18.48 0-32.212-14.75c-32.213-.847-25.092-22.04-25.6-22.04-.51 0-10.681 3.9-15.937-13.732-21.531 4.408-20.853-13.732-21.023-13.902-.17-.17-9.663-4.408-6.103-13.393-22.21 2.034-20.514-19.667-20.514-19.667-4.86-1.978-6.668-6.499-5.934-11.02-2.882-1.017-22.548-1.356-12.376-27.295-18.819-11.36-7.12-24.413-7.12-24.413s-25.94-13.394-5.934-28.822c-14.92-22.04 1.186-33.06 1.186-33.06s-20.683-21.022.34-35.941c-3.391-31.873 15.597-39.502 15.597-39.502s-10.003-25.94 17.123-36.79c1.696-26.278 20.684-26.956 20.684-26.956s.508-20.853 30.347-18.819c5.764-18.649 26.109-14.92 26.109-14.92s6.272-22.548 33.907-11.697c14.071-27.465 34.925-13.394 34.925-13.394s13.223-8.646 19.835-5.934c8.396-14.428 26.27-.559 37.827 2.233 4.188-1.629 19.138-12.913 30.666 1.328 15.259-10.003 28.313 7.968 28.313 7.968s21.023-10.68 30.856 13.733c44.588-4.07 38.146 25.09 38.146 25.09s35.094-7.967 27.465 26.957c31.873 2.204 28.651 23.227 28.651 23.227s20.175 15.258 11.36 28.99c17.97.848 11.358 18.141 11.358 18.141s13.733 5.256 2.374 26.617c26.278 21.023 5.086 41.876 4.916 41.707-.17-.17 14.072 16.953 1.187 36.62 3.9 31.195-11.867 39.163-11.867 39.163s4.068 20.175-13.563 25.939c-.34 23.735-22.718 26.617-22.718 26.617s5.933 10.31-16.276 21.16c-.876 15.882-24.074 17.155-24.074 17.155s-2.204 29.16-31.704 21.362c-7.16 23.397-41.706 16.445-42.384 16.106-.678-.339-6.612-50.183-6.612-50.352z'/%3e%3cpath d='M599.01 420.07s-2.616 5.032 7.85 9.46m13.08-21.34s11.673-2.818 19.522 0m15.298-29.38c0 .201-1.61 5.233 7.648 12.478M661.4 365.73s6.843 5.032 18.315 4.83m-87.345 9.86s.402 13.283-6.44 19.522m29.38-40.052s11.27 2.818 20.529-1.811m51.721-17.709s2.415 3.421 14.893 2.818M638.86 332.52c.402.201 14.692 4.83 23.749.604m4.821-55.354s.604-.805 5.032 14.692M678.5 234.1s-.604 8.252-7.245 11.874m49.715-45.684s-9.66 7.849-7.849 11.069M672.87 194.65s5.032 8.453-3.22 14.289m-21.13-50.509s8.654-.403 12.478 7.044m5.632-61.784c0 .201 1.811 1.811-1.61 5.233m-60.18-4.433s4.629 7.245 3.824 16.101m22.946-40.654c2.013-.201 8.855-3.22 8.855-3.22m-38.645-25.56c-.201 0-2.616 9.057 1.811 12.277M590.75 92.415c0 9.66 7.648 7.245 2.415 16.503M572.04 84.365c-.201 0-12.075 9.258-12.075 10.868m-18.925-15.9s5.032 5.031 3.824 11.874M499.58 73.295c-.201.403-4.227 9.057-7.044 10.667M462.96 73.497c.201 0 4.025 8.05-1.006 13.887M397.75 106.91c.201.402 10.264 2.013 10.264 2.013M372.59 130.25c.201-.201 12.277-3.824 12.277-3.824M353.07 145.35c.403 0 8.453 1.409 10.465.403m-16.105 7.037s2.616 1.409.403 14.893M308.19 117.37l4.83 7.245M291.68 154.6c0-.201 4.83 7.245 11.271 8.654m26.769 29.186c.201 0 7.85-1.61 9.057-2.415M326.3 219.81c.201 0-.201-5.032 6.038-8.453M318.05 232.29c0 .201 5.837 7.447 9.862 8.453m-13.282 5.437c.604-.201 6.843-5.636 14.088-5.233M312.61 264.89s.201 6.24 18.717 4.63m-16.897 17.31c0-.201 5.434-12.478 16.503-17.107m-1.613 32.807s1.61-5.233 10.868-8.855m-.608 29.585s6.642-5.434 9.057-6.239m-.797 22.339s4.025 4.226 14.088-3.019m-62.598 6.439c1.208-.201 15.899-3.623 20.931 4.025m-15.091 8.055s15.497-2.013 17.51-.402m37.83 3.622s-2.013 4.227 17.107-2.818m6.643 10.468c-3.421 5.836.805 10.465-3.623 13.082M326.1 373.78c.604-.402 7.044-2.616 6.038-11.874m-.198 25.754c.805-.201 11.472-4.83 13.686-2.415m7.244 15.905s1.409-9.46 4.428-10.465m11.672 24.755s8.855-.201 12.679-3.019m4.421-28.981c.201.201 8.252 4.428 25.359.201M392.51 421.88s2.415 12.277 2.214 15.094M632.21 133.87h6.642M526.35 75.308s-2.616 7.648-6.038 9.66M454.5 31.836c.201.201.805 6.239-3.019 11.472m-33.201 2.214c0 .201 1.61 6.843-9.057 9.057'/%3e%3c/g%3e%3cg fill='%23f7df73' stroke='%23000' stroke-linejoin='round' fill-rule='evenodd'%3e%3cpath d='M561.72 423.68s100.53-28.397 130.89-151.78c-17.626 126.65-127.63 166.79-127.63 166.79l-3.264-15.015z' stroke-width='2.419'/%3e%3cpath d='M429.95 421.01s-99.612-28.908-129.69-154.51c17.464 128.92 126.46 169.79 126.46 169.79l3.234-15.285z' stroke-width='2.429'/%3e%3c/g%3e%3cg fill='%238c1800'%3e%3cpath d='M572.03 431.37c3.107 0 10.794-8.505 15.21-9.486 4.416-.981 4.907-5.397-.164-5.56-5.07-.164-9.485 5.724-9.485 5.724s-4.416 3.761-8.996 4.252c-4.58.49-1.635 6.215 3.435 5.07zm21.42-15.7s-3.108-1.145 4.907-4.252c8.013-3.108 7.523-6.706 10.14-8.178 2.616-1.472 8.177-5.397 9.322-3.107 1.145 2.29-5.888 6.869-7.523 7.36-1.636.49-9.65 7.85-11.94 8.504-2.29.654-3.925.327-4.906-.327zm-173.71 13.17c-3.079 0-10.695-8.658-15.071-9.656-4.375-1-4.862-5.495.162-5.661 5.023-.167 9.399 5.827 9.399 5.827s4.375 3.83 8.913 4.329c4.537.5 1.62 6.326-3.403 5.16zm-21.23-15.98s3.08-1.165-4.862-4.329c-7.94-3.163-7.454-6.826-10.047-8.324-2.592-1.499-8.102-5.494-9.236-3.164s5.834 6.993 7.454 7.493 9.561 7.991 11.83 8.657c2.269.666 3.89.333 4.861-.333z'/%3e%3cpath stroke='%238c1800' stroke-width='2.419' d='M629.92 388.19s-10.467 6.051-8.995 7.523c1.472 1.472 10.794-5.724 10.958-5.887.163-.164 3.925-4.743-1.963-1.636z'/%3e%3cpath stroke='%238c1800' stroke-width='2.429' d='M362.37 384.89s10.371 6.16 8.913 7.658c-1.459 1.499-10.695-5.827-10.857-5.993-.162-.167-3.89-4.828 1.944-1.665z'/%3e%3c/g%3e%3cg fill='none' stroke='%238c1800' stroke-linecap='round'%3e%3cpath stroke-width='3.144' d='M645.46 372.82c-6.869 7.687-6.869 7.523-6.869 7.523'/%3e%3cpath stroke-width='2.902' d='m655.76 360.23-6.542 8.014'/%3e%3cpath stroke-width='2.66' d='m666.07 343.87-7.36 11.776'/%3e%3cpath stroke-width='2.419' d='m674.74 327.19-6.051 12.103m9.971-20.933-1.963 4.252'/%3e%3cpath stroke-width='1.451' d='m683.08 306.75-1.636 5.07'/%3e%3cpath stroke-width='3.158' d='M346.98 369.24c6.806 7.825 6.806 7.659 6.806 7.659'/%3e%3cpath stroke-width='2.915' d='m336.77 356.42 6.482 8.158'/%3e%3cpath stroke-width='2.672' d='m326.56 339.77 7.293 11.987'/%3e%3cpath stroke-width='2.429' d='m317.97 322.79 5.996 12.32m-9.886-21.31 1.945 4.329'/%3e%3cpath stroke-width='1.457' d='m309.71 301.98 1.62 5.161'/%3e%3c/g%3e%3cpath d='M343.56 115.74c.086 0 7.477 6.41 6.096 16.07-1.38 9.66-6.959 23.09-5.837 33.095.685 4.011.426 11.198.426 11.198s-6.7-9.52-6.786-19.698 7.255-19.842 7.255-27.346c0-7.504-1.327-13.492-1.154-13.319zm-3.66 2.88s-9.698 9.258-10.947 18.255c-.922 4.638-1.28 26.247-1.39 35.839-.217 2.943-1.437 14.558-1.696 18.785-.258 4.226 7.134-7.215 7.557-16.53-.231-9.643-.232-29.953.749-33.005.872-3.924.682-8.259 2.03-12.194 1.785-5.46 3.783-11.064 3.697-11.15z' fill='%23217900' stroke='%23000' stroke-width='1.935' stroke-linejoin='round'/%3e%3cg fill='none' stroke='%236b18b5' stroke-linejoin='round'%3e%3cpath stroke-width='1.935' d='M276.41 180.31s6.574 9.102 7.754 14.328c1.18 5.225 3.371 15.508 6.237 19.722 2.865 4.214 19.216 27.644 20.059 37.421.168 6.405-6.743 17.362-17.025 17.53-6.406-.168-22.924-4.382-23.6-18.542-.674-14.159 5.058-14.497 5.732-23.093.674-8.597.843-47.197.843-47.366z'/%3e%3cpath d='M389.35 56.361s-6.806.485-12.046 3.326c-4.06 2.503-10.937 6.105-15.743 12.769-12.223 9.529-30.612 13.975-36.412 21.891-3.472 5.386-3.258 18.338 5.44 23.823 5.56 3.184 21.865 8.165 29.797-3.583 7.932-11.748 3.21-15.014 7.1-22.71 6.418-17.641 21.776-35.372 21.864-35.517zm165.09-17.195s-5.083-4.552-10.769-6.34c-4.623-1.175-12.322-.664-20.288-1.446-15.348-2.153-31.171-13.253-40.892-11.912-6.284 1.252-15.441 10.416-13.331 20.481 1.58 6.21 8.525 18.768 22.483 16.294s13.837-5.519 22.072-8.078c20.085-11.262 40.56-8.961 40.724-8.999zM718.18 198.3c1.146-2.62-.965-7.542-2.464-13.311-1.455-4.542-3.627-11.592-8.941-17.858-6.315-14.154-5.233-33.564-11.524-41.094-4.395-4.663-17.02-7.567-24.433-.44-4.427 4.633-13.177 19.264-3.678 29.785 9.5 10.52 13.64 6.558 20.176 12.182C702.9 178.03 710.531 196.38 718.18 198.3zm-5.59 123.64c2.128-2.946 5.938-8.625 5.485-13.354-.359-3.746 1.717-15.101 1.944-20.055 1.408-15.434 11.069-27.962 8.442-41.372-1.554-6.216-10.658-15.083-20.61-12.489-6.126 1.879-19.765 9.384-16.62 23.206 3.146 13.822 7.612 13.593 10.566 21.694 8.48 16.748 3.054 36.642 10.793 42.37z'/%3e%3c/g%3e%3cg fill='%236b18b5'%3e%3cpath d='M491.8 26.96c0-2.178-2.449-3.943-5.471-3.943s-5.472 1.765-5.471 3.943c-.001 2.178 2.449 3.943 5.47 3.943s5.473-1.765 5.472-3.943zm2.34 9.173c0-2.088-2.522-3.782-5.632-3.782s-5.632 1.694-5.632 3.782 2.521 3.782 5.632 3.782 5.632-1.693 5.632-3.782zm7-10.862s-6.437 4.828-3.781 6.759c2.655 1.93 9.976-4.184 9.976-4.184l-6.195-2.575zM690.31 135.8c.002-1.372-.641-2.641-1.687-3.328a3.03 3.03 0 0 0-3.38 0c-1.045.687-1.689 1.956-1.687 3.328-.002 1.372.642 2.641 1.687 3.328 1.046.687 2.334.687 3.38 0s1.689-1.956 1.687-3.328zm-2.45-9.21c0-2.289-1.58-4.144-3.53-4.144-1.95 0-3.53 1.855-3.53 4.144s1.58 4.144 3.53 4.144 3.53-1.855 3.53-4.144zm1.69 18.73c0-1.187-.618-2.149-1.381-2.149s-1.382.962-1.382 2.149.619 2.149 1.382 2.149c.763 0 1.381-.962 1.381-2.149zm5.68-16.73c0-1.356-.618-2.456-1.381-2.456s-1.382 1.1-1.382 2.456.619 2.456 1.382 2.456c.763 0 1.381-1.1 1.381-2.456zm-15.51 1.69c0-1.102-.618-1.995-1.381-1.995s-1.382.893-1.382 1.995.619 1.995 1.382 1.995c.763 0 1.381-.893 1.381-1.995zm2.46 13.2c0-1.78-1.305-3.225-2.916-3.225s-2.917 1.444-2.917 3.225c0 1.78 1.306 3.225 2.917 3.225 1.61 0 2.917-1.444 2.916-3.225zm-7.68-5.84c0-1.526-1.1-2.763-2.456-2.763-1.356 0-2.456 1.237-2.456 2.763 0 1.526 1.1 2.763 2.456 2.763s2.456-1.237 2.456-2.763zm-1.22-7.82c.001-.823-.408-1.585-1.074-1.996a2.026 2.026 0 0 0-2.15 0c-.665.411-1.075 1.173-1.074 1.996 0 .823.409 1.585 1.074 1.996a2.026 2.026 0 0 0 2.15 0c.666-.411 1.075-1.173 1.074-1.996zm34.99 39.8c-3.17-4.184-8.246-5.947-11.337-3.938-3.09 2.01-3.026 7.03.144 11.215 3.17 4.184 8.247 5.947 11.337 3.938 3.091-2.01 3.026-7.03-.144-11.215zm9.01 77.19c.614-5.135-1.89-9.656-5.593-10.099-3.704-.443-7.204 3.36-7.819 8.494-.614 5.135 1.89 9.656 5.594 10.1 3.703.443 7.204-3.36 7.818-8.495zm1.9 44.94c1.055-5.062-1.049-9.783-4.7-10.544-3.652-.761-7.468 2.725-8.523 7.787-1.056 5.063 1.049 9.784 4.7 10.545 3.652.76 7.467-2.726 8.523-7.788zm8.66-42.06c0-2.034-1.374-3.684-3.07-3.684-1.695 0-3.07 1.65-3.07 3.684s1.375 3.684 3.07 3.684c1.696 0 3.07-1.65 3.07-3.684zm-7.52 8.44-6.293 7.137s-5.91.154-5.603 2.073c.307 1.918 8.136 7.674 8.059 9.977-.077 2.302 5.219-.538 5.219-.538s4.22-12.817 4.22-12.893c0-.076-.23-8.902-2.532-8.749-2.303.154-2.926 2.83-3.07 2.994zm-413.94-2.82a2.995 2.995 0 1 0-5.99 0 2.995 2.995 0 0 0 5.99 0zm2.83-9.15c0-1.746-1.341-3.162-2.995-3.162-1.654 0-2.995 1.416-2.995 3.162s1.34 3.162 2.995 3.162c1.654 0 2.995-1.416 2.995-3.162zm-24.6-43.53c-1.123-2.518-3.463-3.921-5.225-3.135-1.762.786-2.28 3.465-1.157 5.982s3.462 3.922 5.225 3.135c1.762-.786 2.28-3.464 1.157-5.982zm7.43 27.12c-1.543-3.263-4.757-5.082-7.178-4.063s-3.132 4.49-1.59 7.754 4.757 5.082 7.178 4.063 3.133-4.49 1.59-7.754zm7.95 19.88c.5-4.076-1.189-7.82-3.772-8.363-2.584-.542-5.083 2.322-5.583 6.397-.5 4.076 1.189 7.82 3.772 8.363 2.584.543 5.083-2.321 5.583-6.397zm-12.76 2.91c1.598-3.783 1-7.846-1.336-9.076s-5.524.84-7.122 4.622c-1.598 3.783-1 7.846 1.336 9.076s5.524-.84 7.122-4.622z'/%3e%3cpath d='M281.42 243.99c0-1.93-1.49-3.494-3.328-3.494-1.838 0-3.328 1.564-3.328 3.494s1.49 3.494 3.328 3.494c1.838 0 3.328-1.564 3.328-3.494zm-2.66-8.65c0-1.746-1.341-3.162-2.995-3.162s-2.995 1.416-2.995 3.162 1.34 3.162 2.995 3.162c1.654 0 2.995-1.416 2.995-3.162zm2.82-16.64c0-2.94-1.304-5.325-2.912-5.325-1.608 0-2.912 2.384-2.912 5.325s1.304 5.325 2.912 5.325 2.912-2.384 2.912-5.325zm8.96-1.28c.388-2.915-.59-5.45-2.184-5.662-1.594-.213-3.201 1.979-3.589 4.894-.388 2.915.59 5.45 2.184 5.662 1.594.212 3.201-1.979 3.589-4.894zm63.85-127.378c1.187-4.128-.037-8.277-2.734-9.267-2.697-.99-5.845 1.554-7.032 5.682-1.187 4.129.037 8.278 2.734 9.268 2.697.99 5.845-1.555 7.032-5.683zm-12.12 18.378c3.557-3.027 5.076-7.212 3.394-9.349-1.683-2.136-5.93-1.414-9.486 1.613s-5.076 7.213-3.394 9.349 5.93 1.414 9.486-1.613zm-7.08-10.203c3.517-2.599 5.02-6.192 3.356-8.025-1.664-1.834-5.863-1.214-9.38 1.384-3.518 2.599-5.02 6.192-3.356 8.026 1.663 1.833 5.863 1.214 9.38-1.385zm27.27-17.936c2.372-1.813 3.385-4.32 2.263-5.6s-3.954-.847-6.326.966c-2.372 1.814-3.385 4.32-2.263 5.6s3.954.847 6.326-.966z'/%3e%3cpath d='M348.25 97.659c1.622-2.506 1.73-5.208.243-6.035-1.487-.826-4.008.535-5.63 3.042s-1.73 5.208-.243 6.035c1.487.826 4.008-.536 5.63-3.042zm20.51-10.739c2.55-2.15 3.544-4.997 2.22-6.36s-4.467-.725-7.017 1.425c-2.55 2.15-3.545 4.997-2.22 6.36s4.466.725 7.017-1.425zm-37.07 25.05c2.384-.119 4.184-1.307 4.02-2.653-.164-1.346-2.23-2.34-4.614-2.222-2.385.12-4.185 1.307-4.02 2.653.164 1.346 2.23 2.341 4.614 2.222zm44.88-38.364c1.622-2.506 1.73-5.208.243-6.035-1.487-.826-4.008.535-5.63 3.042s-1.73 5.208-.243 6.035c1.487.826 4.008-.536 5.63-3.042z'/%3e%3c/g%3e%3cg fill='%23ffd200' stroke='%23ef8a10' stroke-width='1.935'%3e%3cpath d='M553.24 88.375s12.574-5.8 16.169-16.603c3.594-10.802-10.882-10.906-12.795-7.473-1.912 3.434 1.631 11.983.719 14.243-.913 2.26-6.029 7.716-4.093 9.833z'/%3e%3cpath stroke-width='2.419' d='M441.8 92.316s8.163-11.186 6.047-22.372c-2.117-11.186-14.814-4.233-14.814-.302s7.255 9.674 7.558 12.093c.302 2.418-1.512 9.674 1.21 10.58zm-22.07 6.651s8.163-11.186 6.046-22.372-14.814-4.233-14.814-.302 7.256 9.674 7.559 12.093c.302 2.418-1.512 9.674 1.209 10.58zm-24.49 7.563s8.163-11.186 6.047-22.372c-2.117-11.186-14.814-4.233-14.814-.302s7.255 9.674 7.558 12.093c.302 2.418-1.512 9.674 1.21 10.58zm-17.23 17.23s8.163-11.186 6.046-22.372-14.814-4.233-14.814-.302 7.256 9.674 7.559 12.093c.302 2.418-1.512 9.674 1.209 10.58zm-18.14 16.63s8.163-11.186 6.046-22.372-14.814-4.233-14.814-.302 7.256 9.674 7.559 12.093c.302 2.418-1.512 9.674 1.209 10.58z'/%3e%3cpath d='M401.57 43.519s-10.87 8.579-11.84 19.922c-.97 11.343 13.13 8.06 14.187 4.275 1.057-3.785-4.387-11.269-4.028-13.68.36-2.41 4.058-8.911 1.681-10.517zm36.28-11.186s-10.87 8.579-11.84 19.922c-.97 11.343 13.13 8.06 14.187 4.275 1.057-3.786-4.387-11.269-4.028-13.68.36-2.41 4.058-8.911 1.681-10.517zM302.66 130.27s2.296 13.656 11.776 19.96 13.38-7.638 10.569-10.385-11.991-1.571-13.932-3.045c-1.941-1.474-5.863-7.843-8.414-6.53zm-18.12 46.37s.112 13.847 8.479 21.568c8.366 7.72 14.418-5.43 12.076-8.586-2.343-3.157-11.592-3.445-13.277-5.206-1.684-1.762-4.552-8.67-7.278-7.776zm41.8 51.8s-4.942-12.936-15.479-17.248c-10.536-4.312-11.613 10.125-8.316 12.264 3.298 2.139 12.065-.823 14.26.24 2.193 1.063 7.293 6.533 9.535 4.744zm-8.68-22.39s8.38-11.025 6.481-22.25-14.729-4.52-14.805-.59c-.076 3.929 7.066 9.813 7.321 12.237.255 2.424-1.7 9.643 1.003 10.603zM578.94 99.561s12.574-5.8 16.169-16.603c3.594-10.802-10.882-10.906-12.795-7.473-1.912 3.434 1.631 11.983.719 14.243-.913 2.26-6.029 7.716-4.093 9.833zm38.03 18.969s7.396-11.707 4.537-22.726-15.064-3.233-14.801.69c.263 3.92 7.886 9.167 8.35 11.56.463 2.393-.862 9.754 1.914 10.477zm103.77 107.74s-4.96-12.929-15.502-17.226c-10.542-4.298-11.599 10.141-8.299 12.275 3.3 2.134 12.064-.839 14.26.22 2.194 1.06 7.302 6.524 9.541 4.731zM670 234.3s.288-13.845 8.751-21.459c8.464-7.614 14.348 5.612 11.966 8.739-2.382 3.125-11.635 3.296-13.342 5.037-1.706 1.74-4.661 8.611-7.375 7.683zm-8.17-146.816s-12.945-4.917-23.175.08c-10.23 4.996-.169 15.405 3.622 14.366 3.79-1.038 7.414-9.553 9.667-10.485 2.253-.93 9.73-1.097 9.886-3.962zm-29.62-24.791s-12.945-4.917-23.175.08c-10.23 4.996-.169 15.405 3.622 14.366 3.79-1.038 7.414-9.553 9.667-10.485 2.253-.93 9.73-1.097 9.886-3.962zm-44.19-23.64s-10.975 8.445-12.084 19.775c-1.109 11.331 13.03 8.221 14.133 4.449 1.103-3.773-4.248-11.322-3.86-13.73.39-2.406 4.168-8.86 1.81-10.494zm-28.75-6.922s-5.005 12.912-.077 23.175 15.404.273 14.39-3.525c-1.012-3.798-9.503-7.478-10.418-9.737-.916-2.26-1.032-9.737-3.895-9.912zm-81.61 49.756s8.952-10.565 7.65-21.875c-1.3-11.31-14.467-5.295-14.752-1.375-.285 3.92 6.536 10.174 6.662 12.61.126 2.434-2.209 9.539.44 10.64z'/%3e%3c/g%3e%3cg fill='%23de2010' stroke='%23000' stroke-width='2.383'%3e%3cpath d='M701.62 233.11c-.502-4.05-2.454-7.607-5.117-9.332-2.663-1.724-5.633-1.353-7.79.974s-3.172 6.256-2.663 10.304c.502 4.05 2.454 7.607 5.117 9.332 2.663 1.724 5.634 1.353 7.79-.974 2.157-2.327 3.172-6.256 2.663-10.304z'/%3e%3cpath d='M699.95 212.66c-.502-4.05-2.454-7.607-5.117-9.332-2.663-1.724-5.633-1.353-7.79.974s-3.172 6.256-2.663 10.304c.502 4.05 2.454 7.607 5.117 9.332 2.663 1.724 5.634 1.353 7.79-.974 2.157-2.327 3.172-6.256 2.663-10.304z'/%3e%3cpath d='M695.8 190.82c-.856-3.99-3.113-7.362-5.917-8.846s-5.73-.853-7.675 1.655c-1.944 2.507-2.61 6.51-1.746 10.498.856 3.99 3.112 7.362 5.917 8.846s5.73.853 7.674-1.655 2.61-6.51 1.747-10.498z'/%3e%3cpath d='M688.23 168c-1.845-3.64-4.887-6.325-7.977-7.045-3.09-.72-5.758.636-6.999 3.556-1.24 2.92-.864 6.96.987 10.597 1.845 3.64 4.887 6.325 7.977 7.045 3.09.72 5.759-.636 7-3.556 1.24-2.92.863-6.96-.988-10.597z'/%3e%3cpath d='M680.14 149.69c-1.845-3.64-4.887-6.325-7.977-7.045-3.09-.72-5.758.636-6.999 3.556-1.24 2.92-.864 6.96.987 10.597 1.845 3.64 4.887 6.325 7.977 7.045 3.09.72 5.759-.636 7-3.556 1.24-2.92.863-6.96-.988-10.597z'/%3e%3cpath d='M668.64 131.28c-2.147-3.47-5.405-5.889-8.545-6.344s-5.684 1.121-6.672 4.136c-.99 3.015-.272 7.009 1.88 10.475 2.147 3.47 5.405 5.889 8.545 6.344 3.14.456 5.684-1.121 6.673-4.136.989-3.015.272-7.009-1.881-10.475z'/%3e%3cpath d='M655.85 113.54c-2.472-3.246-5.949-5.339-9.118-5.489-3.17-.15-5.549 1.666-6.242 4.763-.692 3.096.408 7.002 2.885 10.244 2.472 3.246 5.949 5.338 9.118 5.488 3.17.15 5.55-1.666 6.242-4.762.692-3.096-.407-7.002-2.885-10.244z'/%3e%3cpath d='M640.59 96.996c-2.916-2.854-6.66-4.42-9.817-4.109-3.158.311-5.25 2.453-5.486 5.617-.236 3.164 1.418 6.869 4.34 9.717 2.916 2.854 6.66 4.42 9.817 4.11 3.157-.312 5.249-2.453 5.485-5.617.237-3.164-1.418-6.87-4.34-9.718z'/%3e%3cpath d='M623.41 81.776c-3.167-2.573-7.038-3.789-10.154-3.188-3.115.6-5.001 2.925-4.946 6.097s2.044 6.71 5.215 9.277c3.167 2.573 7.038 3.789 10.154 3.188 3.115-.6 5.001-2.925 4.946-6.097s-2.044-6.71-5.215-9.277z'/%3e%3cpath d='M605.21 69.628c-3.55-2.012-7.57-2.568-10.542-1.458-2.973 1.109-4.446 3.714-3.865 6.833s3.13 6.277 6.683 8.283c3.55 2.012 7.569 2.568 10.542 1.458 2.972-1.109 4.446-3.714 3.865-6.833s-3.13-6.277-6.683-8.283z'/%3e%3cpath d='M584.84 58.844c-3.718-1.68-7.772-1.868-10.631-.493-2.86 1.375-4.09 4.104-3.227 7.157s3.688 5.966 7.409 7.64c3.718 1.68 7.771 1.868 10.63.493 2.86-1.375 4.09-4.104 3.228-7.157-.863-3.053-3.688-5.966-7.409-7.64z'/%3e%3cpath d='M564.86 50.799c-3.822-1.427-7.88-1.343-10.64.22-2.76 1.564-3.805 4.37-2.74 7.358s4.08 5.706 7.905 7.126c3.822 1.428 7.879 1.343 10.64-.22 2.76-1.564 3.805-4.37 2.74-7.358s-4.08-5.705-7.905-7.126z'/%3e%3cpath d='M544.56 44.43c-3.92-1.131-7.959-.738-10.592 1.032-2.633 1.77-3.46 4.647-2.17 7.545 1.29 2.899 4.503 5.378 8.425 6.502 3.92 1.132 7.959.738 10.592-1.032 2.633-1.77 3.46-4.646 2.17-7.545-1.29-2.898-4.503-5.377-8.425-6.502z'/%3e%3cpath d='M522.21 40.62c-4.048-.514-7.978.497-10.307 2.651-2.33 2.154-2.704 5.124-.982 7.79 1.721 2.665 5.277 4.62 9.326 5.127 4.047.514 7.977-.497 10.307-2.652 2.329-2.154 2.703-5.124.982-7.789-1.722-2.665-5.277-4.62-9.326-5.127z'/%3e%3cpath d='M500.15 39.375c-4.077-.167-7.906 1.175-10.043 3.52-2.137 2.345-2.257 5.336-.315 7.844 1.942 2.51 5.652 4.154 9.729 4.314 4.077.168 7.906-1.175 10.043-3.52 2.137-2.344 2.257-5.335.315-7.844-1.943-2.509-5.652-4.154-9.729-4.314z'/%3e%3cpath d='M479.94 40.089c-4.077-.167-7.906 1.175-10.043 3.52-2.137 2.345-2.257 5.336-.315 7.844 1.942 2.51 5.652 4.154 9.729 4.314 4.077.168 7.906-1.175 10.043-3.52 2.137-2.344 2.257-5.335.315-7.844-1.943-2.509-5.652-4.154-9.729-4.314z'/%3e%3cpath d='M456.25 42.895c-3.978.906-7.323 3.204-8.772 6.026-1.449 2.823-.782 5.741 1.75 7.654s6.542 2.529 10.519 1.616c3.978-.905 7.323-3.203 8.772-6.026 1.449-2.822.781-5.74-1.75-7.653s-6.542-2.53-10.519-1.617z'/%3e%3cpath d='M434.7 48.296c-3.89 1.23-7.034 3.797-8.245 6.73s-.306 5.785 2.375 7.482 6.728 1.981 10.616.744c3.89-1.23 7.034-3.797 8.245-6.73s.306-5.785-2.375-7.482-6.728-1.981-10.616-.744z'/%3e%3cpath d='M415.04 56.715c-3.716 1.685-6.531 4.607-7.385 7.663-.853 3.056.386 5.781 3.25 7.147 2.863 1.366 6.916 1.166 10.629-.526 3.715-1.685 6.53-4.607 7.384-7.663s-.385-5.781-3.249-7.147c-2.864-1.366-6.916-1.166-10.629.526z'/%3e%3cpath d='M395.43 66.766c-3.559 1.996-6.114 5.148-6.704 8.265-.59 3.118.877 5.727 3.847 6.844s6.99.571 10.546-1.431c3.559-1.996 6.115-5.148 6.704-8.266.59-3.117-.877-5.726-3.847-6.843s-6.99-.571-10.546 1.431z'/%3e%3cpath d='M376.88 79.349c-3.32 2.371-5.519 5.782-5.766 8.945-.247 3.163 1.494 5.598 4.568 6.385 3.073.788 7.011-.192 10.328-2.569 3.32-2.37 5.519-5.781 5.766-8.945.247-3.163-1.494-5.597-4.568-6.385-3.074-.787-7.011.192-10.328 2.569z'/%3e%3cpath d='M359.71 92.358c-3.108 2.643-5.01 6.228-4.989 9.4s1.963 5.452 5.092 5.977c3.13.524 6.97-.785 10.073-3.434 3.108-2.643 5.01-6.228 4.989-9.4-.022-3.173-1.963-5.452-5.092-5.976-3.13-.525-6.97.784-10.073 3.433z'/%3e%3cpath d='M344.56 108.19c-2.91 2.86-4.55 6.571-4.302 9.734.25 3.163 2.349 5.297 5.508 5.595 3.158.3 6.895-1.282 9.8-4.146 2.911-2.86 4.551-6.572 4.302-9.735-.248-3.163-2.348-5.296-5.507-5.595-3.158-.299-6.895 1.282-9.801 4.147z'/%3e%3cpath d='M331.51 125.79c-2.661 3.093-3.984 6.93-3.472 10.06.513 3.131 2.784 5.081 5.956 5.115s6.765-1.855 9.42-4.953c2.661-3.093 3.985-6.93 3.472-10.06-.513-3.131-2.784-5.081-5.956-5.115s-6.764 1.855-9.42 4.953z'/%3e%3cpath d='M319.58 143.81c-2.316 3.36-3.223 7.314-2.38 10.373.845 3.059 3.31 4.755 6.469 4.45 3.158-.305 6.527-2.565 8.837-5.929 2.316-3.359 3.223-7.314 2.38-10.373-.844-3.058-3.31-4.755-6.468-4.45-3.158.305-6.528 2.566-8.838 5.929z'/%3e%3cpath d='M309.64 164.24c-1.704 3.707-1.918 7.76-.562 10.628 1.357 2.868 4.077 4.116 7.136 3.273 3.059-.843 5.99-3.649 7.688-7.359 1.705-3.707 1.918-7.76.562-10.628-1.357-2.868-4.077-4.116-7.136-3.273-3.059.843-5.99 3.649-7.688 7.359z'/%3e%3cpath d='M301.77 185.59c-1.361 3.846-1.207 7.901.404 10.635 1.61 2.733 4.434 3.73 7.403 2.613s5.635-4.177 6.99-8.026c1.36-3.846 1.207-7.901-.404-10.635-1.611-2.733-4.434-3.73-7.404-2.613s-5.634 4.177-6.989 8.026z'/%3e%3cpath stroke-width='2.133' d='M294.94 226.01c-.38 3.257.76 6.378 2.99 8.188s5.21 2.03 7.817.581c2.607-1.45 4.443-4.35 4.817-7.607.38-3.257-.76-6.379-2.99-8.188s-5.21-2.031-7.817-.581c-2.607 1.45-4.444 4.35-4.817 7.607z'/%3e%3cpath d='M296.76 207.14c-.91 3.977-.291 7.988 1.623 10.518 1.914 2.53 4.833 3.196 7.655 1.745 2.821-1.45 5.117-4.797 6.02-8.776.911-3.977.292-7.987-1.623-10.518-1.914-2.53-4.832-3.195-7.654-1.745-2.822 1.451-5.118 4.797-6.021 8.776z'/%3e%3c/g%3e%3cpath d='M685.33 197.47c2.485-2.66 4.798-3.413 7.724-2.443-1.032-7.019-3.253-9.4-5.959-8.555-2.706.845-3.93 4.453-1.765 10.998zm3.8 21.19c2.679-2.466 5.042-3.042 7.886-1.854-.5-7.077-2.535-9.619-5.297-8.98-2.762.64-4.255 4.145-2.589 10.834zm-8.99-40.52c1.728-3.205 3.774-4.52 6.85-4.324-2.78-6.527-5.533-8.267-7.936-6.762-2.402 1.505-2.67 5.306 1.086 11.086zm-9.43-19.28c1.728-3.205 3.774-4.52 6.85-4.324-2.78-6.527-5.533-8.266-7.936-6.762-2.402 1.505-2.67 5.306 1.086 11.086zm-22.61-35.32c1.19-3.44 2.998-5.067 6.066-5.369-3.793-5.995-6.79-7.27-8.92-5.398s-1.782 5.666 2.854 10.767zm-14.78-15.39c1.06-3.483 2.805-5.177 5.859-5.595-4.017-5.847-7.06-7.007-9.117-5.057-2.057 1.95-1.568 5.73 3.258 10.652zm-31.06-26.215c-.064-3.64 1.074-5.79 3.851-7.127-5.623-4.326-8.875-4.492-10.23-2.003-1.357 2.489.272 5.933 6.38 9.13zm16.16 12.122c.567-3.597 2.06-5.516 5.027-6.353-4.789-5.234-7.963-5.961-9.73-3.744-1.767 2.216-.758 5.89 4.703 10.097zm-34.61-22.301c-.44-3.614.471-5.87 3.095-7.486-6.04-3.723-9.291-3.553-10.384-.937-1.092 2.615.884 5.873 7.288 8.423zm-18.85-8.228c-.952-3.514-.374-5.876 1.992-7.852-6.51-2.82-9.704-2.187-10.411.558-.707 2.745 1.715 5.687 8.419 7.294zm-20.31-6.293c-1.246-3.421-.87-5.824 1.32-7.993-6.725-2.259-9.854-1.357-10.326 1.438-.472 2.795 2.19 5.521 9.006 6.555zm-19.95-3.862c-1.49-3.322-1.289-5.745.739-8.067-6.872-1.767-9.927-.641-10.195 2.18-.27 2.823 2.584 5.349 9.456 5.887zm-21.13-1.62c-1.827-3.15-1.878-5.58-.102-8.1-7.017-1.045-9.94.391-9.914 3.226.026 2.835 3.125 5.051 10.016 4.874zm-41.36 3.116c-2.532-2.616-3.167-4.963-2.052-7.837-7.062.678-9.552 2.777-8.843 5.521.708 2.745 4.25 4.15 10.895 2.316zm20.36-2.68c-2.155-2.935-2.467-5.346-.972-8.042-7.09-.285-9.84 1.458-9.51 4.273.33 2.815 3.65 4.686 10.482 3.769zm-40.34 6.996c-2.881-2.226-3.846-4.458-3.154-7.462-6.892 1.684-9.055 4.118-7.96 6.732 1.094 2.615 4.8 3.497 11.114.73zm-38.25 17.587c-3.252-1.637-4.624-3.645-4.516-6.725-6.446 2.963-8.106 5.764-6.535 8.123 1.572 2.36 5.38 2.52 11.051-1.398zm18.44-9.422c-3.03-2.02-4.147-4.18-3.666-7.224-6.758 2.159-8.746 4.737-7.473 7.27 1.274 2.532 5.033 3.154 11.14-.046zm-52.75 33.31c-3.522-.924-5.282-2.601-5.818-5.637-5.687 4.242-6.727 7.328-4.699 9.307 2.03 1.98 5.786 1.344 10.517-3.67zm16.37-13.397c-3.439-1.196-5.062-3.007-5.36-6.075-6 3.784-7.28 6.779-5.412 8.91 1.868 2.133 5.663 1.793 10.772-2.835zm-30.91 27.727c-3.591-.6-5.497-2.11-6.307-5.084-5.277 4.741-6.033 7.908-3.832 9.695 2.2 1.787 5.884.812 10.139-4.611zm-13.04 16.91c-3.63-.271-5.666-1.603-6.742-4.49-4.826 5.2-5.29 8.423-2.937 10.002 2.353 1.58 5.933.275 9.679-5.512zm-10.9 17.3c-3.63.288-5.844-.716-7.35-3.405-3.972 5.878-3.938 9.134-1.37 10.335 2.567 1.2 5.905-.638 8.72-6.93zm-9.58 18.47c-3.562.757-5.888.048-7.73-2.423-3.176 6.344-2.72 9.568-.018 10.425 2.702.858 5.773-1.398 7.748-8.002zm-7.66 18.95c-3.397 1.311-5.806.98-8.016-1.167-2.13 6.767-1.17 9.878 1.634 10.297 2.804.418 5.478-2.296 6.382-9.13zm-5.13 21.13c-3.301 1.536-5.727 1.367-8.076-.628-1.673 6.894-.506 9.934 2.32 10.164 2.825.23 5.312-2.657 5.756-9.536zm-2.09 17.58c-3.108 1.646-5.53 1.84-8.07.596-.924 5.619.556 7.84 3.38 7.64 2.824-.201 4.981-2.795 4.69-8.236zm355.57-83.65c1.243-3.422 3.075-5.021 6.147-5.276-3.702-6.052-6.68-7.372-8.837-5.533-2.157 1.838-1.868 5.638 2.69 10.809zm29.15 98.44c2.679-2.466 5.042-3.042 7.886-1.854-.5-7.077-2.535-9.619-5.297-8.98-2.762.64-4.254 4.145-2.589 10.834z' fill='%23ffe300'/%3e%3cpath d='M646.9 149.66s7.396-11.707 4.537-22.726-15.064-3.233-14.801.69c.263 3.92 7.886 9.167 8.35 11.56.463 2.393-.862 9.754 1.914 10.477z' fill='%23ffd200' stroke='%23ef8a10' stroke-width='1.008'/%3e%3cg fill='%23217900' stroke='%23000' stroke-width='2.419' stroke-linejoin='round'%3e%3cpath stroke-width='1.935' d='M663.67 124.92c-.086 0-8.022 7.935-6.641 17.596 1.38 9.66 7.504 21.564 6.382 31.569-1.121 10.006-2.932 16.647-2.932 16.647s9.315-10.609 9.401-20.787-6.383-23.548-6.383-31.052c0-7.504.346-14.146.173-13.973zm14.75 32.43s-6.21 4.572-5.606 15.095c.603 10.523 11.472 29.844 11.472 29.844s7.935 16.302 7.676 20.529c-.259 4.226 1.466-4.054.69-13.369-.776-9.316-12.766-29.844-12.766-29.844s-2.587-4.226-2.329-11.213c.26-6.987.95-10.954.863-11.041z'/%3e%3cpath d='M505.65 52.293s26.653 1.035 26.825 18.286c-.086 2.674 0 5.865-.949 13.542 5.262-2.846 8.798-10.782 8.108-15.871.086-17.51-23.806-29.499-33.984-15.957z'/%3e%3cpath d='M488.75 51.517s21.477-4.485 21.65 12.766c.173 17.251-6.814 20.011-6.814 20.011s16.475-3.537 16.56-21.046c.087-17.51-21.217-25.272-31.396-11.731zM697.38 249.19c.494 7.74 8.069 15.149 5.105 28.652-3.788 15.314-17.125 51.705-14.82 58.127-3.952-5.434-3.294-10.539-3.623-18.113-.33-7.574 11.032-35.732 12.021-45.283 0-8.562.823-20.254 1.317-23.382z'/%3e%3cpath d='M697.38 249.36s12.35 15.643 11.691 27.993c-.659 12.35-7.575 26.84-5.27 33.262-3.951-5.434-4.94-8.892-5.269-16.467-.329-7.574 6.093-15.973 4.776-24.206-1.318-8.233-6.093-20.583-5.928-20.583zm-404.56 3.45c-.494 7.74-6.257 14.655-3.294 28.158 3.788 15.314 17.29 34.744 15.15 56.974 3.951-5.434 5.104-11.527 5.433-19.102.33-7.574-14.984-33.098-15.973-42.648 0-8.562-.823-20.254-1.317-23.382z'/%3e%3cpath d='M292.82 252.98s-12.021 15.149-11.362 27.499c.165 8.233 15.314 42.648 13.009 49.07 3.952-5.434 5.105-4.776 4.94-13.009-4.446-21.077-12.35-34.58-11.032-42.813 1.317-8.233 4.61-20.748 4.446-20.748z'/%3e%3c/g%3e%3cg fill='none' stroke='%23000' stroke-width='1.935'%3e%3cpath fill='%238c8a8c' d='M526.38 104.56s21.457 1.35 22.508 13.655c1.05 12.304-5.102 19.807-5.102 19.807s2.701 26.559-18.306 34.361c-22.508 2.701-57.769.6-57.769.6s-10.354 2.551-14.555-18.906c-4.201-21.457-5.402-36.612-5.402-36.612s2.101-12.004 17.256-12.754c15.155-.75 61.22.15 61.371-.15z'/%3e%3cpath stroke-linecap='round' d='M543.63 137.87s-11.554 14.405-10.353 20.257'/%3e%3cpath fill='%238c8a8c' d='M528.18 171.63c2.851 2.4 5.552 5.102 6.152 13.955l1.2 17.706 15.005 135.05 13.204 97.683.9 15.155s-3.15 11.104-12.003 12.004c-6.452 13.504-41.414 17.406-44.865 17.256-3.151-.15-14.255-4.802-21.007-4.201-6.753.6-18.456 5.101-23.708 4.351-5.252-.75-17.106-4.802-19.206-13.354-14.705-4.652-17.106-15.905-17.106-15.905l15.905-112.99 15.455-142.85s1.8-19.056 9.453-21.907c7.952-.75 49.066.75 60.62-1.95z'/%3e%3cpath d='m447.15 367.15-3.151 99.934M544.23 380.35l8.853 82.378'/%3e%3cpath fill='%23fff' stroke-width='2.016' stroke-linejoin='round' d='m498.19 114.45 29.923 92.093 96.82.004-78.327 56.92 29.916 92.095-78.331-56.915-78.331 56.914 29.916-92.095-78.327-56.92 96.82-.004z'/%3e%3c/g%3e%3c/svg%3e\"},8125:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3e%3cpath fill='%23ED2939' d='M0 0h3v2H0z'/%3e%3cpath fill='%23fff' d='M0 0h2v2H0z'/%3e%3cpath fill='%23002395' d='M0 0h1v2H0z'/%3e%3c/svg%3e\"},1727:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-72 -28 144 96'%3e%3cpath fill='%23cd2a3e' d='M-72-28H72v96H-72z'/%3e%3cpath fill='%23006233' d='M-72-13.6H72v67.2H-72Z'/%3e%3cpath d='M30 2.92c-.08 16.496-13.488 29.84-30 29.84S-29.92 19.416-30 2.92a30.973 30.973 0 0 0-1.008 7.84c0 17.12 13.872 31.008 31.008 31.008S31.008 27.896 31.008 10.76A30.88 30.88 0 0 0 30 2.92z' class='st1' fill='%23ffc400'/%3e%3cpath d='M0-9.24-2.694-.949h-8.719l7.053 5.126-2.693 8.291L0 7.344l7.053 5.124L4.36 4.177l7.053-5.125H2.694z' fill='%23ffc400'/%3e%3c/svg%3e\"},8643:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3e%3cclipPath id='a'%3e%3cpath d='M0 0v150h700v150H600zm600 0H300v350H0v-50z'/%3e%3c/clipPath%3e%3cpath fill='%23012169' d='M0 0h1200v600H0z'/%3e%3cpath d='m0 0 600 300m0-300L0 300' stroke='%23fff' stroke-width='60'/%3e%3cpath d='m0 0 600 300m0-300L0 300' stroke='%23c8102e' stroke-width='40' clip-path='url(%23a)'/%3e%3cpath d='M300 0v350M0 150h700' stroke='%23fff' stroke-width='100'/%3e%3cpath d='M300 0v350M0 150h700' stroke='%23c8102e' stroke-width='60'/%3e%3cpath d='M0 300h600V0h600v600H0z' fill='%23012169'/%3e%3cpath fill='%23fff' d='M769.466 147.526h256.879l-.306 182.787c2.137 73.48-43.662 119.076-127.931 139.634-59.834-14.86-128.837-45.596-128.939-137.549l.305-184.872z'/%3e%3cpath fill='%2300a2bd' stroke='%23000' stroke-width='1.813' d='M775.152 153.036h245.493l-.291 175.155c2.041 70.41-41.728 114.102-122.261 133.802-57.188-14.237-123.132-43.692-123.23-131.805l.292-177.152z'/%3e%3cpath fill='%23a53d08' d='M1018.74 348.938c-8.93 67.21-60.692 96.576-120.655 112.162-53.073-14.238-110.174-36.968-121.243-111.824l241.901-.338z'/%3e%3cpath d='m888.365 185.664-.342-22.075 17.455.17.171 21.905h47.744l.17 17.113-47.914.17-.383 201.816-17.026.107-.217-202.093-47.583.171.01-17.455z'/%3e%3cg fill='%23ff9a08' stroke='%23000' stroke-width='.968'%3e%3cpath d='m849.714 357.267 43.703 45.338c15.112-16.61 4.63-78.696-15.247-90.13-2.382 7.351-6.434 16.166-10.74 19.008-9.475 6.457-32.692 14.006-24.932 18.84 1.77-2.45 6.399-4.765 8.577.681 2.587 8.577-9.666 9.122-9.666 9.122s-7.76-.954-9.122-8.85 11.559-15.105 12.662-15.656c1.089-.41 17.971-4.901 20.83-19.879 3.54-14.704 7.216-12.525 7.897-12.798 22.055 2.178 36.487 41.662 37.305 69.436.816 27.774-11.3 46.154-13.48 47.38-2.177 1.225-52.552-59.769-52.552-59.769l4.765-2.723z' fill-rule='evenodd'/%3e%3cpath d='m881.573 315.061.271 81.825m-5.172-80.328.271 74.338m-5.581-63.582.271 59.088m-4.628-54.868.273 48.879m-4.902-46.7v41.253m-5.038-37.985v32.675m-4.356-30.088v25.05'/%3e%3cg fill='none' stroke='%23ffdf00' stroke-width='1.813' stroke-linecap='round'%3e%3cpath stroke-width='.968' d='m849.033 362.441 45.065 51.6'/%3e%3cpath d='M896.276 329.901s20.424 44.658 1.498 81.417m-54.051-58.272s1.498-3.948 3.404-2.314m-6.943-9.122s-8.169 7.215-3.676 11.845'/%3e%3c/g%3e%3c/g%3e%3cg stroke='%23000' stroke-width='.399'%3e%3cpath fill='%23008021' d='M905.779 228.044c3.025-2.595 4.595-4.181 6.468-3.892 1.874.288 4.425.143 6.298-.433 1.88-.578 11.177-1.73 15-.433 1.298.144 3.026.866 5.69 3.1 2.671 2.235 6.564 6.128 5.266 16.942-1.297 10.813-.873 15.439-1.443 21.483-1.006 10.67-3.373 19.456-7.64 18.744 5.767 10.093 6.343 18.744 10.09 25.665 3.753 6.921 6.057 21.051 4.614 36.335-1.437 15.284-5.475 49.6 6.633 72.67-2.02 1.441-6.918 0-11.247-4.615-4.323-4.614-6.222-4.462-9.804-1.73-10.956 8.363-21.216 18.442-36.33 8.363-3.462-2.307-4.557-5.074-2.02-12.112 6.343-17.59 9.425-41.725 8.425-53.06V228.044z'/%3e%3cpath d='M916.171 217.23c.791 2.451 1.222 5.623-.076 8.506-1.297 2.884-1.582 6.345.576 10.526 3.462-4.902 8.367-3.893 11.247-6.776 2.886-2.884 3.462-5.624 5.627-6.2-2.165-1.875-5.481-3.893-4.76-9.373.722-5.479 8.361-9.948 1.443-18.311-4.468-5.399-10.962-3.893-13.772-1.802-1.323.982-2.45 2.378-2.88 3.316-.437.937.108 3.07-.943 4.326a14.172 14.172 0 0 1-2.595 2.45c-.646.47-1.05 1.152-.36 1.947.278.318.784.386 1.341.579-.323.648-.69 1.295-1.05 1.764-.342.44-.197.86.215 1.218-.545 1.73.506 1.918-.216 3.216-.626 1.122-1.474 2.45.867 3.749.646.36 3.716 1.072 5.336.865zm-28.045 28.693c-4.038 1.01-10.525-.72-15.43-.144-2.165.255-3.893-.865-3.602-3.028.285-2.163.576-5.479.14-8.507-.672-4.718 1.588-11.246 4.759-18.456 3.17-7.209 4.76-11.246 4.76-14.634 0-2.235.215-4.759 2.234-6.056 1.493-.959 1.778-1.89 2.31-2.667 1.221-1.803 2.373-2.235 2.519-1.153.088.643-.146 1.225-.722 2.09 1.298-1.082 3.5-2.344 4-2.704.507-.36 3.07-2.162 3.21-.468 1.012-.505 1.696-.47 1.949.071.272.585.107.83-.4 1.262.722-.144 1.552 1.118.109 2.235.76-.252 1.512 1.01.183 2.163-1.38 1.19-2.956 2.019-3.462 2.956-.506.937-3.93 3.569-5.298 4.145-1.373.577-1.443 1.368-1.443 3.388 0 22.205-2.664 20.4-2.664 25.738 0 1.441-.291 2.739 1.152 2.306 1.443-.432 3.531-1.081 5.696-1.081v12.544zm.861 47.869c6.52-3.258 13.988-4.47 17.88-5.479 3.893-1.01 10.095-4.036 13.12-5.622 3.032-1.587 5.482-3.75 7.21-4.327 1.734-.576 3.67-1.77 4.76-3.892 5.62-10.958 8.651-19.752 8.651-27.395 0-5.047-1.297-10.67-6.202-6.633-4.608 3.795-9.627 11.11-10.956 16.437-2.02 8.074-3.747 9.805-4.184 11.39-.43 1.587-2.063 1.585-4.038 2.02-8.506 1.874-10.525 3.17-16.867 7.93-6.342 4.757-13.266 8.94-17.88 11.534-4.614 2.596-5.475 2.884-6.488 4.974-1.006 2.09-1.943 3.677-2.81 4.615-.867.937-1.114 2.032-.937 3.172.146.937-.291 5.262-.36 6.704-.077 1.442.284 1.803.866 1.874.576.073 1.368-.216 1.659-1.946-.291 1.73 2.088 1.153 2.234-.144-.076 1.874 2.45.793 2.595-.937 0 1.225 1.911.378 2.089-.217.43-1.441.79-3.027 1.367-4.18.842-1.675 1.74-3.843 3.392-5.048 1.874-1.37 1.007-2.883 4.899-4.83zm46.716 118.088c.437 1.586 1.228 3.389 1.513 4.47.29 1.081-.216 1.419-.5 2.019-1.513 3.172-3.14 8.228-3.393 10.958-.139 1.586-1.221 3.1-1.728 4.037-.557 1.034-.341 1.831.937 2.811.614.469 2.595-.144 2.81-1.153.722.72 2.02.433 2.595-.65.652.65 1.734.217 2.456-.864.646.433 1.582-.433 1.943-1.01 1.013.505 2.095-.107 2.127-2.09.006-.398.253-1.081.544-1.55.285-.469.392-1.37.36-2.163-.037-.793.47-2.379 1.153-3.496.683-1.118 1.873-3.1 1.367-4.975-.469-1.746-1.222-1.586-1.874-4.109-1.582-1.658-3.747-3.965-5.98-4.11-2.235-.143-3.533 1.37-4.33 1.875zm-41.02 12.4c2.019 2.018 6.563 2.09 9.734-1.298-1.152-.505-3.677-1.658-4.829-2.595-1.588 1.586-3.392 3.388-4.905 3.893z' fill='%23ffe1cf'/%3e%3cpath fill='%23870f00' d='M915.089 195.026c.791-5.118 4.418-4.998 6.703-4.47.936.217 3.247.433 5.405-.144 4.278-1.14 7.5.36 7.07 4.47 1.152.865 2.373 2.883 2.158 4.614-.215 1.73.145 2.451 1.734 2.667 1.582.217 4.975 2.163 2.734 4.902 2.165 1.299 3.823 4.614 2.671 6.85-1.152 2.234-4.614 2.595-6.057.576-1.582.72-4.183.865-5.766-.792-1.082 1.296-3.823 1.153-4.329 0-.5-1.154-1.354-1.771-2.373-2.092-1.159-.36-1.228-3.532.5-3.893-.216-.937-.14-2.018.29-2.523s.07-1.441-.936-2.235c-1.013-.793-1.873-3.821-.867-5.479-1.728.577-5.55-1.081-6.342-2.235-.797-1.153-1.873-1.225-2.595-.216z'/%3e%3cg fill='none'%3e%3cpath d='M916.171 217.23c2.81-.36 3.747-2.09 5.836-1.947m-11.823-5.882c.184.162.418.294.684.44.57.308 1.19.344 1.765.415m-1.614-3.838c.392.135.81.333 1.184.719m5.335-12.111c-1.658-1.586 2.81-4.83 7.5-.216.874.86 3.095.865 3.747.648m-4.759 2.019c2.165-.505 5.405-.505 6.342 1.946.943 2.452 2.816.865 4.33 3.75 1.512 2.883 3.892 6.127 6.195 3.892m-9.152 6.633c-.652-.865-.937-2.74-.506-4.038-.867-1.009-.507-3.1 0-4.109m-5.696 2.163c.076.865 1.228 2.451 3.032 2.74m8.936 4.037c-1.006-1.298-.867-2.45-.646-4.037'/%3e%3cpath d='M926.982 200.145c-.07 1.297.722 3.028 2.089 3.604.29.72 1.734 2.74 4.614 2.452m.582-11.319c-1.582-1.228-3.728-2.74-6.563-3.115m-11.033 44.495c-2.45 3.317-4.038 7.93-2.88 14.419 1.152 6.488 3.026 16.004-1.734 20.33m23.361 12.544c-3.317-.72-8.076-.72-10.671 1.154s-6.924 2.018-9.804.576'/%3e%3cpath d='M928.425 283.339c-2.886.504-4.253 2.523-4.253 7.858 0 5.335-1.152 13.12-.146 20.762m-.867-26.385c-1.873.504-3.817.576-3.456 5.623m-6.272.144c.07-3.1 1.152-5.984 3.171-5.48m17.589 6.057c.146-6.849-1.367-8.795-3.386-8.723 2.74.072 4.608.407 5.766 11.607.867 8.362 2.614 11.323 4.614 17.88 5.19 17.013 2.595 43.254 5.19 52.482m-16.147-71.228c5.475 15.861 8.36 33.451-.576 61.711 6.05 16.726 12.108 28.837 13.26 35.759m-29.988-59.982c1.006-3.604-2.595-4.037.576-16.725 1.373-5.496 1.589-8.795.721-10.526m.001 7.499c-1.298 5.624 4.184 16.149 1.443 23.79m-6.779 1.442c0 4.902 1.152 11.246.867 16.149-.291 4.902 1.709 7.174 4.038 11.823 8.361 16.726 14.051 28.659 13.26 44.41-.14 2.883.867 8.939-2.158 10.668m-15.792 4.254c.867.072 1.804-.36 2.886-2.956s4.545-18.167 3.101-28.837m1.729 12.112c.43 3.316.43 10.093-1.728 15.428m7.209-25.377c1.297 7.065 1.152 13.41.146 17.879m-3.032-.001c.146 2.884 1.443 10.093-.722 10.67m11.538-44.12c5.33 8.363 9.513 28.982 13.981 33.306m-9.367-3.316c-.146-2.307-.291-5.479-1.589-6.921m-56.013-94.008c.07-1.587-.215-3.1 1.513-5.551m-4.108 6.488c.215-5.551.14-6.056 1.728-7.57m-3.962 7.714c.07-3.965-.437-5.335 1.152-7.858m18.741-111.094c-.614.396-4.215 3.135-5.728 4.29m7.278-2.957c-.684.108-2.665 1.73-6.196 4.47m6.304-2.235c-1.114.504-3.24 2.56-5.19 3.93m-3.677-4.326c-.538.396-1.582 1.55-2.089 1.946m52.337 239.708c-.323-.36-.323-1.623.253-3.028m2.341 2.379c-.392-.396 0-2.127.399-3.244m2.057 2.379c-.468-.216-.614-1.226.07-2.596m1.873 1.586c-.323-.108-.468-.649.108-2.234'/%3e%3c/g%3e%3cpath d='M913.969 199.567c1.044 1.37 2.127 1.225 2.317 2.108.19.884.329.946.531 1.209.203.26-.494.208-.835.067-.336-.14-1.184-.126-1.703-.119-.513.008-1.126-.599-.74-.67.38-.07.329-.19.272-.46-.057-.268.215-.693.373-.77.165-.078.05-.064-.095-.424-.152-.36-.341-1.236-.12-.941zm.633-1.254c1.17.137 3.19.77 4.285 1.982.86.953.158.7-.279.736-.436.036-1.29-.273-1.721-.815-.424-.541-1.696-1.227-2.374-1.406-.411-.106-.797-.601.089-.497z' stroke='none'/%3e%3c/g%3e%3c/svg%3e\"},7698:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 600'%3e%3cpath fill='%23cf142b' d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M0 0h450v600H0z'/%3e%3cpath fill='%23e60d2e' d='M22.222 82.828v45.457h45.455c0 7.574 7.576 15.151 15.152 15.151v45.454h45.452v-45.454c7.576 0 15.152-7.577 15.152-15.151h45.455V82.828h-45.455c0-7.574-7.576-15.151-15.152-15.151V22.223H82.829v45.454c-7.576 0-15.152 7.577-15.152 15.151H22.222z'/%3e%3cpath fill='%2396877d' d='M25.254 85.857v39.397h45.452c0 7.574 7.576 15.15 15.152 15.15v45.454h39.392v-45.454c7.576 0 15.152-7.577 15.152-15.15h45.452V85.857h-45.452c0-7.574-7.576-15.151-15.152-15.151V25.252H85.858v45.454c-7.576 0-15.152 7.577-15.152 15.151H25.254z'/%3e%3cpath fill='%23ccc' d='M26.77 87.373v36.364h45.452c0 7.574 7.576 15.153 15.152 15.153v45.454h36.362V138.89c7.576 0 15.152-7.58 15.152-15.153h45.452V87.373h-45.452c0-7.574-7.576-15.15-15.152-15.15V26.769H87.374v45.454c-7.576 0-15.152 7.577-15.152 15.15H26.77z'/%3e%3cg id='a' fill='%23d0d0d0'%3e%3cpath fill='%2396877d' d='M84.536 71.681c2.663 2.663 1.943 7.7-1.607 11.25s-8.587 4.27-11.25 1.607c-2.662-2.662-1.942-7.7 1.608-11.25s8.587-4.27 11.249-1.607z'/%3e%3cpath d='m71.143 79.715 1.071-1.072 4.286 2.142-2.143-4.285 1.071-1.072 4.286 8.57-8.571-4.285zm6.429-6.428 1.071-1.071 6.429 6.428L84 79.715z'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='rotate(90 105.555 105.557)'/%3e%3cuse xlink:href='%23a' transform='rotate(180 105.555 105.557)'/%3e%3cuse xlink:href='%23a' transform='rotate(270 105.555 105.557)'/%3e%3cg fill='none' stroke='%2396877d' stroke-width='.514'%3e%3ccircle cx='105.555' cy='105.557' r='31.822'/%3e%3ccircle cx='105.555' cy='105.557' r='24.245'/%3e%3c/g%3e%3ccircle cx='93.434' cy='131.31' r='1.515'/%3e%3ccircle cx='117.675' cy='131.31' r='1.515'/%3e%3cpath d='M104.55 131.31v1.58h-2.02c-2.02 0-2.02 1.58 0 1.58h2.02v1.58c.007 1.636 1.763 1.835 1.892.137l.128-1.708h2.02c2.02 0 2.02-1.58 0-1.58h-2.02v-1.58c0-1.58-2.02-1.58-2.02 0zM75.954 113.4l2.084-.497-.23-.965c-.053-.222-.14-.372-.263-.452-.122-.08-.332-.102-.63-.067l-.034-.145 1.794-.427.035.144c-.206.052-.35.115-.435.189a.521.521 0 0 0-.166.262c-.027.102-.02.241.023.418l.23.966 1.665-.397c.269-.064.442-.123.52-.178a.36.36 0 0 0 .129-.204.762.762 0 0 0 .008-.382l-.046-.191.145-.035.542 2.275-.144.035-.045-.188c-.052-.219-.154-.363-.305-.431-.099-.043-.307-.026-.625.05l-3.424.816c-.269.064-.442.123-.52.177a.362.362 0 0 0-.13.2.747.747 0 0 0-.008.383l.045.187-.145.035-.94-3.944 1.153-.329.032.137c-.231.127-.394.249-.489.366a.799.799 0 0 0-.173.393c-.02.144.002.354.068.63l.279 1.17zm-1.342-9.402c.04-.706.342-1.303.908-1.79.565-.488 1.25-.709 2.052-.664.826.047 1.498.346 2.014.899.516.552.754 1.199.712 1.94-.042.749-.344 1.363-.905 1.843s-1.264.695-2.11.647c-.863-.048-1.552-.382-2.064-1.001a2.608 2.608 0 0 1-.607-1.874zm.288.093c-.027.487.132.887.476 1.202.429.392 1.077.612 1.943.66.888.05 1.582-.1 2.083-.454a1.41 1.41 0 0 0 .61-1.124 1.582 1.582 0 0 0-.526-1.3c-.38-.355-1-.557-1.858-.606-.93-.052-1.635.092-2.113.433-.38.273-.585.67-.615 1.189zm7.894-9.951-.517 1.36-3.038.817a8.805 8.805 0 0 1-.153.419 4.251 4.251 0 0 1-.05.114l1.48.563c.32.122.533.163.637.122.147-.053.256-.175.329-.365l.075-.199.14.053-.831 2.182-.14-.053.073-.191c.082-.216.071-.396-.034-.542-.058-.082-.232-.179-.522-.29l-3.29-1.252c-.32-.122-.533-.163-.637-.122-.148.056-.258.18-.331.373l-.073.191-.14-.053.707-1.855c.206-.54.397-.925.574-1.151.176-.227.404-.39.684-.488s.566-.092.86.02c.312.119.545.324.698.616.152.292.195.67.127 1.134l1.861-.495c.427-.113.729-.235.905-.365.176-.131.332-.33.467-.596l.14.053zM78.8 96.76a3.78 3.78 0 0 1 .084-.209c.184-.486.219-.892.102-1.219a1.08 1.08 0 0 0-.663-.676c-.318-.12-.614-.12-.889.004-.275.123-.475.349-.6.677-.055.145-.106.35-.153.616l2.119.807zm11.596-18.053 1.053 1.367-.118.077c-.352-.283-.682-.454-.989-.514-.442-.087-.877.008-1.304.285-.583.377-.877.894-.882 1.552-.002.554.171 1.099.52 1.637.282.436.624.78 1.026 1.03.401.25.793.37 1.175.361a1.893 1.893 0 0 0 1.004-.293 2.215 2.215 0 0 0 .78-.865l-.856-1.322c-.148-.23-.263-.369-.344-.417a.42.42 0 0 0-.266-.057c-.097.01-.238.075-.423.195l-.083-.129 1.771-1.147.083.129-.084.054c-.175.114-.258.25-.247.41.009.112.092.29.251.536l.907 1.4a4.083 4.083 0 0 1-.567.802c-.21.229-.469.443-.777.642-.883.572-1.738.724-2.564.454a2.705 2.705 0 0 1-1.469-1.136 2.93 2.93 0 0 1-.459-1.345 2.95 2.95 0 0 1 .29-1.624c.208-.412.54-.766.997-1.062.166-.108.326-.192.48-.253.153-.062.384-.127.694-.196a1.12 1.12 0 0 0 .299-.093.16.16 0 0 0 .071-.13c.005-.06-.027-.148-.094-.267l.125-.081zm8.873.614-2.039.543-.136.926c-.034.228-.037.392-.01.493.021.08.078.14.17.181s.269.036.527-.013l.038.144-1.658.44-.038-.143c.21-.097.339-.186.387-.265.099-.16.178-.45.237-.874l.7-4.827.136-.036 2.998 3.893c.242.313.436.506.585.579.148.073.331.087.55.043l.038.144-2.078.552-.038-.144c.207-.066.34-.138.397-.218a.28.28 0 0 0 .053-.247c-.03-.113-.13-.28-.299-.498l-.52-.673zm-.185-.258-1.46-1.891-.35 2.372 1.81-.481zm9.621-.028.131.033-.523 1.46-4.216-.165.006-.148.204.008c.23.009.398-.06.503-.206.06-.083.095-.28.108-.59l.136-3.515c.013-.34-.016-.554-.087-.642-.1-.122-.253-.187-.46-.195l-.204-.008.006-.149 2.466.096-.006.149c-.29-.014-.493.005-.612.056a.491.491 0 0 0-.247.204c-.046.084-.076.288-.088.612l-.133 3.421c-.01.222.007.376.046.46.03.058.078.101.144.13.066.03.274.052.625.065l.397.016c.418.016.712-.003.883-.058a1.15 1.15 0 0 0 .475-.31c.145-.151.294-.393.446-.724zm7.257 1.942.117.068-.907 1.258-4.006-1.325.047-.141.194.064c.22.072.399.053.54-.058.08-.064.17-.244.267-.539l1.104-3.338c.107-.323.138-.537.094-.642-.062-.145-.191-.25-.387-.314l-.195-.065.047-.141 2.343.775-.047.14c-.274-.092-.475-.13-.603-.114a.492.492 0 0 0-.294.127c-.068.068-.152.256-.254.564l-1.075 3.25c-.07.212-.098.364-.083.456a.287.287 0 0 0 .102.165c.055.046.25.125.583.235l.377.125c.397.13.685.194.865.188.18-.005.36-.06.542-.166.181-.105.391-.296.63-.572zm5.849 3.097-1.722-1.219-.799.488c-.196.12-.325.223-.385.308-.048.068-.058.15-.03.248.028.097.144.229.347.396l-.086.121-1.4-.991.086-.122c.209.1.36.142.451.128.186-.026.46-.152.823-.377l4.156-2.554.115.082-1.07 4.796c-.086.385-.11.658-.071.819.039.16.145.31.32.45l-.087.121-1.755-1.242.086-.121c.184.116.324.171.422.165a.28.28 0 0 0 .224-.117c.068-.096.132-.28.191-.549l.184-.83zm.08-.308.518-2.331-2.047 1.25 1.529 1.081zm6.463 1.191.88 1.188-1.3 5.11 2.525-1.87c.27-.2.415-.355.437-.465.031-.146-.017-.306-.144-.478l-.113-.152.12-.088 1.13 1.524-.12.088-.115-.155c-.137-.185-.29-.275-.46-.27-.104.005-.279.097-.524.28l-3.69 2.735-.087-.117 1.387-5.5-2.696 1.999c-.27.2-.416.353-.44.46-.03.15.019.309.145.479l.115.155-.12.088-1.129-1.524.12-.088.112.151c.139.188.293.279.462.273.104-.004.279-.096.524-.278l3.045-2.257a2.62 2.62 0 0 0 .08-.507c-.002-.1-.03-.23-.082-.387a1.28 1.28 0 0 0-.182-.305l.12-.089zm6.87 12.662-1.184.483-.05-.144c.201-.103.34-.194.414-.274a.807.807 0 0 0 .213-.427 1.152 1.152 0 0 0-.077-.55l-.257-.724-3.925 1.388c-.315.112-.5.216-.554.312-.073.133-.073.3-.002.5l.062.177-.14.05-.77-2.178.14-.05.064.182c.077.217.197.348.36.392.101.027.295-.01.583-.112l3.925-1.389-.218-.617c-.085-.24-.163-.405-.234-.493a.745.745 0 0 0-.396-.24c-.17-.045-.373-.035-.612.03l-.05-.144 1.225-.366 1.484 4.194zm-4.313 9.666-.075-1.453 2.448-1.974a8.874 8.874 0 0 1-.03-.445v-.125l-1.58.082c-.343.018-.554.066-.633.146-.113.107-.164.263-.153.466l.011.213-.148.008-.122-2.332.149-.008.01.205c.013.23.096.39.25.482.087.052.285.07.595.054l3.516-.183c.342-.018.553-.067.632-.146.113-.11.163-.268.153-.475l-.011-.204.149-.008.103 1.982c.03.578.01 1.007-.06 1.285-.07.279-.214.52-.43.723-.216.203-.48.312-.793.329a1.272 1.272 0 0 1-.888-.282c-.258-.205-.45-.534-.575-.986l-1.503 1.205c-.345.275-.571.508-.68.699s-.17.435-.187.734l-.148.008zm2.596-4.01c.003.05.004.095.005.132l.003.093c.027.519.16.904.399 1.156.238.252.531.369.879.35.34-.017.61-.138.812-.361.202-.224.293-.511.275-.862a3.539 3.539 0 0 0-.109-.626l-2.263.118zm1.495 11.21-.483 1.838-.144-.037.027-.101c.018-.068.014-.174-.012-.32s-.08-.285-.164-.42a3.617 3.617 0 0 0-.441-.536l-1.668-1.796-1.322-.347c-.324-.085-.536-.102-.635-.05-.135.07-.23.21-.286.423l-.045.171-.143-.037.587-2.24.144.038-.05.187c-.058.223-.032.399.079.527.068.08.25.157.545.235l1.247.327 2.588-.867c.304-.103.496-.176.577-.22.08-.044.192-.15.333-.318a.535.535 0 0 0 .098-.215l.143.038-.591 2.254-.144-.037.03-.117a.707.707 0 0 0 .004-.359.286.286 0 0 0-.217-.22c-.093-.025-.282.01-.567.104l-1.988.654 1.354 1.46c.203.22.364.345.483.377a.36.36 0 0 0 .386-.132.809.809 0 0 0 .13-.302l.145.038z'/%3e%3cg fill='%2396877d' stroke='%23000' stroke-width='.203'%3e%3cpath d='M122.85 110.19c.532-.135 1.41-.026 1.41-.026s.076.365-.155.487c.257.148 1.18.103 1.18.103s-.36.275-.539.384c.333.032.743.461.743.461s-.769.128-1.102-.051c.205.41.18.769.18.769s-1.243-.308-1.691-1.128m-2.106-1.699c-.301.743-2.51-.64-2.51-.64s.973 1.543 2.433 1.716M93.181 123.66h25.877l1.998-1.589-3.33-1.793-5.125-1.742-2.05-1.127-3.791.204-3.177 1.691-4.356.513-1.025 1.178-3.228.257-5.073-.103 8.455 1.333-6.969-.36 1.794 1.538z'/%3e%3cpath d='M107.12 116.23c-3.241-1.742-4.189 2.55-5.585 3.587 1.883.32 3.305-1.448 4.919-2.306 1.224 3.333 3.151 1.127 3.151 1.127s2.011 3.19 4.689 1.743c.73.55 1.537.05 1.537.05s.974.18 1.179-.256c.512.18 1.076-.46 1.076-.46s1.114.012 1.332-.564c1.653.294 3.843-3.382 3.843-3.382l.666-1.281.974-.205s.064-.64-.461-.615c-.013-.385-.346-.59-.82-.513.09-.23-.256-.41-.256-.41-.923.231-.974 2.563-.974 2.563s-1.614 1.23-2.203 1.537c-.026-1.333-2.255-3.139-1.794-3.997.461-.858 1.909 1.32 3.177.922 1.268-.397 1.891-2.047 1.947-3.33-.358-.872-1.23-2.306-1.23-2.306l-.82-.052-.717-1.742s-1.511.987-1.486 1.845c.026.858 1.589 1.588 1.589 1.588s-.901.564-1.742.308c-.077.87 1.024.704 1.434.717.205.628.82.974.82.974s.385.96-.615.87c-.999-.089-2.178-2.391-3.587-1.331-1.498 1.127.667 3.177.667 3.177s-1.32.691-2.101 2.46c-3.19-2.691-5.06-1.436-8.609-.718z'/%3e%3cpath d='M102.46 111.67c1.332 1.255.403 3.342.922 3.74.551.423 1.333-.204 1.333-.204 1.396.371 3.894-.41 3.894-.41 1.1.615.665-.293 1.332-.256.59 1.511 2.562 1.23 2.562 1.23s-1.806-1.845-2.92-2.358c-.859.513-3.357.59-3.792.513-.486-.086-.18-.68-.41-1.025.918-.894.192-3.113-.308-3.946-2.036-1.356-4.468.968-2.613 2.716zm-8.861-3.75c-1.676.453-4.583-2.165-5.942-1.16s-.725 3.479.18 4.71c.886 1.205-1.294 1.64-1.883 2.356-.554.673.18 1.45.18 1.45l.617.398-.109.906.326 1.087s.3.262.399-.073c.28.281.03 1.093.725 1.196-.25-.52.18-1.957.18-1.957s1.215.091 1.523-.434c.307-.526-.29-1.667-.29-1.667h.362c-.408-.28-.544-1.123-.544-1.123s1.685-.535 1.667-1.812c-.018-1.277-2.735-2.636-1.739-3.297 1.105-.734 3.025 1.902 4.674.688 1.632-1.201.58-.036.58-.036s.746-1.678-.906-1.232zm8.651-17.949c-2.242-.935-6.822-.993-9.377-2.255-1.121.07-1.62.955-1.666 1.307-1.172-.058-1.966 1.787-1.793 2.152-2.133-.864-3.126 2.511-2.434 3.203-1.82.077-1.595 2.402-1.768 3.049-.583 1.415.13 1.892 1.281 1.383.173.615-.07.96-.59 1.076 3.158 3.614 4.943-2.223 7.713-2.203 3.458-1.012 4.816-2.716 4.816-2.716l1.358.18 2.46-5.176z'/%3e%3ccircle cx='105.145' cy='87.384' r='3.305'/%3e%3cpath d='M99.33 113.41c-2.05-.372-5.444-2.498-5.79-5.278 1.908-7.494 11.755-3.58 12.604-9.217-.217-3.719.45-7.4 2.512-10.511.96-1.217 2.203-1.537 2.203-1.537s.223.793-.102 1.332c1.626-.18 3.856.73 5.38.82.448.91.41 1.242.307 1.793-.102.551-.717.41-.717.41-.398.377-.876.761-1.947.564-.807.615-2.511.768-2.511.768s3.561 3.754 2.972 4.92c.743.345 1.845 1.998 1.845 1.998s2.434-1.281 3.228-2.46c1.41 0 3.715 1.474 4.868 1.64 1.41 1.14 2.818 2.306 2.818 2.306s-1.678 1.102-2.408-.359c-.884.077-2.793-2.037-5.432-1.383-.077 2.344-2.664 3.997-2.664 3.997s2.415-.338 3.74.46a139.033 139.033 0 0 0 3.382 2.717l1.794 3.074s-1.64.282-2.255-1.845c-.615 1.717-.64-1.063-3.074-2.357-.743.09-1.115.141-1.743-.358-1.755.474-3.83 1.498-6.302 1.23-1.755.55-3.037 2.01-4.817 2.818-1.78.807-2.306.41-2.306.41l-1.435.05c-.207.865-.09 2.179-.87 2.41.499.537-.36 2.83-1.23 3.227.41 1.474 1.61 1.925 2.869 2.665 0 0 1.114-.512 1.844.154s1.486 2.562 1.486 2.562-1.52.103-1.998-.103c-.479-.205-.525-.704-1.076-.563-3.472-3.088-5.302-1.86-5.637-2.562-.342-.72.82-2.6.462-3.792z'/%3e%3cpath d='M90.99 99.655c.181-.226 1.45.254 1.45.254l2.318 1.449 4.71 3.044 1.667 2.427-3.007-.978-4.167-3.587-2.246-1.45s-.906-.933-.725-1.16zm27.86 7.715c-1.627-.41-5.637 4.458-5.637 4.458l3.024 3.28s.09-5.586 2.613-7.738z'/%3e%3cpath d='M99.023 93.789c-.887 1.137-.967 3.429.188 4.353.108 1.391 1.291 4.197 2.22 4.46 1.016.288 5.073 1.23 6.662.974-.304 2.575 1.716 4.641 3.587 5.995-.014.232-.017.514.199.8.21.276 1.192.326 1.235.174.436.613 2.548.882 2.7.609.15-.266-3.105-2.53-3.827-3.222-.613-1.144-1.775-3.694-2.05-5.74-1.597-1.9-4.34-1.862-4.34-1.862l.087-3.723.154-4.202-1.486-.768s.3-.137.461-.308c.361.156 1.04-.57 1.128-.774.341.12.65.12.71-.064.054-.16.115-.879.24-1.25 1.12-.987-.164-3.08-1.878-3.114-1.697-.035-2.077 2.023-2.044 2.18.159.645.125.97 0 1.126-.128.16-.718.513-.718.513s-.948-.449-2.1 0-2.448 1.05-2.512 1.793c-.525.077-1.383.756-1.537 1.333-.461-.09-1.063.294-2.05 1.896-1.767.781-1.87 4.56-1.87 4.56s-.477.695-.5 1.063c-.022.369.167.705.398.64.025.244.346.462.486.385.052.244.403.38.615.346.02.167.702.125.756-.026.06-.166-.067-.996.013-1.063.074-.06.64.372.794.256.154-.115-.03-.484-.115-.627-.077-.128-.564-.27-.679-.871s.307-1.435.307-1.435 1.922-1.512 2.14-2.806c1.447.141 2.213-1.124 2.626-1.601z'/%3e%3cpath d='M95.679 88.37c.439-1.073 2.024-.974 2.024-.974s.567-1.492 2.703-.602c.804-.621 2.92.27 2.92.27s.794-1.057 1.833-.936c1.925.224 2.245 1.989 2.126 2.293-1.053.266-2.879-.856-4.266-.538-.81.458-2.123.942-2.613 1.602-1.284.134-2.655-1.182-4.727-1.115zm4.01 1.781c.48-.295 1.659-.813 2.46-.18.839.904 2.126 1.743 2.126 1.743l1.46.615.667.41-.436 6.687c-1.352-1.383-2.619-1.626-3.587-3.254-.519-.698-.122-2.376-1.025-3.485-.903-1.108-1.864-1.857-1.665-2.536z'/%3e%3cpath d='M103.2 92.082s.765-.145.978.036c.268.09.526.168.598.399.29.086.49.235.49.453.271.072.38.561.38.561l-.254.38s-.29-.271-.326-.56c-.183-.091-.589-.187-.688-.454-.317-.031-.521-.195-.58-.47-.295.067-.598-.345-.598-.345z'/%3e%3cpath d='M109.68 87.717c-.436-.487-1.204-.128-1.204-.128l-2.05 3.536-.897.743-.077 2.767.743 2.587-.256 1.999s1.032-.969 1.153-1.512c.116-.519-.384-2.203-.384-2.203s-.615-1.05.128-2.998c.743-1.947 2.434-3.561 2.844-4.79z'/%3e%3cpath d='M114.74 90.868s-3.2 4.573-8.44 6.2c-1.447.346-.922-3.382-.922-3.382l-.359.103s-.807 3.65 1.127 3.69c5.266-1.038 9.216-6.581 9.216-6.581l-.63-.028zm2.17 26.292s-.487.359-1.127 0c-.333-.769-1.23-.82-1.23-.82s-.578-1.66-1.486-1.178c-.141-.859-1.127-.41-1.127-.41s-.026-1.243-1.179-1.076c.384-1.423-1.589-1.333-1.589-1.333s-.064-1.601-2.972-1.28c6.265-2.806 11.222 4.406 11.222 4.406m2.458 2.301s1.448 1.627 2.203 1.64c.756.013.82-1.589.82-1.589s.244.692.615.513c-.038.486.461.615.461.615s-1.306 3.036-5.021.153m-10.408-.712-.512 2.1s-.654.59-.462.718c.193.128 1.23-.205 1.23-.205s1.614-.192 2.101-.666c.333.756 1.076.82 1.076.82s.051-.32-.051-.512c.359.064.666-.052.666-.052s.205-.589-.256-.82c.051-.435.269-.82-.512-.768-.577.615-1.999 1.32-2.358 1.076-.358-.243 1.41-1.025.923-2.05'/%3e%3c/g%3e%3c/svg%3e\"},6550:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3e%3cpath fill='%2300A551' d='M0 0h6v4H0z'/%3e%3cpath fill='%23FFD500' d='M0 0h6v3H0z'/%3e%3cpath fill='%231A206D' d='M0 0h6v2H0z'/%3e%3cpath fill='%23EA2839' d='M0 0h6v1H0z'/%3e%3c/svg%3e\"},9709:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 480'%3e%3cpath fill='%23D21034' d='M0 0h720v480H0z'/%3e%3cg fill='%23007E3A'%3e%3cpath d='M120 120h480v240H120z'/%3e%3ccircle fill='%23FFF' cx='390' cy='240' r='80'/%3e%3ccircle cx='420' cy='240' r='80'/%3e%3c/g%3e%3c/svg%3e\"},448:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-225 -114 450 300'%3e%3cpath d='M-225-114h450v300h-450z'/%3e%3cg fill='%23CE1126'%3e%3ccircle r='64.5'/%3e%3cpath d='M-225-14h450V86h-450z'/%3e%3cg id='e'%3e%3cg id='d'%3e%3cg id='c'%3e%3cg id='b'%3e%3cpath id='a' d='M0-102c-2.2 0-3 3.3-3 6.5 0 8 1 12 3 23.5 2.04-11.5 3-15.6 3-23.5 0-3.3-1-6.5-3-6.5'/%3e%3cuse transform='rotate(5)' xlink:href='%23a'/%3e%3c/g%3e%3cuse transform='rotate(10)' xlink:href='%23b'/%3e%3c/g%3e%3cuse transform='rotate(20)' xlink:href='%23c'/%3e%3c/g%3e%3cuse transform='rotate(40)' xlink:href='%23d'/%3e%3c/g%3e%3cuse transform='rotate(-80)' xlink:href='%23e'/%3e%3c/g%3e%3cpath d='M-225-21.5h450v7.5h-450z'/%3e%3cpath fill='%23339E35' d='M-225 86h450v100h-450z'/%3e%3c/svg%3e\"},7925:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 980 560'%3e%3cdefs%3e%3cradialGradient id='b' xlink:href='%23a' gradientUnits='userSpaceOnUse' cx='842.31' cy='103.66' r='25.859' gradientTransform='matrix(.18574 .04718 -.04532 .18635 233.798 198.77)'/%3e%3cradialGradient id='c' xlink:href='%23a' gradientUnits='userSpaceOnUse' cx='651.52' cy='550.46' r='25.859' gradientTransform='matrix(-.17642 -.07067 .06515 -.16392 430.544 377.876)'/%3e%3cradialGradient id='d' xlink:href='%23a' gradientUnits='userSpaceOnUse' cx='380.84' cy='740.37' r='25.859' gradientTransform='matrix(.0989 .0037 -.0045 .1943 442.362 123.304)'/%3e%3clinearGradient id='a'%3e%3cstop stop-color='%23fff' offset='0'/%3e%3cstop stop-color='%23f15770' offset='1'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath d='M0 0h980v560H0z' fill='%23ce1126'/%3e%3cpath d='M0 0h653.333v560H0z' fill='%23fff'/%3e%3cpath d='M0 0h326.667v560H0z' fill='%23006847'/%3e%3cg transform='translate(-.699 1.184) scale(1.16833)' fill='%23fcca3e' stroke='%23aa8c30'%3e%3cpath d='m466.96 303.53.293 5.878 2.22-1.467-1.702-4.839z' stroke-width='.35'/%3e%3ccircle cx='466.703' cy='301.93' r='1.892' stroke-width='.3'/%3e%3cpath d='m474 312.69-4.3-4.119-1.932 1.553 5.843 3.405z' stroke-width='.35'/%3e%3cpath d='M473.63 315.01c-.608-.815-.403-2.003.446-2.658.853-.655 2.037-.524 2.645.288.602.815.403 2.007-.448 2.662-.854.653-2.037.52-2.643-.292z' stroke-width='.3'/%3e%3cpath d='m507.04 251.22 4.407 4.384.512-2.219-4.028-2.7z' stroke-width='.35'/%3e%3ccircle cx='506.451' cy='250.09' r='1.845' stroke-width='.3'/%3e%3cpath d='m518.65 253.82-6.733 1.921.554-2.224 5.79-.563z' stroke-width='.35'/%3e%3ccircle cx='519.742' cy='252.89' r='1.803' stroke-width='.3'/%3e%3cpath d='m496.03 287-4.108-6.398.661-.33 4.647 5.489z' stroke-width='.35'/%3e%3ccircle cx='491.518' cy='279.115' r='1.909' stroke-width='.3'/%3e%3cpath d='m496.29 287.17 5.218.953.192-.715-4.37-1.732z' stroke-width='.35'/%3e%3ccircle cx='503.102' cy='288.18' r='1.889' stroke-width='.3'/%3e%3cpath d='M373.59 301.72c0 .91-.714 1.556-1.391 1.556-.672 0-1.22-.735-1.22-1.64 0-.909.548-1.644 1.22-1.644.677 0 1.391.824 1.391 1.728z' stroke-width='.3'/%3e%3cpath d='m373.56 304.65 1.195 6.566-1.59-.628-.57-5.705z' stroke-width='.35'/%3e%3cpath d='M375.01 302.42c.767.994-.531 2.511-1.91 2.889-1.377.375-3.097-.26-3.08-1.522.018-1.432 2.01-.687 2.545-.853.825-.26 1.62-1.584 2.445-.514z' stroke-width='.3'/%3e%3cellipse cx='363.566' cy='312.49' rx='2.045' ry='1.483' stroke-width='.3'/%3e%3cpath d='m367.03 312.14 6.307-.314-1.068-1.256-5.18.563z' stroke-width='.35'/%3e%3cpath d='M367.56 311.41c.526 1.597.57 3.774-1.218 3.545-1.791-.233-1.452-1.833-1.591-2.45-.256-1.121-1.307-2.13-.228-3.223 1.08-1.097 2.508.528 3.037 2.128z' stroke-width='.3'/%3e%3cellipse cx='347.006' cy='276.955' rx='1.236' ry='1.881' stroke-width='.3'/%3e%3cpath d='m347.03 281.12.144 6.11-1.59-1.444.112-4.866z' stroke-width='.35'/%3e%3cpath d='M349.39 279.26c.322 1.41-1.745 2.204-3.152 1.942-1.406-.258-2.47-.993-2.257-2.289.213-1.299 1.96-1.007 2.556-.647.596.355 2.405-.985 2.853.994z' stroke-width='.3'/%3e%3cellipse cx='336.229' cy='286.5' rx='2.13' ry='.973' stroke-width='.3'/%3e%3cpath d='m340.06 286.5 4.797-.325 2.043 1.58-6.915-.26z' stroke-width='.35'/%3e%3cpath d='M338.3 283.93c1.294.041 2.187 1.467 2.002 2.981-.183 1.514-1.348 2.738-2.54 2.553-1.194-.192-1.108-1.199-1.08-1.5.03-.304.696-.852.768-1.341.07-.486-.341-1.57-.187-2.073.157-.505.455-.638 1.037-.62zm-3.87-37.19c-.536.852-1.555 1.499-2.07 1.167-.518-.333-.333-1.52.201-2.373.533-.85 1.385-1.274 1.902-.941.517.334.5 1.294-.033 2.147z' stroke-width='.3'/%3e%3cpath d='m329.08 256.35 2.678-6.311-.4-.346-3.036 4.432z' stroke-width='.35'/%3e%3cpath d='M331.27 250.05c-1.326-.97-1.619-1.964-1.192-2.943.425-.979 1.419-.344 1.419-.344s.653.722 1.135.978c.483.262 1.252-.083 1.819.72.569.807.227 1.613-.228 1.816-.455.2-1.845.576-2.953-.227zm-11.13-.83c.95.543 1.456 1.458 1.13 2.056-.328.59-1.367.634-2.32.09-.947-.54-1.453-1.458-1.125-2.053.327-.594 1.363-.635 2.315-.093z' stroke-width='.3'/%3e%3cpath d='m322.92 251.99 4.946 2.966-.144 2.333-5.368-4.612z' stroke-width='.35'/%3e%3cpath d='M322.88 252.55c-1.097 1.225-2.104 1.41-3.013.868-.912-.543-.177-1.473-.177-1.473s.78-.574 1.089-1.03c.31-.459.06-1.272.914-1.751.855-.478 1.605-.043 1.753.44.144.48.35 1.922-.566 2.946z' stroke-width='.3'/%3e%3c/g%3e%3cg fill='%23aa8c30'%3e%3cpath d='M546.112 356.319s-.42.28-.65.733c-.22.452-.473 1.362-.473 1.362l.026-2.22.748-.432.35.557z'/%3e%3cpath d='M546.44 354.929s-.517.876-1.744.807c-1.221-.066-1.822-.636-1.97-1.262-.15-.62-.15-1.074.245-1.801.399-.723-.579.69-.579.69v1.381l.896 1.062.76.234.752.048.961-.317.645-.488zm6.461 11.286s-.619.322-1.091.15c-2.898-1.028-5.33-2.727-5.33-2.727l5.82 3.615zm3.621 1.647s-.064 1.018-1.191 1.524c-1.125.507-1.914.274-2.326-.213-.41-.488-.615-.891-.588-1.72.036-.828-.205.88-.205.88l.619 1.232 1.272.53.79-.139.686-.302.714-.728.36-.734zm37.212-72.961s-.148.228-.148.605c0 .38-.023 1.062-.023 1.062l-1.268-1.411.64-.834zm-.678-1.835c.074 1.01-1.392 2.446-2.487 1.992-1.094-.45-1.89-1.59-1.291-2.727.596-1.136-.3.43-.3.43l.152 1.667 1.041.957 1.296.077 1.021-.577.621-1.14zm15.387 2.746s-.248-.692-.121.087c.12.785-.883 2.463-2.057 2.31-1.166-.151-1.702-1.172-1.602-2.122.099-.945-.198.328-.198.328l.185 1.266.626.593.895.53 1.044-.18.947-.606.421-.89v-.634z'/%3e%3cpath d='M603.173 296.98s.04.53-.656.91a81.278 81.278 0 0 0-2.015 1.162l4.33-1.261-.359-1.05-1.3.24zm-26.217 34.337s-.233.255-.246.793a6.47 6.47 0 0 0 .11 1.192l-2.426-3.837.72-.456 1.843 2.308zm-1.332-3.61c-.432 1.012-2.198 1.654-3.045 1.162-.846-.49-1.566-2.324-.532-3.13l-.538.469-.275 1.045.389 1.097.846.957.781.24 1.247-.25.907-.708s.658-1.89.22-.882zm8.552 8.798s.024.452-.77.452c-.795 0-2.462.026-2.462.026l4.03.778.2-.804z'/%3e%3cpath d='M589.13 337.45c.361 1.346-.834 2.642-2.376 2.189-1.542-.458-1.957-1.989-1.472-2.814l-.381.961.28 1.28.946.823.967.21.989-.244 1-.959.248-1.145zm-151.8 17.105c.416.47-.23 2.221-1.973 2.928-1.742.703-2.606.032-3.07-.556-.464-.588-.432-1.21-.432-1.21l-.248.317.233.912.881.755 1.54.335 1.147-.216 1.129-.607.579-.607.498-.74.067-.907-.283-.457h-.067l-.027.036z'/%3e%3cpath d='M435.776 358.376s-.298.098-.563.54c-.263.435-.364 1.207-.364 1.207l-.135-2.05.898-.473zm-5.806 6.168s-.165.439.299.672c.465.24 1.56.506 1.56.506l-2.854.1-.298-1.108 1.293-.17zm-.97 1.776s.033.102.027.29c-.01.19-.06.467-.226.821-.333.703-.465 1.516-1.492 1.31-1.03-.2-1.46-.976-1.56-1.646-.1-.673-.332-.941-.332-.941v.905l.629 1.515 1.028.473h.897l.697-.27.33-.91.17-.74z'/%3e%3cpath d='M421.803 366.122s.333 1.313 1.793 1.346c1.46.037 1.825-.407 1.825-.407l.165.507-.53.268-1.268.144-1.116-.221-.519-.384-.395-.689zm-14.476-38.953s.05.15-.05.631c-.1.477-.994 1.616-2.663 1.639-1.666.028-2.362-.531-2.81-1.086-.449-.554-.524-1.337-.524-1.337l-.05.833.647 1.035 1.642.773 1.568.01 1.593-.466.697-.773.163-.847-.213-.41zm-2.64 3.54s-.596.052-.895.318c-.297.268-.56.592-.56.592l-.024-1.981 1.479.112zm-7.173 5.235s-.115.115.749.505c.863.388 4.795.806 4.795.806l-6.306-.17.233-1.076zm-.713.116s-.017.24-.331.877c-.314.64-1.109 2.34-2.437 2.105-1.33-.236-1.162-1.163-1.162-1.312 0-.153-.018-.473-.018-.473l-.231.961.314.672.547.34 1.08.134.728-.322.796-.759.416-.807.332-.858zm-3.4.164s-.036.3-1.08.339c-1.045.027-2.537-.424-2.537-.424l.496.621.863.22 1.078.016.846-.083zm-3.213-44.292s.232.675-.365 1.112c-.596.436-1.893.705-2.721.233-.83-.471-2.325-1.985-2.325-1.985l.7 1.248 1.093.91 1.525.434 1.46-.23.665-.578.2-.469z'/%3e%3cpath d='M385.737 293.954s.032.173 0 .843c-.033.674-.3 1.787-.3 1.787l1.328-2.967-.53-.472zm-8.225 2.324s-.198-.204.198.673c.398.878 3.65 4.006 3.65 4.006l-5.176-4.371.596-.848.731.54zm-1.73.503s-.664.41-1.261.439c-.597.035-1.592-.032-1.725-.741-.132-.703.199-1.006.199-1.006l-.43.975.165.535.765.44 1.062.101.96-.471.266-.27zm-2.09-2.22s.064.202-.898.068c-.962-.135-2.122-1.245-2.122-1.245l.762 1.21 1.627.674z'/%3e%3c/g%3e%3cg fill='%239ca168'%3e%3cpath d='M612.45 280.238c-.47 5.88-6.27 8.882-9.305 11.08-3.04 2.2-4.507 4.926-4.507 4.926l-1.02 3.428-.5 2.193-.098.763c.2.61.46 1.67.497 3.26.079 2.673-.17 6.483-.17 6.483l4.082-2.928 2.958-1.111.895-.144s-3.284 3.266-4.578 6.8c-1.292 3.535-3.683 11.042-8.162 13.462-4.476 2.426-7.268 1.418-8.76 2.731-1.49 1.31-1.543 1.662-1.543 1.662l-1.907 2.611-1.51 1.952-1.411.976-.891.722c-.031.728-.119 1.672-.362 2.54-.49 1.726-1.072 3.646-1.072 3.646s.894-.544 1.98-.679c1.078-.14 2.086-.127 2.086-.127s-.844 1.034-1.141 2.044c-.3 1.011.198 7.07-5.573 10.703-5.775 3.635-20.474 3.063-20.474 3.063l-2.784 1.108-2.62 1.957-2.393 2.623-.179.707s-1.807 2.204-3.106 3.065c-1.29.857-4.276 2.823-4.276 2.823s2.534-.096 3.385.201c.843.309 5.372 2.327 5.372 2.327s-3.318-.067-5.573.806c-2.259.875-12.541 6.698-17.518 6.53-4.974-.165-12.079-7.439-12.079-7.439l-3.218-2.254-5.34-1.041-6.605-.372.094-.865.125-1.068s2.241-.254 5.846.17c3.082.37 4.108 1.393 6.694 1.694 2.59.303 4.502-.074 5.45-.5.946-.437 8.932-7.199 8.932-7.199l8.982-3.151 3.433.5 1.52.406 1.396.404s-.47.733-1.469 1.667c-.994.931-2.241 1.566-2.241 1.566l1.098.878 5.67-.905 1.852.478s.144.039.533.284c.088-.409.315-1.257.826-1.924.697-.907 3.883-3.508 5.248-4.416 1.374-.908 1.67-1.035 2.12-1.515.446-.48 2.288-5.229 2.288-5.229l.25-2.419 6.271-6.036 4.228-4.493 1.844-5.124-.2-1.033s1.519 1.564 1.244 4.744c-.273 3.18-.971 4.292-.971 4.292s4.277-2.954 6.57-3.965c1.837-.81 3.194-.756 3.664-.705.604-.343 2.252-1.362 3.251-2.826 1.246-1.815 1.57-2.35 1.57-3.08 0-.733.2-4.267.2-4.267l-.4-10.83 3.684-8.153 5.348-4.797 1.021-.607s-.425 1.135-.5 1.92c-.074.781-.074 2.168-.074 2.168s2.711-3.708 4.106-4.39c.319-.155.601-.288.856-.407a10.71 10.71 0 0 0 1.104-2.994c.43-2.053.5-4.81.5-4.81l.082-4.485-.871-3.487-2.49-6.69-.1-8.808-1.864-2.515s1.766-.138 3.954 3.02c2.189 3.157 2.839 7.598 2.839 7.598l5.083-15.6s1.364 1.842 2.328 4.921c.976 3.08 1.272 5.175 1.272 5.175l2.001-4.33c-.017.046-.06.3.24 1.529.345 1.437 3.455 3.232 2.985 9.113zm-103.194 99.711s-.951-2.388-5.845-4.812c-4.895-2.421-8.54-2.893-8.54-2.893l-.054 1.8 7.683 3.35 3.83 3.131 2.925-.576z'/%3e%3cpath d='M544.232 365.291c.472-.63 4.608-4.314 6.72-5.4 2.117-1.088 4.925-1.287 4.925-1.287 2.913-.534 3.386-.102 10.105-3.812 6.72-3.709 8.213-7.978 9.506-9.012 1.293-1.037 3.655-1.287 3.655-1.287s-2.812 3.307-5.272 6.006c-2.464 2.705-5.104 4.418-8.888 6.97-3.78 2.549-11.64 2.676-11.64 2.676-3.312.76-4.43 1.562-6.273 3.177a22.266 22.266 0 0 0-3.092 3.376s-.217-.775.254-1.407zm18.54-19.461c-6.218 5.68-8.262 10.957-8.262 10.957s5.526-4.744 8.362-7.47c2.838-2.727 6.816-4.042 8.61-5.708 1.793-1.667 1.892-3.078 3.035-4.141 1.143-1.058 1.994-1.565 1.994-1.565s-2.74-2.118-13.74 7.927zm-13.12 13.147s2.66-1.167 3.666-3.555c.748-1.767.35-2.218 1.494-4.24 0 0 6.469-6.248 8.755-8.937 4.083-4.797 2.241-8.733 2.241-8.733s.447 2.02-1.243 4.138c-1.693 2.12-10.039 7.826-11.05 11.11-1.014 3.282-.447 3.4-.896 5.147-1.034 4.022-2.967 5.07-2.967 5.07zm-4.299 16.138s-3.254-2.184-6.9-1.952c-7.432.473-13.719 5.047-18.627 5.182-4.915.136-6.844-2.328-10.637-4.914-4.046-2.759-14.066-2.358-14.066-2.358l-.063.239-.07.292s6.89.07 9.827.885c5.612 1.548 8.636 7.39 15.008 7.018 8.268-.488 15.047-5.523 18.427-5.506 5.807.038 7.1 1.114 7.1 1.114zm-36.867-3.764s5.765 1.039 10.243-2.246c4.479-3.282 9.801-7.723 12.74-7.925 2.936-.202 6.023.555 6.023.555s-3.736-1.666-6.718-1.618c-2.99.052-6.023.457-8.813 2.123-2.786 1.667-4.13 4.693-7.164 6.613-3.038 1.922-6.312 2.498-6.312 2.498zm-1.03 7.752c-.77 0-1.668.5-1.967.453-.297-.048-2.063-1.869-4.527-3.179-2.465-1.312-6.137-2.105-6.137-2.105s-.458.114.364.389c.82.28 3.856 1.31 5.795 2.219 1.943.913 3.906 2.98 4.083 3.308.174.333.871 1.261 2.314 1.21 1.445-.049 2.017-.877 1.863-1.438-.143-.553-1.017-.857-1.788-.857zm4.056-5.602s2.283 1.302 6.069 1.21c8.065-.202 13.14-5.722 18.423-7.741 5.27-2.023 7.975-.272 7.975-.272s.14-.285-.03-.408c-.745-.557-3.194-1.886-5.894-1.846-8.86.135-17.151 5.721-20.765 7.235-3.495 1.462-5.777 1.822-5.777 1.822zm85.747-61.07c-2.717 2.806-6.772 11.767-8.561 14.213-1.789 2.45-4.034 3.18-5.001 4.167-.851.865-4.106 5.249-4.853 6.312-.745 1.058-.971.756-1.493 1.21-.52.453-.796.48.074.25.871-.223 1.145-.755 2.488-2.269 1.342-1.516 1.27-2.198 3.407-4.115 2.14-1.922 6.016-4.106 7.942-6.465 1.921-2.355 5.848-11.475 7.9-13.695 2.224-2.409 6.107-3.84 6.107-3.84s-3.06-.892-8.01 4.232zm-13.785 16.993s-.1-1.617 1.891-3.992c1.99-2.375 2.688-2.068 4.278-5.554 1.592-3.483 2.294-6.864 3.585-10.549 1.291-3.69 3.532-7.326 3.532-7.326s-2.089.202-4.23 3.084c-2.143 2.878-5.527 8.13-7.269 13.279-1.742 5.15-1.787 11.057-1.787 11.057zm-2.54 3.376s.747-.398.844-4.892c.103-4.494-.246-10.803 1.049-13.934 1.291-3.129 8.161-10.655 8.161-10.655s-2.839.707-6.819 3.888c-3.977 3.179-5.672 7.172-5.473 10.196.2 3.035 1.894 6.465 2.043 9.446.143 2.976.196 5.951.196 5.951zm16.172-30.926s1.695-6.092 2.388-7.575c.703-1.483.734-2.357 4.181-6.225 1.978-2.22 3.92-3.64 4.744-6.733.831-3.101.801-11.746.801-11.746s-.896.803-1.625 2.32c-.733 1.518-.2 7.133-1.495 9.724-1.296 2.595-4.213 8.69-5.675 10 0 0-.297-4.375.234-8.786.53-4.408 2.026-5.752 2.687-8.649.664-2.89.265-10.367.265-10.367s-2.353 2.428-3.519 5.218c-1.156 2.793-1.855 7.807-1.889 11.577-.035 3.772.865 6.835.998 8.988.127 2.154.294 3.165-.568 5.52-.861 2.356-.429.74-.961 3.03a52.855 52.855 0 0 1-1.092 4.007zm-5.37-33.053s2.054 2.59 1.72 5.553c-.332 2.96-1.458 6.867-.297 9.963 1.162 3.094 2.888 3.4 3.353 5.18.466 1.784.495 5.266.495 5.266s.962-6.613.3-8.43c-.662-1.814-.962-.977-1.923-2.894-.964-1.915.031-7.166-.698-10.228-.729-3.065-2.95-4.411-2.95-4.411z' fill='%23717732'/%3e%3cpath d='M469.61 379.429s.624-1.74 4.804-3.783c4.18-2.046 10.473-4.8 11.071-4.446.598.355-.324 2.629-.324 2.629l-4.054 1.234-3.234 1.896-3.782 2.447z'/%3e%3cpath d='M480.266 368.435c-5.342.202-8.255 1.515-9.282 1.718-.354.07-1.123.615-1.78.29-1.252-.62-2.342-2.34-2.342-2.34l-1.129-.943-.265 3.834-7.797-6.761-.831 4.472-.995 2.058-7.73-7.307.365 5.654s-2.023.266-2.123.202l-5.508-3.837-1.624.54 1.792 3.33-6.97.541s-.562.306-1.509 1.176c-.945.872-1.469 1.691-1.469 1.691s-.21.355.037.518c.25.164 2.155.127 2.752-.102.597-.228.982-1.06 1.157-.72.172.344.396 1.871 1.319 1.72.92-.153 4.159-2.607 6.469-1.528 2.573 1.199-3.335 2.941-2.724 4.772.605 1.82 4.863 1.047 5.945.463 1.082-.577 4.315-4.61 5.636-3.078 1.842 2.134-3.867 3.787-2.81 5.918 1.02 2.057 4.205 1.594 5.746.708 1.545-.882 5.13-6.4 5.925-5.212 1.379 2.067-3.024 4.04-1.919 5.64 1.109 1.602 3.547-.058 5.166-1.198 1.617-1.136 2.264-3.84 4.502-5.099 2.24-1.262 2.089-.735 2.704-.757.618-.028 2.347-1.74 2.347-1.74l5.265-2.236 2.576.188 1.33.63 2.639.369.31-2.225s-3.053-1.428-5.175-1.35zm-42.123.042 1.115-1.978-.631-.96s-1.858-1.04-3.55-2.754c-1.692-1.72-2.31-2.113-3.086-2.5-.775-.391-3.382-2.089-3.382-2.089l-1.176-4.338-.695-1.254-2.01.788-2.65-9.332-.516-1.672-1.094-.064-2.171 5.657-2.428-3.533-.617-7.733-1.513 1.697-1.95 1.98-3.463-7.01s-.282-.18-.459.404c-.175.569-.473 2.782-.257 4.095-.926-.578-2.518-1.67-4.649-3.506-3.518-3.03-4.364-4.587-4.364-4.587l-1.64-3.707 1.54-3.259.772-3.887-3.384 1.385-.597-8.786-.523-2.774-4.081 5.832s-1.59-2.248-1.59-2.5c0-.25.073-5.552.073-5.552l-1.095-.33-1.67 3.13s-1.603-3.23-2.31-3.919c.113-1.24.298-4.409-.455-6.856-.955-3.115-2.07-4.773-1.673-7.315.401-2.543 1.433-2.786 1.315-3.918-.12-1.129-1.792.73-1.234-.765.558-1.492 5.893-4.886 4.778-6.663-1.116-1.778-6.25 2.787-5.057-.28 1.193-3.07 6.13-3.113 6.41-7.392.173-2.666-4.66 1.657-5.097.322-.437-1.331 2.984-4.076 2.947-5.813-.04-1.736.637-1.936-.32-2.866-.954-.929-3.9 3.633-3.9 3.633l-3.224-1.214-1.117 4.607-.993 3.915-3.982-2.338 1.074 4.765.957 4.644-4.142-1.051 2.191 3.956 2.853 2.9 1.763 2.39 1.277.686 1.71 1.7.597 2.544s.997 2.788.997 2.91c0 .12.158 2.744.158 2.744l.04 1.815-.09 1.41-.06.531-.088.606-.035 1.662c-.779.075-2.043-1.191-2.505-.402-.496.86 2.39 3.08 1.842 3.635-.547.559-4.777-.857-5.025.505-.25 1.364.398 3.28 2.837 3.887 2.437.607 8.11 1.918 7.166 3.027-.947 1.115-7.117-3.38-6.867-.097.248 3.279 2.389 4.642 3.981 5.25 1.592.607 7.811-.098 7.464 1.363-.348 1.466-5.076-.455-5.524 1.665-.447 2.124 3.285 2.423 4.084 2.423.795 0 3.381-.099 4.376.658.997.757 4.478 4.443 6.67 6.311 1.859 1.584 5.873 4.365 7.045 5.173l-.057-.007c-1.18-.11-3.623-.369-4.011.511-.495 1.136 9.359 4.649 6.53 5.74-2.826 1.086-5.873-3.01-6.689-.507-.818 2.503 1.872 4.62 3.407 5.53 1.532.91 10.27.185 8.558 2.16-1.712 1.983-8.043-1.332-8.102 1.013-.06 2.345 4.22 6.059 6.41 5.955 2.191-.099 4.597-3.614 5.594-1.715.996 1.898-1.693 2.667.417 3.172 2.11.502 3.603-2.162 6.051-1.679 2.448.486 6.292 2.037 8.442 3.996a121.125 121.125 0 0 1 4.358 4.222z'/%3e%3cpath d='M472.17 378.342c1.494.027 1.692.833 1.892.81.2-.028 2.713-2.173 5.1-3.485 2.39-1.315 6.022-2.095 6.022-2.095l.226.328s-4.327 1.081-6.419 2.548c-2.59 1.819-4.628 2.957-4.755 3.283-.125.325-1.068.96-2.537.986-1.467.02-2.091-.855-2.091-1.29 0-.426 1.07-1.108 2.561-1.085zm13.039-6.605s-1.292.135-2.023-.507c-.73-.64-2.356-1.21-3.917-1.21-1.558 0-4.056.86-6.035 2.756-.16.155-.557.884-2.26 2.023.592.114 1.738-.671 2.987-1.682 1.793-1.458 4.048-1.853 5.64-2.083 1.592-.242 2.589.67 3.32 1.171.729.51 2.22.369 2.22.369zm-77.4-31.631c.16-.068.136-.42.03-1.032-.24-.09-1.204-.496-3.369-1.787-2.537-1.515-7.813-5.708-7.813-5.708s2.193 2.123 4.382 4.092c2.188 1.967 6.122 4.39 6.122 4.39l.02.016c.335.033.576.052.628.029zm54.642 38.707s.796-1.045 2.214-3.325c1.418-2.282 2.712-3.011 2.91-3.29.2-.276-.547-1.388-.971-2.248-.421-.858-.347-1.765-.347-1.84 0-.076.52 1.336 1.566 2.12a14.6 14.6 0 0 1 1.676 1.437s2.08-.277 2.133-.681c.05-.406-.052-.682-.4-.832-.346-.153-.746.31-1.691-.105-1.965-.854-2.763-3.835-3.933-3.935-1.168-.1-.333 3.157-.846 3.204-1.817.176-3.235-6.612-7.59-6.89-3.064-.198-3.608.38-3.757 1.06-.147.68 3.708 4.749 2.414 5.324-1.294.586-5.4-6.384-8.386-6.463-2.984-.075-3.234 1.064-3.01 1.719.222.657 3.309 1.236 2.587 3.41-.7 2.108-3.707-3.255-6.468-2.956-2.762.303-3.062.505-3.187 1.287-.122.783.971 1.919.574 2.196-.398.277-2.141.2-3.534 1.16-1.392.963-3.335 3.587-3.335 3.587s1.817-2.574 4.23-2.853c2.413-.275 8.511.027 8.511.027s-.82-.507-1.716-1.314c-.896-.809-1.669-2.448-1.669-2.448s1.345 1.263 2.64 2.321c1.292 1.064 2.91 1.87 2.91 1.87s2.588.253 2.763.557c.173.303-.077.907-1.144 2.066-1.072 1.162-2.614 2.529-2.614 2.529s2.587-1.97 3.085-2.4c.498-.428 2.29-1.792 2.29-1.792s1.892.25 2.09.202c.198-.05.108-.707-1.161-2.574-1.268-1.868-2.472-3.89-2.472-3.89s1.56 1.433 3.135 3.511c1.575 2.077 1.344 3.036 1.99 3.14.648.1 1.692.242 2.164.219.636-.033.473.905-.623 2.574-1.093 1.666-1.739 3.809-1.739 3.809s1.117-1.793 2.312-3.027c1.194-1.238 1.818-2.704 2.29-2.78.475-.074 2.074.126 2.3.03.22-.104-.384-.76-1.229-2.48-.846-1.714-1.12-4.09-1.12-4.09s.821 2.227 2.116 3.84c1.294 1.614 1.792 2.914 2.073 2.932.281.013 1.282-.116 2.008-.106.365.007.406-.08.447.15.124.713-.175 1.139-1.044 2.78-.871 1.64-1.442 3.258-1.442 3.258zm-33.045-19.165c1.866.636 2.587.636 2.587.636s-2.563-1.518-3.235-3.664c-.674-2.143-.074-6.665-1.169-6.612-1.095.052-1.718 3.332-2.812 2.677-1.096-.655.372-6.693-.822-9.264-1.193-2.577-4.006-4.37-4.654-3.437-.646.94-.495 6.489-2.238 5.278-1.742-1.21.15-5.958-.375-8.129-.521-2.173-1.839-3.737-2.834-3.207-.998.534.394 4.596-1.172 4.645-1.567.052-1.343-2.854-2.015-3.13-.67-.277-.896.585-1.27.03-.373-.559-.172-2.629-.994-2.427-.821.202-.671 1.793-.449 2.673.224.886.721 2.149 1.07 2.73.347.581 1.593 1.31 1.495 1.794-.1.48-.75.884-1.592.907-.848.026-2.764-.053-2.764-.053s2.039.635 2.81.711c.772.074 2.268-.328 2.639.353.372.684 2.165 3.104 2.165 3.104s.421-1.262.646-3.486c.224-2.217.124-4.166.124-4.166s.597 2.578.522 4.119c-.072 1.536-.646 4.541-.646 4.541s1.69 1.414 1.195 1.793c-.497.38-2.265.331-4.33.304-2.064-.027-5.001-.733-5.001-.733s2.638 1.264 4.477 1.564c1.843.306 5.849.405 5.849.405l2.737 3.102s1.31-2.25 1.493-4.487c.184-2.241-.05-4.839-.05-4.839s.572 2.337.674 4.333c.098 1.997-.65 5.528-.897 5.83-.25.305-1.647 1.173-2.879 1.483-1.807.455-5.433.914-5.433.914s3.345.447 5.749-.127c2.406-.568 2.687-1.237 3.358-.831.674.406 1.271 1.138 1.271 1.138s1.44 1.117 2.091 1.412c.1.225-1.111.725-1.727 1.113-.612.386-2.231 1.135-2.231 1.135s2.365-.859 3.41-1.135c.523-.143 1.792-.608 1.792-.608l.696.38s.05-.505-.148-1.917a41.847 41.847 0 0 0-.499-2.78s.821 1.289 1.072 2.5c.246 1.211.246 2.447.246 2.447s.2.35 2.067.981zm-47.678-54.624s.532-2.56.532-5.519c0-2.967-2.06-7.545-2.39-8.013a7.528 7.528 0 0 1-.531-.878l1.392-2.15-1.79 1.41s-.994-.203-1.857-.739a3.978 3.978 0 0 1-1.295-1.344s.915.676 1.792 1.042c.875.362 1.094.235 1.094.235l-.691-2.988s-.913-.364-2.945-1.495c-2.031-1.132-3.863-2.907-3.863-2.907s2.748 1.657 4.3 2.3c1.554.649 2.43.69 2.43.69s1.632-.488 2.468-.974c.835-.483 2.549-1.777 2.549-1.777s-1.633.931-2.708 1.173c-1.075.245-2.428.4-2.428.4l-.48-3.63-1.71-1.776c-1.352-1.779-2.391-4.321-2.391-4.321s1.394 1.773 2.512 2.621c1.115.853 2.149 2.223 2.149 2.223s1.273-.688 2.507-1.533c1.232-.847 4.298-3.071 4.298-3.071s-1.75.927-4.179 2.06c-2.43 1.13-2.51 1.011-2.51 1.011s-.197-1.574.161-2.263c.36-.684 1.117-1.816.996-2.502-.12-.69-.636-.446-.836-1.011-.2-.568.637-4.036.637-4.036s.2 1.251.24 1.894c.04.644-.319 1.535.557 1.535.876 0 4.977-4.119 5.493-4.887.517-.766 1.276-2.866-.878-2.017-2.147.847-1.634 2.682-3.421 2.542-.519-.04-1.115-2.341-1.792-1.777-.677.57-2.19 1.98-2.47 3.596-.276 1.615.36 4.08-.556 4.805-.917.728-1.712-2.786-3.505-2.303-1.79.485-2.188 2.948-1.909 3.918.28.968 4.18 5.491 2.947 6.06-1.236.564-4.262-3.84-5.894-.85-1.633 2.986 5.136 6.059 5.97 6.786.836.729.082.932 1.275 2.424 1.195 1.491 2.789 1.858 3.624 2.87.834 1.009 3.304 5.81 3.304 8.92 0 3.111-.198 4.246-.198 4.246zm17.979 26.215s-1.658-1.935-1.108-5.111c.547-3.18 2.738-8.788 1.99-9.494-.745-.704-3.083 3.434-3.682 2.477-.598-.961 1.344-6.565.35-8.89-.998-2.32-1.095-3.784-3.086-3.582-1.993.201-2.837 6.765-3.782 5.605-.948-1.16.545-4.087-.1-5.653-.648-1.566-.997-2.123-1.992-1.873-.994.254-1.443 3.282-2.14 3.235-.697-.052-1.842-3.641-3.284-3.128-1.443.502 3.432 6.863 3.432 6.863s.87-.757 1.32-1.842c.448-1.088.895-2.273.895-2.273s.4 2.07.05 2.879c-.347.805-.621 2.701-.621 2.701s-1.196.378-3.16.073c-1.966-.299-3.584-1.108-3.584-1.108s1.32.884 3.333 1.412a125.61 125.61 0 0 1 4.156 1.189s.525.655 1.418 1.84a436.86 436.86 0 0 0 1.668 2.195s.574-1.21 1.146-3.204c.572-1.994 1.94-5.275 1.94-5.275s-.423 3.963-.897 5.906c-.47 1.946-.969 4.696-.969 4.696s-1.742-.175-4.08-.605c-2.339-.433-5.526-1.236-5.526-1.236s2.788 1.111 5.501 1.842c2.711.727 4.404 1.186 4.404 1.186l2.13 2.816s.583-1.024 1.429-2.207c.845-1.193 1.494-2.807 1.494-2.807s-.374 2.2-1.022 3.511c-.647 1.313-1.095 2.095-1.095 2.095s-1.37.33-2.637.3c-1.27-.022-3.858-.05-3.858-.05s2.166.731 3.882 1.015c1.717.275 2.962.45 2.962.45s.124.781 1.045 2.098c.919 1.31 2.078 1.954 2.078 1.954z' fill='%23717732'/%3e%3c/g%3e%3cpath d='M481.47 388.624s-.972-1.045-2.265-1.727c-1.293-.679-1.728-.478-1.728-.478l-.599-.213 1.134-2.955 8.522-8.142 1.319-8.181.314-.01 4.937-.05-.052 11.168 1.566.709 9.512 5.704-.03 2.483s-.47.167-1.39.53c-.922.367-1.143.637-1.143.637l-3.59.337-6.269-4.546-2.59-2.722-4.725 6.055-2.924 1.4z' fill='%23fff'/%3e%3cpath d='M488.175 366.916s-.14.431-.2 1.69c-.065 1.257.082 7.855-.24 8.758-.32.9-4.908 2.794-7.531 5.079-2.62 2.293-2.719 3.973-2.719 3.973s-.864.067-2.49.672c-1.625.603-2.355 1.514-2.355 1.514s.963-4.07 5.208-7.838c4.25-3.775 6.304-4.093 6.776-4.726.476-.63 0-7.85.102-8.432.096-.58.607-.631.958-.682.35-.05 2.491-.007 2.491-.007zm10.83 24.114s.67-1.31 1.1-1.75c.427-.437 1.461-1.178 1.461-1.178s.161-.166-2.16-1.178c-2.324-1.008-3.518-.673-5.175-1.848-1.659-1.177-3.319-3.199-3.319-3.199l-2.223 1.985s1.33 1.885 2.59 3.097c1.256 1.209 4.11 1.615 5.372 2.322 1.261.709 2.355 1.749 2.355 1.749z' fill='%23016848'/%3e%3cpath d='M492.335 366.869s2.514-.15 2.864.24c.347.388.296.82.31.948.01.122.13 6.099-.31 8.065-.468 2.053-1.529 4.103-2.128 4.71-.598.606-4.377 3.908-6.17 5.655-1.792 1.749-3.615 4.244-3.615 4.244s-.664-.741-1.228-1.451c-.561-.706-1.131-.942-.997-1.412.132-.47 2.026-3.3 5.045-5.285 3.018-1.987 5.542-4.24 6.104-7.47.569-3.233.125-8.244.125-8.244z' fill='%23cd202a'/%3e%3cpath d='M509.135 387.292s-.604-.61-2.73-.644c-2.135-.037-2.31.285-2.31.285s-1.17-1.477-3.05-2.7c-1.883-1.226-3.301-1.045-5.323-2.376-2.024-1.334-3.085-3.278-3.085-3.278l1.559-3.166s1.742 2.45 3.548 3.78c1.81 1.33 5.82 2.626 7.1 3.748 1.277 1.116 4.292 4.35 4.292 4.35z' fill='%23cd202a'/%3e%3cg transform='translate(-.699 1.184) scale(1.16833)'%3e%3cpath d='M452.73 299.48s-4.686-1.817-4.347-3.462c.341-1.64 10.824-4.404 10.824-4.404l.167-2.765s-1.533-.086-4.175.778-6.817 1.987-11.328 1.987c-2.74 0-4.226-.287-4.97-.511-.484-.147-36.95-2.289-38.14-2.277-.513.01-1.166-.007-1.99-.063-4.855-.346-7.978-7.778-7.978-7.778l-2.3.402s.706 3.652-.513 3.975c-2.384.635-18.229-7.837-18.229-7.837l-.875 3.436s9.688 5.183 9.396 7.11c-.292 1.926-3.164 1.78-3.164 1.78l1.231 2.31c.435.039 15.95.787 16.214 5.446.108 1.881-3.805 2.995-3.805 2.995l1.305 1.593v.793s8.617.051 11.003 1.384c2.385 1.334 3.6 3.258 6.523 4.936 2.92 1.68 22.752 1.27 25.85.399 3.503-.987 5.655-4.956 11.35-6.684 5.696-1.726 7.536-1.813 7.536-1.813z' fill='%2330c2dc' stroke='%230872a7' stroke-width='.7'/%3e%3ccircle cx='373.416' cy='292.05' r='2.745' fill='%23fff' stroke='%230872a7' stroke-width='1.37'/%3e%3ccircle cx='389.095' cy='279.26' r='2.746' fill='%23fff' stroke='%230872a7' stroke-width='1.37'/%3e%3ccircle cx='454.822' cy='299.74' r='2.817' fill='%23fff' stroke='%230872a7' stroke-width='1.37'/%3e%3cpath d='M361.11 275.15c-.895 2.072 2.638 6.005 5.11 6.437 2.47.432 3.833-.171 4.26-1.382.427-1.214.095-2.528-.469-3.282-1.576-2.12-8.01-3.847-8.9-1.773z' fill='%23f8c83c'/%3e%3cpath d='M368.9 278.31c-.067-1.252-2.129-2.466-3.45-2.466-1.32 0-2.642-.04-2.428.652.212.689 3.621 1.6 3.705 1.987.086.389-1.021.862-.468 1.382.554.52 1.236.132 1.79-.258s.893-.52.851-1.297z' fill='%23fff'/%3e%3cpath d='M390.71 301.99c.567 1.825-.851 2.718-2.684 3.542-1.832.82-5.58.343-6.43-1.123-.854-1.47 1.362-3.847 3.62-4.41 2.257-.56 4.982.347 5.494 1.991z' fill='%23f8c83c'/%3e%3cpath d='M386.92 303.07c.716-.124.725 1.083 1.364.992.639-.084 1.192-1.12 1.021-1.814-.17-.692-1.364-1.642-2.385-1.554-1.022.087-4.046 2.634-3.707 3.326.342.69 1.023.606 1.578.347.554-.26 1.363-1.167 2.129-1.297z' fill='%23fff'/%3e%3cpath d='M458.35 292.53c1.661 2.21 4.656.173 5.45-.688.796-.865 3.237-2.277 2.244-3.718-.997-1.44-2.697-1.324-3.834-1.27-1.136.058-3.465 1.732-3.86 2.507-.399.781-.74 2.193 0 3.169z' fill='%23f8c83c'/%3e%3cpath d='M458.89 291.07s.145-2.407 2.39-2.507c1.276-.057 1.332.347 2.3.896.962.544 1.332-.72 1.332-.72s.058 1.7-1.501 1.755c-1.564.056-.999-.69-2.53-.921-1.35-.205-1.991 1.497-1.991 1.497z' fill='%23fff'/%3e%3c/g%3e%3cg fill='%23f9aa51' stroke='%23953220' stroke-width='.7' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m492.837 335.792-1.295-.84s-2.589-.133-4.346-.1c-1.76.032-5.242.202-5.242.202l5.206 15.111 6.239 8.988 2.391.859 4.844-.321.824-2.355-1.823-14.575-6.797-6.97z' stroke-width='.701'/%3e%3cpath d='m475.64 336.738.249-1.717s1.177-.15 2.82-.2c1.642-.054 3.077.108 3.253.236.17.127 3.634 4.36 4.825 7.133 1.192 2.78 2.587 7.421 4.13 10.254 1.544 2.824 4.88 7.571 4.88 7.571s-1.67.098-3.138.098-3.1.051-3.1.051l-2.799-1.084-8.782-13.656-2.339-8.687z' stroke-width='.701'/%3e%3cpath d='M471.971 334.88s3.583-.066 3.916.135c.331.203 4.312 3.74 5.903 8.112 1.595 4.374.797 4.982 2.857 9.493 2.053 4.51 4.91 7.538 4.91 7.538s-5.973.337-9.357-.27c-3.385-.606-4.58-.538-5.378-1.477-.794-.947-2.654-2.09-2.654-2.09h-3.381l.794-4.712-.927-10.567.199-5.458 3.117-.704zm35.832 2.792-5.705-2.353-10.617-.54s.393 2.83.792 5.455c.4 2.622 2.26 8.814 3.985 11.846 1.723 3.029 3.452 6.732 4.382 7.605.931.876 7.035-1.649 7.035-1.649l3.979-.605-.531-4.344-.566-1.345.933-12.353-.867-1.917z' stroke-width='.701'/%3e%3cpath d='M470.242 337.742c0 1.35 1.428 1.416 1.792 1.35.364-.07 1.593-.54 1.593-2.36 0-1.817-1.127-3.228-3.352-3.364-2.223-.134-3.914 2.66-3.914 4.543 0 1.884 1.89 2.86 1.89 3.57 0 0-1.89 1.75-1.792 4.81.099 3.065 2.59 5.421 2.59 5.421s-2.657 2.12-2.657 4.241c0 2.121 2.027 3.531 3.917 3.531 1.89 0 4.313-1.21 4.313-2.822 0-1.618-1.427-2.59-2.62-2.59-1.195 0-1.693.702-1.693 1.241m39.317-16.717c0 1.313-.849 1.368-1.596 1.368-.746 0-1.74-.407-1.74-2.075 0-1.665 2.191-2.574 3.585-2.574 1.389 0 3.781 1.918 3.781 4.243 0 2.32-1.692 3.885-1.692 3.885s1.043.504 1.043 3.43c0 2.932-1.888 5.05-1.888 5.05s2.466.962 2.466 3.992c0 3.024-2.093 4.016-3.538 4.016-1.445 0-3.96-.861-3.96-2.931 0-2.074 1.297-2.801 2.29-2.801.996 0 1.968 1.161 1.968 2.296' stroke-width='.701'/%3e%3cpath d='M473.899 354.601s.37.244.649.836c.284.6.488 1.557 1.143 2.14 1.294 1.162 11.146 1.519 14.135 1.519 2.984 0 11.942.404 13.635-.607 1.694-1.008 1.892-2.677 2.936-3.435 1.045-.755 1.344-.703 1.344-.703l-1.295 1.108-.094 2.119.766 1.161s-.17.61-1.219 1.266c-1.044.657-1.99.857-3.433 1.01-1.443.152-20.301.1-23.343-.403-3.034-.508-2.834-.457-3.73-1.112a6.604 6.604 0 0 1-1.394-1.363l.399-1.362-.5-2.173zm30.598-18.096 1.692.74s-1.445.45-2.534 3.432c-1.098 2.983-.202 3.94-.946 4.24-.748.306-8.91.052-8.91.052l-1.398-3.386z' fill='%23953220' stroke='none'/%3e%3c/g%3e%3cg fill='%23231f20'%3e%3cpath d='M530.527 335.324s-1.394-.505-2.039-1.666c-.65-1.162-1.196-2.626-.7-2.93.503-.303 1.544.704 1.448 1.619-.103.906 1.291 2.978 1.291 2.978zm15.948-4.404s.995 1.814 1.342 2.016c.35.2 1.939.914 1.939.914s-2.237 0-2.932-.609c-.7-.607-1.694-2.273-1.694-2.273z'/%3e%3cpath d='M551.289 332.392s-1.344.805-2.486.352c-1.145-.454-2.038-1.113-1.597-1.614.452-.507.746-.304 1.344.35.599.661 2.739.912 2.739.912zm8.107-6.87s-1.095.964-1.89.964c-.797 0-2.39-.307-2.39-.66 0-.353 2.087-.555 2.437-.503.352.05 1.843.2 1.843.2zm-12.15-16.1s-1.794.554-2.388 1.466c-.594.908-.449 1.917.3 1.865.743-.048.944-1.058.944-1.362 0-.298 1.144-1.969 1.144-1.969zm-8.003 4.393s-1.342.854-1.693 1.615c-.35.755-.649 2.369.148 2.423.799.05 1.049-1.214 1.095-1.869.053-.656.45-2.169.45-2.169z'/%3e%3cpath d='m524.92 323.501-4.393 4.65s10.102 5.656 17.863 5.404c7.768-.25 16.627-6.31 17.22-7.574.6-1.258.102-6.664-.896-8.382-.996-1.715-6.37-5.905-8.408-5.704-2.038.201-5.627 2.928-8.96 6.16-3.335 3.232-2.99 5.954-7.615 5.708-4.628-.254-4.814-.262-4.814-.262z' fill='%238cbebf' stroke='%2304534e' stroke-width='.701'/%3e%3cpath d='M523.798 325.359s10.815 1.618 13.93-1.143c3.124-2.758 6.505-8.144 8.696-9.358 2.191-1.214 3.181-1.214 3.181-1.214s1.613 1.027 2.357 1.67c.748.636 2.754 2.285 2.754 2.285l.865 5.137.065 2.824-3.38 2.765-6.209 2.86-5.936 1.85-5.043-.136-10.217-2.962-2.591-1.834-.665-.59z' fill='%230c8489'/%3e%3cpath d='M540.283 319.13c0-.92.604-.875 1.428-.875s1.725.157 1.725 1.078c0 .922-.9 2.253-1.725 2.253-.825 0-1.428-1.532-1.428-2.455zm4.346 2.724c0-.83.636-1.28 1.623-1.28.991 0 1.892 1.109 1.892 1.935 0 .828-.8 1.499-1.785 1.499-.99 0-1.73-1.327-1.73-2.154zm-1.496 6.472c0-1.034.634-1.249 1.626-1.249.987 0 1.595.466 1.595 1.498 0 1.03-.807 1.869-1.795 1.869-.991 0-1.426-1.09-1.426-2.118zm-5.7-1.986c0-1.104 1.048-1.449 1.938-1.449.89 0 1.61.897 1.61 2.007 0 1.107-.72 2-1.61 2-.89 0-1.939-1.452-1.939-2.558zm-9.032 1.098a2.208 2.208 0 1 1 4.415 0 2.206 2.206 0 0 1-2.209 2.202 2.206 2.206 0 0 1-2.206-2.202z' fill='%2304534e'/%3e%3cpath d='M544.63 321.854c0-.746 1.019-1.28 1.622-1.28.609 0 1.098.6 1.098 1.349 0 .74-.49 1.345-1.097 1.345-.604 0-1.624-.673-1.624-1.414zm-1.462 6.204c0-.858.791-1.214 1.695-1.214.905 0 1.589.355 1.589 1.214 0 .853-.735 1.545-1.64 1.545-.907 0-1.644-.692-1.644-1.545zm-5.7-1.893c0-.945 1.552-1.376 2.194-1.376.641 0 .53.632.53 1.58 0 .952-.525 1.717-1.166 1.717-.64 0-1.559-.968-1.559-1.921zm2.686-7.14c0-.863.672-.909 1.232-.909.554 0 .96.26.96 1.128 0 .864-.453 1.564-1.011 1.564-.561 0-1.181-.917-1.181-1.782zm-11.777 7.747c0-1.004.874-1.951 2.158-1.951 1.283 0 2.586.443 2.586 1.444 0 1.004-1.568 2.728-2.852 2.728-1.287 0-1.892-1.217-1.892-2.221z' fill='%238cbebf'/%3e%3cpath d='M532.513 325.02s-1.492.254-2.29 1.01c-.793.759-.896 1.62-.446 1.87.446.25.997-.556 1.145-.909.146-.355 1.592-1.972 1.592-1.972zm7.174-1.566s-1.442 1.012-1.59 2.023c-.152 1.013 0 1.514.4 1.566.398.048.643-1.316.496-1.82-.148-.501.694-1.769.694-1.769z'/%3e%3cpath d='M540.879 324.973s-.944.048-1.592.655c-.644.608-1.242 1.363-.793 1.415.444.048 1.146-.302 1.19-.708.051-.402 1.195-1.362 1.195-1.362zm1.542-8.33s-.748.607-1.145.958c-.401.356-.895 1.364-.401 1.62.5.254.848-.204 1.196-.907.35-.713.35-1.67.35-1.67zm5.433 3.481s-1.397.197-1.843.804c-.445.607-.749 1.316-.15 1.316.596 0 .745-.304.997-.857.25-.555.996-1.262.996-1.262zm-.853 6.414s-.297.96-1.144 1.412c-.846.46-1.092.862-1.442.254-.35-.604.098-.91.547-1.064.447-.147 2.039-.6 2.039-.6z'/%3e%3cpath d='M555.658 322.192s.6 2.979-1.987 4.44c-2.587 1.467-9.854 6.616-16.72 6.01-6.87-.608-14.684-4.543-14.684-4.543l-1.092.504 1.74.757 5.325 2.22 6.067 1.77 3.786.25 3.285-.405 6.068-2.015 5.143-2.628 2.67-2.12.715-.877-.066-1.243v-1.717z' fill='%2304534e'/%3e%3cpath d='M420.81 283.38s1.593 1.364 1.443 2.524c-.15 1.161-.548 1.62-.994 1.416-.45-.203-.45-1.416-.35-1.917.1-.51-.1-2.023-.1-2.023zm11.776 10.948s-.448 2.017-1.246 2.219c-.795.202-1.392-.655-1.243-1.01.15-.354.796-.05 1.145-.354.348-.298 1.344-.855 1.344-.855zm-25.632 1.565s.546 1.162 1.592 1.364c1.044.2 1.543-.507 1.393-.86-.148-.35-.597-.254-1.145-.254-.547 0-1.84-.25-1.84-.25zm4.58 8.985s.947 1.113 2.24 1.263c1.291.15 1.94-.859 2.038-1.161.1-.304-1.492-.255-1.99.15-.497.405-2.289-.252-2.289-.252zm8.108 6.917s2.089-.405 2.435-.958c.35-.557.897-1.515.451-2.073-.45-.553-.797.86-1.046 1.412-.249.559-1.84 1.619-1.84 1.619z'/%3e%3cpath d='M432.691 306.303s1.396-9.359-6.17-15.956c-7.566-6.595-12.476-4.982-15.066-2.554-2.587 2.42-4.843 10.366 3.185 17.301 8.031 6.933 17.92 4.779 17.92 4.779l.131-3.57z' fill='%238cbebf' stroke='%2304534e' stroke-width='.701'/%3e%3cpath d='M409.618 296.396s-.144-5.142 2.284-6.672c2.428-1.537 10.428-2.87 14.371 4.727 3.943 7.589 4.021 11.386 3.027 15.225l-4.22-.042-6.53-2.662-5.416-4-3.517-6.576z' fill='%230c8489'/%3e%3cpath d='M431.687 307.647s-1.325 1.482-4.048 1.348c-2.72-.137-15.394-3.435-18.58-14.81l.201 2.49.13.808.837 2.293 2.666 3.871 3.347 2.869 4.22 2.183 3.026.887 3.94.688h2.27l1.992-2.627z' fill='%2304534e'/%3e%3cpath d='M425.086 304.364c0-1.015.52-1.047 1.328-1.047.806 0 1.426-.355 1.426.655 0 1.015-.554 2.476-1.36 2.476-.807 0-1.394-1.075-1.394-2.084zm.537-6.018c0-.7.638-1.264 1.43-1.264.788 0 1.423.564 1.423 1.264 0 .698-.635 1.258-1.423 1.258-.79 0-1.43-.56-1.43-1.258zm-5.748 6.637c0-.547.72-.992 1.61-.992.889 0 1.609.445 1.609.992 0 .547-1.6 1.295-2.489 1.295-.887 0-.73-.747-.73-1.295zm-.525-7.092c0-.891.432-.607 1.211-.607.781 0 1.743.254 1.743 1.147 0 .892-.963 2.086-1.743 2.086-.778 0-1.211-1.736-1.211-2.626zm-5.34 1.191c0-.75.507-1.801 1.46-1.801.951 0 1.989 1.05 1.989 1.802s-.771 1.362-1.726 1.362c-.951 0-1.722-.61-1.722-1.362zm.958-6.273c0-.778.531-.738 1.508-.738.982 0 1.777.397 1.777 1.181 0 .778-1.145 1.748-2.124 1.748-.98 0-1.16-1.406-1.16-2.191zm5.784-.607c0-.755.642-.508 1.559-.508.918 0 1.66.61 1.66 1.364 0 .751-1.173 1.597-2.09 1.597-.917 0-1.13-1.702-1.13-2.453z' fill='%2304534e'/%3e%3cpath d='M414.968 292.645c.131-.54.507-.911 1.194-.911.686 0 1.293.13 1.293.911 0 .778-.557 1.416-1.243 1.416-.688 0-1.431-.66-1.244-1.416zm-1.063 6.157c0-.761.381-1.479 1.16-1.479.779 0 1.394.077 1.394.841 0 .765-.682 1.65-1.46 1.65-.779 0-1.094-.249-1.094-1.012zm6.8-6.495c0-.606.518-.673 1.26-.673.741 0 1.227.155 1.227.755 0 .608-.6 1.095-1.343 1.095s-1.145-.573-1.145-1.177zm-1.32 5.9c0 .828.607 1.501 1.36 1.501.75 0 1.558-.658 1.558-1.482 0-.833-.84-1.619-1.593-1.619-.75 0-1.325.773-1.325 1.6zm6.472-.865c0 .75.652 1.364 1.458 1.364.807 0 1.46-.615 1.46-1.364 0-.754-.653-1.362-1.46-1.362-.805 0-1.458.608-1.458 1.362zm-6.24 7.57c0-.657.685-1.294 1.363-1.294.677 0 1.327.419 1.327 1.077 0 .66-1.179 1.549-1.858 1.549-.678 0-.831-.671-.831-1.331zm5.504-.969c0-.807.616-.875 1.46-.875s1.26.081 1.26.89c0 .81-.681 1.47-1.525 1.47-.844 0-1.195-.675-1.195-1.485z' fill='%238cbebf'/%3e%3cpath d='M426.617 294.48s.844 1.057.993 1.865c.148.807.148 1.718-.15 1.82-.298.1-.795-.507-.944-1.262-.149-.76.1-2.423.1-2.423zm-4.826-5.152s.547.86.547 1.618c0 .757-.1 1.564-.497 1.564-.398 0-.398-.756-.398-1.313 0-.554.348-1.87.348-1.87zm-5.678.759s.549.86.549 1.618c0 .755-.1 1.565-.498 1.565-.4 0-.4-.757-.4-1.31 0-.56.349-1.872.349-1.872z'/%3e%3cpath d='M414.127 291.15s.746.203 1.392.705c.648.505.896 1.109.648 1.413-.25.304-.845-.148-.994-.504-.15-.354-1.046-1.614-1.046-1.614zm4.323 5.947s1.095.05 1.693.607c.596.556 1.093 1.011.746 1.416-.349.402-1.195-.305-1.544-.706-.348-.404-.895-1.317-.895-1.317zm-5.27-.199s.997.25 1.493.603c.5.357.649 1.064.4 1.214-.25.148-.597-.102-1.045-.555-.449-.456-.847-1.262-.847-1.262zm12.736 3.996s.35 1.212.35 2.065c0 .861.1 1.618-.3 1.618-.398 0-.597-1.058-.597-1.716 0-.66.547-1.967.547-1.967zm-1.437 1.963s.896.352 1.294.705c.397.355.498.911.2 1.011-.299.1-.499-.555-.748-.807-.247-.252-.746-.91-.746-.91zm-5.678.35s.957.113 1.376.399c.415.284.458 1.594.415 1.764-.04.168-.665.054-.918-.57-.246-.625-.873-1.593-.873-1.593z'/%3e%3cpath d='M416.604 285.893s-5.013 1.086-5.929 4.319c-.917 3.231-.957 6.825-.957 6.825L409 292.92l.997-2.667 1.458-2.45 2.207-1.389 1.988-.686zm15.644 19.172s.52-1.252-.954-5.208c-1.475-3.959-4.499-9.131-4.499-9.131l2.35 2.665 1.87 3.03.915 2.786.677 2.546-.039 2.5z' fill='%2304534e'/%3e%3cpath d='M437.318 298.662s1.74 1.14 1.916 1.768c.175.634.247.837-.199 1.012-.448.181-1.17-.528-1.37-1.012-.2-.48-.347-1.768-.347-1.768zm-7.348 19.745s.822-1.54 1.915-2.12c1.095-.58 1.916-.506 2.215-.15.299.353-.72 1.16-1.467 1.439-.747.278-2.663.83-2.663.83zm12.35 4.72s1.219-.58 2.015-1.44c.797-.855.896-1.46.597-1.765-.298-.302-1.294.203-1.743.883-.447.678-.87 2.322-.87 2.322zm-1.345-1.157s.424-1.588.848-2.095c.423-.505 1.019-.781 1.468-.505.45.277.174.989-.15 1.362-.323.38-2.166 1.238-2.166 1.238z'/%3e%3cpath d='M461.62 312.566s-7.693-11.126-19.641-11.714c-9.556-.472-12.575 8.061-12.227 10.635.342 2.534 3.932 8.095 16.672 9.034 12.741.944 14.797-6.005 15.329-6.343.53-.338-.133-1.612-.133-1.612z' fill='%238cbebf' stroke='%2304534e' stroke-width='.701'/%3e%3cpath d='M452.542 304.925s3.184 2.427 4.53 4.344c1.342 1.917 1.642 3.333.846 3.586-.798.247-7.715-6.164-13.388-7.524-5.675-1.365-10.6-.1-11.696 2.626-1.092 2.728-.695 6.816 1.893 8.478 2.589 1.672 14.731 3.637 14.731 3.637s5.524-.757 5.722-.856c.2-.101 3.534-1.97 3.534-1.97l.745-1.92.898-2.524.398-1.01-2.937-3.23-5.275-3.637z' fill='%230c8489'/%3e%3cpath d='M442.786 306.49c0 .713-.75 1.066-1.492 1.066-.743 0-1.37-.376-1.37-1.087 0-.712.602-1.289 1.345-1.289.742 0 1.517.599 1.517 1.31zm-7.01 2.524c0-.714.801-.703 1.607-.703.804 0 1.456.585 1.456 1.3 0 .713-1.265 1.698-1.993 1.352-.893-.43-1.07-1.228-1.07-1.95zm7.536 4.123c0-.907.769-1.645 1.719-1.645.947 0 1.715.738 1.715 1.645 0 .904-1.291 1.888-2.239 1.888s-1.195-.984-1.195-1.888z' fill='%2304534e'/%3e%3cpath d='M437.61 314.82c0-.793.817-.958 1.519-.958.699 0 1.592.747 1.592 1.54 0 .794-.893 1.337-1.592 1.337-.701 0-1.519-1.123-1.519-1.92z' fill='%238cbebf'/%3e%3cpath d='M447.81 317.589c0-.647.385-1.224 1.046-1.224.66 0 1.467.388 1.467 1.033 0 .651-.656 1.364-1.317 1.364a1.184 1.184 0 0 1-1.196-1.173zm4.58-3.493c0-.824.466-.736 1.27-.736s1.617.465 1.617 1.289c0 .824-1.012 1.261-1.816 1.261s-1.072-.996-1.072-1.814z' fill='%2304534e'/%3e%3cpath d='M442.342 305.836c0 .637-.264.98-.896.98-.631 0-1.394-.343-1.394-.98 0-.644.29-.838.921-.838.632 0 1.37.194 1.37.838zm-3.657 2.98c0 .7-1.057 1.137-1.717 1.137-.66 0-1.095-.437-1.095-1.138 0-.696.51-.906 1.172-.906.66 0 1.64.21 1.64.906zm1.624 5.888c0 .61-.232 1.081-.944 1.081-.714 0-1.643-.47-1.643-1.081 0-.613.257-1.037.971-1.037s1.616.424 1.616 1.037zm6.087-1.998c0 .64-1.255 1.363-1.917 1.363-.66 0-.944-1.179-.944-1.816 0-.644.532-1.16 1.194-1.16.66 0 1.667.972 1.667 1.613zm8.832 1.893c0 .667-1.061.63-1.667.63-.603 0-1.145-.747-1.145-1.41 0-.673.2-1.29 1.693-1.114.6.07 1.12 1.228 1.12 1.893zm-5.222 2.698c0 .666-.51 1.21-1.142 1.21-.63 0-1.145-.544-1.145-1.21 0-.67.514-.935 1.144-.935.632 0 1.143.264 1.143.935z' fill='%238cbebf'/%3e%3cpath d='M450.801 313.617s1.242-.404 2.187-.308c.947.104.999.458.999.607 0 .154-.748.458-1.097.352-.35-.096-2.089-.65-2.089-.65zm-5.176 4.381s.996-.607 1.742-.755c.745-.15 1.344.098 1.293.553-.05.457-.296.559-1.043.559-.745 0-1.992-.357-1.992-.357zm-3.33-7.665s2.138.91 2.589 1.767c.446.86.646 1.061.198 1.314-.447.252-.947-.307-1.244-.707-.3-.403-1.542-2.374-1.542-2.374z'/%3e%3cpath d='M441.746 313.056s1.643-.452 2.389-.452c.748 0 .947.05 1.046.404.1.35-.166.503-.78.47-.613-.036-2.655-.422-2.655-.422zm-5.245.105s1.792.239 2.239.707c.449.471.449.896.265 1.16-.182.271-1.029.102-1.293-.168-.266-.27-1.212-1.699-1.212-1.699z'/%3e%3cpath d='M436.243 315.743c.083-.083.695-1.011 1.343-1.227.646-.22 1.393-.184 1.525.149.136.336-.562.84-1.026.944-.465.1-1.842.134-1.842.134zm-1.354-7.839 1.774.488c.648.488.796.876.648 1.063-.15.182-.78.285-1.312-.067-.781-.527-1.111-1.484-1.111-1.484zm3.89-4.521s1.81.504 2.407 1.327c.595.827.512 1.315.214 1.483-.298.169-.997-.25-1.392-.62-.4-.374-1.229-2.19-1.229-2.19z'/%3e%3cpath d='M459.458 316.386s-3.682 3.132-11.992 2.83c-8.312-.304-15.828-3.84-17.717-7.727l.745 1.919 1.843 2.473 5.823 2.98 6.52 1.46 5.175.306 4.877-.858s3.582-1.717 3.783-1.817c.198-.1.597-.96.597-.96zm1.098-3.938s-1.392-1.718-3.335-3.535c-1.942-1.82-9.505-6.72-9.505-6.72l6.12 2.78 4.033 3.386 2.886 3.175-.198.914z' fill='%2304534e'/%3e%3cpath d='M460.907 305.076s2.09.81 2.439 1.314c.35.503.795.96.795.96s-.546 1.362-1.043.808c-.5-.558-.598-.558-1.146-1.316-.548-.76-1.045-1.766-1.045-1.766zm6.215-3.33s1.943.81 2.638 1.77c.697.96.549 1.766.25 1.867-.3.103-1.592-1.011-1.792-1.463-.2-.452-1.096-2.173-1.096-2.173z'/%3e%3cpath d='M469.073 301.35s1.84 1.366 2.138 1.968c.3.607.897 1.412.3 1.615-.598.202-1.443-.705-1.692-1.258-.25-.56-.746-2.325-.746-2.325zm10.492 2.464s1.444.5 1.594 1.717c.148 1.213-.15 2.07-.15 2.07s-.996-.857-.996-1.113c0-.248.15-.453 0-1.005a561.67 561.67 0 0 0-.448-1.669zm2.792.97s1.145 1.162 1.296 1.917c.147.756.295 1.265-.348 1.363-.649.106-.995-.657-.995-1.31 0-.66.047-1.97.047-1.97zm-18.81 22.923s.895.403 1.74.1c.847-.304 1.547-1.06 1.394-1.565-.148-.509-.595-.961-1.244-.303-.647.655-.296.961-.796 1.207l-1.094.561zm10.352 2.815s1.394-.201 2.34-1.215c.945-1.005 1.344-1.712.696-1.966-.646-.253-1.493 0-1.642.806-.15.809-1.394 2.375-1.394 2.375zm8.505.305s1.049-.608 1.846-1.362c.794-.76 1.24-1.21.693-1.767-.546-.56-.945-.156-1.192.1-.25.254 0 .254-.298 1.06-.303.807-1.049 1.969-1.049 1.969z'/%3e%3cpath d='M484.998 330.78s1.121-1.364 1.382-2.126c.25-.754.398-1.612-.111-1.564-.51.048-1.127.76-1.16 1.316-.04.553-.111 2.373-.111 2.373z'/%3e%3cpath d='M459.108 316.993c.073-3.74 5.375-12.369 11.493-12.27 2.549.045 7.545 1.37 11.597 3.183 3.38 1.513 4.48 3.185 6.72 3.736 2.24.555 5.623.15 5.623.15l7.614-.857-5.971 8.737-2.136 1.916s-1.895 3.686-7.318 5.804c-5.426 2.12-14.583.555-18.714-.453-4.13-1.008-9.007-4.944-8.908-9.945z' fill='%238cbebf' stroke='%2304534e' stroke-width='.701'/%3e%3cpath d='m459.108 316.993.399.009c.012-.84.337-2.037.92-3.325.87-1.938 2.316-4.1 4.086-5.757 1.772-1.654 3.85-2.793 5.984-2.793h.098c1.214.023 3.085.357 5.138.912a45.125 45.125 0 0 1 6.305 2.232c1.657.74 2.743 1.517 3.724 2.196.978.672 1.862 1.27 3.061 1.564.967.24 2.095.308 3.098.308 1.458 0 2.658-.143 2.667-.146l6.743-.761-5.446 7.965-2.16 1.938-.035.066-.003.008c-.087.164-1.965 3.598-7.102 5.61-1.9.741-4.33 1.024-6.837 1.024-4.394 0-9.035-.86-11.638-1.497-1.968-.477-4.143-1.666-5.804-3.32-1.662-1.655-2.803-3.756-2.802-6.082l.003-.142-.4-.01-.399-.01-.002.161c.002 2.603 1.272 4.9 3.04 6.658 1.773 1.764 4.053 3.009 6.175 3.53 2.651.645 7.333 1.523 11.825 1.523 2.568 0 5.077-.286 7.122-1.083 5.544-2.17 7.501-5.943 7.527-5.997l-.35-.187.262.3 2.173-1.947 6.501-9.504-8.486.956-.2.019c-.394.04-1.321.117-2.376.117-.969 0-2.05-.065-2.91-.278-1.04-.26-1.822-.775-2.798-1.451-.974-.672-2.127-1.492-3.855-2.26-2.047-.922-4.326-1.708-6.42-2.277-2.094-.57-3.995-.917-5.329-.945h-.112c-1.612 0-3.15.57-4.543 1.462-2.091 1.333-3.872 3.395-5.15 5.485-1.276 2.093-2.058 4.2-2.094 5.719l.399.01z' fill='%2304534e'/%3e%3cpath d='M496.085 318.162c-.645.505-1.342.505-2.139.505-.8 0-17.766-10.35-23.042-9.898-5.274.453-10.3 2.728-10.45 8.132-.148 5.398 1.195 5.452 2.288 6.966 1.097 1.515 11.448 3.789 11.448 3.789l6.32-.107 5.08-.552 4.476-2.423 2.44-1.967 1.64-2.021 1.94-2.423z' fill='%230c8489'/%3e%3cpath d='M469.272 315.405c0 1.06-.41 1.801-1.442 1.801-1.028 0-1.798-.467-1.798-1.528 0-1.055.586-1.452 1.616-1.452 1.032 0 1.624.12 1.624 1.179zm1.776-4.721c0-.881.851-1.266 1.827-1.266s1.726.355 1.726 1.235c0 .875-.771 1.55-1.746 1.55-.977 0-1.807-.642-1.807-1.52zm10.164 2.758c0-.765.657-1.385 1.47-1.385.809 0 1.465.62 1.465 1.385 0 .766-.656 1.387-1.465 1.387-.813 0-1.47-.621-1.47-1.387zm2.045 6.227c0-.979.711-1.769 1.592-1.769.88 0 1.7.413 1.7 1.387s-.318 1.925-1.197 1.925c-.878 0-2.095-.568-2.095-1.542zm-4.93 3.983c0-.837.744-1.514 1.668-1.514.92 0 1.664.676 1.664 1.514 0 .84-.657 1.382-1.575 1.382-.922 0-1.758-.542-1.758-1.382zm-9.312-1.612c0-.811.656-1.464 1.467-1.464a1.465 1.465 0 1 1 0 2.928 1.465 1.465 0 0 1-1.467-1.464z' fill='%2304534e'/%3e%3cpath d='M469.213 315.182c0 .832-.714 1.515-1.592 1.515-.881 0-1.594-.682-1.594-1.515 0-.838.707-1.17 1.585-1.17.88.002 1.602.332 1.602 1.17zm4.931-4.801c0 .809-.251 1.331-1.104 1.331-.851 0-1.981-.522-1.981-1.331 0-.81.693-1.462 1.542-1.462.851 0 1.542.652 1.542 1.463zm9.85 2.628c0 .696-.647 1.257-1.444 1.257-.798 0-1.443-.562-1.443-1.257 0-.698.645-1.266 1.442-1.266.798 0 1.444.568 1.444 1.266z' fill='%238cbebf'/%3e%3cpath d='M478.77 317.168c0 1.066-.41 1.808-1.441 1.808-1.03 0-1.8-.471-1.8-1.53 0-1.06.585-1.45 1.617-1.45 1.031 0 1.625.12 1.625 1.172z' fill='%2304534e'/%3e%3cpath d='M471.656 321.69c0 .84-.715 1.516-1.593 1.516-.879 0-1.593-.676-1.593-1.516 0-.83 1.012-1.258 1.893-1.258.877 0 1.292.428 1.292 1.258zm6.81-4.697c0 .836-.69 1.513-1.542 1.513-.851 0-1.542-.676-1.542-1.512 0-.834.691-1.518 1.542-1.518.852 0 1.542.684 1.542 1.517zm8.05 2.08c0 .921-.56 1.655-1.522 1.655s-1.74-.747-1.74-1.662c0-.921.279-1.236 1.238-1.236.96 0 2.025.323 2.025 1.243zm-5.151 4.229c0 .867-.583 1.36-1.464 1.36-.88 0-1.724-.493-1.724-1.36 0-.862.754-1.22 1.632-1.22.876 0 1.556.358 1.556 1.22z' fill='%238cbebf'/%3e%3cpath d='M481.96 318.255s2.532-.254 2.983.202c.45.455.4 1.108.199 1.312-.2.202-1.197.251-1.443-.098-.247-.357-1.739-1.416-1.739-1.416zm-2.488-8.178s1.942.5 2.736 1.31c.797.808.649 1.618.5 1.768-.15.149-.849.305-1.394-.3-.546-.607-1.842-2.778-1.842-2.778zm-5.772 3.937s2.265 1.235 2.764 1.94c.497.706.621 1.265.398 1.565-.225.303-1.347-.076-1.519-.454-.173-.377-1.642-3.051-1.642-3.051zm-.993 1.741s2.538.33 3.16.807c.622.481 1.07.506 1.02.884-.048.38-.321.66-.72.606-.4-.052-1.495-.531-1.742-.757a811.17 811.17 0 0 0-1.718-1.54zm-2.92-7.43s2.589.406 3.12.808c.53.406.663 1.552.066 1.89-.598.33-1.26-.337-1.46-.809-.2-.471-1.727-1.89-1.727-1.89zm-5.586 3.913s2.382 1.133 3.122 2.186c.398.568.747 1.058 0 1.314-.683.226-1.393-1.01-1.393-1.314 0-.302-1.729-2.186-1.729-2.186z'/%3e%3cpath d='M463.675 315.335s1.526-.338 2.258-.338c.728 0 1.778-.253 1.791.338.01.59-.895.703-1.434.533-.532-.182-2.614-.533-2.614-.533zm13.18 8.505s1.668-1.039 2.488-.862c.82.18 1.094.105 1.094.607 0 .506-.971.405-1.27.405-.299 0-2.313-.15-2.313-.15zm-9.23-1.344s.644-.96 1.342-1.056c.697-.104.994-.052 1.095.248.1.307-.597.86-.897.86-.297 0-1.54-.052-1.54-.052z'/%3e%3cpath d='M494.005 320.813s-2.536 3.055-6.071 4.57c-3.532 1.516-6.22 2.017-11.148 1.715-4.926-.302-7.314-1.06-10.65-2.774-3.335-1.717-5.972-4.19-6.47-5.251-.496-1.064.549 1.767.549 1.767l3.036 3.985 3.632 1.618 5.325 1.31 5.027.607 3.83-.096 4.58-.713 2.935-1.054 1.993-1.215 1.544-1.266zm-4.743-9.018s-1.38.456-4.414-1.416c-3.038-1.865-6.672-4.293-13.539-4.34-6.867-.049-9.056 4.649-9.505 4.996-.449.355 3.084-4.085 3.084-4.085l3.136-1.669 2.44-.404 2.338.102 3.036.809 2.737.857 3.188 1.059 2.784 1.524 3.365 1.756 1.35.81zm9.218 2.02s-4.029-.052-5.175.048c-1.148.1-1.195.304-1.347.607-.15.303-.447.707-.447.707l-1.244-2.677 5.475-.76 2.98 1.116z' fill='%2304534e'/%3e%3cpath d='M491.061 341.983c.277.735.916 1.402 1.717 1.42.803.023 2.491-.03 2.491-.03l5.449-.326 1.917-2.198 1.17-4.924s1.471-1.789 1.471-1.865c0-.075 5.074-2.803 5.074-2.803l4.382-1.264 2.81-.3 3.878-1.287 2.864-1.49 1.245-1.845 1.217-2.8-1.217-3.79-3.038-4.062-5.145-2.095h-4.261l-4.776 1.743-8.41 1.99s-4.63 2.02-6.547 5.63c-1.91 3.609-1.888 4.547-2.21 9.315-.328 4.776-.08 10.981-.08 10.981z' fill='%230c8489' stroke='%2304534e' stroke-width='.701'/%3e%3cpath d='M493.34 340.103c1.61 0 .366-2.663 2.193-5.829 1.824-3.157 4.046-7 4.61-7 .563 0 .66.575 1.323.375.665-.201 1.797-1.213 1.863-1.485.066-.267.066-2.052 1.457-3.197 1.397-1.145 3.353-2.76 4.279-2.962.931-.197 1.364-.37 1.528.067.166.437-.533 1.044.101 1.247.631.204 2.091.137 2.454-.81.364-.942.265-1.443.265-1.443s.963-.942 2.789-.54c1.827.404 2.055.3 2.221 1.01.165.706-.831.807-.63 1.312.197.501-.138.448.05.832.185.38.478 1.456 1.704 1.424 1.231-.033 1.762-.742 1.762-.742l.36-.647s.338-.765-.13-1.068c-.466-.304-.297-.674.169-.473.462.203 2.32 2.794 2.952 1.715.633-1.075.699-2.59.365-2.96-.332-.37-2.953-4.31-2.953-4.31l-4.68-1.582-6.2.51-6.009 3.43-5.505 2.929s-.3 4.507-1.296 3.702c-.995-.809-2.424-3.029-2.85-2.289-.435.742-1.395 4.038-1.96 5.685-.565 1.65-2.19 6.735-2.026 8.621.168 1.883 1.199 4.479 1.794 4.479z' fill='%238cbebf'/%3e%3cpath d='M498.877 332.812c-.434.033-1.063.472-1.26.722-.2.255-.481.795-.3 1.382.182.588 1.045 1.162 1.113 1.23l.69-.02 1.495-.435s.477-.54.504-1.242c.03-.711-.403-.897-.615-.964-.22-.066-1.627-.673-1.627-.673zm9.487-7.839c-.848-.302-1.222.276-1.37.528-.148.254-.084.87-.084.87s.186 1.173.633 1.391c.446.212 1.619.62 1.987.212.378-.4.756-.68.73-1.437-.02-.759-1.076-1.132-1.076-1.132zm7.64 1.834c-.035-.289-.78-.49-1.28-.403-.496.087-1.163.721-.925 1.683.228.956 1.142 1.041 1.857.858.712-.186.577-1.199.577-1.347 0-.15-.228-.791-.228-.791zm-22.069 1.542c0 .438.796 1.349 1.861 1.282 1.058-.068 1.718-.877 1.826-1.515.094-.642-.567.535-1.364.74-.794.2-1.26.404-1.626-.035-.364-.437-.697-.471-.697-.471z' fill='%238cbebf'/%3e%3cpath d='M501.12 334.448s.115.975-.588 1.48c-.702.504-1.152.452-1.557.452-.404 0-.845-.082-1.14-.487-.295-.405-.516-.977-.516-.977s.775 1.276 1.993.94c1.22-.333 1.809-1.408 1.809-1.408zm20.552-12.734s-.01.981-.775 1.388c-.76.407-1.105.523-1.51.472-.4-.055-.959-.218-1.224-.642-.901-1.409-.369-2.329-.369-2.329s.65 2.443 1.903 2.273c1.254-.172 1.975-1.162 1.975-1.162zm-18.32 4.38s-.626 1.918-1.89 1.918c-1.259 0-1.156-.367-1.062-.607.104-.232.567.24 1.13.068.565-.164 1.822-1.378 1.822-1.378zm3.552-.339s-.13 1.39.336 1.858c.465.474.997.713 1.528.713s.93-.14 1.325-.674c.4-.54.166-1.115.166-1.115s.008.292-.389.694c-.4.405-.726.471-1.125.471-.397 0-1.077-.05-1.28-.52-.202-.47-.561-1.427-.561-1.427zm6.507-6.682s.4 1.04-.399 1.884c-.793.84-2.32.37-2.32.37s1.229.3 1.827-.37c.597-.674.892-1.883.892-1.883z' fill='%2304534e'/%3e%3cpath d='M492.639 343.024s8.076-.137 8.725-1.249c.644-1.107-.7-5.452 4.179-8.883 4.875-3.431 8.661-3.384 11.247-3.588 2.589-.2 8.176-1.942 9.158-6.912.595-3.033-3.485-3.235-5.027-6.11-1.542-2.88-5.522-1.716-5.722-1.716-.198 0-4.62-.128-6.719 1.917-1.247 1.214-1.096 2.728-1.693 3.433-.6.707-5.925 0-6.52.86-.597.856.149 2.671-.252 3.077-.393.403-1.687-1.164-1.687-1.164l.445-4.29 6.82-3.987 7.759-4.292s5.081.25 5.28.152c.2-.104 5.225 2.624 5.373 2.675.148.053 2.636 3.03 2.636 3.03s.49 1.216.699 3.583c.1 1.125.006 2.093-.24 2.975-1.255 4.47-5.632 7.474-10.241 7.703-4.607.23-8.76 2.311-10.863 3.835-2.108 1.528-3.156 8.256-3.186 9.063-.03.806-10.037.26-10.037.26l-.135-.372z' fill='%2304534e'/%3e%3cpath d='M496.038 327.298c-.41.33-1.017.31-1.148-.155-.37-1.32.415-3.278.415-3.278s-.02 2.05.134 2.388c.15.338.56.26.746.54.066.097.18.24-.147.505zm5.083-1.04c-.391-.12-.323-1.363-.026-1.895.3-.528 2.566-2.199 2.566-2.199s-.723 1.67-1 2.277c-.272.603-1.047 1.97-1.54 1.817zm-1.998 8.202c-.318.067-.42-.634-.42-1.518 0-.883 1.543-2.497 1.543-2.497s-.472 1.416-.525 1.866c-.047.456.252.86.199 1.392-.048.527-.444.682-.797.757z'/%3e%3cpath d='M502.885 332.193s-.72.835-1.545 1.29c-.817.45-1.712 1.13-2.215.984-.494-.155.32-1.229.599-1.341 1.395-.553 3.161-.933 3.161-.933zm6.916-9.873s-.917.762-1.365 1.843c-.45 1.086-.648 1.972-.2 2.173.453.201 1.12-1.239 1.172-1.72.048-.476.393-2.296.393-2.296z'/%3e%3cpath d='M512.337 325.78s-.645-.603-1.793-.882c-1.142-.28-1.665-.025-1.789.304-.125.325-.972.845-.548 1.097.423.25.919-.44 1.267-.52.352-.075.752-.327 1.37-.225.62.101 1.493.225 1.493.225zm-1.485-6.777c.407.352 1.026-.304 1.596-.944.561-.64.994-1.818.994-1.818s-1.165.607-1.658 1.011c-.502.403-1.163 1.55-.932 1.75zm10.55-.246s-1.358.643-1.822 1.247c-.466.606-1.064 1.277-.598 1.614.465.338.89-.3 1.262-.805.36-.504 1.158-2.056 1.158-2.056zm-3.014 7.068s-.46.945-1.323 1.516c-.862.575-1.892.84-2.055.537-.17-.3.133-.944.46-1.107.337-.17.535-.137 1.295-.338.763-.2 1.623-.608 1.623-.608z'/%3e%3c/g%3e%3cg transform='translate(-.699 1.184) scale(1.16833)'%3e%3cellipse cx='385.551' cy='257.828' rx='3.769' ry='5.631' transform='rotate(8.667 385.551 257.828)' fill='url(%23b)'/%3e%3cg fill='%23fcca3e' stroke='%23aa8c30'%3e%3cpath d='m387.66 247.73-2.24 5.602 1.83-.254 1.056-4.931z' stroke-width='.35'/%3e%3cpath d='M388.7 245.35c-.797-.1-1.53.507-1.634 1.36-.104.85.459 1.618 1.256 1.722.8.1 1.529-.51 1.634-1.358.103-.852-.456-1.62-1.256-1.724z' stroke-width='.3'/%3e%3cpath d='m485.22 259.35-5.522 5.18 2.278.579 3.788-4.99z' stroke-width='.35'/%3e%3cpath d='M487.68 257.21c-.884-.488-2.054-.155-2.616.743-.566.895-.304 2.019.578 2.505.884.488 2.055.155 2.62-.742.562-.897.303-2.02-.582-2.506z' stroke-width='.3'/%3e%3cpath d='m344.88 229.45 2.913 6.42 1.254-1.787-3.297-4.86z' stroke-width='.35'/%3e%3cpath d='M343.71 226.65c-.723.613-.798 1.731-.166 2.5.63.776 1.728.905 2.453.295.722-.609.798-1.731.167-2.5-.632-.773-1.729-.905-2.454-.295z' stroke-width='.3'/%3e%3c/g%3e%3cg fill='%23aa8c30'%3e%3cpath d='M389.25 245.56s.45.244-.07.084c-.522-.159-1.758.442-1.76 1.314 0 .874.647 1.359 1.3 1.365.656.006-.242.119-.242.119l-.842-.248-.35-.507-.28-.705.216-.756.497-.645.65-.234.43.051z'/%3e%3cpath d='M387.99 249.33s-.356-.072-.68.408c-.32.48-.972 1.385-.972 1.385l1.251-3.082.682.356zm100.23 8.36s.403.485-.126.061c-.53-.422-2.287-.34-2.744.632-.458.974.056 1.816.815 2.131.766.317-.341.02-.341.02l-.861-.67-.143-.732.03-.92.646-.736.92-.482.88.041.475.267.45.388z'/%3e%3cpath d='M484.78 261.3s-.382-.254-1.01.132c-.624.384-1.856 1.083-1.856 1.083l3.06-2.841.616.719zm-140.45-34.97s.564-.198.012.129c-.55.325-1.037 1.873-.304 2.574.733.702 1.66.529 2.188-.032.531-.56-.094.305-.094.305l-.882.531-.705-.109-.819-.32-.461-.788-.143-.95.322-.75.39-.326z'/%3e%3cpath d='M346.49 230.45s-.348.252-.203.912c.15.664.387 1.95.387 1.95l-1.59-3.546.846-.309z'/%3e%3c/g%3e%3cellipse cx='351.47' cy='241.607' rx='6.06' ry='4.079' transform='rotate(62.907 351.47 241.607)' fill='url(%23c)'/%3e%3cg fill='%23e92736'%3e%3cpath d='M344.65 240.24s1.25.288 1.93-.057c.682-.347.796-.866.964-1.034.172-.173.343-.808.286-1.212-.058-.404-.965-1.786-1.25-1.9-.284-.116-1.25 0-1.418-.174-.17-.174.142-.55-.23-.635-.367-.086-2.269 2.077-1.93 2.422.342.343.54-.172.652.117.114.284.03 1.092.03 1.436 0 .346.966 1.037.966 1.037z'/%3e%3cpath d='M346.5 236.2c.149.3.852 1.237 1.136 1.352.284.118 1.136.148 1.42.034.285-.116 1.193-.982 1.222-1.357.028-.374 0-.662-.17-1.04-.17-.374-.072-1.38-.412-1.437-.341-.058-.49-.104-.66-.302-.17-.204.106-.564-.15-.936-.253-.377-3.294 1.412-3.067 1.756.228.346.54-.026.653.203.113.227-.143 1.38.028 1.727z'/%3e%3cpath d='M353.37 235.43c.17-.458.113-1.959-.198-2.277-.313-.317-.825-.343-.854-.547-.026-.2.37-.289.37-.635 0-.344-3.379.115-3.152.494.228.372.797.172.767.4-.028.23-.569.518-.625.809-.056.287.173 1.24.313 1.467.142.235-.056.518.341.664.4.145.34.145.711.26.368.115 1.703.056 1.875-.09.167-.143.282-.085.452-.545zm28.73 16.88s.554.96 1.167 1.189c.612.227.996-.003 1.204.003.205.007.693-.256.907-.528.214-.274.531-1.658.436-1.905-.096-.247-.731-.793-.725-.998.006-.212.418-.23.256-.515-.165-.286-2.603-.221-2.616.196-.012.42.422.242.31.481-.11.242-.653.66-.866.86-.214.203-.073 1.217-.073 1.217z'/%3e%3cpath d='M385.66 251.11c-.1.268-.264 1.263-.167 1.512.097.244.578.8.813.91.238.116 1.3.183 1.545-.018.249-.2.409-.387.538-.715.13-.327.807-.856.645-1.105-.165-.247-.224-.366-.2-.59.023-.233.406-.262.486-.645.08-.38-2.795-1.256-2.874-.91-.079.346.333.323.257.53-.075.206-.932.722-1.043 1.031z'/%3e%3cpath d='M390.16 255c.384-.162 1.272-1.073 1.283-1.458.012-.382-.269-.723-.163-.857.106-.137.392.063.606-.14.211-.2-2.049-2.066-2.147-1.703-.097.363.358.603.201.72-.159.116-.651-.057-.86.078-.212.13-.662.833-.72 1.057-.058.224-.353.269-.207.603.143.337.11.3.256.602.145.302.96 1.11 1.15 1.133.188.025.22.13.601-.035zm86.74 7.25s.049 1.07.461 1.551c.416.479.837.467 1.01.57.17.103.697.111.992-.015.297-.13 1.168-1.146 1.197-1.4.026-.25-.27-1.01-.172-1.183.096-.171.448.004.437-.31-.015-.318-2.089-1.416-2.28-1.07-.194.347.246.4.05.552-.196.152-.84.243-1.103.312-.268.071-.592.993-.592.993z'/%3e%3cpath d='M480.26 262.95c-.214.156-.842.823-.891 1.05-.049.227.052.86.184 1.052.13.191.936.723 1.234.688.299-.04.52-.104.787-.29.27-.187 1.07-.271 1.064-.533-.005-.259.01-.379.142-.532.133-.159.455-.01.709-.26.256-.245-1.584-2.207-1.818-1.983-.238.223.096.393-.065.511-.162.12-1.099.116-1.346.297z'/%3e%3cpath d='M480.96 267.83c.364.14 1.557.135 1.82-.092.26-.226.297-.61.457-.623.16-.017.22.283.496.293.276.006 0-2.544-.302-2.384-.304.162-.166.596-.345.567-.182-.026-.4-.439-.627-.489-.226-.051-.988.097-1.18.198-.184.104-.408-.055-.533.24-.125.294-.125.251-.226.527-.102.275-.096 1.277.016 1.41.11.129.064.216.424.353z'/%3e%3c/g%3e%3cpath d='M346.72 237.45c.278.417-.09 1.421-.317 1.706-.226.284-1.74-.13-1.762-.41-.024-.284-.134-.759.064-1.025.2-.265.709-.873 1.094-.796.384.07.822.383.921.525zm.41-1.88c-.178.38.077.808.272 1.017.196.208 1.283.479 1.58.299.297-.183.75-1.869.541-2.129-.208-.26-.793-.304-.99-.275-.198.035-1.28.824-1.403 1.088zm3.62-1.72c-.146.345-.098.821.025.968.123.148.831.644 1.248.623.416-.026.614-1.194.614-1.418 0-.224-.124-.32-.418-.448-.292-.122-1.469.275-1.469.275zm34.27 18.13c-.093.417-.926.775-1.232.796-.309.023-.94-1.175-.78-1.355.16-.18.386-.53.666-.556.278-.03.951-.066 1.13.223.18.282.247.743.216.892zm1.4-.84c-.34.108-.454.522-.466.77-.015.244.456 1.09.74 1.169.285.082 1.588-.619 1.623-.904.036-.283-.276-.68-.413-.784-.13-.106-1.252-.327-1.484-.251zm3.17 1.29c-.3.107-.56.417-.583.584-.018.163.093.9.351 1.149.259.247 1.09-.31 1.228-.442.136-.132.127-.265.03-.525-.094-.26-1.026-.766-1.026-.766zm89.98 10.76c-.26.311-1.115.22-1.385.089-.266-.124-.273-1.431-.061-1.507.21-.076.554-.259.803-.153.243.104.825.397.852.72.024.325-.121.742-.209.851zm1.27.12c-.323-.074-.623.185-.756.36-.135.177-.185 1.024-.002 1.208.18.193 1.57.264 1.74.066.17-.198.122-.633.07-.773-.053-.138-.83-.813-1.052-.86zm1.45 2.59c-.27-.114-.65-.09-.774-.005-.117.09-.536.612-.526.925.009.315.933.49 1.108.495.18.009.263-.083.37-.299.108-.217-.178-1.116-.178-1.116z' fill='%23f7e204'/%3e%3cellipse cx='476.695' cy='268.569' rx='2.938' ry='5.862' transform='rotate(47.855 476.695 268.568)' fill='url(%23d)'/%3e%3c/g%3e%3cg transform='translate(-.699 1.184) scale(1.16833)' fill='%2378732e'%3e%3cpath d='M375.12 185.22s-5.026.432-8.52-.173c-3.492-.605-2.725-9.507-2.811-9.766-.084-.26-2.13-2.42-1.79-4.407.342-1.989 6.795-7.233 7.668-7.519.597-.195 1.874.347 1.874.347s1.631-1.587 2.115-1.587c.499 0 1.187.915.996 1.306-.193.388-2.408 1.684-2.579 2.678-.17.994.022 1.988-.618 2.96-.638.972-1.874 2.29-2.023 3.111-.149.821-.51 1.535.107 1.837.618.303 2.727.043 4.537-.777 1.809-.822 2.554-1.924 2.81-1.815.256.107-1.043 2.267-3.045 3.112-2.001.842-3.323 1.813-4.324 1.663 0 0-1.107 2.658 2.323 2.808 3.428.152 5.324-.755 5.324-.755zm-19.64 20.96s2.64 1.035 2.64 3.978c0 2.937-2.894 5.399-2.81 10.584.086 5.188.89 5.239 7.753 10.804.213.174 1.661 1.644 2.044 3.33.385 1.683 1.618 11.623 8.223 11.577 6.6-.041 7.496-4.23 7.496-4.23l-2.812-4.15s-2.3.688-3.536.388c-1.234-.303-2.34-1.124-3.067-2.722-.723-1.6-.92-5.408-2.044-7.086-2.769-4.15-7.71-4.841-7.752-9.206-.043-4.366 3.023-4.839 2.171-10.027-.85-5.184-7.028-7.691-7.028-7.691l-2.512-1.016-.873 5.207z' fill='%23a8ac71'/%3e%3cpath d='M373.67 169.89c2.214-.517.937-6.29.937-6.29l-1.533 1.276s.948 1.233.948 2.56c0 1.326-.352 2.454-.352 2.454z' fill='%23f1a720'/%3e%3cpath d='M377.71 227.47s-1.027-.844-1.129-.914c-.791-.526-4.257-3.327-3.702-11.656.626-9.421 14.325-14.376 15.22-18.122.992-4.148 4.093-5.96-6.815-14.49l-2.557 2.996 4.473 3.357s.99-.556 1.047.714c.058 1.266-1.193 2.355-1.5 3.348-.283.906-7.086 5.632-7.597 6.094-.51.462-3.906 3.101-3.906 3.101s-1.77 1.741-3.419 5.4c-1.645 3.66-.797 8.354-.797 8.354s.054 10.003 10.681 11.817z' fill='%23a8ac71'/%3e%3cpath d='m371.03 232.74.767 3.543-2.172.799-.937-.042-.68.3-1.683 1.625-.427-.134s-.256.09-.34-.95c-.086-1.035-.235-1.944-.235-1.944l2.045.84.723.046.511-.173.895-1.943zm-6.35.65s-.682-.821-1.022-1.317c-.29-.424-.436-.523-1.193-1.127l1.49-.839 1.598.02-.234 1.923zm3.63-5.69s1 .496 1.32 1.252c.32.758.788 1.686.788 1.686l-2.534-.192-1.939-.61 1.257-1.749zm-.99 15.67s-.513-.322-.81-1.14c-.3-.824-.534-2.142-.534-2.142l1.684-.322 1.98.796.555.047s-.469.992-.533 1.037c-.063.043-1.917 1.66-1.917 1.66zm6.72-5.43s-1.488-.468-1.724-1.169c-.255-.754-.448-.601-.448-.601l-.467 2.006-.597 1.882s.127.323.194.323c.062 0 1.425-.346 1.512-.387.084-.041 1.125-1.125 1.148-1.189.021-.065.382-.865.382-.865zm-6.27 6.31s.745.41 1.788 1.016c1.045.603 1.662.603 1.662.603l.788-.841.809-1.6.107-.194-4.026.364zm5.82-1.55 3.431-2.054.233-1.856-.68-.52s.128.063-.809.063h-1.172l-.618 2.271zm-2.45 3.24s2.405 1.036 6.558-.476c1.882-.685 2.237-1.598 2.237-1.598l-1.662-.646-1.574 1.405-5.56 1.315zm-3.28-26.63s-.243-.775-.479-1.789c-.233-1.015-.213-1.448-.213-1.448l1.223.635 1.768 1.316-1.257.998zm2.89 4.89s-.598-.605-1.11-1.38c-.51-.78-.865-1.5-.865-1.5l1.3.268 1.513.731-.668 1.956z'/%3e%3cpath d='M363.02 169.18c-.228.836-.54 2.363.625 2.651.63.155 3.127-.051 5.963-3.284 1.364-1.557 1.39-3.086 1.39-3.086l.54-1.754s-1.107-.808-2.897.315c-1.608 1.01-5.621 5.158-5.621 5.158z' fill='%23c6c7a6'/%3e%3cellipse cx='370.771' cy='164.639' rx='.502' ry='.531' fill='%231c242f'/%3e%3cpath d='M367.16 165.17c-1.211.945-2.343 2.162-2.343 2.162s1.916-.542 3.44-1.926c.864-.785 2.55-1.09 3.438-.884.462.106.301-.49.086-.66-.497-.393-1.882-.591-2.184-.362-.042.033-1.218.718-2.437 1.67z' fill='%23a8ac71'/%3e%3cpath d='M372.92 218.3s-.084-.399-.138-1.393c-.054-.995.06-1.493.06-1.493l-1.135.986-1.087 1.512 1.682.603zm-5.88-3.36s-.156-1.546-.07-3.014c.083-1.467.68-4.135.68-4.135l.718 1.825 2.065 3.218.66.477-1.746 1.276-1.788.582zm5.92-.82s.105-.733.287-1.413c.176-.664.695-1.727.695-1.727s.028.108-.057.126c-.085.023-1.81 1.451-1.853 1.514-.043.066-.809.733-.809.733l1.085.824.7-.04m-4.818-7.657s.263-.965 1.178-2.132c.915-1.166 1.818-2.362 1.818-2.362l.78 3.134.468 2.676.085.566s-.637.282-.894.259c-.256-.022-2.173-.132-2.407-.455-.233-.324-1.028-1.686-1.028-1.686zm6.21 3.65s.582-.618 1.093-1.092c.51-.478 1.324-1.395 1.324-1.395l-4.208.77.597 1.423zm-2.54-8.7s.39-.139 1.52-1.281c1.127-1.148 1.703-1.01 1.703-1.01l.47 4.517-2.216-.65z'/%3e%3cpath d='m377.1 207.36 2.534-2.571-4.215-1.207.769 2.96zm1.77-6.8.256-4.364s-.86.402-1.946 1.308c-1.085.907-1.59 1.196-1.59 1.196l.51.78 1.492.97zm3.75-4.23.006-3.436-.148.066s-.604.93-1.305 1.512c-.704.583-1.024.993-1.024.993l1.13.736 1.34.129zm1.57 4.6s1.188-.988 2.057-1.674c1.298-1.029 1.947-2.15 1.947-2.15l-5.451-.412.213 2.183zm-12.68-18.05-.17 2.392 4.545-.027-1.11-1.526-1.387-.866-1.307-1.326zm8.78 21.31c.24-.18 1.423-1.067 1.98-1.633.617-.626 1.587-1.253 1.587-1.253l-4.324-.476.086 2.854zm8.23-7.79s.464-1.74.42-3.404c-.042-1.663-.314-2.407-.314-2.407l-3.236 2.203.467 1.642 1.237 1.341z'/%3e%3cpath d='M382.98 192.4s.958-1.16 1.022-1.828c.064-.67.057-.462.057-.462l2.557.043 1.532.128.192.154-1.15 1.36-1.576.906-2.023.24zm5.18-2.55s-1-1.716-1.566-2.67c-.563-.95-1.118-1.403-1.118-1.403l-1.248 3.714-.126.359z'/%3e%3cpath d='m356.53 215.28-.489 1.034s1.703-.884 3.025-.84c1.319.044 2.79 1.687 2.79 1.687l.319-1.194s-1.747-1.705-2.897-1.787c-1.152-.089-2.748 1.1-2.748 1.1zm.852-7.626s.363.43.447.56c.084.13.128-1.275 1.852-2.009 1.726-.735 2.664-.151 2.664-.151s-.341-.995-1.106-1.21c-.768-.218-1.513-.065-2.452.605-.936.67-1.405 2.205-1.405 2.205zm5.857 5.743s-.809-1.723-2.214-2.07c-1.407-.346-3.196.73-3.196.73l-.296.91s1.915-1.082 3.321-.518c1.406.56 1.96 2.162 1.96 2.162zm-6.58-6.696c.084.304.426.69.426.69s-.193-1.856.66-2.807c.852-.951 1.49-1.296 1.49-1.296l-.788-.413s-1.128.757-1.514 1.579c-.382.82-.36 1.944-.274 2.247zm-.76-3.039c.396-.921 1.568-1.325 1.568-1.325s-.119-.204-.383-.347c-.266-.141-.542.012-.542.012s-.757.392-1.212 1.43c-.453 1.035-.396 2.534-.396 2.534l.702.39s-.136-1.772.262-2.694zm10.336-25.064c1.08-.577 1.875-.461 1.875-.461s-1.594 1.678-.825 3.768c-.905 1.75-1.19 3.081-1.19 3.081h.85s.289-1.363.625-2.437c.923 1.786 2.472 2.79 2.472 2.79l1.305-.057s.002-1.74.673-3.255l.125.142c1.417 1.499 2.611 1.847 2.611 1.847l.014-.447s-1.49-.88-2.342-2.032l-.085-.124.025-.05c1.024-1.611 2.388-2.13 2.388-2.13l.909.75.225-.289-.68-.864-.788.022s-1.412 1.177-2.323 2.204a12.015 12.015 0 0 1-1.034-2.054l-.584-.214s-1.414.163-2.68 2.208c-.157-1.5 1.573-3.138 1.573-3.138l-.085-.627s-1.748.33-3.11.734c-1.363.404-2.194 1.686-2.194 1.686l-.056.92s1.227-1.397 2.306-1.972zm1.875 2.766c.795-1.153 2.555-1.901 2.555-1.901s.045.933 1.015 2.173c-.662 1.162-.957 2.953-.957 2.953s-1.363-.862-2.556-2.592a2.12 2.12 0 0 1-.21-.387c.05-.087.1-.17.153-.246zm-9.94 27.758.065 1.012s1.043-1.141 2.62-1.185c1.576-.045 2.918 1.185 2.918 1.185s.02-1.359-.192-1.486c-.213-.132-1.492-.867-2.685-.867-1.192 0-2.725 1.34-2.725 1.34zm28.116-14.74a13.338 13.338 0 0 1-.612-1.348c.238-.09.474-.21.696-.376a16.368 16.368 0 0 0 2.258-2.074l-.469-.736h-2.13c-.417 0-1.303-.105-1.804-.17.093-.326.356-1.243.663-2.196.384-1.189.73-1.827.73-1.827l-.724-.733s.17.676-1.108.849c-1.278.173-3.635-1.035-3.635-1.035v.518s2.073.663 3.265.835a2.316 2.316 0 0 0 1.59-.351c-.183.378-.52 1.117-.702 1.776-.155.566-.377.935-.362 1.18.01.16.242.304.242.304l-.113 1.11s1.278.171 1.873.171c.597 0 2.215.13 2.215.13s-1.15 1.342-2.257 1.859c-.146.07-.3.123-.46.17-.059-.157-1.322-2.085-1.322-2.085l-.128.713s.904 1.241.994 1.504c-.817.108-1.994-.172-1.994-.172l-.511.563s-.037 1.6.012 3.255a35.242 35.242 0 0 1-2.341-.749l-.457.346.022-.08-.588.47s-.511 1.942-.382 4.148l.007.112c-2.1-.52-3.16-1.756-3.16-1.756l-.511.434s-.345 1.904.13 4.203c-1.795-.356-3.354-1.913-3.354-1.913l-.667.56s.398 3.719.823 5.748c.035.174.085.323.13.477a6.426 6.426 0 0 1-.982.042c-1.83-.087-2.967-1.772-2.967-1.772l-.54 1.309s.697 3.575 2.698 5.174l.451.36c-1.71 1.396-3.76 1.615-3.76 1.615l.127 1.128s1.222.958 2.414 1.782c.118.076.243.153.373.221-.951.85-2.116 1.194-2.116 1.194l.313.747s1.583-1.105 2.317-1.7c1.06.427 2.456.595 2.456.595v-.606s-1.027-.092-1.978-.396l.139-.129c.596-.577 1.76-2.361 1.76-2.361l.113-1.296s-.733-.104-1.527-.737c2.416-1.652 2.508-2.404 2.508-2.404l.456-.854s-.816-.35-1.418-1.538c1.657-.322 3.804-.858 3.835-.948.042-.129.287-.27.287-.27s-.929-1.521-1.325-3.384c1.91.494 3.859.813 3.859.813l.61-.522s-.47-1.544-.621-3.226c2.265.143 4.186.313 4.186.313l.383-.433s-1.277-2.442-1.234-3.824l.003-.127a6.2 6.2 0 0 0 1.273.127c1.877-.045 3.962 0 3.962 0l.32-.714s-1.81-1.232-2.235-2.012zm-13.79 20.332s-.608 1.236-1.844 2.662c-.1.112-.198.211-.295.312a6.054 6.054 0 0 1-.642-.312c-1.448-.822-1.819-1.759-1.819-1.759s.8-.392 3.237-2.026c1.288 1.02 1.364 1.123 1.364 1.123zm1.136-4.124s-.76.905-2.534 2.488a5.418 5.418 0 0 1-.546-.599c-1.136-1.472-2.556-2.738-2.413-4.956 0 0 .88 1.586 2.841 1.382.4-.038.86-.109 1.336-.191.522 1.313 1.316 1.876 1.316 1.876zm2.642-3.326s-1.815.596-3.5.867a6.964 6.964 0 0 1-.207-.565c-.637-2.074-.637-5.229-.637-5.229s1.415.979 3.4 1.53c.577 2.354.944 3.397.944 3.397zm-.601-3.837c-.294-1.935.091-3.855.091-3.855s1.055 1.054 3.023 1.384c.135 1.789.342 2.677.342 2.677s-1.495.083-3.456-.206zm7.63-2.948s-1.269.492-3.708.15a19.81 19.81 0 0 1-.04-.712c-.085-2.203.109-3.987.109-3.987l.007-.026c.347.153 1.645.684 2.855.979l.011.14c.17 1.987.766 3.456.766 3.456zm-.172-4.104-.131-.031c.083-1.413.077-3.47.077-3.47s1.187.317 2.101.193c.242.6.085.757.68 1.664.598.909 1.492 1.644 1.492 1.644s-3.025.257-4.219 0zm-9.88 24.441-.17-.706s-1.192.886-1.53 1.796a2.163 2.163 0 0 1-.375-.094 181.81 181.81 0 0 1-2.667-1.02l.268.53s1.945.894 2.455 1.01l.165.03a72.103 72.103 0 0 1-.645 1.84l.313.434s.177-1.314.679-2.233c.667.066 1.592.1 1.592.1s-.114.517-.286 1.094c-.168.577-.511 1.931-.511 1.931l.583.361 2.714.056-.457-.539s-.084-.135-.965-.163c-.881-.03-1.42.116-1.42.116s.113-.55.454-1.646c.34-1.096.356-1.032.356-1.032l-.342-.95s-.867.24-1.443.22a3.985 3.985 0 0 1 1.232-1.135zm-14.825-1.711c1.662 0 3.067 1.12 3.067 1.12l-.063-.794s-1.299-1.752-2.79-1.752c-1.492 0-3.259 1.535-3.259 1.535v1.64s1.383-1.75 3.045-1.75zm17.507 25.497c-1.703.732-3.62.732-3.62.732s.518-.742 1.026-2.025c3.332-.935 4-3.159 4-3.159l-.213-.821s-.807 2.033-3.492 3.154c.497-1.575 1-4.234 1-4.234l-.915-.237s-1.314 1.644-2.553 2.06c.84-1.636.956-3.51.956-3.51l-.405-.713s-.895.8-2.301 1.06a2.314 2.314 0 0 1-.687.007l.005-.007c.768-1.079 2.238-4.192 2.238-4.192l-.257-.585s-1.128 2.748-2.279 4.127c-.147.18-.29.346-.436.507-1.176-.34-2.863-1.348-2.863-1.348l.19.52s.956.73 2.349 1.173c-.849.89-1.774 1.72-1.774 1.72l.083 1.253s2.16.41 3.933.59c-1.428 2.02-2.589 2.693-2.589 2.693l.575.866s1.754-.011 4.902-.785c-.896 1.692-1.578 2.427-1.578 2.427s2.874.198 4.834-.8c1.96-.994 2.555-2.03 2.555-2.03l-.553-.608s-.426 1.429-2.13 2.165zm-9.072-5.407s.846-.93 1.572-1.885l.09.025c2 .432 2.553-.173 2.553-.173s.38 1.085-.84 3.034c-1.44-.06-3.375-1.001-3.375-1.001zm1.788 4.02 1.79-2.078a5.3 5.3 0 0 0 .341-.437c1.962-.07 3.067-1.68 3.067-1.68s.23 1.625-.648 3.627c-2.493.908-4.55.568-4.55.568zm-2.428-12.88c1.875.13 4.303 1.013 4.303 1.013l-.298-.992s-2.308-.564-3.745-.75c.642-1.438 2.061-2.122 2.061-2.122l-.638-.347s-.786.129-1.853 1.946a5.376 5.376 0 0 0-.24.451 5.485 5.485 0 0 0-.4-.018c-1.703-.046-3.13.948-3.13.948l.256.52s1.484-.642 2.946-.668c-.53 1.475-.924 3.152-.924 3.152l.385.887s.742-2.37 1.261-4.02zm-3.94-8.038-.405-1.04s-2-.709-3.534.023c-1.534.735-2.684 2.507-2.684 2.507l.64 1.21s1.064-1.966 2.47-2.44c1.404-.477 3.514-.26 3.514-.26zm3.898 3.046-1.32-.693s-2.172.629-2.94 1.407c-.767.78-1.384 2.767-1.172 3.327.213.56.896.928.896.928s.36-2.095 1.426-3.088c1.066-.994 3.11-1.881 3.11-1.881zm-5.067-.625c.892-.864 2.512-1.19 2.512-1.19l-.81-.734s-1.96.238-2.982 1.146c-1.022.909-2.343 2.788-2.343 2.788l1.152 1.121s1.576-2.27 2.471-3.13zm6.744-58.716.07-.09c1.033-1.328 2.035-1.328 2.428-1.22.165.045.385.026.581-.007l-.007.006.031-.011c.05-.01.094-.018.138-.028.05 0 .096.017.122.066-.328.518-.793 1.937-1.035 3.13-.3 1.468-.936 1.642-1.405 2.548-.468.91-1.447 2.423-1.49 3.717-.043 1.297.297 1.988.638 2.162.342.173.967-.564.937-.864-.043-.432-.382 0-.638 0-.255 0-.213-.432-.341-1.21-.129-.779.935-2.939 1.32-3.631.383-.691 1.192-1.512 1.362-2.68.153-1.04.911-3.319.911-3.327 0-.064-.58-.223-1.708-.302-.84-.061-1.973.676-2.509 1.5-.532.821-2.209 1.48-2.209 1.48s1.837.013 2.805-1.239z' fill='%23fff'/%3e%3cpath d='m374.33 178.91-3.27.087.938 2.446zm-3.85-.13s-.475-.301-.703-.562c-.227-.26-.404-.368-.404-.368l-1.178.742-.682 2.42.34.346zm-.44 6.56-2.386-3.515-1.362 2.932.652.23s.653.064 1.647.208c.994.145 1.449.145 1.449.145zm9.7 58.72-.12.082c-.565.378-3.069 1.906-6.141 1.906a8.76 8.76 0 0 1-4.535-1.248c-.916-.546-1.542-1.36-2.003-2.347-.692-1.476-.995-3.335-1.311-5.139-.322-1.803-.649-3.551-1.444-4.836-1.072-1.708-3.09-2.776-4.899-4.298-1.813-1.522-3.424-3.45-3.761-6.875-.034-.347-.05-.69-.05-1.026-.001-2.262.726-4.23 1.462-5.952.733-1.727 1.49-3.196 1.495-4.523 0-.222-.022-.441-.072-.653-.243-1.025-1.127-1.884-1.94-2.52-.814-.628-1.567-1.015-1.575-1.02l-.017-.008-1.27-.351-.108.398 1.25.347.054-.2-.092.185s.043.021.121.066c.281.155.998.577 1.683 1.15.687.574 1.33 1.312 1.495 2.045.042.18.06.37.06.56.007 1.163-.715 2.622-1.46 4.359-.741 1.739-1.496 3.764-1.497 6.116 0 .352.018.706.053 1.066.343 3.552 2.054 5.607 3.907 7.157 1.855 1.548 3.84 2.626 4.813 4.203.984 1.57 1.244 4.081 1.716 6.499.237 1.205.531 2.392 1.016 3.43.483 1.038 1.164 1.93 2.166 2.525a9.171 9.171 0 0 0 4.74 1.304c3.665-.003 6.481-2.054 6.5-2.067z'/%3e%3cpath d='m376.91 237.6-.025.02c-.14.082-.796.448-1.64.448-.678-.003-1.476-.224-2.284-1.02-.987-.973-1.276-1.877-1.525-3.024-.244-1.148-.434-2.53-1.212-4.34-.804-1.867-2.784-3.357-4.625-4.821-1.85-1.456-3.547-2.888-3.852-4.444a4.306 4.306 0 0 1-.087-.877c-.004-1.314.564-2.647 1.15-4.154.585-1.506 1.181-3.191 1.181-5.215 0-.342-.016-.695-.053-1.055-.272-2.608-2.26-4.547-4.151-5.841a18.497 18.497 0 0 0-3.724-1.953l-.136.391s.107.038.304.119c.683.278 2.414 1.05 4.018 2.288 1.606 1.24 3.07 2.932 3.282 5.04.034.345.051.685.051 1.011 0 1.94-.57 3.562-1.151 5.062-.58 1.5-1.178 2.872-1.18 4.307 0 .32.03.639.094.962.376 1.785 2.158 3.218 4 4.687 1.851 1.461 3.778 2.948 4.505 4.66.756 1.762.937 3.088 1.187 4.258.248 1.171.582 2.2 1.64 3.239.878.868 1.8 1.138 2.568 1.133a3.659 3.659 0 0 0 1.89-.533z'/%3e%3cpath d='M388.97 227.59s2.29.54 2.206 2.397c-.086 1.86-1.108 4.45-1.108 4.45l-3.153-2.853 1.775-1.57.652-.933z' fill='%23a8ac71'/%3e%3cpath d='M349.61 205.23s-2.257.777-2.725-.216c-.47-.994-.256-1.773-.298-1.987-.044-.216-1.365-.303-1.236-1.6.127-1.297 1.788-1.21 2.13-1.21.342 0 .425-1.99 1.577-1.9 1.15.085 1.703 1.424 1.703 1.424z' fill='%23f8c83c' stroke='%23977c2e' stroke-width='.35'/%3e%3cpath d='M352.12 205.84s-1.916.996-2.514.043c-.596-.952 0-2.162-.213-2.378-.214-.214-1.361-.604-1.15-1.726.214-1.124 1.406-.78 1.833-.996.425-.215.723-1.901 1.916-1.598 1.192.304 1.406 1.253 1.406 1.253s-.939 4.493-1.278 5.402z' fill='%23f8c83c' stroke='%23977c2e' stroke-width='.35'/%3e%3cpath d='M355.36 206.27s-.555 1.212-1.917.948c-1.364-.256-.937-2.244-1.151-2.592-.212-.343-1.192-.604-1.022-1.857.17-1.252 1.406-1.08 1.874-1.252.469-.174.979-2.119 1.874-1.817.896.304 1.746 1.427 1.576 1.946 0 0-1.916.603-2.172 1.9-.255 1.298.938 2.724.938 2.724z' fill='%23f8c83c' stroke='%23977c2e' stroke-width='.35'/%3e%3cpath d='M385.51 227.14s-1.703-1.872-2.896-3.512c-1.193-1.645-3.04-3.52-3.04-3.52l-2.923-1.468-1.846-3.083-.23-3.63.797-2.102 1.108-1.614s-6.057 2.169-2.983 13.771c1.308 4.927 4.658 5.644 4.658 5.644l5.566-.34z' fill='%23af7029'/%3e%3cpath d='M382.71 188.39c.576.018.86.21 1.034.45.173.244.228.57.227.851 0 .153-.016.289-.031.386l-.02.112-.008.035.199.053-.187-.084c-2.003 4.438-6.255 6.51-10.07 9.274-1.904 1.384-3.693 2.947-5.007 5.078-1.315 2.136-2.145 4.838-2.145 8.469 0 .183.002.372.007.56.146 6.673 2.67 10.264 5.448 12.142 2.775 1.885 5.777 2.075 6.91 2.078.297 0 .466-.013.47-.013l.006-.003h.006c.002 0 .777-.1 1.894-.202 1.114-.097 2.566-.2 3.904-.2.855 0 1.666.042 2.303.149.639.1 1.1.287 1.242.48.178.224.245.447.247.676.004.505-.365 1.087-.815 1.551-.443.465-.965.825-1.15.91l.172.375c.265-.124.787-.49 1.272-.996.478-.503.924-1.141.93-1.84a1.48 1.48 0 0 0-.34-.938c-.292-.348-.817-.51-1.493-.628-.674-.11-1.5-.15-2.368-.15-2.714 0-5.845.4-5.851.4l.026.208-.017-.208-.11.005a8.314 8.314 0 0 1-.328.006c-1.09 0-4.014-.192-6.684-2.003-2.667-1.817-5.112-5.233-5.266-11.807-.002-.186-.006-.37-.006-.553.003-3.57.811-6.183 2.082-8.247 1.905-3.099 4.88-4.984 7.787-6.945 2.906-1.96 5.752-4.004 7.315-7.458l.008-.016.004-.018c.002-.01.071-.28.071-.638-.002-.33-.057-.74-.304-1.094-.243-.354-.69-.611-1.354-.623l-.01.415z' fill='%23816c2a'/%3e%3cpath d='M390.88 229.04s-1.436 2.631-1.8 2.658c-.366.026 1.242.415 1.606 1.035l-.343.643s-1.59-1.131-2.586-1.179l-.09-.97s.813-.275 1.487-.89c.554-.506 1.132-1.922 1.143-2.248z' fill='%23fff'/%3e%3cpath d='m396.48 230.77-3.579.98-1.824-1.14s.15-1.49-.66-2.129c-.835-.66-1.33-.854-2.055-1.157-.724-.302-3.28-.356-3.28-.356l-6.465-7 2.415.256 3.819-.474 3.55-.302 1.875.276 2 .618 1.052.89 1.092.967 1.095 1.8.696 2.033.284 2.188z' fill='%23fcca3d'/%3e%3cpath d='M396.62 230.54s-1.28.378-2.897.345c-1.62-.023-2.65-.274-2.65-.274s.094.102-.248 1.17a15.072 15.072 0 0 1-.654 1.727l.059 4.204 3.407.668 1.79-.694.909-4.582z' fill='%23af7029'/%3e%3cpath d='m395.67 228.76.155 1.63.667.194-.016-1.467zm-3.21-39.29-.398-2.865-1.122-1.901-1.42-1.946-1.52-1.672-.85-.76-.356-.563-3.735.173-1.958 2.334s5.1 3.599 7.02 7.532c1.651.496 2.936 1.54 3.669 2.255l.173-.31z' fill='%23fcca3d'/%3e%3cpath d='M388.84 192.63c-.053 2.92-.554 4.308-.942 4.955l2.262-2.594 1.63-2.93c-.733-.715-2.018-1.76-3.67-2.255.456.938.735 1.892.72 2.824z' fill='%23af7029'/%3e%3cpath d='M394.11 235.87c-.003-.002-1.052-1.313-1.834-2.08-.799-.776-1.722-1.201-1.733-1.208l-.17.378s.05.023.144.074c.282.149.923.52 1.475 1.059.375.366.828.879 1.184 1.294.357.42.617.744.617.745z' fill='%23816c2a'/%3e%3cpath d='M396.31 232.73s-.342 1.264-1.619 2.416c-1.279 1.154-2.897 1.932-2.897 1.932l3.663 1.354 2.442-2.274z' fill='%236f5b24'/%3e%3cpath d='m396.85 235.77-.224.433-.688.666-.54.573.913-3.8.651 1.121.085.606z' fill='%23404118'/%3e%3cpath d='M375.12 185.22s-5.026.432-8.52-.173c-3.492-.605-2.725-9.507-2.811-9.766-.084-.26-2.13-2.42-1.79-4.407.342-1.989 6.795-7.233 7.668-7.519.597-.195 1.874.347 1.874.347s1.631-1.587 2.115-1.587c.499 0 1.187.915.996 1.306-.193.388-2.408 1.684-2.579 2.678-.17.994.022 1.988-.618 2.96-.638.972-1.874 2.29-2.023 3.111-.149.821-.51 1.535.107 1.837.618.303 2.727.043 4.537-.777 1.809-.822 2.554-1.924 2.81-1.815.256.107-1.043 2.267-3.045 3.112-2.001.842-3.323 1.813-4.324 1.663 0 0-1.107 2.658 2.323 2.808 3.428.152 5.324-.755 5.324-.755z' fill='none' stroke='%2378732e' stroke-width='.3'/%3e%3c/g%3e%3cg fill='%23d2a567'%3e%3cpath d='M487.942 173.581s-10.755-2.03-10.58 6.924c.057 2.826.684 3.806 2.958 4.443 2.274.634 6.83.866 10.695 4.328 3.862 3.462 4.15 6 4.15 8.077 0 2.076-.964 3.982-.964 3.982l2.441 11.828 2.45 8.77 7.278-4.213 4.267-12.982-5.46-23.369z' fill='%23ab6d29' stroke='%234d2a15' stroke-width='.511'/%3e%3cpath d='M498.62 218.597s3.747-1.416 4.712-4.444c.264-.831-3.785-4.474-3.883-4.474-.097 0 2.058 1.041 3.054 1.95.994.91 1.757 1.281 2.053 1.146.3-.135 2.028-4.142 1.364-5.017-.664-.874-1.696-2.927-3.254-3.97-1.557-1.044-3.615-.91-3.615-.91s2.855-.908 4.28-.1c1.423.807 1.558 1.75 1.723 1.414.167-.337-.3-4.343-.945-5.69-.646-1.346-1.309-1.986-3.036-2.322-1.72-.338-3.58-.204-3.58-.204s2.488-1.379 4.376-.907c1.89.472 1.861 1.414 2.023 1.212.17-.203-.93-3.669-1.372-4.545-.451-.874-2.707-2.626-3.338-2.828-.628-.202-2.688-.265-2.688-.265l-.995.013s1.432-.992 3.256-.824c1.82.169 1.92.774 2.183.674.267-.1-.199-.336-1.306-1.112-1.114-.772-6.489-3.063-6.489-3.063l-4.91-.068s-.052-1.244 1.378-1.479c1.427-.237 1.84.184 1.74-.187-.098-.368-4.143-1.26-4.143-1.26s-2.326.068-3.322.1c-.993.037-4.612.454-4.612.454s.315-.793 1.023-1.412c.539-.475 1.375-.771 2.064-.96 1.59-.438-.896-1.683-.896-1.683l1.328-2.018 5.974.502 12.607 7.373 5.908 5.084 3.746 9.558-1.128 16.424-8.43 6.969s-3.713.573-3.713.404c0-.17.863-3.535.863-3.535z' fill='%234d2a15'/%3e%3cpath d='M487.626 177.8s-.4-1.162-.4-2.626.25-1.414.25-1.414-4.03-.557-6.968 1.766c-2.934 2.323-1.244 6.361-1.244 6.361s1.282-1.262 2.92-1.87c1.643-.601 4.597-.502 4.597-.502.248-.254-.646-1.415-1.742-1.667-1.098-.252-3.235-.252-3.235-.252s1.245-.86 3.385-.655c2.141.2 2.437.858 2.437.858z'/%3e%3cpath d='m500.232 220.01-2.723.945 1.66 11.443 10.881 18.644 5.707-1.005 1.926-3.435 1.526.674c.657.674 2.788 4.307 4.58 5.047 1.79.741 2.716.472 4.312 1.756 1.594 1.275 7.415 9.944 7.716 10.276.294.338-.335-3.717-.335-3.717l-1.774-5.184-2.201-3.618-.334-.975 3.019.033 1.872 1.147 2.871 2.401 1.491 1.769.781 1.82.329 1.594.768 2.476 1.588 3.435 1.913 3.264.61-1.331-.93-3.836-2.919-9.307-1.79-3.13s2.355 1.697 2.983 1.916c.631.223 2.772 3.42 2.772 3.42l1.362 3.296.98 3.062.671 2.678.984 2.857 1.69-.973-.296-2.067-1.46-6.382-.63-6.916s.816-.02 1.805 1.074c1 1.092 1.895 3.571 1.895 3.571l.733 6.26.991 5.737 1.857 5.859 1.94 3.683 1.263 2.067s.067-2.926.048-3.06c-.015-.132-2.373-24.498-2.373-24.498l.318-1.027s.281-.154 1.094 1.008c.812 1.16 1.627 2.976 1.627 2.976l.713 3.82.347 2.644.498 4.98.663 5.4 2.491 5.794 1.344 3.128.748-3.717-1.182-26.204.552-.757s1.39 1.145 1.853 1.955c.468.804 1.332 1.594 1.332 1.594l.811 5.774.731 16.527.58 4.257 4.86-43.286 3.002-.655.348-.826-2.192-1.683-4.922-7.64-3.32-7.388-5.822-10.728-10.105-12.318s-6.269-5.354-7.862-6.566c-1.593-1.21-2.911-1.967-2.911-1.967l.498-1.54 1.666-2.702-.272-.126-1.3.078-3.38.48-3.41-1.012-6.691-4.67-7.167-3.408-4.208-1.489-10.151-2.575-10.1-1.364-4.533-.062-4.129.77s-2.099.865-2.756 2.162c-.653 1.296-.705 2.203-.504 4.096.197 1.895 1.342 2.879 4.18 4.042 2.842 1.16 9.505 5.604 9.505 5.604l3.214 3.229 1.191 1.541.174 1.188 2.163 17.039-4.278 9.263-3.068 1.592z' fill='%238f4620'/%3e%3cpath d='M511.157 246.567s1.822 3.097 4.41.709c2.593-2.39-1.13-9.191-1.091-9.596.032-.404 1.191-.537 1.191-.537l1.894 3.5s1.127 1.884.693 4.88c-.428 2.996-3.315 5.587-3.315 5.587l-3.285-.74z' fill='%23ab6d29'/%3e%3cpath d='m574.713 286.5-2.34-6.92s-.691-4.442-.691-5.35c0-.912-.45-12.17-.651-14.288-.198-2.12-.095-4.547-.32-4.845a962.59 962.59 0 0 0-2.54-3.36l-.992-1.037.702-.503s.862.944 1.098.435c.227-.501-.038-2.957-.995-6.797-.965-3.837-5.877-12.823-5.877-12.823l.53.436L564 232.83l2.887 2.32 6.24 2.289 3.385.54 2.186 4.376s1.559 7.54 1.46 11.339c-.1 3.807-.334 6.903-1.792 10.705-1.457 3.806-1.822 15.855-2.023 17.77-.2 1.923-.929 3.806-.929 3.806z' fill='%234d2a15'/%3e%3cpath d='M574.737 266.486s1.306-1.556 1.88-3.695c.57-2.133.794-18.922-1.192-21-1.994-2.077-6.059-3.715-6.259-3.578-.2.137 1.624 5.473 1.624 5.473s.611.782 1.235 2.17c.344.774.816 2.172.897 2.683.225 1.445 1.416 4.849 1.592 9.235.168 4.384.223 8.712.223 8.712z' fill='%238f4620'/%3e%3cpath d='M565.565 277.025s.855-7.943.456-13.76c-.395-5.816-.877-6.543-1.43-7.594a49.455 49.455 0 0 1-3.906-9.697c-1.352-4.844-2.229-8.561-3.104-9.53-.876-.97-2.63-3.069-3.025-2.502-.4.565-.4 1.777-.4 1.777l-2.39-.65-.556-1.533.766-2.473-.151-1.062-.28-1.75 3.087 2.457 6.338 4.343 3.184 13.145 2.951 8.18.415 13.853-.299 12.197zm3.727-37.9s1.658 1.564 2.626 2.106c.973.544 2.804 1.669 2.439 1.794-.358.125-2.078-.545-3.149-1.15a8.974 8.974 0 0 1-1.8-1.349z' fill='%234d2a15'/%3e%3cpath d='M556.943 273.894s1.264-2.788 1.063-6.324c-.2-3.535-1.888-12.051-2.42-13.13-.532-1.08-3.05-2.689-5.31-7.471-2.256-4.781-2.025-5.756-3.513-7.505a139.956 139.956 0 0 1-3.057-3.735l.464-5.118 5.508 2.794 2.356 1.177 2.79 13.394 2.49 3.737 1.057 5.356 1.332 12.485.724 9.93-.395.874zm-6.355-5.666s.147-3.939-.851-7.47c-.997-3.536-1.69-6.166-2.788-7.273-1.094-1.108-3.877-3.988-6.366-7.725-2.49-3.736-5.927-7.674-5.927-7.674l.09-5.011s1.653 1.555 3.062 2.239c1.409.684 3.52 1.865 3.52 1.865l1.472 5.746 1.9 4.134 2.784 3.697 1.779 1.642 1.134 6.186.61 3.48 1.467 4.968-.485 2.488-1.402-1.292zm-4.58.046-1.52-1.462s.821-.989.424-2.958c-.399-1.965-.922-3.861-1.819-5.728-.893-1.866-1.163-3.005-1.712-3.558-.551-.554-5.205-4.95-6.82-6.284-1.615-1.342-4.103-3.891-5.649-4.877-1.542-.98-2.664-1.235-2.664-1.235l-.871-6.161s2.043 2.726 3.262 3.18c1.22.456 3.213 1.086 3.213 1.086l4.324 7.65 1.47 1.944 4.006 3.204 1.642 3.307 1.22 3.814 1.518 5.253.274 3.178zm-8.506-1.718s-2.553-2.927-2.954-4.817c-.397-1.882.268-1.882-.532-4.036-.798-2.152-3.45-5.315-5.64-7.07-2.193-1.75-5.307-4.305-5.107-5.721.2-1.412.596-1.48.596-1.48l1.328 1.142 6.83 7.274 2.095 3.806 1.593 4.743 1.06 2.223 1.028 2.829zm24.652-35.68s4.709 5.841 5.906.472c.531-2.39-1.633-6.94-1.633-6.94s-4.377-7.667-5.868-9.519c-1.492-1.85-8.793-11.209-8.793-11.209l-5.337-2.49 1.822 3.132s3.98 3.97 9.061 12.754c5.073 8.785 4.077 13.631 4.077 13.631l.764.17zm-27.35-35.201s9.352 7.977 15.378 16.608c6.019 8.635 8.408 14.393 7.063 15.55-1.344 1.162-5.127-.653-6.664-3.078-1.544-2.423-2.844-6.664-8.514-13.129-5.674-6.46-8.408-7.421-8.408-7.421l-4.083-6.614zM529.93 214.8s5.524 4.594 9.006 8.33c3.487 3.737 5.279 6.412 5.279 6.412l2.236 2.22s-1.343-2.37-.595-3.18c.744-.806 1.644-.402 1.644-.402l-17.57-18.431zm-1.144.514s1.792 3.433 4.728 6.31a741.936 741.936 0 0 0 6.168 5.959l1.248 4.492s-8.012-6.156-8.062-4.644c-.052 1.514 1.942 4.644 1.942 4.644l-2.44-1.311-3.385-4.9-2.042-4.24-2.288-5.858 4.13-.452z' fill='%234d2a15'/%3e%3cpath d='M504.555 234.3s4.18 3.735 6.472.1c2.29-3.635.497-7.825.497-7.825s5.902 8.702 7.566.554c.299-1.464-3.585-7.12-3.585-7.12l1.393-1.309 2.981 5.048s2.795-1.262 2.795-4.747c0-3.483-2.886-7.978-2.886-7.978l2.751 3.063s5.456.12 5.558-3.215c.097-3.33-4.58-6.815-4.58-6.815s3.733.252 3.68-1.92c-.045-2.168-5.07-3.684-5.173-5.046-.099-1.364 1.492-3.689 3.783-2.426 2.29 1.262 5.474 2.273 6.767-.2 1.295-2.477-.099-2.978-.099-2.978s-2.94-.607-3.231-.707c-.304-.102-5.23-2.778-5.23-2.778l-4.137-1.564-4.27-.557 1.585 3.18 1.102 8.735.045 4.04.796 8.786-2.09 7.32-1.084 1.32-.77.982-1.822 3.865-2.557 2.769-3.271 4.184-2.985 3.238z' fill='%234d2a15'/%3e%3cpath d='M534.185 250.703s-1.057-2.622-3.312-4.375c-2.26-1.753-5.843-1.886-5.843-1.886l6.134 6.5zm8.587 1.483s-1.99-3.968-4.31-6.395c-2.324-2.424-3.852-5.554-4.484-5.554-.627 0-1.091.135-1.091.135l.596 5.014 4.246 4.11s3.983 2.96 5.043 2.69zm7.068-.304s-.992-4.61-3.35-9.052c-2.35-4.444-4.842-6.262-4.842-6.262l.56 4.746 1.932 4.577 3.114 4.512zm5.77-2.593s1.66-9.492.168-12.12c-1.49-2.625-4.31-3.128-4.31-3.128l-.901 1.378.901 6.766 2.252 5.181zm5.679-15.82s1.392.707 3.084 3.903c1.69 3.198 4.082 12.659 4.044 13.163-.03.5-.893.385-1.124.272-.232-.124-5.974-9.093-5.974-9.093l-.911-8.382z' fill='%23ab6d29'/%3e%3cpath d='M521.216 244.499s3.036-.657 3.036-1.716c0-1.062-3.629-3.183-3.331-4.9.145-.856 3.084.153 3.285-.454.198-.604-3.034-5.653-2.043-6.814.996-1.161 3.734 5.452 3.734 5.452s1.64 3.111 1.044 4.897c-1.842 5.503-5.725 3.535-5.725 3.535zm7.115-6.87c.147-.441 4.779.606 4.828.303.178-1.087-4.179-4.443-4.179-4.443s-.997-1.916-.693-2.219c.294-.304 3.083.303 3.235-.102.145-.404-3.19-4.797-3.19-5.603 0-.81.9-.103.9-.103s2.636 2.728 4.032 4.949c1.388 2.221 2.698 4.04 2.235 7.573-.493 3.785-7.561.856-7.168-.356zm20.913-6.964s-.751-3.13-.302-3.535c.451-.402 1.647-.757 1.647-.757s-2.469-1.539-3.638-1.566c-1.17-.025-1.342-.365-1.64.127-.301.49 2.114 3.533 2.114 3.533z'/%3e%3cpath d='M535.154 233.084s7.117 1.768 7.415 1.264c.299-.505-5.675-6.062-5.675-6.062s-.396-1.005-.296-1.36c.098-.352 2.586-.404 3.333.201.744.606 0 1.766.25 2.221.246.455 2.49 3.888 2.888 3.331.4-.554-.453-4.745-.25-5.047.197-.302 2.739 2.372 3.429 2.827.699.455 4.682 3.586 5.08 2.121.4-1.462.647-1.716.495-2.576-.147-.857 1.33 4.041-.531 4.644-1.857.609-3.996-.652-3.996-.652l-1.644-1.265-.962-1.01s1.064 3.788-.182 4.19c-1.242.406-2.687.204-2.687.204l-2.984-.304-3.683-2.726zm16.345-4.86s7.596 4.557 8.345 3.752c.751-.806-1.984-11.505-1.543-12.62.352-.893 6.167 12.15 3.334 13.934-2.166 1.359-3.235.403-3.235.403l-3.731-1.97-3.17-3.5zm21.135 19.195s.687.509 1.655.783c.308.088 1.222.366.969.393-.247.02-2.023.238-2.151.287-.123.05-.473-1.462-.473-1.462zm-7.372-25.106s.724.413 1.173.538c.449.127 1.022.406 1.022.481 0 .077-.561.315-.96.265a2.422 2.422 0 0 1-.647-.164l-.588-1.121zm-2.185-3.74s.779.358 1.773-.351c1-.707 1.064-1.178.984-1.55-.084-.37-1.646-.37-2.173-.725-.532-.35-.5-.99-.5-.99l-1.71-.034-.63.235zm6.706 22.035s2.324 1.364 2.975 1.492c.643.127 1.742.734 1.59.934-.146.202-1.863.354-2.734-.15-.872-.507-1.159-.194-1.159-.194l-.672-2.083zm-12.513-34.594.038.013c.13.037.56.147.929.107.442-.05.81-.32.966-.149.312.349.06 1.965-.57 2.426-.626.461-1.392.835-1.503.806-.116-.027-2.45-3.375-2.45-3.375zm-10.888-9.743s1.521-.09 2.28-.088c.76 0 1.642.55 2.325.982.683.432 1.367 5.02.995 5.886-.369.867-5.486-2.972-5.624-3.315-.146-.349-2.367-3.783-2.367-3.783zm-4.802-2.08s3.725.23 3.384-2.133c-.339-2.37-2.047-3.405-2.047-3.405l-4.462 3.172 3.124 2.366zm-9.99-4.359s.998.551 2.107.115c1.108-.432 4.037-4.24 6.17-4.703 2.135-.46 2.56-.43 2.963.06.396.489.197 2.654-.289 3.258-.48.608-6.684 3.232-6.684 3.232s-1.292-.077-2.294-.31a14.74 14.74 0 0 1-2.028-.668l.055-.984zm-1.156-6.857c-.942-2.201-2.617-3.098-3.244-2.952-.626.145 2.132 2.337 2.53 5.368.399 3.027.369 5.06.315 5.234-.056.17 1.28.19 1.28.19l.255-1.157.16-.826-.016-.746-.182-1.565-.329-1.235-.27-.948c-.001 0-.017-.227-.499-1.363zm-8.821-3.132c-2.855-3.333-8.029-5.706-8.381-5.706-.352 0 6.021 3.84 7.464 6.311 1.442 2.476 1.494 5.806 2.14 6.261.645.457 1.246-.225 1.297-.3.047-.078.521-.76.447-.962-.076-.2-.4-1.59-.4-1.59l-.991-1.665-.6-1.037zm-8.458-3.48c-3.612-3.183-10.156-4.696-15.457-4.77-5.303-.078-8.012.4-7.243 3.303.776 2.904 3.165 4.166 7.64 4.166 4.484 0 5.554-.479 7.966.277 2.415.759 4.626 2.123 5.498 3.03.874.91-1.665-2.221-3.953-3.938-2.29-1.715-3.794-2.615-3.794-2.615s-.44-.945 2.651-.514c3.08.426 7.21 2.424 8.332 4.999 1.119 2.576.945 3.99.921 4.543-.028.555 1.07-.302 1.07-.302l.447-1.264s.177-1.01-.42-2.144c-.597-1.137-.7-1.516-2.09-3.154-1.395-1.644-1.568-1.618-1.568-1.618zm-14.71 43.706c2.257-.067 7.3-4.375 8.034-10.364.73-5.993-2.989-18.178-3.851-19.456-.861-1.282 1.39-.607 2.62.672 1.231 1.279 3.75 9.964 3.75 16.291 0 6.331-1.261 8.145-4.646 11.378-3.384 3.23-6.106 2.894-6.106 2.894l.2-1.415zm7.84 17.782s1.126 1.414 2.383.94c2.326-.867 5.907-2.582 5.907-5.923 0-2.155-2.784-4.037-2.917-4.846-.133-.807 0-1.481 0-1.481l2.452.54.701 3.43s.96 1.012 1.956.608c1-.407 3.846-2.49 3.448-4.511-.395-2.021-3.115-4.51-3.38-5.52-.266-1.012.064-1.886.064-1.886l2.325.404.711 2.952s.612 1.021 1.942.75c1.327-.268 3.65-2.692 3.12-3.837-.532-1.143-2.256-3.839-2.389-4.105-.133-.269-.066-1.28-.066-1.28l.93.522s.895.353 2.687-.176c1.793-.53 3.536-1.742 3.507-2.979-.022-1.237-1.342-2.423-1.445-3.103-.098-.681-.024-.962-.024-.962l1.172.178 1.442 1.792.346 2.145-.52 1.842-2.188 2.375-2.168.91-.594-.053 1.32 2.299-.428 3.055-1.913 1.764-2.568 1.542-.197 2.853-1.418 3.08-3.285 1.943h-.965l-.378 1.867-2.06 2.93-3.558 2.371-2.592.48-1.492-2.171z'/%3e%3cpath d='M525.913 205.5s5.958 1.682 5.772-2.088c-.102-2.121-5.836-7-6.202-7.807-.364-.81-.265-1.92-.265-1.92l2.968 2.719s3.788.901 4.867-1.287c1.076-2.184.208-3.56.019-3.61-.186-.048.87-.19.87-.19l1.754.358-.21 3.372-1.943 8.48s.516 3.329-2.108 3.566c-2.621.238-5.522-1.592-5.522-1.592zm5.643 45.179s.102-1.718-1.225-2.914c-1.33-1.195-3.883-2.322-4.296-2.576-.416-.25 4.261 5.317 4.261 5.317zm8.633.28s-2.988-3.685-3.632-4.95c-.649-1.259-2.191-4.039-3.437-4.166-1.242-.125 1.172 4.595 1.172 4.595l4.849 4.421zm8.179-.08s-2.562-4.846-3.186-6.262c-.62-1.416-1.966-5.278-3.485-6.338-1.513-1.06.2 1.767.2 1.767l1.619 5.023 2.842 4.369zm6.028-3.518s-.174-4.136-.676-7.016c-.493-2.878-2.735-5.276-2.883-5.174-.15.102.17 5.124.17 5.124zm12.443 3.12s-2.09-4.975-2.936-7.323c-.846-2.348-2.935-6.286-3.159-6.336-.224-.05.622 4.517.622 4.517l2.537 7.272zm10.795-13.027s-1.916-1.969-6.048-3.587c-4.127-1.612-8.26-1.793-8.26-1.793l.499.531 1.875 1.592 4.318 2.22 5.638 1.364z'/%3e%3cpath d='M533.284 239.895s.033 3.603 1.89 5.792c1.86 2.19 6.238 6.192 7.103 7.002.863.805 1.592 5.25 2.887 8.952 1.289 3.7 1.595 6.734 2.155 7.775.564 1.04 1.723 2.724.864 2.557-.864-.168-1.662-1.179-2.193-2.524-.532-1.344-.366-1.344-.294-3.198.064-1.853-2.822-11.343-4.151-12.385-1.33-1.047-7.433-6.125-9.79-9.628-2.353-3.5-1.854-4.31-1.854-4.31l3.384-.034z' fill='%23202020'/%3e%3cpath d='M543.133 263.624c-1.295-2.659-1.526-5.014-1.925-6.597-.4-1.582-5.541-5.888-6.771-6.463-.93-.435-2.867.118-3.646-.471-.778-.587-5.641-6.106-5.641-6.106s-.731.69-.498.89c.233.205 5.274 5.656 7.096 7.403 1.832 1.752 2.822 5.656 4.151 8.686 1.329 3.025.797 2.422.931 3.9.132 1.484 1.062 2.328 1.99 2.328.927 0 1.16-.44.816-.694-.353-.25-2.245-2.471-3.338-5.351-.999-2.626-2.29-7.471-3.883-9.292-.102-.112-.222-.254-.358-.404.375-.044 1.009-.164 1.982-.217 1.231-.067 6.304 4.612 6.74 5.992.43 1.382-.036 1.917 2.09 6.531 2.123 4.614 3.116 5.688 3.116 5.688h.37s-1.93-3.164-3.22-5.823zm-7.98-30.54s3.685 2.323 4.777 2.626c1.091.302 1.891.405 1.891.405s.55 6.718 3.235 10.5c2.684 3.79 4.875 5.153 4.875 5.153s.1 7.317 2.092 12.369c1.993 5.047 2.388 11.156 1.94 12.113-.448.96-2.142-2.976-3.232-6.461-1.098-3.485-2.143-7.266-2.888-9.592-.746-2.323-2.788-5.809-3.93-6.767-1.15-.96-.227-.856.446-.253.67.607 2.612 3.005 3.857 6.87 1.242 3.86 1.74 7.773 2.412 7.8.673.023 1.192-.63 1.172-1.416-.027-.778-.872-2.8-1.492-6.411-.625-3.61-1.248-6.082-1.845-7.093-.6-1.008-1.47-1.186-3.78-5.225-2.314-4.038-3.336-6.285-3.736-8.155-.398-1.869.073-1.69-.325-1.969-.396-.277-.693.027-2.457-.957-1.77-.985-3.011-3.535-3.011-3.535z' fill='%23202020'/%3e%3cpath d='M544.7 231.717s2.255 1.751 3.514 2.29c1.262.537 3.086.636 3.086.636s-.46 6.363 2.028 10.505c2.487 4.14 5.074 6.561 5.074 6.561s.398 1.55 1.197 10.433c.797 8.89.827 9.055 1.06 12.623.232 3.568.343 16.21-.17 15.821-1.92-1.482-.33-8.348-1.29-11.172-.961-2.832-2.486-3.304-4.346-11.31-1.859-8.014-.667-9.832-1.99-12.826-1.327-2.998-3.085-3.265-3.085-3.265s2.453.471 3.482 2.995c1.031 2.523 1.188 9.231 2.027 12.556 1.89 7.505 4.479 11.307 4.479 11.307s-.566-9.424-1.295-14.774c-.731-5.356-.695-9.827-1.69-11.881-1-2.057-3.156-3.705-4.447-6.432-1.295-2.726-1.76-8.078-2.393-9.458-.627-1.38-.988-.951-1.888-1.311-2.92-1.178-3.354-3.3-3.354-3.3z' fill='%23202020'/%3e%3cpath d='M551.5 228.224s1.99 2.219 4.772 3.87c2.792 1.649 4.183 1.147 4.616 1.481.431.337-.565 5.992 2.356 11.208 2.92 5.218 3.982 5.319 4.049 6.029.065.701.595 16.087.963 21.302.362 5.217.759 22.72-1.396 22.72s-.2-12.929-1.26-15.955c-1.066-3.033-1.027-2.155-2.055-4.574-1.033-2.428-1.018-12.01-2.657-17.676-1.225-4.239-2.49-4.915-2.49-4.915s2.064 1.11 3.02 4.614c.963 3.498 1.262 15.248 2.39 17.128 1.125 1.888 2.752 4.21 3.119 5.963.367 1.747-.232-22.32-.729-23.764-.496-1.451-5.344-10.166-5.71-14.98-.36-4.811-.532-5.285-.957-5.652-.436-.375-1.823-.07-4.113-2.224-2.294-2.153-3.919-4.576-3.919-4.576z' fill='%23202020'/%3e%3cpath d='M562.446 230.993c.137-.463 1.519 2.587 5.848 4.306 4.33 1.715 8.462 1.413 9.01 1.866.547.454 3.286 6.97 3.382 15.65.105 8.687-1.493 7.878-2.834 15.353-1.342 7.472-1.396 22.665-2.24 24.99-.4.856-.847 1.209-1.297 2.677-.446 1.46.346 4.239-.997 4.289-1.34.05-1.491-2.12-1.491-3.282 0-1.161 1.396-5.3 1.396-9.441 0-4.142-.898-4.645-1.496-9.596-.597-4.945-.646-20.696-1.192-22.211-.548-1.512-3.251-4.792-3.251-4.792s2.903 1.863 3.6 3.982c.694 2.125.763 19.615 1.542 23.127.797 3.583.547-.808.846-2.83.296-2.017 1.344-10.602 1.192-15.196-.15-4.59-2.092-14.539-3.684-16.206 0 0 .829.965 1.74 3.151.023.062.585.637 1.238 1.015.689.396 1.477.599 1.5.67.023.053-.873-.074-1.578-.382-.521-.225-.904-.65-.887-.61.982 2.599 1.971 6.617 2.065 12.36.137 7.827-1.141 25.046.103 25.247 1.246.204 1-9.39 2.29-17.165 1.292-7.776 3.035-8.89 2.488-15.248-.547-6.361-2.237-13.23-3.58-14.088-1.342-.858-5.177-.555-8.565-2.728-3.379-2.168-5.289-4.447-5.147-4.907zm-54.864 8.762s1.247.555 2.688-.15c1.447-.708 5.277-3.735 5.277-5 0-1.262.053-2.524.053-2.524s.048.557 1.146.705c1.09.157 4.226-2.219 4.471-3.733.253-1.514.253-4.189-.094-4.745-.35-.555.943.555 1.59-.052.647-.606 3.682-2.575 3.637-4.593-.053-2.021-1.695-3.89-1.695-3.89s1.494.203 2.386 0c.9-.198 3.886-1.967 3.785-3.785-.1-1.818-1.142-4.594-3.485-4.797 0 0 1.743.406 3.437-.2 1.69-.606 2.29-1.566 2.29-3.487 0-1.917-3.435-6.056-4.033-6.41-.596-.35 3.681 1.212 4.777-.505 1.09-1.716 1.242-2.928.944-3.886-.298-.96-1.194-1.211-1.194-1.211s1.845.502 4.333-.76c2.487-1.261 4.676-2.926 5.822-2.876 1.144.05-3.635 2.573-3.885 3.99-.1.583 1.303 1.585 3.464 3.168.137.096.2.188.418.304.98.529 4.698.681 4.948.87.31.229-3.593.144-3.259.398 2.628 2.009 5.823 4.7 8.746 8.252.11.132.729.669 1.442.875.871.248 1.865.17 1.993.334.095.128-2.524-.065-2.429.06a100.076 100.076 0 0 1 5.017 7.198c.103.16.712.874 1.41 1.174.762.328 1.62.249 1.724.422.194.303-2.13.012-1.953.306a125.562 125.562 0 0 1 5.067 9.213s-4.686-8.24-10.414-14.654c-5.723-6.411-7.066-7.269-7.363-6.662-.3.605 4.28 6.26 6.719 10.246 2.435 3.991 4.652 8.952 4.652 8.952s-5.748-11.93-13.81-19.25c-8.065-7.32-8.906-8.532-9.803-8.23-.898.305-1.59 5.707-1.046 6.816.547 1.112 6.42 5.554 11.443 11.461 5.028 5.908 11.4 16.055 11.4 16.055s-4.526-7.32-12.192-15.45c-7.666-8.128-10.598-9.996-11.196-9.946-.597.05-.65 1.516-1.542 2.728-.897 1.21-2.74 1.059-2.793 1.616-.045.555 6.475 6.56 7.767 7.269 1.292.707 1.99.354 2.985.909.995.555 2.073 1.482 2.073 1.482s-1.371-.523-2.37-.825c-.997-.304-1.993-.355-1.993-.05 0 .3 5.278 6.762 6.171 7.167.897.406 1.395.203 2.59.658 1.191.455 2.89 1.666 2.89 1.666s-1.848-1.061-3.14-1.315c-1.292-.252-1.84 0-1.793.356.053.351 4.033 5.452 3.835 5.553-.197.1-6.17-7.07-11.249-11.562-5.077-4.494-7.364-5.453-7.615-5.301-.246.15-.098 1.466-1.343 1.919-1.244.454-2.39.606-2.39 1.06 0 .454 4.58 4.746 7.812 8.33a229.033 229.033 0 0 1 6.023 6.969s-3.283-3.283-6.866-6.665c-3.585-3.382-5.423-4.694-5.772-4.493-.35.2-.398 1.918-.052 2.372.348.455 6.97 8.282 6.771 8.482-.199.202-7.813-9.39-8.31-9.39-.502 0-.8 1.21-1.296 1.767-.5.556-2.638.556-2.638 1.311 0 .758 10.748 11.307 10.45 11.56 0 0-8.905-7.673-9.205-7.218-.3.454 3.73 7.825 3.482 7.977-.25.152-5.226-7.724-5.676-7.673-.44.048-.398.908-1.69 2.069-1.293 1.162-2.935.657-2.986 1.162-.05.504 7.417 8.786 7.215 8.936-.199.15-7.56-7.877-7.762-7.422-.05.12-.446.465-.247 1.161.548 1.937 2.21 5.458 1.99 5.755 0 0-2.389-4.897-3.038-4.695-.645.202-.645 1.164-1.743 1.869-1.09.707-1.987.556-2.089 1.06-.096.503 1.295 1.363 1.895 2.527.593 1.161 1.094 3.686 1.094 3.686s-.748-2.125-1.792-3.486c-1.045-1.364-1.994-2.273-2.788-2.273-.795 0-1.344.758-1.344.758l-.748-1.769z' fill='%23202020'/%3e%3cpath d='M577.319 237.174s2.436-.15 2.734-.655c.3-.507-.896-.154-3.085-2.524-2.188-2.375-7.779-18.564-13.884-26.712-9.996-13.33-19.358-19.435-19.358-19.435s11.136 6.445 19.76 19.034c8.754 12.792 10.88 22.822 13.331 25.446 2.459 2.625 4.847 3.095 4.715 3.837-.133.741-.533 1.279-1.462 1.414-.928.134-3.187.336-3.187.336l.435-.741zm-73.57-3.53s.065.196.516.248c.458.057 3.483-2.961 3.316-3.832 0 0-1.344-.504-2.434-1.615-1.094-1.111-1.347-2.878-1.347-2.878s.998 1.969 1.843 2.524c.846.554 2.19.857 2.687.454.5-.404 4.952-3.702 4.678-4.999 0 0-1.392.05-2.688-.909-1.292-.96-1.528-2.93-1.528-2.93s.835 1.583 2.162 2.225c1.321.64 2.618.37 2.985-.102.364-.473 3.284-4.48 2.95-5.653 0 0-1.49.167-2.819-.775-1.328-.945-2.023-3.3-2.023-3.3s.961 1.986 2.652 2.321c1.692.338 3.087-.672 3.35-1.882.265-1.212 1.195-5.722-.227-6.868 0 0-2.195.707-3.752-.1-1.555-.808-2.121-2.793-2.121-2.793s1.325 1.817 3.08 2.052c1.762.235 2.527-.705 2.821-1.414.304-.707.369-3.264-.164-4.677-.53-1.415-1.626-1.315-1.887-3.433 0 0-.57.84-2.826.84-2.255 0-3.451-2.558-3.451-2.558s1.796 1.651 3.585 1.516c1.79-.135 2.455-1.616 2.493-2.761.027-1.147-.901-2.156-1.395-3.333-.499-1.178-.534-2.592-.865-2.423-.332.168-.761 1.245-3.087.875-2.32-.368-2.82-1.953-2.82-1.953s1.693 1.18 2.985 1.078c1.3-.1 2.123-.707 2.123-1.58 0-.878-.494-2.494-3.415-4.985a89.147 89.147 0 0 0-5.308-4.205s3.783 2.086 6.236 4.14c2.46 2.053 3.848 4.04 3.848 4.04s2.692.874 2.988-.035c.296-.91.252-2.044-.596-3.66-.828-1.58-3.133-3.938-3.133-3.938s2.411 1.993 3.555 4.063c1.142 2.07.627 3.51.72 4.014.103.503 5.128 2.45 6.248 1.768 1.12-.682.597-2.146-.348-3.637-.943-1.488-1.722-2.725-1.722-2.725s1.173 1.29 2.017 2.751c.848 1.466 1.544 2.628 1.221 3.307-.32.682-1.021.985-.945 1.264.076.275 1.737 1.16 3.434 2.044 1.693.884 3.656 1.666 3.907 1.186.25-.48.423-1.641.278-3.282-.154-1.64-1.098-4.14-1.098-4.14s1.117 2.424 1.317 4.14c.198 1.718-.22 3.005.175 3.61.399.606 1.64.759 1.64.759s-.995.705-3.208.05c-2.214-.658-11.72-5.455-12.17-5-.446.454 4.431 3.409 6.671 5.53 2.241 2.119 3.334 4.34 3.334 4.34s-1.742-1.464-3.432-2.397c-1.692-.934-6.77-3.535-7.096-3.182-.317.355 1.92.807 2.09 1.214.175.404-1.59 1.993-1.59 2.65 0 .655 7.241 5.678 7.016 6.233-.223.557-1.839 1.869-2.137 1.794-.3-.077-3.88-2.828-3.88-2.398 0 .43 2.06 2.17 2.038 2.548-.023.38-1.367 1.289-1.125 2.147.253.858 4.038 3.965 4.011 5.023-.027 1.06-2.165 1.969-1.765 2.65.394.683 2.337 3.08 2.337 3.08s-2.091-1.388-2.765-2.118c-.672-.734-2.019-2.323-2.258-2.073-.251.255-1.595 3.208-1.471 3.865.127.655 1.817 1.664 2.14 3.455.324 1.794-.25 3.66-.376 3.66-.124 0-2.508-3.078-2.985-3.128-.47-.05-1.067.153-1.466.935-.4.782-1.795 3.23-1.616 3.685.169.453 2.507.984 2.561 2.853.05 1.869-1.47 3.608-1.618 3.608-.15 0-2.911-3.71-3.185-3.71s-3.41 3.485-3.484 3.912c-.077.43 2.139 1.996 1.743 2.603-.4.605-1.895-.23-2.742.25-.842.482-2.335 1.085-2.636 1.085-.296 0-.746-1.007-.746-1.007z' fill='%23202020'/%3e%3cpath d='M543.648 187.999s.25-.985.725-1.49c.47-.506 2.393-2.627 1.667-3.054-.72-.427-3.16.355-4.701.225-1.545-.124-2.564.254-7.043-3.458 0 0-14.204-9.93-36.206-11.208-6.969-.403-10.089 2.089-10.42 3.4-.03.302 1.828-2.828 8.826-2.726 3.087.033 25.24 1.822 36.728 10.838.6.47 4.405 4.115 7.963 3.71 3.56-.404 4.307-.807 4.231-.303-.074.505-1.192 1.819-1.442 2.421-.247.607-.494 1.719-.494 1.719zm-38.392 2.932s-.019-.064-.057-.18c-.199-.606-1.614-2.582-4.021-4.817-2.887-2.678-11.85-6.413-12.297-6.564-.446-.153 9.201 4.444 11.898 7.018 4.326 4.14 4.478 4.543 4.478 4.543z' fill='%23202020'/%3e%3cpath d='M505.233 206.738s-.588-.971-2.476-2.184a15.123 15.123 0 0 0-3.785-1.716l4.378 1.111c1.295 1.11 1.882 2.79 1.882 2.79zm-1.133-8.236s-.597-.858-3.284-1.717c-2.688-.858-3.333-.808-3.333-.808s2.488-1.06 4.377-.098c1.89.956 2.24 2.624 2.24 2.624zm-1.59-6.765s-.547-1.212-2.937-2.069c-2.388-.86-4.082-1.011-4.082-1.011s2.487-.704 4.88.253c2.389.958 2.14 2.827 2.14 2.827zm-2.885-4.346s-.7-.957-5.174-2.017c-4.483-1.063-6.225-1.114-6.225-1.114s6.372-.502 8.064.205c1.688.705 3.335 2.926 3.335 2.926zm-8.213-4.697s-2.734-.757-5.373-.96c-2.639-.201-6.771.151-6.771.151s7.666-1.21 9.704-.755c2.043.453 2.44 1.564 2.44 1.564z'/%3e%3c/g%3e%3cg fill='%23f8c83c' stroke='%23977c2e' stroke-width='.35'%3e%3cpath d='M466.199 277.562s1.362 2.39 4.048 2.49c2.689.1 4.777 3.94 4.777 3.94l-2.953 2.894-7.099.335-2.287-3.669 3.515-5.99zm.164-2.454c.232-.467-2.09-5.05-3.75-5.822-1.658-.77.564 1.483.2 2.424-.364.943-.61 2.105-.478 2.273.134.167 1.371 2.105.71 2.98-.665.874 3.318-1.854 3.318-1.854z'/%3e%3cpath d='M465.09 282.095s1.262.63 2.258.34c.995-.294 1.88-1.305 1.88-1.305m-5.423-.81s3.983-2.895 3.652-4.44c-.335-1.55-1.13-1.483-1.662-1.347-.53.133-2.984 2.153-3.116 2.623-.133.471 1.126 3.164 1.126 3.164z'/%3e%3cpath d='M460.989 282.306s.729 1.92 2.022 1.92c1.295 0 3.153-1.044 3.185-1.814.034-.781-1.294-2.193-2.157-2.594-.861-.402-2.853.638-2.853.638z'/%3e%3cpath d='M464.61 279.689c-.198.6-2.72 1.781-3.55 1.849-.828.067-2.52-2.053-1.826-2.359.7-.302 1.562-.271 2.191-.604.631-.34.797-1.178 1.162-1.213.364-.033 1.393.237 1.658.872.267.644.564.848.366 1.455z'/%3e%3cpath d='M462.017 281.36s-3.911 5.287-5.538 5.02c-1.626-.27.662-7.508.662-7.508s.632.405 1.925.81c1.294.402 2.589.874 2.951 1.677z'/%3e%3cpath d='M455.053 277.597s5.044.874 5.278 1.684c.231.808-2.424 1.884-3.85 1.884-1.428 0-1.428-3.568-1.428-3.568z'/%3e%3cpath d='M442.505 285.238s.667 2.425 2.857 2.56c2.19.136 4.246-2.29 4.246-2.29l-5.177-2.019z' fill='%23202220' stroke='none'/%3e%3cpath d='m442.505 285.238-.112.033c0 .012.17.626.624 1.27.45.638 1.196 1.312 2.338 1.378l.184.008c2.206-.014 4.147-2.338 4.159-2.339l.11-.133-5.402-2.104-2.036 1.85.022.07.113-.033.085.09 1.868-1.702 5.106 1.994.043-.112-.088-.079s-.117.137-.332.353c-.637.64-2.122 1.903-3.648 1.897l-.17-.004c-1.05-.063-1.731-.674-2.158-1.277a4.346 4.346 0 0 1-.455-.823c-.047-.113-.08-.208-.103-.27l-.03-.097-.118.03.085.09z' fill='%234b4139' stroke='none'/%3e%3cpath d='M443.966 284.56s.862 1.823 3.716 1.89c2.854.066 5.109-2.29 5.109-2.29l-4.512-3.568z' fill='%23202220' stroke='none'/%3e%3cpath d='m443.966 284.56-.106.055c.005.02.91 1.888 3.819 1.956h.124c2.862-.004 5.064-2.32 5.075-2.324l.092-.097-4.696-3.713-4.454 4.099.04.079.106-.054.08.09 4.239-3.9 4.434 3.503.072-.093-.087-.088-.094.1c-.45.427-2.42 2.16-4.807 2.156h-.118c-1.402-.037-2.3-.493-2.857-.944a3.37 3.37 0 0 1-.585-.605 1.746 1.746 0 0 1-.13-.2l-.037-.07-.11.05.08.091-.08-.09z' fill='%234b4139' stroke='none'/%3e%3cpath d='M444.352 284.981s1.26 1.044 2.754 1.127c1.493.083 3.352-.386 3.352-.386l-1.71.618-1.227.138-1.162-.186-1.044-.388-.813-.605z' fill='%234b4139' stroke='none'/%3e%3cpath d='M447.682 282.469s1.26 3.1 3.914 2.763c2.654-.34 2.72-1.884 2.72-1.884l-2.985-4.311-3.65 3.433z' fill='%23202220' stroke='none'/%3e%3cpath d='m447.682 282.469-.11.05c.002.009.288.713.883 1.422.592.713 1.502 1.439 2.74 1.439.136 0 .275-.012.416-.029 1.348-.17 2.063-.653 2.432-1.11.371-.454.395-.873.395-.89v-.039l-3.09-4.455-3.808 3.583.03.079.11-.05.083.093 3.549-3.337 2.907 4.194.096-.07-.117-.005-.007.052c-.052.262-.328 1.415-2.61 1.715-.132.019-.26.026-.385.026-1.142 0-1.987-.67-2.559-1.35a6.108 6.108 0 0 1-.639-.938c-.069-.127-.12-.235-.156-.306a2.152 2.152 0 0 1-.05-.118l-.11.044.08.092z' fill='%234b4139' stroke='none'/%3e%3cpath d='M448.055 283.077s1.593 1.937 2.988 1.905c1.39-.035 2.272-.56 2.272-.56l.065.221-.731.37-1.262.256-1.292-.17-1.061-.64-.979-1.381zm-5.035 3.107s1.227 1.26 2.353 1.312c1.132.05 2.856-.91 2.856-.91l.215-.067-.297.27-1.163.638-1.41.405-1.112-.203-.845-.52-.515-.654z' fill='%234b4139' stroke='none'/%3e%3cpath d='M454.75 277.329c1.193-.168 3.681 3.232 3.681 4.914 0 1.683-.728 4.209-1.956 4.141-1.23-.069-4.015-2.56-4.646-3.835-.631-1.28-1.26-2.157-.795-2.832.462-.673 3.716-2.388 3.716-2.388zm-12.373.303s-1.99-1.544-2.788-.738c-.796.805-.53 3.499 0 4.039.531.538 2.918-1.282 2.918-1.282z'/%3e%3cpath d='M442.109 279.514s-2.655.271-2.655 1.483c0 1.214 1.26 2.49 1.525 2.759.265.27 2.654-1.078 2.654-1.078z'/%3e%3cpath d='M443.171 281.733s-2.722.809-2.722 1.75c0 .938 1.195 2.693 2.055 2.693.866 0 1.53-1.688 1.86-2.02.333-.338-1.192-2.422-1.192-2.422zm1.332-7.874s-.53-.738-1.66-.27c-1.127.472-2.388 1.617-2.188 3.434.199 1.815.861 3.028.861 3.028l4.116-1.415z'/%3e%3cpath d='M444.83 277.025s-3.514 1.145-3.647 2.489c-.134 1.349.797 2.698 1.725 2.96.93.273 3.915-2.623 3.915-2.623z'/%3e%3cpath d='M447.88 282.621s-3.45 2.283-3.916 2.283c-.463 0-1.725-1.817-1.462-3.027.267-1.212 2.59-2.086 3.52-2.424.93-.338 1.858 3.168 1.858 3.168zm3.026-12.525s-1.095-.911-3.185-.756c-2.091.15-3.632 2.876-3.882 4.24-.25 1.36-.05 3.937.746 4.342.795.401 5.127-3.082 5.127-3.082z'/%3e%3cpath d='M446.676 280.436c-1.442-.153-2.737-2.224-2.49-3.482.248-1.265 3.088-3.437 4.58-3.182 1.492.25 1.192 3.99 1.192 3.99s-1.84 2.825-3.282 2.675z'/%3e%3cpath d='M451.268 280.12s-.73 1.686-2.19 2.428c-1.46.737-2.322.13-3.185-1.079-.861-1.213.399-1.752 1.063-2.359.663-.6 2.586-1.075 2.586-1.075z'/%3e%3cpath d='M448.944 275.681s-1.627 1.31-.696 2.828c.928 1.516 1.659 2.052 2.818 2.252 1.163.205 1.922-.267 2.855-1.381.929-1.11 2.288-1.613 2.157-2.995-.134-1.38-.665-2.457-1.494-2.86-.829-.402-3.35.035-5.64 2.156z'/%3e%3cpath d='M453.57 269.185s-1.678-.643-2.974.116c-1.293.757-2.188 2.298-2.236 3.708-.05 1.416.25 3.397.25 3.397s1.777-.506 2.921-1.466c1.145-.957 1.522-1.219 1.362-1.712-.097-.3-.567-.634-.567-1.82 0-2.073 1.244-2.223 1.244-2.223z' fill='%23202220' stroke='none'/%3e%3cpath d='M453.57 269.185s-1.939-.327-2.908.304c-.971.628-1.793 1.565-2.141 2.826-.35 1.265-.1 1.593-.1 1.593s-.182-1.099.161-2.15c.398-1.205 1.387-2.405 2.353-2.688 1.177-.345 2.634.116 2.634.116z' fill='%234b4139' stroke='none'/%3e%3cpath d='M503.527 305.976s1.402-.59 2.37-1.121c.973-.533 3.064-1.896 3.064-1.896l.67 3.488-2.686 2.07-2.341.023-1.415-1.032z'/%3e%3cpath d='M499.777 306.327s.037.044 1.673.08c1.63.043 1.789-.567 2.078-.427.288.14.748 1.883.748 1.883l-.597 1.091-2.353 1.333-1.985-1.091-.162-2.746zm18.635-1.122s-.468-.78-1.4-1.587l-3.319-2.895-.017 7.555 3.486-.086 1.663-2.336z'/%3e%3cpath d='M499.777 306.327s-.518-.765-1.995-.603c-1.466.16-3.024 1.36-3.18 2.38-.163 1.013 0 3.96.796 4.526.794.565 1.791.85 3.381.444 1.597-.404 9.716-5.414 9.716-5.414s-.955.2-2.07.448c-1.111.24-2.149-.247-2.149-.247s-1.115 1.255-2.387 1.457c-1.278.202-1.632-.607-1.874-1.21-.238-.604-.238-1.782-.238-1.782z'/%3e%3cpath d='M505.198 308.943s-1.196.457-1.647.786c-.446.326-2.053.892-2.053.892l.614 2.463 3.455.884 2.168-1.79.024-2.478zm16.076-1.74s-.547-.507-1.196-1.237c-.64-.73-1.44-.882-1.665-.759-.224.13-1.863 2.246-1.863 2.246l-.125 1.595 1.914 1.035 1.344.25 1.767-1.161z'/%3e%3cpath d='M509.404 305.987s-1.544.704-2.293 1.337c-.747.632-1.913 1.337-1.913 1.615 0 .276 1.743 2.083 1.743 2.083l1.766.143 3.83-2.68-.25-2.449-2.884-.048zm14.557 3.179s-.294-.606-.892-1.162c-.6-.558-1.342-.856-1.795-.807-.444.048-1.94 2.273-1.94 2.273l-.186.628 1.382 1.604 2.45.596 1.689-1.705z'/%3e%3cpath d='m517.644 311.843 1.743.3s-.053.458.45.861c.495.403.546.096.546.096s.248 1.67 2.088 3.083c0 0 2.143.709 3.234.102 1.098-.607.945.186.945.186l3.087-3.82s0-.76-.746-.808c0 0 .545-2.374-1.445-2.88-1.987-.505-3.583.202-3.583.202s-1.527 2.8-2.436 2.423c-.213-.09-.733-.368-1.096-.755-.841-.912-1.096-1.364-1.096-1.364s-.645.203-1.392-.303c-.75-.505-1.392-1.72-1.392-1.72s-1.144-.2-1.542-.603c-.398-.404-.81-1.201-.81-1.201l-2.85 2.048s-.09.903-1.751 2.115c-1.658 1.215-2.651 1.215-2.651 1.215s-.463 2.488-2.324 2.08c-1.857-.4-3.119-2.483-3.119-2.483s-1.329-.203-2.191.937c-.863 1.147-1.265 1.552-1.265 2.695 0 1.145.733 2.758 1.33 3.299.601.536 2.46 2.016 4.645.872 2.193-1.143 1.462-3.026 1.462-3.026s-.066.135 1.262-.741c1.324-.878 2.783-2.223 3.78-2.624' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='m514.241 296.618.015 4.884s.596 4.34-.353 5.704c-.942 1.363-4.38 1.06-4.872-.102-.498-1.16-.25-4.945-.25-4.945z'/%3e%3cpath d='M510.386 311.42s-.731 1.294 1.528 1.48c.64.056 1.07-.173 1.358-.503.583-.674.455-1.234.455-1.234s-.2 1.805 1.833 1.872c2.26.08 2.06-2.087 2.06-2.087' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M491.81 315.428s-1.258-2.125.235-2.896c1.492-.775 2.289.035 3.181.068.896.035.604-2.298.407-2.77-.201-.47-.672-1.471-1.033-1.739-.367-.27-5.302.223-5.264 3.535.036 3.183 2.473 3.802 2.473 3.802zm7.733 7.909s-1.592-2.254-.729-3.6c.867-1.348 1.522-.539 1.96-.575.428-.031.627-1.008-.102-2.488-.733-1.483-1.625-2.225-2.157-2.293-.533-.066-3.505 2.12-2.917 4.915.703 3.379 3.945 4.04 3.945 4.04zm27.842-2.722s5.365 2.253 5.738-3.164c.2-2.895-2.39-4.897-3.217-4.878-.565.01-.995.333-1.956 1.478-.965 1.145-1.696 1.984-1.298 2.426.398.436 1.99-.47 2.688 1.243 1.196 2.931-1.955 2.895-1.955 2.895z' fill='%23202220' stroke='none'/%3e%3cpath d='M499.543 323.337s-4.18-.921-4.145-5.008c.02-2.726 3.058-3.94 3.058-3.94s-2.81 1.492-2.858 3.888c-.087 4.158 3.945 5.06 3.945 5.06zm-7.676-7.91s-2.412-.531-2.674-4.002c-.264-3.47 5.461-3.334 5.461-3.334s-5.487.263-5.2 3.587c.296 3.432 2.413 3.75 2.413 3.75zm35.518 5.188s1.076.52 2.308.473c1.227-.048 2.704-.373 3.217-2.424.512-2.052.3-3.024-1.052-4.835-.95-1.26-1.82-1.236-1.82-1.236s.925.182 1.656 1.324c.731 1.146 1.793 2.426 1.063 4.73-.733 2.306-2.952 2.354-3.765 2.286a8.432 8.432 0 0 1-1.607-.318z' fill='%234b4139' stroke='none'/%3e%3c/g%3e%3cg fill='%234d2a15'%3e%3cpath d='m463.36 206.949-1.01-.209.73-1.688 2.824-1.031 2.818-.114 2.967-.12 1.365.942 1.52 3.517-5.622 3.35-.91.304-.349-1.384-.861-2.27z' fill='%23904720'/%3e%3cpath d='m515.947 288.404-.35-8.436-22.745 7.02 9.007 8.43z' fill='%23202020'/%3e%3cpath d='m473.829 273.718-1.914-1.5s-1.374-.969-2.137-1.204c-.761-.238-1.74-.05-1.74-.05l-.314.448.298.781 2.075 2.419s3.383 1.752 3.466 1.786c.083.033 1.225 1.179 1.225 1.179l.798.337zm-.538 3.576 1.297.17 1.297 1.487.804 1.587 1.06 2.1.336 1.22-2.538-.557-7.367-2.283.636-1.752 1.29-1.181 1.066-.469 1.502-.227z' fill='%23d2a567'/%3e%3cpath d='m478.08 283.357 1.217-.101.823-.701-.387-2.758.449-8.834-5.985-7.076-1.221 4.078 1.758 7.152 1.296 4.288z' fill='%23d2a567'/%3e%3cpath d='M473.794 267.2s-.397.737.1 3.059c.498 2.32 1.36 7.508 3.417 11.043 2.057 3.53-1.989-2.794-1.989-2.794s-3.185-7.17-2.689-12.59c.499-5.42 1.16 1.282 1.16 1.282z' fill='%23ab6d29'/%3e%3cpath d='M478.14 271.674s-1.294 1.686-1.493 2.93c-.2 1.241.1 3.365.1 3.365s-.2-1.613 1.128-1.988c1.326-.367 1.16 3.64 1.226 4.005.065.373.764-7.167.764-7.167zm.666 14.803-6.739-1.547c-3.48-1.55-5.324-2.764-5.257-3.602.067-.84 6.188.202 7.083.405.894.202 3.635 1.58 3.635 1.58h1.573l2.857-1.263.396 3.047-3.55 1.38zm-11.251-1.274s1.66 1.177.863 1.682c-.796.505-2.921.572-3.584.405a1718.039 1718.039 0 0 1 6.502 1.579s1.392-1.179 1.294-1.246c-.099-.07-5.075-2.42-5.075-2.42z' fill='%23ab6d29'/%3e%3cpath d='M465.778 283.427c.25-.404.451.944 2.771 1.247 2.324.3 3.385-.405 3.385-.405l1.029.674 1.226.27-1.127 1.681-4.247-1.249-2.289-1.274z' fill='%23d2a567'/%3e%3cpath d='m480.909 280.378 1.197 1.713.74-3.73-.05-3.89-2.436-1.612z' fill='%23ab6d29'/%3e%3cpath d='m474.19 274.081-1.99-3.335-2.588-4.742 1.592-2.728 1.943 2.824s-.55 1.92-.2 3.737c.348 1.82 1.244 4.244 1.244 4.244z'/%3e%3cpath d='M460.556 286.196s.862-1.434 2.888-1.596c2.023-.173 3.648.27 3.648.27l4.113 2.147.831 1.351-7.763-1.041-3.716-1.13z' fill='%23d2a567'/%3e%3cpath d='M480.757 272.469s.148 4.641.295 6.106c.15 1.463 1.05 2.876.9 3.483-.15.607-.45.91-1.447 1.262-.994.353-2.984 0-2.984 0s1.94-.254 2.039-.655c.1-.404-.596-2.17-.698-3.787-.098-1.616.102-3.383-.446-3.383s-1.144.707-1.245.91c-.099.202.545-5.757 1.194-6.414.65-.653 2.392 2.478 2.392 2.478z' fill='%238f4620'/%3e%3cpath d='M466.562 284.666s-.794-.742-.779-1.247c.016-.506.93 2.438 5.192 2.273 4.263-.168 4.014-.24 4.014-.24h1.991s-.446 1.857-.797 2.023c-.347.166-3.317 2.17-3.367 2.224l-1.064.584.086-.3-.2.015-.348-3.281-3.681-1.414z' fill='%23ab6d29'/%3e%3cpath d='M474.19 274.081s-4.927-5.101-6.568-8.482c-1.643-3.386-.647-8.03-.647-8.03l4.63 6.06s-.598 1.16-.4 3.078c.2 1.92 2.985 7.373 2.985 7.373z' fill='%238f4620'/%3e%3cpath d='M471.036 292.657c-.164-.353-.35-1.474.598-2.658 2.927-3.653 10.334-6.276 10.334-6.276l.008 4.466-9.505 4.57z' fill='%23ab6d29'/%3e%3cpath d='M471.597 289.28c.413-.296 2.07-1.525 2.129-2.054.067-.603-1.127-.705-3.282-1.143a15.417 15.417 0 0 1-3.916-1.412s2.654 2.052 3.684 2.457c1.026.406.93.808.796 1.078-.132.27.53 1.116.589 1.075zm12.723 1.04s-1.37-2.045-1.81-3.298c-.434-1.251-.456-3.27-.539-3.291-.078-.024-.914.666-1.528.951-.618.278-2.809.987-2.928 1.072-.12.078 3.024-.068 3.007 1.023-.02 1.095-4.521 1.56-4.54 1.638-.02.078 3.624-.805 3.404.078-.22.892-1.83.974-3.782 1.779-1.95.81-2.806 1.218-3.528 1.637-.722.415-1.07.734-1.07.734s.87.491 2.255.441c1.378-.052 4.438-.808 4.438-.808l5.876-2.235.745.28z' fill='%238f4620'/%3e%3cpath d='M484.32 290.32s-1.64-.572-2.804-7.415c-1.17-6.837-.828-8.68-.828-8.68l2.769 1.932 2.479 4.51z' fill='%23ab6d29'/%3e%3cpath d='M485.208 278.94s-1.293 3.836-1.293 6.061c0 2.218-.228 3.73.407 5.31.636 1.572 2.813 3.532 2.813 3.532l.992-1.038.447-3.102.25-5.152-3.615-5.61z' fill='%238f4620'/%3e%3cpath d='M489.099 284.151s.627 9.658-1.817 9.923c-1.17.128-2.938-3.637-2.96-3.759-.026-.127 2.13 3.503 2.934 3.175 1.544-.63 1.07-10.044 1.07-10.044l.773.706zm-4.78 6.169s-.413-.18-1.085-1.275c-.672-1.096-.087.969-5.234 2.788-5.153 1.818-6.993.81-6.993.81s1.717 1.336 6.916-.18c5.201-1.513 4.728-1.844 5.422-1.993.701-.15.975-.15.975-.15z' fill='%23202020'/%3e%3cpath d='M474.74 278.018s.811.694 1.74 2.575c.93 1.883 1.593 3.2 1.593 3.2l.232-.239s-.63-1.814-1.492-3.23c-.862-1.415-3.353-4.847-3.353-4.847z' fill='%23ab6d29'/%3e%3cpath d='M471.609 290.005s.53-1.807 0-2.143c-.533-.335-1.032.03-4.545-.404a52.222 52.222 0 0 1-6.505-1.264s2.388 1.465 4.677 2.071c2.29.604 5.275 1.278 5.275 1.278l.797.135z' fill='%238f4620'/%3e%3cpath d='M471.609 290.005s.073-.426-.325-.86c-.397-.43-1.12.205-5.377-.984-4.253-1.182-5.348-1.966-5.348-1.966s1.517 1.338 5.275 2.297c3.758.96 5.775 1.513 5.775 1.513z' fill='%23202020'/%3e%3cpath d='M473.524 277.282s-3.22.175-4.256 1.005c-1.03.834-2.453 3.043-2.453 3.043l2.093.243s-.26-1.944.736-2.917c.994-.97 2.501-1.06 3.88-1.374z' fill='%23ab6d29'/%3e%3cpath d='M467.426 271.16s1.295 1.714 2.638 2.321c1.344.606 2.687 1.112 3.336 1.766.644.656 1.343 2.776 1.343 2.776s-4.63-2.067-5.524-3.08c-.897-1.01-1.792-3.783-1.792-3.783z' fill='%238f4620'/%3e%3cpath d='M471.912 272.223s-.42-.692-1.69-1.273-2.203-.49-2.564-.228c-.36.266-.236.432-.236.432l1.692 2.55.945-.228s-2.515-1.585-1.927-2.083c1.23-1.05 3.78.83 3.78.83z' fill='%238f4620'/%3e%3cpath d='m484.39 266.393 25.907-13.38 12.261 17.067-22.39 6.002-11.85 1.011-5.774-4.186z' fill='%23202020'/%3e%3cpath d='m519.124 273.706 32.296 27.97-3.577 2.46-7.568-2.155-15.727-15.544-5.822-5.863z'/%3e%3cpath d='M560.483 296.138s-8.022-6.325-18.445-14.064c-10.421-7.744-23.307-17.504-23.307-17.504l.595 8.347 26.66 24.502 8.793 4.24 4.446-1.345 2.257-2.356-1-1.82z'/%3e%3cpath d='M519.031 276.36s9.303 10.498 16.375 15.852c7.064 5.347 13.835 11.205 15.225 10.394 1.394-.809.896-1.712.896-1.712l-32.694-26.659.197 2.123z' fill='%23803f1d'/%3e%3cpath d='m541.871 303.195-3.284 2.555-3.778-1.542-19.86-20.3.998-3.736 2.78.404z'/%3e%3cpath d='M560.483 296.138s-2.434 5.741-7.611 4.399c-5.176-1.35-33.678-28.428-33.678-28.428l-.066 2.826s28.883 26.458 34.46 27.534c5.573 1.079 10.14-3.76 9.553-4.306-.39-.367-2.658-2.024-2.658-2.024z' fill='%23202020'/%3e%3cpath d='M515.841 280.6s9.209 11.813 14.087 16.154c4.88 4.344 9.06 7.773 11.05 7.374 1.988-.405-1.195-2.624-1.195-2.624l-13.936-13.736-7.115-7.168c-.001 0-2.787-1.11-2.89 0z' fill='%23803f1d'/%3e%3cpath d='M518.132 280.6s23.379 23.83 25.23 24.37c3.918 1.144 9.492-2.897 9.492-2.897l-2.059-1.21-.265.738s-.998 2.425-6.039 1.347c-5.044-1.073-25.562-23.155-25.562-23.155l-.798.806z' fill='%23202020'/%3e%3cpath d='m526.94 303.406-8.508-9.795-1.889-3.232-.505-4.142 16.974 17.068-2.387 1.613-2.095-.702z'/%3e%3cpath d='M542.316 303.744s-2.059 3.031-4.85 2.424c-2.784-.603-4.376-2.624-4.376-2.624l-16.274-15.935-.398-2.43s17.854 18.892 21.048 19.726c2.325.607 4.056-2.225 4.056-2.225l.794 1.08z' fill='%23202020'/%3e%3cpath d='M533.284 303.207s-.797 2.357-3.181 2.023c-2.394-.337-3.123-1.282-3.123-1.282l-9.968-11.846-.198-3.16s10.365 14.333 12.758 15.143c2.388.807 2.984-1.619 2.984-1.619l.73.741z' fill='%23202020'/%3e%3cpath d='M522.63 272.141s9.655 8.28 10.453 8.685c.795.406 4.177.506 4.375 1.007.2.509-2.183 0-2.385.509-.196.502 4.877 4.646 5.672 4.744.796.103 4.879.103 4.78.605-.1.509-2.787 0-2.886.607-.1.605 4.382 4.142 5.174 4.242.8.102 5.971.102 5.971.603 0 .51-4.183-.098-4.078.81.097.908 7.068 5.249 6.767 5.858-.3.603-8.362-5.454-8.559-5.152-.201.302-.499 2.223-1 2.525-.493.303 0-2.525-.399-3.736-.397-1.212-5.073-4.746-5.57-4.34-.495.402-.098 2.523-.597 2.523-.498 0 .102-2.626-.4-3.535-.497-.908-4.876-4.546-5.471-4.546-.599 0-.2 1.923-.599 2.224-.4.302-.297-2.224-.896-3.03-.594-.805-10.75-9.994-10.352-10.603z' fill='%23b07229'/%3e%3cpath d='M506.075 298.942s.076 3.658-1.569 4.192c-1.64.532-4.75-6.72-4.75-6.72l-.722-6.759 4.828 4.491 2.213 4.797zm12.944-1.857s.068-1.072-.057-1.951a39.666 39.666 0 0 0-.404-2.22l-.315-3.767-.895-2.523-.723-1.59-1.047.075-2.538 1.8-.87 2.443 1.341 4.572 1.245 4.165 1.889.606 2.375-1.61z'/%3e%3cpath d='M515.69 303.476c.57-.172-.53-5.182-.53-5.182l-2.984-7.407-.797-2.624-2.421-.913-1.593 1.822.364 2.929s2.321 4.877 3.453 6.599c1.127 1.712 3.517 5.08 4.507 4.776z'/%3e%3cpath d='M513.014 287.761c.867.603 1.86 2.592 2.09 3.936 0 0 1.992 5.45 1.727 5.991-.266.541-1.462.607-1.462.607s2.659 2.76 3.455 2.424c.794-.337.461-3.03.195-3.637-.264-.607-1.129-.2-1.457-.807-.333-.608-1.332-4.24-1.396-6.398-.065-2.149-.132-3.632.134-4.173.266-.537 2.257 4.51 2.257 7.208l.862 1.01s-.533-3.706-.862-4.85c-.332-1.142-1.061-3.097-1.061-3.5 0-.404.4-1.347.4-2.289 0-.941-.067-1.546-.067-1.546s1.057.736 1.458.674c.397-.07.994-.607 1.257-2.966.269-2.353-.263-9.204-.263-9.204l-10.35 13.65 3.083 3.871z' fill='%23202020'/%3e%3cpath d='M513.014 286.582s-.4 3.67.963 7.437c1.362 3.773 1.722 3.909 1.99 4.447.264.535.238 4.509-.268 5.012 0 0-2.648-6.764-3.543-10.097-.898-3.332-1.128-4.613-1.594-4.884-.465-.269-1.232-.336-1.232-.336z' fill='%23202020'/%3e%3cpath d='M512.033 306.116c.297-.062.114-1.558.114-1.558l-.43-3.533-3.634-7.46-3.983-3.584-2.091-3.231-.297 6.16s2.887 6.157 4.777 7.925c1.89 1.765 5.017 5.414 5.544 5.28z'/%3e%3cpath d='M497.16 289.304s.625 1.652.625 2.733v2.086s1.456 2.962 2.786 5.321c1.329 2.35 2.587 4.778 3.713 4.24 1.13-.54 1.531-2.29 1.596-2.494.065-.198-1.261 2.02-1.928 1.683-.661-.335-3.644-9.958-3.578-10.164.065-.202-.798-.604-1.463-1.278s-1.751-2.127-1.751-2.127zm10.842 8.389s-2.063-3.361-2.725-4.845c-.662-1.482-1.791-2.63-2.123-2.63-.332 0-.763-3.012-.763-3.012s1.095 2.004 2.487 2.675c1.396.673 2.253 1.214 2.924.944 0 0 .397 1.55.397 3.1 0 1.548-.197 3.768-.197 3.768z' fill='%23202020'/%3e%3cpath d='M501.366 292.738s.695 2.118 2.055 4.138c1.36 2.021 3.593 4.447 3.593 4.447s-2.466-2.426-3.755-4.311c-1.296-1.886-2.158-4.347-2.158-4.347z' fill='%235c3a1d'/%3e%3cpath d='M508.458 290.227s.657-1.832 1.227-1.92c.568-.085 1.765-.445 1.765-.445s-1.025-.255-1.847-1.214c-.862-1.019-1.062-.944-2-2.034 0 0 .532 2.034.693 2.993.162.96.162 2.62.162 2.62zm-.655.596s2.952 6.326 3.712 8.447c.76 2.123.631 5.29.631 5.29s-.365-2.256-1.027-4.11c-.666-1.851-3.354-7-3.581-7.605-.238-.608.265-2.023.265-2.023z' fill='%23202020'/%3e%3cpath d='m511.823 286.71.698-9.294-.698-3.282-4.184-9.287s-.2 1.364-1.244 1.31c-1.044-.052-3.831-1.512-4.782-2.778 0 0 .551 2.173.354 4.242-.2 2.073-.547 3.18-.547 3.18l8.061 15.148z'/%3e%3cpath d='M495.793 292.809s1.259 1.518 1.99 1.315c.727-.2.46-3.099-.465-4.711-.931-1.615-10.753-14.743-12.211-15.552-1.458-.804 10.687 18.949 10.687 18.949z' fill='%238b441f'/%3e%3cpath d='M502.5 287.388c.196.607.903 4.793-.795 5.183-2.343.541-13.135-14.366-14.804-16.412 0 0-6.773-4.236-6.905-5.315-.135-1.078 7.304 1.464 7.304 1.464l14.466 13.833s.53.64.733 1.247z' fill='%238b441f' stroke='%235c3a1d' stroke-width='.07'/%3e%3cpath d='M495.793 292.809s-1.195-2.12-1.3-3.632c-.096-1.514-.593-2.323-.692-2.83-.1-.502-7.962-11.91-8.76-12.622-.793-.704-3.481-2.219-3.481-2.219s.31 1.817.31 2.626c0 .806.088 1.035.088 1.035s2.489 4.724 6.071 8.862a702.928 702.928 0 0 0 7.764 8.78z' fill='%23202020'/%3e%3cpath d='M507.803 290.823c1.06-.607.595-4.24.2-5.386-.403-1.145-6.836-14.535-6.836-14.535l-1.93.737-3.645-2.86-2.053-2.222s.723 3.2.659 4.749c-.068 1.547-.133 2.488-.133 2.488l5.107 8.952 8.632 8.078zm7.232-8.074 1.53-2.018-.797-6.665-4.246-14.537s-1.063.268-2.126-.404c-1.06-.676-2.155-1.955-2.155-1.955l1.032 8.683 4.381 12.185.263 3.638 2.118 1.074z'/%3e%3cpath d='M501.764 286.15s-4.277-4.647-5.675-6.969a120.33 120.33 0 0 1-2.586-4.544s-1.192.506-2.688-.098c-1.494-.61-3.48-2.728-3.48-2.728s-1.195 2.321 4.975 8.582c7.064 7.167 9.454 5.756 9.454 5.756z' fill='%23202020'/%3e%3cpath d='M512.068 287.715c1.8-.723 1.743-8.281.053-13.38-1.697-5.102-4.482-9.49-4.482-9.49s3.486 8.177 4.23 11.512c.746 3.333 0 5.701-.598 5.5-.597-.202-.597-1.965-1.99-5.201-1.39-3.228-2.336-4.036-2.336-4.036s4.924 13.477 3.529 13.226c-1.39-.253-8.26-15.197-8.557-15.602-.304-.405-.498.554-.498.554s6.12 18.73 10.65 16.917z' fill='%238b441f'/%3e%3cpath d='m516.064 251.31 3.023 6.42.954 6.788.238 5.724s.197 11.294-1.192 11.563c-1.394.27-2.059-1.079-2.123-1.349-.068-.27-2.59-12.723-2.59-12.723l-2.651-12.991.941-.91.316-1.916 2.055-.138z'/%3e%3cpath d='M507.803 290.823c1.202-.165 0-3.229 0-3.229s-.997 1.48-1.794.472c-.798-1.009-2.061-4.748-2.061-4.748l-.796-2.253s-.86 2.488-1.985 2.488c-1.132 0-6.97-9.895-6.97-9.895l-.698.977s8.227 17.031 14.304 16.188z' fill='%238b441f'/%3e%3cpath d='M503.948 283.322s.997-2.423.598-4.642c-.398-2.225-3.38-7.773-3.38-7.773s-.898.203-2.09-.204c-1.195-.404-3.484-1.92-3.484-1.92s1.592 4.141 3.38 7.172c1.796 3.026 4.977 7.367 4.977 7.367zm4.778-3.435s-.746-5.255-3.131-10.101c-2.392-4.847-3.988-6.413-3.988-6.413s.202 1.063.152 3.031c-.047 1.967 0 2.371 0 2.371s2.19.81 3.836 3.738c1.64 2.929 3.131 7.375 3.131 7.375zm6.508-8.985s-.332-5.656-1.227-8.891c-.896-3.227-1.84-7.519-1.84-7.519s.112-.434.494-.659c.223-.138.549-.204 1-.05 1.192.404 1.69 3.383 1.69 3.383s-.147-4.593-.25-4.793c-.095-.204-.4-.76-.4-.76s-.394.202-.944.154a25.246 25.246 0 0 1-1.193-.155s.374 1.412-.224 2.072c-.435.479-.85-.43-1.092-.554-.092-.05-.226.653-.226.653s.446 1.615.547 3.031a10.353 10.353 0 0 1-.148 2.576s.877 3.379 1.822 5.454c.951 2.066 1.99 6.058 1.99 6.058zm5.047-.653s.995-8.128-.843-13.327c-1.846-5.204-3.388-6.565-3.388-6.565l-.843 1.012s2.77 4.414 3.58 8.529c.852 4.29 1.494 10.35 1.494 10.35zm-8.167 4.088s-.901-6.359-2.046-10.447c-1.143-4.094-1.466-5.556-1.466-5.556l-1.74-1.615s1.022 4.34.92 5.606c-.1 1.258-.2 2.12-.2 2.12s.847 2.17 1.993 3.983c1.143 1.82 2.54 5.91 2.54 5.91z' fill='%23202020'/%3e%3cpath d='M516.367 284.432c1.624.048.2-9.15-.464-11.507-.665-2.355-4.452-13.417-4.452-13.417s4.554 15.73 4.183 16.516c-.538 1.167-2.317-4.779-2.649-4.712-.33.063 3.382 10.635 2.05 10.77-1.322.136-1.983-2.225-1.983-2.225l.129 2.293s.864 2.222 3.186 2.283z' fill='%23904720'/%3e%3cpath d='M518.353 279.782c1.108 0-.31-8.68-1.103-12.52-.794-3.84-3.012-11.511-3.012-11.511s2.252 5.319 3.517 11.444c1.258 6.122 2.116 14.001.927 14.136-1.192.135-1.793-1.145-1.793-1.145l-.197-1.416s.53 1.013 1.662 1.013z' fill='%23904720'/%3e%3cpath d='M503.41 289.982c.171.618.138 3.597-1.441 3.383-1.581-.214-4.47-2.88-5.063-4.633 0 0 3.432 3.797 4.613 3.773 1.182-.026 1.178-3.92.98-4.929-.2-1.007.912 2.406.912 2.406z' fill='%23312317'/%3e%3cpath d='M511.67 248.635s2.043 1.308 3.684.35c1.643-.959 2.739-3.281 2.689-4.544-.053-1.26-.1-2.373-1.098-3.685-.993-1.312 1.592 1.11 1.545 3.535-.05 2.425.148 6.611-3.735 7.522-3.883.91-2.19-.202-2.19-.202z' fill='%23d2a567'/%3e%3cpath d='M508.598 241.215s2.45 4.016 3.393 7.625c.946 3.61.771 4.997.174 5.071-.598.08-.82-.425-.971-1.334-.147-.913-2.596-11.36-2.596-11.36z' fill='%238f4620'/%3e%3cpath d='m465.627 246.146 16.22 23.53 20.31-22.923-12.842-13.229z' fill='%231e2121'/%3e%3cpath d='m486.131 231.706-.941 3.686 1.988 6.261 3.385 3.485 3.927 2.617.898-2.928.948-3.427.991-.354 2.487.961 1.645-2.372 2.638-4.749-.549-1.84-.63-1.31-4.108-7.157-1.384 2.707-1.29.784-2.393-1.36-2.887 3.781-3.528-1.637z'/%3e%3cpath d='M494.496 247.77s.703-.501 1-2.37c.301-1.868.35-7.573-.149-9.847-.496-2.269-1.992-6.763-2.29-6.41-.296.354 2.341 4.948 1.943 10.552-.398 5.603-.2 7.17-1.396 7.724-1.197.554.892.35.892.35z' fill='%235c3818'/%3e%3cpath d='M495.443 238.33s2.686 3.836 3.983 2.472c1.292-1.362.646-6.261-.196-8.178-.851-1.92-1.744-4.697-1.744-4.697l.798-.807s.892 3.23 1.39 5.252c.497 2.018 1.99 7.974.197 9.038-1.789 1.058-4.38-2.173-4.38-2.173l-.048-.908z' fill='%235c3818'/%3e%3cpath d='M486.762 240.97s.895-1.312 2.123-1.446c1.228-.135 1.464.403 1.464.403l1.092 3.163 1.825 3.267 1.624 1.612-.962.91-1.29.237s-3.856-2.02-3.917-2.154c-.066-.135-1.064-1.415-1.064-1.415l-.895-4.576z' fill='%238f4620'/%3e%3cpath d='M493.141 274.384c-1.265.657-4.176-.795-5.818-2.243-1.642-1.444-10.3-10.281-10.3-10.281l-1.212-4.9 3.35.912 5.874-2.524 1.096-2.07 7.064-3.686 3.937-2.119 8.556-.152 2.041-4.192s2.871 4.964 3.35 7.002c.481 2.037.38 8.299-.365 8.7-.744.404-3.532-1.871-3.93-2.02-.4-.15 2.09 8.787 0 9.137-2.093.353-5.575-3.33-5.575-3.33s1.393 7.974-.247 8.027c-1.645.051-5.89-2-7.698-3.956 0 0 2.02 6.582-.123 7.695z' fill='%23d2a567'/%3e%3cpath d='M491.459 264.033s1.379 2.023 1.807 2.658c.431.638-.074 4.42-.334 5.118-.532 1.448-2.488-1.715-3.551-4.51 0 0-3.114-5.184-3.315-5.856-.198-.675 5.393 2.59 5.393 2.59zm16.672-19.756s3.019 12.454 1.56 12.888c-1.461.438-5.61-3.939-6.072-4.577-.468-.638-6.239-9.826-6.239-9.826l-1.227-1.247.364-.64 2.454.94 9.16 2.46z' fill='%238f4620'/%3e%3cpath d='M486.762 268.204c-.672.433-1.957-1.615-2.553-2.153-.6-.536-2.622-3.032-4.613-5.05-1.988-2.016-3.449-3.5-3.449-3.905 0-.405-1.196-1.682-1.196-1.682l1.063-1.341 1.394-.206s8.229 6.562 8.792 7.602c.561 1.05.93 6.498.561 6.735zm12.384.105c-.388.306-5.839-3.638-8.13-6.902-2.291-3.265-4.678-6.126-5.244-7.642a112.547 112.547 0 0 1-1.029-2.892l1.66.367s13.37 16.561 12.744 17.069zm1.952-5.76c-.304.372-2.687-1.411-4.15-3.332-1.46-1.917-.692-4.306-.692-4.306s5.137 7.272 4.842 7.639zm3.049-.735c-.741.351-3.866-3.418-6.467-7.673-1.926-3.147-2.404-3.618-2.82-3.869-.713-.434-2.06-.639-2.06-.639l-.268-.404 1.396-.34 1.032-1.207 1.622-2.09 6.473 13.061s1.589 2.928 1.092 3.16z' fill='%238f4620'/%3e%3cpath d='M487.334 272.141c.052.475-.026.954-1.79.777-1.765-.177-10.998-5.1-15.156-11.89a3345.15 3345.15 0 0 1-4.702-7.7l1.843-2.095 14.657 16.71 5.149 4.198z' fill='%23ab6d29'/%3e%3cpath d='M487.334 272.141c.198.777-.728.979-1.657.741-.932-.234-4.614-1.548-10.486-8.078-5.87-6.53-8.16-11.206-8.16-11.31 0-.097-.298-2.793-.298-2.793l1.724-.74 10.088 15.38 8.79 6.8z' fill='%238f4620'/%3e%3cpath d='M497.137 265.54s-3.04-2.173-4.981-4.495c-1.937-2.323-5.873-7.721-5.773-8.786.1-1.058 1.742-1.058 1.742-1.058l-.098-2.722.498-.916 2.838 1.162 3.58 4.397 1.314 1.783s2.321 5.586 1.87 6.091c-.445.506-3.731-3.13-4.13-2.675-.4.456 3.738 6.815 3.14 7.22zm-5.678-1.507s.995 1.515.543 2.575c-.441 1.058-.842 1.616-2.337-.604-1.494-2.225-3.298-4.712-3.465-4.533-.165.186.18 3.42-.564 3.42-.75 0-3.087-2.776-4.58-5-1.493-2.22-3.781-5.906-3.781-5.906s.2-.759.1-3.281c-.1-2.527-.3-3.836-.3-3.836s.217.79.481 1.38c.265.588.663 1.009.663 1.009l5.475 6.449 1.538-1.072 3.242 6.321 2.984 3.078zm-20.75-9.394s4.231 7.423 8.162 11.567c3.932 4.136 8.462 5.937 8.462 5.937l-12.788-15.127-3.836-2.376zm32.444 4.394c-.22.152-2.837-2.678-4.477-5.202-1.644-2.523-2.935-6.06-2.837-7.625.103-1.566.547-5.35.547-5.35s4.382 4.545 5.221 6.664c.851 2.123 2.652 5.011 2.256 5.368-.397.352-3.344-1.987-3.695-1.428-.35.555 3.435 7.268 2.985 7.573zm4.978-4.744c-.535.27-2.734-2.323-3.335-3.939-.598-1.618-.797-4.797-.797-4.797l-1.941-4.594.2-5.097 1.94-.306 2.934 4.042s1.147 2.371 1.097 5.805c-.052 3.433.496 8.582-.098 8.886zm-34.49 12.478c-3.932-4.847-6.32-9.394-6.32-9.394l-1.294-4.34.698.556s1.143 4.998 7.213 10.952c6.073 5.963 7.418 6.464 7.418 6.464s1.192 3.286.597 4.446c0 0-4.379-3.84-8.311-8.684z'/%3e%3cpath d='M480.196 273.718s-5.177-4.572-9.292-9.756c-4.113-5.183-6.702-10.165-6.702-10.165l1.793-1.685s3.417 7.977 5.872 11.143c2.456 3.164 8.329 10.464 8.329 10.464zm7.138-1.577s-6.005-5.955-9.057-9.321c-3.05-3.363-4.742-6.766-4.742-6.766l2.52.976s.996 2.624 3.185 5.354c2.193 2.726 8.094 9.757 8.094 9.757zm-1.133-10.678s-3.284-4.004-4.843-6.526c-1.562-2.524-3.155-5.756-3.155-5.756s4.414 5.049 5.708 5.383c1.293.34 1.26-.03 1.26-.03s-.53 1.815-.1 3.33c.432 1.517 1.13 3.6 1.13 3.6zm1.332-16.24s.532 2.822.167 4.475c-.363 1.647-1.242 1.636-1.242 1.636s1.706 2.403 2.704 3.41c.991 1.012 3.484 2.761 3.484 2.761s-1.994-2.76-2.792-4.172c-.796-1.414-1.956-2.996-1.455-4.377.495-1.383 3.185.945 3.945 1.583.767.637 3.919 4.376 3.919 4.376s-1.166-3.875-2.723-5.285c-1.56-1.412-6.007-4.407-6.007-4.407z' fill='%23202020'/%3e%3cpath d='M500.77 253.693s-1.692-4.068-2.659-6.56c-.961-2.493-2.468-7.892-2.468-7.892s.114 2.473-.02 4.292c-.132 1.817-.777 4.593-1.571 4.995-.798.404-.976.482-2.442.079-1.467-.405 1.02.682 1.02.682s1.494-.048 2.143-.781c.642-.737.79-2.302 1.494-2.074.694.23 1.439 2.602 2.016 3.637.567 1.033 2.487 3.623 2.487 3.623z' fill='%23202020'/%3e%3cpath d='M495.618 239.194s3.156 3.535 4.523 1.944c1.371-1.589.573-6.083.573-6.083s1.917.734 2.514.254c.598-.48.321-2.246.321-2.246s3.405 4.972 5.046 8.151c1.645 3.18 2.487 8.923 2.487 8.923s-2.817-4.58-4.246-8.923c-1.302-3.95-3.209-5.753-3.56-5.375-.346.377-.87 3.154-.447 4.594.427 1.437 1.592 3.308 2.39 5.352.797 2.043 1.689 5.251 1.689 5.251s-1.617-2.45-2.559-3.787c-.946-1.337-1.943-1.869-2.59-2.497-.645-.634-1.618-1.795-2.56-2.173-.948-.377-2.813-1.314-2.813-.58 0 .73-.373-1.44-.373-1.44z' fill='%23202020'/%3e%3cpath d='M485.045 254.336s1.741 3.487 3.132 5.303a327.882 327.882 0 0 1 3.288 4.393s-2.984-2.726-4.181-4.443c-1.196-1.719-2.24-5.253-2.24-5.253z' fill='%23171717'/%3e%3cpath d='M505.595 255.247c-.448.178-1.895-.35-2.045.178-.146.527.824 2.602 1.895 3.688 1.065 1.083 1.518 1.131 1.768 1.007.247-.128-.114-1.086-.288-2.198-.175-1.11-.038-2.296-.162-2.653-.124-.35-1.168-.022-1.168-.022z' fill='%238f4620'/%3e%3cpath d='m468.407 233.026-1.811 1.188-2.19 4.445.596 8.146s2.025 2.861 3.268 4.662c1.245 1.801 5.36 6.443 6.421 6.176 1.062-.27 2.192-3.498 2.323-5.25.133-1.754.266-4.98.266-4.98s.996 1.749 2.72 3.63c1.725 1.888 3.185 3.637 3.983 3.505.797-.137 3.182-4.915 3.248-5.522.065-.602-5.972-15.415-5.972-15.415l-2.685-1.392-10.167.808z' fill='%23d2a567'/%3e%3cpath d='M481.96 245.351s1.042 3.785 1.69 5.656c.648 1.865-.018 3.483.333 3.533.347.046 3.5-4.192 3.547-6.108.052-1.917.052-3.887-.793-9.746-.85-5.856.273-7.559.273-7.559l-1.816-1.48-3.136 6.314-.098 9.391zm-10.609-3.33s.697 5.705 1.095 7.573c.4 1.869 1.492 5.047 2.092 4.995.597-.046 2.487-5.047 2.537-6.763 0 0-1.293-2.422-1.244-8.532.05-6.11-.598-6.715-.598-6.715l-3.882 9.443z' fill='%23ab6d29'/%3e%3cpath d='M463.174 230.234s-4.777 6.933-4.68 10.737c.101 3.802.73 2.96 1.828 6.391 1.093 3.44 1.692 8.521 1.756 8.959.067.434.763-.24.863-.742.1-.505.233-25.346.233-25.346z' fill='%2345392d'/%3e%3cpath d='M463.15 231.05s-4.18 6.462-3.88 10.032c.297 3.563.861 3.467 2.055 6.665 1.194 3.198 1.294 8.41 1.294 8.41s1.327-.4 2.82-1.462c1.492-1.063 2.836-3.23 2.836-3.23s-.512-1.162-1.476-3.246c-.961-2.09-1.062-2.898-1.062-2.898l-1.226-1.75.364-6.194 1.094-4.476v-1.685z' fill='%23ab6d29'/%3e%3cpath d='M485.734 242.174s-2.09-.455-2.936-.96c-.843-.504-1.193-1.716-1.193-1.716l.499-1.212z' fill='%23dbad6c'/%3e%3cpath d='M464.003 231.752s-3.017 6.5-2.654 10.972c.367 4.48 2.821 10.2 3.053 10.268.233.067.13-.437.199-1.448.067-1.007-.131-13.361-.131-13.361l1.46-4.342.065-2.256-1.992.168z' fill='%23d2a567'/%3e%3cpath d='M471.305 233.201s.4 1.953.132 2.762c-.264.807-1.857 1.817-2.52 3.096-.665 1.28-1.592 4.24-1.592 4.24s.728-1.682 1.725-2.758c.994-1.077 1.394-1.817 1.593-1.213.197.607.531 3.166.33 3.639-.197.467-.996 1.24-1.523 3.026-.565 1.902.064 3.637.064 3.637s.348-2.173.666-3.3c.277-.996 1.125-1.484 1.125-1.484l1.66 3.575s0-1.687.268-2.968c.264-1.276 1.655-3.078 2.103-3.078.45 0 1.146-.252-.548-1.112-.546-.352-.197-6.562.25-6.814.448-.25 2.786-.34 2.54-1.199-.25-.857-2.278-3.17-2.477-3.372-.2-.2-3.796 3.323-3.796 3.323z' fill='%238f4620'/%3e%3cpath d='M485.395 246.415s-1.448-.253-2.243-.405c-.795-.15-.895-.907-.895-.907l.252-.958 1.838 1.01z' fill='%23dbad6c'/%3e%3cpath d='M466.153 247.15c-.04.668-.534 1.349-.855 2.281-.388 1.128-.611 2.468-.611 2.468s-.45-2.982-.598-5.078c-.15-2.094-.298-3.458-.547-3.584-.25-.125-.971.983-.971.983s0-2.349.447-3.482c.448-1.135.82-2.752.424-3.005-.4-.253-1.244.456-1.616 1.06-.376.607-1.072 1.919-1.072 1.919s.447-1.993.92-2.801c.473-.809 2.738-3.41 3.161-4.42.422-1.008.423-2.095.423-2.095l1.57-.075s1.635 1.277 1.65 2.387c.01.626-1.567 1.327-1.602 1.4-.102.202-1.319-.102-1.618 5.099-.3 5.202 1.031 4.775.895 6.944zm14.311-13.306s.348 2.826.05 3.685c-.3.858-1.144 1.564-1.741 2.675-.598 1.111-.549 3.79-.549 3.79s.3-1.317.8-2.126c.494-.804.893-1.513 1.094-1.513.197 0 .795 1.012 1.193 2.477.399 1.462 1.196 3.935 1.196 3.935s-.346-1.92.147-1.92c.496 0 .695-.15 1.344.356a22.702 22.702 0 0 1 1.395 1.21s-.05-.705-.997-1.717c-.944-1.01-1.49-.957-1.793-2.321-.295-1.364-.442-2.726-.295-3.283.146-.552.796.356 1.342 1.01.548.657 2.29 2.173 2.29 2.173s-.746-1.162-.947-1.516c-.199-.355-.05-3.029 0-4.545.05-1.513-.05-2.926.495-3.328.551-.407.651-2.378.398-2.73-.245-.352-5.42 3.688-5.42 3.688z' fill='%238f4620'/%3e%3cpath d='M497.113 228.026s.135 3.194.567 5.049c.428 1.85 1.66 5.888 1.66 5.888s-1.66-2.995-2.392-5.587c-.731-2.59-1.395-5.383-2.058-5.586-.661-.202-1.426 1.245-1.426 2.322 0 1.076.698 5.117 1.595 6.53.896 1.415-1.429-1.852-1.994-3.601-.56-1.752-1.128-3.298-1.128-3.298s-.561 1.48-.33 3.13c.233 1.649 1.63 4.005 1.63 4.005s-.902-.775-1.463-1.449a8.652 8.652 0 0 0-1.064-1.075s.099 2.256.697 3.23c.594.976 1.758 2.524 1.758 2.524s-1.392-1.042-1.923-1.649c-.532-.604-.695-1.04-.695-1.04s.296 3.229.995 4.947c.695 1.714 2.221 4.544 2.221 4.544s-1.826-1.45-3.053-4.273c-1.225-2.83-1.826-11.258-1.527-12.54 0 0 .936-1.592 1.8-2.838.864-1.245 1.956-7.194 1.956-7.194s1.356 5.502 2.283 6.547c.932 1.041 1.89 1.414 1.89 1.414zm-13.167-1.66s.703 1.475 1.149 2.133c.447.657.897 1.5.897 1.5s-1.646 1.769-3.485 3.183c-1.845 1.412-4.283 2.977-4.829 2.171-.546-.81-.52-1.502-.52-1.502s2.025-1.212 3.618-2.827c1.59-1.616 2.14-2.464 2.491-3.32.349-.861.68-1.338.68-1.338zm-16.754 5.456s.286 3.435 1.73 3.383c1.445-.05 5.723-4.391 6.021-4.593.299-.202.585-1.264.585-1.618 0-.352-.26-1.162-.26-1.162s-4.606 4.723-6.246 4.875c-1.2.11-1.83-.885-1.83-.885zm.14-4.51s-.548 2.416-.472 3.098a4.917 4.917 0 0 0 .29 1.21s-3.301 1.16-3.848.152c-.549-1.01-.187-2.449-.187-2.449s1.53.007 2.376-.193c.847-.203 1.843-1.817 1.843-1.817zm31.16-4.848s1.346 3.54 2.21 4.957c.866 1.414 2.221 4.34 2.221 4.34s-2.221-2.59-2.918-3.163c-.697-.572-1.828-1.526-1.828-1.526s.326-.953.326-1.691c0-.741-.01-2.916-.01-2.916z' fill='%231e2121'/%3e%3cpath d='M462.6 229.345s1.228.153 1.982.11c.759-.04 1.255-.344 1.255-.344l1.254-1.875s-.639 2.22-.198 3.796c.438 1.575 1.352 1.817 1.71 1.817.358 0 2.11-.364 3.465-1.778 1.352-1.412 3.224-2.885 3.224-2.885s-.439 2.038.278 4.056c.718 2.021 1.869 1.98 3.423.729 1.552-1.252 3.149-3.396 4-4.345.467-.52 1.06-1.604 1.06-1.604l1.709-1.362 1.472-8.32-.797-1.092-2.155 1.028-2.58-1.028-.758-1.05-1.472 2.504-1.552 1.01-.786.13-1.803.355-.796-1.616-.479-1.252-.876-.403-3.71 3.743-2.101-.108-2.111 3.311-1.513 2.098-1.555 3.68z' fill='%23dbad6c'/%3e%3cpath d='M480.616 220.922s.3 2.071-.745 5.553c-1.044 3.485-2.487 5.959-2.487 5.959s3.731-2.273 5.526-6.361c1.785-4.092 1.372-8.788 1.372-8.788l-3.666 3.638zm4.522-3.797s.45.604.052 3.735c-.4 3.13-1.145 6.16-1.145 6.16s.443.757.945 1.767c.495 1.01 1.742 2.778 2.637 2.475.897-.304 2.288-1.364 3.233-3.437.946-2.069 1.793-4.087 2.14-4.392.349-.302.5.202.651.356.148.152.438 1.918 1.33 2.675.896.756 2.066 1.943 2.613 1.59.546-.352 1.081-1.386.983-1.895-.098-.503-1.992-6.159-1.992-6.159l-2.386-6.108-1.53-2.374-4.346.406-3.184 5.2z' fill='%238f4620'/%3e%3cpath d='M492.674 211.517s1.226 2.626 1.298 5.454c.066 2.828-.565 5.788-.565 5.788s.264-3.533-.134-5.653c-.398-2.12-1.028-3.502-.96-4.108.064-.605.36-1.482.36-1.482z' fill='%23ab6d29'/%3e%3cpath d='M498.574 222.569s.246 2.44 0 3.599c-.25 1.164-1.945-.755-2.984-4.593-1.05-3.837-.85-4.695-1.646-6.563-.8-1.87-1.28-3.485-1.28-3.485l2.177-.3 3.733 11.343zm-10.644 7.127s4.15-2.353 4.677-9.443c.252-3.331-1.89-8.734-1.89-8.734s0 5.754-1.542 9.467c-1.543 3.71-2.814 6.186-2.814 6.186s.996-.431 1.496-1.036c.495-.605 1.191-1.642 1.191-1.642s.225 1.063-.147 2.45c-.373 1.388-.971 2.752-.971 2.752zm-3.656-12.42s-.134 1.568-1.876 2.98c-1.742 1.415-4.874 2.98-4.874 2.98s2.288-2.12 3.132-3.989c.849-1.87.2-3.08.2-3.08s-.296 1.008-1.292 1.767c-.995.76-2.438.908-2.438.908s.12-.958 1.015-1.967c.184-.207.15-.681.275-1.072.491-1.515 1.793-3.625 1.793-3.625s.995 2.223 1.99 3.182a78.667 78.667 0 0 0 2.074 1.916z'/%3e%3cpath d='M497.253 208.9s.994 2.56 1.392 6.058c.399 3.503-.065 7.61-.065 7.61s-2.123-3.3-2.654-4.647c-.53-1.347-.53-3.365-.996-4.376-.279-.605-1.042-1.212-1.602-1.602-.369-.256-1.55-.2-1.55-.2s1.225-.587 1.33-1.664c.094-1.077 0-1.65 0-1.65s.793.404 2.09.574c1.291.167 2.055-.103 2.055-.103zm-9.3 14.943s2.267-3.165 2.859-7.07c.599-3.903-.098-5.25-.098-5.25s-.929-.134-1.69-.876c-.765-.74-1.955-2.659-1.955-2.659s.33 2.021-.105 4.477c-.428 2.456-2.686 4.81-2.686 4.81s1.198.416 2.258-.2c2.25-1.315 2.089-3.802 2.089-3.802s.496.302.43 3.397c-.068 3.1-1.101 7.173-1.101 7.173z' fill='%231e2121'/%3e%3cpath d='M461.152 229.24c-.48-.067 1.494-3.132 2.838-5.251l3.234-5.101s.351.355 1.145.304c.796-.052 2.837-.96 3.683-2.526.847-1.564 1.492-3.28 1.545-3.787.05-.503-.15 2.728 1.391 4.494 1.545 1.767 1.494 1.617 2.142 1.465 0 0-.05 2.223-.648 4.292-.597 2.07-1.194 5.05-1.194 5.05s.248-3.887-.4-5c-.645-1.11-.994.102-1.54 1.516-.548 1.412-1.741 2.423-1.741 2.423s.894-1.716 1.492-3.535c.596-1.816.3-1.868.147-1.918-.148-.05-.446-.1-1.092.657-.648.757-1.295.959-1.295.959s.796-.657 1.045-1.566c.25-.908.996-2.221 1.442-2.726.448-.505.747-1.112.747-1.464 0-.355-.1-1.112-.4-1.112-.295 0-.694.457-2.135 1.819-1.445 1.362-1.696 1.462-1.944 1.969-.25.504-.449 1.158-1.345 3.99-.894 2.825-1.492 3.989-1.64 4.241-.15.25-.797.672-.797.672s.498-1.582 1.244-3.652c.746-2.068 1.743-4.797 1.493-5.251-.248-.453-.896-.403-1.094 0-.198.404-1.643 2.17-3.086 4.29-1.444 2.123-1.444 4.748-1.792 4.848 0 0-.961-.032-1.445-.1z' fill='%238f4620'/%3e%3cpath d='M498.68 206.61c-.03.245.132 1.759-1.427 2.288-1.561.532-3.45-.1-3.651-.275-.197-.177-.197-2.173-.197-2.173z' fill='%23874f20'/%3e%3cpath d='M468.49 211.552s-.285 1.442-1.137 3.23c-.855 1.788-2.27 3.277-2.095 3.505.173.226.971 1.061 2.214 1.036 1.245-.026 1.692-7.45 1.692-7.45l-.218-.266z' fill='%23b27129'/%3e%3cpath d='M487.603 207.462s-.562 9.84-3.324 9.821c-2.761-.013-4.011-4.974-4.011-4.974s-.228 6.636-3.755 6.636c-1.593 0-3.273-5.123-2.914-6.053 0 0-.654 3.533-2.318 4.841-3.3 2.597-5.403 1.327-5.516.922-.114-.402 2.786-3.17 3.185-7.04 0 0 .51.175 1.307-.98.796-1.153 1.252-2.42 2.047-2.192.797.23 4.778-1.615 4.778-1.615l2.087-2.644s.245.856 1.78-.182c1.535-1.042 2.048-2.597 2.048-2.597l4.094 3.46.512 2.598z' fill='%23dbad6c'/%3e%3cpath d='M476.831 198.116s2.476 3.75 4.131 5.833c.097.122.91-.784.91-.784.546.75.848 1.4.681 1.793-.646 1.517-1.989 3.585-.896 5.757 0 0-.348-1.212.251-2.777.598-1.566 1.045-2.123 1.394-2.07.348.05.947 8.986 1.544 8.936.595-.052 1.392-4.04 1.392-6.866 0-2.83.565-.507.832.05.265.555 2.7 4.545 4.79 3.938 2.091-.605 1.796-4.292 1.742-5.097-.045-.812-1.49-5.707-1.49-5.707l-9.358-5.89s-.274.738-.772 2.405c-.5 1.667-5.15.48-5.15.48z' fill='%23b27129'/%3e%3cpath d='M490.115 197.24s.546.505 1.447 2.828c.893 2.323.991 9.846-.2 9.794-1.197-.05-3.587-1.412-3.982-2.424-.4-1.009.147-4.744-.647-5.756-.797-1.01-1.742-3.533-1.794-4.24-.051-.706.152-2.978.152-2.978l2.087-.76z' fill='%238f4620'/%3e%3cpath d='m489.449 194.904 3.982 5.923 3.519 5.083s1.772.588 1.726.706c-.05.12-2.043 2.288-4.804.75-1.373-.768-.673-3.158-2.411-6.994-1.745-3.837-4.879-5.503-4.879-5.503l1.097-1.06z'/%3e%3cpath d='M487.253 191.667s3.557 2.35 4.817 4.909c1.262 2.558 1.995 4.107 3.522 6.597 1.522 2.49 3.154 3.265 3.082 3.433-.064.17-1.093.405-1.857-.167-.766-.573-1.557-1.245-2.19-2.39s-2.854-5.318-3.685-6.397c-.829-1.076-3.48-3.095-3.548-2.893-.065.203.83.81 2.357 3.265 1.525 2.457 1.89 4.678 1.791 4.713-.1.035-.433-.91-1.76-3.13-1.326-2.224-4.212-5.085-4.379-4.68-.166.405 1.425 3.03 2.223 4.544.796 1.514 2.125 5.05 1.991 5.05-.132 0-1.062-1.987-2.657-4.445-1.59-2.457-1.89-2.153-2.555-2.96-.661-.81-2.081-2.673-2.081-2.673s1.422.45 2.812-.458c1.397-.91 2.117-2.318 2.117-2.318z' fill='%231e2121'/%3e%3cpath d='M478.198 198.221s2.29.528 3.53.376c1.248-.15 1.67-.1 1.67-.1s.744 1.011.744 2.17c0 1.162-.797 3.334-1.143 3.384-.349.05-.297-1.97-.841-2.676-.551-.707-3.96-3.154-3.96-3.154z' fill='%238f4620'/%3e%3cpath d='M479.413 204.227s.74 2.482.172 5.942c-.57 3.464-2.56 7.04-3.072 7.04-.511 0-.342-3.923-.568-5.998a59.615 59.615 0 0 0-.072-.635c-.033-.288-.784 2.616-.811 2.365-.031-.263.66-3.677.636-3.897-.099-.822-.16-1.304-.16-1.304l2.568-3.052z' fill='%23b27129'/%3e%3cpath d='M475.056 206.808c-.697.86-1.765.626-2.752.935-.926.287-1.26 1.7-1.26 1.7s.748-.556 1.096-.405c.348.152.763.12.066 1.833-.697 1.719-3.416 4.63-3.285 4.665.133.035 3.037-2.459 3.982-3.873.945-1.412.862-2.253 1.061-2.76.198-.504 1.327-1.11 1.575-1.16.25-.051.8.05 1.046 1.06.25 1.01.648 3.888.847 3.988.2.1.895-2.626 1.194-3.988.298-1.364.285-4.367.285-4.367s-.185-.075-.883-.23c-.696-.15-2.366-1.347-2.366-1.347s.328 2.798-.606 3.95z' fill='%238f4620'/%3e%3cpath d='M487.334 189.214s.945 2.348-.996 3.99c-.575.483-1.129.806-2.156.858-1.032.048-2.672-.834-2.672-.834l-5.949-2.475-3.134-.983-1.542-.43.221-1.716 4.654.203 4.605 1.764 2.015.657 1.715.302h1.296l1.07-.302s.494-.202.643-.478c.153-.28.23-.556.23-.556z' fill='%23dbad6c'/%3e%3cpath d='M487.334 189.214c.196.404-.35 1.716-.797 1.918-.45.203-1.249.555-3.038.15-1.79-.402-3.632-1.564-5.622-2.119-1.99-.555-3.484-1.061-5.028-1.011-1.543.053-.796-.657-.796-.657s3.534-.4 6.62.76c3.09 1.16 4.416 1.95 5.975 1.916 2.336-.048 2.686-.957 2.686-.957z' fill='%23ab6d29'/%3e%3cpath d='M471.06 187.344s.695.15 1.294.05c.598-.101 1.047-.455 1.047-.455s.1.81-.3 1.062c-.399.252-1.592.15-1.793.15-.2 0-.248-.807-.248-.807z'/%3e%3cpath d='M482.755 194.693s2.082 2.038 1.525 3.803l-4.013-1.845-6.545-2.725-3.545-1.06-.436-.556s.672-.63.994-1.235c.324-.607.225-1.187.225-1.187l4.329.581 4.528 1.39z' fill='%23dbad6c'/%3e%3cpath d='M478.303 197.613s3.733 4.822 2.861 6.412l-8.71-5.502-3.07 5.057-7.165-3.533s5.78-4.453 6.454-5.286c.67-.834.72-1.136.72-1.136l3.236.63 5.098 1.618z' fill='%23dbad6c'/%3e%3cpath d='M476.282 190.487s3.05.741 5.011 1.749c1.957 1.01 4.695 1.238 4.695 1.238s-1.1 1.16-3.237 1.22c-.631.017-2.156-1.211-3.153-1.916-.994-.71-3.865-1.55-3.865-1.55z' fill='%23ab6d29'/%3e%3cpath d='M470.908 188.851s2.19.455 3.535 1.06c1.344.606 1.444.454 1.792.304.348-.152.397-.304.397-.304s.275 1.315-.771 1.315-1.467-.354-2.81-.961c-1.345-.605-2.241 0-2.241 0z'/%3e%3cpath d='M483.012 197.322s1.562.976 1.26 1.177c-.296.202-1.079.572-2.437.657-1.358.085-2.009-.083-2.972-.523-.96-.437-1.557-2.121-3.88-3.028-2.323-.91-2.722-1.044-4.314-1.45-1.592-.402-1.957-.369-1.957-.369l1.462-.607 5.007 1.012 4.28 1.244 2.589 1.247.96.64zm-8.412 2.944.995 3.938-.547 2.375-1.344.857-1.244-.504-.349-.707s.548-.908 0-1.717c-.544-.807-3.084-1.816-3.084-1.816s.996-1.921 2.14-2.374c1.143-.454.594-1.918.594-1.918z' fill='%23ab6d29'/%3e%3cpath d='M469.716 192.24s.795.672 2.423.841c.691.074 1.983.305 3.313.723.447.14 1.54-.466 1.63-.439l-.945.567c1.445.416 3.26 1.048 3.899 1.34 1.727.78 3.084 2.019 2.984 2.052-.054.017-.984-.54-2.984-1.382-1.452-.61-3.3-1.18-4.646-1.448-2.987-.586-5.973-.4-6.601-.605-.633-.2.264-.235.595-.572.332-.336.332-1.077.332-1.077z'/%3e%3cpath d='M480.862 203.046s.948 1.01-.048 1.362c-.996.356-3.71.292-5.001-1.072 0 0-.325-1.3-.823-1.903-.496-.607-2.487-1.87-3.633-2.577-1.143-.707.396-.808.396-.808s4.084 1.566 5.578 2.373c1.493.81 3.53 2.625 3.53 2.625z' fill='%23ab6d29'/%3e%3cpath d='M480.92 203.14s-2.01-2.778-7.596-4.98c-.153-.06 1.9-.352 1.74-.41-.24-.092-2.693.048-2.947-.04-.42-.144-.857-.288-1.314-.427-2.937-.891-3.15-.806-3.35-1.212-.2-.402-.565.067-.862.572-.3.505-1.128 1.6-1.063 1.5.066-.103 2.158-.59 3.815-.185 1.66.4 1.593 1.008 1.46 1.648-.132.64-2.156 3.098-1.923 3.165.232.066 1.392-2.326 2.918-1.986 1.527.337 2.026 1.177 2.026 1.177s-.035-.875-.33-1.247c-.301-.37-1.993-1.95-1.529-1.95.465 0 2.356.436 5.077 1.816 2.65 1.349 3.082 1.752 3.878 2.56z'/%3e%3cpath d='M471.807 198.77s4.282 1.212 4.083 5.756c-.2 4.543-3.518 3.703-3.818 2.053-.296-1.65.399.791 1.594.571 1.304-.236 1.576-1.544 1.493-3.296-.08-1.682-.43-2.525-1.46-3.502a18.521 18.521 0 0 0-1.892-1.582z' fill='%23dbad6c'/%3e%3cpath d='M453.29 187.824s.447.344-.771 3.552c-1.222 3.205-1.881 4.347-3.732 6.388-3.46 3.81-4.978 3.835-4.605 5.451.374 1.617 1.717 1.185 2.015 1.237.3.05 6.52-9.113 6.52-9.113l1.369-5.504-.324-1.539z' fill='%236c3f18'/%3e%3cpath d='M468.723 181.27s1.792 2.688 1.226 7.772c-.563 5.082-7.262 9.526-7.262 9.526l-9.789 6.765-4.09-.244s-.633.09-1.226-.064c-.643-.168-1.247-.834-1.385-.834-.266 0-.764-1.719-.764-1.719l1.294-1.58 3.55-3.538 2.223-3.195s.996-1.852 1.128-3.636c.134-1.784-.33-2.693-.33-2.693l.83 1.28.463 2.692-.366 2.995 2.556-1.715 3.383-1.513s.932-.136 1.594-2.021c.662-1.886 1.22-4.656 1.23-5.89.013-1.24-.137-2.726-.137-2.726s.213-.014.426.113c.21.125 1.105 1.692 1.105 2.586 0 .897.572 4.193.572 4.193l1.57-1.593s1.155-1.452 1.467-2.206c.31-.758.745-1.953.732-2.756z' fill='%23dbad6c'/%3e%3cpath d='M469.81 206.703s.671.555.422 2.399c-.249 1.843-1.766 2.853-2.51 2.878l.071-2.574-2.163-1.718-2.316-.705s.15-.127.423-.405c.275-.277 2.664-1.262 2.664-1.262z' fill='%23904720'/%3e%3cpath d='M468.116 206.726s.67.656 1.742.378c1.07-.275 1.52-1.996.946-2.676-.573-.68-.324 1.642-1.019 1.895-.698.252-1.443-1.743-2.39-1.944-.946-.202-2.44.455-2.811 1.082-.374.634 1.519.13 1.519.13l1.017.276.748.177z' fill='%23ab6d29'/%3e%3cpath d='M453.979 199.67s1.271.383 2.65.197c1.377-.188 4.762-1.6 4.762-1.6s1.558-.876 2.704-1.985c1.142-1.11 4.762-3.368 5.16-7.876.395-4.511-.532-7.135-.532-7.135s5.346 5.843.662 12.555c-3.05 4.374-5.705 5.654-5.705 5.654s5.177-1.515 5.641-.27c.461 1.244-.24 3.182-.375 3.485 0 0 2.936.682 3.359 2.17.254.895-3.334-1.036-6.045-.379-2.712.657-3.905 2.271-3.905 2.271s-.5-.782-2.913-.805c-2.415-.027-3.509 1.11-4.878 1.06-1.367-.052-5.67-.97-6.502-2.147 0 0 1.027-1.282 2.847-3.359 1.245-2.393 3.07-1.835 3.07-1.835z' fill='%23904720'/%3e%3cpath d='M465.101 187.566s2.091-2.053 2.786-3.567c.7-1.515.832-2.727.832-2.727s.233 1.648-.995 3.5a19.807 19.807 0 0 1-2.586 3.132z' fill='%23ab6d29'/%3e%3cpath d='M464.529 182.987s1.71 6.63-.117 9.356c-1.825 2.726-9.765 6.256-9.765 6.256s6.018-3.26 7.909-7.013c1.89-3.755 1.757-6.884 1.757-6.884l.217-1.715z' fill='%23904720'/%3e%3cpath d='M456.63 199.857s2.54-.052 3.983-.91c1.444-.856 3.485-2.675 3.485-2.675s-1.892 1.666-2.44 1.666-.995-.856-.746-1.514c0 0-.448 1.262-1.593 2.119-1.143.859-2.689 1.314-2.689 1.314zm5.913-8.272s2.139-2.223 2.089-6.867c-.05-4.644-1.793-3.785-1.793-3.785s1.444 1.058 1.145 4.593c-.297 3.534-1.442 6.059-1.442 6.059zm2.594.456s2.41-.581 3.258-1.996c.844-1.412.822-4.113.822-4.113s-.25 2.473-.948 3.38c-.695.911-3.132 2.729-3.132 2.729zm-1.402 14.534s1.195-2.323 2.788-1.716c1.59.603 1.59 1.868 1.59 1.868s-.645-1.01-1.838-1.061c-1.197-.05-2.54.91-2.54.91zm-4.522-4.183s3.532-.861 5.623-1.516c2.089-.655 4.48-1.666 4.48-1.666s-1.742 2.17-4.332 3.635c-2.588 1.464-4.726 1.565-4.726 1.565s4.878-2.12 5.274-2.977c0 0-4.677 1.262-6.319.96z' fill='%231e2121'/%3e%3cpath d='M453.558 196.936a4.048 4.124 67.762 0 1-4.646 6.68' fill='%23fff'/%3e%3cpath d='M453.348 197.392a3.565 3.632 67.771 0 1-4.176 5.808' fill='%23f16e16'/%3e%3cpath d='M451.77 199.355a1.432 1.432 0 1 1-1.394 2.165' fill='%23000'/%3e%3cpath d='M451.969 201.178a.458.458 0 1 1-.901-.158.456.456 0 0 1 .527-.377c.25.042.415.282.374.535z' fill='%23d5d3ca'/%3e%3cpath d='M454.457 194.424s2.357-2.32 2.886-5.386c.532-3.063.21-4.804.21-4.804l1.285 1.337.495 2.326-.83 3.867 2.592-1.177c.86-1.176 2.22-6.429 1.755-9.658 0 0 .7 1.414-.231 5.822-.928 4.411-1.686 4.933-5.003 6.75-1.713.936-3.868 2.733-5.81 6.473-.866 1.662-3.204 4.29-3.58 4.674-.06.063 1.662-2.353 2.503-4.155 1.259-2.7 2.634-4.216 2.634-4.216l1.094-1.852z' fill='%23ab6d29'/%3e%3cpath d='M453.36 196.282s1.027-3.098 1.027-4.78c0-1.682-1.094-3.67-1.094-3.67s1.492-.202 1.625 3.465c.132 3.673-.665 3.876-1.558 4.985z' fill='%23904720'/%3e%3cpath d='M458.092 192.333s1.093-2.726 1.021-4.545c-.077-1.817-1.567-3.56-1.567-3.56s1.84.355 1.99 3.664c.149 3.304-.424 3.331-1.444 4.44z'/%3e%3cpath d='M447.226 204.764s-.851-1.094-.753-1.951c.1-.857.033-1.052 2.147-3.275 2.115-2.221 3.285-3.583 3.807-4.77.524-1.188 2.24-4.426.872-6.934 0 0 .945 3.655-1.17 6.557-2.116 2.901-3.333 4.415-5.076 5.704-1.74 1.287-1.915 1.892-1.866 2.626.05.73.224 1.464.523 1.64.53.314 1.516.403 1.516.403z' fill='%23ab6d29'/%3e%3cpath d='M467.73 211.973s.47.05.771-.505c.298-.555.298-1.489-.448-2.423-.747-.935-1.594-1.49-2.64-1.794-1.045-.302-3.057-.505-3.057-.505s.684 1.182 2.038 1.943c.662.377 1.793-.1 2.514.607.722.709.821 2.677.821 2.677z' fill='%236c4119'/%3e%3cpath d='M467.73 211.973s2.35-.763 2.512-3.028c.1-1.403-.199-1.895-.199-1.895s.347.732 1.294 1.01l.847-.328s-1.394 4.392-4.454 4.24z' fill='%236c4119'/%3e%3c/g%3e%3cg fill='%23f9c83a'%3e%3cpath d='M451.327 211.54s.459.19 1.33 1.2c.872 1.01 1.283 1.34 1.283 1.34l5.698-1.464 1.843-1.819-1.544-2.446h-4.08z' fill='%23bf802d'/%3e%3cpath d='m465.137 209.6-1.098-1.479s-.233-.571-1.062-1.01c-.829-.436-4.28-.404-4.28-.404l-2.488.505s-.697.64-1.959.37c-1.26-.267-4.047-1.413-4.047-1.413l-2.787-1.212s-2.089-.875-2.553-.707c-.467.167-2.19 2.053-2.19 2.053s-.3 1.011.364 1.042c.662.035-.996.338-.996.338s-4.33 2.375-5.025 6.617c-.7 4.237 7.115 10.499 10 7.318 0 0-4.23-3.13-3.383-5.756.845-2.625 2.787-4.242 6.12-4.44 3.335-.202 3.536-.609 4.978-1.618 1.443-1.01 4.13-1.615 6.121.454 1.99 2.07-7.564 4.042-7.564 4.042l1.043 1.512c.003 0 11.799-4.04 10.806-6.212z' stroke='%238f4620' stroke-width='.481'/%3e%3cpath d='M443.09 219.66s-4.777-1.162-4.381-5.553c.4-4.39 4.381-6.007 5.077-6.209.697-.204.549-2.426 1.345-2.676.796-.253 2.324 0 3.022.656.697.657 2.177 1.275 2.177 1.275s-8.459 3.765-8.533 8.62c-.052 3.23 1.292 3.888 1.292 3.888z' fill='%23fcf3d8'/%3e%3cpath d='M465.112 209.134s-.577.352-.735.062c-.894-1.664-2.985-2.108-4.678-2.081-2.156.033-3.618.836-5.08.836-1.458 0-1.06-.233-2.785-.304-1.727-.066-5.408-2.791-6.24-2.522-.828.27-1.16 1.295-1.06 1.8.1.504-1.498.535-1.73.163-.233-.37 1.27-2.751 2.765-2.751 4.013 0 6.994 2.705 8.92 2.705 1.924 0 2.588-1.112 5.174-1.112 2.59 0 5.383 1.15 5.45 3.204z' fill='%23fdeaaf'/%3e%3cpath d='M451.969 212.253s1.919-.38 3.359-1.01c1.445-.63 3.367-1.134 3.367-1.134s-1.764 1.168-2.984 1.752c-1.22.577-3.194.897-3.194.897z' fill='%23513625'/%3e%3cpath d='M445.204 222.183c-.346.138-2.023.067-4.693-1.715-2.671-1.785-3.367-4.812-3.367-4.812s-.614-2.898 2.156-5.841c2.77-2.945 3.224-2.097 3.373-1.961.127.12-.14.262-.14.262l-2.439 1.987-1.21 2.036-1.073 1.833.084 2.167 1.235 2.178 3.821 2.386 2.253 1.481z'/%3e%3cpath d='m443.744 205.559-.154-.365v.397c.124-.007.14-.03.154-.032l-.154-.365v.397-.403l-.275.287c.1.096.215.116.275.116v-.403l-.275.287.275-.287h-.395a.4.4 0 0 0 .12.287l.275-.287h-.395.393l-.36-.166c-.01.029-.03.06-.033.166h.393l-.36-.166.312.142-.278-.202-.033.06.312.142-.279-.202.07.05-.065-.053-.005.004.07.05-.066-.054c-.018.024-.108.122-.214.247-.163.19-.38.45-.564.736-.18.29-.352.587-.361.963l.012.139c.05.384.311.689.597.822.287.146.59.177.878.18.638-.003 1.227-.187 1.248-.191a.406.406 0 0 0 .265-.506.397.397 0 0 0-.496-.27l-.017.007c-.098.03-.575.152-1 .15-.216.003-.414-.034-.52-.092-.11-.063-.14-.092-.169-.226v-.012c-.006-.04.032-.178.12-.33a4.617 4.617 0 0 1 .515-.73c.09-.105.17-.198.234-.268l.078-.094.038-.046.03-.049.027-.057c.007-.027.023-.064.025-.143a.4.4 0 0 0-.4-.406c-.121.007-.142.029-.157.033a.405.405 0 0 0-.21.526.395.395 0 0 0 .52.216z' fill='%238b5122'/%3e%3cpath d='M451.864 209.66s-5.713 1.598-5.859 1.702c-.42.302 1.831-.048 3.596-.102a6.675 6.675 0 0 1 2.055.26s.687-.02 1.382-.288c2.19-.856 6.8-2.57 7.229-.551.357 1.682-6.367 3.162-6.367 3.162l-.06.664 5.406-1.345 2.787-1.465.896-1.439-2.688-1.916h-3.932l-1.817.504z'/%3e%3cpath d='M443.51 217.92c.423 1.186 1.378 2.913 2.455 3.464 0 0 .183.02.117.135-.067.119-.864.61-2.688.136-1.825-.471-4.612-1.212-6.304-6.326l.052 1.126.994 2.004 1.79 1.85 2.806 1.767 1.922.47 1.627-.42.73-.555-1.677-1.514-2.055-3.502s-.083.486.23 1.364z' fill='%238f4620'/%3e%3c/g%3e%3cg fill='%23816c2a'%3e%3cpath d='m462.543 268.718-.087 1.853-1.023-.101.18-2.321zm-7.162-52.82-1.889-2.125-1.228.184 1.87 2.662z' fill='%23fcca3d'/%3e%3cpath d='M462.449 273.053c-.003 0-1.142-.75-2.619-1.432-1.508-.693-3.626-1.007-3.637-1.01l-.07.477s.128.02.345.06c.655.121 2.11.426 3.166.914a21.871 21.871 0 0 1 2.556 1.397zm-.164-4.732c-.002 0-1.044-.075-2.157-.075-.769 0-1.567.035-2.113.163-1.276.316-2.11.963-2.127.975l.288.385.032-.023a5.82 5.82 0 0 1 1.923-.865c.457-.113 1.246-.157 1.997-.15a26.51 26.51 0 0 1 2.123.074zm-.548-4.066c-.005.004-2.638 1.242-3.86 2.052-1.21.801-2.478 1.843-2.481 1.845l.301.38s.312-.258.776-.616a28.12 28.12 0 0 1 1.663-1.205c.58-.381 1.537-.892 2.339-1.298a57.071 57.071 0 0 1 1.462-.717zm-2.536-4.183v.007c.001.091-.022 1.065-.494 1.814-.116.186-.487.636-.961 1.171-.715.804-1.672 1.84-2.455 2.672-.779.826-1.38 1.452-1.38 1.452l.342.34a271.81 271.81 0 0 0 2.211-2.34 135.9 135.9 0 0 0 1.637-1.798c.482-.546.85-.985 1.01-1.235.559-.901.566-1.94.568-2.075v-.007h-.478zm-3.307-1.869.02.087c.037.177.11.614.11 1.198 0 .6-.08 1.357-.357 2.142-.32.922-.953 2.24-1.5 3.321-.275.544-.528 1.023-.712 1.376-.184.344-.298.553-.298.553l.414.24c.005-.007 1.869-3.403 2.547-5.33a6.949 6.949 0 0 0 .384-2.302c0-.834-.142-1.392-.147-1.408zm-3.2-.385s.02.19.04.505c.022.32.043.757.043 1.24.002.898-.074 1.96-.338 2.69-.287.814-.68 1.882-1.004 2.746l-.566 1.522.446.17s.992-2.638 1.575-4.276c.295-.834.363-1.927.365-2.852 0-.996-.085-1.793-.085-1.797zm-2.466-.012s-.003.813-.054 1.824c-.049 1.012-.146 2.218-.32 2.967-.37 1.58-.758 3.857-.758 3.857l.47.083s.097-.57.238-1.332c.143-.758.333-1.717.514-2.496.374-1.618.385-4.891.387-4.9zm-2.663.433s.034.298.066.759c.033.461.066 1.074.066 1.696 0 .715-.047 1.441-.176 1.933-.389 1.479-.62 3.798-.621 3.804l.476.052c0-.004.056-.577.162-1.334.106-.755.26-1.695.445-2.397.15-.57.19-1.324.19-2.058 0-1.28-.13-2.506-.134-2.51zm-2.091.28s.007.094.007.273c0 .571-.05 1.951-.446 3.372-.266.947-.579 2.067-.831 2.947-.247.882-.43 1.524-.43 1.524l.46.136s.729-2.577 1.26-4.48c.412-1.484.46-2.903.46-3.499 0-.186-.002-.292-.002-.294l-.478.02zm-2.338.023s.013.106.03.285c.012.189.028.449.028.762.002.893-.124 2.189-.677 3.201-.468.853-1.349 1.687-2.115 2.29a15.031 15.031 0 0 1-.988.725c-.128.086-.232.151-.303.198l-.11.066.243.42c.012-.014 2.638-1.558 3.692-3.468.617-1.13.735-2.494.735-3.43 0-.66-.06-1.104-.06-1.112zm-1.437-.456s-.036.12-.103.322c-.206.61-.726 1.963-1.462 2.877-.487.603-1.288 1.24-1.962 1.71-.337.238-.644.43-.865.571-.221.138-.356.213-.356.215l.234.421c.01-.007 2.237-1.274 3.318-2.613 1.072-1.333 1.649-3.347 1.654-3.364zm-2.278-1.144-.133.261c-.13.246-.339.63-.575.996-.236.372-.506.73-.726.923-.312.267-.931.663-1.457.972-.529.315-.971.555-.974.557l.225.428c.002-.004.453-.244.991-.565.539-.32 1.158-.711 1.524-1.028.384-.332.756-.907 1.05-1.408.294-.496.5-.921.5-.921zm-1.11-1.426s-.143.17-.373.434c-.35.397-.894.996-1.438 1.517a9.76 9.76 0 0 1-.783.684c-.24.187-.459.315-.584.353l.134.465c.31-.097.639-.338 1.006-.643 1.087-.928 2.399-2.49 2.4-2.496zm-.548-.958s-.133.107-.347.274c-.32.246-.826.619-1.333.921-.498.305-1.025.539-1.28.53h-.013v.484h.013c.309-.003.641-.13.992-.302 1.05-.522 2.261-1.53 2.268-1.53zm-.42-1.028c-.004 0-.532.306-1.142.62-.307.157-.63.318-.92.441-.283.123-.54.207-.656.219l.047.478c.222-.023.488-.12.794-.25.912-.387 2.108-1.09 2.115-1.09l-.24-.418zm-.504-2.126-.05.053a5.19 5.19 0 0 1-.82.713c-.398.285-.887.527-1.33.527l.006.484c.688-.015 1.31-.388 1.777-.739a5.55 5.55 0 0 0 .773-.72zm.176-3.342c-.002 0-.432.34-.906.79-.47.453-.984.99-1.175 1.483a.896.896 0 0 1-.14.19l-.104.088-.03.019h-.005l.007.029v-.03h-.007l.007.03v-.03.482c.23-.01.363-.136.476-.25.114-.127.195-.24.24-.354.113-.326.605-.876 1.06-1.301.226-.218.445-.412.608-.547.16-.138.265-.217.265-.217l-.297-.38zm16.403-19.616s1.076.006 1.756.006c.157 0 .29-.003.39-.003h.112l.035-.003h.02l.021-.004.036-.01.058-.026.058-.055.05-.145-.044-.14-.087-.074-.068-.026-.036-.003-.02.483.008-.188-.02.188h.012l.008-.188-.02.188.024-.23-.048.226.023.004.025-.232-.048.227.05-.237-.087.225.037.012.05-.237-.087.225.088-.225-.141.194.053.031.087-.224-.14.194-.055-.055.195-.14h-.238l.044.14.195-.14h-.238l.048-.145.095-.075.093.217-.027-.236-.066.019.093.217-.027-.237.017.16-.005-.16h-.012l.017.16-.005-.16h-.523l-1.752-.002-.005.484zm.058-1.437.152.01c.34-.003.678-.14 1.024-.322.515-.277 1.048-.676 1.53-1.005.24-.163.47-.31.667-.41.196-.1.366-.153.47-.153l-.008-.486c-.303.009-.593.152-.909.336-.473.278-.991.674-1.49.997-.494.33-.975.565-1.284.555l-.088-.003zm-.198-2.302c.357-.048.73-.221 1.131-.447.597-.337 1.244-.797 1.837-1.171.588-.378 1.143-.653 1.44-.65l-.007-.485c-.345.01-.701.162-1.089.369-.576.314-1.22.77-1.824 1.157-.603.39-1.18.705-1.547.746l.06.48zm-.854-2.138c.575-.306 1.445-.977 2.349-1.676.901-.698 1.83-1.422 2.455-1.803l-.248-.415c-.667.407-1.595 1.135-2.496 1.833-.896.695-1.778 1.366-2.278 1.631l.218.43zm-1.612-2.442c1.145-.807 3.944-2.812 4.992-3.478l-.252-.41c-1.076.683-3.866 2.685-5.011 3.492zm-2.138-2.348c.755-.643 1.825-1.36 2.81-1.992.99-.63 1.888-1.18 2.338-1.514l-.28-.39c-.415.307-1.323.863-2.314 1.495-.992.637-2.07 1.359-2.858 2.03zm-1.682-1.449c0-.002 1.126-.82 2.353-1.688a97.855 97.855 0 0 1 1.786-1.238c.53-.358.969-.635 1.132-.711l-.198-.439c-.232.11-.657.382-1.198.746-1.612 1.085-4.153 2.936-4.156 2.938z'/%3e%3cpath d='m450.836 211.587.29.233c.654.533 2.298 1.95 3.771 3.797 1.474 1.847 2.764 4.124 2.759 6.347 0 .213-.01.428-.035.638-.33 2.894-1.783 5.442-3.796 7.798-3.02 3.532-7.296 6.611-10.83 9.732-1.77 1.558-3.353 3.13-4.504 4.793-1.148 1.662-1.865 3.422-1.865 5.323 0 .087.003.173.006.259.06 1.749.626 3.662 1.717 5.204 1.092 1.542 2.72 2.72 4.867 2.934.356.036.718.05 1.08.05 2.76-.002 5.767-.882 8.635-.878 2.415.004 4.704.599 6.743 2.828 1.946 2.127 2.544 5.55 2.54 8.843 0 2.36-.3 4.647-.6 6.346a38.43 38.43 0 0 1-.601 2.794l.458.133c.004-.014 1.221-4.477 1.221-9.273-.004-3.35-.589-6.882-2.672-9.173-2.129-2.34-4.604-2.99-7.09-2.982-2.958 0-5.971.881-8.635.876-.35 0-.695-.015-1.032-.048-1.996-.202-3.497-1.276-4.526-2.728-1.03-1.456-1.572-3.29-1.63-4.947l-.002-.238c0-2.37 1.183-4.53 3.026-6.634 2.767-3.158 6.983-6.143 10.647-9.453 3.663-3.308 6.794-6.96 7.317-11.504.026-.23.04-.462.04-.693-.007-2.758-1.776-5.432-3.52-7.434a26.415 26.415 0 0 0-3.492-3.326l-.286.383z' fill='%2378732e'/%3e%3cpath d='m447.214 216.284-.574-.494-.491.177.928.76zm1.542 1.46-.43-.443-.225.127.356.468z' fill='%23a8ac71'/%3e%3cpath d='m450.906 220.115-.368-.467-.225.29.375.43zm1.613 2.408-.269-.48-.43.075.56.607zm.91 2.266-.211-.658-.062.114-.039.5zm.106 2.278.025-.626-.287-.177.038.86zm-.094 1.46.063-.708-.187-.126.012.923zm-18.623 22.631s.05-.581.214-1.086c.158-.507-.46.238-.46.238l-.077.697.323.15z' fill='%2378732e'/%3e%3cpath d='m434.666 252.607-.274.125.1.68.15-.214s.024-.381.024-.59z' fill='%23fff'/%3e%3cpath d='m434.713 255.305-.038-.664-.199-.075v1.082z' fill='%2378732e'/%3e%3cpath d='m434.889 256.812-.064-.6-.21.032-.014.568zm.408 2.174-.124-.581-.137.138.112.582zm.573 2.232-.237-.784-.175.075.237.753z' fill='%23fff'/%3e%3cpath d='m437.318 264.208-.323-.487-.306-.05.393.594zm2.208 2.185s-.298-.177-.735-.53c-.434-.354-.173.329-.173.329l.623.33zm14.99 1.122s-.35-.239-.597-.353c-.25-.113.135.024.348.519.21.493.25-.166.25-.166z' fill='%23a8ac71'/%3e%3cpath d='M455.801 268.554s-.286-.363-.475-.49c-.186-.124-.122.377-.122.377l.385.166z' fill='%23fff'/%3e%3cpath d='M456.059 269.15c-.16-.213-.334.316-.334.316l.459.431s.037-.529-.125-.747zm.07 2.068s.1-.44.074-.721c-.024-.276-.248.099-.248.099l.025.622z' fill='%23a8ac71'/%3e%3cpath d='m455.404 273.403.175-.544-.224.006-.138.563zm-22.818-79.855s.86-.177.21.796c-.646.971.435-.871.435-.871l-.347-.102z' fill='%23fff'/%3e%3c/g%3e%3cpath d='m451.082 210.98.521.531s-.486-.127-.696-.152c-.211-.027.175-.38.175-.38z' fill='%23f9c83a'/%3e%3cpath d='M451.595 211.517s-.735.1-.994.138c-.262.037.298-.29.298-.29z' fill='%238f4620'/%3e%3cpath d='M460.755 278.613s.624-.065.904-.448c.277-.38-.178.6-.178.6l-.4.15-.326-.3z' fill='%23977c2e'/%3e%3c/svg%3e\"},7758:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 2800 1400'%3e%3cpath style='fill:%23cc0001' d='M0 0h2800v1400H0z'/%3e%3cpath id='a' style='fill:%23fff' d='M0 1300h2800v100H0z'/%3e%3cuse transform='translate(0 -200)' xlink:href='%23a'/%3e%3cuse transform='translate(0 -400)' xlink:href='%23a'/%3e%3cuse transform='translate(0 -600)' xlink:href='%23a'/%3e%3cuse transform='translate(0 -800)' xlink:href='%23a'/%3e%3cuse transform='translate(0 -1000)' xlink:href='%23a'/%3e%3cuse transform='translate(0 -1200)' xlink:href='%23a'/%3e%3cpath style='fill:%23010066' d='M0 0h1400v800H0z'/%3e%3cpath d='M576 100c-166.146 0-301 134.406-301 300s134.854 300 301 300c60.027 0 115.955-17.564 162.927-47.783-27.353 9.44-56.71 14.602-87.271 14.602-147.327 0-266.897-119.172-266.897-266.01 0-146.837 119.57-266.01 266.897-266.01 32.558 0 63.746 5.815 92.602 16.468C696.217 118.91 638.305 100 576 100z' style='fill:%23fc0'/%3e%3cpath d='m914.286 471.429-99.538-53.25 29.43 108.982-66.575-91.165-20.77 110.96-20.428-111.024-66.857 90.96L699.314 418l-99.701 52.943 74.065-85.192-112.8 4.441 103.694-44.62-103.555-44.94L673.8 305.42 600 220l99.538 53.25-29.43-108.982 66.575 91.165 20.77-110.96 20.428 111.023 66.857-90.959L814.97 273.43l99.702-52.944-74.065 85.193 112.8-4.441-103.694 44.62 103.555 44.94-112.785-4.79z' transform='matrix(1.2738 0 0 1.2423 -89.443 -29.478)' style='fill:%23fc0'/%3e%3c/svg%3e\"},1598:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M0 0h900v206.25H0z'/%3e%3cpath fill='%23007168' d='M0 0h900v187.5H0z'/%3e%3cpath fill='%23fff' d='M0 393.5h900V600H0z'/%3e%3cpath fill='%23fce100' d='M0 412.5h900V600H0z'/%3e%3cpath d='M0 0v600l393.75-300z' fill='%23d21034'/%3e%3cpath d='m204.37 412.485-73.154-53.56L58.16 412.5l28.332-86.124-73.528-52.924 90.664.332 27.613-86.284 27.7 86.33 90.594-.403-73.544 53.023z' fill='%23fce100'/%3e%3cpath d='M67.724 352.427h52.699c4.24 4.757 13.7 6.697 22.711-.056 16.518-9.045 48.473.056 48.473.056l6.292-6.685-15.338-50.34-5.506-5.899s-11.797-7.078-34.215-4.719c-22.417 2.36-30.283-.786-30.283-.786s-19.663 2.36-25.17 5.112c-.604.49-6.292 6.292-6.292 6.292z' fill='%23fff' fill-rule='evenodd' stroke='%23000' stroke-width='1.575' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M78.343 339.45s50.339-6.293 64.89 12.977c-8.218 5.624-15.453 6.087-23.203.395 1.234-2.057 18.09-19.665 60.958-13.765' fill='none' stroke='%23000' stroke-width='1.575' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='m132.221 289.11-.393 55.453m45.227-54.667 9.439 44.048m-98.587-44.74-5.238 22.716' stroke='%23000' stroke-width='1.575' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='m33.497 358.465 12.393 14.531c1.456.868 2.748.813 4.041 0l18.367-22.04 7.715-9.551c1.194-1.415 1.575-2.993 1.469-4.408l14.748-13.105c1.206.083 1.925.22 3.131.301-1.425-.369-2.47-1.063-1.349-2.625l3.306-2.571 2.571 3.305s-3.672 4.776-4.04 4.776h-4.04l-7.715 6.98 3.372 2.98 5.077 13.918 6.245-4.409-4.04-14.325 8.816-9.552-3.307-5.143 2.205-2.939s30.513 19.21 42.268 14.068c.318.115.71-13.7.71-13.7s-31.59-3.306-32.326-9.551c-.734-6.245 6.98-6.98 6.98-6.98l-3.307-4.775.736-2.572 5.51 6.98 12.49-10.654 73.468 83.755c4.011-1.626 4.868-2.607 5.144-6.612-.104-.1-72-82.653-72-82.653l5.51-5.876c1.086-1.225 1.468-1.745 1.47-3.675l8.448-7.346c2.541.873 4.161 2.396 5.51 4.407l23.228-19.685c.612.612 2.472 1.224 3.734.536l38.402-36.861-41.854 29.562-1.469-1.102c0-1.225 1.518-1.527 0-3.673-1.626-1.952-4.04 1.836-4.407 1.836-.368 0-6.058-2.01-7.305-4.558l-.41 6.762-10.653 9.919-8.081-.368-11.756 11.388-1.469 4.408 1.837 3.674s-6.246 5.51-6.246 5.142c0-.366-1.262-1.623-1.316-1.786l5.357-4.826.735-3.306-1.788-2.791c-.542.394-7.396 7.567-7.764 6.832-.612-.686-19.835-22.408-19.835-22.408l1.101-4.04-12.489-13.593c-4.553-1.572-11.755-1.836-13.225 8.082-1.144 2.33-10.653.367-10.653.367l-5.143 1.102-29.02 41.143 16.163 19.469 33.061-41.877.982-11.864 6.937 7.757c2.313.297 4.516.323 6.612-.735l19.588 21.863-3.262 3.183c1.102 1.224 1.86 2.006 2.963 3.23 1.102-.734 2.154-1.615 3.256-2.351.368.491.98 1.422 1.348 1.912-1.641.893-2.793 2.082-4.434 2.976-2.626-1.712-5.162-3.844-4.97-7.236l-11.02 9.183-.367 1.837-32.694 27.183-2.939.368-.734 8.449 21.306-17.632v-2.573l2.204 1.837 16.53-13.223s1.102 1.469.736 1.469c-.368 0-14.695 13.224-14.695 13.224l-.367 1.469-2.571 2.204-1.47-1.102-19.837 17.632h-2.938l-11.02 11.022c-2.843.247-5.306.548-7.715 2.203z' fill-rule='evenodd' stroke='%23000' stroke-width='1.575' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e\"},6329:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 60'%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath d='M0 0h90v60H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3cpath fill='%23003580' d='M0 60V0h90z'/%3e%3cpath fill='%23009543' d='M90 0v60H0z'/%3e%3cg fill='none' clip-path='url(%23a)'%3e%3cpath stroke='%23fff' stroke-width='20' d='M0 60 90 0'/%3e%3cpath stroke='%23d21034' stroke-width='15' d='M0 60 90 0'/%3e%3c/g%3e%3cg fill='%23ffce00' transform='translate(18 16.341)'%3e%3cpath d='m0-10 1.55 4.2L5-8.66l-.76 4.42L8.66-5 5.8-1.55 10 0 5.8 1.55 8.66 5l-4.42-.76L5 8.66 1.55 5.8 0 10l-1.55-4.2L-5 8.66l.76-4.42-4.42.76 2.86-3.45L-10 0l4.2-1.55L-8.66-5l4.42.76L-5-8.66l3.45 2.86z'/%3e%3ccircle r='5.5' stroke='%23003580'/%3e%3c/g%3e%3c/svg%3e\"},4860:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 450'%3e%3cpath fill='%23009543' d='M0 0h900v450H0z'/%3e%3cpath fill='%23ed4135' d='M0 0h900v300H0z'/%3e%3cpath fill='%230035ad' d='M0 0h900v150H0z'/%3e%3ccircle stroke='%23000' stroke-width='5' fill='%23fae600' cx='300' cy='225' r='147.48'/%3e%3cpath stroke='%23000' stroke-width='6' d='M275 247h50m-50-37h50M300 78v252'/%3e%3cpath d='M240.62 360.419c60.191 24.58 116.608 1.51 116.608 1.51s-21.297-23.048-32.214-32.047c-10.653-8.778-41.991-8.431-52.685 0-8.924 7.038-34.52 32.97-31.709 30.537Z'/%3e%3cellipse cx='300' cy='293' rx='16.5' ry='24'/%3e%3cellipse cx='300' cy='228.5' rx='20' ry='12.66'/%3e%3ccircle cx='300' cy='170' r='20'/%3e%3cpath d='M324 95.5c-.006-.013 1.733 2.87-1.913 9.436-17.426 31.383-34.913 32.061-38.232 34.764-3.658 2.978-5.202 2.774-5.202 2.774.261-2.688.504-13.679.695-14.738 2.645-14.663 24.796-14.461 42.132-29.476 2.708-2.345 2.514-2.773 2.514-2.773Z'/%3e%3cpath d='M265.5 163s3.914 11.23 4.5 22.5c.935 17.997 18.18 18.5 30 18.5v-10c-8.859 0-16.553-1.317-23-14.5-3.18-6.503-11.5-16.5-11.5-16.5zm-.5 145s6.296-7.765 13.662-25.975C282.505 272.525 291.612 267 300 267v-14c-19.028 0-28.15 7.055-29.113 17.363C268.91 291.541 265 308 265 308z' id='a'/%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 600 0)'/%3e%3c/svg%3e\"},3309:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 600'%3e%3cpath fill='%230DB02B' d='M0 0h700v600H0z'/%3e%3cpath fill='%23FFF' d='M0 0h700v400H0z'/%3e%3cpath fill='%23e05206' d='M0 0h700v200H0z'/%3e%3ccircle cx='350' cy='300' r='85' fill='%23e05206'/%3e%3c/svg%3e\"},6376:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 920 460'%3e%3cpath fill='%23007934' d='M0 0h920v460H0z'/%3e%3cpath fill='%23fff' d='M280 0h360v460H280z'/%3e%3cpath fill='%23007934' d='m463.32 30.575-2.414 26.116-8.842 1.33s6.14 3.449 7.213 6.912c.172.555.103 1.014-.145 1.36a1.944 1.944 0 0 1-.32.318c-1.78 1.367-7.039.723-7.039.723s6.968 5.88 7.504 8.011c.012.05.028.096.03.145-.002.04.007.106 0 .144-.009.031-.047.086-.06.116a1.108 1.108 0 0 1-.232.318c-1.638 1.513-9.365 1.938-9.365 1.938s8.567 6.109 9.103 9.573c.486 3.139.079 4.977 0 5.292-.598-.511-14.415-12.122-23.327-8.734-.443.23-.706.45-.814.665a.55.55 0 0 0-.029.347c.624 1.932 13.227 3.91 22.018 11.511-.218 1.903-25.055-6.05-25.973-1.07.777 1.405 26.729 5.145 28.649 8.532-9.558.355-29.303-2.104-28.649 1.041-1.997 3.63 18.649 1.58 27.311 4.54 2.54 2.87 2.294 5.28-2.123 5.582-8.35-3.969-27.034-6.918-27.08-1.85v.028c.003.006.028.024.03.03.008.015.016.043.029.057.03.029.096.06.145.087 2.11 1.053 19.51.54 26.061 4.859-9.288 2.1-40.782-4.262-40.982-1.157.897 1.45 5.881 7.815 14.456 7.548 8.575-.266 28.414 3.467 29.755 6.131a.36.36 0 0 1 .03.232c-.581 1.858-26.127-5.669-35.95-1.041-10.183 4.796 29.197 1.888 35.63 7.75 6.43 5.862-12.857-.55-12.857-.55s-26.783-3.715-30.802-1.85c-4.02 1.866-8.58 6.131-8.58 6.131s2.672 5.317 5.352 4.252c.408-.163.687-.196.843-.145.004.002.026-.002.03 0 .003.002.025.027.029.029.006.004.023.024.029.029.004.006.024.023.029.029l.03.029a.538.538 0 0 1 .028.115c.063.8-1.832 3.124-1.832 3.124s37.532 9.041 45.839 17.034c8.306 7.994-47.7-12.523-47.7-12.523s-22.51 8.259 1.338 8.792c-2.659 3.867 1.1 6.247 1.337 6.391 0 0 39.668 8.268 43.687 14.663 4.02 6.395-27.063-6.138-34.03-9.601-6.721-3.343-25.432 1.767-26.497 3.326a.559.559 0 0 0-.029.057c-.002.006.002.024 0 .03a.388.388 0 0 0 0 .057v.03c.002.005-.002.023 0 .028.002.006.027.024.03.029.001.006-.003.024 0 .029a.926.926 0 0 0 .058.087c.004.006.024.023.029.029 1.198 1.313 9.55 3.121 9.802 5.379v.029a.863.863 0 0 1-.088.376c-1.052 2.028-11.016 2.89-11.43 4.8-.007.033-.03.083-.03.116 0 2.133 50.125 12.524 63.523 23.715s-39.382-13.333-39.382-13.333 2.948 3.995 0 5.062c-2.948 1.065-13.419-14.92-30.569-5.062-3.123 4.057 14.974 7.276 19.575 7.722-1.57 4.017-2.94 5.346 3.49 9.342.704.437 1.099.701 1.251.838l.03.03.028.028c.002.002 0 .027 0 .03v.028h-.058c-.996-.155-12.55-6.059-13.758-6.304-.012-.002-.049 0-.058 0h-.029c0 .533 1.338 6.94 1.338 6.94-5.937-4.795-13.114-6.241-19.836-1.33-.01.284-.06 4.883 6.69 7.722-3.804 7.729 4.298 5.33 17.16 12.523-19.115-4.968-20.646 4.26-6.98 6.392s51.19 3.467 60.033 14.923c1.865 2.417 2.372 3.632 2.007 4.02-1.475 1.329-15.044-8.43-17.015-8.792-.004.002-.025-.004-.03 0l-.028.029a.898.898 0 0 0-.088.144c-.481 1.06-.93 5.669-.93 5.669-5.717-3.29-10.963-6.241-17.8-7.635-.537 1.065-.424 2.579-.96 3.644-6.206-4.45-11.611-7.578-20.622-8.011l-1.077 4.28s-7.512-9.326-22.25 0c-8.23 5.867 31.088 2.124 37.52 9.052 6.43 6.927 1.337 7.982 1.337 7.982-5.359-1.953-10.696-3.888-16.055-5.842 0 0-19.044-3.481-24.403.781-5.359 4.264 78.243 14.658 80.654 26.116 1.626 6.214-19.642-6.506-38.044-11.973-.711 2.034-1.44 4.069-2.152 6.103-.436-.43-7.555-7.314-15.532-8.503-.002.004-.027.022-.03.029v.058c.013.874 1.63 7.114 1.63 7.114s-20.613-9.602-31.063-4.54c-10.451 5.062 36.433 7.726 40.72 12.523.469.524.664.907.64 1.157a.55.55 0 0 1-.059.144c-1.035 1.508-15.017-4.062-16.404-1.301-1.608 3.197-24.38-5.854-24.112-1.591.268 4.264 3.229 6.652 3.229 6.652s47.43 4.527 49.038 10.122c1.607 5.595-26.264-3.181-26.264-3.181s-2.696 3.977-.553 5.842c.084.072.15.142.175.173v.029h-.03c-.968-.318-16.07-10.153-14.6-2.603-5.91-2.34-21.167-9.586-19.023-3.991 2.112 5.513 41.905 13.363 43.076 13.593-1.052.082-17.88 1.482-17.102 5.87-22.555-13.662-22.502-5.469-21.989-4.829v.03c-1.267-.2-29.016-7.074-6.951 4.8 11.833 6.367 14.717 8.85 14.776 9.804 0 .021.002.067 0 .087-.004.025-.02.064-.029.087-.002.006-.026.023-.03.029-.01.016-.017.043-.028.058l-.03.029-.029.029-.029.029c-.006.004-.023.025-.029.029-.459.291-1.567.17-1.89.173h-.059a.133.133 0 0 0-.029.029l.03.029c.314.465 2.045 5.165 1.948 5.987-.002.014-.026.047-.03.057-.001.004.003.025 0 .03 0 .001-.027-.003-.028 0-.002 0 .002.027 0 .028h-.059c-.967-.242-15.58-8.007-20.593-8.531-5.092-.533-29.215 6.653-3.49 17.844s41.526-2.67 55.728-1.07c14.202 1.598 20.914 4.001 19.575 8.531-1.34 4.53-14.528-14.85-28.388 1.91-15.766-3.103-26.462-4.898-18.324 6.622-25.747-9.567-41.47 2.919-9.046 7.982 31.862.934 51.452-7.722 51.452-7.722s5.375 9.878 13.147 2.95c7.407-6.602 7.99 1.8 8.26 2.603.005.012.026.022.03.03.002.001-.002.027 0 .028h.029c.572-.143 7.475-3.21 7.475-3.21h1.89v63.944c8.665.089 17.31.171 25.973.26 0 0-8.307-55.674-3.752-63.134 4.414-7.227 8.587-6.447 8.842-6.391 0 0 16.885 5.05 18.76 4.251.022-.01.067-.018.088-.029.014-.008.045-.02.058-.029.033-.02.087-.063.116-.087.006-.004.024-.024.03-.029 1.372-1.245-.026-6.16 8.55-5.408 2.65-.958 1.639-5.156 3.346-6.189.03-.018.084-.042.116-.058.064-.03.161-.065.233-.086.1-.03.234-.047.349-.058 2.68-.267 54.392 14.376 65.646.52-2.948-7.726-13.143-.527-15.823-.26-2.412 0-12.602-4.796-18.498 0-5.36-3.996-29.726-6.652-29.726-6.652-3.216-3.197 58.149 1.588 61.632-.81 7.234-7.194-13.392-6.389-16.608-3.99-5.717-3.465-12.9-3.208-17.277-.81-2.099-4.992-22.024-2.83-33.1-4.252-3.544-2.067-2.954-3.254-.552-4.54 23.134.977 46.151 3.98 69.398 2.95 6.284-8.146-7.91-11.218-16.608-4.28-5.106-8.35-15.545-.272-22.512-1.071-6.966-.8-3.752-9.314 5.09-7.982 8.843 1.333 24.655-.544 27.602-4.54 2.947-3.997-1.76-8.046-16.346-4.252-4.937-4.798-15.792-.008-20.884 1.59-6.774-3.757-22.534-.522-27.893.81-5.246-3.242 27.602-8.531 27.602-8.531 12.68-.223 19.831-2.405 23.85-3.47 19.168-10.216-.267-11.3-10.325-3.876-6.243-4.847-12.173.419-17.8 2.285-5.275 1.748-15.032 3.021-16.23 2.516a.631.631 0 0 1-.058-.03c-.002-.001-.026-.026-.03-.028l-.028-.03v-.057a.473.473 0 0 1 .029-.057c.79-1.218 15.24-10.036 15.24-10.036s18.76-1.347 22.513-1.88c2.286-.325 10.299-4.096 10.296-5.495-.067-.868-3.406-.788-13.525 1.764-9.111.8-14.462.283-17.946.55-5.603-.576-7.964-1.163-8.435-1.678a.658.658 0 0 1-.058-.086c-.04-.093-.014-.2.058-.29.018-.02.063-.066.087-.086 1.374-1.091 10.238-1.88 10.238-1.88s27.063-2.468 28.853-3.876l.03-.029c.01-.012.022-.047.028-.058.002-.006.028-.023.03-.029.556-11.002-22.96-5.921-23.588-5.842.067-7.736-21.224-.113-22.221 0h-.03c-.916-.536-1.315-1.102-1.396-1.62a1.48 1.48 0 0 1 .058-.606c.534-1.596 3.752-2.835 3.752-2.835 5.896-1.42 14.71-1.864 17.015-3.73 0 0 16.64-.146 18.615-4.541-4.083-11.201-35.213 1.983-39.382 3.991-.835 0-1.346-.209-1.6-.55-1.368-1.988 5.387-8.537 5.614-8.762.002-.002.024-.027.03-.03 1.029-.29 25.883-1.554 37.752-17.554.838-9.894-14.194 5.581-14.194 5.581-1.122-12.83-16.345.814-25.188 1.88-8.842 1.065-9.1-4.001-2.937-4.8 6.162-.8 13.124-.277 16.608-9.602 3.482-9.326 13.947.543 15.823-2.921 1.816-3.356-3.424-6.217-3.752-6.392 0 0 7.765-8.017-4.829-7.75-12.467.263-28.585-1.554-28.91-1.591.781-.297 13.48-5.06 25.42-4.801 12.327.266 5.625-8.792-6.166-8.792-11.79 0-17.946-3.991-17.946-3.991l20.098-7.462-1.338-5.582s11.786-9.332-4.828-7.201c-16.614 2.132-18.498 2.4-18.498 2.4s-32.705 4.984-33.478 5.062h-.03c-.316-.05-3.555-1.05-4.158-2.285a1.567 1.567 0 0 1-.059-.145 1.126 1.126 0 0 1-.029-.173c-.004-.058-.01-.143 0-.203.135-.65 1.144-1.354 3.723-1.995 8.575-2.131 38.87-8.251 43.425-6.652.587.206 1.016.16 1.28-.058 1.708-1.537-3.974-11.338-17.917-12.725-16.078-1.598-25.973 3.991-25.973 3.991s-10.462-3.743-.814-6.94c9.646-3.197 24.926 1.07 24.926 1.07s17.14-5.07 2.937-7.202c-14.202-2.132-18.68 1.917-25.188 2.14-2.598-3.224 22.297-3.985 23.85-6.651-2.625-4.798-18.028 0-27.05 0-3.837-1.62-4.091-4.253.262-5.871 9.2-.356 17.849.181 27.05-.174-.268-4.884.006-10.675-.262-15.559-11.67-2.12-25.355 1.553-31.907 1.244 1.753-5.33 26.95-6.706 29.755-8.156 5.79-7.195-24.167-.111-24.897 0-5.317-.781-4.995-4.123-1.629-6.131 7.771-.889 25.197 1.132 23.88-4.107-1.01-4.91-12.083-2.28-16.638-1.215-4.555 1.066-11.256.26-11.256.26-2.917-3.904 26.27-2.308 26.003-5.32-.38-3.46-18.5-1.077-24.665-.81-4.74-3.253 22.286-5.415 23.56-5.843l.029-.029c1.01-8.857-18.76 0-22.512 0-.645 0-1.133-.16-1.484-.433a2.222 2.222 0 0 1-.233-.232c-1.288-1.494-.145-4.916-.145-4.916s7.045-3.148 7.475-3.905c.002-.006.027-.023.03-.029v-.059l-.03-.028a.576.576 0 0 0-.087-.087c-.827-.633-5.673-2.232-6.312-2.285h-.029c-.004-.001-.025-.027-.029-.029a.223.223 0 0 1-.03-.029c-.003-.004-.025-.023-.028-.029-.365-.745.087-6.044.087-6.044s5.582-4.16 5.933-5.813c.002-.014-.002-.045 0-.058.002-.014 0-.045 0-.058v-.058c0-.012.002-.046 0-.058v-.029c-.004-.016-.022-.042-.029-.058-.002-.006.002-.023 0-.029-.002-.004-.026-.024-.029-.029-.006-.01-.023-.02-.03-.029-.01-.014-.017-.045-.028-.057l-.03-.03a.938.938 0 0 0-.087-.057l-.058-.03c-1.41-.672-7.242 1.331-7.242 1.331v-5.321s5.106-.552 5.642-2.95c.032-.14.016-.279 0-.405-.008-.05-.014-.126-.029-.174a1.346 1.346 0 0 0-.145-.318c-.01-.014-.048-.044-.059-.058-1.168-1.5-5.933-1.706-5.933-1.706-.894-9.325-1.782-18.64-2.676-27.966zm-4.77 91.332v3.673s-6.01-.306-7.126-1.244c-.006-.004-.024-.024-.03-.029l-.028-.028-.03-.03-.029-.028c-.01-.014-.021-.043-.029-.058-.002-.004.002-.024 0-.029-.002-.004-.028-.024-.029-.029v-.144a.592.592 0 0 1 .029-.087c.002-.006.026-.024.03-.03a.798.798 0 0 1 .057-.086l.03-.029.058-.058c.04-.035.093-.079.145-.116 2.016-1.403 6.042-1.37 6.835-1.59.006-.002.023.002.03 0 .006-.002.024-.027.029-.03.004-.001.025.003.029 0 .004-.001.026-.026.029-.028zm8.522 4.888c.208 0 11.97.1 13.001 1.62.008.011.023.044.03.057.007.02.024.067.029.087.002.014-.001.044 0 .058 0 .02.004.065 0 .087a.973.973 0 0 1-.03.086c-.898 1.898-12.798 3.037-12.798 3.037l-.232-5.032zm-.669 7.259c.004.002.025-.002.03 0 .003.002.022-.002.028 0 .699.183 5.57.34 6.167 1.156.006.008.024.022.029.03.002.003-.002.024 0 .028.004.008.026.021.029.03v.143c-.002.004-.028.024-.03.029-.001.004.003.024 0 .028-.007.014-.02.044-.028.058l-.03.03c-.004.003.004.023 0 .028-1.01 1.227-5.505 1.562-5.73 1.562h-.029c-.002 0 .002-.028 0-.029-.004-.006-.025-.023-.029-.029-.205-.415-.407-3.065-.407-3.065zm-35.863 9.66c3.84-.2 11.462.7 25.77 4.627 0 .302.29 3.991.175 4.598-.001.004-.028.025-.03.029v.029c-.002.002-.025.028-.029.029-.224-.112-26.03-7.486-28.388-7.375-.064.002-.142.006-.203 0a1.945 1.945 0 0 1-.175-.029c-.064-.016-.147-.061-.203-.087-.021-.01-.068-.018-.088-.029-.006-.004-.023-.025-.03-.029a.826.826 0 0 1-.203-.202c-.004-.006-.025-.023-.029-.029l-.029-.058c-.002-.006.002-.023 0-.029-.004-.012-.026-.046-.029-.058v-.144a.703.703 0 0 1 .03-.116.873.873 0 0 1 .174-.26c.394-.384 1.382-.77 3.286-.868zm13.38 10.902c4.113-.146 13.968 2.211 14.513 2.083 0 .781.436 4.475-.058 5.234-.004.006-.024.023-.03.03-.003.005-.023.023-.028.028-.006.004-.024.025-.03.029a.685.685 0 0 1-.058.029c-.006.002-.023-.001-.03 0h-.057c-.006-.001-.022.002-.03 0-.837-.208-15.381-4.802-15.938-6.68-.008-.032-.001-.087 0-.117a.383.383 0 0 1 .087-.202c.006-.006.022-.023.03-.029l.028-.029c.28-.22.856-.35 1.6-.376zm40.486 10.122c3.928-.076 6.702.258 5.672 1.446-2.805 3.236-22.192 5.9-22.192 5.9l-.35-5.9c.417-.06 10.268-1.317 16.87-1.446zm-55.495 18.394c3.297-.174 10.974 1.626 28.068 8.821l.117 4.252s-28.948-8.73-29.958-10.18c-.498-.714-1.421-2.723 1.774-2.893zm56.717 6.334c.88-.045 1.5.044 1.716.26.006.006.025.023.03.03.011.02.021.065.028.086.004.022.03.063.03.087-.012.122-.104.286-.262.463-2.694 3.013-17.161 6.015-17.161 6.015v-3.904h.029c.66-.023 11.279-2.82 15.59-3.037zm-63.465.52c4.322-.227 14.08 2.052 35.95 12.35 0 .106.195 3.658.116 3.99h-.029c-1.296-.415-39.353-13.707-39.353-13.707-.04-.146-.613-2.425 3.316-2.632zm72.452 16.63c1.106-.046 1.832.05 2.007.29a.332.332 0 0 1 .03.116c-.005.115-.101.263-.292.433-3.45 3.1-25.453 6.854-26.235 6.912h-.029c-.002 0-.026.002-.029 0l-.03-.029a.41.41 0 0 1-.028-.057c-.002-.006.002-.024 0-.03-.004-.011-.026-.044-.03-.057-.14-.718.316-3.234.35-3.586v-.03c0 .002.027 0 .029 0 .004.001.024.03.029.03h.029c1.408-.024 18.27-3.745 24.199-3.991zm-64.686 9.69c6.55-.337 26.397 8.712 27.37 8.993h.03c-.103.405-.12 3.672-.204 4.194-.002.014.002.05 0 .058-.001.002-.029-.001-.03 0-.534-.285-27.735-11.51-28.94-10.614-.75-1.768.028-2.542 1.775-2.632zm58.52 2.37c1.363-.059 2.36.001 2.676.174a.248.248 0 0 1 .087.087c.002.004 0 .024 0 .029a.39.39 0 0 1 0 .029c-.002.012.006.046 0 .058-.004.006-.024.022-.029.029a.78.78 0 0 1-.087.086c-2.02 1.786-20.767 5.466-20.767 5.466s-.088-3.453-.088-3.788c.533-.113 12.635-1.925 18.208-2.17zm-1.512 11.945c1.319-.044 2.254.03 2.472.26l.029.029c.006.01-.002.047 0 .058 0 .006.029.023.03.029-.001.006-.03.023-.03.029-.002.012.006.045 0 .057-.004.006-.025.023-.03.03-.015.026-.034.059-.057.086-.018.02-.064.066-.088.087-2.023 1.737-17.917 5.061-17.917 5.061s-.436-3.792-.436-3.904c.44.01 11.067-1.658 16.026-1.822zm-67.071.954c3.834-.241 13.337 1.33 36.793 9.804l.785 4.57s-39.055-12.536-40.167-12.928c.002 0 0-.026 0-.03 0-.024-.006-.082 0-.144a.986.986 0 0 1 .204-.463c.275-.335.904-.717 2.385-.81zm51.452 9.92c.47.1 7.019.316 8.23 1.33a.213.213 0 0 1 .03.03l.03.028c.003.004.024.024.028.03.012.015.02.042.03.057.002.006.026.024.029.029.01.021.023.065.029.087v.144c-.002.012-.025.046-.03.057-.001.006.003.023 0 .03l-.028.057c-1.01 1.562-7.853 2.14-7.853 2.14s-.337-3.06-.495-4.02zm15.852 8.907c1.525-.036 2.619.138 2.85.579.13.299-.12.74-.843 1.33-5.61 4.575-17.83 5.466-17.83 5.466v-5.032h.029c.694-.082 10.73-2.222 15.794-2.343zm15.56 4.686c1.937-.073 2.772.25 3.026.694.02.04.046.103.058.145a.94.94 0 0 1 .029.26c-.062.573-.687 1.26-1.163 1.706-1.908 1.785-32.314 11.366-32.314 11.366s-.23-6.355-.117-6.912c17.777-5.357 26.472-7.108 30.482-7.259zm-19.661 17.989c1.933-.072 3.444.042 3.897.491.028.03.069.083.088.116.01.02.022.065.029.087.006.021-.002.064 0 .087 0 .038.01.102 0 .144-.022.086-.081.19-.146.29-2.601 2.538-15.241 2.92-15.241 2.92v-3.152c2.373-.08 7.657-.845 11.372-.983zm12.652 5.176c.6-.014.967.083 1.018.26a.28.28 0 0 1 0 .059c-.03.147-.207.37-.582.636-5.05 3.57-24.025 7.23-24.025 7.23s.235-2.495.349-3.095c.528-.008 18.699-4.979 23.239-5.09zm10.645 3.963c2.236-.021 3.942.307 4.915 1.012h.03v.116c-.096.691-1.517 3.945-6.516 5.35-6.234-.554-32.693 7.224-33.216 7.346-.002-.002-.028.002-.029 0-.002-.01.001-.043 0-.058-.014-.498.35-3.181.35-3.181 9.12-5.424 25.694-10.503 34.465-10.585zm-67.74 15.27h.174c11.445 1.227 15.72 5.487 16.928 7.2-2.282 3.983-20.37-4.947-18.469-6.853.218-.193.665-.333 1.367-.347zm65.588.752c.454-.018.87.075 1.163.26.12.08.238.194.32.318.11.178.184.418.204.694-1.196 1.837-7.38 1.035-7.766.983.311-.11 3.881-2.172 6.079-2.255zm-24.52 12.378c.85-.035 1.554.05 1.95.289.047.03.107.08.145.116.012.012.047.044.058.057.016.02.045.066.058.087.012.022.02.063.03.087.071.216.043.515-.146.868-1.795 3.347-9.656 2.11-9.656 2.11v-2.342h.029c.442.038 4.775-1.16 7.533-1.272zm-46.303 8.82c2.418-.12 4.532 1.457 6.748 2.719 4.936-1.004 15.066.78 15.066.78v4.455a.112.112 0 0 1-.03.029c-.004.002-.023-.002-.029 0-.922.16-12.793-.356-15.444-2.025-2.162 0-8.284-3.212-8.754-4.858-.004-.014-.027-.045-.03-.058-.004-.02.002-.067 0-.087v-.058c.001-.012-.002-.046 0-.058v-.029c.002-.012.026-.046.03-.058.002-.006-.002-.023 0-.029.846-.448 1.67-.684 2.443-.723zm51.918 2.199c1.857-.1 2.644.47 1.192 2.516-4.04 5.69-14.485 3.354-14.485 3.354l-.436-3.528c3.684.143 10.418-2.165 13.728-2.343zm-39.033 11.539c4.223-.196 8.813 1.475 8.813 1.475.108.214 2.27 4.451.349 5.87-.072.052-.15.102-.233.145-2.357 1.227-13.62-.959-14.281-5.466 1.325-1.391 3.289-1.929 5.352-2.024zm-43.541 2.198c3.862-.231 8.177 2.135 8.667 2.371.006.002.026 0 .03 0 0 .133-.146 4.28-.146 4.28s-7.647-2.12-10.064-6.391a7.581 7.581 0 0 1 1.512-.26zm73.558.578c4.308-.027 9.513.98 10.267 2.43.142.296.1.623-.175.954-2.132 2.565-14.252.231-14.252.231v-3.123c1.079-.314 2.564-.482 4.16-.492z'/%3e%3c/svg%3e\"},476:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 3'%3e%3cpath fill='%23008751' d='M0 0h6v3H0z'/%3e%3cpath fill='%23FFF' d='M2 0h2v3H2z'/%3e%3c/svg%3e\"},886:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1000 600'%3e%3cdefs%3e%3clinearGradient id='e' gradientUnits='userSpaceOnUse' x1='498.738' y1='289.055' x2='500.626' y2='283.42'%3e%3cstop stop-color='%23510000' offset='0'/%3e%3cstop stop-color='%238a0000' offset='.3'/%3e%3cstop stop-color='%23a00' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient id='f' gradientUnits='userSpaceOnUse' x1='501.444' y1='291.373' x2='502.927' y2='287.449'%3e%3cstop stop-color='%23ff2a2a' offset='0'/%3e%3cstop stop-color='red' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient id='j' gradientUnits='userSpaceOnUse' x1='484.764' y1='311.709' x2='484.764' y2='317.647'%3e%3cstop stop-color='%23F5F549' offset='0'/%3e%3cstop stop-color='%2397C924' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient id='a'%3e%3cstop stop-color='%23025' offset='0'/%3e%3cstop stop-color='%2304a' offset='.5'/%3e%3cstop stop-color='%23025' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient id='g' xlink:href='%23a' gradientUnits='userSpaceOnUse' x1='444.509' y1='317.486' x2='634.411' y2='317.486'/%3e%3cclipPath id='b'%3e%3cpath d='m500 226.375-63.702 110.332H563.7z'/%3e%3c/clipPath%3e%3c/defs%3e%3cpath fill='%230067C6' d='M0 0h1000v600H0z'/%3e%3cpath fill='%23fff' d='M0 200h1000v200H0z'/%3e%3cpath d='m410 299.329 9.979.667c.033-.486.064-.972.098-1.458l-3.925-.262c.099-1.603.233-3.205.304-4.81 1.388-1.004 2.778-2.006 4.161-3.017l.124-1.848-4.388 3.186c-.148-1.038-.722-2.107-1.765-2.468-.913-.33-2.032-.388-2.823.265-1.003.738-1.184 2.058-1.314 3.207-.175 2.177-.297 4.36-.451 6.538zm1.52-1.362c.12-1.638.194-3.28.35-4.914.124-.808.272-1.742.98-2.257.64-.424 1.584-.108 1.846.614.522 1.247.29 2.622.223 3.93l-.19 2.841c-1.07-.07-2.141-.142-3.21-.214zm-.221-13.961 9.738 2.274 2.213-9.478-1.383-.324-1.883 8.063-2.964-.692 1.696-7.266-1.377-.321-1.696 7.266-2.623-.613 1.812-7.76-1.39-.325-2.143 9.176zm3.508-13.077 9.445 3.285.48-1.38-3.715-1.292c.485-1.429 1.016-2.842 1.462-4.284.32-1.177.567-2.552-.126-3.647-.562-.809-1.562-1.327-2.55-1.296-1.088.046-1.975.847-2.458 1.775-.714 1.342-1.113 2.818-1.634 4.24l-.904 2.599zm1.825-.912c.506-1.417.962-2.852 1.51-4.254.34-.749.755-1.637 1.617-1.875.708-.163 1.451.382 1.513 1.108.173 1.336-.411 2.597-.821 3.837l-.78 2.241-3.039-1.057zm3.392-11.184c1.78 1.033 3.547 2.093 5.338 3.107 1.01.543 2.29.854 3.347.246 1.44-.798 2.343-2.271 3.05-3.708.559-1.21.963-2.713.252-3.95-.765-1.235-2.156-1.803-3.343-2.54l-3.457-2.022-.734 1.254c1.694.998 3.4 1.975 5.086 2.986.807.491 1.475 1.38 1.336 2.369-.16 1.178-.833 2.211-1.503 3.164-.554.77-1.483 1.393-2.47 1.185-1.029-.197-1.865-.87-2.769-1.357l-3.4-1.989-.733 1.255zm7.203-11.771 7.942 6.077c1.232-1.61 2.46-3.223 3.701-4.824.712-1.022 1.368-2.35.886-3.604-.439-.998-1.466-1.77-2.568-1.82-.497-.07-1.145.307-1.414.473.283-1.066-.59-2.068-1.572-2.35-1.182-.42-2.38.338-3.163 1.178-.92 1.001-1.688 2.129-2.53 3.195l-1.282 1.675zm2.014-.298c.93-1.19 1.81-2.421 2.783-3.576.453-.504 1.18-1.075 1.882-.705.64.277.798 1.085.492 1.666-.485 1.04-1.286 1.883-1.954 2.805l-1.09 1.426-2.113-1.616zm3.236 2.476c.965-1.233 1.873-2.513 2.89-3.703.52-.544 1.173-1.229 1.997-1.072.705.162 1.217.926.974 1.636-.397 1.309-1.376 2.311-2.165 3.396l-1.24 1.622-2.456-1.879zm3.754-12.785 6.867 7.269 5.883-5.558-.976-1.033-4.705 4.446-.12.114-.088-.092-5.805-6.144zm8.804-7.703 6.095 7.928 1.19-.915-6.096-7.927zm8.956-6.082c-.988.615-1.784 1.335-2.398 2.176-.611.837-.941 1.71-.989 2.622-.047.912.196 1.794.733 2.657a5.145 5.145 0 0 0 1.976 1.844c.82.439 1.706.601 2.676.493.965-.108 2.055-.535 3.27-1.292 1.165-.726 1.99-1.562 2.5-2.524.488-.924.625-1.904.416-2.948l-1.383.543c.362 1.998-.927 2.958-2.37 3.874-2.259 1.374-4.46 1.275-5.808-.79-1.398-2.327.13-4.25 2.051-5.5 1.364-.85 2.708-1.432 3.988-.618l1.082-.964c-.745-.514-1.592-.752-2.555-.7-1.012.056-2.069.429-3.189 1.127zm11.817-5.897-1.047 11.206 1.557-.628.315-3.474.006-.003 5.058-2.04 2.637 2.284 1.557-.627-8.526-7.346-1.558.628zm1.368 1.149 3.325 2.877-3.723 1.502.398-4.38zm20.55-7.331.624 9.98c1.805-.121 3.612-.206 5.414-.355 1.418-.163 2.939-.531 3.908-1.66 1.251-1.387 1.429-3.461.881-5.188-.46-1.52-1.827-2.671-3.375-2.963-1.525-.293-3.079-.061-4.614.008l-2.838.178zm1.54 1.327c1.436-.075 2.87-.216 4.309-.224a3.675 3.675 0 0 1 2.288.701c1 .684 1.588 1.916 1.457 3.125-.072 1.39-1.094 2.669-2.445 3.02-.772.2-1.576.257-2.367.344l-2.796.175-.447-7.14zM501.664 210l-.57 9.984 9.717.555.08-1.418c-2.755-.158-5.51-.316-8.266-.472.058-1.013.117-2.026.174-3.04l7.449.426.08-1.411c-2.482-.142-4.965-.285-7.449-.426l.154-2.689c2.652.15 5.304.303 7.956.454l.082-1.425-9.407-.538zm26.11 4.166-3.616 9.323 1.286.5 2.867-7.393.149-.384.16.427 3.448 9.918 1.684.653 3.616-9.323-1.29-.5-2.865 7.389-.146.377-.158-.422-3.454-9.913zm13.434 5.771-4.546 8.907-1.336-.682 4.546-8.907zm7.543 4.419c-.971-.64-1.958-1.065-2.978-1.271-1.015-.207-1.947-.142-2.795.195-.849.337-1.55.926-2.11 1.775a5.145 5.145 0 0 0-.851 2.565c-.056.928.165 1.8.669 2.637.5.832 1.344 1.645 2.537 2.432 1.147.757 2.251 1.158 3.338 1.22 1.043.058 1.991-.226 2.852-.852l-1.07-1.03c-1.665 1.163-3.075.392-4.51-.538-2.19-1.48-3.019-3.521-1.705-5.608 1.532-2.242 3.917-1.655 5.854-.43 1.343.885 2.432 1.863 2.226 3.366l1.328.581c.156-.892.02-1.76-.431-2.614-.473-.896-1.252-1.701-2.354-2.428zm9.521 7.182-10.454 4.17 1.269 1.1 3.236-1.301.005.005 4.119 3.575-.833 3.387 1.268 1.101 2.658-10.936-1.268-1.1zm-.4 1.741-1.048 4.27-3.032-2.631 4.08-1.639zm7.953 5.207-7.716 6.363.929 1.127 3.035-2.503c1.028 1.234 2.029 2.492 3.08 3.707-.322 1.683-.644 3.366-.957 5.05l1.178 1.43 1.006-5.33c.864.708 2.127 1.064 3.16.503.888-.42 1.67-1.228 1.716-2.257.108-1.379-.875-2.496-1.662-3.519-1.256-1.524-2.514-3.047-3.769-4.571zm-.17 2.034c1.08 1.334 2.214 2.626 3.246 3.998.475.708 1.068 1.702.523 2.528-.45.707-1.435.645-2.04.187-1.224-.824-2.033-2.087-2.989-3.184l-1.223-1.483 2.483-2.046zm11.868 13.881-11.243.515.838 1.456 3.484-.17.003.006 2.72 4.727-1.896 2.928.837 1.455 6.094-9.462-.837-1.455zm-.948 1.514-2.39 3.691-2.002-3.48 4.392-.21zm7.364 11.723c-.625-1.697-1.611-3.434-3.28-4.282-1.856-.933-4.328-.48-5.644 1.155-1.147 1.36-1.206 3.281-.9 4.952.362 1.918 1.242 3.744 2.563 5.186l-.747.268.479 1.331 4.684-1.683-1.822-5.059-1.082.39 1.34 3.728-1.587.57c-1.4-1.203-2.18-2.98-2.586-4.748-.301-1.327-.313-2.917.693-3.96 1.155-1.202 3.202-1.575 4.587-.55 1.367 1 2.139 2.621 2.529 4.233.266 1.06.223 2.32-.581 3.147-.225.168.131.403.192.605l.382.632a3.529 3.529 0 0 0 1.344-2.797c.028-1.064-.206-2.12-.564-3.118zm2.872 7.809-5.593 1.088c-1.037.202-1.815.53-2.334.968-.518.437-.85 1.052-1.009 1.871-.158.81-.136 1.803.097 3.01a.246.246 0 0 1 .005.029c.237 1.207.588 2.135 1.039 2.827.455.7.993 1.146 1.636 1.356.645.211 1.49.225 2.528.023l5.592-1.088-.277-1.427-5.458 1.062c-2.45.476-3.275-.813-3.696-3.019l-.005-.028c-.437-2.202-.155-3.707 2.295-4.184l5.458-1.061-.278-1.427zm3.068 17.02-10.348-4.425.121 1.675 3.212 1.362v.007l.394 5.44-2.981 1.811.121 1.675 9.602-5.87-.121-1.675zm-1.512.951-3.757 2.285-.29-4.004 4.047 1.72zm-170.615 24.917-1.451.382 1.604 6.092 1.45-.381zm164.531 0 1.45.382-1.603 6.092-1.45-.382zm-149.066 25.654-11.18 1.286.935 1.395 3.464-.409.004.006 3.039 4.53-1.692 3.05.936 1.395 5.43-9.858-.936-1.395zm-.842 1.576-2.13 3.846-2.237-3.333 4.367-.513zm5.122 4.533-7.127 6.665.952 1.018 6.006-5.617-3.151 8.67 1.091 1.167 8.612-2.614-5.898 5.516.951 1.017 7.127-6.664-1.445-1.546-8.751 2.614 3.276-8.469zm10.381 10.591-6.016 7.988 7.776 5.855.854-1.135-6.614-4.98 1.831-2.432 5.96 4.488.851-1.129-5.96-4.488 1.62-2.152 6.366 4.794.86-1.14-7.528-5.669zm9.784 7.161-4.71 8.823c.43.23.86.458 1.288.688l1.853-3.47c1.42.749 2.825 1.53 4.26 2.254.344 1.678.687 3.357 1.039 5.034l1.634.872-1.1-5.31c1.069.325 2.372.172 3.113-.74.63-.705 1.058-1.693.756-2.64-.351-1.303-1.634-1.985-2.717-2.617-1.803-.969-3.612-1.928-5.416-2.894zm.617 1.945c1.507.822 3.048 1.585 4.525 2.46.684.463 1.553 1.095 1.467 2.027-.076.818-.958 1.254-1.703 1.08-1.46-.241-2.69-1.111-3.99-1.76l-1.814-.969 1.515-2.838zm10.678 3.961-3.779 9.259 1.39.566 3.778-9.258zm9.018 3.115c-1.105-.367-2.167-.52-3.206-.455-1.034.065-1.917.369-2.649.915s-1.256 1.297-1.576 2.261a5.145 5.145 0 0 0-.156 2.699c.187.91.627 1.696 1.33 2.373.7.673 1.725 1.24 3.082 1.69 1.304.432 2.475.534 3.54.31 1.022-.214 1.864-.734 2.534-1.562l-1.301-.718c-1.306 1.556-2.868 1.178-4.495.652-2.5-.86-3.83-2.616-3.103-4.973.897-2.562 3.353-2.615 5.542-1.935 1.526.506 2.832 1.168 3.023 2.673l1.433.216c-.08-.902-.438-1.705-1.094-2.412-.69-.743-1.651-1.318-2.904-1.734zm10.054 2.251-6.54 9.16 1.662.24 2.019-2.845h.007l5.398.782 1.13 3.3 1.662.24-3.676-10.637-1.662-.24zm.605 1.68 1.426 4.16-3.973-.575 2.547-3.584zm22.836-1.609c-1.143.22-2.144.607-3.018 1.172-.87.563-1.492 1.26-1.863 2.094-.37.834-.46 1.746-.267 2.744a5.145 5.145 0 0 0 1.184 2.43c.609.703 1.377 1.172 2.322 1.418.94.245 2.11.236 3.515-.035 1.348-.26 2.418-.745 3.238-1.461.787-.688 1.267-1.554 1.445-2.603l-1.485.01c-.378 1.997-1.925 2.431-3.601 2.77-2.601.473-4.62-.408-5.14-2.819-.472-2.674 1.644-3.922 3.886-4.4 1.578-.305 3.041-.367 3.944.852l1.356-.513c-.512-.747-1.217-1.273-2.135-1.568-.965-.31-2.085-.341-3.381-.091zm6.678-1.183 2.844 9.587 9.331-2.769-.404-1.362-7.937 2.355-.866-2.918 7.153-2.122-.402-1.355-7.153 2.122-.766-2.582 7.64-2.267-.407-1.37-9.033 2.681zm10.818-3.4 4.198 9.076 1.252-.58-3.501-7.569c3.237 1.468 6.455 2.98 9.684 4.464.215.187.43.062.646-.053l1.259-.582-4.198-9.076-1.255.58 3.497 7.56c-3.324-1.507-6.63-3.054-9.946-4.577l-1.636.757zm10.981-5.158.783 1.19 3.572-2.35.136-.09.067.103 4.647 7.06 1.214-.799-4.647-7.06-.067-.103.138-.09 3.59-2.363-.784-1.19zm10.062-6.89 6.777 7.355 1.075-.99-2.666-2.892c1.176-1.095 2.376-2.163 3.532-3.279 1.698.228 3.396.457 5.095.678l1.362-1.255-5.376-.712c.66-.902.945-2.183.328-3.183-.468-.863-1.318-1.6-2.348-1.59-1.382-.031-2.444 1.012-3.422 1.854-1.452 1.337-2.905 2.678-4.357 4.014zm2.04.058c1.273-1.151 2.5-2.355 3.814-3.46.68-.514 1.64-1.16 2.496-.662.73.41.723 1.398.298 2.026-.756 1.27-1.975 2.147-3.018 3.163l-1.41 1.3-2.18-2.367zm9.594-11.702 4.473 10.327 1.064-1.3-1.396-3.197.004-.005 3.453-4.221 3.41.734 1.064-1.3-11.01-2.337-1.062 1.3zm1.752.349 4.3.923-2.543 3.107-1.757-4.03zm2.603-6.014 8.39 5.44 4.403-6.79-1.192-.772-3.522 5.431-.09.14-.106-.07-7.092-4.598z' fill='%23c8a400'/%3e%3cg clip-path='url(%23b)'%3e%3cpath fill='%23fff' d='m500.001 226.408-31.479 54.535-15.42 26.702H546.9l-14.714-25.484-32.184-55.753z'/%3e%3cg id='d'%3e%3cg id='c'%3e%3cpath fill='%2317c0eb' stroke='%2317c0eb' stroke-width='.129' opacity='.62' d='m500.001 226.408-2.357 4.082 2.357 54.977 2.357-54.977z'/%3e%3cpath fill='%23fff' d='m500.001 277.475-.134.003.134 3.111.134-3.111-.134-.003z'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='rotate(72 500.001 285.467)'/%3e%3cuse xlink:href='%23c' transform='rotate(144 500.001 285.467)'/%3e%3cuse xlink:href='%23c' transform='rotate(216 500.001 285.467)'/%3e%3cuse xlink:href='%23c' transform='rotate(288 500.001 285.467)'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='rotate(8 500.001 285.467)'/%3e%3cuse xlink:href='%23d' transform='rotate(16 500.001 285.467)'/%3e%3cuse xlink:href='%23d' transform='rotate(24 500.001 285.467)'/%3e%3cuse xlink:href='%23d' transform='rotate(32 500.001 285.467)'/%3e%3cuse xlink:href='%23d' transform='rotate(40 500.001 285.467)'/%3e%3cuse xlink:href='%23d' transform='rotate(48 500.001 285.467)'/%3e%3cuse xlink:href='%23d' transform='rotate(56 500.001 285.467)'/%3e%3cuse xlink:href='%23d' transform='rotate(64 500.001 285.467)'/%3e%3cpath fill='red' d='M500 265.844a44.236 44.236 0 0 0-28.969 10.75L456.375 302a44.728 44.728 0 0 0-.75 8.25h5.031c0-21.726 17.618-39.344 39.344-39.344 21.727 0 39.344 17.618 39.344 39.344h5.031c0-2.813-.25-5.582-.75-8.25l-14.656-25.406A44.249 44.249 0 0 0 500 265.844z'/%3e%3cpath fill='%23f60' d='M500 266.656c-11.764 0-22.44 4.675-30.281 12.25l-12.031 20.844a43.596 43.596 0 0 0-1.281 10.5h4.25c0-21.726 17.617-39.344 39.343-39.344 21.727 0 39.344 17.618 39.344 39.344h4.25c0-3.625-.447-7.164-1.281-10.531l-12.031-20.813c-7.841-7.574-18.518-12.25-30.282-12.25z'/%3e%3cpath fill='%23ff0' d='M500 267.469c-12.702 0-24.1 5.522-31.938 14.313l-8.718 15.093a42.733 42.733 0 0 0-2.125 13.375h3.437c0-21.726 17.618-39.344 39.344-39.344 21.726 0 39.344 17.618 39.344 39.344h3.437c0-4.673-.74-9.165-2.125-13.375l-8.719-15.095c-7.836-8.788-19.237-14.312-31.938-14.312z'/%3e%3cpath fill='%230f0' d='M500 268.25c-14.55 0-27.372 7.414-34.906 18.656l-2.813 4.875a41.818 41.818 0 0 0-4.282 18.47h2.657c0-21.727 17.617-39.345 39.343-39.345 21.727 0 39.344 17.618 39.344 39.344H542a41.824 41.824 0 0 0-4.28-18.437l-2.845-4.937c-7.536-11.227-20.337-18.625-34.875-18.625z'/%3e%3cpath fill='%230cf' d='M500 269.062c-22.747 0-41.188 18.44-41.188 41.188h1.844c0-21.727 17.618-39.344 39.344-39.344 21.726 0 39.344 17.617 39.344 39.344h1.844c0-22.748-18.44-41.188-41.188-41.188z'/%3e%3cpath fill='%2300f' d='M500 269.844c-22.306 0-40.375 18.1-40.375 40.406h1.344c0-21.56 17.472-39.031 39.031-39.031s39.031 17.472 39.031 39.031h1.375c0-22.306-18.1-40.406-40.406-40.406z'/%3e%3cpath fill='purple' d='M500.001 270.657c-21.864 0-39.589 17.725-39.589 39.589 0 .245.003.49.007.733h.801a35.827 35.827 0 0 1-.007-.733c0-21.422 17.366-38.788 38.788-38.788 21.422 0 38.788 17.366 38.788 38.788 0 .245-.002.49-.007.733h.797c.004-.243.007-.488.007-.733 0-21.864-17.721-39.589-39.585-39.589z'/%3e%3cpath fill='%23510000' d='M500.395 288.134c-.644-.124-1.226-.484-1.775-.61-.756.725-.835 1.457-.731 2.08.262.14.31.353.878.86s.496.773.462 1.965c-.015.503.07 1.581.579 1.682.548.11.932-.346 1.09-1.16.152-.79.417-1.216.698-1.702.306-1.852-.193-2.508-1.201-3.115z'/%3e%3cpath fill='red' d='M497.168 283.524c-.595.015-1.528 1.012-1.943.475-.239-.308-.279-.902-.037-1.4.559-1.151 1.124-1.716 2.167-2.33 2.378-1.401 3.89-.95 5.074 1.063 1.098 1.772 2.152 3.73 2.246 5.371.03.501.283 1.408-.156 1.86-1.348 1.39-4.596-1.435-6.497-.988-.64.15-1.377.617-1.98.218-.47-.31-.078-.997.272-1.294.612-.52 1.501-2.365 1.38-3.165-.067-.446-.08.179-.526.19z'/%3e%3cpath fill='url(%23e)' d='M496.927 282.548c-1.083.445-.966 1.076-1.51 1.59.154.058.766.31 1.364-.301.258-.214.548-.293.677-.362-.305.221-.523.554-.684.684-.404.329-1.034 1.083-1.34 1.846-.307.764-.43 1.673-.376 1.782.056.11.426.78 1.566 1.232 2.03.807 2.417 2.439 4.477 2.439 1.614 0 1.355-1.056 2.646-.832 1.12.194 1.714-.696.636-1.232-1.371-.468-4.092-.192-5.372.033-.414-4.083-.056-2.65-.152-4.405-.097-1.755-.623-1.86.072-3.281-.578.872-1.277.734-2.004.807z'/%3e%3cpath fill='%23ff2a2a' d='M500.938 279.795c-.04.223-.077.516-.056.6.087.339.175.693.278.994.115.336.162.58.24.928.082.36.401.5.694.722.37.28.084 1.037.315 1.069.184.025.488-1.072.49-1.247a3.8 3.8 0 0 0-.037-.647 15.3 15.3 0 0 0-.426-.872c-.002-.004-.007-.006-.009-.01a3.652 3.652 0 0 0-.194-.327 4.204 4.204 0 0 0-.786-.863l-.056-.047c-.084-.064-.17-.13-.259-.187-.062-.04-.129-.076-.194-.113z'/%3e%3cpath fill='url(%23f)' d='M501.249 287.398c-.718-.188-1.426-.543-2.037-.725-1.2-.359-2.48-1.134-3.366-.814-.317.14-.289.456-.39.91-.042.533-.596 1.32-.136 1.062.685-.383 2.49.733 3.095 1.106.287.177.892.524 1.082 1.022.19.498.092 1.756.041 2.296-.053.566.119 1.835.686 1.987.611.163 1.078-.323 1.316-1.23.23-.881.405-1.387.757-1.915s.756-.756 1.32-.863c.564-.106 1.382.462 1.382-.203 0-.437-.384-.855-.22-1.454.128-.472-.402-.378-.842-.572-1.036-.319-1.97-.42-2.688-.607z'/%3e%3cpath fill='%23910000' d='M498.363 288.902c-.327-.178-2.315-1.478-3.043-1.071-.23.128-.317-.016-.32-.257-.004-.241.109-.594.184-.866.074-.273.195-.792.516-1.062.687-.58 2.269.575 3.108.886-.072.436-.47 2.356-.445 2.37z'/%3e%3cpath fill='%23ff3a3a' d='M501.763 291.361c.916-1.603 1.508-1.397 2.613-1.374.369.008.477-.329.393-.667-.278.624-1.662-.07-2.415.263-1.573.692-1.28 3.77-2.027 4.07.776.651 1.124-1.746 1.436-2.292z'/%3e%3cg fill='url(%23g)'%3e%3cpath fill='%23fff' d='m453.103 307.645-9.955 17.237h113.708l-9.956-17.237h-93.797z'/%3e%3cg id='i'%3e%3cpath id='h' d='M449.705 321.364c-1.658 0-3.197.167-4.71.353l-.486.846c2.433-.216 4.697-.649 7.14-.709 3.293.08 6.283.83 9.786.83 1.518.014 3.027-.03 4.526 0 3.5 0 6.489-.75 9.783-.83 3.295.08 6.304.83 9.803.83 1.518.004 3.178-.024 4.53 0 3.5 0 6.474-.75 9.765-.83 3.293.08 6.27.83 9.769.83 1.53.014 3.033-.03 4.543 0 3.5 0 6.49-.75 9.787-.83 3.296.08 6.28.83 9.782.83 1.516.014 3.031-.03 4.53 0 3.499 0 6.475-.75 9.765-.83 2.55.062 4.92.518 7.486.724l-.515-.893c-1.403-.168-2.835-.321-4.368-.321-1.529-.02-3.036.03-4.547 0-3.5 0-6.474.748-9.765.829-3.296-.08-6.283-.829-9.786-.829-1.513-.02-3.03.031-4.526 0-3.5 0-6.493.749-9.786.829-3.294-.08-6.284-.829-9.783-.829-1.522-.02-3.042.03-4.547 0-3.5 0-6.476.749-9.765.829-3.294-.08-6.27-.829-9.769-.829-1.522-.021-3.026.031-4.526 0-3.502 0-6.49.749-9.786.829-3.294-.08-6.283-.829-9.783-.829-1.52-.02-3.043.031-4.547 0z'/%3e%3cuse xlink:href='%23h' y='-1.113'/%3e%3cuse xlink:href='%23h' y='-2.23'/%3e%3c/g%3e%3cuse xlink:href='%23i' y='-3.344'/%3e%3cuse xlink:href='%23i' y='-6.691'/%3e%3cpath d='m453.23 307.458-.123.215h93.79l-.124-.215H453.23zm-.219.377-.127.22h94.235l-.127-.22h-93.98zm-.2.346-.205.356h94.792l-.205-.356H452.81zm-.318.55-.25.434h95.518l-.25-.433h-95.018zm-.399.692-.25.434h96.316l-.25-.434h-95.816zm-.399.691-.247.43h97.107l-.247-.43h-96.613zm-.398.692-.25.43h97.91l-.25-.43h-97.41zm-.43.744-.304.53h98.877l-.303-.53h-98.27zm6.49.737c3.45.662 3.782 0 3.782 0zm81.503 0s.331.662 3.782 0z'/%3e%3c/g%3e%3cg fill='%23ccd11e'%3e%3cg id='k'%3e%3cpath fill='url(%23j)' d='M530.631 297.043c-1.709 0-2.232.862-2.232.862-2.736 10.576-11.807 21.333-22.6 21.333h-8.08v10.768c0 .003.01 0 .016 0h61.498l-6.187-10.954c-9.707-1.449-17.64-11.373-20.166-21.147 0 0-.54-.862-2.25-.862z'/%3e%3cpath fill='%2397c924' d='M530.631 297.465c-.784 0-1.26.18-1.538.355-.264.165-.315.276-.321.288 0 .007-.015.01-.018.016-1.4 5.323-4.352 10.669-8.334 14.707-4.012 4.07-9.07 6.83-14.605 6.83h-7.674v9.922h60.855l-5.68-10.058c-4.687-.612-8.973-3.163-12.458-6.694-3.986-4.038-6.932-9.384-8.334-14.707l-.017-.016c-.007-.012-.07-.105-.338-.271-.283-.176-.754-.372-1.538-.372z'/%3e%3cpath fill='%23ede71f' d='M530.63 297.465c.147 0 .28.021.406.034.024 3.017 0 8.11 0 10.801-.029 2.34-.83 4.223-2.012 6.441-.547 1.554-.986.963-2.35 2.857-1.83.654-3.186.909-5.138 1.216-2.517.398-8.121.75-10.887.136 3.641-1.068 6.961-3.27 9.771-6.12a30.57 30.57 0 0 0 2.13-2.4 33.663 33.663 0 0 0 3.01-4.48c.352-.626.686-1.248.997-1.893.467-.966.883-1.95 1.25-2.94.124-.331.245-.667.356-.998.222-.664.417-1.33.592-1.995.002-.006.015-.01.016-.017.006-.012.058-.122.321-.287.136-.085.332-.17.575-.237h.017c.252-.067.554-.118.946-.118z'/%3e%3cpath fill='%23c6cb24' d='M529.938 298.902c-.412 6.034-2.277 13.192-6.644 17.81-1.607 1.337-3.66 2.55-5.646 2.255 6.77-5.51 10.885-13.947 12.29-20.065z'/%3e%3cpath fill='%239ecb34' d='M524.494 309.281c-1.002 2.721-4.788 6.746-8.84 10.045-1.15.035-1.76.101-2.804.038 2.468-.225 8.221-5.083 11.644-10.083z'/%3e%3c/g%3e%3cuse xlink:href='%23k' x='-15.341'/%3e%3cg fill='%23c6cb24'%3e%3cpath fill='url(%23j)' d='M502.218 297.911c2.735 10.575 11.79 21.333 22.583 21.333h8.089v10.768c0 .003-.015 0-.017 0h-65.795c-.006 0-.017.003-.017 0v-10.768h8.072c10.792 0 19.863-10.758 22.6-21.333 0 0 .534-.866 2.243-.866s2.243.866 2.243.866z'/%3e%3cpath fill='%2397c924' d='M499.975 297.465c.784 0 1.255.196 1.538.372.269.166.332.259.339.27l.017.017c1.401 5.323 4.348 10.669 8.333 14.707 4.017 4.07 9.087 6.83 14.623 6.83h7.64v9.922h-64.98v-9.923h7.675c5.535 0 10.593-2.76 14.605-6.83 3.982-4.037 6.934-9.383 8.334-14.706.003-.007.015-.01.017-.016.006-.012.057-.123.32-.288.28-.174.755-.355 1.539-.355z'/%3e%3cpath fill='%23ede71f' d='M499.263 297.53a3.4 3.4 0 0 0-.242.055h-.018a2.184 2.184 0 0 0-.572.236c-.264.165-.314.274-.32.286-.003.006-.017.01-.018.017-.175.666-.37 1.333-.593 1.997a29.6 29.6 0 0 1-.356.995 34.21 34.21 0 0 1-1.249 2.942 34.21 34.21 0 0 1-.998 1.894 33.634 33.634 0 0 1-3.01 4.477 30.73 30.73 0 0 1-2.13 2.403c-2.81 2.85-6.128 5.05-9.769 6.117 2.765.615 4.032-.056 6.549-.454 1.952-.308 4.21-.563 6.043-1.217 1.364-1.894.899-1.3 1.446-2.854 1.181-2.218 2.906-4.222 3.334-6.681 1.619-3.022 1.903-8.614 1.903-10.213z'/%3e%3cpath d='M499.275 298.902c-.412 6.034-2.277 13.192-6.644 17.81-1.606 1.337-3.66 2.55-5.646 2.255 6.77-5.51 10.885-13.947 12.29-20.065z'/%3e%3cpath fill='%239ecb34' d='M493.832 309.281c-1.002 2.721-4.788 6.747-8.84 10.045-1.15.035-1.76.101-2.804.038 2.467-.225 8.222-5.083 11.644-10.083z'/%3e%3cpath fill='%23ede71f' d='M500.951 297.584h.018c.242.067.435.151.571.236.264.165.315.274.321.286.002.006.016.011.018.018.175.665.37 1.333.592 1.996.111.332.234.665.357.995.368.99.782 1.976 1.249 2.942.311.645.645 1.268.998 1.895a33.634 33.634 0 0 0 3.01 4.477 30.73 30.73 0 0 0 2.13 2.402c2.81 2.85 6.128 5.445 9.768 6.512-7.245.028-10.389-.63-13.022-4.016-2.633-3.387-3.606-4.868-4.14-6.937-.535-2.068-2.026-6.57-1.87-10.806z'/%3e%3cpath d='M501.476 298.902c.412 6.034 2.22 12.006 6.587 16.625 1.607 1.337 3.66 2.55 5.646 2.255-7.335-5.002-10.829-12.762-12.233-18.88z'/%3e%3c/g%3e%3cg id='l'%3e%3cpath fill='url(%23j)' d='M484.749 297.043c-1.71 0-2.248.862-2.248.862-2.523 9.747-11.825 22.318-21.497 23.811l-4.79 8.29h49.015v-11.348c-8.825-2.371-15.89-11.63-18.248-20.753 0 0-.523-.862-2.232-.862z'/%3e%3cpath fill='%2397c924' d='M484.749 297.465c-.784 0-1.255.196-1.538.372-.269.166-.332.259-.338.27l-.017.017c-1.402 5.323-4.678 10.705-8.08 14.99-3.402 4.283-9.72 8.617-14.042 9.076l-4.282 7.393h48.06V318.89c-3.554-1.091-6.8-3.267-9.552-6.06-3.982-4.037-6.934-9.383-8.334-14.706-.002-.007-.015-.01-.017-.016-.006-.012-.058-.123-.321-.288-.28-.174-.755-.355-1.539-.355z'/%3e%3cpath fill='%2393bc30' d='M483.445 298.903c-.617 9.043-5.653 20.454-11.34 22.42-1.855.64-5.099.864-6.227 1.008 9.948-4.731 15.828-15.853 17.567-23.428z'/%3e%3cpath fill='%23ede71f' d='M484.746 297.465c-.147 0-.28.021-.406.034-.023 3.017 0 8.11 0 10.801.03 2.34.831 4.223 2.012 6.441.069.194.136.354.203.49.41 1.086.713 1.463 2.282 2.654 4.987 3.787 11.17 4.353 14.808 4.04-1.14-.898-2.358-1.715-3.431-2.467 1.711-.056 3.35-.25 4.513-.508-3.64-1.067-6.96-3.27-9.77-6.12a30.523 30.523 0 0 1-1.403-1.554 34.487 34.487 0 0 0-.592-.812c-1.118-1.4-2.263-2.947-3.145-4.513a34.164 34.164 0 0 1-.997-1.894 34.023 34.023 0 0 1-1.606-3.938 31.676 31.676 0 0 1-.592-1.995c-.002-.006-.015-.01-.017-.017-.006-.012-.057-.122-.321-.287a2.207 2.207 0 0 0-.575-.237h-.017a3.614 3.614 0 0 0-.946-.118z'/%3e%3cpath d='M485.446 298.902c.412 6.034 2.277 13.192 6.644 17.81 1.606 1.337 3.66 2.55 5.646 2.255-6.77-5.51-10.886-13.947-12.29-20.065z'/%3e%3cpath fill='%239ecb34' d='M489.613 307.247c2.369 5.837 8.37 11.29 14.543 14.954 1.15.035 1.492.003 2.537-.06-4.419-2.371-11.539-5.754-17.08-14.894z'/%3e%3c/g%3e%3cuse xlink:href='%23l' x='-15.43' fill='%23c6cb24'/%3e%3c/g%3e%3cpath fill='%23fff' d='M556.5 324.692c-.574.203-4.421-.19-6.433-.044l-1.28.336c-1.123-.008-2.238.024-3.33 0-3.602 0-6.649.948-10.075.948-3.433 0-6.47-.948-10.075-.948-1.12-.008-2.234.025-3.33 0-3.602 0-6.647.948-10.076.948-3.43 0-6.473-.948-10.075-.948-1.131-.007-2.242.023-3.348 0-3.602 0-6.632.948-10.058.948-3.429 0-6.456-.948-10.058-.948-.267 0-.516.009-.776.017-.178-.004-.377-.017-.557-.017-.12 0-.222-.003-.34 0-.116-.003-.236 0-.355 0-.181 0-.345.013-.523.017-.26-.008-.511-.017-.78-.017-3.605 0-6.642.949-10.075.948-3.429 0-6.473-.948-10.075-.948-.262 0-.522.01-.776.017-.18-.004-.339-.017-.522-.017-.124 0-.252-.003-.374 0-.117-.003-.237 0-.356 0-.181 0-.362.013-.54.017-.26-.008-.509-.017-.776-.017-2.88 0-6.218.607-8.936.85l-6.273 10.858 62.972-.007 64.375.007z'/%3e%3cpath fill='url(%23a)' d='M547.993 323.111c-.2 0-.398 0-.596.007-3.24.095-5.564 1.115-11.2 1.115-5.638 0-6.219-1.019-12.584-.879-5.947.131-8.443 1.262-11.67 1.217-3.228-.044-8.473-.697-12.51-.275-4.037.423-8.828 1.284-11.973 1.291-3.909-.017-7.82-.73-11.906-.324-4.087.406-5.997 1.5-11.063 1.485-4.356-.013-9.083-.698-12.746-.695-3.435.003-7.267.957-10.086 1.443l-.843 1.464c2.247-.26 8.551-1.218 10.802-1.277 2.344-.061 10.717.483 15.335.325 4.618-.159 5.158-1.172 10.618-1.172 3.801 0 6.666.399 10.566.399 2.434 0 4.643-1.242 8.343-1.242.936-.027 1.865-.06 2.794-.091 3.119-.515 8.384.045 12.048.232 3.315.173 5.457-.615 8.914-.73 1.496-.068 2.998-.066 4.474-.148 3.46-.115 6.422.64 9.68.624 3.25-.2 6.403-.922 9.86-1.037 1.511-.071 2.998-.072 4.49-.148 2.287-.076 5.837.078 8.273.501l-.84-1.45c-2.379-.076-5.311-.635-8.18-.635z'/%3e%3cg id='n'%3e%3cpath id='m' fill='url(%23a)' d='M450.312 334.748c-3.457 0-6.402.853-9.652.945-1.21-.033-2.367-.183-3.535-.345l-.49.85c.486.032.975.063 1.488.063 1.502.018 2.99-.036 4.474 0 3.457 0 6.382-.852 9.634-.945 3.254.092 6.206.945 9.666.945 1.501.019 2.993-.036 4.474 0 3.457 0 6.412-.853 9.666-.945 3.256.092 6.23.945 9.687.945 1.495.018 2.993-.036 4.47 0 3.457 0 6.401-.853 9.652-.945 3.253.092 6.191.945 9.649.945 1.512.019 2.999-.036 4.49 0 3.458 0 6.41-.853 9.667-.945 3.257.092 6.21.945 9.67.945 1.495.018 2.991-.036 4.47 0 3.456 0 6.4-.853 9.651-.945 3.253.092 6.21.945 9.666.945 1.5.018 2.996-.036 4.474 0 .605 0 1.196-.034 1.778-.077l-.463-.797c-1.064.144-2.133.276-3.235.306-3.254-.092-6.195-.945-9.652-.945-1.51-.02-2.997.03-4.49 0-3.458 0-6.397.853-9.649.945-3.257-.091-6.206-.945-9.666-.945-1.496-.02-2.993.03-4.473 0-3.458 0-6.413.853-9.667.945-3.254-.092-6.209-.945-9.666-.945-1.503-.02-3.003.03-4.49 0-3.458 0-6.4.853-9.65.945-3.253-.092-6.194-.945-9.651-.945-1.506-.02-2.99.03-4.474 0-3.46 0-6.409.854-9.666.945-3.254-.092-6.208-.945-9.666-.945-1.502-.02-3.006.03-4.49 0z'/%3e%3cuse xlink:href='%23m' y='-1.289'/%3e%3cuse xlink:href='%23m' y='-2.575'/%3e%3c/g%3e%3cuse xlink:href='%23n' y='-3.867'/%3e%3cuse xlink:href='%23n' y='-7.729'/%3e%3cpath fill='%2397c924' d='m443.846 324.705-2.427 4.191c2.839-.47 7.102-1.703 10.634-1.706 3.663-.003 8.082.903 12.438.916 5.066.014 6.976-1.079 11.063-1.485 4.086-.407 7.998.527 11.906.545 3.145-.007 7.936-1.09 11.973-1.512 4.037-.422 7.737.293 12.603.369 4.866.075 5.63-1.18 11.576-1.31 6.366-.141 6.947.877 12.584.877 4.242.229 7.883-.854 11.666-1.121 3.784-.268 5.539.043 8.305.109l-1.838-3.253c-.03 0-.06.003-.092.004l-101.246 2.226z'/%3e%3cpath fill='%23fff' d='M550.067 324.648s2.71.148 3.847.276a91.39 91.39 0 0 0 2.955.253l-.37-.485c-.573.203-4.42-.19-6.432-.044z'/%3e%3c/g%3e%3cpath fill='%23c8a400' d='m500 224.874-32.142 55.686L435 337.459l64.298-.007 65.702.007-32.153-55.683L500 224.874zm0 3.002 31.55 54.652 30.85 53.428-63.102-.004-61.701.004 31.56-54.645z'/%3e%3c/svg%3e\"},6829:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 6'%3e%3cpath fill='%2321468B' d='M0 0h9v6H0z'/%3e%3cpath fill='%23FFF' d='M0 0h9v4H0z'/%3e%3cpath fill='%23AE1C28' d='M0 0h9v2H0z'/%3e%3c/svg%3e\"},2888:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1100 800'%3e%3cpath fill='%23ef2b2d' d='M0 0h1100v800H0z'/%3e%3cpath fill='%23fff' d='M300 0h200v800H300z'/%3e%3cpath fill='%23fff' d='M0 300h1100v200H0z'/%3e%3cpath fill='%23002868' d='M350 0h100v800H350z'/%3e%3cpath fill='%23002868' d='M0 350h1100v100H0z'/%3e%3c/svg%3e\"},8556:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' viewBox='-17.582 -4.664 71.571 87.246'%3e%3cuse xlink:href='%23a' stroke='%23003893' stroke-width='5.165'/%3e%3cpath id='a' d='M-15 37.574h60L-15 0v80h60l-60-60z' fill='%23DC143C'/%3e%3cg fill='%23fff'%3e%3cpath d='M-11.95 23.483a12.84 12.84 0 0 0 23.9 0 11.95 11.95 0 0 1-23.9 0'/%3e%3cg transform='translate(0 29.045) scale(5.56106)'%3e%3ccircle r='1'/%3e%3cg id='d'%3e%3cg id='c'%3e%3cpath id='b' d='M.195-.98 0-1.39l-.195.408' transform='rotate(11.25)'/%3e%3cuse xlink:href='%23b' transform='rotate(22.5)'/%3e%3cuse xlink:href='%23b' transform='rotate(45)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='rotate(67.5)'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='scale(-1 1)'/%3e%3c/g%3e%3cg transform='translate(0 58.787) scale(8.1434)'%3e%3ccircle r='1'/%3e%3cg id='g'%3e%3cg id='f'%3e%3cpath id='e' d='M.259.966 0 1.576l-.259-.61'/%3e%3cuse xlink:href='%23e' transform='rotate(180)'/%3e%3c/g%3e%3cuse xlink:href='%23f' transform='rotate(90)'/%3e%3c/g%3e%3cuse xlink:href='%23g' transform='rotate(30)'/%3e%3cuse xlink:href='%23g' transform='rotate(60)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e\"},5649:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300'%3e%3cpath fill='%23002b7f' d='M0 0h600v300H0z'/%3e%3cpath fill='%23ffc61e' d='M0 137.5h600v25H0z'/%3e%3cpath fill='%23fff' d='m150 262.5-6.47-25.852L125 255.801l7.322-25.623L106.7 237.5l19.153-18.53L100 212.5l25.852-6.47-19.153-18.53 25.623 7.322L125 169.2l18.53 19.153L150 162.5l6.47 25.852L175 169.199l-7.322 25.623L193.3 187.5l-19.153 18.53L200 212.5l-25.852 6.47 19.153 18.53-25.623-7.322L175 255.8l-18.53-19.153L150 262.5z'/%3e%3c/svg%3e\"},7923:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 120 60'%3e%3cclipPath id='a'%3e%3cpath d='M0 0v15h70v15H60zm0 30v10h30V0h30z'/%3e%3c/clipPath%3e%3cpath fill='%23012169' d='M0 0h120v60H0z'/%3e%3cg stroke='%23c8102e' stroke-width='6'%3e%3cpath d='m0 0 60 30m0-30L0 30' stroke='%23fff'/%3e%3cpath d='m0 0 60 30m0-30L0 30' clip-path='url(%23a)' stroke-width='4'/%3e%3cpath d='M30 0v40M0 15h70' stroke='%23fff' stroke-width='10'/%3e%3cpath d='M30 0v40M0 15h70'/%3e%3c/g%3e%3cpath d='M60 0h60v60H0V30h60z' fill='%23fedd00'/%3e%3cg transform='translate(30 15)'%3e%3cg transform='scale(5.1039)'%3e%3ccircle r='1' fill='%23012169'/%3e%3cpath id='b' d='m0-513674 301930 929245-790463-574305h977066l-790463 574305' fill='%23fedd00' transform='scale(0)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='matrix(3 0 0 3 -17.5 .29)'/%3e%3cuse xlink:href='%23b' transform='matrix(3 0 0 3 17.5 .29)'/%3e%3cuse xlink:href='%23b' transform='matrix(3 0 0 3 0 10.29)'/%3e%3cuse xlink:href='%23b' transform='matrix(3 0 0 3 0 -9.71)'/%3e%3c/g%3e%3c/svg%3e\"},1606:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1200 600'%3e%3cdefs%3e%3cclipPath id='b'%3e%3cpath d='M0 0h600v300H0z'/%3e%3c/clipPath%3e%3cclipPath id='c'%3e%3cpath d='m0 0 300 150H0zm300 0h300L300 150zm0 150h300v150zm0 0v150H0z'/%3e%3c/clipPath%3e%3cg id='d'%3e%3cg id='a'%3e%3cpath d='M0 0v.5L1 0z' transform='translate(0 -.325)'/%3e%3cpath d='M0 0v-.5L1 0z' transform='rotate(-36 .5 -.162)'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3cuse xlink:href='%23a' transform='rotate(72 0 0)'/%3e%3cuse xlink:href='%23a' transform='rotate(-72 0 0)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1) rotate(72)'/%3e%3c/g%3e%3c/defs%3e%3cpath fill='%23012169' d='M0 0h1200v600H0z'/%3e%3cpath stroke='%23FFF' d='m0 0 600 300M0 300 600 0' stroke-width='60' clip-path='url(%23b)'/%3e%3cpath stroke='%23C8102E' d='m0 0 600 300M0 300 600 0' stroke-width='40' clip-path='url(%23c)'/%3e%3cpath stroke='%23FFF' d='M300 0v300M0 150h600' stroke-width='100' clip-path='url(%23b)'/%3e%3cpath stroke='%23C8102E' d='M300 0v300M0 150h600' stroke-width='60' clip-path='url(%23b)'/%3e%3cuse xlink:href='%23d' fill='%23FFF' transform='matrix(45.4 0 0 45.4 900 120)'/%3e%3cuse xlink:href='%23d' fill='%23C8102E' transform='matrix(30 0 0 30 900 120)'/%3e%3cg transform='rotate(82 900 240)'%3e%3cuse xlink:href='%23d' fill='%23FFF' transform='rotate(-82 519.022 -457.666) scale(40.4)'/%3e%3cuse xlink:href='%23d' fill='%23C8102E' transform='rotate(-82 519.022 -457.666) scale(25)'/%3e%3c/g%3e%3cg transform='rotate(82 900 240)'%3e%3cuse xlink:href='%23d' fill='%23FFF' transform='rotate(-82 668.57 -327.666) scale(45.4)'/%3e%3cuse xlink:href='%23d' fill='%23C8102E' transform='rotate(-82 668.57 -327.666) scale(30)'/%3e%3c/g%3e%3cuse xlink:href='%23d' fill='%23FFF' transform='matrix(50.4 0 0 50.4 900 480)'/%3e%3cuse xlink:href='%23d' fill='%23C8102E' transform='matrix(35 0 0 35 900 480)'/%3e%3c/svg%3e\"},268:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1200 600'%3e%3cpath fill='%23db161b' d='M0 0h1200v600H0z'/%3e%3cpath fill='%23fff' d='M300 0h900v200H300z'/%3e%3cpath fill='green' d='M300 400h900v200H300z'/%3e%3cg id='a' fill-rule='evenodd' stroke='%23db161b' stroke-width='.352' fill='%23fff'%3e%3crect rx='3.215' ry='3.015' height='21.217' width='38.669' y='102.64' x='65.854' stroke-width='.378'/%3e%3crect rx='3.05' ry='2.764' height='19.449' width='36.686' y='103.52' x='66.846'/%3e%3cpath d='m83.904 108.83 1.853.06.084.84 1.516.77 1.18-.96 1.431.77-1.347.84.337 1.16 1.684-.06v1.55l-1.347-.07-.674.97 1.516 1.1-1.179.9-1.264-.97-1.853.39.084 1.42-2.021.13-.253-1.36-1.684-.71-.927.97-1.432-.71.843-1.1-1.011-.71h-1.432l-.084-2 1.432.13 1.01-1.16-1.179-.9 1.516-1.04 1.095.84 1.853-.25.253-.84z' stroke-width='.222'/%3e%3cellipse cx='68.944' cy='426.78' rx='11.049' ry='9.944' transform='matrix(.18418 0 0 .1752 71.766 38.246)' stroke-width='1pt'/%3e%3cpath d='m71.803 104.41-2.974 2.65m4.957-2.65-2.974 2.65m4.957-2.65-2.974 2.65m4.957-2.65-2.974 2.65m4.957-2.65-2.974 2.65m4.957-2.65-2.974 2.65m4.958-2.65-2.975 2.65m4.958-2.65-2.975 2.65m4.958-2.65-2.975 2.65m4.958-2.65-2.975 2.65m4.958-2.65-2.975 2.65m4.958-2.65-2.975 2.65m-4.957-2.65-2.975 2.65m12.89-2.65-2.975 2.65m4.958-2.65-2.975 2.65m4.958-2.65-2.975 2.65m4.959-2.65-2.976 2.65m0-2.65 2.976 2.65m-4.959-2.65 2.975 2.65m-4.958-2.65 2.975 2.65m-4.958-2.65 2.975 2.65m-4.958-2.65 2.975 2.65m-4.958-2.65 2.975 2.65m-4.958-2.65 2.975 2.65m-4.958-2.65 2.975 2.65m-4.958-2.65 2.975 2.65m-4.958-2.65 2.975 2.65m-4.958-2.65 2.975 2.65m-4.958-2.65 2.974 2.65m4.958-2.65 2.975 2.65m-12.89-2.65 2.974 2.65m-4.957-2.65 2.974 2.65m-4.957-2.65 2.974 2.65m-4.957-2.65 2.974 2.65m0 12.37-2.974 2.66m4.957-2.66-2.974 2.66m4.957-2.66-2.974 2.66m4.957-2.66-2.974 2.66m4.957-2.66-2.974 2.66m4.957-2.66-2.974 2.66m4.958-2.66-2.975 2.66m4.958-2.66-2.975 2.66m4.958-2.66-2.975 2.66m4.958-2.66-2.975 2.66m4.958-2.66-2.975 2.66m4.958-2.66-2.975 2.66m-4.957-2.66-2.975 2.66m12.89-2.66-2.975 2.66m4.958-2.66-2.975 2.66m4.958-2.66-2.975 2.66m4.959-2.66-2.976 2.66m0-2.66 2.976 2.66m-4.959-2.66 2.975 2.66m-4.958-2.66 2.975 2.66m-4.958-2.66 2.975 2.66m-4.958-2.66 2.975 2.66m-4.958-2.66 2.975 2.66m-4.958-2.66 2.975 2.66m-4.958-2.66 2.975 2.66m-4.958-2.66 2.975 2.66m-4.958-2.66 2.975 2.66m-4.958-2.66 2.975 2.66m-4.958-2.66 2.974 2.66m4.958-2.66 2.975 2.66m-12.89-2.66 2.974 2.66m-4.957-2.66 2.974 2.66m-4.957-2.66 2.974 2.66m-4.957-2.66 2.974 2.66'/%3e%3c/g%3e%3cuse xlink:href='%23a' x='-300' transform='scale(-1 1)'/%3e%3cg id='b' stroke='%23db161b'%3e%3cpath d='M126.51 147.12c-48.114 47.05-68.638 53-59.006 56.79s40.616-20.49 72.856-52.75c32.24-32.25 51.98-60.956 42.35-64.747-9.63-3.792-5.03 10.662-56.2 60.707z' fill-rule='evenodd' stroke-width='.565' fill='%23fff'/%3e%3cpath d='m86.008 181.31 16.852 4.42c-15.861 15.03-33.708 21.22-38.665 18.57-4.958-2.65 8.923-8.84 21.813-22.99z' fill-rule='evenodd' stroke-width='.33' fill='%23fff'/%3e%3cpath d='m86.008 183.08 13.881 3.54c-15.453 14.45-30.737 18.56-34.692 16.8-3.977-1.77 8.255-6.74 20.811-20.34z' fill-rule='evenodd' stroke-width='.33' fill='%23fff'/%3e%3cpath d='M137.79 145.06c-.04.23-.15 1.24-.25 1.64 0 .56-.06.98-.12 1.42-.16.38-.13.73-.62.87-.33.46-.54.58-.98.77-.3.23-.76.46-1.24.65-.49.19-.94.21-1.47.11-.44-.27-.75-.54-1.11-.76-.09-.35-.16-.86-.25-1.2.13.35.23.91.25 1.41-.05.55-.25.79-.49 1.2m1.72 1.2c-.04-.03-.08-.07-.12-.11.29.26.17.14-.5-.21-.47-.22-.98-.34-1.6-.44h-1.72c-.67 0-1.12.09-1.6.22-.35.31-.87.48-1.23.76-.38.23-.54.5-.74.87-.34.3-.56.76-.87.99-.13.5-.42.48-.61.87.58.04 1.05.11 1.35.43.52.24-.43-.23-.61-.43-.41-.11-.51-.22-1.11-.22-.56-.16-.9.13-1.48.22-.33.17-.43.22-.86.22m5.05 2.29c-.25.01-1.4.2-1.85 0-.5-.12-.8-.36-1.11-.77-.15-.29 0 .53 0 .88-.05.64-.27.65-.61 1.09-.36.2-.74.49-1.11.65-.31.24-.69.4-1.11.55-.37.15-.81.31-1.11.54-.41.26-.37.58-.61.98.04.54.14.84.49 1.1.14.36.47.73.74.98.3.5.64.73-.13.87-.42.16-.65.03-1.1 0m-.25.76c-.3-.06-1.38-.38-1.85-.54h-1.72c-.67.04-.8.22-1.36.43-.36.33-.61.56-1.11.77-.26.3-.78.81-.98 1.2-.15.37-.25.87-.25 1.42.01.63.2.74.25 1.31.14.46.36.89.74 1.3.05.14.09.18.24.22m.17 1.43c-.05 0-.17.28-.35.52-.39.4-.44.43-1.05.43-.54-.02-.49-.21-.87-.35-.18-.27-.41-.49-.61-.86-.14-.22-.27-.57-.44-.77-.16-.26-.36-.45-.53-.69-.16-.07-.22-.14-.43-.17.5.08.54.25.87.51.15.25.31.5.44.78.05.37.17.66.17 1.12 0 .47 0 .81-.17 1.2-.21.22-.36.44-.61.61-.21.19-.46.45-.62.68-.27.17-.47.31-.78.52-.27.15-.55.31-.96.35-.52-.04-.67-.18-1.05-.35-.33-.24-.59-.39-.88-.6-.23-.16-.46-.47-.61-.69-.47-.12-.77-.07-1.05.17-.24.16-.45.37-.61.6-.15.07-.38.28-.53.35m1.04.2c.14.06.64.41.87.54.14.45.36.7.43 1.18.12.47.11.98.11 1.51-.12.55-.35.95-.54 1.39-.35.24-.52.4-.98.65-.43.06-.86.11-1.41.11-.34.11-.98.16-1.31 0-.48-.07-.843-.26-1.194-.43-.402-.23-.649-.44-1.088-.65-.213-.31-.544-.59-.869-.97-.271-.36-.47-.56-.653-.96.161.46.405.86.544 1.29.247.45.391.62.435 1.18.151.45.109.99.109 1.5-.048.35-.073 1.01-.218 1.29v.33m-10.314 1.71v.16c0-.42-.011-.21.175.62.33.37 1.104.47 1.749.31.566-.41.548-.73 1.574-.93.991.06 1.369.32 1.924.62.658.29.962.44 1.399 1.09.217.53.338.89-.35 1.09-.547.35-1.197.54-1.924.63-.808 0-1.39-.09-1.749.31-.555.51-.524.82-.524 1.71-.187.28-.224 1.1-.35 1.41-.486.2-.771.31-1.574.31-.189-.48-.398-1.35-.525-1.87-.137-.56-.179-1.34-.525-1.72a4.51 4.51 0 0 0-1.224-1.09c-.214-.27-.622-.49-1.049-.62.686.31.784.65.874 1.4-.603.27-.764.46-1.749.47-.968-.07-1.202-.29-1.574-.78-.067.78-.348 1.04-.524 1.72-.36.47-.513.95-.875 1.55.154.76.486.79.525 1.72.227.61.202 1.19.699 1.56.222.24.388.29.875.31-1.013 0-1.603-.1-2.274-.47-.519-.28-.911-.64-1.399-.93-.619-.4-1.384-.77-2.099-.94-.808 0-1.39-.08-1.749.31-.495.32-.828.86-1.049 1.56-.162.81-.224 1.35.175 1.87.296.61.363.84 0 1.56-.407.51-1.012.57-1.924.78a6.678 6.678 0 0 1-1.749-.31' stroke-width='.33' fill='none'/%3e%3cpath d='M181.41 104.66c21.35-36.858 35.52-68.222 31.62-70.014-3.89-1.791-24.37 26.665-45.72 63.518l14.1 6.496z' fill-rule='evenodd' stroke-width='.447' fill='%23fff'/%3e%3cpath d='M180 104.01c20.59-35.557 34.78-65.574 31.67-67.007s-22.35 26.258-42.95 61.81' fill-rule='evenodd' stroke-width='.393' fill='%23fff'/%3e%3cpath d='M176.46 85.461c-2.51 4.157-5.16 8.908-7.74 13.352L180 104.01c2.57-4.448 5.38-9.13 7.73-13.356l-11.27-5.193z' fill-rule='evenodd' stroke-width='.446' fill='%23fff'/%3e%3cpath d='M177.41 86.895c-2.5 4.157-4.25 7.338-6.82 11.782l8.45 3.893c2.58-4.442 4.48-7.554 6.83-11.78l-8.46-3.895z' fill-rule='evenodd' stroke-width='.446' fill='%23fff'/%3e%3cpath transform='matrix(-.90832 -.41827 -.50125 .8653 0 0)' stroke-width='.447' fill='%23fff' d='M-205.69 6.559h6.207v9.985h-6.207z'/%3e%3cpath d='m183.55 91.712-10.64 6.043m5.63 2.595-.63-11.235m31.12-41.388-5.64-2.597' fill-rule='evenodd' stroke-width='.446' fill='%23fff'/%3e%3ccircle transform='matrix(-.449 .1132 .10134 .39387 444.347 -55.798)' cy='92.126' cx='545.67' stroke-width='1pt' fill='%23db161b' r='3.543'/%3e%3c/g%3e%3cuse xlink:href='%23b' x='-300' transform='scale(-1 1)'/%3e%3cpath d='M135.26 84.958c0 30.942.18 42.602-2.1 44.202-2.16 1.71-62.348 0-62.348 8.84s49.578 17.68 64.448 17.68c19.83 0 29.75-8.84 29.75-26.52V84.958h-29.75z' fill-rule='evenodd' stroke='%23db161b' stroke-width='.407' fill='%23fff'/%3e%3cpath d='M135.26 93.798v4.42a100.628 100.628 0 0 0 29.75 0v-4.42a100.628 100.628 0 0 1-29.75 0zm0-8.84v4.42a100.695 100.695 0 0 0 29.75 0v-4.42a100.695 100.695 0 0 1-29.75 0z' fill-rule='evenodd' stroke='%23db161b' stroke-width='.352' fill='%23fff'/%3e%3cpath d='M135.26 89.378v4.42a100.628 100.628 0 0 0 29.75 0v-4.42a100.695 100.695 0 0 1-29.75 0zm0 8.84v4.422c9.92 1.47 19.83 1.47 29.75 0v-4.422a100.628 100.628 0 0 1-29.75 0z' fill-rule='evenodd' stroke='%23db161b' stroke-width='.352' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 84.326)' cy='210.83' cx='256.89' stroke-width='4.463' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 83.53)' cy='246.26' cx='292.32' stroke-width='4.463' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 83.372)' cy='263.98' cx='327.76' stroke-width='4.463' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 83.372)' cy='263.98' cx='363.19' stroke-width='4.463' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 83.53)' cy='246.26' cx='398.62' stroke-width='4.463' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 84.326)' cy='210.83' cx='434.06' stroke-width='4.463' fill='%23fff'/%3e%3cpath d='m135.26 107.06 29.75 23.87m-26.78-23.87 26.78 21.21m-22.81-20.33 22.81 17.68m-19.83-17.68 19.83 15.03m-16.86-15.03 16.86 12.38m-13.89-12.38 13.89 9.73m-10.91-9.73 10.91 7.07m-7.94-7.07 7.94 5.31m-4.96-5.31 4.96 3.54m-1.99-3.54 1.99 1.77m-29.75 0 29.75 23.87m0-26.52-32.72 26.52m29.74-26.52-28.75 22.98m24.79-22.1-22.81 17.68m19.83-17.68-19.83 15.03m16.86-15.03-16.86 12.38m13.88-12.38-13.88 9.73m10.91-9.73-10.91 7.07m7.93-7.07-7.93 5.31m4.96-5.31-4.96 3.54m1.98-3.54-1.98 1.77m29.75 0-32.72 26.52m32.72-23.87-32.72 26.52m32.72-23.87-32.72 26.53m32.72-23.87-32.72 26.52m32.72-23.87-32.72 26.52m32.72-23.87-32.72 26.52m32.72-23.87-32.72 26.52m32.72-23.86-32.72 26.52m32.72-23.87-30.74 24.75m30.74-22.1-27.77 22.1m26.77-18.56L142.2 154.8m20.82-14.15-17.84 14.15m15.86-9.73-8.92 7.07m-16.86-39.78 28.75 22.99m-28.75-20.34L164.01 138m-28.75-20.33 27.76 22.1m-27.76-19.45 27.76 22.1m-27.76-19.45 26.77 21.22m-27.76-19.45 26.77 21.22m-26.77-18.57 24.79 19.45m-25.78-17.68 24.79 19.45m-25.78-17.68 23.79 18.56m-23.79-15.91 22.8 17.68m-22.8-15.03 19.83 15.91m-16.86-49.5v4.42c9.92 1.47 19.83 1.47 29.75 0v-4.42c-9.92 1.47-19.83 1.47-29.75 0zm-2.97 36.24 17.84 14.15m-17.84-11.49 15.86 12.37m-15.86-9.72 13.88 10.61m-13.88-7.96 9.91 7.96m-9.91-5.31 7.93 6.19m-7.93-3.54 4.95 3.54' fill-rule='evenodd' stroke='%23db161b' stroke-width='.352' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 97.586)' cy='210.83' cx='256.89' stroke-width='4.463' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 96.791)' cy='246.26' cx='292.32' stroke-width='4.463' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 96.632)' cy='263.98' cx='327.76' stroke-width='4.463' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 96.632)' cy='263.98' cx='363.19' stroke-width='4.463' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 96.791)' cy='246.26' cx='398.62' stroke-width='4.463' fill='%23fff'/%3e%3cellipse rx='8.858' ry='26.575' stroke='%23db161b' transform='matrix(.15263 0 0 .03588 97.403 97.586)' cy='210.83' cx='434.06' stroke-width='4.463' fill='%23fff'/%3e%3cpath d='m92.625 148.61 35.695-18.57m-37.678 17.68 33.708-17.68m-34.699 15.92 30.739-15.92m-31.731 14.15 26.771-14.15m-28.754 12.38 24.784-12.38m-23.792 9.73 16.852-8.84M86.676 138l12.89-7.07m-12.89 4.42 8.924-4.42m0 18.56 33.71-17.68m-30.736 18.57 31.726-16.8m-28.75 17.68 29.74-15.91m-26.77 16.79 24.79-13.26m-20.82 13.26 21.81-11.49m-18.84 12.38 18.84-9.73m-15.86 10.61 14.87-7.95m-10.91 7.95 11.9-6.19m-7.93 7.08 7.93-4.42m-3.96 4.42 4.95-2.66m1.99-22.98h-4.96a71.66 71.66 0 0 0 0 26.52h4.96a71.236 71.236 0 0 1 0-26.52zm-58.502 12.38 11.898-8.84m-11.898 2.65 11.898 10.61' fill-rule='evenodd' stroke='%23db161b' stroke-width='.352' fill='%23fff'/%3e%3cpath d='m92.625 130.93-5.949.88c-1.322 5.6-1.322 10.31 0 15.91l5.949 1.77c-1.322-5.6-1.322-12.96 0-18.56z' fill-rule='evenodd' stroke='%23db161b' stroke-width='.251' fill='%23fff'/%3e%3cpath d='M164.97 86.726v-4.457c-4.45.037-7.43-2.615-7.43-5.305l-14.85.037c0 2.653-2.97 5.305-7.43 5.305v4.42h29.71z' fill-rule='evenodd' stroke='%23db161b' stroke-width='.431' fill='%23fff'/%3e%3cpath stroke='%23db161b' stroke-width='.364' fill='%23fff' d='M143.75 71.697h12.734v5.304H143.75zm1.06-5.304h10.612v5.304H144.81zm0-5.304h10.612v5.304H144.81z'/%3e%3cpath stroke='%23db161b' stroke-width='.364' fill='%23fff' d='M145.87 54.017h8.489v7.072h-8.489z'/%3e%3cpath stroke='%23db161b' stroke-width='.38' fill='%23fff' d='M145.51 47.829h9.221v6.188h-9.221z'/%3e%3cellipse rx='42.52' ry='33.661' stroke='%23db161b' transform='matrix(.28916 0 0 .2495 81.983 1.86)' cy='161.22' cx='237.4' stroke-width='1pt' fill='%23fff'/%3e%3cpath d='M156.78 41.64c0 2.319 3.07 6.189 3.07 6.189-2.23 1.52-5.83 2.652-9.22 2.652s-7.62-.631-9.22-2.652c0 0 3.07-3.87 3.07-6.189 0-2.318-3.07-5.304-3.07-5.304 2.22-1.52 5.83-2.652 9.22-2.652s6.99 1.132 9.22 2.652c0 0-3.07 2.986-3.07 5.304z' fill-rule='evenodd' stroke='%23db161b' stroke-width='.358' fill='%23fff'/%3e%3cpath d='M154.73 41.64c0 2.319 3.07 7.073 3.07 7.073-2.22 1.52-3.78 1.768-7.17 1.768s-5.57.253-7.17-1.768c0 0 3.07-4.754 3.07-7.073 0-2.318-3.07-6.188-3.07-6.188 2.22-1.52 3.78-1.768 7.17-1.768s4.95.248 7.17 1.768c0 0-3.07 3.87-3.07 6.188z' fill-rule='evenodd' stroke='%23db161b' stroke-width='.358' fill='%23fff'/%3e%3ccircle stroke='%23db161b' transform='matrix(.28916 0 0 .2495 81.983 .975)' cy='166.54' cx='194.88' stroke-width='1pt' fill='%23fff' r='10.63'/%3e%3ccircle stroke='%23db161b' transform='matrix(.28916 0 0 .2495 106.572 .975)' cy='166.54' cx='194.88' stroke-width='1pt' fill='%23fff' r='10.63'/%3e%3ccircle stroke='%23db161b' transform='matrix(.28916 0 0 .2495 94.278 .975)' cy='166.54' cx='194.88' stroke-width='1pt' fill='%23fff' r='10.63'/%3e%3ccircle stroke='%23db161b' transform='matrix(.28916 0 0 .2495 94.278 -7.865)' cy='166.54' cx='194.88' stroke-width='1pt' fill='%23fff' r='10.63'/%3e%3ccircle stroke='%23db161b' transform='matrix(.29948 0 0 .2495 83.264 42.524)' cy='166.54' cx='194.88' stroke-width='1pt' fill='%23fff' r='10.63'/%3e%3ccircle stroke='%23db161b' transform='matrix(.29948 0 0 .2495 100.242 42.524)' cy='166.54' cx='194.88' stroke-width='1pt' fill='%23fff' r='10.63'/%3e%3cpath d='M142.69 77.001h14.85l-7.42 7.957-7.43-7.957z' fill-rule='evenodd' stroke='%23db161b' stroke-width='.364' fill='%23fff'/%3e%3ccircle stroke='%23db161b' transform='matrix(.39931 0 0 .33266 72.298 27.79)' cy='166.54' cx='194.88' stroke-width='1pt' fill='%23fff' r='10.63'/%3e%3crect rx='1.238' ry='.938' height='5.304' width='22.805' stroke='%23db161b' y='109.72' x='133.77' stroke-width='.33' fill='%23fff'/%3e%3cpath d='M163.52 105.3c-2.75 0-4.96 2.06-4.96 4.62v4.02c0 2.56 2.21 4.62 4.96 4.62s4.96-2.06 4.96-4.62v-4.02c0-2.56-2.21-4.62-4.96-4.62zm0 1.77c-1.65 0-2.98 1.65-2.98 3.7v2.33c0 2.05 1.33 3.69 2.98 3.69s2.97-1.64 2.97-3.69v-2.33c0-2.05-1.32-3.7-2.97-3.7zm-25.78-.88c-1.65 0-2.97 1.64-2.97 3.69v4.1c0 2.05 1.32 3.7 2.97 3.7s2.97-1.65 2.97-3.7v-4.1c0-2.05-1.32-3.69-2.97-3.69zm0-1.77c-2.75 0-4.96 2.06-4.96 4.62v5.79c0 2.56 2.21 4.62 4.96 4.62s4.96-2.06 4.96-4.62v-5.79c0-2.56-2.21-4.62-4.96-4.62z' fill-rule='evenodd' stroke='%23db161b' stroke-width='.33' fill='%23fff'/%3e%3cpath d='M129.81 107.95c-1.65 0-2.98 1.65-2.98 3.7v.96c0 2.05 1.33 3.7 2.98 3.7s2.97-1.65 2.97-3.7v-.96c0-2.05-1.32-3.7-2.97-3.7zm0-1.76c-2.75 0-4.96 2.06-4.96 4.62v2.65c0 2.56 2.21 4.62 4.96 4.62 2.74 0 4.96-2.06 4.96-4.62v-2.65c0-2.56-2.22-4.62-4.96-4.62z' fill-rule='evenodd' stroke='%23db161b' stroke-width='.33' fill='%23fff'/%3e%3cpath d='M117.91 105.51c-2.97 0-5.35 1.84-5.35 4.13v4.58c0 2.29 2.38 4.13 5.35 4.13s5.35-1.84 5.35-4.13v-4.58c0-2.29-2.38-4.13-5.35-4.13zm0-1.98c-4.94 0-8.92 2.31-8.92 5.17v6.47c0 2.86 3.98 5.16 8.92 5.16s8.92-2.3 8.92-5.16v-6.47c0-2.86-3.98-5.17-8.92-5.17zm64.45 2.86c-2.97 0-5.36 1.85-5.36 4.14v4.58c0 2.29 2.39 4.13 5.36 4.13 2.96 0 5.35-1.84 5.35-4.13v-4.58c0-2.29-2.39-4.14-5.35-4.14zm0-1.97c-4.95 0-8.93 2.3-8.93 5.16v6.47c0 2.86 3.98 5.16 8.93 5.16 4.94 0 8.92-2.3 8.92-5.16v-6.47c0-2.86-3.98-5.16-8.92-5.16z' fill-rule='evenodd' stroke='%23db161b' stroke-width='.33' fill='%23fff'/%3e%3crect rx='.646' ry='.938' height='5.304' width='11.898' stroke='%23db161b' y='109.72' x='165.5' stroke-width='.33' fill='%23fff'/%3e%3crect rx='.377' ry='1.251' height='7.072' width='6.941' stroke='%23db161b' y='108.84' x='154.6' stroke-width='.33' fill='%23fff'/%3e%3crect rx='.377' ry='1.251' height='7.072' width='6.941' stroke='%23db161b' y='108.84' x='121.88' stroke-width='.33' fill='%23fff'/%3e%3crect rx='.753' ry='1.563' height='8.84' width='13.881' stroke='%23db161b' y='107.95' x='100.06' stroke-width='.33' fill='%23fff'/%3e%3crect rx='.7' ry='1.563' height='8.84' width='12.89' stroke='%23db161b' y='108.84' x='186.32' stroke-width='.33' fill='%23fff'/%3e%3c/svg%3e\"},3172:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 36 24'%3e%3cpath fill='%23fff' d='M0 0h36v24H0z'/%3e%3cg fill='%23005293'%3e%3cg id='c' transform='translate(9 6)'%3e%3cg id='b'%3e%3cpath id='a' d='M0-3v3h1.5z' transform='rotate(18 0 -3)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(216)'/%3e%3cuse xlink:href='%23b' transform='rotate(288)'/%3e%3c/g%3e%3cpath d='M0 12h18v12H0z'/%3e%3c/g%3e%3cg fill='%23d21034'%3e%3cpath d='M18 0h18v12H18z'/%3e%3cuse xlink:href='%23c' x='18' y='12'/%3e%3c/g%3e%3c/svg%3e\"},5385:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 600'%3e%3cpath fill='%23d91023' d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M300 0h300v600H300z'/%3e%3cg transform='matrix(.25 0 0 .25 345 179.188)' stroke='%23d4af37' stroke-width='2' fill='%2300a854'%3e%3cg transform='matrix(.44722 -.20656 .2582 .35777 89.404 -67.294)' id='g' stroke-width='4.33'%3e%3cpath d='M480.212 566.87c31.28 33.04 62.37 68.152 78.925 111.21 25.21 69.711 18.346 151.527-22.518 213.983-34.388 51.789-85.32 91.514-141.97 116.401-51.945 21.524-112.113 23.773-164.827 3.54-20.114-7.373-38.889-17.914-57.51-28.315-8.441-1.44-13.874 8.648-6.988 13.292 62.35 40.624 130.86 42.249 202.053 28.197 36.106-9.534 69.76-27.273 98.991-50.401 44.36-33.229 82.625-77.439 99.76-130.902 26.131-78.994 9.286-171.344-45.167-234.649-13.723-16.785-28.875-32.351-44.687-47.168l3.938 4.813z'/%3e%3cpath d='M170.57 983.29c-8.079-.843-12.167 11.815-5.077 13.643 4.182-1.01 10.665-12.011 5.076-13.642zm304.265-430.885c-4.503-5.593-14.062-2.886-17.759-7.3-3.94-4.706 2.887-6.51-.226-9.991-3.113-3.48-7.746-1.747-11.998-6.498-4.251-4.75-.422-8.776-4.09-12.099-3.667-3.322-4.171.887-8.372-3.724-4.2-4.612-1.717-12.71-6.304-18.558-4.481-5.712-2.984-12.5 2.496-11.257 3.644.826 5.064 4.385 10.468 5.756 5.404 1.372 7.577-2.577 11.118.904 3.542 3.481.308 9.122 4.105 13.971 3.798 4.85 5.83 1.303 8.515 5.626 2.686 4.323.5 6.61 2.228 11.666 1.729 5.056 8.377 3.105 10.869 10.748 2.492 7.643-1.05 20.756-1.05 20.756z'/%3e%3cpath d='M478.146 564.793c-5.561-26.182-26.97-56.915-52.595-79.474 15.222 11.956 44.848 40.53 54.361 79.28l-1.766.194z'/%3e%3cpath d='M460.18 524.426c-4.162-2.885-7.254-2.85-10.507-3.257 2.963-.163 5.873-.472 9.492 1.156l1.014 2.101zm-15.179-18.949c-4.502-1.455-7.443-.392-10.62.29 2.794-1.147 5.51-2.419 9.262-2.021l1.358 1.73zm4.377 3.378c-2.195-5.54-2.198-9.678-2.533-14.028-.094 3.967-.298 7.863.952 12.69l1.58 1.338zm13.521 18.185c-2.195-5.54-2.198-9.677-2.533-14.027-.094 3.966-.298 7.863.953 12.69l1.58 1.338zm92.277 155.022c-8.257-3.177-17.17-.031-23.877-2.453-7.148-2.582 1.14-8.575-4.41-10.366-5.548-1.79-10.208 5.644-17.785 3.202-7.578-2.442-6.322-10.125-12.54-11.417-6.218-1.291-6.37 7.191-13.822 4.865-7.453-2.327-7.5-12.33-15.974-15.724-8.276-3.314-9.088-11.348-1.33-13.33 5.16-1.318 10.29 1.936 18.002.135s6.976-8.643 13.093-7.11c6.116 1.535 4.355 10.427 11.373 13.246 7.017 2.818 11.366-4.905 16.697-1.972 5.33 2.932.26 9.424 4.625 13.701 4.367 4.277 7.736-2.34 14.176 4.2 6.44 6.538 11.772 23.023 11.772 23.023z'/%3e%3cpath d='M563.504 691.584c-22.904-25.577-58.656-41.392-101.83-49.728 25.052 3.433 76.71 14.954 105.234 49.976l-3.404-.248z'/%3e%3cpath d='M524.282 661.447c-6.69-.536-10.766 1.355-15.236 2.88 3.851-1.95 7.573-4.02 13.029-4.48l2.207 1.6zm-27.871-10.811c-6.554 1.172-10.006 4.054-13.927 6.677 3.224-2.882 6.292-5.848 11.419-7.682l2.508 1.005zm7.178.925c-5.183-4.507-6.89-8.854-9.121-13.225 1.507 4.226 2.841 8.443 6.48 12.767l2.64.458zm25.365 11.002c-5.183-4.507-6.89-8.854-9.121-13.225 1.507 4.226 2.84 8.443 6.48 12.767l2.64.458zm25.786 223.042c6.924-5.379 9.128-14.933 14.625-19.391 5.859-4.753 6.268 5.877 10.646 2.066 4.377-3.81.889-12.104 6.864-17.31 5.974-5.206 11.467.264 15.799-4.413 4.332-4.678-2.387-9.643 3.43-14.807 5.815-5.163 13.859.495 21.071-4.949 7.045-5.317 13.915-1.447 11.39 6.438-1.679 5.243-7.007 7.856-9.652 15.597-2.645 7.74 3.23 10.999-1.243 15.45-4.472 4.452-10.667-2.148-16.646 2.356-5.98 4.504-2.095 12.69-7.272 15.661-5.177 2.97-7.692-5.144-13.435-3.78-5.743 1.366-2.226 8.069-10.882 9.95-8.655 1.883-24.696-2.868-24.696-2.868z'/%3e%3cpath d='M542.691 887.43c32.645-5.369 64.277-27.486 93.849-60.328-16.034 19.857-52.657 58.27-95.853 63.151l2.004-2.822z'/%3e%3cpath d='M587.643 870.452c3.977-5.52 4.621-10.146 5.77-14.907-.48 4.464-.794 8.885-3.317 13.897l-2.453 1.01zm23.442-18.107c2.535-6.374 2.056-11.022 2.032-15.93.6 4.448 1.352 8.81.103 14.318l-2.135 1.612zm-4.547 5.722c6.36-1.944 10.75-.953 15.437-.406-4.187-1.095-8.275-2.337-13.67-1.631l-1.767 2.037zm-22.267 15.817c6.36-1.945 10.75-.954 15.437-.406-4.187-1.096-8.275-2.337-13.67-1.632l-1.767 2.038zm2.23-83.944c5.85-6.618 6.32-16.43 10.93-21.87 4.915-5.797 7.205 4.57 10.83-.016 3.626-4.587-1.275-12.066 3.673-18.331 4.947-6.266 11.317-1.946 14.743-7.376 3.427-5.43-4.058-9.018.742-15.21 4.799-6.194 13.709-2.18 19.83-8.917 5.98-6.58 13.42-4.098 12.338 4.136-.72 5.476-5.492 9.068-6.717 17.184-1.225 8.116 5.127 10.189 1.522 15.423-3.605 5.235-10.865-.06-15.942 5.517-5.077 5.576.195 12.875-4.366 16.79-4.56 3.914-8.473-3.577-13.875-1.13-5.402 2.445-.755 8.356-8.927 11.87-8.173 3.514-24.78 1.93-24.78 1.93z'/%3e%3cpath d='M574.984 794.051c31.13-11.555 58.291-39.374 81.522-77.336-12.232 22.597-41.404 67.391-82.99 80.496l1.468-3.16z'/%3e%3cpath d='M616.148 768.72c2.928-6.189 2.74-10.86 3.023-15.759.322 4.48.798 8.884-.792 14.296l-2.23 1.463zm19.824-22.302c1.36-6.752.063-11.227-.832-16.047 1.38 4.257 2.893 8.4 2.644 14.052l-1.812 1.995zm-3.452 6.498c5.905-3.134 10.394-3.004 15.098-3.368-4.309-.271-8.547-.705-13.724 1.025l-1.375 2.343zm-19.076 19.826c5.905-3.135 10.395-3.005 15.099-3.368-4.309-.272-8.547-.706-13.724 1.025l-1.375 2.343zm-46.157-31.544c-7.882-5.63-18.267-4.844-24.713-9.25-6.871-4.697 3.657-8.628-1.737-12.051-5.395-3.424-12.475 3.027-19.843-1.644-7.368-4.672-3.841-12.336-10.09-15.426-6.25-3.09-8.83 5.718-16.099 1.202s-4.466-14.966-12.516-20.881c-7.863-5.778-6.436-14.388 2.386-14.282 5.868.07 10.4 4.904 19.12 5.186 8.722.281 5.015-4.332 11.087-1.017 6.073 3.314 4.839 12.095 11.504 17.002 6.665 4.907 15.195-4.66 20.032-.107 4.837 4.554-2.411 9.907 1.016 15.593s8.9-.273 13.89 8.353c4.99 8.627 5.963 27.322 5.963 27.322z'/%3e%3cpath d='M573.434 753.467c-17.083-33.105-50.623-59.625-94.197-80.421 25.684 10.602 77.379 37.099 97.75 81.634l-3.553-1.213z'/%3e%3cpath d='M540.285 711.031c-6.968-2.434-11.845-1.602-17.038-1.264 4.656-.955 9.207-2.073 15.145-1.024l1.893 2.288zm-26.58-19.091c-7.31-.612-11.806 1.427-16.727 3.065 4.253-2.103 8.365-4.339 14.344-4.815l2.383 1.75zm7.375 2.978c-4.23-6.155-4.807-11.169-5.936-16.355.4 4.831.616 9.606 3.257 15.137l2.68 1.218zm23.859 18.587c-4.23-6.155-4.807-11.169-5.936-16.355.399 4.831.616 9.606 3.256 15.137l2.68 1.218zm43.081 36.857c4.442-7.713 2.994-17.422 6.451-23.72 3.685-6.712 7.945 2.959 10.603-2.297 2.659-5.256-3.596-11.547.03-18.725 3.628-7.177 10.705-4.289 13.005-10.328 2.3-6.04-5.728-7.976-2.232-15.052 3.495-7.076 13.002-5.022 17.686-12.908 4.577-7.704 12.345-6.84 12.887 1.45.361 5.515-3.615 10.038-3.236 18.244.38 8.205 7.003 8.897 4.49 14.783-2.512 5.886-10.651 2.23-14.539 8.76-3.887 6.53 2.695 12.567-1.01 17.361-3.704 4.795-8.993-1.717-13.808 1.816-4.815 3.533.886 8.343-6.434 13.506-7.32 5.162-23.893 7.11-23.893 7.11z'/%3e%3cpath d='M577.541 756.813c28.24-17.872 49.428-50.836 64.795-92.905-7.584 24.705-27.44 74.716-65.618 96.309l.823-3.404z'/%3e%3cpath d='M612.927 723.337c1.664-6.678.572-11.212-.104-16.07 1.186 4.32 2.51 8.532 2.005 14.166l-1.9 1.904zm15.076-26.017c.019-6.898-2.122-11.007-3.936-15.538 2.18 3.877 4.467 7.615 5.323 13.203l-1.387 2.335zm-2.117 7.091c5.174-4.313 9.596-5.132 14.132-6.478-4.273.641-8.508 1.11-13.241 3.895l-.891 2.583zm-14.826 23.433c5.175-4.313 9.597-5.132 14.133-6.478-4.273.641-8.508 1.11-13.241 3.895l-.891 2.583zm-53.667-88.933c3.616-8.648.844-18.542 3.621-25.58 2.96-7.5 8.651 1.957 10.732-3.884 2.081-5.842-5.245-11.503-2.407-19.48s10.578-5.97 12.184-12.576c1.606-6.606-6.999-7.488-4.284-15.34 2.715-7.853 12.873-7.057 16.72-15.92 3.757-8.658 11.951-8.855 13.596-.309 1.094 5.685-2.453 10.95-.99 19.43 1.463 8.482 8.444 8.267 6.597 14.743-1.847 6.476-10.791 3.821-13.985 11.162-3.194 7.34 4.44 12.69 1.211 18.2-3.23 5.508-9.58-.518-14.13 3.835-4.548 4.354 2.01 8.552-4.934 14.954-6.943 6.403-23.931 10.765-23.931 10.765z'/%3e%3cpath d='M547.331 647.1c27.05-22.572 44.8-59.846 55.309-105.768-4.672 26.765-18.816 81.581-55.722 109.423l.413-3.656z'/%3e%3cpath d='M579.785 607.29c.86-7.18-.866-11.741-2.202-16.699 1.796 4.326 3.722 8.52 3.931 14.452l-1.73 2.247zm12.295-29.185c-.879-7.177-3.64-11.15-6.118-15.606 2.772 3.725 5.64 7.29 7.257 12.982l-1.138 2.624zm-1.279 7.674c4.821-5.216 9.315-6.69 13.859-8.731-4.361 1.27-8.707 2.353-13.268 5.918l-.59 2.813zm-12.371 26.463c4.821-5.216 9.315-6.691 13.859-8.731-4.362 1.27-8.707 2.353-13.269 5.918l-.59 2.813z'/%3e%3cpath d='M533.383 605.314c4.26-6.586-1.069-18.724 2.254-24.109 3.541-5.739 7.22 2.947 9.785-1.556 2.564-4.504-.434-10.335 3.065-16.486 3.5-6.15 8.534-1.658 10.788-6.866 2.254-5.208-2.035-5.336 1.341-11.402 3.377-6.067 12.051-3.846 16.538-10.574 4.383-6.571 11.49-5.472 11.791 1.839.2 4.863-2.913 7.166-2.76 14.395.152 7.229 4.65 9.567 2.204 14.63-2.446 5.064-8.907 1.554-12.63 7.124-3.723 5.57.338 7.774-3.175 11.827-3.514 4.052-6.377 1.487-10.88 4.382-4.502 2.895-.728 11.329-7.568 15.547s-20.753 1.249-20.753 1.249z'/%3e%3cpath d='M522.094 611.2c24.26-10.566 48.596-42.396 63.7-78.703-7.548 21.385-27.469 63.674-63.017 80.985l-.683-2.282z'/%3e%3cpath d='M556.883 582.647c1.686-5.797.792-9.83.287-14.13.986 3.85 2.1 7.61 1.503 12.54l-1.79 1.59zm14.455-22.209c.18-6.063-1.686-9.768-3.242-13.83 1.908 3.503 3.918 6.889 4.57 11.838l-1.328 1.992zm-2.112 6.14c4.85-3.565 8.928-4.091 13.122-5.077-3.936.378-7.833.604-12.243 2.845l-.88 2.232zm-14.163 19.95c4.85-3.566 8.928-4.092 13.123-5.077-3.936.377-7.834.603-12.244 2.845l-.879 2.232zm-173.275 425.745c3.569-9.036.931-19.718 3.674-27.08 2.923-7.845 8.403 2.52 10.462-3.601 2.06-6.121-5.034-12.523-2.226-20.882 2.808-8.358 10.325-5.832 11.926-12.792 1.601-6.959-6.764-8.331-4.076-16.563 2.687-8.233 12.564-6.875 16.358-16.128 3.706-9.039 11.678-8.837 13.227.354 1.03 6.113-2.451 11.546-1.078 20.658 1.374 9.112 8.166 9.234 6.33 16.043-1.834 6.81-10.52 3.53-13.67 11.194-3.15 7.662 4.245 13.748 1.071 19.457-3.174 5.709-9.316-1.033-13.767 3.379-4.45 4.411 1.903 9.215-4.888 15.69-6.792 6.474-23.343 10.271-23.343 10.271z'/%3e%3cpath d='M375.216 1016.418c26.447-22.698 40.67-57.455 51.163-105.87-4.703 28.292-15.521 81.925-51.587 109.746l.424-3.876z'/%3e%3cpath d='M403.757 979.697c.88-7.61-.773-12.557-2.044-17.907 1.722 4.7 3.57 9.266 3.739 15.598l-1.695 2.309zm12.133-30.487c-.813-7.694-3.476-12.066-5.86-16.94 2.675 4.11 5.443 8.053 6.983 14.2l-1.123 2.74zm-1.29 8.114c4.72-5.317 9.1-6.663 13.533-8.61-4.25 1.135-8.484 2.072-12.942 5.642l-.591 2.968zm-12.19 27.582c4.72-5.317 9.1-6.663 13.532-8.61-4.25 1.135-8.483 2.072-12.942 5.642l-.59 2.968zm158.672-152.738c-7.131-7.46-19.244-10.076-25.142-16.004-6.287-6.318 7.034-6.423 2.01-11.151-5.023-4.73-15.242-1.31-22.104-7.764-6.862-6.454-.297-12.072-6.405-16.78-6.11-4.707-11.974 2.218-18.774-4.068-6.8-6.286-.138-14.585-7.367-22.35-7.06-7.585-2.579-14.703 7.456-11.801 6.675 1.93 10.246 7.624 20.107 10.648 9.861 3.025 13.63-3.063 19.462 1.785 5.833 4.849-2.112 11.171 3.87 17.609 5.98 6.438 16.044 2.598 20.056 8.142 4.013 5.545-6.035 7.945-4.007 14.037 2.027 6.092 10.249 2.594 13.085 11.77 2.837 9.176-2.247 25.927-2.247 25.927z'/%3e%3cpath d='M540.258 797.04c-7.147-4.36-12.989-5.181-19.028-6.537 5.63.643 11.196 1.109 17.626 3.922l1.402 2.614zm-24.013-25.253c-8.14-2.867-13.947-2.505-20.108-2.63 5.552-.496 10.986-1.153 17.968.331l2.14 2.299zm7.432 4.966c-2.79-6.76-1.786-11.353-1.355-16.274-1.146 4.376-2.48 8.645-1.3 14.35l2.655 1.924zm21.073 23.944c-2.789-6.76-1.785-11.353-1.355-16.274-1.146 4.376-2.48 8.645-1.3 14.35l2.655 1.924z'/%3e%3cpath d='M561.704 840.054c-8.529-34.554-35.695-63.696-78.54-95.86 25.804 17.503 73.699 52.404 82.193 98.058l-3.653-2.198z'/%3e%3cg id='d'%3e%3cpath d='M527.296 890.544c-3.353-8.85-19.798-13.112-22.673-20.186-3.064-7.54 9.126-5.225 6.542-10.926-2.584-5.701-13.345-4.096-16.877-11.879-3.532-7.782 4.826-12.277 1.244-18.154-3.583-5.876-11.854.07-15.4-7.532-3.547-7.6 6.031-14.792 2.719-23.969-3.235-8.964 3.857-15.356 11.781-10.593 5.271 3.167 6.123 9.582 13.838 14.436 7.715 4.855 13.721-.624 16.993 5.346 3.271 5.97-6.643 10.926-3.907 18.532 2.736 7.606 13.533 5.547 14.85 11.89 1.318 6.344-8.857 6.948-9.58 13.485-.724 6.537 8.25 4.488 6.962 14.295-1.288 9.807-6.492 25.255-6.492 25.255z'/%3e%3cpath d='M520.011 853.111c-4.675-5.713-13.031-8.939-17.965-11.41 4.862 1.675 13.116 4.49 17.792 8.508l.173 2.902zm-9.929-24.886c.311-7.352 3.166-11.82 5.636-16.725-2.893 4.223-5.912 8.302-7.244 14.293l1.608 2.432zm12.421 26.064c.311-7.352-.15-9.81 2.32-14.714-2.892 4.222-2.596 6.292-3.928 12.283l1.608 2.431z'/%3e%3cpath d='M525.2 906.633c6.813-36.538-12.825-78.385-38.311-118.74 16.138 22.413 52.245 73.859 40.713 121.63l-2.402-2.89z'/%3e%3cpath d='M505.403 821.845c-6.213-4.382-11.66-5.071-17.225-6.319 5.271.507 10.504.83 16.244 3.602l.98 2.717z'/%3e%3c/g%3e%3cpath d='M493.56 566.123c-1.927-7.016-11.717-8.589-13.368-14.187-1.76-5.967 5.18-4.726 3.698-9.223-1.483-4.498-6.394-4.876-8.42-11.015-2.028-6.14 3.044-8.197.993-12.785-2.052-4.588-4.158-.956-6.193-6.947-2.035-5.99 3.4-12.339 1.494-19.622-1.861-7.115 2.16-12.683 6.68-9.229 3.006 2.298 2.912 6.15 7.313 9.69 4.4 3.541 7.928.853 9.803 5.533 1.875 4.68-3.284 8.464-1.71 14.502 1.573 6.037 4.815 3.657 5.578 8.743.764 5.087-2.126 6.251-2.523 11.602-.398 5.35 6.438 6.382 5.727 14.42-.71 8.037-9.071 18.518-9.071 18.518z'/%3e%3cpath d='M491.743 578.842c5.153-26.274-2.39-63.414-16.983-94.87 9.233 17.366 25.128 56.012 18.673 95.44l-1.69-.57z'/%3e%3cpath d='M491.108 534.358c-2.673-4.397-5.511-5.675-8.324-7.424 2.77 1.106 5.55 2.055 8.219 5.074l.105 2.35zm-6.458-23.738c-3.545-3.235-6.647-3.508-9.815-4.23 3 .135 5.978.123 9.25 2.074l.565 2.157zm2.677 4.94c.16-5.991 1.774-9.773 3.169-13.888-1.636 3.584-3.345 7.057-4.09 11.996l.92 1.892zm5.243 22.338c.16-5.991 1.775-9.773 3.17-13.888-1.637 3.583-3.346 7.057-4.09 11.996l.92 1.892zm17.102 37.322c-.207-6.888-6.92-11.393-7.205-16.889-.304-5.858 14.644-4.381 14.25-8.797-.392-4.416-5.461-4.804-6.001-10.832-.54-6.028 5.332-8.027 4.364-12.534-.968-4.506-4.128-.952-4.714-6.834-.586-5.883 1.959-12.396 1.845-19.545-.112-6.984 5.565-12.43 9.425-9.027 2.567 2.264 1.468 6.042 5.18 9.53 3.712 3.486 8.359.996 11.29 4.523 2.915 3.507 2.309 6.345 2.397 12.272.09 5.926 4.118 3.603 3.602 8.594-.517 4.99-3.861 6.123-5.668 11.368-1.807 5.246 5.12 6.282 2.285 14.161-2.835 7.88-31.05 24.01-31.05 24.01z'/%3e%3cpath d='M499.22 585.584c24.422-21.57 36.501-63.212 18.317-93.996 8.18 15.13 12.468 31.125 8.112 50.275-3.15 13.846-10.823 30.446-24.8 44.286l-1.63-.565z'/%3e%3cpath d='M522.267 550.763c-1.672-4.322-6.172-9.786-8.678-11.51 2.628 1.093 7.152 6.235 9.177 9.205l-.499 2.305zm4.02-26.817c-2.89-3.185-6.084-3.465-9.23-4.183 3.121.143 6.259.14 9.196 2.066l.034 2.117zm1.154.2c1.724-5.874 4.405-9.577 6.94-13.608-2.652 3.509-5.352 6.91-7.417 11.75l.477 1.858zm-4.271 27.524c1.723-5.874 7.855-3.776 12.463-5.225-3.495.052-10.876-1.474-12.942 3.368l.478 1.857zm-44.267 24.203c-6.493-4.618-4.563-15.69-9.703-19.496-5.479-4.057-6.718 3.84-10.79.614-4.074-3.225-2.685-8.63-8.243-13.035-5.56-4.406-9.503.287-13.463-3.581-3.96-3.868.525-4.807-4.88-9.168-5.403-4.36-13.875-.838-20.651-5.53-6.62-4.581-13.78-2.292-11.875 3.812 1.267 4.06 5.25 5.359 7.286 11.366 2.037 6.006-1.995 8.813 2.123 12.525 4.118 3.712 9.864-.446 15.482 3.436 5.619 3.882 2.006 6.494 6.943 9.162 4.937 2.668 7.176-.009 12.804 1.51 5.627 1.519 4.21 9.225 12.706 11.384 8.495 2.16 22.261-2.999 22.261-2.999z'/%3e%3cpath d='M492.596 578.547c-28.791-4.023-64.127-25.614-91.088-52.699 14.459 16.215 48.316 47.311 91.062 54.718l.026-2.02z'/%3e%3cpath d='M447.235 561.697c-3.54-4.466-3.822-7.974-4.597-11.627.13 3.374.099 6.7 2.227 10.66l2.37.967zm-21.992-15.555c-2.033-4.978-1.192-8.404-.785-12.065-.947 3.267-2.037 6.457-1.22 10.676l2.005 1.389zm4.094 4.667c-6.199-2.006-10.658-1.649-15.38-1.649 4.264-.452 8.443-1.023 13.774-.026l1.606 1.675zm20.997 13.743c-6.199-2.005-10.658-1.648-15.38-1.648 4.264-.453 8.443-1.023 13.774-.027l1.606 1.675zm50.183 41.025c-8.06-3.492-6.615-15.421-13.007-18.344-6.814-3.114-7.68 5.366-12.762 2.833-5.082-2.534-3.845-8.447-10.78-11.909-6.936-3.461-11.258 2.23-16.254-.997-4.996-3.226.255-5.115-6.493-8.56-6.748-3.446-16.535 1.944-24.936-1.567-8.207-3.43-16.533.41-13.805 6.384 1.815 3.972 6.641 4.517 9.518 10.363 2.876 5.845-1.695 9.59 3.476 12.62 5.172 3.032 11.675-2.469 18.64.435 6.966 2.905 2.878 6.36 8.942 8.137 6.064 1.777 8.517-1.468 15.313-1.028 6.796.44 5.704 8.758 15.953 9.281 10.248.524 26.195-7.648 26.195-7.648z'/%3e%3cpath d='M516.976 605.581c-34.484 1.658-78.077-13.661-112.15-36.407 18.4 13.96 60.967 39.483 112.273 38.517l-.123-2.11z'/%3e%3cpath d='M461.843 597.24c-4.542-3.935-5.146-7.533-6.345-11.182.413 3.488.63 6.96 3.458 10.655l2.887.527zm-27.293-11.741c-2.794-4.774-2.057-8.516-1.853-12.413-.875 3.597-1.925 7.142-.634 11.373l2.487 1.04zm5.216 4.031c-7.51-.83-12.777.447-18.383 1.407 5.028-1.338 9.945-2.782 16.35-2.826l2.033 1.419zm25.974 10.055c-7.511-.83-12.777.447-18.383 1.407 5.028-1.338 9.944-2.781 16.35-2.826l2.033 1.419z'/%3e%3cpath d='M517.502 629.672c-8.279-2.962-7.618-14.951-14.193-17.452-7.009-2.666-7.318 5.846-12.559 3.648-5.24-2.198-4.393-8.174-11.546-11.178-7.152-3.004-11.095 2.95-16.296.055-5.2-2.894-.08-5.117-7.045-8.117-6.965-3-16.384 3.007-25.005.048-8.42-2.89-16.482 1.477-13.366 7.257 2.073 3.844 6.928 4.076 10.184 9.72 3.255 5.643-1.063 9.67 4.3 12.36 5.363 2.688 11.496-3.216 18.642-.77 7.147 2.446 3.291 6.155 9.463 7.536 6.172 1.38 8.409-2.014 15.224-2.014 6.816-.001 6.27 8.364 16.539 8.225 10.269-.14 25.658-9.318 25.658-9.318z'/%3e%3cpath d='M533.937 628.613c-34.327 3.88-78.864-8.58-114.381-29.062 19.291 12.731 63.471 35.434 114.642 31.158l-.261-2.096z'/%3e%3cpath d='M478.335 623.855c-4.795-3.63-5.633-7.179-7.07-10.74.641 3.452 1.085 6.9 4.152 10.402l2.918.338zm-28.025-9.945c-3.104-4.58-2.613-8.359-2.666-12.258-.637 3.643-1.453 7.247.114 11.382l2.552.876zm5.472 3.683c-7.554-.344-12.73 1.271-18.264 2.59 4.933-1.66 9.748-3.416 16.14-3.874l2.124 1.284zm26.598 8.349c-7.555-.343-12.73 1.271-18.265 2.59 4.933-1.659 9.748-3.415 16.14-3.874l2.124 1.284z'/%3e%3cg id='a'%3e%3cpath d='M207.197 997.382c6.594-4.258 15.187-3.229 20.577-6.552 5.746-3.542-2.93-7.124 1.577-9.691 4.508-2.568 10.299 2.924 16.456-.579s3.323-9.842 8.535-12.107c5.212-2.265 7.249 4.965 13.322 1.584 6.072-3.38 3.87-11.948 10.607-16.432 6.58-4.38 5.496-11.406-1.813-11.654-4.862-.166-8.671 3.576-15.899 3.473-7.227-.103-8.111-6.094-13.18-3.641-5.068 2.453-1.515 9.734-7.092 13.454-5.577 3.72-11.157-2.076-15.216 1.427-4.06 3.503 1.884 8.112-1.02 12.586s-7.37-.559-11.601 6.237c-4.233 6.796-5.253 21.895-5.253 21.895z'/%3e%3cpath d='M201.964 1007.083c14.53-26.156 42.618-46.357 78.95-61.542-21.397 7.61-64.522 27.103-81.906 62.39l2.956-.848z'/%3e%3cpath d='M229.91 973.981c5.8-1.706 9.83-.848 14.128-.377-3.846-.95-7.603-2.027-12.534-1.404l-1.594 1.781zm22.236-14.448c6.062-.22 9.763 1.602 13.82 3.115-3.498-1.864-6.878-3.83-11.826-4.443l-1.994 1.327zm-6.143 2.13c3.575-4.823 4.11-8.86 5.104-13.017-.386 3.897-.62 7.754-2.87 12.133l-2.234.884zm-19.977 14.145c3.575-4.823 4.11-8.86 5.105-13.017-.386 3.896-.62 7.754-2.871 12.132l-2.234.885z'/%3e%3c/g%3e%3cg id='b'%3e%3cpath d='M210.31 1024.483c9.07 3.59 19.283 0 26.659 2.74 7.86 2.916-1.833 9.73 4.283 11.752 6.117 2.023 11.83-6.42 20.182-3.663 8.353 2.757 6.447 11.475 13.346 12.93 6.9 1.455 7.619-8.17 15.839-5.544 8.22 2.627 7.627 13.976 16.924 17.811 9.081 3.746 9.475 12.86.633 15.122-5.88 1.505-11.432-2.178-20.209-.12-8.777 2.057-8.393 9.818-15.164 8.089-6.77-1.73-4.218-11.822-11.918-15.007-7.7-3.185-13.082 5.584-18.88 2.267-5.797-3.318.317-10.693-4.31-15.538-4.628-4.844-8.839 2.668-15.65-4.738-6.81-7.407-11.734-26.101-11.734-26.101z'/%3e%3cpath d='M201.572 1013.693c24.073 28.978 63.205 46.859 111.156 56.24-27.914-3.851-85.188-16.83-114.963-56.515l3.807.275z'/%3e%3cpath d='M243.677 1047.816c7.48.597 12.179-1.557 17.298-3.294-4.452 2.218-8.765 4.574-14.923 5.107l-2.375-1.812zm30.604 12.217c7.437-1.342 11.5-4.618 16.073-7.601-3.807 3.275-7.445 6.647-13.32 8.736l-2.753-1.135zm-8.001-1.037c5.53 5.104 7.165 10.033 9.39 14.989-1.42-4.792-2.646-9.575-6.455-14.474l-2.935-.515zm-27.778-12.438c5.53 5.104 7.166 10.034 9.39 14.99-1.42-4.793-2.646-9.575-6.454-14.475l-2.936-.515z'/%3e%3c/g%3e%3cuse transform='translate(43.941 17.372)' width='744.094' height='1052.362' xlink:href='%23a'/%3e%3cuse transform='translate(59.27 11.24)' width='744.094' height='1052.362' xlink:href='%23b'/%3e%3cg id='e'%3e%3cpath d='M353.525 1034.119c9.75.938 18.788-5.287 26.67-4.699 8.403.627.695 9.792 7.17 10.044 6.474.252 9.888-9.375 18.729-9.035 8.84.34 9.205 9.186 16.298 8.681 7.093-.504 5.34-9.89 14.018-9.638 8.679.252 10.993 11.25 21.029 12.36 9.802 1.084 12.508 9.676 4.47 14.262-5.345 3.05-11.693 1.057-19.72 5.43-8.027 4.371-5.676 11.676-12.713 11.882-7.037.207-7.122-10.128-15.435-11.056-8.314-.928-11.323 8.921-17.817 7.345-6.494-1.576-2.416-10.294-8.16-13.65-5.743-3.355-7.93 4.972-16.454-.23-8.524-5.202-18.085-21.696-18.085-21.696z'/%3e%3cpath d='M342.262 1026.217c30.838 21.058 73.521 27.39 122.63 23.187-28.178 3.984-87.287 7.308-126.41-22.406l3.78-.781z'/%3e%3cpath d='M391.98 1047.238c7.44-1.483 11.469-4.828 16.014-7.891-3.772 3.34-7.374 6.772-13.238 8.97l-2.776-1.078zm32.93 3.265c6.904-3.321 10.028-7.563 13.723-11.666-2.874 4.171-5.56 8.388-10.751 11.995l-2.971-.329zm-8.06 1.206c6.689 3.355 9.539 7.612 12.969 11.732-2.605-4.185-5.018-8.414-9.977-12.046l-2.992.314zm-30.232-4.252c6.688 3.355 9.538 7.612 12.968 11.733-2.605-4.185-5.018-8.415-9.977-12.046l-2.991.313z'/%3e%3c/g%3e%3cpath d='M292.72 1024.547c4.983-5.068 13.172-6.262 17.286-10.274 4.385-4.277-4.539-5.162-1.043-8.344 3.495-3.182 10.25-.04 15.024-4.383 4.775-4.342.528-8.882 4.75-11.982 4.222-3.1 7.963 2.36 12.692-1.861 4.728-4.222.49-10.745 5.546-16.031 4.939-5.164 2.13-10.684-4.674-9.153-4.526 1.019-7.074 5-13.765 6.632-6.69 1.631-9.05-3.085-13.09.136-4.042 3.22 1.11 8.363-3.074 12.747-4.184 4.383-10.823.942-13.663 4.787-2.84 3.844 3.828 6.223 2.303 10.591-1.525 4.369-6.939 1.29-9.09 7.884-2.152 6.593.798 19.25.798 19.25z'/%3e%3cpath d='M292.089 1030.323c6.657-24.958 25.657-44.795 55.246-65.91-17.769 11.34-50.817 34.166-57.754 67.31l2.508-1.4z'/%3e%3cpath d='M307.634 999.911c4.908-2.78 8.845-3.032 12.929-3.665-3.79.132-7.533.139-11.919 1.822l-1.01 1.843zm16.78-17.161c5.533-1.62 9.415-1 13.547-.72-3.707-.702-7.33-1.516-12.05-.845l-1.497 1.565zm-5.116 3.21c2.054-4.814 1.507-8.261 1.352-11.915.649 3.296 1.427 6.523.48 10.658l-1.832 1.258zm-14.775 16.375c2.054-4.814 1.507-8.262 1.353-11.915.648 3.295 1.426 6.523.479 10.658l-1.832 1.257zm40.897 14.978c4.024-6.249 12.081-9.145 15.439-14.127 3.579-5.31-5.644-4.413-2.745-8.41 2.898-3.998 10.379-2.124 14.34-7.58 3.96-5.457-1.262-9.286 2.39-13.347 3.651-4.06 8.547.823 12.485-4.5 3.938-5.323-1.676-11.202 2.378-17.692 3.96-6.34-.004-11.472-6.59-8.508-4.38 1.971-6.157 6.603-12.608 9.647-6.45 3.045-9.795-1.35-13.24 2.8-3.443 4.148 2.819 8.416-.534 13.795-3.354 5.38-10.778 3.172-12.879 7.721-2.1 4.55 5.138 5.654 4.477 10.478-.662 4.823-6.771 2.742-7.618 9.992-.846 7.25 4.705 19.73 4.705 19.73z'/%3e%3cpath d='M345.948 1023.41c1.698-27.142 16.94-51.5 42.655-79.326-15.714 15.325-44.589 45.623-44.914 81.28l2.259-1.954z'/%3e%3cpath d='M355.549 988.827c4.412-3.87 8.351-4.929 12.362-6.413-3.815.907-7.606 1.673-11.71 4.304l-.652 2.109zm13.534-21.141c5.28-2.797 9.34-2.946 13.584-3.495-3.899.027-7.736-.078-12.383 1.574l-1.2 1.921zm-4.535 4.357c1.107-5.392-.145-8.843-1.04-12.588 1.324 3.274 2.765 6.451 2.642 10.916l-1.602 1.672zm-11.661 19.921c1.108-5.393-.144-8.844-1.04-12.588 1.324 3.274 2.765 6.451 2.642 10.916l-1.602 1.672z'/%3e%3cg id='f'%3e%3cpath d='M505.882 948.746c7.671-4.14 11.335-13.195 17.453-16.668 6.522-3.7 5.27 6.858 10.184 3.836 4.913-3.022 2.763-11.794 9.47-15.923 6.706-4.129 11.274 2.196 16.277-1.689 5.003-3.884-.853-9.918 5.69-14.032 6.545-4.114 13.6 2.827 21.565-1.327 7.78-4.059 13.956.92 10.236 8.274-2.474 4.891-8.14 6.57-11.955 13.762-3.816 7.192 1.473 11.399-3.634 15.037-5.106 3.638-10.19-3.92-16.792-.485-6.603 3.436-4.045 12.17-9.616 14.227-5.571 2.058-6.789-6.374-12.668-5.996-5.88.377-3.454 7.585-12.288 7.982-8.834.396-23.922-6.998-23.922-6.998z' transform='translate(9.389 -7.87)'/%3e%3cpath d='M493.71 948.513c33.048.211 67.707-16.276 102.004-43.693-18.915 16.888-61.038 48.614-104.421 46.14l2.417-2.447z' transform='translate(9.389 -7.87)'/%3e%3cpath d='M540.711 939.345c4.784-4.776 6.14-9.232 8.016-13.736-1.17 4.324-2.167 8.633-5.438 13.154l-2.578.582zm25.953-13.911c3.495-5.863 3.745-10.53 4.487-15.378-.1 4.492-.04 8.923-2.13 14.148l-2.357 1.23zm-5.379 4.879c6.58-.846 10.756.873 15.296 2.204-3.96-1.787-7.8-3.702-13.234-3.917l-2.062 1.713zm-24.435 11.85c6.578-.846 10.755.873 15.294 2.204-3.96-1.788-7.8-3.703-13.234-3.917l-2.06 1.713z' transform='translate(9.389 -7.87)'/%3e%3c/g%3e%3cpath d='M582.995 716.21c3.617-8.648.845-18.541 3.621-25.579 2.96-7.501 8.651 1.956 10.732-3.885 2.082-5.841-5.245-11.503-2.407-19.48s10.578-5.97 12.184-12.576c1.606-6.606-6.999-7.488-4.284-15.34 2.716-7.853 12.873-7.057 16.72-15.92 3.757-8.658 11.952-8.855 13.596-.308 1.094 5.684-2.453 10.95-.99 19.43 1.464 8.481 8.445 8.267 6.598 14.743-1.847 6.475-10.792 3.82-13.986 11.16-3.193 7.341 4.44 12.692 1.211 18.2-3.23 5.51-9.58-.517-14.13 3.837-4.548 4.353 2.01 8.552-4.934 14.954-6.943 6.402-23.931 10.764-23.931 10.764z'/%3e%3cpath d='M572.933 724.398c27.051-22.571 44.801-59.844 55.31-105.767-4.673 26.766-18.817 81.581-55.723 109.423l.413-3.656z'/%3e%3cpath d='M605.387 684.59c.861-7.18-.866-11.742-2.202-16.7 1.797 4.326 3.722 8.52 3.931 14.452l-1.729 2.248zm12.296-29.186c-.88-7.177-3.642-11.15-6.12-15.606 2.774 3.725 5.64 7.29 7.259 12.982l-1.139 2.624zm-1.279 7.674c4.82-5.216 9.315-6.69 13.858-8.731-4.361 1.27-8.706 2.354-13.268 5.918l-.59 2.813zm-12.372 26.462c4.821-5.215 9.315-6.69 13.86-8.73-4.362 1.27-8.708 2.354-13.27 5.918l-.59 2.813z'/%3e%3cpath d='M572.265 672.078c4.442-7.713 2.993-17.421 6.45-23.719 3.686-6.712 7.945 2.958 10.604-2.298 2.658-5.255-3.596-11.547.03-18.725 3.627-7.177 10.705-4.289 13.005-10.328 2.3-6.04-5.728-7.976-2.233-15.052 3.496-7.076 13.002-5.021 17.687-12.908 4.576-7.704 12.345-6.84 12.887 1.45.361 5.515-3.615 10.038-3.236 18.244.38 8.205 7.003 8.897 4.49 14.783-2.512 5.886-10.652 2.23-14.539 8.76-3.887 6.53 2.695 12.567-1.01 17.361-3.704 4.795-8.993-1.717-13.808 1.816-4.815 3.533.886 8.343-6.434 13.506s-23.893 7.11-23.893 7.11z'/%3e%3cpath d='M561.786 678.53c28.239-17.873 49.427-50.837 64.795-92.906-7.584 24.705-27.44 74.716-65.619 96.309l.824-3.404z'/%3e%3cpath d='M597.172 645.053c1.664-6.678.571-11.212-.105-16.07 1.186 4.32 2.51 8.532 2.005 14.166l-1.9 1.904zm15.076-26.017c.018-6.898-2.122-11.007-3.936-15.538 2.18 3.877 4.467 7.615 5.323 13.203l-1.387 2.335zm-2.118 7.091c5.174-4.313 9.597-5.132 14.132-6.478-4.272.642-8.507 1.11-13.24 3.895l-.891 2.583zm-14.825 23.433c5.174-4.313 9.597-5.132 14.132-6.478-4.272.642-8.507 1.11-13.24 3.895l-.892 2.583zm-28.563 126.375c-7.882-5.63-18.266-4.844-24.713-9.25-6.871-4.697 3.658-8.628-1.737-12.051-5.395-3.424-12.475 3.027-19.843-1.644-7.368-4.672-3.84-12.336-10.09-15.426-6.249-3.09-8.83 5.718-16.099 1.202-7.268-4.516-4.466-14.966-12.516-20.881-7.863-5.778-6.436-14.388 2.386-14.282 5.868.07 10.4 4.904 19.121 5.186 8.721.281 5.014-4.332 11.087-1.017 6.072 3.314 4.838 12.095 11.503 17.002 6.665 4.907 15.195-4.66 20.033-.107 4.837 4.554-2.412 9.907 1.015 15.593 3.427 5.686 8.9-.273 13.89 8.353 4.99 8.627 5.963 27.322 5.963 27.322z'/%3e%3cpath d='M572.89 788.204c-17.083-33.105-50.624-59.625-94.197-80.421 25.684 10.602 77.378 37.099 97.749 81.634l-3.552-1.213z'/%3e%3cpath d='M539.74 745.768c-6.968-2.434-11.845-1.602-17.037-1.264 4.655-.955 9.207-2.073 15.145-1.024l1.892 2.288zm-26.58-19.09c-7.31-.613-11.805 1.426-16.727 3.064 4.253-2.103 8.365-4.339 14.344-4.815l2.383 1.75zm7.376 2.977c-4.231-6.155-4.808-11.169-5.936-16.355.399 4.831.616 9.606 3.256 15.137l2.68 1.218zm23.858 18.587c-4.23-6.155-4.807-11.169-5.936-16.355.4 4.831.616 9.606 3.257 15.137l2.679 1.218zm30.299 95.148c5.85-6.617 6.32-16.43 10.93-21.87 4.915-5.796 7.205 4.571 10.83-.016 3.626-4.587-1.275-12.066 3.673-18.331 4.947-6.265 11.317-1.946 14.743-7.376 3.427-5.43-4.058-9.018.741-15.21 4.8-6.194 13.71-2.18 19.831-8.916 5.98-6.581 13.42-4.099 12.338 4.135-.72 5.476-5.492 9.069-6.717 17.184-1.225 8.116 5.127 10.189 1.522 15.424-3.605 5.235-10.865-.06-15.942 5.516s.195 12.875-4.366 16.79c-4.56 3.915-8.473-3.576-13.875-1.13-5.402 2.445-.755 8.356-8.927 11.87-8.173 3.515-24.78 1.93-24.78 1.93z'/%3e%3cpath d='M563.176 847.501c31.13-11.554 58.29-39.374 81.522-77.336-12.232 22.598-41.404 67.392-82.99 80.496l1.468-3.16z'/%3e%3cpath d='M604.34 822.17c2.928-6.189 2.74-10.859 3.023-15.759.322 4.48.798 8.884-.792 14.296l-2.23 1.464zm19.824-22.302c1.36-6.752.063-11.227-.832-16.046 1.38 4.256 2.893 8.399 2.644 14.051l-1.812 1.995zm-3.453 6.498c5.906-3.134 10.395-3.004 15.1-3.368-4.31-.271-8.548-.705-13.725 1.026l-1.375 2.342zm-19.076 19.826c5.906-3.134 10.396-3.004 15.1-3.368-4.31-.271-8.547-.705-13.725 1.025l-1.375 2.343z'/%3e%3cuse transform='rotate(15 310.012 758.36)' width='744.094' height='1052.362' xlink:href='%23c'/%3e%3cuse transform='rotate(5 93.23 577.125)' id='c' width='744.094' height='1052.362' xlink:href='%23d'/%3e%3cuse transform='rotate(-10 274.952 690.264)' width='744.094' height='1052.362' xlink:href='%23e'/%3e%3cuse transform='rotate(10 225.439 653.89)' width='744.094' height='1052.362' xlink:href='%23f'/%3e%3c/g%3e%3cuse transform='matrix(-1 0 0 1 840 .113)' width='1' height='1' xlink:href='%23g'/%3e%3c/g%3e%3cg stroke='%23d4af37' stroke-width='.75'%3e%3cpath d='m409.242 237.563-19.765 24.609c6.548 6.237 10.26 16.668 10.273 25.148.016 10.607-1.723 17.955-3.867 24.657-.023.07-.048.14-.07.21H450v-74.124c-11.935 7.409-28.331 10.36-40.758-.5z' fill='%23007ea8'/%3e%3cpath d='M490.758 237.563c-12.427 10.86-28.823 7.909-40.758.5v74.125h54.188c-.023-.071-.048-.14-.07-.211-2.145-6.702-3.884-14.05-3.868-24.657.013-8.48 3.725-18.911 10.273-25.148l-19.765-24.61z' fill='%23fff'/%3e%3cpath d='M395.813 312.188c-2.952 9.169-6.658 17.15-7.813 30.414-1.705 19.584 14.046 30.306 20.555 33.375 10.034 4.731 20.518 3.095 31.25 4.468 4.98.638 7.766 3.789 10.195 6.368 2.429-2.58 5.215-5.73 10.195-6.368 10.732-1.373 21.216.263 31.25-4.468 6.509-3.07 22.26-13.791 20.555-33.375-1.155-13.264-4.861-21.245-7.813-30.414H395.813z' fill='%23d91023'/%3e%3c/g%3e%3cg stroke='%23d4af37' stroke-width='3'%3e%3cg transform='matrix(.119 0 0 .125 327.413 310.562)' fill='%2300a854' stroke-width='6.156'%3e%3cg id='j' stroke-width='3.078'%3e%3cpath d='M1074.733-201.404s5.849-20.366 17.932-29.304c12.084-8.938 25.212-5.671 33.195-8.854-5.322 6.748-5.925 20.263-17.932 29.305-12.006 9.041-33.195 8.853-33.195 8.853zm48.699-36.346c-8.333 2.219-13.523-.31-24.954 3.897m17.285 1.827c-8.333 2.219-14.117-1.33-25.335 3.386m16.132 3.483c-7.912 2.781-11.632-1.2-22.466 4.03m13.263 2.838c-7.912 2.782-9.57-1.713-17.49 4.297m9.31 1.808c-5.168 1.667-7.531-.17-12.134 5.076m46.389-30.642c-4.497 7.358-3.55 13.053-10.835 22.815m3.166-17.091c-4.497 7.358-2.742 13.912-10.454 23.325m1.251-16.456c-4.918 6.794-2.159 11.492-10.256 20.39m1.053-13.522c-4.918 6.794-1.08 9.663-9.096 15.545m.916-9.44c-3.068 4.48-1.98 7.268-8.318 10.188'/%3e%3cpath d='M1130.782-243.633s-13.538 10.037-24.157 18.03c-10.62 7.992-31.636 24.008-31.636 24.008s21.334-15.59 32.017-23.497c10.684-7.907 24.158-18.03 24.158-18.03m-23.049-73.872s16.753 12.975 20.58 27.51c3.828 14.534-4.068 25.52-4.068 34.113-4.297-7.442-16.628-13.007-20.58-27.509-3.953-14.501 4.068-34.114 4.068-34.114zm15.728 58.696c1.025-8.562 5.296-12.446 5.62-24.622m-8.097 15.379c1.025-8.562 6.463-12.621 6.237-24.788m-9.209 13.696c.346-8.38 5.422-10.36 4.576-22.362m-7.548 11.27c.346-8.38 5.135-8.257 2.485-17.839m-5.127 7.979c.366-5.418 2.946-6.933-.222-13.15m11.285 54.437c-5.17-6.902-10.81-8.13-17.18-18.513m14.703 9.27c-5.17-6.902-11.908-7.699-17.796-18.348m14.824 7.256c-4.49-7.084-9.877-6.262-15.144-17.078m12.172 5.986c-4.49-7.084-8.576-4.583-11.072-14.206m8.43 4.346c-3.026-4.509-6.019-4.53-6.384-11.499'/%3e%3cpath d='M1126.586-249.291s-4.31-16.293-7.802-29.117c-3.491-12.824-10.586-38.277-10.586-38.277s6.581 25.59 9.97 38.442a5074.411 5074.411 0 0 0 7.802 29.117'/%3e%3cg id='h' stroke-width='3.078'%3e%3cpath d='M1206.423-261.845s16.752 12.975 20.58 27.51c3.828 14.534-4.069 25.519-4.069 34.113-4.297-7.443-16.628-13.008-20.58-27.509-3.952-14.501 4.069-34.114 4.069-34.114zm15.727 58.695c1.025-8.56 5.296-12.445 5.621-24.622m-8.098 15.379c1.026-8.561 6.464-12.62 6.238-24.787m-9.21 13.695c.347-8.38 5.423-10.36 4.576-22.36m-7.547 11.268c.345-8.38 5.135-8.256 2.485-17.838m-5.128 7.979c.366-5.418 2.947-6.933-.221-13.15m11.284 54.436c-5.169-6.901-10.81-8.13-17.18-18.512m14.703 9.269c-5.168-6.902-11.907-7.698-17.795-18.348m14.823 7.256c-4.49-7.084-9.876-6.26-15.143-17.077m12.172 5.985c-4.49-7.084-8.576-4.582-11.072-14.205m8.429 4.346c-3.025-4.51-6.018-4.53-6.383-11.5'/%3e%3cpath d='M1224.894-194.142s-4.31-16.293-7.802-29.117c-3.491-12.825-10.587-38.278-10.587-38.278s6.582 25.59 9.97 38.443a5154.98 5154.98 0 0 0 7.803 29.117m-53.774 57.257s2.86-20.996 13.533-31.579c10.673-10.582 24.135-9.236 31.578-13.533-4.297 7.443-2.951 20.904-13.534 31.578-10.582 10.673-31.577 13.533-31.577 13.533zm42.968-42.97c-7.928 3.394-13.427 1.637-24.135 7.444m17.368-.677c-7.927 3.393-14.161.714-24.585 6.993m16.465 1.127c-7.43 3.89-11.684.485-21.653 7.218m13.533.902c-7.43 3.89-9.718-.319-16.69 6.767m9.472.451c-4.874 2.392-7.477.915-11.277 6.767m41.502-36.992c-3.393 7.928-1.637 13.428-7.444 24.135m.677-17.368c-3.393 7.928-.713 14.162-6.992 24.586m-1.128-16.466c-3.89 7.43-.484 11.684-7.218 21.654m-.902-13.534c-3.89 7.43.32 9.718-6.767 16.692m-.451-9.474c-2.391 4.875-.914 7.477-6.766 11.278'/%3e%3cpath d='M1219.9-186.569s-11.954 11.88-21.315 21.315c-9.36 9.436-27.856 28.308-27.856 28.308s18.871-18.496 28.307-27.857a5074.411 5074.411 0 0 0 21.315-21.315'/%3e%3c/g%3e%3cpath d='M1057.073-278.588s20.562-5.119 34.344.877c13.783 5.996 17.517 18.999 24.265 24.321-8.505-1.235-20.511 5-34.344-.877-13.834-5.878-24.265-24.321-24.265-24.321zm55.825 24.001c-6.087-6.107-6.492-11.866-15.851-19.662m7.06 15.883c-6.088-6.108-5.907-12.891-15.6-20.249m5.05 15.713c-6.365-5.462-4.777-10.674-14.723-17.441m4.173 12.905c-6.365-5.462-3.302-9.145-12.466-12.999m3.089 8.967c-4.027-3.642-3.619-6.607-10.462-7.97m49.73 24.853c-8.62-.216-13.078 3.452-25.175 2.024m16.384-5.803c-8.62-.217-13.42 4.581-25.427 2.609m14.877-7.145c-8.343-.862-11.032 3.877-22.787 1.314m12.237-5.85c-8.342-.862-8.908 3.895-18.01-.105m8.633-3.927c-5.414-.416-7.284 1.92-12.982-2.109'/%3e%3cpath d='M1121.669-251.163s-15.462-6.705-27.693-11.906c-12.232-5.201-36.61-15.393-36.61-15.393s24.168 10.68 36.358 15.979a5135.657 5135.657 0 0 0 27.693 11.906m-49.134-133.333s14.687-15.274 29.546-17.531c14.86-2.257 24.941 6.766 33.486 7.682-7.858 3.479-14.706 15.147-29.546 17.53-14.84 2.385-33.486-7.681-33.486-7.681zm60.038-9.381c-8.404-1.933-11.81-6.593-23.883-8.214m14.428 9.691c-8.403-1.932-11.86-7.772-23.981-8.844m12.635 10.617c-8.295-1.238-9.723-6.496-21.745-6.934m10.4 8.707c-8.295-1.238-7.662-5.987-17.472-4.373m7.387 5.949c-5.348-.942-6.58-3.67-13.099-1.182m55.33-5.417c-7.414 4.403-9.237 9.881-20.239 15.108m10.784-13.631c-7.413 4.404-8.923 11.02-20.14 15.738m8.794-13.965c-7.522 3.709-7.278 9.152-18.594 13.237m7.249-11.464c-7.522 3.709-5.47 8.038-15.305 9.494m5.22-7.918c-4.806 2.527-5.146 5.5-12.114 5.121'/%3e%3cpath d='M1141.57-395.06s-16.66 2.55-29.783 4.654c-13.124 2.105-39.188 6.447-39.188 6.447s26.146-3.817 39.286-5.816c13.14-2 29.783-4.654 29.783-4.654m-39.535-60.472s19.984 7.045 28.19 19.637c8.207 12.592 4.168 25.504 6.872 33.661-6.42-5.713-19.876-7.115-28.19-19.637-8.314-12.52-6.872-33.661-6.872-33.661zm33.397 50.766c-1.721-8.45 1.11-13.48-2.412-25.14m-2.848 17.145c-1.72-8.449 2.164-14.013-1.878-25.49m-4.432 15.897c-2.309-8.063 1.887-11.54-2.693-22.665m-3.619 13.071c-2.308-8.063 2.277-9.452-3.253-17.714m-2.357 9.187c-1.357-5.258.616-7.508-4.347-12.413m27.839 48.122c-7.078-4.925-12.82-4.316-22.132-12.167m16.872 4.172c-7.078-4.925-13.725-3.56-22.664-11.817m16.354 2.224c-6.491-5.312-11.345-2.836-19.748-11.445m13.436 1.851c-6.49-5.311-9.582-1.651-14.979-10m9.369 1.473c-4.29-3.328-7.138-2.407-9.677-8.907'/%3e%3cpath d='M1140.968-396.448s-9.218-14.11-16.567-25.184c-7.349-11.075-22.092-33.003-22.092-33.003s14.299 22.22 21.56 33.354a5079.768 5079.768 0 0 0 16.566 25.183'/%3e%3cg id='i' stroke-width='3.078'%3e%3cpath d='M1213.668-401.795s16.753 12.975 20.58 27.51c3.828 14.534-4.068 25.519-4.068 34.113-4.297-7.443-16.628-13.008-20.58-27.51-3.953-14.5 4.068-34.113 4.068-34.113zm15.727 58.695c1.026-8.561 5.297-12.446 5.622-24.622m-8.098 15.379c1.025-8.561 6.463-12.62 6.237-24.787m-9.209 13.695c.346-8.38 5.422-10.36 4.575-22.36m-7.548 11.268c.347-8.38 5.136-8.256 2.486-17.838m-5.127 7.979c.365-5.418 2.946-6.933-.222-13.15m11.284 54.436c-5.168-6.901-10.81-8.13-17.179-18.512m14.703 9.269c-5.17-6.902-11.908-7.698-17.796-18.348m14.824 7.256c-4.49-7.084-9.877-6.26-15.144-17.077m12.171 5.985c-4.49-7.084-8.575-4.582-11.071-14.205m8.43 4.346c-3.026-4.51-6.019-4.531-6.384-11.5'/%3e%3cpath d='M1232.139-334.092s-4.31-16.293-7.802-29.117c-3.491-12.825-10.587-38.278-10.587-38.278s6.582 25.59 9.971 38.443a5074.411 5074.411 0 0 0 7.802 29.117m-64.409 39.02s8.197-19.54 21.245-27c13.05-7.458 25.704-2.674 34.005-4.899-6.077 6.077-8.261 19.429-21.245 27-12.984 7.57-34.005 4.899-34.005 4.899zm52.626-30.383c-8.536 1.225-13.393-1.895-25.239.943m16.951 3.841c-8.535 1.226-13.863-2.976-25.557.391m15.612 5.351c-8.184 1.834-11.41-2.556-22.783 1.368m12.838 4.374c-8.184 1.834-9.304-2.824-17.873 2.216m9.033 2.888c-5.327 1.048-7.459-1.052-12.644 3.617m49.662-24.989c-5.33 6.779-5.056 12.546-13.437 21.385m5.149-16.601c-5.329 6.78-4.354 13.495-13.117 21.938m3.172-16.196c-5.68 6.17-3.492 11.16-12.576 19.047m2.631-13.305c-5.68 6.17-2.206 9.47-10.856 14.37m2.016-9.266c-3.572 4.089-2.818 6.985-9.455 9.142'/%3e%3cpath d='M1227.73-330.272s-14.622 8.38-26.106 15.072c-11.484 6.692-34.233 20.133-34.233 20.133s23.015-12.98 34.552-19.58a5074.411 5074.411 0 0 0 26.105-15.072'/%3e%3c/g%3e%3cpath d='M1182.237-442.008s19.633-7.97 34.124-3.98c14.49 3.991 20.024 16.337 27.455 20.653-8.594-.022-19.6 7.845-34.124 3.98-14.525-3.867-27.455-20.653-27.455-20.653zm58.653 15.881c-6.888-5.187-8.102-10.83-18.467-17.228m9.231 14.727c-6.888-5.187-7.667-11.928-18.301-17.843m7.217 14.842c-7.072-4.508-6.236-9.893-17.038-15.188m5.953 12.187c-7.072-4.509-4.56-8.588-14.176-11.11m4.324 8.442c-4.5-3.037-4.515-6.03-11.482-6.414m52.739 17.585c-8.564 1.003-12.46 5.264-24.636 5.557m15.4-8.058c-8.564 1.003-12.638 6.43-24.804 6.172m13.72-9.173c-8.381.324-10.375 5.395-22.373 4.517m11.288-7.518c-8.38.324-8.27 5.113-17.844 2.438m7.992-5.106c-5.419.352-6.94 2.928-13.15-.256'/%3e%3cpath d='M1250.057-423.975s-16.253-4.456-29.096-7.879c-12.843-3.422-38.416-10.07-38.416-10.07s25.434 7.161 38.25 10.686a5074.41 5074.41 0 0 0 29.095 7.878m-34.755-73.778s19.518 8.248 26.943 21.316c7.425 13.068 2.608 25.71 4.81 34.017-6.06-6.093-19.406-8.312-26.943-21.316-7.537-13.004-4.81-34.017-4.81-34.017zm30.245 52.705c-1.203-8.539 1.93-13.388-.877-25.241m-3.886 16.941c-1.203-8.539 3.013-13.856-.324-25.558m-5.391 15.598c-1.813-8.189 2.586-11.404-1.308-22.787m-4.408 12.827c-1.813-8.189 2.848-9.297-2.17-17.88m-2.911 9.027c-1.034-5.33 1.072-7.456-3.584-12.654m24.859 49.727c-6.765-5.347-12.532-5.089-21.35-13.492m16.587 5.192c-6.765-5.347-13.483-4.39-21.903-13.175m16.188 3.215c-6.156-5.697-11.151-3.521-19.015-12.626m13.299 2.666c-6.155-5.697-9.464-2.232-14.342-10.894m9.261 2.041c-4.08-3.583-6.978-2.837-9.117-9.48'/%3e%3cpath d='M1250.34-436.43s-8.342-14.644-15.003-26.145c-6.662-11.502-20.043-34.286-20.043-34.286s12.92 23.049 19.49 34.603a5040.778 5040.778 0 0 0 15.003 26.145'/%3e%3cuse transform='translate(-32 -18)' width='744.094' height='1052.362' xlink:href='%23h'/%3e%3cpath d='M1142.423-297.845s16.752 12.975 20.58 27.51c3.828 14.534-4.069 25.519-4.069 34.113-4.297-7.443-16.628-13.008-20.58-27.509-3.952-14.501 4.069-34.114 4.069-34.114zm15.727 58.695c1.025-8.56 5.296-12.445 5.621-24.622m-8.098 15.379c1.026-8.561 6.464-12.62 6.238-24.787m-9.21 13.695c.347-8.38 5.423-10.36 4.576-22.36m-7.547 11.268c.345-8.38 5.135-8.256 2.485-17.838m-5.128 7.979c.366-5.418 2.947-6.933-.221-13.15m11.284 54.436c-5.169-6.901-10.81-8.13-17.18-18.512m14.703 9.269c-5.168-6.902-11.907-7.698-17.795-18.348m14.823 7.256c-4.49-7.084-9.876-6.26-15.143-17.077m12.172 5.985c-4.49-7.084-8.576-4.582-11.072-14.205m8.429 4.346c-3.025-4.51-6.018-4.53-6.383-11.5'/%3e%3cpath d='M1160.894-230.142s-4.31-16.293-7.802-29.117c-3.491-12.825-10.587-38.278-10.587-38.278s6.582 25.59 9.97 38.443a5154.98 5154.98 0 0 0 7.803 29.117m-53.774 57.257s2.86-20.996 13.533-31.579c10.673-10.582 24.135-9.236 31.578-13.533-4.297 7.443-2.951 20.904-13.534 31.578-10.582 10.673-31.577 13.533-31.577 13.533zm42.968-42.97c-7.928 3.394-13.427 1.637-24.135 7.444m17.368-.677c-7.927 3.393-14.161.714-24.585 6.993m16.465 1.127c-7.43 3.89-11.684.485-21.653 7.218m13.533.902c-7.43 3.89-9.718-.319-16.69 6.767m9.472.451c-4.874 2.392-7.477.915-11.277 6.767m41.502-36.992c-3.393 7.928-1.637 13.428-7.444 24.135m.677-17.368c-3.393 7.928-.713 14.162-6.992 24.586m-1.128-16.466c-3.89 7.43-.484 11.684-7.218 21.654m-.902-13.534c-3.89 7.43.32 9.718-6.767 16.692m-.451-9.474c-2.391 4.875-.914 7.477-6.766 11.278'/%3e%3cpath d='M1155.9-222.569s-11.954 11.88-21.315 21.315c-9.36 9.436-27.856 28.308-27.856 28.308s18.871-18.496 28.307-27.857a5074.411 5074.411 0 0 0 21.315-21.315'/%3e%3cuse transform='translate(-62 -40)' width='744.094' height='1052.362' xlink:href='%23i'/%3e%3cuse transform='translate(-31 -20)' width='744.094' height='1052.362' xlink:href='%23i'/%3e%3c/g%3e%3cuse transform='matrix(-1 0 0 1 2501 0)' width='744.094' height='1052.362' xlink:href='%23j'/%3e%3cpath d='M1250.5-437.125c-8.62 41.666-8.594 79.156-8.594 79.156-.505 13.948-7.41 23.678-13.781 20-54.887-31.689-60.291-37.57-89.125-59.669 24.306 26.461 31.231 38.23 86.719 70.266 10.728 6.193 12.062 16.378 11.625 29.469l-1.688 61.716c-.302 9.035 5.747 50.084-22.562 34.218-65.373-36.637-63.772-33.585-95.094-51.669 38.074 32.327 24.373 23.468 90.594 61.7 11.943 6.896 24.531 24.497 24.531 32.844 0 124.331 1.865 101.486-12.813 139.096h60.376c-14.678-37.61-12.813-14.765-12.813-139.096 0-8.347 12.588-25.948 24.531-32.844 66.221-38.232 51.52-29.373 89.594-61.7-31.322 18.084-28.72 15.032-94.094 51.67-28.309 15.865-22.26-25.184-22.562-34.22l-1.688-61.715c-.437-13.09.897-23.276 11.625-29.47 55.488-32.035 62.413-43.804 86.719-70.265-28.834 22.099-34.238 27.98-89.125 59.67-6.37 3.677-13.276-6.053-13.781-20 0 0 .027-37.49-8.594-79.157z' fill='%23947245'/%3e%3c/g%3e%3cg stroke-width='2.727'%3e%3cpath d='M264.452 424.637c-.25.946 1.503 12.373.546 15.66-.508 4.54-.635 5.238-1.704 11.12-1.069 5.881-2.364 17.308-4.391 24.163-.17.576-.408 1.358-.452 2.042-.567 3.502-.584 5.981-.211 10.35l3.512 19.415s1.634 1.918 1.881 2.722c.247.804-.172 2.006-.006 2.25.927 1.362 1.074 2.702 2.177 3.848.173.18.92.107 1.118.356.171.216 1.485.3 1.74.466.784.74.646 1.276 1.049 2.404l-6.321.026c.162-2.822-2.057-3.938-2.057-3.938-.244-.308-2.823-1.017-3.121-2.683-.413-2.392-.068-2.869-.068-2.869s-2.115-9.062-2.996-11.33c-.504-1.758-.605-2.592-.855-4.127-.76-4.24-1.017-6.075-3.32-12.405-.547-1.097-1.987-1.453-1.869-2.898.154-.557.427-.979.701-1.462l.072-1.11c.336-5.183.625-10.384 1.056-15.547a1.85 1.85 0 0 0 .236-.741c.602-8.797-4.079-17.02-7.1-24.897-.548-1.43-.075-2.995-.696-4.423-3.214-1.108-5.415-6.475-6.563-9.854-1.122-3.303-1.617-8.284-.764-11.589.278-1.077.434-1.814.964-2.522m63.313 36.682c1.026-.24 1.416-.319 2.51-.308 0 0 .74 1.02.959 1.499 1.529 2.753 3.371 15.341 4.434 21.193.33 1.814 1.094 5.943 1.434 7.866 0 0-.377 2.066.288 4.345.203.695.426 1.387.609 2.085.803 3.062 1.716 3.813 1.716 3.813.214.733 1.468 6.751 1.681 7.484 1.842 8.241 2.741 13.212 2.623 16.652-.115 4.714-.09 4.254.284 4.639 1.037 1.068 1.567.406 3.787 6.085.133.454.265-.217.505.234.287.538.78.477 1.18.53.73.096.59.23 1.181.307a6.248 6.248 0 0 0 1.58.015l5.461.037c-.67-1.992-2.887-3.369-4.828-3.386-.857-.528-1.85-1.282-2.155-2.287-1.251-2.003-1.608-2.427-2.262-3.335.108-.722-.414-1.692-.64-2.47l-1.958-23.232s.403-2.328.372-4.745c-.164-12.768.578-25.616 1.05-38.434.16-1.074 4.04-4.71 4.04-4.71' fill='%23e3e4e5' stroke-linecap='square' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M356.761 323.788a7.326 7.326 0 0 0-5.446 2.507c-1.794 2.469-2.968 7.56-3.099 10.618-.034.807.3 1.426.045 2.149-.871 2.471-1.585 4.615-1.643 4.946-.757 4.317-.911 19.802-2 25.736-1.09 5.933-6.098 14.56-7.965 17.344-1.227 1.365-3.757 2.059-4.535 2.236-.779.177-7.197-.484-7.197-.484-8.468-.595-21.063-5.268-29.51-6.407-8.447-1.14-18.667-.597-26.626-1.443 0 0-9.95-3.678-19.116-1.016-9.031 2.623-14.11 7.479-21.957 19.542 0 0-3.37 4.117-3.41 5.468-.134 4.435 1.779 10.02 5.205 12.835 1.104 1.07.809.112.714-.165.01.019.011.014.027.048.304.659.664 2.389 1.099 2.991 1.166 1.62 2.383 3.41 3.312 5.198.778 1.498.373 3.254 1.072 4.762 3.846 8.304 2.058 16.825 2.024 26.49a2.067 2.067 0 0 1-.206.833c-.105 5.681-5.654 13.287-5.654 18.98v1.22c-.265.554-.532 1.042-.66 1.664-.028 1.591-2.167 1.838-1.493 2.982 2.955 6.687 3.364 8.665 4.491 13.22.381 1.653.55 2.554 1.223 4.424 1.12 2.39 4.063 12.08 4.063 12.08s-.342.554.277 3.126c.442 1.79 3.302 2.311 3.59 2.623 0 0 2.664 1.635 2.687 4.733 0 .394 2.52.222 2.857.222 1.02 0 1.998-.155 3.018-.155-.124-1.296-.45-2.056-1.357-2.787-.29-.157-1.46-.537-1.661-.755-.234-.254-.423-.769-.625-.949-1.283-1.143-1.538-2.591-2.643-3.987-.198-.25.174-1.605-.152-2.459-.325-.854-2.24-2.787-2.24-2.787l-5.198-20.858c-.714-4.734 2.864-7.443 3.234-11.325 0-.75 4.58-12.156 4.812-12.776 3.32-8.9 8.794-22.846 8.68-28.717-.126-6.571-.255 1.27.342-3.706.45-3.747-1.757-13.77-1.552-14.829 12.43 20.753 24.519 28.246 44.457 26.269 1.088-.098 1.498-.124 2.58.029 0 0 .44 1.085.518 1.578.72 2.868-1.1 15.308-1.74 21.119-.2 1.801-.638 5.903-.858 7.81 0 0-.973 1.955-.973 4.25 0 .7.02 1.4 0 2.1-.09 3.073.598 3.92.598 3.92 0 .737-.5 6.735-.5 7.472-.56 8.229-1.153 12.11-2.268 15.428-.198.591-.694 1.442-1.303 1.607-.574.43-1.53 1.332-1.634 2.11 0 .671.066 1.276.205 1.878.103.446.565 1.177.821 1.548.381 1.768.197 3.614.197 5.42 0 .458.204 1.187.312 1.656.13.559.637.564 1.018.667.696.189.454.622 1.018.775.467.126 1.008.106 1.536.106l5.402.03c-.088-2.019-2.06-3.058-3.429-4.027-.697-.623-.632-.767-.643-1.781 0-1.29-.143-2.736-.143-4.027 0-.695.298-.964.563-1.539.316-.686.08-1.694.08-2.477 1.006-6.872 2.164-13.925 3.992-20.616 1.465-1.898 2.108-4.32 2.544-6.708 0 0 1.177-3.191.777-4.888l4.964-30.15c.471-1.02 1.293-1.93 2.384-2.225 6.187-2.727 12.294-4.578 18.117-8.624 6.305-4.382 10.088-11.538 14.58-17.984.987-1.913 2.142-3.583 3.26-5.371 3.857-5.536 8.702-20.028 10-27.217 1.533-8.488.92-16.881 3.384-26.937.529-2.157 2.354-3.884 2.777-6.117l-.044-.406 1.232-.165c1.317-.155 2.943-.421 3.875-.445.979-.12 2.985-.107 3.16-.107.175 0 1.224.223 1.84.223.51 0 1.347.542 1.857.542.544 0 .95-.094 1.304-.542.65-.821.724-.563.893-1.297.056-.244.312.005.437-.039.471-.165.849-.777 1.411-.929.376-.102.662-.241.732-.62.088-.476.098-1.008.098-1.548 0-.791-.032-.831-.607-.987-.074-.02-.137-.08-.205-.116-.595-.161.098-1.33.098-1.994 0-.677-.018-1.162-.196-1.549-.232-.502-.334-.707-.822-1.103-.359-.292-.54-.676-.92-.88-2.81-2.42-4.042-4.224-6.018-6.089.33-.412.273-.616.152-1.297-.902-2.728-2.637-3.233-5.562-5.45-2.733-1.578-6.308-3.295-10.099-3.648h-1.634a6.64 6.64 0 0 0-.402-.01z' fill='%23fff' stroke-linecap='square' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M438.616 251.458a2.003 2.003 0 0 0-1.493.691c-.491.682-.813 2.086-.849 2.93-.01.223.082.393.012.593-.239.682-.434 1.273-.45 1.364-.208 1.191-.25 5.464-.548 7.101-.299 1.637-1.638 4.049-2.184 4.785-.302.408-1.03.568-1.243.617-.214.05-1.973-.133-1.973-.133-2.321-.164-5.774-1.454-8.09-1.768-2.315-.314-5.117-.165-7.299-.398 0 0-2.728-1.015-5.24-.28-2.476.723-3.868 2.063-6.02 5.391 0 0-.923 1.136-.934 1.51-.036 1.2.467 2.705 1.373 3.495.017.014.296.194.313.208.04-1.935.353-2.857.353-2.857-.021.972.16 1.915.47 2.809.203.588.699 1.131 1.013 1.693.486 1.314.851 5.16 1.095 6.762.126.825-.494 3.606-.906 4.853-.799 2.419-1.15 4.591-.21 2.954.42-.73 2.02-3.79 2.842-6.64.822-2.85 1.624-4.5 1.374-5.08-.081-.188-.314-4.142-.367-4.296a2.36 2.36 0 0 1-.07-.24c-.022-.091-.078-.165-.018-.479l.39-2.024c4.024 7.526 10.439 8.46 14.79 3.202-.655 2.134-.683 5.237-.606 6.545.076 1.309.066.749.044 1.207l-.769 7.184-.068.141s-.174.395-.174.767c0 .175.007.376 0 .606-.01.337-.003.525.04.577l.124.154a7.54 7.54 0 0 1-.025.767c-.005.086-.014.197-.022.296l.096-.12c.269-.338.418-.858.529-1.469 0 0 .008-.054.014-.077a4.054 4.054 0 0 0 .144-.473c.054-.222.064-.422.064-.422l-.041-.179.03-.181s1.358-8.274 1.36-8.319a.773.773 0 0 1 .071-.232c.26-.365.842-.773 1.057-1.023.221-.255 1.022-3.622.901-5.722-.278-4.815 6.057-6.183 8.178-3.806.796-.431 1.462-1.051 2.03-1.8.537-.709.98-1.538 1.355-2.44.05-.181.112-.377.157-.548.117-.454.21-.87.274-1.223.052-.293.095-.586.132-.878.037-.293.069-.587.096-.882.053-.59.092-1.185.14-1.794.047-.61.102-1.231.188-1.875a20.739 20.739 0 0 1 .372-2.003c.036-.149.094-.289.164-.427.069-.138.148-.273.227-.409.08-.135.157-.27.223-.41a1.89 1.89 0 0 0 .147-.441l-.012-.113.217-.029c.002-.006.002-.015.003-.021-1.025.215-.564.05-1.554.181-.293 0-.541-.017-.776-.12-.5-.351-.921-.813-1.136-1.42 0-.68.221-1.975.407-2.324.617-1.156 1.122-.28 2.349.06 1.166.325 2.907 1.238 3.564 1.87.076.074.962.116 1.05.068.065-.036.136-.025.203-.048.001-.018.011-.038.015-.057.003-.016 0-.027.005-.045.027-.109.073-.237.073-.328a2.39 2.39 0 0 0-.01-.238.646.646 0 0 0-.044-.192 1.029 1.029 0 0 0-.066-.123.639.639 0 0 0-.159-.182c-.098-.08-.148-.186-.252-.243-.77-.667-1.108-1.165-1.65-1.68.09-.113.075-.17.042-.357-.248-.753-.723-.892-1.525-1.504-.75-.435-1.73-.91-2.768-1.007h-.448a1.832 1.832 0 0 0-.11-.002z' fill='%23d18219' stroke='none'/%3e%3cpath d='M356.761 323.788a7.326 7.326 0 0 0-5.446 2.507c-1.794 2.469-2.968 7.56-3.099 10.618-.034.807.3 1.426.045 2.149-.871 2.471-1.585 4.615-1.643 4.946-.757 4.317-.911 19.802-2 25.736-1.09 5.933-6.098 14.56-7.965 17.344-1.227 1.365-3.757 2.059-4.535 2.236-.779.177-7.197-.484-7.197-.484-8.468-.595-21.063-5.268-29.51-6.407-8.447-1.14-18.667-.597-26.626-1.443 0 0-9.95-3.678-19.116-1.016-9.031 2.623-14.11 7.479-21.957 19.542 0 0-3.37 4.117-3.41 5.468-.134 4.435 1.779 10.02 5.205 12.835 1.104 1.07.809.112.714-.165.01.019.011.014.027.048.304.659.664 2.389 1.099 2.991 1.166 1.62 2.383 3.41 3.312 5.198.778 1.498.373 3.254 1.072 4.762 3.846 8.304 2.058 16.825 2.024 26.49a2.067 2.067 0 0 1-.206.833c-.105 5.681-5.654 13.287-5.654 18.98v1.22c-.265.554-.532 1.042-.66 1.664-.028 1.591-2.167 1.838-1.493 2.982 2.955 6.687 3.364 8.665 4.491 13.22.381 1.653.55 2.554 1.223 4.424 1.12 2.39 4.063 12.08 4.063 12.08s-.342.554.277 3.126c.442 1.79 3.302 2.311 3.59 2.623 0 0 2.664 1.635 2.687 4.733 0 .394 2.52.222 2.857.222 1.02 0 1.998-.155 3.018-.155-.124-1.296-.45-2.056-1.357-2.787-.29-.157-1.46-.537-1.661-.755-.234-.254-.423-.769-.625-.949-1.283-1.143-1.538-2.591-2.643-3.987-.198-.25.174-1.605-.152-2.459-.325-.854-2.24-2.787-2.24-2.787l-5.198-20.858c-.714-4.734 2.864-7.443 3.234-11.325 0-.75 4.58-12.156 4.812-12.776 3.32-8.9 8.794-22.846 8.68-28.717-.126-6.571-.255 1.27.342-3.706.45-3.747-1.757-13.77-1.552-14.829 12.43 20.753 24.519 28.246 44.457 26.269 1.088-.098 1.498-.124 2.58.029 0 0 .44 1.085.518 1.578.72 2.868-1.1 15.308-1.74 21.119-.2 1.801-.638 5.903-.858 7.81 0 0-.973 1.955-.973 4.25 0 .7.02 1.4 0 2.1-.09 3.073.598 3.92.598 3.92 0 .737-.5 6.735-.5 7.472-.56 8.229-1.153 12.11-2.268 15.428-.198.591-.694 1.442-1.303 1.607-.574.43-1.53 1.332-1.634 2.11 0 .671.066 1.276.205 1.878.103.446.565 1.177.821 1.548.381 1.768.197 3.614.197 5.42 0 .458.204 1.187.312 1.656.13.559.637.564 1.018.667.696.189.454.622 1.018.775.467.126 1.008.106 1.536.106l5.402.03c-.088-2.019-2.06-3.058-3.429-4.027-.697-.623-.632-.767-.643-1.781 0-1.29-.143-2.736-.143-4.027 0-.695.298-.964.563-1.539.316-.686.08-1.694.08-2.477 1.006-6.872 2.164-13.925 3.992-20.616 1.465-1.898 2.108-4.32 2.544-6.708 0 0 1.177-3.191.777-4.888l4.964-30.15c.471-1.02 1.293-1.93 2.384-2.225 6.187-2.727 12.294-4.578 18.117-8.624 6.305-4.382 10.088-11.538 14.58-17.984.987-1.913 2.142-3.583 3.26-5.371 3.857-5.536 8.702-20.028 10-27.217 1.533-8.488.92-16.881 3.384-26.937.529-2.157 2.354-3.884 2.777-6.117l-.044-.406 1.232-.165c1.317-.155 2.943-.421 3.875-.445.979-.12 2.985-.107 3.16-.107.175 0 1.224.223 1.84.223.51 0 1.347.542 1.857.542.544 0 .95-.094 1.304-.542.65-.821.724-.563.893-1.297.056-.244.312.005.437-.039.471-.165.849-.777 1.411-.929.376-.102.662-.241.732-.62.088-.476.098-1.008.098-1.548 0-.791-.032-.831-.607-.987-.074-.02-.137-.08-.205-.116-.595-.161.098-1.33.098-1.994 0-.677-.018-1.162-.196-1.549-.232-.502-.334-.707-.822-1.103-.359-.292-.54-.676-.92-.88-2.81-2.42-4.042-4.224-6.018-6.089.33-.412.273-.616.152-1.297-.902-2.728-2.637-3.233-5.562-5.45-2.733-1.578-6.308-3.295-10.099-3.648h-1.634a6.64 6.64 0 0 0-.402-.01z' fill='none' stroke-linecap='square' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M382.265 343.818c0 .332-.169.795-.268 1.19-.015.064-.007.106-.017.165.083-.398.294-.837.294-1.22 0-.048-.009-.088-.009-.135z' fill='%23d39044' stroke-linecap='square' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M334.948 432.87c-2.059 8.327-7.182 10.024-3.42 17.087 0 0-1.618-.118-2.592-2.837-.487-1.36-.813-3.37-.696-6.343.059-1.486.228-3.212.544-5.218.158-1.002.352-2.075.587-3.222' fill='%23fff' fill-rule='evenodd' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M338.745 429.429c-2.058 8.327-7.182 10.024-3.42 17.087 0 0-2.025-.03-2.999-2.75-.487-1.359-.838-3.642-.858-5.371-.02-1.73.45-4.684.788-5.924.337-1.24 1.238-3.31 1.238-3.31' fill='%23fff' fill-rule='evenodd' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M345.773 418.39c-2.934 5.509-5.297 10.213-6.52 14.3-1.225 4.089-1.996 6.272.31 10.602 0 0-1.567-.817-3.628-4.632-.65-1.204-1.086-3.867-.789-6.592a30.55 30.55 0 0 1 .776-4.396 30.07 30.07 0 0 1 .79-2.58' fill='%23fff' fill-rule='evenodd' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M348.502 414.884c-1.818 2.792-2.406 5.465-3.414 7.733-2.016 4.537-3.085 7.944-3.085 10.44 0 2.029-.357 3.709 1.905 7.156 0 0-1.061-.124-1.753-.543-.692-.419-1.56-1.194-2.269-2.62-.708-1.427-1.255-3.504-1.303-6.527-.024-1.511.478-3.745.89-5.217.413-1.473 1.807-4.55 1.807-4.55' fill='%23fff' fill-rule='evenodd' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M353.27 334.537c.119-.233-11.574-3.636-13.242-13.858 2.275-2.15 14.25 5.702 14.438 12.987' fill='%23d18219' fill-rule='evenodd' stroke-width='1.364' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M340.423 320.825c.093.205 6.265.184 11.133 10.596-1.095-1.244-6.04 1.675-11.092-10.204' fill-opacity='.502' fill-rule='evenodd' stroke-width='1.364' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M368.707 335.545c.165-.134.396-.452.122-.75-5.102-3.192-4.857.706-8.443.706 1.71 0 1.706.234 2.345.926 2.32 2.515 3.917 2.265 5.976-.176' fill-rule='evenodd' stroke-width='1.364' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M381.193 349.763c-.565.67-2.538-.793-3.984-.967' fill='none' stroke-linecap='square' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M382.326 345.923s-.54-.438-4.32-.932c.004.07 2.605-2.673 2.835.29' fill-rule='evenodd' stroke-linecap='square' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M302.663 436.88a33.59 33.59 0 0 0-.914 1.815c-1.068 2.348-1.409 4.538.472 8.069 0 0-1.617-.117-2.591-2.837-.487-1.36-.813-3.37-.696-6.343.03-.743.086-1.546.175-2.414' fill='%23fff' fill-rule='evenodd' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3cpath d='M230.708 419.108s-1.55-6.161 2.09-13.014' fill='none' transform='matrix(.27413 0 0 .2759 340.815 162.125)'/%3e%3c/g%3e%3cg fill='%23e7ca00' stroke-width='2.294'%3e%3cpath d='M401.415 879.458c-2.045-1.515-4.023-6.243-3.27-8.842-2.694-2.22-9.659 2.184-6.276 8.588 3.354 6.388 7.986 5.85 9.57.267l-.024-.013zm19.104 6.009c.56-3.612-.686-9.663-6.934-10.747-6.235-1.067-8.153 4.548-6.958 10.324 4.5-3.395 11.623-1.683 13.892.423z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M407.416 882.052c1.063-4.786 5.835-6.083 10.57-5.594-2.96-3.38-6.044-8.823-10.264-5.651-3.317 2.504-5.617 6.151-.299 11.225l-.008.02z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M404.77 879.344c.56-3.612 2.025-8.456 5.93-10.433-3.367-3.054-11.69-2.136-12.302 4.1-.632 6.231 3.047 7.49 6.383 6.307l-.01.026zm-15.883 40.031c5.28.85 12.283-1.796 10.307-13.708-1.878-11.299-10.192-14.04-10.816-11.348 4.77 1.667 4.154 17.65.475 25.103l.034-.047z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M396.765 918.122c5.294.946 13.706-2.13 9.908-13.822-3.71-11.462-12.224-10.052-12.808-7.164 4.779 1.845 6.512 13.045 2.871 21.008l.03-.022z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M376.728 918.168c3.859 3.455 13.822 4.688 17.015-6.829 3.011-10.905.276-14.41-3.62-16.18 1.943 5.672-5.07 21.665-13.412 22.991l.018.018zm25.423-.973c3.263-1.816 10.612-5.074 5.805-16.066-3.936-8.966-10.087-5.15-11.753-3.603 4.31 1.812 8.14 11.493 5.948 19.67z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M409.224 914.63c3.051-2.059 10.717-7.101 4.569-17.83-6.09-10.543-14.194-3.537-14.215-.648 3.563.888 9.641 9.955 9.673 18.46l-.027.017z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M416.718 907.263c2.017-2.81 7.176-9.719-.7-16.792-7.758-6.967-12.759 1.783-12.047 4.285 3.199-.447 10.595 5.25 12.77 12.52l-.023-.013z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M421.176 896.276c.56-3.612 2.045-12.624-7.034-14.705-8.902-2.034-9.573 8.603-8.069 10.431 2.395-2.185 10.557-1.078 15.103 4.274zm-50.284 18.646c3.375 4.144 13.412 7.063 18.657-4.145 4.966-10.665 2.772-14.71-.953-17.146 1.016 6.117-8.907 21.318-17.712 21.318l.009-.027z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M360.848 906.698c3.225 6.56 19.288 14.058 25.522 1.927 5.916-11.504 1.012-22.081-3.9-26.14 2.33 11.768-12.11 29.737-21.626 24.184l.004.029z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M352.366 898.402c7.864 17.16 24.132 14.152 29.643 1.691 5.229-11.823 3.75-18.756-2.177-24.424-4.094 15.2-12.2 23.738-27.49 22.705l.024.028z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M341.921 884.056c5.964 21.484 27.137 18.887 36.131 6.547 6.355-8.705 4.117-15.146.905-18.94-6.961 8.212-18.98 15.534-37.069 12.368l.033.025z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M337.98 870.931c.633 21.914 26.07 24.33 37.372 11.791 7.983-8.845 7.368-15.426 5.227-19.305-8.432 8.338-25.238 18.384-42.626 7.488l.026.026z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M332.703 850.203c-3.87 28.348 29.128 37.617 43.467 20.689 7.698-9.07 7.333-15.432 5.2-19.31-14.3 10.02-39.159 11.185-48.688-1.376l.021-.003z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M329.46 823.53c-9.486 30.632 19.29 41.583 38.047 38.528 14.855-2.403 23.204-19.886 21.094-23.738-18.552 13.087-55.366 1.82-59.157-14.759l.016-.032z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M329.06 799.67c-12.676 29.897 15.364 47.446 38.583 45.69 15.216-1.153 27.753-7.06 27.202-19.552-22.745 8.013-58.219-5.432-65.807-26.134l.021-.004z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M329.966 774.93c-12.693 30.576 14.747 55.711 43.465 56.342 14.648.316 21.34-3.593 27.196-13.299-20.73 3.532-64.889-27.938-70.661-43.044z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M329.57 765.272c-11.333 35.923 80.312 80.423 84.993 33.705-21.913 11.482-81.753-20.668-84.992-33.705z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M327.523 755.606c-15.379 19.757 93.055 78.167 95.506 28.363-9.762 5.009-29.87.684-49.265-8.106-19.38-8.787-33.155-22.855-46.237-20.233l-.005-.024z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M310.962 751.12c19.613.483 61.382 30.938 89.302 36.03 17.874 3.25 32.459-4.197 24.146-35.544-28.487 29.115-82.917-17.824-111.77-6.766-2.968-1.407.62 8.346-1.655 6.276l-.023.004z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M314.738 755.54c19.01-11.796 58.328 10.083 86.15 11.273 17.08.697 38.39-18.62 24.406-47.052-21.874 37.6-82.887 7.493-108.6 27.333-1.927 4.301-.85 9.998-1.984 8.422l.028.025z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M307.104 756.761c20.232-14.78 61.569-6.196 88.05-8.343 17.572-1.444 43.746-32.009 19.805-57.475-14.86 53.842-64.483 27.223-107.269 58.258-2.12 5.473.796 8.86-.59 7.531l.005.03z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M314.385 751.966c16.663-15.72 57.604-14.669 81.93-27.066 16.32-8.304 32.874-43.645 4.386-61.42-2.962 56.707-55.186 38.963-87.452 80.94-.782 6.006 2.732 8.47 1.112 7.55l.025-.003z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M316.126 744.463c12.345-22.09 50.302-27.61 70.82-45.993 18.351-16.443 23.318-46.355-7.626-55.908-2.63 59.192-43.855 46.685-60.74 82.265-3.214 7.812-1.534 20.485-2.45 19.665l-.004-.029z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cpath d='M325.504 721.914c12.654-20.094 22.161-13.181 42.356-33.822 17.383-17.772 22.62-60.366-7.793-61.346 4.545 51.455-15.245 51.997-29.134 79.625.503 6.14-3.665 15.957-5.404 15.54l-.025.003z' transform='matrix(.02666 -.34238 .30978 .02947 204.1 441.756)'/%3e%3cg stroke-width='3.041'%3e%3cpath d='m310.424 602.663-10.497 5.67-49.929 153.76 18.14 40.066 17.139 2.478 20.712-1.52 30.737-138.479 8.666-56.418-21.061-12.406-13.907 6.85z' fill-rule='evenodd' transform='matrix(.01816 -.28057 .21499 .02864 268.014 416.628)'/%3e%3cpath d='M309.263 597.474c.415 2.04.853 4.105 1.293 6.14 9.833-6.845 20.436-.176 23.345 15.636 2.902 15.806-3.027 38.861-13.668 56.633-6.681 14.63-14.639 32.223-16.986 56.246-1.823 18.767 1.856 41.713-2.283 62.595-2.528 10.013-7.857 9.093-18.2 8.451 4.162 6.833 9.334 10.587 16.036 10.365 14.42-3.208 24.74-16.165 28.494-44.84-4.283-23.95-3.188-47.936 9.852-72.08 11.634-11.987 22.336-25.543 26.268-49.987 1.883-12.145-.47-25.209-9.616-39.046-11.482-17.358-20.812-17.994-29.61-16.439-4.964 2.075-9.942 4.22-14.925 6.326z' transform='matrix(.01816 -.28057 .21499 .02864 268.014 416.628)'/%3e%3c/g%3e%3cpath d='M-325.656 629.664c.001-3.088 2.01-5.59 4.489-5.59 2.478 0 4.487 2.502 4.488 5.59h-8.977z' transform='matrix(1.42023 .479 .59921 -1.38227 519.312 1387.444)' fill-rule='evenodd' stroke-width='.5'/%3e%3cpath d='M295.504 723.041c-3.802 7.233-11.304 10.594-16.734 7.42-5.396-3.156-6.684-11.681-2.921-18.968 3.798-7.261 11.303-10.593 16.734-7.42 5.395 3.156 6.683 11.682 2.921 18.968zm-18.947-81.975c-2.604-3.571-6.329-5.807-10.315-5.098-2.38.416-4.722 1.872-6.674 3.928-.077-.335-.154-.67-.206-1.009-1.39-7.709 4.797-16.772 11.401-17.96 2.956-.504 5.787.562 8.115 2.677-1.25 2.797-1.784 5.89-1.26 8.804a15.217 15.217 0 0 0 1.071 3.588 18.318 18.318 0 0 0-2.107 5.066l-.025.003z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M300.305 632.437c-2.852-3.625-6.749-5.866-11.004-5.267-4.033.568-7.999 3.659-10.677 7.768a18.765 18.765 0 0 1-1.132-4.147c-1.379-8.954 6.038-19.14 13.72-20.221 1.936-.273 3.81.037 5.537.831a15.64 15.64 0 0 0 .075 4.016c.624 4.048 2.48 7.614 5.04 10.154-.948 2.18-1.497 4.524-1.564 6.837l.004.029zm-42.258 44.938c-.141.19-.302.418-.445.637-3.207-.469-6.187-2.176-8.529-4.746 2.477 2.462 5.648 3.974 8.97 4.08l.004.029zm6.708-13.625c-4.083-2.303-7.247-6.804-8.091-12.286-1.336-8.673 5.853-18.57 13.294-19.617a9.12 9.12 0 0 1 2.192-.044c-2.664 3.71-4.224 8.47-3.54 12.915.442 2.867 1.507 5.478 3.055 7.652-3.307 2.732-5.946 6.931-6.89 11.347l-.02.033z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M258.333 689.203c-2.006.599-4.083.405-5.87-.778-4.37-2.896-5.54-10.496-2.61-16.944 2.96-6.423 8.955-9.313 13.354-6.392 1.681 1.11 2.896 2.926 3.583 5.133a7.544 7.544 0 0 0-5.375.382c-4.698 2.155-7.138 8.593-5.42 14.328a11.05 11.05 0 0 0 2.343 4.3l-.004-.03z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M262.393 693.964c-3.06-.953-5.817-3.465-7.408-7.237-2.952-6.974-.85-15.61 4.763-19.248 2.876-1.84 6.1-2.036 8.974-.859-.526 3.151-.222 6.56 1.094 9.65 1.357 3.231 3.617 5.555 6.195 6.745-2.549-.671-5.28-.316-7.754 1.269-3.12 2.021-5.157 5.613-5.848 9.619l-.016.061zm-5.114 49.445c-7.009-4.475-11.336-13.985-9.674-21.123 1.4-5.975 6.675-8.44 12.495-6.39-2.556 5.19-3.25 11.933-1.444 18.2 1.494 5.228 4.476 9.203 8.076 11.404-2.763.647-6.115.052-9.429-2.095l-.024.003z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M251.674 769.938a12.338 12.338 0 0 1-.917-.99c-5.64-6.455-7.08-16.8-3.218-22.981 3.619-5.802 10.678-5.957 16.217-.642-2.971 6.512-2.259 15.325 1.637 22.195-3.235-1.473-6.876-1.563-10.343.132a14.099 14.099 0 0 0-3.352 2.282l-.024.003z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M268.083 783.814c-5.381-.309-10.723-6.313-12.475-14.487-1.953-9.153 1.305-17.664 7.28-18.91l.266-.037c2.876 4.717 7.182 7.526 11.73 7.725.033.047.066.1.105.184-6.72 4.626-9.86 15.335-7.062 25.003.05.162.101.332.156.522zm-2.875-66.22c-6.588 2.105-14.435-2.685-17.468-10.685-3.008-7.997-.113-16.28 6.5-18.396 1.694-.526 3.484-.6 5.256-.335 1.523 4.76 4.285 8.457 7.625 10.57-1.374 4.536-1.511 9.759-.05 14.727.264.942.58 1.847.956 2.685-.853.576-1.786 1.082-2.823 1.405l.004.029z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M269.946 727.884c-7.013-4.51-11.361-13.99-9.673-21.123 1.673-7.11 8.767-9.257 15.78-4.754 2.025 1.297 3.856 3.048 5.367 5.022-4.177 5.416-5.767 13.84-3.536 21.6.128.504.303 1.023.48 1.514-2.54.328-5.486-.376-8.418-2.26z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M284.7 750.888c-3.681 7.63-11.189 10.503-16.705 6.352-5.491-4.115-6.942-13.723-3.283-21.381 3.681-7.63 11.188-10.503 16.704-6.352 5.486 4.115 6.941 13.715 3.284 21.381zm-9.266-47.746c-3.779 1.886-7.908 2.151-11.274.358-6.168-3.363-7.576-12.505-3.14-20.38 3.15-5.529 8.39-8.998 13.392-9.385 2.208 1.985 5.027 2.972 7.878 2.57.168.146.341.328.495.505-7.94 3.422-12.165 13.327-9.413 22.051a16.01 16.01 0 0 0 2.034 4.263l.028.018z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M284.18 666.044c1.218 7.903-4.118 15.27-10.446 16.162-6.308.888-12.472-4.831-13.693-12.763-.864-5.605 1.874-11.709 5.799-15.11 2.616 4.35 6.942 6.957 11.389 6.33 1.595-.224 3.156-.841 4.56-1.82a23.142 23.142 0 0 1 2.367 7.204l.024-.003z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M287.201 705.726c-5.672 2.926-12.188-1.39-14.474-9.664-2.285-8.275.45-17.434 6.142-20.392 1.763-.903 3.602-1.11 5.392-.73a25.498 25.498 0 0 0-1.654 3.538c-3.388 9.103-1.72 20.056 3.749 24.342.9.713 1.867 1.21 2.867 1.466a9.937 9.937 0 0 1-2.001 1.408l-.02.032z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M304.5 667.948c.426 2.76-.017 5.464-1.083 7.859-5.203-3.176-12.142.017-15.889 7.242-4.182-1.796-7.535-6.13-8.367-11.533-1.183-7.679 5.123-16.42 11.7-17.457.027.342.078.674.13 1.012 1.146 7.435 7.098 12.89 13.466 12.427l.064.418-.02.032z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M303.513 696.658c-4.26 9.226-12.873 13.369-19.195 9.203-6.288-4.15-7.974-15.092-3.725-24.346 4.26-9.226 12.872-13.375 19.196-9.202 6.288 4.15 7.974 15.092 3.724 24.345zm-14.131-41.438c-1.417 2.99-3.648 5.49-6.347 6.878-6.282 3.152-13.95-.31-17.067-7.746-3.098-7.44.944-18.534 7.22-21.721 2.655-1.353 5.524-1.146 8.18.055-.028.151-.056.295-.079.475-1.667 9.692 1.944 19.186 8.093 22.06zm31.228-41.083c.4 2.594.033 5.177-.908 7.437-2.47-3.075-5.82-4.959-9.444-4.448-4.329.61-8.583 4.542-10.675 9.378-2.219-2.219-3.83-5.297-4.372-8.812-1.197-7.774 5.22-16.611 11.888-17.55 6.643-.935 12.326 6.176 13.526 13.97l-.015.025z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M322.452 630.627c1.01 6.556-3.192 12.756-8.577 14.633-2.38-3.426-5.837-5.648-9.628-5.114a9.624 9.624 0 0 0-2.845.894c-1.484-1.919-2.569-4.327-2.985-7.028-1.13-7.341 4.957-15.736 11.26-16.623 6.308-.888 11.69 5.862 12.824 13.231l-.05.007z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M293.229 654.4c-3.093 1.87-6.583 2.104-9.461.235-5.117-3.394-6.486-12.284-3.047-19.782 3.457-7.501 10.464-10.872 15.58-7.486 2.723 1.802 4.368 5.14 4.824 9.044-5.169 3.775-8.978 11.09-7.955 17.732l.04.259.019-.003zm-36.75 144.27c-5.803 2.083-12.089-2.383-14.383-10.509-2.41-8.633.555-18.22 6.643-21.323 5.695-2.9 12.154.88 14.95 8.45-6.2 4.464-9.267 14.214-7.215 23.353l.004.03z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M270.605 803.782c-6.263 2.781-13.224-1.096-15.517-8.766-2.294-7.67.943-16.318 7.258-19.217 5.442-2.496 11.415.057 14.436 5.725-5.846 4.71-8.578 13.89-6.18 22.237l.003.021z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M267.557 817.92c-5.657 2.577-11.968-.899-14.041-7.797-1.382-4.663-.507-9.733 1.976-13.306 3.978 3.385 9.068 4.39 13.799 2.083a14.505 14.505 0 0 0 3-1.976 14.325 14.325 0 0 1 1.746 3.78c.713 2.373.828 4.889.445 7.24-2.093 2.252-3.666 5.204-4.587 8.498-.7.585-1.49 1.071-2.338 1.478zm8.526 29.36c-6.371 2.907-13.464-1.01-15.799-8.786-2.325-7.754.966-16.497 7.33-19.403.46-.212.951-.391 1.45-.52a26.64 26.64 0 0 0 .932 9.415c2.072 7.178 6.908 11.988 12.306 13.068-1.376 2.755-3.518 5.014-6.215 6.255l-.004-.028z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M285.171 848.437c-6.135 2.792-12.96-.987-15.2-8.466a17.692 17.692 0 0 1-.001-9.943c4.011 3.6 9.243 4.704 14.112 2.348 2.663-1.295 4.898-3.48 6.55-6.207a16.606 16.606 0 0 1 1.591 3.596c2.239 7.479-.92 15.858-7.051 18.672z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M293.142 863.357c-6.142 2.793-12.968-.993-15.207-8.472-.611-2.041-.808-4.14-.683-6.197 2.383.415 4.88.086 7.294-1.056 4.181-2.024 7.283-6.259 8.816-11.362 3.03 1.414 5.585 4.388 6.8 8.42 2.238 7.471-.914 15.85-7.045 18.67l.025-.003zm-20.183-77.303c-2.764-1.739-5.05-4.729-6.214-8.59-2.452-8.252 1.007-17.505 7.788-20.616 6.75-3.108 14.31 1.09 16.794 9.337 1.87 6.236.33 13.062-3.474 17.366-3.14-1.972-6.987-2.409-10.58-.754-1.641.753-3.098 1.878-4.314 3.257zm46.864-134.414c1.07 6.56-5.47 16.885-12.166 18.31-6.695 1.424-10.884-1.834-13.949-6.191-3.064-4.357-4.273-10.017-2.61-15.188 1.663-5.171 6.083-10.364 10.441-12.278 4.358-1.915 7.371-1.174 10.919 1.74 3.547 2.914 6.296 7.046 7.365 13.606z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M285.163 808.599c-6.136 2.785-12.968-.993-15.207-8.472-2.231-7.473.92-15.851 7.052-18.673 6.135-2.792 12.961.994 15.195 8.438 2.239 7.479-.913 15.857-7.044 18.678l.004.029z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3cpath d='M283.132 834.193c-6.042 2.742-12.815-.985-15.011-8.352-2.197-7.368.9-15.657 6.962-18.432 6.043-2.779 12.81.956 15.01 8.345 2.197 7.368-.893 15.656-6.96 18.439z' transform='matrix(.02666 -.34324 .30978 .01956 205.666 443.535)'/%3e%3c/g%3e%3c/g%3e%3cpath d='m409.148 236.484-.492.61-19.765 24.61-.43.538.5.477c6.348 6.046 10.027 16.339 10.039 24.601.016 10.524-1.697 17.768-3.828 24.43-2.945 9.203-6.749 17.31-7.922 30.79-.87 10.002 2.735 17.795 7.367 23.42 4.632 5.627 10.27 9.118 13.617 10.696 10.277 4.846 20.881 3.175 31.477 4.531 4.707.603 7.3 3.549 9.742 6.141l.547.578.547-.578c2.442-2.592 5.035-5.538 9.742-6.14 10.596-1.357 21.2.314 31.477-4.532 3.347-1.578 8.985-5.07 13.617-10.695 4.632-5.626 8.238-13.42 7.367-23.422-1.173-13.479-4.977-21.586-7.922-30.789-2.131-6.662-3.844-13.906-3.828-24.43.012-8.262 3.69-18.555 10.04-24.601l.5-.477-.43-.539-19.766-24.61-.492-.609-.586.516c-6.065 5.3-13.055 7.214-20.04 6.914-6.984-.3-13.953-2.845-19.828-6.492l-.398-.242-.398.242c-5.875 3.647-12.844 6.193-19.829 6.492-6.984.3-13.974-1.614-20.039-6.914l-.586-.516zm.211 2.125c6.226 5.172 13.403 7.108 20.477 6.805 6.851-.294 13.601-2.637 19.414-6.031v72.054h-52.414c2.045-6.542 3.68-13.83 3.664-24.117-.013-8.482-3.597-18.715-10.031-25.18l18.89-23.53zm81.282 0 18.89 23.532c-6.434 6.464-10.018 16.697-10.031 25.18-.016 10.286 1.619 17.574 3.664 24.116H450.75v-72.054c5.813 3.394 12.563 5.737 19.414 6.031 7.074.303 14.251-1.633 20.477-6.805zm-94.29 74.328h107.297c2.937 9 6.479 16.826 7.602 29.727.834 9.582-2.579 16.945-7.023 22.344-4.445 5.398-9.941 8.799-13.102 10.289-9.792 4.617-20.157 3.015-31.023 4.406-4.884.625-7.775 3.551-10.102 6.024-2.327-2.473-5.218-5.399-10.102-6.024-10.866-1.39-21.231.21-31.023-4.406-3.16-1.49-8.657-4.89-13.102-10.29-4.444-5.398-7.857-12.761-7.023-22.343 1.123-12.901 4.665-20.727 7.602-29.726z' fill='%23e7ca00' stroke='%23d4af37' stroke-width='.75'/%3e%3cg fill='%23008f4c'%3e%3cpath d='M524.96 203.558c-.109.012-.18.051-.211.13-.143.495-.574 3.182-.86 5.936-.214 2.753-.569 5.01-.64 5.01-.071 0-1.575-.634-3.36-1.41-4.354-1.907-13.421-2.968-13.921-1.627-.357.847.647 5.646 2.289 11.153.357 1.2-.07 1.56-2.64 2.336-1.714.494-3.646 1.339-4.36 1.904-1.214.847-1.07 1.13 2 3.954l3.36 3.037-1.579 1.272c-1.499 1.2-1.496 1.197 3.93 6.351 5.997 5.649 9.118 7.377 13.187 7.377 1.25 0 2.637.234 3.64-.054 1.336-.23 2.382-.68 5.665-1.033 3.548.312 7.041 2.05 8.445 2.82.345.76.639 1.446.86 2.013-2.539-2.755-8.164-3.851-9.336-3.893-1.173-.042-1.768.271-3.024.655s-1.735.964-2.93 2.621c-.856 2.189.844 4.466 2.914 4.748 2.57.353 4.493-1.061 4.493-3.391 0-1.907-1.094-3.283-.196-3.215 3.132.238 7.838 2.72 8.766 5.897 1.07 3.954.857 4.17-1.07 1.488-1.785-2.33-4.573-4.809-5.43-4.88-.643 0-2.07 3.464-2.07 5.088 0 1.059-.283 1.27-1.211.917-.714-.353-2.287-.707-3.5-.848l-2.211-.354.57 3.53c.286 1.906 1.215 4.806 2 6.359l1.5 2.89-3.43-1.056c-7.353-2.259-6.85-2.334-6.351 1.55.214 1.906.645 4.028.86 4.663.428 1.06.068 1.272-2.43 1.272-1.642 0-2.93.212-2.93.424 0 1.624 5.785 9.318 8.64 11.577 3.499 2.683 10.14 5.65 12.782 5.65.785 0 3.138.633 5.351 1.48l3.93 1.41v4.24c0 4.66-1.434 14.052-2.219 14.052-.214 0-1.496-1.977-2.781-4.448-2.927-5.366-2.785-5.294-3.57-4.024-.572.848-.711.777-.711-.423 0-2.048-3.29-8.19-5.36-10.167l-1.71-1.627-.86 1.904-.852 1.835-3.859-4.232c-2.142-2.33-4.136-4.097-4.422-3.885-.357.141-.784 2.052-1.07 4.17-.714 6.143-1.003 6.491-3.36 4.232l-2-1.904-.5 1.904c-.856 3.389.22 15.32 1.72 19.486.785 2.188 1.781 6.218 2.28 8.972.857 5.295 3.928 11.364 7.712 15.177 1.356 1.412 1.567 1.973.71 1.973-.57 0-1.568.566-2.21 1.272-2.785 3.036-.213 6.989 4 6.212 2.07-.353 2.496-.212 3.21 1.342 1.071 2.259 1.14 6.359.141 8.124-.714 1.341-4.927 3.103-5.64 2.397-.215-.212-.353-2.612-.282-5.295l.07-4.872-3.64 1.912c-8.781 4.66-16.167 16.664-18.047 25.914-.627 3.087-2.402 3.427-4.632 7.083-2.182 1.236-4.308 2.859-6.375 4.988-3.57 3.46-4.505 3.953-9.86 5.295-6.567 1.624-20.628 3.882-31.194 4.94-9.21.919-38.191 5.575-39.976 6.352-.785.353-2.643 1.131-4.07 1.696-1.428.565-3.146 1.839-3.86 2.898-1 1.553-1.066 2.048-.28 3.53 1.927 3.53 5.637 3.457 13.561-.285 3.499-1.694 7.78-3.105 10.922-3.6 2.784-.423 6.928-1.27 9.07-1.765 2.142-.565 8.134-1.627 13.203-2.474 28.842-4.59 39.407-6.85 51.187-10.945 7.853-2.754 7.789-2.749 15-2.043 8.138.777 18.412-1.768 22.624-5.58.928-.848 3.358-3.813 5.5-6.637 2.07-2.824 4.641-5.647 5.64-6.282 2.713-1.765 1.146-2.405-5.85-2.405h-5.86l2-4.37c2.284-5.084 4.639-11.794 4.21-12.217-.142-.142-2.207.136-4.491.701-2.356.494-4.359.85-4.43.779-.143-.142.142-1.197.57-2.398.571-1.553 1.356-2.4 2.64-2.682 1.072-.212 2.36-.568 2.93-.71.5-.14 2.142.001 3.641.425 2.642.706 2.716.848 2.36 3.037-.429 2.753 1.07 4.732 3.64 4.732 1.856 0 3.992-2.051 3.992-3.746 0-1.906-2.779-4.162-4.492-3.738-.857.141-3.288-.211-5.43-.917l-3.851-1.341 3.71-.779c5.64-1.2 7.497-.987 8.282.779.5 1.13 1.43 1.693 3 1.834 4.497.424 5.924-5.935 1.64-7.276-1.57-.494-5 1.203-5 2.474 0 .424-1.212.701-2.64.701-2.966.031-5.852.6-8.39 1.573l5.46-2.698c3.284-.988 7.573-2.543 9.5-3.46 6.354-2.966 12.636-10.308 14.992-17.297 1.5-4.449 3.784-18.36 3.07-18.36-.357 0-2.712.92-5.21 2.05-4.57 2.118-4.641 2.115-4.641.562.071-2.895 1.281-11.44 1.781-12.71.357-.777.213-1.195-.43-1.195-2.141 0-9.063 3.813-13.632 7.484-4.426 3.53-4.86 3.742-4.86 2.259 0-.918.645-2.683 1.43-3.954 1.285-2.118 1.641-2.258 4.211-1.835 2.499.424 2.93.206 4-1.418 1.5-2.26.646-4.943-1.781-5.72-1.357-.423-1.219-.632 1.351-1.903 3.213-1.554 6.641-5.153 9.211-9.812l1.711-2.899-2.57.286c-1.428.14-2.563.209-2.563.138 0-.07.5-1.482 1.07-3.106.572-1.624 1.07-4.305 1.07-5.858 0-2.966-2.64-13.77-3.64-14.9-.357-.423-1.787.216-3.43 1.557l-2.78 2.19-2.649-5.79c-1.428-3.176-2.779-5.932-2.922-6.073-.143-.212-1.07.423-2.07 1.341-2.213 2.048-2.357.92-.43-3.245 1.714-3.671 2.501-4.17 4.5-2.829 2.428 1.554 5.136.075 5.422-2.89.143-1.765-.144-2.474-1.5-3.392-.928-.565-2.211-.92-2.71-.709-.643.212-1.29-.354-1.86-1.696-.5-1.341-1.427-2.252-2.64-2.605-3.713-.918-6.284 3.738-3.571 6.42 1.07.99 1.074 1.768.289 6.923-1.285 8.33-1.711 9.106-2.71 5.364-1.143-4.165-.649-15.742.85-19.13 2.57-5.861 1.073-15.117-3.21-19.918-3.547-3.972-13.366-10.978-14.992-10.791zm-4.961 19.323c.62.021 3.29 2.277 7.625 7.4 3.622 4.298 7.933 11.711 10.726 17.235-.98-1.142-1.64-1.204-4.484-5.118-2.356-3.248-6.18-10.402-9.82-14.144-3.28-3.31-4.546-5.253-4.102-5.365a.196.196 0 0 1 .055-.008z' fill='%2300a854'/%3e%3cpath d='M537.86 298.711c-.68 2.67-1.233 3.15.195 5.197.642.989 1.856 1.554 3.07 1.554 1.927 0 2.998 1.412 4.64 6.354.214.777.357.777.357-.212.072-.706-.571-2.47-1.356-4.024-.857-1.695-1.143-2.895-.714-3.177 1.356-.848.785-4.448-.857-5.578-2.213-1.553-2.932-1.139-5.336-.114z'/%3e%3c/g%3e%3cpath d='M405.906 414.495c-1.499 1.209-1.888 3.13-.777 4.23 1.61 1.592 7.219.164 7.83-2.033.777-3.075-3.998-4.558-7.053-2.197z' fill='%239eab05'/%3e%3cpath d='M526.632 209.418c.571 3.53 3.998 10.732 6.568 13.698 1.071 1.27 2.07 2.189 2.285 2.047.143-.212-1.856-4.448-4.498-9.39-3.712-7.06-4.712-8.473-4.355-6.355zm-23.773 18.993c.785.847 11.422 3.883 11.422 3.248 0-1.27-3.426-2.754-7.496-3.177-2.356-.283-4.14-.283-3.926-.07zm4.426 8.614c.857.847 13.35 6.566 16.777 7.696 2.07.706 4.783 1.13 6.068.988 2.142-.211 1.928-.353-2.57-1.835-2.713-.918-6.425-2.401-8.21-3.319-4.355-2.189-13.35-4.801-12.065-3.53zm40.622 18.145c-1.07 3.248-2.784 14.121-3.284 21.182-.357 4.59-.286 6.142.571 7.202.928 1.27 1.07.706 1.856-5.649 1.071-8.967 2.213-24.5 1.928-24.853-.143-.141-.643.848-1.071 2.118zm-11.994 5.86c.357 5.649 2.784 11.721 3.641 9.038.286-.847-.428-3.954-1.713-7.696l-2.213-6.284.285 4.943zm-7.996.142c.5.706 1.714 2.189 2.57 3.248l1.642 2.047v-1.836c0-1.059-.714-2.33-1.856-3.177-2.284-1.836-3.64-1.906-2.356-.282zm-10.067 17.439c0 .353 7.783 6.284 10.353 7.908 2.07 1.27 2.07 1.27-.571-1.836-2.713-3.177-7.14-6.354-8.853-6.354-.5 0-.928.141-.928.282zm3.927 15.251c1.857 7.837 3.285 12.285 4.07 12.78.5.282 1 .494 1.07.352.358-.353-3.355-11.085-4.497-13.062l-1.07-1.835.427 1.765zm8.211 6.142c0 1.06.642 3.248 1.427 4.802.786 1.553 1.285 2.33 1.143 1.694-.143-.635-.571-2.612-.786-4.448-.57-3.671-1.784-5.084-1.784-2.048zm-14.493 5.296c1.356 4.519 4.855 11.65 9.78 19.628 3.642 6.001 3.642 6.001 3.856 3.53.143-1.977-.571-3.742-3.213-8.19-1.856-3.107-4.997-8.614-6.996-12.144-1.928-3.6-3.784-6.496-4.07-6.496-.285 0 0 1.695.643 3.672zm44.335 1.059c-3.142 3.389-9.424 12.144-11.495 16.168-.714 1.413-.928 2.825-.642 3.954.428 1.624 1.428.353 8.495-10.802 4.355-6.99 7.71-12.638 7.425-12.638-.357 0-1.999 1.482-3.784 3.318zm-11.28 52.459c-1.071 1.977.285 4.237 2.57 4.237 2.07 0 3.355-2.472 2.284-4.448-.857-1.624-3.926-1.554-4.855.211z' fill='%2375b52b'/%3e%3cpath d='M527.56 251.005c-2.713 1.906.143 6.707 2.999 5.013 1.713-1.13 1.999-3.884.428-5.013-.714-.495-1.5-.918-1.713-.918-.215 0-1 .423-1.714.918zm18.705-15.251c-1.642.424-2.285 2.612-1.285 4.448 1.428 2.613 4.997 1.553 4.997-1.483 0-2.118-1.642-3.389-3.712-2.965zm4.712 5.436c-.214.565-.286 1.766-.143 2.684.143 1.27.643 1.624 2.285 1.624 2.57 0 3.997-1.907 2.855-3.743-1-1.553-4.426-1.976-4.997-.564zm-26.772 105.555c-2.642 2.118-.143 5.86 3.141 4.59 1.5-.566 2.07-2.26 1.214-3.813-1-1.907-2.57-2.19-4.355-.777zm14.526-47.333c-.785.777-.57 3.389.357 4.307 2.142 2.118 5.355 0 4.57-3.036-.357-1.342-.929-1.765-2.5-1.765-1.07 0-2.212.212-2.427.494zm13.236-.095c-.5 2.047.714 3.883 2.57 3.883 1.713 0 2.999-1.694 2.713-3.671-.143-1.271-.714-1.695-2.499-1.836-1.999-.212-2.356.07-2.784 1.624zm1.865 52.088c-.5 2.047.714 3.883 2.57 3.883 1.714 0 2.999-1.694 2.713-3.671-.142-1.271-.713-1.695-2.498-1.836-2-.212-2.356.07-2.785 1.624zm-4.343 6.535c-2.642 2.118-.143 5.86 3.141 4.59 1.5-.565 2.07-2.26 1.214-3.813-1-1.907-2.57-2.19-4.355-.777z' fill='%23d91023'/%3e%3cpath d='M519.886 223.47c.288.456 1.667 2.076 3.047 3.61 2.644 2.872 4.8 5.857 8.795 12.082 2.817 4.406 6.381 8.897 6.381 8.073 0-.853-6.323-11.456-8.824-14.81-3.305-4.378-8.565-9.807-9.571-9.807-.201 0-.144.313.172.853z' fill='%2375b52b'/%3e%3cpath d='M538.141 312.72c-.086.483-.822 5.236-1.138 10.808-.747 12.905-1.408 19.846-2.874 28.175-.633 3.667-1.236 7.249-1.322 7.96l.19 1.182 1.178-1.649c1.264-1.734 2.586-2.985 4.483-4.264.633-.455 2.673-2.36 4.484-4.292 9.083-9.58 11.612-12.564 19.43-22.911 7.243-9.637 8.997-12.053 8.853-12.223-.287-.256-2.54 1.887-11.566 13.059-2.5 3.098-6.737 7.959-9.295 10.801-6.295 6.936-13.327 13.385-15.182 15.879-.17.229.258-1.62.603-2.985 1.61-6.794 2.271-14.27 2.472-28.88.086-6.368.115-11.57.029-11.57-.086 0-.23.398-.345.91zm-17.633 46.657c-.546.91-2.242 3.894-3.794 6.623-4.83 8.642-10.405 16.459-14.63 20.524-1.524 1.478-1.09 1.605-1.409 1.933-1.668 1.717 5.059 2.928 10.175 3.44 6.898.681 10.721-.683 29.145-10.405 4.312-2.274 5.461-2.984 4.599-2.842-1.696.284-4.369.91-12.36 4.719-7.817 3.695-11.312 5.31-14.848 6.106-2.76.625-6.806.682-9.192.113l-1.627-.108.863-.284c.718-.17 1.833-.21 2.207-.523.374-.342 1.84-1.388 3.248-2.098 3.19-1.62 6.703-4.542 11.532-8.863 3.707-3.298 10.836-10.49 10.836-10.944 0-.313-3.334 2.416-7.617 6.197-8.853 7.845-17.533 13.672-21.241 14.27l-1.092.17 1.15-1.023c.373-.54 1.77-2.604 3.207-4.708 3.45-5.031 4.771-7.43 7.99-13.997 2.96-6.054 4.18-9.664 3.979-9.835-.058-.057-.575.626-1.121 1.535zm.214-91.109c-.087.484 3.69 5.047 8.042 10.035 4.449 5.1 7.062 7.11 10.604 11.563 3.54 4.452 3.906 4.78 7.858 8.345 4.928-6.48 7.952-15.308 10.037-20.922 2.062-5.549 3.723-10.314 3.774-17.632-2.826 6.119-2.911 8.318-5.12 14.99-2.228 6.733-7.19 18.392-9.046 20.886-.17.229-10.422-12.355-14.895-17.57-4.749-5.54-11.273-10.272-11.254-9.695z' fill='%23eac102' fill-opacity='.502'/%3e%3cpath d='m524.08 208.323-.859 6.377-2.579-1.276c-2.722-1.275-9.743-2.763-13.11-2.763-1.863 0-1.935.142-1.577 2.267.43 2.268 2.221 8.715 2.866 10.132.143.425-1.075 1.134-2.723 1.63-1.719.496-3.653 1.346-4.37 1.913-1.29.921-1.146 1.134 1.576 3.543 3.224 2.905 3.51 3.684 1.72 4.96-1.075.779-.645 1.416 4.084 5.951 2.937 2.834 6.59 5.74 8.024 6.448 3.653 1.913 10.746 1.913 14.543 0 2.65-1.347 2.866-1.347 4.585-.213 1.72 1.063 1.791 1.063.86-.07-.573-.638-3.94-2.693-7.45-4.464-9.888-5.102-17.983-14.03-21.422-23.878-1.72-4.889-1.72-7.51.071-7.51 2.938 0 9.17 1.558 12.681 3.117 5.23 2.41 14.544 11.337 17.123 16.509 1.863 3.613 2.078 4.889 2.15 10.274 0 6.235 1.002 8.856 1.146 3.188.286-7.156.501-8.786 1.576-11.478 2.149-5.243 1.074-13.25-2.365-17.997-1.146-1.488-4.871-4.747-8.382-7.227-3.439-2.409-6.52-4.676-6.734-5.101-.287-.355-.932 2.196-1.433 5.668zm9.171 1.063c4.8 3.33 6.162 4.747 7.666 7.793 2.293 4.748 3.01 10.487 1.72 14.738l-1.004 3.188-1.862-3.967c-1.218-2.693-3.797-5.881-8.024-10.062-3.367-3.4-6.52-6.164-6.95-6.164-.788 0-.501-4.818.573-8.998.43-1.842 0-2.055 7.881 3.472zm-22.997 17.359c.645 1.133 1.79 2.338 2.436 2.834.716.496 1.433 1.559 1.647 2.338.359 1.275 0 1.417-3.367 1.417s-3.94-.213-6.52-2.834c-1.504-1.559-2.65-2.976-2.435-3.118.573-.566 5.23-2.48 6.09-2.55.501 0 1.432.85 2.149 1.913zm9.528 10.982c4.156 3.826 5.374 4.605 10.389 6.59 2.65 1.062 2.794 1.204 1.647 2.267-1.576 1.558-9.457 2.125-13.039.92-3.08-.991-14.257-11.052-13.11-11.761 1.218-.78 4.943-1.559 7.665-1.63 1.935-.07 3.153.638 6.448 3.614zm20.705 13.037c-.286.354 0 1.913.573 3.472 1.29 3.613 1.218 4.676-.071 7.156-.573 1.134-1.075 3.33-1.075 4.818 0 1.559-.358 3.826-.86 5.101l-.788 2.268-2.364-1.488c-1.29-.85-2.507-2.197-2.722-2.976-.645-2.126-.359-6.66.501-10.982.645-3.047 1.146-3.897 2.15-3.826 1.074.141 1.146-.071.358-.921-.717-.922-1.003-.922-1.791.212-.502.709-1.147 2.267-1.362 3.543-.43 2.338-.43 2.338-2.507 1.346-3.08-1.63-4.227-1.346-4.227.992s1.218 6.093 2.722 8.431c1.648 2.48 1.72 1.418.072-1.77-1.934-3.898-2.58-8.007-1.29-8.007.574 0 1.72.496 2.58 1.062 1.29.922 1.504 1.701 1.36 5.881-.07 5.669-.572 5.952-7.307 3.685-2.22-.78-4.227-1.276-4.442-1.134-.286.354.86 6.306 1.648 8.219.287.85-.215 1.063-2.937.78l-3.368-.213 2.006 3.4c4.442 7.724 10.89 12.33 19.774 14.171 2.794.567 6.161 1.56 7.38 2.197 1.719.921 2.005.921 1.36.142-.43-.567-2.077-1.488-3.582-1.984-4.083-1.488-8.024-4.322-13.182-9.778-5.158-5.456-7.81-10.061-7.81-13.604 0-1.842.216-2.267 1.075-1.913.645.213 3.081.921 5.517 1.559 6.018 1.488 7.594 2.409 11.463 6.518 4.084 4.322 5.445 6.873 6.663 12.683.573 2.55 1.146 4.747 1.36 4.96.932.992 1.219-2.267.43-5.03-1.289-4.677.646-13.746 4.73-21.753 1.79-3.542 7.307-8.927 8.167-7.935.286.283 1.217 3.33 2.149 6.73 1.934 7.228 1.648 9.353-1.791 16.51-2.508 5.101-4.872 8.077-8.597 10.77-2.794 1.983-2.006 2.62 1.862 1.629 3.44-.921 8.956-5.952 11.965-10.911l1.576-2.693-2.794.496-2.723.425 1.29-3.755c1.648-4.818 1.648-6.731 0-12.47-.788-2.622-1.576-5.668-1.863-6.731l-.43-1.984-2.292 1.63c-1.29.85-2.508 1.842-2.723 2.196-.86 1.204-1.862-.142-4.298-5.527-1.29-2.905-2.58-5.314-2.866-5.314-.358 0-1.433.85-2.507 1.913l-1.863 1.984.43-1.984c.358-1.346.215-1.842-.287-1.558-.358.212-.716 1.133-.716 1.984 0 3.4-1.218 3.4-2.293.07-.573-1.842-1.218-3.046-1.433-2.692zm10.388 17.855c-2.077 4.11-3.51 8.36-4.083 11.62l-.86 5.101-1.146-2.834c-.645-1.63-2.078-3.897-3.08-5.172-1.935-2.197-1.935-2.338-1.147-7.369 1.218-8.006 2.794-12.328 5.66-15.446l2.579-2.905 2.65 5.243 2.651 5.173-3.224 6.589zm-27.152 11.69c8.74 9.07 11.75 12.613 10.245 12.117-6.52-1.913-11.105-5.314-14.544-10.628-1.361-2.055-2.436-3.968-2.436-4.18 0-.213.86-.355 1.863-.355 1.29 0 2.866.992 4.872 3.047zm40.765 5.598c-2.866 4.535-4.586 6.235-7.738 7.794l-2.866 1.488 2.866-3.118c1.576-1.7 3.654-4.322 4.514-5.739 1.433-2.267 2.436-2.976 4.657-3.33.286 0-.359 1.276-1.433 2.905z' fill='%23cab313' fill-opacity='.502'/%3e%3cpath d='M538.41 256.361c1.003 2.126 2.865 4.322 2.937 3.543 0-.425-.86-1.7-1.863-2.834-1.003-1.205-1.504-1.488-1.074-.709z' fill='%23005000'/%3e%3cpath d='M519.496 293.347c-.287 1.488-.788 3.897-1.218 5.455l-.645 2.693-2.078-1.913-2.006-1.913-.573 3.33c-.645 4.605.144 11.478 2.15 17.926.93 2.976 1.934 7.014 2.22 8.998.86 6.519 6.233 14.17 13.183 18.918 1.29.921 1.79 2.126 2.22 5.314l.574 4.11-.143-3.897c-.072-2.126-.932-7.37-1.863-11.691-2.221-10.274-1.576-14.596 3.582-25.082l3.725-7.51 3.798 7.58c5.086 10.133 5.588 13.534 2.865 21.823-1.074 3.33-2.292 6.377-2.65 6.873-.359.496-.502 1.134-.359 1.488.215.283.072.992-.358 1.559-.573.85-.645.78-.287-.354.287-.78-.716-.071-2.364 1.77-1.576 1.772-3.009 3.827-3.224 4.606-.358 1.276-.286 1.276.86-.141a225.01 225.01 0 0 0 2.508-3.401c.716-.992 1.576-1.63 1.862-1.417 1.075.566 2.078-1.276 4.442-7.865 3.296-9.211 5.373-12.825 9.887-17.36 3.009-2.975 5.946-4.888 10.961-7.297 3.797-1.771 7.021-3.26 7.165-3.26.573 0-1.577 12.33-2.794 15.943-1.362 4.322-5.23 10.415-8.311 13.25-3.01 2.763-9.027 5.738-14.687 7.297-2.436.709-4.657 1.488-4.872 1.842-.358.638 5.302-.92 10.532-2.905 7.594-2.763 14.758-10.132 17.696-17.925 1.29-3.401 4.083-18.139 3.51-18.635-.143-.142-2.507.85-5.373 2.197l-5.087 2.409.43-4.748c.215-2.621.788-6.235 1.29-8.148.86-3.259.86-3.33-.645-2.905-3.582 1.063-10.03 4.96-13.899 8.503l-4.227 3.755.215-6.519c.215-4.393.072-6.093-.358-5.101-.358.78-.716 2.834-.716 4.605-.072 3.614-1.577 10.628-2.293 10.628-.287 0-1.576-2.054-2.866-4.605-2.364-4.393-3.439-5.597-3.582-3.755 0 .496-.716-.992-1.648-3.401-.86-2.338-2.507-5.456-3.653-6.944l-2.078-2.692-1.146 2.196-1.147 2.197-2.722-3.543c-1.505-1.984-3.367-3.897-4.084-4.251-1.146-.638-1.361-.355-1.72 1.913zm4.871 2.196c2.723 3.33 8.67 14.525 9.457 17.855l.43 1.772-1.29-1.772c-2.292-3.259-8.525-8.856-12.322-11.053-1.863-1.063-1.934-1.417-1.433-3.755.287-1.417.717-3.401 1.003-4.535.215-1.062.645-1.913.932-1.913.286.071 1.719 1.559 3.223 3.401zm9.959 6.873c2.078 4.322 2.507 7.014 1.361 8.786-.931 1.488-6.806-10.84-6.233-13.108.43-1.559.645-1.7 1.648-.85.645.496 2.078 2.834 3.224 5.172zm-12.681 2.267c4.585 3.047 9.242 7.652 10.46 10.416.645 1.275.43 2.267-.716 4.534-1.935 3.756-3.01 11.479-2.293 16.58.287 2.267.287 4.11 0 4.11-.931 0-6.09-6.59-8.454-10.7-4.728-8.29-8.096-21.822-6.95-27.845l.502-2.692 1.576 1.346c.86.78 3.51 2.693 5.875 4.251zm43.273 0c-.359 1.913-.789 5.173-1.003 7.298-.43 3.826-.502 3.968-4.657 6.519-2.365 1.488-5.588 4.322-7.308 6.518-1.648 2.126-3.224 3.755-3.51 3.543-.359-.142-.788-1.842-1.075-3.684-.215-1.843-.931-4.393-1.433-5.74-.931-2.125-.86-2.55.502-4.463 3.009-4.18 15.761-13.32 18.627-13.32.215 0 .143 1.487-.143 3.33zm-38.473 34.648c2.65 2.692 4.227 4.818 4.012 5.597-.143.992-.931.567-3.869-2.196-3.94-3.685-7.092-8.503-7.809-11.975-.43-1.842-.215-1.7 1.433 1.063 1.003 1.771 3.797 5.172 6.233 7.51z' fill='%23cab313' fill-opacity='.502'/%3e%3cpath d='M519.424 356.902c-7.737 5.172-14.263 15.949-16.256 24.587-.144 2.196-2.485 4.037-2.127 3.825.287 1.06 2.49-.047 3.484-3.542 1.881-6.616 7.09-18.493 13.896-23.24 2.078-1.417 4.155-2.622 4.514-2.622.358 0 .501 2.693.358 6.164-.143 4.748-.645 7.015-1.935 9.637-2.149 4.322-7.952 10.698-12.036 13.037-3.438 1.983-3.725 2.834-.573 1.63 3.51-1.347 11.821-9.92 14.042-14.526 1.147-2.338 2.078-4.676 2.078-5.172 0-.496.86-1.275 2.006-1.7 2.58-.992 15.403-4.18 15.69-3.827.573.567-4.898 12.04-6.689 14.378-2.722 3.471-9.242 8.431-12.466 9.423-1.504.425-4.744 2.17-7.138 2.615-2.605.483-3.387.522-6.428.85l-2.528 1.5 2.508-.424c1.361-.213 4.8-.638 7.522-.921 7.887-2.737 10.917-4.444 16.081-8.4l3.355-2.84 6.428.328 5.23.425-2.436 2.905a676.904 676.904 0 0 0-5.588 6.802c-1.648 2.126-4.012 4.393-5.23 5.102-3.44 1.984-10.962 3.613-17.266 3.613-5.732.071-5.875 0-8.74-2.55-2.938-2.622-4.085-3.118-4.514-1.984-.072.354-2.58 1.417-5.374 2.48-5.588 1.912-6.806 1.417-3.582-1.56 1.218-1.133 2.496-1.128 5.075-1.27 0 0 5.419 1.208 5.473.095.054-1.107-5.4-1.02-5.4-1.02-2.546.15-3.137.065-1.135-2.537 2.351-1.477 3.28-4.36 2-3.73-3.132 3.784-5.16 5.283-9.881 9.88-4.508 3.122-5.08 3.335-11.248 5.034-3.94.92-10.46 1.983-14.328 2.48-7.51.848-10.697 2.735-3.44 1.413 3.672-.669 8.38-1.2 14.4-2.264 8.681-2.126 9.258-2.27 13.54-4.538 3.5-3.6 4.072-4.023 2.222-1.062-.645 2.196.43 2.125 7.307-.496 5.445-2.126 5.589-2.126 6.95-.78 1.361 1.346 1.29 1.417-1.433 2.55-5.803 2.41-17.123 5.527-28.657 7.795-6.592 1.346-12.18 2.621-12.395 2.905-.573.567 7.81-.355 9.6-1.134.789-.283 6.735-1.842 13.255-3.33 6.52-1.559 13.97-3.684 16.62-4.747 4.443-1.772 5.16-1.842 8.956-1.134 4.8.85 12.753.071 18.556-1.842 4.442-1.417 7.522-4.039 12.036-10.345 1.863-2.621 4.227-5.384 5.23-6.093l1.862-1.346-6.304-.425c-3.439-.213-6.448-.567-6.591-.78-.144-.141.215-1.275.86-2.48.573-1.204 2.077-4.818 3.223-7.935l2.15-5.81-2.508.496c-1.361.212-3.654.638-5.015.85l-2.507.496 1.074-2.621c.573-1.418.932-2.551.717-2.551-.144 0-.788 1.133-1.362 2.48-1.217 2.763-2.65 3.33-2.149.85.215-1.134 0-.921-.86.708-.716 1.276-2.077 2.551-3.08 2.976-1.003.355-2.436.85-3.224 1.134-1.218.567-1.29.212-1.003-4.818.143-3.472 0-5.456-.502-5.456-.43 0-2.364 1.063-4.37 2.41z' fill='%23cab313' fill-opacity='.502'/%3e%3cpath d='M452.51 403.878c-4.156.354-12.538 1.63-26.509 3.897-7.307 1.134-13.612 2.125-14.113 2.196-.502 0-.717.284-.573.567.215.284-.788.709-2.15.921-3.152.638-6.806 3.614-6.806 5.669 0 2.054 2.364 4.18 4.084 3.755 1.146-.284 1.075-.355-.143-.425-3.153-.142-4.37-3.826-1.935-5.952 2.006-1.842 11.463-4.606 16.836-5.03 6.806-.567 26.437-3.26 27.296-3.827.43-.212 3.01-.78 5.803-1.275 4.729-.78 3.798-1.063-1.79-.496z' fill='%23cab313' fill-opacity='.502'/%3e%3cpath d='M440.688 410.75c-12.895 2.48-20.92 4.535-24.788 6.52-5.015 2.48-4.299 2.692 1.074.283 2.508-1.134 6.807-2.41 9.529-2.835 2.65-.425 8.597-1.558 13.11-2.48 4.514-.92 10.03-1.983 12.18-2.338l3.94-.637-3.224-.071c-1.79 0-7.092.708-11.82 1.559z' fill='%23cab313' fill-opacity='.502'/%3e%3cpath d='M497.182 391.946c-2.24 1.348-4.552 4.011-2.046 3.609 1.901-.168 9.019-2.331 9.574-3.735-2.724.24-4.962-.417-7.528.126z' fill='%23fff'/%3e%3cg stroke='%23d4af37' stroke-width='.904'%3e%3cpath d='M367.709 432.44c-1.503.459-2.482.902-9.093.441-4.507-.307-10.173-1.117-13.102-1.194-5.56-.077-5.603.349-15.52 7.111-6.986 4.764-16 4.41-22.667 2.93-4.057-1.844-5.8-2.26-5.199-1.261 1.127 1.844 9.01 4.402 13.368 4.402 7.061 0 12.245-1.768 20.734-7.07 6.535-4.15 9.465-4.534 18.48-2.459 10.621 2.102 12.195 1.195 20.868-2.706-2.588-.073-3.194-.001-4.064.351 1.494-1.625 1.555-3.144 1.85-4.183.43-.566-.721.19-2.11 1.164-1.39.974-3.02 2.166-3.545 2.474z' fill='%23fff' transform='matrix(.83739 0 0 .82218 198.784 50.956)'/%3e%3cpath d='M354.025 429.835c-4.883-.768-8.23-1.435-11.29-1.092-3.41.38-5.839 2.075-9.895 4.61-4.057 2.613-7.708 4.495-8.159 4.495-.526 0-5.764 1.22-9.746 1.22-1.878 0-5.913-1.245-8.617-2.244-5.71-2.151-7.794 1.329-1.86 3.865 5.276 1.8 10.625 2.506 15.617 1.763 4.991-.743 9.625-2.935 13.47-5.77 7.627-5.624 3.166-2.918 6.206-4.207 3.04-1.288 5.848-.851 5.848-.851 3.982.153 11.88 1.466 15.862 1.543 7.287-.658 6.037-.672 8.441-2.05.838-.48 3.488-2.234 3.65-2.63.16-.398 1.39-2.702 1.154-2.793-7.452 5.131-11.202 5.12-20.681 4.141z' fill='%23d91023' transform='matrix(.83739 0 0 .82218 198.784 50.956)'/%3e%3cpath d='M341.028 435.395c-1.052.461-4.207 2.306-7.137 3.996-6.16 3.765-11.96 5.57-18.748 5.647-3.08.463-13.072-3.606-11.57-3.145 1.608 3.033 3.952 3.425 9.676 4.508 3.993.756 6.582.13 11.062-.826 5.02-.615 7.078-2.888 8.956-4.271 4.357-3.228 11.893-5.37 13.996-5.37.977 0 4.757 2.065 8.902 2.962 4.145.896 6.145 1.127 10.443.444s8.724-4.2 12.84-6.924c-.669.21-2.132.214-4.14.276-5.895 3.474-15.88 4.783-21.134 2.425-5.333-1.306-10.517-.951-13.146.278z' fill='%23d91023' transform='matrix(.83739 0 0 .82218 198.784 50.956)'/%3e%3c/g%3e%3cpath d='M388.708 210.486c-9.086 2.995-18.677 10.198-24.662 18.471-1.298 1.783-2.452 3.138-2.596 2.996-.072-.143.577-3.78 1.586-8.06 1.01-4.278 1.803-8.557 1.731-9.556 0-1.64-.144-1.569-2.884 1.427-3.462 3.85-8.005 12.337-9.736 18.186-.937 3.137-1.298 6.632-1.298 13.122l.072 8.915-1.73-6.276c-1.803-6.704-3.678-11.268-5.553-13.622-.937-1.212-1.226-1.284-1.875-.357-1.37 2.069-.433 10.912 1.875 17.473.216.785-.649-.356-1.947-2.496-1.37-2.14-2.812-3.78-3.173-3.566-.865.428-.937 7.417-.072 10.341.649 2.069.649 2.069-1.803-.713-4.038-4.635-4.976-4.992-4.976-1.783 0 1.213.505 3.352 1.082 4.779.577 1.355 1.082 2.638 1.082 2.71 0 .07-1.01.356-2.308.641-3.173.642-4.182 1.64-4.182 4.28 0 2.852 1.947 9.485 2.956 10.127 1.082.641 1.442 0 2.38-4.137l.865-3.708 2.668 3.423c3.822 4.992 9.52 16.403 12.404 24.89 3.029 9.057 3.173 10.84.36 5.277-1.153-2.21-3.173-5.563-4.398-7.417-2.74-3.85-17.812-19.47-18.822-19.47-1.082 0 0 4.85 1.947 8.915.938 1.997 3.75 5.92 6.13 8.772 2.452 2.782 4.254 5.135 4.038 5.135-.216 0-1.947-1.14-3.75-2.496-3.678-2.781-7.427-4.92-7.932-4.493-.144.214 1.298 3.21 3.245 6.775l3.461 6.49-2.307-.356c-1.298-.214-3.03 0-3.894.427-1.298.714-1.515 1.498-1.515 4.921 0 4.565 1.154 9.414 2.236 9.414 1.01 0 2.812-4.493 2.812-6.918 0-1.925.072-1.854 3.678 1.57 5.12 4.992 11.97 13.478 18.75 23.32l5.696 8.344-6.706-4.992c-6.418-4.707-19.615-12.052-21.778-12.052-.577 0-1.082.285-1.082.641 0 .357 4.254 4.636 9.447 9.557l9.374 8.915-4.903-1.64c-2.669-.856-6.058-1.784-7.428-2.069-2.452-.499-2.452-.356 3.029 4.707 3.028 2.853 8.509 7.06 12.259 9.414 3.678 2.282 6.057 3.923 5.264 3.709-6.562-1.855-16.225-3.424-16.225-2.568 0 .999 4.976 4.921 8.509 6.704 1.947.927 6.85 2.924 10.961 4.28 8.365 2.923 13.413 5.562 17.668 9.27l2.884 2.568-5.048-2.211c-5.769-2.567-21.417-7.774-23.22-7.774-1.803 0 5.409 7.06 12.403 12.267 6.419 4.778 18.606 10.84 27.403 13.693 7.356 2.353 13.558 3.566 25.24 5.064 5.192.641 10.096 1.426 11.033 1.782.865.428 7.211 1.355 14.062 2.14 20.047 2.353 34.686 5.777 43.268 10.127 2.307 1.141 4.831 1.57 10.095 1.854 7.789.357 8.15.143 5.914-4.136-1.875-3.566-5.192-5.42-12.26-6.704-3.533-.713-9.374-1.854-12.98-2.567-7.572-1.57-22.138-4.137-40.6-7.06-19.83-3.21-28.412-6.633-37.714-14.978-13.774-12.266-20.985-32.164-18.75-51.847.505-4.208.794-7.703.65-7.845-.65-.57-5.265 8.914-6.49 13.193l-1.299 4.707.289-7.56c.505-11.767 4.903-22.75 11.538-29.097 1.442-1.355 2.596-2.71 2.596-2.995 0-.286-1.37-.143-3.029.285-2.163.5-4.255 1.854-6.85 4.493l-3.75 3.709 1.73-3.352c2.668-5.278 7.284-10.555 11.683-13.48l4.11-2.638-2.38-.214c-4.76-.5-13.34 5.705-18.1 13.122-2.74 4.35-2.74 2.996.072-3.637 2.668-6.49 6.779-12.837 11.25-17.544 2.524-2.639 2.956-3.495 2.019-3.495-3.75 0-10.096 4.85-15.36 11.768-1.515 2.068-1.515 1.925.216-2.14 2.164-4.85 5.48-10.27 8.582-13.693 2.235-2.567 1.586-2.924-2.164-1.212-3.39 1.64-8.87 7.702-12.043 13.55-1.514 2.71-2.596 4.28-2.38 3.495.217-.785.722-2.853 1.082-4.636 2.668-11.839 9.159-23.392 17.956-31.879 3.39-3.21 4.255-4.493 3.318-4.493-2.74 0-9.159 3.637-13.413 7.631-4.4 4.137-4.471 4.137-2.74 1.284 6.057-10.199 15.143-19.47 25.6-26.102 3.317-2.14 6.057-4.065 6.129-4.28 0-1.07-10.961 2.211-15.937 4.708-1.154.641-3.894 2.567-6.202 4.421-3.461 2.782-3.822 2.996-2.524 1.141 2.452-3.423 10.745-10.769 14.062-12.48 2.452-1.284 2.74-1.64 1.515-1.855-3.317-.499-12.548 4.35-19.76 10.342l-3.172 2.71 1.73-2.853c5.625-9.2 12.548-16.546 20.697-21.823 2.884-1.855 5.697-3.495 6.202-3.709.432-.142.72-.5.504-.713-.216-.214-2.812.357-5.697 1.355zm108.386 203.968c1.01 1.07 1.875 2.211 1.875 2.497 0 .356-1.587.641-3.606.641-3.461 0-3.605-.07-3.605-1.996 0-3.638 2.307-4.066 5.336-1.142z' fill='%2300a854'/%3e%3cpath d='M492.543 413.18c-1.731 1.64-1.443 4.35.505 4.85 3.028.784 6.994.498 6.994-.571 0-1.07-4.615-5.42-5.769-5.42-.36 0-1.153.499-1.73 1.14z' fill='%239eab05'/%3e%3cpath d='M392.463 209.25c-7.627 1.33-14.279 5.866-20.117 10.72-.815.751-1.259 1.178-1.29 1.286-.43.489-4.3 3.934-6.68 7.252-1.156 1.334-2.76 3.613-3.593 4.99.179-1.354 1.193-5.411 2.227-9.98 1.158-5.44 1.668-9.844 1.523-10.058-.724-.645-5.95 6.198-8.555 11.422-3.835 7.515-4.96 12.695-4.96 23.43l-.079 8.928-1.757-6.784c-1.882-7.085-5.121-14.463-6.64-14.892-.507-.143-1.079.875-1.368 2.378-.434 2.362-.032 4.636 3.008 16.803.217 1.002-.567.08-1.797-2.067-2.75-4.795-3.696-5.88-4.492-5.38l1.953 2.807c1.085 1.575 3.033 5.298 4.336 8.304 3.546 8.374 8.837 26.119 7.968 26.978-.217.143-.653-.434-1.015-1.365-.362-.93-1.358-3.642-2.227-6.003-.868-2.362-2.816-6.605-4.336-9.396-3.4-6.226-5.86-13.092-6.367-17.816l-.39-3.47c-1.002.779-.597 4.921.82 9.474.724 2.433 1.283 4.366 1.21 4.366-.144 0-1.711-2.004-3.593-4.366-2.605-3.292-3.634-4.147-4.14-3.43-.652 1.073-.27 3.203 1.25 7.211l.976 2.73h-2.383c-1.302 0-2.948.434-3.672.935-1.23.859-1.31 1.43-.586 5.224.833 4.688 1.998 8.13 2.891 8.187 1.43.09 1.388-1.412 2.11-5.497.29-1.171.787-1.894.898-2.573.306.43.747.953 1.367 1.598 6.089 8.285 11.569 19.632 14.101 27.29 2.027 6.083 5.786 22.104 5.352 22.533-.145.215-1.04-2.497-1.836-6.004-2.895-12.166-6.984-19.358-19.648-31.811 0 0-4.347-5.2-7.852-7.213.058 2.933.664 3.431.664 3.431.869 4.437 3.108 8.3 9.766 16.1 2.967 3.508 5.351 6.615 5.351 6.901 0 .215-1.65-1.102-3.75-2.963-3.835-3.363-9.772-7.2-10.351-6.627-.217.143 1.21 3.29 3.164 6.94 2.46 4.58 3.218 6.445 2.422 6.159-2.822-1.145-3.855-1.145-5.664 0-1.882 1.217-1.88 1.332-1.445 6.198.217 2.72.815 5.652 1.25 6.51.868 1.432.85 1.446 1.718-.272.507-.93 1.078-2.941 1.367-4.444.29-1.432.72-2.651.938-2.651.244 0 3.916 3.822 5.703 5.575a112.2 112.2 0 0 0 2.422 3.001c4.27 5.225 16.062 20.273 19.101 25.068l1.524 2.495-2.461-1.91c-8.178-7.002-21.575-14.832-26.64-16.335-1.419-.42-1.8-.016-1.133.74-.025.003-.064-.013-.079 0 3.477 4.695 13.69 13.262 16.368 15.517 2.677 2.254 2.65 3.092 2.578 3.235-.145.072-2.012-.797-5.196-1.87-8.177-2.864-10.304-2.927-9.218-1.638.506.572 1.732.98 2.89 1.052 4.198.072 14.845 4.73 22.227 9.669 4.776 3.22 16.214 14.095 17.734 16.958.796 1.575.512 1.426-2.383-.936-3.908-3.149-14.756-9.311-15.625-8.81-.29.215-2.836-.26-5.586-.975-2.822-.716-7.026-1.507-9.414-1.793l-4.257-.507 2.539 2.3c3.328 3.006 8.9 5.707 18.164 8.928 4.124 1.431 8.837 3.358 10.43 4.288 3.473 2.004 10.634 7.595 10.272 7.953-.144.143-2.78-.862-5.82-2.222-5.138-2.362-17.857-6.795-22.343-7.797-1.665-.358-1.1.345 3.242 4.64 2.894 2.719 7.831 6.74 11.015 8.888 15.342 10.09 29.249 14.537 55.156 17.543 4.125.5 7.21 1.123 6.992 1.481-.217.358 6.3 1.318 13.32 2.106 18.816 2.218 30.546 4.789 41.328 9.083 4.704 1.932 7.468 2.56 12.461 2.846 4.776.286 6.406.215 6.406-.429 0-1.646-2.07-4.87-4.531-7.017-2.171-1.861-3.61-2.974-12.148-4.406-5.355-.858-10.17-2.02-10.82-2.378-.652-.357-11.403-1.855-23.633-3.86-26.848-4.293-35.101-6.232-42.265-9.667-17.73-8.589-29.807-27.28-30.82-48.965-.218-4.366-.083-10.074.351-12.866.434-2.72.73-5.08.586-5.224-.651-.644-6.124 10.241-6.992 14.464l-.352 2.729-.273-4.912c-.072-11.165 3.525-20.885 9.531-29.044 0 0 4.009-3.943 4.57-4.99.039-.03.037-.08.04-.117.018-.055.019-.095 0-.117-.022-.024-.028-.054-.079-.039-.015-.015-.019-.024-.039-.039-2.863-.895-5.953 1.458-10.117 5.185-2.587 2.61-2.941 3.256-3.086 3.041.164-1.874 7.66-13.255 9.18-13.255.29 0 2.134-2.163 2.812-2.807.869-2.218-4.479 2.696-8.242 7.992-8.438 11.243-10.356 22.604-9.922 37.777.145 4.652-.2 8.303-.273 8.303-.362 0-2.547-5.42-3.633-8.927-2.75-8.875 1.469-27.387 8.633-36.763 1.23-1.574 4.22-4.987 4.687-5.77 1.014-1.932-4.938 4.778-7.109 8.07-.491.992-1.171 1.6-1.289 1.365-.118-.235.256-1.3.82-3.041 2.678-7.801 7.303-15.846 13.164-22.144 2.171-2.361 2.24-2.333.43-1.832-4.27 1.217-8.127 4.51-12.305 9.278-1.013 1.575-1.93 2.416-3.086 3.743.4-1.951 4.16-9.87 7.344-14.307 1.954-2.649 3.828-4.442 3.75-5.03-.078-.588-2.108.044-5.039 2.223-4.414 3.22-6.922 6.621-10.703 12.787-1.737 3.507-1.484 2.521-2.07 3.157 1.954-9.876 3.345-14.532 6.601-20.973 2.967-5.798 5.873-9.72 11.445-15.516 3.908-4.008 4.696-5.147 3.32-4.718-4.269 1.289-8.804 4.147-12.929 8.226-2.388 2.434-3.36 3.165-3.36 2.807 0-.358 1.167-2.354 3.556-6.004 5.065-7.729 12.39-15.762 19.843-20.7 3.69-2.506 9.519-5.263 8.867-5.692a.685.685 0 0 0-.312-.078c.388-.633-1.658-.19-6.836 1.403-5.138 1.575-10.639 4.634-16.211 8.928-2.154 2.015-1.728.351 3.555-4.873 2.822-2.863 7.165-6.347 9.336-7.564 3.618-2.147 3.33-2.645 1.015-2.144-5.427 1.074-15.867 7.006-18.906 10.8-.017.02-.022.017-.039.038-.13.05-.245.067-.43.156-1.643 1.01-3.231 3.275-2.851 2.3.38-.975 1.207-1.799 3.125-4.912 5.862-9.447 13.64-16.353 23.554-22.221 2.443-1.477 2.54-2.2.82-2.028zm-54.648 38.087c.021-.017.055-.025.078-.038l-.078-.078v.116zm48.944-35.398a.312.312 0 0 1 .196.078c.145.215-.774 1.006-2.149 1.793-2.677 1.718-11.714 10.6-14.609 14.464-3.69 4.795-7.997 12.584-10.312 18.596-1.303 3.363-2.305 5.562-2.305 4.99-.072-1.575 1.977-12.14 2.773-14.932a10.75 10.75 0 0 0 .43-2.027c.363-.227.931-.858 1.875-2.339a59.077 59.077 0 0 1 3.672-4.951c1.62-2.003 6.658-7.274 6.523-7.407-.02-.02-.094.025-.156.039.495-.354 1.01-.732 1.758-1.287 4.749-3.489 11.002-7.058 12.304-7.017zm-23.788 3.86c.052-.004.099.02.117.078.144.429-.758 6.65-2.422 13.878-3.329 15.244-5.76 27.2-6.484 35.36-.507 5.01-.66 5.454-1.094 3.235-.362-1.36-.765-8.313-1.055-15.399-.506-14.027.054-18.124 3.672-25.925 2.035-4.495 6.478-11.174 7.266-11.227zm19.492 11.734c.217 0-1.725 1.933-4.258 4.366-10.349 9.59-17.885 22.5-22.227 38.245l-1.367 4.99.43-4.64c.217-2.576.743-6.604 1.25-8.966.651-2.863 2.186-7.585 3.75-11.812 1.564-4.228 3.038-7.824 6.21-10.994.69-.728 2.145-2.032 2.5-2.612.76-.537 1.897-1.365 3.946-2.963 2.895-2.29 8.68-5.614 9.766-5.614zm8.554 3.626c.34-.017.508.037.508.234 0 .143-1.897 1.46-4.14 2.962-5.5 3.579-15.696 14.112-19.532 19.766-3.473 5.153-8.733 15.273-10.976 21.714-2.026 5.94-1.898 2.747.273-5.77 1.954-7.514 6.815-18.705 10.469-24.131.678-.984 1.083-1.598 2.07-2.924.98-1.107 1.28-1.657 1.64-1.442.363.214 2.014-.791 3.75-2.222 3.8-3.194 13.566-8.069 15.938-8.187zm-48.476 5.34c.181-.062.425.25.86.858.506.716 1.894 4.005 3.124 7.368 3.33 9.304 7.743 34.195 6.368 35.555-.218.286-.43-.188-.43-.975 0-.787-1.6-6.47-3.555-12.553-5.644-17.32-7.598-25.888-6.875-28.966.217-.787.327-1.224.508-1.286zm37.265 15.36c.145 0-1.456 1.74-3.554 3.743-9.697 9.805-16.05 23.123-18.438 38.868-.579 3.937-1.396 7.44-1.757 7.797-.29.287-.844-1.296-1.133-3.586-.941-7.443 1.595-19.546 5.937-28.42.941-1.933 1.035-2.772 1.797-3.977.51-.432.989-1.439 1.875-2.612 3.237-3.555 8.558-8.873 12.031-10.448 1.665-.716 3.098-1.364 3.242-1.364zm-46.913 1.794 1.445 1.793c.796 1.002 2.822 3.72 4.414 6.082 3.04 4.437 11 20.125 11.797 23.274.29 1.002-.707-.568-2.227-3.43-1.52-2.863-4.855-7.943-7.46-11.306-5.862-7.73-7.97-11.478-7.97-14.269v-2.144zm-1.64 10.409c.223-.023.49 0 .78 0 2.099 0 6.528 3.91 10.508 9.278 4.56 6.155 9.85 19.108 12.383 30.058 1.23 5.582 3.32 19.897 3.32 23.118v2.3l-1.172-2.144c-.651-1.217-1.57-4.817-2.148-8.109-1.665-9.447-4.277-18.585-7.461-26.744-3.184-8.087-10.007-19.566-13.047-22.572-.456-.445-.82-.69-1.054-.78-.49-.804-1.539-1.64-2.032-2.066-1.583-1.44-1.646-2.18-.078-2.339zm-3.556 1.209 1.72 1.052c2.406 1.703 3.33 2.382 2.773 4.561-.307 2.137-.66 4.19-1.094 4.834-.507 1.002-1.1.263-1.68-2.027-.434-1.574-.921-4.15-1.21-5.653l-.509-2.767zm47.54 9.55c.206.02.17.268-.157.78-.666.551-2.296 2.682-3.164 3.899-4.632 6.227-11.354 23.417-12.656 33.293-.724 5.153-1.608 2.797-1.68-4.288-.145-10.234 4.426-21.686 11.445-28.771 2.877-2.952 5.59-4.968 6.211-4.912zm-48.282 4.484c.673.141 2.713 2.118 7.54 6.94 4.486 4.58 9.288 10.067 10.663 12.358 2.75 4.652 5.644 11.463 6.367 14.97.362 2.004-.367 1.21-4.492-4.444-2.75-3.722-6.606-8.71-8.632-11.072-7.816-9.018-10.7-13.457-11.641-17.894-.136-.582-.11-.922.195-.858zm53.515 1.91c.145 0-1.618 2.147-3.789 4.796-2.17 2.72-5.115 7.15-6.562 9.94-2.895 5.726-7.191 18.696-8.71 26.783-1.593 8.302-1.73 8.141-1.368-1.091.651-17.75 7.039-32.102 16.953-38.4 1.81-1.074 3.332-2.028 3.476-2.028zm-52.773 12.748 2.188 1.131c1.23.644 4.169 2.746 6.484 4.678 2.388 2.004 4.555 3.366 4.844 3.08.362-.286.451-.234.234.195-.217.358 1.608 3.452 4.141 6.744 4.849 6.298 10.196 16.222 12.656 23.235.796 2.362 1.356 4.373 1.211 4.445-.072.143-2.233-3.14-4.766-7.29-5.5-9.09-12.009-17.168-16.64-20.818-2.533-2.004-4.42-4.465-6.953-9.045l-3.399-6.355zm57.031 9.435c.05 0 .073.002.117 0-1.287 1.066-4.023 4.171-4.023 4.171-3.618 3.936-7.738 11.304-9.258 17.816-1.664 7.443-1.116 26.564 1.055 34.58.796 2.934 1.395 5.425 1.25 5.497-.507.5-4.79-11.437-5.586-15.516-1.23-6.227-1.158-20.83 0-25.77 1.375-5.582 4.482-12.093 7.305-15.242 2.46-2.791 6.97-5.536 9.14-5.536zm-55.39 2.456c1.092.05 2.367.622 4.375 1.91 7.743 4.867 17.5 17.744 28.789 37.855 9.046 16.246 14.256 28.494 6.875 16.256-10.493-17.32-27.567-40.43-34.297-47.444-.705-.734-1.058-1.012-1.133-.975l-.117-.195c-.94-1.145-3.736-3.423-5.039-4.21-2.894-1.79-2.968-2.508-.508-3.08a3.5 3.5 0 0 1 1.055-.117zm-2.734 3.275c.579 0 1.44.44 1.875 1.013.868 1.074.382 6.568-.703 7.212-.796.573-1.18-.26-1.758-4.483-.434-3.006-.283-3.742.586-3.742zm50.741 19.336s-.083 3.769-.156 8.42c-.651 19.897 6.245 36.643 19.922 48.81 8.177 7.229 17.424 11.179 32.187 13.684 4.921.859 9.421 1.578 10 1.793.579.215 7.387.922 6.953 1.637-.217.287.432.45 1.445.234 2.895-.5 11.87 1.45 14.258 1.52 3.69.072 27.772 5.072 33.36 7.057 1.953.787 6.21 5.71 6.21 7.212 0 .43-2.236.592-6.289.234-4.92-.358-7.466-.998-11.953-3.002-9.335-4.15-22.354-7.106-38.203-8.537-8.177-.716-34.672-5.359-42.343-6.862-9.48-1.932-16.277-4.237-24.96-8.46-9.264-4.508-14.485-8.01-20.274-13.45l-4.688-4.483 3.985 1.131c11.65 3.364 21.061 7.599 32.93 14.97 9.334 5.797 12.433 7.289 17.499 8.577 4.631 1.217 6.016 1.294 6.016.507 0-.287-2.385-1.286-5.352-2.144-20.19-6.227-35.39-27.06-35.39-48.459 0-3.578.353-7.879.86-9.668.723-2.791 3.694-10.72 3.983-10.72zm-46.952 2.3c.363.154.729.293 1.054.351 4.27.644 21.437 11.512 27.227 17.31 2.026 2.003 4.79 5.669 6.093 8.03l2.305 4.367-3.984-3.236c-2.244-1.79-6.307-4.585-8.984-6.16-2.823-1.646-8.813-6.952-14.024-11.89-3.682-3.434-7.625-7.14-9.687-8.772zm11.836 30.136c.303-.013.814.06 1.601.195 1.375.214 5.058 1.006 8.242 1.793 11.434 2.648 25.123 11.287 32.07 20.233l3.125 4.016-3.203-1.638c-1.737-.859-3.113-1.78-2.969-2.066.435-.716-6.795-6.735-10.703-8.81-1.953-1.074-7.456-3.28-12.304-5.069-8.829-3.149-14.044-5.754-15.781-7.758-.498-.626-.584-.875-.078-.896z' fill='%23cab313' fill-opacity='.502'/%3e%3cpath d='M382.785 291.842c-1.583.548-4.01 2.864-5.592 4.038-3.166 2.349-3.591 3.201-.584 1.088 2.217-1.565 5.972-4.38 9.335-4.795.314-.038-1.335 1.61-2.206 2.55-1.187 1.33-.87 1.253 1.9-.548 1.82-1.174 3.324-2.27 3.324-2.426 0-.626-3.407-.925-6.177.093zm-48.802 53.376c0 1.79 22.196 18.156 23.21 17.154.144-.143-2.75-2.147-6.514-4.437-3.69-2.219-8.472-6.08-10.933-8.227-2.388-2.147-5.408-5.617-5.763-4.49z' fill='%23cab313' fill-opacity='.502'/%3e%3cg stroke='%23d4af37' stroke-width='.904'%3e%3cpath d='M246.162 432.318c-5.483 1.69-12.845 1.998-16.376.691-1.277-.46-5.204-.206-6.18-.052 3.564 2.386 2.118 1.386 2.83 1.881 1.291.76.754.603 3.064 1.633-.395.45-.589.627-2.405 1.29 2.412.567 5.403.8 8.302.67a37.042 37.042 0 0 0 8.747-1.455c3.756-1.076 7.803-1.777 9.005-1.777 1.127 0 5.333 1.259 9.39 3.41 8.545 4.735 14.518 5.95 20.528 5.95 4.131 0 8.44-.922 13.329-4.113 3.613-2.36.568-2.302-3.027-.722-4.958 1.998-15.13 2.89-26.924-3.18-7.136-3.688-12.695-5.84-14.648-5.686-.376 0-2.93.691-5.635 1.46z' fill='%23fff' transform='matrix(.83739 0 0 .82218 198.784 50.956)'/%3e%3cpath d='M219.856 429.486c1.465 1.23 1.25 1.471 3.79 3.53 3.558.349 10.643 1.11 13.273 1.11 2.328 0 6.826-.404 9.906-1.25 6.233-1.314 9.223-.93 20.567 4.056 13.146 6.763 20.53 5.524 27.29 2.22 9.43-3.586.254-2.04-3.165-3.031-1.127.384-2.568 1.84-5.253 2.817-3.754 1.367-5.765 1.324-10.272-.981-2.855-1.46-5.387-2.152-7.946-3.552-2.52-1.46-3.15-1.289-7.358-2.672l-6.196-1.22-9.38-.496c-8.113 1.69-16.09.4-21.5-1.29-5.408-1.69-6.385-1.393-3.756.759z' fill='%23d91023' transform='matrix(.83739 0 0 .82218 198.784 50.956)'/%3e%3cpath d='M244.35 436.83c-6.46 1.921-14.34 2.016-17.27.94-1.532.62-.008-.018-3.84 1.365-5.033 1.69-5.108 1.768-2.93 2.382 1.278.385 6.311.692 11.27.615 8.563 0 9.314-.153 14.047-2.459 2.78-1.383 5.86-2.459 6.911-2.459.977 0 4.602 2.067 7.757 3.68 8.79 4.61 12.134 5.969 19.42 5.892 7.287-.077 16.694-5.291 17.862-7.074-5.596 3.396-10.23 5.156-17.312 4.87-7.082-.287-12.552-2.834-19.764-6.907-5.784-3.227-7.812-3.304-16.151-.845z' fill='%23d91023' transform='matrix(.83739 0 0 .82218 198.784 50.956)'/%3e%3cg stroke-width='.807'%3e%3cpath d='M293.47 417.689c1.216-1.4.855-1.915-2.49-2.381-8.288-1.323-18.856-6.3-23.113-10.888-2.129-2.334-3.117-2.567-3.117-.7 0 1.944 6.766 8.088 11.632 10.577 4.258 2.255 11.67 4.724 14.483 4.724.836 0 1.92-.477 2.604-1.332z' fill='%23fff' transform='matrix(-.29524 -.60606 -1.27207 .31586 1043.346 433.948)'/%3e%3cpath d='M290.67 421.403c.238-.407-.408-2.4-3.112-2.97-6.682-1.384-14.159-5.289-18.931-9.845-3.58-3.5-5.332-3.843-4.139-.67 1.62 4.575 14.327 11.001 19.259 12.547 5.011 1.628 6.206 2.077 6.922.938z' fill='%23d91023' transform='matrix(-.29524 -.60606 -1.27207 .31586 1043.346 433.948)'/%3e%3cpath d='m295.457 415.365.827-1.39-4.033-2.547c-4.601-.588-12.942-3.604-18.55-6.766-2.517-1.398-5.249-2.575-6.112-2.575-1.51 0-1.61 0 .116 1.913 3.954 4.34 14.336 9.397 21.742 10.427 2.373.367 4.788 2.042 6.01.938z' fill='%23ed1c24' transform='matrix(-.29524 -.60606 -1.27207 .31586 1043.346 433.948)'/%3e%3cpath d='M293.47 417.689c1.216-1.4.855-1.915-2.49-2.381-8.288-1.323-18.856-6.3-23.113-10.888-2.129-2.334-3.117-2.567-3.117-.7 0 1.944 6.766 8.088 11.632 10.577 4.258 2.255 11.67 4.724 14.483 4.724.836 0 1.92-.477 2.604-1.332z' fill='%23fff' transform='matrix(.33397 -.58616 1.24895 .39558 -143.25 396.105)'/%3e%3cpath d='M288.923 420.615c.146-.251 1.314-1.57-1.365-2.182-6.682-1.384-14.159-5.289-18.931-9.845-4.24-4.604-6.35-5.55-4.139-.67 1.62 4.575 14.327 11.001 19.259 12.547 5.011 1.628 4.46 1.289 5.176.15z' fill='%23d91023' transform='matrix(.33397 -.58616 1.24895 .39558 -143.25 396.105)'/%3e%3cpath d='m295.457 415.365.827-1.39-4.033-2.547c-4.601-.588-12.942-3.604-18.55-6.766-2.517-1.398-5.249-2.575-6.112-2.575-1.51 0-1.61 0 .116 1.913 3.954 4.34 14.336 9.397 21.742 10.427 2.373.367 4.788 2.042 6.01.938z' fill='%23ed1c24' transform='matrix(.33397 -.58616 1.24895 .39558 -143.25 396.105)'/%3e%3c/g%3e%3cpath d='M319.677 402.697c-6.356 1.817-11.424 5.84-16.665 13.131-2.07 2.879-4.032 4.339-2.635 5.038 1.538.77 2.898-1.393 5.658-4.15 6.96-6.955 12.479-9.89 19.997-9.972h5.969l-1.783-2.478c-2.17-2.973-4.573-3.303-10.541-1.569zm-50.443 2.385c-1.273 1.465-.895 2.003 2.604 2.491 8.67 1.384 19.727 6.591 24.181 11.392 2.227 2.44 3.261 2.685 3.261.732 0-2.034-7.079-8.462-12.17-11.066-4.454-2.36-12.208-4.942-15.152-4.942-.874 0-2.008.498-2.724 1.393z' fill='%23fff' transform='matrix(.83696 .02647 -.0267 .82176 210.874 47.246)'/%3e%3cpath d='M318.582 399.536c-1.706.578-4.108 1.651-5.426 2.312-3.566 1.982-9.02 8.373-9.834 9.58-.87 1.29-2.14 2.793-3.002 4.19-1.274 2.068-1.482 3.204-.845 3.33.637.126 2.12-.758 3.527-2.73 6.022-8.443 11.55-12.223 19.765-13.874 4.263-.826 4.883-.826 6.356.66 1.162 1.074-.337-.236-.57-.979-.542-1.817-1.91-2.737-4.546-3.233-1.24-.165-3.72.083-5.425.744z' fill='%23d91023' transform='matrix(.83696 .02647 -.0267 .82176 210.874 47.246)'/%3e%3cpath d='M271.987 403.32c-.238.406 1.83 1.139 4.534 1.708 6.682 1.383 14.159 5.289 18.931 9.845 3.58 3.499 5.332 3.843 4.139.67-1.62-4.575-14.327-11.002-19.259-12.548-5.011-1.627-7.629-.815-8.345.324zm48.533 4.061c-4.884 1.734-9.767 4.79-13.642 8.506-3.953 3.882-5.738 6.35-4.188 6.35.31 0 2.715-1.89 4.343-3.294 7.053-6.029 19.763-9.425 25.421-7.36 2.713.99 1.436-2.011-.424-4.736-1.162-1.735-8.023-.705-11.51.534zm-53.097-.266-3.307 3.14 4.928.794c5.091.651 14.318 3.987 20.522 7.486 2.784 1.546 5.807 2.847 6.761 2.847 1.67 0 1.782 0-.127-2.115-4.375-4.8-15.86-10.396-24.053-11.535-2.625-.407-3.372-1.837-4.724-.617z' fill='%23d91023' transform='matrix(.83696 .02647 -.0267 .82176 210.874 47.246)'/%3e%3cpath d='M304.493 422.389c-1.651 5.417-1.432 10.396-.97 14.138 1.605-.193 2.662-.24 5.27-.725.273-2.198.686-4.745.573-7.435.338-3.7-.019-1.771 2.183-4.736-2.375-1.526-3.013-1.66-7.056-1.242z' fill='%23d91023' transform='matrix(.83739 0 0 .82218 197.926 53.423)'/%3e%3cpath d='M296.203 428.628c-.084 4.215.317 5.13.27 7.137 2.355.385 7.422 1.07 7.121.225.02.922-.076-4.911-.002-7.985l.854-5.533-3.587-.549-3.23.405-1.426 6.3z' fill='%23fff' transform='matrix(.83739 0 0 .82218 197.926 53.423)'/%3e%3cpath d='M291.002 428.828c.15 3.343-.53 4.487-.13 6.445 1.05.318 5.047.184 6.286.568-.176-4.355-.176-.547-.598-6.234l1.266-7.28-3.595.287s-2.221-.69-3.732-.72c1.303 2.274.503 6.934.503 6.934z' fill='%23d91023' transform='matrix(.83739 0 0 .82218 197.926 53.423)'/%3e%3c/g%3e%3c/svg%3e\"},9778:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 600 400'%3e%3cclipPath id='a'%3e%3cellipse cx='300' cy='201' rx='85.849' ry='88.189'/%3e%3c/clipPath%3e%3cpath fill='%23ce1126' d='M0 0h600v400H0z'/%3e%3cpath fill='%23fff' d='M0 100h600v200H0z'/%3e%3cg clip-path='url(%23a)'%3e%3cpath d='m277.29 191.02-14.575-.42v-5.762l14.575 6.182zm-.06-1.68-14.515-7.383v-9.602s-1.7.24-1.458-1.681c.08-4.001 10.667 7.303 16.093 10.984l-.12 7.682zm-62.86 25.03 30.606.24v-18.966l-34.98-1.67 4.373 20.405zm-1.46-26.17 32.551 3.12-.242-13.443-31.822-12.484-.487 22.807zm6.56-26.88 25.021 12.003 3.573-3.686s-2.301-1.567-2.187-3.009c.043-1.458 2.314-1.68 2.358-3.262.041-1.458-2.573-1.633-2.602-3.092-.17-1.581 2.016-3.277 2.016-3.277l-22.591-19.446-5.588 23.768zm164.21 53.29h-32.307l-.242-18.485 35.464-2.641-2.915 21.127zm.79-26.7c-.408-3.001-.836-5.995-1.531-8.938a91.583 91.583 0 0 0-3.563-11.594c-.106-.278-.265-.534-.375-.812l-27.625 11.562.25 13.688 32.844-3.906zm-18.88-44.44-16.531 12.5c.027 1.196 1.22 2.116 1.548 3.26.763 1.607-.753 3.027-1.692 4.162-.76 1.047.879 1.58 1.424 2.199 1.2 1.232.154 3.162-1.124 3.879 1.54.92 2.318 2.645 2.656 4.344l24.75-12.875c-2.96-6.236-6.65-12.132-11.03-17.468zm-46.03 47.97 13.845-.6.242-5.523-14.088 6.123zm-.01-3-.06-6.241s13.116-11.703 15.91-13.864c0 2.4-1.518 4.26-1.518 4.26v9.124l-14.332 6.721zm-85.01-52.57c.242.24 14.718 16.14 14.718 16.14.406-1.507 3.744-1.736 7.144-1.495 3.402.24 6.113-.226 6.113 2.175 0 2.4-1.726 2.06-1.726 3.74s2.586 1.54 2.586 3.699c0 2.16-1.875 1.72-1.885 3.393-.006 1.383 1.956 1.456 1.956 1.456l13.785 13.205.06-14.105-28.42-44.052-14.33 15.845zm22.74-16.68c.216.64 19.25 38.906 19.25 38.906s.216-35.913 3.46-37.837l-5.406-9.834-17.303 8.765zm62.13-4.13-7.188 24.844a38.91 38.91 0 0 0 6.756.214c2.025.174.448 2.072.556 3.195l-.03 15.278 20.312-35.875c-4.67-2.438-9.627-4.248-14.616-5.905a67.174 67.174 0 0 0-5.79-1.751zm25.28 10.38-25.125 38.625-.031 14.875c5.594-5.322 11.217-10.617 16.794-15.957 1.058-1.499-3.36-2.233-1.152-4.059 2.001-.63 2.34-3.863.233-4.484-1.735-2.548 1.57-3.899 3.654-3.62 2.9.133 5.888-.631 8.725.174 1.561 1.493 3-2.255 4.532-3.099 3.03-3.047 6.063-6.092 9.058-9.173a80.56 80.56 0 0 0-16.688-13.282z' fill='%23ff9c10'/%3e%3cg fill='%23083d9c' stroke='%23083d9c' stroke-width='1.932'%3e%3cpath stroke-width='2.057' d='M279.88 275.41c-6.178.349-12.334 4.518-15.219 6.75 5.18 2.267 10.71 4.037 16.594 5.25 9.375 1.574 18.75 1.563 28.125 1.563 1.53-.193 3.045-.411 4.531-.657l19.75-6.656s-9.5-6.271-17.03-6c-7.532.271-12.616 7.638-18.689 7.094-6.072-.544-8.505-7.344-17.25-7.344-.273 0-.539-.015-.812 0z'/%3e%3cpath d='m244.01 270.31 112.23.48s-9.716-10.323-21.134-10.563c-11.417-.241-8.258 4.802-17.003 5.52-8.744.722-10.932-5.28-18.948-5.04-8.015.239-12.632 5.04-18.703 5.282-6.073.24-13.846-6.003-18.462-5.762-4.616.24-21.134 7.202-21.134 7.202l3.158 2.88zm-14.33-13.21 138.46.481c2.186-3.12-6.802-10.563-15.06-11.284-6.804.24-11.66 6.962-17.247 7.203-5.587.24-11.902-6.963-18.219-6.721-6.315.24-12.874 6.721-19.19 6.721-6.315 0-10.931-6.963-18.946-6.963-8.016 0-11.66 7.682-17.733 7.203-6.074-.48-11.418-7.682-17.247-7.682-5.83 0-15.546 8.642-17.489 8.161-1.943-.48 2.428 3.602 2.672 2.881zm53.53-13.24 30.908-.018c.24-.24-6.92-10.55-15.449-9.823-9.502.246-15.956 9.841-15.459 9.841zm98.56-.74h-42.294s5.474-3.197 6.966-6.147c2.736 1.475 1.99 2.95 7.464 3.196 5.473.246 10.697-6.146 15.923-5.9 5.224.245 11.941 9.097 11.941 8.851zm-166.67 0h42.294s-5.474-3.197-6.966-6.147c-2.736 1.475-1.99 2.95-7.464 3.196-5.472.246-10.697-6.146-15.923-5.9-5.224.245-11.941 9.097-11.941 8.851zm3.16-13.14 30.121.24s-1.943-4.08-2.186-9.122c-7.775-2.64-14.09 5.761-19.676 6.001-5.586.24-11.415-6.001-11.415-6.001l3.157 8.882zm160.81 0-30.122.24s1.944-4.08 2.186-9.122c7.775-2.64 14.09 5.761 19.677 6.001 5.587.24 11.416-6.001 11.416-6.001l-3.157 8.882zm-88.18.24 15.302-.479s.244-4.562-7.773-4.562c-8.016 0-7.286 5.282-7.53 5.041z'/%3e%3c/g%3e%3cpath d='m282.87 181 31.823 8.403v-44.895c-14.576.721-26.72-27.368-.972-29.288-25.263-3.601-28.179 2.881-31.093 9.843l.243 55.937zm7.07 40.58c-6.921 11.33-25.425 7.97-29.752.06-1.296-.363-.53-48.8-.53-48.8s-2.067-.93-2.163-2.42c-.094-1.504 2.812-1.64 2.812-3.565 0-1.924-2.968-1.17-3.027-3.106.012-1.852 3.168-1.597 3.027-3.308-.167-1.928-3.534-1.643-3.677-3.42-.11-1.413 2.408-2.644 3.108-3.28-.453.023-2.339-.027-2.35-.033l-5.3.107c-3.766.004.064.811.01 2.958-.035 1.403-1.91 2.336-2.078 3.556-.06 1.252 2.683 2.131 2.717 3.634.032 1.34-2.694 1.432-2.596 2.677.17 2.109 2.414 2.573 2.38 3.85-.034 1.274-3.02 1.76-3.028 2.778.104 1.968.432 49.807.432 49.807 4.759 24.37 32.228 30.569 40.015-1.496zm18.11 0c6.921 11.33 25.424 7.97 29.751.06 1.296-.363.53-48.8.53-48.8s2.068-.93 2.163-2.42c.094-1.504-2.63-1.64-2.63-3.565 0-1.924 2.787-1.17 2.845-3.106-.012-1.852-2.925-1.716-2.784-3.428.166-1.928 2.454-1.703 2.584-3.48.109-1.531-1.436-2.464-2.136-3.099.453.022 2.217-.028 2.23-.034l5.299.107c3.766.004-.065.811-.01 2.958.035 1.403 1.91 2.336 2.078 3.556.059 1.252-2.684 2.131-2.718 3.634-.03 1.34 2.695 1.432 2.596 2.678-.17 2.108-2.414 2.572-2.38 3.848.034 1.275 3.021 1.761 3.028 2.779-.103 1.968-.431 49.807-.431 49.807-4.76 24.37-32.228 30.569-40.015-1.496z' fill='%23ce1126' stroke='%23630810' stroke-width='1.932' stroke-linejoin='round'/%3e%3cg fill='%23630810' stroke='%23630810' stroke-width='2.792' stroke-linecap='round'%3e%3cpath d='M281.66 223.73c2.672-1.442 5.101-2.88 6.802-6.243l-10.446.24s-4.856 2.882-7.287 6.003h10.931zm33.76 0c-2.672-1.442-5.1-2.88-6.801-6.243l10.445.24s4.857 2.882 7.286 6.003h-10.93zm-52.71-10.08 71.903.24'/%3e%3cpath d='m266.11 196.61 8.502 11.284m-8.502-.004 9.232-11.043m-4.372-.967-.243 6.962' id='b'/%3e%3cuse xlink:href='%23b' x='13.604'/%3e%3cuse xlink:href='%23b' x='27.45'/%3e%3cuse xlink:href='%23b' x='41.782'/%3e%3cuse xlink:href='%23b' x='55.628'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e\"},9305:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 768 576'%3e%3cpath d='M0 0h768v576H0z'/%3e%3cpath d='M0 0h768v576z' fill='%23ce1126'/%3e%3cpath d='M475.485 167.354c-5.673 7.326-19.095-7.37-35.175-7.706-16.08-.335-27.471 15.41-32.16 20.77-4.69 5.361-19.765 33.5-19.43 36.515.335 3.015 9.38-8.374 12.73-10.384.335 4.02-3.685 8.71-2.68 10.05 1.005 1.34 11.724-8.04 15.41-8.375 1.005 2.68-2.01 5.36-1.005 9.38 1.34 1.34 7.37-6.7 11.39-8.375.67 3.015-3.685 8.71-1.34 12.395 1.675.334 11.724-11.39 15.075-12.73 3.35-1.341-1.676 11.054 0 12.06 3.015-2.01 12.395-12.731 15.41-14.07 3.015-1.34-.334 13.735 1.005 13.735 3.685-2.68 13.065-15.41 14.07-17.42 1.005-2.01-1.005 19.43 9.38 30.82 10.385 11.39 26.131 24.455 27.805 24.455 2.01-3.685-.669-11.39 1.005-11.055 4.69 5.025 13.4 12.395 15.41 12.395s-1.34-8.04 1.34-8.04c5.36 5.025 20.77 24.79 50.92 33.835-2.01-5.695-6.366-10.72-6.7-13.4 2.01.335 9.046 3.686 10.385 3.35 1.34-.336-14.74-20.1-13.735-22.78 3.685-.335 5.36 2.01 6.7.334-1.675-2.68-15.745-18.424-15.745-22.11 0-3.685 4.356.67 5.695 0 1.34-.67-5.36-14.74-4.02-16.414 1.34-1.675 16.08 9.045 19.765 9.045 3.685 0 1.005-13.065 2.68-13.736 1.675-.67 14.071 7.035 16.75 7.035 2.68 0 2.345-5.695 3.35-5.025 1.005.67 30.15 29.816 20.1 63.986-10.05 24.455-30.149 37.52-59.63 26.8 1.675 2.68 17.42 15.745 34.505 11.055 17.085-4.69 37.854-18.09 35.51-51.59-2.345-33.5-13.401-38.19-15.075-43.215-1.675-5.025 2.681 1.34 6.365 2.68 3.685 1.341-.67-7.035-1.675-10.72-1.005-3.686 11.055 7.705 14.07 8.71 3.015 1.005-7.035-27.47-10.05-29.48-3.015-2.01 3.015.67 5.025 1.34 2.01.67-18.426-31.155-22.78-31.155-4.355 0 3.684-1.676 6.03-1.676 2.345 0-23.449-20.77-27.805-20.77-4.355 0 9.379-5.36 10.72-5.695 2.345.334-29.815-17.085-58.625.334-1.675-1.338 13.569-11.891 14.07-16.413.168-1.173-5.024-3.686-5.36-5.025-.335-1.34 8.04-5.36 8.375-8.375-2.01-2.68-5.695-1.675-7.705-2.345-.502-2.512 7.036-8.71 6.365-11.39-.502-1.507-6.03-2.01-7.37-1.004-1.34 1.005 3.518-7.035 2.68-9.38-.67-1.005-3.35-.335-6.03.335-1.675-.335 8.71-14.74 6.7-16.75-2.01-2.01-30.15 14.739-40.535 33.499-10.385 18.76-2.344 33.835-3.685 40.2-1.34 6.365-3.016 12.73-7.37 12.73-4.355 0-14.404-6.7-17.755-10.05-3.35-3.35-4.02-5.695-8.71-7.035-4.69-1.34-15.41 2.68-19.43 3.015-4.02.335-19.765-3.015-20.77-2.01-1.005 1.005 15.41 7.035 19.095 9.045 3.685 2.01 4.021 4.69 6.7 6.365 2.68 1.674 27.805 9.045 19.765 19.43zm98.155 47.235c8.04 8.04 62.31 44.22 62.31 88.44s-39.53 42.88-50.92 41.54c12.73 10.72 60.97 8.71 60.97-41.54 0-44.22-62.31-88.44-70.35-92.46-8.04-4.02-10.05-4.02-2.01 4.02z' fill='%23fcd116'/%3e%3cg fill='%23fff'%3e%3cpath d='m220.254 418.599 11.455-36.851L243.164 419 213 396.168h37.418z'/%3e%3cpath id='a' d='m192.418 178.496-22.909 73.702 60.327-44.862H155L215.327 253z'/%3e%3cuse xlink:href='%23a' x='-88' y='112.504'/%3e%3cuse xlink:href='%23a' x='87.582' y='104.504'/%3e%3cuse xlink:href='%23a' y='264.504'/%3e%3c/g%3e%3c/svg%3e\"},6015:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 180 90'%3e%3cpath fill='%230038a8' d='M0 0h180v90H0z'/%3e%3cpath fill='%23ce1126' d='M0 45h180v45H0z'/%3e%3cpath d='M77.942 45 0 90V0' fill='%23fff'/%3e%3cg transform='translate(28 45)' fill='%23fcd116'%3e%3ccircle r='9'/%3e%3cg id='d'%3e%3cg id='c'%3e%3cg id='b'%3e%3cpath d='m-1 0 .062.062L0 0l-.938-.062z' transform='scale(19)'/%3e%3cpath id='a' d='m-.884.116.05.05L0 0z' transform='scale(19.2381)'/%3e%3cuse xlink:href='%23a' transform='scale(1 -1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(45)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='rotate(90)'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='rotate(180)'/%3e%3cg transform='translate(-2.02)'%3e%3cg id='f' transform='translate(37.962)'%3e%3cpath id='e' d='M5 0 1.618 1.176l-.073 3.58-2.163-2.854-3.427 1.037L-2 0z'/%3e%3cuse xlink:href='%23e' transform='scale(1 -1)'/%3e%3c/g%3e%3cuse xlink:href='%23f' transform='rotate(120)'/%3e%3cuse xlink:href='%23f' transform='rotate(-120)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e\"},675:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-75 -40 120 80'%3e%3cpath fill='%23fff' d='M-75-40H45v80H-75z'/%3e%3cpath fill='%2301411C' d='M-45-40h90v80h-90z'/%3e%3ccircle r='24' fill='%23fff'/%3e%3ccircle r='22' cx='-7' cy='-40' fill='%2301411C' transform='rotate(-41.634 45 -40)'/%3e%3cpath fill='%23fff' d='m8.751-17.959 10.11 11.373L3.997-9.844l13.94-6.1-7.692 13.129z'/%3e%3c/svg%3e\"},7254:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3e%3cpath fill='%23fff' d='M0 0h16v10H0z'/%3e%3cpath fill='%23dc143c' d='M0 5h16v5H0z'/%3e%3c/svg%3e\"},2282:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23ED2939' d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M0 0h600v600H0z'/%3e%3cpath fill='%23002395' d='M0 0h300v600H0z'/%3e%3c/svg%3e\"},9761:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 15'%3e%3cclipPath id='a'%3e%3cpath d='M0 0v75h350v75h-50zm300 0H150v200H0v-50z'/%3e%3c/clipPath%3e%3cpath fill='%23012169' d='M0 0h30v15H0z'/%3e%3cpath d='m0 0 15 7.5M15 0 0 7.5' stroke='%23fff' stroke-width='1.5'/%3e%3cpath d='m0 0 300 150m0-150L0 150' stroke='%23c8102e' stroke-width='20' clip-path='url(%23a)' transform='scale(.05)'/%3e%3cpath d='M7.5 0v10M0 3.75h17.5' stroke='%23fff' stroke-width='2.5'/%3e%3cpath d='M7.5 0v10M0 3.75h17.5' stroke='%23c8102e' stroke-width='1.5'/%3e%3cpath d='M15 0v7.5H0V15h30V0z' fill='%23012169'/%3e%3cg fill='%23F7E017' stroke='%23000' stroke-width='.015'%3e%3cpath d='M20.018 7.954c-.32.271-.625.667-.7 1.025-.211 1.007-.491 1.231-.923 1.015 0 .541.474.582.682.266 0 .507.184.947.599 1.322.175.158.208.05.125-.125-.083-.175-.083-.74-.249-1.064.266.191.657.083.624-.441-.341.2-.68.192-.715-.283-.043-.557.174-1.366.557-1.715zm-.405-4.005c.023-.2-.02-.405-.166-.534-.282-.248-.558-.166-.764.034-.308-.166-.471.423-.82.324.058.191.15.274.324.208-.183.166 0 .366-.216.565.391.125.599-.091.582-.466.15.133.382.125.507-.025-.208-.067-.209-.247-.125-.416.125-.249.711-.239.678.31z'/%3e%3cpath fill='%23337321' d='M20.515 6.842c-.441.233-1.247.133-1.322-.441-.075-.574.482-.832.632-.906.233-.117.416.091.341.333a.377.377 0 0 0 .191-.565c.341.025.657-.233.79-.599-.12.114-.446.037-.714.02.083-.091.082-.269.057-.361-.282.29-.69.157-1.23.997.083-.291.241-.873.333-1.256.009-.038.016-.076.021-.115.032-.549-.553-.559-.678-.309.137.154.065.334.016.607-.058.324-.183 1.073-.291 1.322-.033-.391-.291-.416-.341-.607-.075.05-.116.183-.1.274-.092-.1-.408.025-.524-.125-.125.249.075.499.283.607-.121.008-.15.154-.283.154.179.208.362.291.574.308.212.017.37.096.499.353.208.417 1 .687 1.746.309z'/%3e%3cpath d='M21.613 6.334c-.249.69-.931 1.181-1.239 1.256-.524.127-1.592.646-1.878.913a.332.332 0 0 1-.118-.048c-.141-.1-.258-.424-.008-.699.782-.732 1.622-.416 2.146-.915-.441.233-1.247.133-1.322-.441a2.029 2.029 0 0 0 2.012-.599c.091.101.357.417.407.533z'/%3e%3cpath fill='%23337321' d='M20.018 7.954c-.395.335-.6 1.158-.558 1.715.012.155.055.26.121.324.029-.316.249-1.133.81-1.497.474-.308 1.214-.998 1.489-1.788a.634.634 0 0 0-.291-.341c-.273.746-1.002 1.104-1.571 1.587z'/%3e%3cpath fill='%23316D3A' d='M21.359 6.014a1.854 1.854 0 0 1-.769.62.403.403 0 0 0 .091-.249c-.391.15-1.173.133-1.489.017a2.029 2.029 0 0 0 2.012-.599c.068.074.126.14.155.211z'/%3e%3cpath fill='%23337321' d='M18.37 7.756c-.636.595-.216 1.114.033 1.231-.066.416.324.366.316.715.158-.091.2-.333.175-.524.2.216.707-.025.815.374.067-.441-.274-.881-.698-.84.175-.158.075-.416-.091-.482-.033.324-.399.324-.541.225-.142-.1-.259-.424-.009-.699z'/%3e%3cpath d='M19.746 11.54c-.069.04-.064.129-.021.187.087.116-.062.38.22.437.083.017.147-.034.179-.129.087-.262-.191-.291-.216-.416-.025-.125-.104-.112-.162-.079z'/%3e%3cpath d='M19.983 12.031c-.093.043-.175.104-.137.403.015.124.008.424-.1.428.066.033.208.069.266-.008.056.094.183.067.233-.05.066.054.158-.037.158-.116.058.037.175-.017.145-.195.071.025.162-.025.195-.071-.104-.021-.366-.162-.428-.274-.062-.113-.224-.167-.332-.117z'/%3e%3cpath d='M18.542 3.62c.042-.062.089-.12.141-.171m1.441 1.272c.073-.042.185-.047.309-.039m-.421 8.172c-.029-.042-.04-.216-.019-.322m.252.272a.493.493 0 0 1-.148-.262m.306.146c-.058-.027-.2-.21-.231-.328m.376.132a.825.825 0 0 1-.366-.297' fill='none'/%3e%3cpath d='M24.382 7.765c1.023.857 1.089 1.538.931 1.938-.083-.374-.507-.956-.948-1.106l.017-.832z'/%3e%3cpath fill='%23337321' d='M22.553 7.282h1.896v2.245c0 1.913-1.064 3.044-2.146 3.642-1.081-.599-2.146-1.73-2.146-3.642V7.282h1.331a.729.729 0 0 0 .15.466c.314-.031.669-.266.915-.466z'/%3e%3cpath fill='%23006EC7' d='M24.449 7.282v2.245c0 .577-.097 1.084-.262 1.525l-1.883-3.455-1.883 3.455a4.327 4.327 0 0 1-.262-1.525V7.282h4.29z'/%3e%3cpath d='M24.244 10.887a4.274 4.274 0 0 1-.14.369l-1.8-3.346-1.8 3.346a3.969 3.969 0 0 1-.14-.369l1.941-3.598 1.939 3.598z' stroke='none'/%3e%3cpath d='M23.159 12.118c.05.025.142.071.183.088.1-.2.116-.482.083-.732-.108.275-.474.266-.574.432.061.031.118.071.167.106-.125.125-.417.334-.583.384v-1.784c0-.125-.042-.229-.042-.333V9.91c0-.083-.017-.204-.091-.204-.075 0-.091.121-.091.204v.369c0 .104-.042.225-.042.333v1.784c-.091-.266-.45-.175-.616-.441a.466.466 0 0 1 .2-.008c-.125-.424-.466-.457-.532-.582 0 .175-.075.582.042.757a.437.437 0 0 1 .113-.092c.141.308.777.309.927.816.12-.187.553-.403.856-.728z'/%3e%3cpath d='M22.303 10.634c.141 0 .59-.046.753-.046.042 0 .077-.063.077-.141s-.034-.141-.077-.141c-.162 0-.611-.046-.753-.046-.141 0-.59.046-.753.046-.042 0-.077.063-.077.141s.034.141.077.141c.163 0 .612.046.753.046z'/%3e%3cpath d='M22.212 9.903a.18.18 0 0 0-.113-.039c-.094 0-.171.07-.171.156s.076.156.171.156c.094 0 .17-.07.17-.156 0-.067.097-.067.097 0 0 .135-.12.244-.267.244-.148 0-.267-.109-.267-.244s.12-.244.267-.244c.044 0 .086.01.123.027-.003.022-.01.064-.01.1zm-.661.685c.042 0 .076-.063.076-.141s-.034-.141-.076-.141'/%3e%3cpath d='M21.613 10.588c.042 0 .076-.063.076-.141s-.034-.141-.076-.141m.411.311c.051 0 .092-.076.092-.17 0-.094-.041-.17-.092-.17m.095.347c.053 0 .096-.08.096-.178 0-.098-.043-.178-.096-.178m.32.358c.054 0 .097-.081.097-.18 0-.099-.044-.18-.097-.18m.1.355c.053 0 .096-.078.096-.174 0-.096-.043-.174-.096-.174m.447.317c.043 0 .078-.064.078-.144s-.035-.144-.078-.144m-1.61 1.728a.618.618 0 0 1 .178-.074m1.514.091-.049-.035m.14.106c.116-.125.213-.266.267-.428'/%3e%3cpath fill='%23FFF' d='M21.922 8.87c0-.041.033-.058.072-.087.047-.035.066-.052.108-.052h.546c.04 0 .05.01.05.048v.741c0 .037-.009.048-.05.048h-.726v-.706'/%3e%3cpath fill='%23E5E5E5' d='M22.513 9.633c.072 0 .059-.002.109-.052.053-.052.048-.048.048-.096v-.679c0-.035-.009-.045-.046-.045h-.505c-.04 0-.057.016-.1.049-.036.027-.066.044-.066.082v.741h.56z'/%3e%3cpath fill='%23FFF' d='M22.567 9.617c0 .037-.009.048-.05.048h-.546c-.041 0-.049-.01-.049-.048v-.742c0-.037.009-.048.049-.048h.546c.041 0 .05.01.05.048v.742z'/%3e%3cpath fill='%2396877D' d='M23.625 6.847a.419.419 0 0 1 .083.434h-.158c.066-.2.025-.39-.258-.415-.423-.037-.915.782-1.655.881-.216-.258-.205-.749.07-.982-.142-.409-.441-.859-.649-1.053a2.03 2.03 0 0 0-.394-.027c.108-.233.416-.478.666-.578.04-.059.084-.116.124-.167.025-.32 1.547-.17 1.871.029.001.359.142 1.554.3 1.878z'/%3e%3cpath d='M21.781 7.066c-.036-.554-.26-1.011-.575-1.322.15.042.457.042.665-.108.274-.183.99-.503 1.252-.366.021.046.033.15.017.216-.062-.166-.753.091-.948.17-.187.087-.27.204-.204.466-.108-.091-.071-.179-.183-.245.045.108.082.303.095.461-.042-.112-.116-.353-.279-.495.141.274.264.933.206 1.283.112 0 .36-.11.459-.189-.087.125-.339.212-.501.245-.073.087-.123.312-.119.437-.011-.154.037-.529.115-.553zm1.844-.219c-.138-.153-.395-.236-.723-.147.05-.025.158-.067.254-.083-.012-.087-.091-.462-.104-.553l.092-.037c.046.225.104.482.141.586.029.008.096.021.154.05-.025-.087-.166-.715-.162-.782l.125-.067c.049.341.128.836.223 1.033z' fill='%23000' stroke='none'/%3e%3cpath fill='%2396877D' d='M23.551 7.282c.066-.2.025-.39-.258-.415-.219-.019-.457.194-.738.415h.996zM21.713 5.49a1.648 1.648 0 0 1-.545-.054.64.64 0 0 1 .041-.118c-.087.058-.253.172-.316.251.2.042.612.063.82-.079z'/%3e%3cpath fill='none' d='M21.708 6.766c.046.133.076.261.08.375m-.457-2.033c-.075.11-.141.228-.163.328.141.046.42.071.545.054'/%3e%3cpath fill='none' d='M21.059 5.713c.054.009.104.019.147.031.15.042.457.042.665-.108.208-.15.773-.615 1.414-.665'/%3e%3cpath fill='none' d='M20.894 5.569c.2.042.612.062.819-.079.482-.328.948-.52 1.414-.545'/%3e%3cpath fill='%23337321' d='M24.382 7.765c.698.482 1.214.948 1.364 1.696.15.748.433.948.782.748-.083.432-.516.482-.881.15.033.499-.166 1.098-.682 1.314-.033-.299.165-.536.108-.782-.025-.108-.033-.358.108-.474-.274.091-.707-.083-.748-.491.316.15.723.175.881-.225.157-.398.091-1.08-.932-1.936zm.882-3.892c.216-.565.782-.507.973-.266.557-.316.632.399 1.106.258-.008.133-.166.258-.341.249.183.166-.075.416.316.565-.333.166-.798-.008-.923-.466-.108.216-.499.216-.657.042.341-.091.316-.407.125-.532-.193-.126-.533-.075-.599.15zm-1.687 1.245c.155.5.476.966.822 1.283.399.366 1.002.274 1.339-.075.008.696-.713.75-1.114.532-.177-.096-.32-.046-.15.108.258.233.822.406 1.488.549 1.164.249.749 1.173.408 1.164.098-.002.178-.104.037-.231-1.01-.909-3.064-.551-3.031-2.58-.216.532-1.106.324-.69-.308.133.108.366.116.433-.05.052-.129.018-.354-.215-.548.038-.003.121 0 .112-.096.01.056.061.139.192.111.037.059.077.098.13.077.01-.004.042-.02.029-.079.01.112.141.151.21.143z'/%3e%3cpath d='M24.623 6.858c.482.316 1.028.316 1.53-.266.158-.183.407-.341.582-.358.175-.017.166-.183.299-.216-.083-.025-.116-.125-.241-.112.312-.108.22-.358.374-.478-.125.046-.32-.141-.499.096.046-.108-.017-.237-.062-.287.017.125-.245.15-.295.466-.028.177-.125.166-.141-.108-.012-.201-.108-.757-.224-1.039-.116-.283-.143-.671.015-.729a.308.308 0 0 0-.098-.102c-.193-.126-.532-.075-.599.15-.216.565.391.89.341 1.505-.091-.457-.832-.574-.823-1.023-.241.108-.208.308-.116.466-.15-.233-.491.15-.782-.166-.033.416.333.574.632.59-.15.266.05.491.249.565.008-.466.963-.275.973.524.008.68-.724.738-1.115.522zm1.339.657c1.164.249.749 1.173.408 1.164-.217-.005-.424-.187-.437-.345-.249.133-.183.395.008.499-.524-.062-.744.283-.757.661.096-.175.387-.187.495-.15.108.037.387.058.499-.067-.092.079.058.262-.071.403.437-.017.628-.424.553-.603.566-.514.458-1.354-.698-1.562zm-.886 3.951c.076.047.066.147.015.21-.103.126.052.427-.265.478-.094.015-.163-.045-.194-.152-.086-.296.226-.316.259-.455.034-.138.121-.121.185-.081z'/%3e%3cpath d='M24.79 12.003c.102.052.19.124.136.456-.023.138-.028.473.093.482-.076.034-.235.067-.297-.021-.067.102-.207.066-.258-.066-.077.057-.175-.049-.171-.137-.067.039-.194-.026-.154-.224-.08.025-.18-.035-.215-.087.117-.019.415-.165.49-.288.074-.122.257-.175.376-.115z'/%3e%3cpath fill='none' d='M24.721 12.921c.034-.045.054-.24.035-.359m-.292.293a.545.545 0 0 0 .176-.286m-.348.149c.066-.028.232-.226.272-.357m-.426.133c.077-.013.318-.157.421-.316'/%3e%3cpath d='M23.376 5.869c-.014.852.34 1.284.831 1.564-.182-.109-.103-.483-.349-.604.058-.004.15.079.295.046-.071-.158-.187-.399-.457-.432.071-.008.225.017.324-.021-.141-.217-.515-.113-.644-.553zm-.088-.811c-.03-.01-.055-.04-.08-.079-.131.028-.182-.055-.192-.111.008.096-.074.092-.113.095.234.194.268.419.216.548-.067.166-.299.158-.433.05-.017.353.441.47.607.025 0 .075.096.067.121.166.118-.191.028-.466-.126-.694z'/%3e%3cpath fill='%23337321' d='M22.557 3.37a.994.994 0 0 1-.295-.694c.008-.183.083-.383.349-.299-.083 0-.025.166-.112.183.071.025.166-.033.179-.071.017.058.125.042.133.108.042-.033-.004-.195-.066-.229.046-.025.071-.154.05-.216-.042.008-.104.067-.116.15.021-.067-.004-.233-.121-.258-.033.046-.042.158.004.22-.108-.025-.266.046-.304.137.008-.11.024-.267.092-.366.023-.033-.033-.091-.077-.012-.081-.158-.297-.241-.393-.162s-.224-.037-.303.087c-.079.125-.347.138-.333.27.008.079-.011.201-.05.245-.096.108.046.187.071.283-.017-.316.486-.931.99-.69-.046.079-.086.237-.1.428-.021.283.021.682.295.915l.107-.029z'/%3e%3cpath fill='%23c8102e' d='M22.706 2.38c-.003-.075.127-.172.301-.17.21.002.372.193.54.175.168-.019.085.075.05.1-.035.025-.056.062-.044.108.012.046-.009.076-.077.033-.15-.094-.299.037-.497-.035-.169-.064-.268-.099-.273-.211z'/%3e%3cpath fill='%2396877D' d='M21.85 4.343c-.083-.262-.399-.549-.553-.615l-.008-.141c.083-.033.283-.191.374-.279.624.299 1.472-.125 1.863-.565l.15.091-.075.1-.079-.042a4.777 4.777 0 0 1-.561.523c.145.037.344.062.399.059.349-.25.623-.474.756-.491l.112.15-.1.071-.079-.046c-.374.308-.798.981-.965 1.43-.232-.05-1.064-.017-1.234-.245z'/%3e%3cpath fill='none' d='M22.961 3.415a.607.607 0 0 1-.129-.045c-.067.062-.233.116-.445.125'/%3e%3cpath fill='none' d='M21.883 4.251c-.056-.31.033-.653.191-.757.345.229.936.229 1.285-.021'/%3e%3cpath fill='none' d='M21.883 4.089a8.87 8.87 0 0 1 .985.058c.141.021.378.079.345.15m-1.207-.252.077-.076-.077-.076-.076.075.076.077z'/%3e%3cpath fill='%23337321' d='M22.187 2.497c-.096-.133-.359-.175-.416.004-.025.079-.062.162-.125.2-.062.037-.048.151-.021.2.066.121.008.237.137.316 0-.096.141-.195.262-.22.121-.025.303-.133.328-.254.026-.122.068-.222-.165-.246z'/%3e%3cpath fill='%2396877D' d='M21.588 3.694h.033l.001.227a.075.075 0 0 1 .02.01l.196-.113.017.029-.197.114c.001.007.002.015.001.022l.196.113-.017.029-.198-.112a.047.047 0 0 1-.019.012v.226h-.033v-.227a.075.075 0 0 1-.02-.01l-.196.113-.017-.029.197-.114c-.001-.007-.002-.015-.001-.022l-.196-.113.017-.029.197.113a.047.047 0 0 1 .019-.012v-.227z'/%3e%3cpath fill='%2396877D' d='M21.884 4.25a.393.393 0 1 1 .033-.517.887.887 0 0 0-.046.211.27.27 0 1 0-.268.296.276.276 0 0 0 .263-.202c.001.052.003.171.018.212z'/%3e%3cpath fill='%23337321' d='M21.438 4.625c-.025-.029-.071-.108-.066-.166a.217.217 0 0 1 .141.054c-.004-.042-.021-.133-.012-.175a.38.38 0 0 1 .175.133.603.603 0 0 1-.008-.216c.05.029.133.108.15.162a.716.716 0 0 1 .058-.254c.037.037.096.071.133.121.008-.067.042-.146.091-.166a.483.483 0 0 1 .108.245c.037-.012.087-.075.108-.108a.228.228 0 0 1 .029.162c.046-.042.1-.1.112-.15a.319.319 0 0 1 .112.154c-.008-.054-.004-.15-.021-.204a.24.24 0 0 1 .125.154c.017-.058.054-.162.087-.187a.455.455 0 0 1 .062.212c.021-.042.054-.116.087-.133.029.046.025.146.017.2a.4.4 0 0 1 .116-.108.348.348 0 0 1 0 .112c.037-.021.1-.133.121-.191a.29.29 0 0 1 .121.179.452.452 0 0 0 .15-.133c0 .029.013.108-.004.17.025-.025.05-.075.062-.096.017.042.004.141-.013.195a.219.219 0 0 1 .125-.054c.004.071-.046.195-.092.287-.398-.111-1.234-.153-2.074-.199z'/%3e%3cpath d='M22.83 2.423c-.002-.031.066-.1.189-.099.147.001.283.109.4.101.118-.008.06.031.035.041-.025.01-.039.026-.031.044.009.019-.006.031-.054.014-.105-.038-.21.015-.348-.014-.119-.027-.188-.041-.191-.087z' stroke='none'/%3e%3cpath d='M21.567 4.875c-.125.15-.249.125-.274.029-.025-.096.067-.141.033-.225-.033-.083.054-.121.096-.083.042.037.175-.083.233.042.058.125.104.212.071.262-.034.05-.134.025-.159-.025zm.536-.225c-.023-.055.106-.16.173-.085.067.075.171-.081.229.037.058.119.077.181.106.247.029.067-.158.102-.216.044.008.039-.162.07-.208-.042-.025-.059-.052-.128-.084-.201zm.865.069c-.031-.058.121-.141.2-.035.021-.044.171-.052.181.075l.019.252c.004.05-.091.096-.16-.031-.123.025-.179-.044-.193-.116a.54.54 0 0 0-.047-.145z'/%3e%3cpath fill='%23337321' d='M21.648 4.636c-.019-.042.106-.125.191-.062.085.062.203-.054.254.058.102.227.108.243.077.287-.031.044-.164.027-.198-.033-.006.042-.121.035-.181.002-.068-.038-.116-.177-.143-.252zm.875.01c-.029-.064.166-.121.252-.008.044-.04.139-.042.193.081.054.123.062.191.023.222-.028.022-.129.039-.162-.017-.046.029-.187.004-.218-.075-.031-.078-.058-.147-.088-.203zm.828.123c-.004-.058.102-.085.141 0 .04.085.166.008.177.15.002.027-.015.131-.054.181s-.233 0-.245-.106a2.419 2.419 0 0 1-.019-.225z'/%3e%3cpath d='M21.567 4.875c-.046-.062-.108-.162-.187-.054m.593.064a.49.49 0 0 1-.075-.139m.497.148a.345.345 0 0 1-.096-.106m.058-.113c.073.008.123.077.145.108.023.031.071.087.108.094m.219.048c-.025-.04-.05-.075-.056-.104m.002-.183a.483.483 0 0 1 .058.098m.374.243a.345.345 0 0 0-.129-.143m.113-.086c.004.123.168.131.175.218m.126-.199a.238.238 0 0 1 .025.114' fill='none'/%3e%3c/g%3e%3c/svg%3e\"},3642:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600' fill='%23FFF'%3e%3cpath d='M0 0h900v600H0'/%3e%3cpath stroke='%23E00' stroke-width='120' d='M0 60h900m0 240H0m0 240h900'/%3e%3cpath fill='%230050F0' d='M0 0v600l520-300'/%3e%3cpath d='m114 382 59-183 59 183L77 269h192'/%3e%3c/svg%3e\"},5711:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 3'%3e%3cpath fill='%23007A3D' d='M0 0h6v3H0z'/%3e%3cpath fill='%23FFF' d='M0 0h6v2H0z'/%3e%3cpath d='M0 0h6v1H0z'/%3e%3cpath fill='%23CE1126' d='m0 0 2 1.5L0 3Z'/%3e%3c/svg%3e\"},9668:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 600 400'%3e%3cpath fill='red' d='M0 0h600v400H0z'/%3e%3cpath fill='%23060' d='M0 0h240v400H0z'/%3e%3cg fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='.573' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M318.24 262.04c-30.21-.91-168.74-87.38-169.69-101.15l7.65-12.757c13.74 19.966 155.36 104.06 169.27 101.08l-7.23 12.823'/%3e%3cpath d='M154.59 146.4c-2.71 7.294 36.149 31.318 82.903 59.754 46.752 28.434 87.065 46.006 90.053 43.486.183-.325 1.47-2.54 1.352-2.523-.56.844-1.923 1.11-4.05.497-12.632-3.643-45.576-18.765-86.375-43.506-40.798-24.743-76.294-47.544-81.81-57.232-.384-.671-.658-1.896-.602-2.848l-.134-.002-1.175 2.053-.161.322h-.001zm164.36 116.04c-.512.93-1.467.96-3.282.761-11.3-1.25-45.589-17.925-86.162-42.213-47.21-28.26-86.2-54.01-81.97-60.74l1.151-2.034.227.07c-3.804 11.405 76.948 57.578 81.702 60.522 46.724 28.947 86.115 45.851 89.601 41.458l-1.268 2.181v-.002z'/%3e%3cpath d='M240.17 169.23c30.237-.239 67.55-4.132 89.023-12.69l-4.627-7.517c-12.692 7.025-50.21 11.644-84.652 12.335-40.736-.375-69.49-4.168-83.897-13.835l-4.367 8.005c26.484 11.207 53.623 13.587 88.52 13.703'/%3e%3cpath d='M330.44 156.71c-.739 1.182-14.743 6.011-35.373 9.575-13.988 2.133-32.234 3.956-55.004 3.978-21.633.02-39.305-1.52-52.684-3.333-21.656-3.396-32.833-8.12-36.965-9.79.395-.785.65-1.337 1.03-2.07 11.895 4.736 23.124 7.591 36.28 9.615 13.29 1.8 30.75 3.362 52.275 3.342 22.664-.023 40.71-1.984 54.616-4.053 21.155-3.412 32.711-7.804 34.334-9.843l1.494 2.579h-.002zm-4.06-7.623c-2.293 1.842-13.718 5.894-33.82 9.104-13.414 1.922-30.471 3.643-52.264 3.664-20.704.02-37.62-1.375-50.485-3.249-20.414-2.666-31.28-7.475-35.196-8.877.39-.674.786-1.343 1.194-2.014 3.048 1.535 13.533 5.791 34.226 8.723 12.72 1.803 29.66 3.147 50.262 3.126 21.69-.022 38.553-1.776 51.883-3.688 20.205-2.78 31.077-7.948 32.728-9.241l1.473 2.45v.003zm-185.5 56.573c18.598 10.003 59.905 15.044 98.994 15.391 35.591.056 81.958-5.502 99.297-14.69l-.477-10.012c-5.425 8.477-55.113 16.609-99.206 16.276-44.093-.333-85.038-7.143-98.687-15.959l.08 8.991'/%3e%3cpath d='M340.12 204.22v2.387c-2.605 3.116-18.945 7.826-39.436 11.142-15.595 2.391-35.927 4.195-61.262 4.195-24.07 0-43.263-1.716-58.148-4.001-23.53-3.427-38.58-9.427-41.6-11.217l.013-2.786c9.075 6.034 33.661 10.447 41.917 11.798 14.788 2.27 33.868 3.974 57.817 3.974 25.216 0 45.434-1.792 60.931-4.167 14.701-2.123 35.644-7.646 39.767-11.324h.001zm.01-8.492v2.387c-2.605 3.114-18.945 7.824-39.436 11.14-15.595 2.391-35.927 4.195-61.262 4.195-24.07 0-43.263-1.715-58.148-4.002-23.53-3.424-38.58-9.424-41.6-11.216l.013-2.785c9.075 6.033 33.661 10.447 41.917 11.796 14.788 2.272 33.868 3.976 57.817 3.976 25.216 0 45.434-1.792 60.931-4.17 14.701-2.123 35.644-7.646 39.767-11.323l.001.002zM239.79 260.32c-42.772-.255-79.421-11.659-87.16-13.544l5.643 8.834c13.67 5.75 49.424 14.32 81.927 13.371 32.504-.948 60.91-3.466 80.928-13.21l5.787-9.156c-13.642 6.425-60.068 13.639-87.125 13.705'/%3e%3cpath stroke-width='.55' d='M323.3 253.72a134.08 134.08 0 0 1-2.596 3.83c-9.442 3.329-24.32 6.824-30.597 7.843-12.824 2.643-32.665 4.594-50.274 4.603-37.89-.554-68.905-7.972-83.496-14.299l-1.178-2.024.193-.304 1.996.774c25.948 9.284 55.091 12.987 82.698 13.652 17.538.062 35.095-2.01 49.292-4.549 21.771-4.362 30.574-7.65 33.275-9.14l.687-.386h0zm5.017-8.275.066.077a269.275 269.275 0 0 1-1.963 3.263c-5.035 1.8-18.702 5.798-38.659 8.589-13.149 1.791-21.322 3.526-47.479 4.034-49.015-1.247-80.75-10.831-88.289-13.195l-1.117-2.143c28.406 7.415 57.422 12.592 89.408 13.12 23.93-.509 34.112-2.271 47.152-4.05 23.27-3.618 34.996-7.449 38.515-8.555a2.667 2.667 0 0 0-.154-.2l2.523-.942-.002.002z'/%3e%3cpath d='M328.83 197.76c.139 28.137-14.26 53.386-25.858 64.525-16.408 15.759-38.163 25.896-63.569 26.363-28.37.521-55.12-17.974-62.295-26.099-14.028-15.885-25.449-36.057-25.815-63.243 1.738-30.709 13.793-52.1 31.268-66.769s40.743-21.813 60.121-21.302c22.358.59 48.475 11.558 66.521 33.332 11.823 14.266 16.943 29.748 19.627 53.193zm-89.186-96.342c54.485 0 99.296 44.338 99.296 98.703 0 54.364-44.811 98.704-99.296 98.704s-98.924-44.339-98.924-98.704 44.439-98.703 98.924-98.703'/%3e%3cpath d='M239.91 101.08c54.534 0 99.011 44.483 99.011 99.022 0 54.538-44.478 99.02-99.011 99.02-54.534 0-99.011-44.481-99.011-99.02s44.478-99.022 99.011-99.022zm-96.832 99.022c0 53.26 43.736 96.842 96.832 96.842 53.097 0 96.833-43.582 96.833-96.842 0-53.262-43.737-96.844-96.833-96.844s-96.832 43.584-96.832 96.844z'/%3e%3cpath d='M239.99 109.31c49.731 0 90.693 40.821 90.693 90.704 0 49.884-40.963 90.703-90.693 90.703s-90.693-40.819-90.693-90.703c0-49.883 40.964-90.704 90.693-90.704zm-88.515 90.703c0 48.685 39.979 88.524 88.515 88.524s88.515-39.839 88.515-88.524c0-48.686-39.978-88.525-88.515-88.525-48.536 0-88.515 39.84-88.515 88.525z'/%3e%3cpath d='M243.98 100.68h-8.485l.01 198.96h8.514z'/%3e%3cpath d='M243.13 99.546h2.16l.018 201.25h-2.161l-.016-201.25zm-8.421.002h2.176l.003 201.25h-2.178V99.548z'/%3e%3cpath d='M338.99 203.935v-7.355L333 191l-34-9-49-5-59 3-42 10-8.48 6.28v7.357L162 194l51-8h49l36 4 25 6z'/%3e%3cpath d='M239.95 184.77c23.383-.043 46.07 2.215 64.065 5.72 18.569 3.712 31.637 8.355 36.105 13.57l-.005 2.583c-5.388-6.49-22.973-11.248-36.518-13.968-17.858-3.474-40.393-5.717-63.647-5.674-24.538.046-47.387 2.37-64.984 5.803-14.12 2.802-32.951 8.368-35.302 13.858v-2.689c1.291-3.8 15.313-9.479 34.984-13.417 17.729-3.457 40.62-5.741 65.302-5.786zm.01-8.492c23.383-.042 46.07 2.217 64.065 5.72 18.569 3.713 31.637 8.355 36.105 13.57l-.005 2.583c-5.388-6.489-22.973-11.247-36.518-13.966-17.858-3.476-40.393-5.719-63.647-5.674-24.538.044-47.276 2.37-64.875 5.801-13.626 2.584-33.226 8.37-35.412 13.86v-2.69c1.291-3.76 15.597-9.642 34.985-13.417 17.729-3.458 40.62-5.74 65.302-5.787zm-.48-43.318c36.849-.184 68.99 5.152 83.695 12.685l5.364 9.279c-12.781-6.888-47.456-14.05-89.005-12.979-33.854.208-70.027 3.727-88.176 13.41l6.403-10.709c14.895-7.724 50.022-11.643 81.72-11.684'/%3e%3cpath d='M239.97 140.62c21.017-.056 41.325 1.13 57.476 4.044 15.041 2.799 29.385 7 31.436 9.26l1.59 2.81c-4.988-3.257-17.4-6.884-33.339-9.906-16.006-3.008-36.3-4.005-57.2-3.95-23.722-.081-42.152 1.171-57.969 3.929-16.728 3.13-28.334 7.601-31.197 9.726l1.558-2.97c5.564-2.838 14.39-6.26 29.223-8.93 16.357-2.988 34.983-3.884 58.423-4.013h0zm-.009-8.484c20.113-.053 39.972 1.068 55.452 3.85 12.209 2.377 24.283 6.088 28.704 9.39l2.326 3.695c-3.954-4.395-18.836-8.56-31.974-10.892-15.361-2.65-34.395-3.698-54.508-3.866-21.108.06-40.615 1.352-55.752 4.108-14.441 2.749-23.76 6.002-27.703 8.543l2.045-3.087c5.441-2.864 14.232-5.495 25.303-7.646 15.249-2.777 34.876-4.036 56.108-4.095zM289.15 241.26c-18.218-3.4-36.469-3.895-49.217-3.745-61.407.72-81.244 12.61-83.665 16.21l-4.59-7.482c15.635-11.332 49.074-17.687 88.588-17.037 20.518.336 38.224 1.698 53.119 4.583l-4.236 7.473'/%3e%3cpath stroke-width='.55' d='M239.58 236.46c17.082.255 33.849.96 50.033 3.978l-1.172 2.07c-15.031-2.775-31.055-3.837-48.803-3.75-22.663-.178-45.585 1.939-65.541 7.666-6.297 1.753-16.721 5.8-17.784 9.146l-1.166-1.923c.336-1.977 6.636-6.08 18.414-9.39 22.858-6.545 44.24-7.649 66.02-7.799v.002zm.775-8.596c17.698.33 35.975 1.149 53.74 4.668l-1.22 2.153c-16.042-3.184-31.37-4.246-52.415-4.57-22.735.042-46.851 1.663-68.778 8.037-7.08 2.063-19.297 6.52-19.704 10.05l-1.166-2.065c.265-3.206 10.842-7.388 20.358-10.156 22.096-6.424 46.275-8.076 69.186-8.117z'/%3e%3cpath d='m327.58 247.38-7.379 11.449L299 240l-55-37-62-34-32.19-11.01 6.86-12.72L159 144l20 5 66 34 38 24 32 23 13 15z'/%3e%3cpath d='M148.65 158.29c5.646-3.83 47.139 14.655 90.555 40.834 43.301 26.254 84.677 55.921 80.942 61.473l-1.228 1.932-.564.445c.12-.087.743-.848-.06-2.906-1.846-6.07-31.196-29.491-79.895-58.895-47.475-28.31-87.04-45.371-90.997-40.494l1.247-2.39h0zm180.44 88.927c3.57-7.052-34.916-36.044-82.632-64.272-48.813-27.666-83.994-43.951-90.42-39.095l-1.428 2.6c-.012.142.052-.178.354-.411 1.168-1.02 3.105-.95 3.979-.967 11.065.166 42.667 14.71 87.006 40.128 19.428 11.315 82.071 51.491 81.832 62.79.017.97.08 1.17-.285 1.651l1.594-2.423v-.002z'/%3e%3c/g%3e%3cpath fill='%23fff' stroke='%23000' stroke-width='.67' d='M180.6 211.01c0 16.271 6.663 30.987 17.457 41.742 10.815 10.778 25.512 17.579 41.809 17.579 16.381 0 31.247-6.653 42.016-17.389 10.769-10.735 17.443-25.552 17.446-41.88h-.002v-79.189l-118.74-.141.012 79.278h.002z'/%3e%3cpath fill='red' stroke='%23000' stroke-width='.507' d='M182.82 211.12v.045c0 15.557 6.441 29.724 16.775 40.009 10.354 10.305 24.614 16.712 40.214 16.712 15.681 0 29.912-6.36 40.222-16.626 10.308-10.265 16.697-24.433 16.699-40.044h-.002V134.39l-113.84-.019-.07 76.748m91.022-53.747.004 48.891-.041 5.172c0 1.361-.081 2.912-.24 4.233-.925 7.73-4.48 14.467-9.745 19.708-6.164 6.136-14.671 9.942-24.047 9.942-9.327 0-17.64-3.938-23.83-10.1-6.349-6.32-10.03-14.986-10.03-23.947l-.012-54.023 67.94.122.002.002z'/%3e%3cg id='e'%3e%3cg id='d' fill='%23ff0' stroke='%23000' stroke-width='.5'%3e%3cpath stroke='none' d='M190.19 154.43c.135-5.521 4.052-6.828 4.08-6.847.029-.019 4.232 1.407 4.218 6.898l-8.298-.051'/%3e%3cpath d='m186.81 147.69-.682 6.345 4.14.009c.04-5.25 3.975-6.123 4.07-6.103.09-.005 3.989 1.16 4.093 6.103h4.151l-.75-6.394-15.022.038v.002zm-.96 6.37h16.946c.357 0 .65.353.65.784 0 .43-.293.781-.65.781H185.85c-.357 0-.65-.35-.65-.781 0-.431.293-.784.65-.784z'/%3e%3cpath d='M192.01 154.03c.018-3.313 2.262-4.25 2.274-4.248 0 0 2.342.966 2.36 4.248h-4.634m-5.8-8.98h16.245c.342 0 .623.318.623.705 0 .387-.28.704-.623.704H186.21c-.342 0-.623-.315-.623-.704 0-.387.28-.705.623-.705zm.34 1.42h15.538c.327 0 .595.317.595.704 0 .388-.268.704-.595.704H186.55c-.327 0-.595-.316-.595-.704 0-.387.268-.704.595-.704zm5.02-10.59 1.227.002v.871h.895v-.89l1.257.004v.887h.897v-.89h1.258l-.002 2.01c0 .317-.254.521-.549.521h-4.41c-.297 0-.57-.237-.572-.526l-.003-1.988h.001zm4.62 2.69.277 6.451-4.303-.015.285-6.453 3.741.017'/%3e%3cpath id='a' d='m190.94 141.56.131 3.478-4.125.001.116-3.479h3.879-.001z'/%3e%3cuse xlink:href='%23a' x='10.609'/%3e%3cpath id='b' d='m186.3 139.04 1.2.003v.872h.877v-.892l1.23.004v.889h.879v-.893l1.23.002-.002 2.012c0 .314-.249.518-.536.518h-4.317c-.29 0-.559-.235-.56-.525l-.002-1.989z'/%3e%3cuse xlink:href='%23b' x='10.609'/%3e%3cpath fill='%23000' stroke='none' d='M193.9 140.61c-.026-.627.877-.634.866 0v1.536h-.866v-1.536'/%3e%3cpath id='c' fill='%23000' stroke='none' d='M188.57 142.84c-.003-.606.837-.618.826 0v1.187h-.826v-1.187'/%3e%3cuse xlink:href='%23c' x='10.641'/%3e%3c/g%3e%3cuse xlink:href='%23d' y='46.32'/%3e%3cuse xlink:href='%23d' transform='rotate(-45.202 312.766 180.004)'/%3e%3c/g%3e%3cuse xlink:href='%23d' x='45.714'/%3e%3cuse xlink:href='%23e' transform='matrix(-1 0 0 1 479.792 0)'/%3e%3cg id='f' fill='%23fff'%3e%3cpath fill='%23039' d='M232.636 202.406v.005c0 2.212.85 4.227 2.212 5.69 1.365 1.466 3.245 2.377 5.302 2.377 2.067 0 3.944-.905 5.303-2.365 1.358-1.459 2.202-3.472 2.202-5.693v-10.768l-14.992-.013-.028 10.766'/%3e%3ccircle cx='236.074' cy='195.735' r='1.486'/%3e%3ccircle cx='244.392' cy='195.742' r='1.486'/%3e%3ccircle cx='240.225' cy='199.735' r='1.486'/%3e%3ccircle cx='236.074' cy='203.916' r='1.486'/%3e%3ccircle cx='244.383' cy='203.905' r='1.486'/%3e%3c/g%3e%3cuse xlink:href='%23f' y='-26.016'/%3e%3cuse xlink:href='%23f' x='-20.799'/%3e%3cuse xlink:href='%23f' x='20.745'/%3e%3cuse xlink:href='%23f' y='25.784'/%3e%3c/svg%3e\"},6103:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500'%3e%3cpath fill='%234AADD6' d='M0 0h800v500H0z'/%3e%3ccircle fill='%23FFDE00' cx='350' cy='250' r='150'/%3e%3c/svg%3e\"},6475:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 330'%3e%3cpath fill='%230038a8' d='M0 0h600v330H0z'/%3e%3cpath fill='%23fff' d='M0 0h600v220H0z'/%3e%3cpath fill='%23d52b1e' d='M0 0h600v110H0z'/%3e%3cg fill='none' stroke='%23000'%3e%3ccircle stroke-width='1.076' cx='300' cy='165' r='42.2'/%3e%3ccircle stroke-width='.478' cx='300' cy='165' r='34.67'/%3e%3ccircle stroke-width='.438' cx='300' cy='165' r='26.56'/%3e%3c/g%3e%3cpath d='m277.53 181.28-4.893 2.905-1.496-2.52c-.277-.467-.45-.848-.516-1.142a1.326 1.326 0 0 1 .09-.862c.128-.28.347-.513.659-.698.271-.16.54-.242.805-.243.266-.001.52.063.763.193.154.082.324.22.508.415a1.753 1.753 0 0 1-.053-.5c.007-.08.044-.212.113-.395a2.15 2.15 0 0 1 .178-.392l.984-1.574 1.015 1.71-1.016 1.695c-.132.217-.204.383-.214.497-.011.154.024.3.106.438l.08.134 1.985-1.18zm-3.812.21-.379-.638a2.65 2.65 0 0 0-.304-.36.465.465 0 0 0-.3-.155.526.526 0 0 0-.34.074c-.157.093-.249.215-.274.366s.044.363.208.64l.394.663zm-4.608-3.78-1.487-4.471 1.153-.384.93 2.8.859-.286-.864-2.597 1.102-.366.863 2.597 1.065-.354-.958-2.88 1.222-.407 1.514 4.552zm-1.95-6.65-.332-2.904c-.073-.632.024-1.123.288-1.472.265-.35.675-.556 1.23-.62.571-.065 1.037.055 1.397.362.361.306.582.812.662 1.516l.11.957 2.098-.24.2 1.754zm2.21-2.03-.05-.428c-.038-.337-.124-.567-.256-.69a.57.57 0 0 0-.473-.153.632.632 0 0 0-.43.23c-.11.131-.147.36-.11.687l.057.498zm-2.39-8.65.188-1.744 3.373.363c.334.037.645.123.93.259.286.136.529.328.727.574s.33.497.394.751c.089.353.108.768.057 1.244-.03.275-.082.573-.155.895a2.37 2.37 0 0 1-.318.791 2.056 2.056 0 0 1-.553.548c-.23.158-.461.259-.692.302a3.408 3.408 0 0 1-.975.058l-3.373-.363.189-1.745 3.453.373c.31.033.56-.026.752-.179.192-.152.304-.38.337-.684.032-.3-.028-.546-.18-.735-.153-.19-.386-.302-.7-.335zm.76-4.17 1.086-3.107c.181-.518.448-.87.802-1.058a1.32 1.32 0 0 1 1.098-.083c.317.11.555.305.713.582.105.185.158.42.157.705.228-.354.486-.582.776-.685.29-.103.605-.095.947.025a1.515 1.515 0 0 1 1.025 1.172c.032.167.017.398-.044.692a7.8 7.8 0 0 1-.187.77l-1.001 2.864zm2.692-.938.253-.722c.09-.259.108-.455.055-.587-.054-.133-.165-.228-.334-.287-.156-.055-.296-.047-.42.024s-.228.231-.316.483l-.256.733zm2.11.738.297-.847c.1-.286.12-.505.059-.657a.543.543 0 0 0-.347-.32c-.159-.055-.307-.041-.444.041s-.256.269-.358.56l-.295.842zm-2.112-6.64.908-1.505 3.673 2.216 1.418-2.35 1.2.724-2.327 3.855zm3.44-5.21 1.128-1.354 4.371 3.643-1.128 1.354zm7.65-2.94 1.472-.651c.203.395.315.775.335 1.14.02.365-.047.71-.2 1.038-.155.327-.425.656-.812.988-.469.403-.91.665-1.325.784-.415.119-.878.1-1.389-.059-.51-.158-.996-.505-1.457-1.04-.614-.715-.896-1.427-.846-2.137.05-.71.423-1.363 1.118-1.96.543-.468 1.065-.725 1.565-.772.5-.048 1.021.091 1.564.417l-.953 1.274a1.33 1.33 0 0 0-.377-.178 1.012 1.012 0 0 0-.477 0 1.031 1.031 0 0 0-.432.229c-.303.26-.43.58-.382.962.034.285.217.62.549 1.007.412.48.766.745 1.064.798.298.053.578-.034.841-.26.255-.219.387-.456.394-.712.007-.255-.077-.545-.252-.868zm6.06-2.18-1.767.942.198.959-1.585.845-.79-6.027 1.692-.902 4.564 4.015-1.623.865zm-.904-.912-1.517-1.51.41 2.1zm5.374-5.828 2.574-.445c.508-.087.93-.09 1.265-.006.337.084.629.237.877.46.249.222.449.496.6.822.15.326.259.68.325 1.062.103.6.115 1.076.036 1.43-.08.353-.221.663-.425.928a1.88 1.88 0 0 1-.703.58 4.079 4.079 0 0 1-1.006.332l-2.574.444zm1.952.97.53 3.064.424-.073c.362-.062.612-.147.752-.254s.234-.268.286-.483c.052-.215.04-.547-.038-.996-.102-.594-.27-.984-.501-1.17-.232-.185-.572-.24-1.02-.162zm5.358-1.95 4.708.201-.052 1.214-2.947-.126-.039.904 2.734.117-.05 1.159-2.733-.117-.048 1.12 3.032.13-.055 1.288-4.793-.205zm6.85.54 1.708.418-1.02 4.166 2.666.653-.333 1.36-4.374-1.07zm9.13 3.03 2.516 1.487c.548.324.881.697 1 1.12.119.421.036.873-.248 1.354-.293.494-.67.793-1.132.895-.462.103-.998-.026-1.608-.387l-.829-.49-1.074 1.818-1.52-.899zm.286 2.987.37.22c.292.172.527.242.705.21a.57.57 0 0 0 .408-.284.632.632 0 0 0 .077-.482c-.04-.167-.2-.334-.483-.502l-.431-.255zm4.934 6.633-1.467-1.364-.841.5-1.316-1.224 5.441-2.71 1.404 1.306-2.309 5.623-1.347-1.253zm.568-1.152.933-1.926-1.851 1.072zm.682 3.782 4.692-3.22 1.658 2.417c.307.448.504.817.59 1.106.085.29.074.579-.034.866-.109.288-.313.535-.611.74-.26.178-.523.277-.788.295a1.578 1.578 0 0 1-.774-.142 2.13 2.13 0 0 1-.534-.382c.06.213.09.378.086.497-.002.08-.03.213-.087.4a2.237 2.237 0 0 1-.152.404l-.88 1.634-1.124-1.639.903-1.758c.118-.226.179-.396.181-.51a.738.738 0 0 0-.135-.43l-.087-.129-1.905 1.307zm3.79-.459.42.612c.045.066.154.18.327.34a.465.465 0 0 0 .309.134.524.524 0 0 0 .334-.095c.152-.104.235-.232.25-.384.016-.151-.068-.36-.25-.624l-.436-.637zm1.76 8.519-.742-1.86-.975.092-.666-1.67 6.078-.122.71 1.781-4.492 4.095-.682-1.708zm1.006-.798 1.667-1.343-2.131.178zm1.484 6.218 1.17-.175.403 2.687-2.4.359c-.427-.462-.734-.881-.92-1.258-.185-.376-.319-.836-.4-1.378-.1-.668-.067-1.23.097-1.685.165-.455.455-.832.871-1.13.416-.3.916-.493 1.499-.58.614-.092 1.167-.045 1.66.14.492.185.892.505 1.2.958.24.355.407.854.504 1.499.093.622.106 1.095.04 1.42a1.832 1.832 0 0 1-.41.847 2.354 2.354 0 0 1-.831.593l-.55-1.632a.919.919 0 0 0 .434-.425c.088-.182.113-.4.075-.656-.057-.382-.235-.666-.534-.853-.299-.186-.735-.237-1.308-.151-.609.09-1.027.27-1.254.539-.227.268-.31.607-.248 1.016.03.195.085.376.168.544.082.168.209.356.378.563l.53-.079zm3.72 8.26-.156 1.748-3.379-.302a2.86 2.86 0 0 1-.935-.24 2.059 2.059 0 0 1-.737-.561 1.967 1.967 0 0 1-.407-.744c-.096-.352-.123-.766-.08-1.243.024-.275.07-.575.138-.897a2.37 2.37 0 0 1 .303-.797c.134-.21.315-.395.542-.558.228-.163.457-.268.687-.315.37-.076.695-.102.973-.077l3.38.302-.156 1.747-3.46-.308c-.31-.028-.56.036-.748.192-.19.156-.298.386-.325.69-.027.302.038.546.194.732.156.187.391.294.706.323zm-6.29 6.02.626-1.903-.807-.555.562-1.707 4.737 3.81-.599 1.82-6.073.255.574-1.748zm1.284.034 2.14.042-1.748-1.233zm2.036 4.626-1.004 1.675-2.238-.002 1.057 1.973-.998 1.664-1.699-3.597-2.044-1.226.906-1.511 2.044 1.225z'/%3e%3cg fill='%23009b3a' stroke='%23000' stroke-width='.1'%3e%3cpath d='M305.58 145.3s16.052 6.916 13.249 21.207-11.74 14.195-15.244 15.775c-3.504 1.58-5.922 3.84-7.305 3.523-1.382-.316-3.21-1.383-3.21-1.383s-.146 2.347 2.668 2.775 6.515-3.705 8.292-4.164c1.777-.46 12.688-1.644 15.343-16.185 3.098-15.522-13.693-21.092-13.792-21.548z'/%3e%3cpath d='M313.68 148.34a2.204.522 75.104 0 1-1.057.081 2.204.522 75.104 1 1 1.057-.081z'/%3e%3cpath d='M313.13 148.49a2.27.506 63.335 1 1-.957.35 2.27.506 63.335 0 1 .957-.35zm-1.61 1.06a2.15.535 17.053 0 1-.1 1.086 2.15.535 17.053 0 1 .1-1.086z'/%3e%3cpath d='M311.76 148.96a2.26.509 34.225 1 1-.462.916 2.26.509 34.225 1 1 .462-.916z'/%3e%3cpath d='M312.44 148.68a2.299.5 46.194 1 1-.699.716 2.299.5 46.194 0 1 .699-.716z'/%3e%3cpath d='M313.56 150.7c.009.01-.62.35-.762.4-.142.05-.335-.19-.744.02-.41.21-.69.593-.78.818-.089.225.116.32.611.079.495-.24.625-.621.863-.77.239-.15.639-.37.867-.45.098-.216.418-.677.584-.942.165-.265.815-.702 1.051-1.21.206-.422.129-.78-.147-.63-.277.15-.634.572-.8.876-.166.304-.023.69-.208.975-.146.206-.497.833-.535.834zm4.97 1.64a3.305.742 88.415 1 1-1.491-.357 3.305.742 88.415 1 1 1.491.357z'/%3e%3cpath d='M317.7 152.31a3.443.712 77.49 1 1-1.442.072 3.443.712 77.49 1 1 1.442-.072z'/%3e%3cpath d='M315.13 153.11a3.207.764 34.91 1 1-.499 1.511 3.207.764 34.91 1 1 .499-1.511z'/%3e%3cpath d='M315.65 152.38a3.43.715 50.904 0 1-.943 1.105 3.43.715 50.904 1 1 .943-1.105z'/%3e%3cpath d='M316.69 152.28a3.504.7 61.837 1 1-1.205.713 3.504.7 61.837 1 1 1.205-.713z'/%3e%3cpath d='M317.57 155.67c.01.018-.973.223-1.187.232-.214.009-.402-.422-1.038-.304s-1.152.54-1.35.823c-.198.282.055.508.82.385.764-.123 1.07-.61 1.45-.717.38-.107 1.006-.242 1.349-.257.207-.264.804-.781 1.12-1.086.317-.306 1.361-.641 1.857-1.264.425-.51.437-1.058.005-.967-.432.09-1.066.537-1.397.897-.331.36-.261.978-.611 1.303-.27.23-.965.971-1.017.955zm3.57 3.33a.738 3.32 8.74 1 1-1.393-.639.738 3.32 8.74 1 1 1.393.639z'/%3e%3cpath d='M320.35 158.8a3.465.707 87.95 1 1-1.422-.205 3.465.707 87.95 1 1 1.422.205z'/%3e%3cpath d='M317.69 159.1a3.223.76 46.026 1 1-.76 1.397 3.223.76 46.026 1 1 .76-1.397z'/%3e%3cpath d='M318.33 158.48a3.455.71 61.791 1 1-1.12.91 3.455.71 61.791 1 1 1.12-.91z'/%3e%3cpath d='M319.35 158.58a3.53.694 72.543 1 1-1.306.473 3.53.694 72.543 1 1 1.306-.473z'/%3e%3cpath d='M319.61 162.09c.006.02-.991.033-1.202 0-.21-.032-.316-.493-.96-.499-.643-.006-1.223.313-1.468.553-.244.24-.038.513.732.539.77.025 1.157-.397 1.547-.43.39-.033 1.027-.046 1.364.005.251-.22.927-.617 1.292-.858.365-.24 1.446-.371 2.043-.891.507-.423.617-.962.179-.955-.44.007-1.14.326-1.528.618-.389.293-.432.916-.833 1.17-.305.175-1.118.773-1.166.747m1.73 4.331a.738 3.32 31.311 0 1-1.013-1.168.738 3.32 31.311 0 1 1.013 1.168'/%3e%3cpath d='M320.69 165.91a.703 3.487 20.618 0 1-1.208-.778.703 3.487 20.618 0 1 1.208.778m-2.52-.82a3.276.748 69.934 0 1-1.23.98 3.276.748 69.934 0 1 1.23-.98'/%3e%3cpath d='M318.99 164.78a3.511.698 85.137 0 1-1.368.38 3.511.698 85.137 1 1 1.368-.38'/%3e%3cpath d='M319.88 165.3a.685 3.578 5.55 1 1-1.366-.102.685 3.578 5.55 1 1 1.366.102'/%3e%3cpath d='M318.75 168.66c-.002.02-.91-.38-1.089-.496-.178-.117-.094-.588-.674-.86-.58-.271-1.23-.216-1.544-.094-.315.122-.234.46.453.802.686.341 1.201.11 1.567.24.367.132.948.383 1.234.57.312-.101 1.078-.19 1.502-.262.424-.072 1.453.254 2.195.018.624-.182.933-.636.533-.811-.4-.175-1.158-.17-1.623-.059-.465.111-.747.671-1.208.74-.344.037-1.312.256-1.346.212m.59 5.29a.864 3.782 48.457 1 1-.73-1.656.864 3.782 48.457 1 1 .73 1.656'/%3e%3cpath d='M318.79 173.16a.821 3.982 37.466 1 1-1.073-1.296.821 3.982 37.466 1 1 1.073 1.296'/%3e%3cpath d='M316.29 171.34a3.81.858 86.522 1 1-1.677.638 3.81.858 86.522 1 1 1.677-.638'/%3e%3cpath d='M317.29 171.29a.806 4.054 11.633 0 1-1.63-.075.806 4.054 11.633 1 1 1.63.075'/%3e%3cpath d='M318.1 172.18a.795 4.11 22.119 1 1-1.47-.607.795 4.11 22.119 1 1 1.47.607'/%3e%3cpath d='M315.75 175.49c-.009.022-.878-.748-1.035-.941-.158-.194.089-.684-.46-1.194-.55-.509-1.282-.683-1.669-.662-.387.02-.408.423.235 1.049.644.625 1.287.556 1.647.833.36.277.918.765 1.17 1.075.377 0 1.25.18 1.74.254.49.074 1.516.805 2.41.814.746.025 1.236-.365.853-.703-.382-.338-1.219-.605-1.767-.651-.549-.047-1.042.47-1.573.38-.391-.084-1.529-.193-1.551-.254m-1.58 5.05a.967 4.17 79.752 1 1 .2-1.998.967 4.17 79.752 1 1-.2 1.998'/%3e%3cpath d='M314.09 179.47a.923 4.37 68.504 0 1-.328-1.853.923 4.37 68.504 0 1 .328 1.853'/%3e%3cpath d='M312.66 176.29a.964 4.183 26.238 0 1-1.966-.363.964 4.183 26.238 1 1 1.966.363'/%3e%3cpath d='M313.66 176.83a.91 4.434 41.823 0 1-1.533-1.014.91 4.434 41.823 0 1 1.533 1.014'/%3e%3cpath d='M313.95 178.15a.897 4.495 52.671 1 1-1.088-1.427.897 4.495 52.671 0 1 1.088 1.427'/%3e%3cpath d='M309.87 179.93c-.02.016-.439-1.219-.485-1.494-.046-.275.46-.599.208-1.4-.252-.803-.865-1.392-1.249-1.596-.384-.204-.625.166-.346 1.134.28.967.938 1.273 1.134 1.744.196.472.468 1.258.543 1.699.363.22 1.107.895 1.54 1.248.433.354 1.023 1.643 1.882 2.169.707.455 1.392.367 1.207-.175-.185-.543-.846-1.281-1.35-1.642-.504-.362-1.263-.156-1.725-.548-.332-.307-1.37-1.068-1.359-1.139'/%3e%3cpath d='M307.4 184.24a1.212 4.22 89.068 0 1 .007-2.425 1.212 4.22 89.068 0 1-.007 2.425'/%3e%3cpath d='M306.84 180.45a1.171 4.366 37.587 0 1-1.799-1.504 1.171 4.366 37.587 1 1 1.799 1.504'/%3e%3cpath d='M307.43 182.38a1.197 4.271 66.472 0 1-.857-2.239 1.197 4.271 66.472 0 1 .857 2.239m1.15-36.72a2.62.533 41.126 0 1-.995.542 2.62.533 41.126 1 1 .995-.542m-1.29 1.09a2.654.526 8.163 0 1 .202 1.09 2.654.526 8.163 1 1-.202-1.09'/%3e%3cpath d='M307.81 146.06a2.776.503 26.817 1 1-.526.861 2.776.503 26.817 0 1 .526-.861m-19.02 34.07s3.536.758 6.61 1.875c3.074 1.118 7.744 4.952 9 5.17 1.407.063 3.36-.417 4.101-2.45-2.168.578-3.469 1.457-5.539.32-.731-.278-3.126-2.458-5.752-3.626s-7.92-2.497-7.92-2.497l-.5 1.208m3.77-31.97c-.013-.03 4.07-2.147 4.07-2.147l-4.488 1.147-.522.79.94.21'/%3e%3cpath d='M296.42 149.15c-1.576-.286-4-.816-5.542-.94 1.066-1.181 2.536-3.179 3.442-4.405-.598 1.17-1.537 2.712-1.908 3.831 1.087.587 2.794 1.046 4.008 1.514'/%3e%3cpath d='M291.83 148.41c-.018-.028 3.617-2.8 3.617-2.8l-4.2 1.879-.375.868.958.053'/%3e%3cpath d='M295.69 149.11c-1.587-.302-4.029-.858-5.58-.991 1.048-1.217 2.485-3.276 3.37-4.54-.577 1.207-1.49 2.797-1.84 3.952 1.1.61 2.823 1.09 4.05 1.579'/%3e%3cpath d='M291.23 148.64c-.01-.031 4.26-1.784 4.26-1.784l-4.587.755-.592.74.919.289'/%3e%3cpath d='M295.21 149.15c-1.605-.134-4.086-.433-5.635-.4.893-1.35 2.072-3.6 2.8-4.981-.43 1.289-1.146 3.005-1.357 4.218 1.16.5 2.92.8 4.192 1.163'/%3e%3cpath d='M290.79 148.66c-.023-.024 2.885-3.516 2.885-3.516l-3.656 2.734-.17.932.941-.15'/%3e%3cpath d='M295.19 149.38c-1.72-.033-4.387-.184-6.03-.038.813-1.538 1.84-4.076 2.474-5.635-.327 1.437-.915 3.36-1.018 4.7 1.285.463 3.186.667 4.574.973'/%3e%3cpath d='M290.21 149.49c-.022-.03 3.504-3.362 3.504-3.362l-4.24 2.346-.29 1.005 1.026.011'/%3e%3cpath d='M294.42 149.49c-1.848.007-4.694-.093-6.497.109 1.196-1.715 2.83-4.536 3.837-6.27-.65 1.592-1.684 3.726-2.071 5.203 1.289.478 3.297.656 4.731.958'/%3e%3cpath d='M289.03 149.74c-.018-.033 4.476-3.791 4.476-3.791l-5.06 2.69-.52 1.114 1.104-.013'/%3e%3cpath d='M293.75 149.6c-1.83.264-4.664.562-6.422 1.01.94-1.838 2.154-4.816 2.904-6.645-.417 1.642-1.135 3.865-1.307 5.36 1.346.286 3.361.18 4.825.275'/%3e%3cpath d='M288.43 150.49c-.026-.027 3.449-4.777 3.449-4.777l-4.304 3.892-.23 1.192 1.085-.307'/%3e%3cpath d='M292.74 150.17c-1.843.172-4.69.327-6.47.686 1.041-1.788 2.421-4.7 3.273-6.489-.509 1.619-1.35 3.803-1.607 5.285 1.328.354 3.347.35 4.804.518'/%3e%3cpath d='M287.81 150.99c-.018-.034 4.39-3.8 4.39-3.8l-4.98 2.685-.504 1.122 1.094-.007'/%3e%3cpath d='M292.2 150.36c-1.837.387-4.687.878-6.442 1.442.858-1.876 1.937-4.896 2.604-6.751-.34 1.647-.955 3.888-1.054 5.373 1.375.19 3.407-.056 4.892-.064'/%3e%3cpath d='M287.08 151.19c-.03-.021 2.804-5.207 2.804-5.207l-3.795 4.502-.063 1.19 1.054-.485'/%3e%3cpath d='M292.2 150.66c-1.97.513-5.042 1.185-6.902 1.891.714-2.133 1.531-5.553 2.037-7.655-.172 1.855-.574 4.386-.502 6.048 1.534.152 3.737-.21 5.367-.284'/%3e%3cpath d='M286.53 152.39c-.03-.03 3.533-5.218 3.533-5.218l-4.518 4.217-.19 1.317 1.175-.316'/%3e%3cpath d='M291.42 151.25c-1.937.613-4.962 1.443-6.78 2.24.611-2.146 1.265-5.57 1.67-7.673-.085 1.842-.366 4.364-.217 6.003 1.533.067 3.708-.41 5.327-.57'/%3e%3cpath d='M285.82 153.16c-.034-.024 2.686-5.76 2.686-5.76l-3.819 4.96.017 1.325 1.116-.525'/%3e%3cpath d='M290.68 152.04c-1.985.452-5.072 1.032-6.954 1.679.803-2.09 1.764-5.45 2.359-7.513-.251 1.83-.76 4.32-.761 5.966 1.52.193 3.73-.105 5.356-.132'/%3e%3cpath d='M285.18 153.71c-.024-.035 4.388-4.508 4.388-4.508l-5.173 3.338-.421 1.266 1.206-.096'/%3e%3cpath d='M289.8 152.82c-1.966.264-5.017.548-6.894 1.02.913-2.047 2.058-5.37 2.765-7.412-.358 1.837-1.008 4.321-1.11 5.996 1.473.347 3.649.263 5.239.396'/%3e%3cpath d='M284.31 153.26c-.032-.027 2.986-5.64 2.986-5.64l-4.05 4.746-.063 1.344 1.127-.45'/%3e%3cpath d='M290.04 152.15c-2.138.876-5.478 2.096-7.481 3.175.657-2.538 1.35-6.56 1.779-9.03-.077 2.14-.367 5.086-.187 6.97 1.697-.053 4.1-.79 5.889-1.115'/%3e%3cpath d='M283.9 154.97c-.035-.03 3.574-6.473 3.574-6.473l-4.718 5.477-.13 1.53 1.274-.534'/%3e%3cpath d='M289.22 152.95c-2.095.985-5.374 2.377-7.326 3.555.543-2.538 1.055-6.539 1.374-8.998.019 2.114-.14 5.032.123 6.879 1.692-.15 4.057-1.014 5.829-1.436'/%3e%3cpath d='M283.17 155.95c-.04-.022 2.608-6.966 2.608-6.966l-3.903 6.221.099 1.509 1.196-.764'/%3e%3cpath d='M288.3 153.53c-2.09 1.001-5.363 2.42-7.308 3.613.527-2.54 1.014-6.543 1.317-9.003.032 2.112-.107 5.03.168 6.873 1.692-.164 4.052-1.047 5.823-1.483'/%3e%3cpath d='M282.58 156.78c-.032-.034 4.035-6.143 4.035-6.143l-5.087 5.028-.248 1.523 1.3-.408'/%3e%3cpath d='M288.11 153.21c-1.864 1.488-4.812 3.675-6.492 5.31-.003-2.565-.347-6.518-.554-8.949.468 2.013.932 4.84 1.584 6.534 1.642-.585 3.798-2.029 5.462-2.895'/%3e%3cpath d='M282.78 157.07c-.045-.006.467-7.361.467-7.361l-1.943 7.156.542 1.349.934-1.144'/%3e%3cpath d='M287.58 153.89c-1.869 1.478-4.825 3.65-6.512 5.276.008-2.566-.319-6.522-.516-8.955.459 2.016.911 4.846 1.557 6.545 1.643-.576 3.804-2.009 5.471-2.866'/%3e%3cpath d='M282.31 158.32c-.042-.018 1.88-7.193 1.88-7.193l-3.253 6.615.256 1.477 1.117-.899'/%3e%3cpath d='M287.37 154.06c-1.766 1.74-4.578 4.322-6.14 6.191-.276-2.631-1.054-6.648-1.528-9.119.698 2.012 1.48 4.86 2.335 6.523 1.634-.788 3.707-2.516 5.333-3.595'/%3e%3cpath d='M282.32 159.24c-.046-.007.352-7.65.352-7.65l-1.879 7.433.584 1.403.943-1.186'/%3e%3cpath d='M286.81 155.33c-1.89 1.563-4.884 3.862-6.582 5.576-.06-2.665-.5-6.77-.768-9.294.527 2.088 1.068 5.02 1.778 6.775 1.682-.623 3.874-2.142 5.572-3.057'/%3e%3cpath d='M281.76 160.11c-.04-.025 2.663-7.195 2.663-7.195l-3.993 6.375.104 1.58 1.226-.76'/%3e%3cpath d='M286.78 155.36c-1.673 1.77-4.337 4.396-5.815 6.296-.264-2.667-1.004-6.739-1.455-9.242.663 2.038 1.406 4.923 2.218 6.608 1.548-.805 3.511-2.563 5.052-3.662'/%3e%3cpath d='M281.86 160.48c-.047 0-.315-7.607-.315-7.607l-1.232 7.576.706 1.317.841-1.286'/%3e%3cpath d='M285.96 155.93c-1.619 1.786-4.201 4.437-5.622 6.351-.343-2.668-1.201-6.737-1.725-9.24.722 2.035 1.549 4.917 2.41 6.597 1.521-.818 3.43-2.595 4.937-3.708'/%3e%3cpath d='M281.43 161.24c-.043-.013.85-7.728.85-7.728l-2.266 7.31.451 1.5.965-1.082'/%3e%3cpath d='M285.61 156.23c-1.48 1.933-3.856 4.822-5.129 6.865-.544-2.62-1.71-6.585-2.423-9.023.876 1.954 1.92 4.74 2.906 6.327 1.457-.962 3.227-2.915 4.646-4.169'/%3e%3cpath d='M281.4 161.96c-.044-.002-.49-7.737-.49-7.737l-.974 7.676.701 1.352.763-1.291'/%3e%3cpath d='M285.46 156.67c-1.39 2.025-3.63 5.058-4.806 7.182-.68-2.61-2.051-6.54-2.89-8.959.978 1.921 2.167 4.672 3.238 6.218 1.416-1.045 3.096-3.104 4.458-4.441'/%3e%3cpath d='M281.88 162.68c-.043-.014.787-7.772.787-7.772l-2.215 7.305.467 1.53.961-1.063'/%3e%3cpath d='M285.18 157.39c-1.197 2.206-3.15 5.533-4.127 7.808-.91-2.5-2.626-6.217-3.677-8.504 1.144 1.774 2.573 4.343 3.776 5.731 1.312-1.235 2.796-3.517 4.028-5.035'/%3e%3cpath d='M281.61 163.32c-.043.012-2.172-7.37-2.172-7.37l.734 7.768.979 1.096.459-1.494'/%3e%3cpath d='M285.13 158.25c-1.248 2.2-3.28 5.517-4.301 7.785-.916-2.493-2.65-6.199-3.713-8.48 1.162 1.77 2.61 4.331 3.836 5.715 1.358-1.232 2.9-3.506 4.178-5.02'/%3e%3cpath d='M281.71 164.71c-.046 0-.797-7.75-.797-7.75l-.718 7.75.775 1.329.74-1.33'/%3e%3cpath d='M285.26 158.93c-1.283 2.17-3.369 5.439-4.426 7.683-.875-2.515-2.549-6.26-3.574-8.566 1.133 1.796 2.54 4.391 3.742 5.804 1.377-1.2 2.956-3.437 4.258-4.921'/%3e%3cpath d='M281.64 165.33c-.046.005-1.438-7.61-1.438-7.61l-.07 7.794.882 1.227.626-1.411'/%3e%3cpath d='M284.71 160.03c-1.384 2.078-3.622 5.198-4.784 7.366-.753-2.572-2.245-6.429-3.159-8.802 1.046 1.872 2.326 4.562 3.459 6.056 1.431-1.103 3.113-3.229 4.484-4.62'/%3e%3cpath d='M280.97 166.18c-.045-.012.644-7.779.644-7.779l-2.12 7.376.512 1.504.964-1.101'/%3e%3cpath d='M284.79 160.22c-1.183 2.25-3.118 5.651-4.073 7.96-.987-2.452-2.829-6.08-3.957-8.314 1.213 1.718 2.735 4.216 4 5.547 1.321-1.288 2.796-3.626 4.03-5.193'/%3e%3cpath d='M280.71 166.83c-.044.014-2.387-7.25-2.387-7.25l.919 7.71 1.028 1.049.44-1.509'/%3e%3cpath d='M284.47 160.8c-.826 2.47-2.22 6.234-2.812 8.712-1.34-2.194-3.7-5.357-5.146-7.305 1.452 1.423 3.327 3.545 4.772 4.576 1.107-1.554 2.207-4.174 3.186-5.983'/%3e%3cpath d='M282.83 167.42c-.044.016-2.585-7.15-2.585-7.15l1.13 7.668 1.056 1.007.399-1.525'/%3e%3cpath d='M284.45 161.56c-.808 2.478-2.175 6.257-2.749 8.74-1.357-2.179-3.738-5.317-5.199-7.25 1.463 1.408 3.352 3.51 4.805 4.526 1.096-1.566 2.177-4.197 3.143-6.016'/%3e%3cpath d='M282.85 168.64c-.042.022-3.326-6.687-3.326-6.687l1.937 7.425 1.156.835.233-1.573'/%3e%3cpath d='M284.2 162.18c-.517 2.573-1.438 6.515-1.722 9.06-1.596-1.967-4.32-4.737-5.991-6.443 1.613 1.186 3.73 2.999 5.287 3.798.907-1.71 1.677-4.473 2.426-6.415'/%3e%3cpath d='M283.07 169.69c-.045.009-1.793-7.498-1.793-7.498l.295 7.785.94 1.164.558-1.45'/%3e%3cpath d='M284.21 162.98c-.273 2.63-.82 6.678-.865 9.25-1.767-1.743-4.727-4.133-6.544-5.606 1.71.962 3.98 2.482 5.6 3.068.74-1.824 1.247-4.678 1.81-6.712'/%3e%3cpath d='M283.16 170.24c-.035.035-4.74-5.413-4.74-5.413l3.572 6.556 1.305.446-.137-1.589'/%3e%3cpath d='M284.31 163.9c-.284 2.628-.847 6.673-.902 9.243-1.76-1.752-4.71-4.159-6.521-5.642 1.706.973 3.969 2.505 5.587 3.1.747-1.82 1.266-4.67 1.836-6.701'/%3e%3cpath d='M283.69 171.49c-.041.024-3.641-6.525-3.641-6.525l2.287 7.324 1.195.782.159-1.58'/%3e%3cpath d='M284.52 164.98c-.173 2.644-.566 6.72-.513 9.293-1.83-1.644-4.875-3.87-6.745-5.244 1.744.869 4.066 2.263 5.706 2.76.67-1.864 1.068-4.745 1.552-6.809'/%3e%3cpath d='M284.15 172.69c-.037.032-4.499-5.704-4.499-5.704l3.28 6.77 1.286.528-.067-1.594'/%3e%3cpath d='M284.57 166.2c-.157 2.646-.525 6.726-.457 9.299-1.84-1.629-4.898-3.83-6.775-5.186 1.749.853 4.079 2.227 5.721 2.71.659-1.87 1.04-4.755 1.511-6.823'/%3e%3cpath d='M284.56 173.66c-.043.02-3.154-6.877-3.154-6.877l1.745 7.529 1.135.904.274-1.556'/%3e%3cpath d='M284.69 166.99c.09 2.655.105 6.766.412 9.317-1.977-1.373-5.215-3.152-7.205-4.25 1.815.615 4.255 1.669 5.929 1.928.48-1.95.589-4.873.864-6.995'/%3e%3cpath d='M285.11 173.39c-.027.043-5.762-3.945-5.762-3.945l4.885 5.383 1.357.07-.48-1.508'/%3e%3cpath d='M284.87 167.27c.23 2.643.459 6.74.9 9.27-2.052-1.293-5.387-2.944-7.437-3.962 1.85.543 4.347 1.501 6.038 1.696.378-1.962.334-4.879.499-7.004'/%3e%3cpath d='M285.73 174.86c-.035.034-4.8-5.518-4.8-5.518l3.635 6.625 1.314.48-.149-1.587'/%3e%3cpath d='M285.29 168.28c.34 2.632.742 6.719 1.288 9.226-2.098-1.172-5.492-2.623-7.577-3.519 1.866.433 4.395 1.242 6.087 1.335.294-1.987.128-4.904.202-7.042'/%3e%3cpath d='M286.69 175.79c-.027.043-5.718-4.04-5.718-4.04l4.823 5.461 1.358.094-.463-1.515'/%3e%3cpath d='M285.47 169.4c.512 2.6 1.183 6.652 1.891 9.109-2.161-.974-5.628-2.104-7.758-2.804 1.881.256 4.447.826 6.134.759.16-2.015-.199-4.918-.267-7.064'/%3e%3cpath d='M287.32 176.59c-.036.033-4.729-5.606-4.729-5.606l3.549 6.69 1.308.504-.128-1.588'/%3e%3cpath d='M285.78 170.12c.75 2.53 1.793 6.486 2.724 8.845-2.228-.683-5.762-1.348-7.933-1.762 1.884.004 4.474.23 6.136-.063-.031-2.034-.659-4.886-.927-7.02'/%3e%3cpath d='M287.57 176.6c-.01.052-6.606-1.415-6.606-1.415l6.282 3.123 1.27-.478-.946-1.23'/%3e%3cpath d='M286.21 170.91c.74 2.533 1.768 6.495 2.69 8.859-2.226-.696-5.758-1.381-7.928-1.807 1.884.015 4.474.255 6.137-.028-.023-2.034-.639-4.889-.899-7.024'/%3e%3cpath d='M288.65 177.3c-.02.047-6.32-3.053-6.32-3.053l5.668 4.596 1.359-.127-.707-1.416'/%3e%3cpath d='M285.88 171.35c1.255 2.308 3.09 5.948 4.487 8.05-2.315-.177-5.9-.047-8.105.027 1.84-.411 4.413-.762 5.974-1.415-.45-1.983-1.653-4.634-2.356-6.662'/%3e%3cpath d='M289.65 177.99c-.012.05-6.568-1.814-6.568-1.814l6.164 3.49 1.296-.395-.892-1.28'/%3e%3cpath d='M286.56 172.33c1.269 2.3 3.126 5.926 4.535 8.018-2.316-.157-5.897.002-8.1.096 1.836-.428 4.406-.8 5.96-1.467-.462-1.98-1.68-4.623-2.395-6.647'/%3e%3cpath d='M290.48 178.53c-.023.044-6.12-3.661-6.12-3.661l5.347 5.117 1.375.014-.602-1.47'/%3e%3cpath d='M287.07 172.91c1.47 2.146 3.646 5.55 5.232 7.47-2.289.143-5.791.77-7.945 1.15 1.76-.668 4.249-1.378 5.712-2.25-.647-1.931-2.1-4.429-2.999-6.37'/%3e%3cpath d='M290.93 179.07c-.002.054-6.607-.156-6.607-.156l6.537 1.932 1.162-.722-1.092-1.054m3.83-32.01c0-.02 4.753-.793 4.753-.793l-4.729.11-.825.424.801.259'/%3e%3cpath d='M297.37 148.07c-1.38-.417-3.463-1.115-4.879-1.423 1.505-.597 3.731-1.658 5.101-2.309-1.054.66-2.587 1.508-3.404 2.17.79.536 2.222 1.082 3.182 1.562'/%3e%3cpath d='M294.55 147.22c-.005-.02 4.599-1.263 4.599-1.263l-4.765.607-.718.493.884.163'/%3e%3cpath d='M297.59 148.41c-1.611-.152-4.083-.46-5.673-.477 1.198-1.06 2.878-2.835 3.912-3.925-.711 1.024-1.805 2.383-2.276 3.351 1.08.434 2.815.724 4.037 1.05'/%3e%3cpath d='M292.84 147.55c.004-.02 4.78-.54 4.78-.54l-4.658-.149-.87.383.748.306'/%3e%3cpath d='M296.38 148.59c-1.465-.28-3.692-.768-5.174-.942 1.408-.691 3.46-1.88 4.724-2.61-.943.712-2.335 1.642-3.039 2.336.892.443 2.435.842 3.489 1.216'/%3e%3cpath d='M292.43 147.5c-.012-.018 4.207-1.81 4.207-1.81l-4.608 1.216-.552.56.953.034'/%3e%3cpath d='M296.24 149.12c-1.22-.504-3.088-1.357-4.294-1.712.934-.869 2.25-2.392 3.061-3.326-.564.934-1.425 2.14-1.806 3.066.81.69 2.119 1.366 3.039 1.972'/%3e%3cpath d='M292.67 147.81c-.009-.028 3.273-1.418 3.273-1.418l-3.564.488-.439.635.73.295m-2.74 30.65c.003.052-6.783.051-6.783.051l6.868 1.68 1.127-.739-1.212-.992'/%3e%3cpath d='M291.15 178.9c-.008.05-6.89-1.602-6.89-1.602l6.616 3.243 1.297-.417-1.023-1.224'/%3e%3cpath d='M292.28 179.36c0 .052-6.84-.345-6.84-.345l6.84 2.062 1.172-.665-1.172-1.052'/%3e%3cpath d='M287.94 174.53c1.78 1.961 4.445 5.086 6.312 6.815-2.297.347-5.757 1.276-7.886 1.843 1.692-.813 4.114-1.73 5.476-2.714-.918-1.825-2.728-4.131-3.902-5.944'/%3e%3cpath d='M293.22 179.71c-.013.048-6.837-2.237-6.837-2.237l6.425 3.82 1.346-.284-.934-1.3'/%3e%3cpath d='M288.57 174.98c1.94 1.769 4.864 4.608 6.865 6.13-2.202.635-5.474 2.001-7.488 2.837 1.562-1.031 3.825-2.258 5.048-3.423-1.086-1.737-3.09-3.851-4.425-5.544'/%3e%3cpath d='M293.78 180.13c.01.053-6.487 1.276-6.487 1.276l6.836.466.965-.953-1.314-.789'/%3e%3cpath d='M292.43 179.72c.007.052-6.767.52-6.767.52l6.982 1.199 1.07-.814-1.285-.905'/%3e%3cpath d='M293.68 180.08c-.005.05-6.997-1.122-6.997-1.122l6.847 2.776 1.263-.505-1.113-1.149z'/%3e%3cpath d='M294.84 180.46c.004.052-6.853.128-6.853.128l6.982 1.583 1.12-.743-1.249-.968z'/%3e%3cpath d='M290.14 175.94c1.923 1.832 4.819 4.763 6.812 6.357-2.267.505-5.65 1.67-7.732 2.38 1.627-.926 3.975-2.007 5.26-3.082-1.052-1.756-3.032-3.93-4.34-5.655z'/%3e%3cpath d='M295.81 180.74c-.009.049-6.992-1.758-6.992-1.758l6.7 3.364 1.321-.376-1.029-1.23z'/%3e%3cpath d='M290.81 176.34c2.068 1.63 5.201 4.257 7.312 5.637-2.15.784-5.314 2.371-7.26 3.343 1.481-1.135 3.647-2.514 4.78-3.76-1.213-1.656-3.373-3.625-4.832-5.22z'/%3e%3cpath d='M296.4 181.12c.015.052-6.38 1.72-6.38 1.72l6.859-.008.891-1.016-1.37-.696z'/%3e%3c/g%3e%3cpath d='m305.21 171.52-5.211-3.602-5.212 3.602 1.955-5.762-4.56-3.602h5.862l1.955-5.762 1.954 5.762h5.862l-4.56 3.602 1.955 5.762z' fill='%23fedf00' stroke='%23000' stroke-width='.299'/%3e%3c/svg%3e\"},3913:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 550'%3e%3cpath fill='%238d1b3d' d='M0 0h1400v550H0z'/%3e%3cpath d='M400 550H0V0h400l100 30.556L400 61.11l100 30.556-100 30.555 100 30.556-100 30.555 100 30.556-100 30.555L500 275l-100 30.556 100 30.555-100 30.556 100 30.555-100 30.556 100 30.555-100 30.556 100 30.555z' fill='%23fff'/%3e%3c/svg%3e\"},3915:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23ED2939' d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M0 0h600v600H0z'/%3e%3cpath fill='%23002395' d='M0 0h300v600H0z'/%3e%3c/svg%3e\"},3886:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3e%3cpath fill='%23002B7F' d='M0 0h1v2H0z'/%3e%3cpath fill='%23FCD116' d='M1 0h1v2H1z'/%3e%3cpath fill='%23CE1126' d='M2 0h1v2H2z'/%3e%3c/svg%3e\"},7357:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1350 900'%3e%3cpath fill='%23fff' d='M0 0h1350v900H0z'/%3e%3cpath fill='%230c4076' d='M0 0h1350v600H0z'/%3e%3cpath fill='%23c6363c' d='M0 0h1350v300H0z'/%3e%3cg transform='matrix(1 0 0 1.00437 0 -.33)'%3e%3cpath fill='%2321231e' d='M473.38 259.35zm1.01.03zm-93.13 5.25c-2.31-.26 3.48-.78 4.86-.75 29.24-1.82 58.48-3.65 87.74-5.02 0 2.15-3.95.67-5.64 1.28a6448 6448 0 0 0-87.42 5.1l.24-.33.22-.28zm-1 .2zm6.54 31.06-6.53-31.05c2.25-.16 1.38 4.47 2.35 6.27l5.17 24.57c-.4.52-.44.87-.99.21zm.51.4zm94.85-4.08c.04 2.3-4.1.53-5.78 1.2-29.7.92-59.38 2.04-89.07 2.88.2-2.23 4.52-.57 6.42-1.2 29.48-.88 58.95-1.99 88.43-2.88zm-.03 0zm94.37 3.47c2.17 1.02-3.86.39-5.14.45-29.75-.88-59.49-2-89.23-2.9.26-2.2 4.35-.33 6.22-.83 29.55.93 59.1 2.03 88.65 2.87l-.32.26-.18.15zm.98.21zm6.54-31.05-6.54 31.05c-2.11-.77.54-4.65.38-6.7l5.17-24.56c.52-.61.64-.33.99.2zm-.46-.62zm-93.66-4.84c.85-.7 3.25-.4 5.62-.28 29.36 1.44 58.7 3.27 88.04 5.12-.34 2.2-4.38.2-6.28.63-28.96-1.81-57.92-3.62-86.9-4.97l-.29-.3-.2-.2zm.48.5zm.52-.7zm-1 .03zm-7.78.33c-.26-2.1 3.14-.64 4.55-1.14 1.47.3 4.04-.8 4.73.78-1.25 1.64-1.02-2.07-.7.28-2.85-.18-5.72.03-8.58.08zm.04 0zm-8.27.16c1.01-.99-2.16.39-.12-1.29 2.8-.11 5.6.04 8.4.12.09 2.04-3.19.47-4.64.88-1.05-.12-3.4.15-3.78-.06-.19-1.12.33-1.12.14.35zm0-1.02zm-.5.5z'/%3e%3cpath fill='%2321231e' d='M595.05 245.94c.04-1.75-1.12 2.5-2.62 3.5-3.3 4.72-5.97 9.85-8.53 15-1.91-1 1.3-3.69 1.6-5.38 2.56-4.86 5.38-9.6 8.86-13.85l.69.73zm-19.26-3.89c1.12-2.16.75 3.65 1.7 4.68 1 4.16 6 4.87 9.3 3a38.01 38.01 0 0 0 7.66-4.61c1.1 2-3.51 3.1-4.96 4.43-3.69 2.33-9.93 3.71-12.32-1.08-1.14-2.1-1.52-4.5-1.71-6.86l.27.36.06.08zm.34-.96zm-2.32.51c-1.86-1.07 1.12-.83 2-.6.85.63-.33 1.29-1.08.86-.29-.1-2.06.15-.92-.26zm-.85-.55zm-25.3-5.27c-1.12-1.84 2.27 3.42 2.86 4.86 2.78 4.64 7.31 10.9 13.54 8.97 3.98-1.52 6.62-5.14 8.9-8.56 1.75 1.36-2 3.86-2.86 5.44-3.19 4.15-9.57 6.3-13.89 2.54-4.38-3.38-7.04-8.43-9.44-13.3l.46.03.42.02zm-.86-.54zm-28.4-.53c-1-1.98 2.04 3.38 2.51 4.73 2.43 4.83 7.24 10.87 13.37 8.53 5.68-2.37 9.24-7.8 12.52-12.73 1.74 1.46-2.18 4.15-2.94 5.96-3.59 4.7-9.6 10.43-15.96 7.49-5.4-2.82-8.05-8.78-10.37-14.1l.45.06.42.06zm-.8-.63zm-33.75.67c2.09-.5 2.52 3.57 4.36 4.98 3.49 5.15 10.38 8.69 16.37 5.64 5.34-2.4 9.4-6.84 13.03-11.3 1.56 1.65-2.62 3.88-3.57 5.6-4.93 5.29-12.95 10.37-20.16 6.41-4.51-2.44-7.7-6.89-10.03-11.33zm.06.25zm.95-2.34zm-1.01 0zm-.98.37c1.2-.5.16-.85 1.53-.66-.68.75.1 1.27.16-.17 1.74 1.2-1.12 1.57-1.69.83zm.38.27zm.33-1.12zm-.55-.27zm-.98 1.2c-.16-1.12.06-1.04.98-1.2.75 1.28-.24 1.05-.98 1.2zm.19 0zm-.63-.46c-2.47-.76 1.96-1.22.41.45-.36-.13-1.64-.1-.4-.45zm-.9-.47zm-.2.38zm.9.47zm-.97-.37c-2.17-.42.62 1.35-.52-.28.93-.54 1.75 1.18.35 1-1.6.4-1.1-2.14.17-.72zm-.71-.46zm-.3 2.55zm1.01 0zm-33.68-.16c-1.53-1.62 2.78 2.5 3.58 3.72 4.7 5.08 12.08 10.54 19.23 7.07 4.5-2.28 7.5-6.6 9.92-10.88 1.85 1.34-1.92 4.19-2.68 5.95-3.75 5.45-11.1 9.06-17.45 5.87-5.52-2.43-9.72-7-13.47-11.6l.46-.07.4-.06zm-.94-.39zm-28.3 1.53c-1.39-1.7 2.5 2.8 3.15 4.14 3.45 4.45 8.65 10.35 14.93 8.07 5.4-2.6 7.94-8.55 10.22-13.74 1.94 1.2-1.47 4.57-1.98 6.52-2.58 5.02-7.96 10.66-14.13 8.23-5.93-2.42-9.68-8.03-13.07-13.17l.45-.03.43-.02zm-.91-.44zm-25.7 6.54c.26-2.42 2.48 3.01 3.72 3.65 2.9 3.87 8.79 6.35 12.88 2.7 4.23-3.28 6.77-8.18 9.1-12.9 1.9 1.3-1.74 4.5-2.3 6.45-2.95 4.87-7.98 10.97-14.4 8.85-4.21-1.58-7.03-5.36-9.43-8.98l.4.22.03.01zm0-1.02zm-2.08.8c-2.21-.32.87-1 1.81-.8 1.1.98-.44 1.15-1.3 1.07-.36-.06-1.38.52-.5-.27zm-1-.08zm-17.9 3.68c-1.67-.03 3.14 1.52 4.4 2.92 3.42 2.18 9.45 4.5 11.91-.16 1.06-1.97 1.4-4.23 1.58-6.44 2.2.33.06 4.34-.24 5.98-1.44 4.64-7.2 5.12-10.88 2.98a40.12 40.12 0 0 1-7.46-4.55l.7-.73zm10.89 18.5c-.18 2.44-1.9-2.65-2.61-3.57-2.6-5-5.48-9.9-9.06-14.29 1.68-1.37 2.77 2.7 4.05 3.75 3.1 4.56 5.65 9.45 8.1 14.38l-.4-.23-.08-.05zm.04 1.01zm101.31-5.97c-.19 2.39-4.82.6-6.78 1.37-31.5 1.66-63.01 3.28-94.53 4.6.36-2.32 5.1-.6 7.21-1.33 31.38-1.35 62.74-3 94.1-4.64zm-.05 0zm101.33 4.95c-.22 2.39-4.9.13-6.83.73-31.5-1.36-63-3-94.5-4.67.56-2.27 5.12-.12 7.28-.63 31.33 1.64 62.78 3.27 94.05 4.57zm0 1.02zm0 0zm.45-.28z'/%3e%3cpath d='M583.45 264.21c3.27-6.6 6.7-13.07 11.3-18.68-11.75 8.74-17.93 7.42-18.8-3.96-.69-.25-1.63-.25-2.57-.25-8.96 13.98-17.68 12.04-26.16-5.81-11.54 18.35-21.44 18.02-29.22-1.12-13.31 16.73-24.53 16.77-33.65.36v-2.09c.51.23.16.3-1.03.13l-.2-.38-.98.2-.98-.2-.2.38c-1.19.17-1.53.1-1.03-.13v2.09c-9.12 16.41-20.33 16.37-33.64-.36-7.78 19.14-17.69 19.47-29.23 1.12-8.47 17.85-17.2 19.79-26.15 5.81-.95 0-1.89 0-2.58.25-.86 11.38-7.04 12.7-18.79 3.96 4.59 5.6 8.02 12.08 11.3 18.68 33.84-1.41 67.58-3.18 101.3-4.96 33.73 1.78 67.46 3.55 101.32 4.96z' fill='%23edb92e'/%3e%3cpath fill='%23EDB92E' d='m504.88 276.18-22.74 11.45-22.74-11.45 22.74-11.46z'/%3e%3cpath fill='%23edb92e' d='M473.89 259.19v.18c-17.5.78-48.48 2.52-93.13 5.36l6.54 31.05c29.65-.83 64.25-2.14 94.84-3.06 30.59.92 65.2 2.23 94.85 3.06l6.53-31.05c-44.64-2.86-75.63-4.6-93.12-5.38v-.18c1.76-.34-.98-.4-8.26-.15-7.27-.25-10.01-.2-8.25.16z'/%3e%3cpath fill='%23edb92e' d='m597.33 236.74-3.68-.62c-7.08 17.4-13.42 17.81-14.61 1.27 1.58-.57.95-3.33 2.74-2.23.94.58 2.14-1.07 1.36-1.98-2-1.48-3.79-1.25-5.54.4-.83-2.64-2.85-3.87-5.38-2.76-1.09.48-.71 2.46.38 2.35 1.77-.19 1.06 1.66 1.6 2.9-12.54 16.48-18.95 14.52-17.4-7.12-2.98-.62-6.46-1.24-9.57-2.36-11.55 23.35-19.76 24.35-26.42 3.4 1.43-1.06 1.02-3.75 3.1-2.89 1.18.49 2.16-1.6 1.12-2.49-2.44-2.06-5.08-1.36-6.84 1.29-1.42-2.85-3.95-3.88-6.62-2.15-1.16.75-.44 2.94.78 2.61 2.36-.64 1.3 2.47 3.08 3.54-5.1 19.7-30.87 21.02-26.65-8.13l-6.63.24-6.63-.24c4.22 29.15-21.55 27.83-26.65 8.13 1.78-1.07.72-4.17 3.07-3.54 1.23.33 1.95-1.86.8-2.61-2.68-1.73-5.2-.7-6.63 2.15-1.77-2.65-4.4-3.35-6.84-1.29-1.05.9-.06 2.98 1.11 2.5 2.09-.87 1.68 1.82 3.1 2.88-6.65 20.95-14.86 19.95-26.41-3.4-3.11 1.12-6.59 1.74-9.58 2.36 1.56 21.64-4.85 23.6-17.4 7.12.55-1.24-.16-3.09 1.61-2.9 1.1.11 1.47-1.87.38-2.35-2.53-1.11-4.55.12-5.38 2.76-1.75-1.65-3.53-1.88-5.54-.4-.78.91.42 2.56 1.36 1.98 1.79-1.1 1.16 1.66 2.74 2.23-1.19 16.54-7.53 16.12-14.6-1.27l-3.69.62a18.6 18.6 0 0 0 3.8 11.63c10.62 13.55 18.5 10.48 18.8-4.7 13.89 16.4 24.39 14.32 26.27-2.97 11.69 21.8 30.44 11.37 30.82-1.86 5.15 19.23 33.67 19.1 35.5-3 1.82 22.1 30.33 22.23 35.48 3 .39 13.23 19.14 23.67 30.82 1.86 1.89 17.29 12.39 19.36 26.28 2.97.29 15.18 8.18 18.25 18.79 4.7a18.6 18.6 0 0 0 3.8-11.63z'/%3e%3cpath fill='%2321231e' d='M593.72 235.62c4.42.05 4.1 2.48-.17 1-.24-.55-.74-.76.17-1zm-.55.3zm-14.31 1c1.16.8.75 3.84 1.44 6.24.45 2.4 1.82 7.19 5.1 5.32 3.95-3.12 5.78-8.08 7.77-12.55 1.99 1.06-1.31 4.29-1.7 6.15-1.9 3.11-4.05 8.36-8.46 7.76-4.07-2.5-3.89-8.18-4.49-12.41l.26-.4.08-.12zm-.34.51zm3.52-2.7c-.24 1.18-1.38.21-1.46 1.61-.08 1.42-2.4 1.82-1.4.37.75-1 1.07-3.23 2.86-1.98zm.79-1.13c1.4-2.17 1.4 2.38-.44 2.18-1.69-.01-.03-1 .42-1.6.2-.13-.11-.81.02-.58zm.6-.82zm-6.32.96c.83-.13.38-1.67 2.72-1.98 1.17-.28 4.43.43 3 1.84a3.44 3.44 0 0 0-4.9.36l-.45-.12-.37-.1zm.82.22zm-5.51-2.67c-1.1-1.94 3-1.63 3.93-.56 1.47.51 2.07 4.24.51 2.36a3.14 3.14 0 0 0-4.44-1.8zm.12 1.37c.49 2.56-2.62-.54-1.22-1.7.92-1.27 1.1.4.76 1.17.04.23.19.56.46.53zm2.06 3.72c-1.14-.33-1.04-.34-1.21-2 .08-.9-1.57-.9-.66-1.73 2.01-.12 1.69 2.45 1.87 3.73zm.06-.52zm-17.96-6.41c1.04-2.15.2 4.21.38 5.54.26 3.8-.25 8.93 3.3 11.34 4.48.55 7.56-3.98 10.38-6.8.87-1.8 5.23-5.6 2.7-1.67-3.5 3.86-7.04 9.44-12.76 9.6-4.65-1.61-4.34-7.7-4.63-11.77.2-1.36-.4-7.1.63-6.24zm.2-1zm-9.23-1.63c-1.97-1.45 2.82.35 3.89.5 1.58.68 4.56.36 5.25 1.59-.87 1.12-3.6-.53-5.17-.53-.76-.32-5.49-1.02-3.97-1.56zm-.9-.45zm-26.27 3.22c1.44.48 1.68 3.74 2.87 5.95 1.74 3.83 4.34 9.74 9.49 8.7 6.47-2.86 9.49-9.96 12.84-15.76 2.04-4.36 1.87.24.02 2.13-3.32 5.54-6.48 12.54-13.05 14.71-5.87.77-8.68-5.8-10.6-10.25-.46-1.75-1.84-3.7-1.57-5.48zm-.18.56zm3.78-3.51c-.29 1.1-1.9.73-1.97 2.4-.27 1.77-2.37 1.05-1.05-.17.53-1.28 1.24-3.13 3.02-2.23zm.59-1.63c1.53-2.09 1.8 2.68-.15 2.65-1.6.08-.14-1.02.33-1.57.13-.36.13-.83-.18-1.08zm-6.96 1.12c.6-.24.55-2.36 3.02-3 1.38-.6 4.46.09 4.3 1.46-.86.72-2.4-1.39-3.79-.55-1.59.12-2.08 2.4-3.53 2.09zm.87.06zm-6.77-2.01c-1.52-1.63 2.34-2.02 3.43-1.63 1.34.33 4.3 2.69 2.54 3.54-1.05-2.17-3.71-3.65-5.97-1.91zm.38 1.7c.9 2.26-2.41.23-1.73-1.17-.13-1.63 1.9-1.3 1.03-.06-.11.44.1 1.32.7 1.22zm3.7 4.15c-1.1.41-1.67-.25-2.2-2.08.09-1.47-1.63-.8-1.5-2.08 2.76-.77 2.23 2.96 3.7 4.16zm-.23-.56zm-26.9-7.19c.7-2.22-.03 4.13.05 5.55-.31 6.6 2.68 15.25 10.3 15.85 7.94.48 14.1-6.72 15.8-13.9 2.11.97-1.03 4.8-1.7 6.62-3.66 6.67-13.23 11.3-19.88 6.07-5.97-4.98-6.04-13.68-5.08-20.77l.31.35.2.23zm-.03-1.02zm-6.63 1.26c-.43-1.97 2.46-.7 3.64-1.15 1.07-.15 4.2-.27 2.59.93l-6.23.22zm.04 0zm-6.15-.82c-2.37-.09 1.54-.68 2.5-.33 1.2.38 4.01-.73 3.61 1.14l-6.63-.23.31-.35.2-.23zm-1 .15zm-26.41 7.62c1.33.6 1.58 3.93 3.11 6.05 3.3 6.35 12.3 11.09 18.63 6.12 5.62-4.8 5.55-13.06 4.67-19.8 2.31.09 1.02 4.89 1.44 6.9.14 6.85-3.4 15.38-11.17 15.95-8.45.58-15.1-7-16.91-14.66l.18-.43.05-.13zm-.23.56zm3.7-4.16c.17 1.35-1.61.57-1.5 2.09.07 1.23-1.98 3.35-1.74 1.34 1.12-1.2.7-4.22 3.24-3.43zm.38-1.69c1.26-2.27 2.13 2.44.18 2.65-1.58.29-.26-.99.13-1.6.1-.37.03-.83-.31-1.05zm-6.77 2c.56-.31.26-2.4 2.62-3.36 1.3-.78 4.44-.48 4.44.9-.75.82-2.55-1.07-3.82-.06-1.56.32-1.76 2.64-3.24 2.53zm.88-.05zm-6.97-1.12c-1.6-1.49 2.21-2.4 3.44-2.02 1.3.27 4.47 2.2 2.65 3.2-1.2-2.21-4.2-3.11-6.09-1.18zm.6 1.63c1.17 2.13-2.38.54-1.87-.94-.34-1.6 1.72-1.52 1.01-.2-.05.47.27 1.31.85 1.14zm3.77 3.51c-1.13.24-1.4-.16-2.13-1.85-.07-1.27-2.18-.53-1.43-1.75 2.28-.77 2.52 2.4 3.56 3.6zm-.18-.56zm-26.55-2.51c-.2-2.4 2.31 3.55 3.08 4.61 3.03 4.84 5.95 11.05 11.86 12.71 5.32 0 7.46-6.07 9.27-10.16.19-2.16 3.16-6.73 1.89-2.18-2.03 5.04-4 11.98-10 13.35-6.13-.03-9.5-6.36-12.52-10.84a110.81 110.81 0 0 1-4.2-7.75l.43.18.19.08zm-.34-.96zm-8.9 2.8c-2.45-.26 2.49-1.12 3.52-1.32 1.8-.07 4.29-1.7 5.54-1.04-.23 1.47-3.55 1.31-5.02 1.96-.8-.04-5.12 1.57-4.05.4zm-1.01.07zm-17.36 6.87c1.62-.26 2.72 2.83 4.52 4.37 2.65 2.61 5.6 6.69 9.75 6.1 3.68-2.52 3.04-7.87 3.32-11.81-.23-1.58-.3-8.21.86-4.21.03 5.39.96 11.72-2.62 16.22-3.99 2.9-8.26-1.74-10.95-4.4-1.64-1.99-3.9-3.93-4.88-6.27zm.06.52zm2.06-3.72c.06 1.11-1.3 1.28-.96 2.75-.02 1.54-1.66.42-.94-.65-.01-1.14.54-2.34 1.9-2.1zm.12-1.37c.8-2.42 2.3 1.77.52 2.24-1.54.47-.16-1.02-.18-1.75-.02-.2-.14-.4-.34-.49zm-5.51 2.67c.52-.5-.3-2.05 1.76-3.37 1-.94 4.8-1.15 3.75.7-1.95-1.12-4.29.38-4.69 2.45l-.45.12-.37.1zm.82-.22zm-5.64-.22c-1.87-1.15 1.86-2.1 2.92-1.76 1.26-.07 3.59 2.13 1.59 1.92-1.24-1.35-3.53-1.08-4.5-.16zm-.76-.67zm1.47 1.88c1.44 2.19-2.71.5-1.81-1.18.56-1.47 1.03.3 1.25 1 .14.14.36.3.56.18zm3.52 2.7c-1.02.43-1.4.35-2.17-1.34-.02-1.12-1.7-.37-1.16-1.47 2.09-1.07 2 2.07 3.33 2.81zm-.34-.52zm-14.7-.28c.13-2.42 1.95 3.46 2.76 4.55 1.76 2.89 3.35 7.2 7.1 7.79 3.7-1.84 3.45-7.02 4.08-10.6 1.43-3.12.96 2.89.46 4.23-.49 3.05-2.05 8.63-6.19 7.07-4.65-2.96-6.56-8.56-8.75-13.35l.4.23.15.08zm-.16-1.01zm-3.68.62c4.2-1.4 4.67 1 .16 1-.45-.44-.9-.47-.16-1zm-.43.49zm4.71 11.33c-1.96 1.27-2.9-3.48-3.76-5.01-.27-1.81-2.18-6.03.06-6.3a18.02 18.02 0 0 0 3.7 11.3zm18.78-4.72c-.58.1.6 3.23-.34 5.53-.42 4.37-3.71 10.06-8.86 8.35-4.4-1.4-7.55-5.07-10.37-8.53 1.93-1.14 3.27 3.4 5.27 4.26 2.7 2.84 8.33 5.52 10.99 1.2 1.98-3.1 2.29-6.9 2.42-10.49l.89-.32zm-.9.32zm27.24-3.2c-.74-.13.33 3.14-.83 5.27-.93 5.16-5.2 10.9-11.09 9.5-6.34-1.5-11.03-6.52-15.2-11.23 1.97-1.15 3.55 3.44 5.58 4.4 3.94 3.59 9.95 8.12 15.32 4.74 3.75-2.96 4.7-8.01 5.27-12.5l.95-.18zm-.95.18zm31.81-1.93c-.85-.53.5 3.54-1.16 5.52-2.98 8.15-13.67 12.4-21.1 7.44-4.2-2.47-7.2-6.51-9.5-10.73 2.13-.8 2.7 3.93 4.6 5.1 4.3 5.96 13.16 9.1 19.55 4.53a14.87 14.87 0 0 0 6.62-11.74l.99-.12zm35.5-2.91c-.9-.78.37 3.46-1.06 5.4-2.7 9.73-14.41 14.68-23.54 10.98a19.15 19.15 0 0 1-11.88-13.2c2.23-.26 1.9 4.47 3.83 5.86 6.2 9.32 21.7 10.25 28.23.83a19.81 19.81 0 0 0 3.42-9.87h1zm35.5 3.03c-.76-.72-.25 3.5-2.1 5.17-5.62 10.4-21.74 12.76-29.63 3.7-2.93-3.23-4.42-7.53-4.77-11.82 2.22.1.96 4.6 2.5 6.3 3.53 9.7 16.5 12.99 24.86 7.54a18.16 18.16 0 0 0 8.14-11l1 .1zm30.81 1.81c-.55-.32-1.23 3.58-3.2 5.2-4.32 6.41-13.33 10.45-20.5 6.22a15.88 15.88 0 0 1-8.13-13.2c2.14.17.9 4.48 2.61 6.06 3.35 7.35 13.47 10.37 20.02 5.35 3.58-2.45 6.2-6.04 8.25-9.81l.95.18zm-.95-.18zm27.23 3.2c-.5-.29-1.64 2.9-3.69 4.22-4.35 4.22-10.72 9.59-17.12 6.59-4.66-2.82-5.84-8.7-6.47-13.71 2.2-.03 1 4.31 2.23 6 1.02 4.62 5.47 9.12 10.49 7.24 5.64-1.83 9.86-6.33 13.67-10.66l.9.32zm-.89-.32zm18.78 4.72c1.6 1.56-2.43 3.74-3.44 5.3-3.06 3.27-9.2 6.32-12.56 1.8-2.39-3.3-2.76-7.53-2.9-11.48 2.24.25.6 4.66 1.79 6.54.48 3.72 4 7.8 8 5.77 3.78-1.58 6.59-4.83 9.1-7.93zm4.2-10.8c.7-2.34.53 3.82-.2 5.02-.75 2.03-1.77 5.65-3.57 6.12-.34-1.59 2.34-3.87 2.48-6.03.87-1.04.33-6.15 1.3-5.12zm0-1.03zm0 0zm0 1.02z'/%3e%3cpath fill='%23edb92e' d='M482.14 262.87c-33.98 0-67.97 1.7-101.77 5.22-7.83-.17-1.9-8.29 3.26-6.3a987.52 987.52 0 0 1 201.3.5c7.56 3.1-1.56 8.07-5.92 5.3a984.52 984.52 0 0 0-96.87-4.72z'/%3e%3cpath fill='%230c4076' d='M482.14 105.07c9.48 0 17.17 7.74 17.17 17.3 0 9.55-7.69 17.3-17.17 17.3a17.23 17.23 0 0 1-17.17-17.3c0-9.56 7.69-17.3 17.17-17.3z'/%3e%3cpath fill='%23edb92e' d='M485.26 84.9a3.12 3.12 0 0 0 3.03-3.14c0-1.7-1.35-3.09-3.03-3.13a3.124 3.124 0 0 0-3.12-3.12c-1.7 0-3.1 1.4-3.1 3.12a3.12 3.12 0 0 0-3.04 3.13c0 1.7 1.35 3.09 3.03 3.13v6.43h-5.5c0-1.72-1.39-3.12-3.1-3.12a3.13 3.13 0 0 0-3.11 3.06c-1.71 0-3.1 1.4-3.1 3.13a3.12 3.12 0 0 0 3.1 3.13 3.12 3.12 0 0 0 3.1 3.06 3.12 3.12 0 0 0 3.12-2.98h5.49v21.37h6.23V97.6h5.5a3.12 3.12 0 0 0 3.1 2.98c1.7 0 3.07-1.36 3.11-3.06 1.71 0 3.1-1.4 3.1-3.13a3.12 3.12 0 0 0-3.1-3.13 3.12 3.12 0 0 0-3.1-3.06c-1.72 0-3.1 1.4-3.12 3.12h-5.49v-6.43z'/%3e%3cpath fill='%2321231e' d='M487.78 81.76c.78-.16 1.27.07.9.9a3.64 3.64 0 0 1-3.4 2.74c-.06-.6-.16-1.17.6-1.11a2.63 2.63 0 0 0 1.9-2.53zm-3.03-3.13c.95.14.97-.12.63-.5a3.65 3.65 0 0 1 3.41 3.63c-.62.05-1.17.12-1.09-.64a2.63 2.63 0 0 0-2.46-1.98l-.5-.51zm.5.5zm-3.1-3.11c-.16-.78.06-1.28.9-.9a3.66 3.66 0 0 1 2.71 3.5c-.62.06-1.17.12-1.1-.64a2.62 2.62 0 0 0-2.52-1.96zm-3.1 3.12c.12-.95-.14-.98-.52-.63a3.65 3.65 0 0 1 3.61-3.51c.05.62.12 1.18-.65 1.1a2.63 2.63 0 0 0-1.95 2.53l-.5.5zm.49-.51zm-3.03 3.13c-.79.16-1.27-.07-.9-.9a3.64 3.64 0 0 1 3.41-2.74c.06.61.15 1.18-.6 1.11a2.63 2.63 0 0 0-1.91 2.53zm3.03 3.13c-.95-.14-.97.12-.64.5a3.65 3.65 0 0 1-3.4-3.63c.62-.04 1.17-.11 1.09.65a2.63 2.63 0 0 0 2.45 1.98l.5.5zm-.5-.5zm-.52 6.93v-6.43c.98-.25 1.17.28 1.02 1.16v5.27c-.5.58-.51.6-1.02 0zm1.02 0zm-6-.51h5.49c.25.98-.27 1.17-1.16 1.02h-4.33c-.58-.5-.59-.52 0-1.02zm0 1.02zm-3.11-3.12c-.16-.78.07-1.28.9-.9a3.66 3.66 0 0 1 2.72 3.5c-.63.06-1.18.12-1.1-.64a2.62 2.62 0 0 0-2.52-1.96zm-3.11 3.06c.14-.95-.12-.98-.5-.64a3.65 3.65 0 0 1 3.6-3.44c.05.62.13 1.18-.63 1.1a2.64 2.64 0 0 0-1.97 2.48l-.5.5zm.5-.5zm-3.09 3.12c-.8.16-1.27-.08-.9-.9a3.64 3.64 0 0 1 3.49-2.74c.04.62.12 1.18-.65 1.1a2.63 2.63 0 0 0-1.94 2.54zm3.1 3.12c-.96-.12-.97.14-.63.52a3.65 3.65 0 0 1-3.48-3.64c.63-.05 1.17-.1 1.1.66a2.62 2.62 0 0 0 2.5 1.96l.5.5zm-.5-.5zm3.1 3.06c.15.78-.07 1.28-.9.9a3.65 3.65 0 0 1-2.72-3.43c.62-.06 1.17-.15 1.11.61a2.62 2.62 0 0 0 2.5 1.92zm3.1-2.98c-.14.93.12.98.5.65a3.65 3.65 0 0 1-3.6 3.35c-.04-.61-.13-1.18.63-1.1a2.64 2.64 0 0 0 1.97-2.42l.5-.48zm-.5.48zm6 .54h-5.5c-.25-.98.28-1.18 1.16-1.02h4.34c.58.5.59.51 0 1.02zm0-1.02zm-.5 21.88V97.6c.97-.26 1.16.28 1 1.15v20.22c-.49.58-.5.6-1 0zm.5.5zm6.23 0h-6.23c-.25-.97.27-1.17 1.15-1.01h5.08c.58.5.59.52 0 1.02zm.5-.5zm0-21.37v21.37c-.97.25-1.16-.28-1-1.16V97.6c.49-.59.5-.6 1 0zm-1 0zm6 .5h-5.5c-.25-.97.27-1.17 1.16-1.01h4.33c.62.48.56.5 0 1.02zm0-1.01zm3.1 2.98c.15.77-.05 1.28-.88.91a3.66 3.66 0 0 1-2.73-3.36c.6-.07 1.16-.18 1.12.58a2.62 2.62 0 0 0 2.5 1.87zm3.1-3.06c-.13.95.13.98.51.64a3.64 3.64 0 0 1-3.6 3.44c-.05-.62-.13-1.18.63-1.1a2.63 2.63 0 0 0 1.97-2.48l.5-.5zm-.5.5zm3.1-3.12c.79-.16 1.27.08.9.9a3.64 3.64 0 0 1-3.49 2.74c-.05-.62-.12-1.18.65-1.1a2.63 2.63 0 0 0 1.94-2.54zm-3.1-3.12c.96.12.97-.14.63-.52a3.65 3.65 0 0 1 3.48 3.64c-.63.05-1.17.1-1.1-.66a2.62 2.62 0 0 0-2.5-1.96l-.5-.5zm.5.5zm-3.1-3.06c-.15-.77.06-1.28.9-.9a3.65 3.65 0 0 1 2.72 3.43c-.62.07-1.17.15-1.1-.61a2.62 2.62 0 0 0-2.52-1.92zm-3.11 3.12c.14-.96-.11-.98-.5-.63a3.65 3.65 0 0 1 3.61-3.5c.05.62.11 1.17-.65 1.1a2.63 2.63 0 0 0-1.95 2.52l-.51.5zm.5-.5zm-5.99-.52h5.49c.25.98-.27 1.17-1.16 1.02h-4.33c-.58-.5-.59-.52 0-1.02zm0 1.02zm.5-6.94v6.43c-.97.25-1.16-.28-1-1.16V84.9c.48-.6.5-.57 1 0zm-1 0zm.5 0zm-.5 0z'/%3e%3cpath fill='%2321231e' d='M499.82 122.37c-.7.1-1.26.06-1.03-.8a16.85 16.85 0 0 0-9.33-14.28 16.6 16.6 0 0 0-7.32-1.7c-.09-.71-.05-1.28.8-1a17.71 17.71 0 0 1 16.88 17.78zm-17.68 17.8c-.09-.69-.05-1.26.8-1.03a16.7 16.7 0 0 0 15.87-16.77c.7-.1 1.26-.05.99.8a17.86 17.86 0 0 1-9.76 15.13 17.6 17.6 0 0 1-7.9 1.88zm-17.67-17.8c.7-.1 1.26-.06 1.03.8a16.85 16.85 0 0 0 9.33 14.28 16.6 16.6 0 0 0 7.31 1.7c.1.71.06 1.28-.8 1a17.71 17.71 0 0 1-14.96-9.74 17.92 17.92 0 0 1-1.9-8.04zm17.67-17.8c.1.69.06 1.26-.8 1.03a16.7 16.7 0 0 0-15.86 16.77c-.7.1-1.26.05-.99-.8a17.86 17.86 0 0 1 9.77-15.13 17.6 17.6 0 0 1 7.89-1.88z'/%3e%3cpath fill='%23edb92e' d='M498.96 118.85a17.57 17.57 0 0 1 .18 5.96c-5.64-.2-11.3-.33-17-.33-5.69 0-11.34.14-16.99.33a17.47 17.47 0 0 1 .18-5.96c5.59-.2 11.19-.32 16.82-.32 5.63 0 11.23.13 16.8.32z'/%3e%3cpath fill='%2321231e' d='M499.82 122.37c-.3-.11-1.06.24-1.01-.22a16.92 16.92 0 0 0-.34-3.2c.31.06 1-.45 1.03.02.22 1.12.32 2.26.32 3.4zm-.7 2.96c-.07-.26.25-1.31-.18-.83-.4.47-.27 0-.23-.34.06-.6.1-1.2.1-1.8.28.1.98-.2 1 .17 0 .79-.06 1.58-.17 2.36l-.52.44zm.52-.44c.26.58-.9.57-.24.2l.24-.2zm-17.5.1c.12-.32-.26-1.13.3-1.01 5.57 0 11.15.13 16.72.33-.12.32.23 1.15-.33 1-5.56-.19-11.12-.3-16.68-.31zm-17.49-.1c.24-.12 1.33.01.78-.33-.66-.39.28-.22.6-.28 5.36-.18 10.74-.3 16.12-.3-.11.33.26 1.14-.3 1.02-5.56 0-11.12.13-16.68.33l-.52-.44zm.52.44c-.53.36-.71-.8-.24-.2l.24.2zm-.7-2.96c.3.1.97-.2 1.01.15 0 .75.07 1.5.17 2.23-.3-.06-.95.34-1.02-.01-.1-.79-.16-1.58-.16-2.37zm.85-4.02c.1.25-.17 1.3.25.83.43-.5.13.23.12.5-.14.9-.2 1.8-.2 2.69-.3-.11-1.09.25-1.02-.23.02-1.14.14-2.27.37-3.39l.48-.4zm-.48.4c-.06-.61.83-.43.1-.08l-.06.05-.04.03zm17.3-.73c-.1.33.27 1.14-.28 1.02-5.5 0-11 .13-16.51.32.1-.33-.3-1.13.25-1.03 5.52-.18 11.03-.3 16.55-.3zm17.32.73c-.24.14-1.32.06-.78.4.61.38-.42.14-.7.18-5.27-.17-10.55-.28-15.83-.28.1-.33-.27-1.14.29-1.02 5.51 0 11.02.13 16.54.32l.48.4zm-.48-.4c.6-.16.56.75.1.08l-.06-.05-.04-.03z'/%3e%3cpath fill='%23edb92e' d='M468.82 133.18c-3.63-2.26-4.27 1.24-4.18 4.75.35 13.23 2.87 25.83-.67 42.03-1.42 6.49-3.7 10.13-1.48 11.38 5.67 3.19 8.27 6.1 7.37 7.67 1.68 3.22 5.86 2.6 12.28 1.57 6.42 1.03 10.6 1.65 12.28-1.57-.9-1.57 1.7-4.48 7.37-7.67 2.22-1.25-.06-4.9-1.48-11.38-3.53-16.2-1.01-28.8-.67-42.03.1-3.51-.54-7-4.18-4.75-7.15 4.45-19.4 4.5-26.64 0z'/%3e%3cpath fill='%2321231e' d='M465.15 137.91c-1.13.4-1.1-.46-1-1.31.07-1.72.33-4.28 2.42-4.64.9-.08 1.76.32 2.52.78-.32 1.37-1.14.39-2.03.25-1.57-.13-1.75 1.9-1.87 3.04-.05.62-.05 1.25-.04 1.88zm-.69 42.15c-1.49.15-.72-1.14-.61-2.03 2.1-10.35 1.56-20.98.74-31.43-.2-2.89-.37-5.77-.45-8.66 1.43-.52.96.97 1.08 1.86.53 11.15 1.97 22.38.41 33.52a80.3 80.3 0 0 1-1.17 6.74zm-1.72 10.83c-.24 1.4-1.28.55-1.53-.35-.48-2.41.79-4.73 1.32-7.03.36-1.21.68-2.43.95-3.66 1.47-.15.74 1.1.56 1.98-.57 2.7-1.88 5.27-1.95 8.05.04.42.26.82.65 1.01zm7.57 7.88c-1.23.98-.69-.15-.89-.99-1.39-2.62-4.14-4.13-6.58-5.66-1.23-.4.16-1.83.85-.68 2.5 1.6 5.32 3.21 6.67 5.97.43.4-.05 2.49-.05 1.36zm-.9.47zm12.81.83c.16 1.34-.52 1.05-1.66 1.27-3.07.37-6.43 1.22-9.35-.21a4.5 4.5 0 0 1-1.8-1.89c.97-1.01 1.2.28 1.96.78 2.4 1.47 5.38.74 8.02.46.95-.12 1.89-.32 2.83-.41zm-.16 0zm11.93-.8c1.11-1.07 1.03.22.3.85-2.02 2.3-5.42 1.85-8.14 1.56-1.37-.17-2.73-.39-4.09-.6-.23-1.44 1.02-.84 1.9-.74 2.84.33 5.94 1.16 8.65-.12.66-.04 1.45-2 1.38-.96zm.87-.52zm6.69-7.86c1.05.98-.27 1.28-1 1.77-2.15 1.43-4.63 2.84-5.73 5.28.35.74-.93 1.9-1.04.73-.13-2.2 1.92-3.68 3.43-4.96a35.82 35.82 0 0 1 4.34-2.82zm-1.73-10.83c1.26-.74 1.14.67 1.4 1.52.6 2.82 2.01 5.5 1.98 8.43.02.64-.95 2.32-1.4 1.34-.57-.64.8-1.16.4-2.05-.46-3.15-1.79-6.1-2.38-9.24zm-.68-42.15c1.46-.44.9 1.03.94 1.92-.51 11.05-1.96 22.17-.44 33.2.29 2.29.69 4.56 1.17 6.82-1.3.76-1.13-.76-1.36-1.63-2.13-10.43-1.58-21.15-.76-31.7.2-2.86.37-5.74.45-8.61zm-3.4-4.3c-1-.84-.04-1.27.8-1.51 1.62-.68 3.15.76 3.34 2.32.26 1.15.3 2.34.27 3.52-1.45.43-.9-1.02-1.05-1.91-.13-1.14-.28-3.12-1.83-3.05a4.1 4.1 0 0 0-1.54.63zm-27.18 0c.35-1.48 1.34-.28 2.2.04 6.28 2.87 13.66 3.06 20.21 1.02 1.48-.48 2.9-1.11 4.23-1.93 1.07.9-.13 1.27-.9 1.67-6.57 3.13-14.35 3.38-21.25 1.25a20.93 20.93 0 0 1-4.5-2.05z'/%3e%3cg id='a'%3e%3cpath d='M363.03 212.12c-1.9-4.14-.37-9.93.25-11.23.32-.67-.61-2.12-1.02-2.7-12.9-18.27-13.12-19.9-4.23-26.75 8.03-6.18 26.16-12.19 39.14-16.23 2.7-2.06 4.42-4.87 6.87-7.18-24.93 1.8-51.94 11.92-65.57 23.76-7.2 6.25 1.56 18.89 12.28 38.1 6.63 4.79 9.74 7.01 12.28 2.23z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M362.83 200.67c1.42.16.52 1.2.38 2.07-.71 2.99-.97 6.29.28 9.17-1.16 1.09-1.29-.63-1.55-1.47-.67-3.22-.28-6.71.89-9.77zm-.98-2.17c.7-.98 1.16-.3 1.5.48.32.64.7 1.41.4 2.13-.67-.18-1.02-.45-1.05-1.12a7.78 7.78 0 0 0-.85-1.5zm-4.12-27.46c1.4 1-.63 1.53-1.24 2.28-2.2 1.75-4.73 4.22-3.98 7.33 1.16 4.64 4.24 8.48 6.8 12.43 1.11 1.62 2.24 3.22 3.37 4.83-1.05 1.37-1.52-.73-2.22-1.4-3.14-4.7-6.79-9.22-8.68-14.6-1.06-2.8.08-5.9 2.28-7.78 1.14-1.12 2.4-2.1 3.67-3.09zm39.13-16.23c1.5 1.18-.9 1.14-1.7 1.57-11.1 3.59-22.32 7.14-32.6 12.73a37.37 37.37 0 0 0-4.22 2.74c-1.36-.96.51-1.47 1.2-2.09 8.35-5.23 17.76-8.43 27.01-11.66a498.7 498.7 0 0 1 10.47-3.37l-.16.08zm.61.81zm6.61-7.07c-.28-2.03.76.33-.56.73-2 2.12-3.7 4.56-6.05 6.34-1.3-.9.35-1.4.92-2.14 1.87-1.84 3.39-4.02 5.31-5.82l.38.89zm-.07-1.02c2.15-.96.72 1.46.15.34l-.08-.18-.07-.16zm-65.2 24.65c-1.49-.95.64-1.63 1.28-2.37 10.32-7.95 22.54-13.06 34.92-16.84a137.29 137.29 0 0 1 29-5.44c.63 1.65-1.5.92-2.46 1.23a137.37 137.37 0 0 0-48.52 14.05 74.54 74.54 0 0 0-14.23 9.37zm12.24 37.3c-.69 1.77-1.22-.42-1.74-1.11-4.35-7.96-9.37-15.61-12.62-24.1-1.4-3.8-2.35-8.66.59-11.99.57-1.53 2.25-.12.8.61-2.76 3.12-1.68 7.65-.39 11.17 3.3 8.5 8.34 16.17 12.7 24.14.04.16 1.08 1.8.66 1.28zm-.6.83zm12.58 1.3c.03 1.33.67.76-.45 2.14-1.35 1.98-4.08 1.8-5.93.67-2.2-1.16-4.17-2.68-6.2-4.11.55-1.63 1.65.16 2.53.56 2.17 1.38 4.32 3.42 7.04 3.38 1.55-.14 1.96-1.88 3.01-2.64zm-.45.27zm.45.75zm.46-.72z'/%3e%3cpath d='M359.11 213.58a33.86 33.86 0 0 1-1.25-4.72c-.54-2.7-.3-5.52.6-8.15-2.98-4.21-6.32-8.78-8.73-13.33-1.72-3.24-3.04-6.86-2.03-10.56 1.08-3.94 4.5-6.63 7.58-9 3.7-2.85 8.62-5.35 13.61-7.47 11.17-4.64 20.05-6.9 26.56-7.11l-4.13 3.83c-12.11 3.92-26.4 9.09-33.28 14.38-8.9 6.85-8.68 8.47 4.23 26.76.4.57 1.33 2.02 1.02 2.68-.62 1.31-1.76 7.34.13 11.49-1.11 2.1-2.73 1-4.31 1.2z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M357.37 208.96c1.2-.7 1.12.5 1.32 1.35.25 1.05.55 2.08.9 3.1-.77.51-1.16.24-1.26-.6-.4-1.26-.72-2.58-.96-3.85zm1-.2zm-.33-7.76c1.08-1.17.92.16.56 1-.59 2.2-.69 4.52-.24 6.76-1.18.67-1.15-.51-1.22-1.39-.22-2.3.09-4.64.84-6.83l.06.46zm.83-.59zm-9.58-12.79c.88-.9 1.2.01 1.59.79 2.37 4.18 5.22 8.08 7.99 12-.76 1.02-1.2.13-1.67-.6-2.8-3.95-5.63-7.9-7.91-12.19zm-2.08-10.93c1.2-.04.9.75.72 1.58-.39 3.12.81 6.16 2.25 8.87-.86.89-1.2.03-1.52-.77-1.44-2.97-2.37-6.41-1.45-9.68zm7.76-9.28c1.04.73.16 1.2-.55 1.7-2.62 2.08-5.31 4.5-6.24 7.85-1.34.06-.8-.97-.44-1.77 1.49-3.31 4.43-5.62 7.23-7.78zm13.73-7.54c.86 1-.17 1.21-.98 1.54-4.24 1.89-8.43 3.99-12.13 6.8-1.2-.83.13-1.33.84-1.87a71.08 71.08 0 0 1 12.27-6.47zm0 0zm27.1-6.26c-1.33-1.57.38.52-1.1.17-8.9.63-17.4 3.71-25.62 7.04-.93-1.1.44-1.25 1.25-1.61 8.05-3.16 16.4-6.06 25.1-6.48l.37.88zm-.36-.88c1.59-.45 1.23.54.3.73l-.3-.73zm-4.46 3.97 4.13-3.84c1.31.75-.09 1.38-.7 2.05-1 .87-1.9 1.84-2.93 2.65l-.5-.86zm.69.75zm-33.32 14.4c-1.17-.8.06-1.3.78-1.81 7.13-4.63 15.18-7.56 23.13-10.45 2.96-1.04 5.93-2.04 8.9-3 .87 1.2-.59 1.2-1.42 1.54-9.46 3.17-19 6.39-27.72 11.3-1.26.74-2.5 1.53-3.67 2.43zm4.33 26.06c-.86 1.2-1.29-.13-1.83-.84-3.13-4.63-6.65-9.12-8.8-14.33-1.05-2.44-.88-5.45.97-7.47 1.35-1.63 3.05-2.92 4.71-4.22 1.2.83-.14 1.33-.8 1.92-2.15 1.76-4.84 3.95-4.5 7.05.56 3.8 2.95 6.98 4.93 10.16 1.72 2.61 3.52 5.17 5.32 7.73zm1.07 3.2c-.57-.21-1.04-.37-1.01-1.03a7.45 7.45 0 0 0-.88-1.58c.65-.85 1.12-.43 1.44.38.34.67.76 1.48.45 2.23zm.12 11.5c-1.12-.67-.96.26-1.38-1.3-.95-3.46-.81-7.25.34-10.64 1.22.16.72.98.51 1.8-.69 3.25-.67 6.74.54 9.85v.3zm.02-.45zm-4.78.9c.26 1.87-.58-.07.44-.02 1.19.06 2.86.56 3.43-.9 1.14.2.81.97.1 1.5-1.11.97-2.62.34-3.9.44l-.07-1.01zm0 1.03c-.43-1.42.94-.87 0 0zm.48-.68z'/%3e%3cpath d='M468.14 132.2c.11-2.32-.04-1.92-.39 1.65-.37-.72-.86-1.05-1.45-1.03-1.05.01-1.68 1.61-1.79 5.22l.2 2.76c-33.07-.74-52.67 4.28-57.72 13.92-4.16 7.93 2.91 21.06 13.58 36.05 1.3 1.82 1.25 1.66 0 3.16-1.8 2.16-3.75 5.82-2.29 9.04-6.46 3.56-14.16 4.43-20.87 1.48-1.11-2.96-3.53-4.37-5.49-5.71-.4-.28-1.83-.98-1.98-1.44-3.52-11.35-7.06-21.85-10.1-31.62-9.54-30.68 75.24-33.5 88.3-33.48z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M467.31 134.09c1.79-.7-.88.09.1-1.72.1-.7-.02-2.45 1.08-1.93.62.77-.01 2.58-.84 1.53-.18-1.4.15-.73.96-.99-.3.93 0 2.34-.58 2.97l-.72.14zm.95-.19c.63 2.82-1.74.42-.25.05l.23-.04h.02zm-1.95-.57c-.33-.92.17-1.28.9-.8.53.3 1.51 1.23.37 1.42-.43.36-.62-.8-1.27-.62zm0 0zm-1.28 4.68c-1.6.63-.84-1.2-.87-2.08.2-1.36.44-3.43 2.13-3.62.35.91-.3 1.03-.65 1.69-.51 1.23-.56 2.85-.61 4zm-1.01.06zm.68 3.24c.38-1.77-.75.25-.55-1.33.11-.71-.65-2.2.57-1.95.65.02.24 1.25.43 1.8.05.62.2 1.07-.45 1.48zm.51-.54zm-57.77 14.2c-1.86-.47.38-2.14.87-3.04 5.18-5.62 12.95-7.71 20.18-9.27 11.92-2.32 24.12-2.59 36.23-2.37.41 1.9-2.2.64-3.31.97-13.43-.03-27.1.35-40.05 4.27-5.32 1.76-11.07 4.3-13.92 9.43zm13.56 35.5c-1.23 1.47-1.76-1.29-2.62-1.97-5.12-7.61-10.47-15.44-12.64-24.48-.68-3.15-.71-6.62.82-9.55 1.77.4-.19 2.02-.03 3.19-.97 6.4 2.12 12.5 4.98 18 2.82 5.15 6.1 10.03 9.49 14.81zm-.02 3.78c-1.33-.52-.22-1.07.05-1.83-.33-.8-1.36-1.51-.03-1.95.83.89 1.57 2.34.4 3.29-.15.16-.29.33-.42.5zm-2.44 9.16c-.6-1.17-1.05-.04-1.22-2.14-.27-2.84 1.13-5.54 2.88-7.68 1.44.57.02 1.39-.35 2.22-1.27 2.01-2.13 4.64-1.09 6.94l-.22.66zm.22-.66zm-21.8 1.88c1.03-1 1.51-.12 3.17.26 5.98 1.74 12.54.62 17.93-2.38 1.3 1.45-1.6 1.65-2.48 2.3-5.82 2.38-12.81 2.78-18.52-.07l-.1-.11zm.27.28zm-5.57-5.75c.48-1.62 1.63.05 2.49.48a10.14 10.14 0 0 1 3.75 4.63c-1.16.96-1.2-.6-1.79-1.27-1.11-1.66-2.83-2.75-4.45-3.84zm-2.18-1.71c.74-.55 1.14-.24 1.72.25.79.32 1.38.82.42 1.44-.73-.5-1.74-.84-2.14-1.7zm-10.1-31.62c1.54-1 1.24 1.55 1.82 2.44 3.04 9.63 6.25 19.22 9.24 28.87-1.62 1-1.28-1.79-1.9-2.71-3-9.55-6.19-19.04-9.17-28.6zm88.27-33.66c2.32.15-.97.8-1.86.56-18.49.47-37.05 2.06-55.08 6.32-8.9 2.29-18.1 5.02-25.34 10.94-3.7 3.04-6.31 7.75-5.64 12.64.1 1.03 1.21 3.66-.4 2.97a14.3 14.3 0 0 1 2.82-13.75c5.03-5.87 12.48-8.89 19.64-11.33 16.13-5.13 33.09-7.03 49.91-8.22 5.48-.34 10.97-.6 16.46-.61l-.5.48zm1.01.05zm-.5-.02zm.5.02z'/%3e%3cpath d='M404.99 190.16a6.4 6.4 0 0 1 6.37 6.41c0 3.55-2.85 6.42-6.37 6.42s-6.37-2.87-6.37-6.42a6.4 6.4 0 0 1 6.37-6.41z' fill='%23FFF'/%3e%3cpath d='M411.87 196.57h-1.01a5.93 5.93 0 0 0-5.86-5.9v-1.02a6.88 6.88 0 0 1 6.87 6.92zM405 203.5v-1.02a5.87 5.87 0 0 0 5.86-5.91h1.01a6.96 6.96 0 0 1-3.26 5.9 6.85 6.85 0 0 1-3.61 1.03zm-6.88-6.93h1.02a5.93 5.93 0 0 0 5.86 5.9v1.03a6.88 6.88 0 0 1-6.88-6.93zm6.88-6.92v1.01a5.87 5.87 0 0 0-5.86 5.91h-1.02a6.96 6.96 0 0 1 3.26-5.89 6.85 6.85 0 0 1 3.62-1.03z' fill='%2321231e'/%3e%3cpath d='M350.75 203.61a5.93 5.93 0 0 1 5.91 5.96c0 3.29-2.65 5.95-5.91 5.95a5.94 5.94 0 0 1-5.91-5.95 5.93 5.93 0 0 1 5.91-5.96z' fill='%23FFF'/%3e%3cpath d='M357.17 209.56h-1.01a5.47 5.47 0 0 0-5.4-5.45v-1.02a6.43 6.43 0 0 1 6.41 6.47zm-6.42 6.47V215a5.42 5.42 0 0 0 5.4-5.45h1.02a6.5 6.5 0 0 1-6.42 6.47zm-6.42-6.47h1.01a5.47 5.47 0 0 0 5.41 5.45v1.02a6.43 6.43 0 0 1-6.42-6.47zm6.42-6.47v1.02a5.42 5.42 0 0 0-5.4 5.45h-1.02a6.4 6.4 0 0 1 6.42-6.47z' fill='%2321231e'/%3e%3cpath d='M345.1 192.72a5.94 5.94 0 0 1 5.91 5.96 5.94 5.94 0 0 1-5.91 5.95 5.93 5.93 0 0 1-5.91-5.95 5.93 5.93 0 0 1 5.91-5.96z' fill='%23FFF'/%3e%3cpath d='M351.52 198.68h-1.01a5.47 5.47 0 0 0-5.4-5.45v-1.02a6.43 6.43 0 0 1 6.41 6.47zm-6.42 6.47v-1.02a5.42 5.42 0 0 0 5.4-5.45h1.02a6.5 6.5 0 0 1-3.04 5.5 6.4 6.4 0 0 1-3.38.97zm-6.42-6.47h1.02a5.47 5.47 0 0 0 5.4 5.45v1.02a6.42 6.42 0 0 1-6.42-6.47zm6.42-6.47v1.02a5.41 5.41 0 0 0-5.4 5.45h-1.02a6.42 6.42 0 0 1 6.42-6.47z' fill='%2321231e'/%3e%3cpath d='M339.79 181.71a5.93 5.93 0 0 1 5.91 5.96 5.93 5.93 0 0 1-5.91 5.95 5.94 5.94 0 0 1-5.91-5.95 5.93 5.93 0 0 1 5.91-5.96z' fill='%23FFF'/%3e%3cpath d='M346.21 187.66h-1.01a5.47 5.47 0 0 0-5.4-5.45v-1.02a6.42 6.42 0 0 1 6.41 6.47zm-6.42 6.47v-1.02a5.41 5.41 0 0 0 5.4-5.45h1.02a6.5 6.5 0 0 1-3.01 5.48 6.4 6.4 0 0 1-3.4.99zm-6.42-6.47h1.02a5.47 5.47 0 0 0 5.4 5.45v1.02a6.43 6.43 0 0 1-6.42-6.47zm6.42-6.47v1.02a5.42 5.42 0 0 0-5.4 5.45h-1.02a6.5 6.5 0 0 1 6.42-6.47z' fill='%2321231e'/%3e%3cpath d='M444.27 202.15c3.42-.23 2.57 5.9 1.9 7.26-.88 1.78-1.7 1.84-2.81.19-.85-1.26-2.5-7.22.91-7.45z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m446.62 209.63-.9-.45c.32-.78.44-1.63.52-2.46a6.72 6.72 0 0 0-.35-3.08c-.2-.46-.58-.88-1.1-.96a2.1 2.1 0 0 0-.48-.03l-.07-1.01c.64-.05 1.32.12 1.81.55.71.6 1.02 1.54 1.15 2.44.18 1.32.06 2.67-.24 3.97-.08.35-.19.7-.34 1.03zm-3.68.25.84-.57c.25.35.5.74.9.94.26.1.45-.17.6-.34.17-.23.3-.48.44-.73l.9.45c-.31.61-.68 1.28-1.34 1.57-.52.23-1.12.02-1.52-.35a4.97 4.97 0 0 1-.82-.97zm1.3-8.25.07 1.02c-.5.03-.99.26-1.23.7-.38.66-.4 1.47-.35 2.22.1 1.15.37 2.3.84 3.36l.2.38-.83.57a8.71 8.71 0 0 1-.95-2.51 8.16 8.16 0 0 1-.16-3.58c.17-.76.6-1.5 1.32-1.86.33-.18.71-.26 1.09-.3z'/%3e%3cpath d='M444.49 205.46c8.03-.55 6.04 13.85 4.46 17.05-2.07 4.2-4 4.32-6.6.45-2-2.96-5.89-16.95 2.14-17.5z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m449.4 222.74-.9-.45c.74-1.73 1.03-3.61 1.25-5.46.23-2.54.24-5.19-.62-7.62-.47-1.31-1.37-2.58-2.75-3.03-.6-.2-1.23-.24-1.86-.21l-.07-1.02c1.36-.1 2.78.25 3.81 1.15 1.5 1.3 2.13 3.29 2.42 5.19.43 3.03.17 6.14-.5 9.12-.2.8-.43 1.59-.78 2.33zm-7.47.5.84-.56c.67.94 1.37 1.97 2.45 2.47.74.33 1.5-.2 1.96-.75.54-.64.94-1.37 1.32-2.11l.9.45c-.64 1.23-1.35 2.57-2.6 3.26-.94.53-2.1.2-2.88-.45a10.3 10.3 0 0 1-1.99-2.3zm2.56-17.27v-1.02l.03 1.02c-1.23.07-2.49.6-3.2 1.66-1.04 1.48-1.2 3.37-1.18 5.13.1 2.89.78 5.75 1.86 8.42.22.51.46 1.02.77 1.5l-.84.57a19.76 19.76 0 0 1-2.1-5.53c-.62-2.64-.99-5.43-.43-8.13.35-1.62 1.23-3.23 2.75-4.01.7-.39 1.5-.56 2.3-.63l.04 1.02zm0-1.02v1.02l-.04-1.02h.04z'/%3e%3cpath d='M379.74 210.81c3.26-1.05 3.9 5.1 3.56 6.6-.43 1.94-1.21 2.19-2.68.85-1.13-1.02-4.14-6.4-.88-7.45z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m383.79 217.51-.99-.22c.13-.77.06-1.56-.04-2.33-.16-1.01-.4-2.04-.96-2.9-.3-.47-.8-.9-1.38-.86a2 2 0 0 0-.53.09l-.3-.97c.6-.2 1.29-.2 1.87.09.83.4 1.35 1.23 1.7 2.06.5 1.27.7 2.64.72 4 0 .35-.02.7-.09 1.04zm-3.51 1.13.67-.76c.34.28.69.62 1.13.7.26.01.38-.28.47-.47.12-.26.19-.54.25-.82l.99.22c-.16.67-.36 1.4-.93 1.85-.45.34-1.07.29-1.54.03-.39-.2-.72-.47-1.04-.75zm-.7-8.32.31.97c-.48.14-.9.5-1.03 1a4.1 4.1 0 0 0 .22 2.3c.37 1.07.9 2.1 1.6 2.99l.27.3-.67.76a8.77 8.77 0 0 1-1.53-2.24 8.18 8.18 0 0 1-.99-3.38c-.02-.8.23-1.63.84-2.15.28-.26.63-.43.98-.55z'/%3e%3cpath d='M380.74 213.97c7.67-2.46 9.14 12 8.36 15.5-1.02 4.56-2.85 5.14-6.3 2.01-2.64-2.4-9.73-15.05-2.06-17.51z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m389.6 229.58-.99-.22c.32-1.86.16-3.75-.07-5.6-.38-2.53-1-5.1-2.4-7.25-.79-1.2-2.04-2.25-3.53-2.3a5.16 5.16 0 0 0-1.71.25l-.3-.97a5.23 5.23 0 0 1 3.97.2c1.77.92 2.86 2.72 3.59 4.5 1.12 2.84 1.59 5.9 1.64 8.94 0 .82-.03 1.65-.2 2.45zm-7.14 2.29.68-.76c.87.76 1.8 1.59 2.97 1.81.8.15 1.41-.54 1.72-1.2.38-.74.6-1.55.78-2.36l.99.22c-.33 1.35-.7 2.82-1.76 3.8-.78.73-1.99.7-2.9.24a10.26 10.26 0 0 1-2.48-1.75zm-1.87-18.38.3.97a4.15 4.15 0 0 0-2.74 2.43c-.66 1.78-.32 3.73.18 5.5.8 2.7 2.11 5.26 3.78 7.53.31.42.65.83 1.03 1.2l-.68.75a19.73 19.73 0 0 1-3.34-4.86c-1.23-2.43-2.25-5.05-2.34-7.8-.05-1.66.43-3.44 1.72-4.56a5.9 5.9 0 0 1 2.09-1.16zm.15.49c-.11-.37-.2-.64-.03-.12l.03.12z'/%3e%3cpath d='M464.2 137.77c-17.23-1.57-34.85.2-52.3 7.17-14.7 5.88-13.26 23.06 4.67 46.9-1.62 3.01-2.55 6.77-2.7 11.1 1.9-.1 3.23-.05 4.9-.1-1.3-2.88.16-6.42 1.8-8.91 1.07-1.63 1.3-1.34 0-3.16-10.67-15-17.74-28.12-13.58-36.05 5.05-9.64 24.66-14.66 57.71-13.92l-.18-2.67-.32-.36z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M412.09 145.42c-1.04-1.31.96-1.3 1.79-1.78 15.99-6.06 33.39-7.97 50.37-6.37.35 1.66-1.47.72-2.44.82-16.86-1.28-34 1-49.72 7.33zm4.93 46.66c-1.2-.55-.95.17-1.95-1.42-5.67-7.88-11.01-16.38-13.12-25.97-1.2-5.52-.66-11.96 3.52-16.15a17.8 17.8 0 0 1 6.25-4.07c1.05 1.32-.99 1.31-1.75 1.95a13.8 13.8 0 0 0-7.52 11.77c-.35 7.5 2.87 14.6 6.4 21.04 2.4 4.3 5.18 8.36 8.12 12.3l.05.55zm-.05-.55zm-3.12 10.9c.37 1.81-.87.28-.42-.69a25.1 25.1 0 0 1 2.7-10.15c1.56.3.21 1.47 0 2.39a26.6 26.6 0 0 0-1.75 8.98l-.53-.52zm.06 1.02zm4.4-.4c1.66-.99.34.84-.73.32-1.23 0-2.45 0-3.67.08-.57-1.5 1.14-.96 2.06-1.09.93 0 1.86 0 2.8-.02l-.45.72zm.93-.41zm.91-8.99c1.45.4.23 1.34-.1 2.18-1.04 2.06-1.78 4.58-.8 6.8-1.2 1.1-1.33-.7-1.45-1.59-.2-2.65.95-5.21 2.35-7.39zm.01-2.58c.8-1.12 1.33.02 1.7.8.4.9-.44 1.64-.86 2.34-1.24-.36-.51-1.04-.06-1.76.01-.51-.57-.95-.78-1.38zm-13.62-36.59c1.58.29.2 1.5.13 2.48-1.25 5.38.99 10.79 3.22 15.6 3.1 6.32 7.04 12.18 11.1 17.92-1 1.33-1.47-.58-2.14-1.27-5-7.32-10.09-14.84-12.7-23.41-1.02-3.67-1.43-7.82.4-11.32zm57.66-13.65c1.96-.31-.03.92-.98.45-13-.14-26.16.19-38.83 3.36-5.86 1.62-12.12 3.82-15.98 8.79-.28.96-1.7 2.15-1.68.73 3.17-5.4 9.3-8.01 15.01-9.83 12.14-3.54 24.9-4.05 37.48-4.1 1.83 0 3.66.03 5.5.06l-.52.54zm1.01-.07zm-1.07-2.29c.73-1.05 1.02-.34.95.55-.07.55.33 1.5-.06 1.76-.99.42-.88-.43-.9-1.1 0-.37-.18-1.55-.04-1.34l.05.13zm.76-.67zm-1.06-.39c.67 1.07.67.25.83.13.55.32-.37.8-.58.88-.22-.15-.38-.54-.25-1zm0 .71zm.72.01zm-.31-.86z'/%3e%3cpath d='M380.59 142.66c3.4 0 6.14 2.77 6.14 6.19s-2.75 6.18-6.14 6.18-6.14-2.77-6.14-6.18 2.75-6.19 6.14-6.19z' fill='%23FFF'/%3e%3cpath d='M387.24 148.84h-1.01a5.7 5.7 0 0 0-5.64-5.67v-1.02a6.65 6.65 0 0 1 6.65 6.69zm-6.65 6.7v-1.02a5.64 5.64 0 0 0 5.64-5.68h1.01a6.72 6.72 0 0 1-3.15 5.7 6.6 6.6 0 0 1-3.5 1zm-6.64-6.7h1a5.7 5.7 0 0 0 5.64 5.68v1.02a6.65 6.65 0 0 1-6.64-6.7zm6.64-6.7v1.02a5.64 5.64 0 0 0-5.63 5.68h-1.01a6.72 6.72 0 0 1 3.12-5.67 6.6 6.6 0 0 1 3.52-1.03z' fill='%2321231e'/%3e%3cpath d='M392.62 138.7c3.4 0 6.14 2.77 6.14 6.19a6.16 6.16 0 0 1-6.14 6.18 6.16 6.16 0 0 1-6.14-6.18 6.16 6.16 0 0 1 6.14-6.19z' fill='%23FFF'/%3e%3cpath d='M399.27 144.88h-1.01a5.7 5.7 0 0 0-5.64-5.67v-1.02a6.65 6.65 0 0 1 6.65 6.69zm-6.65 6.7v-1.02a5.64 5.64 0 0 0 5.64-5.68h1.01a6.73 6.73 0 0 1-3.15 5.7c-1.04.65-2.27 1-3.5 1zm-6.64-6.7h1.01a5.7 5.7 0 0 0 5.63 5.68v1.02a6.65 6.65 0 0 1-6.64-6.7zm6.64-6.7v1.02a5.64 5.64 0 0 0-5.63 5.68h-1.01a6.73 6.73 0 0 1 3.18-5.71 6.62 6.62 0 0 1 3.46-.99z' fill='%2321231e'/%3e%3cpath d='M394.22 143.97c.6.82 1.22 1.64 1.84 2.46-9.7 5.36-13.72 11.01-12.77 16.7.16.97 3.1 11.38 9.7 31.55 4.5 3.13 7.86 5.93 10.07 8.4-.25.3.7 1.17.42 1.4.68 3.09-2.77 2.46-5.09 1.7-1.11-2.96-4.51-6.1-6.47-7.44-.4-.28-1.83-.98-1.98-1.44-3.52-11.35-7.07-21.85-10.1-31.62-3.06-9.82 3.56-16.78 14.38-21.71z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M396.31 146.88c-.46-1.35-.47-.23-.82-.37l-1.67-2.23c.6-.76 1.06-.54 1.44.24.36.59 1 1.11 1.18 1.74l-.13.62zm.16-.76zm-12.68 16.93c-.94.45-1.2-.06-1.12-.95-.28-4.56 2.7-8.52 6.03-11.3a43.31 43.31 0 0 1 7.12-4.81c.9.86.03 1.2-.75 1.6-4.2 2.52-8.53 5.56-10.61 10.17a9.43 9.43 0 0 0-.67 5.3zm0 0zm9.5 31.22c-.5 1.28-.95.47-1.12-.47-3.23-10.05-6.52-20.07-9.3-30.25-.19-.7 1.39-.67 1.1.25 2.88 10.33 6.2 20.53 9.5 30.73l-.19-.26zm-.58.84zm10.73 8.33c-.92-1.32-.53.43-1.17-.46-2.85-3-6.18-5.5-9.56-7.87.37-1.2 1.06-.58 1.74-.02 3.2 2.3 6.34 4.74 9 7.67v.68zm0-.68zm.54 1.63c-.9.63-.96-.46-.94.02-.24-.5-.8-1.1-.35-1.65.36.56.8.47.92.6.28.43.7 1.09.2 1.53l.17-.5zm-.98.22zm-5.07 1.76c1.28-.14.26-.95 1.42-.43 1.12.23 2.57.76 3.55-.07.38-.65-.23-1.56.9-1.44.49.17.28 1.35.04 1.84-1 1.55-3.16 1.05-4.66.68-.44-.14-.96-.17-1.25-.58zm.31.3zm-6.6-7.5c.34-1.13.98-.72 1.61-.07 2.29 1.9 4.48 4.12 5.62 6.91-.83.62-1.15.13-1.42-.67a20.37 20.37 0 0 0-5.8-6.17zm.57-.85zm-2.74-.86c.5-.07.95-.59 1.29-.03.46.33.98.58 1.45.9-.3.63-.63 1.06-1.22.45-.55-.36-1.26-.68-1.52-1.32zm-10.1-31.62c1.05-.74 1.18.29 1.4 1.14 3.17 10.08 6.54 20.09 9.66 30.17-1 .7-1.18-.16-1.38-1.02-3.15-10.12-6.53-20.17-9.69-30.29zm15.26-22.17c-1.47.64.43.73-.94 1.12-5 2.42-10.12 5.56-12.76 10.65-1.6 3.1-1.66 6.81-.6 10.1-1 .7-1.2-.17-1.32-1.04a14.11 14.11 0 0 1 2.92-12.46c3.18-3.87 7.6-6.45 12.09-8.53l.61.16zm-.61-.16z'/%3e%3cpath d='m355.95 216.87-.37 1.98c-2.82.66-5.24.82-7.24.5 3.35-3.3 5.85-4 7.61-2.48z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m355.08 218.76.37-1.98 1 .19-.38 1.98-.38.4-.61-.59zm1 .19c-.05.1-.01.28-.1.34-.08 0-.37.12-.23 0l.32-.34zm-8.1.03.7.73-.27-.86c2.09.33 4.22.1 6.28-.32l.77-.17.23.99c-2.21.51-4.5.83-6.78.59a12.2 12.2 0 0 1-.66-.09l-.27-.87zm.27.87-.99-.16.72-.7.27.86zm8.2-2.88-1-.19.16.48a2.52 2.52 0 0 0-1.98-.63 6.23 6.23 0 0 0-2.77 1.23c-.78.55-1.5 1.19-2.18 1.85l-.7-.73a15 15 0 0 1 3.69-2.8c.97-.47 2.1-.76 3.18-.47.53.15 1.01.42 1.42.78l.17.48zm-.18-.48c.07.09.26.14.21.27-.02.16-.04.27-.1.05l-.1-.32zm-.33.38.5.1-.5-.1zm.33-.38c.07.09.26.14.21.27-.02.16-.04.27-.1.05l-.1-.32z'/%3e%3cpath d='M355.64 212.34c1.77.4 1.93.7 2.7.83 1 .17 2.36.1 3.3-.73 3.84-2.32 3.93 1.86 2.43 4.99-1.08 2.26-.52 4.82.51 6.76 1.22 2.3.96 3.34.1 3.96l-1.68 1.1c-1.03 1.22-1.82 1.01-1.96-.6-3.84-1.59-5.1-5.29-6.25-8.55-1.68-4.76-7.77-5.9.85-7.76z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m358.43 212.66-.17 1c-.83-.17-1.59-.6-2.43-.76-.43.03-.24-.32-.19-.6.03-.34.12-.57.48-.38.77.15 1.48.52 2.24.73l.07.01zm2.95-.66.52.87c.1-.06-.39.32-.56.39-.94.5-2.05.58-3.08.4l.17-1c1.01.17 2.16.05 2.95-.66zm-.07.05zm3.22 5.59-.91-.44c.56-1.26 1-2.66.78-4.05-.05-.49-.46-.99-1-.87a3.9 3.9 0 0 0-1.5.59l-.52-.87c.88-.52 2.02-1.04 3.02-.54.96.52 1.13 1.75 1.07 2.74a9.68 9.68 0 0 1-.94 3.44zm.5 6.3-.9.49c-1.14-2.13-1.6-4.78-.6-7.05.08-.39.48.09.7.12.44.06.2.36.1.62-.7 1.92-.24 4.07.7 5.82zm-.08 4.63c-.19-.27-.37-.62-.57-.84.62-.38.6-1.2.4-1.8a8.2 8.2 0 0 0-.65-1.5l.9-.49c.54 1.08 1.14 2.32.76 3.54a2.2 2.2 0 0 1-.84 1.1zm.02-.01-.02.01.02-.01zm-1.59 1-.77-.65c.57-.43 1.2-.78 1.79-1.2l.55.86-1.68 1.1.11-.1zm-.77-.65zm-1.77.2.39-.94c.19.24.36.48.36.8.05.18.07.44.25.54.33-.08.55-.37.77-.6l.77.65c-.46.56-1.19 1.2-1.96.89-.66-.31-.83-1.1-.9-1.76l.32.43zm.39-.94c.34-.07.4.7.16.23l-.16-.23zm-6.92-7.9.95-.35c.86 2.43 1.74 5 3.68 6.8.67.61 1.45 1.1 2.29 1.45l-.39.95a9.53 9.53 0 0 1-4.76-4.55c-.74-1.37-1.26-2.84-1.77-4.3zm1.33-8.45v1.02c.19-.01-.5.12-.65.16-1.07.29-2.22.5-3.14 1.14-.42.24-.1.72.1.99 1.01 1.25 2.2 2.39 2.91 3.85.15.3.28.62.4.94l-.95.34c-.58-1.7-1.88-2.99-3.01-4.33-.48-.57-.93-1.41-.49-2.12.55-.83 1.58-1.1 2.46-1.4.78-.24 1.57-.44 2.37-.59zm-.1.01zm.1 1.01v-1.02c.24.08-.02.56.02.8l-.02.22zm0-1.02z'/%3e%3cpath d='M357.15 212.5c3.34 1.2 3.7-.67 5.96-.57-.89 5.14-1.78 7.8-7.11 5.04-2.94-1.52-6.7.7-7.42 2.36-.26.6-1.97-.65-2.6-2.02-2.6-5.76 6.7-6.42 11.17-4.81z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m363.61 212.02-1-.18.48.6c-1.24-.1-2.23.83-3.43.94-.91.12-1.82-.1-2.68-.4l.34-.96c.99.37 2.12.56 3.12.1a5.65 5.65 0 0 1 2.7-.7l.47.6zm-.48-.6c.2.06.7-.11.54.23 0 .38-.1.4-.3.08l-.24-.3zm-7.36 6 .46-.9c1.1.54 2.29 1.12 3.55 1.04.9-.07 1.51-.87 1.82-1.65.54-1.3.76-2.7 1.01-4.07l1 .18c-.3 1.64-.55 3.35-1.35 4.84a3.05 3.05 0 0 1-2.54 1.72c-1.4.07-2.73-.54-3.95-1.15zm-6.72 2.12c-.3-.14-.62-.27-.93-.4a5.82 5.82 0 0 1 2.87-2.53 6.02 6.02 0 0 1 5.24-.09l-.46.9c-1.55-.8-3.43-.44-4.9.4-.71.42-1.44.95-1.82 1.72zm-3.52-2.02.92-.42c.39.77 1 1.47 1.78 1.85.26 0-.36.2.04.25l.78.34c-.21.52-.89.55-1.32.3a5.15 5.15 0 0 1-2.2-2.32zm11.8-5.5-.35.96c-2.09-.7-4.34-.86-6.53-.61-1.3.18-2.69.5-3.68 1.42-.71.62-.88 1.67-.6 2.54.07.27.18.51.28.77l-.92.42c-.49-1.07-.72-2.36-.2-3.47.64-1.3 2.02-2 3.35-2.37a15.83 15.83 0 0 1 8.64.34zm-.18.48c.07-.18.25-.7.09-.24l-.09.24z'/%3e%3cpath d='M458.84 124.49c3.38 0 6.11 2.76 6.11 6.16s-2.73 6.16-6.11 6.16c-3.38 0-6.11-2.76-6.11-6.16s2.73-6.16 6.11-6.16z' fill='%23FFF'/%3e%3cpath d='M465.46 130.64h-1.01a5.67 5.67 0 0 0-5.6-5.65v-1.02a6.62 6.62 0 0 1 6.61 6.67zm-6.62 6.67v-1.02a5.61 5.61 0 0 0 5.6-5.65h1.02a6.7 6.7 0 0 1-3.14 5.67c-1.03.65-2.25 1-3.48 1zm-6.62-6.67h1.02a5.67 5.67 0 0 0 5.6 5.65v1.02a6.63 6.63 0 0 1-6.62-6.67zm6.62-6.67V125a5.62 5.62 0 0 0-5.6 5.65h-1.02a6.7 6.7 0 0 1 3.14-5.67c1.04-.65 2.26-1 3.48-1z' fill='%2321231e'/%3e%3cpath d='M446.31 124.49c3.38 0 6.11 2.76 6.11 6.16s-2.73 6.16-6.11 6.16-6.11-2.76-6.11-6.16 2.73-6.16 6.11-6.16z' fill='%23FFF'/%3e%3cpath d='M452.93 130.64h-1.01a5.67 5.67 0 0 0-5.6-5.65v-1.02a6.63 6.63 0 0 1 6.61 6.67zm-6.62 6.67v-1.02a5.62 5.62 0 0 0 5.6-5.65h1.02a6.7 6.7 0 0 1-3.14 5.67c-1.04.65-2.26 1-3.48 1zm-6.62-6.67h1.01a5.67 5.67 0 0 0 5.61 5.65v1.02a6.63 6.63 0 0 1-6.62-6.67zm6.62-6.67V125a5.62 5.62 0 0 0-5.6 5.65h-1.02a6.7 6.7 0 0 1 3.14-5.67c1.04-.65 2.26-1 3.48-1z' fill='%2321231e'/%3e%3cpath d='M433.79 125.48a6.14 6.14 0 0 1 6.11 6.16c0 3.4-2.73 6.16-6.11 6.16s-6.11-2.76-6.11-6.16c0-3.4 2.73-6.16 6.11-6.16z' fill='%23FFF'/%3e%3cpath d='M440.41 131.63h-1.01a5.67 5.67 0 0 0-5.6-5.65v-1.02a6.63 6.63 0 0 1 6.61 6.67zm-6.62 6.67v-1.02a5.62 5.62 0 0 0 5.6-5.65h1.02a6.7 6.7 0 0 1-3.14 5.67c-1.04.65-2.26 1-3.48 1zm-6.62-6.67h1.02a5.67 5.67 0 0 0 5.6 5.65v1.02a6.62 6.62 0 0 1-6.62-6.67zm6.62-6.67v1.02a5.61 5.61 0 0 0-5.6 5.65h-1.02a6.7 6.7 0 0 1 6.62-6.67z' fill='%2321231e'/%3e%3cpath d='M422.25 127.7a6.13 6.13 0 0 1 6.11 6.16c0 3.4-2.73 6.16-6.11 6.16a6.14 6.14 0 0 1-6.11-6.16c0-3.4 2.73-6.16 6.11-6.16z' fill='%23FFF'/%3e%3cpath d='M428.87 133.86h-1.01a5.67 5.67 0 0 0-5.6-5.65v-1.02a6.63 6.63 0 0 1 6.61 6.67zm-6.62 6.67v-1.02a5.62 5.62 0 0 0 5.6-5.65h1.02a6.7 6.7 0 0 1-3.14 5.67c-1.03.65-2.25 1-3.48 1zm-6.62-6.67h1.02a5.67 5.67 0 0 0 5.6 5.65v1.02a6.62 6.62 0 0 1-6.62-6.67zm6.62-6.67v1.02a5.62 5.62 0 0 0-5.6 5.65h-1.02a6.7 6.7 0 0 1 6.62-6.67z' fill='%2321231e'/%3e%3cpath d='M346.3 159.43c3.4 0 6.14 2.77 6.14 6.19a6.16 6.16 0 0 1-6.14 6.18 6.16 6.16 0 0 1-6.14-6.18 6.16 6.16 0 0 1 6.14-6.19z' fill='%23FFF'/%3e%3cpath d='M352.94 165.62h-1.01a5.7 5.7 0 0 0-5.64-5.68v-1.02a6.65 6.65 0 0 1 6.65 6.7zm-6.65 6.7v-1.02a5.64 5.64 0 0 0 5.64-5.68h1.01a6.72 6.72 0 0 1-3.12 5.67 6.6 6.6 0 0 1-3.53 1.03zm-6.64-6.7h1a5.7 5.7 0 0 0 5.64 5.67v1.02a6.65 6.65 0 0 1-6.64-6.69zm6.64-6.7v1.02a5.64 5.64 0 0 0-5.63 5.68h-1.01a6.73 6.73 0 0 1 3.15-5.7c1.04-.65 2.26-1 3.5-1z' fill='%2321231e'/%3e%3cpath d='M356.82 152.75a6.16 6.16 0 0 1 6.14 6.19c0 3.41-2.75 6.18-6.14 6.18s-6.14-2.77-6.14-6.18 2.75-6.19 6.14-6.19z' fill='%23FFF'/%3e%3cpath d='M363.47 158.94h-1.01a5.7 5.7 0 0 0-5.64-5.68v-1.02a6.65 6.65 0 0 1 6.65 6.7zm-6.65 6.7v-1.02a5.64 5.64 0 0 0 5.64-5.68h1.01a6.72 6.72 0 0 1-3.12 5.67 6.6 6.6 0 0 1-3.53 1.03zm-6.64-6.7h1.01a5.7 5.7 0 0 0 5.63 5.67v1.02a6.65 6.65 0 0 1-6.64-6.69zm6.64-6.7v1.02a5.64 5.64 0 0 0-5.63 5.68h-1.01a6.72 6.72 0 0 1 3.15-5.7 6.6 6.6 0 0 1 3.5-1z' fill='%2321231e'/%3e%3cpath d='M368.79 147.09c3.4 0 6.14 2.77 6.14 6.19a6.16 6.16 0 0 1-6.14 6.18 6.16 6.16 0 0 1-6.14-6.18 6.16 6.16 0 0 1 6.14-6.19z' fill='%23FFF'/%3e%3cpath d='M375.43 153.28h-1.01a5.7 5.7 0 0 0-5.64-5.68v-1.02a6.65 6.65 0 0 1 6.65 6.7zm-6.65 6.7v-1.02a5.64 5.64 0 0 0 5.64-5.68h1.01a6.72 6.72 0 0 1-3.15 5.7c-1.04.65-2.27 1-3.5 1zm-6.64-6.7h1.01a5.7 5.7 0 0 0 5.63 5.68v1.01a6.65 6.65 0 0 1-6.64-6.69zm6.64-6.7v1.02a5.64 5.64 0 0 0-5.63 5.68h-1.01a6.73 6.73 0 0 1 3.15-5.7c1.04-.65 2.26-1 3.5-1z' fill='%2321231e'/%3e%3cpath d='M338.16 169.49c3.4 0 6.14 2.77 6.14 6.19a6.16 6.16 0 0 1-6.14 6.18 6.16 6.16 0 0 1-6.14-6.18 6.16 6.16 0 0 1 6.14-6.19z' fill='%23FFF'/%3e%3cpath d='M344.8 175.68h-1.01a5.7 5.7 0 0 0-5.64-5.68v-1.02a6.65 6.65 0 0 1 6.65 6.7zm-6.65 6.7v-1.02a5.65 5.65 0 0 0 5.64-5.68h1.01a6.72 6.72 0 0 1-3.15 5.7 6.6 6.6 0 0 1-3.5 1zm-6.64-6.7h1.01a5.7 5.7 0 0 0 5.63 5.68v1.01a6.65 6.65 0 0 1-6.64-6.69zm6.64-6.7V170a5.64 5.64 0 0 0-5.63 5.68h-1.01a6.73 6.73 0 0 1 3.15-5.7c1.04-.65 2.26-1 3.5-1z' fill='%2321231e'/%3e%3cpath transform='matrix(1.01066 0 0 1.01824 -5.13 -6.2)' fill='%23edb92e' d='m409.61 280.14 21.77-12.6 23.15 9.85L432.76 290z'/%3e%3cpath d='m431.11 266.67-22 12.83-.5-.88 22-12.83.45-.03.05.91zm-.5-.88.21-.13.24.1-.46.03zm23.44 10.94-23.4-10.03.4-.94 23.4 10.03.05.91-.45.03zm.4-.94.93.4-.88.51-.05-.9zm-22.46 12.87 22-12.84.51.88-22 12.84-.45.03-.06-.91zm.5.88-.21.13-.23-.1.45-.03zm-23.44-10.95 23.4 10.04-.4.94-23.4-10.04-.05-.91.45-.03zm-.4.94-.93-.4.88-.51.06.9z' fill='%2321231e'/%3e%3cpath d='M431.13 270.65c5.64-.35 10.4 2.44 10.63 6.23.23 3.8-4.16 7.14-9.8 7.5-5.64.34-10.4-2.45-10.63-6.24-.23-3.79 4.16-7.14 9.8-7.49z' fill='%23c6363c'/%3e%3cpath fill='%2321231e' d='m442.26 276.85-1.01.06c-.11-1.9-1.54-3.42-3.13-4.3a12.7 12.7 0 0 0-6.96-1.45l-.07-1.02c3.07-.17 6.33.48 8.78 2.43a6.07 6.07 0 0 1 2.39 4.28zm-10.27 8.03-.06-1.02c2.8-.18 5.7-1.12 7.72-3.15.99-1 1.7-2.36 1.6-3.8l1.01-.06c.14 2.1-1.08 4.04-2.68 5.3a13.52 13.52 0 0 1-7.6 2.73zm-11.17-6.7 1.01-.07c.11 1.88 1.51 3.4 3.08 4.28 2.12 1.2 4.6 1.61 7.02 1.47l.06 1.02c-3.07.18-6.33-.48-8.78-2.43a6.07 6.07 0 0 1-2.39-4.28zm10.27-8.04.07 1.02c-2.81.19-5.7 1.12-7.73 3.15-.99 1-1.7 2.37-1.6 3.8l-1 .06c-.15-2.11 1.1-4.07 2.71-5.33a13.54 13.54 0 0 1 7.55-2.7z'/%3e%3cpath d='m382.38 269.85 23.78 9.07-19.63 13.23c-5.09-1.7-9.12-19.12-4.15-22.3z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m405.98 279.4-23.78-9.07c.22-.27.15-1.17.63-.85l23.5 8.97c0 .4.35 1.08-.32.95h-.03zm.36-.95c.26.18 1.3.26.61.55-.49.5-.6.21-.6-.37l-.01-.18zm-20.09 13.27 19.63-13.22c.09.33.85.8.32 1l-19.39 13.07c-.62.3-.46-.41-.55-.8l-.01-.05zm.56.85zm-4.25-23.2c0 .3-.67 1.1-.07.93.31-.01-.56.46-.63.74-1.18 1.74-1.25 3.94-1.23 5.97a27.45 27.45 0 0 0 2.89 11.2c.76 1.36 1.66 2.84 3.17 3.45-.2.27-.11 1.2-.59.86-1.77-.82-2.84-2.6-3.7-4.28a28.55 28.55 0 0 1-2.78-11.48c-.02-2.24.17-4.7 1.6-6.53.37-.38.75-.9 1.34-.86zm-.45.05c.4-.26.55.06 0 0zm.27.43zm-.27-.43c.4-.26.55.06 0 0z'/%3e%3cpath d='M382.83 274.26c5.62-.58 10.49 2.02 10.87 5.8.38 3.77-3.87 7.3-9.49 7.88-3.65.37-5.92-2.85-6.32-6.26-.4-3.42 1.09-7.02 4.94-7.42z' fill='%230c4076'/%3e%3cpath fill='%2321231e' d='m394.21 280-1 .1c-.18-1.77-1.52-3.2-3.03-4.02a12.53 12.53 0 0 0-7.3-1.31l-.1-1.02c2.94-.29 6.06.18 8.55 1.84 1.5 1 2.7 2.57 2.88 4.41zm-9.94 8.44-.1-1.01c2.7-.3 5.45-1.28 7.39-3.25a5.2 5.2 0 0 0 1.65-4.08l1-.1c.2 1.96-.79 3.85-2.2 5.16-2.08 1.96-4.92 2.98-7.74 3.28zm-6.88-6.7 1-.12c.25 1.99 1.14 4.04 2.88 5.16.85.55 1.9.76 2.9.65l.1 1.01c-1.72.2-3.5-.46-4.68-1.73a8.68 8.68 0 0 1-2.2-4.98zm5.4-7.99.1 1.02a4.66 4.66 0 0 0-3.63 2.25 7.36 7.36 0 0 0-.86 4.6l-1 .11c-.26-2.22.22-4.68 1.83-6.33a5.71 5.71 0 0 1 3.55-1.65z'/%3e%3cpath d='M457.46 280.42a3.2 3.2 0 0 1 3.2 3.22c0 1.77-1.44 3.21-3.2 3.21s-3.2-1.44-3.2-3.21a3.2 3.2 0 0 1 3.2-3.22z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='M461.16 283.63h-1.01a2.71 2.71 0 0 0-2.69-2.7v-1.03a3.7 3.7 0 0 1 3.7 3.73zm-3.7 3.73v-1.02a2.7 2.7 0 0 0 2.69-2.7h1a3.74 3.74 0 0 1-3.69 3.72zm-3.7-3.73h1.01a2.71 2.71 0 0 0 2.69 2.7v1.03a3.7 3.7 0 0 1-3.7-3.73zm3.7-3.73v1.02a2.7 2.7 0 0 0-2.68 2.7h-1.02a3.75 3.75 0 0 1 3.7-3.72z'/%3e%3cpath d='M408.71 283.14a3.2 3.2 0 0 1 3.2 3.22c0 1.77-1.44 3.21-3.2 3.21s-3.2-1.44-3.2-3.21a3.2 3.2 0 0 1 3.2-3.22z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='M412.41 286.36h-1.01a2.71 2.71 0 0 0-2.69-2.7v-1.03a3.7 3.7 0 0 1 3.7 3.73zm-3.7 3.73v-1.02a2.7 2.7 0 0 0 2.69-2.7h1a3.74 3.74 0 0 1-3.69 3.72zm-3.7-3.73h1.01a2.71 2.71 0 0 0 2.69 2.7v1.03a3.7 3.7 0 0 1-3.7-3.73zm3.7-3.73v1.02a2.7 2.7 0 0 0-2.68 2.7H405a3.75 3.75 0 0 1 3.7-3.72z'/%3e%3cpath d='M406.99 268.29c1.76 0 3.2 1.44 3.2 3.22s-1.44 3.21-3.2 3.21-3.2-1.44-3.2-3.21 1.44-3.22 3.2-3.22z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='M410.69 271.51h-1.01a2.71 2.71 0 0 0-2.69-2.7v-1.03a3.7 3.7 0 0 1 3.7 3.73zm-3.7 3.73v-1.02a2.7 2.7 0 0 0 2.69-2.7h1a3.74 3.74 0 0 1-3.69 3.72zm-3.7-3.73h1.01a2.71 2.71 0 0 0 2.69 2.7v1.03a3.7 3.7 0 0 1-3.7-3.73zm3.7-3.73v1.02a2.7 2.7 0 0 0-2.68 2.7h-1.02a3.75 3.75 0 0 1 3.7-3.72z'/%3e%3cpath d='M457.34 266.19a3.2 3.2 0 0 1 3.2 3.22 3.2 3.2 0 0 1-3.2 3.21 3.2 3.2 0 0 1-3.2-3.21 3.2 3.2 0 0 1 3.2-3.22z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='M461.04 269.41h-1.01a2.71 2.71 0 0 0-2.69-2.7v-1.02a3.7 3.7 0 0 1 3.7 3.72zm-3.7 3.73v-1.02a2.7 2.7 0 0 0 2.69-2.7h1a3.75 3.75 0 0 1-3.69 3.72zm-3.7-3.73h1.01a2.71 2.71 0 0 0 2.7 2.7v1.03a3.7 3.7 0 0 1-3.7-3.73zm3.7-3.73v1.02a2.7 2.7 0 0 0-2.68 2.7h-1.02a3.74 3.74 0 0 1 3.7-3.72z'/%3e%3cpath d='M370.93 237.39c2.42-.74 6.2 4.64 7.1 4.54 1.18-3.07-1.24-10.43-5.54-16.25-2.92-.96-3.18-2.85-3.78-7.23-.18-1.31-2.68-.41-2.73 1.82-.05 2.39-.23 3.71.3 5.76.2.8.1 1.57-.8 2.3 4.55 1.82 5.67 4.05 5.45 9.06z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M377.56 241.75c.26.14.8.24.9.4-.24.27-.57.39-.88.18-1.07-.65-1.85-1.65-2.79-2.46-.94-.82-1.92-1.78-3.2-2.03-.4.07-.62 0-.66-.46-.25-.4-.05-.6.4-.56 1.41 0 2.58.97 3.62 1.83 1.04.87 1.92 1.93 3.01 2.74.23 0-.37.27-.4.36zm.94.37c-.04.45-.69.35-.1.08l.1-.08zm-6.16-15.96c.13-.28.18-.8.36-.93.5.4.78 1 1.16 1.51a31.9 31.9 0 0 1 4.7 10.7c.28 1.53.48 3.17-.06 4.68-.28-.15-.76-.21-.92-.42.5-1.62.15-3.34-.22-4.95a32.58 32.58 0 0 0-5.27-10.77l.25.18zm.32-.97zm-4.45-6.67c.32 0 .78-.2 1.02-.09.26 1.68.36 3.45 1.11 5a3.71 3.71 0 0 0 2.31 1.76c-.13.3-.17.79-.36.95a4.64 4.64 0 0 1-3.06-2.7c-.62-1.56-.76-3.27-1.02-4.92zm-1.71 1.76c-.32-.05-.8.06-1.01-.08.01-1.4 1.12-2.86 2.59-2.87.57 0 1.08.48 1.14 1.05-.33 0-.76.18-1.02.09-.15-.26-.56-.04-.76.07-.6.36-.94 1.05-.94 1.74zm.28 5.62c-.32.04-.75.28-1 .2-.53-1.9-.34-3.9-.3-5.84.32.05.8-.06 1.02.08-.04 1.86-.24 3.74.28 5.56zm-1.1 1.96c-.13.26-.28.82-.39.9.03-.3-.27-.73.01-.93.49-.4.7-1.08.5-1.68.31-.04.75-.28 1-.2a2.61 2.61 0 0 1-1 2.78l-.12-.87zm-.38.95c-.19-.16-1.03-.21-.62-.47.3-.3.6-.55.56.06l.06.41zm5.13 8.58h.96c-.29-.08-.87.13-.95-.14.06-2 .03-4.22-1.25-5.88-.98-1.25-2.45-1.97-3.89-2.56.16-.28.22-.77.43-.92 1.98.78 4.01 1.95 4.94 3.97.82 1.72.84 3.69.77 5.56l-1-.03zm1.01 0h-1c.2-.35.4-.63.72-.2l.28.2zm-1 0c-.27-.39.62-.68.18-.25l-.19.25z'/%3e%3cpath d='M368.78 218.51c-.42 1-.54 1.84-.64 3.37a4.77 4.77 0 0 0 1.09 3.23 10.3 10.3 0 0 0 3 2.52c.75.43 1.6 1.63 2.27 2.98a10.6 10.6 0 0 1 1.19 3.96c.1 3.58.79 6.7 2.42 7.32 1.06.4 1.49.34 2.31.15-.23-.64-.14-1.55-.72-2.45-.73-1.15-1.38-2.48-1.44-3.64-.05-.9-.48-1.51-.13-3.3.23-1.15.98-1.59.84-2.65-.25-2.06-1.87-6.02-4.24-6.02-2.35 0-3.44-.25-4.65-3.37-.41-1.06-.95-1.57-1.3-2.1z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M368.64 221.91c-.31-.06-.8.03-1-.12.07-1.18.2-2.38.67-3.48.28.16.76.24.91.45-.42 1-.52 2.08-.58 3.15zm.99 2.88c-.28.17-.58.55-.84.58a5.27 5.27 0 0 1-1.16-3.53c.31.06.8-.02 1 .13a4.32 4.32 0 0 0 1 2.82zm2.86 2.4c-.2.26-.33.73-.56.85a10.74 10.74 0 0 1-3.1-2.62c.27-.17.57-.55.83-.58a9.84 9.84 0 0 0 2.83 2.35zm2.46 3.2c-.3.1-.67.42-.93.4-.53-1-1.1-2.06-2.04-2.72.2-.26.33-.73.56-.85 1.1.76 1.8 2 2.41 3.16zm1.24 4.16c-.31-.03-.78.1-1-.03-.1-1.3-.59-2.52-1.14-3.68.3-.1.67-.43.93-.4a10.96 10.96 0 0 1 1.21 4.11zm2.1 6.86c-.15.29-.21.78-.41.93-1.3-.56-1.82-2.01-2.16-3.28a21 21 0 0 1-.54-4.48c.32.03.8-.1 1.02.03.08 1.96.2 4 1.09 5.78.23.42.53.84 1 1.02zm1.66.8c.28-.07.78-.34.92-.3-.18.27-.23.72-.64.7-.77.2-1.58.06-2.3-.24.15-.29.2-.77.4-.93a2.8 2.8 0 0 0 1.98.1l-.36.67zm.95-.34c.19.36.27.67-.25.64-.27.13.25-.56.25-.64zm-1.62-2 .85-.55c.52.75.54 1.69.77 2.55-.31.07-.72.34-.97.29-.24-.76-.2-1.61-.65-2.3zm-1.53-3.9 1.01-.05c.1 1.24.72 2.36 1.37 3.4-.29.14-.62.5-.88.5a8.57 8.57 0 0 1-1.5-3.85zm1.01-.05zm-1.12-3.36c.3.1.79.07.98.25-.21.9-.1 1.84.1 2.73.2.47-.26.4-.59.41-.37.13-.42-.08-.43-.4-.24-.98-.28-2-.06-3zm.83-2.5c.32 0 .78-.17 1.01-.07.17 1.03-.66 1.81-.85 2.76-.3-.1-.8-.07-.98-.25.1-.78.72-1.39.83-2.16v-.28zm-3.75-5.57c.04-.32-.07-.8.06-1.02 1.54.05 2.65 1.35 3.35 2.59a11.2 11.2 0 0 1 1.34 3.88c-.32 0-.77.17-1 .07a9.29 9.29 0 0 0-2.12-4.7c-.43-.44-.99-.82-1.63-.82zm-5.11-3.7.94-.37c.45 1.1.96 2.4 2.16 2.83.65.22 1.34.21 2.01.22-.03.32.08.8-.05 1.02-1.27.02-2.7-.12-3.6-1.13a7.9 7.9 0 0 1-1.46-2.57zm-.36-2.08c-.26-.13-.81-.3-.88-.4.31.04.78-.26.95.1.49.62.96 1.27 1.23 2.01-.31.08-.7.37-.96.32-.27-.73-.79-1.32-1.23-1.95l.89-.08zm-.94-.4c.15-.2.25-.9.43-.78.06.23.72.75.23.72l-.66.06zm.47.2zm-.47-.2c.15-.2.25-.9.43-.78.06.23.72.75.23.72l-.66.06z'/%3e%3cpath d='M359.96 227.08c.64-.5 1.4-.85 2.13-1.14a5.77 5.77 0 0 1 3.81-.17c5.61 1.7 8.07 11.67 1.92 14.07-1.21.15-2.33-.95-3.42-3.36-1.28-3.18-2.64-5.4-4.1-6.74-.9-1.13-.93-2.09-.34-2.66z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m361.91 225.47.37.95c-.7.28-1.4.6-2 1.06l-.62-.8c.67-.53 1.46-.9 2.25-1.21zm4.14-.18-.3.97a5.28 5.28 0 0 0-3.47.16l-.37-.95a6.3 6.3 0 0 1 4.14-.18zm1.84 15.05-.13-1c-.28.06.33-.16.42-.22a4.95 4.95 0 0 0 2.54-3.3 8.73 8.73 0 0 0-1.19-6.43 6.98 6.98 0 0 0-3.77-3.13l.29-.97a8.26 8.26 0 0 1 4.73 4.25 9.4 9.4 0 0 1 .77 7.06 5.88 5.88 0 0 1-3.31 3.61c-.12.05-.23.11-.35.13zm.12-.03zm-4.07-3.64c.3-.13.68-.24.93-.4.48 1.02 1 2.1 1.91 2.79.29.2.64.32.98.27l.13 1.01c-1.1.15-2.07-.6-2.69-1.45-.51-.68-.91-1.44-1.26-2.22zm0 .03zm-4.03-6.65.79-.63.38.37c1.73 1.85 2.84 4.18 3.8 6.5l-.94.38c-.9-2.2-1.96-4.41-3.6-6.18-.13-.15-.3-.29-.43-.44zm.05.06zm0-3.54v1.02c.2-.08.46-.23.21.03-.28.6.13 1.26.48 1.74.07.18-.34.3-.45.46-.2.22-.37.28-.49-.03-.55-.75-.91-1.83-.4-2.7a.99.99 0 0 1 .65-.52zm-.35.14c.16-.23.53-.13.1-.03-.04 0-.07.02-.1.03zm.35.88v-1.02l.31.91-.3.11zm.31-.1z'/%3e%3cpath d='M362.79 227.74c5.4-2.1 9.36 8.23 4.32 10.19-2.7 1.05-2.96-2.33-3.49-4.21-.7-2.54-6-3.96-.83-5.98z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m367.29 238.4-.37-.95c.8-.3 1.46-.97 1.73-1.78a5.82 5.82 0 0 0-.15-3.86 6.35 6.35 0 0 0-2.5-3.32 3.3 3.3 0 0 0-2.91-.32c-.21.13-.18-.24-.28-.36l-.2-.55c.81-.3 1.72-.4 2.57-.2a5.72 5.72 0 0 1 3.3 2.47 8.1 8.1 0 0 1 1.4 5.33 4.34 4.34 0 0 1-1.54 2.93c-.31.26-.68.45-1.05.61zm-4.16-4.55.98-.27c.32 1.14.44 2.36 1.05 3.4.23.4.68.7 1.16.63.2-.02.4-.09.6-.16l.37.95c-.74.3-1.65.36-2.31-.15-.82-.6-1.14-1.62-1.4-2.55-.16-.61-.28-1.24-.45-1.85zm-.53-6.59.37.95c-.65.28-1.36.53-1.83 1.08-.24.32.06.69.26.94.88.99 2.05 1.76 2.59 3.01.07.18.2.4-.09.4l-.77.21c-.3-.9-1.06-1.52-1.72-2.16-.56-.56-1.24-1.14-1.36-1.98-.09-.68.38-1.27.92-1.62.5-.35 1.07-.6 1.63-.83z'/%3e%3cpath d='M363.35 229.27c2.63-1.02 6.24 5.14 2.95 6.54-2.22.94-3.98-.3-4.7-2.16-.7-1.86-.1-3.66 1.75-4.38z' fill='%230c4076'/%3e%3cpath fill='%2321231e' d='m366.5 236.28-.4-.94c.47-.19.84-.59.95-1.08a3.67 3.67 0 0 0-.46-2.41 4.55 4.55 0 0 0-1.93-2.02 1.46 1.46 0 0 0-1.12-.08l-.37-.95a2.42 2.42 0 0 1 1.82.07c.93.4 1.67 1.17 2.2 2.01.57.9.97 1.95.93 3.02a2.63 2.63 0 0 1-1.62 2.38zm-5.36-2.44.94-.37a3.26 3.26 0 0 0 2.03 2.06c.66.2 1.37.08 2-.19l.39.94c-.96.42-2.1.51-3.08.08a4.39 4.39 0 0 1-2.28-2.52zm2.03-5.04.37.95c-.75.28-1.4.89-1.61 1.68-.2.67-.1 1.4.15 2.04l-.94.37a4.05 4.05 0 0 1 .1-3.4 3.66 3.66 0 0 1 1.93-1.64zm.18.47-.18-.47.18.47z'/%3e%3cpath d='M400.08 179.66a6.4 6.4 0 0 1 6.37 6.41 6.4 6.4 0 0 1-6.37 6.42c-3.52 0-6.37-2.87-6.37-6.42s2.85-6.41 6.37-6.41z' fill='%23FFF'/%3e%3cpath d='M406.95 186.07h-1.01a5.93 5.93 0 0 0-5.86-5.9v-1.02a6.88 6.88 0 0 1 6.87 6.92zm-6.87 6.92v-1.02a5.87 5.87 0 0 0 5.86-5.9h1.01a6.96 6.96 0 0 1-3.26 5.89 6.85 6.85 0 0 1-3.61 1.03zm-6.88-6.92h1.02a5.93 5.93 0 0 0 5.86 5.9V193a6.88 6.88 0 0 1-6.88-6.92zm6.88-6.92v1.01a5.87 5.87 0 0 0-5.86 5.9h-1.02a6.96 6.96 0 0 1 3.26-5.88 6.85 6.85 0 0 1 3.62-1.04z' fill='%2321231e'/%3e%3cpath d='M395.43 169a6.4 6.4 0 0 1 6.37 6.42 6.4 6.4 0 0 1-6.37 6.41 6.4 6.4 0 0 1-6.37-6.41 6.4 6.4 0 0 1 6.37-6.42z' fill='%23FFF'/%3e%3cpath d='M402.31 175.42h-1.01a5.93 5.93 0 0 0-5.86-5.9v-1.03a6.88 6.88 0 0 1 6.87 6.93zm-6.87 6.92v-1.01a5.87 5.87 0 0 0 5.86-5.91h1.01a6.96 6.96 0 0 1-3.26 5.89 6.85 6.85 0 0 1-3.61 1.04zm-6.88-6.92h1.02a5.93 5.93 0 0 0 5.86 5.9v1.02a6.88 6.88 0 0 1-6.88-6.92zm6.88-6.93v1.02a5.87 5.87 0 0 0-5.86 5.91h-1.02a6.96 6.96 0 0 1 3.26-5.9 6.85 6.85 0 0 1 3.62-1.03z' fill='%2321231e'/%3e%3cpath d='M410.68 131.46c3.4 0 6.14 2.77 6.14 6.19s-2.75 6.18-6.14 6.18c-3.39 0-6.14-2.77-6.14-6.18s2.75-6.19 6.14-6.19z' fill='%23FFF'/%3e%3cpath d='M417.32 137.65h-1.01a5.7 5.7 0 0 0-5.64-5.68v-1.01a6.65 6.65 0 0 1 6.65 6.69zm-6.65 6.7v-1.02a5.64 5.64 0 0 0 5.64-5.68h1.01a6.72 6.72 0 0 1-3.15 5.7 6.6 6.6 0 0 1-3.5 1zm-6.64-6.7h1a5.7 5.7 0 0 0 5.64 5.68v1.02a6.65 6.65 0 0 1-6.64-6.7zm6.64-6.7v1.02a5.64 5.64 0 0 0-5.63 5.68h-1.01a6.72 6.72 0 0 1 3.12-5.67 6.6 6.6 0 0 1 3.52-1.03z' fill='%2321231e'/%3e%3cpath d='M400.36 136.18a6.4 6.4 0 0 1 6.37 6.41 6.4 6.4 0 0 1-6.37 6.42 6.4 6.4 0 0 1-6.37-6.42 6.4 6.4 0 0 1 6.37-6.41z' fill='%23FFF'/%3e%3cpath d='M407.23 142.59h-1.01a5.93 5.93 0 0 0-5.86-5.9v-1.02a6.88 6.88 0 0 1 6.87 6.92zm-6.87 6.93v-1.02a5.87 5.87 0 0 0 5.86-5.91h1.01a6.96 6.96 0 0 1-3.26 5.9 6.85 6.85 0 0 1-3.61 1.03zm-6.88-6.93h1.02a5.93 5.93 0 0 0 5.86 5.9v1.03a6.88 6.88 0 0 1-6.88-6.93zm6.88-6.92v1.01a5.87 5.87 0 0 0-5.86 5.91h-1.02a6.96 6.96 0 0 1 3.26-5.89 6.85 6.85 0 0 1 3.62-1.04z' fill='%2321231e'/%3e%3cpath d='M392.77 145.25a6.4 6.4 0 0 1 6.37 6.42 6.4 6.4 0 0 1-6.37 6.41 6.4 6.4 0 0 1-6.37-6.41 6.4 6.4 0 0 1 6.37-6.42z' fill='%23FFF'/%3e%3cpath d='M399.64 151.66h-1.01a5.93 5.93 0 0 0-5.86-5.9v-1.03a6.88 6.88 0 0 1 6.87 6.93zm-6.87 6.92v-1.01a5.87 5.87 0 0 0 5.86-5.9h1a6.96 6.96 0 0 1-3.25 5.88 6.85 6.85 0 0 1-3.61 1.04zm-6.88-6.92h1.02a5.93 5.93 0 0 0 5.86 5.9v1.02a6.88 6.88 0 0 1-6.88-6.92zm6.88-6.93v1.02a5.87 5.87 0 0 0-5.86 5.91h-1.02a6.96 6.96 0 0 1 3.26-5.9 6.85 6.85 0 0 1 3.62-1.03z' fill='%2321231e'/%3e%3cpath d='M391.54 156.66c3.52 0 6.37 2.87 6.37 6.41s-2.85 6.42-6.37 6.42-6.37-2.87-6.37-6.42 2.85-6.41 6.37-6.41z' fill='%23FFF'/%3e%3cpath d='M398.41 163.08h-1.01a5.93 5.93 0 0 0-5.86-5.9v-1.02a6.88 6.88 0 0 1 6.87 6.92zm-6.87 6.92v-1a5.87 5.87 0 0 0 5.86-5.91h1.01a6.95 6.95 0 0 1-6.87 6.92zm-6.88-6.92h1.02a5.93 5.93 0 0 0 5.86 5.9V170a6.88 6.88 0 0 1-6.88-6.92zm6.88-6.92v1.01a5.87 5.87 0 0 0-5.86 5.91h-1.02a6.96 6.96 0 0 1 3.26-5.89 6.85 6.85 0 0 1 3.62-1.04z' fill='%2321231e'/%3e%3cpath d='M474.41 198.02c-2.7-5.03-5.57-8.25-8.6-9.65 4.18-13.16 5.16-30.15 2.7-51.1-.24-3.13-1.01-4.47-2.2-4.45-1.05.02-1.68 1.61-1.79 5.22.76 11.52 1.7 21.6 1.17 30.16-.47 7.65-2.26 14-4.24 21.16-.27 1 .44 1.77 3.87 3.71 2.54 1.44 4.14 3.22 4.67 5.07.74-.3 1.2-.2 1.47-.13 2.55.74 3.62.54 2.95 0v.01z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M465.33 188.22c1.38.84.31-.67 1.29-.01 3.76 2.12 6.2 5.88 8.23 9.57-.87.9-1.2.01-1.6-.78-1.9-3.21-4.2-6.49-7.65-8.16l-.27-.62zm.27.62zm2.41-51.52c1.13-.45 1.14.35 1.16 1.26 1.57 14.52 1.95 29.38-1.2 43.72a75.51 75.51 0 0 1-1.68 6.23c-1.23-.01-.86-.85-.54-1.68 3.9-13.53 4.09-27.82 3.03-41.78-.21-2.58-.47-5.17-.77-7.75zm0 .02zm-1.7-4c-.2-.77.05-1.33.83-.85 1.6.96 1.67 3.1 1.88 4.75-1.08.41-1.13-.34-1.16-1.22-.22-.9-.36-2.58-1.55-2.69zm-1.29 4.67c-1.02.36-1.15-.23-.95-1.1.17-1.51.17-3.41 1.52-4.4.74-.6.86.3.67.82-.93.47-.9 1.8-1.1 2.7-.08.6-.12 1.52-.14 1.98zm-1 .07zm2.17 30.16c-1.23.3-1.02-.67-.93-1.55.33-9.55-.66-19.09-1.25-28.61 1.2-.46 1.1.53 1.11 1.41.6 9.57 1.6 19.16 1.07 28.75zm-4.25 21.26c-1.2.03-.9-.78-.6-1.6 1.8-6.46 3.47-13 3.84-19.72 1.2-.3 1.05.6.91 1.46-.53 6.77-2.34 13.34-4.15 19.86zm3.63 3.13c-.24 1.06-.83.86-1.52.3-1.2-.83-3-1.55-3.16-3.2-.25-.79 1.26-.46 1.03.14.76 1.34 2.4 1.95 3.65 2.76zm0 0zm4.23 5.04c.77 1.02-.16 1.12-.45.18-.78-1.94-2.51-3.31-4.28-4.33.25-1.07.88-.83 1.55-.24 1.7 1.15 3.26 2.71 3.85 4.73l-.67-.34zm.37.95zm1.43-1.1c-.19.39-.06 1.17-.66.93-.38-.06-.89.42-.92-.21-.56-.66.24-.76.76-.8.27-.02.56 0 .82.09zm3.31.5c-1.5.4-.52-.77.11-.06.42.92-.86 1.21-1.52 1.02-.74-.09-1.47-.27-2.18-.47 0-1.1.65-.98 1.46-.68.45.1 1.14.18 1.47.15-.58 1.02.29.09.66.04zm-1 0c-.64-1.45 1.17-.7.44-.22l-.45.22zm0 0c1.32-.2.8.3.02.11l-.03-.1z'/%3e%3cpath d='M458.4 214.56c1.56-.99 1.87-.72 2.37-1.37.65-.83.66-2.2.46-3.5-.82-5.3 2.33-4.56 5.88-2.22 1.77 1.17 3.56 3.88 5.08 5.3 1.53 1.41 2.79 1.54 3.17 2.1.05 2.02.06 3.78.04 4.57.02.8 0 2.55-.04 4.57-.38.56-1.64.68-3.17 2.1-1.52 1.42-3.3 4.13-5.08 5.3-3.55 2.33-6.7 3.07-5.88-2.21.2-1.31.2-2.68-.46-3.51-.5-.65-.8-.39-2.37-1.37a6.96 6.96 0 0 1-2.28-2.25c-.51-.83-.24-1.73-.24-2.63 0-.9-.27-1.8.24-2.64.5-.83 1.26-1.6 2.28-2.24z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M460.37 212.87c1.19.43.47 1.23-.4 1.44-.7.32-1.65 1.06-1.79-.22.67-.52 1.58-.65 2.19-1.22zm.35-3.12c1.66-.73 1.09 1.77.96 2.69-.04.98-.97 1.26-1.22.3.51-.9.39-2 .26-2.99zm6.66-2.71c-.62 1.8-2.14-.6-3.31-.6-1.4-.85-2.82.38-2.47 1.87.22.82.12 1.75-.9 1.33-.2-1.46-.34-3.47 1.2-4.26 1.7-.62 3.4.43 4.84 1.25l.64.4zm5.15 5.35c-.83 1.6-1.77-.63-2.5-1.23-.98-1.17-1.95-2.38-3.2-3.27.56-1.72 1.84.37 2.55.95 1.07 1.17 2 2.45 3.15 3.55zm3.33 2.46c-.45-.08-1.04.08-1.06.2-.97-.6-2.08-1.02-2.87-1.85.46-1.56 1.54.22 2.43.43.52.34 1.35.53 1.5 1.22zm-.09-.28zm.13 4.86c-1.77.46-.73-1.92-1.02-2.9-.1-.87-.2-2.19.98-1.57.04 1.49.05 2.98.04 4.47zm-1.01 0zm0 0c.62 0 1.16.01.21.01h-.21zm0 .02v-.01zm.88 4.85c-.31-.46-1.06-.39-.91-.6.02-1.41.04-2.83.03-4.25 1.79-.48.75 1.96 1 2.95-.04.63.04 1.29-.12 1.9zm.09-.28zm-3.33 2.46c-1.49-.92.64-1.7 1.41-2.18.5-.59 1.72-.61 1.7.13-.94.82-2.25 1.08-3.11 2.05zm-5.15 5.35c-1.29-1.1.9-1.69 1.37-2.62 1.04-1.15 1.96-2.41 3.1-3.48 1.47.92-.72 1.83-1.15 2.77-1.01 1.2-2.02 2.43-3.32 3.33zm-6.66-2.72c1.64-.23.57 1.55.95 2.47.15 1.32 1.71 1.25 2.61.76.91-.22 1.9-1.17 2.6-1.23 1.15.93-.73 1.33-1.35 1.8-1.17.57-2.7 1.17-3.92.42-1.3-.98-1.07-2.8-.89-4.22zm-.35-3.11c1.18-1.53 1.58 1.17 1.47 2.07.35.94-.64 1.66-1.09.8.1-.96.2-2.04-.38-2.87zm-2.24-1.26c.39-1.5 1.66-.09 2.55.18 1.04.44-.5 1.52-.9.66-.59-.2-1.13-.5-1.65-.84zm.53-.86zm-2.98-1.55c1.1-1.22 1.55.88 2.54 1.25.94.27-.28 1.73-.78.68a7.12 7.12 0 0 1-1.76-1.93zm-.3-2.9c1.71-.47.51 1.54 1.16 2.37-1.1 1.23-1.4-.64-1.22-1.51l.05-.86zm.3-2.9c1.42.37.3 1.87.7 2.9-1.52.47-1.09-1.53-.93-2.42.06-.16.13-.33.23-.48zm2.44-2.4c1.2 1-.58 1.42-1.06 2.22-.2.83-1.19.73-1.28.01a7.59 7.59 0 0 1 2.34-2.24zm.54.86z'/%3e%3cpath d='m475.52 220.24-.13.89a17.42 17.42 0 0 0-9.56 4.35c1.8-2.66 5.63-4.65 9.69-5.24zm0-1.6-.13-.89a17.43 17.43 0 0 1-9.56-4.35c1.8 2.66 5.63 4.65 9.69 5.24z' fill='%2321231e'/%3e%3cpath d='M461.16 207.28c1.14.47 2.38.97 3.44 2 1.6 1.55.56 4.12-1.5 6.62-.66.78-.97 2.17-.97 3.56 0 1.38.33 2.76.96 3.52 2.07 2.5 3.1 5.07 1.5 6.63-1.04 1.02-2.29 1.52-3.43 1.99-.1-.6-.1-1.39.06-2.4.2-1.31.2-2.68-.45-3.51-.5-.65-.81-.38-2.38-1.37a7 7 0 0 1-2.28-2.24c-.5-.84-.23-1.74-.23-2.64 0-.9-.28-1.8.23-2.63.5-.84 1.27-1.6 2.28-2.25 1.57-.98 1.87-.72 2.38-1.37.65-.83.65-2.2.45-3.5a7.44 7.44 0 0 1-.06-2.41z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m464.95 208.9-.7.73a9.7 9.7 0 0 0-3.28-1.89l.38-.94c1.3.52 2.6 1.11 3.6 2.1zm-1.47 7.32-.77-.66c.98-1.23 1.98-2.6 2.16-4.2a2.09 2.09 0 0 0-.62-1.73l.7-.73c.99.9 1.13 2.4.71 3.62a11.37 11.37 0 0 1-2.18 3.7zm-.84 3.23h-1.01c.01-1.35.22-2.8 1.08-3.89l.77.66c-.68.9-.82 2.13-.84 3.23zm.84 3.2-.77.65c-.85-1.08-1.06-2.51-1.08-3.85h1c.03 1.1.18 2.3.85 3.2zm1.47 7.32-.7-.74c.84-.77.7-2.05.3-3a11.48 11.48 0 0 0-1.84-2.93l.77-.65c1.15 1.42 2.27 3.03 2.4 4.9.05.9-.28 1.8-.93 2.42zm-4.28 1.72 1-.19c-.14-.15-.9-.33-.54-.44a9.27 9.27 0 0 0 3.12-1.83l.7.74c-1 .99-2.3 1.58-3.6 2.1l-.68-.38zm.68.37c-.31.14-.7.41-.64-.14-.17-.49.42.1.64.14zm-.63-2.95 1 .16c-.1.74-.18 1.5-.06 2.23l-1 .19a8.25 8.25 0 0 1 .06-2.58zm-.35-3.11.8-.63c.82 1.11.74 2.6.55 3.9l-1-.16c.14-1.02.27-2.22-.35-3.11zm-2.24-1.26.53-.86c.64.45 1.4.67 2.07 1.06.16.15.63.4.26.57-.23.08-.51.63-.72.37-.48-.38-1.12-.5-1.64-.83l-.5-.3zm0 0-.08-.05c-.06 0 .11.05.08.05zm-2.45-2.4.86-.54a6.53 6.53 0 0 0 2.12 2.08l-.53.86a7.52 7.52 0 0 1-2.45-2.4zm0 0c.18.3.43.71.1.18l-.1-.18zm-.3-2.9h1c.03.78-.27 1.64.16 2.36l-.86.53c-.57-.87-.34-1.93-.3-2.9zm.3-2.9.86.53c-.42.72-.14 1.58-.16 2.36h-1c-.03-.97-.27-2.02.3-2.9zm2.45-2.42.53.87a6.53 6.53 0 0 0-2.12 2.07l-.86-.53a7.5 7.5 0 0 1 2.45-2.4zm2.24-1.25.8.63c-.53.73-1.51.8-2.21 1.3-.34.39-.46-.12-.65-.38-.38-.32.07-.45.34-.6.5-.35 1.14-.46 1.62-.83l.1-.12zm.35-3.12 1-.15c.19 1.3.27 2.78-.55 3.9l-.8-.63c.62-.9.49-2.1.35-3.12zm.44-1.97v-1.02c.16.29.6.5.46.86-.06.66 0 1.33.1 1.98l-1 .15a8.22 8.22 0 0 1-.05-2.57l.5.6zm0-1.02c.4-.03.77-.05.53.44.03.45-.41-.4-.53-.44zm0 0v1.02c-.4-.03 0-.58-.03-.85l.03-.17zM361 226.26l.68-.3c-1.54-2.14-1.88-4.2-1.29-6.26-1.3 1.64-.99 4.21.61 6.56z'/%3e%3cpath d='M410.74 199.91c1.33 1.69 1.17 2.09 1.89 2.57.94.63 2.22.41 3.4-.04 4.86-1.86 4.86 2 3.45 6.43-.68 2.14-2.76 4.47-3.68 6.3-.91 1.78-.71 3.12-1.12 3.57-1.76.3-3.28.51-3.97.59-.67.1-2.18.3-3.9.49-.57-.32-1.01-1.6-2.62-2.99-1.61-1.4-4.4-2.92-5.9-4.63-3.05-3.47-4.66-6.81.12-6.7 1.2.04 2.38-.18 2.92-1.04.42-.67.1-.97.51-2.93.27-1.28.74-2.3 1.35-3.04.61-.75 1.5-.58 2.33-.74.83-.15 1.59-.64 2.5-.18a8.35 8.35 0 0 1 2.72 2.34z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M412.91 202.06c-.24.18-.37.97-.7.75-.74-.6-1.01-1.58-1.64-2.29-.5-.37.25-.58.49-.86.27-.03.47.55.7.77.41.52.6 1.24 1.15 1.63zm-.56.85zm3.5-.95c.02.34.62.94.12 1.04-1.15.42-2.54.62-3.62-.09.25-.2.37-.92.7-.77.88.45 1.93.14 2.8-.18zm4.11 7.06c-.28-.2-1.14-.1-.88-.58.45-1.6.98-3.32.55-4.98-.2-.85-1.17-1.12-1.93-.95-.51.07-1 .23-1.49.4-.02-.34-.64-.96-.1-1.04 1.23-.45 2.84-.75 3.88.26 1.06 1.17.87 2.9.63 4.33-.16.87-.4 1.72-.66 2.56zm-3.7 6.38c-.25-.25-1.12-.29-.78-.71 1.11-2.03 2.75-3.77 3.52-5.98.26.2 1.09.1.89.53-.83 2.26-2.52 4.06-3.64 6.16zm-1.5 3.85c-.14-.27.05-1.23-.4-.87-.06-.02.14-.47.13-.66.16-.96.4-1.92.86-2.79.23.24 1.07.28.8.68-.51.98-.56 2.1-.88 3.12a.84.84 0 0 1-.5.52zm.3-.16zm-4.34.75c.07-.31-.13-1.01.08-1.03 1.27-.16 2.54-.36 3.8-.56-.05.32.41 1.02-.07 1.04-1.27.2-2.54.41-3.81.55zm.05 0zm.02 0-.11-.73c.06.7.02-.76.04-.08v.6c-.03-.68.02-.01.07.2zm-.16-1.01zm-4.07 1.43c.05-.3.8-.92.22-.94.29-.05.83-.1 1.21-.15.89-.1 1.77-.2 2.64-.34-.05.32.4 1-.05 1.04-1.26.17-2.53.36-3.79.44l-.23-.05zm.3.07zm-3-3.11c.28-.15.51-.97.82-.64.92.78 1.55 1.82 2.3 2.74.07.22-.31.81-.48.9-.8-.63-1.2-1.62-1.94-2.33a8.93 8.93 0 0 0-.7-.67zm-5.95-4.68c.31-.14.66-.92.94-.47 1.68 1.72 3.85 2.83 5.67 4.38-.29.17-.52 1-.86.6-1.89-1.54-4.1-2.69-5.75-4.51zm.52-7.54c-.12.3.21 1.06-.24 1.02-.75.03-1.72 0-2.2.7-.3.9.3 1.8.73 2.58.56.91 1.25 1.75 1.95 2.57-.31.13-.67.93-.94.46-1.17-1.42-2.44-2.9-2.81-4.74a2.02 2.02 0 0 1 1.45-2.35 6.17 6.17 0 0 1 2.06-.24zm2.47-.81c.19.25 1.01.38.75.7-.75.98-2.1 1.16-3.25 1.13.11-.31-.2-1.05.24-1.02.79-.02 1.78-.09 2.26-.81zm0 0zm.45-2.76c.26.17 1.04 0 .96.39-.24.85-.1 1.77-.39 2.6-.1.57-.52.04-.8-.1-.4-.12.07-.5-.04-.8.04-.7.12-1.4.27-2.09zm1.45-3.26c.16.26.88.47.69.77-.6.79-.94 1.74-1.15 2.7-.28-.17-1.12.02-.93-.46a7.43 7.43 0 0 1 1.39-3.01zm.78.65.34-.42-.34.42zm1.85-1.56c-.05.3.4.94.03 1.02-.64.12-1.42-.02-1.88.53-.17-.27-.98-.5-.63-.81.65-.69 1.63-.63 2.48-.74zm.19 1-.35.06.35-.06zm2.64-1.14c-.23.23-.26 1.02-.64.83-.68-.21-1.34.2-2 .3.04-.34-.46-1.03.08-1.06.83-.26 1.74-.53 2.56-.07zm2.99 2.8c-.3.09-1.2-.25-.92.25-.11-.07-.46-.54-.7-.75a7.14 7.14 0 0 0-1.83-1.4c.23-.22.27-1.04.65-.8 1.06.6 2 1.45 2.71 2.44l.09.25zm-.11-.33zm-.9.32c.2.03 1.14-.06.88.05-.34.02-.85.55-.88-.05zm.1.32z'/%3e%3cpath d='m410.05 219.43-.8-.03a23.54 23.54 0 0 0-6.3-9.54c2.82 1.57 5.56 5.42 7.1 9.57zm1.38-.19.74-.24c-.5-4 .07-7.54 1.54-10.88-1.96 2.37-2.76 6.8-2.28 11.12z' fill='%2321231e'/%3e%3cpath d='M418.3 201.97c-.18 1.42-.37 2.95-1.07 4.32-1.07 2.05-3.69 1.26-6.48-.7a4.82 4.82 0 0 0-3.48-.54c-1.24.22-2.38.79-2.88 1.61-1.6 2.64-3.51 4.12-5.31 2.61-1.2-1-2-2.29-2.75-3.47a5.03 5.03 0 0 1 2.09-.3c1.19.04 2.38-.18 2.91-1.04.43-.67.11-.97.52-2.92.27-1.29.74-2.31 1.34-3.05.62-.75 1.51-.58 2.34-.73.83-.16 1.59-.65 2.5-.19a8.35 8.35 0 0 1 2.72 2.34c1.32 1.68 1.16 2.09 1.89 2.58.94.62 2.21.4 3.4-.05a5.9 5.9 0 0 1 2.26-.47z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m417.68 206.53-.9-.47c.67-1.28.84-2.74 1.02-4.15l1 .13c-.18 1.53-.4 3.1-1.12 4.49zm-7.22-.52.58-.83c1.25.84 2.6 1.72 4.15 1.81.66.05 1.32-.32 1.6-.93l.89.47a2.68 2.68 0 0 1-2.7 1.47c-1.67-.15-3.17-1.06-4.52-1.99zm-3.1-.45-.18-1a5.3 5.3 0 0 1 3.86.62l-.58.83c-.9-.6-2.07-.62-3.1-.45zm-2.54 1.37-.86-.53c.7-1.1 2-1.62 3.22-1.85l.18 1c-.94.19-1.98.55-2.54 1.38zm-6.06 2.74.65-.78c.58.57 1.53.63 2.2.17a7.84 7.84 0 0 0 2.35-2.66l.86.53c-.83 1.33-1.83 2.74-3.36 3.31-.93.35-1.97.08-2.7-.57zm-2.63-4.33.4.93c.11-.16.14-.95.33-.58.73 1.15 1.49 2.31 2.55 3.2l-.65.78a14.78 14.78 0 0 1-2.86-3.6l.23-.73zm-.23.74c-.18-.28-.5-.6.03-.66.41-.26-.02.44-.02.64v.02zm2.53-1.08-.02 1.02c-.63 0-1.29 0-1.88.25l-.4-.94c.72-.3 1.53-.34 2.3-.33zm2.48-.8c.29.17.57.37.86.54-.7 1.09-2.1 1.3-3.3 1.28-.15-.17 0-.63-.04-.92.1-.22.61-.04.88-.13.59-.07 1.26-.24 1.6-.78zm0 0zm.45-2.76.99.21c-.22.83-.18 1.7-.33 2.53-.09.19-.17.73-.44.45-.17-.21-.8-.3-.58-.6.18-.7.1-1.46.28-2.17l.08-.42zm1.45-3.27.78.65a6.66 6.66 0 0 0-1.24 2.83l-.99-.21a7.62 7.62 0 0 1 1.45-3.27zm0 0c.21-.27.5-.6.11-.14l-.11.14zm2.63-.91.18 1c-.67.16-1.53-.04-2.03.56l-.78-.65c.57-.75 1.56-.82 2.42-.88.07 0 .14-.02.2-.03zm0 0c.26-.05.89-.17.29-.05l-.3.05zm2.82-.14-.45.91c-.72-.37-1.47.12-2.19.23l-.18-1c.86-.21 1.79-.62 2.66-.21l.16.07zm-.45.91zm3.34 1.57-.8.63a7.92 7.92 0 0 0-2.54-2.2l.45-.9a8.91 8.91 0 0 1 2.89 2.47zm1.77 2.47-.56.85c-.8-.53-1.06-1.51-1.65-2.22-.15-.24-.55-.5-.1-.67.25-.15.55-.65.72-.19.52.63.87 1.37 1.34 2.03.07.07.17.15.25.2zm-.56.85zm3.5-.96.36.96c-1.21.46-2.7.75-3.86 0l.56-.86c.9.56 2.03.24 2.94-.1zm2.95.08-1-.13c.09.2.74.66.22.58-.62.03-1.23.2-1.81.43l-.36-.96c.79-.29 1.62-.53 2.47-.5.15.2.32.4.48.58zm-.48-.57c.38-.04.68 0 .5.45.02.33-.4-.4-.5-.45z'/%3e%3cpath d='M391.76 221.18c.77-.94 1.08-.73 1.22-1.32.18-.77-.27-1.97-.85-3.1-2.33-4.58.15-4.2 3.51-2.4.86.47 1.84 1.28 2.83 2.11.99.85 1.97 1.73 2.8 2.32 1.66 1.2 2.7 1.24 3.18 1.72a141.54 141.54 0 0 1 1.6 4.2c.3.72.89 2.32 1.55 4.17-.1.52-1.07.66-1.78 1.98-.7 1.3-1.26 3.66-2.12 4.8-1.27 1.66-2.42 2.65-3.32 2.49-.9-.16-1.54-1.48-1.78-4.38a5.08 5.08 0 0 0-1.48-3.03c-.58-.55-.71-.32-2.15-1.13a9.26 9.26 0 0 1-2.34-1.87c-.63-.7-.72-1.47-1.02-2.24-.29-.78-.77-1.54-.7-2.27a3.8 3.8 0 0 1 .85-2.05z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M392.49 219.74c.28.12.83.09.97.3-.16.7-.95.9-1.31 1.47-.18-.26-.81-.47-.7-.75.27-.38.7-.61 1.02-.94l.02-.08zm.98.23zm-1.8-2.98c.3-.07.75-.58.96-.36.49 1.03 1.05 2.17.84 3.34-.28-.14-.87-.06-.97-.33.05-.94-.43-1.83-.82-2.65zm4.2-3.07c-.2.23-.28.9-.58.84-1.03-.5-2.09-1.13-3.26-1.13-.5.06-.27.73-.2 1.06.17.64.45 1.24.75 1.83-.3.06-.75.58-.96.35-.48-1.04-1.1-2.2-.83-3.38.27-.89 1.35-1.02 2.13-.8 1.04.25 2.02.73 2.96 1.23zm2.92 2.16c-.25.18-.47.81-.74.7-.85-.7-1.68-1.42-2.65-1.96.2-.23.3-.85.57-.85 1.02.58 1.92 1.36 2.82 2.11zm2.77 2.3c-.24.2-.4.8-.67.77-.96-.71-1.84-1.52-2.75-2.29.25-.17.47-.81.74-.7.89.75 1.74 1.53 2.68 2.22zm3.35 1.94c-.23.18-.95.2-.87.49.06.09-.4-.24-.57-.27-.88-.34-1.73-.77-2.5-1.33.24-.2.4-.86.69-.76.86.66 1.9.97 2.85 1.47.16.1.31.23.4.4zm-.11-.17zm1.73 4.39c-.3.05-.77.34-.98.27-.5-1.38-1.03-2.75-1.57-4.1.3-.04.8-.51.98-.27.54 1.36 1.08 2.72 1.57 4.1zm0-.01zm0-.01c-.23.17-.97.2-.87.47-.04.11.69.37.17 0a62 62 0 0 1-.22-.23c-.1 0 .22.57-.07-.06.1.34.69-.15.99-.16.07.37-.27-.61.02.15-.09-.07-.75-.75-.32-.32a46.5 46.5 0 0 1 .2.2c-.46-.37-.3-.36-.07-.27l.17.22zm-.17-.22zm1.73 4.69c-.28.02-.92-.36-.98-.08 0 .29-.22-.58-.31-.76-.4-1.09-.8-2.18-1.22-3.26.31-.06.74-.4.97-.3.53 1.39 1.06 2.78 1.53 4.18l.01.22zm-.02-.28zm-1.81 2.4c-.22-.22-.9-.3-.83-.6.38-.73 1.08-1.25 1.67-1.73.28.13.9.04.97.3-.3.74-1.18.97-1.57 1.64-.09.12-.17.25-.24.39zm-2.16 4.86c-.2-.25-.82-.43-.74-.72.91-1.43 1.22-3.14 2.01-4.63.22.21.9.3.83.6-.77 1.55-1.1 3.32-2.1 4.75zm-3.81 2.68c.12-.3.02-.87.27-1 .9-.1 1.51-.9 2.1-1.52.26-.19.45-.8.73-.7.15.23.88.4.59.7-.84 1.01-1.73 2.18-3.07 2.52-.2.04-.42.04-.62 0zm-2.2-4.84c.31.03.81-.17 1.02-.02.14 1.23.21 2.57.95 3.6.31.22.5.34.32.76.03.45-.2.61-.57.33-1.06-.65-1.3-2-1.53-3.12-.09-.51-.14-1.04-.19-1.55zm-1.32-2.7c.26-.17.5-.76.77-.66a5.56 5.56 0 0 1 1.56 3.28c-.3-.04-.85.2-1.01 0a4.55 4.55 0 0 0-1.32-2.62zm-2.05-1.05c.22-.22.31-.9.6-.83.69.44 1.56.55 2.14 1.14-.26.16-.5.78-.78.66-.55-.4-1.25-.52-1.82-.9l-.14-.07zm-2.47-1.97c.27-.16.55-.66.8-.62a8.77 8.77 0 0 0 2.17 1.7c-.21.22-.31.85-.59.83a9.75 9.75 0 0 1-2.38-1.91zm-1.11-2.41c.3-.05.75-.42.97-.28.25.68.38 1.45.89 2-.27.15-.56.71-.82.6-.58-.65-.76-1.52-1.04-2.32zm-.73-2.5c.3.07.77.01 1 .15 0 .72.44 1.33.67 1.99-.3.06-.73.38-.97.3-.3-.79-.8-1.57-.7-2.44zm1 .1zm.35-1.59c.03-.22-.07-1.08.05-.9.07.3.5.65.18.92a3.28 3.28 0 0 0-.58 1.57c-.3-.09-.85.03-1-.18.1-.82.43-1.6.96-2.24l.39.83zm0-1.02c.3.04.9-.07 1.03.05-.22.16-.52.87-.7.67l-.33-.72zm0 0v1.02c-.04-.3-.64-.82-.16-.94l.16-.08zm0 1.02c-.3-.04-.91.07-1.04-.05.23-.15.52-.87.7-.67l.34.72z'/%3e%3cpath d='m406.51 226.13.22.94a8.8 8.8 0 0 0-3.64 1.76c-1 .81-1.8 1.86-2.42 3.12.22-1.4.91-2.64 1.93-3.64a8.82 8.82 0 0 1 3.9-2.18h.01zm-.59-1.68-.43-.93c-1.61-.14-3.17-.55-4.69-1.2a21.44 21.44 0 0 1-4.45-2.68 15.81 15.81 0 0 0 9.56 4.8h.01z' fill='%2321231e'/%3e%3cpath d='M391.36 213.8c1 .37 1.66.82 2.8 1.77a4.53 4.53 0 0 1 1.52 2.94c.17 1.2.03 2.55-.3 3.89-.2.83.05 2.25.54 3.64a10.03 10.03 0 0 0 1.95 3.5c2.45 2.45 4.16 5.04 3.48 6.65a3.31 3.31 0 0 1-1.48 1.8c-.3-.6-.99-1.14-1.22-2.16-.3-1.31-.8-2.67-1.57-3.49-.6-.63-.73-1.35-2.22-2.27-.96-.6-1.78-.35-2.44-1.15-1.27-1.56-2.93-5.38-1.3-7.12 1.6-1.72 2.17-2.69.82-5.65-.46-1-.45-1.74-.58-2.35z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m394.49 215.17-.64.79a8.8 8.8 0 0 0-2.66-1.68l.35-.96a9.66 9.66 0 0 1 2.95 1.85zm1.7 3.27c-.33 0-.77.18-1.02.09a4.03 4.03 0 0 0-1.32-2.57l.64-.79c.98.8 1.53 2.03 1.7 3.27zm-.31 4.08-.98-.25c.3-1.2.45-2.45.28-3.69.32 0 .77-.18 1.01-.09a11 11 0 0 1-.31 4.03zm-.98-.25zm1.5 3.6c-.31.07-.72.33-.97.29-.4-1.25-.79-2.58-.53-3.89.3.12.78.12.97.3-.16 1.12.2 2.25.53 3.3zm1.84 3.31c-.25.2-.5.61-.76.68a10.6 10.6 0 0 1-2.03-3.65c.31-.07.71-.33.97-.29a9.56 9.56 0 0 0 1.82 3.26zm3.58 7.2c-.28-.16-.75-.24-.9-.45.3-1-.28-2-.78-2.85a18.87 18.87 0 0 0-2.62-3.18c.25-.2.5-.61.76-.68 1.43 1.48 2.87 3.07 3.55 5.05.21.68.28 1.45 0 2.11zm-2.4 1.82c.25-.15.78-.32.85-.46-.17-.1-.92-.1-.5-.3.54-.33.9-.88 1.12-1.46.28.16.76.25.91.46a3.9 3.9 0 0 1-1.64 1.96l-.74-.2zm.74.2c-.3.27-.59.44-.68-.08-.18-.27.53.1.68.08zm-2-2.46c.32-.03.75-.25 1-.17.18.77.82 1.3 1.17 1.99-.3.11-.66.39-.93.4-.46-.71-1.07-1.35-1.24-2.22zm-1.44-3.25.73-.7c.94 1.03 1.38 2.4 1.7 3.72-.32.04-.75.25-1 .18a7.3 7.3 0 0 0-1.43-3.2zm0 0zm-2.12-2.2.53-.86a6.5 6.5 0 0 1 2.15 2.16c.36.23-.11.42-.27.63-.24.4-.45.15-.63-.14a5.26 5.26 0 0 0-1.78-1.79zm-2.56-1.25.78-.65c.53.62 1.45.5 2.1.92.44.12-.1.5-.17.74-.1.43-.39.06-.64 0-.74-.22-1.58-.34-2.07-1.01zm-1.29-7.8.74.7c-.79.92-.56 2.25-.26 3.31.34 1.13.86 2.21 1.6 3.14l-.8.65a9.86 9.86 0 0 1-2.08-5.32c-.04-.89.19-1.82.8-2.47zm.74-5.08c.3-.1.68-.4.94-.38.6 1.33 1.14 2.92.45 4.32-.34.7-.87 1.28-1.39 1.84l-.74-.7c.75-.78 1.61-1.74 1.43-2.91a7.53 7.53 0 0 0-.7-2.17zm-.12-3.07v1.02c.15-.1.45-.78.52-.5.1.73.19 1.46.51 2.12-.3.1-.68.4-.94.38-.36-.76-.46-1.6-.59-2.4l.5-.62zm-.5.62c-.08-.34-.28-.78.26-.62.51-.08-.18.41-.26.61zm.5.4v-1.02c.37.03-.02.6.02.86l-.02.16zm0-1.02z'/%3e%3cpath d='M434.07 226.22c-1.28 1.1-1.6.88-1.96 1.55-.45.84-.24 2.13.15 3.33 1.54 4.76-1.36 4.34-4.84 2.52-1.73-.9-3.75-3.22-5.33-4.38-1.57-1.16-2.68-1.15-3.11-1.63-.44-1.88-.8-3.52-.94-4.28-.18-.75-.53-2.43-.9-4.41.22-.59 1.3-.86 2.38-2.46 1.08-1.62 2.16-4.64 3.57-6.1 2.87-3.02 5.76-4.31 5.92 1.47.04 1.4.29 2.82 1.04 3.59.59.6.83.3 2.47 1.1a7.21 7.21 0 0 1 2.53 2c.62.8.5 1.73.63 2.64.13.9.53 1.76.18 2.64-.36.87-.95 1.7-1.79 2.42z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='M432.56 228.01c-.22-.22-.97-.3-.8-.63.46-.7 1.36-.9 1.92-1.5.18.04.77.62.61.82-.48.47-1.13.74-1.64 1.17-.04.04-.06.1-.09.14zm.18 2.93c-.33 0-.95.57-1.03.08-.33-1.12-.59-2.4-.04-3.5.25.26 1.06.3.79.74-.24.89.03 1.83.28 2.68zm-5.55 3.13c.24-.24.28-1.1.7-.78 1.14.53 2.35 1.19 3.63 1.06.77-.15.7-1.11.6-1.7-.07-.47-.2-.93-.34-1.4.34 0 .98-.58 1.04-.04.33 1.15.7 2.56-.12 3.6-.9.93-2.33.57-3.4.2-.73-.26-1.43-.59-2.11-.94zm-5.4-4.42c.27-.17.43-.98.76-.7 1.75 1.35 3.17 3.11 5.1 4.22-.24.24-.29 1.1-.7.77-1.92-1.16-3.38-2.94-5.15-4.29zm.6-.82zm-3.9-1.1c.26-.17 1.17-.04.86-.46.74.44 1.63.61 2.36 1.1.25.21.94.39.48.74-.22.38-.44.69-.8.26-.8-.58-1.8-.73-2.62-1.26a.82.82 0 0 1-.28-.38zm.11.22zm-.56-4.1c.08-.27-.2-1.28.21-.85.47.25.34.86.5 1.3l.72 3.2c-.33-.03-1 .48-1.04-.02-.31-1.34-.62-2.7-.89-4.05l.5.41zm0-1.03c.49-.31.68.76.23.2l-.23-.2zm-.5.62c.3 0 .86-.35 1-.11.07-.22-.53-.73-.5-.37-.1.2.23 1.07-.2.8-.2.12-.36-.72-.3-.32zm.99-.23zm-1.86-4.47c.31.01 1.02.64.97.08.28 1.47.56 2.94.89 4.4-.31-.03-.9.4-1.02.07-.3-1.44-.63-2.9-.86-4.34l.02-.2zm-.02.27zm2.45-2.84c.2.27 1.04.42.69.79-.55.84-1.39 1.41-2.13 2.07-.26.12-.67-.24-.99-.29.38-.82 1.34-1.15 1.88-1.85.2-.23.38-.46.55-.72zm3.62-6.17c.16.3.93.57.57.89-1.43 1.76-2.12 3.97-3.35 5.85-.21-.26-1.02-.4-.71-.77 1.2-1.96 1.93-4.24 3.5-5.97zm6.8 1.82c-.33-.1-1.1.28-1.02-.25-.09-1.04-.12-2.21-.85-3.03-.7-.56-1.6.02-2.22.42-.73.5-1.37 1.11-1.98 1.75-.16-.3-.97-.6-.53-.9 1.1-1.08 2.3-2.27 3.89-2.52 1.1-.15 2.02.77 2.3 1.77.3.89.38 1.83.4 2.76zm.89 3.24c-.28.13-.58.9-.85.57-.85-1.05-1-2.47-1.05-3.78.32.1 1.08-.28 1.02.22.07 1.03.17 2.2.88 3zm0 0zm2.33 1c-.23.24-.25 1.06-.65.82-.76-.45-1.78-.41-2.4-1.1.3-.15.57-.89.88-.58.64.32 1.38.43 2.02.79l.15.07zm2.71 2.15c-.29.1-.64.77-.89.5a6.82 6.82 0 0 0-2.26-1.73c.23-.24.26-1.07.65-.8.96.5 1.84 1.18 2.5 2.03zm-.8.63c.35.44.5.63.06.07l-.04-.05-.01-.02zm1.53 2.24c-.3-.06-.96.36-1.02 0-.1-.76 0-1.6-.5-2.24.3-.11.7-.85.93-.45.54.8.48 1.78.59 2.69zm.15 2.91c-.27-.22-1.08-.18-.87-.63.13-.72-.19-1.42-.28-2.13.3.04.92-.33 1.02 0 .2.9.5 1.86.13 2.76zm-1.93 2.62c-.12-.3-.83-.64-.51-.9a5.8 5.8 0 0 0 1.5-2.1c.24.2 1.03.19.86.56a6.93 6.93 0 0 1-1.85 2.44z'/%3e%3cpath d='m417.9 222.59-.07-.87c3.2-.88 5.7-2.72 7.72-5.43-1.14 2.9-4.2 5.28-7.65 6.3zm.32 1.52.3.83a16.3 16.3 0 0 1 9.18 3.14c-2.06-2.34-5.82-3.83-9.48-3.97z' fill='%2321231e'/%3e%3cpath d='M432.69 233.31c-1.09-.34-2.27-.69-3.36-1.53-1.67-1.29-1.18-3.78.24-6.35.46-.83.52-2.21.28-3.57-.24-1.36-.77-2.7-1.5-3.39-2.34-2.26-3.77-4.75-2.58-6.58.8-1.22 1.88-1.94 2.87-2.6.22.62.36 1.46.38 2.55.04 1.4.29 2.82 1.04 3.58.59.6.83.3 2.47 1.1a7.21 7.21 0 0 1 2.53 2c.62.8.49 1.74.63 2.64.13.9.53 1.76.17 2.64-.35.87-.94 1.7-1.78 2.42-1.28 1.1-1.6.89-1.96 1.55-.45.85-.24 2.13.15 3.34.3.91.43 1.64.42 2.2z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m429.01 232.18.62-.8a9.51 9.51 0 0 0 3.2 1.44l-.3.97c-1.24-.37-2.49-.8-3.52-1.61zm.11-7 .89.5c-.7 1.32-1.41 2.81-1.19 4.36.1.52.38 1.01.8 1.33l-.61.81c-1.14-.84-1.43-2.4-1.15-3.71.2-1.17.7-2.27 1.26-3.3zm.22-3.23 1-.18c.2 1.29.28 2.7-.33 3.9l-.89-.5c.49-.99.38-2.17.22-3.22zm-1.34-3.11.7-.74c.96.98 1.39 2.35 1.64 3.67l-1 .18a6.1 6.1 0 0 0-1.34-3.11zm0 0zm-2.66-7.24.84.56c-.7 1.07-.2 2.4.4 3.39.58.95 1.33 1.78 2.12 2.55l-.7.74c-1.36-1.35-2.72-2.9-3.11-4.83-.16-.82-.01-1.7.45-2.4zm3.77-2.48-.95.32c.16.13.94.17.62.36a8.53 8.53 0 0 0-2.6 2.36l-.84-.56c.74-1.16 1.88-2 3.01-2.74l.76.26zm-.76-.26c.3-.2.65-.58.68 0 .27.49-.42.02-.66 0h-.02zm1.17 2.96c-.32-.03-.78.1-1.01-.03-.03-.79-.1-1.59-.35-2.35l.96-.32c.29.87.37 1.79.4 2.7zm.89 3.24-.72.72c-.97-1.05-1.12-2.57-1.18-3.93.32.03.78-.1 1.01.03.06 1.09.13 2.33.89 3.18zm2.33 1-.44.92c-.68-.39-1.45-.51-2.15-.83-.2-.15-.66-.37-.26-.57.23-.11.44-.71.68-.37.57.3 1.25.38 1.83.7.11.04.23.1.34.16zm2.71 2.15-.8.63a6.76 6.76 0 0 0-2.35-1.86l.44-.91c1.04.5 2 1.23 2.71 2.14zm-.8.63c.17.22.59.75.2.24l-.2-.24zm1.53 2.24-1 .15c-.14-.8 0-1.7-.52-2.39l.8-.63c.66.81.6 1.9.72 2.87zm.14 2.91-.93-.38c.3-.79-.12-1.6-.21-2.38l1-.15c.17.96.55 1.96.14 2.91zm-1.92 2.62-.66-.78c.7-.6 1.3-1.36 1.65-2.22l.93.38a6.87 6.87 0 0 1-1.92 2.62zm-1.84 1.4-.9-.48c.4-.78 1.33-.97 1.9-1.55.28-.34.46.3.69.45.35.25-.25.43-.4.62-.38.35-.96.48-1.27.92l-.02.04zm.18 2.94-.96.31c-.36-1.19-.7-2.56-.11-3.73l.89.48c-.42.93-.09 2.01.18 2.94zm-.2 2.84.29-.97c-.2.06-.7.7-.66.29a7.44 7.44 0 0 0-.39-1.85l.96-.31c.25.76.46 1.56.45 2.37l-.66.47zm.65-.47c-.04.29.14.89-.34.57-.61-.06.07-.33.27-.53l.05-.03.02-.01zm-.5-.01c-.17.51-.17.52 0 0zm.5 0c-.04.3.14.9-.34.58-.61-.06.07-.33.27-.53l.05-.03.02-.01z'/%3e%3cpath d='M410.55 216.45c4.03-.2 7.91 3.32 8.49 7.63.57 4.31-2.25 7.66-6.1 7.7-3.87.05-7.45-3.1-8.19-7.27-.74-4.16 1.77-7.86 5.8-8.06z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m419.54 224.02-1 .13a8.48 8.48 0 0 0-6.37-7.06 6.48 6.48 0 0 0-1.6-.13c0-.34-.03-.68-.04-1.02 2.85-.13 5.57 1.46 7.22 3.72a9.5 9.5 0 0 1 1.79 4.36zm-6.6 8.28-.01-1.02a5.59 5.59 0 0 0 4.8-2.75c.78-1.3 1-2.88.8-4.38l1.01-.13a7.48 7.48 0 0 1-2.11 6.5 6.62 6.62 0 0 1-4.49 1.78zm-8.69-7.7 1-.17c.55 3.18 3.04 6.03 6.25 6.7.47.1.95.15 1.43.15l.01 1.02c-2.97.04-5.77-1.74-7.33-4.22a9.61 9.61 0 0 1-1.36-3.47zm6.28-8.66.05 1.02a5.52 5.52 0 0 0-4.57 2.75 6.92 6.92 0 0 0-.76 4.72l-1 .18a7.64 7.64 0 0 1 1.97-6.8 6.54 6.54 0 0 1 4.3-1.87z'/%3e%3cpath d='M410.89 218.57c2.94-.13 5.77 2.42 6.2 5.57.44 3.16-1.58 5.65-4.46 5.7-2.83.05-5.52-2.34-6.03-5.38-.54-3.1 1.35-5.76 4.29-5.89z' fill='%23edb92e'/%3e%3cpath fill='%2321231e' d='m417.59 224.07-1 .14a6.06 6.06 0 0 0-4.7-5.07 4.87 4.87 0 0 0-.98-.07l-.05-1.01a6.56 6.56 0 0 1 5.5 2.91 7.1 7.1 0 0 1 1.23 3.1zm-4.95 6.28-.02-1.02c1.39 0 2.75-.78 3.42-2 .55-.93.7-2.06.55-3.12l1-.14a5.7 5.7 0 0 1-1.43 4.78 5 5 0 0 1-3.52 1.5zm-6.55-5.8 1-.18a6.04 6.04 0 0 0 4.62 4.88c.3.05.6.08.91.08l.02 1.02a6.61 6.61 0 0 1-5.5-3.14 7.1 7.1 0 0 1-1.05-2.66zm4.77-6.5.05 1.02a3.94 3.94 0 0 0-3.28 1.95c-.59 1-.74 2.22-.54 3.35l-1 .17a5.73 5.73 0 0 1 1.44-5.04c.88-.89 2.1-1.4 3.33-1.44z'/%3e%3cpath d='M411.22 220.72c1.84-.07 3.6 1.51 3.89 3.49.28 1.97-.99 3.57-2.8 3.6-1.8.04-3.5-1.46-3.81-3.4-.32-1.94.88-3.62 2.72-3.69z' fill='%230c4076'/%3e%3cpath fill='%2321231e' d='m415.6 224.13-1 .15a3.63 3.63 0 0 0-2.8-3.01 2.89 2.89 0 0 0-.57-.05l-.04-1.01a4.33 4.33 0 0 1 3.63 1.96c.4.58.68 1.26.78 1.96zm-3.28 4.19-.02-1.02c.86 0 1.69-.53 2.05-1.3.27-.53.33-1.14.25-1.72l1-.15a3.73 3.73 0 0 1-1.12 3.35c-.58.53-1.37.82-2.16.84zm-4.33-3.83 1-.17a3.58 3.58 0 0 0 2.81 2.94c.17.03.33.04.5.04l.02 1.02a4.34 4.34 0 0 1-3.64-2.06 4.69 4.69 0 0 1-.69-1.77zm2.72-3.77h1l-.48.5a2.3 2.3 0 0 0-1.99 1.27 2.96 2.96 0 0 0-.25 1.83l-1 .17a3.78 3.78 0 0 1 1.05-3.4 3.3 3.3 0 0 1 2.15-.88l-.48.5zm1 0v.49l-.48.01.49-.5zm0 0h-1l.48-.51.53.5zm-1 0v-.5l.48-.01-.48.5z'/%3e%3c/g%3e%3cpath d='M482.14 182.98a6.85 6.85 0 0 1 6.82 6.87c0 3.8-3.05 6.88-6.82 6.88a6.85 6.85 0 0 1-6.82-6.88c0-3.8 3.05-6.87 6.82-6.87z' fill='%23FFF'/%3e%3cpath d='M489.47 189.85h-1.01a6.39 6.39 0 0 0-6.32-6.36v-1.02a7.34 7.34 0 0 1 7.33 7.38zm-7.33 7.38v-1.02a6.33 6.33 0 0 0 6.32-6.36h1.01a7.41 7.41 0 0 1-3.7 6.42c-1.1.63-2.36.96-3.63.96zm-7.33-7.38h1.02a6.38 6.38 0 0 0 6.31 6.36v1.02a7.34 7.34 0 0 1-7.33-7.38zm7.33-7.38v1.02a6.33 6.33 0 0 0-6.31 6.36h-1.02a7.42 7.42 0 0 1 3.48-6.28 7.3 7.3 0 0 1 3.85-1.1z' fill='%2321231e'/%3e%3cpath d='M482.14 171.07a6.85 6.85 0 0 1 6.82 6.87c0 3.8-3.05 6.88-6.82 6.88a6.85 6.85 0 0 1-6.82-6.88c0-3.8 3.05-6.87 6.82-6.87z' fill='%23FFF'/%3e%3cpath d='M489.47 177.94h-1.01a6.39 6.39 0 0 0-6.32-6.36v-1.02a7.33 7.33 0 0 1 7.33 7.38zm-7.33 7.38v-1.02a6.33 6.33 0 0 0 6.32-6.36h1.01a7.41 7.41 0 0 1-3.7 6.42c-1.1.63-2.36.96-3.63.96zm-7.33-7.38h1.02a6.38 6.38 0 0 0 6.31 6.36v1.02a7.34 7.34 0 0 1-7.33-7.38zm7.33-7.38v1.02a6.33 6.33 0 0 0-6.31 6.36h-1.02a7.42 7.42 0 0 1 3.48-6.28 7.3 7.3 0 0 1 3.85-1.1z' fill='%2321231e'/%3e%3cpath d='M482.14 159.61c3.77 0 6.82 3.08 6.82 6.87s-3.05 6.88-6.82 6.88a6.85 6.85 0 0 1-6.82-6.88c0-3.8 3.05-6.87 6.82-6.87z' fill='%23FFF'/%3e%3cpath d='M489.47 166.49h-1.01a6.39 6.39 0 0 0-6.32-6.36v-1.02a7.33 7.33 0 0 1 7.33 7.38zm-7.33 7.38v-1.02a6.32 6.32 0 0 0 6.32-6.36h1.01a7.31 7.31 0 0 1-7.33 7.38zm-7.33-7.38h1.02a6.39 6.39 0 0 0 6.31 6.36v1.02a7.34 7.34 0 0 1-7.33-7.38zm7.33-7.38v1.02a6.33 6.33 0 0 0-6.31 6.36h-1.02a7.42 7.42 0 0 1 3.48-6.28 7.3 7.3 0 0 1 3.85-1.1z' fill='%2321231e'/%3e%3cpath d='M482.14 127.08a6.85 6.85 0 0 1 6.82 6.87c0 3.8-3.05 6.88-6.82 6.88a6.85 6.85 0 0 1-6.82-6.88c0-3.8 3.05-6.87 6.82-6.87z' fill='%23FFF'/%3e%3cpath d='M489.47 133.95h-1.01a6.39 6.39 0 0 0-6.32-6.36v-1.02a7.33 7.33 0 0 1 7.33 7.38zm-7.33 7.38v-1.02a6.33 6.33 0 0 0 6.32-6.36h1a7.41 7.41 0 0 1-3.66 6.4 7.3 7.3 0 0 1-3.66.98zm-7.33-7.38h1.02a6.39 6.39 0 0 0 6.31 6.36v1.02a7.33 7.33 0 0 1-7.33-7.38zm7.33-7.38v1.02a6.33 6.33 0 0 0-6.31 6.36h-1.02a7.42 7.42 0 0 1 3.48-6.28 7.3 7.3 0 0 1 3.85-1.1z' fill='%2321231e'/%3e%3cpath d='M482.14 137.16a6.85 6.85 0 0 1 6.82 6.87c0 3.8-3.05 6.88-6.82 6.88a6.85 6.85 0 0 1-6.82-6.88c0-3.8 3.05-6.87 6.82-6.87z' fill='%23FFF'/%3e%3cpath d='M489.47 144.03h-1.01a6.39 6.39 0 0 0-6.32-6.36v-1.02a7.34 7.34 0 0 1 7.33 7.38zm-7.33 7.38v-1.02a6.33 6.33 0 0 0 6.32-6.36h1a7.41 7.41 0 0 1-3.66 6.4 7.3 7.3 0 0 1-3.66.98zm-7.33-7.38h1.02a6.39 6.39 0 0 0 6.31 6.36v1.02a7.34 7.34 0 0 1-7.33-7.38zm7.33-7.38v1.02a6.33 6.33 0 0 0-6.31 6.36h-1.02a7.41 7.41 0 0 1 3.48-6.28 7.3 7.3 0 0 1 3.85-1.1z' fill='%2321231e'/%3e%3cpath d='M482.14 148.16a6.85 6.85 0 0 1 6.82 6.87c0 3.8-3.05 6.88-6.82 6.88a6.85 6.85 0 0 1-6.82-6.88c0-3.8 3.05-6.87 6.82-6.87z' fill='%23FFF'/%3e%3cpath d='M489.47 155.03h-1.01a6.39 6.39 0 0 0-6.32-6.36v-1.02a7.33 7.33 0 0 1 7.33 7.38zm-7.33 7.38v-1.02a6.33 6.33 0 0 0 6.32-6.36h1a7.41 7.41 0 0 1-3.66 6.4 7.3 7.3 0 0 1-3.66.98zm-7.33-7.38h1.02a6.39 6.39 0 0 0 6.31 6.36v1.02a7.33 7.33 0 0 1-7.33-7.38zm7.33-7.38v1.02a6.33 6.33 0 0 0-6.31 6.36h-1.02a7.42 7.42 0 0 1 3.48-6.28 7.3 7.3 0 0 1 3.85-1.1z' fill='%2321231e'/%3e%3cpath d='M486.99 195.51c.98 1.58.72 1.89 1.36 2.4.83.65 2.18.65 3.48.45 5.25-.83 4.52 2.35 2.2 5.93-1.16 1.78-3.86 3.58-5.26 5.12-1.4 1.53-1.53 2.8-2.08 3.19-2.02.05-3.75.06-4.54.04-.8.02-2.53 0-4.54-.04-.56-.38-.68-1.66-2.08-3.2-1.4-1.53-4.1-3.33-5.26-5.11-2.32-3.58-3.05-6.76 2.2-5.93 1.3.2 2.65.2 3.47-.46.65-.5.39-.81 1.37-2.39a7 7 0 0 1 2.22-2.3c.83-.51 1.72-.23 2.62-.23.9 0 1.78-.28 2.61.23a7 7 0 0 1 2.23 2.3z' fill='%23EDB92E'/%3e%3cpath fill='%2321231e' d='M488.66 197.51c-.26.16-.45.92-.75.7-.65-.61-.74-1.58-1.26-2.28-.16-.28.63-.6.8-.62.46.64.66 1.41 1.07 2.07l.14.13zm-.62.8zm3.71-.45c-.05.33.42 1.05-.1 1.05-1.21.15-2.59.18-3.61-.6.25-.18.43-.87.74-.71.89.52 2 .4 2.97.26zm2.7 6.71c-.22-.27-1.08-.4-.7-.8.71-1.2 1.54-2.47 1.53-3.91-.04-.91-1.1-1.12-1.84-1.11a9.2 9.2 0 0 0-1.53.12c.05-.34-.43-1.08.12-1.05 1.28-.15 2.85-.26 3.8.8.87 1.13.35 2.65-.18 3.82-.34.74-.76 1.45-1.2 2.13zm-5.31 5.19c-.17-.3-1-.58-.55-.9 1.62-1.66 3.66-2.92 5.01-4.85.2.26 1.02.4.72.74-1.42 1.96-3.53 3.26-5.18 5zm-2.44 3.36c-.11-.3.22-1.2-.3-.94.51-.68.78-1.6 1.33-2.28.23-.23.48-.87.77-.74.2.29.9.54.4.87-.74.8-1.05 1.88-1.68 2.77a.84.84 0 0 1-.52.32zm.27-.1zm-4.82.14c.1-.29-.2-.99.15-1.02 1.46.01 2.92 0 4.37-.04-.1.32.28 1.1-.23 1.02-1.42.04-2.9.05-4.3.04zm0-1.02zm0 0v.88c0-.29-.03-.6 0-.88zm-.02 0h.01zm-4.81.89c.08-.3.88-.85.3-.93 1.48.03 3.02.06 4.51.04-.08.3.22.98-.14 1.02-1.48 0-2.98.02-4.46-.07l-.21-.06zm.27.09zm-2.44-3.36c.31-.14.65-.95.93-.49.77.82 1.18 1.88 1.73 2.84.14.27-.38.61-.49.92-.74-.63-.9-1.68-1.5-2.43-.2-.3-.43-.58-.67-.84zm-5.3-5.19c.32-.09.77-.8.99-.35 1.42 1.88 3.46 3.14 5.06 4.85-.3.14-.63.93-.92.5-1.68-1.7-3.77-3-5.14-5zm2.69-6.7c-.15.3.08 1.14-.43.96-.94-.09-2.05-.26-2.83.39-.57.74-.13 1.75.17 2.53.34.8.78 1.54 1.24 2.26-.33.1-.8.84-1 .32-.83-1.4-1.77-2.91-1.67-4.6.06-1.17 1.2-1.92 2.29-1.97.74-.08 1.5 0 2.23.1zm3.1-.36c.1.3.86.72.42.94-1.1.68-2.46.6-3.68.42.16-.3-.07-1.1.4-.97.94.1 2.04.2 2.85-.39zm1.24-2.26c.19.24.95.35.77.68-.56.74-.63 1.8-1.4 2.38-.1-.3-.8-.66-.47-.93.4-.65.6-1.41 1.04-2.04 0-.04.05-.06.06-.1zm0 0zm2.39-2.47c.07.3.69.74.38.96a6.62 6.62 0 0 0-1.92 2.05c-.2-.26-1.04-.37-.73-.74a7.4 7.4 0 0 1 2.27-2.27zm2.88-.3c-.1.3.2 1.01-.18 1-.73 0-1.51-.23-2.17.17-.07-.31-.77-.8-.33-.98.83-.44 1.78-.21 2.68-.2zm2.88.3c-.25.2-.34 1-.7.78-.7-.29-1.46-.05-2.18-.07.09-.3-.2-.97.15-1.02.92-.05 1.9-.23 2.73.31zm0 0zm1.96 3.25c-.05-.24.12-1.35-.13-.78-.18.48-.36.63-.59.1a6.25 6.25 0 0 0-1.77-1.7c.24-.2.35-1 .7-.76.9.6 1.65 1.43 2.22 2.36l-.43.78zm.43-.78c.1.28.83.93.13.78-.68.15-.53-.19-.22-.62l.09-.16zm-.43-.24c-.08.24.17 1.06-.12.95-.6-.13.03-.62.12-.95zm-.43.78c-.1-.3-.83-.93-.13-.78.72-.16.47.24.19.67l-.04.06-.02.05z'/%3e%3cpath d='m481.35 212.77-.88-.13a17.67 17.67 0 0 0-4.33-9.63c2.65 1.8 4.62 5.67 5.21 9.76z' fill='%2321231E'/%3e%3cpath d='M494.21 198.3c-.47 1.15-.96 2.4-1.98 3.46-1.54 1.61-4.1.57-6.57-1.51-.78-.66-2.16-.98-3.54-.97-1.37 0-2.74.33-3.5.97-2.47 2.08-5.03 3.12-6.57 1.51-1.02-1.06-1.51-2.31-1.98-3.46.6-.11 1.38-.1 2.38.06 1.3.2 2.66.2 3.49-.45.64-.51.38-.82 1.36-2.4a6.97 6.97 0 0 1 2.22-2.3c.83-.51 1.73-.23 2.62-.23.9 0 1.79-.28 2.62.23a7 7 0 0 1 2.22 2.3c.98 1.58.72 1.89 1.36 2.4.83.65 2.18.65 3.48.45 1-.16 1.8-.17 2.39-.06z' fill='%23EDB92E'/%3e%3cpath fill='%2321231e' d='m492.6 202.12-.73-.7c.9-.93 1.4-2.13 1.88-3.3l.93.38a10.7 10.7 0 0 1-2.08 3.62zm-7.26-1.48.65-.78c1.21.99 2.57 2 4.18 2.17.62.06 1.27-.15 1.7-.62l.73.71c-.9 1-2.39 1.14-3.6.72a11.24 11.24 0 0 1-3.66-2.2zm.64-.78.4.33-.4-.33zm-3.85-.07v-1.02c1.34.02 2.78.23 3.85 1.09l-.64.78c-.9-.69-2.12-.83-3.21-.85zm-3.18.85-.64-.78c1.07-.85 2.49-1.06 3.82-1.09v1.02c-1.1.02-2.29.17-3.18.85zm-7.26 1.48.73-.7c.76.84 2.04.7 2.99.3a11.31 11.31 0 0 0 2.9-1.86l.64.78c-1.4 1.15-3 2.29-4.86 2.42a3.05 3.05 0 0 1-2.4-.94zm-1.7-4.32.18 1c.14-.13.32-.9.44-.53a9.36 9.36 0 0 0 1.8 3.14c-.23.24-.48.47-.72.7a10.65 10.65 0 0 1-2.08-3.61l.38-.7zm-.38.7c-.13-.32-.4-.71.14-.65.49-.18-.1.42-.13.63l-.01.02zm2.93-.64-.16 1a7.06 7.06 0 0 0-2.21-.05l-.18-1a8.11 8.11 0 0 1 2.55.05zm3.1-.35.61.8c-1.1.83-2.58.74-3.87.56l.16-1.01c1.01.13 2.2.27 3.1-.35zm.61.8-.15.12.15-.12zm.62-3.06.86.54c-.46.64-.66 1.42-1.06 2.1-.16.18-.43.62-.59.2-.08-.24-.64-.51-.3-.71.36-.54.5-1.2.87-1.75l.22-.38zm2.4-2.47.52.87a6.53 6.53 0 0 0-2.06 2.14l-.86-.54a7.5 7.5 0 0 1 2.4-2.47zm2.87-.3v1.01c-.77.02-1.63-.27-2.35.16l-.52-.87c.86-.57 1.91-.34 2.87-.3zm2.89.3-.53.87c-.72-.43-1.58-.14-2.36-.16v-1.02c.97-.03 2.02-.26 2.89.3zm0 0zm2.39 2.47-.86.54a6.53 6.53 0 0 0-2.06-2.14c.17-.3.35-.58.53-.87a7.52 7.52 0 0 1 2.39 2.47zm1.24 2.26-.62.8c-.73-.54-.8-1.52-1.3-2.23-.38-.33.13-.46.38-.65.3-.36.43.03.58.3.35.52.46 1.18.84 1.68l.12.1zm-.62.8c-.39-.3-.38-.3 0 0zm3.71-.45.16 1c-1.3.2-2.77.28-3.87-.55l.62-.8c.88.62 2.08.49 3.1.35zm2.93.64-.93-.39c.03.2.6.8.17.66-.67-.07-1.35 0-2.01.1l-.16-1.01a8.1 8.1 0 0 1 2.56-.06l.37.7zm-.37-.7c.33.06.8.04.46.48-.11.5-.3-.3-.45-.46l-.01-.02zm-.1.5c.5.2.51.21.01 0zm.1-.5c.33.06.8.04.46.48-.11.5-.3-.3-.45-.46l-.01-.02z'/%3e%3cpath d='M482.14 211.65c4.27 0 7.73 3.49 7.73 7.79s-3.46 7.79-7.73 7.79c-4.27 0-7.73-3.49-7.73-7.79s3.46-7.79 7.73-7.79z' fill='%23EDB92E'/%3e%3cpath d='m482.94 212.77.88-.13c.47-3.78 1.97-6.9 4.33-9.63-2.65 1.8-4.62 5.67-5.21 9.76z' fill='%2321231e'/%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 964.29 0)'/%3e%3cpath stroke='%2321231e' stroke-width='1.01' fill='%23edb92e' d='M576.93 293.58c2 .3 3.06 1.57 3 2.86.06 1.3-1 2.56-3 2.86-.46.13-.97.22-1.53.27a1109.04 1109.04 0 0 1-186.51 0 8.72 8.72 0 0 1-1.53-.27c-2-.3-3.07-1.56-3-2.86-.07-1.3 1-2.56 3-2.86.45-.13.96-.22 1.53-.27a1109.17 1109.17 0 0 1 186.5 0 8.6 8.6 0 0 1 1.54.27z'/%3e%3cpath fill='%2321231e' d='M412.13 298.41c-.77-.03-.76-1.36 0-1.39.6.02 2.72-.21 3.92-.24 6.46-.38 12.93-.71 19.4-.98.66 2.12-2.21.98-3.43 1.36-3.7.17-7.39.35-11.08.56 4.85.26 9.7.5 14.56.7.56 2.14-2.08.8-3.25 1.07-6.7-.3-13.42-.65-20.12-1.08.07-.52-.04.05 0 0zm.04-.7zm46.62-2.63c.61 2.13-2.23.93-3.46 1.3-6.61.15-13.22.36-19.83.64-.66-2.12 2.21-.98 3.43-1.35 6.62-.26 13.24-.45 19.86-.59zm23.35-.22c.57 2.14-2.25.88-3.48 1.21-6.62.02-13.23.1-19.85.22-.61-2.12 2.24-.92 3.46-1.27 6.62-.11 13.25-.16 19.87-.16zm23.35.26c.52 2.15-2.27.83-3.5 1.14-6.62-.12-13.24-.18-19.85-.18-.58-2.14 2.25-.88 3.48-1.2 6.62.02 13.25.1 19.87.24zm23.34.74c.48 2.16-2.29.78-3.53 1.07-6.61-.26-13.23-.45-19.84-.6-.53-2.15 2.27-.83 3.5-1.13 6.63.16 13.25.38 19.87.66zm23.32 1.2c.35-.15.96.98.2 1.25-2.37.23-5.54.35-8.22.52-5.1.28-10.2.53-15.3.74-.67-2.1 2.2-.97 3.42-1.36 3.36-.15 6.72-.32 10.08-.5a1149 1149 0 0 0-13.56-.64c-.48-2.16 2.29-.78 3.53-1.06 6.62.3 13.24.65 19.85 1.06zm-.04.65zm-116.61.7c.78 0 .73 1.29-.05 1.22l.05-1.22zm93.33 1.16c-.78.07-.84-1.21-.06-1.2l.06 1.2zm-46.46-34.39-22.74 11.46-.45-.92 22.74-11.45h.45v.91zm-.45-.91.22-.11.23.1h-.45zm22.74 12.37-22.74-11.46.45-.91 22.74 11.45v.92h-.45zm.45-.92.9.46-.9.46v-.92zm-23.2 11.46 22.75-11.46.45.92-22.74 11.45h-.45v-.91zm.46.91-.23.11-.22-.11h.45zm-22.74-12.37 22.74 11.46-.45.91-22.74-11.46v-.9h.45zm-.45.91-.9-.45.9-.46v.91z'/%3e%3cpath fill='%230c4076' d='M482.14 269.15c5.65 0 10.23 3.08 10.23 6.87 0 3.8-4.58 6.88-10.23 6.88s-10.23-3.08-10.23-6.88 4.58-6.87 10.23-6.87z'/%3e%3cpath fill='%2321231e' d='M492.88 276.02c-.4-.08-1.17.25-1.03-.4-.24-2.32-2.25-3.98-4.27-4.87-1.7-.75-3.58-1.09-5.44-1.1.1-.37-.28-1.22.4-1 3.3.09 6.8 1.17 8.99 3.77a5.75 5.75 0 0 1 1.35 3.6zm-10.74 7.38c.1-.37-.28-1.21.4-1.02 3-.1 6.2-1.04 8.2-3.4a4.71 4.71 0 0 0 1.13-2.96c.38.08 1.2-.26 1 .4-.21 2.64-2.37 4.65-4.66 5.7a14.4 14.4 0 0 1-6.07 1.28zm-10.74-7.38c.4.08 1.18-.25 1.03.4.25 2.32 2.25 3.98 4.27 4.87 1.7.75 3.58 1.1 5.44 1.1-.1.37.28 1.22-.39 1-3.3-.09-6.81-1.17-9-3.77a5.75 5.75 0 0 1-1.35-3.6zm10.74-7.38c-.1.37.28 1.21-.4 1.02-3 .1-6.2 1.04-8.2 3.4a4.71 4.71 0 0 0-1.13 2.96c-.38-.08-1.2.26-1-.4.21-2.64 2.37-4.65 4.66-5.7a14.42 14.42 0 0 1 6.07-1.28z'/%3e%3cpath fill='%23edb92e' d='M482.14 211.65c4.27 0 7.73 3.49 7.73 7.79s-3.46 7.79-7.73 7.79c-4.27 0-7.73-3.49-7.73-7.79s3.46-7.79 7.73-7.79z'/%3e%3cpath fill='%2321231e' d='M490.38 219.44h-1.01a7.3 7.3 0 0 0-4-6.5c-.99-.52-2.1-.78-3.23-.78v-1.02a8.25 8.25 0 0 1 8.24 8.3zm-8.24 8.3v-1.02a7.24 7.24 0 0 0 7.23-7.28h1.01a8.33 8.33 0 0 1-4.09 7.17 8.17 8.17 0 0 1-4.15 1.13zm-8.23-8.3h1a7.3 7.3 0 0 0 4 6.5c1 .52 2.11.78 3.23.78v1.02a8.25 8.25 0 0 1-8.23-8.3zm8.23-8.3v1.02a7.24 7.24 0 0 0-7.22 7.28h-1.01a8.34 8.34 0 0 1 3.9-7.06 8.19 8.19 0 0 1 4.33-1.24z'/%3e%3cpath fill='%23edb92e' d='M482.14 213.71a5.7 5.7 0 0 1 5.68 5.73c0 3.16-2.54 5.73-5.68 5.73s-5.68-2.57-5.68-5.73a5.7 5.7 0 0 1 5.68-5.73z'/%3e%3cpath fill='%2321231e' d='M488.33 219.44h-1.01a5.24 5.24 0 0 0-5.18-5.22v-1.02a6.2 6.2 0 0 1 6.19 6.24zm-6.19 6.24v-1.02a5.19 5.19 0 0 0 5.18-5.22h1.01a6.27 6.27 0 0 1-2.9 5.29c-.98.62-2.13.95-3.29.95zm-6.2-6.24h1.02a5.24 5.24 0 0 0 5.18 5.22v1.02a6.2 6.2 0 0 1-6.2-6.24zm6.2-6.24v1.02a5.19 5.19 0 0 0-5.18 5.22h-1.01a6.18 6.18 0 0 1 6.2-6.24z'/%3e%3cpath fill='%230c4076' d='M482.14 215.83a3.6 3.6 0 0 1 3.58 3.6c0 2-1.6 3.61-3.58 3.61a3.6 3.6 0 0 1-3.58-3.6c0-2 1.6-3.61 3.58-3.61z'/%3e%3cpath fill='%2321231e' d='M486.23 219.44h-1.01a3.1 3.1 0 0 0-3.08-3.1v-1.02a4.09 4.09 0 0 1 4.09 4.12zm-4.08 4.12v-1.02a3.08 3.08 0 0 0 3.07-3.1h1.01a4.14 4.14 0 0 1-4.08 4.12zm-4.09-4.12h1.01a3.1 3.1 0 0 0 3.08 3.1v1.02a4.09 4.09 0 0 1-4.09-4.12zm4.09-4.12v1.02a3.08 3.08 0 0 0-3.08 3.1h-1.01a4.14 4.14 0 0 1 4.09-4.12zm.01 40.98c-43.82.22-67.8 2.12-101.63 5.29-2.02.19-3.09.9-3.5 1.21a3.4 3.4 0 0 0-1.22 3c.1.95 1.12 3.15 4.9 2.76 23.59-2.41 63.74-5.43 101.35-5.2 33.73.21 66.84 1.66 100.88 5.14 3 .3 4.78-.36 5.4-2.3.54-1.69-.43-3.15-1.9-3.86-2-.97-4.65-.95-8.4-1.28-31.18-2.76-67.33-4.9-95.88-4.76zm.12 1.09c28.75-.19 65.2 1.72 95.75 4.64 3.75.35 7.13.62 8 1.2 1.03.71 1.85 1.35 1.31 2.78-.33.9-1.04 1.8-4.28 1.46-33.25-3.55-67.8-4.95-100.9-5.13a951.23 951.23 0 0 0-101 5.13c-3.79.42-4.15-1.06-4.32-1.8-.2-.95.12-1.56 1.1-2.28.44-.32.76-.57 2.78-.77 30.67-3.07 57.72-4.94 101.56-5.23z'/%3e%3c/g%3e%3cpath d='M314.58 301.17v271.32c0 48.56 18.82 92.64 49.17 124.58s72.25 51.75 118.4 51.75c46.14 0 88.04-19.8 118.39-51.74 30.36-31.95 49.17-76.03 49.17-124.58V301.19H314.57z' fill='%23C6363C'/%3e%3cpath fill='%23FFF' d='M313.39 300c.2 94.24-.38 188.5.29 282.73 2.19 42.57 19.72 84.27 49.2 115.14 3.19-4.32-7.18-9.2-9.02-14.05-27.63-34.67-40.25-79.69-38.11-123.7V302.37h332.78c-.2 93.41.38 186.84-.29 280.25-2.85 67.34-47.2 132-111.11 155.15a158.13 158.13 0 0 1-55 9.88c1.15 5.44 12.2.64 17.23 1.43 63.88-6.28 119.6-53.78 140.58-113.74 11.26-28.96 11.56-60.35 10.95-90.95V300h-337.5z'/%3e%3cg stroke='%2321231e' stroke-width='.99' fill='%23FFF'%3e%3cpath d='M483.67 734.79c1.46-.24 3.91.07 5.77-1.4 2.47-1.94 1.49-9.78 1.27-14.74-1.14-25.36-2.18-68.04-3.47-127.97a16.7 16.7 0 0 0-5.1.07 16.68 16.68 0 0 0-5.08-.07c-1.3 59.93-2.33 102.62-3.47 127.97-.22 4.96-1.2 12.8 1.27 14.75 1.86 1.46 4.31 1.15 5.77 1.39h3.04z'/%3e%3cpath d='M499.55 734.06c-1.47-.1-3.89.42-5.87-.86-2.64-1.71-2.85-9.74-3.08-14.7-1.16-25.35-3.51-67.83-7.65-127.64 2.08-.48 3.62-.47 5.08-.38l.7-.16c9.52 59.16 13.12 101.14 19.64 126.46.9 3.5 2.84 12.25-.17 15.1-1.72 1.62-4.2 1.54-5.62 1.9l-3.03.28z'/%3e%3cpath d='M518.2 731.39c-1.48.03-3.84.77-5.93-.33-2.78-1.46-2.66-9.47-3.9-14.28-6.53-25.32-10.12-67.3-19.65-126.5 2.02-.66 3.56-.8 5.02-.84l.2-.07c15.16 57.54 19.7 98.1 31.46 123.15 1.09 3.47 4.05 12.7 1.22 15.9-1.57 1.78-4.04 1.92-5.43 2.42l-2.99.55z'/%3e%3cpath d='M536.98 726.08c-1.46.17-3.93 1.54-6.12.65-2.91-1.18-3.37-9.75-5.46-14.2-11.82-25.18-16.35-65.99-31.66-123.95a16.73 16.73 0 0 1 4.91-1.34c1.33-.6 1.08-.92 3.19-1.23 17.8 57.24 23.58 97.06 40.37 121.76 2.7 3.99 4.69 11.98 2.85 14.53-1.38 1.92-3.83 2.3-5.16 2.94l-2.92.84zm-72.23 7.98c1.47-.1 3.89.42 5.87-.86 2.64-1.71 2.85-9.74 3.08-14.7 1.17-25.35 3.51-67.83 7.65-127.64a16.72 16.72 0 0 0-5.08-.38l-.7-.16c-9.52 59.16-13.12 101.14-19.64 126.46-.9 3.5-2.84 12.25.17 15.1 1.72 1.62 4.2 1.54 5.62 1.9l3.03.28z'/%3e%3cpath d='M446.09 731.39c1.47.03 3.84.77 5.93-.33 2.77-1.46 2.66-9.47 3.9-14.28 6.53-25.32 10.12-67.3 19.66-126.5-2.03-.66-3.57-.8-5.03-.84l-.2-.07c-15.16 57.54-19.7 98.1-31.46 123.15-1.08 3.47-4.05 12.7-1.21 15.9 1.56 1.78 4.03 1.92 5.42 2.42l2.99.55z'/%3e%3cpath d='M427.31 726.08c1.46.17 3.93 1.54 6.12.65 2.91-1.18 3.37-9.75 5.47-14.2 11.8-25.18 16.34-65.99 31.65-123.95a16.73 16.73 0 0 0-4.91-1.34c-1.33-.6-1.08-.92-3.19-1.23-17.8 57.24-23.58 97.06-40.36 121.76-2.71 3.99-4.7 11.98-2.86 14.53 1.38 1.92 3.83 2.3 5.16 2.94l2.92.84zm99.74-43.24c-1.34.08-3.36.9-5.46-.1-2.8-1.34-4.63-9.07-6.13-13.88-11.92-23.54-22.8-65.34-40.63-123.45 1.73-.73 3.1-.91 4.43-1.01 1.18-.52 2.45-.99 4.38-1.16 19.21 57.5 27.84 99.07 46.62 121.97 3.1 3.78 5.4 12.02 3.93 14.41-1.1 1.8-3.33 2.03-4.51 2.57l-2.63.65z'/%3e%3cpath d='M511.85 685.82c-1.34-.03-3.45.63-5.43-.54-2.63-1.55-3.56-9.4-4.5-14.3-4.8-25.05-13.66-67.1-26.24-126.12 1.8-.59 3.2-.66 4.53-.65 1.23-.42 2.55-.8 4.49-.81 14.87 58.66 18.3 102.58 32.37 125.13 2.57 4.1 4 12.4 2.26 14.66-1.3 1.7-3.56 1.75-4.79 2.2l-2.7.43z'/%3e%3cpath d='M496.38 687.58c-1.33-.13-3.5.35-5.34-.97-2.44-1.76-2.46-9.64-2.83-14.6-1.9-25.31-5.88-67.87-11.62-127.63 1.86-.44 3.26-.4 4.58-.3a13.5 13.5 0 0 1 4.57-.44c8.05 59.58 12.73 102.71 17.83 127.14 1.02 4.88 2.55 12.67.56 14.78-1.5 1.59-3.74 1.46-5.02 1.8l-2.73.22z'/%3e%3cpath d='M437.24 682.84c1.34.08 3.36.9 5.46-.1 2.8-1.34 4.63-9.07 6.13-13.88 11.92-23.54 22.8-65.34 40.63-123.45-1.73-.73-3.1-.91-4.43-1.01a13 13 0 0 0-4.38-1.16c-19.21 57.5-27.84 99.07-46.62 121.97-3.1 3.78-5.4 12.02-3.93 14.41 1.1 1.8 3.33 2.03 4.51 2.57l2.63.65z'/%3e%3cpath d='M452.44 685.82c1.34-.03 3.45.63 5.43-.54 2.63-1.55 3.56-9.4 4.5-14.3 4.8-25.05 13.66-67.1 26.24-126.12-1.8-.59-3.2-.66-4.53-.65a13.31 13.31 0 0 0-4.49-.81c-14.87 58.66-18.3 102.58-32.38 125.13-2.56 4.1-4 12.4-2.25 14.66 1.3 1.7 3.55 1.75 4.79 2.2l2.69.43z'/%3e%3cpath d='M467.92 687.58c1.33-.13 3.5.35 5.34-.97 2.44-1.76 2.46-9.64 2.84-14.6 1.9-25.31 5.87-67.87 11.61-127.63-1.86-.44-3.26-.4-4.58-.3a13.51 13.51 0 0 0-4.57-.44c-8.05 59.58-12.73 102.71-17.83 127.14-1.02 4.88-2.55 12.67-.56 14.78 1.5 1.59 3.74 1.46 5.02 1.8l2.73.22z'/%3e%3cpath d='M483.52 688.09c1.31-.24 3.53.07 5.2-1.4 2.23-1.93 1.35-9.78 1.15-14.74-1.03-25.36-1.96-68.04-3.13-127.98a13.6 13.6 0 0 0-4.6.07c-1.3-.21-2.68-.36-4.59-.07-1.16 59.94-2.1 102.62-3.12 127.98-.2 4.96-1.08 12.8 1.14 14.75 1.68 1.46 3.9 1.15 5.2 1.39h2.75z'/%3e%3cpath d='M516.54 647.97c-1.03.08-2.57.9-4.19-.1-2.14-1.34-3.54-9.07-4.69-13.88-9.12-23.54-17.45-65.34-31.12-123.45a8.18 8.18 0 0 1 3.4-1c.9-.53 1.87-1 3.35-1.17 14.72 57.5 21.33 99.07 35.7 121.97 2.38 3.78 4.15 12.02 3.02 14.41-.85 1.8-2.56 2.03-3.46 2.57l-2.01.65z'/%3e%3cpath d='M504.9 650.96c-1.03-.03-2.64.63-4.16-.54-2.01-1.55-2.72-9.4-3.44-14.3-3.68-25.05-10.47-67.1-20.1-126.12a8.1 8.1 0 0 1 3.46-.65 8.13 8.13 0 0 1 3.44-.81c11.4 58.66 14.03 102.58 24.8 125.13 1.97 4.1 3.06 12.4 1.73 14.66-1 1.7-2.72 1.75-3.67 2.2l-2.06.43z'/%3e%3cpath d='M493.05 652.72c-1.02-.14-2.68.35-4.09-.97-1.87-1.76-1.89-9.64-2.17-14.6-1.45-25.31-4.5-67.87-8.9-127.63 1.43-.44 2.5-.4 3.51-.3a8.06 8.06 0 0 1 3.5-.44c6.17 59.58 9.75 102.71 13.66 127.14.78 4.88 1.95 12.67.43 14.78-1.15 1.59-2.87 1.46-3.85 1.8l-2.09.22z'/%3e%3cpath d='M447.75 647.97c1.03.08 2.57.9 4.19-.1 2.14-1.34 3.54-9.07 4.69-13.88 9.12-23.54 17.45-65.34 31.12-123.45a8.18 8.18 0 0 0-3.4-1 8.25 8.25 0 0 0-3.35-1.17c-14.72 57.5-21.33 99.07-35.7 121.97-2.38 3.78-4.15 12.02-3.02 14.41.85 1.8 2.56 2.03 3.46 2.57l2.01.65z'/%3e%3cpath d='M459.39 650.96c1.03-.03 2.64.63 4.16-.54 2.01-1.55 2.72-9.4 3.44-14.3 3.68-25.05 10.47-67.1 20.1-126.12a8.09 8.09 0 0 0-3.46-.65 8.13 8.13 0 0 0-3.44-.81c-11.4 58.66-14.03 102.58-24.8 125.13-1.97 4.1-3.07 12.4-1.73 14.66 1 1.7 2.72 1.75 3.67 2.2l2.06.43z'/%3e%3cpath d='M471.25 652.72c1.02-.14 2.68.35 4.09-.97 1.87-1.76 1.89-9.64 2.17-14.6 1.46-25.31 4.5-67.87 8.9-127.63a8.05 8.05 0 0 0-3.51-.3 8.05 8.05 0 0 0-3.5-.44c-6.17 59.58-9.75 102.71-13.66 127.14-.78 4.88-1.95 12.67-.43 14.78 1.15 1.59 2.87 1.46 3.85 1.8l2.09.22z'/%3e%3cpath d='M483.2 653.23c1-.24 2.7.07 3.99-1.4 1.7-1.93 1.03-9.78.87-14.74-.78-25.36-1.5-68.04-2.4-127.98a8.02 8.02 0 0 0-3.51.08c-1-.22-2.06-.37-3.52-.08-.9 59.94-1.6 102.62-2.4 127.98-.15 4.96-.82 12.8.88 14.75 1.29 1.46 2.98 1.15 3.99 1.39h2.1z'/%3e%3cpath d='M474.88 559.13c-.08 4.25-.13 9.02-.16 13.91l-.05.02-10.59 2.2c-.02 4.83 11.92 55.43 18.07 55.43s18.08-50.63 18.06-55.46l-10.59-2.17-.05-.02c-.03-4.9-.08-9.66-.16-13.91-2.22 1.85-4.68 5.07-7.26 7.98-2.6-2.9-5.04-6.13-7.27-7.98z'/%3e%3c/g%3e%3cg id='c'%3e%3cpath stroke='%2321231E' stroke-width='.99' d='M412.13 584.52c-3.2.14-7.13 1.97-18.6 11.94-5.02 10.24-10.06 20.53-17.03 29.41-2.37 1.57-4.23 2.67-6.12 3.3-1.96.64-16.43.16-16.79-.45-4.5-4.09-11.38-1.17-9.08 3.14-1.79 1.7 2.14 7.9 5.3 5.32 2.9-2.36 12.98-.13 16.34-1.35-1.27 3.03-10.38 5-16.75 5.47-5.82.25-5.44 6.06-3.04 10.52 2.73 1.74.5-.46 1.48.82 2.6 3.87 8.18 3.36 8.37-.42.2-3.92 13.79-9.01 15.83-12.02-2.5 5.95-8.24 11.5-11.1 17.31-3.06 3.09-4.93 3.7-.96 9.92 4.4-.5 4.65-1.68 7.36.89 6.01-.66 6.98-2.45 6.01-7.21-1.03-5.04 3.18-14.14 4.58-16.71 1.29-2.38 1.6-4.84 2.86-6.33 2.18-2.58 12.57-7.75 15.23-6.33 4.9 2.61 8.64 1.03 9.25-3.72-1.58-1.22-.4-7.97-3.78-8.25-2.77-.24-4.41.62-6.96 2.7-4 3.28-6.07 5.03-7.39 4.66-3.12-.86 5.67-5.18 13.66-15.68 11.08-14.55 11.84-21.95 11.33-26.93z' fill='%23EDB92E'/%3e%3cuse xlink:href='%23b' transform='matrix(-1 0 0 1 801.63 0)'/%3e%3cpath stroke='%2321231E' stroke-width='.99' d='M345.18 634.54c-4.01-2.35-6.32-2.26-7.87-.5-.86.95-1.95.46-1.31-1.06 2.66-6.3 6.92-7.1 10.74-4.14 1.07 1 1.93 1.85 2.79 2.7-.64.94-3.83 2.27-4.35 3zm57.46-5.65c4.26-2.9 8.25-3.47 10.44-1.84 1.2.9 2.39.25 1.33-1.23-4.42-6.22-9.6-6.54-13.5-3.03-1.06 1.15-1.9 2.13-2.75 3.1 1.34 1.47 4.3 3.12 4.48 3zm-33.55 35.66c.13-.26-.98-5.44-2.71-7.06-1.35 1.08-2.86 2.04-4.29 3.52-4.26 4.46-4.24 11.01 2.42 16.73 1.64 1.41 2.39-.07 1.72-1.7-1.13-2.77.25-6.32 2.86-11.5zm-16.62-13.62c-3.96 1.64-5.32 3.73-5.18 6.46.08 1.5-.9 2.07-1.46.32-4.84-11.24.18-13.35 7.43-12.94.41 1.96-.62 6.09-.8 6.16h.01z' fill='%23EDB92E'/%3e%3cpath fill='%2321231e' d='m383.95 621.26 1.01.61c-.32.51-.34 1.18-.06 1.71a4.8 4.8 0 0 0 1.93 1.8l-.6 1.03a5.9 5.9 0 0 1-2.39-2.3 2.9 2.9 0 0 1 .11-2.85zm6.5.82-.74.92c-.81-.65-1.6-1.34-2.5-1.85-.4-.2-.87-.43-1.31-.26-.43.2-.7.6-.94.98l-1.01-.6c.4-.66.93-1.31 1.69-1.54.7-.22 1.43 0 2.05.33.95.52 1.77 1.23 2.62 1.9l.15.12z'/%3e%3cpath fill='%2321231e' d='m387.33 617.58 1.01.61c-.32.51-.34 1.18-.06 1.71.41.8 1.17 1.35 1.93 1.8l-.6 1.03a5.9 5.9 0 0 1-2.39-2.3 2.9 2.9 0 0 1 .11-2.85zm6.5.82-.74.92c-.81-.65-1.6-1.34-2.5-1.85-.4-.2-.87-.43-1.31-.26-.43.2-.7.6-.94.98l-1.01-.6c.4-.66.92-1.3 1.67-1.53.7-.23 1.46 0 2.08.33.97.53 1.8 1.25 2.67 1.94l.09.07z'/%3e%3cpath fill='%2321231e' d='m390.88 612.83 1.06.55c-.43.8-.4 1.8 0 2.61a6.08 6.08 0 0 0 2.1 2.26l-.68.98a6.8 6.8 0 0 1-2.68-3.17 4.07 4.07 0 0 1 .2-3.23zm7.14 1.1-.82.87c-.89-.83-1.74-1.72-2.76-2.4-.38-.25-.84-.52-1.31-.4-.52.2-.81.71-1.08 1.16-.06.15-.12.28-.27.14l-.9-.47c.4-.75.89-1.52 1.68-1.89a2.3 2.3 0 0 1 1.99.14c.97.5 1.76 1.25 2.55 1.98l.92.87z'/%3e%3cpath fill='%2321231e' d='m394.82 607.72 1.07.52c-.49 1-.43 2.22.07 3.2.49 1 1.3 1.78 2.18 2.43l-.7.97a7.46 7.46 0 0 1-2.87-3.67 4.72 4.72 0 0 1 .25-3.45zm7.55 1.27-.85.84c-.95-.95-1.86-1.95-2.95-2.74-.4-.26-.89-.57-1.39-.42-.53.22-.84.76-1.11 1.24-.08.08-.1.33-.22.31l-1.03-.5c.4-.82.91-1.68 1.76-2.1a2.3 2.3 0 0 1 2.09.14c1.03.55 1.86 1.4 2.69 2.2l1.01 1.03z'/%3e%3cpath fill='%2321231e' d='m399.15 602.61 1 .63a2.98 2.98 0 0 0-.37 2.48 7.24 7.24 0 0 0 2.23 3.13l.45.4-.76.9a9.51 9.51 0 0 1-2.94-3.75 4.19 4.19 0 0 1 .39-3.79zm7.53 1.43-.87.8c-.88-.92-1.72-1.89-2.73-2.67-.42-.3-.93-.63-1.46-.46-.6.25-.99.82-1.35 1.34-.07.21-.19.19-.33.06l-.8-.5a4.84 4.84 0 0 1 1.94-1.95c.72-.34 1.57-.17 2.22.24 1.03.62 1.84 1.53 2.67 2.39l.7.75z'/%3e%3cpath stroke='%2321231E' stroke-width='.99' d='m462.62 580.6-9.49-5.38c-4 2.87-6.95 13.52-.12 22.22 8.5 10.84 11.94 18.7 14.02 27.48 6.2-7.93 8.32-16.27 4.39-24.4-5.3-10.98-8.75-17.17-8.8-19.92z' fill='%23FFF'/%3e%3cpath stroke='%2321231E' stroke-width='.99' d='m470.37 573.01-9.49-5.38c-4 2.87-12.33 13.18-5.51 21.88 8.5 10.84 17.33 19.05 19.41 27.82 6.2-7.93 8.83-16.27 4.9-24.4-5.3-10.98-9.26-17.17-9.31-19.92z' fill='%23FFF'/%3e%3cpath stroke='%2321231E' stroke-width='.99' d='m449.43 569.16-9.49-5.38c-4 2.87-6.95 13.52-.12 22.22 8.5 10.84 11.94 18.7 14.02 27.48 6.2-7.93 8.32-16.27 4.4-24.4-5.31-10.98-8.76-17.17-8.81-19.92z' fill='%23FFF'/%3e%3cpath d='M405.49 468.99c.18 8.68-1.36 66.56-1.84 74.74-.48 8.14-4.1 13.7-7.94 16.88-3.52-4.85-5.63-11.4-6.13-19.16-.26-3.96.47-58.73.78-70 6.48-17.15 11.29-17.8 15.13-2.46z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='M404.14 543.76c-1.71.36-.66-1.76-.86-2.77.8-23.27 1.45-46.54 1.72-69.82-.46-1.1.48-3.37.99-1.56-.15 21.32-.82 42.63-1.45 63.93-.12 3.4-.22 6.82-.4 10.22zm-8.84 17.14c1.2-.72-.38-.73 1.29-1.76 4.12-4.02 6.25-9.75 6.56-15.44 1.72-.36.65 1.74.7 2.74-.8 5.56-3.46 10.94-7.83 14.55l-.72-.09zm.72.1zm-6.94-19.52c1.6-.56.88 1.54 1.22 2.49.66 5.78 2.36 11.58 5.8 16.35-1.1 1.38-1.62-.98-2.29-1.71-3-5.2-4.34-11.19-4.73-17.13zm.8-70.2c1.64-.01.7 1.54.9 2.79-.37 22.16-.76 44.32-.74 66.48.16 1.88-1.66.54-1-.83.02-22.76.37-45.52.81-68.27l.04-.16zm-.03.17zm16.13-2.47c-1.6.63-1.1-1.41-1.68-2.46-.97-2.76-1.69-6.08-4.24-7.82-2.2-.75-3.66 1.74-4.73 3.25-1.89 3.03-3.23 6.36-4.52 9.69-1.8-.2.01-2.04.15-3.1 1.66-3.68 3.14-7.78 6.4-10.37 1.85-1.5 4.33-.12 5.27 1.75 1.7 2.76 2.56 5.95 3.35 9.06zm-.01-.1z'/%3e%3cpath d='m367.87 454.83-2.46 79.58c-.77 7.06 8.42 49.08 13.45 57.36 12.43-5.31 15.06-33.82 12.72-61.59-2.34-27.77.39-51.76 2.29-56.75.16-6.28-.9-12.84-.96-19.38-7.92.47-17.12.3-25.04.78z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m364.91 534.4 2.46-79.58c2-.2.46 2.96.86 4.28l-2.33 75.37-.99-.07zm1 .03zm12.74 56.89c.72 2.28-1.44-1.1-1.58-2.06-4.5-11.78-7.16-24.19-9.73-36.52-1.07-6.07-2.51-12.18-2.43-18.38 1.9-.1.5 2.75 1.12 4 1.78 14.12 5.06 28.04 8.94 41.72 1.22 3.88 2.34 7.85 4.3 11.44l-.62-.2zm.4.91zm12.02-62c1.94-.46.81 2.7 1.3 3.94.82 14.43.94 29.2-2.94 43.25-1.78 5.79-4.55 12.14-10.39 14.82-1.04-1.58 2.04-1.67 2.72-2.92 5.79-5.65 7.46-14.02 8.77-21.69 1.79-12.37 1.54-24.97.54-37.4zm2.3-56.81c2.04-.3-.2 2.5.07 3.68-2.58 15.62-2.63 31.57-1.79 47.34.12 1.9.26 3.8.41 5.7-1.93.46-.8-2.7-1.29-3.93-.99-16.22-.97-32.62 1.58-48.71.23-1.3.61-3.11 1.01-4.08zm.98.02zm-1.42-18.89c.03-2.28.78 1.04.54 1.94.23 5.65 1.02 11.29.88 16.95-1.75.4-.67-1.92-1-2.96-.14-5.48-.9-10.93-.94-16.42l.52.5zm-.05-1zm-24.52 1.3c-2.37-.3 1.6-.81 2.5-.66 7.34-.3 14.69-.2 22.02-.63.44 1.9-2.56.75-3.75 1.17-7.08.26-14.17.19-21.24.6l.47-.48zm-1-.03zm.5.01zm-.5-.01z'/%3e%3cpath d='m353.13 467.85 1.69 79.6c-.4 7.1 10.96 48.54 16.4 56.54 12.62-9.78 10.08-49.8 8.15-61.91-3.85-24.13-3.2-52.08-1.87-56.62-.16-6.29-.32-13.8-.72-20.34l-23.65 2.73z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m354.32 547.47-1.69-79.6c2-.3.62 2.96 1.09 4.27l1.6 75.35-1-.02zm1-.02zm15.6 56.16c1.16 2.08-1.5-.97-1.6-2.03-5.18-11.7-8.52-24.13-11.75-36.49-1.34-5.82-3.03-11.66-3.25-17.66 1.9-.2.65 2.72 1.33 3.95 2.52 14.03 6.52 27.76 11.12 41.24 1.42 3.78 2.73 7.65 4.87 11.1l-.72-.11zm.61.78zm7.35-62.23c1.9-.59.98 2.68 1.52 3.87 1.41 14.25 1.82 28.83-1.07 42.93-1.3 5.62-3.2 11.62-7.8 15.44-1.41-1.3 1.64-2.18 2-3.58 4.88-7.28 5.82-16.33 6.6-24.84.71-11.27.33-22.64-1.25-33.82zM377 485.48c1.95-.45.16 2.24.48 3.35-1.13 15.63-.34 31.36 1.49 46.9.26 2.1.56 4.19.89 6.28-1.9.6-1-2.65-1.57-3.83-2.1-16.23-2.93-32.68-1.84-49.02.08-1.12.35-3.11.55-3.68zm1-.03zm-1.17-19.83c-.08-2.3.85 1.06.58 1.97.3 5.95.43 11.9.59 17.86-1.76.48-.76-1.96-1.07-3-.15-5.77-.3-11.53-.65-17.29l.55.46zm-.11-.99zm-23.6 3.72c-.5-1.88 2.32-.87 3.48-1.4l20.12-2.31c.56 1.86-2.44.9-3.58 1.41l-20.01 2.3zm.07 0zm-.06-1zm-.5.52z'/%3e%3cpath d='m342.19 486.7 20.91-.53c-1.78 8.68-.35 35.65 3.25 56.21 3.39 19.28 8.11 69.27-11.96 81.28-12.44-26.38-2.97-52.02-9.24-74.92-4.9-24.35-5.86-44.68-2.96-62.04z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m363.12 486.66-20.91.53c-.3-2 2.93-.63 4.23-1.1l16.65-.42c.39.5.77.55.03.99zm-.03-1zm3.76 56.63c-1.89.65-1.04-2.6-1.63-3.76-2.29-15.57-3.8-31.33-3.21-47.08.11-1.8.26-3.61.61-5.39 1.9.06.16 2.63.49 3.9-.82 14.52.55 29.07 2.37 43.46.4 2.97.85 5.93 1.37 8.87zm-12.9 81.58c.67-.58 1.03-1.43 2.82-2.59 6.99-6.34 9.4-16.03 10.84-25.02 2.42-17.32 1.17-34.96-1.47-52.19-.8-2.82 1.52-1.46 1.12.68 2.6 17.53 3.82 35.49 1.12 53.08-1.62 9.1-4.39 18.92-11.87 24.98-.84.37-1.6 1.65-2.56 1.06zm.7.21zm-9.98-75.25c1.88-.83 1.22 2.5 1.87 3.61 3.48 18.27-.6 37.09 3.2 55.33a67.5 67.5 0 0 0 5.1 15.67c-1.66 1.1-1.7-2.35-2.53-3.38-5.9-14.45-5.48-30.33-5.24-45.65.06-8.57-.13-17.26-2.4-25.58zm0 .04zm-2.49-62.67c.52.9.38 1.83.01 3.85-2.6 19.54-.36 39.36 3.46 58.59-1.88.68-1.1-2.6-1.74-3.76-3.54-19.15-5.37-38.93-2.2-58.27l.47-.41zm-.47.41zm.49.09zm-.5-.09z'/%3e%3cpath d='M422.15 454.38c-.08 8.68-3.37 66.48-4.1 74.64-.73 8.13-4.5 13.56-8.45 16.62-3.38-4.96-5.28-11.57-5.55-19.34-.13-3.97 2.25-58.7 2.9-69.94 7-16.94 11.82-17.44 15.2-1.98z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='M418.54 529.07c-1.72.3-.6-1.78-.78-2.8 1.51-23.23 2.87-46.47 3.84-69.72-.42-1.13.58-3.36 1.03-1.53-.8 21.44-2.12 42.86-3.4 64.27-.22 3.26-.42 6.52-.69 9.78zm-9.35 16.85c1.22-.68-.37-.74 1.33-1.72 4.25-3.89 6.56-9.55 7.03-15.22 1.73-.3.6 1.76.63 2.76-.98 5.52-3.8 10.83-8.28 14.3l-.71-.12zm.71.11zm-6.35-19.72c1.62-.57.85 1.4 1.13 2.32.47 5.87 2 11.8 5.33 16.73-1.16 1.35-1.6-1.02-2.24-1.78-2.85-5.28-4-11.32-4.22-17.27zm2.94-70.14c1.64.04.65 1.56.81 2.82-1.05 22.06-2.1 44.13-2.75 66.21.39 1.86-1.7 1.1-.99-.44.71-22.81 1.76-45.62 2.89-68.42l.04-.17zm-.04.17zm16.2-1.95c-1.63.57-1.07-1.45-1.61-2.52-.89-2.8-1.5-6.12-4-7.95-2.17-.82-3.72 1.62-4.83 3.1-1.98 2.97-3.42 6.25-4.8 9.54-1.8-.27.07-2.04.24-3.09 1.76-3.63 3.37-7.68 6.7-10.16 1.9-1.45 4.34.02 5.22 1.91 1.6 2.81 2.38 6.03 3.08 9.17zm-.02-.11zm-.48.1zm.48-.1z'/%3e%3cpath d='M384.99 407.23c-.56 18.65-.87 59.1-.76 62.55.27 7.77 3.33 17.67 6.71 22.63 3.94-3.06 7.72-8.5 8.45-16.62.6-6.68.8-39.48.9-55.92a70.63 70.63 0 0 1-12.07-9.72s-3.1-2.76-3.23-2.92z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='M384.72 469.76c-1.49.52-.9-1.15-1.02-2.05.06-20.17.27-40.34.79-60.5 1.53-.42.82 1.27.93 2.2-.46 20.03-.71 40.07-.7 60.1v.25zm5.9 22.25c1.3 1.26-.56.7-.74-.33-3.54-6.28-5.45-13.41-6.08-20.56-.71-1.16 1.03-2.11.95-.65a50.6 50.6 0 0 0 5.76 20.33c.1.54 1.63 1.74.12 1.21zm.62.8zm7.64-17.06c1.53-.34.78 1.23.74 2.13-.88 5.75-3.73 11.32-8.38 14.92-1.28-.88.38-1.4.94-2.14 4.05-3.88 6.23-9.38 6.7-14.91zm1.14-55.46c.8-1.78.85.5.76 1.35-.16 17.33-.13 34.67-.76 52-.22.82.41 2.7-1.03 2.12-.15-1.14.13-2.69.11-3.99.54-17.3.55-34.6.7-51.9l.22.42zm.54-.84zm-12.35-9.8c-.17 1.94.32-.77 1.14.94a71.3 71.3 0 0 0 11.2 8.86c-.4 1.52-1.46.1-2.27-.32a69.35 69.35 0 0 1-10.43-8.63l.36-.85zm-.36.85c-1.9-.95 1.09-1.4.01-.03v.03zm-2.37-3.26c-1.67.34-.24-.8.29.05l2.75 2.47c-.52 1.95-.09-1.14-.68.73-1.08-.98-2.2-1.93-3.25-2.95l.89-.3zm-1-.03c-.65-2.06 1.4-.63.39-.12l-.38.12z'/%3e%3cpath d='M399.93 419.25c-.37 20.09-.15 51.74-.07 54.3.27 7.78 2.18 14.4 5.55 19.35 3.95-3.06 8.1-8.68 8.84-16.8.44-5 1.83-26.46 1.96-42.92-5.3-1.67-11.99-10.37-16.28-13.93z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='M400.36 473.54c-1.2.42-1.05-.58-1.02-1.43-.16-17.63-.19-35.25.1-52.87 1.4-.43.9.99.96 1.87-.24 17.48-.24 34.96-.04 52.43zm4.75 18.97c1.27 1.14-.43.82-.67-.2-3.47-5.6-4.84-12.23-5.07-18.74 1.33-.48.98.84 1.08 1.7.41 6.09 1.92 12.25 5.37 17.35l-.71-.11zm.6.78zm8.04-17.24c1.43-.33.85 1.03.76 1.91a24.17 24.17 0 0 1-8.8 15.33c-1.09-.75-.04-1.22.6-1.8a23.62 23.62 0 0 0 7.44-15.44zm2.31-42.4c.23-1.71.89-.15.64.77-.22 13.92-.9 27.83-1.96 41.71-1.38.32-.88-.95-.85-1.82.98-13.7 1.67-27.41 1.83-41.14l.34.48zm.3-.95zm-15.93-13.44c-1.78.28-.09-.88.47.17 4.61 4.15 8.4 9.31 13.79 12.53.57.53 2.18.41 1.44 1.48-.54.38-1.66-.56-2.34-.84-5.48-3.44-9.34-8.78-14.18-12.97l.82-.37zm-1-.02c-.62-1.72 1.61-.31.11-.05l-.1.05z'/%3e%3cpath d='m387.08 405.55-14.24-20.52c-2.88 10.12-6.39 82.77-2.27 88.72a36.53 36.53 0 0 0 6.45 19.32c3.94-3.06 9.82-8.56 8.13-16.78-1.7-8.23.2-62.26 1.93-70.73z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m373.25 384.74 14.24 20.53c-1.24 1.4-1.74-1.31-2.6-2l-12.46-17.96c-.31-.72.42-.38.82-.57zm-.89.15zm-1.29 88.84c-1.41.69-1.25-.68-1.7-1.95-1.39-8.26-1.12-16.68-1.15-25.02.27-18.27 1.03-36.56 2.97-54.73.3-2.4.58-4.8 1.17-7.14 1.78.02.25 1.97.4 3.04-1.9 13.6-2.48 27.34-3.1 41.04-.4 12.95-.91 25.95.13 38.89.23 1.99.41 4.04 1.28 5.87zm-.09-.26zm5.74 19.2c1.32 1.71-1.03.02-1.17-.97a36.76 36.76 0 0 1-5.47-17.93c1.64-.53.82 1.58 1.18 2.53.63 5.9 2.84 11.6 6.17 16.48l-.71-.11zm.6.79zm7.34-17.07c1.6-.82 1.08 1.6 1.28 2.56.16 6.03-4.03 11.08-8.61 14.5-1.37-.98.68-1.53 1.26-2.32 4.26-3.6 7.4-9 6.07-14.74zm2.42-70.34c.08-2.2.7.77.17 1.61-1.45 14.27-1.8 28.62-2.16 42.95-.05 8.38-.42 16.8.47 25.15-.64 1.7-1.37-.65-1.2-1.7-.75-12.66-.23-25.34.14-38 .45-10.04.7-20.12 2-30.1.03-.93.2-.26.58.1zm0-1zm0 0zm0 1z'/%3e%3cpath d='M357.88 451.24c-.65 11.24-1.1 18.85-.97 22.81.27 7.78 2.18 14.39 5.55 19.35 3.95-3.06 8.96-8.48 8.45-16.62-2-31.46 1.45-61.09 5.45-89.57-3.38-2.48-9.07-5.16-12.45-7.64-6.75 38.36-9 62.16-6.03 71.67z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='M357.41 474.03c-1.72.6-.79-1.64-1.01-2.58.14-6.76.62-13.5.98-20.24 1.82-.36.58 2 .82 3.05-.33 6.59-.87 13.18-.79 19.77zm4.75 18.97c1.33 1.73-1.06 0-1.15-1-3.12-5.43-4.37-11.73-4.6-17.93 1.67-.55.83 1.6 1.16 2.56.5 5.79 2.02 11.63 5.3 16.48l-.71-.11zm.6.79zm7.65-16.98c1.7-.6.85 1.71.96 2.68-.44 5.8-4.08 10.86-8.6 14.3-1.4-1 .71-1.55 1.26-2.37 4.1-3.68 6.84-9 6.38-14.61zm5.66-89.2c1.23-1.94.54 1.41.43 2.21-4.05 28.76-6.98 57.86-5.1 86.92-1.8.57-.79-2.07-1.17-3.12-1.55-28.94 1.57-57.87 5.64-86.49l.2.47zm.59-.81zm-12.26-7.15c-2.13-.56 1-.36 1.51.67 3.53 2.24 7.34 4.04 10.75 6.48-.67 1.7-2-.56-3.06-.83-3.3-2.03-6.82-3.74-9.98-6l.78-.32zm-.98-.17zm-5.9 71.4c1.43 1.69-1.04-.28-.62-1.5-1.59-9.29-.52-18.77.32-28.1 1.5-14 3.78-27.92 6.2-41.8 1.91-.1.26 2.28.42 3.4-2.97 17.72-6 35.5-6.71 53.48-.07 4.92-.14 9.95 1.22 14.73l-.82-.2zm.71.7zm0 0zm-.7-.7z'/%3e%3cpath d='m343.64 471.82 3.86 14.63c.27 7.78 5.07 14.2 8.45 19.16 3.94-3.06 7.52-8.1 6.51-16.18-5.78-46.47-3.71-77.2 6.03-115.07-22.03 15.04-32.25 46.78-24.85 97.46z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m347.02 486.58-3.86-14.63c1.83-.77 1.27 2.57 2 3.7.94 3.6 1.92 7.18 2.84 10.79l-.98.14zm.96-.25zm7.66 18.89c1.26 1.86-1.17-.34-1.42-1.26-3.61-5.2-7-11-7.22-17.49 1.83-.43.77 2.32 1.42 3.43 1.2 5.76 4.65 10.67 7.94 15.43l-.72-.11zm.61.78zm5.72-16.51c1.86-.58.9 2.39 1.14 3.53a17 17 0 0 1-6.86 12.98c-1.42-1.25 1.5-2 2-3.23 3.23-3.56 4.38-8.59 3.72-13.28zm6.8-114.72c-.54-2.06.49 1.56-.53 2.62-6 23.5-9.08 47.77-8.41 72.03.3 13.36 1.49 26.69 3.12 39.94-1.92.52-.9-2.71-1.47-3.93-3.31-27.64-4.08-55.8.6-83.34a318.5 318.5 0 0 1 5.93-27.86l.77.54zm-.56-.82zm-24.09 97.74c-1.88.88-.91-2.5-1.49-3.58-2.6-20.5-3.22-41.8 2.87-61.76 3.93-12.8 11.49-24.83 22.71-32.4 1.36 1.42-1.8 2-2.51 3.11-12.5 9.87-19.23 25.28-21.95 40.64-3.22 17.81-2.15 36.25.37 54zm-.96.26zm.48-.13zm-.48.13z'/%3e%3cpath d='m344.77 486.22-20.22-6.72c-2.58 20.22 1.38 45.62 6.83 79.12 4.67 28.76 2.21 51.52-1.36 66.12 21.57-2.96 30.7-30.77 19.88-83.1a234.62 234.62 0 0 1-5.13-55.42z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m324.71 479.03 20.22 6.72c-.43 2.01-3.14-.5-4.58-.48l-15.95-5.3c-.6-.66-.25-.54.31-.94zm-.65.4zm7.81 79.1c-1.96.57-1.02-2.88-1.67-4.13-3.3-21.25-7.2-42.58-6.91-64.16.08-3.61.32-7.22.77-10.8 2.02-.03.2 2.93.56 4.26-1.44 20.22 1.95 40.37 4.92 60.31.76 4.85 1.55 9.69 2.33 14.53zm-1.91 65.71c-.27 2.38-.26-2.1.36-3.03 4.3-20.54 3.9-41.86.57-62.51 1.94-.6 1.02 2.78 1.61 4 2.89 20.61 2.86 41.84-2 62.16l-.54-.62zm.13 1zm19.33-83.5c1.96-.62 1.12 2.98 1.84 4.22 3.18 17.46 5.42 35.58 1.97 53.18-1.97 9.49-6.59 19.5-15.76 23.9a25.32 25.32 0 0 1-7.38 2.2c-.54-1.95 2.82-1.01 3.97-1.92 9.15-2.75 14.81-11.59 17.18-20.39 4.2-15.36 2.87-31.57.7-47.14-.72-4.7-1.57-9.38-2.52-14.04zm-4.8-55.05c.92-2.26.57 2.35.6 3.29a234.43 234.43 0 0 0 5.17 51.56c-1.87.7-1.11-2.61-1.77-3.75a235.03 235.03 0 0 1-4.34-51.58l.17.24.17.24zm.31-.94z'/%3e%3cpath fill='%2321231e' d='M343.56 584.05c.43 0 1.63-.12.95.49-.38.31-.98 0-.95-.49zm-4.3-40.2c1.48-.85 1.32.82 1.57 1.83 2.5 12.64 4.32 25.5 3.91 38.41-1.67.48-1.07-1.16-1.13-2.21.14-12.8-1.8-25.53-4.35-38.03zm-5.41-50.21c1.63-.55 1.12 1.08 1.2 2.13.22 16.07 2.1 32.1 5.37 47.84-1.51.86-1.32-.87-1.6-1.89a251.66 251.66 0 0 1-4.97-48.08zm1.18-.01c-.44.01-1.63.18-.97-.45.37-.33.98-.04.97.45z'/%3e%3cpath d='m343.96 367.25 13.27 2.23c-.65 2.85-4.02 20.32-4.63 23.3-4.96 24.27-8.24 52.87-4.48 84.25 1.39 11.64 3.86 21.16 7.48 28.51-14.56-1.65-23.9-15.87-22.69-40.67-2.53-28.96-1.41-51.99 3.27-69.3 1.38-5.08 5.8-24.22 7.78-28.32z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m357.15 369.98-13.27-2.23c.08-2.02 3-.06 4.36-.28l9.07 1.53c.45.58.54.6-.16.98zm.16-.98zm-4.22 23.88c-1.88.02-.22-2.32-.32-3.48 1.32-6.68 2.58-13.36 3.98-20.02 1.86 0 .2 2.28.3 3.44-1.35 6.68-2.63 13.38-3.96 20.06zm-4.48 84.1c-1.92.5-.9-2.72-1.43-3.96-2.76-26.82-.5-53.98 4.93-80.34 2 .1.02 2.84.2 4.16-5.13 26.34-6.93 53.44-3.7 80.13zm6.93 29.07c.3-.88-1.26-.69-1.6-2.95-3.5-8.26-5.23-17.14-6.32-26 1.93-.52.92 2.71 1.53 3.92 1.26 8.34 3.19 16.69 6.9 24.31l-.5.72zm.5-.72zm-23.62-40.4c2-.57.47 2.54.9 3.68-.02 10.42 1.68 21.76 8.95 29.75a21.38 21.38 0 0 0 13.38 6.7c.05 2.02-2.88.18-4.15.17-8.95-2.5-14.83-10.9-17.1-19.55-1.9-6.72-2.3-13.86-1.98-20.76zm.99-.1zm2.3-69.4c1.95.23-.12 2.78 0 4.12-4.73 21.41-4.08 43.57-2.3 65.29-1.95.45-.81-2.79-1.33-4.03-1.54-21.77-1.91-44.1 3.63-65.37zm8.33-28.66c.3 1 .05 1.58-.64 3.37-2.62 8.42-4.5 17.04-6.74 25.56-1.92-.16.05-2.59-.04-3.83 2.2-8.3 3.84-16.79 6.9-24.83.17-.1.35-.18.52-.27zm-.53.27zm.45.22zm-.45-.22z'/%3e%3cpath d='m335.92 370.39 6.52 7.44c-1.85 1.32 1.28 7.03-.4 18.1-1.1 6.3-4.84 13.7-5.61 21.73-2.57 26.6-2.58 59.9 5.42 81.19-14.56-1.65-19.56-14.85-20.03-39.68-.4-20.52-.46-44.72 4.69-72.66 1.04-6.53 4.18-11.74 9.41-16.12z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m342.06 378.16-6.52-7.44c1.27-1.5 2.23 1.64 3.35 2.31 1.22 1.6 3 3.03 3.89 4.74.05.72-.23.4-.72.39zm.75-.66zm-.29 18.52c-1.96.11-.26-2.44-.59-3.63.5-4.48-.44-8.94-.57-13.4-.23-1.34 1.62-2 1.13-.46-.44 3.16.67 6.36.54 9.56a45 45 0 0 1-.5 7.93zm0-.01zm-5.6 21.7c-1.96.13-.32-2.63-.42-3.86 1.17-6.14 3.86-11.86 5.04-18 1.85-.1.3 2.16.29 3.24-1.71 6.19-4.3 12.18-4.9 18.62zm4.87 81.63c.23-.9-1.1-.66-1.3-2.86-5.26-16.46-6.12-33.93-6.07-51.1.1-9.26.63-18.53 1.51-27.76 1.95-.13.36 2.65.65 3.91-1.65 20.8-2.02 41.9 1.75 62.5a91.4 91.4 0 0 0 3.98 14.64l-.52.67zm.52-.67zm-21-39.49c1.93-.35.67 2.63 1.12 3.85.51 9.18 1.17 18.87 5.94 26.98 2.8 4.8 8.03 7.87 13.53 8.35.14 1.89-2.4.37-3.55.33-6.86-1.62-11.6-7.7-13.62-14.18-2.71-8.14-3.18-16.82-3.41-25.33zm4.7-72.75c1.97-.12.22 2.39.39 3.55-4 22.82-4.64 46.07-4.09 69.18-1.91.37-.65-2.56-1.06-3.76-.46-23.06.52-46.3 4.77-68.97zm.99.16zm9.3-16.53c-.66.8-.26 1.18-1.9 2.37a24.78 24.78 0 0 0-7.4 14.16c-1.83.12-.36-2.1-.33-3.18 1.42-5.29 4.73-9.94 8.93-13.4l.7.05zm-.7-.05z'/%3e%3cpath d='m372.29 389.97-13.44-1.57c-2.46 12.7-4.35 21.69-4.81 26.21-.9 8.88 1.8 17.02 4.87 23.08 4.95-2.99 7.25-9.51 9.34-18.66 2.09-9.19 2.6-19.2 4.04-29.06z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m358.91 387.91 13.44 1.57c.09.86-.26 1.18-1.09.87l-12.46-1.45c-.45-.54-.55-.61.11-.99zm-.55.4zm-3.83 26.36c-.79.07-1.2-.17-.89-.98 1.02-7.23 2.61-14.37 3.97-21.54l.75-3.84c.87-.02 1.16.34.8 1.15-1.5 7.88-3.23 15.71-4.44 23.64l-.19 1.57zm4.12 22.6c.66.67.4 1.16-.28.45-3.59-7.1-5.64-15.17-4.83-23.15.83-.1 1.2.2.91 1.02-.56 7.58 1.48 15.16 4.9 21.88l-.7-.2zm.51.85zm8.6-19.2c.78.04 1.19.3.77 1.08-1.24 5.07-2.52 10.34-5.62 14.65a13.24 13.24 0 0 1-3.75 3.47c-.58-.62-.52-1.07.28-1.38 3.6-2.68 5.29-7.06 6.6-11.2.67-2.18 1.21-4.4 1.72-6.62zm4.53-28.45c-.23-.95.28-1.18.46-.21-1.4 9.62-1.88 19.38-4.02 28.88-.78-.03-1.19-.3-.78-1.08 1.98-9.28 2.47-18.79 3.85-28.16l.49.57zm0-1c.97-.25.45 1.11 0 0zm0 0c.04.62-.07 1.49-.02.35l.02-.35zm0 1z'/%3e%3cpath d='m407.15 418.58-11.92.12c-.41 10.97-.7 18.38-.51 22.25.38 7.57 2.27 13.99 5.5 18.8 3.63-3.03 7.05-8.36 7.6-16.28.54-7.96-.6-16.43-.67-24.89z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m395.23 418.2 11.92-.12c.02.54.19 1.25-.61 1l-11.3.12c-.54-.5-.61-.52-.01-1zm-.5.48c-.17-.77.94-.5.05-.04l-.04.04zm.5 22.23c-.5.01-1.24.27-1.02-.5-.14-6.28.22-12.56.42-18.83l.1-2.9c.56.01 1.27-.13.98.66-.22 6.9-.62 13.78-.52 20.68l.03.9zm4.68 18.44c.36.42.98 1 .02.68-.44-.31-.66-.96-.99-1.41-3.1-5.34-4.4-11.54-4.71-17.66.55-.03 1.24-.23 1.03.58.4 6.26 1.86 12.64 5.38 17.92l-.73-.1zm.64.77c-.3.8-1.14-.39-.29-.04l.29.04zm6.78-16.7c.54.04 1.26-.08.94.7-.5 6.02-3.01 12.07-7.72 16-.35-.42-.93-.85-.17-1.17 4.38-3.91 6.58-9.76 6.95-15.52zm-.17-24.35c0-.55-.13-1.38.44-.56.14 1.09.06 2.27.13 3.4.26 7.19 1.06 14.38.59 21.58-.55-.03-1.27.1-.96-.69.44-8.08-.64-16.14-.7-24.22l.5.5zm0-1c.78-.23.54.95.05.06l-.05-.06z'/%3e%3cpath d='m419.99 424.24-11.91.54c-.03 10.97-.07 18.4.26 22.25.65 7.55 2.76 13.9 6.16 18.59 3.51-3.15 6.75-8.6 7.02-16.53.26-7.97-1.16-16.4-1.53-24.85z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m408.06 424.28 11.91-.54c.04.55.23 1.25-.58 1.02l-11.29.51c-.52-.39-.59-.57-.04-.99zm-.48.5c-.2-.77.92-.53.04-.05l-.04.05zm1.26 22.2c-.5.03-1.22.3-1.03-.47-.36-6.42-.21-12.86-.23-19.28v-2.45c.55-.01 1.26-.18 1 .63.02 6.83-.13 13.67.18 20.5l.08 1.07zm5.33 18.26c.38.42 1.01.96.04.68-.45-.3-.7-.95-1.05-1.4-3.28-5.22-4.78-11.36-5.3-17.45.54-.06 1.23-.28 1.04.54.61 6.24 2.3 12.56 6 17.71l-.73-.08zm.66.75c-.27.8-1.16-.35-.28-.04l.28.04zm6.2-16.92c.55 0 1.26-.13.96.66-.28 6.04-2.59 12.17-7.16 16.26-.36-.4-.96-.81-.2-1.17 4.23-4.06 6.23-9.98 6.4-15.75zm-1.04-25.33c0 .56-.12 1.38.44.54.16.2.07 1.06.14 1.51.44 7.77 1.69 15.51 1.45 23.31-.55 0-1.26.13-.98-.66.16-8.1-1.2-16.11-1.54-24.18l.5-.52zm-.5.52c-.27-.8.96-.58.07-.07l-.06.07zm.5.47c0-.32 0-1.52.01-.54-.01.16.05.42 0 .54z'/%3e%3cpath d='m395 412.42-11.9-.84c-1.29 10.89-2.18 18.26-2.3 22.12-.24 7.58 1.13 14.14 3.96 19.18 3.86-2.71 7.7-7.75 8.89-15.6 1.18-7.89.74-16.42 1.35-24.86z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m383.14 411.08 11.9.84c-.03.56.08 1.27-.7.95l-11.27-.8c-.48-.45-.53-.64.07-.99zm-.53.44c-.11-.8.97-.42.04-.04l-.04.04zm-1.32 22.2c-.58.02-1.22.08-.96-.68.4-6.45 1.29-12.85 2.01-19.27l.27-2.25c.64.01 1.23.06.9.83-.77 6.8-1.7 13.57-2.17 20.38l-.05.99zm3.19 18.76c.33.45.9 1.07-.05.67-.4-.36-.58-1.02-.87-1.5-2.66-5.58-3.44-11.85-3.26-17.96.61-.03 1.23-.07.98.73-.1 6.25.84 12.7 3.92 18.22l-.72-.16zm.57.81c-.37.78-1.11-.48-.28-.06l.28.06zm8.1-16.08c.64.03 1.24.1.87.86-1 5.93-3.99 11.7-8.97 15.22-.32-.44-.87-.91-.08-1.18 4.68-3.54 7.35-9.19 8.18-14.9zm1.81-24.3c.04-.55-.02-1.38.49-.5.02 1.3-.15 2.66-.17 4-.3 6.98-.12 14-1.14 20.95-.64-.04-1.23-.1-.88-.87 1.07-7.99.65-16.08 1.24-24.1l.46.53zm.08-.99c.8-.16.45 1 .04.06l-.04-.06z'/%3e%3cpath d='m383.86 399.58-13.05-5.42c-2.22 8.82-5.23 37.87.12 50.13 4.34-2.95 8.72-8.49 10.18-17.22 1.47-8.77 1.91-18.1 2.75-27.49z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m371 393.7 13.05 5.42c-.15.86-.57 1.06-1.29.54l-12.14-5.04c-.43-.58-.21-.68.38-.92zm-.67.34c0-1 1.18-.17 0 0zm.31 49.84c.62.62.57 1.1-.21.51-2.17-5.34-2.64-11.17-2.91-16.87-.3-9.57.36-19.16 1.84-28.6.27-1.64.57-3.27.97-4.88.8.04 1.17.34.75 1.11-1.57 7.61-2.25 15.38-2.57 23.13-.2 7.36-.12 14.83 1.6 22.03.34 1.29.75 2.56 1.27 3.78l-.74-.21zm.56.82c-.68.79-1-.69 0 0zm9.42-17.72c.84-.03 1.17.3.81 1.1-1.23 6.52-4.66 12.84-10.23 16.62-.6-.57-.6-1.03.19-1.35 5.18-3.9 8.2-10.07 9.23-16.37zm3.05-26.94c.12-.87.7-1.1.65-.1-.81 9.08-1.23 18.2-2.72 27.2-.84.05-1.17-.27-.83-1.08 1.38-8.79 1.8-17.68 2.6-26.53l.3.5zm.38-.92zm-.2.46zm.2-.46z'/%3e%3cpath id='b' d='M387.75 701.16c7.96 6.38 15.25-8.22 8.19-27.51-5.23-14.28-30.77-8.74-16.54 10.47.67.9 1.62.49 1.49-.55-.81-3.94 1.7-6.23 5.57-5.5 10.58 1.98 10.91 22.07-.6 17.5-2.09-.14-.21 3.9 1.89 5.59z' stroke='%2321231E' stroke-width='.99' fill='%23EDB92E'/%3e%3cpath stroke='%2321231E' stroke-width='.99' d='M400.05 639.16v.13c-1.04 3.35-4.91 7.54-7.92 10.68-4.67 4.87-3.57 12.24-.34 16.16 3.53 4.28 5.1 9.1 5.8 12.84.53 2.3 1.48 7.47.8 15.5-.35 3.96-2.74 6-4.98 7.77-1.14.9.49 3.05 4.25 5.88.4.3 1.54 1.08 2.08 3.04.2.47 1.95.47 2.16 0 .54-1.96 1.67-2.73 2.09-3.04 3.76-2.83 5.38-4.98 4.24-5.88-2.24-1.77-4.63-3.81-4.97-7.77-.69-8.03.26-13.2.79-15.5.7-3.75 2.28-8.56 5.8-12.84 3.23-3.92 4.33-11.3-.33-16.16-3.01-3.14-6.88-7.33-7.92-10.68v-.13c-.06-.65-.42-.98-.78-.98-.36 0-.72.33-.77.98z' fill='%23EDB92E'/%3e%3cpath d='M395.06 685.47h11.51c1.98 0 3.6 1.6 3.6 3.54a3.58 3.58 0 0 1-3.6 3.54h-11.51c-1.98 0-3.6-1.6-3.6-3.54a3.58 3.58 0 0 1 3.6-3.54z' fill='%23EDB92E'/%3e%3cpath fill='%2321231e' d='M406.57 685.97h-11.51v-1h11.51v1zm4.1 3.04h-1a3.09 3.09 0 0 0-2.75-3.02c-.36.07-.4-.14-.35-.45.05-.2-.15-.67.21-.56a4.1 4.1 0 0 1 3.89 4.03zm-1 0h1-1zm-3.1 4.04v-1a3.1 3.1 0 0 0 3.1-2.77c-.1-.38.27-.25.52-.27.25 0 .6-.09.47.3a4.09 4.09 0 0 1-4.09 3.74zm-11.51-1h11.51v1h-11.51v-1zm-4.1-3.04h1a3.09 3.09 0 0 0 2.75 3.02c.36-.07.4.14.35.45-.05.2.15.67-.21.56a4.1 4.1 0 0 1-3.89-4.03zm1 0h-1 1zm3.1-4.04v1a3.1 3.1 0 0 0-3.1 2.77c.1.38-.27.25-.52.27-.25 0-.6.09-.47-.3a4.09 4.09 0 0 1 4.09-3.74z'/%3e%3cpath d='m417.13 579.19.38-10.91c-4.38-2.23-15.17.06-19.73 10.13-5.68 12.56-11.06 19.25-17.87 25.14 9.88 1.85 18.25-.1 23.64-7.35 7.28-9.78 11.17-15.7 13.58-17.01z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m418.01 568.3-.38 10.91c-.86.17-1.2-.16-.96-1.01l.35-9.94c.48-.22.74-.73.99.04zm-.27-.46zm-19.5 10.78c-.86-.17-1.04-.6-.48-1.29 3-6.02 9.4-10.38 16.2-10.32a9 9 0 0 1 3.78.83c-.22.76-.57 1.05-1.27.55-3.67-1.01-7.61.09-10.84 1.93a18.27 18.27 0 0 0-7.4 8.3zM380 603.07c-.1.91-.23 1.16-.42.11A60.46 60.46 0 0 0 393.44 586a105.5 105.5 0 0 0 3.89-7.79c.85.18 1.04.6.5 1.3-3.7 8.07-8.38 15.82-14.87 21.94-.88.86-1.8 1.68-2.73 2.49l-.23-.87zm-.18.98c-.97-.04-1.16-.3-.28-.83.14.07.18.6.28.83zm23.33-8.14c.79.35.9.8.2 1.35a19.95 19.95 0 0 1-13.4 7.24c-3.37.42-6.8.16-10.13-.45-.02-.82.29-1.18 1.1-.82 5.73.96 12 .66 17.06-2.5a19.04 19.04 0 0 0 5.17-4.82zm13.49-16.73c.76-.14 1.32.16.44.63-2.3 1.8-3.91 4.3-5.7 6.57-2.48 3.37-4.93 6.76-7.43 10.12-.8-.35-.89-.81-.21-1.38 3.52-4.66 6.78-9.54 10.55-14.02.78-.87 1.58-1.75 2.6-2.34l-.25.42zm.99.03z'/%3e%3cpath d='m425.16 580.63-11.79-4.97c-4.83 9.86-8.12 16.52-9.5 20.13-2.68 7.1-3.41 13.77-2.17 19.54 4.79-1.22 10.31-4.64 14.05-11.66 3.75-7.04 6.06-15.27 9.41-23.04z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m413.56 575.2 11.79 4.97c-.18.65-.42 1.16-1.1.61l-11.07-4.66c-.3-.6-.31-.78.38-.92zm-.64.24zm-8.58 20.52c-.65-.16-1.19-.38-.65-1.06 2.6-6.18 5.68-12.14 8.6-18.17.31-.33.36-1.45.9-1.16.85.13.48.69.18 1.22-2.95 6.1-6.07 12.12-8.7 18.36l-.33.81zm-2.77 18.88c.2.63.4 1.26-.36.58-1.41-6.63-.17-13.55 2.2-19.81.6.17 1.2.33.69 1-2.14 5.91-3.24 12.4-1.92 18.6l-.6-.37zm.25.96c-.76.43-.73-.83-.04-.02l.04.02zm13.49-12.36c.61.24 1.13.51.51 1.12-2.97 5.36-7.99 9.73-14 11.24-.23-.61-.38-1.17.47-1.16 5.7-1.67 10.3-6.01 13.02-11.2zm9.65-22.36c.22-.62.45-1.25.65-.26-3.3 7.63-5.53 15.71-9.42 23.08-.6-.24-1.14-.5-.54-1.12 3.66-7.18 5.86-14.98 9.05-22.35l.26.65zm.39-.92c.85.13.09 1.1.01.04l-.01-.04z'/%3e%3cpath d='m428.55 580.62-12.64-1.93c-2.29 10.73-3.86 18-4.3 21.84-.88 7.53.03 14.18 2.65 19.48 4.34-2.36 8.87-7.02 10.78-14.74 1.92-7.75 2.16-16.3 3.51-24.65z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m415.98 578.2 12.64 1.93c-.03.65-.1 1.24-.88.87-3.97-.6-7.94-1.2-11.91-1.82-.42-.56-.54-.6.15-.98zm-.56.39c-.03-.8 1-.32.03-.02l-.03.02zm-3.32 22c-.6-.03-1.23-.02-.9-.77.96-6.42 2.45-12.76 3.77-19.12l.45-2.11c.65.07 1.22.18.82.93-1.38 6.66-2.94 13.29-4 20l-.14 1.07zm1.92 18.98c.35.57.68 1.12-.21.66-2.99-6.09-3.47-13.1-2.7-19.76.62.03 1.24.04.91.82-.63 6.24-.12 12.8 2.68 18.5l-.68-.22zm.47.88c-.61.6-.93-.62-.06-.02l.06.02zm10.07-15.3c.64.1 1.21.23.77.96-1.57 5.93-5.38 11.4-10.84 14.34-.36-.54-.65-1.04.16-1.24 5.13-3.02 8.54-8.35 9.9-14.06zm3.99-25.02c-.1.78.05 1.09.47.66-1.33 8.18-1.53 16.53-3.5 24.6-.64-.09-1.21-.22-.79-.96 1.8-7.85 2.03-15.95 3.33-23.89l.49-.41zm-.5.41zm.5.58c-.05-.4.06-1.53.04-.53l-.04.53z'/%3e%3cpath d='m430.43 563.41 7.54-.06c4.4 2.18 9.02 12.22 3.68 21.9-6.65 12.07-8.8 20.39-9.44 29.38-7.38-6.83-10.81-14.72-8.24-23.38 3.48-11.69 6.85-25.12 6.46-27.84z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m437.97 563.85-7.54.06c-.26-.96.27-1.14 1.14-1 2.2.01 4.42-.11 6.62 0l-.22.94zm0-1zm4.11 22.65c-.94-.24-.88-.78-.36-1.47 2.85-5.79 2.42-13.27-1.7-18.35a7.72 7.72 0 0 0-2.27-1.88c.2-.9.7-.97 1.33-.35 3.3 2.54 4.93 6.73 5.37 10.78a19.3 19.3 0 0 1-2.37 11.27zm-10.2 29.5c1.01-.98.24-.35-.15-.62a62 62 0 0 1 5.86-22.21c1.11-2.43 2.33-4.81 3.62-7.15.97.24.87.8.33 1.48-4.23 7.75-7.58 16.13-8.53 24.96a70.2 70.2 0 0 0-.3 3.21l-.84.33zm.83-.33c.08 1.04-.19 1.16-.83.34.26-.12.55-.22.83-.34zm-9.22-23.56c.94.05 1.04.53.68 1.3-1.32 5.07-.2 10.57 2.58 14.96a33.2 33.2 0 0 0 5.8 6.9c-.45.83-.94.72-1.45 0-4.41-4.25-8.05-9.81-8.43-16.09-.17-2.38.15-4.78.82-7.07zm6.93-28.2c-.12 1 .12.92.5.55.06 2.85-.72 5.63-1.28 8.4a319.4 319.4 0 0 1-5.2 19.54c-1-.03-1.01-.6-.62-1.38 2.2-7.66 4.38-15.33 5.82-23.17.16-1.11.38-2.24.3-3.36l.48-.57zm-.49.58zm.5-.07zm-.5.07z'/%3e%3cpath d='m433.79 558.16-12.05-4.28c-4.27 10.11-7.17 16.95-8.33 20.64-2.28 7.23-2.63 13.94-1.06 19.63 4.71-1.5 10.68-4.58 14-11.8 3.35-7.25 4.54-16.24 7.44-24.19z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m421.9 553.41 12.05 4.28c-.14.66-.35 1.19-1.05.68l-11.33-4.02c-.34-.57-.35-.76.33-.94zm-.62.27zm-7.4 20.99c-.65-.13-1.2-.31-.7-1.02 2.23-6.32 4.97-12.44 7.54-18.63.3-.36.28-1.47.82-1.22.87.08.53.66.26 1.21-2.6 6.26-5.36 12.45-7.64 18.82l-.28.84zm-1.68 19c.24.63.47 1.24-.33.61-1.79-6.54-.94-13.52 1.07-19.91.6.14 1.22.26.74.97-1.8 6.01-2.52 12.55-.85 18.67l-.63-.34zm.3.95c-.73.47-.78-.79-.04-.02l.04.02zm13.4-12.48c.64.21 1.16.46.58 1.1a21.82 21.82 0 0 1-11.26 10.38c-.89.38-1.8.7-2.72 1-.27-.6-.44-1.15.41-1.18 4.93-1.63 9.42-4.87 12.02-9.42.35-.6.68-1.24.98-1.88zm7.72-23.51c.19-.63.37-1.28.63-.3-2.9 7.95-3.94 16.49-7.44 24.23-.62-.2-1.16-.44-.6-1.1 3.23-7.54 4.3-15.78 7.11-23.47l.3.64zm.33-.94c.85.07.16 1.08.02.03l-.02-.03zm-.16.47zm.16-.47c.85.07.16 1.08.02.03l-.02-.03z'/%3e%3cpath d='m425.6 549.74-2.64-16.4c-2.77-.76-6.45 5.72-10.05 9.5-.83.88-1.79 1.7-2.51 2.77a23.32 23.32 0 0 0-3.42 7.96c-3.01 13.45-7.4 20.45-12.87 27.61 10.04-.2 17.84-3.83 21.65-12.02 5.14-11.06 7.74-17.65 9.84-19.42z' fill='%23FFF'/%3e%3cpath fill='%2321231e' d='m423.44 533.25 2.64 16.4c-.94.44-1.16-.13-1.16-1l-2.46-15.24c.45-.31.57-.9.98-.16zm-.36-.4zm-9.82 10.33c-.76-.44-.78-.9-.07-1.39 2.45-2.7 4.35-5.95 7.24-8.23.76-.54 1.7-.96 2.65-.71 0 .95-.52.95-1.29 1.07-2.19 1.16-3.57 3.35-5.13 5.2-1.1 1.38-2.18 2.78-3.4 4.06zm-2.46 2.7c-.5-.28-1.08-.58-.44-1.07.65-.83 1.45-1.55 2.18-2.31.9.48.62 1-.09 1.5-.6.59-1.18 1.2-1.65 1.88zm-3.34 7.8c-.9 0-1.11-.43-.73-1.2a23.78 23.78 0 0 1 3.25-7.15c.73.3.95.7.35 1.28a22.88 22.88 0 0 0-2.87 7.06zm-13.37 27c.3 1.22-.41.87-.24 0 4.24-5.43 7.81-11.44 10.04-17.99a82.13 82.13 0 0 0 2.6-9.24c1.04-.05 1.03.56.7 1.37-1.8 7.87-4.8 15.53-9.44 22.18a99.22 99.22 0 0 1-3.25 4.48l-.4-.8zm.02 1c-1.14.35-1-.46-.35-.7l.35.7zm21.2-12.74c.96.18.94.71.4 1.4-2.48 4.9-7.17 8.47-12.41 9.98a34.1 34.1 0 0 1-9.19 1.35c-.29-.98.28-1.14 1.14-1.03 5.96-.26 12.21-2 16.45-6.41a19.2 19.2 0 0 0 3.6-5.29zm9.8-19.13c.86-.36 1.25.05.45.65-2.03 2.56-3.21 5.66-4.63 8.58-1.58 3.44-3.13 6.9-4.73 10.32-.97-.17-.92-.72-.42-1.44 2.5-5.3 4.7-10.75 7.5-15.9.57-.96 1.16-1.93 2-2.67l-.18.46zm.98-.16z'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='matrix(-1 0 0 1 964.3 0)'/%3e%3cpath stroke='%2321231E' d='M536.38 414.88c1.59-.33 3.2-.79 4.86-1.37-7.63-4.79-13.96-10.57-21.49-22.12-7.7-11.83 3.38-32.95 7.93-44.16 9.5-7.04 18.45-17.37 21.29-31 1.12-7.34-19.1-4.7-33 1.88-17 8.03-19.31 5.8-25.37 7.16-2.15 10.42 2.36 11.3 6.7 10.8-9.37 15.02-13.28 29.98-15.15 51.49-1.87-21.51-5.78-36.47-15.14-51.5 4.34.51 8.85-.37 6.7-10.79-6.07-1.36-8.38.87-25.38-7.16-13.9-6.57-34.12-9.22-33-1.89 2.85 13.63 11.8 23.97 21.3 31.01 4.54 11.2 15.63 32.33 7.92 44.16-7.52 11.55-13.85 17.34-21.48 22.12 1.65.58 3.27 1.04 4.85 1.37-1.15 1.58-11.04 4.66-12.2 3.84-7.58-5.36-14.96-17.95-21.4-25.26-18.25-20.72-27.35-36.7-24.13-49.6 4.58-13.89 20.93-29.48-.72-26.78-21.66 2.7-39.6 32.42-45.37 68.2-2.14 13.27-3.38 24.38-4.83 33.47 11.82-4.22 17.06-8.43 20.2-13.62a119.35 119.35 0 0 0-3.18 14.09c9.67-1.72 16.68-6.47 19.2-15.14a45.4 45.4 0 0 1 3.56-8.85c2.97 1.05 6.82 1 11.5-.16 1.79 4.25 15.1 19.1 22.26 30.01 8.09 12.33 20.23 21.75 24.24 22.26 2 .26 2.61-4.2 2.17-10.32 21.12.15 42.23.27 62.93-.43 20.7.7 41.82.58 62.94.43-.45 6.13.17 10.58 2.17 10.32 4-.51 16.15-9.93 24.23-22.26 7.16-10.9 20.48-25.76 22.26-30 4.68 1.14 8.54 1.2 11.5.15a45.4 45.4 0 0 1 3.57 8.85c2.51 8.67 9.53 13.42 19.2 15.14-.71-4.47-1.77-9.16-3.19-14.09 3.15 5.19 8.38 9.4 20.2 13.62-1.45-9.1-2.69-20.2-4.82-33.48-5.77-35.77-23.72-65.5-45.37-68.2-21.65-2.68-5.3 12.9-.72 26.79 3.21 12.9-5.89 28.88-24.13 49.6-6.44 7.3-13.82 19.9-21.4 25.26-1.16.82-11.05-2.26-12.2-3.84z' fill='%23FFF'/%3e%3cg id='d'%3e%3cpath d='M440.58 356.77c-2.04 1.78-8.76 1.8-17.96 2.4-14.81.52-23.4-3.96-25.3-13.45 5.56 6.63 12.2 9.9 19.73 8.04 10.16-2.52 15.98-4.32 18.3-3.87 1.56.55 3.84 3.38 5.23 6.88z' fill='%23EDB92E'/%3e%3cpath fill='%2321231e' d='M422.64 359.67c-.03-.58-.23-1.25.6-1.04 4.68-.33 9.4-.35 14.03-1.12 1.04-.22 2.13-.44 2.98-1.1.38.4.94.85.15 1.1-2.18 1.15-4.72 1.24-7.12 1.5-3.54.29-7.1.43-10.64.66zm.01 0zm-24.95-14.26c-.56.45-1.01.83-.09.31.46-.14.3.95.54 1.3 1 3.74 3.68 6.92 7.1 8.69 4.9 2.56 10.56 3.04 16 3 .44.13 1.48-.38 1.37.34.3.84-.54.6-1.1.65-5.68.07-11.59-.43-16.7-3.1a15.03 15.03 0 0 1-7.5-8.87c-.2-.62-.35-1.26-.48-1.9l.86-.42zm19.23 7.88c.22.6.37 1.18-.49 1.13-4.38.96-9.07 0-12.84-2.42a28.56 28.56 0 0 1-6.66-5.95c.45-.48.9-.86 1.25-.08 3.28 3.78 7.6 7.03 12.7 7.69 2.01.27 4.07.11 6.04-.37zm18.58-3.87c-.28.5-.1 1.19-.77.9-2.7.05-5.31.88-7.93 1.48-3.22.81-6.42 1.66-9.64 2.45-.23-.61-.38-1.18.48-1.14 4.86-1.17 9.66-2.6 14.57-3.54 1.08-.17 2.2-.36 3.29-.15zm-.07-.02zm5.47 7.75c-.4-.61-.77-.8-.83-.28-.99-2.32-2.27-4.66-4.32-6.2-.73-.17-.52-.64-.27-1.19.43 0 .96.46 1.35.76 1.93 1.7 3.23 4 4.2 6.35l-.13.56zm.13-.56zm-21.51-35.44.09 1.58c-.68.07-1.11-.84-.63-1.32a.79.79 0 0 1 .54-.26zm15.27 3.91-.54 1.49c-3.55-1.26-7.04-2.76-10.75-3.51a15.86 15.86 0 0 0-3.9-.31l-.08-1.58c3.81-.2 7.48 1.1 11.02 2.35l4.25 1.56zm8.86 2.6.24 1.56c-1.4.12-2.77-.36-4.1-.73-1.87-.57-3.7-1.26-5.53-1.94l.53-1.49c2.59.94 5.16 2 7.86 2.53.33.05.68.1 1 .06zm.24 1.55-.24-1.56c.67-.13 1.19.73.76 1.25a.78.78 0 0 1-.52.31zm23.27 7.5.2-1.17c.39.05.62.54.41.88a.6.6 0 0 1-.61.29zm-9.86-2.07.32-1.14c3.2.9 6.46 1.5 9.73 2.04l-.2 1.17a91.54 91.54 0 0 1-9.85-2.07zm.32-1.14-.32 1.14c-.4-.1-.57-.63-.3-.94a.6.6 0 0 1 .62-.2z'/%3e%3cpath fill='%2321231e' d='m431.54 331.89-.77 1.38c-2.69-1.52-4.6-4.05-6.16-6.66-.77-1.3-1.47-2.64-2.19-3.97l1.38-.75c1.61 2.95 3.14 6.06 5.6 8.41.65.61 1.37 1.16 2.14 1.59zm7.6-5.16 1.4.74c-1.17 2.13-2.61 4.23-4.7 5.54a4.94 4.94 0 0 1-4.44.55c-.17-.11-.63-.17-.59-.37l.73-1.3c.96.58 2.18.5 3.14-.04 1.68-.9 2.87-2.48 3.86-4.06.21-.35.42-.71.6-1.06z'/%3e%3cpath d='m429.59 330.91-2.19-2.2c-1.07-1.34-.45-3.14 1.85-5.4 1.69.74 3.04 1.3 4.38 1.86-.9 3.04-2.24 4.95-4.04 5.74z' fill='%2321231E'/%3e%3cpath fill='%2321231e' d='M423.26 412.95c-.15.36-.24.82-.42 1.1-.57-.19-.42-1.13.19-1.13.08 0 .15 0 .23.03zm23.87-3.53.83.85a19.68 19.68 0 0 1-10.57 5.49c-4.88.84-9.9-.07-14.52-1.69l.4-1.12c4.67 1.64 9.79 2.54 14.7 1.49a18.48 18.48 0 0 0 9.16-5.02zm2.9-2.87.83.84-2.9 2.88-.83-.85 2.9-2.87zm.83.84c-.26-.28-.64-.57-.82-.86.4-.4 1.16.07.96.61a.6.6 0 0 1-.14.25z'/%3e%3cpath fill='%2321231e' d='m452.17 401.28-1.17-.16c.04-.54.83-.7 1.09-.23.07.12.1.26.08.39zm-5.5 15.93.29 1.14-.69-.81a58.6 58.6 0 0 0 4.73-16.42l1.17.16a59.5 59.5 0 0 1-4.37 15.7c-.14.35-.3.7-.45 1.04l-.69-.81zm-.4.33 1.08.48c-.19.52-1.03.43-1.11-.11a.6.6 0 0 1 .03-.37zm15.25-9.54.97.68c-2.54 3.66-6.34 6.28-10.42 7.97-1.66.7-3.37 1.25-5.11 1.7l-.3-1.14c4.52-1.18 8.97-3.11 12.4-6.35a18.6 18.6 0 0 0 2.46-2.86zm.97.68-.97-.68c.28-.45 1.06-.24 1.07.3a.6.6 0 0 1-.1.38z'/%3e%3cpath fill='%2321231e' d='m461.29 400.2-1.18.1c-.07-.5.62-.85.99-.48.1.1.17.24.19.38zm4.43 15.72.72.94c-.28-.06-.62-.05-.87-.17-3.16-4.55-4.76-10.02-5.37-15.49l-.09-.9 1.18-.1c.49 5.31 1.9 10.65 4.82 15.17l.46.68c-.28-.05-.57-.1-.85-.13zm-.12.81.97-.68c.32.42-.14 1.08-.65.91a.6.6 0 0 1-.32-.23zm7.67-12.6 1.14.28a22.28 22.28 0 0 1-7.87 12.38c-.22.15-.35-.37-.54-.5-.22-.23-.37-.44 0-.6a21.13 21.13 0 0 0 7.27-11.57zm1.14.28-1.14-.29c.1-.5.87-.6 1.1-.13a.6.6 0 0 1 .04.42z'/%3e%3cpath d='M405.91 317.77c-16.62 1.8-15.83 12.67-.29 28.04 2.97 2.94 4 2.85 4.63-.2 1.1-5.35 7.02-8.5 10.12-4.44 2.11 2.77 1.64 4.36 8.68 3.38 8.89 7.46 16.12 12.7 4.5 12.26-5.12-.19-9.07 2.8-15.73 2.54 1.97 3.82 2.32 4.27 3.39 4.6 6.46 1.27 13.27-2.77 19.79-1.57 14.28 2.64-22.89-38.63-22.43-40.26 1.18-4.15-8.93-11.6-12.66-4.35z' fill='%23EDB92E'/%3e%3cpath fill='%2321231e' d='M405.97 345.46c-.64 1.24-1.28.09-1.92-.52-4.06-4.28-8.13-8.88-10.15-14.52-1.12-3.03-1-6.84 1.47-9.18 2.77-2.71 6.77-3.5 10.49-3.96.53 1.22-.65 1.08-1.53 1.2-3.4.58-7.26 1.6-9.22 4.7-1.82 3.1-.55 6.9 1 9.84 2.5 4.7 6.13 8.69 9.86 12.44zm3.8.04c1.23-.12.92.82.56 1.63a1.73 1.73 0 0 1-2.69.99c-.89-.52-1.63-1.24-2.37-1.95.56-1.05 1.1-.38 1.7.23.59.4 1.32 1.31 2.08.94.45-.5.56-1.21.71-1.84zm11-4.63c-.76 1.08-1.2 0-1.95-.47-3.6-2-7.5 1.82-8.08 5.3-1.32.13-.86-.91-.52-1.72 1.17-3.04 4.37-5.8 7.8-5 1.1.27 2.06 1 2.75 1.9zm8.6 3.3c-.83.9-.03.97-1.47 1.02-2.21.23-5.05.5-6.48-1.61-.5-.69-.92-1.43-1.44-2.1.7-.97 1.16-.23 1.58.52.65 1.25 1.78 2.37 3.3 2.31 1.47.18 2.96-.25 4.4-.18l.1.04zm-.4-.12zm4.55 13.26c-.35-1.27.77-.96 1.64-.97 1.29-.1 2.86.06 3.85-.91.2-1.26-1.04-2.2-1.76-3.1-2.66-2.67-5.66-4.96-8.52-7.4.52-1.25 1.23-.25 1.9.3 3.01 2.61 6.34 4.95 8.77 8.14.83.97 1 2.75-.38 3.32-1.7.77-3.68.64-5.5.62zm-15.26 1.8c-1.27 1.04-.72-.54.32-.25 4.56.16 8.73-1.99 13.18-2.49.61.1 2.07-.52 1.78.53.04.8-1.24.22-1.82.48-4.28.54-8.3 2.52-12.68 2.48-.75-.08-1.74.32-.78-.74zm-.89.46zm3.93 3.88c.14 1.2-.74 1.01-1.37.35-1.14-1.21-1.76-2.8-2.55-4.23.87-.85 1.19.05 1.54.83.7 1.07 1.1 2.63 2.43 3.07l-.05-.02zm-.19.98zm19.98-2.54c.15 1.25-.8.9-1.65.8-6.19-.38-12.12 2.93-18.33 1.74-.13-1.24.8-.88 1.65-.78 6.2.43 12.12-2.88 18.33-1.76zm-23-39.9c1 .04 1.28.6 1.76 1.4 7.28 9.72 15.32 18.91 21.69 29.29 1.4 2.52 3.07 5.1 3.22 8.07 0 1.35-1.22 2.3-2.52 2.25-1 .33-1.85-.69-.86-1.08.95.23 2.43.06 2.4-1.22-.27-3.04-2.07-5.67-3.55-8.25-6.25-9.99-14-18.9-21.06-28.31-.43-.67-1.07-1.31-1.08-2.15zm-12.13-3.72c.07-1.28-.86-.47.07-1.64 1.48-2.35 4.67-2.93 7.13-1.9 2.71 1.07 5.37 3.23 5.97 6.21.35.96-.4 1.76-1 .9.2-2.25-1.72-4.03-3.42-5.22-2.1-1.47-5.4-2.15-7.35-.05-.59.47-.74 1.33-1.4 1.7zm.4-.27zm-.45-.23zm.44.23z'/%3e%3cpath fill='%2321231e' d='m406.86 317.22-1.13.4c-.17-.44.3-.94.74-.77.18.05.33.2.39.37zm7.7 10.54-.77.9c-3.08-2.6-5.78-5.74-7.42-9.45-.24-.52-.45-1.06-.64-1.6l1.13-.39a23.66 23.66 0 0 0 6.27 9.26c.46.44.94.86 1.43 1.28zm-.77.9.77-.9c.38.29.22.96-.25 1.04a.59.59 0 0 1-.52-.13z'/%3e%3cpath fill='%2321231E' d='M.9 0C.9.44.5.79 0 .79S-.9.44-.9 0s.4-.79.9-.79.9.35.9.79z' transform='matrix(.21422 -1.51084 1.7589 .184 404.14 325.55)'/%3e%3cpath fill='%2321231e' d='M358.42 362.56c.6-.47 1.33.54.69.96l-.69-.96zm-22.68 56.14c1.47-10.11 5.01-19.79 8.48-29.35 3.4-8.53 6.68-17.31 12.16-24.75.46-1.33 3.24-2.74 2.3-.73-4.49 4.66-6.9 10.86-9.6 16.64-4.92 11.7-9.35 23.7-11.87 36.17-.45 1.13.44 2.66-1.47 2.02zm5.55 80.36c-5.79-16.16-6.83-33.54-6.97-50.56 0-9.95.5-19.9 1.42-29.8 2.25-.32.53 2.67.84 3.99-1.59 21-1.9 42.36 2.2 63.12a89.33 89.33 0 0 0 3.62 12.84l-1.1.41zm1.11-.41c.3.7-.87 1.13-1.1.41l1.1-.41z'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='matrix(-1 0 0 1 964.3 0)'/%3e%3cpath fill='%2321231e' d='M473.11 398.36c-.37.11-.52.44-.45.86a36.34 36.34 0 0 0 5.92 17.89 49 49 0 0 0 3.03 4.16c.22.19.67.2.93.1.54-.51.97-1.17 1.44-1.76a39.12 39.12 0 0 0 5.96-11.3 34.9 34.9 0 0 0 1.7-9.48c-.08-.37-.54-.6-.87-.4-.45.2-.28.87-.35 1.35a37.09 37.09 0 0 1-.84 5.48 36.31 36.31 0 0 1-4.77 11.1 51.75 51.75 0 0 1-2.67 3.7 49.32 49.32 0 0 1-2.93-4.16 37.2 37.2 0 0 1-3.35-6.81 35.87 35.87 0 0 1-1.69-6.62c-.19-1.24-.24-2.54-.38-3.77-.12-.24-.35-.38-.68-.34z'/%3e%3cpath d='M549.18 422.03v108.56a72.16 72.16 0 0 1-19.67 49.81c-12.14 12.77-28.9 20.7-47.36 20.7s-35.22-7.92-47.36-20.7a72.15 72.15 0 0 1-19.67-49.8V422.02h134.06z' fill='%23C6363C'/%3e%3cuse xlink:href='%23e' transform='matrix(-1 0 0 1 964.3 -90.09)'/%3e%3cpath stroke='%2321231E' stroke-width='.99' d='M549.18 488.62v27.98h-53.06v82.94a63.64 63.64 0 0 1-27.93 0V516.6h-53.07v-27.98h53.07v-66.59h27.93v66.59h53.06z' fill='%23FFF'/%3e%3cuse xlink:href='%23e' y='-90.09'/%3e%3cpath id='e' d='M459.14 567.32v-39.33c-8.56-2.3-29.4-10.62-30.49 7.61-.5 8.43 10.44 13.99 13.4 6.54 1.4-3.52-.13-6.01-2.19-6.82-2.22-.87-4.43.93-3.84 3.61-8.86-4.64 7.92-14.48 15.5-1.67 2.2 3.74-3.73 7.63-3.74 10.4 0 2.76 5.83 6.9 3.73 10.39-7.67 12.75-24.35 2.96-15.49-1.67-.59 2.68 1.62 4.48 3.84 3.6 2.06-.8 3.58-3.3 2.18-6.82-2.95-7.44-13.89-1.88-13.39 6.55 1.09 18.23 21.93 9.91 30.49 7.6z' stroke='%2321231E' stroke-width='.99' fill='%23FFF'/%3e%3cuse xlink:href='%23e' transform='matrix(-1 0 0 1 964.3 0)'/%3e%3cpath fill='%2321231e' d='M414 420.86c.08 37.95-.15 75.9.12 113.85 1.2 27.86 19.67 54.5 46.21 63.77 22.43 8.32 49 2.59 66.38-13.74 16.2-14.52 24.65-36.69 23.58-58.24V420.86H414zm2.27 2.36h131.79c-.08 37.12.15 74.25-.12 111.37-1.13 26.66-18.72 52.26-44.03 61.41-21.59 8.29-47.34 3.04-64.31-12.57-16.02-14.08-24.42-35.74-23.34-56.92V423.22z'/%3e%3c/svg%3e\"},6517:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 6'%3e%3cpath fill='%23fff' d='M0 0h9v3H0z'/%3e%3cpath fill='%23d52b1e' d='M0 3h9v3H0z'/%3e%3cpath fill='%230039a6' d='M0 2h9v2H0z'/%3e%3c/svg%3e\"},950:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1080 720'%3e%3cpath fill='%2320603D' d='M0 0h1080v720H0z'/%3e%3cpath fill='%23FAD201' d='M0 0h1080v540H0z'/%3e%3cpath fill='%2300A1DE' d='M0 0h1080v360H0z'/%3e%3cg transform='translate(886.5 188.1)'%3e%3cg id='b'%3e%3cpath id='a' fill='%23E5BE01' d='M116.1 0 35.692 4.699l76.452 25.35L33.26 13.777l67.286 44.273L28.56 21.915l53.534 60.18-60.18-53.534 36.135 71.985L13.777 33.26l16.272 78.884-25.35-76.452L0 116.1-1-1z'/%3e%3cuse xlink:href='%23a' transform='scale(1 -1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='scale(-1 1)'/%3e%3ccircle r='34.3' fill='%23E5BE01' stroke='%2300A1DE' stroke-width='3.4'/%3e%3c/g%3e%3c/svg%3e\"},4707:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 750 500'%3e%3cpath fill='%23006c35' d='M0 0h750v500H0z'/%3e%3cpath fill-rule='evenodd' d='M323.28 118.09c-.388-.011-.968.205-1.781.688-1.829 1.225-5.452 5-5.563 9.343-.11 2.45-.573 2.441 1.031 4 1.16 1.671 2.317 1.507 4.657.282 1.343-.99 1.797-1.622 2.25-3.282.557-2.784-2.93 1.318-3.375-1.78-.78-2.877 1.446-4.06 3.562-6.845.049-1.31.072-2.38-.781-2.406zm34.062.188c-.653.087-1.453.925-2.563 2.937-.795 2.108-4.225 5.297-1.75 11.875 2.025 4.17 2.857 10.949 1.938 18.5-1.403 2.146-1.723 2.885-3.563 5.031-2.584 2.78-5.383 2.069-7.53 1.031-2.008-1.352-3.585-2.046-4.5-6.343.165-6.85.564-18.06-.688-20.438-1.846-3.684-4.888-2.363-6.188-1.25-6.247 5.712-9.333 15.357-11.219 23.03-1.732 5.594-3.579 3.976-4.875 1.72-3.156-2.958-3.377-26.084-7.187-22.282-6.102 17.44 3.502 36.545 10.156 34.688 4.8 1.988 7.847-7.15 9.812-17.156 1.345-2.808 2.372-3.13 3.063-1.687-.178 13.306.954 16.274 4.375 20.312 7.63 5.887 13.943.746 14.438.25l5.937-5.938c1.323-1.39 3.07-1.475 4.938-.25 1.815 1.65 1.582 4.493 5.469 6.47 3.27 1.308 10.255.317 11.875-2.5 2.18-3.737 2.708-5.021 3.718-6.438 1.557-2.072 4.22-1.154 4.22-.5-.249 1.155-1.813 2.294-.75 4.375 1.85 1.388 2.28.496 3.374.187 3.872-1.85 6.781-10.25 6.781-10.25.172-3.132-1.61-2.895-2.75-2.25-1.485.908-1.576 1.217-3.062 2.125-1.893.281-5.56 1.53-7.375-1.281-1.854-3.38-1.864-8.091-3.281-11.5 0-.248-2.477-5.36-.188-5.687 1.155.214 3.64.856 4.031-1.22 1.212-2.022-2.614-7.76-5.218-10.655-2.261-2.482-5.383-2.784-8.407-.25-2.117 1.948-1.803 4.124-2.218 6.187-.54 2.37-.437 5.305 1.968 8.438 2.114 4.168 5.954 9.515 4.688 17.062 0 0-2.231 3.591-6.156 3.125-1.636-.357-4.302-1.065-5.72-11.531-1.072-7.923.27-19.022-3.093-24.22-.759-1.96-1.41-3.865-2.5-3.718zm-10.78.84c-1.017.088-2.144 1.273-3.063 3.562-.788 1.74-1.75 10.844-1.593 10.844-.63 2.71 2.83 3.857 4.406.375 2.362-6.384 2.373-9.104 2.531-11.812-.368-2.063-1.264-3.058-2.281-2.969zm39.812.718c-1.045.095-1.877.707-2.188 2.25-.416 3.63-.203 5.603.407 8.625.467 2.015 3.4 5.389 4.844 7.344 6.896 9.27 13.53 18.583 19.938 28.219a294.127 294.127 0 0 1 2.218 21.125c1.039 15.284 1.354 34.31.407 50.406 2.863.113 7.451-4.624 9.062-11.562 1.047-9.598-.373-29.18-.469-34.844-.067-2.351-.212-5.157-.375-8.094A526.562 526.562 0 0 1 442 222.555c2.588-1.23 2.014-15.798.5-17.844-5.68-12.227-13.529-24.296-16.03-28.938-.904-1.676-3.98-6.354-7.626-11.75-.67-7.698-1.4-14.219-1.875-16.188-1.172-8.138 3.345.918 2.72-3.812-1.466-8.127-5.952-13.65-11.25-21.094-1.71-2.421-1.676-2.915-4.313.594-1.577 3.576-1.556 6.552-1.094 9.343a49.551 49.551 0 0 0-2.781-3.687c-4.576-3.926-4.859-4.14-8.657-7.344-1.197-.85-3.477-2.158-5.218-2zm118 1.22c-.509-.08-1.063.17-1.688 1.093-1.193 1.046-2.476 2.94-2.437 5.375.29 4.289 1.054 8.68 1.344 12.969.102.574.21 1.145.312 1.719a16.723 16.723 0 0 0-1.093-1.282c-8.36-8.782 3.84-1.435-1.594-8.218-4.596-5.047-5.941-6.653-9.875-9.688-1.973-1.275-3.165-3.711-3.813.438-.258 3.644-.526 7.865-.281 10.938-.014 1.707 1.754 4.921 3.281 6.812a731.007 731.007 0 0 1 17 21.75c1.205 15.516 1.527 29.74 2.75 45.281-.173 6.647-2.218 15.476-4.156 16.312 0 0-2.96 1.7-4.938-.187-1.438-.578-7.187-9.594-7.187-9.594-2.943-2.698-4.906-1.927-7 0-5.776 5.577-8.388 16.023-12.312 23.219-1.012 1.605-3.862 2.972-7.031-.125-8.049-10.996-3.342-26.648-4.344-22.625-7.169 8.078-3.994 21.465-2.375 24.344 2.364 4.728 4.276 7.755 8.875 10.094 4.189 3.083 7.45 1.159 9.25-1 4.215-4.369 4.271-15.54 6.25-17.75 1.388-4.06 4.866-3.362 6.562-1.563 1.644 2.364 3.585 3.902 6 5.188 3.932 3.468 8.625 4.098 13.25.937 3.161-1.773 5.212-4.077 7.063-8.625 1.986-5.31 1.004-33.142.562-48.625a628.708 628.708 0 0 1 8.813 12.781c1.278 13.591 1.858 26.976 1.437 39.812-.3 2.552 8.907-7.62 8.844-12.438-.041-4.215.008-8.036 0-11.594 4.466 7.13 8.79 14.38 12.875 21.72 2.532-1.342 1.664-15.679.063-17.657-4.278-7.178-9.757-14.936-14-20.938-.839-7.575-1.98-16.512-2.5-19.25-.81-4.27-1.62-10.683-2.844-15.75-.336-1.978-1.349-8.298-1.031-8.906.499-1.414 2.384.045 3.312-1.594 1.39-1.515-4.818-17.598-7.969-22.188-1.132-2.057-3.181-1.345-5.718 2-2.353 2.202-1.492 7.224-.594 12 2.333 12.174 4.415 24.572 6.062 36.938a1389.254 1389.254 0 0 0-10.438-15.312c-.098-.51-.468-2.38-.468-2.406 0-.219-.505-9.959-.938-12.28-.075-.943-.3-1.215.688-1.095 1.047.881 1.19.929 1.843 1.22 1.058.193 1.982-1.595 1.344-3.25-3.27-6.033-6.542-12.093-9.812-18.126-.394-.387-.835-.796-1.344-.875zm-304.53.312c-1.812-.052-3.812 1.071-3.031 3.25-.455 1.187 3.547 5.2 4.25 7.406.63 1.57-.625 6.627.687 7.094 1.207.523 2.868-3.501 3.5-7.22.35-2.036.085-9.007-4.656-10.437a3.886 3.886 0 0 0-.75-.094zm346.91.04c-.413.04-.916.708-1.687 2.343-1.855 3.038-2.493 8.478-1.75 13.281 4.465 30.203 7.783 59.45 8.468 86.22-.384 2.54-.496 3.892-1.687 7.093-2.636 3.379-5.543 7.614-8.281 9.656-2.738 2.041-8.564 3.987-10.47 5.5-6.043 3.494-6.073 7.511-1.187 7.657 8.421-.978 18.386-1.669 25.25-12.031 1.837-2.904 4-10.776 4.094-15.594.642-28.247-.362-55.866-4.594-76.281-.271-1.99-1.15-6.56-.812-7.157.545-1.398 3.3.14 4.28-1.468 1.44-1.47-7.125-12.436-10.124-17.125-.6-1.178-.969-2.147-1.5-2.094zm-88.312.468c-.348.06-.861.59-1.812 1.844-2.353 7.692-3.18 13.973-2.282 18.75 6.043 31.534 12.234 60.263 11.25 90.281 2.866.02 6.179-6.555 7.594-13.062.775-8.963-.517-14.419-.75-19.688-.232-5.268-5.964-48.014-7.125-52-1.4-7.537 5.574-.991 4.813-5.375-2.411-5.526-8.43-13.574-10.312-18.375-.708-1.286-.796-2.475-1.375-2.375zm-215.03.594c-.743.129-1.46.74-1.719 1.75-.163.661.286 1.761-.312 2.094-.344.347-1.648.114-1.594-1.719 0-.584-.429-1.193-.688-1.562-.26-.17-.435-.22-.906-.22-.573.024-.56.175-.875.657-.14.49-.32.97-.32 1.53-.071.652-.333.873-.812.969-.537 0-.41.058-.844-.219-.258-.282-.563-.393-.563-.875 0-.499-.13-1.295-.28-1.625-.229-.3-.589-.457-1-.562-2.248.008-2.411 2.59-2.282 3.562-.168.183-.252 4.76 2.812 6.031 4.114 1.962 11.827 1.132 11.5-5.5 0-.586-.129-2.556-.187-3.094-.42-.977-1.195-1.347-1.938-1.218zm55.188.063a9.19 9.19 0 0 0-3.75 1.03c-2.726 2.611-3.366 6.796-1.219 9.407 2.09.987 4.174 3.09 2.781 4.25-5.908 6.311-21.287 16.857-22.062 18.781-.006.016-.027.048-.03.062-.003.014 0 .05 0 .063 0 .006-.002.026 0 .031a.29.29 0 0 0 .03.063c.004.004.027.027.032.03.005.004.025-.002.03 0 .007.004.025.03.032.032.007.002.023-.002.031 0l.031.031c.782.524 10.404.512 11.47.031.007-.004.024-.027.03-.03.004-.003.03.001.032 0 .002-.003-.002-.03 0-.032 3.307-1.219 19-19.156 19-19.156-.814-.696-1.563-1.21-2.375-1.906-.871-.754-.783-1.495 0-2.25 3.886-2.262 2.655-7.238.625-9.5-1.683-.755-3.266-1.01-4.688-.938zm144.25.062c-.413.041-.916.677-1.687 2.313-1.855 3.037-3.115 8.328-2.97 13.28 4.018 27.815 5.25 52.155 7.876 79.97.213 2.69-.181 6.598-1.97 8.156-6.613 6.906-16.15 15.424-26.53 19.344-1.117 1.254 2.777 6.599 7.812 6.594 8.422-.978 15.823-5.705 22.688-18.156 1.836-2.904 5.062-9.12 5.157-13.938.642-28.247-1.424-50.21-5.657-70.625-.27-1.989-.086-4.341.25-4.938.546-.651 2.395.015 3.375-1.594 1.44-1.47-3.844-13.655-6.843-18.344-.6-1.177-.97-2.115-1.5-2.062zm-223.47.85c-1.162.136-2.256 1.082-2.781 2.344-.195 4.461-.22 8.92.281 13.03 2.03 7.212 2.672 13.554 3.656 20.939.273 9.89-5.711 4.278-5.437-.625 1.382-6.37 1.009-16.396-.219-18.938-.974-2.541-2.101-3.168-4.469-2.75-1.88-.115-6.736 5.176-8.094 13.938 0 0-1.13 4.496-1.625 8.5-.664 4.524-3.661 7.729-5.75-.625-1.805-6.072-2.914-21.032-5.937-17.531-.866 11.68-1.894 32.235 8.031 34.344 12.005 1.154 5.374-20.294 9.719-24.188.821-1.924 2.344-1.959 2.469.469v18.219c-.11 5.922 3.787 7.682 6.812 8.906 3.148-.243 5.235-.157 6.469 2.906.492 10.502 1.008 21.03 1.5 31.531 0 0 7.277 2.091 7.625-17.719.349-11.632-2.316-21.393-.75-23.656.055-2.223 2.906-2.333 4.875-1.25 3.138 2.213 4.53 4.937 9.406 3.844 7.42-2.044 11.89-5.646 12-11.344-.433-5.415-1.06-10.835-3.406-16.25.328-.985-1.42-3.547-1.094-4.531 1.334 2.088 3.351 1.915 3.813 0-1.263-4.162-3.23-8.15-6.406-9.875-2.626-2.314-6.468-1.824-7.875 3-.653 5.558 2.014 12.147 6.062 17.53.86 2.104 2.062 5.603 1.531 8.75-2.154 1.23-4.29.718-6.094-1.187 0 0-5.906-4.421-5.906-5.406 1.568-10.035.338-11.184-.531-13.97-.607-3.843-2.429-5.06-3.906-7.687-1.478-1.566-3.482-1.566-4.438 0-2.61 4.526-1.386 14.242.5 18.594 1.363 4.003 3.453 6.5 2.47 6.5-.811 2.262-2.501 1.736-3.72-.875-1.74-5.395-2.094-13.437-2.094-17.062-.522-4.494-1.104-14.095-4.062-16.53-.79-1.076-1.721-1.45-2.625-1.344zm42.156.063c-.596.075-1.254.414-2.031.593-2.552.813-4.942 3.019-4.188 7.313 3.017 18.332 4.984 32.323 8 50.656.464 2.147-1.336 4.977-3.656 4.687-3.945-2.669-4.924-8.074-11.656-7.843-4.873.058-10.43 5.361-11.125 10.469-.812 4.059-1.102 8.46 0 12 3.425 4.118 7.528 3.679 11.125 2.75 2.958-1.218 5.392-4.133 6.438-3.438.003.003.028-.004.03 0 .004.004-.002.027 0 .031.646 1.128-.06 10.663-13.937 18.031-8.528 3.83-15.316 4.744-18.97-2.219-2.262-4.35.165-20.924-5.405-17.094-16.475 42.467 38.598 48.395 44.75 1.75.398-1.315 1.612-2.636 2.468-2.312.376.16.72.67.844 1.625-1.277 42.235-42.606 45.13-49.625 31.844-1.74-3.132-2.263-10.103-2.437-14.281-.319-2.528-.953-3.985-1.688-4.563-1.674-1.258-3.925 2.023-4.406 7.72-.697 4.582-.5 5.84-.5 10.25 2.204 33.358 55.388 19.025 64.031-8.532 4.279-14.246-.087-24.993 1.344-26.312.012-.01.05-.022.062-.031l.063-.031c.015-.006.046-.027.062-.032a.894.894 0 0 1 .188-.03c5.28 5.686 12.688.722 14.312-1.25.696-.988 2.438-1.62 3.656-.345 4.118 2.96 11.337 1.565 12.844-3.656.87-5.105 1.607-10.36 1.781-15.812-2.683.833-4.847 1.457-5.719 2.375-.207.227-.36.478-.406.75-.233 1.51-.455 3.023-.687 4.531-.025.125-.065.24-.125.344a1.455 1.455 0 0 1-.5.469c-.949.518-2.603.222-2.688-1.156-1.276-5.802-6.527-6.557-9.719 2.437-2.147 1.74-6.061 2.08-6.468-.531.522-6.034-1.91-6.843-6.782-4-1.566-11.951-3.12-23.361-4.687-35.312 2.03-.059 3.893 1.414 5.75-.906-2.01-6.249-6.26-18.963-8.656-20.156-.02-.01-.044-.024-.063-.031a3.182 3.182 0 0 0-.5-.47c-.044-.03-.112-.068-.156-.093a1.73 1.73 0 0 0-.313-.125 1.614 1.614 0 0 0-.656-.062zm164.34.093c-2.108-.062-4.44 1.266-3.531 3.906-.53 1.44 4.528 6.326 5.344 9 1.467 4.109-1.121 8.028.406 8.594 1.405.634 3.36-4.241 4.094-8.75.847-3.644-1.753-11.114-5.438-12.656a4.367 4.367 0 0 0-.875-.093zm-128.03 4.5c.96-.098 2.12.784 2.688 2.031.605 1.33.301 2.602-.688 2.844-.99.243-2.27-.638-2.875-1.969-.606-1.33-.302-2.632.688-2.875.061-.015.123-.024.187-.03zm237.5 6.156c-1.921-.067-4.016 1.392-3.187 4.25-.482 1.56 4.1 6.856 4.843 9.75.669 2.06-1.017 8.7.375 9.313 1.281.686 3.082-4.587 3.75-9.469.371-2.672-1.609-12.049-4.968-13.719a3.524 3.524 0 0 0-.813-.125zm-131.31 3.25c.176.784.351 1.573.469 2.375.394 1.732.733 3.452 1.094 5.157-1.517-2.089-2.773-3.777-3.313-4.375-3.432-4.08.077-2.679 1.75-3.157zm30.25 14.875c-.743.13-1.46.772-1.719 1.782-.163.66.318 1.73-.281 2.062-.344.347-1.68.145-1.625-1.687 0-.584-.429-1.224-.688-1.594-.26-.17-.435-.219-.906-.219-.573.023-.56.175-.875.656-.133.491-.312.975-.312 1.532-.072.652-.302.873-.782.968-.536 0-.44.059-.875-.218-.258-.283-.562-.394-.562-.875 0-.5-.131-1.296-.281-1.625-.228-.3-.588-.426-1-.532-2.247.008-2.38 2.559-2.25 3.532-.169.183-.283 4.79 2.78 6.062 4.114 1.961 11.859 1.101 11.532-5.531 0-.587-.16-2.557-.219-3.094-.42-.978-1.195-1.347-1.937-1.219zm-138.12 1.375c-.507-.051-1.172.135-1.937.594-3.638 1.968-5.047 7.804-2.782 11.22 2.116 3.007 5.461 1.905 5.907 1.905 3.564.446 5.687-6.687 5.687-6.687s.107-2.006-4.125 1.781c-1.781.334-2.023-.31-2.469-1.312-.37-1.856-.291-3.737.563-5.594.394-1.113.002-1.82-.844-1.906zm195.25.907c-2.02-.098-4.169 1.21-4.719 3.969.008 1.627.735 2.522.594 4-.21.844-1.08 1.4-3.156.406.324-.299-1.344-2.656-1.344-2.656-1.619-.986-3.78.053-5.188.968-.774 1.407-1.346 3.82-.468 6.281 2.323 4.293 10.293 11.618 14.094 11.688.07-3.87.446-9.017.656-12.219.09-1.208.373-2.54 1.531-2.843 1.157-.303 3.165 1.164 3.188-.094-.211-2.462-.703-6.096-2.094-7.813-.713-1.055-1.882-1.628-3.094-1.687zm-161.62 13.469c-.054.02-.107.065-.156.093-.024.015-.07.045-.094.063-.402.302-.877.999-1.937 1.75-1.79 2.035-2.11 3.452-2 7.531.101.432 3.396 9.592 6.187 16.031 1.882 6.693 3.623 14.356 2.344 21.594-4.406 9.569-13.263 18.15-21.812 22.812-4.356 1.395-8.118.92-9.125-.031l-.031-.031c-2.502-1.682-2.56-4.676-2.407-5.188v-.031l.032-.031c7.213-5.025 15.454-9.092 21.906-22.656 1.905-5.184 2.486-8.297.593-16.312-.738-2.987-1.649-5.445-3.687-7.563l.031-.03c1.228-.588 4.414 1.759 4.906.28-.754-3.827-3.346-8.965-6.28-11.594-2.571-2.334-5.367-2.604-7.72-.468-2.65 1.474-3.213 6.77-1.937 11.406 1.417 3.49 5.243 4.101 7.969 11.125v.03c.056.441.935 5.243-.438 7.188-1.114 3.474-15.424 14.76-16.438 15.438-.011.011-.083.052-.094.063l-.03.031c-.004.002-.025.024-.032.031l-.031.031h-.063a.706.706 0 0 1-.03-.03v-.032c-.007-.01-.026-.051-.032-.063-.043-.281.033-.999 0-2.156-.094-2.114.781-6.898.719-7.719v-.03l-.031-.032v-.031h-.032c-4.73 3.054-6.292 12.416-7.156 15.188-11.975 8.274-25.574 14.43-33.406 22.812-4.079 6.37 28.104-7.315 31.844-8.969.032.024.064.063.094.094.71.782.771 3.51 2.906 5.969 3.345 4.531 10.456 7.322 17.375 5.593 11.603-4.194 18.288-12.102 25.094-20.875.973-1.415 2.497-2.53 3.906-1.437 4.677 10.47 18.161 17.92 35.594 18.688 4.034-4.906 2.105-7.318.469-8.344-.504-.335-8.67-3.518-9.938-6.687-.798-2.95 1.143-5.565 5.032-7.532 11.193-1.353 22.196-2.857 32.844-6.28.108-3.578 2.215-8.928 3.625-11.25.979-1.613 1.608-1.772 1.843-2l.032-.032c.003-.004.028-.027.03-.031.007-.005.027-.026.032-.031v-.063c.006-.07 0-.193-.031-.312l-1.813-1.063-35.719-.156c-.44-.17-.769-.34-.968-.5-.016-.013-.05-.05-.063-.063l-.031-.03-.031-.032c-.005-.011-.027-.052-.031-.063l-.032-.03v-.032l-.03-.031v-.249c.005-.007.025-.026.03-.032.008-.016.02-.046.032-.062.174-.235.597-.457 1.125-.657 8.529-1.162 23.682-3.646 24.688-18.219-.158-7.59-3.249-12.56-12.562-13.938-6.844.53-11.725 7.15-10.938 14.438-.328 1.963.664 5.814-1.344 6.25-13.128 1.2-27.457 9.425-27.938 15.312h-.031l-.032.031-.062.032h-.063a1.44 1.44 0 0 1-.093.03h-.094a1.513 1.513 0 0 1-.094 0c-.034-.006-.095-.023-.125-.03-.854-.237-1.954-1.647-1.781-3.625-.5-10.177-3.812-21.693-9-30.562-1.851-1.851-2.658-2.601-3.187-2.688-.018-.002-.046.001-.063 0h-.187zm34.188 5.375c-.743.128-1.46.74-1.719 1.75-.163.66.318 1.76-.281 2.093-.344.347-1.68.145-1.625-1.687 0-.584-.429-1.224-.688-1.594-.26-.17-.404-.219-.875-.219-.573.024-.591.175-.906.657-.133.49-.312.975-.312 1.53-.072.653-.302.874-.782.97-.536 0-.409.058-.843-.22-.258-.281-.594-.392-.594-.874 0-.499-.1-1.295-.25-1.625-.228-.3-.62-.426-1.031-.531-2.247.008-2.38 2.558-2.25 3.53-.169.184-.283 4.791 2.781 6.063 4.113 1.962 13.916.807 11.531-5.53 0-.587-.16-2.557-.219-3.095-.42-.977-1.195-1.347-1.937-1.218zm137.97 5.656a.679.679 0 0 0-.344.031s-19.059 13.56-19.53 14.031c-1.89 1.68-.945 7.589 0 6.906 1.365.525 20.553-12.478 20.187-14 .837.05 1.239-6.689-.312-6.968zm-119.96 2.01c.778-.083 1.798.181 2.781.75 1.423.823 2.3 2.066 2.188 2.969-.004.024.005.07 0 .093-.006.024-.056.07-.063.094-.008.023-.022.071-.031.094-.006.015-.024.048-.031.062l-.031.063a1.25 1.25 0 0 1-.188.219c-.684.638-2.262.547-3.75-.313-1.41-.815-2.28-2.068-2.187-2.969.003-.024.026-.07.03-.093.024-.112.069-.214.126-.313.02-.035.038-.093.062-.125l.032-.031a1.43 1.43 0 0 1 .156-.156 1.78 1.78 0 0 1 .906-.344zm-166.91 3.437c-9.876.18-24.338 12.945-24.719 20.031 10.421-5.004 20.657-9.82 31.25-15-1.71-2.552-.104-4.851-6.531-5.03zm32 4.438c.968.01 1.99.489 2.531 1.844.488 1.242.023 2.542-.562 3.187-.003.005.003.026 0 .031-.01.015-.022.05-.031.063-.415.534-1.87.312-2.907.312-1.254-.055-1.872-.26-2.625-1.28-.36-1.135.736-2.249 1.22-3.095.004-.008.025-.023.03-.03.053-.08.138-.174.22-.25.374-.344 1.023-.665 1.718-.75.135-.017.268-.034.406-.032zm251.16 3.93c-1.756.216-3.425 1.877-2.656 4.531-.482 1.56 2.382 7.012 3.125 9.906.668 2.06-.86 7.888.531 8.5 1.281.687 4.65-3.459 4.531-8.656.371-2.672-.953-12.517-4.312-14.188a3.164 3.164 0 0 0-1.219-.094zm-213.31 9.625c-1.552.108-2.937.938-2.312 3.125-.094 1.586 4.385 3.515 4.656 7.187.64 1.514-.958 6.362.375 6.813 1.223.504 2.921-3.351 3.562-6.938.355-1.964-1.536-8.835-4.75-10.062a5.5 5.5 0 0 0-1.531-.125zm63.844 8.719c.118-.008.222 0 .344 0h.062c3.98 1.081 9.846 1.193 14.938 1.718 4.148.264 6.197 3.51 2.313 4.875-3.832 1.313-7.514 2.338-7.531 7.875.503 2.744.397 4.183-.032 4.844-.033.05-.087.116-.125.157l-.03.03-.032.032-.031.031-.031.031-.063.032a1.102 1.102 0 0 1-.187.093c-.054.018-.131.022-.188.031-.91.134-2.234-.735-3.219-1.25-2.362-1.696-8.993-5.805-9.937-14.625-.135-1.99 1.355-3.706 3.75-3.875zm-155.94 6.78c-.249.009-.746.752-1.406 1.595-5.875 9.36-6.398 23.33-3.156 27.5 1.722 1.97 4.562 2.835 6.656 2.218 3.69-1.6 5.313-9.077 4.437-11.812-1.231-1.928-2.207-2.233-3.437-.593-2.598 5.273-3.679 1.666-3.906-1.281-.399-5.59.143-10.736.75-14.812.323-2.09.31-2.82.062-2.813zm200.16 12.29a2.695 2.695 0 0 0-1.375.282c-.093 0-4.206 2.782-5.531 4.719-.809.615-.717 1.15-.469 2.219.63 1.448 1.74.994 3 .312 1.672-.228 2.48.867 2.344 2.875-.772 2.504.344 3.437.344 3.594 0 .157 1.61 1.54 3.5.438 3.989-1.523 6.475-3.005 12.062-4.22 1.466-.028 1.381-3.953-.938-4.093-3.026.152-5.818.307-8.844 2.687-1.861.43-2.18-.702-2.593-1.718-.473-2.521 1.064-4.298.75-6.188.083.083-.94-.836-2.25-.906zm128.16 4.782c-.742.023-1.524.126-2.656.219-1.225.26-1.652.796-1.875 2.281.088 2.252 1.465 2.14 2.875 3.031.816 1.04 1.347 1.98-.063 3.688-1.336 1.224-2.288 1.9-3.625 3.125-.63 1.076-1.024 2.73.907 3.25 3.564 1.002 11.812-4.357 11.812-4.469 1.336-1.002.893-2.906.78-2.906-.778-.891-2.537-.356-3.718-.5-.562 0-2.41-.274-1.531-1.906.733-1.016 1.003-1.624 1.5-2.875.556-1.225.067-2.05-1.938-2.72-1.02-.185-1.726-.241-2.468-.218zm-53.54 108.4c-.008.004-.023.026-.031.031-5.928 1.521-5.744 7.675-1.938 10.375-62.594 0-158.65-1.062-179.25-1.062-11.525 0-47.987-1.375-48.688-1.375 7.82 11.437 19.147 13.766 33.97 14 27.801 0 156.62-.344 193.28-.344-2.607 4.628.236 12.074 2.28 13.438.044.028.114.072.157.094.076.038.177.075.25.093.024.006.07-.003.093 0 2.428.573 3.496-1.184 4.313-2.468 3.937.347 26.097.667 28.125-.032.007-.003.024-.028.031-.03 1.372 2.018 2.733 3.926 5.344 3.593 4.569-.98 8.167-1.477 8.281-10.75 0 0-.467-15.802-10.844-14.812-2.455.371-9.344 1.063-9.344 1.063-7.971-.949-13.819-1.046-22.78-1.375.827-1.05 2.287-5.304.5-6.844-.467-.388-1.162-.604-2.126-.531h-.03c-.014-.001-.05.002-.063 0-.007-.002-.025-.03-.032-.032-.025-.009-.069-.016-.093-.03a.946.946 0 0 1-.157-.157c-.01-.014-.051-.048-.062-.063-.453-.66-.7-2.277-1-2.687l-.031-.031-.031-.032a.506.506 0 0 0-.063-.03h-.031c-.004 0-.028-.002-.031 0zm4.25 22.594c.01-.005.02.005.031 0 9.132.446 17.712.086 26.844.531 1.448 1.23.724 4.049-.219 4.563a1.032 1.032 0 0 1-.156.062c-.034.008-.09 0-.125 0-.034 0-.09.008-.125 0-2.97-.074-4.687-.144-7.656-.218a1.716 1.716 0 0 0-.063-.438c-.703-2.085-5.8-1.946-7-.312l-.062.093c-.02.033-.046.092-.063.125a1.894 1.894 0 0 0-.062.157c-.019.061-.023.153-.031.218-.008.075-.038.171-.031.25-4.009.482-7.617-.133-11.625-.28-1.177-1.465-1.04-4.114.343-4.75z' fill='%23fff'/%3e%3c/svg%3e\"},4520:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 800 400'%3e%3cpath d='M0 400V0h800z' fill='%230051ba'/%3e%3cpath d='M0 400h800V0z' fill='%23215b33'/%3e%3cpath d='M0 400 800 0' stroke='%23fcd116' stroke-width='36'/%3e%3cg transform='translate(140 120)'%3e%3cg id='d' fill='%23fff'%3e%3cg id='c'%3e%3cg id='b'%3e%3cpath id='a' d='M0-40V0h20z' transform='rotate(18 0 -40)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(-72)'/%3e%3cuse xlink:href='%23c' transform='rotate(144)'/%3e%3c/g%3e%3cg id='f' transform='rotate(40.6)'%3e%3cuse id='e' xlink:href='%23d' x='-104' transform='rotate(-40.6 -104 0)'/%3e%3cuse xlink:href='%23e' x='208'/%3e%3c/g%3e%3cuse xlink:href='%23f' transform='scale(-1 1)'/%3e%3c/g%3e%3c/svg%3e\"},9228:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 450'%3e%3cpath d='M0 450h900V0H0z' fill='%23d62828'/%3e%3cpath d='M0 450V0h600z' fill='%23fcd856'/%3e%3cpath d='M0 450V0h300z' fill='%23003f87'/%3e%3cpath d='M0 450h900V150z' fill='%23fff'/%3e%3cpath d='M0 450h900V300z' fill='%23007a3d'/%3e%3c/svg%3e\"},9230:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 6'%3e%3cpath d='M0 0h12v6H0z'/%3e%3cpath fill='%23FFF' d='M0 0h12v4H0z'/%3e%3cpath fill='%23D21034' d='M0 0h12v2H0z'/%3e%3cpath fill='%23007229' d='m0 0 4 3-4 3z'/%3e%3c/svg%3e\"},5738:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3e%3cpath fill='%23006aa7' d='M0 0h16v10H0z'/%3e%3cpath fill='%23fecc00' d='M5 0h2v10H5z'/%3e%3cpath fill='%23fecc00' d='M0 4h16v2H0z'/%3e%3c/svg%3e\"},8623:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 4320 2880'%3e%3cpath fill='%23ed2939' d='M0 0h4320v1440H0z'/%3e%3cpath fill='%23fff' d='M0 1440h4320v1440H0zm1481.678-720a541.5 541.5 0 1 1-1083 0 541.5 541.5 0 1 1 1083 0z'/%3e%3cpath fill='%23ed2939' d='M1651.835 720a511.735 511.735 0 1 1-1023.47 0 511.735 511.735 0 1 1 1023.47 0z'/%3e%3cpath fill='%23fff' id='a' d='m1007.195 733.064-73.56-56.43-73.542 56.457 28.313-90.994-73.795-56.092 91.06.193 27.934-91.123 27.964 91.113 91.06-.226-73.777 56.119 28.343 90.983z'/%3e%3cuse xlink:href='%23a' transform='translate(577.189)'/%3e%3cuse xlink:href='%23a' transform='translate(288.889 -214.211)'/%3e%3cuse xlink:href='%23a' transform='translate(108 342.749)'/%3e%3cuse xlink:href='%23a' transform='translate(469.189 342.749)'/%3e%3c/svg%3e\"},3226:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3e%3cclipPath id='a'%3e%3cpath d='M0 0v30h60V0z'/%3e%3c/clipPath%3e%3cclipPath id='b'%3e%3cpath d='M30 15h30v15zv15H0zH0V0zV0h30z'/%3e%3c/clipPath%3e%3cg clip-path='url(%23a)'%3e%3cpath d='M0 0v30h60V0z' fill='%23012169'/%3e%3cpath d='m0 0 60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3e%3cpath d='m0 0 60 30m0-30L0 30' clip-path='url(%23b)' stroke='%23C8102E' stroke-width='4'/%3e%3cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3e%3cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3e%3c/g%3e%3c/svg%3e\"},2775:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 12 6'%3e %3ctitle%3eFlag of Slovenia%3c/title%3e %3crect width='12' fill='%23ed1c24' height='6'/%3e %3crect width='12' fill='%23005da4' height='4'/%3e %3crect width='12' fill='%23fff' height='2'/%3e %3cg transform='translate(2.2238 1) scale(.12937)'%3e %3csvg width='12' viewBox='-120 -190.223125 240 309.188274' height='15.459'%3e %3cpath d='m110.26-19.478l9.74-143.75a280.22 280.22 0 0 0 -240 0l9.74 143.75a155.61 155.61 0 0 0 110.26 138.45 155.61 155.61 0 0 0 110.26 -138.45' fill='%23005da4'/%3e %3cpath d='m-90 0a138.29 138.29 0 0 0 90 100.77 138.29 138.29 0 0 0 90 -100.77l-45-60-18 24-27-54-27 54-18-24-45 60' fill='%23fff'/%3e %3cg id='wave' fill='%23005da4' transform='scale(5) translate(0 5.1962)'%3e %3cpath d='m-17.196-2.1962a6 6 0 0 0 8.1962 2.1962 6 6 0 0 1 6 0 6 6 0 0 0 6 0 6 6 0 0 1 6 0 6 6 0 0 0 8.1962 -2.1962v1.732a6 6 0 0 1 -8.1962 2.1962 6 6 0 0 0 -6 0 6 6 0 0 1 -6 0 6 6 0 0 0 -6 0 6 6 0 0 1 -8.1962 -2.1962z'/%3e %3c/g%3e %3cuse xlink:href='%23wave' transform='translate(0 17.321)'/%3e %3cg id='s' transform='translate(0,-120) scale(2.25)'%3e %3cpath stroke-width='.2' d='m0-5l1 3.2679 3.3301-0.7679-2.3301 2.5 2.3301 2.5-3.3301-0.7679-1 3.2679-1-3.2679-3.3301 0.7679 2.3301-2.5-2.3301-2.5 3.3301 0.7679z' fill='%23fd0'/%3e %3c/g%3e %3cuse xlink:href='%23s' transform='translate(-33.75,-45)'/%3e %3cuse xlink:href='%23s' transform='translate(33.75,-45)'/%3e %3cpath d='m-111.58-167.05l9.96 146.99a146.95 146.95 0 0 0 101.62 129.95 146.95 146.95 0 0 0 101.62 -129.95l9.96-146.99a280.22 280.22 0 0 0 8.42 3.82l-9.74 143.75a155.61 155.61 0 0 1 -110.26 138.45 155.61 155.61 0 0 1 -110.26 -138.45l-9.74-143.75a280.22 280.22 0 0 0 8.42 -3.82' fill='%23ed1c24'/%3e %3c/svg%3e %3c/g%3e %3c/svg%3e\"},4989:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1100 800'%3e%3cpath fill='%23ef2b2d' d='M0 0h1100v800H0z'/%3e%3cpath fill='%23fff' d='M300 0h200v800H300z'/%3e%3cpath fill='%23fff' d='M0 300h1100v200H0z'/%3e%3cpath fill='%23002868' d='M350 0h100v800H350z'/%3e%3cpath fill='%23002868' d='M0 350h1100v100H0z'/%3e%3c/svg%3e\"},5299:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 6'%3e%3cpath fill='%23ee1c25' d='M0 0h9v6H0z'/%3e%3cpath fill='%230b4ea2' d='M0 0h9v4H0z'/%3e%3cpath fill='%23fff' d='M0 0h9v2H0z'/%3e%3cpath fill='%23fff' d='M3.163 4.635c-.538-.259-1.308-.773-1.308-1.79s.05-1.48.05-1.48H4.42s.049.463.049 1.48-.77 1.53-1.307 1.79z'/%3e%3cpath fill='%23ee1c25' d='M3.163 4.5c-.494-.238-1.2-.71-1.2-1.643S2.008 1.5 2.008 1.5h2.309s.045.424.045 1.357c0 .934-.706 1.405-1.2 1.643z'/%3e%3cpath fill='%23fff' d='M3.268 2.613c.134.002.394.007.626-.07 0 0-.006.083-.006.18 0 .096.006.18.006.18-.212-.072-.475-.074-.626-.072v.516h-.211V2.83c-.15-.002-.413 0-.626.071 0 0 .006-.083.006-.18 0-.096-.006-.18-.006-.18.232.078.492.073.626.07V2.29a1.481 1.481 0 0 0-.496.071s.007-.083.007-.18c0-.096-.007-.18-.007-.18.199.067.374.073.496.072-.007-.205-.066-.464-.066-.464s.122.01.172.01c.049 0 .172-.01.172-.01s-.06.259-.066.464A1.48 1.48 0 0 0 3.764 2s-.006.083-.006.18c0 .096.006.18.006.18a1.481 1.481 0 0 0-.496-.072v.324z'/%3e%3cpath fill='%230b4ea2' d='M3.163 3.29c-.249 0-.382.346-.382.346s-.074-.164-.277-.164c-.137 0-.238.122-.302.235.25.397.648.642.96.793.313-.15.712-.396.961-.793-.064-.113-.165-.235-.302-.235-.203 0-.277.164-.277.164s-.133-.345-.382-.345z'/%3e%3c/svg%3e\"},5084:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 450 300'%3e%3cpath fill='%230072C6' d='M0 0h450v300H0z'/%3e%3cpath fill='%23FFF' d='M0 0h450v200H0z'/%3e%3cpath fill='%231EB53A' d='M0 0h450v100H0z'/%3e%3c/svg%3e\"},694:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 800 600'%3e%3cpath fill='%235eb6e4' d='M0 0h800v600H0z'/%3e%3cpath fill='%23fff' d='M0 0h800v300H0z'/%3e%3cg fill='none' stroke='%23000' stroke-width='.93'%3e%3cg fill='%23fff'%3e%3ccircle cx='459.44' cy='171.23' r='4.04'/%3e%3ccircle cx='461.69' cy='157.02' r='5.08'/%3e%3ccircle cx='376.39' cy='141.72' r='3.91'/%3e%3ccircle cx='338.47' cy='157.02' r='5.08'/%3e%3ccircle cx='361.67' cy='143.37' r='4.22'/%3e%3ccircle cx='340.72' cy='171.23' r='4.04'/%3e%3ccircle cx='346.87' cy='147.12' r='4.88'/%3e%3ccircle cx='423.77' cy='141.72' r='3.91'/%3e%3ccircle cx='438.49' cy='143.37' r='4.22'/%3e%3ccircle cx='453.29' cy='147.12' r='4.89'/%3e%3c/g%3e%3cg stroke-width='1.09'%3e%3ccircle cx='459.44' cy='171.23' r='4.46'/%3e%3ccircle cx='461.69' cy='157.03' r='5.6'/%3e%3ccircle cx='376.39' cy='141.72' r='4.31'/%3e%3ccircle cx='338.47' cy='157.03' r='5.6'/%3e%3ccircle cx='361.67' cy='143.37' r='4.65'/%3e%3ccircle cx='340.72' cy='171.23' r='4.46'/%3e%3ccircle cx='346.87' cy='147.12' r='5.39'/%3e%3ccircle cx='423.77' cy='141.72' r='4.31'/%3e%3ccircle cx='438.49' cy='143.37' r='4.65'/%3e%3ccircle cx='453.29' cy='147.12' r='5.39'/%3e%3c/g%3e%3cg fill='%23000' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M392.49 132.02c-13.49 15.53-37.16 7.94-47.95 14-18.79 10.52 1.64 35.48 5.5 40.25l20.46-5.34c-7.51-6.01-22.59-16.23-18.05-24.53 4.66-8.5 29.37.13 40.18-18.04 2.28-3.82.53-7.12-.14-6.34z'/%3e%3cpath fill='%23f1bf31' d='M392.49 132.48c-13.49 15.54-36.4 8.1-47.19 14.15-18.78 10.52 2.43 34.87 6.28 39.64l17.68-5.34c-7.52-6.01-21.8-16.54-17.26-24.83 4.65-8.51 29.82-.04 40.63-18.2 2.28-3.82.53-6.2-.14-5.42z'/%3e%3cpath stroke-width='.63' d='M393.71 133.68c-14.6 19.71-36.52 9.76-45.94 17.45-10.64 8.7 4.86 25.8 12.34 32.57l1.17-.43c-6.07-5.76-24.06-22.84-12.63-32.07 8.22-6.64 31.33 2.02 45.11-17.05z'/%3e%3cpath fill='%23d99f31' d='M357.83 171.3c-.36.68-.9 1.86-1.26 3.34-6.24-7.44-10.91-15.14-6-21.5 4.48-5.8 15.46-3.18 26.88-7.2a29.75 29.75 0 0 0 14.75-9.49c-.42 1.14-.86 2.5-1.34 3.88-11.6 14.77-34.75 7.7-39.17 15.76-2.6 4.77 1.1 10.26 6.14 15.22z' stroke='none'/%3e%3cpath d='M352.11 169.98a5.25 5.25 0 0 0 2.7-1.94c.29.36.6.71.91 1.07a5.77 5.77 0 0 1-1.92 1.75 6.86 6.86 0 0 1-3.23.69c-.36-.48-.7-.96-1.04-1.45.86.09 1.83.1 2.58-.12zm-2.81-5.77a6 6 0 0 0 2.5-.8c.15.34.32.69.5 1.03-.75.44-1.37.7-2.42.92a8.63 8.63 0 0 1-3.12-.01c-.2-.44-.4-.89-.58-1.33.95.18 2.18.34 3.12.19zm1.54-4.81a8.77 8.77 0 0 1-5.5-2.83c.1-.41.23-.82.4-1.22.8 1.01 2.56 2.77 5.18 3-.05.34-.08.7-.08 1.05zm1.8-4.56a8.94 8.94 0 0 1-3.45-3.77c.27-.2.56-.38.86-.55a7.64 7.64 0 0 0 3.4 3.65c-.3.2-.56.43-.8.67zm3.99-6.15c.24 1.4.99 2.6 2.14 3.45l-1.11.26a6.26 6.26 0 0 1-1.94-3.58l.9-.13zm7.1-.62a5.94 5.94 0 0 0 2.09 2.7c.1.1.16.2.18.3l-1.1.13c-1-.84-1.75-1.89-2.11-3.06l.93-.07zm6.92-.69a8.14 8.14 0 0 0 2.68 2.56l-1.28.24a8.9 8.9 0 0 1-2.4-2.66l1-.14zm6.18-1.25c.9.86 2.03 1.5 3.25 1.92l-1.3.46a8.97 8.97 0 0 1-2.95-2.12l1-.26zm6.23-2.4c.83.6 1.93 1 2.9 1.24-.33.23-.66.45-1 .66-1-.31-2.02-.78-2.8-1.46l.9-.44zm4.6-2.9c.66.32 1.43.56 2.18.72l-.73.77c-.79-.21-1.58-.5-2.25-.9l.8-.6z' stroke='none'/%3e%3cpath fill='none' stroke-width='.6' d='M393.76 134.46c.04.95-.23 1.77-1.13 3.28-10.8 18.17-36.29 9.85-40.94 18.36-4.47 8.17 9.64 18.51 17.24 24.57-1.33.48-2.74.9-4.22 1.26l-1.32.72-1.97.62c-6.07-5.76-24.04-22.69-12.61-31.91 8.22-6.64 31.17 2.17 44.95-16.9z'/%3e%3cpath d='M407.52 132.02c13.49 15.53 37.16 7.94 47.95 14 18.79 10.52-1.64 35.48-5.49 40.25l-20.47-5.34c7.52-6.01 22.59-16.23 18.05-24.53-4.65-8.5-29.37.13-40.18-18.04-2.28-3.82-.53-7.12.14-6.34z'/%3e%3cpath fill='%23f1bf31' d='M407.67 132.48c13.48 15.54 36.4 8.1 47.19 14.15 18.78 10.52-2.43 34.87-6.28 39.64l-17.68-5.34c7.52-6.01 21.8-16.54 17.26-24.83-4.65-8.51-29.83-.04-40.63-18.2-2.28-3.82-.54-6.2.14-5.42z'/%3e%3cpath stroke-width='.63' d='M438.88 183.27c6.07-5.76 24.06-22.84 12.63-32.07-8.22-6.64-31.33 2.02-45.11-17.05l.05-.47c14.6 19.71 36.52 9.76 45.94 17.45 10.63 8.68-4.95 25.74-12.46 32.53z'/%3e%3cpath fill='%23d99f31' d='M442.33 171.3c.36.68.9 1.86 1.25 3.34 6.25-7.44 10.92-15.14 6-21.5-4.47-5.8-15.45-3.18-26.88-7.2a29.75 29.75 0 0 1-14.74-9.49c.42 1.13.86 2.5 1.34 3.88 11.6 14.77 34.76 7.7 39.17 15.76 2.6 4.77-1.1 10.26-6.14 15.22z' stroke='none'/%3e%3cpath d='M448.05 170.6c-1.5-.37-2.25-1.03-3.23-1.93-.3.35-.6.69-.92 1.02a8.3 8.3 0 0 0 2.46 1.8c.92.4 1.9.56 2.82.6.34-.45.68-.9 1-1.36a7.4 7.4 0 0 1-2.13-.13zm2.81-6.4a5.99 5.99 0 0 1-2.5-.8c-.15.35-.32.7-.51 1.04.76.44 1.38.7 2.43.92 1.05.22 2.15.15 3.12-.01l.58-1.34c-.95.19-2.18.35-3.12.2zm-1.54-4.8a8.77 8.77 0 0 0 5.5-2.83 8.6 8.6 0 0 0-.4-1.22c-.8 1.01-2.57 2.77-5.18 3 .05.34.08.7.08 1.04zm-1.8-4.56a8.94 8.94 0 0 0 3.45-3.77c-.27-.2-.56-.38-.86-.55a7.64 7.64 0 0 1-3.4 3.65c.3.2.56.43.8.67zm-3.99-6.15c-.24 1.4-.99 2.6-2.14 3.45l1.11.26a6.26 6.26 0 0 0 1.93-3.58l-.9-.13zm-7.1-.62a5.93 5.93 0 0 1-2.09 2.7.44.44 0 0 0-.18.3l1.1.13c1-.84 1.75-1.89 2.11-3.06l-.94-.07zm-6.92-.69a8.14 8.14 0 0 1-2.68 2.55l1.27.25a8.9 8.9 0 0 0 2.4-2.67l-.99-.13zm-6.19-1.26c-.9.87-2.03 1.51-3.24 1.92.43.17.87.32 1.3.47a8.96 8.96 0 0 0 2.95-2.12c-.34-.08-.67-.17-1-.27zm-6.23-2.39c-.82.6-1.92 1-2.9 1.24.34.23.67.45 1.01.66 1-.32 2.02-.79 2.8-1.46l-.9-.44zm-4.59-2.9a9.3 9.3 0 0 1-2.18.72c.24.26.48.52.73.76a8.8 8.8 0 0 0 2.25-.9c-.27-.18-.53-.38-.8-.59z' stroke='none'/%3e%3cpath fill='none' stroke-width='.6' d='M406.4 134.46c-.04.95.23 1.77 1.13 3.28 10.8 18.17 36.29 9.85 40.94 18.36 4.47 8.17-9.64 18.51-17.24 24.57 1.33.48 2.74.9 4.22 1.26l1.32.72 1.97.62c6.07-5.76 24.04-22.69 12.61-31.91-8.22-6.64-31.17 2.17-44.95-16.9z'/%3e%3c/g%3e%3cpath fill='%23000' d='M400.08 166.7h-6.84s.8-6.52-.1-10.94c-.75-3.58-3.6-7.68-3.6-10.68s3.26-11.46 3.26-11.46h14.56s3.1 8.45 3.1 11.46c0 3-2.7 7.1-3.43 10.68-.92 4.42-.1 10.94-.1 10.94h-6.85z'/%3e%3cpath fill='%23f1bf31' d='M400.08 166.7h-6.84s1.05-6.51.2-10.94c-.69-3.6-3.12-6.4-3.45-10.06-.45-5.16 4.05-12.08 4.05-12.08h12.08s4.35 6.92 3.89 12.08c-.32 3.66-2.6 6.45-3.3 10.06-.84 4.43.21 10.94.21 10.94h-6.84z' stroke='none'/%3e%3cpath fill='%23d99f31' d='M389.98 144.4c.43-.14.88-.25 1.32-.25 1.5 0 2.09.98 2.09.98s3.93-.9 6.69-.9c2.76 0 6.69.9 6.69.9s.6-.98 2.1-.98c.38 0 .77.08 1.16.2.02.46.02.91-.02 1.35-.32 3.66-2.6 6.45-3.3 10.06a29.12 29.12 0 0 0-.22 7.05l-6.41 3.05-6.42-3.05c.16-2.17.2-4.86-.22-7.05-.69-3.6-3.12-6.4-3.45-10.06a9.12 9.12 0 0 1-.01-1.3z' stroke='none'/%3e%3cpath fill='%23000' d='M407.1 146.81c-.3.95-.79 2.46-1.2 3.98a21.98 21.98 0 0 0-.82 4.04c-.19 3.87.47 8.07 1.24 11.87h-.27c-1.1-3.32-2.35-8.43-2.3-11.87.03-2.1 1.35-6.15 2.03-8.1.98-2.8.78-4.7.09-6.57-.7-1.88-1.87-3.75-2.84-6.5v-.04h1.3c.99 2.7 2.1 4.59 2.76 6.5a9.8 9.8 0 0 1 0 6.7zm-13.26 19.89c.78-3.83 1.42-7.97 1.25-11.86-.05-1-.4-2.53-.82-4.05-.42-1.52-.9-3.03-1.2-3.97-.88-2.81-.18-6.14.75-8.75.8-2.27 1.77-4.02 2.02-4.45h1.34c-.4.68-4.64 7.83-2.8 13.12.68 1.94 2 6 2.04 8.09.04 3.43-1.22 8.55-2.3 11.87h-.28z' stroke='none'/%3e%3cpath d='M400.08 166.7h-6.84s1.05-6.51.2-10.94c-.69-3.6-3.12-6.4-3.45-10.06-.45-5.16 4.05-12.08 4.05-12.08h12.08s4.35 6.92 3.89 12.08c-.32 3.66-2.6 6.45-3.3 10.06-.84 4.43.21 10.94.21 10.94h-6.84z'/%3e%3cellipse fill='%23fff' stroke-width='.92' cx='400' cy='140.64' rx='3.41' ry='2.51'/%3e%3cellipse stroke-width='1.03' cx='400' cy='140.49' rx='3.83' ry='2.73'/%3e%3ccircle fill='%23fff' stroke-width='.92' cx='400' cy='148.23' r='3.68'/%3e%3ccircle stroke-width='1.03' cx='400' cy='148.23' r='4.14'/%3e%3cpath stroke-width='.9' d='M360.41 204.28s-1.05-1.06-1.37-1.93c-.26-.69-.28-1.86-.28-1.86l-3.79-6.07 8.5-8.09 16.18-4.64 20.4-1.46h.03l20.4 1.46 16.17 4.64 8.5 8.1-3.78 6.06s-.02 1.17-.28 1.86a7.2 7.2 0 0 1-1.38 1.93l-18.97-6.41-20.66-.93-20.7.93-18.97 6.41z'/%3e%3cpath fill='%23f1bf31' d='M360.87 203.6s-.75-.95-1.04-1.66c-.42-1.02-.37-2.81-.37-2.81l-4.49-4.7 8.5-8.1 16.18-4.64 20.43-1.45 20.43 1.45 16.17 4.64 8.5 8.1-4.48 4.7s.05 1.79-.37 2.81c-.28.71-1.04 1.66-1.04 1.66l-18.52-5.73-20.69-.93-20.7.93-18.5 5.73z'/%3e%3cpath fill='%23000' d='M358.83 207.29a41.17 12.78 0 1 1 82.34 0 41.17 10.82 0 1 1-82.34 0z'/%3e%3cpath fill='%23f1bf31' d='M360.2 207.29a39.8 12.31 0 1 1 79.6 0 39.8 10.52 0 1 1-79.6 0z'/%3e%3cellipse fill='%23d99f31' cx='400' cy='208.41' rx='36.78' ry='9.39'/%3e%3cpath stroke-width='1.09' d='M436.52 209.68c-6.89 2.94-20.43 4.52-36.47 4.52s-29.58-1.58-36.47-4.52'/%3e%3cpath stroke-width='1.01' d='M435.9 206.26c-7.05 2.69-20.27 4.03-35.85 4.03-15.58 0-28.8-1.34-35.86-4.03'/%3e%3cpath d='M432.46 203.88c-7.5 2.18-19.1 3.4-32.41 3.4-13.32 0-24.91-1.22-32.4-3.4'/%3e%3cpath d='M427.48 202.07c-7.23 1.43-16.78 2.21-27.43 2.21s-20.2-.78-27.43-2.21m46.48-1.75c-5.67.62-12.13.95-19.05.95s-13.38-.33-19.04-.95'/%3e%3cellipse cx='400' cy='208.41' rx='36.48' ry='9.09'/%3e%3cpath fill='%23000' stroke-linejoin='round' d='M354.76 192.76c-3.61-4.8-6.83-8.07-14.65-10.83a13.45 13.45 0 0 1 4.8-2.1c2.97-.73 6-.33 7.96.69-1.55-5.55 1.43-11.1 1.43-11.1s4.82-.27 9.7 3.65c.16-6.73 2.13-9.92 2.13-9.92s5.07.24 10.26 5.4c.99-6.96 4.74-10.74 4.74-10.74s6.23 1.95 9.8 8.53c2.37-9.53 9.15-13.26 9.15-13.26s6.78 3.73 9.16 13.26c3.56-6.58 9.79-8.53 9.79-8.53s3.73 3.64 4.74 10.74c5.19-5.16 10.26-5.4 10.26-5.4s1.97 3.2 2.13 9.92c4.88-3.92 10.18-2.46 10.18-2.46s2.5 4.36.95 9.91c1.95-1.02 5-1.42 7.97-.69 1.82.45 3.72 1.23 4.8 2.1-7.01 2.54-11.2 6.03-14.81 10.83-3.38-6.9-21.46-14.5-45.17-14.5s-41.95 7.6-45.32 14.5z'/%3e%3cpath fill='%23f1bf31' stroke-linejoin='round' d='M354.76 191.99a25.8 25.8 0 0 0-12.17-10.18c1.07-.86 2.96-1.19 4.95-1.33 2.35-.16 4.3.17 5.95.95-1.55-5.55.97-11.23.97-11.23s4.96.02 9.85 3.94c.16-6.72 2.29-10.06 2.29-10.06s4.75.53 9.94 5.68c1.11-6.94 4.75-10.86 4.75-10.86s6.23 1.93 9.79 8.5c2.37-9.52 9-12.92 9-12.92s6.63 3.4 9 12.92c3.56-6.57 9.8-8.5 9.8-8.5s3.74 3.5 4.74 10.86c5.19-5.15 9.94-5.68 9.94-5.68s2.13 3.33 2.3 10.06c4.88-3.92 10.46-2.86 10.46-2.86s1.9 4.6.35 10.15c1.65-.78 3.6-1.11 5.94-.95 2 .14 3.89.47 4.96 1.33A25.8 25.8 0 0 0 445.4 192c-3.38-6.9-21.6-13.86-45.32-13.86-23.71 0-41.94 6.95-45.32 13.86z'/%3e%3cpath fill='%23000' d='M353 194.16c0-8.76 20.9-16.19 47.05-16.19s46.28 7.73 46.28 15.41c0 1.84-1.63 3.43-3.77 4.77.2-.58.31-1.17.31-1.76 0-7.68-16.67-13.9-42.82-13.9s-42.82 6.22-42.82 13.9c0 .6.1 1.18.31 1.76-2.14-1.34-4.54-2.15-4.54-4z'/%3e%3cpath fill='%23f1bf31' stroke-width='.9' d='M354.22 193.38c0-6.64 19.68-14.94 45.83-14.94s45.83 8.3 45.83 14.94c0 1.84-2.05 2.03-2.23 1.46-2.2-6.73-17.45-12.67-43.6-12.67-26.15 0-41.4 5.94-43.6 12.67-.18.57-2.23.38-2.23-1.46z'/%3e%3cpath fill='%23000' stroke-width='.45' stroke-linejoin='round' d='m399.58 172.1.46-7.57c0-.06.07-.83.08-.78l.43 8.34c.14 2.34.3 6.01.3 6.01 0 .03-.02.04-.05.04l-1.5.01a.04.04 0 0 1-.04-.04s.17-3.67.32-6.02zm38.45 13.54c.41-.8.92-1.84 1.3-2.65.74-1.66 2.1-4.3 2.1-4.3.02-.06-.04-.08-.07-.04 0 0-1.7 2.4-2.65 3.9-.5.78-1.19 1.78-1.73 2.56zm-12.8-4.64a76.5 76.5 0 0 1 2.12-4.42c.98-1.81 2.76-4.5 2.76-4.5.03-.05.1-.02.07.03 0 0-1.28 2.73-2.01 4.51-.72 1.74-1.72 4.51-1.72 4.51l-.66.01zm-11.6-2.09a103.3 103.3 0 0 1 3.1-10.59.04.04 0 0 1 .07.02 300.78 300.78 0 0 0-1.83 10.74zm-39.32 2.25h-.57c-.04-.03-1.03-2.8-1.75-4.54-.73-1.78-2.01-4.51-2.01-4.51-.03-.05.03-.08.06-.04 0 0 1.79 2.7 2.77 4.51.83 1.53 1.9 3.9 2.13 4.42zm10.88-2.08-.8-4.95c-.38-2.26-.61-3.53-1.03-5.79-.01-.05.05-.07.07-.02.75 2.18 1.15 3.42 1.79 5.64.46 1.58 1.03 3.83 1.32 4.95zm-23.18 6.62c-.41-.82-.94-1.88-1.32-2.71-.75-1.66-2.1-4.3-2.1-4.3-.03-.06.04-.08.06-.04 0 0 1.7 2.4 2.65 3.9.52.8 1.22 1.83 1.76 2.62z'/%3e%3cg stroke-width='.78' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath fill='%23d99f31' stroke-width='.72' d='M361.6 197.42c-.33-1.9-1.98-3.44-3.25-3.21-1.27.22-3.07 2.12-2.74 4.02.34 1.9 2.72 3.3 4 3.07 1.26-.22 2.33-1.97 2-3.88z'/%3e%3cpath fill='%23f1bf31' d='M359.49 195.08a2.39 2.39 0 0 1-3.03 3.62 2.87 2.87 0 0 1-.14-.53c-.3-1.65.97-3.14 2.07-3.34l.24-.02c.3 0 .59.1.86.27z' stroke='none'/%3e%3cpath d='M360.9 197.47c-.29-1.65-1.41-2.83-2.51-2.64-1.1.2-2.36 1.69-2.08 3.34.3 1.65 2.06 2.85 3.16 2.65 1.1-.19 1.72-1.7 1.43-3.35z'/%3e%3cpath fill='%23d99f31' d='m375.4 192.85-.6-3.59-2.41-1.21s-2.6.7-4.21 1.27c-1.67.6-4.21 1.74-4.21 1.74l-.6 1.05.75 4.05 1.35 1.2 9.02-2.7.91-1.81z'/%3e%3cpath fill='%23f1bf31' d='m365.46 195.44 7.23-2.29.45-.74-.62-3.76-.26-.25-8.03 2.94.61 3.4z' stroke='none'/%3e%3cpath stroke-width='1.09' d='m365.46 195.44 7.23-2.29.45-.74-.47-3m2.55 3.44-2.08-.45'/%3e%3cpath fill='%23f1bf31' d='M385.72 189a1.5 1.5 0 1 1 3-.26 1.5 1.5 0 0 1-3 .26zm-3.48 3.33a1.5 1.5 0 1 1 3-.26 1.5 1.5 0 0 1-3 .26zm-3.55-2.67a1.5 1.5 0 0 1 1.36-1.63c.83-.07 1.41.54 1.48 1.37.07.82-.39 1.55-1.21 1.63a1.5 1.5 0 0 1-1.63-1.37zm3.03-3.33a1.5 1.5 0 1 1 3-.25 1.5 1.5 0 0 1-3 .25z' stroke='none'/%3e%3cpath fill='%23d99f31' d='M385.81 189.4a1.5 1.5 0 0 1 2.82 0 1.5 1.5 0 0 1-2.82 0zm-4-2.67a1.5 1.5 0 0 0 2.81 0 1.5 1.5 0 0 0-2.81 0zm-3.03 3.32a1.5 1.5 0 0 0 1.54.98 1.3 1.3 0 0 0 1.14-.95c-.18-.63-.7-1.06-1.4-1a1.5 1.5 0 0 0-1.28.97zm3.55 2.67a1.5 1.5 0 0 0 2.82 0 1.5 1.5 0 0 0-2.82 0z' stroke='none'/%3e%3cpath stroke-width='.93' d='M385.72 189a1.5 1.5 0 1 1 3-.26 1.5 1.5 0 0 1-3 .26zm-3.48 3.33a1.5 1.5 0 1 1 3-.26 1.5 1.5 0 0 1-3 .26zm-3.55-2.67a1.5 1.5 0 0 1 1.36-1.63c.83-.07 1.41.54 1.48 1.37.07.82-.39 1.55-1.21 1.63a1.5 1.5 0 0 1-1.63-1.37zm3.03-3.33a1.5 1.5 0 1 1 3-.25 1.5 1.5 0 0 1-3 .25z'/%3e%3cpath fill='%23d99f31' d='M392.85 190.4v-3.9l2.27-2.11h9.92l2.27 2.11v3.9l-2.27 1.96h-9.92z' stroke='none'/%3e%3cpath fill='%23f1bf31' d='m405.24 184.85-.8.81v3.72l-.63.62-7.51-.05-.63-.63v-3.56l-.67-.91z' stroke='none'/%3e%3cpath d='M392.85 190.4v-3.9l2.27-2.11h9.92l2.27 2.11v3.9l-2.27 1.96h-9.92z'/%3e%3cpath stroke-width='1.09' d='m393.46 190.23 2.21-.85m11 .91-2.23-.91m-9.05 2.72.9-2.1m8.42 2.1-.9-2.1m.63-4.34v3.72l-.63.62-7.51-.05-.63-.63v-3.71'/%3e%3cpath fill='%23f1bf31' d='M414.37 189a1.5 1.5 0 1 0-2.99-.26 1.5 1.5 0 0 0 3 .26zm3.49 3.33a1.5 1.5 0 1 0-3-.26 1.5 1.5 0 0 0 3 .26zm3.55-2.67a1.5 1.5 0 0 0-1.36-1.63c-.83-.07-1.41.54-1.48 1.37-.08.82.39 1.55 1.21 1.63a1.5 1.5 0 0 0 1.63-1.37zm-3.03-3.33a1.5 1.5 0 1 0-3-.25 1.5 1.5 0 0 0 3 .25z' stroke='none'/%3e%3cpath fill='%23d99f31' d='M414.29 189.4a1.5 1.5 0 0 0-2.82 0 1.5 1.5 0 0 0 2.81 0zm1.18-2.67a1.5 1.5 0 0 0 2.82 0 1.5 1.5 0 0 0-2.82 0zm3.17 3.35c.15.51.56.9 1.14.95a1.5 1.5 0 0 0 1.54-.98 1.5 1.5 0 0 0-1.28-.97c-.7-.06-1.21.37-1.4 1zm-3.7 2.64a1.5 1.5 0 0 0 2.83 0 1.5 1.5 0 0 0-2.82 0z' stroke='none'/%3e%3cpath stroke-width='.93' d='M414.37 189a1.5 1.5 0 1 0-2.99-.26 1.5 1.5 0 0 0 3 .26zm3.49 3.33a1.5 1.5 0 1 0-3-.26 1.5 1.5 0 0 0 3 .26zm3.55-2.67a1.5 1.5 0 0 0-1.36-1.63c-.83-.07-1.41.54-1.48 1.37-.08.82.39 1.55 1.21 1.63a1.5 1.5 0 0 0 1.63-1.37zm-3.03-3.33a1.5 1.5 0 1 0-3-.25 1.5 1.5 0 0 0 3 .25z'/%3e%3cpath fill='%23d99f31' d='m424.7 192.85.6-3.59 2.41-1.21s2.6.7 4.2 1.27c1.68.6 4.22 1.74 4.22 1.74l.6 1.05-.75 4.05-1.35 1.2-9.02-2.7-.91-1.81z'/%3e%3cpath fill='%23f1bf31' d='m434.63 195.44-7.22-2.29-.45-.74.63-3.76.25-.25 8.03 2.94-.61 3.4z' stroke='none'/%3e%3cpath stroke-width='1.09' d='m434.63 195.44-7.22-2.29-.45-.74.47-3m-1.88 4.95 1.86-1.2'/%3e%3cpath fill='%23d99f31' stroke-width='.72' d='M438.4 197.42c.34-1.9 1.99-3.44 3.26-3.21 1.27.22 3.07 2.12 2.74 4.02-.34 1.9-2.72 3.3-4 3.07-1.26-.22-2.33-1.97-2-3.88z'/%3e%3cpath fill='%23f1bf31' d='M439.95 196.63c0-.6.22-1.13.57-1.55a1.62 1.62 0 0 1 1.1-.25c1.1.2 2.36 1.69 2.07 3.34-.03.18-.08.36-.14.53a2.39 2.39 0 0 1-3.6-2.07z' stroke='none'/%3e%3cpath d='M439.1 197.47c.3-1.65 1.42-2.83 2.52-2.64 1.1.2 2.37 1.69 2.08 3.34-.3 1.65-2.06 2.85-3.16 2.65-1.1-.19-1.72-1.7-1.43-3.35z'/%3e%3cpath stroke-width='.83' d='m424.28 192.88.65-3.9 2.56-1.27s2.78.76 4.51 1.37c1.79.64 4.5 1.85 4.5 1.85l.65 1.13-.8 4.35-1.45 1.29-9.66-2.9-.96-1.92zm-31.9-6.53 2.39-2.25h10.62l2.4 2.25v4.2l-2.4 2.09h-10.62l-2.4-2.08v-4.21zm-16.56 6.53-.65-3.9-2.56-1.27s-2.78.76-4.51 1.37c-1.8.64-4.5 1.85-4.5 1.85l-.65 1.13.8 4.35 1.45 1.29 9.66-2.9.96-1.92z'/%3e%3c/g%3e%3cg stroke-linejoin='round' stroke-linecap='round'%3e%3cpath fill='%23d99f31' stroke-width='.95' d='M408.13 95.85c1.77 0 3.07 1.58 3.07 3.36 0 1.78-1.3 3.53-3.07 3.53-2.32 0-5.69-2.75-5.57-.56l.05 1.1 1.23 10.15c3.03.68-10.55.68-7.53 0l1.24-10.2.05-1.05c.11-2.18-3.34.56-5.57.56-1.78 0-3.07-1.75-3.07-3.53 0-1.78 1.3-3.36 3.07-3.36 1.75 0 3.68 1.63 4.92.86 1.95-1.2-.4-3.9-.4-5.73 0-1.77 1.75-3.22 3.53-3.22 1.78 0 3.52 1.45 3.52 3.22 0 1.83-2.36 4.45-.4 5.73 1.18.77 3.12-.86 4.93-.86z'/%3e%3cpath fill='%23f1bf31' d='M397.49 91.5c-.2-.24-.36-.51-.46-.8a3.3 3.3 0 0 1 3.05-2.37c.61 0 1.2.2 1.7.54-.1.36-.92.43-1.68 1.08-1.1.91-1.69 2.66-2.61 1.56zm.5 5.1c.15.2.22.41.22.64 0 1.1-1.9 1.98-4.24 1.98-1.96 0-3.62-.62-4.1-1.47a3.25 3.25 0 0 1 2.7-1.47c1.63 0 3.87 1.39 5.03.67.16-.1.3-.22.4-.35zm3.27.17c0-.51.25-1 .67-1.4-.1.63.02 1.18.64 1.58 1.1.72 3.33-.67 5.03-.67 1.07 0 2.09.57 2.66 1.43-.65 1.04-2.36 1.78-4.36 1.78-2.56 0-4.64-1.22-4.64-2.72z' stroke='none'/%3e%3cpath d='M407.6 96.28c1.65 0 3.15 1.35 3.15 3.01 0 1.66-1.5 3.02-3.15 3.02s-5.74-2.9-5.64-.7l.05 1.19.7 9.78c2.82.64-8.08.64-5.26 0l.7-9.82.05-1.14c.1-2.21-4.1.69-5.64.69-1.66 0-3.15-1.36-3.15-3.02s1.5-3.01 3.15-3.01c1.64 0 3.88 1.39 5.04.68 1.82-1.13-.69-3.78-.69-5.48 0-1.65 1.5-3.15 3.17-3.15 1.66 0 3.17 1.5 3.17 3.15 0 1.7-2.52 4.28-.68 5.48 1.1.7 3.33-.68 5.03-.68z'/%3e%3ccircle fill='%23f1f1f2' stroke-width='1.7' cx='400' cy='116.29' r='7.9'/%3e%3cpath fill='%23000' d='M401.46 121.28a7.7 7.7 0 0 0 1.36-2.29c.18-.57.77-.3.64.19a7.97 7.97 0 0 1-1.25 2.45zm-8.7-4.65.48-.4c.18-.16.4-.31.66-.46.33-.22.1-.74-.3-.55-.44.21-.79.43-1.02.59zm-.05 1.17.42.74c.57-.61 1.54-1.5 1.7-1.65.35-.33-.11-.73-.42-.5a13.95 13.95 0 0 0-1.7 1.41zm.6 1.76.52.6a23.2 23.2 0 0 0 2.46-2.27c.34-.37-.05-.88-.46-.5-.2.2-1.77 1.6-2.5 2.17h-.02zm10.78 1.34c.39-.44.8-1.04.94-1.74.05-.25.23-.36.4-.33.17.04.3.22.26.45a4.3 4.3 0 0 1-1 2.04zm-6.05.77a23.92 23.92 0 0 0 2.64-3.57c.11-.18.31-.22.46-.15.15.07.23.26.12.48-.46.93-1.07 1.9-1.62 2.6-.54.68-.95 1.16-.95 1.16zm-2.24-1.38a24.5 24.5 0 0 0 2.06-2.12c.27-.34.88-.08.53.43-.44.65-1.12 1.46-1.76 2.04z' stroke='none'/%3e%3cpath fill='%23d99f31' d='M406.13 133.63h-12.09c-1.02 1.72-4.25 2.9-6.9 1.52-1.88-.99-2.26-3.22-2.26-3.22s5.06.19 5.09-4.29c0-4.54 2.6-7.5 6.35-7.06a6.56 6.56 0 0 1 3.76 1.94 6.57 6.57 0 0 1 3.76-1.94c3.75-.44 6.35 2.52 6.35 7.02 0 4.52 5.09 4.34 5.09 4.34s-.39 2.22-2.26 3.2c-2.66 1.4-5.91.2-6.88-1.51z'/%3e%3cpath fill='%23d99f31' d='M406.14 133.62h-.42c-1.12 1.04-2.88 2.1-5.64 2.7-2.76-.6-4.52-1.66-5.64-2.7h-.4s-4.24 3.01-7.2.76c-1.1-.84-1.34-1.98-1.34-1.98s5.09-.28 5.09-4.8c0-4.5 2.44-6.4 5.73-6.4 1.44 0 2.75.71 3.76 1.63a5.7 5.7 0 0 1 3.76-1.63c3.29 0 5.73 1.9 5.73 6.4 0 4.52 5.09 4.8 5.09 4.8s-.24 1.14-1.33 1.98c-2.98 2.25-7.2-.76-7.2-.76z' stroke='none'/%3e%3cpath stroke='%23f1bf31' stroke-width='.9' d='M391.16 125.03c-.26.64.16 2.87.16 2.87s.14 2.02-1.45 3.55c-1.11 1.08-3.65 1.55-3.65 1.55m22.78-7.96c.27.63-.15 2.86-.15 2.86s-.14 2.02 1.45 3.55c1.1 1.08 3.64 1.55 3.64 1.55'/%3e%3cpath fill='%23f1bf31' d='M399.98 135.87c-6.3-1.43-7.11-5.33-6.94-5.29.42.1 1.87 2.95 7.04 4.39 5.17-1.44 6.62-4.29 7.03-4.39.18-.04-.64 3.86-6.93 5.29h-.2zm-7.73-11.12c0-1.53 2.52-2.8 5.93-3.15.7.3 1.35.73 1.9 1.23.55-.5 1.2-.94 1.9-1.23 3.4.35 5.91 1.63 5.91 3.15 0 3.6-4.12 5.35-7.82 5.35s-7.82-1.74-7.82-5.35z' stroke='none'/%3e%3cpath d='M406.14 133.62h-.42c-1.12 1.04-2.88 2.1-5.64 2.7-2.76-.6-4.52-1.66-5.64-2.7h-.4s-4.24 3.01-7.2.76c-1.1-.84-1.34-1.98-1.34-1.98s5.09-.28 5.09-4.8c0-4.5 2.44-6.4 5.73-6.4 1.44 0 2.75.71 3.76 1.63a5.7 5.7 0 0 1 3.76-1.63c3.29 0 5.73 1.9 5.73 6.4 0 4.52 5.09 4.8 5.09 4.8s-.24 1.14-1.33 1.98c-2.98 2.25-7.2-.76-7.2-.76z'/%3e%3cpath fill='%23000' d='M407.63 130.62s-.76 5.05-7.55 6.55c-6.8-1.5-7.55-6.55-7.55-6.55s.75 4.2 7.55 5.71c6.8-1.5 7.55-5.71 7.55-5.71z'/%3e%3c/g%3e%3c/g%3e%3cg stroke-width='.93' stroke-linejoin='round' stroke-linecap='round'%3e%3cpath fill='%23a0cfeb' d='M398.8 227.5c13.53-.25 71.81-10.02 71.81 70.92 0 77.3-70.56 108.04-70.56 108.04s-70.56-29.78-70.56-113.9c0-75.08 69.3-65.07 69.3-65.07z'/%3e%3cpath fill='%2394bb79' d='M421.68 348.39a28.54 28.54 0 0 1 13.95-3.62c8.24 0 15.66 3.47 20.9 9.03-20.6 37.02-56.48 52.66-56.48 52.66s-34.96-14.75-55.66-52.83a28.59 28.59 0 0 1 20.73-8.86c5.67 0 10.97 1.65 15.42 4.5a28.59 28.59 0 0 1 21-9.15c7.85 0 14.96 3.15 20.14 8.27z'/%3e%3cpath fill='%23658d5c' d='M433.97 345.16c3.55.41 9.77 3.76 12.78 8.27-2.34 3.86-6.83 10-9.3 13.37-5.5-8.06-16.89-18.86-16.1-18.08.12.1.6-.28.73-.36a52.1 52.1 0 0 1 3.13-1.64 28.48 28.48 0 0 1 6.35-1.67c.76-.02 1.56.01 2.4.11zm-24.18 50.77c-4.5 2.37-8 3.9-9.74 4.63-1.75-.73-5.25-2.26-9.74-4.63-8.7-7.05-26.64-23.5-39.27-47.43a28.09 28.09 0 0 1 13.77-3.58c.4 0 2.1.5 3.34 1.08 7.94 3.73 17.76 14.43 14.14 16.48-2.66 1.5-10.25-.96-10.65 1.98-.15 1.11 14.1 8.94 22.19 15.83 6.63 5.65 17 14.8 15.96 15.64zm17.3-7.03c-9.07-8.9-29.45-27-46.5-39.68a28.58 28.58 0 0 1 18.57-9l.39.05c9.84 1.4 18.76 11.96 15.14 14-2.66 1.5-10.26-.95-10.66 1.99-.13.98 10.2 7.22 16.24 12.41 5.93 5.1 9.82 8.77 14.22 13.58-2.5 2.4-4.98 4.62-7.4 6.65z'/%3e%3cpath d='M422.07 347.94c1.89 1.78 2.7 3.26 2.72 3.28.18.3-.03.99-.57.48 0 0-.75-.71-2.95-2.86-2.96-2.9-8.1-6.55-12.34-7.26-.4-.07-.58-.27-.53-.57a.6.6 0 0 1 .7-.5c.09 0 6.35 1.18 12.97 7.43zm-34.87 5.56c.2.17.24.41.14.6-.12.18-.36.22-.56.07-3.59-2.55-5.34-3.61-7.42-4.92-.16-.1-.27-.27-.15-.46.08-.12.25-.2.41-.24.33-.1.82-.11 1.14.08a58.08 58.08 0 0 1 6.44 4.87z'/%3e%3cpath fill='none' stroke='%23000' stroke-width='1.24' d='M421.68 348.39c4.13-2.3 8.89-4.09 13.95-4.09 8.28 0 15.74 3.64 20.97 9.37m-112.31-.23a28.28 28.28 0 0 1 20.83-9.3c5.68 0 10.97 2.28 15.42 5.13 5.24-5.63 12.7-9.77 21-9.77 7.85 0 14.96 3.77 20.14 8.89'/%3e%3cpath fill='none' stroke='%234c819a' stroke-width='.78' d='M367.91 230.52h66.97m-75.92 3.71h84.13m-90.26 3.72h95.8m-100.45 3.71h104.64m-108.33 3.71h111.64m-114.66 3.71h117.38m-119.86 3.72h122.1m-124.17 3.7h126.05m-127.75 3.72h129.33m-130.75 3.72h132.08m-133.25 3.7h134.36m-135.3 3.72H467.9m-50.24 3.71h51m-137.72 0h51.35m51.99 3.71h35m-138.92 0h35.44m74.94 3.72h29.02m-139.83 0h29.24m87.87 3.71h23.08m-140.45 0h22.99m100.6 3.71h17.12m-140.86 0h17.1m111.11 3.71h12.8m-141.03 0h13.03m119.3 3.72h8.77m-141.03 0h8.49'/%3e%3cg fill='none'%3e%3cpath fill='%23000' d='m356.65 300.4-.01-7.23 7.75-3.02 7.75 2.1.01 8.15z'/%3e%3cpath fill='%23fff' d='m373.24 333.22 3.4 13.95a28.59 28.59 0 0 0-11.52-2.4l-.73-57.57 3.1.9v6.05l3.87 1v-6l5.27 1.38v9.85l-3.4 5.03v27.81z'/%3e%3cpath fill='%23bdbfc1' d='M364.39 332.15V287.2l-3.1 1.35v5.96l-3.88 1.55v-6l-5.27 2.25v9.53l3.79 4.54.09 27.4-3.88 14.08a28.53 28.53 0 0 1 12.25-3.1v-12.62z'/%3e%3cpath stroke='%23000' stroke-width='1.09' d='m364.25 332.04-8.23 1.74m-1.74 8.67 10.05-2.12 10.86 1.17m-11.22-5.23-8.87 1.81m17.65-24.68-8.36-1.74-8.49 2.59m16.85 3.1-8.36-1.6-8.49 2.45m0-7.86 8.49-2.74 8.36 1.77m-16.85 12.72 8.49-2.26 8.36 1.49m-16.77 4.66 8.4-2.08 8.45 1.39m-16.85 4.6 8.4-1.9 8.53 1.28m-3.1-24.42v3.84m-3.1-.58v3.91m3.1.83v3.92m-7.9-4.28v3.9m0 4.12v3.91m-3.72 1.36v3.6m0-19.41v3.6m3.72-9.1v3.91m2.5-10.98 12.22 2.98m-12.23-2.98-12.26 4.45'/%3e%3cpath stroke='%23000' stroke-width='1.24' d='M364.39 344.78V287.2'/%3e%3cpath fill='%23000' d='m370.59 334.68-3.73-.52v-11.78c0-1.45.89-2.33 1.68-2.33 1.4 0 2.05 1.58 2.05 2.95z'/%3e%3cpath stroke='%23000' d='m373.24 333.23 3.4 13.94a28.59 28.59 0 0 0-11.52-2.4c-4.67 0-9.08 1.11-12.98 3.1l3.88-14.08-.1-27.4-3.78-4.54v-9.53l5.27-2.24v5.99l3.88-1.55v-5.96l3.1-1.36 3.1.9v6.05l3.87 1v-6l5.27 1.39v9.84l-3.4 5.03v27.81zm3.1 13.42a29.68 29.68 0 0 0-11.22-2.2c-4.48 0-8.87 1.02-12.65 2.83l3.85-13.41-.08-27.48a.98.98 0 0 0-.07-.2l-3.72-4.45v-9.22l4.65-1.97v5.52c0 .25.2.38.43.28l3.87-1.54c.08-.03.2-.2.2-.28v-5.77l2.8-1.23 2.78.8v5.82c0 .1.12.27.23.3l3.87 1c.22.05.39-.08.39-.3v-5.6l4.65 1.22v9.51l-3.34 4.96-.05.17v27.81l3.4 13.42zm1.21.45c.08.3-.75.02-1.04-.1a28.26 28.26 0 0 0-11.4-2.39c-4.61 0-8.97 1.1-12.83 3.06-.3.16-1.15.43-1.06.11l4.49-14.04-.09-27.24-3.71-4.45a.93.93 0 0 1-.08-.2v-9.53c0-.09.12-.25.2-.29l5.26-2.24c.24-.1.43.03.43.29v5.53l3.26-1.3v-5.75c0-.08.1-.25.18-.28l3.1-1.36a.85.85 0 0 1 .21-.01l3.1.89c.1.03.23.19.23.3v5.8l3.25.84v-5.59c0-.23.17-.36.39-.3l5.27 1.39c.1.02.23.19.23.3v9.84l-.05.17-3.34 4.96v27.68l4 13.91zm-13.15-43.58 8.37 1.9m-8.37-1.9-8.47 2.87'/%3e%3c/g%3e%3cg fill='none'%3e%3cpath fill='%23000' d='m391.53 294.98-.02-7.39 7.75-2.79 7.75 2.4.01 7.77z'/%3e%3cpath fill='%23fff' d='m408.1 328.1 3.4 13.8a28.58 28.58 0 0 0-12.38-1.68l.14-58.44 3.1 1.04v6.06l3.87 1.07v-5.92l5.27 1.7v9.81l-3.4 4.84v27.73z'/%3e%3cpath fill='%23bdbfc1' d='M399.26 340.19v-58.41l-3.1 1.2v6.04l-3.88 1.39v-5.99l-5.27 2.08v9.64l3.8 4.64.08 27.58-3.88 15.7c3.65-2.14 7.8-3.5 12.25-3.85v-.02z'/%3e%3cpath stroke='%23000' stroke-width='1.09' d='m398.8 330.83-8.57 1.65m19.48 3.87-10.5-1.32-10.36 1.97m4.22-21.02v3.76m3.72 3.4v3.92m0-28.17v3.91m-3.72 1.43V308m3.72-1v3.9m7.9-3.3v3.9m-3.1-8.65v3.91m3.1-7.09v3.84m-13.82 20.88 8.4-1.8 8.52 1.57m-17-7.64 8.49-2.1 8.36 1.8m-16.85-3.59 8.49-2.3 8.36 1.91m-16.85-3.56 8.49-2.43 8.36 2.04m-16.85-3.58 8.49-2.54 8.36 2.15m.08 15.86-8.44-1.69-8.41 2m8.39 6.17-8.37 1.71m20.61-32.82-12.24-3.56-12.25 4.16m20.63 4.22-8.36-2.25-8.48 2.67'/%3e%3cpath stroke='%23000' stroke-width='1.24' d='M399.26 340.19v-58.41'/%3e%3cpath fill='%23000' d='m405.46 329.4-3.73-.58v-11.78c0-1.45.89-2.26 1.68-2.26 1.4 0 2.05 1.58 2.05 2.27z'/%3e%3cpath stroke='%23000' d='M411.22 341.41a29.86 29.86 0 0 0-23.89 2.02l3.86-15-.08-27.65a.94.94 0 0 0-.07-.2l-3.71-4.55v-9.31l4.65-1.84v5.53c0 .25.18.37.41.3l3.87-1.4c.1-.03.21-.2.21-.29v-5.83l2.8-1.08 2.78.93v5.84c0 .1.12.26.22.3l3.88 1.07c.22.06.4-.07.4-.3v-5.5l4.64 1.5v9.5l-3.34 4.75-.05.18v27.73l3.42 13.3zm1.2.41c.08.3-.74 0-1.03-.1a28.3 28.3 0 0 0-9.85-1.76 28.23 28.23 0 0 0-14.37 3.9c-.3.18-1.16.46-1.08.13l4.49-15.67-.09-27.43-3.72-4.55a.9.9 0 0 1-.07-.2v-9.64c0-.08.12-.25.2-.28l5.27-2.09c.24-.09.42.04.42.3v5.54l3.26-1.16v-5.83c0-.09.11-.26.2-.29l3.1-1.2h.2l3.1 1.04c.1.03.21.2.21.3v5.81l3.26.9v-5.5c0-.24.18-.37.4-.3l5.28 1.7c.1.03.21.19.21.29v9.81l-.05.18-3.34 4.75v27.6l4 13.75zm-4.31-13.71 3.4 13.79a28.58 28.58 0 0 0-9.97-1.78c-5.3 0-10.27 1.44-14.52 3.94l3.87-15.7-.09-27.58-3.78-4.64v-9.64l5.27-2.08v6l3.87-1.4v-6.04l3.1-1.2 3.1 1.04v6.06l3.87 1.07v-5.92l5.27 1.7v9.81l-3.4 4.84v27.73z'/%3e%3c/g%3e%3cg fill='none'%3e%3cpath fill='%23000' d='m426.4 300.55-.02-8.15 7.75-2.17 7.75 2.55.02 7.77z'/%3e%3cpath fill='%23fff' d='m442.98 333.53 3.4 13.32A28.59 28.59 0 0 0 434 344.8l.13-57.6 3.1 1.04v6.05l3.87 1.3v-5.91l5.27 1.77v9.7l-3.4 4.8v27.57z'/%3e%3cpath fill='%23bdbfc1' d='M434.13 332.15V287.2l-3.1.96v6.05l-3.87 1.15v-5.99l-5.27 1.7v9.76l3.78 4.85.1 27.55-3.88 15.03a28.5 28.5 0 0 1 12.24-3.46v-12.66z'/%3e%3cpath stroke='%23000' stroke-width='1.09' d='m423.57 342 10.5-1.63 10.7 1.41m-11.09-5.56-8.85 1.36m6.82-33.42v3.91m-3.72 1.28v3.76m0 12.13V329m3.72-8.65v3.92m0-12.02v3.92m7.9-3.09V317m-3.1-8.74v3.92m3.1-7.02V309m-13.82 20.42 8.4-1.42 8.52 1.58m-17-12 8.48-1.83 8.37 1.99m0 3.96-8.37-1.87-8.48 1.72m16.85-7.77-8.37-2.12-8.48 1.97m16.85-3.81-8.37-2.23-8.48 2.07m16.86-3.7-8.36-2.44-8.48 2.17m-3.78-4.85 12.26-3.44 12.22 3.75m-12.22 30.89-8.39 1.36m-.03-7.88 8.4-1.62 8.44 1.77'/%3e%3cpath stroke='%23000' stroke-width='1.24' d='M434.13 344.8v-57.6'/%3e%3cpath fill='%23000' d='m440.33 334.9-3.72-.58v-11.78c0-1.45.88-2.26 1.67-2.26 1.4 0 2.05 1.58 2.05 2.27z'/%3e%3cpath stroke='%23000' d='M446.08 346.34a29.77 29.77 0 0 0-23.87 1.33l3.85-14.35-.08-27.63a.86.86 0 0 0-.06-.19l-3.72-4.76v-9.44l4.65-1.5v5.57c0 .23.17.36.4.3l3.87-1.16c.1-.03.22-.19.22-.3v-5.81l2.79-.87 2.79.94v5.83c0 .1.12.26.2.3l3.88 1.3c.23.08.41-.05.41-.3v-5.48l4.65 1.57v9.36l-3.33 4.73-.06.18v27.57l3.4 12.8zm-3.1-12.8 3.4 13.3a28.59 28.59 0 0 0-10.75-2.07c-4.98 0-9.66 1.27-13.74 3.5l3.87-15.03-.09-27.55-3.78-4.85v-9.76l5.27-1.7v5.99l3.87-1.16v-6.04l3.1-.97 3.1 1.05v6.05l3.87 1.3v-5.91l5.27 1.77v9.7l-3.4 4.8v27.57zm4.31 13.23c.08.3-.74.02-1.03-.1a28.31 28.31 0 0 0-10.63-2.06c-4.92 0-9.56 1.26-13.6 3.47-.3.16-1-.18-.9-.5l4.32-14.38-.09-27.4-3.72-4.77a.89.89 0 0 1-.06-.19v-9.76c0-.1.12-.27.21-.3l5.27-1.7c.23-.07.4.06.4.3v5.57l3.26-.97v-5.8c0-.11.12-.27.22-.3l3.1-.97h.19l3.1 1.04c.1.03.2.2.2.3v5.83l3.26 1.1v-5.49c0-.24.18-.37.41-.3l5.27 1.78c.1.03.21.2.21.3v9.68l-.05.18-3.34 4.72v27.45l4 13.27z'/%3e%3c/g%3e%3cg id='a' stroke='%23000'%3e%3cpath d='M369.42 268.7c-.28-2.57-1.28-6.73-4.72-6.2.18 4.47 5.86 21.3-.64 22.46l-.21-.24c.08-7.64-7.55-15.97-6.07-22.62.98-4.38 4.3-6.75 8.7-6.75 8.05 0 9.17 10 3.29 13.5l-.35-.15z'/%3e%3cpath fill='%23fff' d='M369.85 267.53c-.65-2.87-2.23-6.61-5.84-5.97l-.24.31c.17 4.8 6.2 19.42.46 22-.15-8.37-7.7-13.8-5.76-21.64.54-2.18 2.7-4.88 4.81-5.67a8.85 8.85 0 0 1 3.2-.66c7.25.15 9.14 7.67 3.37 11.63z'/%3e%3cpath stroke='none' d='M359.57 264.71c.62-1.7 2.66-3.42 4.47-3.63.38-.05.68.29.83.7h-.17c-.21 0-.42.03-.62.08.01.31.04.63.08.97-.85.05-2.33.4-3.83 2.23-.7.86-1.07.5-.76-.35z'/%3e%3cpath stroke-width='1.09' d='m360 265.23 4.25-1.73m-3.93 3.26 4.2-1.8m-3.86 3.42 4.2-1.98m-3.4 3.53 3.79-1.96m-2.52 3.39 2.95-1.68m-.82 2.7 1.3-.72'/%3e%3cpath stroke='none' d='M369.14 259.6c-2.23-3.3-7.83-1.44-9.28.64-.1.15-.47-.08-.68-.16a.47.47 0 0 1-.08-.04c.39-.65.87-1.3 1.43-1.88 2.71-1.74 7.43-2.09 9.33.98.15.24.05.48-.13.58-.18.11-.44.1-.6-.13z'/%3e%3c/g%3e%3cuse xlink:href='%23a' x='35.34' y='-5.42'/%3e%3cuse xlink:href='%23a' x='70.67'/%3e%3cg stroke='%23000'%3e%3cpath d='M446.26 240.53c3.26 2.16 14.8 8.65 16.52 45.64 3.33 72.1-58.02 114.16-58.02 114.16s77.62-33.05 77.62-114.23c0-34.17-13.56-71.19-40.47-71.19l-14.8.05L405.64 225a6.78 6.78 0 0 0-5.35-2.6 6.79 6.79 0 0 0-5.35 2.6l-21.48-10.05-15.26-.05c-26.9 0-40.48 37.02-40.48 71.2 0 81.17 77.63 114.22 77.63 114.22S334 358.25 337.33 286.16c1.7-37 13.25-43.48 16.52-45.64l18.13 6.05 22.91-13.41c1.5 1.6 3.04 2.73 5.4 2.73 2.36 0 3.68-.93 5.4-2.73l22.76 13.57z'/%3e%3cpath fill='%23d99f31' d='m431.45 214.14-31.17 13.55-31.17-13.55-10.92.77c-26.9 0-40.48 37.02-40.48 71.2 0 81.17 77.62 114.22 77.62 114.22s-62.12-42.07-58.79-114.16c1.71-37 13.57-44.42 16.83-46.57l19.98 5.56 26.93-15.92 26.93 15.92 19.51-5.56c3.27 2.15 15.13 9.58 16.83 46.57 3.34 72.1-58.79 114.16-58.79 114.16s77.62-33.05 77.62-114.23c0-34.17-13.56-71.19-40.47-71.19z'/%3e%3cpath d='M437.34 228.91c-3.72.44-6.32 2.93-6.45 6.74-.08 2.04.9 5.06 2.3 6.34l-.84.92c-1.65-1.51-2.87-4.89-2.78-7.31.15-4.27 3.14-7.24 7.61-7.76zm-74.51-1.07c4.47.52 7.46 3.5 7.61 7.76.09 2.42-1.13 5.8-2.78 7.3l-.84-.9c1.4-1.29 2.38-4.31 2.3-6.35-.13-3.8-2.73-6.3-6.45-6.74zm-8.74 7.44c-5.4 3.49-10.3 10.1-13.03 16.93-.16.35-.39.46-.62.38-.22-.08-.3-.39-.2-.69a39.72 39.72 0 0 1 13.53-18.18l.32 1.56zm7.2-12.85c-13.21 0-23.02 9.3-29.64 26.47-.15.32-.45.56-.78.45-.26-.1-.3-.47-.17-.8 6.62-17.5 16.72-27.2 30.6-27.2 6.03 0 11.22 1.48 15.66 4.75l.24 1.6c-4.45-3.62-9.73-5.27-15.9-5.27zm0 3.56c-11.53 0-20.52 9.72-26.18 24.02-.16.34-.4.53-.71.4-.25-.1-.27-.47-.15-.77 5.38-14.46 14.82-24.73 27.04-24.73 6.13 0 11.39 1.94 15.81 6.2l-.2 1.38c-4.34-4.46-9.53-6.5-15.6-6.5zm13.22 12.6c-2.3-6.87-6.06-9.52-13.38-9.52-9.65 0-17.6 8.77-22.85 22.04-.13.3-.36.48-.64.38-.25-.08-.3-.42-.18-.73 5.11-13.48 13.32-23.08 23.67-23.08 7.69 0 11.8 3.16 14.02 9.84l-.64 1.07zm51.05.09-.67-.96c2.2-6.8 6.29-10.02 14-10.04 12.43.05 21.97 14.05 26.93 32.33.1.36.03.75-.3.81-.3.06-.56-.18-.65-.52-4.97-18.03-14.44-31.17-25.9-31.23-7.39.02-11.12 2.7-13.41 9.6zm43.38 21.76c.1.41.07.76-.3.85-.29.07-.55-.15-.65-.59-4.77-20.38-14.98-34.36-29.18-34.36-6.11 0-11.33 1.52-15.64 5.97l-.2-1.43c4.43-4.28 9.7-5.7 15.84-5.7 15.12 0 25.64 14.94 30.13 35.26zm3.83.54c.08.38-.05.75-.39.8-.31.05-.57-.22-.64-.6-4.7-22.3-15.8-38.71-33.15-38.71a24 24 0 0 0-15.73 5.75l.17-1.6a24.87 24.87 0 0 1 15.56-5.32c18.29 0 29.68 17.3 34.18 39.68zm-31.65-28.23c9.51 1.17 18.06 12.3 21.67 26.99.09.37 0 .74-.32.83-.3.08-.58-.12-.71-.6-4.12-15.82-12.27-24.67-20.76-25.75l.12-1.47z' stroke='none'/%3e%3cpath fill='none' d='M419.35 240.51c-.73-.86-2.93-3.99-2.93-10.27m-.3 8.37c-.68-.92-2.32-3.61-2.32-8.37m-.86 6.48a11.9 11.9 0 0 1-1.76-6.48m-1.35 4.65c-.4-.8-1.11-2.53-1.11-4.65m-27.5 10.27c.72-.86 2.92-3.99 2.92-10.27m.3 8.37c.68-.92 2.32-3.61 2.32-8.37m.86 6.48c.59-.9 1.76-3.11 1.76-6.48m1.35 4.65c.4-.8 1.12-2.53 1.12-4.65'/%3e%3ccircle fill='%23d99f31' cx='400.28' cy='229.24' r='6.2' stroke='none'/%3e%3cpath fill='none' d='M394.13 227.78a6.31 6.31 0 0 1 12-1.02m.33 4.06a6.38 6.38 0 0 1-12.1.7m7.55 1.62a4.23 4.23 0 0 1-5.86-3.74m7.87 2a4.24 4.24 0 0 1-2 1.74m-1.2-1.9a2.05 2.05 0 0 1-2.48-1.8m-2.12-1.23c.13-.56.37-.9.47-1.05'/%3e%3cpath fill='none' d='M394.13 227.78c0-2.92 2.56-5.36 6.15-5.36 2.74 0 5.85 1.92 5.85 4.34m.33 4.06c0 2.7-3.22 5.08-6.18 5.08-2.7 0-5.93-1.97-5.93-4.38'/%3e%3cpath d='M423.35 242.22a17.45 17.45 0 0 0 13.96 7.07c7.4 0 13.03-4.6 13.03-11.94-.17-3.9-2.8-8.7-9.02-8.7-4.04 0-7.47 3.89-7.47 7.93 0 2.23.43 3.58 1.8 5.26-5.53-1.78-9.2-4.73-9.2-11 0-6.45 4.28-11.06 11.27-11.64 23.39-1.95 37.68 24.01 40.43 59.9 3.93 51.17-23.68 91.97-65.64 115.26-5.85 3.25-10.45 5.85-12.43 6.7l-.03 6.36c15.97-6.1 34.5-17.9 46.05-28.44 21.99-20.1 42.97-54.08 39.79-99.85-2.02-28.91-11.02-48.3-22.07-57.87-18.89-16.39-44.65-9.84-44.65 9.57a18.5 18.5 0 0 0 4.18 11.39zm-46.6 0a17.45 17.45 0 0 1-13.96 7.07c-7.4 0-13.03-4.6-13.03-11.94.17-3.9 2.8-8.7 9.01-8.7 4.04 0 7.47 3.89 7.47 7.93 0 2.23-.42 3.58-1.8 5.26 5.54-1.78 9.2-4.73 9.2-11 0-6.45-4.27-11.06-11.27-11.64-23.38-1.95-37.67 24.01-40.42 59.9-3.93 51.17 23.67 91.97 65.63 115.26 5.86 3.25 10.45 5.85 12.44 6.7l.03 6.36c-15.98-6.1-34.5-17.9-46.05-28.44-21.99-20.1-42.97-54.08-39.79-99.85 2.01-28.91 11.02-48.3 22.06-57.87 18.9-16.39 44.66-9.84 44.66 9.57a18.5 18.5 0 0 1-4.18 11.39z'/%3e%3cpath fill='%23f1bf31' d='M400.05 406.96c-15.98-6.11-34.5-18.67-46.05-29.22-22-20.1-41.58-53.3-38.4-99.08 2.02-28.9 10.56-47.2 21.6-56.79 18.9-16.37 43.26-8.92 43.26 8.96 0 9.84-7.98 17.84-17.83 17.84-5.96 0-12.25-4.83-11.63-12.1a7.32 7.32 0 0 1 14.62.32c0 2.23-1.46 4.39-3.03 5.73 6.22-.22 11.67-5.5 11.67-11.79 0-6.44-4.89-11.82-11.89-12.4-23.38-1.95-38.5 24.63-41.04 60.66-3.63 51.2 24.3 92.6 66.25 115.9a126.8 126.8 0 0 0 12.47 6.08c1.97-.83 6.58-2.82 12.46-6.09 41.96-23.3 69.88-64.68 66.26-115.89-2.55-36.03-17.66-62.6-41.05-60.67-7 .59-11.88 5.97-11.88 12.41 0 6.29 5.45 11.57 11.67 11.8-1.57-1.35-3.04-3.5-3.04-5.74a7.32 7.32 0 0 1 14.63-.32c.62 7.27-5.67 12.1-11.63 12.1-9.85 0-17.83-8-17.83-17.84 0-17.88 24.36-25.33 43.25-8.96 11.05 9.58 19.59 27.89 21.6 56.79 3.18 45.77-16.4 78.99-38.4 99.08-11.55 10.55-30.07 23.1-46.04 29.22z'/%3e%3c/g%3e%3c/g%3e%3cg stroke='%23000' stroke-width='.93' stroke-linejoin='round' stroke-linecap='round'%3e%3cpath d='M302.44 357.77s-3.28-1.33-4.74-2.06c-2.52-1.26-8.21-8.26-14.57-11.95-9.76-5.66-19.2-4.2-27.83-7.9 1.93 9.03 8.02 17.19 18.1 21.51 8.28 3.55 21.64.5 23.1.62 1.45.12 6.06 1.9 6.06 1.9l-.12-2.12zm-35.22 11.27.09-.26a138.2 138.2 0 0 0 15.53-3.25c11.5-2.92 16.9-.55 26.22 5.83.58.4 1.27.96 1.94 1.2 1.51.58 2.48.18 3.94.18l.14.03 2.18 1.7c.17.14.07.25-.09.28-1.9.4-4.5.39-6.5.21-3-.27-9.19 6.85-18 6.85-11.16 0-18.5-4.94-25.45-12.77z'/%3e%3cpath fill='%23658d5c' d='M316.3 374.32c-1.74.06-3.6.06-5.31.35-5.14.86-10.22 6.45-18.02 6.68-10.39.3-16.95-4.6-24.04-11.58 10.32-1.55 18.3-7.51 28.96-4.16 5.47 1.72 11.89 8.6 17.02 7.61l1.4 1.1z'/%3e%3cpath stroke-width='.45' d='M309.88 372.95s-9.11 1.5-14.79 1.5c-9.16.03-23.19-3.8-23.19-3.8s13.99 4.24 23.2 4.43c5.66.11 14.78-1.2 14.78-1.2v-.93z'/%3e%3cpath fill='none' stroke-width='.78' d='M284.54 262.68c.07-.3.02-.64-.16-1.07-.18-.44-.47-.92-.77-1.42-.3-.52-.64-1.08-.9-1.65a5.41 5.41 0 0 1-.5-1.87l1.4-.4a6.8 6.8 0 0 0 2.17 3.74l.43.45-1.18 2.62c-.08.2-.6 0-.5-.4z'/%3e%3cpath stroke-width='.78' d='M338.06 388.95c-.04-1.9.34-1.2 2.38-.36.44.18.12.6-.26.84-1.22.76-2.3 2.38-2.82 2.02-1.4-.99-.52-1.02.7-2.5z'/%3e%3cpath d='M289.16 254.94c-6.03 15.31-8.06 42.44-5.98 54.76 6.41 37.86 37.6 73.37 66.15 79.1 24.83 5 39.97 16.12 49.85 27.98 6.46 7.76 9.91 11.28 19.19 26.72 3.39 5.65-2.41 6.79-4.8 2.11-6.53-12.76-10.05-18.44-19.04-28.47-9.66-10.78-23.87-20.45-47.06-25.08-27.65-5.52-60.05-41.09-66.46-78.95-2.08-12.32-.26-41.73 6.07-57.28l2.08-.9'/%3e%3cpath d='M330.29 387.33c-4.3.48-7.21 6.72-11.53 10.65-7.95 7.24-20.68 7.96-28.8 3.13-.34-.2-.52-.66-.13-.75 10.1-2.29 11.41-16.07 32.46-14.71 2.47.16 3.5.66 5.99.66l2.01 1.02zm-15.99-64.06.15.07c.1 6.15 4.77 14.55 5.91 21.32 1 5.83-.43 10.7-2.67 16.13-.55 1.35-1.87 4.07-1.92 5.4-.04 1.25.73 2.4 1.4 3.42.22.37 1.62 2.2 1.47 2.55-5.57-4.83-2.3-1.68-4.61-6.13-1.2-2.3-2.63-4.38-3.81-6.7-6.26-12.2-6.38-26.06 4.09-36.06zm40.26 66.7c-2.74-.88-5.53-1.98-7.03-4.78-2.53-4.7-1.99-8.5-4.58-13.38-4.91-9.23-14.37-10.23-19.14-18.8-.97 7.89-2.03 19.66 10.24 28.08 4.32 2.96 10.9 3.64 12.5 4.83 1.58 1.2 2.54 2.9 2.54 2.9l5.47 1.15z'/%3e%3cpath fill='%23658d5c' d='M349.24 388.53c-.9-.96-1.9-1.92-2.98-2.7-2.5-1.8-7.92-1.98-12.02-4.98-5.71-4.2-8.67-8.09-10.26-15-.97-4.19-.22-7.54-.03-11.02 5.15 7.48 14.1 8.18 18.88 17.13 2.91 5.44 2.53 13.7 8.49 17l-2.08-.43z'/%3e%3cpath stroke-width='.78' d='M300.36 347.4s-.35.4-.83 1.77c-.2.62 1.14 2.47 1.03 1.83-.28-1.57.5-2.68.5-2.68l-.7-.92z'/%3e%3cpath fill='%23658d5c' d='M302.44 357.77s-3.28-.7-4.74-1.43c-2.52-1.27-8.11-8.6-14.57-12.27-9.26-5.26-17.33-4.16-26.44-6.82 2.59 9.72 7.53 15.54 16.7 19.66 8.23 3.69 21.65.5 23.1.62 1.46.12 6.07 2.06 6.07 2.06l-.12-1.82z'/%3e%3cpath fill='%23466343' d='M315.48 368.9c-.4-2.88-3.7-7.05-5.07-9.74a36.3 36.3 0 0 1-3.98-12.68c-.97-9.54 1.21-14.68 7.5-21.75.04 2.07.31 2.8.94 4.72 2.63 8.1 6.3 14.78 5.11 23.58-.59 4.33-4.12 10.5-4.28 13.14-.09 1.38.69 2.98 1.37 4.14l-1.6-1.4z'/%3e%3cpath d='M291.92 343.12c-6.73-11.2-22.53-6.18-32.89-15.58-5.02-4.57-7.27-11.44-8.27-17.97-.3-1.94-1.13-9.66-.67-11.15.08-.28.36-.35.57-.14 3.44 3.36 6.88 5.53 10.85 8.22 9.44 6.39 13.31 12.38 18.18 22.35 6.37 13.04 12.14 5.6 12.23 14.27z'/%3e%3cpath stroke-width='.45' d='M312.93 328.1s-2.14 11.2-1.81 18.4c.33 7.37 3.6 18.56 3.6 18.56h-.63s-3.38-11.18-3.6-18.55c-.2-7.24 2.44-18.4 2.44-18.4z'/%3e%3cpath fill='%23658d5c' d='M281.96 336.01c-3.62-1.15-7.78-1.85-12.2-2.91-4.14-1-7.52-3.26-10.68-6.1-4.9-4.42-6.51-10.35-7.47-16.7a48.74 48.74 0 0 1-.44-10.62c.4.7.9 1.38 1.55 1.85 3.21 2.3 6.56 3.9 9.78 6.23 2.81 2.04 4.81 3.38 7.12 5.98a54.2 54.2 0 0 1 7.4 10.73c1.62 3.07 3 6.66 5.1 9.44z'/%3e%3cpath fill='%23a48253' d='M282.12 333.91c1.08 1.45 5.45 3.32 7.05 3.53l1.54 3.85c-2.27-2.65-5.26-4.17-8.75-5.28z'/%3e%3ccircle fill='%23d99f31' cx='271.96' cy='304.79' r='4.42'/%3e%3cpath fill='%23f1bf31' d='M272.47 300.88a4.54 4.54 0 0 0-.36 1.78c0 1.94 1.15 3.53 2.56 3.53.4 0 .76-.13 1.1-.35a3.95 3.95 0 0 0-3.3-4.97z' stroke='none'/%3e%3ccircle fill='none' stroke-width='1.24' cx='271.96' cy='304.79' r='4.72'/%3e%3cpath d='M285.01 302.83s2.06-7.68 4-12.43c4.6-11.24 12.56-11.67 16.61-20.57 2.33 6.01 4.18 13.74.12 22.41-4.68 10.02-16.66 15.9-16.66 15.9l-4.07-5.31z'/%3e%3cpath fill='%23466343' d='M305.59 271.85c5.98 16.33-1.92 28.09-16.42 36.2l-3.82-5.29c2.49-10.48 4.28-15.65 12.3-23.1 3.16-2.95 5.94-3.9 7.94-7.81z'/%3e%3cpath fill='%23a48253' d='M288.71 255.67c-5.97 15.7-7.73 41.94-5.68 54.08 6.43 37.96 37.53 73.59 66.24 79.36 24.75 4.97 39.55 16.12 49.75 27.64 4.76 5.39 8.6 10.64 11.76 15.6 2.72 4.25 5.05 8.9 7.34 12.58.37.59-2.72 1.87-3.05 1.34-2.42-3.91-4.64-8.84-7.43-13.36-3.17-5.13-8.61-10.39-13.35-15.98-10.08-11.9-23.5-20.84-46.76-25.48-27.5-5.5-59.51-40.62-65.9-78.4-2.08-12.27-.55-40.74 4.92-55.78l2.16-1.6z'/%3e%3cpath d='M285.72 329.93c-1.23-1.18-3.01-2.3-4.2-3.54-11.02-11.44-8.13-31.44 3.97-41.2.41-.33.72-.18.78.31a51.95 51.95 0 0 0 2.73 12.26c3.69 10.13 4.29 15.94.94 24.57-2.05 5.26 0 9.9 0 9.9l-4.22-2.3z'/%3e%3cpath stroke-width='.62' d='M324.6 379.21c-7.05-2.41-14.34-1.76-20.2-7.85-6.78-7.03-8.24-17.9-6.47-24.17.08-.3.32-.55.51-.32 1.5 1.84 2.3 3.17 4.28 4.63 7.07 5.21 15.74 7.82 18.74 15.79.6 1.58.8 3.24 1.35 4.84 1.91 5.47 5.04 7.12 9.58 10.11l-7.79-3.03z'/%3e%3cpath fill='%23658d5c' d='M330.12 382.12c-6.6-5.6-18.5-3.6-25.58-11.18-5.2-5.58-7.4-14.37-6.1-22 6.28 5.6 13.59 7.15 19.3 13.43 6.74 7.4 1 12.38 13.68 19.58l-1.3.17z'/%3e%3cpath d='m294.87 341.94.01-.17c1.64-1.95.5-7.82-.03-10.17a28.63 28.63 0 0 1-.37-11.68c.78-4.76 3.4-9.07 6.07-13.02 1.2-1.76 5.07-7.26 5.47-9.25.03-.17.21-.16.29 0 1.48 3.23 2.25 7.16 2.85 10.64.83 4.88 1.1 9.31-.6 14.86a27.2 27.2 0 0 1-6.68 11.52c-1.32 1.42-4.42 4.53-4.88 6.2-.08.32-.6 2.56-.5 4.2l-1.63-3.13z'/%3e%3cpath stroke-width='.95' d='M283.94 277.75s.2.03 1.1-.56a6.28 6.28 0 0 0 2.4-2.89c.46-1.27 3.65-11.86 7.9-18.41 4.98-7.66 10.14-11.1 16.4-16.72.98 6.07 1.13 15.96-4 23.9-4.7 7.27-16.61 12.44-18 12.98-1.38.54-3.74.94-5.1 2.75-.77 1.02-1.3 3-1.3 3l.6-4.05z'/%3e%3cpath d='M282.44 278.76s-.52-.02-1.18-.97a7.13 7.13 0 0 1-1.34-3.9c0-3.16 3-12.64 1.51-19.81-2.84-13.7-7.14-19.18-7.8-24.26-.27-2.03-11.45 13.83-8.05 28.54 1.69 7.3 10.16 15.45 11.35 16.52 1.2 1.07 2.81 2.46 3.6 4.6.8 2.2.62 4.72.62 4.72l1.3-5.44zm6.56-23.55c.8-1.96 2.14-4.28 3.37-5.3 3.02-2.53 11.49-8.82 14.38-13.4 6.44-10.21 5.14-22.79 4.46-24.98-5.58 4.86-10.67 8.06-16.37 16.1-4.96 7.01-6.05 20.73-6.43 23.33-.42 2.83-1.68 5.9-1.68 5.9l2.27-1.65z'/%3e%3cpath fill='%23658d5c' stroke-width='.95' d='m284 279.97.22-1.97a6.82 6.82 0 0 0 3.52-3.6c2.66-6.38 4.29-12.87 8.04-18.76 4.86-7.66 10.07-10.64 15.33-14.84.25 6.76 1.44 13.89-3.95 22.76-3.06 5.03-11.98 10.02-17.53 12.2-2.48.99-4.26 1.78-5.63 4.21z'/%3e%3cpath d='M261.12 266.48c8.5 7.09 10.93 10.4 13.44 21.37.29 1.28 1.92 6.83 2.26 7.52.82 1.63 2.52 2.4 3.57 3.74.1.15.4 3.04.44 3.42.02.23-.15.22-.28.1-1.33-1.2-2.02-3.1-3.57-4.24-1.33-.97-5.82-1.93-7.75-2.73-4.95-2.04-8.99-5.86-11.85-10.33-3.78-5.9-4.2-13.94-3.3-20.7.21-1.56.42-3.43.97-4.9.08-.2.2-.16.3 0 2.02 3.15 3.31 4.7 5.77 6.75z'/%3e%3cpath fill='%23658d5c' d='m280 299.39.23 2c-4.04-5.46-5.4-3.85-10.98-6.16-4.86-2.01-8.81-5.76-11.64-10.16-4.22-6.56-4.14-16.27-2.36-23.66 2.27 4.46 11.13 8.94 14.54 14.52 2.18 3.58 3.54 7.84 4.63 11.88.54 2.02 1.15 6.1 1.99 7.76.62 1.25 2.5 2.92 3.58 3.82zm15.37 42.66c1.5-2.3.18-8.13-.3-10.78-.74-4.08-.8-7.61-.13-11.74 1.09-6.74 5.36-11.25 9.12-16.72a27.63 27.63 0 0 0 2.07-3.34c4.33 12.2 5.55 24.65-3.9 34.89-1.42 1.54-4.84 4.52-5.37 6.4-.28 1-.38 2.07-.46 3.1l-1.03-1.8z'/%3e%3cpath fill='%23a48253' d='M331.31 385.46s-.53.85-3.04.85l1.25 1.22.77-.2c2.4-.49 3.13-.42 4.7.19'/%3e%3cpath fill='%23466343' d='M328.27 386.31c-2.5 0-10.34-1.3-16.61.34-9.45 2.47-13.36 11.32-20.47 14.46 10.8 4.65 18.7 3.5 27.69-3.68 3.62-2.9 5.92-8.42 10.64-9.9z'/%3e%3cpath fill='none' d='M405.4 431s.1-1.38 1.7-1.93c1.37-.48 2.08.61 2.08.61'/%3e%3cpath fill='%23a48253' stroke-width='.78' d='M340.48 388.88s-.85.5-1.1.72c-.58.52-1.35.9-1.58 1.32l-.93-.08c.58-.48 1.18-1.3 1.51-1.7.2-.22 0-1.1 0-1.1l2.1.84z'/%3e%3cpath fill='%23658d5c' d='M287.56 255.57c1.7-4.8 1.66-10.15 2.6-15.13 2-10.52 5-13.94 12.6-20.97 2.41-2.25 4.9-3.88 7.53-5.86.42 3.02.62 5.56.31 8.6-1.5 14.86-7.82 18.37-18.43 27.45-2.06 1.76-2.6 4.23-4.61 5.91z' stroke='none'/%3e%3cpath fill='%23a48253' d='M287.96 254.32c.28-.4.54-.64.69-.57.11.05.13.29.06.62-.33.43-.7.83-1.15 1.2.14-.41.28-.83.4-1.25z' stroke='none'/%3e%3cpath fill='none' d='M287.56 255.57c1.7-4.8 1.66-10.15 2.6-15.13 2-10.52 5-13.94 12.6-20.97 2.41-2.25 4.9-3.88 7.53-5.86.42 3.02.62 5.56.31 8.6-1.5 14.86-7.82 18.37-18.43 27.45-2.06 1.76-2.6 4.23-4.61 5.91z'/%3e%3cpath d='M288.22 256.12s.39-1.17.96-2.66c.58-1.48.43.4.43.4l-.34 1.62-1.05.64z' stroke='none'/%3e%3cpath fill='%23658d5c' d='m282.06 278.96-.78 2.5c-.44-3.25-1.8-4.7-4.14-6.81-10.18-9.21-14.53-20.05-10.26-32.73a25.31 25.31 0 0 1 6.08-10.33 50.61 50.61 0 0 1 4.34 9.15c3.49 9.38 4.88 14.69 3.5 25.44-.5 3.8-2.32 8.42.2 11.8.28.36.62.8 1.06.98z' stroke='none'/%3e%3cpath fill='none' d='m282.06 278.96-.78 2.5c-.44-3.25-1.8-4.7-4.14-6.81-10.18-9.21-14.53-20.05-10.26-32.73a25.31 25.31 0 0 1 6.08-10.33 50.61 50.61 0 0 1 4.34 9.15c3.49 9.38 4.88 14.69 3.5 25.44-.5 3.8-2.32 8.42.2 11.8.28.36.62.8 1.06.98z'/%3e%3cpath fill='%23a48253' d='M281.76 284.47s.25-2.46-.13-3.96c-.19-.75-.68-1.85-.68-1.85s1.22.62 1.5.57c.28-.05-.68 5.24-.68 5.24zm4.16-24.14c-.59.24-2.39-2.3-2.6-4.02-.22-1.64-.89-.96-.8.34.14 2.42 3.03 5 2.63 6.54.54-1.32.8-2.27.77-2.86z' stroke='none'/%3e%3cpath fill='none' stroke-width='.78' d='M285.92 260.33c-.59.24-2.39-2.3-2.6-4.02-.22-1.64-.89-.96-.8.34.14 2.42 2.72 4.57 2.32 6.1'/%3e%3ccircle fill='%23d99f31' cx='281.44' cy='253.51' r='4.42' stroke='none'/%3e%3cpath fill='%23f1bf31' d='M281.7 253.09c-1.19-.84-1.72-2.16-1.17-2.94.55-.79 1.97-.75 3.17.1 1.2.83 1.72 2.15 1.17 2.93-.55.79-1.97.74-3.16-.1z' stroke='none'/%3e%3ccircle fill='none' stroke-width='1.31' cx='281.4' cy='253.64' r='4.61'/%3e%3ccircle fill='%23d99f31' cx='303.96' cy='344.42' r='4.57' stroke='none'/%3e%3cpath fill='%23f1bf31' d='M303.43 343.97c-.98-1.34-1-2.98-.07-3.66.93-.68 2.48-.14 3.45 1.2.98 1.35 1.01 2.98.08 3.66-.94.68-2.48.14-3.46-1.2z' stroke='none'/%3e%3ccircle fill='none' stroke-width='1.4' cx='303.96' cy='344.42' r='4.8'/%3e%3cpath fill='none' d='M406.8 432.55s.05-1.39 1.69-1.78a1.8 1.8 0 0 1 2.08.93m7.23 15.61c-2.99.62-4.81-3.13-3.79-4.05.67-.6 2.32-.48 3.54.12 2.16 1.05 1.58 3.66.25 3.93z'/%3e%3cpath fill='%23a48253' d='M417.8 447.31c-2.48.63-4.43-2.7-3.79-3.43.6-.68 1.85-.72 3.06-.13 2.17 1.06 2.05 3.23.73 3.56z' stroke='none'/%3e%3cpath fill='none' d='M417.8 447.31c-2.48.63-4.43-2.7-3.79-3.43.6-.68 1.85-.72 3.06-.13 2.17 1.06 2.05 3.23.73 3.56z'/%3e%3cpath stroke-width='.45' d='M287.44 256.18c3.14-9.16 4.9-15.6 10.1-24.55 3.54-6.08 10.48-14.7 10.48-14.7s-6.54 8.84-9.93 14.97c-4.8 8.66-5.87 12.39-9.7 23.46l-.95.82zm-14.89-20.36s-1.15 14.39.66 23.3c1.63 8 7.27 19.63 7.27 19.63s.32.23-1.32-4.08c-1.68-4.43-3.82-9.32-5.18-15.58-1.93-8.88-1.43-23.27-1.43-23.27zM259.1 273.2s1.9 4.98 3.54 7.96c4.48 8.17 8.32 12.44 15.97 17.77l.22-.69c-7.37-5.23-10.84-9.41-15.58-17.08-1.83-2.98-4.15-7.96-4.15-7.96zm27.38 3.34s9.16-8.45 13.84-15.06c4.14-5.85 9.1-16.21 9.1-16.21s-4.53 10.49-8.55 16.37c-4.5 6.6-13.15 14.9-13.15 14.9h-1.24zm8.97 66.26c1.75-4.2 4.37-9.98 6.32-16.64 2.46-8.35 3.91-12.42 4.2-21.93-.15 9.5-1.16 12.78-3.17 20.68a122.42 122.42 0 0 1-5.8 16.83l-1.55 1.05zm-5.21-42.13s6.9-6.03 9.98-11.43c4.06-7.12 4.74-12.83 4.74-12.83s-.06 5.74-4.12 12.86c-3.08 5.4-10.33 12.29-10.33 12.29l-.27-.9zm-7.86 34.21s-5.95-3.77-9.21-6.51c-12.66-10.67-20.59-25.04-20.59-25.04s7.25 15.18 20.12 25.66c3.42 2.78 9.68 6.67 9.68 6.67v-.77z'/%3e%3cpath fill='none' d='M283.2 336.41s-1.14-.48-.55-1.57'/%3e%3cpath stroke-width='.45' d='M328.64 380c-5.59-3.52-13.44-8.75-20.53-16.02a151 151 0 0 1-5.91-6.67s2.83 4.42 5.14 6.82c6.31 6.58 14.99 12.74 20.57 16.25l.73-.39zm19.33 6.7s-10.5-7.53-15.23-14.11a44.67 44.67 0 0 1-5.56-9.83 51.9 51.9 0 0 0 6.33 9.83c4.73 5.99 14.46 13.18 14.46 13.18v.93zm-52.02 13.51c15.45-2.15 21.46-11.17 34.61-13.22-1.38.07-1.13-.47-2.39-.2-11.6 2.44-18.7 11.22-32.22 13.42z'/%3e%3ccircle fill='%23d99f31' cx='314.8' cy='382.21' r='4.57' stroke='none'/%3e%3cpath fill='%23f1bf31' d='M319.29 381.34c-.04.15-.1.3-.18.43-.67 1.16-2.5 1.35-4.1.43-1.6-.92-2.34-2.6-1.67-3.76.19-.34.47-.59.82-.76a4.57 4.57 0 0 1 5.12 3.66z' stroke='none'/%3e%3ccircle fill='none' stroke-width='1.4' cx='314.8' cy='382.21' r='4.8'/%3e%3cpath fill='%23a48253' d='M330.8 384.33s.43.24.7.54c.26.3.36.66.17.89 0 0 .1.26.45.5.46.34 1.06.32 1.73.42.85.14 1.45.25 2.05.43.6.18 1.36.49 1.36.49l-3.43-1.7-3.03-1.57z' stroke='none'/%3e%3cpath stroke-width='.45' d='M297.76 357.55s-8.53-2.24-19.42-6.3c-10.9-4.07-18.24-10.87-18.24-10.87s7.34 6.18 18.24 10.25c10.9 4.06 19.42 5.99 19.42 5.99v.93z'/%3e%3ccircle fill='%23d99f31' stroke-width='1.24' cx='334.69' cy='394.97' r='4.88'/%3e%3cpath fill='%23f1bf31' d='M338.15 397.95c-1.46.56-3.39-.4-4.47-2.27-1.17-2.03-.92-4.37.57-5.23l.06-.03.37-.02a4.57 4.57 0 0 1 3.47 7.55z' stroke='none'/%3e%3ccircle fill='none' cx='334.68' cy='394.97' r='4.57'/%3e%3cpath fill='%23a48253' d='M289.6 332.55s.51 1.59.92 2.58c.3.73.84 1.85.84 1.85s-1.12.24-1.12.11c0-.12-.88-4.52-.88-4.52l.24-.02z' stroke='none'/%3e%3cpath fill='%23658d5c' d='M289 333.47c-1.65-2.52-5.16-5.34-7.14-7.4a22.64 22.64 0 0 1-6.31-12.5c-1.84-11.54 1.52-19.3 9.94-27.1.54 8.1 5.17 14.8 6.15 22.9 1.4 11.6-5.98 13.79-.85 25.14l-1.78-1.04z' stroke='none'/%3e%3cpath fill='%23a48253' d='m287.89 331.17.23 1.12c.33.4.63.8.88 1.18l1.47.85-.78-2.66-1.8-.49z' stroke='none'/%3e%3cpath fill='none' d='M289 333.47c-1.65-2.52-5.16-5.34-7.14-7.4a22.64 22.64 0 0 1-6.31-12.5c-1.84-11.54 1.52-19.3 9.94-27.1.54 8.1 5.17 14.8 6.15 22.9 1.4 11.6-5.98 13.79-.85 25.14'/%3e%3cpath stroke-width='.45' d='M289 331.08c-3.36-5.05-4.02-7.52-5.43-12.72-2.67-9.77-2.69-21.63-.18-25.97-2.5 4.34-3.03 16.14-.6 25.98 1.37 5.54 2.46 8.44 5.57 13.54l.64-.83z'/%3e%3cpath fill='none' d='M288.59 332.89c-.82-.96.23-2.53 1.17-1.15'/%3e%3c/g%3e%3cg stroke='%23000' stroke-width='.93' stroke-linejoin='round' stroke-linecap='round'%3e%3cpath stroke-width='.78' d='M514.67 257.68a.63.63 0 0 1 .04-.27s.3-.43.6-1.14c.3-.73.61-1.73.63-2.84l1.66.34c-1.39 4.94-1.44 6.7-1.44 6.7-.01.4-.49.47-.6.08l-.9-2.87z'/%3e%3cpath d='M519.12 275.31c1.33-.87 1.77-3.1 1.85-4.56.15-2.6-2.02-4.9-2.13-7.32-.07-1.55 1.27-1.7 1.52-2.91.22-1.08-3.96-4.86-2.83-7.84.8-2.13 2.5-1.08 3.15-3.3.68-2.36-1.44-5.73 1.29-7.31 1.32-.77 3.26.35 3.84-1.72.58-2.1.12-6.27 3.14-6.56 4.01-.4 4.63 7.82 5.37 8.4.76.6 1.8-.5 2.88-.07 2.95 1.17-.2 6.6-1.22 8.42 7.47.3.64 4.95-.5 7.02.31.75 2.22 1.03 2.54 2.18.2.76-.36 1.42-.89 1.88-1.67 1.48-4.17 2.04-5.99 3.23l-.25.18c-.06.68 1.84 2.68-.72 3.53-4.76 1.59-7.8 2.63-9.63 7.44-.5 1.3-.67 5.25-.76 4.85l-.66-5.54z'/%3e%3cpath fill='%23658d5c' d='m519.85 279.07-.83-3.63c.22-.12.41-.3.6-.48.97-.93 1.43-3.5 1.5-4.8.17-2.81-1.87-4.42-1.97-6.76-.06-1.21 1.29-1.65 1.5-2.8.28-1.45-3.75-4.99-2.7-7.75.73-1.88 2.47-.9 3.17-3.35.62-2.12-1.22-5.91 1.08-7.19 1.38-.76 3.38.47 4.05-2 .51-1.85.12-5.02 2.74-5.29 3.58-.35 4.11 6.82 5.04 7.53 1.03.79 1.85-.23 2.84.15 1.5.59 1.12 2.65.79 3.83-.4 1.38-1.06 2.52-1.64 3.8-.1.26-.11.5.2.62.93.35 1.73.2 2.06 1.43.44 1.67-2.13 3.5-2.7 4.83-.44 1.03 1.3 1.29 1.52 2.66.32 1.92-6.15 4.09-6.65 5-.06 1.26 1.62 2.56-.42 3.25-5.12 1.71-10.24 4.94-10.18 10.95z'/%3e%3cpath stroke-width='.45' d='M519.4 275.86s6.53-11.62 8.41-19.87c1.3-5.72 1.88-14.96 1.88-14.96s-.28 9.21-1.41 14.94c-1.72 8.7-8.47 20.98-8.47 20.98l-.41-1.09z'/%3e%3cpath stroke-width='.78' d='M519.6 286.9c0-.05.06-.23.09-.27 0 0 1.27-1.34 2.03-2.2.3-.33.48-.73.6-1.06.1-.32.13-.55.13-.55.03-.2.2-.32.4-.25l2.18.72c.3.1.33.36.08.54-.02.01-1.67 1.18-2.27 1.9a9.15 9.15 0 0 0-2.2 3.8c-.12.37-.53.34-.6-.06l-.43-2.57z'/%3e%3cpath fill='%23a48253' stroke-width='.78' d='M520.35 289.42c.54-1.67.91-2.3 2.25-3.9.63-.74 2.33-1.94 2.33-1.94l-2.17-.72s-.14 1.03-.8 1.78c-.77.86-2.05 2.2-2.05 2.2l.44 2.58z'/%3e%3cpath d='M511.7 247.35s2.72 5.43 5.07 13.79c4.83 17.25 5.46 39.65 3.38 51.97-6.41 37.86-40.67 73.27-68.32 78.8-23.2 4.62-36.87 14.5-46.6 25.23-7.55 8.73-10.47 13.94-17.33 27.9-2.1 4.3-9.01 5.15-6.04-.9 5.37-9.5 10.47-18.26 18.35-27.6 10.23-11.56 24.93-22.9 49.76-27.9 28.55-5.73 61.44-41.08 67.85-78.94 2.09-12.32 1.44-39.17-5.52-56.44l-.6-5.91'/%3e%3cpath stroke-width='.85' d='M497.25 240.33s-8.04-.3-4.17-6.4c-3.69-1.8-8.13-5.1-3.37-7.8-.22-.92-3.03-1.81-2.82-3.99.13-1.25 1.71-1.82 1.85-2.36-.53-.99-4.2-5.7-2.93-7.11 1.96-2.16 6.18.44 8.1 1.6.48-.3 1.19-.89 1.66-1.2 2.8-1.86 3 2.63 3.76 4.07.36.66 2.57-1.13 4.06-.33 2.59 1.36 1.45 4.7 2.1 6.95.65-.07 1.58-.6 2.22-.64 4.2-.28 1.92 7.1 1.75 9.41 6.66-.96 1.53 5.88 1.9 11.75.1 1.62-.4 5.2-1.65 3.82-3.94-4.34-14.9-3.15-12.45-7.77z'/%3e%3cpath stroke-width='.98' d='M496.32 264.53c-1.44-.12-4.56-.56-5.18-1.93-.97-2.17 1.56-2.91 1.43-3.07-.88-1.18-5-1.94-5.01-3.6-.02-1.15 1.92-1.98 1.58-3.04-.47-1.45-3.24-3.65-2.17-5.26 1.3-1.94 4.04.67 5.35.65.63 0 1.52-1.4 2.72-1.41 1.77-.03 2.85 3.4 3.52 3.32.74-.1 1.19-1.12 1.91-1.34 2.22-.67 2.85 1.73 3.38 3.3 1.03 3.08 2.14-.59 3.8.14 4.22 1.84 2.49 10.1 3.71 11.08.74.6 2.12.53 2.66 1.37 1.15 1.8-.43 5.42.46 8.66.36 1.31 4.45 5.13 4.45 5.13s.64 3.81.54 3.61c-1.85-3.55-2.25-4.39-5.55-6.91-3.18-2.43-8-.5-9.12-1.78-1.23-1.41.2-2.7-.45-3.33-.24-.23-3.97.16-4.53.1-2.65-.27-5.08-2.68-3.5-5.7z'/%3e%3cpath fill='%23658d5c' stroke-width='.98' d='m518.51 278.2.43 2.37c-6.8-9.72-12.34-5.85-13.8-7.43-1.1-1.2.3-2.07-.6-3.01-.95-1-6.67 1.11-8.36-3.32-.36-.93.9-2.45.27-2.58-1.45-.28-3.4-.24-4.39-1.55-.41-.54-.77-1.29-.23-1.88.28-.3.61-.56.85-.91.88-1.31-4.49-2.33-4.5-4.28-.02-1.12 1.46-1.52.92-2.9-.47-1.21-2.1-3.2-1.27-4.52 1-1.59 3.27.41 4.53.56.62.07 1.67-1.39 2.7-1.42 1.62-.05 2.31 2.97 3.55 2.85 1.22-.12 2.6-2 3.92-.37.92 1.15.9 4.48 3.07 3.52.52-.24 1.29-.87 1.87-.61 3.46 1.5 2.58 7.06 3.44 10.03.46 1.59 2.11 1.24 2.7 2.22.3.48.53 1.03.58 1.59.04.48-.03.95-.1 1.43-.27 1.92-.09 3.64.4 5.52.39 1.5 2.5 4.28 4.02 4.69z'/%3e%3cpath d='m520.09 307.84.34-.28c1.2-.02 2.02-2.5 2.39-3.45 1.5-3.93-1.2-10.46 3.34-10.44.24-1.62.57-5.62 2.05-6.69 1.07-.77 2.12.2 3.15-.1.76-1.53 1.12-4.44 3.3-4.85.7-.13 2.15 1 2.39.87.6-.3 1.3-3.42 3.05-3.89 1.07-.29 2.09.82 2.48.57.64-.4 1.26-1.07 1.79-1.64 2.28-2.43 5.12-2.48 5.04.77-.03 1.16-.76 2.79-1.18 3.84-.14.36 1.43 1.1 1.67 1.57.8 1.53-2.02 3.35-2.66 4.56.05.2 1.5.5 1.72.8 1.89 2.64-3.57 5.53-4.95 7.15-.54.64 1.32 2.06 1.06 3.16-1.04 4.43-7.86 2.8-9.37 3.49-.53.24-.69 2.6-1.13 3.21-1.92 2.6-9.53-.57-11.25 1.05-1.58 1.48-2.1 4.01-3.1 5.81-.22.4-.64.27-.6-.13l.47-5.38z'/%3e%3cpath fill='%23658d5c' d='M520.54 308.03c1.4-.07 2.28-2.63 2.7-3.75.56-1.45.81-2.9.87-4.45.08-2.25-1.53-6.2 1.97-5.67 0 0 .73-5.27 2.25-6.49.98-.8 2.74-.34 3.16-.66 1.01-.74.62-3.96 2.8-4.37.84-.16 2.35.68 2.99.36.8-.4 1.09-2.82 2.63-3.23.96-.25 2.23.78 2.86.4 1.33-.83 2.33-3.45 4.2-2.93 2.12.6 1.38 3.8.84 5.12-.39.94.68 1.28 1.06 1.97.71 1.3-1.65 3.36-1.94 4.5-.11.43.93.95 1.19 1.23 1.57 1.68-2.48 4.65-3.57 5.58-.32.27-1.03.82-1.06 1.27-.09.94.93 1.63.67 2.78-.9 3.9-6.32 2.74-8.45 3.46-.86.28-.99 2.03-1.52 2.76-1.7 2.34-9.18.08-11.2 1.91-1.2 1.1-2.16 2.98-2.82 4.46l.37-4.25z'/%3e%3cpath stroke-width='.45' d='M521.66 307.03c.23-.07 9.06-7.1 14.02-12.49 4.07-4.4 9.46-12.12 9.46-12.12s-5.33 7.86-9.3 12.43a144.33 144.33 0 0 1-14.18 13.57c-.24.07-.24-1.33 0-1.4z'/%3e%3cpath d='M523.7 284.44c-2.08-1.2-1.78-7.67 1.26-10.6 2.56-2.47 9.71 4.8 7.5 7.8-1.24 1.67-6.58 4.08-8.77 2.8z'/%3e%3cpath d='M532.5 280.53c-1.29 1.06-4.27-.32-5.79-1.84-1.39-1.4-2.23-3.52-1.4-4.5 1.64-1.95 6.2-4.74 8.4-2.9 2.18 1.83-.05 8.28-1.21 9.24z'/%3e%3cpath fill='%23a48253' d='M532.08 281.37c-1.17 1.58-6.26 3.61-8.15 2.52-1.64-.96-1.62-6.84 1.36-9.72 1.88-1.82 8.89 4.35 6.79 7.2z'/%3e%3cpath fill='%23d99f31' stroke-width='1.09' d='M533.25 271.8c1.82 1.53.06 7.46-1.05 8.37-.94.77-3.61-.26-5.16-1.8-1.4-1.42-2.08-3.39-1.53-4.04 1.68-2 5.92-4.05 7.74-2.52z'/%3e%3cpath fill='%23f1bf31' d='M531.9 271.84a3.83 3.83 0 0 0-.88 2.6c0 1.68.84 3.06 1.89 3.1.14-.45.27-.93.37-1.43.17-.86.26-1.73.19-2.44-.07-.7-.29-1.2-.58-1.45l-.01-.02a1.8 1.8 0 0 0-.97-.36h-.02z' stroke='none'/%3e%3cpath stroke-width='.86' d='M493.75 286.8c-.58-1.8-3.34-3.03-3.63-5.19-.13-.98.94-2.65.85-2.94-.48-1.55-3.07-3.56-1.74-5.5 1.72-2.5 4.16.08 6.2.67.33-.12.44-1.24 1.24-1.45 3.11-.83 5.83 4.23 6.65 4.54 2.41.91 4.3-3.36 5.62 5.98 1.04-.25 2.44-.5 3.07.56 2.57 4.4 1.06 13.9 6.2 16.44l.17.34c-.07.37-.24 3.18-1 2.26-1.3-1.57-2.31-3.8-4.57-4.2-2.39-.42-12.8 3.35-13.09-1.39-.03-.55.73-1.32.48-1.86-.6-1.3-6.86-.85-7.51-4.35-.26-1.37.7-2.62 1.06-3.91z'/%3e%3cpath fill='%23658d5c' stroke-width='.86' d='M517.58 301.94c-3.83-5.95-5.55-3.7-11.36-3.27-1.33.1-5.8.29-5.73-1.95.03-.64.51-.8.11-1.58-.84-1.64-6.08-1.34-6.87-4.38-.41-1.58.45-3.7.23-4.3-.73-1.98-3.98-3.83-3.02-6.42.13-.34.32-.66.39-1.03.2-1.14-2.15-3.77-1.1-5.45 1.2-1.97 3.31-.42 4.92.31 1.15.52.86-.5 1.62-.75 1.33-.44 2.98.83 3.87 1.68.5.48 2.08 2.36 2.48 2.55.94.44 2.53-.06 3.62.32.98.35 1.64 4.45 1.79 5.5l.19.13c.89-.2 2.2-.19 2.73.68 2.43 3.96 1.24 13.42 6.45 16.3l-.32 1.66z'/%3e%3cpath stroke-width='.45' d='M517.28 301.66s-6.92-11.44-12.9-17.43c-3.8-3.81-10.63-8.82-10.63-8.82s6.9 5.23 10.64 9.26c5.45 5.86 11.5 17 11.5 17h1.39z'/%3e%3cpath d='M509.88 319.28c.31.15.97.03 1.38.14 3.05.84-1.31 9.68-1.56 11.62-.06.51.27 2.19.24 2.3l-.67 3.76c-.12.4.07-3.74-.53-4.77-1.06-1.83-4.41-.84-6.13-1.1-2.85-.45-.63-2.88-1.86-3.37-2.04-.82-6.3.34-6.8-2.7-.2-1.13.55-2.34.47-3.31-1.46-1.7-5.22-2.07-4.78-5.05.15-1.03 1.65-2.12 1.6-2.8-.04-.8-3.14-3.07-2.4-4.73.45-1 1.32-1.01 1.4-1.6.1-.61-2.5-4.51-.32-5.57 2.62-1.26 4.79 1.7 6.68 1.83.96.07 1.8-1.5 3.25-1.17 1.53.34 1.7 2.38 2.4 3.52.67.02 1.33-.7 2.08-.77 3.2-.34 2.7 4.78 3.52 6.55.1.21 1.06-.37 1.46-.22.67.26.92 1 1.01 1.66.28 1.92-.74 3.97-.44 5.78zm20.26 7.68c.6 6.03-7.58.09-12.08 2.49-1.35.7-4.49 3.11-4.26 2.54l1.13-2.86c.38-.31 1.59-.32 2-.5.98-.45 2.32-2 3.21-3.67 1.24-2.33.4-4.95 1.15-6.66 1.16-2.61 2.96-.21 3.74-.77 1.44-1.05 1.69-6.33 5.2-6.38.93-.02.92.16 1.56.47.73-1.06.97-2.38 2.39-2.82 1.03-.32 1.73.6 2.68.58.68-.53 3.32-4.95 5.48-4.43 2.43.58.97 4.9.78 6.49.27.3.6.29 1.03.86 1.68 2.24-.95 4.63-1.85 6.4.24.52.92.49 1.06 1.16.6 2.74-4.59 3.07-5.13 3.8 0 .26.4.55.36 1.12-.26 3.35-8.03 2.46-8.45 2.18zm-52.55 19.91c.15-1.14-2.24-2.88-1.24-4.45.82-1.28 2.68-.62 3.43-1.27.65-2.03-.43-4.76 2.39-5.4 1.42-.31 2.2 1.14 2.67 2.24.18.4.8 2.93 1.05 3.02.53.19 1.93-.8 2.63-.71 1.9.27.4 3.84.98 4.85.4.7 1.42.15 2.07.37 1.92.66.43 3.86.43 5.23 0 .83 1.39 1.09 1.5 2.5.2 2.55-1.95 2.83-3.17 4.47-.17.24-.21.35-.02.58 2.1 2.57.91 3.82-1.42 5.52-2.75 2-6.98 3.26-5.42 7.53 0 0-1.4 2.85-1.54 1.9-.22-1.4.46-2.82.07-4.34-.41-1.62-5.36-3.74-5.56-5.49-.14-1.23 1.29-1.42 1.4-2.52.13-1.26-4.3-2.43-3.78-4.93.28-1.35 1.72-1.74 2.35-2.83-.1-1.06-5.04-4.83-.7-5.81.54-.13 1.4-.12 1.88-.46z'/%3e%3cpath fill='%23658d5c' d='M481.75 372.92c.17-1.23.32-2.9 0-4.1-.45-1.75-4.3-3.94-4.46-5.45-.11-.96.62-1.22.78-2.42.2-1.62-3.8-2.66-3.32-4.9.29-1.36 2-2.02 1.84-3.23-.1-.68-2.12-2.35-1.69-4.09.35-1.4 1.88-.84 2.76-1.55.97-.78-1.9-3.13-.98-4.55.72-1.13 2.71-.63 3.27-1.43.59-.83-.46-4.27 2.3-4.91 2.2-.5 2.64 4.2 3.57 4.87.88.65 1.27-.5 2.65-.32 1.35.18.3 3.5.84 4.49.58 1.08 1.5.22 2.44.55 1.51.54.02 3.75.02 4.86 0 1.17 1.23 1.17 1.34 2.55.18 2.24-1.95 2.8-3.08 4.18-.31.38-.34.74 0 1.1 2.04 2.2.6 3.5-1.37 4.93-3.06 2.22-6.66 3.44-5.12 7.9l-1.79 1.52z'/%3e%3cpath d='M531.06 337.06c1.52-.39 3.62-1.87 5.09-.7 2.79 2.23-2.07 6.14-2.97 8.22-.02.77 1.55 1.02 1.45 2.56-.18 2.7-3.77 2.12-5.46 3.08-.13.5.62.91.62 1.4 0 3.81-5.77 2.37-7.97 3.08-.7.23.48 2.25-2.02 3.2-1.08.4-2.62-.02-3.72-.22-1.32-.23-2.67-.5-4.03-.43-.56.03-1.13.18-1.7.13-.23-.02-.4-.14-.32-.41l6.3-18.59c.14-.4 2.88.64 3.49.64.68 0 1.34-1.42 1.82-1.86 1.64-1.5 2.43.64 3.8.64 1 0 3.82-5.58 5.62-.73z'/%3e%3cpath stroke-width='.78' d='M499.83 340.1c-.05-.8-1.63 1.6-1.63 1.6s1.12 1.1 1.89 1.76c.94.81 2.52 1.95 2.52 1.95l.15-1.17s-2.79-1.95-2.93-4.15z'/%3e%3cpath d='M498.15 332.52c.43.6.16 1.42-.13 2.03-.32.67-.51 1.07-.95 1.66-1.44 1.9-4.63 3.6-6.07 2.61-1.31-.9-4-8.78-1.9-10.14 2-1.29 7.18 1.2 9.05 3.84z'/%3e%3cpath d='M490.57 336.03a10.1 10.1 0 0 1 2.42-2.34c1.27-.96 4.48-2.68 5.9-1.3 1.86 1.8 2.76 7.23.6 9.12-2.85 2.5-7.47-.37-9.26-2.84-.62-.85-.17-1.87.34-2.64z'/%3e%3cpath fill='%23a48253' d='M493.3 334.18c1.94-1.44 4.15-2.25 4.99-1.37 2.25 2.37 2.36 6.9.8 8.23-1.57 1.34-5.23 1.23-8.38-2.75-.66-.84.62-2.64 2.58-4.1z'/%3e%3cpath fill='%23d99f31' stroke-width='1.09' d='M497.65 332.26c1.05 1.93-4.7 7.33-6.6 6.05-1.34-.88-3.15-7.68-1.84-8.85 1.84-1.67 7.52 1.11 8.44 2.8z'/%3e%3cpath fill='%23f1bf31' d='M490.64 329.5c-.47.03-.84.16-1.06.36a.83.83 0 0 0-.11.23c.78.39 2.18.74 3.6 1.38 2.05.9 3.47 2.1 4.07 1.76.1-.33.1-.59.03-.71a4.58 4.58 0 0 0-1.28-1.2c-.65-.44-1.47-.88-2.31-1.21a8.5 8.5 0 0 0-2.44-.61 3.77 3.77 0 0 0-.5 0z' stroke='none'/%3e%3cpath fill='%23466343' d='M512.04 356.94c2.87-.14 5.61 1.14 7.35.5 2.59-.92 1-2.93 2.25-3.05 1.25-.11 7.54.35 7.53-2.78 0-.6-.5-.83-.28-1.51.23-.68 4.96-.45 5.13-2.98.1-1.61-1.36-1.63-1.14-2.6.23-.98 5.3-5.77 2.77-7.76-1.74-1.37-4.59 1.02-4.85.32-.36-.9-.43-1.67-1.59-1.77-1.66-.16-2.67 2.5-3.76 2.5-1.09 0-1.58-1.1-2.7-1-1.46.13-1.68 2.37-2.93 2.37-1.25 0-3.19-.7-3.19-.7l-6.3 18.59s1.04-.1 1.7-.13z'/%3e%3cpath fill='none' stroke-width='.62' d='M515.12 349.61s5.92-2.24 9.4-4.26c3.32-1.94 8-5.72 8-5.72m-17.4 9.98s5.92-1.93 9.4-3.95c3.32-1.94 8-6.03 8-6.03'/%3e%3cpath stroke-width='.78' d='M477.3 379.03s2.34-.57 3.28-.57 1.49.46 1.49.46l1.07-1.96s-3.19.38-4.13.29l-1.71 1.78z'/%3e%3cpath fill='none' d='M463.17 400.05c-1.86-2.27 4.3-8.16 6.6-6.5 1.65 1.2 3.72 6.32 2.08 7.85-1.83 1.7-7.2.45-8.68-1.35z'/%3e%3cpath stroke-width='.78' d='m460.32 392.57-.68-.05c-1.2-1.5-1.64-1.56-3.4-2.04-.57-.16-.65-.75-.04-.91l2.13-.56c.34-.09 1.25.72 1.5.91.41.3 2.48.75 1.72 1.48l-1.23 1.17z'/%3e%3cpath fill='none' d='M459.86 391.23c.87-1.31 6.28-1.63 9.44 1.16 1.94 1.71.38 4.13-1.47 5.69-1.82 1.54-4.58 2.82-5.71 1.82-3.22-2.8-3.31-7.1-2.27-8.67z'/%3e%3cpath fill='%23658d5c' d='M513.1 333.13s2.62-2.72 4.73-3.78c4.1-2.06 10.75 1.25 11.73-.61.5-.95-.25-1.65.38-1.9.64-.26 7.9 1.18 8.18-2.1.06-.59-.75-.89-.13-1.52.64-.63 5.22-.94 4.76-3.1-.15-.7-1.14-.9-.89-1.59.26-.7 3.7-3.96 2.22-5.96-.42-.58-1.5-.47-1.42-1.18.25-2.22 1-5.65-.83-5.83-1.97-.19-4.27 3.82-5.04 3.97-.95.2-1.52-.75-2.47-.44-1.59.5-1.84 2.85-2.47 2.85-.64 0-.59-.66-1.6-.64-3.12.07-3.38 5.06-4.93 6.28-.89.7-1.41-.24-2.29-.06-2.15.44-1.51 5.83-2.66 7.54a17.64 17.64 0 0 1-4.12 4c-.5.25-1.5.25-1.5.25l-1.64 3.82z'/%3e%3cpath fill='%23a48253' stroke-width='.78' d='M455.15 390s1.98.66 3.28.73c.88.05 2.26-.13 2.26-.13s-.54.12-1.12-.3c-.2-.13-1.55-1.33-1.55-1.33l-2.87 1.02z'/%3e%3cpath fill='%23a48253' d='M460.4 391.64c1.45-1.65 5.66-1.47 8.74 1.25 1.54 1.35.52 3.38-1.3 4.99-1.83 1.62-4.16 2.52-4.95 1.83-3.08-2.7-3.56-6.86-2.5-8.07z'/%3e%3cpath fill='%23d99f31' stroke-width='1.09' d='M463.52 399.9c-.7-.8.41-3.21 1.88-4.54 1.3-1.17 3.42-1.97 3.88-1.48 1.8 1.93 3.64 5.36 2.21 7.07-1.43 1.7-6.42.73-7.97-1.05z'/%3e%3cpath fill='%23f1bf31' d='m469.06 394.48-.14.04c-1.5.31-2.34 2.27-1.89 4.39.2.94.63 1.76 1.17 2.34h.02c1.3.1 2.44-.15 2.86-.66.52-.62.49-1.68.01-2.9a11.36 11.36 0 0 0-2.03-3.2z' stroke='none'/%3e%3cpath fill='%23a48253' stroke-width='.78' d='M515.85 260.45s.05-1.77 1.45-6.76c.24-.87.9-1.35.9-1.35l-2.6-.36s.66.63.65 1.46a8.31 8.31 0 0 1-1.29 4.15l.89 2.86z'/%3e%3cpath fill='%23658d5c' stroke-width='.85' d='M512.96 255.11s-1.7-4.95-3.14-6.75c-1.54-1.92-2.64-2.32-5.42-3.21-2.46-.79-6.3-1.42-6.46-3.35-.17-1.93.06-1.57-.64-1.75-2.26-.6-5.09-1.34-4.55-3.58s1.38-2.58.4-3.05c-1.42-.7-5.18-2.88-4.73-4.8.45-1.91 2.12-1.94 1.42-3.11-.51-.84-2.32-1.76-2.18-3.3.1-1.04 1.43-1.38 1.39-2.3-.04-.94-3.6-5.07-1.5-6.8 1.9-1.57 5.26 1.24 6.12 1.6.86.35 1.85-1.47 3.11-1.17 1.62.38 1.7 2.8 2.19 3.67.87 1.56 2.66-.48 4.06.28 2.33 1.25 1.52 5.56 2.15 6.44.62.87 2.35-.53 3.57.15 1.9 1.05.27 7.34.4 8.38.12 1.03 1.5.14 2.3.76 2.1 1.63-.46 6.6-.06 10.79.14 1.44.49 3.7.49 3.7l1.08 7.4z'/%3e%3cpath d='M496.9 399.13c.65 1.13 1.85 1.91 2.41 3.08.79 1.64.05 3.3-1.93 3.19-.86-.06-1.65-.72-2.47-.78-.66-.06-2.57 2.49-4.4 2.4-2.52-.1-3.72-3.17-5.25-4.74-1.22-.26-2.12 1.54-3.48 1.3-2.78-.5-2.65-4.93-3.6-6.88-.78-.57-1.94.64-3.48-.45-2.39-1.69-1.14-6.99-3.7-8.47-2.25-1.3-7.02-.44-6.6-.66l2.65-1.38c.17-.09.67.16.84.2 4.36.86 10.19.14 14.65.14 2.14 0 1.8 1.73 2.14 2.09l.18.02c2.22.16 4.87 0 6.77 1.4 2.3 1.7.12 3.22.11 3.6l.1.05.5.17 1.49.44c1.16.37 2.46.88 3.24 1.87 1.13 1.44-.14 2.12-.18 3.4z'/%3e%3cpath fill='%23466343' d='M467.2 386.2c.95.6 13.78.2 15.5.2 1.86 0 1.25 1.47 1.89 2.02.77.35 9.58.06 7.57 3.39-.23.38-.53.73-.72 1.13l.04.37c.9.74 4.02.8 5.38 2.55.81 1.05-1.33 2.73-.41 3.39 1.76 1.27 5.7 6.91-1.46 5.22-1.72-.4-3.76 4.4-7.5.1-.46-.53-1.52-2.05-1.95-2.35-1.05-.73-2.38.95-3.67.74-2.36-.38-2.5-4.52-3.35-6.26-1.17-.82-2.15.16-3.55-.83-3.17-2.24.71-9.9-9.54-8.76l1.76-.92z'/%3e%3cpath stroke-width='.45' d='M466.26 386.4s9.65 1.96 15.2 4.76c5.09 2.56 11.92 8.46 11.92 8.46s-6.66-6.27-11.77-8.93c-5.28-2.75-14.58-4.6-14.58-4.6l-.77.32z'/%3e%3cpath d='M491.11 376.21c2.5 2.32-1.28 10.05-4.12 9.56-4.53-.77-7.02-5.89-6.17-8.07.91-2.33 7.59-4 10.3-1.49z'/%3e%3cpath fill='none' d='M486.6 384.99c-1.28-.92-.79-4.17.34-6.14 1.04-1.8 2.52-2.92 3.65-2.57 3.2 1 6.33 5.23 5.13 7.8-1.18 2.54-7.85 1.82-9.12.9z'/%3e%3cpath fill='%23a48253' d='M490.9 376.44c2.3 2.13-1.35 9.15-3.86 8.72-4.32-.74-5.87-5.18-5.35-7.01.54-1.9 6.66-4.08 9.21-1.71z'/%3e%3cpath d='M505.92 381.75c-.4.54-1.27 1.55-2.17 1.55-3.85-.04-3.58-3.32-5.6-5.5-.67-.17-1.17.63-2.5.33-1.73-.4-1.84-4.81-4.43-5.72-1.32-.45-4.97-.47-7 1.43l3.63-2.82c3.51 1.38 6.68-6.1 10.7-5.1 1.14.28 1.18 1.02 2.5.9 2.93-.26 5.92-2.18 9.45-1.02 2.12.7-.63 3.53 2.04 3.21 1.72-.2 4.28-.2 4.8 1.94.28 1.17-.33 1.7-.2 2.55.35.27 6.8 2.51 3.38 4.24.54 1.52 3.14 2.53 1.77 4.4-1.3 1.74-4.03-.2-4.8.52-.3.3-.3 1.14-.57 1.48-1.14 1.42-4.13-1.45-5.41-1.72-1.27 4.3-3.57 2.28-5.59-.67z'/%3e%3cpath fill='%23658d5c' d='M491.45 372.43c2.67.75 2.74 4.86 4.28 5.24 1.54.39 1.5-.42 2.46-.2.89.2 1.78 5.39 6.08 4.85 1.1-.13 1.64-1.3 1.64-1.3s1.58 2.58 3.23 2.81c2.38.34 1.7-1.8 2.3-1.88.97-.1 2.74 1.94 4.52 1.94 1 0 .85-1.7 1.91-1.7s3.14 1 4-.24c1.13-1.61-1.49-3.5-1.68-4.08-.2-.58.74-.6.65-1.15-.37-2.05-3.7-2.38-4-3.1-.28-.73.47-1.47.2-2.6-.48-1.91-3.2-1.98-4.43-1.7-2.85.63-.27-2.41-2.3-3.27-3.49-1.47-8.57 1.32-9.86.77a7.38 7.38 0 0 0-1.95-.6c-3.15-.55-6.05 4.04-8.04 5l1 1.2z'/%3e%3cpath stroke-width='.45' d='M490.47 371s9.65-.6 15.3 1.37c4.9 1.7 11.37 6.91 11.37 6.91s-6.97-5.12-12.15-6.63c-5.57-1.61-14.86-.73-14.86-.73l.34-.93zm-8.53.67s1.85-12.28 1.7-20.17c-.1-4.75-1.01-12.12-1.01-12.12s1.27 7.64 1.47 12.58c.29 7.34-1.38 18.78-1.38 18.78l-.78.93z'/%3e%3cpath d='M472.62 371.22c.18.53 1.96 1.04 1.8 3.03-.2 2.44-3.87 1.69-5.58 2.84-.64.43.77 2.52.03 3.52-1.33 1.77-5.84.71-6.16 1.15-.6.81 1.47 3.04-.72 4.27-3.04 1.7-9.45-1-12.91 2.07-.2.19-1.55 1.7-1.6 1.71-1.98.52-7.22 1.6-6.61 1.35 3.08-1.3 8.02-2.57 9-4.69.82-1.8.2-5.2.53-7.15.5-2.91 2.64-1.74 3.35-2.66.57-.75-.5-4.8 1.8-6.72 1.62-1.34 3.36-.42 4.83-1.48 1.54-1.11-.79-4.82 2.26-5.87 1.83-.63 3.74 1.41 4.15 1.32 1.14-.24 2.48-3.68 4.79-3.21 2.3.45 1.27 3.49 1.17 4.9 3.86.47 1.78 3.34-.13 5.62z'/%3e%3cpath fill='%23658d5c' d='M441.42 390.86s8.2-3.43 8.87-5.15c1.04-2.64-.09-6.63 1.35-7.59.93-.62 1.87-.31 2.49-1.2.61-.89-.19-5.2 2.03-6.93 1.4-1.1 2.64-.12 4.34-1.3 1.82-1.3-.48-4.47 2.3-5.5 1.64-.62 3.3 1.38 4.11 1.17 1.57-.4 2.4-3.54 4.7-3.2 1.86.27.95 2.15.84 3.94-.07 1.02 1.54.55 2.01 1.99.35 1.04-1.08 3.3-2.03 4.13-.55.48 1.66 1.31 1.53 2.8-.2 2.14-4.32 2.29-5.27 2.63-1.24.44-.13 2.29-.96 3.36-1.35 1.72-4.78.65-5.4 1.47-.56.75.69 2.68-.89 3.87-1.64 1.23-8.01.45-9.05.83a77.2 77.2 0 0 0-5.57 2.31l-5.4 2.37z'/%3e%3cpath stroke-width='.45' d='M450.2 386.04s8.98-6.45 13.57-12.22c2.53-3.18 5.87-8.02 5.87-8.02s-3.23 5.01-5.72 8.33c-4.53 6.04-13.56 12.95-13.56 12.95l-.15-1.04zm67.06-57.41c3.45-1.86 9.72-5.1 14.83-9.76 3.44-3.14 7.92-8.93 7.92-8.93s-4.45 6.1-7.92 9.4c-5.22 4.97-11.84 8.5-15.3 10.37l.47-1.08z'/%3e%3cpath fill='%23466343' d='m509.94 333.26-.8 2.64c0-3.64-.14-5.37-4.44-5.14-.67.03-1.36.1-2.02 0-2.19-.34-.5-1.66-1.2-2.66-.85-1.22-6.6-.12-7.08-3-.18-1.12 1.07-2.45.15-3.33-1.38-1.32-4.82-2.47-4.46-4.9.16-1 1.5-1.72 1.3-2.65-.26-1.24-2.73-3.4-2.13-4.76.49-1.09 1.37-.73 1.45-1.76.1-1.14-1.9-4-.12-4.87 2.35-1.14 3.95 1.1 5.97 1.26 1.17.09 1.96-1.3 3.19-1.03 1.58.35 1.59 2.9 2.6 3.42.38.19 1.5-.76 2.03-.82 2.83-.33 2.19 5.17 3.16 6.46.35.46 1.1 0 1.6.16 1.77.55-.13 6.56.6 7.36.25.28 1.15.12 1.55.23 1.48.42.45 4.24.2 5.18-.55 2.1-2.45 6.25-1.55 8.21z'/%3e%3cpath stroke-width='.45' d='M509.83 332.84s-2.75-10.94-6.65-16.81c-3.23-4.87-10.3-10.87-10.3-10.87s6.77 6.05 9.84 10.87c3.76 5.9 6.33 16.81 6.33 16.81h.78zm5.97-57.14s-6.5-10.55-12.08-16.04c-4.56-4.48-12.98-9.99-12.98-9.99s8.03 5.67 12.36 10.17c5.3 5.49 11.45 15.85 11.45 15.85h1.24z'/%3e%3cpath fill='%23a48253' d='M512.96 250.46c1.09 2.7 2.64 6.9 3.67 10.8 4.84 18.34 5.28 39.53 3.21 51.77-6.38 37.7-40.66 72.78-68.1 78.26-23.3 4.65-37.07 14.75-46.85 25.54a92.49 92.49 0 0 0-11.2 15.07c-2.84 4.82-4.7 8.96-7.23 13.1l-.14.06c-.17.07-.4.12-.66.17-.55.1-1.26.18-1.92.21a6.6 6.6 0 0 1-1.65-.09l-.08-.02 1.05-1.65c2.4-3.97 4.5-7.84 7.25-12.43a94.37 94.37 0 0 1 10.4-14.4c10.18-11.5 24.64-22.62 49.35-27.6 28.78-5.77 61.63-41.45 68.07-79.47 2.09-12.39 2.04-33.76-5.82-56.93l.65-2.4z'/%3e%3cpath stroke-width='.45' d='M511.84 248.25a78.38 78.38 0 0 0-7.52-14.97c-4.46-7.16-13.52-16.88-13.52-16.88s8.57 9.76 12.8 16.85a80.72 80.72 0 0 1 9.06 20.47l-.82-5.47z'/%3e%3cpath fill='%23a48253' d='M513.23 254.08s-.36-.9-.55-1.5c-.4-1.24-.71-3.27-.71-3.27l.98 2.35a51 51 0 0 1 .9 2.46l-.62-.04z' stroke='none'/%3e%3cpath d='M514.38 317c-1.78-1.47-6.65-5.97-6.65-8.26 0-2.74 2.55-2.27 3.17-2.67-.11-1.1-3.86-3.85-2.36-6.31 1-1.63 3.24-1.17 4.08-1.84.64-1.74-1.84-6.27.15-8.72 1.17-1.46 2.08-.37 2.63-.5.11-.77.1-1.55.18-2.31.15-1.35.64-2.7 2.21-2.78 2.2-.11 3.7 2.71 4.75 4.27.23-.14 1.38-.3 1.63-.42 2.7-1.32 1.72 7.08 1.8 8.38.63-.02 1.91-.38 2.47-.05 2.9 1.72-2.86 10.72-3.48 12.84-.25.88 3.05.17.51 3.37-1.47 1.87-3.36 3.52-5 5.25l-6.1-.25z'/%3e%3cpath fill='%23658d5c' d='M515.3 323.97c1.1-2.9.7-5.73-1.48-7.32-2.35-1.7-5.48-5.73-5.47-8.07 0-2.76 2.75-1.08 2.87-2.38.1-.98-3.6-3.9-2.28-6.05.86-1.4 3.15-1.23 3.73-1.93.96-1.16-1.43-6.33.46-8.74 1.04-1.32 1.85.09 2.54-.4.67-.48-.4-4.42 2.14-4.54 2.46-.1 4.26 4 4.65 3.88.8-.26 1.74-1.09 2.63-.24.87.83.6 7.85.6 7.85s1.67-.17 2.2.16c2.22 1.37-1.77 9.33-2.89 11.52-.95 1.86 1.85 2.1.41 4.01-2.36 3.16-7.09 6.94-7.84 11.58'/%3e%3cpath stroke-width='.45' d='M518.03 321.92s1.77-11.42 2.27-17.44c.4-4.94-.7-13.08-.7-13.08s.63 7.83.23 12.77c-.5 6.02-3.14 20.36-3.14 20.36l1.34-2.6z'/%3e%3cpath d='M492.06 364.37c1-2.56-1.93-10.05.28-11.36 1.26-.75 2.06.66 3.29-.55 1.57-1.55-.9-7.4 1.98-9.25 1.67-1.08 3 .47 4.6-.99 1.07-.97 1.12-4.88 3.83-5.56 1.8-.45 2.63.78 4.22 1 1.36.18 5.95-6.22 8.81-4.7 3 1.61.34 5-.26 7.28-.31 1.2 2.23 1.03 2 3.02-.22 1.82-2.3 3.65-2.3 4.41 0 .82 2.1 1.37 2.18 2.9.17 2.96-4.6 3.37-6.21 4.63-.84.66 1.08 2.8-.1 4.75-1.26 2.09-6.62.62-7.51 1.07-.73.37-.02 3.9-.92 5.15-1.47 2.03-8.47.12-11.06.55-3.47.56-4.98 1.27-7.17 3.87l4.34-6.22z'/%3e%3cpath fill='%23658d5c' d='M487.66 368.46s2.73-1.42 3.72-3c.97-1.56 1.1-2.12 1.05-4.58-.02-1.5-1.32-6.65.14-7.47 1.21-.68 1.88.64 3.38-.78 1.84-1.73-.85-7.72 1.76-9.34 1.57-.97 3 .75 4.81-.88 1.24-1.1 1.03-4.84 3.48-5.46 1.53-.38 2.75.81 4.2 1 1.77.25 5.8-5.64 8.34-4.26 1.1.6 1.43 1.45 1.23 2.67-.22 1.3-.96 2.47-1.25 3.75-.36 1.65 1.87 1.5 1.67 3.25-.2 1.65-2.15 3.24-2.15 4.31 0 1.18 1.76 1.94 1.88 3.38.21 2.74-5.52 2.8-5.98 4.3-.46 1.5.66 2.6-.43 4.36-1.17 1.9-5.2.22-6.78.87-1.31.53-.51 3.5-1.31 4.7-2.2 3.27-12.85-1.34-17.23 4.68l-.53-1.5z'/%3e%3cpath stroke-width='.45' d='M487.98 368.84s11.32-9.64 17.53-16.78c4.78-5.5 11.25-14.91 11.25-14.91s-6.04 9.53-10.63 15.07c-5.61 6.76-15.99 15.86-15.99 15.86l-2.16.76z'/%3e%3cpath fill='%23a48253' d='m486.96 369.1 1.86-.55s-.68.8-.96 1.05l-.84.78-.06-1.29z' stroke='none'/%3e%3cpath fill='%23d99f31' stroke-width='1.09' d='M486.87 384.76c-.92-.65-.68-3.67.48-5.67 1.05-1.82 2.68-2.7 3.35-2.4 2.48 1.17 5.59 5.07 4.6 7.2-.99 2.1-7.22 1.74-8.43.87z'/%3e%3cpath fill='%23f1bf31' d='M491.36 377.72c-.28.12-.53.27-.74.5-1.02 1.13-.54 3.23 1.07 4.67a4.8 4.8 0 0 0 2.64 1.25h.01c.22-.15.38-.32.46-.48.35-.75-.03-2.1-.94-3.41-.68-.98-1.61-1.9-2.5-2.53z' stroke='none'/%3e%3cpath d='M516.64 254.59c-2.35-.82-3.96-5.17-2.98-9.03.97-3.82 10.73-2.27 9.68 2.29-.83 3.59-4.7 7.43-6.7 6.74z'/%3e%3cpath d='M523.07 246.46c-.34 2.3-3.36 2.55-4.76 2.27-1.49-.3-4.3-1.88-3.96-3.78.7-4.03 3.94-7.13 5.86-6.83 2.1.33 3.42 4.65 2.86 8.34z'/%3e%3cpath fill='%23a48253' d='M516.85 253.84c-1.99-.3-3.54-4.4-2.59-8.13.9-3.5 9.24-1.29 8.48 2-.83 3.59-3.95 6.43-5.9 6.13z'/%3e%3cpath fill='%23d99f31' stroke-width='1.09' d='M520.13 238.73c1.63.26 3.36 3.93 2.8 7.66-.28 1.8-3.1 1.7-4.53 1.42-1.55-.32-4.15-1.35-3.9-2.78.68-3.98 4.14-6.54 5.63-6.3z'/%3e%3cpath fill='%23f1bf31' d='M519.86 239.27c-.07 0-.16.02-.25.04.1.66.51 1.62.7 2.72.25 1.46.22 3.85 1.24 3.67.63-.1.9-.6.9-1.57v-.02a9.46 9.46 0 0 0-.6-2.64c-.53-1.32-1.35-2.13-1.8-2.2h-.2z' stroke='none'/%3e%3cpath fill='none' d='M382.27 446.7c-.77-1.13.99-4.61 4.68-4.2 1.62.2.83 2.53-1.17 3.94-1.41.98-2.74 1.4-3.51.26z'/%3e%3cpath fill='%23a48253' d='M382.27 446.7c-.77-1.13.35-3.57 4.06-3.73 1.33-.05 1.45 2.06-.55 3.47-1.41.98-2.74 1.4-3.51.26z'/%3e%3cpath fill='none' d='M394.92 431s-.1-1.38-1.7-1.93a2.06 2.06 0 0 0-2.23.61m2.38 3.18s-.05-1.4-1.7-1.78a1.8 1.8 0 0 0-2.08.93'/%3e%3c/g%3e%3cpath fill='%23fff' d='M401.7 427.16c7.7-.09 13.48-.82 20.05-2.12-1.55 5.28-4.65 15.3 7.75 15.3 9.02 0 18.6-5.42 27.9-.65 20.3 10.42 35.64 2.98 48.04-10.96 0 0-9.17 1.95-18.6 1.54 0 0 7.06-6.02 7.75-13.94-6.2 4.64-12.4 5.32-18.6 5.32-6.2 0-10.16-3.74-18.28-5.02.46-2.8.95-5.66 1.68-9.6.8-4.3-.39-7.8-6.65-8.53-13.61-1.6-26.8 6.26-50.89 6.64-24.25-.38-40.88-8.24-54.5-6.64-6.25.74-7.44 4.23-6.64 8.53.73 3.94 1.22 6.8 1.67 9.6-8.1 1.28-12.07 5.02-18.27 5.02-6.2 0-12.4-.68-18.6-5.32.68 7.92 7.75 13.94 7.75 13.94-9.43.41-18.6-1.54-18.6-1.54 12.4 13.94 27.73 21.38 48.05 10.96 9.3-4.77 18.87.66 27.9.66 12.39 0 9.29-10.03 7.74-15.3a120.66 120.66 0 0 0 23.35 2.15v-.04z'/%3e%3cpath d='M337.7 427.3c-.9.42-1.36-.16-.34-.68.72-.37 3.83-1.72 6.08-2.17.08-.01.17.05.18.14l.08.6c.01.07-.05.16-.13.17a30.84 30.84 0 0 0-5.86 1.94zm.52 2.95c-.9.41-1.36-.16-.34-.68.71-.37 3.98-1.98 6.23-2.42.06-.01.15.04.18.1l.22.6c.04.1-.01.18-.11.2-2.12.38-5.42 1.85-6.18 2.2zm32.32 5.39c-3.87-.4-8.43-1.57-13.27-2.25-6.14-.85-11.47-.53-17.86 2.36-.35.16-.53.18-.67.18-.12 0-.3-.03-.34-.2-.03-.14.07-.27.15-.35.1-.1.25-.2.42-.28 5.95-3.04 12.16-3.59 18.4-2.74 4.84.66 9.45 1.67 13.3 2.07 2.17.23 4.65-.14 5.46-1.44.22-.35.83.4.63.71-1.23 1.98-4.12 2.16-6.22 1.94zm-33.6-11.04c-.17.06-.33.1-.44.1-.1 0-.26-.03-.3-.17-.05-.14.04-.25.1-.32.08-.08.2-.16.35-.23 2.34-1.08 2.94-1.27 6.37-2.18.29-.07.5.1.55.32a.44.44 0 0 1-.35.53 40.73 40.73 0 0 0-6.29 1.95zm-.54-3c-.15.06-.3.1-.4.09-.11 0-.24-.05-.3-.18-.04-.12.02-.24.08-.32a.9.9 0 0 1 .32-.23 23.6 23.6 0 0 1 6.6-2c.27-.05.5.1.57.3.08.22-.03.47-.32.52-3.21.61-4.35.94-6.55 1.82zm34.15 9c-2.64-.27-5.64-.86-8.82-1.38a.5.5 0 0 1-.42-.58.5.5 0 0 1 .58-.41c3.16.51 6.14 1.1 8.76 1.37a6.26 6.26 0 0 0 2.93-.38c.31-.12.56.06.65.29.1.22.03.53-.28.65a7.2 7.2 0 0 1-3.4.44zm-13.88 5.25a29.54 29.54 0 0 0-16.78 2.58c-.22.1-.42.14-.57.16-.12 0-.3 0-.38-.14a.25.25 0 0 1-.01-.22.51.51 0 0 1 .12-.17c.1-.1.26-.21.47-.33 7.41-3.59 13.07-3.35 17.47-2.85 4.73.54 8.87 1.56 13.39 1.9.4.03.5.39.6.7.1.27.27.79-1.15.64-4.47-.48-8.56-1.55-13.16-2.27zm13.83-2.98c-5-.52-11.64-2.22-18-2.5-.33-.02-.54-.24-.54-.5 0-.25.21-.46.55-.45 6.38.29 13.1 1.8 18.12 2.33 1.85.19 3.88-.18 4.85-1.05.3-.26 1.05.73.77.97-1.3 1.16-3.74 1.41-5.75 1.2zm-31.73.11c-.9.42-1.36-.16-.35-.68.82-.42 5.34-2.56 7.76-2.72.33-.02.57.18.64.42.08.26-.07.53-.42.55-2.17.15-6.76 2.03-7.63 2.43zm123.63-5.68c.9.42 1.36-.16.34-.68a30.38 30.38 0 0 0-6.08-2.17.16.16 0 0 0-.18.14l-.08.6c-.01.07.05.16.12.17 2.12.38 5.12 1.59 5.87 1.94zm-.53 2.95c.9.41 1.37-.16.35-.68-.72-.37-3.99-1.98-6.23-2.42-.07-.01-.16.04-.18.1l-.23.6c-.03.1.02.18.12.2 2.12.38 5.42 1.85 6.17 2.2zm-32.31 5.39c3.86-.4 8.43-1.57 13.27-2.25 6.13-.85 11.47-.53 17.85 2.36.35.16.54.18.68.18.12 0 .3-.03.33-.2.03-.14-.06-.27-.14-.35-.1-.1-.25-.2-.43-.28-5.94-3.04-12.16-3.59-18.4-2.74-4.83.66-9.44 1.67-13.3 2.07-2.16.23-4.64-.14-5.46-1.44-.21-.35-.83.4-.62.71 1.23 1.98 4.11 2.16 6.22 1.94zm33.6-11.04c.17.06.32.1.44.1.1 0 .25-.03.3-.17.05-.14-.04-.25-.1-.32-.08-.08-.2-.16-.35-.23-2.34-1.08-2.95-1.27-6.37-2.18-.3-.07-.5.1-.55.32-.05.21.06.46.35.53 2.67.64 3.98 1.05 6.29 1.95zm.53-3c.16.06.3.1.41.09.11 0 .24-.05.3-.18.04-.12-.02-.24-.09-.32a.89.89 0 0 0-.31-.23 23.6 23.6 0 0 0-6.6-2 .5.5 0 0 0-.57.3c-.09.22.02.47.32.52 3.21.61 4.35.94 6.54 1.82zm-34.14 9c2.64-.27 5.64-.86 8.82-1.38.33-.05.46-.34.42-.58a.5.5 0 0 0-.58-.41c-3.16.51-6.14 1.1-8.76 1.37a6.25 6.25 0 0 1-2.93-.38.49.49 0 0 0-.65.29.49.49 0 0 0 .28.65 7.2 7.2 0 0 0 3.4.44zm13.88 5.25c5.26-.82 11.75.07 16.78 2.58.22.1.42.14.57.16.12 0 .3 0 .38-.14a.26.26 0 0 0 0-.22.53.53 0 0 0-.1-.17c-.1-.1-.27-.21-.48-.33-7.41-3.59-13.07-3.35-17.48-2.85-4.72.54-8.86 1.56-13.38 1.9-.4.03-.5.39-.6.7-.1.27-.27.79 1.14.64 4.48-.48 8.57-1.55 13.17-2.27zm-13.84-2.98c5-.52 11.64-2.22 18-2.5.34-.02.54-.24.55-.5 0-.25-.22-.46-.55-.45-6.39.29-13.1 1.8-18.12 2.33-1.86.19-3.88-.18-4.86-1.05-.29-.26-1.04.73-.76.97 1.29 1.16 3.74 1.41 5.74 1.2zm31.74.11c.9.42 1.36-.16.35-.68-.83-.42-5.35-2.56-7.76-2.72a.61.61 0 0 0-.64.42c-.08.26.06.53.42.55 2.17.15 6.76 2.03 7.63 2.43z'/%3e%3cg stroke='%23000' stroke-linejoin='round' stroke-linecap='round'%3e%3cpath stroke-width='.93' d='M400.04 427.33c-10.34 0-17.1-1.58-26.35-3.25-21.51-3.9-26.19-.94-26.19 2.78 0 1.2 1.1 1.55 1.9 1.2.41-.2.75-.88.75-.88-.76 0-1.26-.3-1.1-1.25.46-2.71 6.05-3.95 24.64-.92 9.27 1.5 16.01 2.78 26.36 2.78l-.01-.46zm.02 0c10.34 0 17.1-1.58 26.34-3.25 21.52-3.9 26.2-.94 26.2 2.78 0 1.2-1.1 1.55-1.9 1.2-.41-.2-.75-.88-.75-.88.76 0 1.26-.3 1.1-1.25-.46-2.71-6.05-3.95-24.65-.92-9.27 1.5-16 2.78-26.35 2.78v-.46z'/%3e%3cpath d='M342.37 416.79c-3.4.55-6.53 1.71-9.73 2.97-8.7 3.41-18.7 2.9-26.43-2.61a20.17 20.17 0 0 0 4.76 10.3c.61.73 2.49 2.59 2.49 2.59.31.32.26.53-.19.54-5.93.26-11.3.18-17.14-.9 13.76 15.13 27.59 18.9 46.43 9.74 9.9-4.81 18.15.62 28.04.62 10.5 0 9.5-6.87 7.2-14.63l1.25.14c1.7 4.77 4.34 16.52-8.45 15.57-9.86-.73-17.75-5.75-27.68-1.01-15.3 7.3-26.35 7.19-39.66-2.69-2.7-2-7.08-5.63-8.95-8.39-.45-.67 0-1.07.69-.86 5.05 1.57 12.7 1.57 16.6 1.47-3.16-3.17-6.7-9.05-6.55-13.27.02-.55.28-.65.74-.42 7.2 3.74 9.91 5.24 18.32 5.24 4.95 0 15.06-5.6 18.08-5.01l.18.61z'/%3e%3cpath stroke-width='.93' d='M457.72 416.79c3.41.55 6.54 1.71 9.73 2.97 8.71 3.41 18.7 2.9 26.44-2.61a20.17 20.17 0 0 1-4.76 10.3c-.61.73-2.5 2.59-2.5 2.59-.3.32-.25.53.2.54 5.92.26 11.3.18 17.13-.9-13.76 15.13-27.58 18.9-46.43 9.74-9.9-4.81-18.15.62-28.03.62-10.5 0-9.5-6.87-7.2-14.63l-1.25.14c-1.7 4.77-4.34 16.52 8.45 15.57 9.85-.73 17.75-5.75 27.68-1.01 15.3 7.3 26.35 7.19 39.65-2.69 2.72-2 7.09-5.63 8.95-8.39.46-.67 0-1.07-.68-.86-5.05 1.57-12.7 1.57-16.6 1.47 3.16-3.17 6.7-9.05 6.55-13.27-.02-.55-.28-.65-.74-.42-7.21 3.74-9.92 5.24-18.32 5.24-4.96 0-15.07-5.6-18.08-5.01l-.19.61z'/%3e%3cpath d='M399.47 405.15c-11.82.09-21.8-2.07-30.12-3.94-6.9-1.56-14.94-3.34-22.01-2.4-5.15.69-7.26 2.96-6.38 8.16 1.1 6.46 2.06 12.97 3.24 19.4.67 3.72 2.65 4.22 6.14 3.6 5.03-.89 21.15-4.5 24.77.09 3.48 4.39.09 7.55-4.75 7.63-.68.01-.46-.46-.23-.46 4.63 0 7.89-2.67 4.9-6.78-3.15-4.33-18.23-1.16-24.38.28-3.9.91-6.5.4-7.22-4.39-.99-6.6-1.6-11.15-3.7-19.7-3.53-14.44 22.25-7.75 29.67-6.02 10.13 2.35 18.58 3.86 30.59 4.22 12.03-.36 20.48-1.87 30.6-4.22 7.43-1.73 33.21-8.42 29.67 6.03-2.1 8.54-2.7 13.08-3.7 19.7-.71 4.79-3.31 5.29-7.22 4.38-6.14-1.44-21.22-4.6-24.37-.28-3 4.1.27 6.78 4.9 6.78.22 0 .44.47-.24.46-4.83-.08-8.22-3.24-4.74-7.63 3.62-4.58 19.74-.98 24.76-.09 3.5.62 5.47.12 6.15-3.6 1.17-6.43 2.14-12.94 3.23-19.4.88-5.2-1.22-7.47-6.38-8.16-7.07-.94-15.1.84-22 2.4-8.33 1.87-18.3 4.03-30.13 3.94h-1.05z'/%3e%3c/g%3e%3cpath d='M361.53 417.23c-1.62-.14-4.22-.29-4.22-.29l-.95-12.88 3.13.37.65 10.06c.32.01 1.73.1 2.66.21 1.07.12 2.79.39 2.79.39l.2 2.58s-2.63-.3-4.26-.44zm6.76.72-.7-12.43 3.15.49.7 12.42zm9.52-5.77 1.07.18c1.6.27 1.72-.28 1.71-.95-.02-.8-.4-1.3-2-1.58l-.83-.14.05 2.49zm.11 4.94 1.5.25c1.73.3 2.16-.02 2.14-.9-.02-1-.62-1.6-2.5-1.92l-1.19-.2.05 2.77zm1.84 2.76-5-.85-.23-12.27 4.5.76c3.08.53 4.75 1.88 4.8 4.21 0 .98-.54 1.63-1.14 1.98.86.48 2.1 1.59 2.13 3.21.04 2.28-1.34 3.6-5.06 2.96zm11.77 1.69a127 127 0 0 1-4.34-.53l-.12-6.19-.12-6.2 7.12.74.02 1.22.03 1.24-3.99-.42.05 2.55 4.2.43.04 2.31-4.19-.43.05 2.62c.32.05 1.75.27 2.71.35 1.08.1 2.86.14 2.86.14l.05 2.46s-2.7-.14-4.37-.3zm10.39-6.34c1.66-.03 2.39-.74 2.37-1.87-.02-1.19-.54-1.69-2.04-1.66l-1.4.02.06 3.52 1-.01zm6.96 6.42c-2.46-.09-3.78-1.32-5.07-2.77l-1.38-1.54c-.19.02-.4.02-.61.03l-.81.01.07 4.33-3.08.05-.21-12.38 4.78-.09c2.74-.04 4.77 1.19 4.82 3.94a3.7 3.7 0 0 1-1.85 3.31l1.19 1.25a5.1 5.1 0 0 0 2.72 1.47l-.57 2.39zm.12-9.97-.02-2.45 10.95-1.5.01 2.44-3.9.54.06 9.89-3.15.43-.06-9.88zm17.62-2.48c-.37 1.34-.77 2.68-1.18 4.02.86-.09 1.76-.24 2.59-.49-.37-1.2-.74-2.39-1.08-3.6l-.33.06zm3.35 9-1.21-3.33c-.65.23-1.34.37-2.04.48l-2.1.28-1.32 3.82-3.19.6 3.85-10.63-1.35.25-.02-2.45c2.85-.46 5.6-.98 8.36-1.57l.11 2.43-1.36.26 3.55 9.24-3.28.61zm8.33-.8c-2.02.04-3.1-.31-4.01-.8l.86-2.3c1.15.38 1.81.54 3.16.52 1.47-.03 2.2-.5 2.2-1.16.01-.45-.33-.76-.91-1.05-.59-.28-1.36-.52-2.14-.82-1.56-.6-3.17-1.5-3.13-3.64.04-2.43 2.75-3.66 4.92-3.7a8.84 8.84 0 0 1 4 .77l-.79 2.22c-.96-.26-1.92-.48-3.16-.46-1.22.02-1.93.65-1.94 1.1 0 .36.34.64.94.92.59.28 1.38.54 2.17.87 1.59.66 3.22 1.63 3.18 3.64-.05 2.75-2.82 3.85-5.35 3.89z'/%3e%3c/svg%3e\"},9924:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 600'%3e%3cpath fill='%2300853f' d='M0 0h300v600H0z'/%3e%3cpath fill='%23fdef42' d='M300 0h300v600H300z'/%3e%3cpath fill='%23e31b23' d='M600 0h300v600H600z'/%3e%3cg transform='translate(450 300)' fill='%2300853f'%3e%3cg id='b'%3e%3cpath id='a' d='M0-100V0h50z' transform='rotate(18 0 -100)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(216)'/%3e%3cuse xlink:href='%23b' transform='rotate(288)'/%3e%3c/g%3e%3c/svg%3e\"},1950:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 81 54'%3e%3cpath fill='%234189DD' d='M0 0h81v54H0z'/%3e%3cg transform='matrix(13 0 0 13 40.5 27)'%3e%3cg id='b'%3e%3cpath id='a' fill='%23FFF' transform='rotate(18 3.157 -.5)' d='M0 0v1h.5z'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(-72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(-144)'/%3e%3c/g%3e%3c/svg%3e\"},3071:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23377e3f' d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M0 120h900v360H0z'/%3e%3cpath fill='%23b40a2d' d='M0 180h900v240H0z'/%3e%3cpath d='m450 191.459 70.534 217.082-184.661-134.164h228.254L379.466 408.541z' fill='%23ecc81d'/%3e%3c/svg%3e\"},1336:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3e%3cpath fill='%23078930' d='M0 0h20v10H0z'/%3e%3cpath fill='%23FFF' d='M0 0h20v7H0z'/%3e%3cpath d='M0 0h20v3H0z'/%3e%3cpath fill='%23DA121A' d='M0 3.5h20v3H0z'/%3e%3cpath fill='%230F47AF' d='m0 0 8.66 5L0 10z'/%3e%3cpath fill='%23FCDD09' d='m1.287 5 2.894.94-1.789-2.462v3.044l1.79-2.462z'/%3e%3c/svg%3e\"},2538:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 2800 1400'%3e%3cpath fill='%2312ad2b' d='M0 0h2800v1400H0z'/%3e%3cpath fill='%23ffce00' d='M0 400h2800v600H0z'/%3e%3cpath d='M0 0v1400l700-700' fill='%23d21034'/%3e%3cg id='c' transform='translate(1400 700)' fill='%23000'%3e%3cg id='b'%3e%3cpath id='a' d='M0-200V0h100' transform='rotate(18 0 -200)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(216)'/%3e%3cuse xlink:href='%23b' transform='rotate(288)'/%3e%3c/g%3e%3cuse xlink:href='%23c' x='700'/%3e%3c/svg%3e\"},3908:c=>{c.exports=\"data:image/svg+xml,%3csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1005 567'%3e%3cpath d='M0 0h1005v567H0z' fill='%23fff' fill-rule='evenodd'/%3e%3cpath d='M0 378h1005v189H0zM0 0h1005v189H0z' fill='%230047ab' fill-rule='evenodd'/%3e%3cpath d='m463.041 354.917-.035.035.8 5.406a2.833 2.833 0 0 0-3.418 1.5c-1 2.032-.148 3.565 1.813 4.57l2.617 1.29 4.812-9.417-1.917-1.012-1.884 3.837h-.069l-.419-5.058-2.3-1.15zm.453 7.22a2.492 2.492 0 0 1 1.29.28l.28.139-1.36 2.581-.279-.14c-.873-.5-1.444-1.027-.942-2.092a1.356 1.356 0 0 1 1.011-.768zm-8.872-2.3 1.286-1.875-2.9-1.943 1-1.434 2.811 1.875 1.592-2.376-2.965-1.943 1-1.5 4.773 3.18-5.928 8.852-4.71-3.18 1-1.44 2.964 1.874m-1.91-12.444v.035l-2.617 2.965-.766-.628c-1.723-1.524-3.41-1.449-4.849.21-1.592 1.874-1.007 3.48.8 4.987l2.163 1.883 6.871-8.056zM447 350.974a1.782 1.782 0 0 1 1.464.594l.314.279-1.883 2.163-.35-.176c-.763-.652-1.168-1.328-.383-2.266a1.6 1.6 0 0 1 .838-.594zm-7.4-.921-1.438-1.59 4.425-3.99c.937-.871 2.245-2.244 1-3.556-1.222-1.373-2.682-.195-3.684.637l-4.34 3.99-1.438-1.6 4.71-4.27c1.874-1.724 4.12-2.159 6.082 0 2.026 2.16 1.286 4.336-.633 6.083l-4.622 4.27m-4.146-20.019a2.467 2.467 0 0 0-.454.035 3.267 3.267 0 0 0-1.29.523 2.437 2.437 0 0 0-1.047 3.035 2.36 2.36 0 0 0-2.267.454c-1.722 1.155-1.643 2.606-.488 4.325l1.5 2.163 8.685-6-1.884-2.72a3.585 3.585 0 0 0-2.755-1.815zm.14 2.268c.642-.053 1.109.445 1.534 1.081l.28.35v.068l-2.269 1.5-.174-.28c-.48-.808-1.071-1.76-.069-2.475a1.468 1.468 0 0 1 .7-.244zm-3.105 3.069a1.389 1.389 0 0 1 1.046.732l.105.21-2.023 1.43-.174-.175c-.436-.652-.571-1.314.28-1.883a1.282 1.282 0 0 1 .766-.313zm-.148-9.818-1.438-2.684 1.5-.848 2.535 4.558-9.352 5.056-1.068-1.87 7.826-4.208m-1.591-7.545.785 2.026-9.7 4.275-.85-2.026 9.79-4.275m-10.988-7.322a3.4 3.4 0 0 0-.349 2.68 3.512 3.512 0 0 0 4.556 1.874 3.264 3.264 0 0 0 .5-6.15l2.31-.714a5.348 5.348 0 0 1 1.438 2.154 5.6 5.6 0 0 1-10.659 3.427 5.814 5.814 0 0 1-.2-2.534l2.377-.721m5.087-14.222-9.94 6 .314 1.674 11.44 2.3-.419-2.232-2.3-.523h-.07l-.7-3.767 2.093-1.221zm-3.14 4.395.42 2.511-3.977-.487zm-2.964-24.206a5.038 5.038 0 0 0-4.639 4.848L414 284.53l10.463.871.28-3.034a5.124 5.124 0 0 0-4.813-5.72 6.129 6.129 0 0 0-1.117 0zm.176 2.372a4.816 4.816 0 0 1 .731 0c1.9.152 3.091 1.18 2.895 3.557v.35l-6.348-.524.07-.349c.133-1.907 1.026-2.9 2.65-3.034zm-1.513-8.272 2.245.414.72-3.335 1.721.348-.633 3.336 2.814.632.719-3.466 1.743.283-1.155 5.647-10.345-2.159 1.068-5.58 1.81.348-.72 3.467m4.077-13.933 2.18.854 1.221-3.188 1.656.638-1.22 3.18 2.681 1 1.286-3.247 1.656.63-2.091 5.274-9.941-3.834 2.18-5.273 1.657.563-1.286 3.337m10.115-5.385 1.371-2.681 1.656.787-2.376 4.62-9.482-4.837 1-1.875 7.827 3.99m2.964-16.614a1.854 1.854 0 0 0-1.656.787 1.38 1.38 0 0 0 .065 1.808c1.439 1 3.466-2.964 6.365-.781a3.455 3.455 0 0 1 .72 5.055 4.022 4.022 0 0 1-3.685 1.5l-.195-1.936a2.144 2.144 0 0 0 2.376-.637 1.388 1.388 0 0 0-.349-2.026c-.85-.63-1.722 0-2.53.5-1.22.787-2.462 1.223-3.77.2a3.074 3.074 0 0 1-.633-4.425 4.542 4.542 0 0 1 2.747-1.719l.566 1.651m4.713-9.361-1.15 1.22 4.847 10.676 1.57-1.64-1.012-2.162.035-.07 2.685-2.721 2.163.907 1.57-1.64zm1.64 3.068h.07v.036l3.313 1.5-1.64 1.744zm11.262-2.468 2.377-1.876 1.068 1.352-4.056 3.27-6.67-8.26 1.723-1.374 5.494 6.888m6.735-6.825.065-.062-1.809-7.327 2.027-1.217L461.336 222l-1.067.63-9.418-6.953 1.962-1.223 6.082 4.622m7.773-12.54-1.5.732.559 11.65 2.022-.942-.069-2.372h.035L471.2 214l1.64 1.64 2.162-.838zm.419 3.487 2.581 2.652-2.162.94zm10.882-7.115a6.53 6.53 0 0 0-1.15.243l-2.9.769 2.964 10.219 2.93-.837a5.193 5.193 0 0 0 3.663-6.592 5.053 5.053 0 0 0-5.512-3.8zm.523 2.162a2.708 2.708 0 0 1 2.582 2.338c.588 1.83.01 3.38-2.3 4.01l-.28.105-1.814-6.14.35-.138a4.763 4.763 0 0 1 1.464-.175zm12.767-5.3c-.2 0-.39.01-.594.035A5.6 5.6 0 0 0 492.2 210.9a5.6 5.6 0 0 0-.942-11.127zm-.244 2.372a3.164 3.164 0 0 1 3.348 2.755c.13 1.434-.886 3.378-2.477 3.663-1.666.215-3.169-1.428-3.383-2.86a3.13 3.13 0 0 1 2.511-3.558zm9.138-2.86-.14 10.673h2.163v-4.291h.07l2.616 4.29 2.581.069v-.034l-3.035-4.569a2.771 2.771 0 0 0 2.268-2.9c.065-2.249-1.448-3.182-3.628-3.244zm2.092 1.883h.28c1.025 0 1.814.243 1.814 1.465 0 1.155-.78 1.43-1.85 1.43h-.209l-.035.035zm20.415 2.391-.567 2.25 3.333.781-.413 1.808-3.334-.847-.633 2.745 3.4.937-.419 1.724-5.49-1.44 2.528-10.29 5.58 1.373-.435 1.814-3.466-.855m7.98 0 1.435.57 2.617 9.069h.068l2.678-6.586 1.964.787L535.5 217.4l-1.44-.569-2.679-9.07-2.661 6.737-2.026-.781 4.058-10.14m14.186 16.893 2.533 1.595-.937 1.5-4.426-2.68 5.642-9.068 1.814 1.156-4.627 7.456m12.873-2-10.22 5.825 1.71 1.36 2.093-1.15.034.034 2.965 2.442-.732 2.232 1.813 1.43 3.627-11.092zm-1.64 3.14-1.22 3.453-1.779-1.43zm17.616 13.5-11.372 2.965 1.291 1.814 2.372-.593h.035l2.232 3.138-1.29 2.024 1.29 1.813 6.384-9.8zm-2.372 2.616-2.093 3.035-1.36-1.884zm7.555 14.642-7.172.715-.284-.63 4.839-5.146v-.061l-6.3 2.092-1-1.941 10.57-3.25.72 1.374-4.99 5.58 7.39-.786.72 1.373-9.07 6.368-.937-1.943 5.492-3.683m5.19 6.976-2.183.787 1.072 3.18-1.725.569-1.065-3.186-2.684.855 1.133 3.4-1.72.565-1.808-5.428 10.007-3.4 1.87 5.424-1.72.57-1.155-3.4m4 6.844-10.36 2.163.42 2.162 4.115-.942h.07l-3.628 3.558.488 2.511.07.035 3.768-3.907a2.759 2.759 0 0 0 3.313 1.5c2.243-.435 2.84-2.1 2.337-4.255zm-1.36 2.582v.173c.224 1.025.21 1.9-1.012 2.093-1.178.218-1.619-.432-1.813-1.5v-.21zm-7.084 11.15-.194-2.092 10.507-1.221.28 2.092-10.57 1.222m8.236 10.311a3.1 3.1 0 0 0 1.072-2.464 3.626 3.626 0 1 0-6.083 2.53l-2.461.065a6.616 6.616 0 0 1-.637-2.529 5.436 5.436 0 0 1 5.43-5.494 5.5 5.5 0 0 1 5.71 5.363 4.828 4.828 0 0 1-.564 2.463l-2.467.066m-7.838 1.976-.208 2.233 2.057 1.15-.487 3.837-2.3.489-.278 2.337 11.3-2.826.21-1.639zm3.559 4.36 3.348 1.5v.1l-3.628.766zm-3.193 26.1a3.129 3.129 0 0 0 1.936-1.808 3.443 3.443 0 0 0-2.16-4.426 3.527 3.527 0 0 0-4.553 1.658 3.828 3.828 0 0 0 .195 2.746l-2.31-.848a6.433 6.433 0 0 1 .285-2.6 5.371 5.371 0 0 1 7.1-2.963 5.485 5.485 0 0 1 3.338 7.1 6.1 6.1 0 0 1-1.5 2.094l-2.317-.939m-1.764 5.71-2.026-1.067-1.656 2.964-1.507-.782 1.573-3.03-2.528-1.373-1.724 3.182-1.507-.849 2.684-5.061 9.353 5.061-2.684 4.99-1.59-.849 1.657-3.12m-2.07 7.763-.855 1.223-9.414.278-.067.068 5.8 4.208-1.283 1.724-8.7-6.368.854-1.222 9.414-.346h.069l-5.867-4.275 1.284-1.724 8.768 6.457m-18.947 6.016 1.506-1.59 6.363 6.143 1.507-1.657 1.283 1.223-4.554 4.776-1.288-1.212 1.5-1.591-6.368-6.083m-3.1 3.131-1.675 1.29 2.76 3.353v.07l-4.85-1.605-1.953 1.64.035.07 5.2 1.43a2.762 2.762 0 0 0 .209 3.7c1.373 1.719 3.19 1.408 4.847.035l2.163-1.848-6.731-8.128zm2.058 5.929 1.883 2.268-.21.1c-.808.7-1.52 1.007-2.3.07-.72-.87-.36-1.582.488-2.3zm-8.615-.42-1.954 1.187.42 2.372h-.036l-3.244 2.023-1.884-1.43-1.953 1.22 9.383 7.011 1.36-.837-2.092-11.544zm-1.257 5.582.943 3.487h-.07l-2.895-2.267zm-10.45 3.173-2.813 1.222-.721-1.59 4.71-2.249 4.56 9.637-1.964.848-3.773-7.89m50.076-101.154 2.125 2.785h1.687l-1.466-2.785zm-154.113 88.7 3.477-.429 1.18 1.2-3.016.9z' fill='%23fc0'/%3e%3cpath d='M484.357 359.842s3.772-.285 4.425-.285c.567 0 1.876-2.6 2.443-3.03.566-.413 10.572-5.274 17.047-6.3 6.366-1 16.4-4.839 18.488-5.86 10.726-5.145 22.691-14.716 25.376-18.64 2.745-4.118 5.708-13.628 7.014-18.79.57-2.378 3.84-12.035 3.84-18.64a83.241 83.241 0 0 0-2.093-18.922c-1.155-4.993-9.7-19.64-14.933-26.12 0 0 11.752 18.205 13.778 25.247a77.632 77.632 0 0 1 2.46 20.884c-.128 4.12-3.487 19.142-8.476 30.17-3.968 8.85-7.456 9.855-13.629 14.782a90.148 90.148 0 0 1-13.187 8.417 91.74 91.74 0 0 1-17.33 5.642c-2.681.5-16.023 4.425-17.767 5.28a44.751 44.751 0 0 0-7.456 6.144' fill='%23090'/%3e%3cpath d='M484.357 359.842s3.772-.285 4.425-.285c.567 0 1.876-2.6 2.443-3.03.566-.413 10.572-5.274 17.047-6.3 6.366-1 16.4-4.839 18.488-5.86 10.726-5.145 22.691-14.716 25.376-18.64 2.745-4.118 5.708-13.628 7.014-18.79.57-2.378 3.84-12.035 3.84-18.64a83.241 83.241 0 0 0-2.093-18.922c-1.155-4.993-9.7-19.64-14.933-26.12 0 0 11.752 18.205 13.778 25.247a77.632 77.632 0 0 1 2.46 20.884c-.128 4.12-3.487 19.142-8.476 30.17-3.968 8.85-7.456 9.855-13.629 14.782a90.148 90.148 0 0 1-13.187 8.417 91.74 91.74 0 0 1-17.33 5.642c-2.681.5-16.023 4.425-17.767 5.28a44.751 44.751 0 0 0-7.456 6.144z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M551.326 325.81c-.284-1.373-.413-2.371-.937-2.746-.347-.5-1.875-2.243-2.16-3.4a8.417 8.417 0 0 1 0-2.684 25.18 25.18 0 0 0-.413-2.59 10.612 10.612 0 0 1 1.29-2.969 11.891 11.891 0 0 0 2.31-3.03 3.831 3.831 0 0 0 .279 1.725 5.6 5.6 0 0 1 .636 2.962 17.848 17.848 0 0 0 0 3.9 6.871 6.871 0 0 1 .435 3.4c-.195 1.065-1.44 5.425-1.44 5.425' fill='%23090'/%3e%3cpath d='M551.326 325.81c-.284-1.373-.413-2.371-.937-2.746-.347-.5-1.875-2.243-2.16-3.4a8.417 8.417 0 0 1 0-2.684 25.18 25.18 0 0 0-.413-2.59 10.612 10.612 0 0 1 1.29-2.969 11.891 11.891 0 0 0 2.31-3.03 3.831 3.831 0 0 0 .279 1.725 5.6 5.6 0 0 1 .636 2.962 17.848 17.848 0 0 0 0 3.9 6.871 6.871 0 0 1 .435 3.4c-.195 1.065-1.44 5.425-1.44 5.425' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M551.7 324.377s3.4-4.276 3.4-6.084a6.569 6.569 0 0 1 .563-3.186 4.529 4.529 0 0 0 .5-5.426 7.141 7.141 0 0 1-1.374-2.31c-.563-1.59-1.718-1.59-1.874-3.184a34.009 34.009 0 0 0-.564 3.468 8.627 8.627 0 0 0 .28 3.026c.133.937-.413 1.941-.413 3.254 0 1.283.133 1.808.133 2.589 0 .419.564 6.016-.636 7.83' fill='%23090'/%3e%3cpath d='M551.7 324.377s3.4-4.276 3.4-6.084a6.569 6.569 0 0 1 .563-3.186 4.529 4.529 0 0 0 .5-5.426 7.141 7.141 0 0 1-1.374-2.31c-.563-1.59-1.718-1.59-1.874-3.184a34.009 34.009 0 0 0-.564 3.468 8.627 8.627 0 0 0 .28 3.026c.133.937-.413 1.941-.413 3.254 0 1.283.133 1.808.133 2.589 0 .419.564 6.016-.636 7.83z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M514.092 347.285s2.812-.284 3.9-.5a20.218 20.218 0 0 0 3.466-.847 11.148 11.148 0 0 0 3.9-2.685c2.679-2.9 2.371-4.426 2.9-4.554 1-.128-1.5-.413-2.679-.2a7.48 7.48 0 0 0-3.838 1.942 39.092 39.092 0 0 1-3.335 2.59 6.824 6.824 0 0 0-1.657 1.44 7.667 7.667 0 0 1-2.681 2.812' fill='%23090'/%3e%3cpath d='M514.092 347.285s2.812-.284 3.9-.5a20.218 20.218 0 0 0 3.466-.847 11.148 11.148 0 0 0 3.9-2.685c2.679-2.9 2.371-4.426 2.9-4.554 1-.128-1.5-.413-2.679-.2a7.48 7.48 0 0 0-3.838 1.942 39.092 39.092 0 0 1-3.335 2.59 6.824 6.824 0 0 0-1.657 1.44 7.667 7.667 0 0 1-2.681 2.812z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M510.255 349.333s7.107-3.18 7.76-3.772a17 17 0 0 0 2.685-2.461c.784-.786 3.768-2.31 4.27-3.336.351-.632 2.16-3.182 3.248-5.207.57-1.072-4.705.284-4.705.284-4.34 1.719-2.312.5-4.71 2.31a8.641 8.641 0 0 0-2.747 2.813c-.567 1.217-1.22 3.465-1.874 4.553a18.542 18.542 0 0 1-3.9 4.773' fill='%23090'/%3e%3cpath d='M510.255 349.333s7.107-3.18 7.76-3.772a17 17 0 0 0 2.685-2.461c.784-.786 3.768-2.31 4.27-3.336.351-.632 2.16-3.182 3.248-5.207.57-1.072-4.705.284-4.705.284-4.34 1.719-2.312.5-4.71 2.31a8.641 8.641 0 0 0-2.747 2.813c-.567 1.217-1.22 3.465-1.874 4.553a18.542 18.542 0 0 1-3.9 4.773z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M506.419 350.21s5.776-1.508 8.48-5.146c1.875-2.467 1.94-1.724 2.747-2.528a27.944 27.944 0 0 0 3.77-4.342c-.13.195 1.593-5.8 1.593-6.452-.067-.413-2.246.285-4.056 1-1.5.652-2.376 1.875-3.683 2.679-1.592 1-1.723 3.555-2.464 4.71a6.307 6.307 0 0 0-1.155 3.466c0 1.284-.72 1.724-1.156 2.812-.5 1.284-2.028 1.066-4.055 3.773' fill='%23090'/%3e%3cpath d='M506.419 350.21s5.776-1.508 8.48-5.146c1.875-2.467 1.94-1.724 2.747-2.528a27.944 27.944 0 0 0 3.77-4.342c-.13.195 1.593-5.8 1.593-6.452-.067-.413-2.246.285-4.056 1-1.5.652-2.376 1.875-3.683 2.679-1.592 1-1.723 3.555-2.464 4.71a6.307 6.307 0 0 0-1.155 3.466c0 1.284-.72 1.724-1.156 2.812-.5 1.284-2.028 1.066-4.055 3.773z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M515.77 348.312s4.993-2.25 5.712-2.4c.719-.128 1-.57 2.03-.848a5.765 5.765 0 0 1 3.682-.419c.849.2 4.488 1 5.426.57.853-.413-1.306 2.46-2.395 3.12a8.063 8.063 0 0 1-4.208.713c-1.506-.127-3.554 0-4.273 0a6.866 6.866 0 0 1-2.245-.127 6.392 6.392 0 0 0-3.772-.57' fill='%23090'/%3e%3cpath d='M515.77 348.312s4.993-2.25 5.712-2.4c.719-.128 1-.57 2.03-.848a5.765 5.765 0 0 1 3.682-.419c.849.2 4.488 1 5.426.57.853-.413-1.306 2.46-2.395 3.12a8.063 8.063 0 0 1-4.208.713c-1.506-.127-3.554 0-4.273 0a6.866 6.866 0 0 1-2.245-.127 6.392 6.392 0 0 0-3.772-.57z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M512.37 348.312s5.58-1.44 6.518-1.44a34.052 34.052 0 0 1 4.624.413c1.066.133 4.4-.2 5.424.284a18.493 18.493 0 0 0 6.586.782c1.155-.195-2.311 3.186-3.773 3.555-4.492 1.29-3.114 1.072-6.016.351-1.808-.419-4.338-.569-5.21-.72-.872-.133-.72-.63-1.875-1.155a17.727 17.727 0 0 0-6.3-2.093' fill='%23090'/%3e%3cpath d='M512.37 348.312s5.58-1.44 6.518-1.44a34.052 34.052 0 0 1 4.624.413c1.066.133 4.4-.2 5.424.284a18.493 18.493 0 0 0 6.586.782c1.155-.195-2.311 3.186-3.773 3.555-4.492 1.29-3.114 1.072-6.016.351-1.808-.419-4.338-.569-5.21-.72-.872-.133-.72-.63-1.875-1.155a17.727 17.727 0 0 0-6.3-2.093z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M507.792 350.645s5.581-2.31 9.919-1.155a26.341 26.341 0 0 0 4.12.937c1.352.194 2.529-.5 4.84.435 1.155.413 6.016 2.372 7.327 2.31 1.217-.066-3.84 3.249-5.212 3.03-4.493-.636-8.764.849-10.791.063-1.876-.715-2.966-1.218-3.9-1.5-.937-.352-1.439-1.223-2-1.591-.567-.5-.938-1.591-4.273-2.528' fill='%23090'/%3e%3cpath d='M507.792 350.645s5.581-2.31 9.919-1.155a26.341 26.341 0 0 0 4.12.937c1.352.194 2.529-.5 4.84.435 1.155.413 6.016 2.372 7.327 2.31 1.217-.066-3.84 3.249-5.212 3.03-4.493-.636-8.764.849-10.791.063-1.876-.715-2.966-1.218-3.9-1.5-.937-.352-1.439-1.223-2-1.591-.567-.5-.938-1.591-4.273-2.528z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M537.614 337.781s3.249-3.556 3.834-3.99c.637-.5 2.16-1.59 2.97-2.31a5.99 5.99 0 0 1 3.331-2.378c.937-.195 3.12-.631 3.69-1.373.63-.782-.069 2.813-.788 3.773a7.52 7.52 0 0 1-3.466 2.528c-1.372.5-3.185 1.507-3.839 1.808a5.4 5.4 0 0 1-2.026.787 7.268 7.268 0 0 0-3.683 1.155' fill='%23090'/%3e%3cpath d='M537.614 337.781s3.249-3.556 3.834-3.99c.637-.5 2.16-1.59 2.97-2.31a5.99 5.99 0 0 1 3.331-2.378c.937-.195 3.12-.631 3.69-1.373.63-.782-.069 2.813-.788 3.773a7.52 7.52 0 0 1-3.466 2.528c-1.372.5-3.185 1.507-3.839 1.808a5.4 5.4 0 0 1-2.026.787 7.268 7.268 0 0 0-3.683 1.155z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M534.584 339.242s5.492-3.838 6.3-4.207c.848-.413 2.4-.937 3.4-1.289 1.072-.28 3.84-2.243 4.928-2.243 1.072 0 3.181-.129 4.12-.787.853-.782.065 2.595-.939 3.621-3.549 3.115-1.066 2.154-4.051 2.747-1.725.345-4.12 1.372-4.928 1.59-.938.285-1-.285-2.243-.195a19.973 19.973 0 0 0-6.586.787' fill='%23090'/%3e%3cpath d='M534.584 339.242s5.492-3.838 6.3-4.207c.848-.413 2.4-.937 3.4-1.289 1.072-.28 3.84-2.243 4.928-2.243 1.072 0 3.181-.129 4.12-.787.853-.782.065 2.595-.939 3.621-3.549 3.115-1.066 2.154-4.051 2.747-1.725.345-4.12 1.372-4.928 1.59-.938.285-1-.285-2.243-.195a19.973 19.973 0 0 0-6.586.787z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M533.256 340.265a18.849 18.849 0 0 1 6.669-2.155 27.17 27.17 0 0 0 4.057-1 12.306 12.306 0 0 1 4.119-.5c1.222-.128 6.083 1.44 7.238.787 1-.57-1.223 1.434-2.528 1.937-1.942.72-1.724 1.942-3.84 2.684-2.22.72-4.553 1.59-5.926 1.284-.938-.129-1.814-.63-3.187-.781-1.373-.135-3.834-2.16-6.58-2.25' fill='%23090'/%3e%3cpath d='M533.256 340.265a18.849 18.849 0 0 1 6.669-2.155 27.17 27.17 0 0 0 4.057-1 12.306 12.306 0 0 1 4.119-.5c1.222-.128 6.083 1.44 7.238.787 1-.57-1.223 1.434-2.528 1.937-1.942.72-1.724 1.942-3.84 2.684-2.22.72-4.553 1.59-5.926 1.284-.938-.129-1.814-.63-3.187-.781-1.373-.135-3.834-2.16-6.58-2.25z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M532.82 339.176s-1.071-5.363-.133-6.585a6.2 6.2 0 0 0 1.155-2.813 11.074 11.074 0 0 1 1.59-4.208c.57-.714 1.814-4.119 1.44-4.989 0 0 3.12 3.03 2.964 4.989a6.32 6.32 0 0 0 0 2.317 11.919 11.919 0 0 1-1.284 4.7c-.63.853-.284 3.553-.938 4.056-.569.63-4.056 2.964-4.776 2.528' fill='%23090'/%3e%3cpath d='M532.82 339.176s-1.071-5.363-.133-6.585a6.2 6.2 0 0 0 1.155-2.813 11.074 11.074 0 0 1 1.59-4.208c.57-.714 1.814-4.119 1.44-4.989 0 0 3.12 3.03 2.964 4.989a6.32 6.32 0 0 0 0 2.317 11.919 11.919 0 0 1-1.284 4.7c-.63.853-.284 3.553-.938 4.056-.569.63-4.056 2.964-4.776 2.528z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M533.256 340.265a15.3 15.3 0 0 1 2.9-2.094c1.071-.412 5.144-1.59 5.43-2.594.284-1.066 3.682-4.555 3.833-5.492a15.376 15.376 0 0 0 .57-2.746 18.318 18.318 0 0 0-.848-3.465c-.42-1.072-1.507-3.556-2.534-3.99 0 0-.848 2.745-1.156 3.772a9.421 9.421 0 0 1-1 2.813 19.859 19.859 0 0 0-2.094 4.426 41.535 41.535 0 0 1-1 5.078c-.068.72-2.813 3.772-4.052 4.336' fill='%23090'/%3e%3cpath d='M533.256 340.265a15.3 15.3 0 0 1 2.9-2.094c1.071-.412 5.144-1.59 5.43-2.594.284-1.066 3.682-4.555 3.833-5.492a15.376 15.376 0 0 0 .57-2.746 18.318 18.318 0 0 0-.848-3.465c-.42-1.072-1.507-3.556-2.534-3.99 0 0-.848 2.745-1.156 3.772a9.421 9.421 0 0 1-1 2.813 19.859 19.859 0 0 0-2.094 4.426 41.535 41.535 0 0 1-1 5.078c-.068.72-2.813 3.772-4.052 4.336z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M551.326 325.81c-.194.787 2.16-.714 3.338-.714 1.217 0 4.705.413 5.58-.42.848-.847 2.155-2.526 2.6-2.812a13.1 13.1 0 0 0 2.528-4.335c.435-1.5 3.549-4.12 3.9-4.426 0 0-4.208-.848-6.892.847a8.529 8.529 0 0 1-3.331 1.6c-.57.278-5.146 4.118-5.43 5.58-.285 1.434-2.244 3.984-2.311 4.705' fill='%23090'/%3e%3cpath d='M551.326 325.81c-.194.787 2.16-.714 3.338-.714 1.217 0 4.705.413 5.58-.42.848-.847 2.155-2.526 2.6-2.812a13.1 13.1 0 0 0 2.528-4.335c.435-1.5 3.549-4.12 3.9-4.426 0 0-4.208-.848-6.892.847a8.529 8.529 0 0 1-3.331 1.6c-.57.278-5.146 4.118-5.43 5.58-.285 1.434-2.244 3.984-2.311 4.705z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M551.326 325.81s3.773-2.678 4.622-2.528c.937.134 5.056-2.9 5.273-4.772.134-1 2.093-2.466 2.534-3.119 1-1.74 1.59-5.709 3.03-6.736 0 0-3.99 1-4.994 1.155-1.875.284-3.466.57-4.276 2.25-.63 1.59-1.283 2.9-1.875 3.029-.563.129-1.434 2.155-1.718 4.27-.285 2.026-2.6 6.452-2.6 6.452' fill='%23090'/%3e%3cpath d='M551.326 325.81s3.773-2.678 4.622-2.528c.937.134 5.056-2.9 5.273-4.772.134-1 2.093-2.466 2.534-3.119 1-1.72 1.59-5.709 3.03-6.736 0 0-3.99 1-4.994 1.155-1.875.284-3.466.57-4.276 2.25-.63 1.59-1.283 2.9-1.875 3.029-.563.129-1.434 2.155-1.74 4.27-.285 2.026-2.6 6.452-2.6 6.452z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M558.52 305.8c-.63 1.006-.57-5.86-.938-6.514a10.334 10.334 0 0 0-1.59-2.812c-.57-.567-.57-2.594-.848-3.184a15.492 15.492 0 0 1 .279-5.58 14.381 14.381 0 0 1 1.814 1.591c.563.72 1.59 1 1.875 1.875.278.85.87.85 1.283 1.81a5.593 5.593 0 0 1 .57 3.466 8.585 8.585 0 0 0-.135 2.681 22.989 22.989 0 0 1-2.31 6.667' fill='%23090'/%3e%3cpath d='M558.52 305.8c-.63 1.006-.57-5.86-.938-6.514a10.334 10.334 0 0 0-1.59-2.812c-.57-.567-.57-2.594-.848-3.184a15.492 15.492 0 0 1 .279-5.58 14.381 14.381 0 0 1 1.814 1.591c.563.72 1.59 1 1.875 1.875.278.85.87.85 1.283 1.81a5.593 5.593 0 0 1 .57 3.466 8.585 8.585 0 0 0-.135 2.681 22.989 22.989 0 0 1-2.31 6.667' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M558.369 306.456s.285-1.941-.418-2.683c-.714-.719-1.434-.719-1.719-1.155-.284-.414-.195-1-.5-1.591a10.725 10.725 0 0 1-1-2.092c-.28-1.592-1.155-3.337-.413-5.058a8.785 8.785 0 0 1 2.026.85 4.711 4.711 0 0 1 1.942 2.593 4.1 4.1 0 0 0 .72 2.246c.413.72 1 2.9.284 4.207a8.235 8.235 0 0 0-.853 2.683' fill='%23090'/%3e%3cpath d='M558.369 306.456s.285-1.941-.418-2.683c-.714-.719-1.434-.719-1.719-1.155-.284-.414-.195-1-.5-1.591a10.725 10.725 0 0 1-1-2.092c-.28-1.592-1.155-3.337-.413-5.058a8.785 8.785 0 0 1 2.026.85 4.711 4.711 0 0 1 1.942 2.593 4.1 4.1 0 0 0 .72 2.246c.413.72 1 2.9.284 4.207a8.235 8.235 0 0 0-.853 2.683z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M562.577 283.958s.28-4.274-.786-5.581c-1.223-1.286-1.507-3.771-4.209-5.145a5.115 5.115 0 0 1 0 1.81c-.067.632-.345 2.746 0 3.465.5.72 1.943 2.028 1.943 2.682a3.83 3.83 0 0 0 1.718 2.31 10.3 10.3 0 0 0 1.29.415' fill='%23090'/%3e%3cpath d='M562.577 283.958s.28-4.274-.786-5.581c-1.223-1.286-1.507-3.771-4.209-5.145a5.115 5.115 0 0 1 0 1.81c-.067.632-.345 2.746 0 3.465.5.72 1.943 2.028 1.943 2.682a3.83 3.83 0 0 0 1.718 2.31 10.3 10.3 0 0 0 1.29.415z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M562.577 286.268s0-3.03-.786-3.9a17.826 17.826 0 0 1-1.791-1.876c-.435-.567-.877-2.094-1.875-2.682a9.29 9.29 0 0 1-2.968-2.594s-.413 3.619.569 5.58c1 1.875 1 2.9 2.243 3.336a5.484 5.484 0 0 1 1.747 1 3.121 3.121 0 0 0 1.724.718 2.4 2.4 0 0 1 1.155.415' fill='%23090'/%3e%3cpath d='M562.577 286.268s0-3.03-.786-3.9a17.826 17.826 0 0 1-1.791-1.876c-.435-.567-.877-2.094-1.875-2.682a9.29 9.29 0 0 1-2.968-2.594s-.413 3.619.569 5.58c1 1.875 1 2.9 2.243 3.336a5.484 5.484 0 0 1 1.747 1 3.121 3.121 0 0 0 1.724.718 2.4 2.4 0 0 1 1.155.415z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M559.24 306.3c-.128.854-.72-1.875 2.31-1.875a9.774 9.774 0 0 0 6.585-2.243 22.447 22.447 0 0 0 2.093-2.245 8.408 8.408 0 0 0 1.72-3.03c.133-.851 1-4.12.853-4.71a6.7 6.7 0 0 0-2.31.85c-.72.634-2.093.634-2.813 1.07-.72.413-1.312 1.59-1.725 2.027-.413.414-1.718.414-2.31 1.285a15 15 0 0 0-1.808 3.685c-.067.85-1.155 1.722-1.875 2.158-.72.414-.57 2.157-.72 2.967' fill='%23090'/%3e%3cpath d='M559.24 306.3c-.128.854-.72-1.875 2.31-1.875a9.774 9.774 0 0 0 6.585-2.243 22.447 22.447 0 0 0 2.093-2.245 8.408 8.408 0 0 0 1.72-3.03c.133-.851 1-4.12.853-4.71a6.7 6.7 0 0 0-2.31.85c-.72.634-2.093.634-2.813 1.07-.72.413-1.312 1.59-1.747 2.027-.413.414-1.718.414-2.31 1.285a15.222 15.222 0 0 0-1.809 3.685c-.066.85-1.154 1.722-1.874 2.158-.72.414-.57 2.157-.72 2.967z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M559.525 305.145s2.026-2.527 3.03-2.527c1.066 0 3.683-2.681 3.834-3.771a8.074 8.074 0 0 1 1.59-3.837 3.422 3.422 0 0 0 1.508-3.248c-.2-1.723-.2-4.622-.2-4.622s-.57 1.723-1.44 2.158c-.847.414-2.46 1-2.746 1.592-.285.567-1.44.567-1.964 2.376-.346 1.722-.346 1.592-.72 2.159a8.972 8.972 0 0 0-1.284 2.462c-.284 1.22-1.875 4.273-1.59 7.235' fill='%23090'/%3e%3cpath d='M559.525 305.145s2.026-2.527 3.03-2.527c1.066 0 3.683-2.681 3.834-3.771a8.074 8.074 0 0 1 1.59-3.837 3.422 3.422 0 0 0 1.508-3.248c-.2-1.723-.2-4.622-.2-4.622s-.57 1.723-1.44 2.158c-.847.414-2.46 1-2.746 1.592-.285.567-1.44.567-1.964 2.376-.346 1.722-.346 1.592-.72 2.159a8.972 8.972 0 0 0-1.284 2.462c-.284 1.22-1.875 4.273-1.59 7.235z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M562.577 288.884c.061.785-1.155-1.5 1.59-2.377a9.414 9.414 0 0 0 5.425-3.836c.636-1.155.938-2.026 1.222-2.528a7.928 7.928 0 0 0 .72-3.249c-.067-.85-.194-4.054-.5-4.556a6.576 6.576 0 0 0-1.875 1.439c-.5.785-1.658 1.155-2.243 1.722a11.051 11.051 0 0 0-1 2.376c-.279.5-1.44.85-1.719 1.81a11.986 11.986 0 0 0-.569 3.836 4.068 4.068 0 0 1-1.155 2.53c-.5.566.133 2.092.133 2.812' fill='%23090'/%3e%3cpath d='M562.577 288.884c.061.785-1.155-1.5 1.59-2.377a9.414 9.414 0 0 0 5.425-3.836c.636-1.155.938-2.026 1.222-2.528a7.928 7.928 0 0 0 .72-3.249c-.067-.85-.194-4.054-.5-4.556a6.576 6.576 0 0 0-1.875 1.439c-.5.785-1.658 1.155-2.243 1.722a11.051 11.051 0 0 0-1 2.376c-.279.5-1.44.85-1.719 1.81a11.986 11.986 0 0 0-.569 3.836 4.068 4.068 0 0 1-1.155 2.53c-.5.566.133 2.092.133 2.812z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M562.577 287.729s1.155-2.813 2.093-3.118c.938-.282 2.461-2.68 2.528-3.77.062-1.222.285-3.4.72-3.9a4.952 4.952 0 0 0 .563-3.9c-.63-1.591-1.59-3.685-1.59-3.685a18.852 18.852 0 0 0-1.283 2.159c-.788 1.5-1.507 1.592-1.657 2.158-.069.633-1.072 1-1.374 2.224-.419 1.656.061 1.59-.066 2.245a9.334 9.334 0 0 0-.5 2.593c.067 1.157-.564 4.34.569 6.956' fill='%23090'/%3e%3cpath d='M562.577 287.729s1.155-2.813 2.093-3.118c.938-.282 2.461-2.68 2.528-3.77.062-1.222.285-3.4.72-3.9a4.952 4.952 0 0 0 .563-3.9c-.63-1.591-1.59-3.685-1.59-3.685a18.852 18.852 0 0 0-1.283 2.159c-.788 1.5-1.507 1.592-1.657 2.158-.069.633-1.072 1-1.374 2.224-.419 1.656.061 1.59-.066 2.245a9.334 9.334 0 0 0-.5 2.593c.067 1.157-.564 4.34.569 6.956z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M560.267 270.028c-.134-.415-1.005-.851-2.032-1.221-1-.284-2.656-2.6-3.332-3.183-.72-.633-1.071-1.5-1.941-2.028-.849-.5-1.507-2.31-1.724-4.119 0 0 2.466.565 3.185.721a7.627 7.627 0 0 1 2.814 1.718c.563.72 1.155 1.942 1.718 2.225s1.29 2.028 1.29 3.248v2.595' fill='%23090'/%3e%3cpath d='M560.267 270.028c-.134-.415-1.005-.851-2.032-1.221-1-.284-2.656-2.6-3.332-3.183-.72-.633-1.071-1.5-1.941-2.028-.849-.5-1.507-2.31-1.748-4.119 0 0 2.468.565 3.188.721a7.628 7.628 0 0 1 2.812 1.718c.564.72 1.156 1.942 1.719 2.225s1.29 2.028 1.29 3.248v2.595z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M560.4 268.719s.128-1.722.128-2.528c0-.85.57-3.248-.714-5.145-.854-1.283-4.124-3.772-4.994-3.9a12.025 12.025 0 0 0-.413 3.03c.127.72.937 3.683 1.59 3.988.72.283 2.377 3.772 4.425 4.556' fill='%23090'/%3e%3cpath d='M560.4 268.719s.128-1.722.128-2.528c0-.85.57-3.248-.714-5.145-.854-1.283-4.124-3.772-4.994-3.9a12.025 12.025 0 0 0-.413 3.03c.127.72.937 3.683 1.59 3.988.72.283 2.377 3.772 4.425 4.556z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M561.137 270.028c.346.632.129-2.225 1-2.9a3.434 3.434 0 0 0 1-2.965 22.923 22.923 0 0 0-.345-2.81c-.195-.72-2.377-3.773-2.25-4.621 0 0-1.216 2.807-1.59 3.616-.413 1 .284 2.093.134 2.963-.134.852-.854 2.465-.284 3.337.434.785 1.718 2.377 2.31 3.4' fill='%23090'/%3e%3cpath d='M561.137 270.028c.346.632.129-2.225 1-2.9a3.434 3.434 0 0 0 1-2.965 22.923 22.923 0 0 0-.345-2.81c-.195-.72-2.377-3.773-2.25-4.621 0 0-1.216 2.807-1.59 3.616-.413 1 .284 2.093.134 2.963-.134.852-.854 2.465-.284 3.337.434.785 1.718 2.377 2.31 3.4z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M553.352 254.857s-.128-.442-1.44-.442c-1.283 0-3.248-.061-3.833-.714a11.452 11.452 0 0 0-2.16-1.595 4.378 4.378 0 0 1-1.72-2.244c-.2-.564-1.221-1.72-1.657-1.72a11.032 11.032 0 0 1 3.4.348c1.723.345 4.208 1.283 4.776 2.46.63 1.156 2.68 3.907 2.68 3.907' fill='%23090'/%3e%3cpath d='M553.352 254.857s-.128-.442-1.44-.442c-1.283 0-3.248-.061-3.833-.714a11.452 11.452 0 0 0-2.16-1.595 4.532 4.532 0 0 1-1.741-2.244c-.2-.564-1.223-1.72-1.658-1.72a11.023 11.023 0 0 1 3.4.348c1.724.345 4.208 1.283 4.777 2.46.63 1.156 2.679 3.907 2.679 3.907z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M552.917 254.572c-.346 1-2.813-1-3.4-1.724-.568-.72-1.438-1.875-1.438-1.875a14.624 14.624 0 0 1-1.725-2.372c-.848-1.6-.631-4.493-.28-4.275a21.134 21.134 0 0 0 2.462 1.374 2.41 2.41 0 0 1 1.59 1.132 7.364 7.364 0 0 0 1.072 2.243 4.418 4.418 0 0 1 1.742 5.5' fill='%23090'/%3e%3cpath d='M552.917 254.572c-.346 1-2.813-1-3.4-1.724-.568-.72-1.438-1.875-1.438-1.875a14.624 14.624 0 0 1-1.725-2.372c-.848-1.6-.631-4.493-.28-4.275a21.134 21.134 0 0 0 2.462 1.374 2.41 2.41 0 0 1 1.59 1.132 7.364 7.364 0 0 0 1.072 2.243 4.418 4.418 0 0 1 1.742 5.5z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M553.787 254.572a24.071 24.071 0 0 1-2.745-2.16c-.938-.847-.413-2.026-.938-2.595-.346-.564-1.44-1.936-1.155-2.812.285-.849.854-3.332.854-3.332s1.066.937 1.808 1.719a4.639 4.639 0 0 1 1.155 2.182 19.31 19.31 0 0 0 1.156 2.243 7.509 7.509 0 0 1-.135 3.03 6.7 6.7 0 0 0 0 1.724' fill='%23090'/%3e%3cpath d='M553.787 254.572a24.071 24.071 0 0 1-2.745-2.16c-.938-.847-.413-2.026-.938-2.595-.346-.564-1.44-1.936-1.155-2.812.285-.849.854-3.332.854-3.332s1.066.937 1.808 1.719a4.639 4.639 0 0 1 1.155 2.182 19.31 19.31 0 0 0 1.156 2.243 7.509 7.509 0 0 1-.135 3.03 6.7 6.7 0 0 0 0 1.724' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M530.878 337.278a.851.851 0 1 1 .85-.848.808.808 0 0 1-.85.848' fill='%23e60000'/%3e%3cpath d='M530.878 337.278a.851.851 0 1 1 .85-.848.808.808 0 0 1-.85.848' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M535.867 343.45a.814.814 0 0 1-.847-.853.864.864 0 0 1 .847-.848.916.916 0 0 1 .877.847.859.859 0 0 1-.877.855' fill='%23e60000'/%3e%3cpath d='M535.867 343.45a.814.814 0 0 1-.847-.853.864.864 0 0 1 .847-.848.916.916 0 0 1 .877.847.859.859 0 0 1-.877.855' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M547.492 324.091a.93.93 0 0 1-.937-.853.875.875 0 0 1 .937-.849.866.866 0 0 1 .849.848.913.913 0 0 1-.848.854' fill='%23e60000'/%3e%3cpath d='M547.492 324.091a.93.93 0 0 1-.937-.853.875.875 0 0 1 .937-.849.866.866 0 0 1 .849.848.913.913 0 0 1-.848.854' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M554.664 327.708a.973.973 0 0 1-1-1 .959.959 0 0 1 1-.936.946.946 0 0 1 .938.937.961.961 0 0 1-.937 1' fill='%23e60000'/%3e%3cpath d='M554.664 327.708a.973.973 0 0 1-1-1 .959.959 0 0 1 1-.936.946.946 0 0 1 .938.937.961.961 0 0 1-.937 1' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M555.97 305.932a1 1 0 0 1-1-.938 1.079 1.079 0 0 1 1-1 1.018 1.018 0 0 1 .938 1 .943.943 0 0 1-.938.937' fill='%23e60000'/%3e%3cpath d='M555.97 305.932a1 1 0 0 1-1-.938 1.079 1.079 0 0 1 1-1 1.018 1.018 0 0 1 .938 1 .943.943 0 0 1-.938.937' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M561.986 307.762a.924.924 0 0 1-.938-1 .908.908 0 0 1 .938-.938.947.947 0 0 1 .937.938.958.958 0 0 1-.937 1' fill='%23e60000'/%3e%3cpath d='M561.986 307.762a.924.924 0 0 1-.938-1 .908.908 0 0 1 .938-.938.947.947 0 0 1 .937.938.958.958 0 0 1-.937 1' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M558.934 288.382a1.026 1.026 0 0 1-1-1 .958.958 0 0 1 1-.937.944.944 0 0 1 .938.937 1 1 0 0 1-.938 1' fill='%23e60000'/%3e%3cpath d='M558.934 288.382a1.026 1.026 0 0 1-1-1 .958.958 0 0 1 1-.937.944.944 0 0 1 .938.937 1 1 0 0 1-.938 1' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M564.319 270.529a.886.886 0 0 1-.938-.85.96.96 0 0 1 .938-1 .973.973 0 0 1 1 1 .907.907 0 0 1-1 .85' fill='%23e60000'/%3e%3cpath d='M564.319 270.529a.886.886 0 0 1-.938-.85.96.96 0 0 1 .938-1 .973.973 0 0 1 1 1 .907.907 0 0 1-1 .85' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M557.431 272.337a.959.959 0 0 1-.937-1 .944.944 0 0 1 .937-.938.959.959 0 0 1 1 .938.972.972 0 0 1-1 1' fill='%23e60000'/%3e%3cpath d='M557.431 272.337a.959.959 0 0 1-.937-1 .944.944 0 0 1 .937-.938.959.959 0 0 1 1 .938.972.972 0 0 1-1 1' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M550.673 257.468a.94.94 0 1 1 0-1.875.938.938 0 0 1 0 1.875' fill='%23e60000'/%3e%3cpath d='M550.673 257.468a.94.94 0 1 1 0-1.875.938.938 0 0 1 0 1.875' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M555.82 253.417a.922.922 0 0 1-.939-1 .9.9 0 0 1 .938-.939.972.972 0 0 1 0 1.943' fill='%23e60000'/%3e%3cpath d='M555.82 253.417a.922.922 0 0 1-.939-1 .9.9 0 0 1 .938-.939.972.972 0 0 1 0 1.943' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M545.528 243.41a.971.971 0 0 1 0-1.941.971.971 0 1 1 0 1.941' fill='%23e60000'/%3e%3cpath d='M545.528 243.41a.971.971 0 0 1 0-1.941.971.971 0 1 1 0 1.941' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M566.5 288.449a.886.886 0 0 1-.937-.85.938.938 0 1 1 1.875 0 .872.872 0 0 1-.937.85' fill='%23e60000'/%3e%3cpath d='M566.5 288.449a.886.886 0 0 1-.937-.85.938.938 0 1 1 1.875 0 .872.872 0 0 1-.937.85' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M530.008 340.918a18.057 18.057 0 0 0 .564-3.768s-.285 0-.721-.57m1.312 5.56a22.186 22.186 0 0 1 3.684.35 2.3 2.3 0 0 0 .284.782m13.076-15.128s.134-3.685-.564-3.986a2.96 2.96 0 0 1-1.155-.876m4.554 3.705a7.915 7.915 0 0 1 2.595 0 1.06 1.06 0 0 0 .569.721m.736-22.279.721.352c.786.346 2.249 3.834 2.249 3.834a12.793 12.793 0 0 1 3.331-1.875h1M567 288.1a1.116 1.116 0 0 1-1.156.282s-2.968 1.877-3.03 2.6c0 0-3.12-3.03-3.689-2.748 0 0-.28.415-.847-.13m5.514-18.072a2.925 2.925 0 0 1-.938.72 7.561 7.561 0 0 0-1.284 3.335s-2.461-2.158-3.181-2.027a2.279 2.279 0 0 1-1.44 0m-.4-18.945s-.564.72-1 .133c0 0-1.746 2.155-.72 3.835 0 0-2.466-.564-3.18-.129a.749.749 0 0 1-1.223.413m-4.111-14.767s.435 1-1.29.636' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M521.373 347.068s9.634-.068 10.571-1.284m-16.173 2.528s6.3 1.72 9.633 1.284a17.691 17.691 0 0 1 5.714.284 28.328 28.328 0 0 0 4.426-1.507m-26.225 2.272s4.838.847 5.863 1.155c1 .279 6.017 2.153 7.455 2.153 1.154 0 4.056-.06 4.842 0a17.292 17.292 0 0 0 6.145-.412m-5.95-14.515a30.9 30.9 0 0 0-4.274 2.9c-.564.786-3.836 3.4-4.425 3.4m8.7-10.882s-6.3 5.43-7.392 6.15c-1 .78-7.172 6.736-7.89 7.695m10.135-16.156s-4.991 3.99-5.58 5.582a15.563 15.563 0 0 1-2.027 3.465s-2.093 4.124-2.812 4.71a30.77 30.77 0 0 1-3.9 3.248m42.836-20.71s-5.3 4.425-6.736 5.273m8.918-2.438a63.615 63.615 0 0 1-7.607 4.553 41.549 41.549 0 0 1-9.42 2.31m-2.07 2.054s5.864-.284 6.887 0c1 .28 5.58-.72 6.735-1s5.865-1.155 6.457-1.289m-11.078-17.5a15.718 15.718 0 0 1-.2 4.554c-.413 1.289-2.462 5.056-2.31 6.016.128.853-1.156 4.838-2.311 5.58m-1.29-15.586s1.072 3.186.57 4.274a15.629 15.629 0 0 0-1.156 4.119 12.126 12.126 0 0 1-1 3.622c-.28.72.133 3.248-.565 3.9a21.8 21.8 0 0 0-1.59 2.094m35.18-25.465s-4.62 1.725-5.272 2.9c-.57 1.156-1.374 1.5-1.875 2.093m-10.136-9.42s-1.155 4.71-.853 5.865a24.717 24.717 0 0 1 .284 4.426c0 .854 1.29 4.425 1.072 4.994m1.395-19.208s.413 2.745.564 3.906a25.931 25.931 0 0 0 .285 3.834c.284.72.72 4.62 0 6.451M566 309.069s-3.84 3.247-4.71 4.123c-.848.848-4.771 5.056-4.99 6.144-.067 1-2.9 4.209-3.771 5m19.922-31.676s-3.772 3.771-4.119 4.621a8.029 8.029 0 0 1-2.594 2.813m-11.207-5.82s1.44 2.157 1.44 2.9a7.191 7.191 0 0 0 1.223 3.4c.346.5 1.59 2.594 1.44 3.9m-2.947-16.37s.569 2.027.854 3.467a25.253 25.253 0 0 0 1.373 3.836c.278.85 1.434 5.145 1 7.761m10.119-15.216a6.283 6.283 0 0 1-1.44 3.03c-1.005 1-2.6 2.529-2.746 3.335-.135.937-1.44 5.275-2.964 6.8a5.387 5.387 0 0 0-1.6 2.964m10.267-31.085s-.5 2.462-.72 3.181c-.278.72-1.522 3.99-2.678 4.993m-9.219-7.52a22.285 22.285 0 0 1 .848 2.964 10.751 10.751 0 0 0 1.155 2.31c.129.414.72 1.94.72 1.94m-5.408-5.187a22.3 22.3 0 0 0 1.943 3.989 6.847 6.847 0 0 0 1.875 3.117c.87.567 3.465 2.463 3.332 3.249m4.32-16s.128 3.183-.414 4.338c-.569 1.22-1.289 2.966-1.6 3.836a22.966 22.966 0 0 0-.412 3.337 9.2 9.2 0 0 1-1.155 3.683m-11.53-25.2s2.092 2.377 3.03 3.4c1 .936 4.705 4.991 4.84 5.71m-4.382-11.29s2.093 4.486 2.528 5.206c.413.787.848 1.942.848 1.942m1.92-7.305s-.129 3.555 0 4.425a9.806 9.806 0 0 1 0 2.75 31.383 31.383 0 0 0 .569 4.425m-17.552-20.73s4.622 2.812 5.364 3.55m-2.662-7.194 3.247 4.627.721 1.372m-.28-6.435a22.9 22.9 0 0 1 1.218 3.466 30.368 30.368 0 0 0 2.16 5.43' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M472.454 337.278a.851.851 0 0 0 0-1.7.866.866 0 0 0-.85.853.85.85 0 0 0 .85.848' fill='%23e60000'/%3e%3cpath d='M472.454 337.278a.851.851 0 0 0 0-1.7.866.866 0 0 0-.85.853.85.85 0 0 0 .85.848' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M467.463 343.45a.888.888 0 0 0 .937-.853.931.931 0 0 0-.937-.848.912.912 0 0 0-.85.847.853.853 0 0 0 .85.855' fill='%23e60000'/%3e%3cpath d='M467.463 343.45a.888.888 0 0 0 .937-.853.931.931 0 0 0-.937-.848.912.912 0 0 0-.85.847.853.853 0 0 0 .85.855' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M455.908 324.091a.9.9 0 0 0 .85-.853.852.852 0 0 0-.85-.849.887.887 0 0 0-.937.848.931.931 0 0 0 .937.854' fill='%23e60000'/%3e%3cpath d='M455.908 324.091a.9.9 0 0 0 .85-.853.852.852 0 0 0-.85-.849.887.887 0 0 0-.937.848.931.931 0 0 0 .937.854' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M448.737 327.708a.969.969 0 1 0-1-1 .985.985 0 0 0 1 1' fill='%23e60000'/%3e%3cpath d='M448.737 327.708a.969.969 0 1 0-1-1 .985.985 0 0 0 1 1' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M447.428 305.932a.944.944 0 0 0 .937-.938 1 1 0 0 0-.937-1 1.029 1.029 0 0 0-1 1 .961.961 0 0 0 1 .937' fill='%23e60000'/%3e%3cpath d='M447.428 305.932a.944.944 0 0 0 .937-.938 1 1 0 0 0-.937-1 1.029 1.029 0 0 0-1 1 .961.961 0 0 0 1 .937' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M441.347 307.762a.972.972 0 1 0 0-1.942.947.947 0 0 0-.938.938.959.959 0 0 0 .938 1' fill='%23e60000'/%3e%3cpath d='M441.347 307.762a.972.972 0 1 0 0-1.942.947.947 0 0 0-.938.938.959.959 0 0 0 .938 1' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M444.464 288.382a1.019 1.019 0 0 0 .937-1 .944.944 0 0 0-.937-.937.96.96 0 0 0-1 .937 1.013 1.013 0 0 0 1 1' fill='%23e60000'/%3e%3cpath d='M444.464 288.382a1.019 1.019 0 0 0 .937-1 .944.944 0 0 0-.937-.937.96.96 0 0 0-1 .937 1.013 1.013 0 0 0 1 1' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M439.014 270.529a.948.948 0 0 0 1-.85 1.031 1.031 0 0 0-1-1 .962.962 0 0 0-.938 1 .874.874 0 0 0 .938.85' fill='%23e60000'/%3e%3cpath d='M439.014 270.529a.948.948 0 0 0 1-.85 1.031 1.031 0 0 0-1-1 .962.962 0 0 0-.938 1 .874.874 0 0 0 .938.85' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M445.9 272.337a.973.973 0 0 0 1-1 .961.961 0 0 0-1-.938.945.945 0 0 0-.937.938.96.96 0 0 0 .938 1' fill='%23e60000'/%3e%3cpath d='M445.9 272.337a.973.973 0 0 0 1-1 .961.961 0 0 0-1-.938.945.945 0 0 0-.937.938.96.96 0 0 0 .938 1' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M452.66 257.468a.94.94 0 1 0 0-1.875.948.948 0 0 0-.939.938.96.96 0 0 0 .939.937' fill='%23e60000'/%3e%3cpath d='M452.66 257.468a.94.94 0 1 0 0-1.875.948.948 0 0 0-.939.938.96.96 0 0 0 .939.937' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M447.494 253.417a.973.973 0 0 0 1-1 .971.971 0 1 0-1 1' fill='%23e60000'/%3e%3cpath d='M447.494 253.417a.973.973 0 0 0 1-1 .971.971 0 1 0-1 1' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M457.805 243.41a.971.971 0 1 0-.937-.938.9.9 0 0 0 .937.938' fill='%23e60000'/%3e%3cpath d='M457.805 243.41a.971.971 0 1 0-.937-.938.9.9 0 0 0 .937.938' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M436.833 288.449a.886.886 0 0 0 .937-.85.937.937 0 1 0-1.874 0 .873.873 0 0 0 .937.85' fill='%23e60000'/%3e%3cpath d='M436.833 288.449a.886.886 0 0 0 .937-.85.937.937 0 1 0-1.874 0 .873.873 0 0 0 .937.85' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M473.326 340.918a18.227 18.227 0 0 1-.567-3.768s.284 0 .72-.57m-1.308 5.56a22.783 22.783 0 0 0-3.684.35 2.3 2.3 0 0 1-.283.782m-13.08-15.128s-.131-3.685.566-3.986a2.967 2.967 0 0 0 1.156-.876m-4.469 3.705a8.435 8.435 0 0 0-2.68 0 1.07 1.07 0 0 1-.569.721m-.763-22.279-.718.352c-.72.346-2.18 3.834-2.18 3.834a13.5 13.5 0 0 0-3.4-1.875h-1m-4.735-19.64a1.113 1.113 0 0 0 1.156.282s2.9 1.877 3.117 2.6c0 0 3.03-3.03 3.618-2.748 0 0 .35.415.938-.13m-5.56-18.072a2.484 2.484 0 0 0 .786.72 7.3 7.3 0 0 1 1.374 3.335s2.44-2.158 3.182-2.027a2.513 2.513 0 0 0 1.5 0m.327-18.945s.568.72 1 .133c0 0 1.744 2.155.719 3.835 0 0 2.465-.564 3.27-.129a.706.706 0 0 0 1.156.413M457 242.6s-.414 1 1.374.636' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M518.975 359.842s-3.771-.285-4.337-.285-1.963-2.6-2.53-3.03c-.566-.413-10.508-5.274-17.047-6.3-6.453-1-16.393-4.839-18.422-5.86-10.725-5.145-22.758-14.716-25.461-18.64-2.747-4.118-5.712-13.628-7.02-18.79-.567-2.378-3.77-12.035-3.77-18.64a82.491 82.491 0 0 1 2.026-18.922c1.156-4.993 9.7-19.64 15-26.12 0 0-11.815 18.205-13.842 25.247a77.734 77.734 0 0 0-2.464 20.884c.065 4.12 3.554 19.142 8.48 30.17 3.99 8.85 7.456 9.855 13.69 14.782a93.228 93.228 0 0 0 13.124 8.417 91.7 91.7 0 0 0 17.331 5.642c2.594.5 16.023 4.425 17.767 5.28 1.809.87 6.3 4.837 7.455 6.144' fill='%23090'/%3e%3cpath d='M518.975 359.842s-3.771-.285-4.337-.285-1.963-2.6-2.53-3.03c-.566-.413-10.508-5.274-17.047-6.3-6.453-1-16.393-4.839-18.422-5.86-10.725-5.145-22.758-14.716-25.461-18.64-2.747-4.118-5.712-13.628-7.02-18.79-.567-2.378-3.77-12.035-3.77-18.64a82.491 82.491 0 0 1 2.026-18.922c1.156-4.993 9.7-19.64 15-26.12 0 0-11.815 18.205-13.842 25.247a77.734 77.734 0 0 0-2.464 20.884c.065 4.12 3.554 19.142 8.48 30.17 3.99 8.85 7.456 9.855 13.69 14.782a93.228 93.228 0 0 0 13.124 8.417 91.7 91.7 0 0 0 17.331 5.642c2.594.5 16.023 4.425 17.767 5.28 1.809.87 6.3 4.837 7.455 6.144z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M452.071 325.81c.284-1.373.349-2.371.85-2.746a11.72 11.72 0 0 0 2.16-3.4 8.359 8.359 0 0 0 0-2.684 25.18 25.18 0 0 1 .413-2.59 10.7 10.7 0 0 0-1.286-2.969 13.814 13.814 0 0 1-2.376-3.03 2.558 2.558 0 0 1-.283 1.725 6.312 6.312 0 0 0-.568 2.962 17.91 17.91 0 0 1 0 3.9 6.625 6.625 0 0 0-.414 3.4q.744 2.715 1.5 5.425' fill='%23090'/%3e%3cpath d='M452.071 325.81c.284-1.373.349-2.371.85-2.746a11.72 11.72 0 0 0 2.16-3.4 8.359 8.359 0 0 0 0-2.684 25.18 25.18 0 0 1 .413-2.59 10.7 10.7 0 0 0-1.286-2.969 13.814 13.814 0 0 1-2.376-3.03 2.558 2.558 0 0 1-.283 1.725 6.312 6.312 0 0 0-.568 2.962 17.91 17.91 0 0 1 0 3.9 6.625 6.625 0 0 0-.414 3.4q.744 2.715 1.5 5.425' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M451.57 324.377s-3.335-4.276-3.335-6.084a6.481 6.481 0 0 0-.567-3.186 4.563 4.563 0 0 1-.435-5.426 8.145 8.145 0 0 0 1.285-2.31c.567-1.59 1.744-1.59 1.962-3.184 0 0 .35 1.873.5 3.468a12.278 12.278 0 0 1-.195 3.026c-.2.937.348 1.941.348 3.254 0 1.283-.13 1.808-.13 2.589 0 .419-.5 6.016.566 7.83' fill='%23090'/%3e%3cpath d='M451.57 324.377s-3.335-4.276-3.335-6.084a6.481 6.481 0 0 0-.567-3.186 4.563 4.563 0 0 1-.435-5.426 8.145 8.145 0 0 0 1.285-2.31c.567-1.59 1.744-1.59 1.962-3.184 0 0 .35 1.873.5 3.468a12.278 12.278 0 0 1-.195 3.026c-.2.937.348 1.941.348 3.254 0 1.283-.13 1.808-.13 2.589 0 .419-.5 6.016.566 7.83z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M489.219 347.285s-2.813-.284-3.9-.5a18.278 18.278 0 0 1-3.4-.847 10.91 10.91 0 0 1-3.99-2.685c-2.66-2.9-2.377-4.426-2.9-4.554-.936-.128 1.5-.413 2.66-.2a7.731 7.731 0 0 1 3.838 1.942 30.616 30.616 0 0 0 3.4 2.59 5.672 5.672 0 0 1 1.592 1.44 7.09 7.09 0 0 0 2.68 2.812' fill='%23090'/%3e%3cpath d='M489.219 347.285s-2.813-.284-3.9-.5a18.278 18.278 0 0 1-3.4-.847 10.91 10.91 0 0 1-3.99-2.685c-2.66-2.9-2.377-4.426-2.9-4.554-.936-.128 1.5-.413 2.66-.2a7.731 7.731 0 0 1 3.838 1.942 30.616 30.616 0 0 0 3.4 2.59 5.672 5.672 0 0 1 1.592 1.44 7.09 7.09 0 0 0 2.68 2.812z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M493.143 349.333s-7.107-3.18-7.827-3.772a20.766 20.766 0 0 1-2.747-2.462c-.632-.786-3.684-2.31-4.206-3.336-.284-.632-2.159-3.182-3.271-5.207-.566-1.072 4.709.284 4.709.284 4.272 1.719 2.4.5 4.709 2.31a9 9 0 0 1 2.812 2.813 42.184 42.184 0 0 0 1.81 4.553 19.454 19.454 0 0 0 3.988 4.773' fill='%23090'/%3e%3cpath d='M493.143 349.333s-7.107-3.18-7.827-3.772a20.766 20.766 0 0 1-2.747-2.462c-.632-.786-3.684-2.31-4.206-3.336-.284-.632-2.159-3.182-3.271-5.207-.566-1.072 4.709.284 4.709.284 4.272 1.719 2.4.5 4.709 2.31a9 9 0 0 1 2.812 2.813 42.184 42.184 0 0 0 1.81 4.553 19.454 19.454 0 0 0 3.988 4.773z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M496.979 350.21s-5.864-1.508-8.545-5.146c-1.876-2.467-1.876-1.724-2.681-2.528a22.3 22.3 0 0 1-3.772-4.342c.065.195-1.723-5.8-1.591-6.452 0-.413 2.158.285 3.99 1 1.5.652 2.376 1.875 3.683 2.679 1.569 1 1.788 3.555 2.53 4.71a6.006 6.006 0 0 1 1.067 3.466c0 1.284.72 1.724 1.155 2.812.5 1.284 2.093 1.066 4.121 3.773' fill='%23090'/%3e%3cpath d='M496.979 350.21s-5.864-1.508-8.545-5.146c-1.876-2.467-1.876-1.724-2.681-2.528a22.3 22.3 0 0 1-3.772-4.342c.065.195-1.744-5.8-1.591-6.452 0-.413 2.158.285 3.99 1 1.5.652 2.376 1.875 3.683 2.679 1.569 1 1.788 3.555 2.53 4.71a6.006 6.006 0 0 1 1.067 3.466c0 1.284.72 1.724 1.155 2.812.5 1.284 2.093 1.066 4.121 3.773z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M487.562 348.312s-4.993-2.25-5.646-2.4c-.785-.128-1.068-.57-2.093-.848a5.745 5.745 0 0 0-3.684-.419c-.85.2-4.491 1-5.363.57-.938-.413 1.286 2.46 2.31 3.12a8.2 8.2 0 0 0 4.273.713c1.44-.127 3.466 0 4.208 0a6.783 6.783 0 0 0 2.223-.127 6.433 6.433 0 0 1 3.772-.57' fill='%23090'/%3e%3cpath d='M487.562 348.312s-4.993-2.25-5.646-2.4c-.785-.128-1.068-.57-2.093-.848a5.745 5.745 0 0 0-3.684-.419c-.85.2-4.491 1-5.363.57-.938-.413 1.286 2.46 2.31 3.12a8.2 8.2 0 0 0 4.273.713c1.44-.127 3.466 0 4.208 0a6.783 6.783 0 0 0 2.223-.127 6.433 6.433 0 0 1 3.772-.57z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M490.963 348.312s-5.581-1.44-6.519-1.44a37.6 37.6 0 0 0-4.709.413c-1 .133-4.338-.2-5.362.284a18.479 18.479 0 0 1-6.584.782c-1.155-.195 2.377 3.186 3.771 3.555 4.491 1.29 3.118 1.072 6.083.351 1.744-.419 4.273-.569 5.144-.72.938-.133.72-.63 1.94-1.155a16.821 16.821 0 0 1 6.236-2.093' fill='%23090'/%3e%3cpath d='M490.963 348.312s-5.581-1.44-6.519-1.44a37.6 37.6 0 0 0-4.709.413c-1 .133-4.338-.2-5.362.284a18.479 18.479 0 0 1-6.584.782c-1.155-.195 2.377 3.186 3.771 3.555 4.491 1.29 3.118 1.072 6.083.351 1.744-.419 4.273-.569 5.144-.72.938-.133.72-.63 1.94-1.155a16.821 16.821 0 0 1 6.236-2.093z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M495.54 350.645s-5.58-2.31-9.918-1.155a24.8 24.8 0 0 1-4.12.937c-1.374.194-2.53-.5-4.84.435-1.068.413-5.952 2.372-7.325 2.31-1.22-.066 3.9 3.249 5.275 3.03 4.491-.636 8.7.849 10.726.063 1.875-.715 2.965-1.218 3.9-1.5.938-.352 1.44-1.223 2.027-1.591.567-.5.938-1.591 4.273-2.528' fill='%23090'/%3e%3cpath d='M495.54 350.645s-5.58-2.31-9.918-1.155a24.8 24.8 0 0 1-4.12.937c-1.374.194-2.53-.5-4.84.435-1.068.413-5.952 2.372-7.325 2.31-1.22-.066 3.9 3.249 5.275 3.03 4.491-.636 8.7.849 10.726.063 1.875-.715 2.965-1.218 3.9-1.5.938-.352 1.44-1.223 2.027-1.591.567-.5.938-1.591 4.273-2.528' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M465.718 337.781s-3.182-3.556-3.836-3.99c-.567-.5-2.093-1.59-2.9-2.31-.72-.57-1.374-1.876-3.466-2.378-.872-.195-3.03-.631-3.618-1.373-.568-.782.13 2.813.784 3.773a7.422 7.422 0 0 0 3.466 2.528c1.374.5 3.183 1.507 3.837 1.808a5.919 5.919 0 0 0 2.026.787 7.273 7.273 0 0 1 3.686 1.155' fill='%23090'/%3e%3cpath d='M465.718 337.781s-3.182-3.556-3.836-3.99c-.567-.5-2.093-1.59-2.9-2.31-.72-.57-1.374-1.876-3.466-2.378-.872-.195-3.03-.631-3.618-1.373-.568-.782.13 2.813.784 3.773a7.422 7.422 0 0 0 3.466 2.528c1.374.5 3.183 1.507 3.837 1.808a5.919 5.919 0 0 0 2.026.787 7.273 7.273 0 0 1 3.686 1.155z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M468.749 339.242s-5.428-3.838-6.3-4.207c-.85-.413-2.376-.937-3.4-1.289-1.069-.28-3.838-2.243-4.927-2.243-1.069 0-3.118-.129-4.055-.787-1-.782-.131 2.595.937 3.621 3.467 3.115 1.068 2.154 3.99 2.747 1.722.345 4.12 1.372 4.992 1.59.85.285.937-.285 2.246-.195a19.62 19.62 0 0 1 6.517.787' fill='%23090'/%3e%3cpath d='M468.749 339.242s-5.428-3.838-6.3-4.207c-.85-.413-2.376-.937-3.4-1.289-1.069-.28-3.838-2.243-4.927-2.243-1.069 0-3.118-.129-4.055-.787-1-.782-.131 2.595.937 3.621 3.467 3.115 1.068 2.154 3.99 2.747 1.722.345 4.12 1.372 4.992 1.59.85.285.937-.285 2.246-.195a19.62 19.62 0 0 1 6.517.787z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M470.056 340.265a18.861 18.861 0 0 0-6.67-2.155 29.631 29.631 0 0 1-4.055-1 12.328 12.328 0 0 0-4.121-.5c-1.22-.128-6.082 1.44-7.17.787-1.07-.57 1.153 1.434 2.527 1.937 1.875.72 1.657 1.942 3.772 2.684 2.245.72 4.621 1.59 5.93 1.284 1-.129 1.743-.63 3.182-.781 1.374-.135 3.837-2.16 6.584-2.25' fill='%23090'/%3e%3cpath d='M470.056 340.265a18.861 18.861 0 0 0-6.67-2.155 29.631 29.631 0 0 1-4.055-1 12.328 12.328 0 0 0-4.121-.5c-1.22-.128-6.082 1.44-7.17.787-1.07-.57 1.153 1.434 2.527 1.937 1.875.72 1.657 1.942 3.772 2.684 2.245.72 4.621 1.59 5.93 1.284 1-.129 1.743-.63 3.182-.781 1.374-.135 3.837-2.16 6.584-2.25z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M470.514 339.176s1.156-5.363.2-6.585a4.9 4.9 0 0 1-1.222-2.813 10.021 10.021 0 0 0-1.59-4.208c-.568-.714-1.723-4.119-1.44-4.989 0 0-3.117 3.03-2.9 4.989a12.173 12.173 0 0 1 0 2.317c-.2.847.72 3.833 1.286 4.7.567.853.284 3.553.872 4.056.567.63 4.055 2.964 4.774 2.528' fill='%23090'/%3e%3cpath d='M470.514 339.176s1.156-5.363.2-6.585a4.9 4.9 0 0 1-1.222-2.813 10.021 10.021 0 0 0-1.59-4.208c-.568-.714-1.744-4.119-1.44-4.989 0 0-3.117 3.03-2.9 4.989a12.173 12.173 0 0 1 0 2.317c-.2.847.72 3.833 1.286 4.7.567.853.284 3.553.872 4.056.567.63 4.055 2.964 4.774 2.528z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M470.056 340.265a13.207 13.207 0 0 0-2.9-2.094c-1-.412-5.145-1.59-5.428-2.594-.284-1.066-3.684-4.555-3.772-5.492-.13-.631-.784-2.026-.566-2.746a11.88 11.88 0 0 1 .85-3.465c.415-1.072 1.438-3.556 2.442-3.99 0 0 .85 2.745 1.155 3.772a9.524 9.524 0 0 0 1 2.813c.414.563 1.961 3.332 2.027 4.426.2 1 .938 4.424 1.068 5.078.13.72 2.9 3.772 4.055 4.336' fill='%23090'/%3e%3cpath d='M470.056 340.265a13.207 13.207 0 0 0-2.9-2.094c-1-.412-5.145-1.59-5.428-2.594-.284-1.066-3.684-4.555-3.772-5.492-.13-.631-.784-2.026-.566-2.746a11.88 11.88 0 0 1 .85-3.465c.415-1.072 1.438-3.556 2.442-3.99 0 0 .85 2.745 1.155 3.772a9.524 9.524 0 0 0 1 2.813c.414.563 1.961 3.332 2.027 4.426.2 1 .938 4.424 1.068 5.078.13.72 2.9 3.772 4.055 4.336z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M452.071 325.81c.066.787-2.244-.714-3.4-.714s-4.709.413-5.582-.42a32.834 32.834 0 0 0-2.68-2.812 16.268 16.268 0 0 1-2.463-4.335c-.415-1.5-3.467-4.12-3.9-4.426 0 0 4.186-.848 6.89.847a8.535 8.535 0 0 0 3.334 1.6c.633.278 5.145 4.118 5.43 5.58.282 1.434 2.157 3.984 2.374 4.705' fill='%23090'/%3e%3cpath d='M452.071 325.81c.066.787-2.244-.714-3.4-.714s-4.709.413-5.582-.42a32.834 32.834 0 0 0-2.68-2.812 16.268 16.268 0 0 1-2.463-4.335c-.415-1.5-3.467-4.12-3.9-4.426 0 0 4.186-.848 6.89.847a8.535 8.535 0 0 0 3.334 1.6c.633.278 5.145 4.118 5.43 5.58.282 1.434 2.157 3.984 2.374 4.705z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M452.071 325.81s-3.836-2.678-4.708-2.528c-.85.134-4.993-2.9-5.276-4.772-.13-1-2.158-2.466-2.463-3.119-1.068-1.74-1.657-5.709-3.117-6.736 0 0 3.99 1 4.992 1.155 1.874.284 3.466.57 4.207 2.25.784 1.59 1.374 2.9 1.962 3.029.567.129 1.439 2.155 1.722 4.27.284 2.026 2.66 6.452 2.66 6.452' fill='%23090'/%3e%3cpath d='M452.071 325.81s-3.836-2.678-4.708-2.528c-.85.134-4.993-2.9-5.276-4.772-.13-1-2.158-2.466-2.463-3.119-1.068-1.72-1.657-5.709-3.117-6.736 0 0 3.99 1 4.992 1.155 1.874.284 3.466.57 4.207 2.25.784 1.59 1.374 2.9 1.962 3.029.567.129 1.439 2.155 1.722 4.27.284 2.026 2.66 6.452 2.66 6.452z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M444.9 305.8c.566 1.006.566-5.86.785-6.514a10.423 10.423 0 0 1 1.656-2.812c.568-.567.568-2.594.85-3.184a15.5 15.5 0 0 0-.282-5.58 10.477 10.477 0 0 0-1.723 1.591c-.633.72-1.592 1-1.94 1.875-.284.85-.85.85-1.286 1.81a5.7 5.7 0 0 0-.567 3.466 8.671 8.671 0 0 1 .13 2.681 21.431 21.431 0 0 0 2.377 6.667' fill='%23090'/%3e%3cpath d='M444.9 305.8c.566 1.006.566-5.86.785-6.514a10.423 10.423 0 0 1 1.656-2.812c.568-.567.568-2.594.85-3.184a15.5 15.5 0 0 0-.282-5.58 10.477 10.477 0 0 0-1.723 1.591c-.633.72-1.592 1-1.94 1.875-.284.85-.85.85-1.286 1.81a5.7 5.7 0 0 0-.567 3.466 8.671 8.671 0 0 1 .13 2.681 21.431 21.431 0 0 0 2.377 6.667' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M444.965 306.456s-.283-1.941.5-2.683c.72-.719 1.44-.719 1.723-1.155.282-.414.13-1 .436-1.591a10.759 10.759 0 0 0 1-2.092c.283-1.592 1.156-3.337.415-5.058a10.189 10.189 0 0 0-2.028.85 4.072 4.072 0 0 0-1.874 2.593 4.051 4.051 0 0 1-.786 2.246c-.414.72-1 2.9-.283 4.207a6.635 6.635 0 0 1 .85 2.683' fill='%23090'/%3e%3cpath d='M444.965 306.456s-.283-1.941.5-2.683c.72-.719 1.44-.719 1.723-1.155.282-.414.13-1 .436-1.591a10.759 10.759 0 0 0 1-2.092c.283-1.592 1.156-3.337.415-5.058a10.189 10.189 0 0 0-2.028.85 4.072 4.072 0 0 0-1.874 2.593 4.051 4.051 0 0 1-.786 2.246c-.414.72-1 2.9-.283 4.207a6.635 6.635 0 0 1 .85 2.683z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M440.692 283.958s-.283-4.274.938-5.581c1.155-1.286 1.439-3.771 4.055-5.145a7.578 7.578 0 0 0 0 1.81c.195.632.5 2.746 0 3.465-.414.72-1.876 2.028-1.876 2.682a3.842 3.842 0 0 1-1.722 2.31 9.135 9.135 0 0 1-1.374.415' fill='%23090'/%3e%3cpath d='M440.692 283.958s-.283-4.274.938-5.581c1.155-1.286 1.439-3.771 4.055-5.145a7.578 7.578 0 0 0 0 1.81c.195.632.5 2.746 0 3.465-.414.72-1.876 2.028-1.876 2.682a3.842 3.842 0 0 1-1.722 2.31 9.135 9.135 0 0 1-1.374.415z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M440.692 286.268s0-3.03.938-3.9c.85-.85 1.286-1.374 1.721-1.874.415-.567.85-2.094 1.876-2.682a10.052 10.052 0 0 0 2.964-2.594s.415 3.619-.566 5.58c-1.069 1.875-1.069 2.9-2.181 3.336a5.039 5.039 0 0 0-1.81 1 3.118 3.118 0 0 1-1.721.718 2.789 2.789 0 0 0-1.221.415' fill='%23090'/%3e%3cpath d='M440.692 286.268s0-3.03.938-3.9c.85-.85 1.286-1.374 1.721-1.874.415-.567.85-2.094 1.876-2.682a10.052 10.052 0 0 0 2.964-2.594s.415 3.619-.566 5.58c-1.069 1.875-1.069 2.9-2.181 3.336a5.039 5.039 0 0 0-1.81 1 3.119 3.119 0 0 1-1.743.718 2.777 2.777 0 0 0-1.22.415z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M444.093 306.3c.13.854.785-1.875-2.31-1.875a9.885 9.885 0 0 1-6.606-2.243 17.33 17.33 0 0 1-2.006-2.245 7.42 7.42 0 0 1-1.81-3.03c-.13-.851-1-4.12-.849-4.71a6.277 6.277 0 0 1 2.31.85c.72.634 2.093.634 2.812 1.07.72.413 1.286 1.59 1.744 2.027.415.414 1.722.414 2.312 1.285a13.138 13.138 0 0 1 1.809 3.685 3.859 3.859 0 0 0 1.874 2.158c.72.414.567 2.157.72 2.967' fill='%23090'/%3e%3cpath d='M444.093 306.3c.13.854.785-1.875-2.31-1.875a9.885 9.885 0 0 1-6.606-2.243 17.33 17.33 0 0 1-2.006-2.245 7.42 7.42 0 0 1-1.81-3.03c-.13-.851-1-4.12-.849-4.71a6.277 6.277 0 0 1 2.31.85c.72.634 2.093.634 2.812 1.07.72.413 1.286 1.59 1.744 2.027.415.414 1.722.414 2.312 1.285a13.138 13.138 0 0 1 1.809 3.685 3.859 3.859 0 0 0 1.874 2.158c.72.414.567 2.157.72 2.967z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M443.81 305.145s-2.027-2.527-3.118-2.527c-1 0-3.619-2.681-3.771-3.771a8.006 8.006 0 0 0-1.592-3.837 3.708 3.708 0 0 1-1.5-3.248c.218-1.723.218-4.622.218-4.622s.566 1.723 1.44 2.158c.849.414 2.463 1 2.746 1.592.283.567 1.438.567 1.961 2.376a5.761 5.761 0 0 0 .72 2.159 8.94 8.94 0 0 1 1.286 2.462c.284 1.22 1.874 4.273 1.592 7.235' fill='%23090'/%3e%3cpath d='M443.81 305.145s-2.027-2.527-3.118-2.527c-1 0-3.619-2.681-3.771-3.771a8.006 8.006 0 0 0-1.592-3.837 3.708 3.708 0 0 1-1.5-3.248c.218-1.723.218-4.622.218-4.622s.566 1.723 1.44 2.158c.849.414 2.463 1 2.746 1.592.283.567 1.438.567 1.961 2.376a5.761 5.761 0 0 0 .72 2.159 8.94 8.94 0 0 1 1.286 2.462c.284 1.22 1.874 4.273 1.592 7.235z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M440.758 288.884c-.066.785 1.155-1.5-1.593-2.377a9.434 9.434 0 0 1-5.427-3.836c-.567-1.155-.938-2.026-1.221-2.528a8.025 8.025 0 0 1-.72-3.249c.066-.85.2-4.054.5-4.556a6.562 6.562 0 0 1 1.874 1.439c.5.785 1.656 1.155 2.245 1.722a11.1 11.1 0 0 1 1 2.376c.282.5 1.439.85 1.721 1.81a10.374 10.374 0 0 1 .567 3.836 4.089 4.089 0 0 0 1.155 2.53c.5.566-.065 2.092-.13 2.812' fill='%23090'/%3e%3cpath d='M440.758 288.884c-.066.785 1.155-1.5-1.593-2.377a9.434 9.434 0 0 1-5.427-3.836c-.567-1.155-.938-2.026-1.221-2.528a8.025 8.025 0 0 1-.72-3.249c.066-.85.2-4.054.5-4.556a6.562 6.562 0 0 1 1.874 1.439c.5.785 1.656 1.155 2.245 1.722a11.1 11.1 0 0 1 1 2.376c.282.5 1.439.85 1.721 1.81a10.374 10.374 0 0 1 .567 3.836 4.089 4.089 0 0 0 1.155 2.53c.5.566-.065 2.092-.13 2.812z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M440.823 287.729s-1.221-2.813-2.18-3.118c-.85-.282-2.377-2.68-2.442-3.77-.13-1.222-.349-3.4-.719-3.9a4.681 4.681 0 0 1-.633-3.9c.633-1.591 1.658-3.685 1.658-3.685s.784 1.374 1.286 2.159c.72 1.5 1.5 1.592 1.59 2.158.131.633 1 1 1.374 2.224.437 1.656-.065 1.59.066 2.245a9.536 9.536 0 0 1 .5 2.593c-.065 1.157.567 4.34-.5 6.956' fill='%23090'/%3e%3cpath d='M440.823 287.729s-1.221-2.813-2.18-3.118c-.85-.282-2.377-2.68-2.442-3.77-.13-1.222-.349-3.4-.719-3.9a4.681 4.681 0 0 1-.633-3.9c.633-1.591 1.658-3.685 1.658-3.685s.784 1.374 1.286 2.159c.72 1.5 1.5 1.592 1.59 2.158.131.633 1 1 1.374 2.224.437 1.656-.065 1.59.066 2.245a9.536 9.536 0 0 1 .5 2.593c-.065 1.157.567 4.34-.5 6.956z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M443.069 270.028c.13-.415 1-.851 2.092-1.221 1-.284 2.595-2.6 3.335-3.183.655-.633 1-1.5 1.963-2.028.85-.5 1.373-2.31 1.656-4.119 0 0-2.464.565-3.183.721a6.9 6.9 0 0 0-2.747 1.718c-.631.72-1.22 1.942-1.809 2.225-.567.284-1.286 2.028-1.286 3.248v2.595' fill='%23090'/%3e%3cpath d='M443.069 270.028c.13-.415 1-.851 2.092-1.221 1-.284 2.595-2.6 3.335-3.183.655-.633 1-1.5 1.963-2.028.85-.5 1.373-2.31 1.656-4.119 0 0-2.464.565-3.183.721a6.9 6.9 0 0 0-2.747 1.718c-.631.72-1.22 1.942-1.809 2.225-.567.284-1.286 2.028-1.286 3.248v2.595z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M442.937 268.719s-.13-1.722-.13-2.528c0-.85-.567-3.248.719-5.145.85-1.283 4.12-3.772 4.992-3.9a13.109 13.109 0 0 1 .436 3.03c-.13.72-.937 3.683-1.591 3.988-.633.283-2.377 3.772-4.426 4.556' fill='%23090'/%3e%3cpath d='M442.937 268.719s-.13-1.722-.13-2.528c0-.85-.567-3.248.719-5.145.85-1.283 4.12-3.772 4.992-3.9a13.109 13.109 0 0 1 .436 3.03c-.13.72-.937 3.683-1.591 3.988-.633.283-2.377 3.772-4.426 4.556' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M442.2 270.028c-.349.632-.13-2.225-1-2.9a3.707 3.707 0 0 1-1-2.965 9.552 9.552 0 0 1 .415-2.81c.066-.72 2.311-3.773 2.158-4.621 0 0 1.286 2.807 1.59 3.616.5 1-.282 2.093-.13 2.963.13.852.85 2.465.35 3.337-.5.785-1.81 2.377-2.4 3.4' fill='%23090'/%3e%3cpath d='M442.2 270.028c-.349.632-.13-2.225-1-2.9a3.707 3.707 0 0 1-1-2.965 9.552 9.552 0 0 1 .415-2.81c.066-.72 2.311-3.773 2.158-4.621 0 0 1.286 2.807 1.59 3.616.5 1-.282 2.093-.13 2.963.13.852.85 2.465.35 3.337-.5.785-1.81 2.377-2.4 3.4z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M449.979 254.857s.131-.442 1.5-.442c1.286 0 3.183-.061 3.772-.714a11.374 11.374 0 0 1 2.157-1.595 5.57 5.57 0 0 0 1.81-2.244c.131-.564 1.155-1.72 1.591-1.72a11.131 11.131 0 0 0-3.4.348c-1.723.345-4.208 1.283-4.775 2.46a38.561 38.561 0 0 1-2.68 3.907' fill='%23090'/%3e%3cpath d='M449.979 254.857s.131-.442 1.5-.442c1.286 0 3.183-.061 3.772-.714a11.374 11.374 0 0 1 2.157-1.595 5.57 5.57 0 0 0 1.81-2.244c.131-.564 1.155-1.72 1.591-1.72a11.131 11.131 0 0 0-3.4.348c-1.723.345-4.208 1.283-4.775 2.46a38.561 38.561 0 0 1-2.68 3.907z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M450.48 254.572c.284 1 2.747-1 3.336-1.724.567-.72 1.439-1.875 1.439-1.875a20.088 20.088 0 0 0 1.722-2.372c.937-1.6.719-4.493.348-4.275-.5.284-2.093 1.222-2.528 1.374a2.409 2.409 0 0 0-1.592 1.132 7.288 7.288 0 0 1-1.068 2.243c-.348.441-3.03 1.875-1.657 5.5' fill='%23090'/%3e%3cpath d='M450.48 254.572c.284 1 2.747-1 3.336-1.724.567-.72 1.439-1.875 1.439-1.875a20.088 20.088 0 0 0 1.722-2.372c.937-1.6.719-4.493.348-4.275-.5.284-2.093 1.222-2.528 1.374a2.409 2.409 0 0 0-1.592 1.132 7.288 7.288 0 0 1-1.068 2.243c-.348.441-3.03 1.875-1.657 5.5' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M449.543 254.572s2.026-1.44 2.812-2.16c.85-.847.414-2.026.85-2.595.349-.564 1.439-1.936 1.155-2.812-.282-.849-.849-3.332-.849-3.332a19.352 19.352 0 0 0-1.722 1.719 4.085 4.085 0 0 0-1.222 2.182 19.313 19.313 0 0 1-1.155 2.243 7.594 7.594 0 0 0 .131 3.03 6.6 6.6 0 0 1 0 1.724' fill='%23090'/%3e%3cpath d='M449.543 254.572s2.026-1.44 2.812-2.16c.85-.847.414-2.026.85-2.595.349-.564 1.439-1.936 1.155-2.812-.282-.849-.849-3.332-.849-3.332a21.681 21.681 0 0 0-1.744 1.719 4.077 4.077 0 0 0-1.221 2.182 19.467 19.467 0 0 1-1.156 2.243 7.63 7.63 0 0 0 .13 3.03 6.551 6.551 0 0 1 0 1.724z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M481.96 347.068s-9.636-.068-10.508-1.284m16.11 2.528s-6.3 1.72-9.635 1.284a17.682 17.682 0 0 0-5.712.284 31.069 31.069 0 0 1-4.426-1.507m26.226 2.272s-4.84.847-5.865 1.155c-1 .279-5.93 2.153-7.455 2.153-1.155 0-4.055-.06-4.84 0a17.3 17.3 0 0 1-6.147-.412m5.951-14.515a30.606 30.606 0 0 1 4.272 2.9c.568.786 3.837 3.4 4.426 3.4m-8.7-10.882s6.3 5.43 7.325 6.15c1.068.78 7.238 6.736 7.979 7.695M480.8 332.133s4.992 3.99 5.581 5.582a15.8 15.8 0 0 0 2.006 3.465s2.092 4.124 2.811 4.71a28.377 28.377 0 0 0 3.99 3.248m-42.815-20.71s5.21 4.425 6.67 5.273m-8.937-2.438a65.571 65.571 0 0 0 7.608 4.553 41.48 41.48 0 0 0 9.418 2.31m2.048 2.054s-5.864-.284-6.888 0c-1 .28-5.581-.72-6.736-1s-5.865-1.155-6.453-1.289m11.162-17.5a17.586 17.586 0 0 0 .13 4.554c.414 1.289 2.441 5.056 2.311 6.016-.13.853 1.155 4.838 2.377 5.58m1.2-15.586s-1 3.186-.567 4.274a13.366 13.366 0 0 1 1.134 4.119 12.1 12.1 0 0 0 1 3.622c.283.72-.131 3.248.565 3.9.721.788 1.659 2.094 1.659 2.094m-35.207-25.465s4.708 1.725 5.3 2.9c.5 1.156 1.439 1.5 1.875 2.093m10.092-9.42s1.222 4.71.939 5.865a24.8 24.8 0 0 0-.283 4.426c0 .854-1.287 4.425-1.222 4.994m-1.308-19.208s-.435 2.745-.566 3.906a26.5 26.5 0 0 1-.284 3.834c-.283.72-.72 4.62 0 6.451m-12.077-10.267s3.836 3.247 4.71 4.123c.849.848 4.839 5.056 4.99 6.144.131 1 2.9 4.209 3.773 5m-19.926-31.676s3.837 3.771 4.12 4.621a7.523 7.523 0 0 0 2.682 2.813m11.118-5.82s-1.439 2.157-1.439 2.9a7.821 7.821 0 0 1-1.155 3.4 7.541 7.541 0 0 0-1.5 3.9m2.942-16.37s-.566 2.027-.85 3.467-1.069 2.964-1.286 3.836c-.283.85-1.5 5.145-1.068 7.761M434.3 287.947a7.005 7.005 0 0 0 1.44 3.03c1 1 2.593 2.529 2.746 3.335.13.937 1.5 5.275 2.965 6.8a5.377 5.377 0 0 1 1.592 2.964m-10.268-31.085a29.019 29.019 0 0 0 .719 3.181c.283.72 1.5 3.99 2.682 4.993m9.286-7.52a15.394 15.394 0 0 0-.85 2.964 14.452 14.452 0 0 1-1.22 2.31c-.131.414-.72 1.94-.72 1.94m5.406-5.187c-.13.937-1.809 3.552-1.874 3.989-.2.5-1 2.529-1.94 3.117-.85.567-3.467 2.463-3.335 3.249m-4.318-16s-.13 3.183.414 4.338a27.422 27.422 0 0 1 1.592 3.836 12.479 12.479 0 0 1 .414 3.337c.2 1.068.567 2.964 1.222 3.683m11.532-25.2s-2.16 2.377-3.118 3.4c-.938.936-4.709 4.991-4.84 5.71m4.4-11.29s-2.027 4.486-2.529 5.206a14.752 14.752 0 0 0-.784 1.942m-1.985-7.305s.132 3.555 0 4.425a9.656 9.656 0 0 0 0 2.75 28.417 28.417 0 0 1-.567 4.425m17.615-20.73a61.769 61.769 0 0 0-5.428 3.55m2.594-7.194-3.183 4.627-.72 1.372m.284-6.435a18.428 18.428 0 0 0-1.155 3.466 29.505 29.505 0 0 1-2.245 5.43' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M501.273 348.027s.633-1.808 2.159-.195c0 0 1.744 4.118.414 4.27-1.286.133-2.594.418-2.747-.28a21.206 21.206 0 0 1 .131-3.772' fill='%23004bb3'/%3e%3cpath d='M503.148 347.375s.414-6.235 1.286-6.586c.85-.285 3.554-1.724 5.146-.413 1.591 1.35.13 7.824-.414 8.477-.567.57-1.44 2.377-4.84 1.942l-.414-1.59a8.439 8.439 0 0 0 2.9-.787c1.22-.564 1.59-1.066 1.5-1.72-.131-.853-.065-4.123-1-4.424-.85-.286-2.246-.721-2.246-.721s-1.285 4.928-1.59 6.3l-.283-.418m-2.072 4.364s-6.082 3.466-2.964 8.763a2.649 2.649 0 0 1-2.093-1.284S495 361.37 496 362.526c0 0-4.12-3.688-.937-8.047 3.248-4.426 5.864-4.119 5.864-4.119l.2 1.44' fill='%23004bb3'/%3e%3cpath d='M501.121 351.8s-6.082 3.465-2.964 8.762a2.649 2.649 0 0 1-2.093-1.284S495 361.37 496 362.526c0 0-4.12-3.688-.937-8.047 3.248-4.426 5.864-4.119 5.864-4.119l.2 1.44' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M501.121 348.9a8.206 8.206 0 0 0-6.43-.781s-1.744-5.431-1.069-7.178a1.159 1.159 0 0 1 .85-.847s-1.874-1.156-1.285 3.99c.566 5.145 1.59 6.585 1.59 6.585s4.993.279 6.148-.285l.2-1.44' fill='%23004bb3'/%3e%3cpath d='M501.121 348.9a8.206 8.206 0 0 0-6.43-.781s-1.744-5.431-1.069-7.178a1.159 1.159 0 0 1 .85-.847s-1.874-1.156-1.285 3.99c.566 5.145 1.59 6.585 1.59 6.585s4.993.279 6.148-.285l.2-1.44z' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M501.121 348.9s-5.275-8.851-6.67-8.851c0 0-1.5-.2 1.874-.564 1.22-.134 3.118 0 3.99 1.658.937 1.59 1.591 5.358 1.94 5.927a1.91 1.91 0 0 0-1.155 1.808' fill='%23004bb3'/%3e%3cpath d='M501.121 348.9s-5.275-8.851-6.67-8.851c0 0-1.5-.2 1.874-.564 1.22-.134 3.118 0 3.99 1.658.937 1.59 1.591 5.358 1.94 5.927a1.91 1.91 0 0 0-1.155 1.808z' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M501.121 348.9a36.814 36.814 0 0 1-3.99-2.093c-.413-.413-1.154-5.363-.784-5.056 0 0-1.374-1.657-1.875-1.657-.283 0-1.285.72-1 2.46a29.393 29.393 0 0 0 1.222 5.581 8.412 8.412 0 0 1 6.43.788' fill='%23003'/%3e%3cpath d='M501.121 348.9a36.814 36.814 0 0 1-3.99-2.093c-.413-.413-1.154-5.363-.784-5.056 0 0-1.374-1.657-1.875-1.657-.283 0-1.285.72-1 2.46a29.393 29.393 0 0 0 1.222 5.581 8.412 8.412 0 0 1 6.43.788z' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M504.3 351.8a4.235 4.235 0 0 1 1.875 3.4c0 2.158.937 6.149 2.68 7.019 0 0 .415-1.657 1-1.942 0 0 1.723 2.093 2.31 2.093a9.738 9.738 0 0 1-1-2.813c0-.848-.85-4.27-1.722-5.055a11.931 11.931 0 0 0-5.145-3.685v1' fill='%23004bb3'/%3e%3cpath d='M504.3 351.8a4.235 4.235 0 0 1 1.875 3.4c0 2.158.937 6.149 2.68 7.019 0 0 .415-1.657 1-1.942 0 0 1.723 2.093 2.31 2.093a9.738 9.738 0 0 1-1-2.813c0-.848-.85-4.27-1.722-5.055a11.931 11.931 0 0 0-5.145-3.685v.983z' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='m505.045 341.487-1.59 6.3.413 1.373a1.332 1.332 0 0 0 .85-.847c.283-.788 1.156-6.151 1.657-6.39l-1.375-.414' fill='%23003'/%3e%3cpath d='m505.045 341.487-1.59 6.3.413 1.373a1.332 1.332 0 0 0 .85-.847c.283-.788 1.156-6.151 1.657-6.39l-1.375-.414z' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M501.056 351.08s-2.9.848-3.99 3.114c0 0-.348-1.434 3.837-3.465l.131.35m3.356 0s2.029.782 2.53 1.936a27.232 27.232 0 0 0-2.529-1.434v-.5m-3.335-1.68s-4.491.72-5.516.5a23.591 23.591 0 0 0 5.582-.068l-.066-.413m7.26-2.767s.5 2.243.85 2.16c.348-.2 1.067-3.773 1.154-5.5.066-1.59-.719-2.026-1.35-1.875-.633 0-1 1.507-.938 2.16a27.323 27.323 0 0 0 .283 3.03' fill='%2300004b'/%3e%3cpath d='M503.454 347.81s1.81 4.052.414 4.269c-1.373.2.567.133-.349-2.59-.348-1.071-.938-2.376-1.221-2.376 0 0 1 .412 1.156.719' fill='%2300004b'/%3e%3cpath d='M501.273 348.027s.633-1.808 2.159-.195c0 0 1.744 4.118.414 4.27-1.286.133-2.594.418-2.747-.28a21.206 21.206 0 0 1 .131-3.772zm1.875-.652s.414-6.235 1.286-6.586c.85-.285 3.554-1.724 5.146-.413 1.591 1.35.13 7.824-.414 8.477-.567.57-1.44 2.377-4.84 1.942l-.414-1.59a8.439 8.439 0 0 0 2.9-.787c1.22-.564 1.59-1.066 1.5-1.72-.131-.853-.065-4.123-1-4.424-.85-.286-2.246-.721-2.246-.721s-1.285 4.928-1.59 6.3l-.283-.418z' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M496.63 240.576c-.349-.938-.414-7.238-.349-8.2.066-1.658 3.03-10.007 3.62-10.945.632-.937.413-1.154.72-1.718l.784-1.156a9.574 9.574 0 0 1 1.22 3.99 58.628 58.628 0 0 1-1 5.8 27.2 27.2 0 0 1-1.723 4.7c-.566 1.222-.5 2.31-.13 2.444l-3.117 5.056' fill='%23004bb3'/%3e%3cpath d='m501.624 232.227.5.5c1.286-1.44 1.374-4.342 1.374-4.342l-.851-5.86a58.677 58.677 0 0 1-1 5.8 27.424 27.424 0 0 1-1.721 4.706c-.85 2.092-.2 2.315-.132 2.444l1.876-3.248' fill='%23fff'/%3e%3cpath d='M502.146 232.729c1.286-1.44 1.373-4.342 1.373-4.342s.938 4.777.414 5.8c-.5 1-.5.715-.414 1.218l-1.373-2.68' fill='%23004bb3'/%3e%3cpath d='M503.52 235.408c-.066-.5-.066-.195.413-1.217.5-1-.414-5.8-.414-5.8l-.85-5.86a9.176 9.176 0 0 0-1.22-3.99l-.786 1.155c-.282.564-.065.782-.719 1.719-.567.938-3.553 9.27-3.619 10.945-.065.937 0 7.238.349 8.2' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M501.624 219.3s-.066-.937-.132-1.289c-.066-.129.5.848.937.72a5.743 5.743 0 0 1 2.028 1.724c-.35.5-1.221 1.591-1.876 1.374-.5-.135-.414-.938-.566-1.441a3.8 3.8 0 0 1-.348-1.072' fill='%23fc0'/%3e%3cpath d='M501.624 219.3s-.066-.937-.132-1.289c-.066-.129.5.848.937.72a5.743 5.743 0 0 1 2.028 1.724c-.35.5-1.221 1.591-1.876 1.374-.5-.135-.414-.938-.566-1.441a3.8 3.8 0 0 1-.348-1.072z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M501.71 218.515c.066.067.283.346.35.435.194.067.348 0 .631.129a9.432 9.432 0 0 1 1.505 1.44m-1.92-1.352a5.259 5.259 0 0 1 1.81 1.725v-.134' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M500.75 218.643a10.393 10.393 0 0 0 1.134-.63c.131-.068-.632.786-.349 1.133a4.688 4.688 0 0 1-.937 2.528c-.567-.195-1.22-.195-1.722-1.155-.2-.346.348-.721.72-1.066.195-.135.718-.721 1.155-.787' fill='%23fc0'/%3e%3cpath d='M500.75 218.643a10.393 10.393 0 0 0 1.134-.63c.131-.068-.632.786-.349 1.133a4.688 4.688 0 0 1-.937 2.528c-.567-.195-1.22-.195-1.722-1.155-.2-.346.348-.721.72-1.066.195-.135.718-.721 1.155-.787z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M501.558 218.365a1.083 1.083 0 0 0-.284.5c0 .2.13.351.065.636a8.733 8.733 0 0 1-.785 1.936m.567-2.266a4.6 4.6 0 0 1-1 2.244h.131' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M502.06 218.013c.565-.631 1.655-1.284 2.157-.848a2.922 2.922 0 0 1 .567.5c.282.28.2.413.065.781-.349.721-1.352.352-2.027 0-.13-.066-.5-.412-.72-.284-.282.067-.2.067-.282.067.064.135.194.067.282.135a14.754 14.754 0 0 1 1.722.78c.5.2 1.44-.412 1.374-.937 0-.5-.85-1.5-1.286-1.5a3.472 3.472 0 0 0-2.377 1.371c.2-.133.349.129.5-.066' fill='%23fc0'/%3e%3cpath d='M502.06 218.013c.565-.631 1.655-1.284 2.157-.848a2.922 2.922 0 0 1 .567.5c.282.28.2.413.065.781-.349.721-1.352.352-2.027 0-.13-.066-.5-.412-.72-.284-.282.067-.2.067-.282.067.064.135.194.067.282.135a14.754 14.754 0 0 1 1.722.78c.5.2 1.44-.412 1.374-.937 0-.5-.85-1.5-1.286-1.5a3.472 3.472 0 0 0-2.377 1.371c.2-.133.349.129.5-.066z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M501.558 218.013c-.567-.631-1.657-1.284-2.16-.848a2.37 2.37 0 0 0-.565.5.674.674 0 0 0-.066.781c.348.721 1.373.352 2.027 0 .131-.066.5-.412.72-.284.348.067.2.067.348.067-.13.135-.283.067-.414.135-.5.127-.938.5-1.657.78a1.284 1.284 0 0 1-1.438-.937c.065-.563.938-1.5 1.373-1.5a3.305 3.305 0 0 1 2.377 1.371c-.131-.133-.35.129-.5-.066' fill='%23fc0'/%3e%3cpath d='M501.558 218.013c-.567-.631-1.657-1.284-2.16-.848a2.37 2.37 0 0 0-.565.5.674.674 0 0 0-.066.781c.348.721 1.373.352 2.027 0 .131-.066.5-.412.72-.284.348.067.2.067.348.067-.13.135-.283.067-.414.135-.5.127-.938.5-1.657.78a1.284 1.284 0 0 1-1.438-.937c.065-.563.938-1.5 1.373-1.5a3.305 3.305 0 0 1 2.377 1.371c-.131-.133-.35.129-.5-.066z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M501.776 217.645c-.284-.135-.568.127-.655.278-.065.2.065.57.284.57.348.128.85.066.938-.285.065-.346-.284-.413-.567-.563' fill='%23fc0'/%3e%3cpath d='M501.776 217.645c-.284-.135-.568.127-.655.278-.065.2.065.57.284.57.348.128.85.066.938-.285.065-.346-.284-.413-.567-.563' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M501.71 211.757a10.735 10.735 0 0 0 1.5 3.9 11.235 11.235 0 0 0-1.591 2.027 5.6 5.6 0 0 0-1.5-2.094 13.269 13.269 0 0 0 1.591-3.833' fill='%23fc0'/%3e%3cpath d='M501.71 211.757a10.735 10.735 0 0 0 1.5 3.9 11.235 11.235 0 0 0-1.591 2.027 5.6 5.6 0 0 0-1.5-2.094 13.269 13.269 0 0 0 1.591-3.833m-.087 2.4a10.247 10.247 0 0 0 .632 1.656 4.063 4.063 0 0 0-.632.632 2.167 2.167 0 0 0-.567-.788 3.46 3.46 0 0 0 .567-1.5' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M528.613 277.2c1.434-3.554 2.963-10.944 2.9-12.623-.284-6.89-.2-8.984-.847-16.087l-7.112 8.2a26.264 26.264 0 0 1-1 10.267l6.085 10.224' fill='%23fff'/%3e%3cpath d='M522.53 266.975a27.289 27.289 0 0 0 1-4.991 28.241 28.241 0 0 0 0-5.274l-4.428 4.838 3.4 5.427m18.228 6.671c.129-1.591.195-3.335.195-4.12 0-4.992.564-7.76 0-13.056-.35-4.125-1.44-9.638-1.221-14.064.066-1.283-.129-2.528-.129-3.773l-8.918 9.857c.63 7.1.564 9.2.848 16.087.067 1.657-1.44 9.07-2.9 12.622l1.875 3.183 10.224-6.736' fill='%23004bb3'/%3e%3cpath d='m518.452 260.9 20.82-23.066.346.5-20.512 23.194-.632-.63' fill='%23fc0'/%3e%3cpath d='m518.452 260.9 20.82-23.066.346.5-20.512 23.194-.632-.63z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M539.076 244.259s-1.657 14.565-7.327 14' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M531.749 258.188c2.813.135 4.621-3.465 5.715-6.8a41.3 41.3 0 0 0 1.59-7.177' fill='none' stroke='%2300056b' stroke-width='.232'/%3e%3cpath d='M531.749 258.188c2.813-.128 4.621-3.773 5.648-6.887a42.121 42.121 0 0 0 1.657-7.11' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M531.749 258.127c2.813-.2 4.621-3.99 5.648-6.96a47.856 47.856 0 0 0 1.657-7.013' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M531.749 258.06c2.813-.413 4.621-4.209 5.582-6.954a49.089 49.089 0 0 0 1.745-7.02' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='M531.666 257.971c2.806-.564 4.7-4.487 5.58-6.953a50.784 50.784 0 0 0 1.808-7.018' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M531.666 257.971c2.806-.781 4.7-4.771 5.58-7.02a47.72 47.72 0 0 0 1.808-6.951' fill='none' stroke='%23002289' stroke-width='.232'/%3e%3cpath d='M531.666 257.91c2.806-.938 4.7-5 5.424-7.11a52.781 52.781 0 0 0 1.964-6.888' fill='none' stroke='%2300288f' stroke-width='.232'/%3e%3cpath d='M531.666 257.91c2.806-1.223 4.7-5.28 5.424-7.178a62.406 62.406 0 0 0 1.964-6.886' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M531.6 257.754c2.9-1.284 4.771-5.426 5.424-7.105a58.951 58.951 0 0 0 2.03-6.892' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='M531.6 257.754c2.9-1.5 4.771-5.8 5.424-7.172 1-2.595 1.942-6.518 2.03-6.8' fill='none' stroke='%230039a0' stroke-width='.232'/%3e%3cpath d='M531.6 257.686c2.812-1.652 4.771-6.016 5.274-7.17a47.658 47.658 0 0 0 2.16-6.8' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M531.531 257.686c2.9-1.875 4.84-6.295 5.363-7.322a66.792 66.792 0 0 0 2.16-6.735' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M538.988 243.606a39.676 39.676 0 0 1-2.16 6.67c-.436.785-2.372 5.211-5.274 7.237' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M538.86 240.927s-4.711 11.6-7.7 10.285' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M531.163 251.235c1.217.569 3.18-1.719 4.772-4.487q1.574-2.839 2.9-5.8' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M531.163 251.169c1.066.5 3.115-1.653 4.705-4.488q1.621-2.828 2.969-5.8' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M531.163 251.169c.848.44 3.03-1.653 4.62-4.555 1.81-3.248 3.031-5.708 3.031-5.708' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M531.1 251.169c.787.283 3.03-1.653 4.71-4.622q1.567-2.826 3.03-5.708' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M531.1 251.084c.631.285 2.963-1.59 4.621-4.62 1.942-3.556 3.03-5.715 3.03-5.715' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M531.1 251.084c.413.195 2.9-1.59 4.621-4.777l3.03-5.642' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M531.1 251.084c.284.128 2.813-1.59 4.554-4.838 2.093-3.84 3.03-5.582 3.03-5.582' fill='none' stroke='%230039a0' stroke-width='.232'/%3e%3cpath d='M531.1 251.084a12.226 12.226 0 0 0 4.493-4.838c2.154-4.057 3.114-5.648 3.114-5.648' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='M538.7 240.576s-.938 1.373-3.181 5.49a12.5 12.5 0 0 1-4.493 4.93m-7.494 8-3.993 2.16m3.708 1.612-3.686-.636' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='m523.617 259.215-4.053 1.943' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='m523.534 259.366-4.057 1.875' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='m523.534 259.583-4.057 1.658' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='m523.534 259.718-4.123 1.59' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='m523.534 259.868-4.123 1.44' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='m523.534 260.086-4.123 1.223' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='m523.534 260.237-4.21 1.154' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='m523.534 260.46-4.275.931' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='m523.534 260.589-4.275.847' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='m523.31 262.615-3.833-.565' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='m523.31 262.4-3.833-.413' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='m523.31 262.178-3.9-.284' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='m523.31 262.05-3.9-.134' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M523.31 261.833h-3.986' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='m523.4 261.615-4.12.128' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='m523.4 261.391-4.12.286' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='m523.467 261.241-4.273.351' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='m523.467 261.023-4.273.57' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='m523.467 260.806-4.339.72' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M540.734 273.646a28.761 28.761 0 0 0 .129-3.117c0-4.993.63-8.764.066-14.06-.35-4.124-1.44-9.637-1.221-14.063.066-1.283-.129-2.528-.129-3.773l-20.45 22.915' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M540.734 261.894a17.139 17.139 0 0 1-.938 4.34c-.937 1.875-3.772 4.621-7.02 6.671' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M532.687 272.926a28.555 28.555 0 0 0 5.363-4.49 12.982 12.982 0 0 0 1.59-2.245 15.238 15.238 0 0 0 1-4.336' fill='none' stroke='%2300056b' stroke-width='.232'/%3e%3cpath d='M532.6 272.926a28.323 28.323 0 0 0 5.274-4.621 13.218 13.218 0 0 0 1.657-2.158 16.79 16.79 0 0 0 1.066-4.337' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M532.536 272.926a30.018 30.018 0 0 0 5.207-4.621A15.024 15.024 0 0 0 539.4 266a16.553 16.553 0 0 0 1.221-4.34' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M532.47 272.861a34.728 34.728 0 0 0 5.144-4.621 9.572 9.572 0 0 0 1.658-2.311 17.2 17.2 0 0 0 1.374-4.336' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='M532.38 272.861a33.2 33.2 0 0 0 5.145-4.709 16.83 16.83 0 0 0 1.6-2.31 17.134 17.134 0 0 0 1.524-4.339' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M532.319 272.861a31.313 31.313 0 0 0 5.078-4.84 12.606 12.606 0 0 0 1.657-2.244 26.293 26.293 0 0 0 1.59-4.34' fill='none' stroke='%23002289' stroke-width='.232'/%3e%3cpath d='M532.251 272.861a31.683 31.683 0 0 0 5-4.926 16.491 16.491 0 0 0 1.652-2.246 26.4 26.4 0 0 0 1.747-4.337' fill='none' stroke='%2300288f' stroke-width='.232'/%3e%3cpath d='M532.162 272.861a32.291 32.291 0 0 0 5-4.991 14.374 14.374 0 0 0 1.59-2.246 28.094 28.094 0 0 0 1.875-4.338' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M532.1 272.861a45.035 45.035 0 0 0 4.923-5.058 13.626 13.626 0 0 0 1.6-2.31 32.516 32.516 0 0 0 1.937-4.335' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='M532.034 272.861a41.421 41.421 0 0 0 4.839-5.144 16.6 16.6 0 0 0 1.59-2.311 38.844 38.844 0 0 0 2.093-4.338' fill='none' stroke='%230039a0' stroke-width='.232'/%3e%3cpath d='M531.944 272.861c1.943-1.5 3.84-4.12 4.845-5.21a15.366 15.366 0 0 0 1.5-2.31 42.487 42.487 0 0 0 2.245-4.34' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M531.883 272.774a34.958 34.958 0 0 0 4.772-5.21 21.406 21.406 0 0 0 1.568-2.311c1.155-1.942 2.31-4.335 2.31-4.335' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M540.577 260.806a60.427 60.427 0 0 1-4.051 6.67c-.937 1-2.751 3.772-4.71 5.277' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M540.516 273.646c-2.968 2.028-3.772 2.528-10 6.518l-1.876-2.965s.72-1.656 1-2.528' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M540.45 273.646c-2.814 1.94-3.84 2.528-9.923 6.365l-.061-.065-1.725-2.812s.134-.349.285-.784a7.225 7.225 0 0 0 .63-1.657' fill='none' stroke='%2300004f' stroke-width='.232'/%3e%3cpath d='M540.45 273.646c-2.746 1.876-4.058 2.681-9.923 6.3l-.061-.13c0-.066-1.591-2.813-1.591-2.813a3.4 3.4 0 0 1 .28-.719c.2-.5.35-1.156.5-1.591' fill='none' stroke='%23000053' stroke-width='.232'/%3e%3cpath d='M540.45 273.646c-2.685 1.723-4.119 2.681-9.923 6.147l-.061-.13c0-.066-1.507-2.747-1.507-2.747s.067-.283.2-.72c.2-.5.418-1.068.57-1.5' fill='none' stroke='%23000056' stroke-width='.232'/%3e%3cpath d='M540.45 273.581c-2.6 1.722-4.342 2.811-9.923 6.082l-.061-.066c0-.13-1.374-2.812-1.374-2.812a2.578 2.578 0 0 1 .129-.632 9.834 9.834 0 0 0 .5-1.439' fill='none' stroke='%23000058' stroke-width='.232'/%3e%3cpath d='M540.45 273.581c-2.528 1.656-4.493 2.9-9.923 6.016l-.061-.13c0-.2-1.29-2.812-1.29-2.812a1.879 1.879 0 0 1 .134-.567 5.585 5.585 0 0 0 .413-1.374' fill='none' stroke='%2300005c' stroke-width='.232'/%3e%3cpath d='M540.45 273.581c-2.377 1.59-4.622 2.964-9.923 5.864l-.061-.131c0-.2-1.156-2.747-1.156-2.747a.945.945 0 0 1 .062-.566 9.072 9.072 0 0 0 .35-1.286' fill='none' stroke='%23000060' stroke-width='.232'/%3e%3cpath d='M540.45 273.581c-2.31 1.5-4.839 2.964-9.923 5.712l-.061-.132c0-.2-1.072-2.747-1.072-2.747s-.061-.13.067-.5a4.927 4.927 0 0 0 .285-1.221' fill='none' stroke='%23000062' stroke-width='.232'/%3e%3cpath d='M540.36 273.581c-2.16 1.439-4.928 3.03-9.85 5.646l-.067-.131c0-.283-1-2.747-.937-2.747 0 0-.134-.13 0-.5a3.55 3.55 0 0 0 .2-1.155' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M540.36 273.516a82.979 82.979 0 0 1-9.85 5.58c-.067 0-.067-.13-.067-.13 0-.283-.854-2.748-.854-2.748s-.128-.065 0-.414a2.761 2.761 0 0 0 .134-1.068' fill='none' stroke='%2300056b' stroke-width='.232'/%3e%3cpath d='M540.36 273.516a78.009 78.009 0 0 1-9.85 5.427c-.067 0-.067-.065-.134-.13a16.441 16.441 0 0 0-.72-2.682h.067a.317.317 0 0 1-.067-.414 2.415 2.415 0 0 0 .067-1' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M540.36 273.516a76.082 76.082 0 0 1-9.85 5.362c-.067-.066-.067-.131-.134-.195 0-.285-.563-2.595-.563-2.595s-.2-.131-.068-.436a1.512 1.512 0 0 0 0-.938' fill='none' stroke='%2300096f' stroke-width='.232'/%3e%3cpath d='M540.36 273.516a78.353 78.353 0 0 1-9.85 5.21l-.134-.132c0-.414-.5-2.68-.5-2.68s-.194-.066-.128-.35a1.286 1.286 0 0 0 .067-.85' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M540.36 273.516a68.1 68.1 0 0 1-9.917 5.078l-.067-.13c0-.436-.413-2.595-.346-2.681 0 0-.284-.066-.133-.284.066-.349 0-.349-.068-.785' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M540.36 273.516a65.649 65.649 0 0 1-9.917 4.991.644.644 0 0 0-.067-.195c0-.415-.346-2.6-.284-2.6 0 0-.279-.065-.195-.283.133-.284 0-.284-.068-.72' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M540.293 273.428a47.69 47.69 0 0 1-9.85 4.927l-.067-.2c0-.414-.195-2.53-.129-2.595 0 0-.35 0-.284-.195.067-.284-.066-.284-.133-.634' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='M540.293 273.428a45.953 45.953 0 0 1-9.85 4.773l-.067-.13c0-.5-.129-2.594-.067-2.681 0 0-.346.065-.279-.13.129-.284-.067-.2-.2-.567' fill='none' stroke='%23001c82' stroke-width='.232'/%3e%3cpath d='M540.293 273.363a44.1 44.1 0 0 1-9.85 4.773.662.662 0 0 0-.067-.2c0-.566 0-2.529.067-2.594 0 0-.413.065-.351-.13.067-.283-.129-.13-.195-.5' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M540.293 273.363c-1.217.85-6.518 3.836-9.85 4.621a.641.641 0 0 0-.067-.2 23.465 23.465 0 0 1 .135-2.594s-.5.13-.352-.066c.067-.195-.195-.065-.285-.414' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M540.232 273.363c-1.094.785-6.586 3.9-9.789 4.49a.642.642 0 0 1-.067-.195 21.363 21.363 0 0 1 .2-2.53h.068s-.5.066-.413-.065c.061-.195-.2 0-.352-.349' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M540.232 273.363c-1 .719-6.736 3.989-9.789 4.425a.235.235 0 0 1-.067-.2 13.726 13.726 0 0 1 .352-2.53s-.5.066-.5-.065c.128-.195-.2.066-.352-.282' fill='none' stroke='%2300288f' stroke-width='.232'/%3e%3cpath d='M540.232 273.363c-.937.632-6.893 4.054-9.789 4.272-.067-.065-.067-.13-.134-.195a20.572 20.572 0 0 1 .5-2.53s-.565.131-.436 0c.067-.2-.346.131-.5-.2' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M540.232 273.363c-.877.5-7.021 4.054-9.789 4.207a1.709 1.709 0 0 0-.134-.282 9.8 9.8 0 0 1 .658-2.53s-.569.131-.569.066c.068-.2-.284.195-.5-.131' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M540.232 273.3c-.787.5-7.238 4.207-9.789 4.12a.484.484 0 0 1-.134-.284 8.12 8.12 0 0 1 .72-2.463s-.564.13-.564 0c.062-.065-.351.349-.568 0' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M540.232 273.3c-.636.5-7.394 4.272-9.789 3.989-.067-.066-.134-.13-.134-.2a6.5 6.5 0 0 1 .854-2.529s-.72.195-.636.13c.067-.13-.346.35-.63 0' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='M540.232 273.3c-.57.348-7.545 4.337-9.789 3.836-.067 0-.134-.13-.134-.195a6.939 6.939 0 0 1 .938-2.465v-.065s-.72.283-.63.2c.066-.132-.413.414-.721.065' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M540.165 273.3c-.413.282-7.674 4.337-9.7 3.77a2.143 2.143 0 0 1-.194-.282 6.361 6.361 0 0 1 1.154-2.465s-.72.285-.72.2c0-.13-.5.5-.72.13' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='M540.165 273.3c-.351.195-7.824 4.425-9.7 3.619a2.313 2.313 0 0 1-.194-.284c0-.785 1.154-2.312 1.216-2.464 0 0-.782.35-.72.2 0 0-.5.633-.782.284' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M540.165 273.3c-.285.13-7.98 4.49-9.789 3.552a.445.445 0 0 0-.129-.282 6.163 6.163 0 0 1 1.284-2.465s-.78.285-.72.285c0-.067-.564.567-.847.282' fill='none' stroke='%230042a8' stroke-width='.232'/%3e%3cpath d='M540.165 273.21c-.195.13-8.2 4.621-9.789 3.466 0-.065-.129-.13-.129-.283a4.79 4.79 0 0 1 1.435-2.377l-.78.284s-.632.633-.939.349' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='M540.165 273.21c-.068.065-8.327 4.709-9.789 3.335 0-.065-.129-.13-.129-.282 0-.938 1.435-2.312 1.5-2.377l-.782.283s-.658.786-1 .5' fill='none' stroke='%230049af' stroke-width='.232'/%3e%3cpath d='M540.165 273.146s-9.482 5.361-9.917 2.963c0-.937 1.59-2.31 1.59-2.31l-.853.283s-.653.85-1 .567' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M539.139 237.808c-.063-.938-.565-2.026-1.218-2.026a4.942 4.942 0 0 0-.786.061c-.346.134-.413.285-.5.636-.128.781.938 1.066 1.658 1.156.128 0 .653-.068.786.128.129.285.062.195.129.285a.444.444 0 0 1-.285-.135c-.564-.127-1.065-.127-1.875-.278-.563-.068-.937-1.156-.63-1.591.35-.351 1.59-.72 1.964-.42a3.169 3.169 0 0 1 1.155 2.468c-.067-.194-.35-.067-.35-.284' fill='%23fc0'/%3e%3cpath d='M539.139 237.808c-.063-.938-.565-2.026-1.218-2.026a4.942 4.942 0 0 0-.786.061c-.346.134-.413.285-.5.636-.128.781.938 1.066 1.658 1.156.128 0 .653-.068.786.128.129.285.062.195.129.285a.444.444 0 0 1-.285-.135c-.564-.127-1.065-.127-1.875-.278-.563-.068-.937-1.156-.63-1.591.35-.351 1.59-.72 1.964-.42a3.169 3.169 0 0 1 1.155 2.468c-.067-.194-.35-.067-.35-.284z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M539.579 238.092c.847-.284 2.092-.134 2.31.413 0 .067.2.563.128.787.068.346-.066.5-.346.715-.72.35-1.378-.5-1.657-1.156a1.518 1.518 0 0 0-.418-.714c-.346-.068-.2 0-.346-.068.067.13.2.2.284.285.346.5.5.938.938 1.653.2.5 1.35.5 1.657.067a2.575 2.575 0 0 0-.2-2.026 3.015 3.015 0 0 0-2.747-.195c.195-.068.195.284.436.195' fill='%23fc0'/%3e%3cpath d='M539.579 238.092c.847-.284 2.092-.134 2.31.413a2 2 0 0 1 .128.787c.068.346-.066.5-.346.715-.72.35-1.378-.5-1.657-1.156a1.518 1.518 0 0 0-.418-.714c-.346-.068-.2 0-.346-.068.067.13.2.2.284.285.346.5.5.938.938 1.653.2.5 1.35.5 1.657.067a2.575 2.575 0 0 0-.2-2.026 3.015 3.015 0 0 0-2.747-.195c.195-.068.195.284.436.195z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M539.64 237.673c.285 0 .351.42.285.637 0 .194-.346.345-.57.284-.345-.133-.63-.419-.5-.786.061-.352.5-.195.781-.135' fill='%23fc0'/%3e%3cpath d='M539.64 237.673c.285 0 .351.42.285.637 0 .194-.346.345-.57.284-.345-.133-.63-.419-.5-.786.061-.352.5-.195.781-.135' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M543.72 233.532a15.016 15.016 0 0 1-4.057 2.032 5.785 5.785 0 0 1 0 2.244 5.529 5.529 0 0 1 2.528-.5 9.226 9.226 0 0 1 1.507-3.773' fill='%23fc0'/%3e%3cpath d='M543.72 233.532a15.016 15.016 0 0 1-4.057 2.032 5.785 5.785 0 0 1 0 2.244 5.529 5.529 0 0 1 2.528-.5 9.226 9.226 0 0 1 1.507-3.773z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M542.13 235.19a6.738 6.738 0 0 1-1.658.787 1.829 1.829 0 0 1 0 .848 2.8 2.8 0 0 1 1-.128 4 4 0 0 1 .636-1.507z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M539.947 239.549s-.569-.63-.787-.937c-.128-.129.285.937-.128 1.221a5.351 5.351 0 0 0 0 2.595 2.4 2.4 0 0 0 2.093-.345c.284-.285-.134-.855-.352-1.29-.128-.195-.346-.937-.781-1.222' fill='%23fc0'/%3e%3cpath d='M539.947 239.549s-.569-.63-.787-.937c-.128-.129.285.937-.128 1.221a5.351 5.351 0 0 0 0 2.595 2.4 2.4 0 0 0 2.093-.345c.284-.285-.134-.855-.352-1.29-.128-.195-.346-.937-.781-1.222z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M539.356 239.113c0 .068.067.42.067.5-.068.195-.285.284-.285.569a8.175 8.175 0 0 0 .068 2.154m.217-2.416a6.081 6.081 0 0 0 .134 2.46h-.134m.156-.937a3.658 3.658 0 0 1 .129.938c.066-.062.194.067.284.067' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M501.624 326.9c-.066 0-.2-.134-.285-.195-.414-.2-1.067-.2-1.286-.42-1-1.154-.283-3.33.066-4.7a58.156 58.156 0 0 0 1.5-7.238h.065c.567 2.378.633 4.705 1.439 7.238.5 1.373 1.155 3.55.13 4.705-.195.2-.85.2-1.22.419-.13.061-.283.195-.414.195' fill='%23fff'/%3e%3cpath d='M501.624 314.213c.565 2.377.719 4.839 1.5 7.394.414 1.218 1.069 3.249.283 4.42l-.012-.156a2.87 2.87 0 0 0 1.067-.2c.13-.067.21.03.3-.105a3.206 3.206 0 0 1 .436-.5c.283-.133.566-.066.85-.2.066-.062.066-.13.13-.13a1.827 1.827 0 0 0 1.287-2.286 2.838 2.838 0 0 0-.284-.788 5.8 5.8 0 0 0-.5-1.065 8.08 8.08 0 0 0-.567-1.156 1.181 1.181 0 0 0-.283-.5 2.906 2.906 0 0 0-.284-.5c-.066-.195-.283-.285-.414-.5-.132-.128-.219-.128-.284-.284-.065 0-.283-.061-.2-.129a.7.7 0 0 1-.282-.128c-.284-.72-.655-1.072-.938-1.814a2.224 2.224 0 0 1-.2-1.155h-1.59' fill='%23004bb3'/%3e%3cpath d='M502.43 314.28a35.041 35.041 0 0 0 1.5 5c.567 1 2.813 2.808 1.286 5.709' fill='none' stroke='%23003' stroke-width='.232'/%3e%3cpath d='M502.276 314.28a28.091 28.091 0 0 0 1.592 5c.567 1.066 2.878 2.812 1.351 5.709' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M502.211 314.28a37.861 37.861 0 0 0 1.479 5.1c.567 1 2.812 2.963 1.22 5.865' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M502.06 314.28a36.435 36.435 0 0 0 1.59 5.146c.567 1 2.837 2.7 1.31 5.69' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M501.994 314.28s.936 4.209 1.59 5.212c.5 1 2.682 3.115 1.068 6.079' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M501.928 314.28a36.187 36.187 0 0 0 1.5 5.275c.567 1 2.682 3.185 1.068 6.15' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M502.5 314.28a30.09 30.09 0 0 0 1.591 4.928c.566 1.066 2.813 2.9 1.286 5.71' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M502.647 314.37a31.333 31.333 0 0 0 1.5 4.838c.566 1 2.9 2.9 1.373 5.71' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M502.713 314.37a27.5 27.5 0 0 0 1.59 4.838c.568 1 2.813 2.813 1.374 5.71' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M502.8 314.37a29.831 29.831 0 0 0 1.591 4.772c.567 1.071 2.9 2.9 1.374 5.714' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M502.93 314.37a25.7 25.7 0 0 0 1.592 4.772c.567 1 2.9 2.9 1.373 5.714' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M501.624 314.213c-.5 2.377-.633 4.839-1.5 7.394-.35 1.218-1 3.249-.2 4.42l-.066-.06h.066a3.169 3.169 0 0 1-1.069-.195c-.066-.069-.2-.069-.282-.2a1.8 1.8 0 0 0-.5-.5c-.2-.133-.5-.066-.719-.2-.065-.062-.13-.13-.2-.13a2.587 2.587 0 0 1-1.221-1.065 3.84 3.84 0 0 1-.066-1.221c.066-.286.2-.5.284-.788a5.751 5.751 0 0 1 .5-1.065 7.874 7.874 0 0 1 .567-1.156 190.615 190.615 0 0 1 .566-1c.066-.195.283-.285.415-.5.13-.128.194-.128.348-.284 0 0 .2-.061.2-.129a.142.142 0 0 0 .132-.128 11.373 11.373 0 0 0 1-1.814 2.224 2.224 0 0 0 .2-1.155h1.5' fill='%23004bb3'/%3e%3cpath d='M500.9 314.28a34.94 34.94 0 0 1-1.5 5c-.566 1-2.813 2.808-1.374 5.709' fill='none' stroke='%23003' stroke-width='.232'/%3e%3cpath d='M501.056 314.28a34.94 34.94 0 0 1-1.5 5c-.633 1.066-2.835 2.963-1.286 5.86' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M501.121 314.28a39 39 0 0 1-1.5 5.146c-.567 1-2.812 2.963-1.22 5.864' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M501.273 314.28a34.292 34.292 0 0 1-1.525 5.146c-.633 1-2.812 3.03-1.221 6.016' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M501.34 314.28a35.98 35.98 0 0 1-1.5 5.212c-.567 1-2.747 3.115-1.155 6.079' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M501.405 314.28s-.85 4.275-1.5 5.275c-.566 1-2.68 3.185-1.067 6.15' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M500.838 314.28a38.373 38.373 0 0 1-1.5 4.928c-.567 1.066-2.9 2.9-1.374 5.71' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M500.75 314.37a34.783 34.783 0 0 1-1.59 4.838c-.568 1-2.9 2.9-1.374 5.71' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M500.6 314.37a27.385 27.385 0 0 1-1.592 4.838c-.5 1-2.811 2.813-1.286 5.71' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M500.533 314.37a21.653 21.653 0 0 1-1.656 4.772c-.5 1.071-2.813 2.9-1.287 5.714' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M500.4 314.37a25.7 25.7 0 0 1-1.592 4.772c-.567 1-2.812 2.9-1.286 5.714' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M498.157 317.768c-.132.2-.349.285-.415.5a1.378 1.378 0 0 0-.283.5 1.3 1.3 0 0 0-.283.5 10.655 10.655 0 0 0-.567 1.155 11.17 11.17 0 0 0-.5 1.066c-.065.285-.2.5-.282.787a3.809 3.809 0 0 0 .064 1.217 2.478 2.478 0 0 0 1.221 1.071c.066 0 .131.062.195.13.2.133.5.065.721.194a1.855 1.855 0 0 1 .5.5c.066.133.2.133.283.194a3.006 3.006 0 0 0 1.07.2h-.066l.065.061v-.06a.421.421 0 0 0 .132.279c.195.194.849.194 1.285.419.066.06.2.194.283.194.132 0 .284-.133.416-.194.349-.2 1-.2 1.22-.42a.337.337 0 0 0 .13-.279 2.756 2.756 0 0 0 1.07-.2c.13-.061.195-.061.282-.194a3.579 3.579 0 0 1 .437-.5c.282-.129.566-.061.85-.195.064-.068.13-.129.13-.129a1.836 1.836 0 0 0 1.287-2.288 2.831 2.831 0 0 0-.284-.787 5.661 5.661 0 0 0-.5-1.066 7.792 7.792 0 0 0-.569-1.155 1.131 1.131 0 0 0-.282-.5 2.78 2.78 0 0 0-.284-.5c-.066-.195-.283-.285-.415-.5' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='m543.942 272.661-8.03 5.32a18.435 18.435 0 0 1-.2 4.821 23.061 23.061 0 0 1-1.222 4.274h-.04l6.678 11.145a32.89 32.89 0 0 0 3-10.667c.004-6.412.217-8.32-.186-14.893z' fill='%23fff'/%3e%3cpath d='M534.5 287.075a23.218 23.218 0 0 0 1.222-4.274 18.423 18.423 0 0 0 .2-4.84l-4.927 3.184 3.47 5.93' fill='%23004bb3'/%3e%3cpath d='m530.51 280.4 23.277-15.216.419.567-23.2 15.434-.5-.785' fill='%23fc0'/%3e%3cpath d='m530.51 280.4 23.277-15.216.419.567-23.2 15.434-.5-.785' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M548.49 310.508a4.938 4.938 0 0 0 1.81-2.154c.5-1.657.418-1.6.853-3.471.2-1.066.2-2.244.413-3.334.285-1.068 1.809-4.621 1.875-6.016.129-4.622 1.658-7.76 1.284-12.753-.28-3.9-1.155-9.2-.72-13.276a30.281 30.281 0 0 0-.061-3.467l-10.007 6.52c.413 6.67.195 8.545.195 15 0 1.592-1.372 7.891-3.03 10.726l7.322 12.25' fill='%23004bb3'/%3e%3cpath d='m541.231 298.236 7.328 12.25a4.884 4.884 0 0 0 1.74-2.155 17.1 17.1 0 0 0 .854-3.465 29.155 29.155 0 0 0 .5-3.338c.28-1.068 1.808-4.622 1.875-6.017m.039-.021c-.062 1.373-1.59 4.84-1.875 5.93a22.612 22.612 0 0 1-.5 3.334 18.637 18.637 0 0 1-.854 3.466 5 5 0 0 1-1.741 2.093l-7.327-12.1' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M553.57 295.49c-.062 1.373-1.59 4.773-1.875 5.864a22.54 22.54 0 0 1-.5 3.333 20.423 20.423 0 0 1-.854 3.466 5.576 5.576 0 0 1-1.741 2.092s-7.238-11.965-7.327-12.03m12.294-2.725c-.062 1.373-1.5 4.773-1.875 5.864a22.9 22.9 0 0 1-.5 3.25 19.832 19.832 0 0 1-.854 3.4 4.884 4.884 0 0 1-1.741 2.025c-.067.067-7.238-11.748-7.327-11.813' fill='none' stroke='%2300004f' stroke-width='.232'/%3e%3cpath d='M553.57 295.49c-.062 1.286-1.5 4.708-1.875 5.8a19.47 19.47 0 0 1-.5 3.182 18.442 18.442 0 0 1-.854 3.4 5.667 5.667 0 0 1-1.741 2.093c-.067 0-7.171-11.665-7.327-11.752m12.294-2.725c-.062 1.286-1.5 4.621-1.808 5.711-.195 1-.285 2.158-.564 3.185a16.616 16.616 0 0 1-.854 3.332 5.576 5.576 0 0 1-1.741 2.092c-.067 0-7.171-11.53-7.327-11.6' fill='none' stroke='%23000051' stroke-width='.232'/%3e%3cpath d='M553.57 295.49c-.062 1.286-1.5 4.556-1.808 5.646-.195 1-.285 2.158-.564 3.183a19.144 19.144 0 0 1-.854 3.337 5.437 5.437 0 0 1-1.741 2.026c-.134.067-7.171-11.38-7.327-11.446m12.294-2.747c-.062 1.286-1.5 4.557-1.808 5.582-.195 1.068-.285 2.158-.564 3.182a22.669 22.669 0 0 1-.854 3.247 4.9 4.9 0 0 1-1.741 2.027c-.195.066-7.11-11.225-7.327-11.312' fill='none' stroke='%23000053' stroke-width='.232'/%3e%3cpath d='M553.57 295.49c-.062 1.286-1.5 4.49-1.808 5.58-.195 1-.285 2.093-.564 3.118a17.988 17.988 0 0 1-.937 3.244 5.4 5.4 0 0 1-1.658 1.944c-.195.066-7.11-11.1-7.327-11.161m12.294-2.725c-.062 1.22-1.5 4.425-1.808 5.428-.195 1.068-.285 2.158-.564 3.182a22.842 22.842 0 0 1-.937 3.182 4.923 4.923 0 0 1-1.658 1.943c-.195.06-7.11-10.945-7.327-11.01m12.294-2.725c-.062 1.22-1.5 4.425-1.808 5.428-.195 1-.285 2.026-.564 3.03a18.787 18.787 0 0 1-.937 3.184 4.479 4.479 0 0 1-1.658 1.936c-.285.068-7.11-10.788-7.327-10.876' fill='none' stroke='%23000056' stroke-width='.232'/%3e%3cpath d='M553.57 295.49c-.062 1.22-1.434 4.338-1.808 5.363-.195 1-.285 2.092-.564 3.03a14.722 14.722 0 0 1-1 3.115 4.27 4.27 0 0 1-1.591 1.942c-.285.066-7.02-10.66-7.327-10.725m12.294-2.725c-.062 1.22-1.434 4.273-1.808 5.275-.195 1-.346 2.092-.564 2.964a14.3 14.3 0 0 1-1 3.186 4.148 4.148 0 0 1-1.658 1.874c-.194.129-6.887-10.443-7.238-10.574' fill='none' stroke='%23000058' stroke-width='.232'/%3e%3cpath d='M553.57 295.49c-.062 1.22-1.434 4.273-1.808 5.275-.195.938-.346 1.94-.564 2.9a14.685 14.685 0 0 1-1 3.115 5.447 5.447 0 0 1-1.658 1.942c-.284.067-6.887-10.355-7.238-10.507m12.21-2.725c0 1.155-1.373 4.207-1.724 5.21-.195.937-.346 1.962-.57 2.9a19.473 19.473 0 0 1-1 3.12 5.405 5.405 0 0 1-1.657 1.87c-.286.067-6.888-10.221-7.238-10.353' fill='none' stroke='%2300005c' stroke-width='.232'/%3e%3cpath d='M553.508 295.49c0 1.155-1.373 4.12-1.724 5.144-.195.938-.346 1.94-.57 2.9a16.115 16.115 0 0 1-1 3.03 4.71 4.71 0 0 1-1.657 1.873c-.352.068-6.8-10.07-7.238-10.222m12.187-2.725c0 1.068-1.373 4.054-1.724 5.057-.195 1-.346 1.94-.57 2.9a18.362 18.362 0 0 1-1 2.965 4.7 4.7 0 0 1-1.657 1.874c-.352.129-6.8-9.918-7.238-10.071' fill='none' stroke='%2300005e' stroke-width='.232'/%3e%3cpath d='M553.508 295.425c0 1.155-1.373 4.12-1.724 5.143-.195.852-.346 1.875-.631 2.813a22.023 22.023 0 0 1-.937 2.9 5.352 5.352 0 0 1-1.657 1.875c-.352.133-6.8-9.785-7.238-9.917m12.187-2.811c0 1.155-1.373 4.054-1.724 4.991a27.164 27.164 0 0 1-.631 2.813 26.858 26.858 0 0 1-.937 2.965 5.19 5.19 0 0 1-1.657 1.803c-.413.129-6.8-9.634-7.238-9.787m12.187-2.79c0 1.155-1.288 3.989-1.724 4.991a25.909 25.909 0 0 1-.631 2.747 17.93 17.93 0 0 1-1 2.964 4.545 4.545 0 0 1-1.591 1.724c-.413.129-6.737-9.483-7.238-9.636' fill='none' stroke='%23000060' stroke-width='.232'/%3e%3cpath d='M553.508 295.425c0 1.155-1.288 3.9-1.657 4.926-.285.937-.413 1.874-.72 2.747a15.445 15.445 0 0 1-1 2.9 4.542 4.542 0 0 1-1.59 1.719c-.5.134-6.737-9.35-7.239-9.482m12.21-2.811c0 1.067-1.288 3.9-1.657 4.838-.285.938-.413 1.876-.72 2.747a15.726 15.726 0 0 1-1 2.81 5.58 5.58 0 0 1-1.59 1.814c-.5.061-6.737-9.266-7.239-9.42' fill='none' stroke='%23000062' stroke-width='.232'/%3e%3cpath d='M553.508 295.425c0 1.067-1.288 3.836-1.657 4.838-.285.85-.413 1.81-.72 2.682a13.433 13.433 0 0 1-1 2.747 3.983 3.983 0 0 1-1.59 1.725c-.5.194-6.67-8.984-7.239-9.2m12.21-2.79c0 1.067-1.288 3.836-1.657 4.773-.285.85-.413 1.809-.72 2.682a17.027 17.027 0 0 1-1 2.745 4.184 4.184 0 0 1-1.59 1.657c-.57.195-6.586-8.85-7.239-9.067' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M553.508 295.425c0 1.067-1.288 3.77-1.657 4.708-.285.85-.413 1.809-.72 2.594a22.19 22.19 0 0 1-1 2.747 4.508 4.508 0 0 1-1.59 1.72c-.57.133-6.586-8.761-7.239-8.98m12.21-2.79c0 1.068-1.288 3.684-1.657 4.622-.285.872-.413 1.809-.72 2.616a28.971 28.971 0 0 1-1 2.745 5.481 5.481 0 0 1-1.59 1.658c-.632.128-6.586-8.632-7.239-8.85' fill='none' stroke='%23000268' stroke-width='.232'/%3e%3cpath d='M553.508 295.425c0 1-1.222 3.618-1.657 4.621-.285.784-.413 1.656-.72 2.528a16.408 16.408 0 0 1-1.072 2.683 4.859 4.859 0 0 1-1.5 1.657c-.631.195-6.586-8.481-7.238-8.7m12.187-2.79c0 1-1.222 3.619-1.657 4.491-.285.85-.413 1.722-.72 2.594a15.352 15.352 0 0 1-1.072 2.591 4.232 4.232 0 0 1-1.59 1.658c-.564.2-6.452-8.325-7.172-8.543m12.211-2.79c0 1-1.222 3.552-1.657 4.49-.285.85-.413 1.657-.72 2.463a12.91 12.91 0 0 1-1.072 2.594 4.838 4.838 0 0 1-1.59 1.657c-.63.129-6.452-8.11-7.172-8.414' fill='none' stroke='%2300056b' stroke-width='.232'/%3e%3cpath d='M553.508 295.425c0 .937-1.222 3.465-1.657 4.424-.285.785-.413 1.723-.72 2.464a15.352 15.352 0 0 1-1.072 2.591 5.408 5.408 0 0 1-1.59 1.592c-.63.2-6.452-7.976-7.172-8.26m12.211-2.811a15.414 15.414 0 0 1-1.657 4.338c-.285.784-.413 1.656-.72 2.462a12.921 12.921 0 0 1-1.072 2.53 4.1 4.1 0 0 1-1.59 1.59c-.63.195-6.384-7.825-7.172-8.109' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M553.508 295.425a15.414 15.414 0 0 1-1.657 4.338c-.285.784-.413 1.591-.72 2.376-.413 1.22-.57 1.285-1.072 2.526a4.29 4.29 0 0 1-1.59 1.507c-.72.194-6.384-7.674-7.172-7.979m12.211-2.768a15.039 15.039 0 0 1-1.657 4.272c-.285.72-.413 1.591-.72 2.376a24.486 24.486 0 0 1-1.072 2.464 7.8 7.8 0 0 1-1.59 1.59c-.781.134-6.3-7.608-7.172-7.891' fill='none' stroke='%2300096f' stroke-width='.232'/%3e%3cpath d='M553.508 295.425a13.979 13.979 0 0 1-1.657 4.207c-.285.784-.413 1.59-.72 2.31-.5 1.221-.57 1.286-1.072 2.46a4.863 4.863 0 0 1-1.59 1.508c-.781.284-6.3-7.39-7.172-7.674m12.211-2.811a14.447 14.447 0 0 1-1.657 4.12 18.829 18.829 0 0 1-.787 2.31A15.639 15.639 0 0 1 550 304.32a4.164 4.164 0 0 1-1.507 1.439c-.782.28-6.3-7.24-7.172-7.544' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M553.508 295.425a14.077 14.077 0 0 1-1.657 4.054 18.829 18.829 0 0 1-.787 2.31 12.735 12.735 0 0 1-1.065 2.4 5.075 5.075 0 0 1-1.591 1.5c-.787.195-6.15-7.172-7.11-7.456m12.21-2.811a13.731 13.731 0 0 1-1.657 3.989 18.829 18.829 0 0 1-.787 2.31A16.482 16.482 0 0 1 550 304.1a5.648 5.648 0 0 1-1.591 1.441c-.787.195-6.15-7.021-7.11-7.325m12.21-2.791a13.731 13.731 0 0 1-1.657 3.989c-.285.719-.413 1.5-.787 2.244a9.145 9.145 0 0 1-1.155 2.312 4.813 4.813 0 0 1-1.5 1.437c-.787.285-6.15-6.887-7.11-7.17' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='M553.508 295.425a11.351 11.351 0 0 1-1.657 3.9c-.285.72-.413 1.5-.787 2.246a14.394 14.394 0 0 1-1.155 2.245 4.158 4.158 0 0 1-1.5 1.44c-.855.195-6.083-6.671-7.11-7.021m12.21-2.811a11.628 11.628 0 0 1-1.657 3.836 16.643 16.643 0 0 1-.787 2.159 11.872 11.872 0 0 1-1.155 2.31 3.962 3.962 0 0 1-1.5 1.37c-.855.284-6.083-6.514-7.11-6.885' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M553.508 295.425a12.23 12.23 0 0 1-1.657 3.836c-.285.632-.413 1.373-.787 2.093a11.971 11.971 0 0 1-1.155 2.245 3.978 3.978 0 0 1-1.5 1.373c-.855.285-6.083-6.365-7.11-6.736m12.21-2.811a10.254 10.254 0 0 1-1.657 3.683 16.643 16.643 0 0 1-.787 2.159 10.706 10.706 0 0 1-1.155 2.158 3.972 3.972 0 0 1-1.5 1.374c-.938.284-6.021-6.235-7.11-6.584' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M553.508 295.425a10.966 10.966 0 0 1-1.657 3.683 21.962 21.962 0 0 1-.787 2.093 20.141 20.141 0 0 1-1.155 2.158 4.2 4.2 0 0 1-1.5 1.284c-.938.285-6.021-6.079-7.11-6.45m12.21-2.768a10.693 10.693 0 0 1-1.657 3.618c-.285.72-.5 1.373-.787 2.093a21.792 21.792 0 0 1-1.155 2.093 5.7 5.7 0 0 1-1.5 1.374c-1 .28-5.933-6.017-7.11-6.367' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='M553.508 295.425a10.413 10.413 0 0 1-1.657 3.552c-.285.634-.5 1.374-.787 2.094a21.78 21.78 0 0 1-1.155 2.092 6.54 6.54 0 0 1-1.5 1.284c-1 .285-5.933-5.861-7.11-6.232m12.21-2.79a9.889 9.889 0 0 1-1.657 3.465c-.285.72-.5 1.373-.787 2.028a10.478 10.478 0 0 1-1.222 2.092 3.988 3.988 0 0 1-1.434 1.221c-1 .35-5.933-5.645-7.11-6.016m12.21-2.79a10.141 10.141 0 0 1-1.657 3.465c-.285.633-.5 1.286-.787 1.94a10.577 10.577 0 0 1-1.222 2.027 4.681 4.681 0 0 1-1.434 1.287c-1.072.28-5.866-5.58-7.11-5.93' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M553.508 295.425a9.384 9.384 0 0 1-1.657 3.4c-.285.566-.5 1.285-.787 1.94a9.4 9.4 0 0 1-1.222 1.94 4.678 4.678 0 0 1-1.434 1.286c-1.072.351-5.866-5.428-7.11-5.8m12.21-2.767a9.146 9.146 0 0 1-1.657 3.334c-.285.633-.5 1.286-.787 1.875a10.577 10.577 0 0 1-1.222 2.027 5.729 5.729 0 0 1-1.434 1.221c-1.072.284-5.866-5.21-7.11-5.646' fill='none' stroke='%23001c82' stroke-width='.232'/%3e%3cpath d='M553.508 295.425a9.675 9.675 0 0 1-1.657 3.334c-.285.567-.5 1.222-.787 1.81-.5 1-.72 1.068-1.222 2.026a5.446 5.446 0 0 1-1.434 1.157c-1.156.348-5.782-5.058-7.11-5.5m12.21-2.832a8.32 8.32 0 0 1-1.6 3.182c-.347.632-.564 1.286-.849 1.874-.5.939-.72 1.07-1.222 1.941a5.458 5.458 0 0 1-1.434 1.155c-1.223.35-5.782-4.926-7.11-5.362' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a8.45 8.45 0 0 1-1.6 3.27c-.28.566-.564 1.22-.849 1.81-.5.937-.72 1-1.222 1.873a4.819 4.819 0 0 1-1.5 1.157c-1.157.349-5.649-4.775-7.022-5.211m12.188-2.9a8.022 8.022 0 0 1-1.6 3.184 19.133 19.133 0 0 1-.938 1.81 9.438 9.438 0 0 1-1.217 1.809 3.655 3.655 0 0 1-1.44 1.155c-1.155.349-5.647-4.622-7.02-5.058' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a7.416 7.416 0 0 1-1.6 3.117 19.012 19.012 0 0 1-.938 1.81 9.445 9.445 0 0 1-1.217 1.81 4.371 4.371 0 0 1-1.44 1.068c-1.221.414-5.647-4.426-7.02-4.927m12.21-2.878a7.533 7.533 0 0 1-1.6 3.03 11.252 11.252 0 0 1-.938 1.722 9.445 9.445 0 0 1-1.217 1.81 4.615 4.615 0 0 1-1.44 1.155c-1.221.349-5.58-4.338-7.02-4.84m12.21-2.877a7.533 7.533 0 0 1-1.6 3.03 14.873 14.873 0 0 1-.938 1.657 8.809 8.809 0 0 1-1.217 1.81 5.488 5.488 0 0 1-1.44 1.067c-1.221.349-5.58-4.207-7.02-4.709' fill='none' stroke='%23002289' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a8.092 8.092 0 0 1-1.6 2.965c-.28.5-.564 1.068-.938 1.656a12.247 12.247 0 0 1-1.283 1.723 2.808 2.808 0 0 1-1.374 1c-1.289.414-5.58-3.99-7.02-4.49m12.21-2.857a6.468 6.468 0 0 1-1.6 2.9 16.767 16.767 0 0 1-.938 1.656 8.974 8.974 0 0 1-1.283 1.658 3.4 3.4 0 0 1-1.374 1.068c-1.289.414-5.514-3.9-7.02-4.426' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a7.207 7.207 0 0 1-1.6 2.9c-.28.5-.564 1-.938 1.592a6.923 6.923 0 0 1-1.283 1.592 4.121 4.121 0 0 1-1.374 1.067c-1.289.414-5.514-3.77-7.02-4.272m12.21-2.878a6.312 6.312 0 0 1-1.6 2.747 14.684 14.684 0 0 1-.938 1.656 12.941 12.941 0 0 1-1.283 1.592 6.127 6.127 0 0 1-1.374 1c-1.372.348-5.514-3.619-7.02-4.12' fill='none' stroke='%2300288f' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a6.825 6.825 0 0 1-1.6 2.747 8.343 8.343 0 0 1-1 1.5c-.35.785-.72.938-1.221 1.657a4.389 4.389 0 0 1-1.374.938c-1.372.414-5.514-3.466-7.02-3.99m12.21-2.855a6.261 6.261 0 0 1-1.6 2.68 8.32 8.32 0 0 1-1 1.5c-.35.72-.72.85-1.221 1.592a5.885 5.885 0 0 1-1.374.938c-1.44.414-5.43-3.336-7.02-3.837' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a5.944 5.944 0 0 1-1.6 2.594 8.314 8.314 0 0 1-1 1.5c-.35.72-.72.85-1.221 1.5a5.791 5.791 0 0 1-1.374.937c-1.44.414-5.363-3.182-7.02-3.77m12.21-2.77a5.925 5.925 0 0 1-1.6 2.53 6.226 6.226 0 0 1-1 1.439 5.912 5.912 0 0 1-1.221 1.5 4.632 4.632 0 0 1-1.374 1c-1.44.348-5.363-3.117-7.02-3.685m12.21-2.79a6.344 6.344 0 0 1-1.6 2.463 6.231 6.231 0 0 1-1 1.44c-.35.718-.72.849-1.288 1.5a3.679 3.679 0 0 1-1.284.849c-1.507.5-5.363-2.811-7.021-3.466' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a5.644 5.644 0 0 1-1.6 2.463 8.414 8.414 0 0 1-1 1.373 8.6 8.6 0 0 1-1.288 1.439 8.021 8.021 0 0 1-1.284.938c-1.507.414-5.363-2.747-7.021-3.4m12.188-2.813a5.523 5.523 0 0 1-1.6 2.4 7.491 7.491 0 0 1-1 1.352 12.328 12.328 0 0 1-1.288 1.44 8.61 8.61 0 0 1-1.374.85c-1.44.414-5.206-2.594-6.954-3.25' fill='none' stroke='%23002f96' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a4.922 4.922 0 0 1-1.6 2.31 7.573 7.573 0 0 1-1 1.374c-.413.566-.787.784-1.288 1.374a5.529 5.529 0 0 1-1.374.85c-1.5.413-5.206-2.463-6.954-3.118m12.211-2.79a5.137 5.137 0 0 1-1.6 2.245 5.434 5.434 0 0 1-1 1.286 8.547 8.547 0 0 1-1.288 1.374 5.529 5.529 0 0 1-1.374.85c-1.59.5-5.206-2.31-6.954-2.965' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a5.676 5.676 0 0 1-1.6 2.245 7.758 7.758 0 0 1-1 1.221 10.228 10.228 0 0 1-1.288 1.286 4.439 4.439 0 0 1-1.374.85c-1.59.415-5.145-2.157-6.954-2.812m12.211-2.79a5.409 5.409 0 0 1-1.6 2.158 12.478 12.478 0 0 1-1 1.221 10.162 10.162 0 0 1-1.278 1.284 6.743 6.743 0 0 1-1.374.785c-1.59.5-5.078-2.028-6.954-2.681' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a4.909 4.909 0 0 1-1.6 2.092 10.786 10.786 0 0 1-2.373 2.442 3.632 3.632 0 0 1-1.288.785c-1.658.5-5.08-1.874-6.955-2.53m12.211-2.79a4.819 4.819 0 0 1-1.6 2.028 5.663 5.663 0 0 1-1 1.222 9.844 9.844 0 0 1-1.373 1.22 4.729 4.729 0 0 1-1.288.72c-1.658.5-5.08-1.723-6.955-2.378m12.211-2.811a4.119 4.119 0 0 1-1.6 1.94 6.856 6.856 0 0 1-1 1.221c-.5.5-.787.632-1.373 1.155a4.728 4.728 0 0 1-1.288.72c-1.658.5-5.08-1.591-6.955-2.246' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a5 5 0 0 1-1.6 1.94 10.857 10.857 0 0 1-1 1.068 17.129 17.129 0 0 1-1.373 1.156 6 6 0 0 1-1.372.785c-1.658.5-4.928-1.44-6.892-2.16m12.232-2.79a5.111 5.111 0 0 1-1.6 1.876 10.857 10.857 0 0 1-1 1.068 7.639 7.639 0 0 1-1.373 1.069 2.636 2.636 0 0 1-1.372.718c-1.658.567-4.928-1.22-6.892-1.94' fill='none' stroke='%230039a0' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a4.325 4.325 0 0 1-1.6 1.81 10.857 10.857 0 0 1-1 1.068 16.026 16.026 0 0 1-1.373 1.068 7.731 7.731 0 0 1-1.372.72c-1.658.5-4.928-1.156-6.892-1.876m12.232-2.79a3.814 3.814 0 0 1-1.6 1.722 6.864 6.864 0 0 1-1.067 1.068c-.413.436-.786.633-1.283 1.069a11.459 11.459 0 0 1-1.378.632c-1.72.5-4.839-1-6.888-1.722' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a4.3 4.3 0 0 1-1.6 1.722 12.242 12.242 0 0 1-1.067 1c-.413.413-.786.566-1.283 1a11.459 11.459 0 0 1-1.378.632c-1.72.566-4.839-.85-6.888-1.591m12.211-2.77a4.3 4.3 0 0 1-1.6 1.657c-.28.284-.631.633-1.067 1a11.54 11.54 0 0 1-1.372.939 3.925 3.925 0 0 1-1.29.63c-1.807.5-4.838-.718-6.887-1.438' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a5.3 5.3 0 0 1-1.508 1.592c-.345.282-.72.632-1.155.937a4.934 4.934 0 0 1-1.372.937 3.91 3.91 0 0 1-1.29.632c-1.807.567-4.77-.567-6.887-1.286m12.211-2.812a4.485 4.485 0 0 1-1.507 1.5 8.127 8.127 0 0 1-1.155.937c-.413.349-.847.567-1.372.938a8.714 8.714 0 0 1-1.29.567c-1.807.566-4.77-.415-6.887-1.156m12.211-2.79a4.809 4.809 0 0 1-1.507 1.443c-.345.282-.72.567-1.155.937a6.293 6.293 0 0 1-1.44.85c-.346.2-.781.414-1.221.633-1.87.5-4.7-.35-6.888-1.07' fill='none' stroke='%230042a8' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a5.728 5.728 0 0 1-1.508 1.439c-.345.2-.72.5-1.155.785a7.333 7.333 0 0 1-1.44.937 7.7 7.7 0 0 1-1.221.5c-1.87.566-4.7-.132-6.954-.85m12.277-2.813a4.886 4.886 0 0 1-1.507 1.376 6.293 6.293 0 0 1-1.155.784 9.026 9.026 0 0 1-1.44.85 4.277 4.277 0 0 1-1.221.5c-1.87.632-4.7 0-6.954-.72' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a6.155 6.155 0 0 1-1.508 1.286c-.345.2-.72.567-1.155.785a5.666 5.666 0 0 1-1.44.784c-.346.2-.781.35-1.221.567-1.937.567-4.622.13-6.954-.632m12.277-2.79a5.257 5.257 0 0 1-1.507 1.22 12.838 12.838 0 0 1-1.155.786c-.413.282-.937.5-1.44.784-.346.131-.781.349-1.221.5a12.454 12.454 0 0 1-6.954-.5' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M553.508 295.337a5.257 5.257 0 0 1-1.507 1.22c-.345.2-.72.415-1.155.72a8.875 8.875 0 0 1-1.44.72 7.791 7.791 0 0 1-1.221.5 12.543 12.543 0 0 1-6.954-.349m12.277-2.812a18.1 18.1 0 0 1-1.508 1.156 13.435 13.435 0 0 0-1.155.72c-.413.195-.937.414-1.44.632a7.791 7.791 0 0 1-1.221.5 11.889 11.889 0 0 1-6.954-.2' fill='none' stroke='%230049af' stroke-width='.232'/%3e%3cpath d='M553.508 295.337A11.274 11.274 0 0 1 552 296.4c-.345.2-.72.415-1.155.633a8.955 8.955 0 0 1-1.44.719c-.434.13-.781.282-1.221.414a12.2 12.2 0 0 1-6.954-.065m12.277-2.77s-6.239 4.927-12.316 2.813' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M553.787 275.892s-1.216 7.913-1.718 9.07c-.351 1-2.9 5.491-6.737 6.516' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M553.787 275.892s-1.283 7.825-1.808 8.915c-.413 1-2.745 5.364-6.669 6.671' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M553.726 275.825s-1.29 7.762-1.813 8.982c-.5 1-2.59 5.08-6.58 6.671' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M553.726 275.825s-1.373 7.762-1.875 8.917a14.188 14.188 0 0 1-6.519 6.671' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M553.726 275.825s-1.506 7.674-2.031 8.765a14.624 14.624 0 0 1-6.385 6.8' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M553.726 275.825s-1.59 7.609-2.093 8.765a16.056 16.056 0 0 1-6.3 6.8' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M553.66 275.825s-1.591 7.543-2.094 8.7a16.477 16.477 0 0 1-6.234 6.8' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M553.66 275.825s-1.747 7.457-2.244 8.634c-.5 1.068-1.814 3.9-6.15 6.889' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M553.66 275.825s-1.809 7.391-2.311 8.547c-.5 1.067-1.724 3.683-6.083 6.954' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M553.66 275.76s-1.876 7.456-2.462 8.547c-.5 1.067-1.506 3.4-5.933 7.02' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M553.66 275.76s-1.943 7.326-2.528 8.48c-.5 1.069-1.374 3.184-5.866 7.02' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M553.57 275.76s-1.958 7.326-2.528 8.415c-.564 1.069-1.223 2.965-5.8 7.02' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M553.57 275.674s-2.026 7.324-2.68 8.393c-.568 1.068-1.07 2.747-5.646 7.106' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M553.291 271.03s-1.005 11.162-8.985 14.214' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M553.224 271.03a23.494 23.494 0 0 1-2.026 7.02 13.486 13.486 0 0 1-6.892 7.171' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M553.224 271.03a27.881 27.881 0 0 1-2.092 7.02c-1.156 2.376-3.25 5.581-6.8 7.171' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M553.224 271.03a28.01 28.01 0 0 1-2.16 6.888c-1.155 2.312-3.248 5.582-6.736 7.238' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M553.224 271.03a31.509 31.509 0 0 1-2.31 6.888c-1 2.093-3.12 5.494-6.586 7.173' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M553.224 271.03a31.937 31.937 0 0 1-2.377 6.8c-.938 1.876-3.03 5.43-6.519 7.238' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M553.134 271.03a30.443 30.443 0 0 1-2.377 6.736 17.281 17.281 0 0 1-6.451 7.326' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M553.134 270.964a31.082 31.082 0 0 1-2.46 6.737c-.787 1.5-2.9 5.276-6.368 7.325' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M553.134 270.964a38.848 38.848 0 0 1-2.528 6.671c-.787 1.44-2.812 5.277-6.3 7.39' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M553.134 270.964a32.032 32.032 0 0 1-2.679 6.671c-.636 1.156-2.66 5.145-6.15 7.39' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M553.134 270.964a42.188 42.188 0 0 1-2.745 6.605c-.57 1-2.6 5.06-6.083 7.391' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M553.073 270.964a35.012 35.012 0 0 1-2.751 6.519c-.5.785-2.528 4.992-6.016 7.455' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M553.073 270.964a33.861 33.861 0 0 1-2.9 6.453c-.413.633-2.377 4.993-5.864 7.543' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M553.224 267.913s-2.31 8.981-8.762 11.161' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M553.224 267.913a21.757 21.757 0 0 1-3.03 6.235 12.256 12.256 0 0 1-5.715 4.926' fill='none' stroke='%2300056b' stroke-width='.232'/%3e%3cpath d='M553.224 267.913a23.269 23.269 0 0 1-3.12 6.147c-1.44 2.093-3.465 4.273-5.642 4.993' fill='none' stroke='%2300096f' stroke-width='.232'/%3e%3cpath d='M553.134 267.848A24.628 24.628 0 0 1 550.1 274c-1.5 2.158-3.684 4.338-5.731 5.058' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='M553.134 267.782a26.179 26.179 0 0 1-3.113 6.234c-1.6 2.093-3.773 4.426-5.648 5.058' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='M553.134 267.782a25.588 25.588 0 0 1-3.247 6.083c-1.591 2.223-3.835 4.556-5.514 5.144' fill='none' stroke='%23001c82' stroke-width='.232'/%3e%3cpath d='M553.134 267.782a23.348 23.348 0 0 1-3.334 6.018c-1.657 2.31-3.99 4.708-5.43 5.21' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M553.134 267.7a26.119 26.119 0 0 1-3.331 6.017c-1.724 2.31-4.124 4.84-5.43 5.275' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M553.134 267.7a25.9 25.9 0 0 1-3.465 5.929c-1.72 2.377-4.208 4.927-5.3 5.276' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M553.134 267.7a29.511 29.511 0 0 1-3.554 5.865c-1.808 2.376-4.336 5.055-5.207 5.361' fill='none' stroke='%23002f96' stroke-width='.232'/%3e%3cpath d='M553.134 267.63a32.289 32.289 0 0 1-3.616 5.864c-1.875 2.375-4.425 5.21-5.145 5.427' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='M553.073 267.63a32.112 32.112 0 0 1-3.556 5.864c-1.941 2.375-4.559 5.21-5.211 5.427' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='M553.073 267.63a32.831 32.831 0 0 1-3.69 5.71c-1.873 2.53-4.62 5.43-5.077 5.582' fill='none' stroke='%230042a8' stroke-width='.232'/%3e%3cpath d='M553.073 267.564a30.862 30.862 0 0 1-3.772 5.711 50.451 50.451 0 0 1-5 5.646' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M553.073 267.476a31.911 31.911 0 0 1-3.84 5.712c-2.025 2.6-4.927 5.647-4.927 5.647m-8.439 1.35-4.425.786m3.99 2.55-3.99-1.656' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='m535.935 280.251-4.426.72' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='m535.867 280.47-4.425.5' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='m535.867 280.622-4.425.349' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='m535.867 280.753-4.487.282' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='m535.867 280.971-4.487.065' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='m535.867 281.124-4.553-.066' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='m535.867 281.276-4.62-.2' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='m535.807 281.406-4.56-.282' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='m535.807 281.56-4.621-.415' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='m535.522 283.3-4.058-1.5' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='m535.522 283.15-4.12-1.438' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='m535.522 283.02-4.12-1.374' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='m535.589 282.8-4.275-1.22' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='m535.589 282.65-4.342-1.156' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='m535.589 282.5-4.342-1.07' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='m535.65 282.28-4.487-.851' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='m535.717 282.061-4.554-.785' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='m535.717 281.93-4.621-.654' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='m535.717 281.777-4.71-.565' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M548.49 310.508a4.938 4.938 0 0 0 1.81-2.154c.5-1.657.418-1.6.853-3.471.2-1.066.2-2.244.413-3.334.285-1.068 1.809-4.621 1.875-6.016.129-4.622 1.658-7.76 1.284-12.753-.28-3.9-1.155-9.2-.72-13.276a30.281 30.281 0 0 0-.061-3.467l-22.977 15.217' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M554.161 264.883c.2-.85-.066-2.03-.72-2.157a2.156 2.156 0 0 0-.786-.068c-.347 0-.413.13-.565.436-.35.785.565 1.287 1.285 1.5.133.066.569.13.63.349.134.349.068.2.134.349-.134-.065-.134-.2-.285-.284-.5-.282-1-.348-1.74-.72-.5-.194-.57-1.372-.2-1.657a2.3 2.3 0 0 1 2.03 0 3.561 3.561 0 0 1 .5 2.682c0-.195-.285-.13-.285-.414' fill='%23fc0'/%3e%3cpath d='M554.161 264.883c.2-.85-.066-2.03-.72-2.157a2.156 2.156 0 0 0-.786-.068c-.347 0-.413.13-.565.436-.35.785.565 1.287 1.285 1.5.133.066.569.13.63.349.134.349.068.2.134.349-.134-.065-.134-.2-.285-.284-.5-.282-1-.348-1.74-.72-.5-.194-.57-1.372-.2-1.657a2.3 2.3 0 0 1 2.03 0 3.561 3.561 0 0 1 .5 2.682c0-.195-.285-.13-.285-.414z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M554.53 265.318c.938 0 2.026.349 2.093.938a3.64 3.64 0 0 1 0 .85c-.068.349-.129.5-.5.567-.847.2-1.217-.784-1.373-1.5a1.511 1.511 0 0 0-.195-.72c-.346-.13-.285-.066-.346-.13a.835.835 0 0 1 .195.283c.2.5.285 1.068.5 1.81.13.567 1.218.784 1.591.436a2.194 2.194 0 0 0 .285-1.94 3.319 3.319 0 0 0-2.6-.939c.194.066.128.414.345.35' fill='%23fc0'/%3e%3cpath d='M554.53 265.318c.938 0 2.026.349 2.093.938a3.64 3.64 0 0 1 0 .85c-.068.349-.129.5-.5.567-.847.2-1.217-.784-1.373-1.5a1.511 1.511 0 0 0-.195-.72c-.346-.13-.285-.066-.346-.13a.835.835 0 0 1 .195.283c.2.5.285 1.068.5 1.81.13.567 1.218.784 1.591.436a2.194 2.194 0 0 0 .285-1.94 3.319 3.319 0 0 0-2.6-.939c.194.066.128.414.345.35' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M554.725 264.948a.551.551 0 0 1 .134.632c-.134.2-.5.283-.63.13a.59.59 0 0 1-.351-.85c.195-.282.568-.065.847.067' fill='%23fc0'/%3e%3cpath d='M554.725 264.948a.551.551 0 0 1 .134.632c-.134.2-.5.283-.63.13a.59.59 0 0 1-.351-.85c.195-.282.568-.065.847.067z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M559.586 261.833a13.626 13.626 0 0 1-4.425 1 6.749 6.749 0 0 1-.5 2.226 6.57 6.57 0 0 1 2.6.065 9.614 9.614 0 0 1 2.31-3.334' fill='%23fc0'/%3e%3cpath d='M559.586 261.833a13.626 13.626 0 0 1-4.425 1 6.749 6.749 0 0 1-.5 2.226 6.57 6.57 0 0 1 2.6.065 9.614 9.614 0 0 1 2.31-3.334z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M557.65 263.05a5.141 5.141 0 0 1-1.747.418 2.969 2.969 0 0 1-.2.848 2.909 2.909 0 0 1 1 .065 2.961 2.961 0 0 1 .938-1.354z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M554.53 266.823s-.414-.785-.565-1.068c-.066-.13.063.937-.35 1.068a4.964 4.964 0 0 0-.63 2.593 2.16 2.16 0 0 0 2.092.066c.346-.2.128-.784-.067-1.286a2.287 2.287 0 0 0-.413-1.374' fill='%23fc0'/%3e%3cpath d='M554.53 266.823s-.414-.785-.565-1.068c-.066-.13.063.937-.35 1.068a4.964 4.964 0 0 0-.63 2.593 2.16 2.16 0 0 0 2.092.066c.346-.2.128-.784-.067-1.286a2.287 2.287 0 0 0-.413-1.374z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M554.1 266.19a4.308 4.308 0 0 1-.068.567c0-.2-.2.2-.279.284a5.548 5.548 0 0 0-.569 2.31m.7-2.092a6.863 6.863 0 0 0-.346 2.245l-.067-.065m.48-1.308a4.035 4.035 0 0 0-.195 1.373l.279.13' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M531.944 314.213c-1.875 1.658-5.274 2.528-5.86 2.97a10.84 10.84 0 0 1-6.084 2.31c-2.31.195-3.335-.419-5.646-.72-2.66-.285.283.128-2.223-.42a29.641 29.641 0 0 0-3.03-.93c-1.286-.352-2.6-.637-3.4-1.725a2.054 2.054 0 0 1-.634-1.44h-1.72c-.131.5.348 1.44.5 1.808a4.222 4.222 0 0 1 .415.659c.282.5.2.345.719.78a5.714 5.714 0 0 0 .785.632 2.418 2.418 0 0 0 1 .636 22.489 22.489 0 0 1 4.12 1.155c1.57.413.719.346 1.94.63a21.431 21.431 0 0 0 2.31.631c1.069.195 1.222.352 2.312.57a27.571 27.571 0 0 0 8.328.285 14.057 14.057 0 0 0 4.927-1.29c1.72-1.222 5.581-1.719 7.238-2.9a9.7 9.7 0 0 0 1.5-.854c1.59-1.373 2.963-1.72 4.71-2.813h-12.25' fill='%23004bb3'/%3e%3cpath d='M518.54 314.213c-1.222.636-1.81 1.658-5.21 2.746-1.287 0-2.748.57-3.99.5 1.526.352 1.526.57 2.747.854 2.528.563-.415.129 2.223.413 2.31.285 3.335.938 5.646.72a10.655 10.655 0 0 0 6.084-2.31c.563-.413 3.99-1.29 5.865-2.97H518.5' fill='%23fff'/%3e%3cpath d='M518.54 314.213h-13.56a2.13 2.13 0 0 0 .633 1.44c.784 1.072 2.091 1.374 3.4 1.724 1.373.28 2.812-.419 4.272-.419 3.554-1.064 3.99-2.242 5.211-2.745' fill='%23004bb3'/%3e%3cpath d='M531.666 314.213s2.371.135 2.528.135c.127 0 9.7-.135 9.7-.135' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M531.666 314.28s2.31.129 2.59.2c.2.068 9.637-.127 9.637-.127' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M531.666 314.37s2.31.195 2.59.279c.418 0 9.509-.279 9.509-.279' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M531.666 314.37s2.176.279 2.679.346c.5.133 9.352-.285 9.352-.285' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M531.6 314.43s2.16.286 2.745.42c.631.128 9.264-.42 9.264-.42' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M531.6 314.43s2.092.42 2.812.57c.781.129 9.2-.5 9.2-.5' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M531.531 314.43s2.093.5 2.964.721c.854.195 8.985-.564 8.985-.564' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M531.531 314.5s2.027.569 2.964.786c1 .128 8.918-.72 8.918-.72' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M531.531 314.587s1.943.63 3.03.848c1.156.2 8.852-.786 8.852-.786' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M531.531 314.587a28.846 28.846 0 0 0 3.12 1c1.155.2 8.634-.848 8.634-.848' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M531.531 314.649a16.306 16.306 0 0 0 3.181 1c1.29.285 8.483-.937 8.483-.937' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M544 314.213h-12.334' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M543.128 314.805s-6.954 1.284-8.416 1a16.527 16.527 0 0 1-3.248-1.155' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M529.94 319.643s-4.491.631-4.642.631c-.067 0-2.528-.194-2.66-.194l-2.18-.5' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M530.136 319.577s-4.554.72-4.838.636c-.2-.068-2.445-.2-2.594-.2-.13 0-2.029-.413-2.029-.413' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M530.443 319.447a44.022 44.022 0 0 1-5.145.632c-.285 0-2.377-.129-2.528-.129-.2 0-1.876-.434-1.876-.434' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M530.66 319.292a45.409 45.409 0 0 1-5.43.72c-.345 0-2.16-.128-2.46-.128-.2-.068-1.658-.352-1.658-.352' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M530.946 319.23a48.6 48.6 0 0 1-5.715.721c-.413-.068-2.093-.134-2.377-.2-.28 0-1.5-.194-1.5-.194' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M531.163 319.074s-4.994 1-6.016.787c-.5-.067-1.875-.128-2.31-.194a10.29 10.29 0 0 1-1.289-.2' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M531.443 319.013s-5.14 1-6.3.781c-.57-.061-1.814-.195-2.249-.195q-.607-.084-1.22-.128' fill='none' stroke='%230039a0' stroke-width='.232'/%3e%3cpath d='M531.666 318.923s-5.213 1.066-6.52.787a14 14 0 0 0-2.248-.194 7.5 7.5 0 0 0-1-.069' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='m529.634 319.794-4.336.57-2.66-.134-2.311-.564' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M531.944 318.8s-5.362 1.155-6.887.848a17.608 17.608 0 0 0-2.964-.284m-11.4.09s-2.748-1-4.21-1.508a4.693 4.693 0 0 1-2.9-3.616m7.417 4.247s-1.656-.636-3.03-1.155c-3.77-1.44-3.335-3.185-3.335-3.185' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M511.28 318.706s-2.245-.787-3.335-1.223a7.127 7.127 0 0 1-1.722-.78 4.09 4.09 0 0 1-1.286-1.222 2.932 2.932 0 0 1-.415-1.223' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='M511.5 318.923s-2.747-1-3.553-1.372a11.133 11.133 0 0 1-1.722-.72 14 14 0 0 1-1.374-1.156 9.457 9.457 0 0 1-.414-1.44' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M511.781 319.074s-3.335-1.155-3.836-1.373q-.858-.368-1.722-.72c-.2-.128-1.286-1.066-1.44-1.217a11.676 11.676 0 0 1-.435-1.506' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M512 319.292s-3.837-1.373-4.054-1.5c-.2-.069-1.592-.57-1.657-.632a15.145 15.145 0 0 1-1.5-1.222c-.066-.134-.567-1.59-.567-1.59' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='M511 319.447s-3.334-1.221-4.49-1.656a5.1 5.1 0 0 1-2.027-1.507 5.616 5.616 0 0 1-.785-1.936' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='M511.346 319.447s-4.056-1.438-4.927-1.807a5.436 5.436 0 0 1-1.875-1.44 7.108 7.108 0 0 1-.785-1.875' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M511.65 319.516s-4.708-1.814-5.21-1.943a7.673 7.673 0 0 1-1.809-1.373 7.313 7.313 0 0 1-.719-1.875' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M511.934 319.516s-5.276-2.033-5.582-2.094a12.1 12.1 0 0 1-1.721-1.289c-.13-.195-.633-1.808-.633-1.808' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='m512.218 319.516-5.93-2.25-1.592-1.222-.566-1.719' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M505.328 314.213s2.53.135 2.682.135c.13 0 10.071-.135 10.071-.135' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M505.328 314.28s2.464.129 2.682.2c.283.068 10-.127 10-.127' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M505.263 314.37s2.441.195 2.813.279c.348 0 9.853-.279 9.853-.279' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M505.263 314.37s2.377.279 2.9.346c.5.133 9.7-.285 9.7-.285' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M505.263 314.43s2.223.286 2.9.42c.633.128 9.635-.42 9.635-.42' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M505.263 314.43s2.158.42 2.965.57c.72.129 9.5-.5 9.5-.5' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M505.177 314.43s2.157.5 3.03.721c.936.195 9.416-.564 9.416-.564' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M505.177 314.5s2.092.569 3.117.786c1 .128 9.264-.72 9.264-.72' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M505.177 314.587s2 .63 3.117.848c1.155.2 9.2-.786 9.2-.786' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M505.177 314.587a32.2 32.2 0 0 0 3.182 1c1.286.2 9.07-.848 9.07-.848' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M505.177 314.649a15.46 15.46 0 0 0 3.247 1c1.374.285 8.917-.937 8.917-.937' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M518.169 314.213h-12.754' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M517.23 314.805s-7.171 1.284-8.7 1a17.741 17.741 0 0 1-3.4-1.155' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M503.214 314.213c-.131.5.348 1.44.5 1.814a4.215 4.215 0 0 1 .415.653c.283.5.195.346.72.781a5.943 5.943 0 0 0 .783.636 2.481 2.481 0 0 0 1 .631 22.871 22.871 0 0 1 4.12 1.156c1.569.413.72.346 1.94.63a20.545 20.545 0 0 0 2.31.63c1.07.2 1.221.352 2.311.57a27.56 27.56 0 0 0 8.326.285 13.908 13.908 0 0 0 4.927-1.29c1.724-1.216 5.582-1.718 7.238-2.9a9.013 9.013 0 0 0 1.508-.854c1.59-1.373 2.962-1.719 4.7-2.807' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M474.721 277.2c-1.438-3.554-2.964-10.944-2.9-12.623.349-6.89.2-8.984.85-16.087l7.172 8.2a23.291 23.291 0 0 0 0 5.274 26.769 26.769 0 0 0 .939 4.993l-6.082 10.221' fill='%23fff'/%3e%3cpath d='M480.8 266.975a28.277 28.277 0 0 1-.938-4.991 23.413 23.413 0 0 1 0-5.274l4.339 4.838-3.4 5.427m-18.2 6.671c-.065-1.591-.2-3.335-.2-4.12 0-4.992-.567-7.76 0-13.056.414-4.125 1.439-9.638 1.22-14.064a36.124 36.124 0 0 1 .2-3.773l8.85 9.857c-.63 7.1-.5 9.2-.849 16.087-.065 1.657 1.44 9.07 2.9 12.622l-1.875 3.183-10.224-6.736' fill='%23004bb3'/%3e%3cpath d='m484.858 260.9-20.817-23.07-.415.5 20.6 23.194.632-.63' fill='%23fc0'/%3e%3cpath d='m484.858 260.9-20.817-23.07-.415.5 20.6 23.194.632-.63' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M464.258 244.259s1.656 14.565 7.325 14' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M471.583 258.188c-2.813.135-4.71-3.465-5.712-6.8a53.357 53.357 0 0 1-1.592-7.177' fill='none' stroke='%2300056b' stroke-width='.232'/%3e%3cpath d='M471.583 258.188c-2.813-.128-4.71-3.773-5.647-6.887a42.121 42.121 0 0 1-1.657-7.11' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M471.67 258.127c-2.9-.2-4.774-3.99-5.712-6.96a59.13 59.13 0 0 1-1.656-7.013' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M471.67 258.06c-2.9-.413-4.774-4.209-5.647-6.954a67.931 67.931 0 0 1-1.744-7.02' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='M471.67 257.971c-2.9-.564-4.774-4.487-5.582-6.953a70.184 70.184 0 0 1-1.809-7.018' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M471.67 257.971c-2.812-.781-4.774-4.771-5.515-7.02a46.1 46.1 0 0 1-1.788-6.951' fill='none' stroke='%23002289' stroke-width='.232'/%3e%3cpath d='M471.736 257.91c-2.9-.938-4.84-5-5.582-7.11a50.891 50.891 0 0 1-1.787-6.888' fill='none' stroke='%2300288f' stroke-width='.232'/%3e%3cpath d='M471.736 257.91c-2.9-1.223-4.84-5.28-5.43-7.178a36.75 36.75 0 0 1-1.939-6.886' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M471.736 257.754c-2.813-1.284-4.84-5.426-5.43-7.105a41.4 41.4 0 0 1-1.939-6.892' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='M471.736 257.754c-2.813-1.5-4.84-5.8-5.364-7.172a42.026 42.026 0 0 1-2-6.8' fill='none' stroke='%230039a0' stroke-width='.232'/%3e%3cpath d='M471.736 257.686c-2.813-1.652-4.84-6.016-5.277-7.17a44.031 44.031 0 0 1-2.092-6.8' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M471.8 257.686c-2.9-1.875-4.926-6.295-5.362-7.322a49.254 49.254 0 0 1-2.092-6.735' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M464.346 243.606a39.674 39.674 0 0 0 2.157 6.67c.35.785 2.377 5.211 5.275 7.237' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M464.476 240.927s4.708 11.6 7.76 10.285' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M472.236 251.235c-1.286.569-3.248-1.719-4.84-4.487q-1.571-2.839-2.9-5.8' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M472.236 251.169c-1.155.5-3.182-1.653-4.773-4.488q-1.6-2.835-2.965-5.8' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M472.236 251.169c-1 .44-3.117-1.653-4.773-4.555-1.81-3.248-2.9-5.708-2.9-5.708' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M472.236 251.169c-.784.283-3.03-1.653-4.621-4.622-1.962-3.4-3.03-5.708-3.03-5.708' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M472.236 251.084c-.632.285-2.964-1.59-4.621-4.62-1.962-3.556-3.03-5.715-3.03-5.715' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M472.236 251.084c-.5.195-2.9-1.59-4.556-4.777-2.027-3.617-3.117-5.642-3.117-5.642' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M472.236 251.084c-.282.128-2.812-1.59-4.556-4.838-2.027-3.84-3.03-5.582-3.03-5.582' fill='none' stroke='%230039a0' stroke-width='.232'/%3e%3cpath d='M472.236 251.084a12.192 12.192 0 0 1-4.49-4.838c-2.093-4.057-3.118-5.648-3.118-5.648' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='M464.628 240.576a47.8 47.8 0 0 1 3.117 5.49 13.028 13.028 0 0 0 4.491 4.93m7.63 8 3.9 2.16m-3.684 1.612 3.684-.636' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='m479.715 259.215 4.053 1.943' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='m479.715 259.366 4.119 1.875' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='m479.715 259.583 4.119 1.658' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='m479.78 259.718 4.12 1.59' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='m479.78 259.868 4.12 1.44' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='m479.78 260.086 4.207 1.223' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='m479.78 260.237 4.207 1.154' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='m479.78 260.46 4.272.931' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='m479.78 260.589 4.272.847' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='m480.085 262.615 3.683-.565' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='m480.085 262.4 3.771-.413' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='m480 262.178 3.9-.284' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='m480 262.05 3.9-.134' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M479.931 261.833h4.056' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='m479.931 261.615 4.056.128' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='m479.931 261.391 4.12.286' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='m479.931 261.241 4.209.351' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='m479.931 261.023 4.274.57' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='m479.866 260.806 4.339.72' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M462.6 273.646c-.064-1.155-.13-2.377-.13-3.117.066-4.993-.633-8.764-.065-14.06.414-4.124 1.439-9.637 1.22-14.063a36.124 36.124 0 0 1 .2-3.773l20.384 22.915' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M462.6 261.894a13.9 13.9 0 0 0 .938 4.34c.938 1.875 3.772 4.621 7.02 6.671' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M470.645 272.926a27.9 27.9 0 0 1-5.276-4.49 18.456 18.456 0 0 1-1.722-2.245 17.978 17.978 0 0 1-.937-4.336' fill='none' stroke='%2300056b' stroke-width='.232'/%3e%3cpath d='M470.733 272.926a28.179 28.179 0 0 1-5.276-4.621 10.667 10.667 0 0 1-1.592-2.158 15.28 15.28 0 0 1-1.134-4.337' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M470.8 272.926a27.907 27.907 0 0 1-5.21-4.621 22.114 22.114 0 0 1-1.656-2.31 16.553 16.553 0 0 1-1.221-4.34' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M470.863 272.861a31.353 31.353 0 0 1-5.21-4.621 16.624 16.624 0 0 1-1.59-2.311 19.942 19.942 0 0 1-1.353-4.336' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='M470.95 272.861a33.516 33.516 0 0 1-5.144-4.709 16.715 16.715 0 0 1-1.592-2.31 19.369 19.369 0 0 1-1.439-4.339' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M471.016 272.861a30.149 30.149 0 0 1-5.058-4.84 12.208 12.208 0 0 1-1.591-2.244 19.643 19.643 0 0 1-1.592-4.34' fill='none' stroke='%23002289' stroke-width='.232'/%3e%3cpath d='M471.08 272.861a35.725 35.725 0 0 1-4.99-4.926 16.618 16.618 0 0 1-1.658-2.246 22.971 22.971 0 0 1-1.656-4.337' fill='none' stroke='%2300288f' stroke-width='.232'/%3e%3cpath d='M471.169 272.861a35.784 35.784 0 0 1-4.993-4.991 20.963 20.963 0 0 1-1.592-2.246 25.281 25.281 0 0 1-1.809-4.338' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M471.234 272.861a45.024 45.024 0 0 1-4.927-5.058 13.574 13.574 0 0 1-1.591-2.31 24.962 24.962 0 0 1-1.94-4.335' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='M471.3 272.861a41.287 41.287 0 0 1-4.84-5.144 16.953 16.953 0 0 1-1.592-2.311 39.447 39.447 0 0 1-2.093-4.338' fill='none' stroke='%230039a0' stroke-width='.232'/%3e%3cpath d='M471.386 272.861c-1.962-1.5-3.77-4.12-4.774-5.21a14.617 14.617 0 0 1-1.657-2.31c-1.068-1.873-2.158-4.34-2.158-4.34' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M471.452 272.774c-1.94-1.5-3.772-4.12-4.774-5.21a15.13 15.13 0 0 1-1.5-2.311c-1.221-1.942-2.377-4.335-2.377-4.335' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M462.754 260.806a60.413 60.413 0 0 0 4.054 6.67c.937 1 2.813 3.772 4.71 5.277' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M462.82 273.646c3.029 2.028 3.77 2.528 10 6.518l1.88-2.964s-.72-1.656-1-2.528' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M462.884 273.646c2.9 1.94 3.837 2.528 9.94 6.365l.066-.065 1.657-2.812a3.29 3.29 0 0 0-.283-.784q-.312-.819-.567-1.657' fill='none' stroke='%2300004f' stroke-width='.232'/%3e%3cpath d='M462.884 273.646c2.747 1.876 3.99 2.681 9.94 6.3l.066-.13c0-.066 1.592-2.813 1.592-2.813s-.066-.282-.2-.719c-.2-.5-.414-1.156-.567-1.591' fill='none' stroke='%23000053' stroke-width='.232'/%3e%3cpath d='M462.884 273.646c2.681 1.723 4.208 2.681 9.94 6.147l.066-.13c0-.066 1.439-2.747 1.439-2.747a1.962 1.962 0 0 0-.195-.72c-.132-.5-.35-1.068-.415-1.5' fill='none' stroke='%23000056' stroke-width='.232'/%3e%3cpath d='M462.884 273.581c2.616 1.722 4.338 2.811 9.94 6.082l.066-.066c0-.13 1.373-2.812 1.373-2.812a2.561 2.561 0 0 0-.13-.632 6.929 6.929 0 0 1-.414-1.439' fill='none' stroke='%23000058' stroke-width='.232'/%3e%3cpath d='M462.884 273.581c2.53 1.656 4.491 2.9 9.94 6.016l.066-.13c0-.2 1.287-2.812 1.287-2.812a1.9 1.9 0 0 0-.132-.567 5.377 5.377 0 0 1-.348-1.374' fill='none' stroke='%2300005c' stroke-width='.232'/%3e%3cpath d='M462.884 273.581c2.464 1.59 4.71 2.964 9.94 5.864l.132-.131c0-.2 1.068-2.747 1.068-2.747a.945.945 0 0 0-.065-.566 4.55 4.55 0 0 1-.284-1.286' fill='none' stroke='%23000060' stroke-width='.232'/%3e%3cpath d='M462.884 273.581c2.4 1.5 4.84 2.964 9.94 5.712l.132-.132c0-.2 1-2.747 1-2.747s.065-.13-.066-.5a11.292 11.292 0 0 1-.283-1.221' fill='none' stroke='%23000062' stroke-width='.232'/%3e%3cpath d='M462.884 273.581c2.246 1.439 4.993 3.03 9.94 5.646l.132-.131c0-.283.937-2.747.85-2.747 0 0 .131-.13 0-.5a6.88 6.88 0 0 1-.2-1.155' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M462.972 273.516a90.978 90.978 0 0 0 9.853 5.58l.131-.13c0-.283.785-2.748.785-2.748s.13-.065 0-.414a2.821 2.821 0 0 1-.131-1.068' fill='none' stroke='%2300056b' stroke-width='.232'/%3e%3cpath d='M462.972 273.516a72.127 72.127 0 0 0 9.853 5.427c.065 0 .131-.13.131-.13 0-.35.72-2.682.72-2.682a.446.446 0 0 0 .065-.414 1.693 1.693 0 0 1-.131-1' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M462.972 273.516a76.1 76.1 0 0 0 9.853 5.362c.065-.066.131-.131.131-.195 0-.285.567-2.595.567-2.595a.407.407 0 0 0 .13-.436 2.145 2.145 0 0 1-.13-.938' fill='none' stroke='%2300096f' stroke-width='.232'/%3e%3cpath d='M463.037 273.516a74.825 74.825 0 0 0 9.788 5.21l.131-.132c0-.414.5-2.68.5-2.68s.195-.066.13-.35a1.82 1.82 0 0 1-.065-.85' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M463.037 273.516a69.139 69.139 0 0 0 9.788 5.078l.131-.13c0-.436.414-2.595.349-2.681 0 0 .349-.066.2-.284-.13-.349 0-.349 0-.785' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M463.037 273.516a64.264 64.264 0 0 0 9.853 4.991l.066-.195c0-.415.349-2.6.283-2.6 0 0 .284-.065.2-.283-.13-.284 0-.284.066-.72' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M463.037 273.428a47.808 47.808 0 0 0 9.853 4.927c.066 0 .066-.2.066-.2 0-.414.2-2.53.2-2.595 0 0 .283 0 .2-.195-.13-.284.066-.284.131-.634' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='M463.037 273.428a46.134 46.134 0 0 0 9.853 4.773c.066 0 .066-.13.066-.13 0-.5.13-2.594.065-2.681 0 0 .414.065.283-.13-.064-.284.131-.2.2-.567' fill='none' stroke='%23001c82' stroke-width='.232'/%3e%3cpath d='M463.037 273.363a45.7 45.7 0 0 0 9.853 4.773c.066-.064.066-.2.131-.2 0-.566-.065-2.529-.065-2.594 0 0 .349.065.283-.13-.065-.283.131-.13.284-.5' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M463.037 273.363c1.286.85 6.518 3.836 9.853 4.621.066-.065.066-.13.131-.2a21.567 21.567 0 0 0-.2-2.594s.415.13.415-.066c-.132-.195.065-.065.282-.414' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M463.037 273.363c1.22.785 6.649 3.9 9.853 4.49.066 0 .131-.13.131-.195a15.021 15.021 0 0 0-.282-2.53s.5.066.413-.065c-.13-.195.13 0 .349-.349' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M463.1 273.363c1 .719 6.735 3.989 9.787 4.425.066-.065.131-.13.131-.2a24.235 24.235 0 0 0-.35-2.53s.5.066.351-.065c0-.195.283.066.413-.282' fill='none' stroke='%2300288f' stroke-width='.232'/%3e%3cpath d='M463.1 273.363c.937.632 6.888 4.054 9.787 4.272.066-.065.131-.13.131-.195a11.133 11.133 0 0 0-.5-2.53s.5.131.5 0c-.065-.2.283.131.414-.2' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M463.1 273.363c.85.5 7.106 4.054 9.853 4.207 0-.13.065-.2.065-.282a11.628 11.628 0 0 0-.567-2.53s.567.131.5.066c-.066-.2.283.195.5-.131' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M463.1 273.3c.784.5 7.238 4.207 9.853 4.12 0-.066.065-.2.065-.284a7.429 7.429 0 0 0-.72-2.463s.634.13.567 0c-.065-.065.35.349.567 0' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M463.1 273.3c.718.5 7.39 4.272 9.853 3.989 0-.066.065-.13.065-.2a8.225 8.225 0 0 0-.785-2.529s.567.195.567.13c-.065-.13.414.35.633 0' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='M463.1 273.3c.632.348 7.608 4.337 9.853 3.836a.655.655 0 0 0 .065-.195 7.635 7.635 0 0 0-.85-2.465v-.065s.633.283.567.2c0-.132.414.414.72.065' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M463.1 273.3c.5.282 7.76 4.337 9.853 3.77a.422.422 0 0 0 .065-.282 7.132 7.132 0 0 0-1-2.465s.72.285.633.2c0-.13.5.5.784.13' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='M463.168 273.3c.349.195 7.826 4.425 9.788 3.619.065-.067.065-.2.13-.284a8.378 8.378 0 0 0-1.155-2.464s.72.35.72.2c-.066 0 .5.633.784.284' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M463.168 273.3c.282.13 7.978 4.49 9.788 3.552a1.773 1.773 0 0 1 .13-.282 6.175 6.175 0 0 0-1.286-2.47s.784.285.719.285c0-.067.567.567.938.282' fill='none' stroke='%230042a8' stroke-width='.232'/%3e%3cpath d='M463.168 273.21c.2.13 8.109 4.621 9.788 3.466.065-.065.065-.13.13-.283 0-.85-1.285-2.311-1.373-2.377l.785.284c-.065-.065.567.633.85.349' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='M463.168 273.21c.13.065 8.327 4.709 9.788 3.335a.35.35 0 0 0 .13-.282c0-.938-1.373-2.312-1.5-2.377l.85.283s.566.786.937.5' fill='none' stroke='%230049af' stroke-width='.232'/%3e%3cpath d='M463.255 273.146s9.417 5.361 9.853 2.963c0-.937-1.59-2.31-1.59-2.31l.85.283s.631.85 1 .567' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M464.258 237.808c0-.938.5-2.026 1.155-2.026a4.925 4.925 0 0 1 .785.061c.35.134.414.285.5.636.132.781-.85 1.066-1.59 1.156-.2 0-.72-.068-.786.128-.2.285-.065.195-.2.285a.429.429 0 0 0 .283-.135c.633-.127 1.155-.127 1.94-.278.5-.068.85-1.156.567-1.591-.283-.351-1.591-.72-1.962-.42a3.15 3.15 0 0 0-1.155 2.468c.065-.194.349-.067.414-.284' fill='%23fc0'/%3e%3cpath d='M464.258 237.808c0-.938.5-2.026 1.155-2.026a4.925 4.925 0 0 1 .785.061c.35.134.414.285.5.636.132.781-.85 1.066-1.59 1.156-.2 0-.72-.068-.786.128-.2.285-.065.195-.2.285a.429.429 0 0 0 .283-.135c.633-.127 1.155-.127 1.94-.278.5-.068.85-1.156.567-1.591-.283-.351-1.591-.72-1.962-.42a3.15 3.15 0 0 0-1.155 2.468c.065-.194.349-.067.414-.284z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M463.756 238.092c-.85-.284-2.006-.134-2.223.413a5.648 5.648 0 0 0-.2.787.68.68 0 0 0 .437.715c.632.35 1.286-.5 1.57-1.156a1.483 1.483 0 0 1 .413-.714c.349-.068.284 0 .349-.068-.065.13-.2.2-.283.285-.284.5-.5.938-.938 1.653a1.154 1.154 0 0 1-1.656.067 2.252 2.252 0 0 1 .283-2.026 2.822 2.822 0 0 1 2.66-.195c-.131-.068-.2.284-.415.195' fill='%23fc0'/%3e%3cpath d='M463.756 238.092c-.85-.284-2.006-.134-2.223.413a3.882 3.882 0 0 0-.2.787.68.68 0 0 0 .437.715c.632.35 1.286-.5 1.57-1.156a1.483 1.483 0 0 1 .413-.714c.349-.068.284 0 .349-.068-.065.13-.2.2-.283.285-.284.5-.5.938-.938 1.653a1.154 1.154 0 0 1-1.656.067 2.252 2.252 0 0 1 .283-2.026 2.822 2.822 0 0 1 2.66-.195c-.131-.068-.2.284-.415.195z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M463.69 237.673c-.282 0-.348.42-.282.637 0 .194.348.345.566.284a.748.748 0 0 0 .567-.786c-.13-.352-.567-.195-.85-.135' fill='%23fc0'/%3e%3cpath d='M463.69 237.673c-.282 0-.348.42-.282.637 0 .194.348.345.566.284a.748.748 0 0 0 .567-.786c-.13-.352-.567-.195-.85-.135' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M459.68 233.532a15.319 15.319 0 0 0 3.99 2.032 5.785 5.785 0 0 0 0 2.244 5.536 5.536 0 0 0-2.53-.5 9.844 9.844 0 0 0-1.438-3.773' fill='%23fc0'/%3e%3cpath d='M459.68 233.532a15.319 15.319 0 0 0 3.99 2.032 5.785 5.785 0 0 0 0 2.244 5.536 5.536 0 0 0-2.53-.5 9.844 9.844 0 0 0-1.438-3.773z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M461.294 235.19a5.7 5.7 0 0 0 1.59.787 1.8 1.8 0 0 0 0 .848 2.815 2.815 0 0 0-1-.128 3.466 3.466 0 0 0-.566-1.507z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M463.386 239.549a11.331 11.331 0 0 0 .85-.937c.065-.129-.35.937.065 1.221a5.388 5.388 0 0 1 0 2.595 2.232 2.232 0 0 1-2.026-.345c-.284-.285.065-.855.282-1.29a5.224 5.224 0 0 1 .785-1.222' fill='%23fc0'/%3e%3cpath d='M463.386 239.549a11.331 11.331 0 0 0 .85-.937c.065-.129-.35.937.065 1.221a5.388 5.388 0 0 1 0 2.595 2.232 2.232 0 0 1-2.026-.345c-.284-.285.065-.855.282-1.29a5.224 5.224 0 0 1 .785-1.222z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M463.974 239.113c0 .068-.065.42-.065.5.065.195.283.284.349.569a13.243 13.243 0 0 1-.13 2.154m-.219-2.416a7.672 7.672 0 0 1-.065 2.46h.065m-.153-.937a2.006 2.006 0 0 0-.13.938c-.066-.062-.2.067-.283.067' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M501.624 326.9c.13 0 .282-.134.413-.195.349-.2 1-.2 1.22-.42 1-1.154.35-3.33-.13-4.7-.784-2.533-.85-4.844-1.439-7.238h-.065a55.114 55.114 0 0 1-1.5 7.238c-.35 1.373-1.069 3.55-.066 4.705.2.2.85.2 1.286.419.066.061.2.195.284.195' fill='%23fff'/%3e%3cpath d='M501.624 314.213c-.5 2.377-.633 4.839-1.5 7.394-.35 1.218-1 3.249-.2 4.42l-.066-.06h.066a3.169 3.169 0 0 1-1.069-.195c-.066-.069-.2-.069-.282-.2a1.8 1.8 0 0 0-.5-.5c-.2-.133-.5-.066-.719-.2-.065-.062-.13-.13-.2-.13a2.587 2.587 0 0 1-1.221-1.065 3.84 3.84 0 0 1-.066-1.221c.066-.286.2-.5.284-.788a5.751 5.751 0 0 1 .5-1.065 7.874 7.874 0 0 1 .567-1.156 190.615 190.615 0 0 1 .566-1c.066-.195.283-.285.415-.5.13-.128-.16 0-.006-.16a2.781 2.781 0 0 0 .358-.463c.065 0 .313-.1.313-.157.414-.72.73-.833 1.012-1.575a2.214 2.214 0 0 0 .2-1.155h1.5' fill='%23004bb3'/%3e%3cpath d='M500.9 314.28a34.94 34.94 0 0 1-1.5 5c-.566 1-2.813 2.808-1.374 5.709' fill='none' stroke='%23003' stroke-width='.232'/%3e%3cpath d='M501.056 314.28a34.94 34.94 0 0 1-1.5 5c-.633 1.066-2.835 2.963-1.286 5.86' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M501.121 314.28a39 39 0 0 1-1.5 5.146c-.567 1-2.812 2.963-1.22 5.864' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M501.273 314.28a34.292 34.292 0 0 1-1.525 5.146c-.633 1-2.812 3.03-1.221 6.016' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M501.34 314.28a35.98 35.98 0 0 1-1.5 5.212c-.567 1-2.747 3.115-1.155 6.079' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M501.405 314.28s-.85 4.275-1.5 5.275c-.566 1-2.68 3.185-1.067 6.15' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M500.838 314.28a38.373 38.373 0 0 1-1.5 4.928c-.567 1.066-2.9 2.9-1.374 5.71' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M500.75 314.37a34.783 34.783 0 0 1-1.59 4.838c-.568 1-2.9 2.9-1.374 5.71' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M500.6 314.37a27.385 27.385 0 0 1-1.592 4.838c-.5 1-2.811 2.813-1.286 5.71' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M500.533 314.37a21.653 21.653 0 0 1-1.656 4.772c-.5 1.071-2.813 2.9-1.287 5.714' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M500.4 314.37a25.7 25.7 0 0 1-1.592 4.772c-.567 1-2.812 2.9-1.286 5.714' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M501.624 314.213c.565 2.377.719 4.839 1.5 7.394.414 1.218 1.069 3.249.283 4.42l.01-.148a2.841 2.841 0 0 0 1.059-.216c.13-.069.195-.046.283-.18a2.5 2.5 0 0 1 .436-.409c.283-.134.567-.068.85-.2.066-.062.066-.13.13-.13a1.827 1.827 0 0 0 1.287-2.286 2.835 2.835 0 0 0-.283-.788 5.877 5.877 0 0 0-.5-1.065 8.08 8.08 0 0 0-.567-1.156 1.16 1.16 0 0 0-.283-.5 2.78 2.78 0 0 0-.284-.5c-.066-.195-.283-.285-.414-.5-.18-.32-.3-.281-.37-.438-.065 0-.092.063 0 0-.066 0-.168-.146-.256-.207a7.183 7.183 0 0 1-1.07-1.706 2.217 2.217 0 0 1-.2-1.156h-1.59' fill='%23004bb3'/%3e%3cpath d='M502.43 314.28a35.041 35.041 0 0 0 1.5 5c.567 1 2.813 2.808 1.286 5.709' fill='none' stroke='%23003' stroke-width='.232'/%3e%3cpath d='M502.276 314.28a28.091 28.091 0 0 0 1.592 5c.567 1.066 3.066 2.594 1.54 5.49' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M502.211 314.28a39 39 0 0 0 1.5 5.146c.567 1 2.885 2.8 1.293 5.7' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M502.06 314.28a36.435 36.435 0 0 0 1.59 5.146c.563 1 2.815 2.753 1.358 5.7-.007.013-.034.013-.04.027s.227-.251.04-.027' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M501.994 314.28s.936 4.209 1.59 5.212c.5 1 2.682 3.115 1.068 6.079' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M501.928 314.28a36.187 36.187 0 0 0 1.5 5.275c.567 1 2.682 3.185 1.068 6.15' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M502.5 314.28a30.09 30.09 0 0 0 1.591 4.928c.566 1.066 2.813 2.9 1.286 5.71' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M502.647 314.37a31.333 31.333 0 0 0 1.5 4.838c.566 1 2.9 2.9 1.373 5.71' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M502.713 314.37a27.5 27.5 0 0 0 1.59 4.838c.568 1 2.813 2.813 1.374 5.71' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M502.8 314.37a29.831 29.831 0 0 0 1.591 4.772c.567 1.071 2.9 2.9 1.374 5.714' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M502.93 314.37a25.7 25.7 0 0 0 1.592 4.772c.567 1 2.9 2.9 1.373 5.714' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M504.85 317.461a7.077 7.077 0 0 1 .642 1 4.6 4.6 0 0 1 .283.5 1.291 1.291 0 0 1 .284.5 10.474 10.474 0 0 1 .567 1.155 10.931 10.931 0 0 1 .5 1.066 5.762 5.762 0 0 1 .282.787 2.541 2.541 0 0 1-.064 1.217 2.48 2.48 0 0 1-1.22 1.071s-.067.062-.132.129c-.283.133-.566.066-.85.195a3.884 3.884 0 0 0-.436.5c-.065.134-.13.134-.283.195a2.678 2.678 0 0 1-1.068.2.417.417 0 0 1-.132.28c-.2.194-.85.194-1.22.418-.13.062-.283.195-.414.195-.066 0-.2-.133-.283-.195-.415-.2-1.069-.2-1.287-.419a.338.338 0 0 1-.13-.28 3.013 3.013 0 0 1-1.069-.2c-.065-.062-.2-.062-.282-.2a1.888 1.888 0 0 0-.5-.5c-.2-.129-.5-.062-.721-.195-.064-.068-.13-.129-.195-.129a2.573 2.573 0 0 1-1.222-1.051 3.78 3.78 0 0 1-.066-1.218c.066-.283.2-.5.283-.786a5.737 5.737 0 0 1 .5-1.066 7.873 7.873 0 0 1 .567-1.155 1.142 1.142 0 0 1 .283-.5 1.16 1.16 0 0 1 .284-.5 10.327 10.327 0 0 1 .645-.874' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M459.37 272.661c-.341 6.572-.192 8.481-.192 14.894a31.329 31.329 0 0 0 3.006 10.68l6.678-11.159h-.027a23.483 23.483 0 0 1-1.22-4.273 18.507 18.507 0 0 1-.2-4.812z' fill='%23fff'/%3e%3cpath d='M468.836 287.075a23.365 23.365 0 0 1-1.221-4.274 18.582 18.582 0 0 1-.2-4.84l4.927 3.184-3.466 5.93' fill='%23004bb3'/%3e%3cpath d='m472.825 280.4-23.283-15.216-.414.567 23.217 15.434.5-.785' fill='%23fc0'/%3e%3cpath d='m472.825 280.4-23.283-15.216-.414.567 23.217 15.434.5-.785z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M454.84 310.508a5.157 5.157 0 0 1-1.723-2.154 17.677 17.677 0 0 1-.936-3.471c-.2-1.066-.2-2.244-.5-3.334-.132-1.068-1.723-4.621-1.81-6.016-.131-4.622-1.657-7.76-1.286-12.753.282-3.9 1.155-9.2.72-13.276a30.771 30.771 0 0 1 .065-3.467l10 6.52c-.347 6.67-.194 8.545-.194 15a31.226 31.226 0 0 0 3.03 10.726l-7.324 12.25' fill='%23004bb3'/%3e%3cpath d='m462.078 298.236-7.326 12.25a5.488 5.488 0 0 1-1.808-2.155c-.5-1.657-.414-1.657-.85-3.465-.2-1.071-.2-2.248-.414-3.338-.283-1.068-1.81-4.622-1.876-6.017m-.043-.021c.066 1.373 1.591 4.84 1.875 5.93.2 1.067.2 2.244.414 3.334a23.237 23.237 0 0 0 .937 3.466 4.974 4.974 0 0 0 1.744 2.093l7.325-12.1' fill='none' stroke='%2300004b' stroke-width='.232'/%3e%3cpath d='M449.761 295.49c.066 1.373 1.591 4.773 1.81 5.864.282 1.068.282 2.245.566 3.333a29.441 29.441 0 0 0 .85 3.466 5.536 5.536 0 0 0 1.744 2.092s7.238-11.965 7.325-12.03m-12.295-2.725c.066 1.373 1.591 4.773 1.81 5.864.282 1 .282 2.158.566 3.25a28.667 28.667 0 0 0 .85 3.4 4.855 4.855 0 0 0 1.744 2.025c.066.067 7.238-11.748 7.325-11.813' fill='none' stroke='%2300004f' stroke-width='.232'/%3e%3cpath d='M449.761 295.49c.066 1.286 1.591 4.708 1.81 5.8.282 1.068.282 2.159.566 3.182a25.82 25.82 0 0 0 .85 3.4 5.626 5.626 0 0 0 1.744 2.093c.131 0 7.238-11.665 7.325-11.752m-12.295-2.725c.066 1.286 1.591 4.621 1.81 5.711.282 1 .282 2.158.566 3.185a15.4 15.4 0 0 0 .938 3.332 5.116 5.116 0 0 0 1.722 2.092c.065 0 7.106-11.53 7.238-11.6' fill='none' stroke='%23000051' stroke-width='.232'/%3e%3cpath d='M449.761 295.49c.066 1.286 1.5 4.556 1.81 5.646.282 1 .282 2.158.566 3.183a17.733 17.733 0 0 0 .938 3.337 4.986 4.986 0 0 0 1.722 2.026c.065.067 7.106-11.38 7.238-11.446m-12.275-2.747c.067 1.286 1.5 4.557 1.81 5.582.283 1.068.283 2.158.567 3.182a20.532 20.532 0 0 0 .938 3.247 4.532 4.532 0 0 0 1.722 2.027c.13.066 7.019-11.225 7.238-11.312' fill='none' stroke='%23000053' stroke-width='.232'/%3e%3cpath d='M449.761 295.49c.066 1.286 1.5 4.49 1.81 5.58.282 1 .282 2.093.566 3.118a25.181 25.181 0 0 0 .938 3.244 5.509 5.509 0 0 0 1.722 1.944c.13.066 7.019-11.1 7.238-11.161m-12.275-2.725c.067 1.22 1.5 4.425 1.81 5.428.283 1.068.283 2.158.567 3.182a21.934 21.934 0 0 0 .938 3.182 5.023 5.023 0 0 0 1.722 1.943c.13.06 7.019-10.945 7.238-11.01m-12.275-2.725c.067 1.22 1.5 4.425 1.81 5.428.283 1 .283 2.026.567 3.03a18.168 18.168 0 0 0 .938 3.184 4.568 4.568 0 0 0 1.722 1.936c.2.068 6.953-10.788 7.238-10.876' fill='none' stroke='%23000056' stroke-width='.232'/%3e%3cpath d='M449.761 295.49c.066 1.22 1.5 4.338 1.81 5.363.282 1 .282 2.092.566 3.03a28.323 28.323 0 0 0 .938 3.115 4.58 4.58 0 0 0 1.722 1.942c.2.066 6.953-10.66 7.238-10.725m-12.275-2.725c.067 1.22 1.5 4.273 1.81 5.275.283 1 .283 2.092.567 2.964a18.2 18.2 0 0 0 1 3.186 4.682 4.682 0 0 0 1.656 1.874c.284.129 6.955-10.443 7.238-10.574' fill='none' stroke='%23000058' stroke-width='.232'/%3e%3cpath d='M449.761 295.49c.066 1.22 1.5 4.273 1.81 5.275.282.938.282 1.94.566 2.9a19.051 19.051 0 0 0 1 3.115 5.423 5.423 0 0 0 1.656 1.942c.284.067 6.89-10.355 7.238-10.507m-12.273-2.725c.066 1.155 1.438 4.207 1.81 5.21.282.937.282 1.962.566 2.9a19.39 19.39 0 0 0 1 3.12 5.373 5.373 0 0 0 1.656 1.87c.284.067 6.89-10.221 7.238-10.353' fill='none' stroke='%2300005c' stroke-width='.232'/%3e%3cpath d='M449.761 295.49c.066 1.155 1.438 4.12 1.81 5.144.282.938.348 1.94.566 2.9a16.05 16.05 0 0 0 1 3.03 4.686 4.686 0 0 0 1.656 1.873c.35.068 6.89-10.07 7.238-10.222m-12.273-2.725c.066 1.068 1.438 4.054 1.81 5.057.282 1 .348 1.94.566 2.9a18.287 18.287 0 0 0 1 2.965 4.676 4.676 0 0 0 1.656 1.874c.35.129 6.89-9.918 7.238-10.071' fill='none' stroke='%2300005e' stroke-width='.232'/%3e%3cpath d='M449.761 295.425c.066 1.155 1.438 4.12 1.81 5.143.282.852.348 1.875.566 2.813a15.671 15.671 0 0 0 1 2.9 5.32 5.32 0 0 0 1.656 1.875c.35.133 6.8-9.785 7.238-9.917m-12.273-2.811a21.3 21.3 0 0 0 1.81 4.991c.282.938.348 1.94.566 2.813.5 1.5.5 1.5 1 2.965A4.622 4.622 0 0 0 454.8 308c.415.129 6.737-9.634 7.238-9.787m-12.273-2.79a22.413 22.413 0 0 0 1.81 4.991 26.158 26.158 0 0 0 .632 2.747 23.54 23.54 0 0 0 1 2.964 4.535 4.535 0 0 0 1.59 1.724c.5.129 6.737-9.483 7.239-9.636' fill='none' stroke='%23000060' stroke-width='.232'/%3e%3cpath d='M449.761 295.425c.066 1.155 1.352 3.9 1.81 4.926a26.216 26.216 0 0 0 .632 2.747 19.5 19.5 0 0 0 1 2.9 5.327 5.327 0 0 0 1.59 1.719c.5.134 6.737-9.35 7.239-9.482m-12.275-2.811a21.726 21.726 0 0 0 1.81 4.838 26.551 26.551 0 0 0 .633 2.747 20.244 20.244 0 0 0 1 2.81 6.005 6.005 0 0 0 1.656 1.814c.414.061 6.671-9.266 7.172-9.42' fill='none' stroke='%23000062' stroke-width='.232'/%3e%3cpath d='M449.761 295.425a22.88 22.88 0 0 0 1.81 4.838c.195.85.348 1.81.632 2.682a16.74 16.74 0 0 0 1 2.747 4.681 4.681 0 0 0 1.656 1.725c.5.194 6.6-8.984 7.172-9.2m-12.273-2.79a21.127 21.127 0 0 0 1.81 4.773c.195.85.348 1.809.632 2.682a15.744 15.744 0 0 0 1.067 2.745 4.182 4.182 0 0 0 1.592 1.657c.5.195 6.6-8.85 7.172-9.067' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M449.761 295.425a20.652 20.652 0 0 0 1.81 4.708 23.344 23.344 0 0 0 .632 2.594 12.569 12.569 0 0 0 1.067 2.747 4.505 4.505 0 0 0 1.592 1.72c.5.133 6.6-8.761 7.172-8.98m-12.273-2.79a19.992 19.992 0 0 0 1.81 4.622 23.738 23.738 0 0 0 .632 2.616 20.884 20.884 0 0 0 1.067 2.745 4.831 4.831 0 0 0 1.592 1.658c.567.128 6.517-8.632 7.172-8.85' fill='none' stroke='%23000268' stroke-width='.232'/%3e%3cpath d='M449.761 295.425a19.336 19.336 0 0 0 1.81 4.621c.195.784.348 1.656.632 2.528a18.974 18.974 0 0 0 1.067 2.683 4.353 4.353 0 0 0 1.592 1.657c.567.195 6.453-8.481 7.172-8.7m-12.273-2.79a16.583 16.583 0 0 0 1.81 4.491 14.859 14.859 0 0 0 .718 2.594 10.409 10.409 0 0 0 1 2.591 4.251 4.251 0 0 0 1.592 1.658c.566.2 6.451-8.325 7.171-8.543m-12.295-2.79a17.489 17.489 0 0 0 1.81 4.49 12.2 12.2 0 0 0 .718 2.463 13.1 13.1 0 0 0 1 2.594 4.317 4.317 0 0 0 1.592 1.657c.63.129 6.451-8.11 7.171-8.414' fill='none' stroke='%2300056b' stroke-width='.232'/%3e%3cpath d='M449.761 295.425a18.388 18.388 0 0 0 1.81 4.424 12.21 12.21 0 0 0 .718 2.464 15.508 15.508 0 0 0 1 2.591 5.438 5.438 0 0 0 1.592 1.592c.63.2 6.451-7.976 7.171-8.26m-12.295-2.811a17.505 17.505 0 0 0 1.81 4.338 13.571 13.571 0 0 0 .718 2.462 13.082 13.082 0 0 0 1 2.53 4.117 4.117 0 0 0 1.592 1.59c.718.195 6.386-7.825 7.171-8.109' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M449.761 295.425a17.505 17.505 0 0 0 1.81 4.338 19.575 19.575 0 0 0 .718 2.376 13.11 13.11 0 0 0 1.069 2.526 3.815 3.815 0 0 0 1.5 1.507c.72.194 6.388-7.674 7.172-7.979m-12.273-2.768a20.683 20.683 0 0 0 1.722 4.272c.283.72.5 1.591.785 2.376a11.084 11.084 0 0 0 1.068 2.464 5.516 5.516 0 0 0 1.5 1.59c.72.134 6.387-7.608 7.172-7.891' fill='none' stroke='%2300096f' stroke-width='.232'/%3e%3cpath d='M449.827 295.425a13.976 13.976 0 0 0 1.656 4.207c.283.784.5 1.59.785 2.31a10.957 10.957 0 0 0 1.068 2.46 4.293 4.293 0 0 0 1.5 1.508c.785.284 6.3-7.39 7.172-7.674m-12.186-2.811a14.447 14.447 0 0 0 1.657 4.12c.283.785.5 1.591.785 2.31a15.292 15.292 0 0 0 1.068 2.465 4.126 4.126 0 0 0 1.5 1.439c.785.28 6.3-7.24 7.172-7.544' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M449.827 295.425a14.074 14.074 0 0 0 1.656 4.054c.283.784.5 1.592.785 2.31a12.493 12.493 0 0 0 1.068 2.4 4.974 4.974 0 0 0 1.5 1.5c.785.195 6.3-7.172 7.172-7.456m-12.186-2.811a13.731 13.731 0 0 0 1.657 3.989c.283.784.5 1.592.785 2.31.414 1.156.567 1.221 1.068 2.376a6.638 6.638 0 0 0 1.5 1.441c.85.195 6.234-7.021 7.172-7.325m-12.186-2.791a13.731 13.731 0 0 0 1.657 3.989c.283.719.5 1.5.785 2.244a20.21 20.21 0 0 0 1.068 2.312 5.586 5.586 0 0 0 1.591 1.437c.85.285 6.147-6.887 7.107-7.17' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='M449.827 295.425c0 .85 1.154 3.03 1.656 3.9.283.72.5 1.5.785 2.246a14.748 14.748 0 0 0 1.155 2.245 4.134 4.134 0 0 0 1.5 1.44c.85.195 6.082-6.671 7.107-7.021m-12.207-2.811a13.705 13.705 0 0 0 1.656 3.836c.283.72.5 1.5.785 2.159a12.1 12.1 0 0 0 1.155 2.31 4.482 4.482 0 0 0 1.5 1.37c.85.284 6.082-6.514 7.107-6.885' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M449.827 295.425c0 .784 1.154 2.9 1.656 3.836.283.632.5 1.373.785 2.093a12.214 12.214 0 0 0 1.155 2.245 4.5 4.5 0 0 0 1.5 1.373c.938.285 6.082-6.365 7.107-6.736m-12.207-2.811a10.2 10.2 0 0 0 1.656 3.683c.283.72.5 1.5.785 2.159a10.91 10.91 0 0 0 1.155 2.158 4.5 4.5 0 0 0 1.5 1.374c.938.284 6.017-6.235 7.107-6.584' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M449.827 295.425a10.9 10.9 0 0 0 1.656 3.683c.283.633.5 1.439.785 2.093a13 13 0 0 0 1.155 2.158 4.207 4.207 0 0 0 1.5 1.284c.938.285 6.017-6.079 7.107-6.45m-12.207-2.768a10.632 10.632 0 0 0 1.656 3.618c.283.72.5 1.373.785 2.093.5 1 .632 1.068 1.155 2.093a5.707 5.707 0 0 0 1.5 1.374c1 .28 6.017-6.017 7.107-6.367' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='M449.827 295.425a10.353 10.353 0 0 0 1.656 3.552c.283.634.5 1.374.785 2.094.5 1 .632 1.068 1.155 2.092a6.556 6.556 0 0 0 1.5 1.284c1 .285 5.93-5.861 7.107-6.232m-12.207-2.79a8.821 8.821 0 0 0 1.656 3.465 18.756 18.756 0 0 0 .85 2.028 17.2 17.2 0 0 0 1.068 2.092 4.23 4.23 0 0 0 1.5 1.221c1 .35 5.93-5.645 7.106-6.016m-12.186-2.79a10.122 10.122 0 0 0 1.657 3.465c.283.633.5 1.286.85 1.94a10.414 10.414 0 0 0 1.156 2.027 5.648 5.648 0 0 0 1.438 1.287c1.069.28 5.865-5.58 7.107-5.93' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M449.827 295.425a9.364 9.364 0 0 0 1.656 3.4c.283.566.5 1.285.85 1.94a9.241 9.241 0 0 0 1.156 1.94 5.643 5.643 0 0 0 1.438 1.286c1.069.351 5.865-5.428 7.107-5.8m-12.207-2.767a9.126 9.126 0 0 0 1.656 3.334 18.061 18.061 0 0 0 .85 1.875 10.414 10.414 0 0 0 1.156 2.027 5.78 5.78 0 0 0 1.438 1.221c1.156.284 5.865-5.21 7.107-5.646' fill='none' stroke='%23001c82' stroke-width='.232'/%3e%3cpath d='M449.827 295.425a9.653 9.653 0 0 0 1.656 3.334c.283.567.5 1.222.85 1.81a8.215 8.215 0 0 0 1.22 2.026 4.362 4.362 0 0 0 1.374 1.157c1.156.348 5.8-5.058 7.107-5.5m-12.207-2.832a8.621 8.621 0 0 0 1.656 3.182 18.045 18.045 0 0 0 .85 1.874 9.58 9.58 0 0 0 1.22 1.941 4.369 4.369 0 0 0 1.374 1.155c1.156.35 5.8-4.926 7.107-5.362' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a8.737 8.737 0 0 0 1.656 3.27c.283.566.5 1.22.85 1.81a9.165 9.165 0 0 0 1.22 1.873 4.362 4.362 0 0 0 1.374 1.157c1.221.349 5.8-4.775 7.107-5.211m-12.207-2.9a8.3 8.3 0 0 0 1.656 3.184c.283.566.5 1.22.85 1.81a9.457 9.457 0 0 0 1.22 1.809 3.662 3.662 0 0 0 1.44 1.155c1.155.349 5.646-4.622 7.02-5.058' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a6.942 6.942 0 0 0 1.656 3.117c.283.567.5 1.22.85 1.81a16.674 16.674 0 0 0 1.22 1.81 5.192 5.192 0 0 0 1.44 1.068c1.155.414 5.646-4.426 7.02-4.927m-12.187-2.878a7.038 7.038 0 0 0 1.657 3.03 13.921 13.921 0 0 0 .85 1.722 16.674 16.674 0 0 0 1.22 1.81 5.531 5.531 0 0 0 1.44 1.155c1.22.349 5.646-4.338 7.02-4.84m-12.187-2.877a7.038 7.038 0 0 0 1.657 3.03c.283.5.5 1.155.85 1.657a14.774 14.774 0 0 0 1.22 1.81 6.873 6.873 0 0 0 1.44 1.067c1.286.349 5.646-4.207 7.02-4.709' fill='none' stroke='%23002289' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a7.511 7.511 0 0 0 1.656 2.965c.283.5.5 1.068.85 1.656a21 21 0 0 0 1.22 1.723 3.943 3.943 0 0 0 1.44 1c1.286.414 5.582-3.99 7.02-4.49m-12.187-2.857a6.923 6.923 0 0 0 1.657 2.9c.283.567.5 1.069.85 1.656a9.169 9.169 0 0 0 1.286 1.658 4.117 4.117 0 0 0 1.374 1.068c1.286.414 5.494-3.9 7.02-4.426' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a7.794 7.794 0 0 0 1.656 2.9c.283.5.5 1 .85 1.592a7.042 7.042 0 0 0 1.286 1.592 4.1 4.1 0 0 0 1.374 1.067c1.373.414 5.494-3.77 7.02-4.272m-12.187-2.878a6.8 6.8 0 0 0 1.657 2.747c.283.5.5 1.155.85 1.656.5.72.72.85 1.286 1.592a6.181 6.181 0 0 0 1.374 1c1.373.348 5.494-3.619 7.02-4.12' fill='none' stroke='%2300288f' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a6.38 6.38 0 0 0 1.656 2.747 17.16 17.16 0 0 0 .85 1.5c.5.785.784.938 1.286 1.657a4.025 4.025 0 0 0 1.439.938c1.286.414 5.363-3.466 6.954-3.99m-12.186-2.855a5.875 5.875 0 0 0 1.657 2.68 17.045 17.045 0 0 0 .85 1.5c.5.72.784.85 1.286 1.592a5.158 5.158 0 0 0 1.439.938c1.373.414 5.363-3.336 6.954-3.837' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a5.945 5.945 0 0 0 1.59 2.594c.35.5.633 1 1 1.5a11.474 11.474 0 0 0 1.22 1.5 5.1 5.1 0 0 0 1.44.937c1.373.414 5.361-3.182 6.953-3.77m-12.207-2.77a5.925 5.925 0 0 0 1.59 2.53c.35.5.633 1 1 1.439a7.681 7.681 0 0 0 1.22 1.5 4.932 4.932 0 0 0 1.44 1c1.373.348 5.361-3.117 6.953-3.685m-12.207-2.79a5.642 5.642 0 0 0 1.59 2.463c.35.5.633 1 1 1.44a8.328 8.328 0 0 0 1.286 1.5 3.26 3.26 0 0 0 1.35.849c1.44.5 5.3-2.811 6.955-3.466' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a5.642 5.642 0 0 0 1.59 2.463c.35.415.633.938 1 1.373a8.678 8.678 0 0 0 1.286 1.439 4.683 4.683 0 0 0 1.35.938c1.44.414 5.212-2.747 6.955-3.4m-12.186-2.813a5.524 5.524 0 0 0 1.591 2.4c.35.415.633.938 1 1.352a12.484 12.484 0 0 0 1.286 1.44 9.628 9.628 0 0 0 1.35.85c1.5.414 5.212-2.594 6.955-3.25' fill='none' stroke='%23002f96' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a4.919 4.919 0 0 0 1.59 2.31c.35.437.633.939 1 1.374.414.566.784.784 1.286 1.374a5.879 5.879 0 0 0 1.35.85c1.5.413 5.212-2.463 6.955-3.118m-12.186-2.79a5.137 5.137 0 0 0 1.591 2.245 15.526 15.526 0 0 0 1 1.286 6.3 6.3 0 0 0 1.373 1.374 4.124 4.124 0 0 0 1.286.85c1.591.5 5.145-2.31 6.954-2.965' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a5.671 5.671 0 0 0 1.59 2.245c.35.414.633.786 1 1.221a7.084 7.084 0 0 0 1.373 1.286 3.467 3.467 0 0 0 1.286.85c1.591.415 5.145-2.157 6.954-2.812m-12.207-2.79a5.4 5.4 0 0 0 1.59 2.158c.35.35.633.785 1 1.221a7.054 7.054 0 0 0 1.381 1.284 4.829 4.829 0 0 0 1.286.785c1.591.5 5.145-2.028 6.954-2.681' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a4.9 4.9 0 0 0 1.59 2.092c.35.35.633.873 1 1.222a9.315 9.315 0 0 0 1.373 1.22 3.589 3.589 0 0 0 1.286.785c1.656.5 5.145-1.874 6.954-2.53m-12.207-2.79a4.317 4.317 0 0 0 1.59 2.028c.35.414.633.85 1 1.222a15.69 15.69 0 0 0 1.373 1.22 4.684 4.684 0 0 0 1.286.72c1.656.5 5.058-1.723 6.954-2.378m-12.207-2.811a4.125 4.125 0 0 0 1.59 1.94 12.259 12.259 0 0 0 1 1.221c.414.5.85.632 1.373 1.155a4.651 4.651 0 0 0 1.286.72c1.744.5 5.058-1.591 6.954-2.246' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a5.006 5.006 0 0 0 1.59 1.94 10.939 10.939 0 0 0 1 1.068 8.917 8.917 0 0 0 1.373 1.156 7.546 7.546 0 0 0 1.286.785c1.744.5 5.058-1.44 6.954-2.16m-12.207-2.79a5.121 5.121 0 0 0 1.59 1.876 11.054 11.054 0 0 0 1 1.068 7.5 7.5 0 0 0 1.373 1.069 2.711 2.711 0 0 0 1.286.718c1.744.567 4.992-1.22 6.954-1.94' fill='none' stroke='%230039a0' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a5.131 5.131 0 0 0 1.59 1.81 11.292 11.292 0 0 0 1 1.068 10.19 10.19 0 0 0 1.439 1.068 5.534 5.534 0 0 0 1.286.72c1.722.5 4.926-1.156 6.888-1.876m-12.207-2.79a4.755 4.755 0 0 0 1.5 1.722l1.068 1.068c.5.436.85.633 1.44 1.069a5.476 5.476 0 0 0 1.285.632c1.723.5 4.84-1 6.89-1.722' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a5.6 5.6 0 0 0 1.5 1.722 14.273 14.273 0 0 1 1.068 1c.5.413.938.566 1.44 1a5.476 5.476 0 0 0 1.285.632c1.723.566 4.84-.85 6.89-1.591m-12.187-2.77a5.64 5.64 0 0 0 1.5 1.657c.35.284.72.633 1.156 1 .414.35.85.567 1.374.939a3.934 3.934 0 0 0 1.286.63c1.809.5 4.84-.718 6.888-1.438' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a5.583 5.583 0 0 0 1.5 1.592c.35.282.72.632 1.156.937a6.092 6.092 0 0 0 1.374.937 4.679 4.679 0 0 0 1.286.632c1.809.567 4.773-.567 6.888-1.286m-12.207-2.812a4.691 4.691 0 0 0 1.5 1.5 8.369 8.369 0 0 0 1.156.937c.414.349.85.567 1.374.938a13.663 13.663 0 0 0 1.286.567c1.809.566 4.773-.415 6.888-1.156m-12.207-2.79a5.057 5.057 0 0 0 1.5 1.439c.35.282.72.567 1.156.937a7.648 7.648 0 0 0 1.374.85c.414.2.85.414 1.286.633 1.875.5 4.773-.35 6.888-1.07' fill='none' stroke='%230042a8' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a6.091 6.091 0 0 0 1.5 1.439c.35.2.72.5 1.156.785a7.476 7.476 0 0 0 1.439.937 7.964 7.964 0 0 0 1.22.5c1.941.566 4.71-.132 6.889-.85m-12.207-2.813a11.879 11.879 0 0 0 2.659 2.158 6.357 6.357 0 0 0 1.439.85 4.355 4.355 0 0 0 1.22.5c1.941.632 4.71 0 6.889-.72' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a9.156 9.156 0 0 0 1.5 1.286c.35.2.72.567 1.156.785a5.694 5.694 0 0 0 1.439.784c.349.2.85.35 1.22.567 1.941.567 4.622.13 6.889-.632m-12.207-2.79a7.334 7.334 0 0 0 1.5 1.22 13.46 13.46 0 0 0 1.156.786c.414.282.937.5 1.439.784.414.131.85.349 1.22.5a12.183 12.183 0 0 0 6.889-.5' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a5.256 5.256 0 0 0 1.5 1.22 13.08 13.08 0 0 1 1.156.72 8.946 8.946 0 0 0 1.439.72c.414.195.85.348 1.22.5a12.284 12.284 0 0 0 6.889-.349m-12.207-2.812a18.167 18.167 0 0 0 1.5 1.155c.35.2.72.414 1.221.72.35.195.85.414 1.352.632.415.195.85.348 1.22.5a11.665 11.665 0 0 0 6.89-.2' fill='none' stroke='%230049af' stroke-width='.232'/%3e%3cpath d='M449.827 295.337a11.288 11.288 0 0 0 1.5 1.068 12.55 12.55 0 0 0 1.221.633 6.163 6.163 0 0 0 1.352.719c.415.13.85.282 1.22.414a11.978 11.978 0 0 0 6.89-.065m-12.187-2.77s6.3 4.927 12.252 2.813' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M449.543 275.892s1.22 7.913 1.722 9.07c.348 1 2.9 5.491 6.67 6.516' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M449.543 275.892s1.286 7.825 1.81 8.915c.413 1 2.746 5.364 6.67 6.671' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M449.608 275.825s1.374 7.762 1.875 8.982a13.21 13.21 0 0 0 6.517 6.671' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M449.608 275.825s1.438 7.762 1.94 8.917a13.506 13.506 0 0 0 6.452 6.671' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M449.608 275.825s1.5 7.674 2.027 8.765a14.687 14.687 0 0 0 6.366 6.8' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M449.608 275.825s1.591 7.609 2.158 8.765a15.148 15.148 0 0 0 6.235 6.8' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M449.608 275.825s1.657 7.543 2.246 8.7a16 16 0 0 0 6.147 6.8' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M449.674 275.825s1.656 7.457 2.245 8.634a17.11 17.11 0 0 0 6.081 6.889' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M449.674 275.825s1.809 7.391 2.31 8.547c.567 1.067 1.744 3.683 6.083 6.954' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M449.761 275.76s1.81 7.456 2.376 8.547c.5 1.067 1.5 3.4 5.93 7.02' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M449.761 275.76s1.875 7.326 2.442 8.48c.566 1.069 1.373 3.184 5.864 7.02' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M449.761 275.76s2.027 7.326 2.528 8.415c.567 1.069 1.286 2.965 5.865 7.02' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M449.761 275.674s2.093 7.324 2.594 8.393c.567 1.068 1.156 2.747 5.776 7.106' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M450.045 271.03s1 11.162 8.98 14.214' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M450.045 271.03a32.315 32.315 0 0 0 2.092 7.02 13.478 13.478 0 0 0 6.888 7.171' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M450.11 271.03a27.714 27.714 0 0 0 2.093 7.02 14.707 14.707 0 0 0 6.8 7.171' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M450.11 271.03a28.157 28.157 0 0 0 2.158 6.888c1.155 2.312 3.183 5.582 6.736 7.238' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M450.11 271.03a27.905 27.905 0 0 0 2.31 6.888c1 2.093 3.03 5.494 6.584 7.173' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M450.11 271.03a31.6 31.6 0 0 0 2.376 6.8c.937 1.876 3.03 5.43 6.517 7.238' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M450.2 271.03a29.806 29.806 0 0 0 2.4 6.736 17.306 17.306 0 0 0 6.452 7.326' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M450.2 270.964a35.374 35.374 0 0 0 2.464 6.737c.784 1.5 2.9 5.276 6.365 7.325' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M450.2 270.964a30.745 30.745 0 0 0 2.616 6.671c.72 1.44 2.747 5.277 6.235 7.39' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M450.262 270.964a28.306 28.306 0 0 0 2.594 6.671c.634 1.156 2.66 5.145 6.147 7.39' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M450.262 270.964a35.8 35.8 0 0 0 2.66 6.605c.633 1 2.594 5.06 6.082 7.391' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M450.262 270.964a32.025 32.025 0 0 0 2.813 6.519c.5.785 2.462 4.992 5.93 7.455' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M450.262 270.964a30.066 30.066 0 0 0 2.9 6.453c.414.633 2.375 4.993 5.864 7.543' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M450.11 267.913s2.31 8.981 8.85 11.161' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M450.11 267.913a24.726 24.726 0 0 0 3.03 6.235 12.044 12.044 0 0 0 5.8 4.926' fill='none' stroke='%2300056b' stroke-width='.232'/%3e%3cpath d='M450.11 267.913a24.568 24.568 0 0 0 3.03 6.147c1.5 2.093 3.554 4.273 5.8 4.993' fill='none' stroke='%2300096f' stroke-width='.232'/%3e%3cpath d='M450.11 267.848a24.906 24.906 0 0 0 3.183 6.152c1.5 2.158 3.618 4.338 5.646 5.058' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='M450.2 267.782a25.035 25.035 0 0 0 3.182 6.234c1.506 2.093 3.772 4.426 5.581 5.058' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='M450.2 267.782a25.8 25.8 0 0 0 3.248 6.083c1.591 2.223 3.837 4.556 5.494 5.144' fill='none' stroke='%23001c82' stroke-width='.232'/%3e%3cpath d='M450.2 267.782a27.84 27.84 0 0 0 3.248 6.017c1.722 2.31 4.055 4.708 5.494 5.21' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M450.2 267.7a25.115 25.115 0 0 0 3.4 6.017c1.723 2.31 4.055 4.84 5.363 5.275' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M450.262 267.7a24.248 24.248 0 0 0 3.4 5.929c1.745 2.377 4.208 4.927 5.277 5.276' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M450.262 267.7a26.509 26.509 0 0 0 3.466 5.865c1.788 2.376 4.273 5.055 5.211 5.361' fill='none' stroke='%23002f96' stroke-width='.232'/%3e%3cpath d='M450.262 267.63a25.1 25.1 0 0 0 3.554 5.864c1.809 2.375 4.425 5.21 5.143 5.427' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='M450.262 267.63a30.293 30.293 0 0 0 3.62 5.864 36.75 36.75 0 0 0 5.057 5.427' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='M450.262 267.63a32.839 32.839 0 0 0 3.684 5.71 49.01 49.01 0 0 0 4.993 5.582' fill='none' stroke='%230042a8' stroke-width='.232'/%3e%3cpath d='M450.262 267.564a30.756 30.756 0 0 0 3.771 5.711 50.2 50.2 0 0 0 4.993 5.646' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M450.262 267.476a37.055 37.055 0 0 0 3.837 5.712c2.027 2.6 4.927 5.647 4.927 5.647m8.436 1.35 4.426.786m-3.99 2.55 3.99-1.656' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='m467.4 280.251 4.425.72' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='m467.4 280.47 4.49.5' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='m467.463 280.622 4.49.349' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='m467.463 280.753 4.49.282' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='m467.463 280.971 4.556.065' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='m467.463 281.124 4.556-.066' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='m467.463 281.276 4.621-.2' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='m467.463 281.406 4.708-.282' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='m467.528 281.56 4.622-.415' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='m467.9 283.3 4.055-1.5' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='m467.81 283.15 4.121-1.438' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='m467.81 283.02 4.209-1.374' fill='none' stroke='%2300359c' stroke-width='.232'/%3e%3cpath d='m467.745 282.8 4.274-1.22' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='m467.745 282.65 4.34-1.156' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='m467.745 282.5 4.426-1.07' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='m467.68 282.28 4.491-.851' fill='none' stroke='%2300167c' stroke-width='.232'/%3e%3cpath d='m467.68 282.061 4.556-.785' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='m467.68 281.93 4.556-.654' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='m467.616 281.777 4.708-.565' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M454.84 310.508a5.157 5.157 0 0 1-1.723-2.154 17.677 17.677 0 0 1-.936-3.471c-.2-1.066-.2-2.244-.5-3.334-.132-1.068-1.744-4.621-1.81-6.016-.131-4.622-1.657-7.76-1.286-12.753.282-3.9 1.155-9.2.72-13.276a30.771 30.771 0 0 1 .065-3.467l22.976 15.217' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='M449.172 264.883c-.13-.85.065-2.03.72-2.157a2.362 2.362 0 0 1 .784-.068c.349 0 .415.13.633.436.283.785-.633 1.287-1.286 1.5-.2.066-.633.13-.72.349-.13.349-.066.2-.13.349.13-.065.13-.2.283-.284.5-.282 1-.348 1.722-.72.567-.194.633-1.372.283-1.657a2.292 2.292 0 0 0-2.027 0 3.214 3.214 0 0 0-.567 2.682c0-.195.349-.13.283-.414' fill='%23fc0'/%3e%3cpath d='M449.172 264.883c-.13-.85.065-2.03.72-2.157a2.152 2.152 0 0 1 .784-.068c.349 0 .415.13.633.436.283.785-.633 1.287-1.286 1.5-.2.066-.633.13-.72.349-.13.349-.066.2-.13.349.13-.065.13-.2.283-.284.5-.282 1-.348 1.722-.72.567-.194.633-1.372.283-1.657a2.292 2.292 0 0 0-2.027 0 3.214 3.214 0 0 0-.567 2.682c0-.195.349-.13.283-.414z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M448.8 265.318c-.85 0-2.028.349-2.094.938a3.7 3.7 0 0 0 0 .85c.066.349.2.5.5.567.85.2 1.22-.784 1.374-1.5 0-.13 0-.567.195-.72.35-.13.284-.066.35-.13a.786.786 0 0 0-.2.283c-.195.5-.195 1.068-.5 1.81-.13.567-1.22.784-1.591.436a2 2 0 0 1-.283-1.94 3.394 3.394 0 0 1 2.594-.939c-.13.066-.13.414-.35.35' fill='%23fc0'/%3e%3cpath d='M448.8 265.318c-.85 0-2.028.349-2.094.938a3.7 3.7 0 0 0 0 .85c.066.349.2.5.5.567.85.2 1.22-.784 1.374-1.5 0-.13 0-.567.195-.72.35-.13.284-.066.35-.13a.786.786 0 0 0-.2.283c-.195.5-.195 1.068-.5 1.81-.13.567-1.22.784-1.591.436a2 2 0 0 1-.283-1.94 3.394 3.394 0 0 1 2.594-.939c-.13.066-.13.414-.35.35' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M448.584 264.948a.465.465 0 0 0-.066.632.384.384 0 0 0 .567.13.592.592 0 0 0 .35-.85c-.2-.282-.5-.065-.851.067' fill='%23fc0'/%3e%3cpath d='M448.584 264.948a.465.465 0 0 0-.066.632.384.384 0 0 0 .567.13.592.592 0 0 0 .35-.85c-.2-.282-.5-.065-.851.067z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M443.723 261.833a14.4 14.4 0 0 0 4.424 1 5.372 5.372 0 0 0 .5 2.226 6.527 6.527 0 0 0-2.594.065 9.683 9.683 0 0 0-2.311-3.334' fill='%23fc0'/%3e%3cpath d='M443.723 261.833a14.4 14.4 0 0 0 4.424 1 5.372 5.372 0 0 0 .5 2.226 6.538 6.538 0 0 0-2.594.065 9.683 9.683 0 0 0-2.311-3.334z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M445.685 263.05a5.737 5.737 0 0 0 1.809.418 1.722 1.722 0 0 0 .2.848 2.9 2.9 0 0 0-1 .065 3.354 3.354 0 0 0-1-1.354z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M448.8 266.823s.414-.785.567-1.068c.065-.13-.065.937.349 1.068a5.161 5.161 0 0 1 .719 2.593 2.354 2.354 0 0 1-2.18.066c-.348-.2-.066-.784 0-1.286a5.307 5.307 0 0 1 .5-1.374' fill='%23fc0'/%3e%3cpath d='M448.8 266.823s.414-.785.567-1.068c.065-.13-.065.937.349 1.068a5.161 5.161 0 0 1 .719 2.593 2.354 2.354 0 0 1-2.18.066c-.348-.2-.066-.784 0-1.286a5.307 5.307 0 0 1 .5-1.374z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M449.237 266.19a4.369 4.369 0 0 0 .067.567c0-.2.194.2.282.284a5.6 5.6 0 0 1 .567 2.31m-.7-2.092a6.857 6.857 0 0 1 .348 2.245l.13-.065m-.478-1.308c.13.632.065 1 .13 1.373l-.282.13' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M471.452 314.213c1.81 1.658 5.21 2.528 5.8 2.97a10.871 10.871 0 0 0 6.147 2.31c2.247.195 3.249-.419 5.582-.72 2.681-.285-.35.128 2.246-.42a25.884 25.884 0 0 1 3.117-.93c1.286-.352 2.594-.637 3.4-1.725a2.8 2.8 0 0 0 .567-1.44h1.743c.2.5-.282 1.44-.5 1.808-.066.135-.283.436-.414.659a2.166 2.166 0 0 1-.633.78c-.131.068-.72.57-.871.632a2.267 2.267 0 0 1-1.07.636 25.757 25.757 0 0 0-4.054 1.155c-1.591.413-.72.346-1.875.63-.632.13-1.787.57-2.376.631-1.067.195-1.22.352-2.31.57a27.572 27.572 0 0 1-8.328.285 14.051 14.051 0 0 1-4.927-1.29c-1.744-1.222-5.515-1.719-7.238-2.9a16.251 16.251 0 0 1-1.5-.854c-1.57-1.373-2.965-1.72-4.622-2.813h12.252' fill='%23004bb3'/%3e%3cpath d='M484.793 314.213c1.22.636 1.81 1.658 5.21 2.746 1.286 0 2.747.57 3.99.5-1.5.352-1.5.57-2.747.854-2.594.563.414.129-2.245.413-2.311.285-3.336.938-5.581.72a10.547 10.547 0 0 1-6.147-2.31c-.567-.413-3.99-1.29-5.8-2.97h13.342' fill='%23fff'/%3e%3cpath d='M484.793 314.213h13.56a2.941 2.941 0 0 1-.567 1.44c-.785 1.072-2.093 1.374-3.4 1.724-1.44.28-2.9-.419-4.34-.419-3.553-1.064-3.988-2.242-5.209-2.745' fill='%23004bb3'/%3e%3cpath d='M471.67 314.213s-2.377.135-2.53.135c-.13 0-9.7-.135-9.7-.135' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M471.67 314.28s-2.377.129-2.53.2c-.282.068-9.634-.127-9.634-.127' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M471.736 314.37s-2.312.195-2.66.279c-.35 0-9.5-.279-9.5-.279' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M471.736 314.37s-2.224.279-2.748.346c-.5.133-9.352-.285-9.352-.285' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M471.736 314.43s-2.16.286-2.748.42c-.633.128-9.265-.42-9.265-.42' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M471.736 314.43s-2.094.42-2.813.57c-.72.129-9.134-.5-9.134-.5' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M471.736 314.43s-2.029.5-2.9.721c-.851.195-8.981-.564-8.981-.564' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M471.8 314.5s-2.027.569-3.03.786c-.937.128-8.85-.72-8.85-.72' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M471.8 314.587s-1.94.63-3.03.848c-1.068.2-8.763-.786-8.763-.786' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M471.8 314.587a28.816 28.816 0 0 1-3.116 1c-1.221.2-8.634-.848-8.634-.848' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M471.8 314.649a16.8 16.8 0 0 1-3.116 1c-1.374.285-8.546-.937-8.546-.937' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M459.33 314.213h12.34' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M460.2 314.805s6.956 1.284 8.416 1a14.794 14.794 0 0 0 3.248-1.155' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M473.48 319.643s4.425.631 4.555.631c.066 0 2.595-.194 2.682-.194l2.18-.5' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M473.2 319.577s4.556.72 4.926.636c.13-.068 2.464-.2 2.53-.2.13 0 2.026-.413 2.026-.413' fill='none' stroke='%23001178' stroke-width='.232'/%3e%3cpath d='M472.978 319.447a41.727 41.727 0 0 0 5.144.632c.2 0 2.312-.129 2.53-.129.13 0 1.809-.434 1.809-.434' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M472.672 319.292a45.361 45.361 0 0 0 5.429.72c.348 0 2.245-.128 2.463-.128.2-.068 1.656-.352 1.656-.352' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M472.454 319.23a46.678 46.678 0 0 0 5.647.721c.414-.068 2.092-.134 2.463-.2.283 0 1.438-.194 1.438-.194' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M472.171 319.074s4.992 1 6.016.787c.5-.067 1.94-.128 2.312-.194a11.961 11.961 0 0 0 1.351-.2' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M471.953 319.013s5.08 1 6.234.781c.634-.061 1.876-.195 2.224-.195.414-.068 1.221-.128 1.221-.128' fill='none' stroke='%230039a0' stroke-width='.232'/%3e%3cpath d='M471.67 318.923s5.21 1.066 6.517.787a14.413 14.413 0 0 1 2.224-.194 7.546 7.546 0 0 1 1-.069' fill='none' stroke='%230045ab' stroke-width='.232'/%3e%3cpath d='m473.7 319.794 4.338.57 2.682-.134 2.31-.564' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M471.452 318.8s5.362 1.155 6.8.848a17.631 17.631 0 0 1 2.966-.284m11.4.09s2.812-1 4.207-1.508a4.7 4.7 0 0 0 2.9-3.616m-7.39 4.252s1.655-.636 3.116-1.155c3.685-1.44 3.248-3.185 3.248-3.185' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M492.118 318.706s2.158-.787 3.335-1.223a16.064 16.064 0 0 0 1.723-.78 5.436 5.436 0 0 0 1.286-1.222 2.928 2.928 0 0 0 .282-1.223' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='M491.833 318.923s2.748-1 3.62-1.372c.35-.129 1.374-.57 1.656-.72a13.886 13.886 0 0 0 1.374-1.156 4.488 4.488 0 0 0 .415-1.44' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M491.616 319.074s3.27-1.155 3.837-1.373c.284-.128 1.44-.63 1.591-.72a8.026 8.026 0 0 0 1.5-1.217 11.121 11.121 0 0 0 .414-1.506' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M491.333 319.292s3.837-1.373 4.12-1.5c.066-.069 1.505-.57 1.591-.632a15.048 15.048 0 0 0 1.5-1.222 12.191 12.191 0 0 0 .566-1.59' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='M492.336 319.447s3.4-1.221 4.491-1.656a4.684 4.684 0 0 0 2.027-1.507 5.616 5.616 0 0 0 .785-1.936' fill='none' stroke='%23003ca2' stroke-width='.232'/%3e%3cpath d='M491.987 319.447s4.055-1.438 4.927-1.807a5.422 5.422 0 0 0 1.874-1.44 6.909 6.909 0 0 0 .72-1.875' fill='none' stroke='%23002d93' stroke-width='.232'/%3e%3cpath d='M491.681 319.516s4.71-1.814 5.277-1.943a11.839 11.839 0 0 0 1.809-1.373 9.3 9.3 0 0 0 .633-1.875' fill='none' stroke='%23001e85' stroke-width='.232'/%3e%3cpath d='M491.4 319.516s5.276-2.033 5.582-2.094a17.531 17.531 0 0 0 1.721-1.289c.132-.195.655-1.808.655-1.808' fill='none' stroke='%23000f75' stroke-width='.232'/%3e%3cpath d='m491.115 319.516 5.93-2.25 1.591-1.222.567-1.719' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M498 314.213s-2.53.135-2.594.135c-.131 0-10.137-.135-10.137-.135' fill='none' stroke='%2300066d' stroke-width='.232'/%3e%3cpath d='M498 314.28s-2.464.129-2.682.2c-.283.068-10-.127-10-.127' fill='none' stroke='%23000b73' stroke-width='.232'/%3e%3cpath d='M498.069 314.37s-2.377.195-2.812.279c-.35 0-9.853-.279-9.853-.279' fill='none' stroke='%23001379' stroke-width='.232'/%3e%3cpath d='M498.069 314.37s-2.31.279-2.812.346c-.5.133-9.788-.285-9.788-.285' fill='none' stroke='%2300187e' stroke-width='.232'/%3e%3cpath d='M498.069 314.43s-2.245.286-2.9.42c-.632.128-9.634-.42-9.634-.42' fill='none' stroke='%23002086' stroke-width='.232'/%3e%3cpath d='M498.069 314.43s-2.158.42-2.9.57c-.784.129-9.57-.5-9.57-.5' fill='none' stroke='%2300258b' stroke-width='.232'/%3e%3cpath d='M498.069 314.43s-2.092.5-2.964.721c-.85.195-9.418-.564-9.418-.564' fill='none' stroke='%23002b91' stroke-width='.232'/%3e%3cpath d='M498.157 314.5s-2.093.569-3.118.786c-1 .128-9.265-.72-9.265-.72' fill='none' stroke='%23039' stroke-width='.232'/%3e%3cpath d='M498.157 314.587a32.112 32.112 0 0 1-3.184.848c-1.068.2-9.134-.786-9.134-.786' fill='none' stroke='%2300389e' stroke-width='.232'/%3e%3cpath d='M498.222 314.587s-2.027.72-3.249 1c-1.286.2-8.98-.848-8.98-.848' fill='none' stroke='%23003ea6' stroke-width='.232'/%3e%3cpath d='M498.222 314.649a18.954 18.954 0 0 1-3.336 1c-1.373.285-8.85-.937-8.85-.937' fill='none' stroke='%230046ad' stroke-width='.232'/%3e%3cpath d='M485.163 314.213H498' fill='none' stroke='%23006' stroke-width='.232'/%3e%3cpath d='M486.036 314.805s7.325 1.284 8.85 1a18.246 18.246 0 0 0 3.336-1.155' fill='none' stroke='%23004bb3' stroke-width='.232'/%3e%3cpath d='M500.1 314.213c.2.5-.282 1.44-.5 1.814-.066.129-.284.436-.415.653a2.107 2.107 0 0 1-.632.781c-.131.068-.72.57-.873.636a2.292 2.292 0 0 1-1.067.631 26.258 26.258 0 0 0-4.055 1.156c-1.591.413-.72.346-1.875.63-.633.134-1.788.569-2.377.63-1.068.2-1.22.352-2.31.57a27.57 27.57 0 0 1-8.328.285 13.908 13.908 0 0 1-4.926-1.29c-1.744-1.216-5.516-1.718-7.238-2.9a14.677 14.677 0 0 1-1.5-.854c-1.57-1.373-2.966-1.719-4.623-2.807' fill='none' stroke='%23000' stroke-width='.232'/%3e%3cpath d='m550.673 314.213-49.028-81.964-48.963 81.964H550.7' fill='%23fc0'/%3e%3cpath d='m550.673 314.213-49.028-81.964-48.963 81.964h97.991z' fill='none' stroke='%23000' stroke-width='.58'/%3e%3cpath d='m545.964 311.534-44.319-73.99-44.166 73.99h88.507' fill='%23fff'/%3e%3cpath d='m545.964 311.534-44.319-73.99-44.166 73.99h88.485z' fill='none' stroke='%23fff' stroke-width='.173'/%3e%3cpath d='M493.95 250.516a10.875 10.875 0 0 1 7.608-2.68h.195c2.813 0 5.712.72 7.609 2.68' fill='none' stroke='%2300a8ff' stroke-width='.232'/%3e%3cpath d='M493.95 250.582c2.026-1.942 4.62-2.595 7.608-2.679h.195c2.9 0 5.865.714 7.674 2.68' fill='none' stroke='%23009eff' stroke-width='.232'/%3e%3cpath d='M493.862 250.65a10.694 10.694 0 0 1 7.7-2.685h.195c2.965 0 5.93.72 7.761 2.746' fill='none' stroke='%230096ff' stroke-width='.232'/%3e%3cpath d='M493.8 250.8c2.028-2.027 4.775-2.746 7.762-2.746h.282c2.965 0 5.93.72 7.827 2.813' fill='none' stroke='%23008bff' stroke-width='.232'/%3e%3cpath d='M493.731 250.867c2.027-2.032 4.84-2.747 7.892-2.813h.2c3.03.066 6.016.781 7.914 2.964' fill='none' stroke='%230082ff' stroke-width='.232'/%3e%3cpath d='M493.644 250.934c2.027-2.1 4.84-2.814 7.979-2.814h.2c3.117.062 6.082.849 7.978 3.031' fill='none' stroke='%230079ff' stroke-width='.232'/%3e%3cpath d='M493.644 251.084c1.961-2.093 4.84-2.9 7.979-2.9h.2c3.247.068 6.148.854 8.11 3.12' fill='none' stroke='%23006fff' stroke-width='.232'/%3e%3cpath d='M493.077 251.955c2.311-2.461 5.21-3.181 8.633-3.181h.195c3.772.061 6.956 1.283 8.852 3.9' fill='none' stroke='%231609ff' stroke-width='.232'/%3e%3cpath d='M493.143 251.826c2.245-2.31 5.144-3.03 8.545-3.12h.2c3.684.068 6.8 1.29 8.7 3.84' fill='none' stroke='%231316ff' stroke-width='.232'/%3e%3cpath d='M493.207 251.737c2.246-2.377 5.059-3.12 8.393-3.12h.2c3.618.067 6.8 1.223 8.7 3.773' fill='none' stroke='%231120ff' stroke-width='.232'/%3e%3cpath d='M493.207 251.67c2.246-2.31 5.059-3.03 8.393-3.114h.2c3.553.061 6.67 1.155 8.633 3.683' fill='none' stroke='%230f2dff' stroke-width='.232'/%3e%3cpath d='M493.36 251.52c2.093-2.244 4.927-2.964 8.263-2.964h.13c3.554 0 6.671 1 8.633 3.55' fill='none' stroke='%230938ff' stroke-width='.232'/%3e%3cpath d='M493.36 251.452c2.093-2.243 4.993-2.962 8.2-2.962h.195c3.466 0 6.584.937 8.48 3.4' fill='none' stroke='%230645ff' stroke-width='.232'/%3e%3cpath d='M493.426 251.39c2.027-2.248 4.927-2.968 8.11-2.968h.2c3.4 0 6.43.854 8.415 3.338' fill='none' stroke='%23054fff' stroke-width='.232'/%3e%3cpath d='M493.513 251.235c1.94-2.16 4.84-2.9 8.045-2.9h.13c3.4 0 6.453.78 8.393 3.247' fill='none' stroke='%23025cff' stroke-width='.232'/%3e%3cpath d='M496.762 245.655a7.9 7.9 0 0 1 4.838-1.284 8.348 8.348 0 0 1 4.84 1.217' fill='none' stroke='%23ff0500' stroke-width='.232'/%3e%3cpath d='M496.762 245.721a7.92 7.92 0 0 1 4.838-1.289 8.366 8.366 0 0 1 4.84 1.222' fill='none' stroke='%23ff0b00' stroke-width='.232'/%3e%3cpath d='M496.7 245.788a8.278 8.278 0 0 1 4.928-1.29 9 9 0 0 1 4.992 1.223' fill='none' stroke='%23f10' stroke-width='.232'/%3e%3cpath d='M496.7 245.938a8.208 8.208 0 0 1 4.928-1.372 9.394 9.394 0 0 1 4.992 1.222' fill='none' stroke='%23ff1800' stroke-width='.232'/%3e%3cpath d='M496.63 246.005a8.448 8.448 0 0 1 4.993-1.373 9.117 9.117 0 0 1 5.058 1.285' fill='none' stroke='%23ff1e00' stroke-width='.232'/%3e%3cpath d='M496.544 246.067a8.821 8.821 0 0 1 5.056-1.374 9.122 9.122 0 0 1 5.058 1.29' fill='none' stroke='%23ff2500' stroke-width='.232'/%3e%3cpath d='M496.544 246.224a7.963 7.963 0 0 1 5.056-1.44 9.471 9.471 0 0 1 5.146 1.283' fill='none' stroke='%23ff2d00' stroke-width='.232'/%3e%3cpath d='M496.478 246.285a8.476 8.476 0 0 1 5.145-1.435 8.8 8.8 0 0 1 5.21 1.374' fill='none' stroke='%23f30' stroke-width='.232'/%3e%3cpath d='M496.478 246.374a8.363 8.363 0 0 1 5.145-1.44 9.184 9.184 0 0 1 5.276 1.373' fill='none' stroke='%23ff3900' stroke-width='.232'/%3e%3cpath d='M496.412 246.44a8.662 8.662 0 0 1 5.212-1.44 9.522 9.522 0 0 1 5.275 1.374' fill='none' stroke='%23ff3e00' stroke-width='.232'/%3e%3cpath d='M496.324 246.525a8.761 8.761 0 0 1 5.276-1.434 10.243 10.243 0 0 1 5.364 1.372' fill='none' stroke='%23ff4500' stroke-width='.232'/%3e%3cpath d='M495.235 248.467a11.8 11.8 0 0 1 12.97 0' fill='none' stroke='%23fff500' stroke-width='.232'/%3e%3cpath d='M495.322 248.339a10.765 10.765 0 0 1 6.366-1.876 10.516 10.516 0 0 1 6.453 1.937' fill='none' stroke='%23ffeb00' stroke-width='.232'/%3e%3cpath d='M495.388 248.249a11.631 11.631 0 0 1 12.665 0' fill='none' stroke='%23ffe000' stroke-width='.232'/%3e%3cpath d='M495.453 248.12a11.74 11.74 0 0 1 12.535 0' fill='none' stroke='%23ffd600' stroke-width='.232'/%3e%3cpath d='M495.453 248.054a11.655 11.655 0 0 1 12.47 0' fill='none' stroke='%23ffcf00' stroke-width='.232'/%3e%3cpath d='M495.54 247.9a10.689 10.689 0 0 1 6.17-1.814 9.995 9.995 0 0 1 6.147 1.876' fill='none' stroke='%23ffc500' stroke-width='.232'/%3e%3cpath d='M495.605 247.837a10.265 10.265 0 0 1 6.083-1.81 10.163 10.163 0 0 1 6.082 1.809' fill='none' stroke='%23ffb900' stroke-width='.232'/%3e%3cpath d='M495.672 247.68a11.381 11.381 0 0 1 12.032 0' fill='none' stroke='%23ffaf00' stroke-width='.232'/%3e%3cpath d='M495.76 247.619a9.8 9.8 0 0 1 5.95-1.725 10.215 10.215 0 0 1 5.93 1.725' fill='none' stroke='%23ffa600' stroke-width='.232'/%3e%3cpath d='M495.824 247.462a9.78 9.78 0 0 1 5.864-1.651 10.34 10.34 0 0 1 5.864 1.65' fill='none' stroke='%23ff9c00' stroke-width='.232'/%3e%3cpath d='M495.824 247.4a10.157 10.157 0 0 1 5.864-1.657 10.339 10.339 0 0 1 5.777 1.591' fill='none' stroke='%23ff9100' stroke-width='.232'/%3e%3cpath d='M495.954 247.245a9.51 9.51 0 0 1 5.734-1.657 9.663 9.663 0 0 1 5.712 1.657' fill='none' stroke='%23ff8600' stroke-width='.232'/%3e%3cpath d='M495.954 247.183a9.7 9.7 0 0 1 5.734-1.657 10.325 10.325 0 0 1 5.712 1.59' fill='none' stroke='%23ff7c00' stroke-width='.232'/%3e%3cpath d='M496.042 247.027a10.7 10.7 0 0 1 11.227 0' fill='none' stroke='%23ff7500' stroke-width='.232'/%3e%3cpath d='M496.107 246.966a9.189 9.189 0 0 1 5.582-1.6 9.517 9.517 0 0 1 5.492 1.53' fill='none' stroke='%23ff6b00' stroke-width='.232'/%3e%3cpath d='M496.172 246.81a9.365 9.365 0 0 1 5.516-1.5 9.5 9.5 0 0 1 5.493 1.5' fill='none' stroke='%23ff6000' stroke-width='.232'/%3e%3cpath d='M496.26 246.748a8.526 8.526 0 0 1 5.428-1.507 10.107 10.107 0 0 1 5.428 1.44' fill='none' stroke='%23ff5600' stroke-width='.232'/%3e%3cpath d='M495.018 248.617a11.774 11.774 0 0 1 6.67-1.936 10.51 10.51 0 0 1 6.583 2.026' fill='none' stroke='%23ebff00' stroke-width='.232'/%3e%3cpath d='M494.952 248.774a11.112 11.112 0 0 1 6.736-2.026 11.336 11.336 0 0 1 6.736 2.087' fill='none' stroke='%23d6ff00' stroke-width='.232'/%3e%3cpath d='M494.886 248.9a10.977 10.977 0 0 1 6.8-2.093 11.207 11.207 0 0 1 6.736 2.093' fill='none' stroke='%23c2ff00' stroke-width='.232'/%3e%3cpath d='M494.821 249.059a10.813 10.813 0 0 1 6.89-2.16 11.145 11.145 0 0 1 6.8 2.16' fill='none' stroke='%23adff00' stroke-width='.232'/%3e%3cpath d='M494.734 249.12a11.094 11.094 0 0 1 6.889-2.154 11.278 11.278 0 0 1 6.953 2.153' fill='none' stroke='%239f0' stroke-width='.232'/%3e%3cpath d='M494.668 249.276a10.474 10.474 0 0 1 6.956-2.249 10.991 10.991 0 0 1 7.019 2.249' fill='none' stroke='%2385ff00' stroke-width='.232'/%3e%3cpath d='M494.668 249.427a10.111 10.111 0 0 1 6.956-2.311 11.384 11.384 0 0 1 7.1 2.221' fill='none' stroke='%236fff00' stroke-width='.232'/%3e%3cpath d='M494.516 249.555a10.2 10.2 0 0 1 7.107-2.439 11.2 11.2 0 0 1 7.106 2.377' fill='none' stroke='%235cff00' stroke-width='.232'/%3e%3cpath d='M494.451 249.644a10.3 10.3 0 0 1 7.172-2.377 11.374 11.374 0 0 1 7.172 2.31' fill='none' stroke='%2346ff00' stroke-width='.232'/%3e%3cpath d='M494.08 250.3a10.908 10.908 0 0 1 7.608-2.528c2.747 0 5.712.72 7.543 2.528' fill='none' stroke='%2305b9e2' stroke-width='.232'/%3e%3cpath d='M494.167 250.3a10.551 10.551 0 0 1 7.543-2.68 11.3 11.3 0 0 1 7.542 2.529' fill='none' stroke='%2309c5c6' stroke-width='.232'/%3e%3cpath d='M494.167 250.147a10.92 10.92 0 0 1 7.543-2.528c2.748 0 5.646.72 7.456 2.438' fill='none' stroke='%2311ccab' stroke-width='.232'/%3e%3cpath d='M494.233 250.058a10.482 10.482 0 0 1 7.455-2.529 11.166 11.166 0 0 1 7.39 2.467' fill='none' stroke='%2316d38f' stroke-width='.232'/%3e%3cpath d='M494.233 250.058a10.289 10.289 0 0 1 7.39-2.6c2.747 0 5.646.787 7.39 2.467' fill='none' stroke='%231cde6f' stroke-width='.232'/%3e%3cpath d='M494.3 250a10.06 10.06 0 0 1 7.326-2.533 11.471 11.471 0 0 1 7.389 2.377' fill='none' stroke='%2320e653' stroke-width='.232'/%3e%3cpath d='M494.386 249.93a10 10 0 0 1 7.238-2.53 11.281 11.281 0 0 1 7.323 2.373' fill='none' stroke='%2328ed38' stroke-width='.232'/%3e%3cpath d='M494.386 249.862a10.094 10.094 0 0 1 7.238-2.528c2.593 0 5.58.786 7.323 2.4' fill='none' stroke='%232df81c' stroke-width='.232'/%3e%3cpath d='M506.419 245.5a8.148 8.148 0 0 0-4.774-1.223 7.724 7.724 0 0 0-4.774 1.289' fill='none' stroke='red' stroke-width='.232'/%3e%3cpath d='M510.844 252.893c-1.874-2.746-5.21-4.058-9.07-4.058-3.552 0-6.364.72-8.762 3.186' fill='none' stroke='%231800ff' stroke-width='.232'/%3e%3cpath d='M509.319 250.3c-1.876-1.808-4.775-2.528-7.609-2.528a11.224 11.224 0 0 0-7.695 2.594' fill='none' stroke='%2300b3ff' stroke-width='.232'/%3e%3cpath d='M510.038 251.452c-2.028-2.377-5.058-3.18-8.415-3.18-3.118 0-6.083.72-8.11 2.9' fill='none' stroke='%2306f' stroke-width='.232'/%3e%3cpath d='M508.316 248.617a10.8 10.8 0 0 0-6.585-2.026 11.285 11.285 0 0 0-6.582 1.942' fill='none' stroke='%23ff0' stroke-width='.232'/%3e%3cpath d='M507.007 246.525a10.055 10.055 0 0 0-5.363-1.434 8.291 8.291 0 0 0-5.276 1.59' fill='none' stroke='%23ff4b00' stroke-width='.232'/%3e%3cpath d='M508.881 249.644a11.65 11.65 0 0 0-7.237-2.377 9.981 9.981 0 0 0-7.172 2.528' fill='none' stroke='%233f0' stroke-width='.232'/%3e%3cpath d='m470.514 289.539-13.058 21.974h88.507l-13.188-21.974h-62.239' fill='%230088e8'/%3e%3cpath d='m470.514 289.539-13.058 21.974h88.507l-13.188-21.974h-62.261z' fill='none' stroke='%2300ccb3' stroke-width='.347'/%3e%3cpath d='M504.02 302.378a7.146 7.146 0 0 0 3.9.065c1.875-.414 3.684-1.5 5.93-1.285 1.59.13 3.77 1.5 6.452 1.5 2.592 0 3.486-.937 5.8-1.374a8.622 8.622 0 0 1 4.124.2c1.96.349 2.963 1.5 6.3 1.22' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M469.926 305.58a7.949 7.949 0 0 1 6.082-1.155c2.594.569 3.684 1.222 6.517 1.222 2.029-.067 3.839-1.437 5.952-1.437 3.467 0 3.62.718 6.737 1.286a8.59 8.59 0 0 0 5.624-1.071c1-.5 3.466-.412 4.709-.28a10.208 10.208 0 0 1 3.553 1.155 7.147 7.147 0 0 0 3.9.127c1.875-.563 3.619-1.808 5.93-1.5 1.591.13 3.77 1.721 6.388 1.721 2.68 0 3.555-1.065 5.776-1.59a8.937 8.937 0 0 1 4.208.2c1.958.412 2.963 1.724 6.3 1.44' fill='none' stroke='%23fff' stroke-width='.637'/%3e%3cpath d='M464.912 303.12a8.622 8.622 0 0 1 6.082-1c2.594.5 3.77 1.068 6.517 1.068 2.094-.065 3.838-1.286 5.93-1.286 3.554 0 3.62.632 6.737 1.155a8.61 8.61 0 0 0 2.594 0 12.38 12.38 0 0 0 3.117-.937c.85-.414 3.4-.349 4.621-.283a10.192 10.192 0 0 1 3.554 1.067 10.576 10.576 0 0 0 3.9.066c1.874-.5 3.684-1.591 5.93-1.352 1.59.13 3.835 1.592 6.452 1.5 2.593 0 3.554-.938 5.775-1.374a8.618 8.618 0 0 1 4.123.2c1.937.414 3.031 1.5 6.363 1.221' fill='none' stroke='%23fff' stroke-width='.463'/%3e%3cpath d='M460.355 310.29a7.381 7.381 0 0 1 6.083-1.222c2.594.57 3.77 1.378 6.517 1.29 2.094 0 3.9-1.591 5.93-1.591 3.554 0 3.619.781 6.737 1.5a8.783 8.783 0 0 0 2.66 0 14.505 14.505 0 0 0 3.03-1.216c.937-.5 3.4-.419 4.62-.284a7.61 7.61 0 0 1 3.554 1.284 7.447 7.447 0 0 0 3.99.066c1.874-.63 3.619-1.942 5.864-1.657 1.59.128 3.836 1.875 6.453 1.875 2.594 0 3.553-1.155 5.8-1.724 1.592-.413 2.378-.129 4.12.2 2.026.5 3.03 1.937 6.367 1.653' fill='none' stroke='%23fff' stroke-width='.837'/%3e%3cpath d='M461.51 306.15a9.247 9.247 0 0 1 6.148-1c2.595.5 3.772 1.071 6.519 1.071a8.369 8.369 0 0 0 2.66-.569' fill='none' stroke='%23fff' stroke-width='.463'/%3e%3cpath d='M474.94 301.876a9.349 9.349 0 0 1 3.4-.718c3.554 0 1.286 0 4.426.567.785.13 3.03.13 3.684-.415m30.934 10.007a13.356 13.356 0 0 0 3.117-1c.937-.436 3.335-.346 4.623-.195a12.449 12.449 0 0 1 3.55 1 8.123 8.123 0 0 0 3.907.063c1.875-.5 3.682-1.591 5.926-1.374 1.591.195 3.84 1.59 6.451 1.59' fill='none' stroke='%23000' stroke-width='.406'/%3e%3cpath d='M522.814 301.506c2.59 0 3.55-.937 5.8-1.373a8.6 8.6 0 0 1 4.119.2c2.026.348 3.03 1.5 6.367 1.22' fill='none' stroke='%23fff' stroke-width='.463'/%3e%3cpath d='M460.487 310.575a8.745 8.745 0 0 1 6.082-1c2.594.5 3.77 1.072 6.583 1.072 2.027-.067 3.837-1.29 5.952-1.29 3.465 0 3.618.631 6.67 1.156a8.419 8.419 0 0 0 2.594 0 10.1 10.1 0 0 0 3.118-.938 12.478 12.478 0 0 1 4.621-.194 8.869 8.869 0 0 1 3.554 1' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M466.067 307.305a9.143 9.143 0 0 1 6.083-1c2.593.5 3.77 1.155 6.517 1.072 2.094-.067 3.838-1.29 5.93-1.223 3.553 0 3.684.57 6.736 1.156a8.81 8.81 0 0 0 2.594 0 12.409 12.409 0 0 0 3.117-1 14.1 14.1 0 0 1 4.623-.195 12.691 12.691 0 0 1 3.552 1 8.11 8.11 0 0 0 3.9.068c1.874-.419 3.684-1.507 5.93-1.38 1.722.2 3.989 1.6 6.451 1.6 2.595 0 3.554-.938 5.8-1.373a8.166 8.166 0 0 1 4.208.195c1.875.346 2.963 1.5 6.234 1.217' fill='none' stroke='%23000' stroke-width='.837'/%3e%3cpath d='M492.706 252.48a19.3 19.3 0 0 1 8.917-2.16 20.064 20.064 0 0 1 9.2 2.594l9.418 15.653a18.639 18.639 0 1 1-37.278.065l9.7-16.175z' fill='none' stroke='%23fff3f3' stroke-width='.232'/%3e%3cpath d='M501.624 250.516a20.028 20.028 0 0 1 9.133 2.594l9.2 15.436a18.345 18.345 0 1 1-36.69.064l9.57-15.957a19.825 19.825 0 0 1 8.763-2.16z' fill='none' stroke='%23fff3ef' stroke-width='.232'/%3e%3cpath d='M501.624 250.732a19.342 19.342 0 0 1 8.98 2.595s9.134 15.152 9.134 15.219a18.138 18.138 0 1 1-36.275.065c0-.065 9.352-15.652 9.418-15.74a19.529 19.529 0 0 1 8.7-2.16z' fill='none' stroke='%23ffefef' stroke-width='.232'/%3e%3cpath d='M501.624 250.934a19.714 19.714 0 0 1 8.849 2.528c.065.061 8.982 14.93 8.982 15.084a17.833 17.833 0 1 1-35.665.065c0-.132 9.135-15.456 9.2-15.523a19.455 19.455 0 0 1 8.611-2.154z' fill='none' stroke='%23ffefed' stroke-width='.232'/%3e%3cpath d='M501.624 251.235a19.494 19.494 0 0 1 8.7 2.466c.132.129 8.917 14.713 8.917 14.931a17.615 17.615 0 1 1-35.229 0c0-.131 8.982-15.215 9.135-15.3a18.785 18.785 0 0 1 8.48-2.093m0 .217a19.533 19.533 0 0 1 8.632 2.468c.131.06 8.763 14.494 8.763 14.712a17.4 17.4 0 1 1-34.792 0c0-.2 8.917-14.93 9.07-15.087a18.8 18.8 0 0 1 8.327-2.093' fill='none' stroke='%23ffedeb' stroke-width='.232'/%3e%3cpath d='M501.624 251.737a18.533 18.533 0 0 1 8.479 2.377c.2.129 8.633 14.213 8.633 14.5a17.113 17.113 0 1 1-34.226 0c0-.2 8.611-14.714 8.85-14.87a18.041 18.041 0 0 1 8.263-2.027z' fill='none' stroke='%23ffebe8' stroke-width='.232'/%3e%3cpath d='M501.624 251.955a18.484 18.484 0 0 1 8.414 2.377c.195.128 8.48 13.908 8.48 14.279a16.9 16.9 0 1 1-33.79 0c0-.284 8.48-14.5 8.763-14.652a17.757 17.757 0 0 1 8.11-2.027z' fill='none' stroke='%23ffebe6' stroke-width='.232'/%3e%3cpath d='M501.624 252.172a18.23 18.23 0 0 1 8.26 2.378c.284.128 8.329 13.69 8.329 14.06a16.612 16.612 0 1 1-33.224 0c0-.348 8.328-14.277 8.612-14.428a17.425 17.425 0 0 1 7.978-2.032z' fill='none' stroke='%23ffe8e6' stroke-width='.232'/%3e%3cpath d='M501.624 252.48a17.263 17.263 0 0 1 8.109 2.31c.282.128 8.26 13.406 8.26 13.842a16.393 16.393 0 1 1-32.786 0c0-.348 8.2-13.993 8.48-14.217a17.386 17.386 0 0 1 7.891-1.935z' fill='none' stroke='%23ffe8e2' stroke-width='.232'/%3e%3cpath d='M501.624 252.675a17.233 17.233 0 0 1 8.043 2.31c.283.195 8.044 13.19 8.044 13.626a16.1 16.1 0 1 1-32.2 0c0-.415 7.978-13.777 8.328-13.994a17.624 17.624 0 0 1 7.76-1.942z' fill='none' stroke='%23ffe6e0' stroke-width='.232'/%3e%3cpath d='M501.624 252.981a17.484 17.484 0 0 1 7.912 2.222c.349.194 7.978 12.906 7.978 13.408a15.881 15.881 0 1 1-31.761.087c0-.5 7.825-13.624 8.2-13.841a17.113 17.113 0 0 1 7.674-1.876' fill='none' stroke='%23ffe6de' stroke-width='.232'/%3e%3cpath d='M501.624 253.2a16.541 16.541 0 0 1 7.76 2.243 153.017 153.017 0 0 1 7.825 13.19 15.619 15.619 0 1 1-31.238.086c0-.567 7.673-13.343 8.109-13.623a16.808 16.808 0 0 1 7.543-1.874z' fill='none' stroke='%23ffe2de' stroke-width='.232'/%3e%3cpath d='M501.624 253.417a15.949 15.949 0 0 1 7.607 2.243c.5.195 7.761 12.405 7.761 12.972a15.37 15.37 0 0 1-30.739.156v-.088c0-.566 7.457-13.12 7.979-13.4a15.754 15.754 0 0 1 7.39-1.875' fill='none' stroke='%23ffe2dc' stroke-width='.232'/%3e%3cpath d='M501.624 253.7a16.217 16.217 0 0 1 7.542 2.155c.5.285 7.608 12.1 7.608 12.755a15.151 15.151 0 1 1-30.3.066c0-.634 7.39-12.905 7.913-13.19a16.11 16.11 0 0 1 7.238-1.808zm0 .219a16.06 16.06 0 0 1 7.389 2.092c.5.346 7.543 11.967 7.543 12.62a15 15 0 0 1-14.933 14.934 14.845 14.845 0 0 1-14.868-14.865c0-.72 7.172-12.686 7.7-12.97a16.339 16.339 0 0 1 7.172-1.808' fill='none' stroke='%23ffe0d9' stroke-width='.232'/%3e%3cpath d='M501.624 254.2a17 17 0 0 1 7.323 2.031c.5.347 7.326 11.749 7.326 12.4a14.65 14.65 0 1 1-29.3.065c0-.718 7.02-12.468 7.543-12.751a15.78 15.78 0 0 1 7.107-1.725z' fill='none' stroke='%23ffded6' stroke-width='.232'/%3e%3cpath d='M501.624 254.415a16.1 16.1 0 0 1 7.17 2.033c.5.345 7.239 11.443 7.239 12.184a14.577 14.577 0 0 1-14.433 14.5 14.4 14.4 0 0 1-14.343-14.432c0-.785 6.8-12.183 7.39-12.557a16.016 16.016 0 0 1 6.953-1.725z' fill='none' stroke='%23ffded3' stroke-width='.232'/%3e%3cpath d='M501.624 254.723a15.6 15.6 0 0 1 7.019 1.942c.566.346 7.106 11.226 7.106 11.967a14.137 14.137 0 1 1-28.274.066c0-.785 6.67-11.966 7.325-12.318a15.116 15.116 0 0 1 6.8-1.657z' fill='none' stroke='%23ffdcd3' stroke-width='.232'/%3e%3cpath d='M501.624 254.94a14.631 14.631 0 0 1 6.887 1.943c.633.346 7.02 10.943 7.02 11.75a13.919 13.919 0 1 1-27.838.086c0-.85 6.517-11.747 7.237-12.1a14.811 14.811 0 0 1 6.67-1.656z' fill='none' stroke='%23ffdcd1' stroke-width='.232'/%3e%3cpath d='M501.624 255.158a14.521 14.521 0 0 1 6.8 1.942c.633.413 6.8 10.66 6.8 11.532a13.625 13.625 0 1 1-27.249.087c0-.937 6.387-11.446 7.02-11.88a14.693 14.693 0 0 1 6.583-1.659zm0 .285a14.022 14.022 0 0 1 6.67 1.874c.719.413 6.735 10.443 6.735 11.315a13.407 13.407 0 1 1-26.814.087c0-.937 6.235-11.228 6.955-11.664a13.77 13.77 0 0 1 6.453-1.59z' fill='none' stroke='%23ffd9cf' stroke-width='.232'/%3e%3cpath d='M501.624 255.66a13.437 13.437 0 0 1 6.517 1.876c.784.413 6.583 10.16 6.583 11.1a13.156 13.156 0 1 1-26.312.087c0-1 6.082-11.01 6.8-11.446a13.811 13.811 0 0 1 6.365-1.59z' fill='none' stroke='%23ffd6cc' stroke-width='.232'/%3e%3cpath d='M501.624 255.945a13.614 13.614 0 0 1 6.386 1.808c.785.413 6.517 9.942 6.517 10.88a12.905 12.905 0 1 1-25.81.065c0-1 5.8-10.727 6.671-11.23a13.659 13.659 0 0 1 6.235-1.523' fill='none' stroke='%23ffd6c9' stroke-width='.232'/%3e%3cpath d='M501.624 256.163a13.19 13.19 0 0 1 6.3 1.808c.785.5 6.366 9.636 6.366 10.661a12.688 12.688 0 1 1-25.376.066c0-1.068 5.734-10.51 6.519-11.011a13.557 13.557 0 0 1 6.147-1.524z' fill='none' stroke='%23ffd3c9' stroke-width='.232'/%3e%3cpath d='M501.624 256.38a12.556 12.556 0 0 1 6.147 1.808c.85.5 6.234 9.42 6.234 10.444a12.4 12.4 0 1 1-24.809.065c0-1.067 5.495-10.29 6.367-10.787a13 13 0 0 1 6.016-1.507z' fill='none' stroke='%23ffd3c6' stroke-width='.232'/%3e%3cpath d='M501.624 256.687a13.483 13.483 0 0 1 6.08 1.658c.85.5 6.083 9.2 6.083 10.287a12.187 12.187 0 1 1-24.373.066c0-1.068 5.363-10.007 6.3-10.57a13.187 13.187 0 0 1 5.864-1.44z' fill='none' stroke='%23ffd1c5' stroke-width='.232'/%3e%3cpath d='M501.624 256.9a12.737 12.737 0 0 1 5.95 1.657c.937.564 5.93 8.914 5.93 10.136a11.925 11.925 0 1 1-23.85 0c0-1.156 5.211-9.857 6.17-10.353a13.033 13.033 0 0 1 5.776-1.44z' fill='none' stroke='%23ffd1c2' stroke-width='.232'/%3e%3cpath d='M501.624 257.189a13.112 13.112 0 0 1 5.8 1.59c1 .565 5.864 8.7 5.864 9.919a11.663 11.663 0 0 1-23.325.029v-.027c0-1.221 4.992-9.572 6.017-10.136a12.5 12.5 0 0 1 5.646-1.373' fill='none' stroke='%23ffcfc2' stroke-width='.232'/%3e%3cpath d='M501.624 257.407a11.2 11.2 0 0 1 5.645 1.59c1 .564 5.733 8.48 5.733 9.723a11.413 11.413 0 1 1-22.825 0c0-1.22 4.841-9.353 5.865-9.917a12.387 12.387 0 0 1 5.582-1.373z' fill='none' stroke='%23ffcfbe' stroke-width='.232'/%3e%3cpath d='M501.624 257.686a12.071 12.071 0 0 1 5.58 1.507c1 .57 5.58 8.2 5.58 9.483a11.161 11.161 0 0 1-22.322 0c0-1.287 4.708-9.138 5.71-9.724a12.342 12.342 0 0 1 5.428-1.284zm0 .224a11.455 11.455 0 0 1 5.427 1.5c1.067.654 5.428 7.98 5.428 9.266a10.911 10.911 0 1 1-21.821 0c0-1.286 4.556-8.852 5.645-9.483a11.011 11.011 0 0 1 5.276-1.283z' fill='none' stroke='%23ffccbc' stroke-width='.232'/%3e%3cpath d='M501.624 258.127a11.472 11.472 0 0 1 5.362 1.5c1 .631 5.275 7.7 5.275 9.07a10.66 10.66 0 1 1-21.32 0c0-1.374 4.338-8.634 5.494-9.265a11.068 11.068 0 0 1 5.144-1.29z' fill='none' stroke='%23ffc9b9' stroke-width='.232'/%3e%3cpath d='M501.624 258.345a10.89 10.89 0 0 1 5.209 1.5c1.068.632 5.144 7.392 5.144 8.853a10.409 10.409 0 0 1-20.817.081v-.079c0-1.44 4.207-8.417 5.361-9.07a10.785 10.785 0 0 1 5.058-1.283z' fill='none' stroke='%23ffc9b8' stroke-width='.232'/%3e%3cpath d='M501.624 258.624a9.984 9.984 0 0 1 5.056 1.44c1.155.636 5.08 7.173 5.08 8.634a10.181 10.181 0 1 1-20.362 0c0-1.44 4.055-8.11 5.276-8.852a10.492 10.492 0 0 1 4.926-1.222z' fill='none' stroke='%23ffc6b8' stroke-width='.232'/%3e%3cpath d='M501.624 258.841a10.655 10.655 0 0 1 4.991 1.44c1.155.72 4.927 6.891 4.927 8.417a9.931 9.931 0 0 1-19.861 0c0-1.5 3.838-7.892 5.08-8.634a10.891 10.891 0 0 1 4.84-1.223z' fill='none' stroke='%23ffc6b5' stroke-width='.232'/%3e%3cpath d='M501.624 259.065a9.85 9.85 0 0 1 4.838 1.434c1.221.72 4.774 6.673 4.774 8.2a9.668 9.668 0 1 1-19.336 0c0-1.5 3.77-7.675 4.992-8.417a10.125 10.125 0 0 1 4.708-1.216zm0 .3a8.933 8.933 0 0 1 4.708 1.374c1.307.719 4.708 6.366 4.708 7.979a9.49 9.49 0 0 1-9.417 9.418 9.351 9.351 0 0 1-9.418-9.418c0-1.59 3.553-7.389 4.84-8.2a9.218 9.218 0 0 1 4.555-1.155z' fill='none' stroke='%23ffc5b3' stroke-width='.232'/%3e%3cpath d='M501.624 259.583a9.85 9.85 0 0 1 4.555 1.29c1.286.781 4.556 6.233 4.556 7.825a9.167 9.167 0 1 1-18.334 0c0-1.591 3.4-7.171 4.71-7.98a9.408 9.408 0 0 1 4.49-1.156z' fill='none' stroke='%23ffc2af' stroke-width='.232'/%3e%3cpath d='M501.624 259.868a9.534 9.534 0 0 1 4.49 1.222c1.286.782 4.424 5.93 4.424 7.608a8.916 8.916 0 1 1-17.832 0c0-1.657 3.183-6.955 4.556-7.764a9.539 9.539 0 0 1 4.338-1.065z' fill='none' stroke='%23ffc2ad' stroke-width='.232'/%3e%3cpath d='M501.624 260.086a8.939 8.939 0 0 1 4.337 1.223c1.373.786 4.272 5.645 4.272 7.389a8.666 8.666 0 1 1-17.331.036v-.034c0-1.723 3.03-6.737 4.426-7.54a9.471 9.471 0 0 1 4.272-1.072z' fill='none' stroke='%23ffbead' stroke-width='.232'/%3e%3cpath d='M501.624 260.37a8.453 8.453 0 0 1 4.271 1.156c1.353.87 4.121 5.428 4.121 7.172a8.448 8.448 0 1 1-16.9 0c0-1.723 2.9-6.452 4.34-7.323a8.806 8.806 0 0 1 4.119-1z' fill='none' stroke='%23ffbeab' stroke-width='.232'/%3e%3cpath d='M501.624 260.589a9 9 0 0 1 4.118 1.154c1.44.849 3.99 5.21 3.99 6.955a8.142 8.142 0 1 1-16.284 0c0-1.81 2.66-6.235 4.12-7.1a9.386 9.386 0 0 1 4.055-1' fill='none' stroke='%23ffbca8' stroke-width='.232'/%3e%3cpath d='M501.624 260.806a8.352 8.352 0 0 1 3.988 1.155c1.439.848 3.9 4.928 3.9 6.737a7.946 7.946 0 1 1-15.892.046v-.044c0-1.81 2.529-6.017 4.054-6.888a8.825 8.825 0 0 1 3.9-1z' fill='none' stroke='%23ffbca6' stroke-width='.232'/%3e%3cpath d='M501.624 261.113a7.627 7.627 0 0 1 3.835 1.065c1.5.849 3.838 4.71 3.838 6.52a7.674 7.674 0 0 1-15.348.087v-.085c0-1.875 2.311-5.8 3.9-6.67a8.414 8.414 0 0 1 3.77-.938z' fill='none' stroke='%23ffb9a6' stroke-width='.232'/%3e%3cpath d='M501.624 261.33a7.887 7.887 0 0 1 3.77 1.067c1.5.937 3.619 4.426 3.619 6.3a7.423 7.423 0 1 1-14.846.008v-.005c0-1.941 2.158-5.493 3.837-6.452a7.347 7.347 0 0 1 3.619-.937z' fill='none' stroke='%23ffb9a2' stroke-width='.232'/%3e%3cpath d='M501.624 261.615a7.019 7.019 0 0 1 3.618 1c1.5.938 3.553 4.12 3.553 6.084a7.172 7.172 0 1 1-14.344 0c0-1.941 2.026-5.275 3.618-6.235a7.235 7.235 0 0 1 3.554-.848m0 .218a7.085 7.085 0 0 1 3.466 1 8.46 8.46 0 0 1 3.4 5.867 6.921 6.921 0 1 1-13.842 0 8.2 8.2 0 0 1 3.554-5.928 6.1 6.1 0 0 1 3.4-.937z' fill='none' stroke='%23ffb8a0' stroke-width='.232'/%3e%3cpath d='M501.624 262.05a6.215 6.215 0 0 1 3.4 1 7.717 7.717 0 0 1 3.247 5.648 6.7 6.7 0 1 1-13.406 0 7.949 7.949 0 0 1 3.4-5.8 7.347 7.347 0 0 1 3.335-.847z' fill='none' stroke='%23ffb59e' stroke-width='.232'/%3e%3cpath d='M501.624 262.33a5.668 5.668 0 0 1 3.247.937 7.08 7.08 0 0 1 3.117 5.43 6.42 6.42 0 1 1-12.839 0 7.185 7.185 0 0 1 3.247-5.582 6.488 6.488 0 0 1 3.183-.787z' fill='none' stroke='%23ffb59c' stroke-width='.232'/%3e%3cpath d='M501.624 262.553a6.589 6.589 0 0 1 3.116.847 6.441 6.441 0 0 1 3.03 5.276 6.191 6.191 0 1 1-12.382.087 6.56 6.56 0 0 1 3.183-5.43 5.9 5.9 0 0 1 3.03-.78z' fill='none' stroke='%23ffb39c' stroke-width='.232'/%3e%3cpath d='M501.624 274.671a5.838 5.838 0 0 0 5.862-5.814v-.05a5.9 5.9 0 1 0-5.863 5.864' fill='none' stroke='%23ffb399' stroke-width='.232'/%3e%3cpath d='M501.624 274.736a5.93 5.93 0 1 0-5.931-5.93 5.982 5.982 0 0 0 5.931 5.93' fill='none' stroke='%23fff' stroke-width='.173'/%3e%3cpath d='M501.624 274.736a5.93 5.93 0 1 0-5.931-5.93 5.982 5.982 0 0 0 5.931 5.93' fill='%23fff'/%3e%3cpath d='m502.93 262.92.633-3.118m-1.287 3.03.35-3.181m-1 3.18v-3.248m-.567 3.248-.283-3.18m-.37 3.27-.655-3.12m.065 3.338-1-3.12m.438 3.337-1.286-2.963m.762 3.18-1.656-2.745m1.09 3.1-1.876-2.593m1.44 3.03-2.246-2.465m1.722 2.9-2.377-2.159m2.028 2.682-2.594-1.94m2.224 2.378-2.812-1.593m2.506 2.159-2.964-1.286m2.747 1.874-3.03-1m2.833 1.57-3.117-.632m3.03 1.286-3.183-.35m3.183 1h-3.248m3.248.589-3.183.348m3.27.305-3.117.633m3.313-.044-3.117 1m3.335-.436-2.964 1.286m3.27-.7-3.466 2.094m3.75-1.592-6.955 4.991m7.39-4.49-7.543 6.584m7.914-6.147-6.155 6.89m6.649-6.517-4.621 6.3m5.144-5.865-4.84 8.482m5.407-8.263-2.68 6.147m3.269-5.864L497 283m3.314-8.327-1.155 5.71m1.81-5.645-.85 8.763m2.092-8.763.349 3.183m.305-3.248 1.875 8.262m-1.286-8.415 1.591 4.84m-1.025-5.06 3.772 8.11m-3.182-8.394 4.054 6.89m-3.553-7.26 5.8 7.608m-5.3-7.956 5.08 5.864m-4.645-6.3 7.544 6.8m-7.172-7.325 4.12 2.966m-3.75-3.467 2.812 1.592m-2.529-2.18 2.966 1.286m-2.748-1.852 3.03 1m-2.811-1.59 3.117.633m-3.052-1.287 3.183.349m-3.1-1h3.182m-3.27-.566 3.183-.283m-3.248-.305 3.117-.72m-3.336.065 3.118-1m-3.27.415 2.9-1.286m-3.184.719 2.813-1.592m-3.183 1.091 2.594-1.873m-2.943 1.35 2.377-2.16m-2.806 1.718 2.093-2.377m-2.615 1.94 1.874-2.532m-2.377 2.25 1.592-2.813m-2.18 2.528 1.286-2.963m-1.853 2.746 1-3.03m-2.9-4.884v-2.46m-2.747 2.744-.5-2.377m-2.2 3.248-1-2.243m-1.438 3.706-1.5-2.032m-.61 3.907-1.875-1.658m.218 3.99-2.18-1.289m1 3.816-2.377-.785m1.723 3.554-2.442-.2m2.442 3.03-2.442.284m3.095 2.528-2.462.72m27.052 1.9 2.18 1.22m-1-3.836 2.31.785m-1.743-3.531 2.441.282m-2.441-3.117 2.441-.195m-3.008-2.552 2.376-.785m-3.553-1.83 2.18-1.22m-3.837-1.027 1.875-1.742m-3.9-.15 1.373-2.032m-3.837.592 1-2.31m-3.772 1.35.5-2.378' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M505.111 271.553a4.261 4.261 0 0 0-1.373-.414 17.848 17.848 0 0 0-3.62.13 1.842 1.842 0 0 0-.85.567 3.134 3.134 0 0 0 1.744.72 7.3 7.3 0 0 0 2.594-.2 5.4 5.4 0 0 0 1.5-.784' fill='%23e60000'/%3e%3cpath d='M505.111 271.553a4.261 4.261 0 0 0-1.373-.414 17.848 17.848 0 0 0-3.62.13 1.842 1.842 0 0 0-.85.567 3.134 3.134 0 0 0 1.744.72 7.3 7.3 0 0 0 2.594-.2 5.4 5.4 0 0 0 1.5-.784z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M499.377 270.681A8.94 8.94 0 0 1 500.6 267a10.316 10.316 0 0 0-.567 1.068s-.632.35-1-.13c-.413-.349-.195-.5.066-1.157.282-.414.2-.849.567-1.154.282-.283.567-.349 1.373-.349a1.932 1.932 0 0 1 1.94 1c.567.784.938 1.5 1.222 1.94a5.1 5.1 0 0 1 .632 2.311l.2 1a4.254 4.254 0 0 0-1.374-.415 17.76 17.76 0 0 0-3.618.13 1.847 1.847 0 0 0-.85.568s-.348-.784.131-1.155' fill='%23e60000'/%3e%3cpath d='M499.377 270.681A8.94 8.94 0 0 1 500.6 267a10.316 10.316 0 0 0-.567 1.068s-.632.35-1-.13c-.413-.349-.195-.5.066-1.157.282-.414.2-.849.567-1.154.282-.283.567-.349 1.373-.349a1.932 1.932 0 0 1 1.94 1c.567.784.938 1.5 1.222 1.94a5.1 5.1 0 0 1 .632 2.311l.2 1a4.254 4.254 0 0 0-1.374-.415 17.76 17.76 0 0 0-3.618.13 1.847 1.847 0 0 0-.85.568s-.348-.784.131-1.155z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M499.377 270.681a6.612 6.612 0 0 1 2.747-.348c2.528.065 2.594.195 2.748.414' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='M501.558 279.968v-8.7s.282-.282.937 0v8.632s.2 6.671-.5 6.585c-.851 0-.415-1.5-.415-6.52' fill='%23fc0'/%3e%3cpath d='M501.558 279.968v-8.7s.282-.282.937 0v8.632s.2 6.671-.5 6.585c-.851 0-.415-1.5-.415-6.52z' fill='none' stroke='%23000' stroke-width='.173'/%3e%3cpath d='m545.964 311.534-44.319-73.99-44.166 73.99h88.485z' fill='none' stroke='%23000' stroke-width='.406'/%3e%3cpath d='M467.245 295.054c.414.065 1.439-.72 1.722-.938.414-.2.632-.85.937-1.221a18.328 18.328 0 0 1 1.81-1.155 12.071 12.071 0 0 0 4.337-3.837 21.353 21.353 0 0 1 6.955-6.3 3.863 3.863 0 0 1 3.182.066 3.6 3.6 0 0 1 1 .718 13.867 13.867 0 0 0 4.708 2.16c1.875.566 2.31 1.808 3.77 3.116a9.808 9.808 0 0 0 2.465 1.592c.066.066.283.349.348.414.785.633 1.722 1.156 2.465 1.723 1.373 1.22 2.593 2.462 3.9 3.77.217.2.284.634.5.786a12.547 12.547 0 0 0 3.032 2.462 35.814 35.814 0 0 1 3.335 2.028c-11.249.415-21.539-.283-32.853.066h-2.092c-.785-.066-1.286 0-2.159 0-3.4 0-6.67 0-10.659-.066l3.183-5.428' fill='%23090'/%3e%3cpath d='M467.245 295.054c.414.065 1.439-.72 1.722-.938.414-.2.632-.85.937-1.221a18.328 18.328 0 0 1 1.81-1.155 12.071 12.071 0 0 0 4.337-3.837 21.353 21.353 0 0 1 6.955-6.3 3.863 3.863 0 0 1 3.182.066 3.6 3.6 0 0 1 1 .718 13.867 13.867 0 0 0 4.708 2.16c1.875.566 2.31 1.808 3.77 3.116a9.808 9.808 0 0 0 2.465 1.592c.066.066.283.349.348.414.785.633 1.722 1.156 2.465 1.723 1.373 1.22 2.593 2.462 3.9 3.77.217.2.284.634.5.786a12.547 12.547 0 0 0 3.032 2.462 35.814 35.814 0 0 1 3.335 2.028c-11.249.415-21.539-.283-32.853.066h-2.092c-.785-.066-1.286 0-2.159 0-3.4 0-6.67 0-10.659-.066l3.183-5.428z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M481.96 282.28c.566-.066.282-.2.784.13m-1.788.523c.567-.065.785-.414 1.222.065m-1.744.305a1.224 1.224 0 0 1 1.22.2m-1.788.524a2.18 2.18 0 0 1 1.287.065m-2.006.436c.567-.195.85.2 1.5.066m-2.245.675c.414 0 .5-.13.85 0 .436.066.349 0 .785.066m-2.42.654a4.451 4.451 0 0 1 .938 0 1.877 1.877 0 0 0 .85 0m-2.224.653a3.278 3.278 0 0 1 1.656.132m-2.833 1.4a2.056 2.056 0 0 1 1.656.065m-13.406 12.056c2.31-.35 5.08.065 7.39-.283m4.73-12.557c.567-.2.414-.131 1-.066.632.065.85.13 1 .065m-2.943 1.374a2.536 2.536 0 0 1 1.875 0m-.35.588a9.674 9.674 0 0 0-1.94 0m1.418.72a4.22 4.22 0 0 0-2.093-.131m-.872.633a7.887 7.887 0 0 1 2.464.064m-3.184.59a5.872 5.872 0 0 1 2.682.065m-3.553.435c.937-.065 1.809-.065 2.747-.065.13 0 .414-.13.567.065m-.262.524a26.7 26.7 0 0 1-4.208.13m3.4.59a13.183 13.183 0 0 1-1.788.13c-.065 0-.2-.13-.348-.13a7.386 7.386 0 0 0-2.093.195m-.349.524a1.176 1.176 0 0 1 .938-.066 16.015 16.015 0 0 1 2.528.2 2.132 2.132 0 0 0 .72.13m-4.687.11a9.04 9.04 0 0 1 1.875.065 14.934 14.934 0 0 0 2.376.348h-.065m-4.775.022a8.858 8.858 0 0 1 1.962.283c.85.13 1.81-.065 2.594.13m-5.34.023c.85.349 1.808.065 2.746.2.85.13 1.656.13 2.53.283m-5.865.24a28.553 28.553 0 0 1 4.054.2 3.343 3.343 0 0 0 1.5.13m-6.059.262a35.292 35.292 0 0 1 3.988.35 8.566 8.566 0 0 0 1.875.195h-.13m-6.257.458a.764.764 0 0 1 .35-.13c1.067 0 2.092.13 3.182.065a6.85 6.85 0 0 1 2.593.13h-.065m-6.562.589c2.094-.2 4.273.065 6.366 0m-6.736.654c2.245.195 4.49 0 6.671.195m-7.02.459c1 .2 1.94-.065 2.9.13a7.525 7.525 0 0 0 2.092.13 8.539 8.539 0 0 1 1.81-.064m9.09-9.265h.2m-.414.283c.065 0 .2-.13.2 0m-.5.37h.5m-.633.285h.567m-1 .37c.35 0 .633.066 1 .066h-.065m-1.22.435c.348-.13.783 0 1.155-.13h-.066m-1.613.719h1.526m-1.81.371a6.884 6.884 0 0 1 1.657.065m-2.027.5a10.346 10.346 0 0 1 2 .065m-2.377.523c.415-.065.786.2 1.222.283a1.879 1.879 0 0 0 .85-.065m-2.2.218a7.07 7.07 0 0 0 1.96.283m-2.331.218a5.567 5.567 0 0 1 1.591.283 2.619 2.619 0 0 0 .72 0m-3.03.524a3.637 3.637 0 0 1 2.245.13 3.1 3.1 0 0 0 .784 0h-.065m-3.03.37a3.708 3.708 0 0 1 2.376.132h.414m-3.313.523c1.068.2 2.18-.13 3.183.132m-3.466.3c.85.349 1.809 0 2.68.283a1.549 1.549 0 0 0 .939-.065m-4.186.437a2.232 2.232 0 0 1 1.155-.131 21.7 21.7 0 0 0 2.813.282m-4.491.5c.195 0 .414.13.632.065a38.281 38.281 0 0 1 3.836-.065m-4.752.5c1 .349 2.027 0 3.183.282a1.968 1.968 0 0 0 1.373 0m-4.927.46c1.5.064 3.03-.066 4.84.13m4.023-9.142c.13 0 .283.13.414.13m-.632.37a.85.85 0 0 1 .567-.065m-.7.5a1.625 1.625 0 0 1 .786.065m-1 .524a5.214 5.214 0 0 1 1 .065m-1.309.5c.414-.131.85.065 1.286-.066m-1.35.5a8.508 8.508 0 0 0 1.307.065v-.065m-1.526.653a3.466 3.466 0 0 1 1.155.066.48.48 0 0 0 .414-.065m-1.634.588c.567-.2 1.067.13 1.656 0m-1.875.72a16.791 16.791 0 0 0 1.81 0m-2.028.588c.2-.065.5-.282.785-.13a6.814 6.814 0 0 0 1.221.13m-2.159.654c.72-.283 1.44.131 2.159-.2m-2.224.85a2.565 2.565 0 0 1 1 0 2.849 2.849 0 0 0 1.286 0m-2.506.633a16.937 16.937 0 0 1 2.594-.066l-.065.065m-3.052.59c1.067-.066 2.245-.2 3.335-.2m-3.183.85a23.007 23.007 0 0 1 3.684-.13m-3.9.785a12.313 12.313 0 0 0 2.682-.066 9.007 9.007 0 0 0 1.44-.282h.718m-4.84.719c1.81-.132 3.772.13 5.647-.283m-13.777.064h1.5m5.69.219c.2.065.413-.067.5.065m6.606-.218c1.5-.13 3.03.283 4.557 0m-5.341-.5a5.571 5.571 0 0 1 2.811.13c.066 0 .066.131.131.2a10.148 10.148 0 0 0 2.442-.065m-10.77-.349h-1m-5.1-.218c-.631.065-1.286.065-2.026.13m14.8-14.343h.284m-.13.436a.835.835 0 0 0 .348-.066m-.282.72a.228.228 0 0 1 .064-.131h.414m-.326.567c.195-.13.414-.066.719-.066m.065.436a2.354 2.354 0 0 0-.632.131m.282.589a1.086 1.086 0 0 1 .633-.13m.305.5h-.937m.283.5a1.515 1.515 0 0 0 .938-.13m.24.7a2.507 2.507 0 0 0-1 .13m.2.61a1.845 1.845 0 0 0 1.156-.2m.088.414a9.5 9.5 0 0 1-1.069.284m.195.589c.415-.2 1 0 1.44-.13m.153.565a6.864 6.864 0 0 0-1.156 0 .684.684 0 0 1-.348.132m.26.959a1.537 1.537 0 0 1 .938-.284c0-.2.2 0 .348-.13.066-.066.2 0 .35 0m.261.633a7.322 7.322 0 0 0-1.656.13m.13.72c.633-.2 1.286-.2 1.962-.35m-1.9 1.156a10.883 10.883 0 0 0 2.158-.415m.523.48a8.556 8.556 0 0 0-2.377.349m.131.74a.681.681 0 0 0 .35.132 4.379 4.379 0 0 1 2.245-.5m.24.59a6.081 6.081 0 0 1-2.463.282c-.066 0-.132.066-.284.131m.283.545c.938-.13 1.81-.2 2.747-.349m.588.632c-.719.066-1.439-.065-2.158.066-.348.066-.654.2-1 .283m.11.589c.13 0 .283.065.349-.066a6.2 6.2 0 0 1 3.03-.348m.327.567a8.667 8.667 0 0 0-2.594.065 2.151 2.151 0 0 1-.939.282m.263.655c.5-.065.937-.283 1.373-.349a21.268 21.268 0 0 1 2.9-.065m0 .5a3.566 3.566 0 0 0-1.657 0 10.656 10.656 0 0 1-2.464.414m.5.457c.655-.065 1.286-.282 1.94-.414a6.983 6.983 0 0 1 1.657-.066m-3.6.85a20.4 20.4 0 0 0 3.03-.282c.35-.131.72.064 1.07 0m.042-.392c1.744.13 3.4-.2 5.08.13m-4.73.393c.195.065.348-.132.5-.132 1.374 0 2.748.065 4.208.132m-.5-3.554h.2m-.108.436c.13.066.349-.2.5 0m-.37.5h.851m-.633.72c.284-.349.72 0 1-.2m-.784.85c.349-.282.937.066 1.286-.282m-1.2.784c.566-.13 1.154.066 1.656-.282m-1.439.805c.85-.348 1.809.2 2.594-.414m-2.529.85c1.069-.349 2.18 0 3.248-.065m.676 0q2.79-.1 5.581 0m-6.387-.675c1.656.13 4.12 0 6.169.13' fill='none' stroke='%2300b300' stroke-width='.173'/%3e%3cpath d='M511.434 300.22c-.939-.567-1.877-1.22-2.9-1.722a11.523 11.523 0 0 1-3.03-2.465c-.2-.13-.285-.565-.5-.784-1.286-1.286-2.528-2.528-3.9-3.77-.72-.568-1.657-1.07-2.464-1.723-.065-.065-.283-.349-.349-.414a9.37 9.37 0 0 1-2.463-1.59c-.938-.851-1.44-1.658-2.224-2.313v-.065c.5-.282 1-.632 1.5-.937a3.309 3.309 0 0 1 2.68.13 2.509 2.509 0 0 1 .851.5 11.631 11.631 0 0 0 3.9 1.875c1.592.414 1.941 1.438 3.183 2.53a6.893 6.893 0 0 0 1.94 1.285 4.486 4.486 0 0 1 .283.414 14.793 14.793 0 0 1 2.094 1.438q1.656 1.525 3.247 3.118c.131.131.2.5.35.654a11.014 11.014 0 0 0 2.593 2.027c.937.5 1.81 1.156 2.747 1.657-2.528.131-4.992.131-7.542.131h-.066' fill='%23fc0'/%3e%3cpath d='M511.434 300.22c-.939-.567-1.877-1.22-2.9-1.722a11.523 11.523 0 0 1-3.03-2.465c-.2-.13-.285-.565-.5-.784-1.286-1.286-2.528-2.528-3.9-3.77-.72-.568-1.657-1.07-2.464-1.723-.065-.065-.283-.349-.349-.414a9.017 9.017 0 0 1-2.463-1.59c-.938-.851-1.44-1.658-2.224-2.313v-.065c.5-.282 1-.632 1.5-.937a3.309 3.309 0 0 1 2.68.13 2.509 2.509 0 0 1 .851.5 11.631 11.631 0 0 0 3.9 1.875c1.592.414 1.941 1.438 3.183 2.53a6.893 6.893 0 0 0 1.94 1.285 4.486 4.486 0 0 1 .283.414 14.793 14.793 0 0 1 2.094 1.438q1.656 1.525 3.247 3.118c.131.131.2.5.35.654a11.014 11.014 0 0 0 2.593 2.027c.937.5 1.81 1.156 2.747 1.657-2.528.131-4.992.131-7.542.131h-.066z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M495.322 287.075c.131 0 1.222-.2 1.352-.2m-1 .48a3.524 3.524 0 0 0 1.44-.195m-.851.719 1-.2h.413m-.98.48c.131-.065 1.5 0 1.743-.065m.349.349a5.306 5.306 0 0 0-1.5.194m.937.612a3.238 3.238 0 0 1 1.22-.283m.654.5c-.348 0-1.067.066-1.439.066m.72.587a4.566 4.566 0 0 0 1.221-.282m.741.566c-.414 0-.937.065-1.439.065m.633.524a10.52 10.52 0 0 0 1.5-.065m.545.282a10.014 10.014 0 0 1-1.286.284m.632.59c.348-.2 1-.066 1.5-.2m.523.48a7.463 7.463 0 0 0-1.286.066 1.344 1.344 0 0 1-.349.065m3.161 1.025a7.9 7.9 0 0 0-1.81.13m.567.676a9.139 9.139 0 0 1 1.962-.35m-.5 2.094a4.592 4.592 0 0 0 .938-.065 8.04 8.04 0 0 1 2.092-.283m.523.414c-1.22.195-1.656.195-2.594.348-.13 0-.414.066-.5.066m.545.457c.937-.195 2.245-.13 3.183-.283m1.024.5c-.72.13-1.657 0-2.377.13-.282.065-.936.13-1.285.2m.915.61c.066 0 .284 0 .35-.065.719-.5 1.94-.35 3.029-.35m.763.48c-1.067 0-1.5 0-2.31.066a5.134 5.134 0 0 1-1.069.195m.83.61c1-.194 2.811-.348 1.721-.282 1-.066 1.156-.066 2.311-.066m.3.349a5.694 5.694 0 0 0-1.874.065 3.977 3.977 0 0 1-1.723.284m.567.306a5.1 5.1 0 0 0 1.44-.2 7.915 7.915 0 0 1 1.787-.065m-2.856.566a8.635 8.635 0 0 1 2.245-.065 4.649 4.649 0 0 0 .937-.065m-19.663-13.3a1.166 1.166 0 0 1 .85-.13c-.065-.2.2 0 .349-.131 0-.067.2 0 .349 0m-2.049-.241a1.455 1.455 0 0 1 .937-.065c-.131-.2.283 0 .283-.13.066-.066.283 0 .5 0m6.693 7.3a.841.841 0 0 1 .72-.131c-.13-.2.414 0 .5-.13 0-.066.5 0 .653 0m-.064 1.918a9.645 9.645 0 0 0 2.092-.414m1.025.72a12.626 12.626 0 0 0-2.594.348m-9.648-10.14c-.784-.066-.85.194-1.439.194' fill='none' stroke='%2300b300' stroke-width='.173'/%3e%3cpath d='M501.405 286.487a5.1 5.1 0 0 1 1.068.348c1.591.414 1.94 1.438 3.183 2.528a6.791 6.791 0 0 0 1.94 1.286 4.815 4.815 0 0 1 .283.415 14.56 14.56 0 0 1 2.092 1.44q1.658 1.524 3.25 3.116c.13.131.2.5.348.654a11.029 11.029 0 0 0 2.594 2.028 17.206 17.206 0 0 1 2.31 1.438c2.094 0 4.121-.065 6.3-.13-.87-.5-1.59-1.068-2.527-1.5a9.343 9.343 0 0 1-2.312-1.875c-.13-.065-.2-.415-.349-.567q-1.449-1.44-2.964-2.812c-.567-.5-1.22-.85-1.875-1.374-.066 0-.195-.283-.283-.283a10.627 10.627 0 0 1-1.81-1.22c-1.067-1-1.439-1.875-2.9-2.312a13.141 13.141 0 0 1-3.554-1.656 2.516 2.516 0 0 0-.719-.5 2.974 2.974 0 0 0-2.463-.13 12.408 12.408 0 0 0-1.656 1.155' fill='%23fc0'/%3e%3cpath d='M501.405 286.487a5.1 5.1 0 0 1 1.068.348c1.591.414 1.94 1.438 3.183 2.528a6.791 6.791 0 0 0 1.94 1.286 4.815 4.815 0 0 1 .283.415 14.56 14.56 0 0 1 2.092 1.44q1.658 1.524 3.25 3.116c.13.131.2.5.348.654a11.029 11.029 0 0 0 2.594 2.028 17.206 17.206 0 0 1 2.31 1.438c2.094 0 4.121-.065 6.3-.13-.87-.5-1.59-1.068-2.527-1.5a9.343 9.343 0 0 1-2.312-1.875c-.13-.065-.2-.415-.349-.567q-1.449-1.44-2.964-2.812c-.567-.5-1.22-.85-1.875-1.374-.066 0-.195-.283-.283-.283a10.627 10.627 0 0 1-1.81-1.22c-1.067-1-1.439-1.875-2.9-2.312a13.141 13.141 0 0 1-3.554-1.656 2.516 2.516 0 0 0-.719-.5 2.974 2.974 0 0 0-2.463-.13 12.408 12.408 0 0 0-1.656 1.155z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M503.89 287.51c.065 0 .938-.13 1.068-.13m-.785.5c.5-.13.938 0 1.22-.2m-.783.633.849-.131a.915.915 0 0 1 .415-.066m-.829.546a9.581 9.581 0 0 1 1.5-.132m.3.35a11.5 11.5 0 0 0-1.439.195m.567.545a3.3 3.3 0 0 1 1.5-.2m.611.392c-.349 0-1.286.066-1.59.066m.5.458a5.6 5.6 0 0 0 1.592-.2m.567.545a10.025 10.025 0 0 0-1.352.064m.414.458a5.981 5.981 0 0 0 1.591-.13m.523.262a10.636 10.636 0 0 1-1.35.349m.7.457c.349-.195 1-.065 1.439-.195m.435.479a5.547 5.547 0 0 0-1.068.065c-.13 0-.2.13-.348.065m2.876.96a6.587 6.587 0 0 0-1.656.13m.5.61a10 10 0 0 1 1.874-.282m-.37 1.94c.13.065.567-.131.632-.131 1-.065 1.068-.283 2.027-.283m.48.413a11.1 11.1 0 0 1-2.4.284 1.55 1.55 0 0 0-.5.13m.479.393c.85-.13 2.093-.13 2.965-.2m.959.414c-.654.065-1.439 0-2.158.13-.282.067-.937.067-1.22.132m.849.61a.706.706 0 0 0 .349-.065 5.637 5.637 0 0 1 2.812-.349m.611.414a18.625 18.625 0 0 0-2.094.13c-.414.066-1 .2-1.067.2m.632.458c.937-.131 2.812-.283 1.81-.2.937-.065 1.154-.065 2.18-.065m.217.414a3.535 3.535 0 0 0-1.657 0 7.636 7.636 0 0 1-1.874.284m.48.283a12.094 12.094 0 0 0 1.591-.2 6.786 6.786 0 0 1 1.656-.065m-2.594.567a9.617 9.617 0 0 1 2.028-.131c.349 0 .5-.066.85-.066m-18.051-12.3c.2-.065.131-.131.5-.131.283-.065.5.066.567-.065a1.337 1.337 0 0 1 .349-.066m-2.071-.021c.282-.13.349-.284.719-.2.349-.065.5 0 .567-.13h.415m6.365 6.714c.195-.131.065-.2.5-.131-.13-.13.35 0 .415-.065a1.747 1.747 0 0 1 .654-.066m-.044 1.788a12.226 12.226 0 0 0 1.876-.349m.937.633a9.224 9.224 0 0 0-2.159.283m-9.068-9.287a2.679 2.679 0 0 0-1.723.567' fill='none' stroke='%2300b300' stroke-width='.173'/%3e%3cpath d='M511.716 288.884a6.422 6.422 0 0 0 1 1.069 10.2 10.2 0 0 0 1.808 1.22c.067 0 .2.283.284.283.633.5 1.286.851 1.875 1.373 1 .939 1.94 1.81 2.965 2.813.131.131.2.5.348.567a9.4 9.4 0 0 0 2.312 1.875c.565.283 1.067.632 1.658.937h-.066c2.46 0 4.927 0 7.389-.065a14.952 14.952 0 0 0-2.026-1.222 9.092 9.092 0 0 1-1.876-1.5c-.133-.065-.133-.283-.284-.5-.781-.786-1.591-1.5-2.377-2.246a10.852 10.852 0 0 0-1.5-1.069c-.067-.065-.195-.195-.195-.282a5.763 5.763 0 0 1-1.506-.938c-.85-.785-1.068-1.591-2.246-1.874a8.571 8.571 0 0 1-2.9-1.374 2.859 2.859 0 0 0-.633-.414 2.7 2.7 0 0 0-1.94-.065 11.447 11.447 0 0 0-2.026 1.439' fill='%23fc0'/%3e%3cpath d='M511.716 288.884a6.422 6.422 0 0 0 1 1.069 10.2 10.2 0 0 0 1.808 1.22c.067 0 .2.283.284.283.633.5 1.286.851 1.875 1.373 1 .939 1.94 1.81 2.965 2.813.131.131.2.5.348.567a9.4 9.4 0 0 0 2.312 1.875c.565.283 1.067.632 1.658.937h-.066c2.46 0 4.927 0 7.389-.065a14.952 14.952 0 0 0-2.026-1.222 9.092 9.092 0 0 1-1.876-1.5c-.133-.065-.133-.283-.284-.5-.781-.786-1.591-1.5-2.377-2.246a10.852 10.852 0 0 0-1.5-1.069c-.067-.065-.195-.195-.195-.282a5.763 5.763 0 0 1-1.506-.938c-.85-.785-1.068-1.591-2.246-1.874a8.571 8.571 0 0 1-2.9-1.374 2.859 2.859 0 0 0-.633-.414 2.7 2.7 0 0 0-1.94-.065 11.447 11.447 0 0 0-2.026 1.439z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M512.588 289.756c.065 0 1.069-.13 1.069-.13m-.786.348a5.155 5.155 0 0 0 1.156-.13m-.72.5.785-.13c.065-.065.2 0 .349 0m-.85.414a4.846 4.846 0 0 1 1.374-.13m.239.282a2.858 2.858 0 0 0-1.068.131m.545.37a4.5 4.5 0 0 1 1-.13m.458.283c-.2 0-1 .066-1.221.066m.414.37a3.664 3.664 0 0 0 1.22-.195m.459.48h-1.07m.263.37a8.38 8.38 0 0 0 1.307-.066m.37.2a2.991 2.991 0 0 1-1.067.195m.348.393c.284-.131 1 0 1.286-.066m.437.285a3.948 3.948 0 0 0-.937.065h-.283m2.245.806a10.615 10.615 0 0 0-1.44.131m.5.37a9.225 9.225 0 0 1 1.5-.2m-.5 1.44a2.669 2.669 0 0 0 .72 0c.719-.066.85-.283 1.5-.2m.393.327c-.785.065-1.156.13-1.81.13-.065 0-.348.066-.5.066m.35.327c.632-.13 1.809-.065 2.46-.13m.681.348c-.5.065-1.158 0-1.66.065-.349.066-1 .132-1 .132m.48.458c.13 0 .72-.132.72-.132.85-.065 1.156-.13 1.96-.2m.5.327a11.483 11.483 0 0 0-1.657.13 7.422 7.422 0 0 0-1.067.2m.61.393c.568-.132 2.159-.284 1.506-.284a13.2 13.2 0 0 0 1.59-.065m.263.349a4.217 4.217 0 0 0-1.29 0 5.666 5.666 0 0 1-1.524.195m.413.24a7.035 7.035 0 0 0 1.223-.13 4.374 4.374 0 0 1 1.284-.066m-2.071.48a4.753 4.753 0 0 1 1.724-.13 2.621 2.621 0 0 0 .631-.066m-14.037-9.374c.2-.066.282-.2.566-.131.195-.065.348 0 .348-.065.066-.066.2-.066.35-.066m-1.626-.038c.2-.066.282-.2.566-.2H513c0-.065.2-.065.283-.065m4.73 5.123a1.218 1.218 0 0 1 .568-.067c-.13-.065.282 0 .349-.065h.414m.065 1.374a4.981 4.981 0 0 0 1.44-.284m.74.5a7.71 7.71 0 0 0-1.809.195m-6.91-7.084c-.5-.066-.633.13-1 .348' fill='none' stroke='%2300b300' stroke-width='.173'/%3e%3cpath d='M530.878 298.76a8.662 8.662 0 0 0-1.506-.938 9.286 9.286 0 0 1-1.876-1.5c-.128-.065-.128-.284-.278-.5-.787-.785-1.59-1.5-2.377-2.245a10.827 10.827 0 0 0-1.508-1.068c-.061-.065-.195-.2-.195-.283a5.787 5.787 0 0 1-1.5-.938c-.719-.72-1-1.285-1.81-1.722h.066a6.891 6.891 0 0 1 1.22-.785 2.177 2.177 0 0 1 1.725.065c.062.067.28.2.5.35a6.193 6.193 0 0 0 2.467 1.154c.938.284 1.155.938 1.937 1.592a4.744 4.744 0 0 0 1.222.85c.067 0 .134.2.2.2a7.73 7.73 0 0 1 1.29.938c.72.633 1.373 1.285 2.026 1.94.133.13.133.349.284.414a8.586 8.586 0 0 0 1.59 1.22c.631.35 1.155.722 1.724 1.07-1.724.065-3.465.065-5.212.065v.065' fill='%23fc0'/%3e%3cpath d='M530.878 298.76a8.662 8.662 0 0 0-1.506-.938 9.286 9.286 0 0 1-1.876-1.5c-.128-.065-.128-.284-.278-.5-.787-.785-1.59-1.5-2.377-2.245a10.827 10.827 0 0 0-1.508-1.068c-.061-.065-.195-.2-.195-.283a5.787 5.787 0 0 1-1.5-.938c-.719-.72-1-1.285-1.81-1.722h.066a6.891 6.891 0 0 1 1.22-.785 2.177 2.177 0 0 1 1.725.065c.062.067.28.2.5.35a6.193 6.193 0 0 0 2.467 1.154c.938.284 1.155.938 1.937 1.592a4.744 4.744 0 0 0 1.222.85c.067 0 .134.2.2.2a7.73 7.73 0 0 1 1.29.938c.72.633 1.373 1.285 2.026 1.94.133.13.133.349.284.414a8.586 8.586 0 0 0 1.59 1.22c.631.35 1.155.722 1.724 1.07-1.724.065-3.465.065-5.212.065v.065z' fill='none' stroke='%23000' stroke-width='.347'/%3e%3cpath d='M520.5 290.126c.066 0 .937-.13 1-.13m-.72.414c.284-.066.85-.066 1-.2m-.719.413.85-.13h.283m-.7.566a5.853 5.853 0 0 1 1.157-.2m.305.195a3.818 3.818 0 0 0-1.22.2m.478.306a2.608 2.608 0 0 1 1.072-.132m.48.284a4.2 4.2 0 0 0-1.224.13m.414.241a3.353 3.353 0 0 0 1.155-.2m.435.415a11.175 11.175 0 0 0-1.222.13m.5.306a3.654 3.654 0 0 0 1.221-.132m.308.2a6.984 6.984 0 0 1-1.155.2m.563.391c.134-.13.854-.065 1.155-.13m.374.262a3.242 3.242 0 0 0-.854.065c-.062.065-.279.065-.346.065m2.137.676a7.729 7.729 0 0 0-1.289.131m.352.37a9.1 9.1 0 0 1 1.5-.2m-.48 1.374c.068 0 .57-.065.636-.065a5.826 5.826 0 0 1 1.435-.132m.307.262c-.72.13-1.066.13-1.658.2h-.413m.263.393c.563-.066 1.657-.13 2.243-.2m.743.326a12.293 12.293 0 0 0-1.591.066 5.8 5.8 0 0 0-.938.131m.48.392c.061 0 .63-.13.63-.13.721-.066 1.006-.131 1.81-.2m.479.327a9.994 9.994 0 0 0-1.5.065c-.353.066-.855.283-1.006.283m.547.284a7.545 7.545 0 0 1 1.435-.2 9.6 9.6 0 0 1 1.44-.065m.239.26a2.581 2.581 0 0 0-1.222 0 4.875 4.875 0 0 1-1.373.2m.352.174a3.4 3.4 0 0 0 1.155-.13 7.42 7.42 0 0 1 1.222 0m-2.032.435a11.794 11.794 0 0 1 1.658-.13h.57m-12.951-8.743a1 1 0 0 1 .5-.13h.436a.7.7 0 0 1 .282-.066m-1.525 0c.2-.13.2-.2.5-.13.195-.066.348 0 .414-.066a.7.7 0 0 1 .283-.066m4.316 4.753a1.135 1.135 0 0 1 .5-.065c-.067-.131.285 0 .346-.066h.441m-.134 1.221a9.861 9.861 0 0 0 1.44-.2m.742.415a8.36 8.36 0 0 0-1.875.13m-6.17-6.518c-.5-.065-.633.13-.938.349' fill='none' stroke='%2300b300' stroke-width='.173'/%3e%3cpath d='M514.5 299.651a2.1 2.1 0 0 0-1.161-.287l-.906-.031.893-.062c.974-.069 1.025-.11.628-.507-.235-.234-.5-.244-2.2-.071a10.429 10.429 0 0 1-2.244.07c-.375-.15.737-.356 2.026-.376.487-.008.808-.09.808-.207 0-.2-2.291-.1-3.234.134-.34.086-.386.063-.222-.111a3.638 3.638 0 0 1 1.49-.3c1.375-.088 1.76-.362.562-.4-.4-.013-.552-.057-.341-.1.737-.142.386-.4-.425-.316-2.319.245-3.015.272-2.767.1a2.482 2.482 0 0 1 1.022-.178c.9 0 1.531-.152 1.531-.356 0-.08-.21-.113-.467-.073s-1 .112-1.66.16c-1.374.1-1.03-.132.468-.316 1.342-.166 1.269-.477-.085-.366l-1.064.086.809-.182c.445-.1.808-.25.808-.334 0-.189.03-.19-1.66.084-1.183.192-1.4.192-1.4 0 0-.165.244-.232.838-.232.887 0 1.42-.131 1.3-.321a3.526 3.526 0 0 0-1.233-.008c-1.264.116-1.858-.078-.792-.257.708-.12 1.208-.36 1.06-.509a1.283 1.283 0 0 0-.674.076c-.753.216-1.523.214-1.523 0 0-.093.25-.171.554-.172.536 0 1.137-.244.974-.393a3.611 3.611 0 0 0-1.017.057 2.32 2.32 0 0 1-1.1-.022c-.1-.088.166-.15.64-.15 1.188 0 .968-.315-.265-.38l-1.064-.056.723-.144c1.057-.212.905-.49-.192-.351-.6.074-.954.049-1.031-.074s.093-.187.49-.187c.964 0 .7-.337-.288-.37-.735-.023-.78-.04-.255-.095.35-.036.638-.149.638-.25 0-.12-.292-.15-.846-.083-.923.11-1.335-.119-.513-.283.52-.1.714-.451.253-.451-.14 0-.256-.085-.256-.19 0-.127-.245-.152-.75-.077-.462.07-.794.044-.862-.066s.092-.178.411-.178c.752 0 .643-.336-.118-.36-.35-.01-.5-.055-.338-.1.546-.143.142-.352-.6-.309-.4.024-.516.01-.258-.032.722-.114.553-.39-.255-.419-.509-.017-.585-.045-.256-.1.257-.04.468-.153.468-.253 0-.117-.263-.146-.727-.082a1.99 1.99 0 0 1-.979-.06c-.182-.116-.076-.16.387-.161.35 0 .638-.047.638-.1 0-.3-.58-.587-1.222-.608-.4-.012-.563-.056-.352-.1.471-.09.508-.39.047-.39-.243 0-.3-.078-.226-.285s.041-.258-.175-.175c-.158.06-.284.027-.284-.073s-.27-.157-.682-.118c-.374.036-.68 0-.68-.069s.172-.132.383-.133a1.4 1.4 0 0 0 .623-.156c.2-.127.195-.2-.049-.44-.227-.227-.454-.265-1.049-.176-.494.074-.76.051-.76-.067 0-.1.268-.18.6-.18.8 0 .762-.3-.043-.38l-.638-.06.808-.384c1.163-.552 2.127-.337 3.75.84a15.515 15.515 0 0 0 2.57 1.214 6.969 6.969 0 0 1 3.225 2 23.333 23.333 0 0 0 2.083 1.789 29.261 29.261 0 0 1 4.944 4.03 23.445 23.445 0 0 1 1.617 1.765 12.975 12.975 0 0 0 3.191 2.528 11.732 11.732 0 0 1 1.387.89 9.012 9.012 0 0 1-1.605.072c-1.2 0-1.669-.065-1.86-.256z' fill='%23090'/%3e%3cpath d='M521.309 299.14a1.808 1.808 0 0 1-.373-.621c-.112-.354-.177-.36-2.265-.27-1.2.054-1.962.035-1.726-.042a6.563 6.563 0 0 1 1.4-.156c.614-.01.98-.09.98-.212 0-.14-.448-.17-1.575-.1-.887.053-1.39.034-1.15-.043a5.632 5.632 0 0 1 1.235-.154c.444-.01.808-.093.808-.187s-.115-.17-.255-.17-.255-.077-.255-.17-.517-.184-1.15-.2c-.7-.017-.9-.054-.51-.095.35-.036.638-.137.638-.224a3.73 3.73 0 0 0-1.574-.074c-1.776.1-1.825-.006-.085-.174 1.182-.115 1.578-.41.6-.444-.3-.011-.419-.055-.255-.1.493-.128.337-.428-.17-.328-1.29.253-2.052.3-2.16.12-.078-.125.161-.185.735-.185a1.725 1.725 0 0 0 .965-.183c.077-.124-.246-.17-1.013-.142-1.29.047-1.626-.09-.618-.25.378-.06.687-.185.687-.279 0-.2-.227-.206-1.065-.011-.352.081-.677.087-.722.015s.261-.185.682-.248.764-.187.764-.277c0-.143-1.066-.076-1.654.1a.281.281 0 0 1-.308-.1c-.057-.092.162-.163.5-.163.97 0 .7-.338-.288-.357-.869-.017-.878-.023-.341-.195.825-.265.67-.467-.275-.355-.529.063-.87.03-.945-.093s.082-.191.487-.191c.7 0 .834-.334.138-.354-.257-.008-.372-.052-.255-.1.488-.2.156-.35-.58-.266-.569.064-.757.034-.67-.106a.581.581 0 0 1 .45-.2c.183 0 .332-.077.332-.17s-.116-.171-.256-.171-.256-.073-.256-.162-.363-.137-.808-.107-.6.023-.341-.018c.723-.115.554-.391-.254-.417-.4-.013-.552-.056-.341-.1.426-.08.528-.39.127-.39-.14 0-.255-.076-.255-.17s-.248-.18-.553-.19-.42-.054-.255-.1c.629-.165.259-.383-.51-.3-.679.073-.741.057-.39-.1a2.828 2.828 0 0 0 .488-.252c.124-.124-.45-.6-.725-.6-.147 0-.268-.078-.268-.17s-.114-.171-.255-.171-.236-.1-.213-.213-.088-.19-.253-.163c-.188.031-.263-.033-.207-.18.066-.17-.077-.218-.556-.188-.367.023-.46 0-.218-.048.667-.138.82-.4.246-.42-.286-.01-.374-.053-.2-.1.364-.1.4-.394.043-.394-.14 0-.255-.077-.255-.17s-.288-.173-.639-.176c-.6 0-.617-.021-.307-.255a2.323 2.323 0 0 1 2.323.17 32.609 32.609 0 0 0 4.058 1.974 5.889 5.889 0 0 1 2.213 1.5 16.621 16.621 0 0 0 1.8 1.532c1.993 1.307 3.452 2.593 6.939 6.113a11.279 11.279 0 0 0 2.125 1.586 8.681 8.681 0 0 1 1.235.76 4.192 4.192 0 0 1-1.094.073c-.748 0-1.176-.082-1.351-.257zm4.829-.608c0-.348-.49-.668-1.02-.668-.312 0-.49-.07-.428-.17s-.019-.171-.17-.171-.229-.076-.17-.17-.058-.17-.255-.17-.314-.077-.256-.17-.087-.17-.34-.17-.4-.074-.341-.17-.16-.18-.543-.194-.5-.052-.265-.1c.427-.082.527-.39.127-.39-.14 0-.255-.076-.255-.17s-.115-.17-.255-.17-.256-.076-.256-.17-.234-.17-.52-.17c-.307 0-.478-.071-.415-.172.119-.192-.3-.68-.585-.68a.177.177 0 0 1-.182-.17c0-.094-.158-.17-.35-.17s-.3-.077-.246-.17-.216-.181-.713-.2c-.62-.02-.685-.044-.265-.095.545-.069.792-.388.3-.388-.14 0-.255-.062-.255-.137s-.288-.112-.638-.082c-.556.045-.587.029-.243-.12s.368-.2.14-.427a.848.848 0 0 0-.438-.255.179.179 0 0 1-.183-.17.183.183 0 0 0-.192-.171.982.982 0 0 1-.494-.346 2.2 2.2 0 0 0-1.041-.493c-.408-.08-.607-.154-.443-.163.408-.026.376-.37-.042-.48-.188-.05-.341-.166-.341-.259s-.27-.137-.6-.1a1.272 1.272 0 0 1-1.15-.4l-.548-.471.457-.007c.579-.009.774-.3.388-.585-.268-.2-.238-.252.334-.6a2.608 2.608 0 0 1 2.957.288 10.343 10.343 0 0 0 2.038 1 4.835 4.835 0 0 1 2.167 1.342 24.389 24.389 0 0 0 2.553 2.077 29.988 29.988 0 0 1 3.522 3.09 17.6 17.6 0 0 0 2.469 2.223c1.283.678 1.265.691-.926.693-1.371 0-2.085-.059-2.085-.18zm6.819-.562c-.2-.367-.314-.4-1.263-.361-.576.023-.8.01-.493-.032s.553-.113.553-.161c0-.223-.541-.589-1.012-.682-.286-.058-.52-.172-.52-.253s-.11-.15-.243-.15-.293-.152-.353-.34a.5.5 0 0 0-.436-.34c-.182 0-.33-.076-.33-.17s-.25-.171-.553-.173c-.392 0-.483-.047-.313-.155.2-.129.2-.193-.03-.423a.9.9 0 0 0-.453-.27.178.178 0 0 1-.183-.171c0-.094-.115-.17-.255-.17s-.256-.077-.256-.17a.2.2 0 0 0-.217-.17.784.784 0 0 1-.463-.342.825.825 0 0 0-.559-.34c-.186 0-.266-.076-.195-.189.167-.272-.277-.493-.777-.385-.325.07-.367.05-.177-.083.211-.147.188-.228-.154-.524a1.534 1.534 0 0 0-.555-.351 1.612 1.612 0 0 1-.578-.425 1.558 1.558 0 0 0-.6-.425 2.567 2.567 0 0 1-1.007-.941 1.023 1.023 0 0 0-.274-.38c-.254-.254-.245-.286.1-.413a2.241 2.241 0 0 1 1.962.545 9.984 9.984 0 0 0 1.778.86 4.9 4.9 0 0 1 1.899 1.192 13.987 13.987 0 0 0 1.8 1.45 26.112 26.112 0 0 1 2.825 2.439 23.56 23.56 0 0 0 2.724 2.341l.9.559h-1.036c-.917 0-1.06-.041-1.251-.4z' fill='%23090'/%3e%3cpath d='m492.488 272.643.132.349-1.657.633.2.631-.2.065c-.131-.348-.284-.5-.72-.414l-.13-.282 2.376-1m-1.81-.72a.464.464 0 0 1-.283-.413c-.066-.414.066-.938.567-1 .283-.13.937-.13 1.155.721a.8.8 0 0 1-.5.937l-.13-.349c.348-.065.414-.283.348-.567a.581.581 0 0 0-.72-.414.557.557 0 0 0-.414.72c0 .13.132.283.35.348l.065.284-1.438.13-.284-1.286.283-.065.284 1.068.72-.066m-.72-4.752a.563.563 0 0 0-.567.557v.01c0 .2 0 .633.414.633.2 0 .283-.13.349-.284l.2-.72a.594.594 0 0 1 .72-.5c.632 0 .785.566.719 1.067a.964.964 0 0 1-.283.72.682.682 0 0 1-.72.195l.065-.283c.414 0 .567-.348.633-.718a.583.583 0 0 0-.35-.72c-.282 0-.348.065-.5.5l-.2.567a.624.624 0 0 1-.632.5.823.823 0 0 1-.719-1c.066-.85.566-.938.85-.938v.35m2.616-2.4-.567 1.875-2.529-.85.567-1.81.35.131-.5 1.439.72.2.5-1.374.284.132-.5 1.373.85.283.5-1.5.283.065m.415-.545-.2.284-2.246-1.354.632-1a.687.687 0 0 1 1-.284.7.7 0 0 1 .282 1.066l-.413.72.938.567m-1.025-3.335 1.5-1.5.2.195-.632.63 1.656 1.59-.194.286-1.658-1.658-.633.631-.195-.2m3.88.023-.283.195-1.5-2.16.2-.128 1.59 2.093M498 259.5l-1.722.938-1.22-2.4 1.744-.848.131.278-1.373.721.348.72 1.286-.631.13.284-1.285.63.414.788 1.373-.72.13.195m2.443-.524-.283-1.5c0-.067-.066-.35-.13-.636l-.2 2.311-.348.133-1.221-2.03a5.6 5.6 0 0 1 .13.568l.35 1.591h-.35l-.566-2.528.5-.067 1.22 2.031.284-2.377.5-.134.5 2.6-.348.067m.894-2.7h1.069c.5.061.784.346.719.72a.6.6 0 0 1-.349.564c.13.067.5.194.414.63a.7.7 0 0 1-.85.72l-1.156-.062.132-2.6m2.572 2.919-.283-.066.631-2.59 1.221.413c.415.067.785.346.633.848-.131.413-.35.413-.5.5.065.067.194.194.065.568l-.065.413c0 .195 0 .195.065.285v.061l-.414-.127c-.065-.135.065-.5.13-.632a.473.473 0 0 0-.348-.568l-.85-.195-.283 1.087m3.77 1.658-1.722-1 1.286-2.244 1.744.937-.2.285-1.286-.787-.415.72 1.222.72-.132.285-1.275-.722-.348.72 1.286.782-.066.284m2.877-.847.633.78a1.078 1.078 0 0 1-.2 1.658c-.5.413-1.221.72-1.81.067l-.632-.848 2.027-1.658m.415 5.448-.872-1.72 2.311-1.222.85 1.722-.283.13-.633-1.372-.784.346.719 1.288-.283.131-.633-1.286-.784.347.72 1.442-.285.13m.393 2.31v-.349l1.809-.2-.13-.567.282-.065c.132.414.132.567.568.567l.065.283-2.594.35m1.46 2.157a.627.627 0 0 1-.654.414c-.414 0-.784-.282-.784-.937a1.27 1.27 0 0 1 .195-.567.814.814 0 0 1 .655-.283.823.823 0 0 1 .633.5c.064-.2.195-.282.5-.282.283 0 .633.13.633.784 0 .567-.349.784-.72.719-.349 0-.414-.195-.5-.349m.174.938a.822.822 0 0 1 .719 1.068.838.838 0 0 1-.938.633c-.414-.131-.567-.415-.719-.938l-.065-.284c-.066-.348-.2-.5-.35-.5l-.347 1.352-.285-.066.415-1.723a.993.993 0 0 1 .871.85l.132.35c.065.283.13.5.5.567.132.065.415 0 .5-.35.132-.5-.282-.566-.414-.653v-.351m-2.55 2.6.13-.284 1.656.785.2-.567.284.066c-.2.414-.2.567.13.85l-.13.195-2.311-1.068' fill='%23e60000'/%3e%3cpath d='m491.681 263.268.284-.5c.2-.286.2-.5-.065-.637-.2-.195-.414-.062-.567.134l-.349.563.72.42m9.92-5.844h.631c.283 0 .414-.067.5-.35 0-.286-.132-.347-.5-.347l-.567-.068-.065.787' fill='%23ffd1c5'/%3e%3cpath d='M501.624 258.562h.631c.349 0 .567-.134.567-.35 0-.347-.284-.414-.567-.414l-.632-.068v.855' fill='%23ffe6d9'/%3e%3cpath d='m504.39 257.754.721.195c.195 0 .5.067.566-.28a.388.388 0 0 0-.282-.5l-.785-.194-.2.78m4.752 3.99.348.413c.283.352.72.352 1.221-.061.414-.351.5-.786.2-1.072l-.414-.5-1.374 1.222m3.227 7.129c-.2 0-.5.065-.5.414 0 .2 0 .5.414.5.283 0 .435-.13.435-.414.067-.35-.13-.5-.348-.5m1.155.937a.317.317 0 0 0 .283-.349c.067-.348-.13-.414-.283-.414a.383.383 0 1 0 0 .763' fill='%23ffd1c5'/%3e%3cpath d='M501.624 335.538c1.5 0 3.116 0 9.852-1.658 6.737-1.59 12.337-5.715 13.626-6.3a8.106 8.106 0 0 1 3.248-.413 8.4 8.4 0 0 0-5.713-2.685c-2.964 0-1.721 0-4.272 1.071-2.464 1-7.674 4.2-16.459 4.2h-.13c-8.851 0-14.28-3.182-16.83-4.2-2.442-1.071-1.373-1.071-4.274-1.071a8.15 8.15 0 0 0-5.711 2.685 8.732 8.732 0 0 1 3.27.413c1.286.563 6.89 4.71 13.626 6.3 6.735 1.658 8.415 1.658 9.787 1.658' fill='%23fff'/%3e%3cpath d='M501.624 335.538c1.5 0 3.116 0 9.852-1.658 6.737-1.59 12.337-5.715 13.626-6.3a8.106 8.106 0 0 1 3.248-.413 8.4 8.4 0 0 0-5.713-2.685c-2.964 0-1.721 0-4.272 1.071-2.464 1-7.674 4.2-16.459 4.2h-.13c-8.851 0-14.28-3.182-16.83-4.2-2.442-1.071-1.373-1.071-4.274-1.071a8.15 8.15 0 0 0-5.711 2.685 8.732 8.732 0 0 1 3.27.413c1.286.563 6.89 4.71 13.626 6.3 6.735 1.658 8.415 1.658 9.787 1.658z' fill='none' stroke='%23000' stroke-width='.406'/%3e%3cpath d='M475.66 329.74c.718-.352-.132-1.6-.132-1.6l2.682-.563a8.233 8.233 0 0 0-3.27-.413c-.5.413-.414.937-.5 1.283a1.719 1.719 0 0 0 .195 1.29c.284.194 1 0 1 0' fill='%23fff'/%3e%3cpath d='M475.66 329.74c.718-.352-.132-1.6-.132-1.6l2.682-.563a8.233 8.233 0 0 0-3.27-.413c-.5.413-.414.937-.5 1.283a1.719 1.719 0 0 0 .195 1.29c.284.194 1 0 1 0z' fill='none' stroke='%23000' stroke-width='.406'/%3e%3cpath d='m478.187 327.557-2.68.563s.85 1.223.13 1.6l4.71-.854a25.078 25.078 0 0 0-2.16-1.283' fill='%23fff'/%3e%3cpath d='m478.187 327.557-2.68.563s.85 1.223.13 1.6l4.71-.854a25.078 25.078 0 0 0-2.16-1.283z' fill='none' stroke='%23000' stroke-width='.406'/%3e%3cpath d='M527.675 329.74c-.72-.352.128-1.6.128-1.6l-2.679-.563a8.115 8.115 0 0 1 3.25-.413c.5.413.412.937.5 1.283a1.733 1.733 0 0 1-.2 1.29c-.28.194-1 0-1 0' fill='%23fff'/%3e%3cpath d='M527.675 329.74c-.72-.352.128-1.6.128-1.6l-2.679-.563a8.115 8.115 0 0 1 3.25-.413c.5.413.412.937.5 1.283a1.733 1.733 0 0 1-.2 1.29c-.28.194-1 0-1 0' fill='none' stroke='%23000' stroke-width='.406'/%3e%3cpath d='m525.147 327.557 2.679.563s-.848 1.223-.129 1.6l-4.71-.854s.721-.5 2.16-1.283' fill='%23fff'/%3e%3cpath d='m525.147 327.557 2.679.563s-.848 1.223-.129 1.6l-4.71-.854s.721-.5 2.16-1.283z' fill='none' stroke='%23000' stroke-width='.406'/%3e%3cpath d='m482.984 325.75.567.194a1.6 1.6 0 1 1-1.243 2.941l-.567-.195 1.22-2.963m1.7 4.23-.35-.134 1.287-2.9.349.061-1.286 2.97m3.989 0a1.552 1.552 0 0 1-2.094.847 1.573 1.573 0 0 1-.784-2.091 1.606 1.606 0 0 1 2.093-.938 1.648 1.648 0 0 1 .785 2.16m2.092-.263c-.065-.2-.13-.351-.348-.413-.2-.067-.5 0-.567.195a.493.493 0 0 0 .131.565l.2.195c.349.284.567.569.349 1.071a.952.952 0 0 1-1.22.63 1.06 1.06 0 0 1-.568-1.222l.349.067a.626.626 0 0 0 .349.787.554.554 0 0 0 .72-.351c.13-.346-.067-.564-.284-.782l-.131-.134a.833.833 0 0 1-.283-.937.794.794 0 0 1 1.068-.5.834.834 0 0 1 .567.721l-.35.066m2.355.174-.5 1.808c-.13.5-.13 1 .414 1.16.567.195.85-.2 1-.72l.5-1.813.35.066-.567 1.943a1.058 1.058 0 0 1-1.374.847 1 1 0 0 1-.719-1.438l.5-1.937.349.061m2.354.547 1.722 2.9.414-2.317.35.067-.568 3.248-1.809-2.9-.414 2.31-.349-.066.633-3.248m3.138 3.9-.348-.06.348-3.12h.35l-.35 3.181m3.86-1.373a1.555 1.555 0 0 1-1.593 1.59 1.539 1.539 0 0 1-1.525-1.718 1.49 1.49 0 0 1 1.59-1.507 1.547 1.547 0 0 1 1.506 1.657m.37-1.763 2.464 2.243-.219-2.31h.414l.2 3.248-2.441-2.244.2 2.31h-.414l-.2-3.247m5.232 2.333.85-.134.13.351-1.286.2-.653-3.12.414-.06.5 2.746m1.788.022-.349.061-.72-3.03.35-.129.719 3.12m-.153-3.23.349-.13c.567-.128 1.068-.128 1.286.57a.754.754 0 0 1-.131.63.7.7 0 0 1 .785.565.966.966 0 0 1-.785 1.154l-.653.2-.851-3.029m2.115-.614 1.59-.563.066.345-1.155.413.283.854 1.156-.42.066.353-1.07.346.35 1.16 1.134-.418.13.352-1.5.5-1.069-2.97m5.015 1.575-.436.129-1.286-.849-.131.061.414 1.223-.283.133-1.226-2.966.414-.127a1.768 1.768 0 0 1 .786-.2.972.972 0 0 1 .632.563.838.838 0 0 1-.349 1.071l1.439.938m1.264-.547-.348.195-1.156-2.6-.633.284-.13-.284 1.591-.72.2.284-.72.286 1.22 2.528m1.07-1.374.065.849-.349.2-.2-3.622 2.747 2.244-.284.2-.72-.57-1.22.63m.959-3.18.5-.285a1.575 1.575 0 0 1 2.312.5 1.6 1.6 0 0 1-.72 2.244l-.5.284-1.592-2.746'/%3e%3cpath d='M482.33 328.427h.131a1.047 1.047 0 0 0 1.59-.5c.35-.782-.064-1.218-.783-1.5l-.066-.067-.872 2.093m5.864 1.29a1.152 1.152 0 0 0-.567-1.508 1.07 1.07 0 0 0-1.374.63 1.122 1.122 0 0 0 .5 1.508 1.085 1.085 0 0 0 1.439-.653m13.647 3.136a1.083 1.083 0 0 0-1-1.222 1.193 1.193 0 0 0-1.156 1.156 1.234 1.234 0 0 0 1.091 1.221 1.12 1.12 0 0 0 1.068-1.155m8.5-1.44.066-.061c.283-.067.567-.134.436-.57-.13-.412-.349-.412-.72-.284h-.065l.283.937m8.546-4.012.065 1.29.85-.5-.937-.787m2.856.57h.065a1.18 1.18 0 0 0 .633-1.658 1.154 1.154 0 0 0-1.722-.285l-.13.067 1.154 1.876m-11.03 4.794.282-.062c.284-.134.568-.285.416-.637-.067-.412-.5-.346-.786-.279h-.131l.2 1m3.945-2.79h.065c.35-.129.72-.346.5-.781-.13-.351-.567-.285-.85-.2l-.066.061.35.937' fill='%23fff'/%3e%3c/svg%3e\"},2906:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 675 450'%3e%3cpath d='m0 0 298.571 225.241H675V0z' fill='%23dc171d'/%3e%3cpath d='m0 0 299.005 225.746L0 450z' style='fill:%23fff;stroke:%23fff'/%3e%3cpath d='m0 450 298.571-224.759H675V450z' fill='%23012a87'/%3e%3cpath d='m150.828 170.286.092-3.484s-1.871-2.98.3-6.18c0 0-4.612-2.44-3.538-6.262 0 0-4.17-1.066-3.864-5.654 0 0-4.502-.312-4.968-4.144 0 0-4.502.741-6.483-2.993 0 0-4.392.858-5.63-2.22 0 0-4.269 1.479-6.802-2.14 0 0-4.508 1.822-6.397-1.594-1.865 3.404-6.372 1.594-6.372 1.594-2.503 3.606-6.802 2.11-6.802 2.11-1.196 3.09-5.575 2.214-5.575 2.214-1.975 3.735-6.47 2.993-6.47 2.993-.442 3.82-4.937 4.133-4.937 4.133.355 4.6-3.809 5.642-3.809 5.642 1.098 3.82-3.508 6.254-3.508 6.254 2.227 3.22.374 6.176.374 6.176l-.104 3.212 74.506.345' fill='%23ff0'/%3e%3cpath d='m377.175 843.108.091-3.458s-1.857-2.958.298-6.136c0 0-4.578-2.422-3.512-6.215 0 0-4.139-1.059-3.835-5.613 0 0-4.468-.31-4.931-4.114 0 0-4.468.736-6.434-2.971 0 0-4.359.852-5.588-2.204 0 0-4.237 1.468-6.751-2.124 0 0-4.474 1.808-6.349-1.583-1.851 3.379-6.325 1.583-6.325 1.583-2.484 3.579-6.751 2.094-6.751 2.094-1.187 3.068-5.533 2.198-5.533 2.198-1.96 3.708-6.422 2.971-6.422 2.971-.438 3.793-4.9 4.103-4.9 4.103.353 4.566-3.78 5.601-3.78 5.601 1.09 3.792-3.482 6.208-3.482 6.208 2.21 3.196.371 6.131.371 6.131l-.103 3.189 73.949.342h-.012z' style='fill:%23f9d90f;stroke-width:.27124387;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='M149.086 165.937c-11.702-1.172-25.177-3.949-35.579 1.908-6.973-4.11-16.683-3.858-24.95-3.053-4.49.802-9.77.802-14.462 1.57l-.735.103c-8.513.565-16.235-1.95-23.632-5.256 2.349 13.332 4.956 26.994 6.238 40.951 2.79 20.671-9.783 38.026-4.625 58.446 3.08 9.798 13.855 15.495 23.717 16.624 9.55.563 19.43 2.128 28.269 4.047 1.68.35 3.673 1.129 4.833 1.63 2.435 1.02 4.22 2.515 5.783 4.116 5.336-5.557 13.156-7.102 20.871-7.917 13.904-1.625 31.047-.741 39.56-13.336v-.713c4.624-6.965 4.01-17.592 2.005-25.485-.135-2.753-.87-5.181-1.27-7.806-8.494-22.431-1.22-47.658 2.436-70.268-4.465 2.44-9.446 3.593-14.413 4.814-3.961.528-8.377.288-12.388.072l-1.663-.447m17.485 64.376' fill='%23dc171d'/%3e%3cpath d='M166.566 230.313c-.056 1.477.742 2.637 1.03 4.003 1.626 9.806 3.197 22.793-6.899 28.877-11.169 7.1-25.815 4.06-38.738 7.818-2.582.717-6.139 3.091-7.954 4.77-1.166-.766-2.337-1.944-3.84-2.636-10.634-5.654-24.459-3.759-36.462-6.813-6.029-1.907-12.315-6.603-13.842-12.774-3.926-16.188 5.477-29.985 4.366-46.045-.717-12.264-2.778-24.037-5.612-35.535 9.385 4.372 20.246 5.101 30.796 3.005 7.813-1.092 16.91-1.116 24.232 2.189 4.035-1.736 8.759-2.514 13.107-2.993 8.268.804 17.154 2.3 25.668 2.238 5.686-.295 10.85-1.938 15.793-4.127-2.932 19.004-8.562 38.91-1.65 58.023' fill='%2362afe1'/%3e%3cpath d='m149.687 234.101-.092-17.869h2.201L124.48 198.59l-.05-9.168h2.638l-13.659-9.78-13.591 9.774h2.63l.05 9.161-27.17 17.619 2.17.012.092 17.857 72.09.05' fill='%23fff'/%3e%3cpath d='m376.042 906.458-.091-17.739h2.185l-27.113-17.513-.049-9.101h2.618l-13.557-9.709-13.49 9.703h2.611l.049 9.094-26.967 17.49 2.155.012.091 17.727 71.551.049.006-.013z' style='fill:none;stroke-width:1.16422367;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='m158.083 257.576.006 5.592-88.005-.098-.036-5.568 88.043.075' fill='%23fff'/%3e%3cpath d='m384.376 929.761.006 5.551-87.347-.097-.036-5.527 87.384.074h-.006z' style='fill:none;stroke-width:1.16422367;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='m75.929 257.238-.074-18.924 3.564-.007-.196 19.145.214-18.99-5.133-.148v-4.06l78.652.087.037 4.023h-4.85l.09 19.162-.17-19.162h3.612l.08 18.947' fill='%23fff'/%3e%3cpath d='m302.836 929.426-.073-18.786 3.537-.007-.195 19.005.213-18.852-5.095-.146v-4.03l78.064.086.037 3.993h-4.815l.091 19.023-.17-19.023h3.585l.079 18.809m-58.475-4.698-.055-13.1h-10.482l.061 13.087 10.476.013m0 0-.055-13.1h-10.482l.061 13.087 10.476.013m0 0-.055-13.1h-10.482l.061 13.087 10.476.013m0 0-.055-13.1h-10.482l.061 13.087 10.476.013m0 0-.055-13.1h-10.482l.061 13.087 10.476.013m-7.682-10.368.03 7.609h4.797l-.024-7.609h-4.803m58.925 10.404-.061-13.087-10.446-.012.049 13.099h10.458m-7.682-10.355.055 7.585h4.791l-.043-7.585h-4.803m7.603-10.975-.061-13.101h-10.458l.037 13.101h10.489-.006zm-7.682-10.343.03 7.597h4.791l-.006-7.597h-4.815m-43.567 10.295-.073-13.076-10.464-.013.049 13.082h10.489v.007zm-7.683-10.343.024 7.585 4.803.012-.036-7.597h-4.791m26.651 10.366-.049-13.076-10.47-.012.043 13.087h10.476m-7.676-10.353.024 7.585 4.797.024-.03-7.609h-4.791m22.298 10.379-.073-13.101-10.464-.012.049 13.087 10.489.025m-7.69-10.365.037 7.609h4.797l-.024-7.609h-4.809' style='fill:none;stroke-width:1.16422367;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='m129.208 227.08.117 30.421-30.561-.05-.111-30.395 30.55.024' fill='%23fff'/%3e%3cpath d='m355.717 899.488.116 30.199-30.333-.049-.11-30.174 30.321.024h.006zm-30.51 8.62 30.54.024m-30.54-.024 30.54.024m-30.54-.024 30.54.024m-30.54-.024 30.54.024m-30.54-.024 30.54.024m-26.729 21.543-.103-21.342m23.228 21.354-.103-21.329m14.75-21.732-17.081-12.474-19.193-.024-16.947 12.449 53.222.049m-34.797-22.827.03 7.609 16.144.012-.03-7.609-16.144-.012m0 0 .03 7.609 16.144.012-.03-7.609-16.144-.012' style='fill:none;stroke-width:1.16422367;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='m331.994 863.799.03 7.609 16.144.012-.03-7.609-16.144-.012' style='fill:none;stroke-width:1.16422367;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='m336.371 865.686.024 3.792h7.414l-.024-3.792h-7.414m3.665-10.544 8.979 6.348-17.891-.024 8.912-6.325m0 .001 8.979 6.348-17.891-.024 8.912-6.325m0 .001 8.979 6.348-17.891-.024 8.912-6.325m0 .001 8.979 6.348-17.891-.024 8.912-6.325m0 .001 8.979 6.348-17.891-.024 8.912-6.325' style='fill:none;stroke-width:1.16422367;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='M149.988 178.073c2.57-.062 3.232 10.584 3.238 15.857 2.208.62 7.102 3.698 9.267 6.482l-24.827-.037c2.134-2.747 6.992-5.837 9.181-6.456 0-5.28.54-15.919 3.14-15.858' fill='%23fff'/%3e%3cpath d='M376.341 850.838c2.551-.061 3.208 10.507 3.214 15.742 2.191.615 7.049 3.671 9.198 6.434l-24.642-.036c2.118-2.727 6.94-5.795 9.113-6.409 0-5.242.536-15.803 3.117-15.742m-49.533 49.508h2.21l-.645 1.186m-1.565-1.186h2.21l-.645 1.186m-1.565-1.186h2.21l-.645 1.186m-1.565-1.186h2.21l-.645 1.186m-1.565-1.186h2.21l-.645 1.186s1.065 1.37.018 2.94l.578 1.09h-2.131l.578-1.035s-1.09-1.82.049-2.995l-.657-1.186m4.505 0h2.21l-.639 1.186s1.065 1.334.006 2.94l.572 1.09h-2.124l.572-1.035s-1.065-1.82.055-2.995l-.651-1.186m4.911 0h2.204l-.657 1.186s1.077 1.37.018 2.94l.578 1.114-2.112-.024.566-1.035s-1.077-1.808.043-2.995l-.645-1.186h.006zm5.546.011h2.222l-.651 1.199s1.065 1.346.006 2.922l.597 1.108h-2.143l.572-1.035s-1.065-1.832.073-2.995l-.67-1.199h-.006zm4.93 0h2.204l-.651 1.199s1.071 1.346.012 2.916l.584 1.114h-2.124l.554-1.035s-1.071-1.82.085-2.995l-.664-1.199m4.901.013 2.204-.012-.651 1.199s1.09 1.346.03 2.922l.554 1.108h-2.131l.572-1.035s-1.065-1.82.073-2.995l-.651-1.187' style='fill:none;stroke-width:1.16422367;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='M114.077 296.496c11.445.037 25.52-2.3 32.113-5.709l14.48-1.282.289 17.667c-12.267 6.763-40.59 8.216-46.821 8.167-6.238.05-34.91-1.428-47.233-8.216l.16-17.679 14.511 1.307c6.594 3.392 21.098 5.746 32.53 5.746h-.03' fill='%23f9d90f'/%3e%3cpath d='M340.699 968.397c11.359.037 25.329-2.283 31.873-5.667l14.372-1.273.286 17.538c-12.175 6.714-40.286 8.156-46.471 8.108-6.191.049-34.649-1.418-46.879-8.156l.158-17.55 14.403 1.297c6.544 3.367 20.94 5.704 32.287 5.704h-.03' style='fill:none;stroke-width:.27124387;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='m29.63 221.138 12.757 4.06-3.858 20.653-12.076 1.876s-2.036-10.86 3.177-26.601' fill='%23f9d90f'/%3e%3cpath d='m256.883 893.589 12.662 4.03-3.829 20.503-11.986 1.862s-2.021-10.781 3.153-26.407v.012z' style='fill:none;stroke-width:.27124387;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='m38.522 245.624-12.07 2.103 7.636-10.86 4.434 8.757' fill='%237e7e7e'/%3e%3cpath d='m265.709 917.896-11.98 2.088 7.579-10.781 4.401 8.693' style='fill:%23f9b60f;stroke-width:.27124387;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='m22 236.015 12.297.889c.276 10.419 1.54 50.18 49.022 52.338l-1.478 14.465c-57.8.6-62.191-48.768-59.841-67.692' fill='%23f9d90f'/%3e%3cpath d='m249.31 908.358 12.205.882c.274 10.343 1.528 49.813 48.656 51.956l-1.467 14.36c-57.367.596-61.726-48.413-59.394-67.198zm44.797 70.138 14.384-3.141m-14.384 3.141 14.384-3.141m-14.384 3.141 14.384-3.141m-14.384 3.141 14.384-3.141m-14.384 3.141 14.384-3.141' style='fill:none;stroke-width:.27124387;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='m197.52 221.285-12.708 4.022 4.03 20.623 12.1 1.943s1.945-10.853-3.423-26.6' fill='%23ff0'/%3e%3cpath d='m423.518 893.735-12.613 3.993 3.999 20.472 12.01 1.929s1.93-10.774-3.397-26.406v.012z' style='fill:%23f9d90f;stroke-width:.27124387;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='m188.842 245.715 12.1 2.171-7.74-10.865-4.36 8.694' fill='%237e7e7e'/%3e%3cpath d='m414.904 917.987 12.01 2.155-7.682-10.786-4.328 8.631' style='fill:%23f9b60f;stroke-width:.27124387;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='m205.29 236.18-12.315.842c-.178 10.406-1.085 50.184-48.569 52.293l1.613 14.454c57.787.668 61.762-48.677 59.272-67.594' fill='%23f9d90f'/%3e%3cpath d='m431.23 908.522-12.223.835c-.177 10.33-1.077 49.818-48.206 51.912l1.601 14.348c57.355.663 61.3-48.322 58.828-67.101v.005zm-44.194 70.053-14.421-3.159' style='fill:none;stroke-width:.27124387;stroke:%23000' transform='matrix(1.00754 0 0 1.00735 -229.19 -679.021)'/%3e%3cpath d='M106.393 305.203c-.326.209-.767.264-1.276.24l-2.294-.118.197-2.863 2.275.122c.447.03.803.117 1.024.252.46.239.662.681.62 1.294-.03.527-.215.87-.552 1.072m-3.852 4.508.227-3.49 2.674.185c.864.068 1.508-.159 1.944-.601.454-.43.687-.993.718-1.631.055-.743-.135-1.35-.577-1.797-.423-.43-1.024-.656-1.778-.73l-3.82-.238-.529 8.216 1.135.074m8.322-6.862 2.797.03m-2.797-.03 2.797.03m-2.797-.03 2.797.03m-2.797-.03 2.797.03m-2.797-.03 2.797.03c.405.038.724.086.957.197.43.202.632.607.632 1.196 0 .552-.16.92-.473 1.14-.3.202-.735.295-1.257.295l-2.686-.03.024-2.827m-.043 7.28.024-3.508 2.625.037c.466 0 .81.036 1.048.153.387.178.577.552.595 1.067l.067 1.38c.019.331.025.534.044.669.037.098.055.202.104.277h1.41l-.024-.178c-.16-.086-.288-.251-.344-.503-.05-.16-.073-.4-.085-.7l-.025-1.097c-.018-.497-.103-.84-.294-1.03a1.474 1.474 0 0 0-.742-.529c.393-.207.687-.447.901-.742.203-.325.307-.735.307-1.238 0-.944-.386-1.589-1.172-1.938-.423-.19-.963-.29-1.601-.3l-3.943-.038-.03 8.241h1.134m8.753-1.748c-.502-.613-.773-1.38-.834-2.287-.055-1.141.165-2.012.687-2.601.528-.638 1.208-.944 2.098-.993.896-.05 1.631.239 2.177.803.558.552.877 1.318.932 2.275.03.92-.129 1.735-.552 2.452-.417.73-1.11 1.141-2.134 1.166-1.067.055-1.865-.196-2.374-.816m-1.349-5.188c-.528.816-.742 1.76-.687 2.901.08 1.232.46 2.25 1.178 3.017.797.767 1.852 1.152 3.152 1.079 1.393-.062 2.442-.588 3.153-1.557.576-.877.852-1.896.79-3.152-.079-1.123-.404-2.036-1.01-2.717-.767-.914-1.89-1.318-3.411-1.256-1.435.091-2.49.618-3.17 1.685m38.737-11.852c.79-.135 1.478-.097 2.104.117.92.288 1.54.97 1.925 2.012l-1.134.159c-.245-.563-.595-.95-1.067-1.165-.46-.202-1.037-.252-1.7-.154a2.648 2.648 0 0 0-1.827 1.123c-.429.661-.558 1.545-.368 2.672.16.933.503 1.724 1.067 2.25.521.54 1.288.73 2.289.589.748-.123 1.349-.422 1.772-.938.441-.49.57-1.233.423-2.189l-2.644.405-.135-.908 3.68-.565.717 4.36-.73.11-.453-1.005c-.306.455-.613.804-.883 1.006-.454.356-1.067.583-1.834.693-.994.153-1.901-.025-2.724-.552-.901-.669-1.484-1.662-1.704-3.041-.239-1.355-.024-2.515.601-3.428.595-.883 1.46-1.398 2.625-1.564m8.322-.625 2.638-.957c.362-.134.675-.179.944-.146.485.036.84.324 1.043.9.19.49.19.92-.024 1.221-.227.312-.583.54-1.099.73l-2.477.889-1.025-2.637m2.638 6.813-1.288-3.305 2.454-.883c.46-.147.778-.227 1.018-.202.435.055.767.32.988.821l.558 1.259c.123.312.22.502.3.588.037.11.117.178.178.25l1.331-.489-.073-.178c-.197 0-.386-.111-.528-.326-.104-.153-.203-.373-.344-.63l-.435-1.03c-.197-.448-.399-.724-.632-.89a2.106 2.106 0 0 0-.876-.239c.27-.313.466-.627.54-.994.08-.374.043-.791-.135-1.256-.338-.877-.957-1.355-1.828-1.417-.46-.036-.987.062-1.595.275l-3.705 1.319 2.994 7.75 1.085-.398m9.64-4.108-4.704-6.863 5.164-3.293.57.828-4.23 2.704 1.447 2.098 3.907-2.515.534.803-3.907 2.514 1.595 2.312 4.305-2.754.57.81-5.256 3.355m4.12-12.129 1.35-1.484c.626-.662 1.288-.963 2.012-.876.723.061 1.46.441 2.245 1.128.214.165.405.38.601.62.344.447.546.84.675 1.233.111.491.086.938-.085 1.368-.104.213-.289.465-.565.766l-1.355 1.472-4.875-4.237m7.127 3.23c.957-1.053 1.166-2.188.608-3.47a5.873 5.873 0 0 0-1.509-1.956c-.864-.767-1.766-1.16-2.717-1.232-1.055-.08-1.95.3-2.73 1.152l-2.3 2.465 6.342 5.532 2.3-2.477m4.916-6.411-7.299-4.286.595-.944 7.31 4.262-.601.98m2.86-4.99-7.882-3.153 2.325-5.544.957.368-1.895 4.568 2.373.933 1.773-4.208.907.375-1.754 4.2 2.656 1.08 1.945-4.623.957.361-2.368 5.643m3.624-9.677-8.292-1.833.276-1.282 7.66-2.588-6.728-1.484.246-1.005 8.292 1.784-.264 1.245-7.672 2.644 6.728 1.453-.239 1.067m-.664-10.53.104-1.043c.479.014.884-.061 1.19-.226.602-.326.951-.944 1.043-1.859.037-.428.018-.803-.08-1.16-.178-.685-.564-1.066-1.184-1.127-.46-.05-.79.061-1.03.313-.215.288-.442.704-.614 1.293l-.38 1.085c-.245.711-.472 1.202-.717 1.477-.393.516-.944.693-1.65.645-.754-.08-1.367-.38-1.803-.957-.447-.528-.632-1.282-.52-2.214.073-.853.355-1.57.858-2.146.466-.528 1.19-.78 2.115-.681l-.085 1.042c-.454 0-.816.08-1.08.264-.478.264-.742.822-.821 1.637-.068.675.024 1.129.282 1.473.258.288.582.472.963.503.405.037.723-.092.944-.404.16-.216.35-.681.608-1.436l.373-1.14c.185-.528.405-.932.662-1.22.46-.478 1.061-.68 1.816-.624.92.097 1.576.478 1.913 1.177.332.705.46 1.484.38 2.367-.104 1-.43 1.784-1.03 2.312-.602.54-1.35.724-2.258.65M27.63 252.45l.19 1.03c-.46.092-.828.277-1.098.516-.485.453-.65 1.134-.485 2.06.074.392.215.777.393 1.085.368.625.847.876 1.454.777.447-.08.743-.25.884-.57.135-.313.232-.792.264-1.404l.055-1.16c.037-.717.117-1.28.276-1.594.252-.564.724-.914 1.429-1.03a2.454 2.454 0 0 1 1.987.466c.576.399.957 1.092 1.098 2.011.178.841.098 1.595-.233 2.275-.32.663-.932 1.067-1.87 1.239l-.185-1.042c.435-.159.76-.313.975-.527.368-.411.479-1.006.338-1.822-.111-.663-.338-1.092-.681-1.306-.338-.252-.676-.35-1.043-.288-.411.061-.681.288-.81.655-.08.245-.141.754-.197 1.534l-.055 1.201c-.03.564-.117 1.03-.306 1.35-.3.588-.81.95-1.552 1.067-.938.16-1.663-.055-2.177-.656-.528-.588-.853-1.293-1.018-2.17-.184-1.043-.05-1.852.368-2.502.423-.669 1.092-1.055 1.999-1.184m-.521 10.862 8.107-2.441 1.89 5.709-.988.312-1.545-4.691-2.466.742 1.429 4.335-.944.3-1.417-4.347-2.747.821 1.57 4.795-.97.277-1.92-5.813m3.595 9.897 7.457-3.955.797 1.391-5.127 5.42 7.49-1.28.772 1.38-7.44 3.93-.528-.914 4.392-2.311c.16-.093.405-.228.76-.417.35-.16.743-.375 1.135-.578l-7.457 1.27-.547-.97 5.092-5.402-.245.123c-.16.092-.436.227-.81.441a6.053 6.053 0 0 1-.823.442l-4.378 2.348-.54-.932M44.6 284.2c-.374-.086-.743-.3-1.105-.675L41.92 281.9l2.121-1.944 1.59 1.62c.306.3.502.594.607.846.147.484 0 .926-.447 1.343-.405.374-.81.528-1.19.435m-5.992.755 2.6-2.386 1.846 1.87c.595.608 1.202.884 1.84.872a2.597 2.597 0 0 0 1.699-.742c.552-.49.816-1.067.816-1.685-.006-.602-.282-1.166-.791-1.693l-2.65-2.705-6.17 5.667.797.803m7.45 6.621 4.472-7.01 5.286 3.214-.552.834-4.342-2.6-1.343 2.122 3.993 2.422-.515.803-4-2.41-1.52 2.373 4.397 2.643-.528.828-5.348-3.219m13.236-1.356 2.687.853c.38.116.655.263.84.43.343.325.435.79.233 1.354-.166.49-.418.81-.81.945-.35.06-.791.06-1.307-.099l-2.533-.808.89-2.675m-2.319 6.886 1.116-3.342 2.503.816c.448.117.773.277.932.441.306.276.4.687.246 1.197l-.374 1.33c-.085.325-.129.54-.165.637 0 .105 0 .216.018.288l1.319.43.08-.191c-.141-.11-.221-.312-.215-.563.03-.154.074-.399.16-.681l.319-1.067c.129-.466.178-.816.061-1.067a1.678 1.678 0 0 0-.54-.729c.417-.074.779-.202 1.085-.43a2.28 2.28 0 0 0 .681-1.091c.3-.89.135-1.632-.528-2.196-.331-.294-.803-.546-1.422-.779l-3.753-1.158-2.625 7.818 1.098.337m11.394-142.282' fill='%23012a87'/%3e%3cpath d='M68.354 154.826c.97-2.337 9.949-8.709 39.412-5.918 0 0 4.98 3.04 7.906 2.649 1.669-.216-.981.104-3.158-1.705-2.221-1.809-2.693-5.519 2.38-5.421 5.047.129 23.943 1.196 24.3 2.894.33 1.717-9.992 2.435-13.831 2.336-3.858-.104-3.41 1.847.429 1.7 11.997-.43 25.09-4.655 38.921 5.126 1.65 1.189-4.17 1.38-8.673-.534 0 0-12.2.633-17.474-.233 0 0-4.054 3.298-9.334 2.974.687 1.71-1.95 8.094-18.553 3.292-2.742.841-12.732 2.514-11.641-.453-2.63 0-7.243.846-7.93-.65-.662-1.472 8.12-3.699 9.66-5.293 0 0-18.578.179-22.099-1.104 0 0-10.96 2.46-10.316.326' fill='%23bc715f'/%3e%3cpath d='M74.31 180.838c.399-.54.558-1.508 1.404-1.484 1.84.49 3.091 3.856 5.354 1.673.803-.178 1.11.915 1.773 1.043.423 1.87 1.925-.38 3.047-.252 2.398-1.067 5.367-1.319 8.207-.79.085 1.832-1.35 3.856-3.153 4.899.038 1.846 1.711 3.03 1.68 4.888-.287.693-.049 1.784-1.097 2.011-1.331-.239-2.644-.38-3.747-1.122-.135-.135-.245-.399-.528-.312-.135.62.834 1.233 1.214 1.864-.67 1.14-1.779.098-2.712.111-.276.656-.012 1.484-.687 1.907-1.178-.036-1.416-1.318-2.14-1.956-.742.803.521 1.281.7 1.919-.454 2.415-.393 4.777-2.81 6.36l-1.619.803c-.44-1.214-.165-3.054-.46-4.323-.957 1.557-1.705 2.919-3.11 4.236-1.643-.54-2.6-2.477-2.961-4.083-.688-1.871-.295-4.11 1.183-5.464-.502-.981-2.226-.755-2.471-2.152-2.582-1.681-4.011 2.944-5.68.539-.54-2.243.104-5.035 1.73-6.709-.361-.919-1.563-.68-2.275-1.208-1.625-1.38-3.968-2.838-3.851-5.33 4.446-1.679 9.764-.447 12.996 2.932' fill='%23008830'/%3e%3cpath d='M76.616 180.587c-.104 2.035 1.374.55 2.472 1.784-.859-.338-1.485 1.484-2.325.441l-.528.504c.307.698.902.79.282 1.557-.92.35-1.104-.803-1.533-1.257-.074-.201.141-.582-.197-.717-.52.441-1.067.601-1.784.528-.196-.393-.576-.908-.19-1.208.705-.951 1.797.342 2.33-.326.086-.588-.43-1.306.239-1.711.46.08 1.049-.171 1.24.405m5.495 1.668c.056.393-.202.944.313 1.221.669-.363 1.38-.087 1.766.576-.006.355.104.821-.362.993l-1.043-.195c.074-.202-.258-.331-.387-.528-.46-.14-.73.233-1.073.46.258.392.853.607.712 1.11-.614.612-.914-.528-1.59-.24-.46-.177.166-1.134-.557-1.423-.859 0-.289 1.41-1.387.859-.393-.442-.779-1.037-.355-1.533.46-.308 1.239-.228 1.63.17.67-.74.736-3.605 2.337-1.47m-6.854 2.956c.447.644-.098 1.52.473 2.238.895-1.673 1.76.362 2.827.202.325.4.11.951.171 1.405-1.319.35-2.907.766-4.072-.288l-.326.373c.693.645 1.35 1.374.797 2.453-.987.215-2.515.239-3.011-.778-.258-.84.601-1.447-.307-2.122-.656.816-.625 1.908-1.993 1.166-.846-.467-1.098-1.429-.675-2.239.884-1.392 2.43.044 3.386-.637.135-1.196-.307-2.239.79-2.9.939-.167 1.375.538 1.945 1.127' fill='%23f9d90f'/%3e%3cpath d='M79.008 185.94c-.441 2.036-1.975-.104-2.692-.19.957-1.699 1.558.552 2.692.19m4.778 2.214c-1.067.3-.902-1.03-1.429-1.552l.411-.374c.387.466.681 1.307 1.019 1.926' fill='%23fff'/%3e%3cpath d='M82.338 187.75c.306.704-.693 1.27.16 1.783.27-.226.6-.54.742-.669.73.216 1.575.345 2.085 1.067.546 1.497-.969 1.46-1.827 1.877l-.853-.036c.203-.418-.368-.595-.509-.883-.393-.098-.717.024-.938.355.19.95 1.35 1.692.154 2.538-1.012-.066-2.583.326-2.49-1.073-.38-.79 1.03-2.011-.479-2.06-.496 1.067-1.042 2.097-2.336 1.085l.159-1.52c1.24.035 2.705.25 3.262-1.135.356-1.005-.62-1.932.252-2.729 1.264-.288 1.975.558 2.619 1.397' fill='%23f9d90f'/%3e%3cpath d='M81.43 190.036c.32.754-.54.804-.944 1.177-.546.044-.926-.17-1.257-.54-.245-.913.435-1.005.957-1.366.607-.252.858.453 1.245.729'/%3e%3cpath d='M80.689 190.526c-.135.179-.326.123-.528.172l-.19-.913c.404.036.931.165.717.741' fill='%23fff'/%3e%3c/svg%3e\"},5862:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 180 120'%3e%3cpath d='M0 0h180v120H0z'/%3e%3cpath fill='%23fff' d='M0 0h180v80H0z'/%3e%3cpath fill='%23ce1126' d='M0 0h180v40H0z'/%3e%3cg id='d' fill='%23007a3d'%3e%3cg id='c'%3e%3cg id='b'%3e%3cpath d='M54 47v13h8' transform='rotate(18 54 47)' id='a'/%3e%3cuse xlink:href='%23a' x='-108' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72 54 60)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(-72 54 60)'/%3e%3cuse xlink:href='%23c' transform='rotate(144 54 60)'/%3e%3c/g%3e%3cuse xlink:href='%23d' x='72'/%3e%3c/svg%3e\"},6324:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 600'%3e%3cpath fill='%233e5eb9' d='M0 0h900v600H0z'/%3e%3cpath fill='%23ffd900' d='M0 112.5h900v375H0z'/%3e%3cpath fill='%23b10c0c' d='M0 150h900v300H0z'/%3e%3cg transform='scale(1.5)' fill='%23ffd900' stroke='%23000' stroke-width='1.008'%3e%3cg id='a'%3e%3cpath d='m492.85 154.28-24.285 8.571 24.285 8.571 24.285-8.571z' fill='%23fff'/%3e%3crect width='357.13' height='5.714' x='122.85' y='160' rx='3.106' ry='2.857'/%3e%3cpath d='M471.44 165.71c1.427 0 2.859-1.429 2.859-2.857 0-1.428-1.431-2.857-2.858-2.857m-2.861 5.714c1.427 0 2.859-1.429 2.859-2.857 0-1.428-1.431-2.857-2.858-2.857m-2.861 5.714c1.427 0 2.859-1.429 2.859-2.857 0-1.428-1.431-2.857-2.858-2.857'/%3e%3c/g%3e%3cuse xlink:href='%23a' x='-23.27' y='17.15' width='100%25' height='100%25'/%3e%3crect width='485.7' height='8.571' x='59.812' y='195.72' rx='4.224' ry='4.286' stroke-width='1.08'/%3e%3c/g%3e%3cpath d='M664.275 300c-42.856 42.853-100.002 128.566-214.29 128.566-100.002 0-171.42-85.712-214.29-128.566 42.857-42.861 114.282-128.574 214.29-128.574 114.282 0 171.42 85.713 214.29 128.574z' fill='%23fff' stroke='%23000' stroke-width='1.512'/%3e%3cpath d='M435.03 216.15c11.402 12.823 1.881 17.994 13.95 18.835 12.727.935 5.512 13.551 16.218 13.99 7.485.327-.747 30.226 6.457 40.093 7.34 10.286 13.487 3.014 13.616 10.444.127 7.686-19.976 6.911-20.328 30.585-.59 13.644-16.965 14.517-17.747 23.297-.972 8.257 32.261 12.892 31.817 20.284-.456 7.37-35.883 6.216-37.425 14.621-.79 7.55 48.669 13.737 52.647 35.57-7.38 2.413-28.379 4.685-44.249 4.697-99.985.072-171.42-85.72-214.275-128.574 42.857-42.86 114.282-128.574 214.29-128.574 0 0-29.683 27.123-14.956 44.723z'/%3e%3cg transform='scale(1.5)' stroke='%23fff'%3e%3cg id='d' stroke-width='6.927'%3e%3cg id='c'%3e%3cpath id='b' d='M213.933 192.377V169.52m13.85 0v22.857m13.86-22.857v22.857'/%3e%3cuse xlink:href='%23b' y='38.1' width='100%25' height='100%25'/%3e%3c/g%3e%3cuse xlink:href='%23c' x='41.56' width='100%25' height='100%25'/%3e%3c/g%3e%3c/g%3e%3cuse xlink:href='%23d' x='104.76' width='100%25' height='100%25' transform='scale(1.5)' stroke='%23000'/%3e%3cg fill='%23a70000'%3e%3cpath d='M767.025 294.9c-6.492 11.244 4.982-3.74 32.978 15.084 5.188 3.497 9.721 12.734 9.721 19.139-1.317-.881-2.295-2.841-3.745-4.115-2.031 2.035 1.939 11.366 2.52 15.775-4.377-2.449-3.956-3.609-5.41-6.619.29 3.639-.751 13.66.99 17.52-3.45-.986-3.22-3.762-5.021-4.32 1.225 4.368-1.068 9.122-.46 14.033-2.015-1.995-4.163-3.558-5.1-4.364-.157 2.338-3.877 8.484-3.961 10.695-1.71-1.033-2.175-2.644-2.46-3.729-2.126 2.671-9.681 12.537-10.165 15.546-5.822-5.142-20.735-17.663-22.676-24.309-1.716 3.772-4.2 5.046-9.11 7.8-1.939-10.533-9.194-22.372-5.314-31.401-2.75 1.63-5.013 3.261-7.761 5.267 2.604-15.255 15.88-33.143 34.979-42.002z' fill='%233d5da7' stroke='%23000' stroke-width='1.282'/%3e%3cpath d='M742.815 350.58c2.695-5.388 5.178-7.096 6.92-10.566 3.076-6.098 3.515-10.949 6.196-10.238 2.68.711 2.677 3.209-.795 9.204-3.473 5.996-5.124 7.277-12.321 11.6zm18.225 12.84c-.347-4.103.843-5.816.627-8.457-.37-4.649-2.271-7.839.201-8.066 2.472-.226 3.627 1.36 3.634 6.044.008 4.685-.717 5.915-4.46 10.48zm13.83 8.04c-1.08-5.727-.271-8.267-.963-11.957-1.203-6.492-3.583-10.765-1.293-11.359 2.29-.594 3.674 1.506 4.54 8.09.868 6.583.41 8.392-2.284 15.226zm14.385-40.125c-3.378-2.564-5.349-2.736-7.527-4.383-3.837-2.89-5.778-5.985-7.013-4.449-1.234 1.536-.358 3.216 3.663 5.883 4.02 2.667 5.382 2.877 10.878 2.949zm-2.385 19.005c-1.78-3.697-3.654-4.635-4.806-7.014-2.035-4.18-2.038-7.797-4.246-6.87-2.208.927-2.385 2.82-.024 6.867 2.36 4.046 3.597 4.779 9.076 7.017z'/%3e%3cpath d='M121.174 305.73c-.363-3.274.338-3.666-1.677-6.135 2.933 1.227 3.044 4.488 6.61 2.174 1.309-.678 1.88-.7.289-4.337 3.718.173 15.894 4.348 17.844 4.444 5.12.236 14.466-5.378 20.953 1.525 6.227 6.294 4.148 12.826 4.148 21.543-2.502-1.199-1.296-1.79-3.951-4.907 1.99 7.619-.106 21.356-.106 29.436-1.022-1.948-.872-1.103-1.871-3.12-2.655 7.375-5.837 8.893-5.837 17.61-.958-3.418-.033-2.696-1.099-4.494-2.58 5.6-19.89 10.385-13.22 16.029-6.02-3.53-8.66-3.159-11.39-6.334-1.177.759-2.111 2.196-3.205 4.165-10.585-4.87-6.8-15.375-15.093-22.392-1.435 2.942-.781 2.516-2.332 7.304-1.679-6.651-2.138-10.877-4.026-15.767-1.629 2.71-1.484 1.671-4.442 5.768-1.224-8.102-3.216-10.014-2.428-15.375-3.144 2.218-1.086 1.32-4.229 4.05 2.978-20.76 15.837-36.101 25.065-31.188z' fill='%233d5da7' stroke='%23000' stroke-width='1.6'/%3e%3cpath d='M108.151 339.615c2.728-6.684 5.186-8.783 6.949-13.086 3.112-7.563 3.619-13.61 6.233-12.687 2.615.922 2.573 4.037-.925 11.467-3.498 7.433-5.135 9.008-12.257 14.304zm10.326 16.725c1.094-5.992 2.819-8.175 3.528-12.034 1.259-6.786.557-11.84 2.987-11.573 2.43.266 2.979 2.828 1.362 9.578-1.617 6.751-2.733 8.349-7.878 14.029zm12.351 11.625c.308-5.81 1.67-8.077 1.874-11.82.369-6.582-.898-11.293 1.419-11.32 2.317-.027 3.143 2.34 2.433 8.929-.71 6.59-1.567 8.234-5.726 14.211zm26.522-37.995c-5.071-5.052-8.137-5.996-11.409-9.245-5.763-5.706-8.547-11.064-10.599-9.165-2.052 1.9-.817 4.746 5.25 10.176 6.068 5.43 8.178 6.222 16.758 8.234zm-3.09 19.53c-3.303-5.073-5.727-6.387-7.86-9.651-3.76-5.736-5.054-10.665-7.185-9.444-2.133 1.221-1.656 3.796 2.42 9.357 4.075 5.559 5.714 6.582 12.625 9.74z'/%3e%3cpath d='M380.7 194.25c-5.937 11.482 10.395-3.819 35.997 15.404 4.745 3.571 11.546 17.68 11.546 24.22-5.451-1.16-15.104-6.54-15.104-6.54s11.328 11.346 11.328 24.426c-4.002-2.502-6.004-2.127-7.335-5.199 0 4.234 3.56 6.933 3.56 13.473a52.938 52.938 0 0 0-7.78-5.19c3.776 6.54-6.88 19.227-1.547 23.462-9.327-1.349-18.87-7.308-22.646-13.848-2.001 1.348-2.218 3.466-2.296 5.723.294.245-14.198-10.756-12.866-14.982-1.944 2.727-2.217 4.226-2.661 7.3-5.323-5.25-10.203-10.5-11.979-17.288-2.365 3.073-2.514 3.073-4.88 6.147-1.774-10.757-1.774-10.373 1.775-19.592-2.514 1.665-4.584 3.33-7.098 5.38 2.38-15.578 14.523-33.845 31.988-42.892z' fill='%233d5da7' stroke='%23000' stroke-width='1.239'/%3e%3cpath d='M366.06 250.35c.95-7.912 3.018-10.893 3.636-15.988 1.103-8.961-.206-15.512 2.97-15.345 3.176.165 4.09 3.47 2.52 12.414-1.569 8.941-2.893 11.113-9.126 18.92zm16.575 14.49c-.643-6.675.59-9.517.18-13.818-.705-7.566-3.042-12.691-.274-13.162 2.767-.471 4.167 2.067 4.465 9.706.299 7.64-.441 9.675-4.372 17.274zm25.875 11.82c-2.814-5.777-5.232-7.499-7.048-11.217-3.209-6.534-3.88-11.87-6.354-10.904-2.475.968-2.339 3.728 1.236 10.124 3.574 6.396 5.19 7.701 12.166 11.997zm8.955-51.735c-7.167-3.773-10.848-3.82-15.466-6.245-8.133-4.25-12.867-9.052-14.547-6.409-1.682 2.643.562 5.271 8.947 9.135s10.96 4.047 21.067 3.519zm2.625 21.615c-5.218-4.341-8.304-4.98-11.67-7.773-5.93-4.9-8.88-9.714-10.861-7.762-1.98 1.951-.657 4.528 5.566 9.145 6.224 4.617 8.352 5.19 16.965 6.39z'/%3e%3c/g%3e%3c/svg%3e\"},4524:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 9600 4800'%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath d='M0 0v15h65v15h-5zm60 0H30v35H0v-5z'/%3e%3c/clipPath%3e%3cpath id='b' d='M840-1000v720C840 200 600 717 0 997-600 717-840 200-840-280v-720z'/%3e%3c/defs%3e%3cg fill='%23012169'%3e%3cpath d='M0 0h4800A2683.282 2683.282 0 0 1 0 2400z'/%3e%3cg fill='none'%3e%3cpath stroke='%23fff' stroke-width='480' d='m0 0 4800 2400M0 2400 4800 0'/%3e%3cpath stroke='%23ce1126' stroke-width='4' clip-path='url(%23a)' d='m0 0 60 30M0 30 60 0' transform='scale(80)'/%3e%3cpath stroke='%23fff' stroke-width='800' d='M2400-400v3200M-400 1200h5600'/%3e%3cpath stroke='%23ce1126' stroke-width='480' d='M2400 0v2800M0 1200h5200'/%3e%3c/g%3e%3cpath d='M0 2400h4800V0h4800v4800H0'/%3e%3c/g%3e%3cg transform='translate(7200 2400)' fill='none' stroke='%23000'%3e%3cuse xlink:href='%23b' fill='%23fcd116' stroke-width='64'/%3e%3cuse xlink:href='%23b' stroke='%23fff' stroke-width='56'/%3e%3cg stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath fill='%23fcad56' d='M-303-207c-22 37-59 45-88 33-30-12-57-82-87-120-29-37-37-21-57-43-19-21-49-37-96-59-26-12-53-23-71-69 7-19 26-35 41-41 15-5 27-27 29-46 2-18 18-38 40-53-10 2-31-2-41-9-9-8-24-6-33 1-9 6-20 8-36 6 6-5 17-16 18-26s13-15 36-15c22 0 37-26 55-26-13 0-10-22-3-23-32-6-28-32-15-32-1-4-5-8-20-13-14-5-7-18 4-26-10-20-1-35 15-48-22-1 2-32 8-49 6-16 9-18 16-8 8 9 26 30 47 36 20 6 32 17 36 34 4 18 12 27 34 35 23 7 54 26 50 69 18 1 31 6 42 15'/%3e%3cpath fill='%23ffa1a1' d='M-248-749c0 24 11 39 25 51 15 12 28 22 25 37-3 16 3 26 16 36 14 10 24 22 20 42s-1 32 7 47 22 27 16 51-3 56 5 72c7 15 0 27-14 54-14 26-22 36-51 46-30 9-32 27-32 58 0 32-21 48-60 42-40 33-65-6-75-55s-12-102-71-145c-58-44-35-118 14-148 49-29 43-115 37-168-5-53 30-83 57-112 36 14 81 69 81 92z'/%3e%3cpath fill='%23f1b2dc' d='M-333-408c-11-26-23-52 6-108 30-57 11-100 2-129-9-28-11-54 0-66 12-11 17-18 18-37 1-18 16-12 18-3s4 24-12 51c-16 28 45 96 17 169-19 51 6 116 16 161s16 153-50 169c45-22 3-165-15-207z'/%3e%3cpath d='M-630-416c11 2 17-4 20-11s5-11 15-12c10 0 26-3 30-11 3-8 15-1 26-21 10-21 17-45 44-54m74-174c-10 0-39 1-51 27m-83-151c24 7 14 23 26 32 22 17 2 35 20 40s17 8 13 28c-6 23 16 24 8 39m-104 79c14-13 49-23 57-37m-58-32c21-1 49 7 53-1m-56-22c10 0 31-7 35-21m-50-11c12 0 27-1 42-12m-58-27c9-7 25 1 40-9m-25-39c7 0 22-2 22 7'/%3e%3cg transform='translate(400 -400)' fill='%239e540a'%3e%3cg id='d'%3e%3cpath d='M-55-233s-70-59-128-99-128-89-128-99c11-8 70 30 151 79 82 50 128 99 128 99zm-5 40s-68-41-135-70c-70-29-175-29-186-39 0-10 122-16 209 19 89 41 135 70 135 70zm-1 68s-74-34-146-50c-70-16-170-10-182-19 0-10 124-30 217 0 94 29 134 49 134 49zm-4 69s-56-38-130-46c-70-7-163 46-175 36 0-10 81-69 182-59 99 10 146 49 146 49zm23-218s-71-65-71-109c0-39 43-99 62-99-10 20-43 60-43 99 0 40 75 89 75 89z'/%3e%3cpath d='M-42-274s14-65 14-109c0-59-42-113-38-128 15 15 57 59 57 128 0 60-10 89-10 89z'/%3e%3cg stroke='none'%3e%3cuse xlink:href='%23c' stroke='%23fcd116' stroke-width='12'/%3e%3cpath id='c' d='M-25-295c0-19-7-36-19-49-16-19-40-25-65-21-30 5-54 23-69 51-20 37-22 77-23 116 0 135 5 190 9 323 1 39 8 119-10 182-7 27-15 52-27 78 8-33 12-50 16-75 11-65 8-126 6-186-4-123-11-186-15-335-1-45 3-79 24-115 22-37 60-64 103-64 18 0 33 3 48 12 30 16 44 49 44 82z'/%3e%3c/g%3e%3cpath d='M-19 187s-28 50-49 86-38 44-54 33c-15-11-2-40 10-54s79-79 79-79z'/%3e%3cpath d='M-12 191s-11 57-20 98c-8 41-22 55-39 50-18-4-15-37-8-54s49-103 49-103z'/%3e%3cpath d='M0 193v100c0 42-10 59-29 58-18-1-22-33-18-52 3-18 28-111 28-111z'/%3e%3c/g%3e%3cuse transform='scale(-1 1)' xlink:href='%23d'/%3e%3cg id='e'%3e%3cpath d='M0 192c-53-1-58-20-58-20s-7-24-8-39c-1-2-15-32-11-45-5-12-17-41-6-46-5-14-13-30-14-45-4-11-14-35-6-43 0 0-19-40-10-50 0 0-9-39 0-49 0 0 0-40 10-50 0 0 0-39 9-49 0 2 28-55 94-55l-1 85h1z'/%3e%3cpath fill='none' d='M0-26c-85-1-103-20-103-20M0-76c-85 0-113-20-113-20M0-125c-85-1-113-20-113-20M0-175c-85-1-103-20-103-20m102-19c1 0-64 0-74-10l-19-19M0 152c-25 0-53-4-66-19m66-21c-47 0-75-19-75-19s-1-2-2-5M0 63c-62-1-79-14-83-21M0 23C-85 23-94 3-94 3l-3-6'/%3e%3c/g%3e%3cuse transform='scale(-1 1)' xlink:href='%23e'/%3e%3c/g%3e%3cg id='f'%3e%3cpath fill='%23009e49' d='M0 712c-43 40-126 14-152-4-27 9-99-19-118-50-52 7-70-67-61-86 14-28-11-46 7-65 25-24-14-47 10-63 24-17-6-45 18-63 25-19-13-45 13-58s-3-47 19-60-13-46 17-61c29-15 3-41 26-52 25-13 2-40 25-49 26-11 7-40 29-48 19-7 7-25 19-41H0'/%3e%3cpath d='M-99 18c-20 20 4 35-16 59-21 25-2 38-19 60s8 33-11 58c-19 24 4 39-17 59-20 21 4 39-17 61-20 23 4 38-16 58-21 21 3 43-17 63-20 21 4 47-19 71-22 24 4 43-14 61-19 19-2 38-15 51s-15 31-10 39M-60 25c-18 25 10 36-7 56-17 21 7 28-6 52s10 30-7 54 9 43-9 67c-19 24 9 37-8 61-16 25 8 38-7 56-15 19 11 37-8 60-18 22 8 39-7 59-15 21 6 43-7 60-13 16 9 41-10 63-18 22 4 37-7 52s-20 37-9 43'/%3e%3c/g%3e%3cuse transform='scale(-1 1)' xlink:href='%23f'/%3e%3cpath stroke='%23009e49' d='M0 712V12'/%3e%3cpath d='M0 48c-9 39 13 73 0 106-13 32 9 45 2 71-8 26 9 45-2 73s15 50 0 87c-15 36 10 45 0 82-11 42 19 64 0 94s17 37 2 71c-15 33 9 46-2 80'/%3e%3cpath fill='%23fcd116' d='M15 174c-5 11 15 37 4 57-12 19 6 49-6 73s19 54 7 82c-13 28 6 63 0 89-5 26 13 76 0 94-13 19 13 24-2 70s-25 7-16-7c19-31-21-41-2-71s-11-52 0-94c10-37-15-46 0-82 15-37-11-59 0-87s-6-47 2-73c7-26-15-39-2-71 10-32 20 9 15 20zm-84 32c-7 12 12 35-5 58-12 16 8 35-9 58-11 16 11 36-4 59-10 13 7 38-5 57-12 20 6 36-15 62-12 14 9 49-4 60s-1 54-10 60c-8 7 0 38-22 45 11-15-11-30 7-52 19-22-3-47 10-63 13-17-8-39 7-60 15-20-11-37 7-59 19-23-7-41 8-60 15-18-9-31 7-56 17-24-11-37 8-61 18-24-8-43 9-67s-6-30 7-54c24 9 12 61 4 73zm-50-65c-10 16 4 35-11 55-15 21 0 47-15 64-15 16 4 48-15 61s-7 52-22 65 0 50-17 69-9 58-19 67c-9 9 13 28-3 41-17 13-17 39-39 56 13-13-4-32 15-51 18-18-8-37 14-61 23-24-1-50 19-71 20-20-4-42 17-63 20-20-4-35 16-58 21-22-3-40 17-61 21-20-2-35 17-59 19-25-6-36 11-58 8-10 8-19 8-27 12-31 12 23 7 31z'/%3e%3cpath fill='%23ce1126' d='M-139 35c0-210 29-283 139-283s139 73 139 283z'/%3e%3cpath fill='%23000' d='M-139 35c0-210 29-283 139-283-50 0-81 39-89 65-9 26-4 24 7 14s6 12-4 24c-9 12-18 47-5 36 13-12 23 1 9 21-14 19-26 65-12 49s17 10 8 23c-8 13-7 25 0 19 8-6 7 21 0 32zm191-4C52 0 53-73 36-97c-12-19-12-39 2-17s21 11 11-11c-12-28-28-59-24-65 5-7 8-4 18 11s12-7 1-22c-11-14-10-17 13-7 41 17 61 66 61 231z'/%3e%3cpath fill='%23ce1126' d='M0 65c-44 0-92-7-124-20-38-15-40-28-27-44 10-12 30-5 50 4 19 8 73 14 101 14s82-6 101-15c20-8 40-15 50-3 13 16 11 29-27 44C92 58 44 65 0 65z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e\"},2346:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 450 300'%3e%3cpath fill='%23C60C30' d='M0 0h450v300H0z'/%3e%3cpath fill='%23FECB00' d='M0 0h300v300H0z'/%3e%3cpath fill='%23002664' d='M0 0h150v300H0z'/%3e%3c/svg%3e\"},9418:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 600 400'%3e%3cdefs%3e%3cpath id='a' transform='scale(21)' fill='%23fff' d='M0-1 .588.809-.952-.309H.952L-.588.809z'/%3e%3c/defs%3e%3cpath fill='%23002395' d='M0 0h600v400H0z'/%3e%3cpath fill='%23fff' d='M0 0h244v164H0z'/%3e%3cpath fill='%23002395' d='M0 0h80v160H0z'/%3e%3cpath fill='%23ED2939' d='M160 0h80v160h-80z'/%3e%3cpath fill='%23fff' d='m355 183 12.875 20.5H404.5V275L377 232l-37 59h18l19-34 39 70 39-70 19 34h18l-37-59-27.5 43v-39.5H444l12.25-19.5H427.5v-12.5h36.625L477 183H355zm43 87.5h-40v14h40zm76 0h-40v14h40z'/%3e%3cuse xlink:href='%23a' x='416' y='362'/%3e%3cuse xlink:href='%23a' x='371' y='328'/%3e%3cuse xlink:href='%23a' x='461' y='328'/%3e%3cuse xlink:href='%23a' x='333' y='227'/%3e%3cuse xlink:href='%23a' x='499' y='227'/%3e%3c/svg%3e\"},3969:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 809 500'%3e%3cpath fill='%23006a4e' d='M0 0h809v500H0z'/%3e%3cpath fill='%23ffce00' d='M0 100h809v100H0zm0 200h809v100H0z'/%3e%3cpath fill='%23d21034' d='M0 0h300v300H0z'/%3e%3cg transform='translate(150 150)' fill='%23fff'%3e%3cg id='b'%3e%3cpath id='a' d='M0-95V0h50' transform='rotate(18 0 -95)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3cuse xlink:href='%23b' transform='rotate(144)'/%3e%3cuse xlink:href='%23b' transform='rotate(216)'/%3e%3cuse xlink:href='%23b' transform='rotate(288)'/%3e%3c/g%3e%3c/svg%3e\"},9493:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23A51931' d='M0 0h900v600H0z'/%3e%3cpath fill='%23F4F5F8' d='M0 100h900v400H0z'/%3e%3cpath fill='%232D2A4A' d='M0 200h900v200H0z'/%3e%3c/svg%3e\"},5437:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1400 700'%3e%3cpath fill='%23060' d='M0 0h1400v700H0z'/%3e%3cpath fill='%23fff' d='M0 0h1400v500H0z'/%3e%3cpath fill='%23c00' d='M0 0h1400v200H0z'/%3e%3cg fill='%23f8c300'%3e%3cpath d='M672 340.7a12.5 12.5 0 0 1 23.3 5.9v50h9.4v-50a12.5 12.5 0 0 1 23.3-5.9 29.5 29.5 0 1 0-56 0'/%3e%3cpath d='M678.7 327.65a20 20 0 0 1 21.3 9.55 20 20 0 0 1 21.3-9.55 21.5 21.5 0 0 0-42.6 0' fill='%23fff'/%3e%3cpath id='a' d='M695.3 376.627a38 38 0 0 1-63.845 24.316 39.5 39.5 0 0 1-59.734 17.467c3.65 36.426 58.252 28.989 62.32-6.429 17.154 30.115 54.873 21.49 65.91-15.4z'/%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 1400 0)'/%3e%3cpath id='b' d='M658.84 441.31c-7.618 16.446-22.845 19.271-36.164 5.995 0 0 5.354-3.783 11.086-4.826-1.075-4.574 1.13-10.902 4.235-14.324 3.258 2.227 7.804 6.689 8.96 11.874 8.03-1.04 11.883 1.282 11.883 1.282z'/%3e%3cuse xlink:href='%23b' transform='rotate(9.37 700 804)'/%3e%3cuse xlink:href='%23b' transform='rotate(18.74 700 804)'/%3e%3cpath d='M603 478a340 340 0 0 1 194 0' fill='none' stroke-width='16' stroke='%23f8c300'/%3e%3cg transform='translate(700 380)'%3e%3cg transform='translate(0 -140)'%3e%3cpath id='c' transform='scale(.00005)' d='m0-513674 301930 929245-790463-574305h977066l-790463 574305z'/%3e%3c/g%3e%3cg id='d'%3e%3cuse xlink:href='%23c' transform='translate(-70 -121.244)'/%3e%3cuse xlink:href='%23c' transform='translate(-121.244 -70)'/%3e%3cuse xlink:href='%23c' transform='translate(-140)'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='scale(-1 1)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e\"},7238:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1800 900'%3e%3cdefs%3e%3cg id='b'%3e%3cg id='a'%3e%3cpath d='M1 0H0v.5z' transform='translate(0 -.325)'/%3e%3cpath d='M1 0H0v-.5z' transform='rotate(-36 .5 -.162)'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='rotate(72)'/%3e%3cuse xlink:href='%23a' transform='rotate(144)'/%3e%3cuse xlink:href='%23a' transform='rotate(216)'/%3e%3cuse xlink:href='%23a' transform='rotate(288)'/%3e%3c/g%3e%3c/defs%3e%3cpath fill='%2300247d' d='M0 0h1800v900H0z'/%3e%3cpath d='M329.376 777.265c-17.934-.15 168.624-99.431 324.77-226.6C858.788 384 1299.54 117.157 1429.115 73.796c13.543-4.532-27.776 23.073-33.14 32.016-138.341 163.74-27.925 472.724 144.973 628.048 51.99 39.763 49.327 41.85 145.707 45.746v9l-1357.28-11.34zm-11.251 18.06S304.962 804.727 305 811.73c.043 7.772 14.766 18.047 14.766 18.047l1338.745 14.765 24.609-16.406-34.453-21.328-1330.542-11.484z' fill='%23fed100'/%3e%3cg fill='%23fff'%3e%3cuse xlink:href='%23b' transform='matrix(45 0 0 45 342.957 112.581)'/%3e%3cuse xlink:href='%23b' transform='matrix(37.5 0 0 37.5 521.205 267.53)'/%3e%3cuse xlink:href='%23b' transform='matrix(45 0 0 45 135 321.808)'/%3e%3cuse xlink:href='%23b' transform='matrix(52.5 0 0 52.5 342.957 652.581)'/%3e%3c/g%3e%3c/svg%3e\"},7246:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3e%3cpath d='M1200 600V0H0v600z' fill='%23dc241f'/%3e%3cpath d='M0 0v600l600-300z' fill='%23ffc726'/%3e%3cpath d='M0 0v600l400-300z'/%3e%3cpath d='m92.858 208.928 19.76 189.181 95.212-164.663-173.817 77.251 186.025 39.67-127.18-141.44' fill='%23fff'/%3e%3c/svg%3e\"},4698:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 900 600'%3e%3cpath fill='%2328ae66' d='M0 0h900v600H0z'/%3e%3cg fill='%23fff'%3e%3cpath d='M446.821 66.543c26.6 11.42 45.236 37.85 45.236 68.627 0 41.225-33.43 74.655-74.654 74.655-18.455 0-35.345-6.704-48.377-17.805a74.443 74.443 0 0 0 26.15 5.951c41.185 1.798 76.042-30.142 77.84-71.327 1.044-23.91-9.287-45.687-26.195-60.101z'/%3e%3cpath id='a' d='m375.616 121.42 8.458-26.033-22.145 16.09h27.373l-22.145-16.09z'/%3e%3cuse xlink:href='%23a' y='-38.4' height='600'/%3e%3cuse xlink:href='%23a' x='37.937' y='-18.722'/%3e%3cuse xlink:href='%23a' x='-37.936' y='18.722'/%3e%3cuse xlink:href='%23a' y='38.4' height='600'/%3e%3c/g%3e%3cg fill='%23383739'%3e%3cpath fill='%23ca3745' d='M107.998 0h162v600h-162z'/%3e%3cg id='c'%3e%3cg id='b'%3e%3cpath d='M107.998-39.619v5.88l9.11 8.527-3.072 2.86 6.515 6.038-2.86 2.596v-3.761h-5.562v4.502l12.553 11.759h6.356l.689-4.132h-3.655l3.972-3.707L142.002 0l-9.958 9.11-3.972-3.708h3.655l-.689-4.184h-6.356L112.13 12.977v4.502h5.562v-3.76l2.86 2.594-6.515 6.039 3.072 2.913-9.11 8.474v5.88l15.413-14.354-3.072-2.913 6.462-6.039-5.562-5.19 3.708-3.39 7.097 6.568L147.617 0l-15.573-14.3-7.097 6.62-3.708-3.443 5.562-5.19-6.462-6.039 3.072-2.86-15.413-14.407zm0 28.549v22.14l3.602-3.655v-4.29h3.813L118.485 0l-3.072-3.072H111.6v-4.343l-3.602-3.655zm26.271 7.839-.53 3.019.53 3.072 3.284-3.072-3.284-3.02z'/%3e%3cpath fill='%23faae29' d='M107.998-38.983v4.66l9.746 9.11-3.072 2.861 6.514 6.038-3.919 3.655v-4.396h-4.714v3.92l12.341 11.493h5.72l.583-3.284h-4.237l5.084-4.767L142.638 0l-10.594 9.693-5.084-4.714h4.237l-.584-3.337h-5.72L112.55 13.135v3.92h4.715v-4.396l3.919 3.654-6.515 6.038 3.072 2.913-9.745 9.058v4.66l14.777-13.718-3.072-2.913 6.462-6.038-5.562-5.19 4.344-4.026 7.097 6.62L146.927 0l-14.884-13.718-7.097 6.62-4.344-4.025 5.562-5.19-6.462-6.039 3.072-2.86-14.777-13.771zm0 28.548v20.87l3.178-3.179V2.648h4.078L117.903 0l-2.649-2.648h-4.078v-4.609l-3.178-3.177zm26.589 8.051-.37 2.172.37 2.172 2.33-2.172-2.33-2.172z'/%3e%3c/g%3e%3cuse xlink:href='%23b' y='109.207'/%3e%3cuse xlink:href='%23b' y='222.005'/%3e%3cuse xlink:href='%23b' y='334.802'/%3e%3cuse xlink:href='%23b' y='447.598'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='matrix(-1 0 0 1 377.996 0)'/%3e%3cpath id='d' fill='%23faae29' d='M121.14 530.824c.8 3.407 3.508 5.979 4.154 9.513 1.292-3.685 2.484-6.773 1.594-10.804-.637-2.883-3.062-4.94-3.343-7.902-2.644 2.377-3.213 5.749-2.405 9.193zm-.67 14.276c2.243 3.075 5.36 5.434 8.803 7.007-.678-2.694.594-4.722 2.006-6.86 1.7-2.574 2.53-5.103 1.143-8.067-.646 1.541-1.514 2.821-2.533 4.139-1.506 2.055-2.497 3.883-2.73 6.52-1.742-1.292-2.507-3.22-3.439-5.086-1.42-2.673-3.712-4.908-6.345-6.369.7 2.998 1.238 6.169 3.095 8.716zm12.578 9.166c-.48 1.708-.893 3.4-.8 5.186-1.482-1.597-3.45-2.799-5.206-4.085-2.39-1.934-5.178-3.298-7.133-5.76.292 3.624 1.843 6.578 4.788 8.783 3.113 2.33 6.867 3.583 9.933 6.03-.46-3.297.752-5.937 1.784-8.967.86-2.895.028-5.834-1.935-8.04.029 2.445-.743 4.545-1.43 6.853zm6.986 11.133c.645 2.5 2.437 4.534 3.66 6.764-3.299-1.023-6.21-2.812-9.191-4.495-3.552-1.934-7.41-3.165-10.625-5.719 1.6 5.924 5.567 9.359 11.369 11.11 3.967 1.198 7.31.6 12.124 2.546-.552-3.259-1.525-6.776-3.066-9.714-1.195-2.125-2.521-4.221-3.26-6.562-1.07 1.923-1.576 3.879-1.011 6.07zm12.139 9.065a15.21 15.21 0 0 0 4.494 4.875c-4.683.299-8.451-2.669-13.017-2.798-2.82-.08-5.497.796-8.373.533 3.413 2.303 6.986 4.314 11.141 4.851 5.401.699 10.382-.66 16.341-.129-2.785-1.965-4.178-4.595-5.914-7.423-2.26-3.533-4.393-6.05-8.789-6.618 1.765 1.983 2.792 4.44 4.117 6.71zm16.631 7.773c-8.25 1.403-16.156 3.218-24.581 3.301 9.431 3.288 18.318 3.883 27.672.488 5.055-1.835 8.93-2.817 12.748-2.544 5.58.401 12.36 2.603 19.865 10.517l2.95-2.36c-10.756-9.583-24.829-11.753-38.654-9.403z'/%3e%3cuse xlink:href='%23d' transform='matrix(-1 0 0 1 378.036 0)'/%3e%3cpath d='m128.266 70.34-12.981-7.961V43.244l12.981-7.96V25.159l12.267-7.388h9.8l18.648-10.488h40.033l18.648 10.488h9.8l12.267 7.388v10.125l12.981 7.96v19.135l-12.98 7.96v10.125l-12.268 7.387h-9.8L209.014 98.34h-40.033l-18.648-10.489h-9.8l-12.267-7.387z'/%3e%3cpath fill='%2328ae66' d='M169.068 7.733 150.424 18.22h-9.746l-11.97 7.203V35.54l-12.977 7.945v18.644l12.977 7.945v10.17l11.917 7.203h9.799l18.644 10.487h39.83l18.644-10.487h9.8l11.97-7.204v-10.17l12.976-7.944V43.485l-12.976-7.945V25.423l-11.97-7.203h-9.8L208.898 7.733h-39.83zm1.112 3.866h37.66l18.643 10.488h9.746l9.057 5.455V37.66l13.03 7.945V60.01l-13.03 7.945v10.117l-9.057 5.455h-9.746L207.84 94.015h-37.66l-18.644-10.488h-9.745l-9.11-5.455V67.955l-12.977-7.945V45.604l12.976-7.945V27.542l9.11-5.455h9.746l18.644-10.488z'/%3e%3cpath fill='%23faae29' d='M188.783 53.025V12.017h-18.506L151.63 22.505h-9.722l-8.795 5.296v10.1l-12.98 7.96v6.736h69.08v41.009h18.506l18.648-10.489h9.723l8.794-5.296v-10.1l12.98-7.96v-6.735z'/%3e%3cpath fill='%23fff' d='M120.131 53.025v6.736l12.98 7.96v10.1l8.795 5.296h9.722l18.648 10.489h18.506v-41.01h69.081v-6.735l-12.98-7.96v-10.1l-8.795-5.296h-9.723l-18.648-10.488h-18.505v41.008z'/%3e%3cg id='f'%3e%3cg id='e'%3e%3cpath d='m148.448 26.28-3.196-2.978-3.166 1.952 3.201 2.985-4.11 2.546h8.969l7.73 7.29 2.472-2.61-7.515-7.09v-4.811z'/%3e%3cpath d='m163.573 24.972-3.196-2.978-3.166 1.952 3.201 2.984-4.11 2.547h8.969l7.73 7.29 2.472-2.61-7.515-7.09v-4.812zm-16.234 9.864-3.196-2.979-3.165 1.953 3.2 2.984-4.11 2.547h8.97l7.728 7.29 2.473-2.611-7.515-7.089v-4.812z'/%3e%3cpath d='M188.997 11.589h-8.093l-4.235 4.081h-8.255l-6.1 3.166 1.422 3.467 5.44-2.858h2.383l8.341 9.647 9.097-5.54z'/%3e%3cpath fill='%23ca3745' d='m145.199 23.838 2.872 2.676-2.406 1.49-2.876-2.68 2.41-1.486zm7.205.495v4.227l7.338 6.921-1.884 1.99-7.542-7.114h-7.635l9.723-6.024zm7.92-1.803 2.872 2.676-2.406 1.49-2.876-2.68 2.41-1.487zm7.205.494v4.227l7.338 6.922-1.884 1.99-7.542-7.114h-7.635l9.723-6.025z'/%3e%3cpath fill='%23ca3745' d='m144.091 32.393 2.871 2.677-2.406 1.49-2.875-2.68 2.41-1.487zm7.205.495v4.227l7.337 6.922-1.883 1.99-7.542-7.114h-7.636l9.724-6.025zm37.487-20.871h-7.706l-4.235 4.08h-8.324l-5.66 2.938 1.095 2.67 5.117-2.688h2.685l8.232 9.521 8.796-5.356z'/%3e%3c/g%3e%3cuse xlink:href='%23e' transform='matrix(1 0 0 -1 0 105.623)'/%3e%3cpath d='m143.054 39.71-3.859-1.441-.092.064-4.982 3.457v.93l-7.98 10.091 7.98 10.092v.93l5.074 3.52 3.859-1.441-2.355-1.56v-2.967l.936-1.12h4.181V45.358h-4.181l-.936-1.12V41.27z'/%3e%3cpath fill='%23ca3745' d='m134.549 42.014 4.706-3.266 2.862 1.07-1.846 1.223v3.352l1.164 1.392h3.952v14.053h-3.952l-1.164 1.392v3.352l1.846 1.223-2.862 1.07-4.706-3.266v-.855l-7.862-9.943 7.863-9.943z'/%3e%3c/g%3e%3cuse xlink:href='%23f' transform='matrix(-1 0 0 1 377.994 0)'/%3e%3cpath d='m136.203 61.282-2.173-1.88v-.906l-4.66-5.685 4.661-5.685v-.906l2.173-1.88 3.902 3.174-2.252-.017 3.328 3.378h7.605l5.98-4.677V33.863h14.96l17.372-10.66v-2.796l-2.657-1.771h-.842l-2.893 1.936-.448 1.444-2.264-3.09 4.399-3.695h.703l4.964-3.642h1.871l4.964 3.642h.703l4.399 3.695-2.263 3.09-.448-1.444-2.894-1.936h-.841l-2.657 1.77v2.797l17.372 10.66h14.959v12.335l5.98 4.677h7.606l3.328-3.378-2.253.017 3.903-3.173 2.172 1.88v.905l4.662 5.685-4.662 5.685v.906l-2.172 1.88-3.903-3.173 2.253.017-3.328-3.378h-7.605l-5.981 4.677V71.76h-14.959l-17.372 10.66v2.796l2.657 1.77h.841l2.894-1.935.448-1.445 2.263 3.09-4.399 3.696h-.703l-4.964 3.642h-1.871l-4.964-3.642h-.703l-4.4-3.696 2.265-3.09.448 1.445 2.892 1.936h.842l2.658-1.77V82.42l-17.373-10.66h-14.958V59.424l-5.982-4.677h-7.604l-3.328 3.378 2.252-.017z'/%3e%3cpath fill='%23faae29' d='m189.211 87.319 1.901 1.454-1.901 1.453V87.32zm-6.044 2.644h.07l4.964 3.643h.58v-2.842l-2.604-1.991 2.604-1.992v-5.337l-18.589-11.408H156.45V58.574l-7.095-5.55h-10.701l-2.69 3.042-2.69-3.041h-3.176l4.36 5.318v.863l1.727 1.5 2.774-2.16-1.628.013v-.54l3.629-3.7h7.974l6.262 4.898V71.33h14.651l17.68 10.85v3.264l-2.956 1.97h-1.103l-3.126-2.093-.24-.777-1.525 2.08 3.973 3.338h.617zm-47.2-39.76 2.117 2.394h-4.236l2.118-2.394zm52.815-34.807-1.9 1.453 1.9 1.454v-2.907zm51.127 37.63 2.118 2.393 2.118-2.394h-4.236zm-45.154-37.367-4.964-3.642h-.58v2.84l2.606 1.993-2.606 1.992v5.337l18.59 11.407h13.741V47.05l7.095 5.549h10.7l2.69-3.041 2.69 3.04h3.177l-4.36-5.317v-.864l-1.726-1.5-2.775 2.16 1.629-.013v.54l-3.63 3.7h-7.973l-6.262-4.898V34.29h-14.652l-17.679-10.85v-3.264l2.956-1.97h1.102l3.127 2.094.24.776 1.525-2.08-3.973-3.339h-.688z'/%3e%3cpath fill='%23fff' d='m188.782 90.226-1.9-1.453 1.9-1.453v2.906zm-50.698-37.2-2.118 2.394-2.118-2.394h4.236zm56.741 36.937h-.07l-4.964 3.643h-.58v-2.84l2.606-1.993-2.606-1.993v-5.336l18.59-11.408h13.741V58.574l7.095-5.549h10.7l2.69 3.041 2.69-3.041h3.177l-4.36 5.318v.863l-1.726 1.5-2.775-2.16 1.629.013v-.54l-3.63-3.7h-7.973l-6.262 4.898v12.115h-14.652L190.466 82.18v3.264l2.956 1.97h1.102l3.127-2.093.24-.777 1.525 2.081-3.973 3.337h-.618zm47.202-39.76-2.118 2.394h4.237l-2.119-2.394zM183.24 15.66l4.963-3.642h.58v2.84l-2.605 1.993 2.606 1.992v5.337l-18.59 11.408h-13.74V47.05l-7.096 5.549h-10.703l-2.69-3.041-2.69 3.04H130.1l4.36-5.317v-.863l1.727-1.5 2.773 2.16-1.628-.014v.541l3.63 3.698h7.973l6.262-4.897V34.291h14.651l17.68-10.849v-3.265l-2.956-1.969h-1.102l-3.127 2.093-.24.776-1.525-2.08 3.974-3.338h.687zm5.972 2.645 1.901-1.454-1.901-1.454v2.908z'/%3e%3cpath fill='%2328ae66' d='M188.783 53.025V24.68l-18.469 11.334H156.88v11.243l-6.828 5.34h39.16v28.345l18.467-11.334h13.435V58.366l6.828-5.34z'/%3e%3cpath fill='%23ca3745' d='m150.051 53.025 6.829 5.34v11.243h13.434l18.469 11.334V52.596l39.159.001-6.828-5.34V36.014h-13.435l-18.467-11.333v28.344z'/%3e%3cpath d='m169.118 39.063-3.195-2.978-3.166 1.952 3.2 2.984-4.11 2.547h8.97l7.729 7.29 2.472-2.61-7.515-7.09v-4.811zm39.755 27.497 3.196 2.978 3.165-1.953-3.2-2.984 4.11-2.546h-8.97l-7.728-7.291-2.473 2.611 7.515 7.09v4.811zm-39.755 0-3.196 2.978-3.165-1.953 3.2-2.984-4.11-2.546h8.97l7.728-7.291 2.473 2.611-7.515 7.09v4.811zm39.755-27.497 3.196-2.978 3.165 1.952-3.2 2.984 4.11 2.547h-8.97l-7.728 7.29-2.473-2.61 7.515-7.09v-4.811z'/%3e%3cpath fill='%23ca3745' d='m212.122 69.002-2.871-2.677 2.406-1.49 2.875 2.68-2.41 1.487zm-7.205-.495V64.28l-7.337-6.921 1.884-1.99 7.541 7.114h7.636l-9.724 6.024zM165.87 36.62l2.872 2.677-2.407 1.49-2.875-2.68 2.41-1.487zm7.206.496v4.226l7.337 6.922-1.884 1.99-7.541-7.114h-7.636l9.724-6.024z'/%3e%3cpath fill='%2328ae66' d='m212.122 36.62-2.871 2.677 2.406 1.49 2.875-2.68-2.41-1.487zm-7.205.496v4.226l-7.337 6.922 1.884 1.99 7.541-7.114h7.636l-9.724-6.024zM165.87 69.002l2.871-2.677-2.406-1.49-2.875 2.68 2.41 1.487zm7.205-.495V64.28l7.338-6.921-1.884-1.99-7.541 7.114h-7.636l9.723 6.024z'/%3e%3cpath d='m208.856 52.812-19.859 13.235-19.859-13.235 19.859-13.236z'/%3e%3cpath fill='%23fff' d='m188.783 40.233-18.551 12.364h37.531l-18.551-12.364V65.39l18.552-12.365h-37.533l18.552 12.365z'/%3e%3cpath d='M194.308 57.363v3.639h-10.62v-3.64h-6.874V48.26h6.873v-3.64h10.621v3.64h6.873v9.103z'/%3e%3cpath fill='%23ca3745' d='M184.116 45.048v3.64h-6.873v3.909h11.54v-7.549h-4.667zm5.096 7.549h11.54v-3.91h-6.872v-3.639h-4.668v7.549zm-11.969.428v3.91h6.873v3.639h4.667v-7.549h-11.54zm11.97 7.549h4.667v-3.639h6.873v-3.91h-11.54v7.55z'/%3e%3cpath d='M222.877 203.61v-5.83h15.988v-5.83h15.988v-52.682h-15.988v-5.83h-15.988v-5.83h-15.988v-5.83h-35.782v5.83h-15.989v5.83H139.13v5.83h-15.99v52.682h15.989v5.83h15.988v5.83h15.989v5.83h35.782v-5.83z'/%3e%3cpath fill='%23ca3745' d='M171.558 122.193v5.826h-15.996v5.827h-15.996v5.826H123.57v51.854h15.996v5.827h15.996v5.825h15.996v5.826h34.903v-5.826h15.997v-5.825h15.997v-5.827h15.994v-51.854h-15.994v-5.826h-15.997v-5.827h-15.997v-5.826h-34.903zm4.237 4.237h26.43v5.826h15.996v5.827h15.996v5.826h15.995v43.38h-15.995v5.826h-15.996v5.826h-15.997v5.825h-26.429v-5.825H159.8v-5.826h-15.996v-5.827h-15.996v-43.38h15.996v-5.825H159.8v-5.827h15.996v-5.826z'/%3e%3cpath fill='%23ca3745' d='M160.209 198.519v-5.83h-15.988v-5.83h-15.989v-42.5h15.989v-5.831h15.988v-5.83h15.988v-5.83h25.601v5.83h15.989v5.83h15.987v5.83h15.99v42.5h-15.99v5.83h-15.987v5.831h-15.989v5.83h-25.6v-5.83z'/%3e%3cpath d='m163.921 137.014-4.141-3.13v6.01l-3.966 2.52-.01-3.762-3.803 3.416-3.804-3.416-.01 3.763-4.394-2.793v5.573l-3.552 2.571-.01-3.417-4.219 3.056-4.219-3.056-.01 3.417-3.98-2.881v16.881h-4.662v7.685h4.662v16.881l3.98-2.882.01 3.418 4.22-3.056 4.218 3.056.01-3.418 3.551 2.571v5.574l4.395-2.793.01 3.763 3.803-3.416 3.804 3.416.01-3.763 3.965 2.52v6.011l4.142-3.13.009 4.198 4.058-3.63 4.059 3.63.009-4.198 3.713 2.806v6.411l5.551-5.06v5.946l7.678-4.936 7.678 4.936v-5.946l5.551 5.06v-6.41l3.712-2.807.01 4.198 4.058-3.63 4.06 3.63.008-4.198 4.14 3.13v-6.011l3.967-2.52.01 3.763 3.804-3.416 3.803 3.416.01-3.763 4.395 2.793v-5.574l3.552-2.57.01 3.417 4.218-3.056 4.22 3.056.01-3.418 3.98 2.882V169.45h4.661v-7.685h-4.662v-16.881l-3.98 2.881-.01-3.417-4.219 3.056-4.219-3.056-.009 3.417-3.551-2.571v-5.573l-4.395 2.793-.01-3.763-3.804 3.416-3.804-3.416-.01 3.763-3.966-2.521v-6.01l-4.14 3.13-.01-4.199-4.058 3.63-4.06-3.63-.008 4.199-3.713-2.807v-6.41l-5.55 5.06v-5.946l-7.679 4.936-7.678-4.936v5.946l-5.55-5.06v6.41l-3.714 2.807-.009-4.199-4.059 3.63-4.058-3.63z'/%3e%3cpath d='m132.21 148.604.01-3.418 3.793 2.748.127-.093 3.665-2.655.01 3.418 3.978-2.88v39.769l-3.978-2.88-.01 3.418-3.792-2.748-3.793 2.748-.01-3.418-3.978 2.88v-16.471h-4.662v-6.827h4.662v-16.47zm32.146-14.832 3.632 3.248 3.633-3.248.009 4.102 4.139-3.129v61.728l-4.14-3.13-.008 4.103-3.633-3.249-3.632 3.249-.008-4.102-4.139 3.129v-61.728l4.139 3.13zm49.284 0-3.632 3.248-3.633-3.248-.009 4.102-4.138-3.129v61.728l4.138-3.13.01 4.103 3.632-3.249 3.632 3.249.009-4.102 4.139 3.129v-61.728l-4.139 3.13zm32.146 14.832-.01-3.418-3.793 2.748-.128-.093-3.665-2.655-.01 3.418-3.977-2.88v39.769l3.977-2.88.01 3.418 3.793-2.748 3.793 2.748.01-3.418 3.977 2.88v-16.471h4.662v-6.827h-4.662v-16.47z' fill='%2328ae66'/%3e%3cpath d='m148.623 139.611 3.377 3.034 3.378-3.034.01 3.583 4.392-2.792v50.413l-4.392-2.791-.01 3.582-3.378-3.033-3.377 3.033-.01-3.582-4.393 2.791v-50.413l4.393 2.792zm33.125-5.784-5.551-5.06v73.683l5.551-5.06v6.131l7.249-4.66 7.25 4.66v-6.131l5.55 5.06v-73.683l-5.55 5.06v-6.131l-7.25 4.66-7.249-4.66zm47.625 5.784-3.377 3.034-3.378-3.034-.01 3.583-4.393-2.792v50.413l4.394-2.791.009 3.582 3.378-3.033 3.377 3.033.01-3.582 4.393 2.791v-50.413l-4.393 2.792z' fill='%23faae29'/%3e%3cg id='h'%3e%3cg id='g'%3e%3cpath d='M134.288 158.366c.485.49 1.066.737 1.724.737.659 0 1.239-.247 1.725-.737 1.518-1.53 1.57-4.297 1.554-6.289l-2.072 2.19-1.207-2.083s-.985 1.702-1.207 2.083l-2.072-2.19c-.015 1.992.036 4.759 1.555 6.289zm16.678-4.286-1.28-1.278v-2.546l-2.937 2.722L152 158.23l5.252-5.252-2.938-2.722v2.546l-1.279 1.278v-4.511l2.265-1.945-3.3-2.834-3.3 2.834 2.266 1.945zm15.987-5.06-1.279-1.279v-2.546l-2.937 2.723 5.251 5.251 5.251-5.251-2.937-2.723v2.546l-1.28 1.279v-4.512l2.266-1.945-3.3-2.833-3.3 2.833 2.265 1.945z'/%3e%3cpath fill='%23fff' d='m136.013 153.039 1.123 1.94 1.709-1.806c-.06 2.25-.553 4.026-1.412 4.89-.402.406-.88.612-1.42.612-.54 0-1.018-.206-1.42-.611-.859-.865-1.353-2.642-1.412-4.89l1.708 1.805 1.124-1.94zm32.582-8.727v5.743l2.136-2.135v-1.743l1.891 1.754-4.633 4.633-4.634-4.633 1.891-1.754v1.743l2.136 2.135v-5.743l-2.035-1.748 2.642-2.268 2.642 2.268z'/%3e%3cpath fill='%23ca3745' d='M152.607 149.372v5.743l2.136-2.136v-1.742l1.891 1.753-4.634 4.634-4.633-4.634 1.891-1.753v1.742l2.136 2.136v-5.743l-2.035-1.748 2.641-2.268 2.643 2.268z'/%3e%3c/g%3e%3cuse xlink:href='%23g' transform='matrix(-1 0 0 1 377.996 0)'/%3e%3cpath d='m195.282 150.937-1.72-2.377 4.411-4.072-4.113-3.38v2.394l-1.72 1.472v-4.342l3.885-2.864-7.029-5.18-7.029 5.18 3.887 2.864v4.342l-1.72-1.472v-2.394l-4.114 3.38 4.412 4.072-1.72 2.377z'/%3e%3cpath fill='%23ca3745' d='m183.552 150.509 1.45-2.006-4.328-3.996 3.032-2.491v1.684l2.577 2.206v-5.49l-3.592-2.647 6.307-4.649 6.306 4.649-3.591 2.647v5.49l2.577-2.206v-1.684l3.032 2.491-4.329 3.996 1.451 2.006z'/%3e%3cpath d='m185.785 137.769 3.212 2.367 3.212-2.367-3.212-2.368-.127.095z'/%3e%3cpath fill='%2328ae66' d='m188.997 135.934 2.49 1.835-2.49 1.835-2.49-1.835 2.49-1.835z'/%3e%3c/g%3e%3cuse xlink:href='%23h' transform='matrix(1 0 0 -1 0 331.216)'/%3e%3cpath d='M245.902 163.15h-7.037v-2.805h-21.511l-14.974-9.836h-26.765l-14.974 9.836h-21.51v2.805h-7.038v4.918h7.037v2.805h21.511l14.974 9.836h26.765l14.974-9.836h21.51v-2.805h7.038z'/%3e%3cpath fill='%23ca3745' d='m175.742 150.953-14.99 9.799h-21.186v2.807h-7.044v4.078h7.044v2.808h21.187l14.989 9.851h26.536l14.936-9.851h21.24v-2.808h7.044v-4.078h-7.044v-2.807h-21.24l-14.936-9.799zm.318 1.43h25.847l13.718 9.004v1.377h15.308v5.72h-15.308v1.378l-13.718 8.951H176.06l-13.665-8.951v-1.377h-15.36v-5.72h15.36v-1.378z'/%3e%3cpath fill='%23ca3745' d='m201.799 152.826 13.379 8.783v1.56h15.332v4.88h-15.332v1.559l-13.379 8.783h-25.604l-13.38-8.783v-1.56h-15.331v-4.88h15.332v-1.559l13.379-8.783z'/%3e%3cpath d='m169.551 170.598 5.793 4.349 3.81-2.862-2.215-1.663-1.595 1.198-1.362-1.022 21.815-16.379h-4.43zm12.645 6.4h4.43l21.816-16.378-5.792-4.348-3.811 2.86 2.215 1.663 1.596-1.198 1.362 1.023zm9.171 0h4.43l-21.815-16.378 1.362-1.023 1.595 1.198 2.216-1.662-3.811-2.861-5.793 4.348zm12.645-6.4-1.362 1.022-1.596-1.198-2.215 1.663 3.811 2.862 5.792-4.349-21.816-16.379h-4.43zm-38.848-4.989 3.893 2.586 3.894-2.586-3.894-2.586z'/%3e%3cpath d='m185.104 165.609 3.893 2.586 3.894-2.586-3.894-2.586zm27.728 0-3.893 2.586-3.894-2.586 3.894-2.586z'/%3e%3cpath fill='%23faae29' d='m207.729 170.598-5.078 3.813-3.098-2.326 1.502-1.127 1.596 1.198 2.075-1.558-21.245-15.95h3.003zm-13.216 5.972h-3.003l-21.244-15.95 5.079-3.813 3.096 2.326-1.501 1.126-1.595-1.198-2.076 1.559zm-8.029 0h-3.003l21.245-15.95-2.075-1.559-1.596 1.198-1.502-1.126 3.098-2.326 5.078 3.813zm5.026-21.922h3.003l-21.244 15.95 2.076 1.558 1.595-1.198 1.501 1.127-3.096 2.326-5.08-3.813z'/%3e%3cpath fill='%2328ae66' d='m169.057 163.538 3.119 2.071-3.119 2.071-3.119-2.07zm19.941 0 3.119 2.071-3.119 2.071-3.118-2.07zm19.941 0-3.119 2.071 3.119 2.071 3.118-2.07z'/%3e%3cpath d='m120.514 274.151-1.528 2.16 2.739 2.095-2.74 2.094 1.528 2.16 3.182.37 3.081-2.38 7.682 4.88v-4.053l-4.835-3.071 4.835-3.071v-4.053l-7.682 4.88-3.08-2.38z'/%3e%3cpath d='m120.514 260.073-1.528 2.161 2.739 2.094-2.74 2.094 1.528 2.161 3.182.37 3.081-2.381 7.682 4.88v-4.053l-4.835-3.07 4.835-3.072v-4.053l-7.682 4.88-3.08-2.38zm0 36.666-1.528-2.16 2.739-2.095-2.74-2.094 1.528-2.16 3.182-.37 3.081 2.38 7.682-4.88v4.053l-4.835 3.071 4.835 3.071v4.053l-7.682-4.88-3.08 2.38zm136.968-22.588 1.528 2.16-2.739 2.095 2.739 2.094-1.528 2.16-3.181.37-3.081-2.38-7.683 4.88v-4.053l4.836-3.071-4.836-3.071v-4.053l7.683 4.88 3.08-2.38z'/%3e%3cpath d='m257.482 260.073 1.528 2.161-2.739 2.094 2.739 2.094-1.528 2.161-3.181.37-3.081-2.381-7.683 4.88v-4.053l4.836-3.07-4.836-3.072v-4.053l7.683 4.88 3.08-2.38zm0 36.666 1.528-2.16-2.739-2.095 2.739-2.094-1.528-2.16-3.181-.37-3.081 2.38-7.683-4.88v4.053l4.836 3.071-4.836 3.071v4.053l7.683-4.88 3.08 2.38zm-30.755-61.009v5.856h4.26v2.588h4.184v-4.713h-3.732v-3.731h-4.712zm12.556 9.235v5.855h4.255v2.589h4.189v-4.713h-3.732v-3.731h-4.712zm-88.014-9.235v5.856h-4.26v2.588h-4.184v-4.713h3.732v-3.731h4.712zm75.458 85.353v-5.856h4.26v-2.588h4.184v4.712h-3.732v3.732h-4.712zm-75.458 0v-5.856h-4.26v-2.588h-4.184v4.712h3.732v3.732h4.712zm88.014-9.235v-5.855h4.255v-2.589h4.189v4.712h-3.732v3.732h-4.712zm-100.569-66.883v5.855h-4.256v2.589h-4.188v-4.713h3.732v-3.731h4.712zm0 66.883v-5.855h-4.256v-2.589h-4.188v4.712h3.732v3.732h4.712zm66.039-76.254-3.25-3.156-3.194 2.959 2.783 2.701-3.592 3.488h5.334l1.919-1.863 1.92 1.863h5.333l-3.593-3.488 2.783-2.701-3.193-2.959c-1.085 1.05-2.167 2.104-3.25 3.156zm-15.755 0-3.25-3.156-3.193 2.959 2.783 2.701-3.593 3.488h5.334l1.919-1.863 1.92 1.863h5.333l-3.592-3.488 2.782-2.701-3.192-2.959c-1.085 1.05-2.167 2.104-3.251 3.156zm-15.754 0 3.25-3.156 3.194 2.959-2.783 2.701 3.592 3.488h-5.334l-1.919-1.863-1.92 1.863h-5.333l3.593-3.488-2.783-2.701 3.193-2.959c1.085 1.05 2.167 2.104 3.25 3.156zm31.509 85.625-3.25 3.155-3.194-2.958 2.783-2.701-3.592-3.488h5.334l1.919 1.863 1.92-1.863h5.333l-3.593 3.488 2.783 2.7-3.193 2.96c-1.085-1.051-2.167-2.104-3.25-3.156zm-15.755 0-3.25 3.155-3.193-2.958 2.783-2.701-3.593-3.488h5.334l1.919 1.863 1.92-1.863h5.333l-3.592 3.488 2.782 2.7-3.192 2.96c-1.085-1.051-2.167-2.104-3.251-3.156zm-15.754 0 3.25 3.155 3.194-2.958-2.783-2.701 3.592-3.488h-5.334l-1.919 1.863-1.92-1.863h-5.333l3.593 3.488-2.783 2.7 3.193 2.96c1.085-1.051 2.167-2.104 3.25-3.156z'/%3e%3cpath d='M134.029 281.713v3.037l-7.278-4.623-3.18 2.458-2.819-.327-1.178-1.668 2.856-2.184-2.856-2.184 1.179-1.667 2.817-.327 3.181 2.458 7.278-4.623v3.036l-5.206 3.307zm0-14.078v3.037l-7.278-4.623-3.18 2.458-2.819-.327-1.178-1.668 2.856-2.184-2.856-2.183 1.179-1.667 2.817-.328 3.181 2.458 7.278-4.623v3.037l-5.206 3.306zm0 21.543v-3.037l-7.278 4.623-3.18-2.458-2.819.327-1.178 1.668 2.856 2.184-2.856 2.184 1.179 1.667 2.817.327 3.181-2.458 7.278 4.623v-3.036l-5.206-3.307zm109.938-7.465v3.037l7.278-4.623 3.18 2.458 2.818-.327 1.179-1.668-2.856-2.184 2.856-2.184-1.179-1.667-2.818-.327-3.18 2.458-7.278-4.623v3.036l5.206 3.307zm0-14.078v3.037l7.278-4.623 3.18 2.458 2.818-.327 1.179-1.668-2.856-2.184 2.856-2.183-1.179-1.667-2.818-.328-3.18 2.458-7.278-4.623v3.037l5.206 3.306zm0 21.543v-3.037l7.278 4.623 3.18-2.458 2.818.327 1.179 1.668-2.856 2.184 2.856 2.184-1.179 1.667-2.818.327-3.18-2.458-7.278 4.623v-3.036l5.206-3.307zm-12.956-53.019v3.732h3.731v3.855h-3.326v-2.588h-4.26v-4.999h3.855zm12.555 9.234v3.731h3.731v3.856h-3.327v-2.588h-4.259v-4.999h3.855zm-96.581-9.234v3.732h-3.731v3.855h3.327v-2.588h4.259v-4.999h-3.855zm84.026 84.494v-3.731h3.731v-3.855h-3.326v2.587h-4.26v4.999h3.855zm-84.026 0v-3.731h-3.732v-3.855h3.327v2.587h4.26v4.999h-3.855zm96.581-9.234v-3.731h3.731v-3.855h-3.327v2.587h-4.259v4.999h3.855zM134.43 245.393v3.731h-3.731v3.856h3.327v-2.588h4.259v-4.999h-3.855zm.001 66.026v-3.731h-3.732v-3.855h3.327v2.587h4.26v4.999h-3.855zm67.065-78.39 3.257 3.162 3.257-3.162 2.564 2.375-2.776 2.694 3.151 3.06h-4.102l-2.094-2.033-2.094 2.033h-4.102l3.151-3.06-2.776-2.694 2.564-2.375zm-15.755 0 3.257 3.162 3.257-3.162 2.563 2.375-2.775 2.694 3.151 3.06h-4.103l-2.093-2.033-2.094 2.033h-4.102l3.15-3.06-2.775-2.694 2.564-2.375zm-9.239 0-3.257 3.162-3.257-3.162-2.564 2.375 2.776 2.694-3.151 3.06h4.102l2.094-2.033 2.094 2.033h4.102l-3.151-3.06 2.776-2.694-2.564-2.375zm24.994 90.755 3.257-3.163 3.257 3.163 2.564-2.375-2.776-2.694 3.151-3.06h-4.102l-2.094 2.032-2.094-2.032h-4.102l3.151 3.06-2.776 2.694 2.564 2.375zm-15.755 0 3.257-3.163 3.257 3.163 2.563-2.375-2.775-2.694 3.151-3.06h-4.103l-2.093 2.032-2.094-2.032h-4.102l3.15 3.06-2.775 2.694 2.564 2.375zm-9.239 0-3.257-3.163-3.257 3.163-2.564-2.375 2.776-2.694-3.151-3.06h4.102l2.094 2.032 2.094-2.032h4.102l-3.151 3.06 2.776 2.694-2.564 2.375z' fill='%2328ae66'/%3e%3cpath d='M146.58 306.421v9.234h84.836v-9.234h12.55v-56.03h-12.55v-9.233H146.58v9.234h-12.55v56.029z'/%3e%3cpath fill='%23ca3745' d='M147.034 241.578v9.217h-12.553v55.19h12.553v9.217h83.95v-9.217h12.555v-55.19h-12.554v-9.217h-83.951zm5.403 3.55h73.146v8.897l3.019 2.226h11.388v44.332h-11.44l-2.967 2.171v8.951h-73.146v-8.898l-3.02-2.224h-11.44v-44.332h11.388l3.072-2.226v-8.898z'/%3e%3cpath fill='%23ca3745' d='M152.86 245.551v8.158l11.017-8.158H152.86zm61.228 0 11.017 8.158v-8.158h-11.017zm-75.635 11.124v7.627l10.382-7.627h-10.381zm90.679 0 10.434 7.68v-7.68h-10.434zm10.434 35.75-10.434 7.734h10.434v-7.734zm-101.113.053v7.681h10.381l-10.381-7.681zm14.407 10.647v8.104h10.964l-10.964-8.104zm72.245 0-10.963 8.104h10.963v-8.104z'/%3e%3cpath fill='%2328ae66' d='m213.377 245.559 26.188 19.342v27.01l-26.188 19.342h-48.76l-26.187-19.342V264.9l26.187-19.342h48.76z'/%3e%3cpath d='m144.667 295.021-3.01-3.494 2.826-3.28-2.827-3.28 2.827-3.28-2.827-3.28 2.827-3.28-2.827-3.281 2.826-3.28-2.826-3.28 3.011-3.494h88.661l3.011 3.494-2.826 3.28 2.826 3.28-2.826 3.28 2.826 3.28-2.826 3.28 2.826 3.28-2.826 3.28 2.826 3.28-3.01 3.495zm60.946-45.236-3.495-3.011-3.28 2.826-3.28-2.826-3.28 2.826-3.28-2.826-3.28 2.826-3.281-2.826-3.28 2.826-3.28-2.826-3.494 3.01v57.244l3.494 3.011 3.28-2.827 3.28 2.826 3.28-2.826 3.28 2.826 3.28-2.826 3.28 2.826 3.28-2.826 3.281 2.827 3.495-3.011z'/%3e%3cg fill='%23faae29'%3e%3cpath d='m198.623 249.981-3.065-2.642-3.066 2.642v56.85l3.066 2.641 3.065-2.641zm-13.12 0-3.066-2.642-3.065 2.642v56.85l3.065 2.641 3.066-2.641z'/%3e%3cpath d='m144.863 294.593-2.641-3.066 2.641-3.066h88.269l2.641 3.066-2.641 3.066zm88.269-19.253 2.642 3.066-2.642 3.065h-88.268l-2.642-3.065 2.642-3.066zm0-6.988 2.641-3.066-2.641-3.065h-88.269l-2.641 3.065 2.641 3.066z'/%3e%3c/g%3e%3cg fill='%23ca3745'%3e%3cpath d='m205.184 249.981-3.065-2.642-3.066 2.642v56.85l3.066 2.641 3.064-2.64zm-26.241 0-3.066-2.642-3.066 2.642v56.85l3.066 2.641 3.066-2.641z'/%3e%3cpath d='m144.864 288.032-2.642-3.066 2.642-3.066h88.268l2.642 3.066-2.642 3.066zm0-13.12-2.642-3.066 2.642-3.066h88.268l2.642 3.066-2.642 3.066z'/%3e%3cpath d='m192.064 306.831-3.066 2.641-3.066-2.641v-56.85l3.066-2.642 3.066 2.642z'/%3e%3c/g%3e%3cpath d='M218.631 251.09h-59.48v4.724h-7.602v45.185h7.602v4.723h59.694v-4.723h7.602v-45.185h-7.602v-4.724h-.214z'/%3e%3cpath fill='%23ca3745' d='M159.587 251.535v4.715h-7.627v44.332h7.627v4.714h6.25l-12.447-10.434V261.97l12.447-10.434h-6.25zm52.596 0 12.393 10.434v32.893l-12.393 10.434h6.25v-4.714h7.574V256.25h-7.575v-4.715h-6.249z'/%3e%3cg fill='%2328ae66'%3e%3cpath d='m166.525 251.535-12.712 10.646v32.468c.15.127 12.594 10.547 12.712 10.646h44.968l12.659-10.646v-32.468l-12.659-10.646zm.636 1.8h43.644l11.546 9.694v30.773l-11.546 9.64H167.16l-11.494-9.64v-30.773z'/%3e%3cpath d='m178.72 294.289 1.954.844.359 2.282-2.46 2.164 3.573 3.454h-3.437l-2.458-2.366-2.458 2.366h-3.438l3.573-3.454-2.46-2.164.36-2.282 1.953-.844 2.47 1.975.134-.107zm12.748 0 1.953.844.36 2.282-2.46 2.164 3.573 3.454h-3.437l-2.459-2.366-2.457 2.366h-3.438l3.573-3.454-2.46-2.164.36-2.282 1.953-.844 2.47 1.975.133-.107zm7.809 0-1.953.844-.36 2.282 2.46 2.164-3.573 3.454h3.437l2.459-2.366 2.457 2.366h3.438l-3.573-3.454 2.46-2.164-.36-2.282-1.953-.844-2.47 1.975-.134-.107zm-20.557-31.766 1.954-.844.359-2.281-2.46-2.164 3.573-3.454h-3.437l-2.458 2.365-2.458-2.365h-3.438l3.573 3.454-2.46 2.163.36 2.282 1.953.844 2.47-1.974.134.107zm12.748 0 1.953-.844.36-2.281-2.46-2.164 3.573-3.454h-3.437l-2.459 2.365-2.457-2.365h-3.438l3.573 3.454-2.46 2.163.36 2.282 1.953.844 2.47-1.974.133.107zm7.809 0-1.953-.844-.36-2.281 2.46-2.164-3.573-3.454h3.437l2.459 2.365 2.457-2.365h3.438l-3.573 3.454 2.46 2.163-.36 2.282-1.953.844-2.47-1.974-.134.107zm22.624 3.644-1.95 1.615 1.95 1.614v2.676l-2.999-2.471-2.152 1.95-2.308-.29-.813-1.5 1.986-1.98-1.986-1.98.813-1.5c.192-.023 2.135-.268 2.308-.29l2.152 1.95 2.999-2.47v2.676zm0 10.625-1.95 1.615 1.95 1.613v2.677l-2.999-2.471-2.152 1.95c-.173-.022-2.116-.267-2.308-.29l-.813-1.5 1.986-1.98-1.986-1.98.813-1.5c.192-.023 2.135-.268 2.308-.29l2.152 1.95 2.999-2.47v2.676zm0 13.854-1.95-1.615 1.95-1.614v-2.676l-2.999 2.471-2.152-1.95-2.308.29-.813 1.5 1.986 1.98-1.986 1.98.813 1.5c.192.023 2.135.268 2.308.29l2.152-1.95 2.999 2.47v-2.676zm-65.804-24.479 1.95 1.615-1.95 1.614v2.676l2.999-2.471 2.152 1.95 2.308-.29.813-1.5-1.986-1.98 1.986-1.98-.813-1.5c-.192-.023-2.136-.268-2.308-.29l-2.152 1.95-2.999-2.47v2.676zm0 10.625 1.95 1.615-1.95 1.613v2.677l2.999-2.471 2.152 1.95c.172-.022 2.116-.267 2.308-.29l.813-1.5-1.986-1.98 1.986-1.98-.813-1.5c-.192-.023-2.136-.268-2.308-.29l-2.152 1.95-2.999-2.47v2.676zm0 13.854 1.95-1.615-1.95-1.614v-2.676l2.999 2.471 2.152-1.95 2.308.29.813 1.5-1.986 1.98 1.986 1.98-.813 1.5c-.192.023-2.136.268-2.308.29l-2.152-1.95-2.999 2.47v-2.676z'/%3e%3c/g%3e%3cpath fill='%23ca3745' d='M167.32 253.761c-.116.097-10.602 8.876-11.07 9.27.945.783 1.86 1.602 2.807 2.383.24-.217 2.066-1.855 2.066-1.855l2.701.371 1.06 1.96-1.907 1.907c.259.257 1.906 1.906 1.906 1.906l-1.059 1.96-2.701.318s-1.826-1.584-2.066-1.8l-2.966 2.488v.848c.998.826 1.965 1.664 2.966 2.49.24-.217 2.066-1.801 2.066-1.801l2.701.317 1.06 1.96-1.907 1.907c.259.257 1.906 1.907 1.906 1.907l-1.059 2.012-2.701.318s-1.826-1.636-2.066-1.854l-2.966 2.49v.9l2.966 2.49c.24-.217 2.066-1.854 2.066-1.854l2.701.37 1.06 1.96-1.907 1.907 1.906 1.907-1.059 1.96-2.701.37s-1.826-1.636-2.066-1.854c-.944.778-1.865 1.554-2.807 2.331l11.07 9.27h2.436l3.55-3.444-2.278-2.012.423-2.755 2.384-1.006 2.436 1.907 2.384-1.907 2.383 1.006.477 2.755-2.33 2.012 3.442 3.284 3.443-3.284-2.33-2.012.423-2.755 2.437-1.006 2.383 1.907 2.436-1.907 2.384 1.006.424 2.755-2.278 2.012 3.39 3.337 3.443-3.337-2.278-2.012.424-2.755 2.436-1.006 2.384 1.907 2.383-1.907 2.437 1.006.424 2.755-2.278 2.012 3.549 3.443h2.383l11.07-9.269c-.943-.777-1.862-1.551-2.807-2.33-.24.217-2.013 1.853-2.013 1.853l-2.701-.37-1.112-1.96 1.906-1.907-1.906-1.907 1.112-1.96 2.701-.37s1.773 1.637 2.013 1.854l2.966-2.49v-.9l-2.966-2.49c-.24.218-2.013 1.854-2.013 1.854l-2.701-.318-1.112-2.012 1.906-1.907-1.906-1.907 1.112-1.96 2.701-.317s1.773 1.584 2.013 1.8c.994-.819 1.974-1.62 2.966-2.436v-.953l-2.966-2.437c-.24.217-2.013 1.8-2.013 1.8l-2.701-.317-1.112-1.96 1.906-1.906-1.906-1.907 1.112-1.96 2.701-.37s1.773 1.637 2.013 1.853c.95-.782 1.911-1.548 2.86-2.33l-11.123-9.322h-2.383l-3.549 3.442 2.277 2.013-.423 2.754-2.437 1.06-2.383-1.907-2.384 1.907-2.436-1.06-.424-2.754 2.278-2.013-3.39-3.284-3.443 3.284 2.278 2.013-.424 2.754-2.384 1.06-2.436-1.907-2.383 1.907-2.437-1.06-.424-2.754 2.33-2.013-3.442-3.284-3.443 3.284 2.33 2.013-.476 2.754-2.383 1.06-2.384-1.907-2.436 1.907-2.384-1.06-.423-2.754 2.277-2.013-3.602-3.442zm-11.229 23.57v2.171l1.271-1.112z'/%3e%3cpath d='m176.271 301.271-1.854 1.747h3.654l-1.8-1.747zm12.712 0-1.8 1.747h3.654l-1.854-1.747zm12.764 0-1.853 1.747h3.707l-1.854-1.747zm-27.383-47.51 1.907 1.8 1.854-1.8h-3.761zm12.765 0 1.854 1.8 1.907-1.8h-3.761zm12.766 0 1.853 1.8 1.854-1.8h-3.707zm21.98 12.976-1.271 1.06 1.271 1.006v-2.066zm0 10.593-1.271 1.06 1.271 1.059v-2.119zm0 10.646-1.271 1.06 1.271 1.059v-2.119zm-65.784-21.291v2.171l1.271-1.06-1.271-1.111zm0 10.645v2.171l1.271-1.112-1.271-1.059zm0 10.594v2.171l1.271-1.06-1.271-1.111z' fill='%23fff'/%3e%3cpath d='M199.901 274.857v-3.791h-3.837v-4.157h-14.132v4.157h-3.837v3.791h-5.299v7.098h5.3v3.79h3.836v4.158h14.132v-4.157h3.837v-3.791h5.299v-7.098z'/%3e%3cpath fill='%23faae29' d='M188.783 267.338v4.285l-6.074 3.453v3.116h-9.485v-2.906h5.299v-3.791h3.837v-4.157zm.429 22.137v-4.285l6.074-3.453v-3.116h9.485v2.906h-5.299v3.791h-3.837v4.157z'/%3e%3cpath fill='%23fff' d='M195.286 278.192v-3.116l-6.074-3.453v-4.285h6.423v4.157h3.837v3.79h5.299v2.907zm-22.061.429h9.484v3.116l6.075 3.453v4.285h-6.423v-4.157h-3.837v-3.791h-5.299z'/%3e%3cpath fill='%23ca3745' d='M183.138 278.621v2.888l5.645 3.21v-6.098z'/%3e%3cpath fill='%2328ae66' d='m188.783 272.094-5.645 3.21v2.888h5.645z'/%3e%3cpath fill='%23ca3745' d='M194.858 278.192v-2.888l-5.645-3.21v6.098z'/%3e%3cpath fill='%2328ae66' d='m189.212 284.719 5.645-3.21v-2.888h-5.645z'/%3e%3cpath d='M137.647 353.73v11.717h-11.165v10.627h-11.317v30.259h11.317v10.627h11.165v11.717h40.598l7.14 4.29-3.432 2.06h-14.476l-1.248-1.408h13.119l-3.696-3.721h-18.767l8.503 8.851h17.598l6.011-3.612 6.012 3.612h17.599l8.502-8.851h-18.766l-3.696 3.721h13.12l-1.25 1.409h-14.477l-3.43-2.061 7.14-4.29h40.597V416.96h11.166v-10.627h11.316v-30.259h-11.316v-10.627h-11.166V353.73h-40.597l-7.14-4.29 3.43-2.061h14.477l1.25 1.408h-13.12l3.696 3.722h18.766l-8.502-8.852h-17.6l-6.01 3.612-6.012-3.612h-17.598l-8.503 8.852h18.767l3.696-3.722h-13.12l1.25-1.408h14.475l3.431 2.062-7.14 4.289z'/%3e%3cpath fill='%23ca3745' d='M199.629 428.23h40.307v-11.706h11.123v-10.646h11.335v-29.396h-11.335v-10.593h-11.123v-11.706H199.63l-16.737-10.116h-17.32l-7.68 7.998h17.584l2.86-2.86h-13.082l2.013-2.278h14.83l18.962 11.44h34.64v11.706h11.176v10.646h11.335v20.975h-11.335v10.646H235.7v11.706h-34.64l-18.962 11.387h-14.83l-2.013-2.224h13.083l-2.86-2.86h-17.585l7.68 7.998h17.32zm-22.722-4.184h-34.64V412.34h-11.123v-10.646h-11.335v-20.975h11.335v-10.646h11.123v-11.705h34.64l19.014-11.441H210.7l2.013 2.278h-13.03l2.86 2.86h17.585l-7.68-7.998h-17.32l-16.737 10.116h-40.307v11.706h-11.176v10.593h-11.335v29.396h11.335v10.647h11.176v11.705h40.307l16.737 10.117h17.32l7.68-7.998h-17.585l-2.86 2.86h13.03l-2.013 2.224h-14.777z'/%3e%3cpath fill='%23faae29' d='m188.983 351.59-11.97 7.203H142.69V370.5h-11.123v10.646h-11.335v20.127h11.335v10.646h11.123v11.706h34.322l11.97 7.15 11.97-7.15h34.322v-11.706h11.176v-10.646h11.335v-20.127H246.45V370.5h-11.176v-11.706h-34.322zm0 2.966 11.282 6.78h32.521v11.705h11.176v10.593h11.282v15.096h-11.282v10.646h-11.176v11.705h-32.521l-11.282 6.78-11.229-6.78h-32.521v-11.705h-11.176V398.73h-11.334v-15.096h11.334v-10.593h11.176v-11.705h32.521z'/%3e%3cpath fill='%2328ae66' d='M232.342 408.954v11.717h-32.2l-11.145 6.696-11.144-6.696h-32.2v-11.717h-11.166v-10.628h-11.316V384.08h11.316v-10.627h11.166v-11.717h32.2l11.144-6.696 11.145 6.696h32.2v11.717h11.165v10.627h11.316v14.246h-11.316v10.628z'/%3e%3cpath d='M149.869 404.849v11.34h17.7l-17.7-11.74zm0-27.291v-11.34h17.7l-17.7 11.739zm78.258 27.291v11.34h-17.7l17.7-11.74zm0-27.291v-11.34h-17.7l17.7 11.739z'/%3e%3cpath fill='%23ca3745' d='m150.298 405.248 15.85 10.513h-15.85zm0-28.089c.616-.41 14.77-9.797 15.85-10.513h-15.85v10.513zm77.4 28.089-15.85 10.513h15.85v-10.513zm0-28.089-15.85-10.513h15.85v10.513z'/%3e%3cg id='i'%3e%3cpath d='M172.445 388.094v-5.791h-1.975l-9.477-5.925-.113.071-9.362 5.854h-1.976v5.791h-4.455v6.22h4.455v5.79h1.976l9.475 5.925 9.477-5.925h1.975v-5.79h6.782v-6.22z'/%3e%3cpath fill='%23ca3745' d='m160.994 376.884 8.668 5.42h-17.335l8.667-5.42zm8.667 23.22-8.667 5.42-8.666-5.42h17.333zm-2.099-11.581v5.363h-10.809v-5.363z'/%3e%3cpath d='M172.017 394.313v5.363h-10.809v-5.363zm-11.237 0v5.363h-10.809v-5.363zm18.019-5.79v5.363H167.99v-5.363zm-22.474 0v5.363h-10.809v-5.363zm15.692-5.791v5.362h-10.809v-5.362zm-11.237 0v5.362h-10.809v-5.362z' fill='%23faae29'/%3e%3cpath d='M153.349 389.714v2.98h-4.855v-2.98zm4.455-5.791v2.98h-4.855v-2.98zm11.236 0v2.98h-4.855v-2.98zm-4.455 5.791v2.98h-4.855v-2.98zm11.237 0v2.98h-4.855v-2.98zm-6.782 5.791v2.98h-4.855v-2.98zm-11.236 0v2.98h-4.855v-2.98z'/%3e%3cpath d='M152.891 390.171h-3.94v2.065h3.94zm4.455-5.791h-3.94v2.065h3.94zm11.237 0h-3.94v2.065h3.94zm-4.455 5.791h-3.94v2.065h3.94zm11.237 0h-3.94v2.065h3.94zm-6.782 5.791h-3.94v2.065h3.94zm-11.237 0h-3.94v2.065h3.94z' fill='%23fff'/%3e%3c/g%3e%3cuse xlink:href='%23i' transform='matrix(-1 0 0 1 377.995 0)'/%3e%3cg id='j'%3e%3cpath d='M200.449 378.42v5.79h-1.975l-9.477 5.926-.113-.071-9.362-5.854h-1.976v-5.791h-5.618v-6.22h5.618v-5.79h1.976l9.475-5.926 9.477 5.926h1.975v5.79h5.618v6.22z'/%3e%3cpath fill='%23faae29' d='m188.998 389.63 8.668-5.42H180.33l8.667 5.42zm8.667-23.22-8.667-5.42-8.666 5.42h17.333z'/%3e%3cpath d='M200.021 372.2v-5.362h-10.809v5.362zm-11.237 0v-5.362h-10.809v5.362zm16.855 5.791v-5.363H194.83v5.363zm-11.237 0v-5.363h-10.809v5.363zm-11.237 0v-5.363h-10.808v5.363zm16.856 5.791v-5.363h-10.809v5.363zm-11.237 0v-5.363h-10.809v5.363z' fill='%23ca3745'/%3e%3cpath d='M185.807 368.029v2.98h-4.855v-2.98zm11.237 0v2.98h-4.855v-2.98zm-16.856 5.791v2.98h-4.855v-2.98zm11.238 0v2.98h-4.855v-2.98zm11.237 0v2.98h-4.855v-2.98zm-16.856 5.791v2.98h-4.855v-2.98zm11.237 0v2.98h-4.855v-2.98z'/%3e%3cpath d='M185.35 368.486h-3.94v2.065h3.94zm11.237 0h-3.94v2.065h3.94zm-16.856 5.791h-3.94v2.065h3.94zm11.238 0h-3.94v2.065h3.94zm11.236 0h-3.94v2.065h3.94zm-16.855 5.791h-3.94v2.065h3.94zm11.237 0h-3.94v2.065h3.94z' fill='%23fff'/%3e%3c/g%3e%3cuse xlink:href='%23j' y='31.788'/%3e%3cpath d='m127.676 479.354 42.052-22.631h38.539l42.051 22.631v37.29l-42.051 22.63h-38.54l-42.051-22.63z'/%3e%3cpath fill='%2328ae66' d='m169.863 457.151-41.738 22.458v36.757l41.738 22.458h38.293l41.74-22.458V479.61l-41.74-22.458h-38.293zm.74 3.019h36.812l39.514 21.239v33.21l-39.514 21.239h-36.834l-39.512-21.24v-33.21z'/%3e%3cpath fill='%23faae29' d='M189.212 497.784v37.64h18.095l39.183-21.087v-16.124h-57.706v-37.64h-18.095l-39.184 21.086v16.125z'/%3e%3cpath fill='%23fff' d='M188.783 497.784v37.64h-18.095l-39.183-21.087v-16.124h57.706v-37.64h18.096l39.183 21.086v16.125z'/%3e%3cpath d='M192.514 533.317v-10.88l-3.517 2.232-3.518-2.231v10.879h-10.942l7.383-5.414v-7.723l-11.26-7.144h-7.867v-30.073h7.868l11.26-7.144v-7.723l-7.384-5.414h10.942v10.88l3.518-2.232 3.517 2.232v-10.88h10.942l-7.383 5.414v7.723l11.26 7.144h7.867v30.073h-7.868l-11.26 7.144v7.723l7.384 5.414z'/%3e%3cpath fill='%23faae29' d='M192.956 463.135v11.229l-3.761-2.383v3.178l17.214 10.962h5.667v11.655h2.702v-14.407h-7.575l-11.545-7.31V467.9l6.513-4.766h-9.215zm-29.714 35.064v14.407h7.52l11.6 7.361v8.158l-6.514 4.766h9.216v-11.229l3.707 2.385v-3.285l-17.213-10.857h-5.615v-11.706h-2.701z'/%3e%3cpath fill='%23fff' d='m175.847 463.135 6.515 4.766v8.158l-11.6 7.31h-7.52v14.407h2.7V486.12h5.615l17.214-10.91v-3.23l-3.707 2.383v-11.229h-9.217zm36.229 35.064v11.705h-5.668l-17.214 10.858v3.285l3.761-2.385v11.229h9.216l-6.514-4.766v-8.158l11.546-7.36h7.574v-14.408h-2.701z'/%3e%3cpath fill='%23ca3745' d='M166.352 509.458h5.338l17.307 10.98 17.307-10.98h5.338v-22.916h-5.338l-17.307-10.981-17.307 10.98h-5.338z'/%3e%3cpath d='M200.977 503.445h3.695v-1.748h-2.78v-3.179h5.942v8.106h-5.696v5.53h-11.724v-7.946h5.16v3.178h-1.999v1.59h5.402v-3.039l-21.961-13.383h-3.695v1.748h2.78v3.178h-5.942v-8.104h5.696v-5.53h11.724v7.945h-5.16v-3.178h1.999v-1.589h-5.402v3.038zm-2-13.383v-3.038h-5.402v1.589h1.999v3.178h-5.16v-7.945h11.725v5.53h5.695v8.104h-5.941v-3.178h2.78v-1.748h-3.696l-21.96 13.383v3.038h5.4v-1.59h-1.998v-3.177h5.16v7.945h-11.724v-5.53h-5.696v-8.105h5.942v3.179h-2.78v1.748h3.695z'/%3e%3cpath fill='%23fff' d='M199.406 505.697v3.707h-6.26v-2.446h2v-2.321h-4.303v7.088h10.867v-5.53h5.696v-7.247h-5.085v2.32h2.78v2.606h-4.244l-22.27-13.571v-3.707h6.26v2.446h-1.999v2.321h4.303v-7.088h-10.867v5.53h-5.695v7.247h5.083v-2.321h-2.78v-2.605h4.244zm1.451-13.571h4.245v2.605h-2.78v2.321h5.084v-7.248h-5.695v-5.53h-10.868v7.089h4.303v-2.321h-1.999v-2.446h6.259v3.707l-22.27 13.57h-4.243v-2.605h2.78v-2.321h-5.084v7.248h5.695v5.53h10.867v-7.089h-4.303v2.322h1.999v2.445h-6.26v-3.707z'/%3e%3cpath d='M238.042 499.884v11.762h-5.005v-4.154h-5.046v4.154h-5.005v-11.762h5.005v4.154h5.046v-4.154zm-17.91 15.615v11.762h-5.005v-4.154h-5.046v4.154h-5.005v-11.762h5.005v4.154h5.046V515.5zm17.91-19.386v-11.762h-5.005v4.154h-5.046v-4.154h-5.005v11.762h5.005v-4.154h5.046v4.154zm-98.089 3.771v11.762h5.005v-4.154h5.046v4.154h5.005v-11.762h-5.005v4.154h-5.046v-4.154zm0-3.771v-11.762h5.005v4.154h5.046v-4.154h5.005v11.762h-5.005v-4.154h-5.046v4.154zm80.179-15.614v-11.762h-5.005v4.154h-5.046v-4.154h-5.005V480.5h5.005v-4.154h5.046v4.154zm-62.268 35v11.762h5.005v-4.154h5.046v4.154h5.005v-11.762h-5.005v4.154h-5.046V515.5zm0-35v-11.762h5.005v4.154h5.046v-4.154h5.005V480.5h-5.005v-4.154h-5.046v4.154zm65.254-8.243v8.932h16.597zm-68.241 51.486v-8.932H138.28zm0-51.486v8.932H138.28zm68.241 51.486v-8.932h16.597z'/%3e%3cpath d='M233.465 507.064v4.154h4.148v-10.905h-4.148v4.154h-5.903v-4.154h-4.148v10.905h4.148v-4.154zm-17.91 15.614v4.154h4.148v-10.905h-4.148v4.154h-5.903v-4.154h-4.148v10.905h4.148v-4.154zm17.91-33.744v-4.154h4.148v10.905h-4.148v-4.155h-5.903v4.155h-4.148V484.78h4.148v4.154zm-88.935 18.13v4.154h-4.148v-10.905h4.148v4.154h5.903v-4.154h4.148v10.905h-4.148v-4.154zm0-18.13v-4.154h-4.148v10.905h4.148v-4.155h5.903v4.155h4.148V484.78h-4.148v4.154zm71.025-15.614v-4.154h4.148v10.905h-4.148v-4.155h-5.903v4.155h-4.148v-10.905h4.148v4.154zm-53.115 49.358v4.154h-4.148v-10.905h4.148v4.154h5.903v-4.154h4.148v10.905h-4.148v-4.154zm0-49.358v-4.154h-4.148v10.905h4.148v-4.155h5.903v4.155h4.148v-10.905h-4.148v4.154z' fill='%23ca3745'/%3e%3cpath fill='%23faae29' d='M223.57 472.986v7.786h14.461l-14.461-7.786zm-83.58 42.268 14.46 7.786v-7.786h-14.46z'/%3e%3cpath fill='%23fff' d='m154.449 472.986-14.46 7.786h14.46v-7.786zm69.12 42.268v7.786l14.461-7.786h-14.46z'/%3e%3c/g%3e%3c/svg%3e\"},8736:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-60 -40 120 80'%3e%3cg fill='%23E70013'%3e%3cpath d='M-60-40H60v80H-60z'/%3e%3ccircle fill='%23FFF' r='20'/%3e%3ccircle r='15'/%3e%3ccircle fill='%23FFF' cx='4' r='12'/%3e%3cpath d='m-5 0 16.281-5.29L1.22 8.56V-8.56L11.28 5.29z'/%3e%3c/g%3e%3c/svg%3e\"},2439:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 48'%3e%3cg fill='%23C10000'%3e%3cpath d='M0 0h96v48H0z'/%3e%3cpath fill='%23fff' d='M0 0h40v24H0z'/%3e%3cpath d='M17 3h6v18h-6z'/%3e%3cpath d='M11 9h18v6H11z'/%3e%3c/g%3e%3c/svg%3e\"},1900:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3e%3cpath fill='%23E30A17' d='M0 0h1200v800H0z'/%3e%3ccircle cx='425' cy='400' r='200' style='fill:%23fff'/%3e%3ccircle cx='475' cy='400' r='160' style='fill:%23e30a17'/%3e%3cpath style='fill:%23fff' d='m583.334 400 180.901 58.779-111.804-153.885v190.212l111.804-153.885z'/%3e%3c/svg%3e\"},8627:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 18'%3e%3cpath fill='%23CE1126' d='M0 0h30v18H0z'/%3e%3cpath fill='%23FFF' d='m0 0 20.825 18H30L9.175 0z'/%3e%3cpath d='m1.53 0 20.824 18h6.117L7.646 0z'/%3e%3c/svg%3e\"},6754:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3e%3cclipPath id='a'%3e%3cpath d='M0 0h650v350H0z'/%3e%3c/clipPath%3e%3cclipPath id='b'%3e%3cpath d='M0 0v150h650v150h-50zm0 300v50h300V0h300z'/%3e%3c/clipPath%3e%3cpath fill='%23012169' d='M0 0h1200v600H0z'/%3e%3cpath d='m0 0 600 300m0-300L0 300' stroke='%23fff' stroke-width='60' clip-path='url(%23a)'/%3e%3cpath d='m0 0 600 300m0-300L0 300' stroke='%23c8102e' stroke-width='40' clip-path='url(%23b)'/%3e%3cpath d='M0 150h650M300 0v350' stroke='%23fff' stroke-width='100'/%3e%3cpath d='M0 150h650M300 0v350' stroke='%23c8102e' stroke-width='60'/%3e%3cpath d='M0 300h600V0h600v600H0z' fill='%23009cde'/%3e%3cpath d='m645.34 490.913 29.436 90.597-77.066-55.992h95.26l-77.067 55.993zM817.462 464l-29.436 90.597L758.589 464l77.066 55.992h-95.26zm0-121.984-29.436 90.597-29.437-90.597 77.066 55.992-95.26.001zm126.005 91.152-29.437 90.597-29.436-90.597 77.066 55.992-95.26.001zm0-265.413-29.437 90.597-29.436-90.597 77.066 55.992H866.4zm52.975 172.21 29.436 90.597-77.066-55.992h95.26l-77.067 55.993zm52.923-208.404-29.437 90.597-29.437-90.597 77.067 55.992-95.26.001zm53.471 139.913 29.437 90.597-77.067-55.992h95.26l-77.067 55.993zm0-234.069 29.437 90.597-77.067-55.992h95.26l-77.067 55.993z' fill='%23fedd00'/%3e%3c/svg%3e\"},8065:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-60 -40 240 160'%3e%3crect x='-60' y='-40' width='100%25' height='100%25' fill='%23fe0000'/%3e%3crect x='-60' y='-40' width='50%25' height='50%25' fill='%23000095'/%3e%3cpath id='a' d='M8 0 0 30-8 0l8-30M0 8l30-8L0-8l-30 8' fill='%23fff'/%3e%3cuse xlink:href='%23a' transform='rotate(30)'/%3e%3cuse xlink:href='%23a' transform='rotate(60)'/%3e%3ccircle r='17' fill='%23000095'/%3e%3ccircle r='15' fill='%23fff'/%3e%3c/svg%3e\"},5454:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 48'%3e%3cpath d='M0 48V0h72z' fill='%231eb53a'/%3e%3cpath d='M0 48h72V0z' fill='%2300a3dd'/%3e%3cpath d='M0 48 72 0' stroke='%23fcd116' stroke-width='19'/%3e%3cpath d='M0 48 72 0' stroke='%23000' stroke-width='13'/%3e%3c/svg%3e\"},8505:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3e%3cpath fill='%23005BBB' d='M0 0h1200v800H0z'/%3e%3cpath fill='%23FFD500' d='M0 400h1200v400H0z'/%3e%3c/svg%3e\"},8855:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath d='M0 0h900v600H0z'/%3e%3cpath fill='%23fcdc04' d='M0 100h900v100H0z'/%3e%3cpath fill='%23d90000' d='M0 200h900v100H0z'/%3e%3cpath fill='%23fcdc04' d='M0 400h900v100H0z'/%3e%3cpath fill='%23d90000' d='M0 500h900v100H0z'/%3e%3ccircle cx='450' cy='300' r='93.5' fill='%23fff'/%3e%3cg stroke='%23000'%3e%3cpath d='m433.52 228.39-6.064-11.17c2.34-2.34 6.277-4.149 12.553-4.149 0 .426-.638 12.235-.638 12.235z' fill='%23d90000'/%3e%3cpath d='m439.371 225.412.851-12.34s12.554-.745 19.362 7.446c.107-.106-6.702 9.574-6.702 9.574z' fill='%23fcdc04'/%3e%3cpath d='m453.095 229.986 6.17-9.574c4.15 4.362 5.85 7.447 6.49 12.128.106.106-9.788 2.446-9.788 2.34 0-.107-2.765-4.788-2.872-4.894z' fill='%23d90000'/%3e%3cpath d='M436.605 388.073s11.596-13.298 34.15-10.425c-3.405-5.533-14.362-4.894-14.362-4.894s-3.404-25.851-.745-27.128c2.66-1.277 13.936.106 13.936.106 1.489 0 4.043-4.042 2.022-6.595-2.022-2.554-7.98-12.341-5.533-14.256 2.448-1.915 15.745 1.064 15.745 1.064l-37.553-48.086s-3.83-18.085 3.83-26.809c9.256-7.66 8.298-15.957 7.979-15.851-1.277-8.404-14.043-14.469-22.66-6.702-5.107 6.17-1.703 10.851-1.703 10.851s-13.404 3.617-13.936 5.957c-.532 2.341 15.107-.425 15.107-.425l-1.49 10.745s-30.426 27.66-7.127 51.596c.212-.106.744-1.064.744-1.064s8.192 10.107 16.809 12.34c8.085 8.299 7.34 7.022 7.34 7.022s1.596 13.086.107 15.639c-2.021-.639-22.66-1.383-25.745-.213-2.766.851-13.404.319-10.745 17.66 2.021-4.681 3.83-8.83 3.83-8.83s-.32 6.276 2.234 8.51c-.425-6.596 2.447-11.063 2.447-11.063s.532 7.234 2.127 8.297c1.596 1.064 1.596-11.702 10.427-10.638 8.829 1.064 15.212.745 15.212.745s2.979 25 2.021 27.34c-6.383-1.489-21.595.64-22.553 4.469 8.936-.532 13.086.531 13.086.531s-7.234 6.384-5 10.107z'/%3e%3cpath d='M440.191 251.66s-22.139 24.403-12.587 43.076c.508-2.604.286-4.24.606-4.134-.532-.32 2.745 2.247 2.496 1.747.07-1.35-.998-4.243-.998-4.243l2.995.749-1.748-3.245 4.244.499s-1.498-3.994-.998-3.994c.499 0 3.494.25 3.494.25-6.296-11.3-.356-20.683 2.496-30.705zm7.691-20.93s1.17 8.405-3.404 10.852c-.745.532-3.617 1.49-3.192 3.192.532 2.34 1.808 1.915 3.617 1.489 4.787-.851 10.32-11.064 2.979-15.532z' fill='%239ca69c' stroke='%239ca69c'/%3e%3ccircle cx='438' cy='238' r='1.8' fill='%23fff' stroke='none'/%3e%3cpath d='M432.563 244.986c-1.17.958-7.34 7.341-1.277 9.681 6.277-1.702 4.574-2.872 5.958-4.255.035-2.872-3.121-3.617-4.681-5.426z' fill='%23d90000'/%3e%3cpath d='M445.967 305.307c-.32 1.383-1.702 6.489.212 10.425 5.32-2.234 7.767-1.596 9.575-.426-4.36-3.51-6.063-5-9.787-10z' fill='%239ca69c' stroke='%239ca69c'/%3e%3cpath d='m455.116 329.455.32 11.915s4.148.745 6.063 0-.107-8.298-6.383-11.915z' fill='%23fff' stroke='%23fff'/%3e%3cpath d='M485.223 330.945s-7.66-18.51-27.235-23.192c-19.575-4.681-17.022-25.532-15.426-26.809.852-1.809 1.49-4.574 7.128-1.914 5.639 2.66 31.596 15.744 35.32 16.382 3.723.639.532 35.959.213 35.533z' fill='%239ca69c'/%3e%3cpath d='M466.606 307.647c-.32.212 26.17 15.637 18.191 28.936 7.554-5 5.107-13.723 5.107-13.723s6.17 16.064-8.83 23.936c1.596 1.384 2.66 1.064 2.66 1.064l-2.554 2.553s-1.17 1.915 8.937-2.98c-2.767 2.235-2.979 3.83-2.979 3.83s.744 2.129 7.34-3.616c-5.32 5.745-6.49 8.723-6.49 8.617 14.362-1.277 45.64-47.979-9.893-61.81 2.98 3.086 2.553 2.66 2.553 2.66z' fill='%23d90000'/%3e%3cpath d='M467.776 303.072c3.617 2.553 4.893 3.404 5.319 4.681-3.298-.744-6.277-.532-6.277-.532s-7.127-6.808-8.404-7.34c-.958 0-6.49-3.511-6.49-3.511-2.765-1.383-5.318-10.957 4.895-8.192 10.53 5 12.02 5.426 12.02 5.426 4.185 1.312 8.369 2.625 12.554 3.936l7.234 8.086s-12.872-6.384-14.468-6.49c3.51 2.872 5.532 6.808 5.532 6.808-4.078-1.17-7.624-2.234-11.915-2.872z' fill='%23fff'/%3e%3cpath d='M417.669 245.944s12.34-2.979 13.83-2.553' stroke='%23fff'/%3e%3c/g%3e%3c/svg%3e\"},7639:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 7410 3900'%3e%3cpath fill='%23b22234' d='M0 0h7410v3900H0z'/%3e%3cpath d='M0 450h7410m0 600H0m0 600h7410m0 600H0m0 600h7410m0 600H0' stroke='%23fff' stroke-width='300'/%3e%3cpath fill='%233c3b6e' d='M0 0h2964v2100H0z'/%3e%3cg fill='%23fff'%3e%3cg id='d'%3e%3cg id='c'%3e%3cg id='e'%3e%3cg id='b'%3e%3cpath id='a' d='m247 90 70.534 217.082-184.66-134.164h228.253L176.466 307.082z'/%3e%3cuse xlink:href='%23a' y='420'/%3e%3cuse xlink:href='%23a' y='840'/%3e%3cuse xlink:href='%23a' y='1260'/%3e%3c/g%3e%3cuse xlink:href='%23a' y='1680'/%3e%3c/g%3e%3cuse xlink:href='%23b' x='247' y='210'/%3e%3c/g%3e%3cuse xlink:href='%23c' x='494'/%3e%3c/g%3e%3cuse xlink:href='%23d' x='988'/%3e%3cuse xlink:href='%23c' x='1976'/%3e%3cuse xlink:href='%23e' x='2470'/%3e%3c/g%3e%3c/svg%3e\"},3945:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 7410 3900'%3e%3cpath fill='%23b22234' d='M0 0h7410v3900H0z'/%3e%3cpath d='M0 450h7410m0 600H0m0 600h7410m0 600H0m0 600h7410m0 600H0' stroke='%23fff' stroke-width='300'/%3e%3cpath fill='%233c3b6e' d='M0 0h2964v2100H0z'/%3e%3cg fill='%23fff'%3e%3cg id='d'%3e%3cg id='c'%3e%3cg id='e'%3e%3cg id='b'%3e%3cpath id='a' d='m247 90 70.534 217.082-184.66-134.164h228.253L176.466 307.082z'/%3e%3cuse xlink:href='%23a' y='420'/%3e%3cuse xlink:href='%23a' y='840'/%3e%3cuse xlink:href='%23a' y='1260'/%3e%3c/g%3e%3cuse xlink:href='%23a' y='1680'/%3e%3c/g%3e%3cuse xlink:href='%23b' x='247' y='210'/%3e%3c/g%3e%3cuse xlink:href='%23c' x='494'/%3e%3c/g%3e%3cuse xlink:href='%23d' x='988'/%3e%3cuse xlink:href='%23c' x='1976'/%3e%3cuse xlink:href='%23e' x='2470'/%3e%3c/g%3e%3c/svg%3e\"},603:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-5 -5 27 18'%3e%3cpath fill='%23fff' d='M-5-5h27v18H-5z'/%3e%3cpath d='M5-3h17v2H5zm0 4h17v2H5zM-5 5h27v2H-5zm0 4h27v2H-5z' fill='%230038a8'/%3e%3cg transform='scale(.11)' fill='%23fcd116' stroke='%23000' stroke-width='.6' stroke-miterlimit='20'%3e%3cg id='c'%3e%3cg id='b'%3e%3cg id='a'%3e%3cpath d='M1.5 9 6 12c-8 13 1 15-6 21 3-7-3-5-3-17' stroke-linecap='square' transform='rotate(22.5)'/%3e%3cpath d='M0 11c-2 13 4.5 17 0 22' fill='none' transform='rotate(22.5)'/%3e%3cpath d='M0 0h6L0 33-6 0h6v33'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='rotate(45)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(90)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='rotate(180)'/%3e%3ccircle r='11'/%3e%3c/g%3e%3cg transform='scale(.011)'%3e%3cg id='d'%3e%3cpath d='M81-44c-7 8-11-6-36-6S16-35 12-38s21-21 29-22 31 7 40 16m-29 9c7 6 1 19-6 19S26-28 32-36'/%3e%3cpath d='M19-26c1-12 11-14 27-14s23 12 29 15c-7 0-13-10-29-10s-16 0-27 10m3 2c4-6 9 6 20 6s17-3 24-8-10 12-21 12-26-6-23-10'/%3e%3cpath d='M56-17c13-7 5-17 0-19 2 2 10 12 0 19M0 43c6 0 8-2 16-2s27 11 38 7c-23 9-14 3-54 3h-5m63 6c-4-7-3-5-11-16 8 6 10 9 11 16M0 67c25 0 21-5 54-19-24 3-29 11-54 11h-5m5-29c7 0 9-5 17-5s19 3 24 7c1 1-3-8-11-9S25 9 16 7c0 4 3 3 4 9 0 5-9 5-11 0 2 8-4 8-9 8'/%3e%3c/g%3e%3cuse xlink:href='%23d' transform='scale(-1 1)'/%3e%3cpath d='M0 76c-5 0-18 3 0 3s5-3 0-3'/%3e%3c/g%3e%3c/svg%3e\"},814:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 500 250'%3e%3cpath fill='%231eb53a' d='M0 0h500v250H0z'/%3e%3cpath fill='%230099b5' d='M0 0h500v125H0z'/%3e%3cpath fill='%23ce1126' d='M0 80h500v90H0z'/%3e%3cpath fill='%23fff' d='M0 85h500v80H0z'/%3e%3ccircle cx='70' cy='40' r='30' fill='%23fff'/%3e%3ccircle cx='80' cy='40' r='30' fill='%230099b5'/%3e%3cg fill='%23fff' transform='translate(136 64)'%3e%3cg id='e'%3e%3cg id='d'%3e%3cg id='c'%3e%3cg id='b'%3e%3cpath id='a' d='M0-6v6h3' transform='rotate(18 0 -6)'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(-72)'/%3e%3cuse xlink:href='%23c' transform='rotate(144)'/%3e%3c/g%3e%3cuse xlink:href='%23d' y='-24'/%3e%3cuse xlink:href='%23d' y='-48'/%3e%3c/g%3e%3cuse xlink:href='%23e' x='24'/%3e%3cuse xlink:href='%23e' x='48'/%3e%3cuse xlink:href='%23d' x='-48'/%3e%3cuse xlink:href='%23d' x='-24'/%3e%3cuse xlink:href='%23d' x='-24' y='-24'/%3e%3c/g%3e%3c/svg%3e\"},793:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 2500 2500'%3e%3cpath fill='%23fff' d='M0 0h2500v2500H0z'/%3e%3cpath fill='%23ffe000' d='M0 0h1250v2500H0z'/%3e%3cg stroke='%23000' stroke-width='3.205' stroke-linejoin='round'%3e%3cg fill='%23ce9d09' stroke-linecap='round'%3e%3cg id='a'%3e%3cpath fill='%23fff' d='m1781.07 990.292 16.106 3.841 25.663 4.17 11.76 1.292-2.076 49.916s-2.808 33.178-7.688 48.961c-3.618 11.701-15.781 33.18-15.781 33.18l-7.688 11.736-45.32-39.25s7.725-10.948 10.52-16.996c3.508-7.589 7.689-23.874 7.689-23.874l4.45-25.897 2.428-32.776zm-56.991 151.477 41.273 36.013s-8.345 7.428-13.353 9.711c-9.824 4.48-20.767 7.517-31.562 7.284-7.728-.167-15.32-2.973-22.35-6.186-15.722-7.184-33.032-14.73-43.168-28.732-3.587-4.954-5.003-11.57-4.89-17.685.128-6.933 6.281-19.832 6.281-19.832s2.391 8.636 5.133 12.023c4.513 5.572 11.118 9.302 17.597 12.375 4.848 2.299 10.144 4.022 15.5 4.336 6.951.407 14.163-.674 20.637-3.237 3.339-1.323 8.902-6.07 8.902-6.07z'/%3e%3cpath fill='%23fff' d='M1658.65 877.67s3.294 6.6 4.297 10.128c1.715 6.033 2.908 12.326 2.861 18.598-.047 6.287-1.468 12.539-3.147 18.598-2.516 9.08-6.32 17.783-10.3 26.323-2.525 5.416-6.055 10.324-8.584 15.737-4.08 8.729-6.994 17.956-10.587 26.896-2.999 7.46-6.864 14.61-9.156 22.318-3.044 10.238-4.562 20.891-6.009 31.474-1.244 9.103-2.228 18.28-2.289 27.468-.07 10.899.257 21.91 2.29 32.618 2.013 10.61 4.976 21.204 9.728 30.901 3.83 7.817 8.931 15.104 14.878 21.46 4.916 5.253 10.706 9.756 16.882 13.448 5.61 3.354 11.95 5.31 18.025 7.725 8.392 3.336 25.433 9.335 25.433 9.335s-23.527-11.592-31.727-21.352c-6.784-8.074-10.521-18.62-12.876-28.899-2.727-11.905-2.383-24.473-1.144-36.624 1.332-13.072 5.179-25.817 9.156-38.34 4.196-13.218 10.095-25.836 15.45-38.627 3.86-9.22 8.276-18.201 12.018-27.468 4.417-10.942 8.764-21.935 12.303-33.19 2.158-6.866 4.85-13.722 5.43-20.895.631-7.792-.383-15.742-2.17-23.353-2.503-10.663-5.598-21.65-11.836-30.652-3.754-5.419-8.898-10.153-14.77-13.151-5.732-2.927-12.543-5.401-18.857-4.154-2.11.417-5.299 3.678-5.299 3.678z'/%3e%3cpath fill='%23fff' d='M1711.59 945.594s4.454-17.99 5.208-27.187c.646-7.867.225-15.822-.607-23.672-.924-8.734-1.468-17.793-4.855-25.897-3.514-8.406-9.025-16.13-15.579-22.457-6.46-6.237-14.294-11.306-22.66-14.568-8.801-3.431-18.491-4.278-27.92-4.855-8.088-.495-16.24.191-24.279 1.214-4.644.59-9.323 1.33-13.757 2.832-4.115 1.393-11.735 5.665-11.735 5.665l29.943 48.962s9.373-5.518 14.567-6.88c5.494-1.439 11.326-1.545 16.995-1.213 5.757.337 11.726.894 16.995 3.237 6.707 2.983 12.49 7.984 17.547 13.304 6.102 6.42 11.549 13.787 14.96 21.961 3.166 7.59 3.581 16.072 4.72 24.217.248 1.769.457 5.337.457 5.337z'/%3e%3cpath d='M1717.05 906.676s-5.334-16.56-10.37-23.474c-5.85-8.031-13.365-15.391-22.255-19.828-9.428-4.704-30.994-6.216-30.994-6.216l11.414 21.128-19.966-.487-10.427-17.435-19.232 8.706-9.568-15.645 20.431-9.473-9.414-15.185 20.423-1.943 8.892 14.7s15.874.048 23.588 1.668c5.238 1.1 10.385 2.91 15.12 5.405 4.532 2.388 8.698 5.521 12.447 9.012 4.508 4.2 8.732 8.865 11.874 14.164 3.054 5.15 6.542 16.727 6.542 16.727z'/%3e%3cpath d='m1581.65 845.092 31.9 46.592m-17.97-54.736-15.032 8.789-14.307 10.872 30.902 47.21 13.734-10.586 14.12-8.183zm58.21 198.922 17.883-36.91 19.139 7.613 7.755-19.059-19.026-8.869 9.872-21.316-14.02-6.295-10.587 20.458-19.194-8.024-8.428 19.963 18.609 7.803-17.168 36.625zm143.13-11.04 18.209-.405v21.042l17.533.831-2.982 21.358-16.358-1.03s-2.698 12.575-5.121 18.496c-2.513 6.14-9.662 17.4-9.662 17.4l-19.423-4.856s7.026-11.049 9.711-16.995c2.405-5.326 5.665-16.59 5.665-16.59l-19.939-2.517 3.47-20.192 18.088 1.262z'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 3717.75 0)'/%3e%3cpath fill='%23fff' d='m1756.66 735.602-27.42 29.446 16.881 50.93 9.666 35.795-27.723 25.826 50.729 71.05-17.366 19.818c-1.817 2.329-2.455 5.662-2.144 8.6.286 2.693 1.582 5.464 3.577 7.296 4.56 4.187 11.328 5.133 17.31 6.724 21.066 5.602 42.928 8.102 64.665 9.728 4.668.35 14.042 0 14.042 0s9.358.35 14.043 0c21.737-1.626 43.6-4.126 64.664-9.728 5.983-1.59 12.751-2.537 17.31-6.724 1.996-1.832 3.292-4.603 3.578-7.296.311-2.938-.327-6.271-2.145-8.6l-16.301-35.876 51.819-55.52-19.776-17.835-.436-43.258 16.882-50.93-25.412-25.724-22.943-61.258s-4.801-17.08-8.87-24.893c-2.433-4.67-5.832-8.791-9.156-12.876-3.983-4.894-8.002-9.87-12.876-13.877-4.416-3.63-9.536-6.346-14.592-9.013-5.433-2.866-10.892-5.956-16.845-7.472-6.14-1.563-18.944-1.54-18.944-1.54s-12.787-.027-18.943 1.54c-5.953 1.515-11.412 4.606-16.845 7.472-5.056 2.667-10.176 5.382-14.592 9.013-4.875 4.007-8.893 8.983-12.876 13.877-3.324 4.085-6.723 8.205-9.156 12.876-4.07 7.812-8.87 24.893-8.87 24.893z'/%3e%3cpath d='M1963.27 933.128s-3.177-2.845-4.96-4a64.476 64.476 0 0 0-11.937-6.07c-5.607-2.147-11.553-3.288-17.4-4.653-6.697-1.563-13.414-3.14-20.232-4.046-7.973-1.06-16.033-1.538-24.076-1.619-8.607-.086-25.793 1.214-25.793 1.214s-17.17-1.3-25.794-1.214c-8.043.082-16.102.558-24.076 1.619-6.817.907-13.534 2.483-20.232 4.046-5.846 1.365-11.793 2.506-17.4 4.654a64.476 64.476 0 0 0-11.936 6.07c-1.783 1.154-4.96 3.999-4.96 3.999m218.71-42.693s-5.183-5.268-8.602-5.918c-2.21-.42-4.741.214-6.575 1.517-2.372 1.685-3.956 4.56-4.654 7.385-.624 2.528-.353 5.368.607 7.79.813 2.05 2.1 4.337 4.148 5.158 4.8 1.926 15.384-2.024 15.384-2.024zm5.156-3.592c5.801.17 7.914 3.108 9.454 6.475m-243.23-2.882-.307 13.907s10.583 3.95 15.383 2.024c2.048-.821 3.335-3.108 4.148-5.159.96-2.42 1.232-5.261.607-7.79-.698-2.824-2.282-5.699-4.654-7.384-1.833-1.303-4.368-1.95-6.575-1.517-3.445.676-8.602 5.919-8.602 5.919zm-5.156-3.593c-5.801.17-7.914 3.108-9.454 6.475m198.167 1.346-8.447-.946m-130.044.946 8.447-.946m75.992.814c-2.865-.422-7.6-4.21-7.6-4.21m-22.786 4.21c2.865-.422 7.6-4.21 7.6-4.21m140.936-19.346s-4.215 3.347-7.285 3.858l-1.211.644s-1.947 5.728-3.662 8.174c-1.719 2.451-6.465 6.25-6.465 6.25s-4.787-4.144-7.744-4.951c-1.94-.53-4.163-.544-6.025.215-1.976.804-3.548 2.535-4.737 4.306-1.403 2.093-2.706 4.583-2.588 7.1.141 3.014 3.877 8.184 3.877 8.184l-2.578 4.511-3.662 2.373c-6.314-1.913-12.63-3.935-18.945-7.539-1.732-1.888-3.358-4.302-4.522-9.033 0 0 4.544-2.693 5.596-4.951 1.182-2.538 1.668-6.006.215-8.399-1.616-2.66-5.276-4.042-8.389-4.091-2.28-.037-4.689 1.14-6.25 2.802-1.679 1.788-2.975 4.465-2.578 6.885.404 2.466 4.736 5.81 4.736 5.81s-1.8 4.559-3.838 5.43c-6.011 2.572-9.978 4.04-15.244 4.854-5.21.804-11.072 1.465-16.298-.02-3.376-.958-6.845-2.73-8.965-5.527-.631-.833-.86-3.008-.86-3.008s6.467-1.679 9.043-3.662c2.56-1.97 5.283-4.568 5.81-7.754.532-3.2-1.17-6.59-3.017-9.258-1.83-2.644-4.582-4.738-7.53-6.025-1.329-.58-4.306-.645-4.306-.645s-.63.571-.937.86c-1.244 1.598-2.954 2.862-4.766 3.808-.032.019-.076.051-.107.069-.044.024-.129.044-.176.068-.38.19-.75.41-1.133.567-.2.081-.51.093-.742.156-1.27.429-2.47.781-2.47.781s3.863 1.196 4.95 2.735c.672.95.963 2.109 1.084 3.31.149.713.235 1.434.206 2.129-.047 1.11-.323 2.233-.704 3.33-.348 1.278-.839 2.507-1.67 3.496-.45.537-1.003.985-1.591 1.387-.028.023-.05.056-.078.078-.03.023-.086.036-.118.059a12.406 12.406 0 0 1-3.378 1.494c-1.372.382-4.186.08-4.288.068.104 0 5.51-.01 7.666-1.562.067-.043.13-.092.196-.137 1.51-1.205 2.6-2.976 3.261-4.883.21-.766.415-1.543.489-2.314a16.43 16.43 0 0 0 .01-3.145c-.33-1.584-1.061-3.123-2.217-4.15-2.417-2.148-9.324-2.409-9.414-2.412-.107.004-6.99.267-9.404 2.412-1.156 1.027-1.887 2.566-2.217 4.15a16.272 16.272 0 0 0 .01 3.145c.073.77.279 1.548.488 2.314.662 1.907 1.752 3.678 3.262 4.883.065.045.128.094.195.137 2.156 1.553 7.562 1.562 7.666 1.562-.101.011-2.916.314-4.287-.068a12.406 12.406 0 0 1-3.379-1.494c-.031-.023-.087-.036-.117-.059-.03-.022-.05-.055-.078-.078-.588-.402-1.14-.85-1.592-1.387-.83-.989-1.321-2.218-1.67-3.496-.38-1.097-.656-2.22-.703-3.33-.029-.695.057-1.416.205-2.129.121-1.201.422-2.36 1.094-3.31 1.088-1.539 4.941-2.735 4.941-2.735s-1.2-.352-2.47-.781c-.23-.063-.535-.076-.733-.156-.389-.159-.768-.384-1.152-.576-.042-.022-.117-.037-.156-.06-.026-.014-.062-.043-.088-.058-1.822-.947-3.546-2.213-4.795-3.818-.309-.289-.938-.86-.938-.86s-2.967.064-4.297.645c-2.947 1.287-5.709 3.38-7.539 6.026-1.847 2.668-3.548 6.056-3.017 9.257.528 3.186 3.261 5.785 5.82 7.754 2.576 1.983 9.033 3.662 9.033 3.662s-.228 2.176-.86 3.008c-2.12 2.797-5.588 4.569-8.964 5.527-5.227 1.485-11.089.824-16.299.02-5.266-.813-9.233-2.281-15.244-4.854-2.038-.871-3.838-5.43-3.838-5.43s4.332-3.344 4.736-5.81c.397-2.42-.899-5.097-2.578-6.885-1.561-1.662-3.96-2.839-6.24-2.802-3.113.05-6.782 1.431-8.398 4.092-1.454 2.392-.968 5.86.214 8.398 1.053 2.258 5.596 4.951 5.596 4.951-1.163 4.731-2.79 7.146-4.521 9.033-6.315 3.604-12.631 5.626-18.946 7.54l-3.652-2.374-2.588-4.511s3.736-5.17 3.877-8.184c.118-2.517-1.184-5.007-2.588-7.1-1.188-1.771-2.76-3.502-4.736-4.306-1.862-.759-4.086-.744-6.026-.215-2.957.807-7.744 4.951-7.744 4.951s-4.746-3.798-6.465-6.25c-1.714-2.446-3.652-8.174-3.652-8.174l-1.21-.644c-3.071-.505-7.296-3.858-7.296-3.858l-4.443.938s-4.102 2.195-4.15 4.15c-.068 2.7 3.725 3.919 5.439 6.006a75.74 75.74 0 0 1 4.14 5.586c1.226 1.808 2.843 3.475 3.438 5.576.65 2.294-.974 4.972 0 7.149 1.228 2.743 3.773 5.415 6.719 6.015 2.615.533 7.588-2.578 7.588-2.578l-.147 19.883 10.303 9.307 9.727 20.312-3.858 5.147 1.143 10c7.48-9.585 20.501-13.792 32.187-17.149 15.732-4.52 44.57-4.841 58.008-4.717 4.48.042 7.256.137 7.256.137s44.295-1.442 65.254 4.58c11.685 3.358 24.706 7.564 32.187 17.149l1.143-10-3.858-5.147 9.727-20.312 10.303-9.307-.147-19.883s4.973 3.111 7.588 2.578c2.946-.6 5.491-3.272 6.719-6.015.974-2.177-.65-4.855 0-7.149.595-2.101 2.212-3.768 3.437-5.576a75.867 75.867 0 0 1 4.15-5.586c1.715-2.087 5.497-3.306 5.43-6.006-.049-1.955-4.15-4.15-4.15-4.15l-4.443-.938zm-148.33-2.607c1.049.982 3.103 2.847 4.795 3.818.08.042.163.077.244.117.505.265 1.202.502 1.885.733 2.913.792 7.935.267 8.047.254h.03c.111.012 5.133.536 8.047-.254.676-.229 1.37-.461 1.875-.723.094-.047.19-.088.283-.137 1.692-.976 3.72-2.83 4.766-3.808.522-.671.965-1.392 1.298-2.158 1.156-2.661 1.102-6.112-.205-8.702-1.537-3.046-5.175-4.496-8.086-6.279-2.506-1.535-7.912-3.725-7.998-3.76-.1.04-5.475 2.227-7.978 3.76-2.91 1.783-6.558 3.233-8.096 6.28-1.307 2.59-1.36 6.04-.205 8.7a10.03 10.03 0 0 0 1.299 2.159z'/%3e%3cpath d='M1980.77 829.789s-10.886-5.061-16.59-6.879c-10.413-3.319-21.236-5.216-31.967-7.283-12.467-2.403-25.26-3.052-37.622-5.944-3.892-.91-7.53-2.769-11.445-3.576-5.4-1.114-11.061-2.874-16.452-1.717-2.968.637-7.82 4.578-7.82 4.578s-4.867-3.94-7.82-4.578c-5.389-1.165-11.051.603-16.451 1.717-3.915.807-7.554 2.666-11.445 3.576-12.363 2.892-25.156 3.541-37.622 5.944-10.732 2.067-21.555 3.964-31.967 7.283-5.704 1.818-16.59 6.879-16.59 6.879m197.456-45.121s5.35-2.824 7.286-5.059c1.283-1.482 2.506-3.297 2.636-5.254.151-2.277-.62-4.853-2.226-6.474-1.561-1.577-4.061-2.219-6.28-2.227-1.855-.006-3.842.613-5.254 1.817-1.63 1.39-2.78 3.537-3.037 5.664-.218 1.814.51 3.698 1.368 5.312 1.3 2.447 5.507 6.22 5.507 6.22zm-151.123 0s4.208-3.774 5.508-6.22c.858-1.615 1.586-3.499 1.367-5.313-.256-2.127-1.407-4.274-3.037-5.664-1.412-1.204-3.398-1.823-5.254-1.817-2.218.008-4.708.65-6.27 2.227-1.605 1.621-2.377 4.197-2.226 6.474.13 1.957 1.344 3.772 2.627 5.254 1.935 2.235 7.285 5.059 7.285 5.059zm-41.074 18.008-11.933 15.576s-.084 4.109.81 5.87c1.231 2.423 5.86 5.663 5.86 5.663l.85 21.387-11.31 19.6-.986.205 7.295 3.857c.342.056.68.112.986.088 4.378-.342 7.07-5.258 10.88-7.442 4.848-2.779 10.01-4.988 15.165-7.148 7.125-2.986 14.36-5.733 21.739-8.018 9.303-2.88 18.69-5.76 28.33-7.148a141.79 141.79 0 0 1 22.1-1.445c2.462.033 4.92.127 7.372.293 6.57.444 19.37 3.404 19.473 3.427.086-.02 12.91-2.982 19.482-3.427 9.809-.664 19.742-.25 29.473 1.152 9.64 1.389 19.027 4.269 28.33 7.148 7.38 2.285 14.614 5.032 21.738 8.018 5.155 2.16 10.317 4.37 15.166 7.148 3.81 2.184 6.501 7.1 10.88 7.442.308.024.65-.03.995-.088l7.286-3.857-.987-.206-11.308-19.6.85-21.386s4.637-3.24 5.868-5.664c.895-1.76.801-5.87.801-5.87l-11.933-15.575s-6.016 6.007-9.913 7.285c-2.05.672-4.413.64-6.474 0-2.501-.777-4.435-2.811-6.475-4.453-4.609-3.71-9.225-7.541-12.949-12.139-2.133-2.633-5.264-8.701-5.264-8.701s-12.907 10.142-20.634 12.139c-7.577 1.958-15.96 1.605-23.467-.606-1.884-.555-5.03-3.066-5.03-3.066-8.826-5.622-17.651-8.698-26.425-7.852-8.774-.846-17.6 2.23-26.426 7.852 0 0-3.155 2.511-5.04 3.066-7.506 2.211-15.89 2.564-23.466.606-7.727-1.998-20.635-12.14-20.635-12.14s-3.13 6.069-5.263 8.702c-3.724 4.598-8.34 8.43-12.95 12.139-2.04 1.642-3.973 3.676-6.474 4.453-2.061.64-4.424.672-6.475 0-3.896-1.278-9.912-7.285-9.912-7.285z'/%3e%3cpath d='M1985.89 796.364s.448-5.703-.162-8.455c-.558-2.52-1.694-4.94-3.136-7.081-1.513-2.247-5.647-5.842-5.647-5.842m-1.434 27.69s3.394.123 4.853-.605c2.603-1.3 6.074-6.27 6.074-6.27s6.662 4.608 10.313 4.043c1.8-.278 3.294-1.885 4.248-3.437 1.01-1.646 1.651-3.782 1.22-5.664-.343-1.5-1.657-2.65-2.831-3.643-2.282-1.929-6.396-1.662-7.891-4.248-1.182-2.044-.457-4.81.195-7.08 1.36-4.736 4.751-8.648 7.49-12.744 1.74-2.601 5.294-4.383 5.665-7.49.2-1.68-2.022-4.659-2.022-4.659s-5.222-.118-7.686.616c-4.077 1.213-8.307 2.995-11.2 6.113-2.406 2.592-3.121 6.365-4.386 9.668-.96 2.51-2.421 7.685-2.421 7.685s-6.042-.013-8.702 1.211c-3.515 1.618-7.11 4.158-8.7 7.686-1.248 2.767-1.074 6.272 0 9.111 1.08 2.86 3.492 5.236 6.073 6.875 2.847 1.808 9.708 2.832 9.708 2.832zm-234.71-27.69s-4.135 3.595-5.648 5.842c-1.442 2.141-2.577 4.56-3.136 7.081-.61 2.752-.162 8.455-.162 8.455m-16.936-45.485s-2.222 2.98-2.021 4.659c.37 3.107 3.924 4.889 5.664 7.49 2.739 4.096 6.13 8.008 7.49 12.744.652 2.27 1.377 5.036.195 7.08-1.495 2.586-5.61 2.32-7.89 4.248-1.175.993-2.49 2.144-2.832 3.643-.431 1.882.21 4.018 1.22 5.664.954 1.553 2.448 3.159 4.248 3.437 3.651.565 10.313-4.043 10.313-4.043s3.471 4.97 6.074 6.27c1.46.728 4.854.605 4.854.605s6.87-1.024 9.716-2.832c2.582-1.64 4.983-4.014 6.065-6.875 1.073-2.838 1.247-6.344 0-9.111-1.59-3.528-5.186-6.068-8.701-7.686-2.66-1.224-8.702-1.21-8.702-1.21s-1.46-5.176-2.421-7.686c-1.265-3.303-1.98-7.076-4.385-9.668-2.894-3.118-7.124-4.9-11.201-6.113-2.464-.734-7.686-.616-7.686-.616zm135.626 14.318 8.325-2.438 8.324 2.438m-14.492 20.082s-6.481-5.91-7.689-9.914c-.527-1.748-.45-3.849.405-5.463 1.168-2.205 5.867-4.653 5.867-4.653s-7.085-3.443-8.902-6.677c-1.029-1.83-1.158-4.245-.607-6.271.874-3.216 3.3-5.97 5.868-8.093 3.185-2.633 11.226-5.26 11.226-5.26s8.026 2.62 11.226 5.26c2.57 2.12 4.993 4.877 5.867 8.093.551 2.026.422 4.44-.607 6.271-1.817 3.234-8.902 6.677-8.902 6.677s4.699 2.448 5.867 4.653c.855 1.614.932 3.715.405 5.463-1.207 4.004-7.688 9.914-7.688 9.914l-6.168.405zm22.672-26.888s13.436 5.727 17.989 11.107c1.27 1.5 2.352 3.5 2.225 5.462-.448 6.962-10.318 18.21-10.318 18.21l-19.928-8.283h-12.944l-19.928 8.282s-9.87-11.247-10.319-18.209c-.126-1.962.956-3.961 2.226-5.462 4.552-5.38 17.989-11.107 17.989-11.107'/%3e%3cpath d='m1844.36 669.248 8.056-6.2 6.507.14-6.656-.144s-3.591-2.447-4.578-4.292c-.958-1.79-1.415-4.02-1.002-6.008.553-2.655 2.086-5.459 4.428-6.825 2.237-1.305 7.755-.471 7.755-.471s5.503-.842 7.755.471c2.343 1.366 3.876 4.17 4.428 6.825.414 1.988-.043 4.218-1.001 6.008-.987 1.845-4.578 4.292-4.578 4.292l-6.656.143 6.506-.14 8.057 6.201m52.584 5.068-2.68 4.655m32.633-20.004-7.515.982m8.513 8.804-11.517.604m-1.498-13.748c1.468.937 4.155 2.86 4.595 4.635.776 3.13-.675 7.07-3.14 9.149-2.388 2.014-9.251 1.501-9.251 1.501m-181.69 33.587s11.294-2.82 16.954-4.177c8.081-1.939 16.1-4.196 24.279-5.665 9.262-1.664 18.62-2.885 28.007-3.554 11.71-.836 35.215-.573 35.215-.573s23.488-.264 35.216.573c9.387.67 18.745 1.89 28.007 3.554 8.18 1.469 16.198 3.726 24.279 5.665 5.66 1.357 16.954 4.177 16.954 4.177m-171.55-30.165 2.68 4.655m-32.634-20.004 7.515.982m-8.513 8.804 11.517.604m-6.475 16.076s12.542-3.187 18.875-4.506c6.924-1.442 13.873-2.82 20.887-3.72 8.068-1.035 16.2-1.555 24.325-1.928 9.63-.443 28.917-.367 28.917-.367s19.27-.076 28.917.367c8.125.373 16.257.893 24.325 1.928 7.014.9 13.964 2.278 20.887 3.72 6.333 1.319 18.875 4.506 18.875 4.506m-170.239-14.539s-6.863.513-9.252-1.501c-2.465-2.079-3.915-6.02-3.139-9.149.611-2.464 5.55-5.213 5.55-5.213m63.138 74.002c-11.977.723-24.01 1.474-35.81 3.642-12.293 2.258-24.486 5.397-36.216 9.711-11.113 4.088-22.869 22.644-32.096 15.223-1.983-1.595.753-5.084 1.717-7.44 1.866-4.556 4.43-8.932 7.726-12.59 2.413-2.677 7.975-3.026 8.583-6.58.442-2.581-3.474-4.093-4.292-6.58-1.043-3.177-1.538-6.814-.572-10.015 1.24-4.109 6.526-6.18 7.726-10.3 1.043-3.583-2.548-7.833-.859-11.16 2.133-4.2 11.337-2.777 12.017-7.439.332-2.273-3.825-2.98-4.578-5.15-.532-1.535.31-3.24.287-4.864-.031-2.202.392-4.602-.573-6.581-.857-1.76-3.702-2.14-4.292-4.006-.558-1.766-.171-4.134 1.145-5.436 1.037-1.027 3.632.442 4.292-.859 1.332-2.626-2.539-5.314-3.72-8.011-1.406-3.213-3.207-6.314-4.006-9.729-.63-2.7-2.958-6.886-.572-8.297 2.733-1.616 5.477 3.239 8.012 5.15 3.345 2.523 7.11 4.817 9.442 8.298 1.683 2.511.743 6.509 2.948 8.577 2.647 2.481 7.758.491 10.5 2.868 2.356 2.042 4.441 5.55 3.72 8.584-.69 2.898-7.532 2.817-6.868 5.722.79 3.45 6.814 3.18 10.3 2.575 2.034-.352 3.463-2.247 5.151-3.433 1.311-.922 2.39-2.233 3.863-2.862 1.69-.721 5.436-.93 5.436-.93l-2.146-.5s-3.171-2.528-3.505-4.364c-.314-1.728.437-3.731 1.645-5.007 1.356-1.43 3.538-2.16 5.508-2.146 1.647.012 3.446.664 4.578 1.86 1.161 1.227 1.825 3.113 1.646 4.793-.157 1.467-1.128 2.88-2.29 3.79-1.257.988-4.577 1.431-4.577 1.431l2.289.644 6.151 8.44 26.539-1.453s3.273-3.34 2.63-5.16c-.689-1.95-2.503-2.667-5.665-2.528-8.581.376-10.34-6.829-10.015-12.038.27-4.334 5.484-7.275 9.51-8.903 3.876-1.567 10.787 3.593 12.543-.202 1.54-3.326-5.818-5.02-6.98-8.497-.503-1.505-.508-3.336.202-4.755 1.813-3.622 5.714-6.03 9.408-7.688 1.557-.7 5.056-.81 5.056-.81s3.482.105 5.055.81c3.696 1.655 7.595 4.066 9.408 7.688.71 1.419.705 3.25.202 4.755-1.162 3.476-8.52 5.17-6.98 8.497 1.757 3.795 8.667-1.365 12.544.202 4.025 1.628 9.24 4.569 9.51 8.903.324 5.21-1.435 12.414-10.016 12.038-3.162-.14-4.976.579-5.665 2.529-.643 1.82 2.63 5.159 2.63 5.159l26.54 1.454 6.15-8.44 2.29-.645s-3.32-.443-4.578-1.43c-1.162-.911-2.133-2.324-2.29-3.791-.178-1.68.485-3.566 1.646-4.793 1.132-1.196 2.93-1.848 4.578-1.86 1.97-.014 4.153.716 5.508 2.146 1.208 1.276 1.959 3.279 1.645 5.007-.333 1.836-3.505 4.364-3.505 4.364l-2.146.5s3.746.209 5.436.93c1.474.63 2.552 1.94 3.863 2.862 1.688 1.186 3.117 3.081 5.15 3.433 3.488.604 9.512.875 10.301-2.575.664-2.905-6.177-2.824-6.867-5.722-.722-3.034 1.363-6.542 3.72-8.584 2.74-2.377 7.852-.387 10.5-2.868 2.205-2.068 1.264-6.066 2.947-8.577 2.333-3.48 6.097-5.775 9.443-8.298 2.534-1.911 5.279-6.766 8.011-5.15 2.386 1.411.06 5.598-.572 8.297-.799 3.415-2.6 6.516-4.006 9.729-1.18 2.697-5.051 5.385-3.72 8.011.66 1.301 3.256-.168 4.292.859 1.316 1.302 1.703 3.67 1.145 5.436-.59 1.866-3.435 2.246-4.292 4.006-.964 1.98-.541 4.379-.572 6.58-.023 1.625.818 3.33.286 4.865-.753 2.17-4.91 2.877-4.578 5.15.68 4.662 9.884 3.239 12.017 7.44 1.69 3.326-1.901 7.576-.858 11.158 1.2 4.12 6.485 6.192 7.725 10.3.967 3.202.472 6.839-.572 10.015-.818 2.488-4.734 4-4.292 6.581.608 3.554 6.17 3.903 8.584 6.58 3.296 3.658 5.86 8.034 7.725 12.59.964 2.356 3.7 5.845 1.717 7.44-9.227 7.42-20.983-11.135-32.096-15.223-11.73-4.314-23.922-7.453-36.215-9.711-11.801-2.168-23.834-2.918-35.81-3.642-6.969-.42-20.938-.404-20.938-.404s-13.953-.018-20.938.404zm31.128-133.632-10.184.117-10.183-.117m16.931-33.88c2.642-5.6-1.975-9.75-6.748-13.857-4.772 4.107-9.39 8.256-6.747 13.857m14.066 46.73c3.894.287 8.632 4.268 11.588 1.717 1.336-1.153.675-3.663 0-5.293-1.574-3.801-8.413-4.625-8.727-8.727-.27-3.538 5.191-5.212 6.295-8.584.549-1.677.68-3.666 0-5.293-2.751-6.578-14.493-6.952-16.527-13.68-.901-2.982 5.932-6.494 6.8-6.87 4.34-1.879 9.703 2.659 13.988.8 2.899-1.259 6.125-4.124 6.07-7.284-.06-3.438-3.726-6.317-6.88-7.688-6.108-2.657-16.22 5.904-19.978.404-3.459-5.061 8.643-11.08 7.03-16.995-.767-2.81-6.978-5.26-6.978-5.26s-6.202 2.438-6.977 5.26c-1.624 5.912 10.488 11.934 7.03 16.995-3.758 5.5-13.87-3.061-19.979-.404-3.153 1.371-6.818 4.25-6.878 7.688-.056 3.16 3.17 6.025 6.07 7.283 4.283 1.86 9.648-2.678 13.987-.799.867.376 7.7 3.888 6.8 6.87-2.034 6.729-13.776 7.102-16.527 13.68-.681 1.627-.55 3.616 0 5.293 1.104 3.372 6.565 5.046 6.294 8.584-.313 4.102-7.152 4.926-8.726 8.727-.676 1.63-1.336 4.14 0 5.293 2.956 2.55 7.693-1.43 11.588-1.717 2.433-.18 7.318 0 7.318 0s4.869-.18 7.319 0z'/%3e%3cpath fill='none' d='M1953.74 953.499s-7.154-3.02-10.804-4.34c-6.597-2.388-13.259-4.632-20.03-6.474-6.599-1.796-13.232-3.69-20.03-4.451-14.575-1.634-44.001-.203-44.001-.203s-29.409-1.433-44.002.203c-6.797.761-13.43 2.655-20.03 4.45-6.77 1.843-13.432 4.087-20.03 6.475-3.65 1.32-10.804 4.34-10.804 4.34m201.9-222.5s-11.953-4.756-18.026-6.867c-5.1-1.773-10.206-3.582-15.451-4.864-6.397-1.565-12.932-2.538-19.457-3.434a376.605 376.605 0 0 0-28.307-2.784c-8.584-.523-25.793-.607-25.793-.607s-17.192.083-25.793.607a376.49 376.49 0 0 0-28.307 2.784c-6.525.896-13.06 1.87-19.457 3.434-5.245 1.282-10.35 3.091-15.45 4.864-6.074 2.11-18.026 6.867-18.026 6.867m-14.157 120.41s17.56-5.918 26.405-8.671c9.129-2.84 18.174-6.063 27.516-8.093 11.184-2.43 22.61-3.63 33.99-4.856 11.058-1.191 33.279-2.427 33.279-2.427s22.203 1.234 33.28 2.427c11.378 1.226 22.805 2.426 33.989 4.856 9.342 2.03 18.387 5.252 27.516 8.093 8.846 2.753 26.405 8.671 26.405 8.671'/%3e%3c/g%3e%3cg fill='%23ccc'%3e%3cg id='b'%3e%3cpath d='m1533.28 904.042 101.171 86.713s-5.133 11.214-7.279 16.99c-1.979 5.326-3.817 10.726-5.146 16.251-1.958 8.145-4.135 24.789-4.135 24.789L1499.95 940.75c1.673-24.69 15.567-33.488 33.331-36.708zm-14.29 54.155-24.283 27.167 15.164 14.593-23.462 22.89-15.165-15.165-25.514 27.202-.237 33.743 58.084 45.494 20.029-14.879-1.145-32.332 15.45 8.584 15.452-9.443.858 29.185-12.59-9.156-13.734 18.026-1.43 32.046 43.777 38.913 53.05-47.079-4.009-14.112-2.305-12.678-1.247-25.129 1.98-27.44z'/%3e%3cpath d='m1494.71 985.364-.621 29.993 15.643-15.261z'/%3e%3cpath fill='none' d='m1571.935 1140.425-1.82 34.262m-18.61-139.675.644 31.785m-14.81-17.34.83 25.884m-14.426-36.34.542 28.924m-21.435 15.225.312 30.648m24.737-9.675 44.063 36.897 45.056-39.54M1446 1034.605l57.579 49.193 18.884-16.881-14.879-12.59 16.596-15.737 12.875 11.16 14.593-14.88 18.884 18.313-17.15 13.447 16.005 14.593-15.164 14.02'/%3e%3cpath d='m1901.35 1229.35 48.602 44.58 10.763 31.428-62.642-6.673-35.663-35.277-37.97-35.175-164.039-142.138s3.479-13.101 5.635-19.522c3.124-9.3 6.867-18.384 10.565-27.472.928-2.28 2.915-6.785 2.915-6.785l183.014 162.24z'/%3e%3cpath d='M1942.67 1236.04c27.095 37.868 72.691 73.638 86.537 90.842 13.845 17.203 22.764 33.54 2.583 55.538-20.182 21.998-43.064 9.515-61.136-2.583-18.07-12.099-49.602-51.303-94.716-81.37z'/%3e%3cpath d='m1926.7 1299.75-35.17-15.874m40.929-38.287c2.423 7.965.574 16.774 3.624 24.416 3.015 7.555 14.022 19.973 14.022 19.973s-6.998.978-10.262 2.245c-4.73 1.838-11.956 2.71-13.172 7.638-1.063 4.309 4.062 8.026 7.09 11.27 2.905 3.112 6.645 5.372 10.316 7.526 6.137 3.6 12.391 7.654 19.393 8.917 8.765 1.58 25.13-10.756 26.647-1.98.631 3.65-7.39 1.313-10.713 2.946-7.758 3.813-11.65 12.118-4.82 17.894 4.384 3.71 11.274 2.347 16.998 2.821 5.49.455 11.758-2.745 16.523.016 5.61 3.25 12.668 11.106 9.692 16.867-3.063 5.928-14.484 5.77-19.927 1.91-4.025-2.854-2.947-9.474-3.542-14.371-.177-1.458 0-2.937 0-4.406'/%3e%3ccircle cx='2154.665' cy='1480.147' r='129.687'/%3e%3cpath fill='%23fff' d='M2106.13 1485.65c-22.355 0-40.478 18.123-40.478 40.478 0 22.356 18.123 40.478 40.478 40.478s40.478-18.122 40.478-40.478l14.026-.609c0 22.356 18.123 40.478 40.478 40.478s40.478-18.122 40.478-40.478-18.122-40.478-40.478-40.478l.61-7.937c22.355 0 40.477-18.123 40.477-40.478s-18.122-40.479-40.478-40.479c-22.355 0-40.478 18.123-40.478 40.479l-14.026-1.218c0-22.356-18.123-40.478-40.478-40.478-22.356 0-40.478 18.122-40.478 40.478 0 22.355 18.122 40.478 40.478 40.478z'/%3e%3ccircle cx='2154.667' cy='1446.052' r='14.613'/%3e%3ccircle cx='2189.367' cy='1480.148' r='14.613'/%3e%3ccircle cx='2155.277' cy='1511.2' r='14.613'/%3e%3ccircle cx='2119.347' cy='1480.148' r='14.613'/%3e%3cpath fill='%23fff' d='M2152.23 1558.42c-5.338 10.957-12.62 15.941-21.919 21.919 13.247 5.754 29.4 4.697 43.838 0-9.299-4.65-16.041-11.996-21.919-21.919zm-76.579-80.232c-10.956-5.338-15.94-12.62-21.919-21.919-5.753 13.248-4.696 29.4 0 43.838 4.65-9.299 11.996-16.041 21.92-21.919zm159.246 3.653c10.957-5.337 15.941-12.62 21.92-21.919 5.753 13.248 4.696 29.4 0 43.838-4.65-9.298-11.996-16.041-21.92-21.919zm-78.405-80.84c-5.338-10.957-12.62-15.941-21.919-21.92 13.248-5.753 29.4-4.696 43.838 0-9.299 4.65-16.041 11.997-21.919 21.92z'/%3e%3c/g%3e%3cg fill='%23ce9d09'%3e%3cg id='c'%3e%3cpath d='M1533.48 903.819s.703-5.061 0-7.44c-1.144-3.868-3.574-7.467-6.58-10.157-2.544-2.275-5.808-3.923-9.157-4.578-3.615-.706-7.464-.115-11.016.859-2.42.663-6.753 3.322-6.753 3.322l-14.85 6.12-5.51 17.667s-3.174 5.58-3.931 8.656c-.81 3.293-1.41 6.871-.573 10.158.983 3.86 3.232 7.611 6.295 10.157 2.833 2.355 6.627 3.73 10.3 4.006 2.827.213 8.298-1.86 8.298-1.86 1.58-18.611 9.856-32.813 33.477-36.91z'/%3e%3cpath d='m1500.27 885.645-38.753-17.02-3.147 3.005 21.118 38.201s5.925-8.738 9.354-12.736c3.51-4.093 11.428-11.45 11.428-11.45z'/%3e%3ccircle cy='865.263' cx='1457.292' r='15.951'/%3e%3cpath d='M1566.19 932.256c3.39 27.952 7.322 55.904 16.025 83.856l31.069 28.46c-6.625-29.232-18.443-58.464-18.369-87.695z'/%3e%3cpath d='m1613.05 972.415-85.487-6.369 27.2 24.916 78.068 3.38 1.147-3.99zm105.31 94.505c-22.445 8.46-31.418 22.309-37.857 37.171-6.353.56-12.306.618-14.41-4.133 5.347-34.7 30.21-45.552 35.753-47.747 14.95-2.825 12.178 8.85 16.514 14.709zm27.52 25.9c-22.445 8.46-31.418 22.309-37.857 37.171-6.353.559-12.306.618-14.41-4.134 5.347-34.7 30.21-45.55 35.753-47.746 14.95-2.825 12.179 8.85 16.514 14.709zm312.78 261.87c-7.337-.202-15.078 1.504-15.078 1.504.303 8.02-2.946 16.583-11.797 26.23-7.64 8.327-15.666 11.704-23.672 12.041l-.01.01s-2.84 17.652 2.588 23.252c6.356 6.558 27.12 3.877 27.12 3.877l1.767-1.132a129.688 129.688 0 0 1 31.914-39.795l.332-1.26s3.038-16.523-2.149-21.5c-2.35-2.27-6.613-3.072-11.015 0z'/%3e%3ccircle cy='1375.424' cx='2254.517' r='17.657'/%3e%3ccircle cy='1580.001' cx='2260.607' r='17.657'/%3e%3ccircle cy='1591.57' cx='2062.117' r='17.657'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3cg fill='%23ce9d09' transform='matrix(-1 0 0 1 3718.256 0)'%3e%3cuse xlink:href='%23b'/%3e%3cuse xlink:href='%23c' fill='%23ccc'/%3e%3c/g%3e%3cg fill='%23fa0204'%3e%3cpath id='d' d='M1869.19 1175.78c0 5.38-4.5 7.458-13.243 7.458s-12.786-2.534-12.786-7.915c0-5.38 4.043-6.697 12.786-6.697s13.243 1.774 13.243 7.154z'/%3e%3cuse xlink:href='%23d' x='6.391' y='14.309'/%3e%3cpath d='M1877.34 1208.69c-1.772 5.08-6.705 5.56-14.96 2.681-8.255-2.88-11.238-6.605-9.466-11.685 1.772-5.08 6.023-4.992 14.278-2.112 8.255 2.879 11.92 6.036 10.148 11.116z'/%3e%3cpath id='e' d='M1877.51 1222.51c-1.065 5.274-5.887 6.42-14.457 4.69s-12.031-5.016-10.966-10.29c1.065-5.274 5.289-5.765 13.858-4.034 8.57 1.73 12.63 4.36 11.565 9.634z'/%3e%3cuse xlink:href='%23e' x='3.96' y='16.142'/%3e%3cpath d='M1921.73 1216.2c-2.59-.691-2.303-5.303-1.583-7.886 1.107-3.968 8.354-9.11 8.354-9.11s1.767 5.563.95 8.185c-1.162 3.729-3.948 9.818-7.721 8.811z'/%3e%3cpath d='M1912.29 1224.42c-2.822-.622-3.182-5.523-2.444-8.316 1.142-4.324 9.645-9.325 9.645-9.325s1.477 6.041.52 8.83c-1.267 3.694-3.907 9.651-7.721 8.811zm-10.77 15.59c-4.292-1.138-3.805-8.762-2.66-13.052.947-3.543 3.716-9.12 7.278-8.249 4.167 1.018 4.115 8.321 3.103 12.49-.92 3.795-3.947 9.812-7.721 8.811z'/%3e%3cpath d='M1888.73 1252.19c-4.214-.926-6.007-7.638-5.164-11.87.885-4.442 5.36-10.41 9.782-9.431 4.463.988 6.005 8.353 4.93 12.795-1.004 4.143-5.385 9.421-9.548 8.506zm-2.22 7.39c-1.077 5.087-7.504 6.86-11.461 5.57-4.154-1.356-9.579-7.187-8.442-12.525 1.147-5.385 8.179-6.813 12.324-5.225 3.866 1.48 8.643 7.155 7.579 12.18zm-85.04-49.29s5.138 2.531 7.349 4.792c2.32 2.373 5.11 3.322 3.709 6.923-1.415 3.634-5.843 2.388-8.127-.156-2.13-2.372-2.931-11.559-2.931-11.559zm25.37 8.77c5.212 1.047 5.108 7.12 2.443 10.847-2.797 3.91-10.883 8.992-16.349 7.887-5.515-1.116-4.844-7.758-1.795-11.658 2.843-3.638 10.553-8.11 15.701-7.076z'/%3e%3cpath id='f' d='M1844.26 1230.55c4.853 2.169 3.415 8.07 0 11.118-3.59 3.199-12.597 6.375-17.685 4.093-5.134-2.302-3.016-8.633.816-11.767 3.575-2.922 12.08-5.586 16.874-3.444z'/%3e%3cuse xlink:href='%23f' x='13.998' y='10.661'/%3e%3cpath d='M1862.97 1250.68c4.787.754 6.069 7.415 4.585 11.696-1.56 4.494-7.474 10.67-12.496 9.87-5.068-.806-5.982-8.132-4.2-12.634 1.66-4.199 7.383-9.678 12.112-8.932z'/%3e%3cpath d='M1875.1 1265.33c3.965 2.308 3.033 9.59.41 13.533-2.754 4.14-9.845 8.622-14.002 6.194-4.195-2.451-2.735-10.302.216-14.38 2.752-3.8 9.46-7.626 13.377-5.347zm-86.08-39.89c4.244-.376 7.182 5.965 7.127 10.585-.06 4.85-3.317 12.403-7.771 12.79-4.495.39-7.309-6.7-7.065-11.611.227-4.58 3.518-11.393 7.71-11.765z'/%3e%3cpath d='M1802.91 1237.65c4.157.932 5.027 7.867 3.57 12.251-1.532 4.602-6.933 10.806-11.294 9.82-4.4-.995-4.924-8.606-3.198-13.21 1.609-4.293 6.817-9.782 10.923-8.861z'/%3e%3cpath d='M1815.79 1246.24c4.921 1.158 5.952 9.77 4.226 15.215-1.814 5.716-8.208 13.42-13.37 12.196-5.21-1.236-5.83-10.689-3.787-16.406 1.905-5.332 8.07-12.15 12.932-11.005z'/%3e%3cpath d='M1826.22 1256.8c5.014-.644 9.005 7.057 9.301 12.761.31 5.988-2.97 15.448-8.234 16.115-5.312.673-9.213-7.96-9.309-14.03-.089-5.661 3.29-14.21 8.243-14.847z'/%3e%3cpath id='g' d='M1838.59 1265.66c4.556-.534 8.182 5.85 8.451 10.578.282 4.964-2.699 12.805-7.482 13.358-4.826.558-8.371-6.598-8.458-11.63-.08-4.693 2.989-11.779 7.49-12.307z'/%3e%3cuse xlink:href='%23g' x='12.788' y='10.35'/%3e%3cpath id='h' d='M1929.28 1250.88c-3.243 2.846-9.712.313-12.621-2.874-3.054-3.345-5.21-10.486-1.801-13.468 3.44-3.01 10.287.112 13.228 3.61 2.742 3.264 4.398 9.92 1.194 12.732z'/%3e%3cuse xlink:href='%23h' x='-6.999' y='12.792'/%3e%3cuse xlink:href='%23h' x='-19.479' y='23.452'/%3e%3cpath d='M1905.19 1281.18c-1.138 4.162-7.933 5.613-12.116 4.557-4.392-1.11-10.126-5.88-8.924-10.247 1.213-4.407 8.646-5.575 13.028-4.276 4.086 1.212 9.137 5.855 8.012 9.966z'/%3e%3cpath d='M1887.18 1278.19c3.641 2.539 2.786 10.55.377 14.889-2.53 4.554-9.042 9.485-12.86 6.813-3.853-2.696-2.512-11.334.198-15.819 2.528-4.182 8.689-8.39 12.286-5.883z'/%3e%3cpath d='M1869.62 1287.55c3.965 2.308 3.033 9.59.41 13.533-2.754 4.14-9.844 8.622-14.002 6.194-4.195-2.451-2.735-10.302.216-14.38 2.752-3.8 9.46-7.626 13.377-5.347z'/%3e%3cpath id='i' d='M1831.34 1312.91c-3.392 3.235-.755 11.272 2.773 15.282 3.706 4.209 11.795 8.104 15.349 4.703 3.586-3.433.292-12.024-3.594-16.132-3.624-3.83-11.179-7.048-14.53-3.853z'/%3e%3cuse xlink:href='%23i' x='-7.319' y='13.781'/%3e%3cpath id='j' d='M1820.83 1339.55c-4.348 1.749-4.876 10.19-3.083 15.222 1.883 5.282 7.954 11.896 12.516 10.053 4.602-1.861 4.724-11.061 2.635-16.315-1.948-4.9-7.774-10.687-12.069-8.96z'/%3e%3cuse xlink:href='%23j' x='-10.548' y='14.852'/%3e%3cpath id='k' d='M1802.66 1371.04c-4.57 1.037-6.43 9.289-5.458 14.54 1.022 5.515 5.967 13.008 10.763 11.91 4.84-1.107 6.419-10.171 5.19-15.69-1.147-5.147-5.981-11.785-10.496-10.76z'/%3e%3cuse xlink:href='%23k' x='-10.121' y='15.932'/%3e%3cpath id='l' d='M1784.06 1403.3c-4.684.171-8.042 7.935-8.06 13.276-.02 5.608 3.451 13.888 8.367 13.7 4.961-.19 8.194-8.805 8.01-14.456-.172-5.27-3.692-12.69-8.318-12.52z'/%3e%3cuse xlink:href='%23l' x='-10.33' y='19.16'/%3e%3cuse xlink:href='%23l' x='-22.39' y='37.02'/%3e%3cuse xlink:href='%23l' x='-34.87' y='52.31'/%3e%3cuse xlink:href='%23l' x='-47.79' y='66.51'/%3e%3cuse xlink:href='%23l' x='-61.99' y='78.14'/%3e%3cuse xlink:href='%23l' x='-75.56' y='90.62'/%3e%3cpath d='m1692.79 1500.17-5.262 20.595s2.935 7.335 6 7.026c5.48-.552 6.964-9.047 8.01-14.455.947-8.424-8.748-13.166-8.748-13.166zm324.42 13.08c1.61 6.124 15.26 11.314 15.26 11.314l-6.651-27.758c-5.717.154-9.495 12.436-8.609 16.444z'/%3e%3cpath d='M2016.01 1490.95c-4.359-1.722-10.549 4.043-12.709 8.928-2.266 5.13-2.409 14.107 2.17 15.906 4.62 1.815 11.038-4.779 13.136-10.03 1.956-4.896 1.708-13.104-2.597-14.805z'/%3e%3cpath id='m' d='M2000.82 1478.67c-4.68-.243-8.711 7.193-9.202 12.512-.514 5.584 2.21 14.139 7.124 14.385 4.958.249 8.94-8.046 9.256-13.691.295-5.265-2.556-12.966-7.179-13.207z'/%3e%3cuse xlink:href='%23m' x='-13.4' y='-13.7'/%3e%3cuse xlink:href='%23m' x='-25.88' y='-29.23'/%3e%3cuse xlink:href='%23m' x='-38.66' y='-42.32'/%3e%3cuse xlink:href='%23m' x='-49.01' y='-60.28'/%3e%3cuse xlink:href='%23m' x='-60.28' y='-76.41'/%3e%3cuse xlink:href='%23m' x='-70.63' y='-93.46'/%3e%3cuse xlink:href='%23m' x='-79.76' y='-113.25'/%3e%3cuse xlink:href='%23m' x='-89.81' y='-131.21'/%3e%3cuse xlink:href='%23m' x='-98.03' y='-152.52'/%3e%3cpath d='M1883.85 1304.56s-1.647 26.676 8.037 28.389c6.039 1.068 10.779-14.91 10.779-14.91z'/%3e%3cpath id='n' d='M1862.02 1610.75c-2.878 3.699.914 11.26 4.995 14.706 4.285 3.617 12.86 6.278 15.874 2.39 3.041-3.924-1.483-11.936-5.931-15.426-4.15-3.254-12.096-5.324-14.939-1.67z'/%3e%3cuse xlink:href='%23n' x='18.3' y='-2.15'/%3e%3cuse xlink:href='%23n' x='36.81' y='-5.81'/%3e%3cpath id='o' d='M1916.18 1603.8c-2.29 4.09 2.594 10.995 7.147 13.79 4.78 2.932 13.656 4.275 16.052-.021 2.418-4.336-3.258-11.578-8.18-14.36-4.59-2.595-12.758-3.448-15.02.591z'/%3e%3cuse xlink:href='%23o' x='20.02' y='-3.22'/%3e%3cpath id='p' d='M1953.48 1595.43c-1.903 4.283 3.598 10.709 8.389 13.071 5.03 2.479 13.993 2.997 15.982-1.503 2.007-4.54-4.313-11.228-9.47-13.544-4.811-2.159-13.023-2.254-14.902 1.976z'/%3e%3cuse xlink:href='%23p' x='18.94' y='-5.59'/%3e%3cpath id='q' d='M1991.26 1583.89c-1.646 4.388 4.225 10.477 9.147 12.553 5.167 2.177 14.145 2.164 15.865-2.445 1.735-4.651-4.968-10.953-10.255-12.96-4.93-1.872-13.132-1.482-14.758 2.852z'/%3e%3cuse xlink:href='%23q' x='19.16' y='-6.24'/%3e%3cuse xlink:href='%23q' x='37.67' y='-13.99'/%3e%3cuse xlink:href='%23q' x='57.48' y='-22.17'/%3e%3cuse xlink:href='%23q' x='77.5' y='-28.63'/%3e%3cuse xlink:href='%23q' x='79.87' y='-44.34'/%3e%3cpath d='M2066.71 1534.88s13.55 1.992 14.79-2.875c1.645-6.462-15.422-12.745-15.422-12.745z'/%3e%3cpath id='r' d='M1701.62 1575.59c-3.986 2.465-3.066 10.873-.44 15.525 2.756 4.883 9.866 10.365 14.046 7.77 4.218-2.619 2.768-11.705-.186-16.526-2.756-4.495-9.483-9.204-13.421-6.77z'/%3e%3cuse xlink:href='%23r' x='18.94' y='7.75'/%3e%3cuse xlink:href='%23r' x='37.03' y='10.55'/%3e%3cuse xlink:href='%23r' x='56.83' y='15.5'/%3e%3cuse xlink:href='%23r' x='74.7' y='18.08'/%3e%3cuse xlink:href='%23r' x='92.35' y='21.74'/%3e%3cuse xlink:href='%23r' x='110.43' y='26.69'/%3e%3cuse xlink:href='%23r' x='128.3' y='29.92'/%3e%3cuse xlink:href='%23r' x='146.6' y='32.72'/%3e%3cpath d='M1648.16 1517.51c-4.167-2.145-10.898 2.977-13.531 7.625-2.764 4.879-3.796 13.797.582 16.041 4.418 2.265 11.457-3.66 14.065-8.677 2.433-4.678 3-12.87-1.116-14.99z'/%3e%3cpath d='M1642.01 1534.4c-4.415-1.572-10.405 4.4-12.396 9.357-2.09 5.204-1.926 14.18 2.711 15.822 4.68 1.657 10.868-5.153 12.786-10.472 1.788-4.96 1.26-13.155-3.102-14.708z'/%3e%3cpath d='M1647.74 1549.94c-4.54-1.165-9.963 5.326-11.496 10.443-1.61 5.372-.632 14.297 4.135 15.51 4.811 1.226 10.356-6.117 11.783-11.588 1.33-5.102.061-13.215-4.423-14.366z'/%3e%3cpath d='M1662.37 1556.31c-4.499-1.313-10.132 4.998-11.832 10.062-1.784 5.316-1.099 14.268 3.626 15.637 4.769 1.382 10.55-5.775 12.156-11.197 1.497-5.056.493-13.206-3.95-14.503z'/%3e%3cpath id='s' d='M1671.91 1558.81c-4.547 1.134-6.232 9.423-5.148 14.653 1.138 5.491 6.242 12.878 11.013 11.68 4.815-1.21 6.202-10.306 4.856-15.798-1.256-5.121-6.23-11.655-10.722-10.535z'/%3e%3cuse xlink:href='%23s' x='16.79' y='6.24'/%3e%3cuse xlink:href='%23i' x='8.611' y='-11.189'/%3e%3cuse xlink:href='%23i' x='4.66' y='6.47'/%3e%3cuse xlink:href='%23i' x='4.911' y='26.679'/%3e%3cuse xlink:href='%23i' x='4.66' y='47.87'/%3e%3cuse xlink:href='%23i' x='5.57' y='68.57'/%3e%3cuse xlink:href='%23i' x='2.22' y='87.75'/%3e%3cuse xlink:href='%23i' x='4.66' y='109.06'/%3e%3cuse xlink:href='%23i' x='2.22' y='126.41'/%3e%3cuse xlink:href='%23i' x='4.66' y='143.46'/%3e%3cuse xlink:href='%23i' x='4.66' y='163.86'/%3e%3cuse xlink:href='%23i' x='3.44' y='183.95'/%3e%3cuse xlink:href='%23i' x='3.74' y='203.13'/%3e%3cuse xlink:href='%23i' x='4.35' y='223.52'/%3e%3cuse xlink:href='%23i' x='4.35' y='243.31'/%3e%3cuse xlink:href='%23i' x='3.74' y='263.1'/%3e%3cuse xlink:href='%23i' x='2.52' y='283.19'/%3e%3cuse xlink:href='%23i' x='2.52' y='305.11'/%3e%3cuse xlink:href='%23i' x='1.92' y='327.94'/%3e%3cuse xlink:href='%23i' x='1.92' y='349.25'/%3e%3cuse xlink:href='%23i' x='1.92' y='369.04'/%3e%3cuse xlink:href='%23i' x='1.31' y='391.27'/%3e%3cpath id='t' d='M1882.24 1303.18c2.442 3.707-1.32 10.832-5.164 13.97-4.036 3.293-11.911 5.463-14.468 1.566-2.58-3.931 1.863-11.458 6.042-14.62 3.896-2.95 11.178-4.577 13.59-.916z'/%3e%3cuse xlink:href='%23t' x='2.74' y='16.13'/%3e%3cuse xlink:href='%23t' x='2.43' y='34.1'/%3e%3cuse xlink:href='%23t' x='2.13' y='52.36'/%3e%3cuse xlink:href='%23t' x='1.82' y='69.11'/%3e%3cuse xlink:href='%23t' x='2.74' y='87.07'/%3e%3cuse xlink:href='%23t' x='1.52' y='104.42'/%3e%3cpath d='M1883.25 1426.06c2.696 3.834-1.456 11.203-5.7 14.448-4.454 3.406-13.147 5.65-15.97 1.62-2.848-4.066 2.057-11.85 6.67-15.12 4.3-3.05 12.338-4.735 15.001-.948z'/%3e%3cpath id='u' d='M1882.09 1443.58c3.392 3.235.755 11.272-2.773 15.282-3.706 4.209-11.795 8.104-15.349 4.702-3.586-3.432-.292-12.024 3.594-16.13 3.624-3.83 11.179-7.049 14.529-3.854z'/%3e%3cuse xlink:href='%23u' x='.61' y='20.4'/%3e%3cuse xlink:href='%23u' x='.92' y='40.49'/%3e%3cuse xlink:href='%23u' x='.31' y='62.11'/%3e%3cuse xlink:href='%23u' x='.92' y='82.2'/%3e%3cuse xlink:href='%23u' x='.31' y='102.6'/%3e%3cuse xlink:href='%23u' x='.61' y='122.99'/%3e%3cuse xlink:href='%23u' x='.61' y='143.69'/%3e%3cuse xlink:href='%23u' x='-.3' y='164.4'/%3e%3cuse xlink:href='%23u' x='.92' y='183.27'/%3e%3cuse xlink:href='%23u' x='.92' y='203.06'/%3e%3cuse xlink:href='%23u' x='.31' y='224.37'/%3e%3cuse xlink:href='%23u' x='.31' y='245.37'/%3e%3c/g%3e%3cpath fill='%23fa0204' d='M1849.64 1848.26c19.902 5.524 31.76 5.236 48.22.43l-17.437-27.984'/%3e%3cpath fill='%23ce9d09' d='m1888.31 1776.16-31.708-8.141s.366-35.184 20.389-32.116c16.62 2.547 11.985 40.341 11.319 40.257z'/%3e%3ccircle fill='%23ce9d09' cx='1872.886' cy='1722.971' r='12.916'/%3e%3cpath fill='%23fa0204' d='M1885.37 1791.86c7.048 17.864 11.37 33.241 4.736 53.386m7.597 3.412c-10.226-8.255-36.582-5.832-47.981-.347-4.453 0-16.446-83.24 25.722-81.183 38.72 1.89 24.949 81.915 22.259 81.53z'/%3e%3cpath fill='%23fa0204' d='M1815.2 1866.34c19.292 12.239 37.25 11.14 54.247.43l-40.255-41.976'/%3e%3ccircle fill='%23ce9d09' cx='1843.396' cy='1738.255' r='12.916'/%3e%3cpath fill='%23ce9d09' d='m1859.33 1780.02-32.72-.646s-4.245-26.612 16.145-27.769c16.924-.96 17.251 28.363 16.575 28.415z'/%3e%3cpath fill='%23fa0204' d='M1843.61 1860.74c-6.261-13.91-6.91-31.026-5.166-49.51m-9.472 50.371c-7.682-13.183-9.107-30.015-3.014-51.233m43.404 56.636c-4.926-6.191-40.227-8.83-54.096-.392-5.02 0-18.54-93.848 29-91.529 43.656 2.13 28.129 92.354 25.096 91.92z'/%3e%3c/g%3e%3c/svg%3e\"},4261:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 48'%3e%3cpath fill='%23009e60' d='M0 0h72v48H0z'/%3e%3cpath fill='%23fcd116' d='M0 0h54v48H0z'/%3e%3cpath fill='%230072c6' d='M0 0h18v48H0z'/%3e%3cpath d='m32 34 4 8 4-8-4-8zm-5-10 4 8 4-8-4-8zm10 0 4 8 4-8-4-8z' fill='%23009e60'/%3e%3c/svg%3e\"},8574:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 180 120'%3e%3cdefs%3e%3cg id='d' transform='translate(0 -36)'%3e%3cg id='c'%3e%3cg id='b'%3e%3cpath d='M0-5v5h3z' fill='%23fff' transform='rotate(18 0 -5)' id='a'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3c/g%3e%3cuse xlink:href='%23b' transform='rotate(-72)'/%3e%3cuse xlink:href='%23c' transform='rotate(144)'/%3e%3c/g%3e%3c/defs%3e%3cpath d='M0 0h180v120H0z' fill='%23cf142b'/%3e%3cpath d='M0 0h180v80H0z' fill='%2300247d'/%3e%3cpath d='M0 0h180v40H0z' fill='%23fc0'/%3e%3cg transform='translate(90 84)'%3e%3cg id='f'%3e%3cg id='e'%3e%3cuse xlink:href='%23d' transform='rotate(10)'/%3e%3cuse xlink:href='%23d' transform='rotate(30)'/%3e%3c/g%3e%3cuse xlink:href='%23e' transform='rotate(40)'/%3e%3c/g%3e%3cuse xlink:href='%23f' transform='rotate(-80)'/%3e%3c/g%3e%3c/svg%3e\"},8728:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1200 600'%3e%3cdefs%3e%3clinearGradient id='b' gradientUnits='userSpaceOnUse' x1='103.083' y1='111.276' x2='92.551' y2='107.764' gradientTransform='matrix(.99614 0 0 2.25255 703.842 -75.047)'%3e%3cstop stop-color='red' offset='0'/%3e%3cstop stop-color='%23ff0' offset='1'/%3e%3c/linearGradient%3e%3cclipPath id='a'%3e%3cpath d='M0 0v150h700v150H600zm600 0H300v350H0v-50z'/%3e%3c/clipPath%3e%3c/defs%3e%3cpath fill='%23012169' d='M0 0h1200v600H0z'/%3e%3cpath d='m0 0 600 300m0-300L0 300' stroke='%23fff' stroke-width='60'/%3e%3cpath d='m0 0 600 300m0-300L0 300' stroke='%23c8102e' stroke-width='40' clip-path='url(%23a)'/%3e%3cpath d='M300 0v350M0 150h700' stroke='%23fff' stroke-width='100'/%3e%3cpath d='M300 0v350M0 150h700' stroke='%23c8102e' stroke-width='60'/%3e%3cpath d='M0 300h600V0h600v600H0z' fill='%23012169'/%3e%3cpath fill='%23fff' d='m776.26 144.068 250.401-.93-.465 222.993s8.827 33.913-104.992 85.48c40.882-4.181 85.48-47.85 85.48-47.85s18.119-23.228 26.946-10.22c8.826 13.007 17.188 19.511 23.692 24.621 6.504 5.11 11.614 19.048 1.859 29.268s-25.087 11.614-29.268-.93c-6.504 3.253-46.457 51.568-128.22 53.89-83.157-1.393-128.685-54.354-128.685-54.354s-11.15 17.654-26.945 3.717c-15.33-18.118-3.716-29.732-3.716-29.732s13.007-7.433 16.724-12.544c6.04-6.968 7.898-16.26 18.118-16.26 12.079.93 16.724 10.685 16.724 10.685s41.811 44.134 86.874 49.709c-101.736-48.783-105.453-78.98-104.988-86.413l.465-221.133z'/%3e%3cpath fill='%23006129' stroke='%23000' stroke-width='1.887' d='m782.299 150.107 238.787-1.394v214.63c.465 27.874-46.457 56.213-119.858 92.449-75.724-39.024-119.394-62.716-119.858-92.913l.93-212.771z'/%3e%3cg id='c' fill='%23ffc72c' stroke='%23000' stroke-width='.944'%3e%3cpath fill='none' stroke='%23ffc72c' stroke-width='1.887' d='m814.794 181.829 14.095-20.701 14.164 20.744'/%3e%3cpath d='M831.719 174.09a2.8 2.8 0 1 1-5.598.002 2.8 2.8 0 0 1 5.598-.002z'/%3e%3cpath d='m817.444 197.119 21.852.062s.342-2.836-2.283-4.56c11.446-1.573 8.472-11.669 18.058-12.241 1.86.286-5.008 4.292-5.008 4.292s-5.779 4.078-3.147 6.152c2.09 1.646 3.004-1.001 3.29-3.004.286-2.003 9.3-3.29 8.012-9.014-2.146-4.72-14.736 3.148-14.736 3.148l-8.982-.05c-.56-1.008-3.035-5.05-5.592-5.07-3.033.111-5.17 5.12-5.17 5.12h-20.315s-.696 5.212 9.605 6.214c2.319 3.029 4.117 3.875 6.133 4.659-1.344 1.12-1.723 2.475-1.717 4.292zm1.573-4.435 18.2-.062m-26.536-10.669s1.456 8.513 8.176 10.529'/%3e%3cpath fill='url(%23b)' d='M809.561 181.841c.672-3.248 1.904-3.808 3.248-7.952.224-4.033-3.248-3.585-2.24-6.16 1.792-2.8.896-5.49-2.464-7.617.672 3.696-4.368 7.168-4.368 10.192 0 3.025 2.576 2.353 2.24 6.945.224 2.688-.672 2.016-.896 4.592h4.48z'/%3e%3cpath d='M831.495 161.657a2.575 2.575 0 1 1-5.15.002 2.575 2.575 0 0 1 5.15-.002z'/%3e%3c/g%3e%3cuse xlink:href='%23c' x='-.772' y='41.304'/%3e%3cuse xlink:href='%23c' x='-1.089' y='82.013'/%3e%3cuse xlink:href='%23c' x='25.627' y='126.099'/%3e%3cuse xlink:href='%23c' x='-4.574' y='162.163'/%3e%3cuse xlink:href='%23c' x='-3.782' y='204.773'/%3e%3cuse xlink:href='%23c' x='146.28' y='.672'/%3e%3cuse xlink:href='%23c' x='144.936' y='41.218'/%3e%3cuse xlink:href='%23c' x='143.144' y='82.661'/%3e%3cuse xlink:href='%23c' x='145.16' y='123.431'/%3e%3cuse xlink:href='%23c' x='144.712' y='164.201'/%3e%3cuse xlink:href='%23c' x='144.936' y='205.195'/%3e%3cg fill='%23ffc6b5' stroke='%23000' stroke-width='.944'%3e%3cpath fill='%23ffc72c' d='M915.843 406.315s5.702 13.147 12.197 5.069c6.494-8.079 4.118-11.563 4.118-11.563l-14.573-7.92-4.276 9.028 2.534 5.386z'/%3e%3cpath d='M928.357 404.572s.95.159 1.742-1.267-1.742-2.06-2.85-3.643l-1.268 2.534 2.376 2.376zm-32.948-3.485-12.83 6.97s-6.337 1.267-6.812 0c-.475-1.268.159-2.376 3.485-2.535 3.327-.158 12.355-8.395 12.355-8.395l3.802 3.96zm.159-227.938s.317 3.01.475 4.594c.159 1.584-2.534 4.91-2.693 4.752s-1.425.158-1.267 1.108c.159.95 2.06 1.268 2.06 1.268s-.793 3.326 0 3.484c.791.159-2.06 4.277 0 5.386 2.059 1.109 5.543 2.534 7.127 2.218 1.584-.317 0 6.177 0 6.177l-4.435 9.504 24.394-2.534-5.069-8.079s-2.376-1.584-1.742-6.177c.633-4.594-.317-25.344-.317-25.344l-17.424-2.376-1.109 6.019zm-4.436 36.115s-7.92 3.643-7.603 13.464c-2.06 9.504-3.168 19.008-3.168 19.008s-9.346 10.613-12.197 14.415c-2.851 3.801-7.128 11.563-8.712 13.622-1.584 2.06-7.762 8.87-7.603 11.405.158 2.534-1.426 13.78 4.752 15.048 1.584.633 6.653-12.99 6.653-12.99s.316-5.86-1.426-6.969c-1.742-1.108 3.802-4.91 3.802-4.91s10.612-7.762 12.988-9.663c2.376-1.9 8.87-9.187 8.87-9.187l3.644-43.243z'/%3e%3cpath fill='%23fff' d='M900.161 201.82s2.06 5.544 6.653 4.594c4.594-.95 9.98-5.228 9.98-5.228s4.276-.158 4.91.476c.633.633 11.563 11.246 11.246 14.572-.317 3.327-5.069 2.376-6.811 4.594-1.743 2.218-4.594 7.762-3.802 11.88.792 4.119 3.168 9.504 2.851 11.563-.316 2.06-2.059 2.693-2.059 3.802s1.426 3.01 1.426 5.069c0 2.06-1.901 5.069-1.584 7.128.317 2.06.475 8.078.475 8.078l-.475 27.879s1.584.95 1.742 2.534c.159 1.584 10.771 47.679 10.771 47.679s-.475 1.425-1.584 1.267c-1.108-.159 4.277 7.128 4.436 9.187.158 2.06 5.544 18.216 5.385 20.434-.158 2.217-.95 7.128-1.425 7.286-.476.158 3.484 10.138 2.85 11.722-.633 1.584-7.127 1.425-7.127 1.425l-1.743-.316s.159 2.059-1.108 2.217-10.613-.475-10.613-.475-2.693 4.118-4.277 3.96c-1.584-.158-3.643-3.01-4.119-2.534-.475.475 1.426 3.167.95 3.96-.474.792-8.553 2.534-10.137-1.268-1.584-3.801.95-2.85.476-3.643-.476-.792-4.119-2.851-5.228-2.217-1.109.633 2.852 1.584 2.693 3.168-.158 1.584-3.485 3.96-4.752 3.96s-4.277-5.861-8.712-5.228c-4.435.634-7.286 1.743-7.286 1.743s-5.228 2.217-7.445 1.742c-2.218-.475-3.168-2.218-3.168-3.168 0-.95 1.584-5.069 1.425-6.336s-1.425-2.534-1.425-4.435c0-1.9 3.643-8.395 3.643-8.395l-.158-29.146s-3.327 0-3.485-2.06 5.069-46.094 5.86-48.945c.793-2.851 2.852-12.989 2.852-12.989s-2.376 1.109-2.535 0c-.158-1.109 7.128-26.294 7.128-26.294s1.268-12.514 1.268-15.84c0-3.327-.634-7.92-.634-7.92s-6.503-2.753-6.653-6.97c-.595-6.709 6.178-10.454 6.97-12.672l3.168-8.87s3.485-6.02 9.187-6.97z'/%3e%3cpath fill='%23ffc72c' d='M897.785 402.988s-15.365 8.079-17.582 8.712c-2.218.634-3.644-2.693-1.426-3.326 2.218-.634 5.702-.95 5.702-.95s-5.227-4.12-5.068-4.278c.158-.158 7.128-2.692 7.286-2.692s2.218 4.118 3.643 3.801c1.426-.317 5.544-3.484 5.544-3.484s2.218 2.534 1.901 2.217z'/%3e%3cpath d='M919.432 407.423c1.453 1.874 2.02 5.123 5.347 3.222 3.327-1.9-1.704-5.428-1.704-5.428l-3.643 2.206z'/%3e%3cpath d='M925.505 407.106s1.584 1.267 3.01-.158-2.852-4.436-2.852-4.436l-2.059 2.376 1.901 2.218zm6.812-190.146c.158 0 5.227 15.682 5.86 19.642.634 3.96 2.694 19.8 1.902 22.017-.792 2.218-8.87 12.83-9.821 15.523-.95 2.693-6.653 12.99-6.653 12.99s-1.426 10.137-2.06 10.612c-.633.476 1.636 2.964 1.426 3.802-.314.943-4.593 5.386-6.494 4.91-1.9-.475-4.91-2.693-5.069-4.752s.158-8.87 1.584-10.612c1.426-1.743 8.87-19.325 9.346-20.434.475-1.109 6.81-14.89 6.97-17.266.158-2.376-1.972-7.87-4.212-9.886-4.985-14.673-3.026-23.522 7.221-26.546z'/%3e%3cpath fill='%239c5100' d='M895.092 172.199s3.485.475 5.386-.634c1.9-1.108 4.118-1.584 5.702.634 1.584 2.218 2.693 2.06 2.693 2.06s-2.376 5.86 0 6.494c2.376.633 3.485.633 3.643 1.425.159.792-2.06 2.535-1.426 3.327.634.792 1.743 1.742 1.901 2.376.159.633-1.425 3.326-.95 3.96.475.633 1.9 3.168 2.851 3.168.95 0 .317 3.96 3.168 3.01s2.693-3.486 2.693-3.486 3.01-.475 3.802-3.168c.791-2.692 2.692-3.326 2.692-3.326s3.802-2.06-1.267-5.227c0-22.176-14.573-19.8-14.573-19.8s-1.742-3.96-4.593-3.485-3.01 3.802-5.07 3.485c-2.058-.317-2.533-1.743-2.692-1.584-.158.158-1.9 3.326-1.9 4.118 0 .792-5.545-1.109-5.07 3.01.476 4.118 3.168 3.96 3.01 3.643z'/%3e%3cg fill='none'%3e%3cpath d='M920.753 207.997s-14.098 9.029-13.78 12.197m16.948-10.613s-3.168 3.485-3.326 3.485m7.603.317s-6.97 5.702-5.86 9.346m-27.087-15.524s-2.06 4.277-1.584 5.702c.475 1.426 3.96 6.812 4.435 10.138.475 3.326 0 5.703 0 5.703m-6.494-13.623s.634 5.069 1.584 6.02c.95.95 3.485 5.226 3.802 6.969m-6.653 8.078s4.118 2.06 7.92-5.86m6.177-5.544c-.158 0-3.01 7.762 2.06 10.613 5.068 2.851 8.87 2.534 11.087 1.742 2.218-.792 4.594-2.217 4.594-2.217m-19.958-.634s.317 10.455 15.682 20.75m-15.049-10.93s-.158 9.187 5.86 13.306m-9.028-24.077s-4.594 13.622-8.237 15.048m6.812-5.069s-.158 9.82-1.426 13.306m-1.267 2.376s3.168 3.96 6.653 3.643c3.485-.316 4.91-4.435 7.286-3.801 2.376.633 4.594 2.534 10.138 2.059m-7.92 4.118s0 8.078 1.426 8.87.792 8.237.792 8.237M892.4 261.22s-.158 7.603-1.109 10.296c-.95 2.693-2.851 7.287-2.534 11.247m-6.02 4.434c.792-.317 3.485-2.693 3.485-2.693m1.426 1.743s-6.811 29.146-4.91 46.57m6.494-45.144s-3.485 21.86-1.9 25.978m.157-26.612c.158 0 13.306.95 13.306.95m1.901-1.742s3.643 1.9 8.712 1.584m-10.296 9.029s-.634 37.383-1.584 45.62m21.067-37.067s4.118 32.789 6.494 35.798m-14.414-31.679s2.534 28.987 3.96 31.522m-39.917 10.137s4.91-1.584 9.345-6.336c5.07 6.811 12.831.317 12.831.317s12.038 8.237 17.424-.95c8.237 5.385 12.355-.793 12.355-.793s3.01 4.594 5.228 4.119m-13.148 3.168s6.178 28.987 15.365 37.224m-47.203-40.234s.792 24.235 2.218 41.342m-3.327-13.938s-.792 15.84-1.743 16.949m-7.603 1.583s1.742 6.811 10.454.475 8.87 2.376 9.188 3.327c.316.95 1.742 7.761 5.068 2.059m6.971-9.345s-1.426 14.097 11.088 3.801c12.514-10.295 14.573-.158 14.89 3.01m-25.82-230.156s-1.109 6.97 6.336 6.336c-.95 3.802 1.9 5.069 1.9 5.069m5.545 4.277c.159 0 3.326 2.06-.158 4.594m-10.613.95s1.584 1.9 3.326 1.426c1.743-.475 4.594 1.742 4.594 1.742s2.376.792 2.693.317m-20.276 2.534s5.386 2.06 8.87-6.494m-18.849-2.535 3.168.158m-38.312 99.737.248 6.942m-6.758-7.457s4.45 7.443 4.079 11.41'/%3e%3cpath stroke-linejoin='round' d='M894.142 188.197h2.851l-2.534 1.109m17.206 110.656s3.328-.35 3.223 5.206c2.125-6.902 6.446-7.066 6.446-7.066'/%3e%3cpath stroke-width='1.699' stroke-linejoin='round' d='M898.102 179.327c.475 0 2.217-.634 2.534-.158.317.475-1.9.792-2.534.158z'/%3e%3c/g%3e%3c/g%3e%3cg fill='none' stroke='%23000' stroke-width='1.887'%3e%3cpath fill='%23ffc72c' d='M900.299 458.579c66.898-1.858 110.102-50.173 109.638-50.638-.465-.464 8.827-13.472 16.26-11.614 7.433 1.858 18.118 23.693 31.126 28.338 6.504 10.22-1.859 19.512-4.646 21.37-2.787 1.859-15.33 6.97-17.189-.464-1.858-7.433-5.575-6.04-5.575-6.04s-59.464 58.071-128.22 55.749c-71.078.464-129.614-55.748-129.614-55.748l-5.11 5.574s-5.575 6.04-8.362 5.575c-2.787-.464-14.866-8.362-15.795-16.26-.93-7.897 7.433-13.007 7.433-13.007s20.44-15.796 22.764-24.158c4.645-4.646 13.472 3.252 13.472 3.252s53.89 61.787 113.819 58.07z'/%3e%3cpath d='M748.855 422.646s5.528-1.474 7.555.83c2.027 2.302 15.938 15.938 15.938 15.938'/%3e%3cpath d='m761.477 429.095-5.528 4.146s13.912 2.763 10.78 11.885m285.611-22.941s-2.764-1.474-7.094 1.75c-4.33 3.225-15.294 15.479-15.294 15.479'/%3e%3cpath d='m1039.9 428.727 5.989 4.607s-12.53.829-9.766 12.714'/%3e%3c/g%3e%3cpath d='M819.664 437.396c-.362 1.052-1.321-.029-2.117.183-2.094.079-3.834 1.445-5.628 2.377l-18.407 10.731c-.62-.203-.473-.704-.322-1.206 1.636-7.663 3.335-15.313 4.925-22.986.264-1.342.69-3.01-.606-3.986-.551-.376.301-1.14.655-.446l9.41 6.71c-.302.885-.837.265-1.372-.094-1.303-1.253-2.873-.095-2.835 1.488-1.119 5.052-2.21 10.11-3.318 15.165 4.165-2.476 8.378-4.874 12.506-7.412 1.474-.656 2.56-2.631 1.029-3.855-.582-.343-1.544-1.28-.585-1.422l6.665 4.753zm6.611 31.986c-.168.572-.466.698-.922.286l-11.074-6.056c.167-.572.466-.698.922-.286 1 .68 2.634.938 3.363-.255 1.466-2.35 2.701-4.839 4.06-7.253 1.845-3.42 3.769-6.8 5.559-10.248.856-1.222-.1-2.728-1.298-3.251-.405-.217-1.001-.378-.49-.864.247-.304.772.345 1.13.423l10.617 5.806c-.168.572-.467.698-.923.286-1-.68-2.642-.94-3.38.245-1.465 2.351-2.7 4.84-4.058 7.254-1.847 3.42-3.77 6.8-5.56 10.248-.855 1.23.097 2.747 1.314 3.26l.74.405zm42.609-9.994-3.007 8.443c-1.232-.13-.413-1.708-.796-2.54-.44-3.8-3.243-7.347-7.06-8.16-2.92-.795-6 .708-7.715 3.082-2.59 3.537-4.165 7.853-4.387 12.235-.148 2.49.995 5.046 3.17 6.357 1.723 1.136 3.817 1.593 5.863 1.536.722-2.13 1.586-4.215 2.187-6.381.247-1.41-1.21-2.26-2.375-2.583-.181-.41.27-.912.745-.472l11.037 3.932c-.132 1.358-1.667-.109-2.517.433-1.36.522-1.476 2.157-1.991 3.34l-1.345 3.775c-4.946.35-10.044-.696-14.348-3.186-4.185-2.637-7.015-7.728-6.192-12.722.638-4.274 3.301-8.277 7.242-10.165 3.62-1.924 8.037-1.916 11.796-.392 2.055.693 3.83 1.964 5.42 3.41.964 1.3 2.829 1.303 3.62-.175l.653.233m17.952 28.813c-.022.449-.072.86-.61.61l-12.638-1.915c.023-.449.073-.86.61-.61 1.096.224 2.564.206 3.093-.976.535-1.688.642-3.476.95-5.215.723-4.856 1.495-9.706 2.186-14.567.268-1.048-.09-2.233-1.175-2.64-.614-.29-1.299-.334-1.96-.444.023-.45.073-.86.61-.61l12.638 1.915c-.022.449-.072.86-.61.609-1.101-.227-2.563-.197-3.111.974-.535 1.688-.642 3.476-.95 5.215-.723 4.856-1.495 9.706-2.186 14.567-.266 1.045.094 2.254 1.185 2.648.62.282 1.305.33 1.968.44zm34.118-8.287-.5 8.962-22.546 1.15c-.138-.548.01-.84.606-.725 1.133.029 2.593-.452 2.737-1.752.1-2.227-.15-4.455-.224-6.681-.243-4.442-.419-8.887-.71-13.325.125-1.322-1.066-2.301-2.32-2.261-.398-.202-1.475.415-1.367-.31-.182-.589.635-.276.98-.388l12.541-.64c.138.549-.009.84-.606.725-1.158-.006-2.665.276-2.985 1.584-.183 1.926.086 3.864.137 5.795.254 4.625.434 9.256.74 13.877-.094 1.21.877 2.28 2.13 2.047 1.83-.091 3.7-.013 5.487-.473 2.507-.667 3.874-3.15 4.56-5.47.45-.627.078-2.191 1.071-2.101l.269-.014m17.577-21.695c-.598.01-.334.773-.486 1.173-.998 7.476-1.944 14.96-2.976 22.432-.251 1.655-.664 3.588-2.297 4.425-.603.214-.072 1.162.48.635l7.529-2.259c-.095-1.268-1.54-.116-2.35-.339-1.727-.002-1.984-2.1-1.744-3.41l.313-2.657 8.625-2.594c1.1 1.386 2.314 2.69 3.31 4.153.747 1.41-1.07 2.055-2.125 2.327-.493.052-.063 1.085.387.605l11.334-3.397c-.034-1.283-1.677-.08-2.369-.937-2.121-1.594-3.644-3.812-5.4-5.775l-12.231-14.382zm-.063 8.969 6.125 7.312-7.343 2.188 1.218-9.5zm38.632-25.809 3.259 6.06c-1.014.872-1.541-1.149-2.46-1.457-1.507-1.268-3.779-1.508-5.457-.432-.687.357-1.365.73-2.048 1.095 3.277 6.068 6.509 12.16 9.815 18.212.511 1.552 2.418 1.843 3.648.968.476-.345.906-.54 1.06.188-1.664.965-3.482 1.882-5.205 2.828l-6.509 3.5c-.51-.53-.169-.803.407-1.006 1.542-.573 2.135-2.445 1.102-3.763-3.206-6.025-6.46-12.026-9.685-18.042-1.796.995-4.09 1.892-4.543 4.132-.51 1.41.24 3.135.24 4.334-.553.574-.698-.209-.954-.623l-2.785-5.18L977.1 441.38zm15.251-9.042 6.233 8.263c1.445-.919 2.652-2.56 2.218-4.353.167-1.4-1.836-2.988-1.148-3.97.453-.281.72.767 1.095 1.044l7.118 9.436c-.928 1.057-1.6-1.098-2.583-1.331-1.387-.986-3.333-1.477-4.82-.397-1.11.354-1.058.977-.303 1.662 1.67 2.156 3.22 4.41 5.003 6.475 1.091 1.059 2.448-.048 3.372-.784 2.388-1.626 4.485-4.165 4.362-7.21.156-1.33-.679-2.814-.67-3.935.535-.713.685.393.992.755l3.366 6.08-17.544 13.233c-.761-.54-.012-.857.468-1.23 1.638-1.012 1.117-3.078-.088-4.213-3.748-4.936-7.43-9.924-11.226-14.823-.972-1.318-2.765-.624-3.745.295-.407.577-1.044-.579-.273-.664l16.543-12.479 4.528 6.003c-1.049 1.064-1.978-1.307-3.175-1.431-2.173-1.131-4.757-.22-6.553 1.21-1.074.764-2.114 1.575-3.17 2.364'/%3e%3c/svg%3e\"},3545:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='1488.189 992.126 1275 850'%3e%3cpath fill='%23FFF' d='M1488.189 992.126h1275v850h-1275z'/%3e%3cpath fill='%23369443' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M1885.935 1567.623s-1.033-6.99 12.242-12.116c13.275-5.126 14.307-24.232 11.652-36.97 0 0-6.932 12.116-15.339 16.155 0 0-13.717 7.146-14.345 20.795 0 0-.109 4.99-1.142 8.873-.565 2.126-6.637-17.087 4.867-31.377 11.872-14.748 15.192-26.717 5.752-50.017 0 0-.885 14.135-10.177 22.213-9.292 8.077-10.474 8.699-10.325 27.96 0 0 .148 6.679-3.392 8.854 0 0-7.227-10.563-9.145-17.553-1.917-6.99-2.802-9.941 5.457-18.019 0 0 26.461-17.1 7.375-54.522 0 0-.59 12.893-9.735 20.504-9.145 7.611-8.407 12.737-8.85 25.941-.443 13.203-1.328 12.271-2.36 14.135 0 0-16.814-30.911-3.835-47.377s20.207-19.883 5.9-50.483c0 0 .635 15.689-10.818 23.456-11.453 7.767-8.798 25.941-8.798 25.941s.737 6.835-1.622 11.805c0 0-16.202-31.601-.737-48.62 13.127-14.446 14.012-24.543 6.932-45.047 0 0-.885 9.476-8.112 14.601-7.227 5.126-12.979 10.252-11.652 29.979 0 0 .59 13.825-1.18 17.708 0 0-6.785-12.582-8.702-20.815-1.917-8.233-2.655-13.048 2.36-21.281 5.015-8.233 24.927-31.844 1.18-65.861 0 0-.737 11.029-6.785 20.97-6.047 9.941-3.245 21.747-1.917 30.756s-3.097 17.708-3.097 17.708-10.325-18.951-8.112-40.697c2.212-21.747-6.637-39.61-26.697-52.503 0 0-14.602 33.863 5.31 51.105 0 0 16.962 16.776 21.239 37.125 0 0-12.832-1.243-24.484-23.921-11.652-22.679-35.841-19.106-37.464-19.261 0 0 3.983 35.105 41.151 45.047 0 0 23.747 4.039 28.172 21.436 0 0 3.982 11.961 5.605 18.329 0 0-7.522-2.951-14.455-13.203-6.932-10.252-6.047-11.495-29.499-13.825 0 0-9.44-1.088-14.455-7.767 0 0 9.882 37.125 35.251 36.814 0 0 23.157-2.485 36.136 27.96 0 0-2.507-1.553-5.9-3.884-3.392-2.33-11.947-6.679-28.909-4.66s-21.682-.777-25.959-2.175c0 0 17.109 31.377 41.299 22.057 24.189-9.32 35.872 24.665 36.136 25.319 0 0-3.245-2.486-7.522-6.68-4.277-4.194-13.157-9.366-29.942-4.039 0 0-12.094 4.66-24.337.932 0 0 11.8 22.834 39.381 18.951 27.581-3.884 34.514 20.349 34.514 20.349s-3.687-2.175-6.195-4.194c-2.507-2.019-11.8-7.301-31.711-1.398-19.912 5.903-27.139-.932-27.139-.932s11.062 20.193 32.301 22.523c0 0 11.8-.155 16.814-2.019 5.015-1.864 18.289-4.815 27.434 8.388 0 0-2.507.466-6.342-1.243 0 0-14.159-5.126-24.927 3.883 0 0-9.587 9.786-23.157 7.922 0 0 17.552 17.087 45.428 2.641 0 0 9.44-6.835 16.372-1.553 6.934 5.285 23.011-5.123 23.011-5.123z'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2041.1 1146.669s-3.238-28.908 19.863-31.688c24.091-2.9 35.989 2.175 35.989 2.175l10.816 21.229-3.737 14.291-14.946 6.835s2.557-21.954-17.568-22.411c-5.099-.116-8.096 1.906-16.161.626-8.111-1.288-12.449 7.625-14.256 8.943z'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2203.639 1218.226c-3.442 4.453-17.208 6.006-17.208 6.006s14.159 10.873 20.256 26.407c6.097 15.533-164.113.103-164.113.103s7.375-5.281 12.39-15.223c0 0-7.522 2.796-15.044-4.66 0 0 5.605 1.864 12.979-9.32 0 0 10.915-13.98 18.584-17.708 0 0-3.54 2.175-12.094-2.485 0 0 14.75-1.864 20.059-27.028 0 0 .885-5.592 6.49-13.669 5.605-8.078 4.425 1.553 14.75-10.874 0 0 4.72-8.802.59-14.187s-8.555-3.417-17.208-8.595c-8.653-5.178-12.488-8.078-9.538-16.051 2.95-7.974 10.62-6.731 11.701-6.731 1.082 0 1.672-6.938 11.112-11.702s34.514-2.693 38.25-.621c3.737 2.071 18.879 6.524 27.729 28.892 8.85 22.368-2.36 30.756 21.731 64.515 0 0-9.636 2.071-15.831.207 0 0 12.487 22.161 34.415 32.724z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2098.328 1123.835c-19.617-.932-12.094-19.624-12.094-19.624'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2132.399 1126.398s-3.466-1.631-6.398-5.514c-4.115-5.449-13.292-8.077-18.233-2.951 0 0-5.015 5.592-9.44 5.903 0 0 5.015 1.553 8.481 4.738 3.466 3.184 7.08 5.514 12.242 4.815 5.162-.699 5.974-3.417 8.407-5.048 2.434-1.633 4.941-1.943 4.941-1.943z'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' d='M2259.981 1405.765s18.29 14.912 33.629 0c0 0 6.195 7.456 18.584 5.281 12.39-2.175 14.455-8.699 15.635-12.427 0 0 10.718 6.253 19.764 1.314 9.047-4.939 9.047-12.394 9.047-12.394s15.733 3.101 23.796-7.562c8.063-10.663 3.147-21.226-1.18-22.469 0 0 17.01 4.456 21.633-10.148 3.933-12.427-4.917-18.847-4.917-18.847s35.841-.172 50.542-11.391c0 0 12.193-7.663 4.917-15.74 0 0 32.252-5.178 40.315-18.019 0 0 3.54-3.521 2.36-9.734 0 0-.197-3.521-3.737-3.728 0 0 36.78-5.681 47.395-17.812 0 0 5.113-5.592 2.557-13.048 0 0-.541-1.968-1.426-3.288 0 0 33.481-7.068 50-21.98 0 0 9.536-8.496 4.62-19.887 0 0 55.951-15.322 42.972-39.968 0 0 26.156-8.492 17.896-32.102 0 0 21.633-10.977 12.193-28.374-9.034-16.65-36.775 2.899-69.624 11.988 0 0-88.884 27.985-132.656 35.432l-124.372 185.167-72.568 27.96-7.375 51.776z'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' d='M2259.097 1269.382s11.657-8.751 32.449 1.553c0 0 7 4.82 12.507-.461 4.601-4.413 5.032-12.549-1.297-17.247-15.487-11.495-21.24-45.979 2.36-60.269 0 0 34.219-20.297 159.696-52.229 0 0 10.513-2.915 16.118-1.517 6.172 1.539 10.423 6.835 11.295 11.366 0 0 5.615 15.956-13.262 25.086 0 0-8.522 3.9-17.306 6.421 0 0 9.648-2.086 13.766 7.456 3.933 9.113-1.77 18.433-19.469 24.439 0 0-4.787 1.863-11.603 3.521 0 0 15.143 4.349 7.866 16.569 0 0-6.49 12.841-29.401 15.119 0 0 17.109 1.864 5.015 18.122 0 0-5.31 8.906-22.026 12.22 0 0 12.685.414 6.293 11.805-6.391 11.391-21.432 17.812-36.232 18.847 0 0-8.016.414-13.621-.829 0 0 14.061 7.042 5.801 18.847 0 0-6.096 8.388-21.337 7.974 0 0 3.956 13.183-7.227 18.174-8.702 3.883-15.929-2.33-15.929-2.33s2.95 14.135-9.735 19.106c0 0-6.342 3.262-15.782 0 0 0-7.227 16.155-32.891 4.815-25.666-11.338-6.048-106.558-6.048-106.558z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' d='M2654.383 1121.815s-40.315 23.342-165.869 46.684'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' d='M1934.384 1534.589s-14.946 25.682-33.039 26.096c0 0-31.122-3.788-39.922 4.349-6.136 5.675-12.39 10.356-14.946 24.854s4.916 17.605 6.686 18.226c0 0 1.377 10.356 11.603 7.663 0 0 .59 10.77 18.683 5.592s25.566-3.521 29.106-21.54c3.54-18.019 6.808-17.724 10.03-19.883 4.327-2.9 12.455-5.64 18.486-9.113 5.418-3.12 26.156-13.67 33.235-14.498 7.08-.828 5.506-24.646 5.506-24.646h-18.289l-8.85-13.048-18.289 15.948z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' d='M2636.487 1153.918s-109.115 35.594-159.93 39.968m116.958 0s-64.011 20.094-138.971 32.774m84.35 9.093s-72.322 17.372-106.849 20.255'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2490.368 1269.9s-61.173 12.758-76.672 14.292'/%3e%3cpath fill='%230081C6' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='m2421.511 1362.939 3.063 97.066-17.139-9.943-28.534 123.179-11.773-8.458 27.776-118.011-19.368.356z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2451.43 1301.381s-44.642 6.783-62.409 6.42m6.951 20.712s-18.05-.848-26.724-2.288m10.007 31.284s-15.34-4.142-24.386-9.941m1.771 39.972s-11.8-4.556-17.503-16.983m-11.308 28.063s-9.145-8.181-9.735-17.294'/%3e%3cpath fill='%230081C6' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='m2532.37 1406.102-40.565 87.218-10.701-17.253-85.643 101.197-9.273-10.381 85.318-99.916-17.259-9.262z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2293.61 1405.765s3.424-2.953 1.082-15.792'/%3e%3cpath fill='%230081C6' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='m2495.369 1342.078-20.896 94.594-14.112-14.276-76.651 147.389-11.812-6.895 77.167-147.088-18.795-4.935z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2298.035 1371.126s1.77-3.676 1.18-9.475'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' d='M1991.986 1405.766s-18.289 14.912-33.629 0c0 0-6.195 7.456-18.584 5.281s-14.455-8.699-15.635-12.427c0 0-10.718 6.253-19.764 1.314-9.047-4.939-9.047-12.395-9.047-12.395s-15.733 3.101-23.796-7.562c-8.063-10.663-3.147-21.226 1.18-22.469 0 0-17.01 4.456-21.633-10.148-3.933-12.427 4.917-18.847 4.917-18.847s-35.841-.172-50.542-11.391c0 0-12.193-7.663-4.916-15.74 0 0-32.252-5.178-40.315-18.019 0 0-3.54-3.521-2.36-9.734 0 0 .197-3.521 3.736-3.728 0 0-36.78-5.681-47.395-17.812 0 0-5.113-5.592-2.557-13.048 0 0 .541-1.968 1.426-3.288 0 0-33.481-7.068-50.001-21.98 0 0-9.536-8.496-4.62-19.887 0 0-55.952-15.322-42.972-39.968 0 0-26.156-8.492-17.896-32.102 0 0-21.633-10.977-12.193-28.374 9.034-16.65 36.776 2.899 69.624 11.988 0 0 88.884 27.985 132.656 35.432l124.372 185.167 72.568 27.96 7.376 51.777z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2362.54 1187.263s-20.649 8.285-27.532 19.676c-6.883 11.391-2.35 22.462 0 28.814 1.181 3.192 15.733 31.248-1.377 51.545'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' d='M1992.871 1269.383s-11.657-8.751-32.449 1.553c0 0-7 4.82-12.506-.461-4.601-4.413-5.033-12.549 1.297-17.247 15.487-11.495 21.239-45.979-2.36-60.269 0 0-34.219-20.297-159.696-52.229 0 0-10.513-2.915-16.118-1.517-6.172 1.539-10.423 6.835-11.295 11.366 0 0-5.615 15.956 13.262 25.086 0 0 8.522 3.9 17.306 6.421 0 0-9.648-2.086-13.766 7.456-3.933 9.113 1.77 18.433 19.469 24.439 0 0 4.787 1.863 11.603 3.521 0 0-15.143 4.349-7.866 16.569 0 0 6.49 12.841 29.401 15.119 0 0-17.109 1.864-5.015 18.122 0 0 5.31 8.906 22.026 12.22 0 0-12.685.414-6.293 11.805 6.391 11.391 21.432 17.812 36.233 18.847 0 0 8.016.414 13.621-.828 0 0-14.061 7.042-5.801 18.847 0 0 6.096 8.388 21.338 7.974 0 0-3.956 13.184 7.227 18.174 8.702 3.883 15.929-2.33 15.929-2.33s-2.95 14.135 9.735 19.106c0 0 6.342 3.262 15.782 0 0 0 7.227 16.155 32.891 4.815 25.662-11.34 6.045-106.559 6.045-106.559z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2362.245 1309.355s-.098-.104-7.375-2.382m50.935-27.442s-12.308 2.478-24.386 2.589m41.397-32.931s-14.455 1.45-28.024 1.243m49.558-32.931s-20.846 4.142-32.056 4.349m49.362-39.765s-25.709 7.338-44.839 9.941m-42.478 15.119s18.486 17.19-3.737 33.138c0 0 9.243 14.498-9.243 29.617'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' d='M1994.394 1416.2s-3.766 20.218-33.627 45.666c0 0-23.04 20.324-22.45 43.727.601 23.832-4.13 26.51-13.176 34.588 0 0 18.683 1.45 27.729-10.977 0 0-.393 20.711-3.147 22.575 0 0 5.859.374 14.356-8.906 0 0 5.113-5.385 9.833-7.456 0 0-5.506 14.291-1.18 27.546 0 0 1.377-5.178 8.653-7.456 0 0 13.176-2.693 18.29-21.747 0 0 3.343-12.634 23.992-23.818 0 0 23.402-8.827 22.813-20.361s-52.086-73.381-52.086-73.381z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2366.276 1277.046s2.753 27.646-31.072 27.648c0 0 6.49 24.647-26.156 23.819 0 0-3.737 19.675-27.336 15.74'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' d='M2317.618 1534.589s14.946 25.682 33.039 26.096c0 0 31.122-3.788 39.922 4.349 6.136 5.675 12.39 10.356 14.946 24.854 2.557 14.498-4.917 17.604-6.687 18.226 0 0-1.377 10.356-11.603 7.663 0 0-.59 10.77-18.683 5.592s-25.566-3.521-29.106-21.54c-3.54-18.019-6.808-17.724-10.03-19.883-4.327-2.9-12.455-5.64-18.486-9.113-5.418-3.12-26.156-13.669-33.235-14.498-7.08-.828-5.507-24.646-5.507-24.646h18.289l8.85-13.048 18.291 15.948z'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' d='M2257.608 1416.2s3.766 20.218 33.627 45.666c0 0 23.04 20.324 22.45 43.727-.601 23.832 4.13 26.51 13.176 34.588 0 0-18.683 1.45-27.729-10.977 0 0 .393 20.711 3.147 22.575 0 0-5.86.374-14.356-8.906 0 0-5.113-5.385-9.833-7.456 0 0 5.506 14.291 1.18 27.546 0 0-1.377-5.178-8.653-7.456 0 0-13.176-2.692-18.29-21.747 0 0-3.343-12.634-23.992-23.818 0 0-23.403-8.827-22.813-20.361.59-11.534 52.086-73.381 52.086-73.381z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' d='M2333.695 1560.685s5.352 1.191 16.962 0'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2383.303 1575.183s16.323-2.485 15.536 32.931m-25.369-24.854s14.75-1.864 13.766 32.517'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' d='M2231.088 1500.416s7.08 1.45 11.997 7.042c4.916 5.592 14.356 4.556 14.356 4.556s-5.113-4.142-6.883-14.498-7.473-13.462-7.473-13.462m16.889-9.807s7.08 1.45 11.996 7.042 14.356 4.556 14.356 4.556-5.113-4.142-6.883-14.498-7.473-13.462-7.473-13.462m-7.128 56.562s6.182 1.266 10.474 6.149c4.293 4.882 12.535 3.978 12.535 3.978s-4.465-3.617-6.01-12.658c-1.545-9.042-6.525-11.754-6.525-11.754'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2149.136 1676.875s5.361 23.657 23.993 21.747c0 0 13.176-1.243 12.193-23.197 0 0 19.469 10.356 22.616-15.326 0 0 17.699 4.142 17.503-19.883 0 0 16.52 2.9 14.553-18.433 0 0 17.896 4.763 17.896-15.326 0 0 41.888-6.947-45.428-86.573l-77.877 46.393 14.551 110.598z'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' d='M2140.483 1570.709s12.979 11.516 22.222-5.675c0 0 12.586-.621 14.553-10.148 0 0 10.227-1.036 12.193-10.77 0 0 13.963-1.45 13.57-13.255 0 0 25.385-1.96.008-30.7-25.377-28.741-68.446 47.684-68.446 47.684l5.9 22.864z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2185.322 1675.425s-1.967-41.63-38.047-101.278m60.663 85.952s5.605-24.025-45.232-95.064c0 0 5.9-16.983-12.193-27.857m74.927 103.038s1.573-25.993-48.181-85.33c0 0 4.395-15.326-13.634-27.546m76.368 94.443s-1.868-26.303-50.542-77.667c0 0 2.435-15.74-15.007-25.475m83.445 87.816s-3.54-30.031-54.868-75.596c0 0 1.77-11.805-15.34-23.818'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2102.865 1676.875s-5.361 23.657-23.992 21.747c0 0-13.176-1.243-12.193-23.197 0 0-19.469 10.356-22.616-15.326 0 0-17.699 4.142-17.503-19.883 0 0-16.52 2.9-14.553-18.433 0 0-17.896 4.764-17.896-15.326 0 0-41.888-6.947 45.428-86.573l77.877 46.393-14.552 110.598z'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' d='M2111.519 1570.709s-12.979 11.516-22.223-5.674c0 0-12.586-.621-14.552-10.148 0 0-10.227-1.036-12.193-10.77 0 0-13.963-1.45-13.57-13.255 0 0-25.385-1.96-.008-30.7 25.377-28.741 68.446 47.683 68.446 47.683l-5.9 22.864z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2066.68 1675.425s1.966-41.63 38.047-101.278m-60.663 85.952s-5.605-24.025 45.232-95.064c0 0-5.9-16.983 12.193-27.856'/%3e%3cpath fill='%23F4C53D' stroke='%23010002' stroke-width='3' d='M2126.001 1563.585c12.582 0 26.839 78.599 23.139 125.953-1.344 17.198-10.557 31.245-23.139 31.245s-21.795-14.047-23.139-31.245c-3.7-47.354 10.557-125.953 23.139-125.953'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2026.561 1640.216s-1.573-25.993 48.182-85.33c0 0-4.395-15.326 13.634-27.546m-76.369 94.443s1.868-26.303 50.542-77.667c0 0-2.435-15.74 15.007-25.475'/%3e%3cellipse fill='%23F4C53D' stroke='%23010002' stroke-width='3' cx='2126.001' cy='1562.963' rx='17.41' ry='25.785'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M1994.112 1606.457s3.54-30.031 54.868-75.596c0 0-1.77-11.805 15.34-23.818'/%3e%3cpath fill='%23FFF' stroke='%23010002' stroke-width='3' d='M2126.001 1557.331s147.66-65.433 148.029-216.805h-296.058c.369 151.372 148.029 216.805 148.029 216.805z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2046.293 1340.525h22.774m-68.321 0h22.774m68.321 0h22.773'/%3e%3cpath fill='%23A60032' stroke='%23010002' stroke-width='3' d='M2000.746 1340.525v96.719s11.31 22.432 22.774 36.5v-133.219h-22.774zm45.547 0v159.435s14.242 13.965 22.774 20.697v-180.132h-22.774zm45.548 0v197.076s16.248 10.494 22.774 13.937v-211.013h-22.774z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' d='M2000.746 1340.525h22.774m22.773 0h22.774m22.774 0h22.773'/%3e%3cpath fill='%23A60032' stroke='%23010002' stroke-width='3' d='M2251.256 1340.525v96.719s-11.31 22.432-22.773 36.5v-133.219h22.773zm-45.548 0v159.435s-14.242 13.965-22.774 20.697v-180.132h22.774zm-45.547 0v197.076s-16.248 10.494-22.774 13.937v-211.013h22.774z'/%3e%3cpath fill='none' d='m2281.978 1703.708-13.717 16.776m-17.005-18.639 37.801 34.948'/%3e%3cpath fill='%230081C6' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='m2364.725 1614.728-5.742 23.475 15.719 15.659-22.216 93.839-19.76-26.542-29.279 13.665 22.216-93.839 20.597-5.743 5.348-23.433s6.23-2.44 13.117 2.919z'/%3e%3cpath fill='%230081C6' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='m2369.988 1599.248-11.315 21.11 11.335 19.41-44.521 84.586-12.564-31.023-31.64 5.219 44.521-84.586 21.306.067 10.924-21.177c.001 0 7.948-.017 11.954 6.394z'/%3e%3cpath fill='%230081C6' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='m2371.898 1605.387-30.096 38.235 6.898 21.598-61.447 71.871-5.615-33.205-31.943-2.411 61.447-71.871 20.746 5.113 31.924-40.59c-.001.001 8.561 4.253 8.086 11.26z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' d='M1597.585 1121.816s40.315 23.342 165.869 46.684m-147.973-14.582s109.115 35.594 159.93 39.968m-116.958 0s64.011 20.094 138.971 32.774m-84.351 9.093s72.322 17.371 106.849 20.255'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M1761.599 1269.901s61.173 12.758 76.672 14.292m-37.733 17.189s44.642 6.783 62.409 6.42m-6.951 20.711s18.05-.848 26.724-2.288m-10.008 31.284s15.34-4.142 24.386-9.941m-1.77 39.972s11.8-4.556 17.503-16.983m11.308 28.064s9.145-8.181 9.735-17.294m24.484 24.439s-3.424-2.953-1.082-15.792m-3.343-18.848s-1.77-3.676-1.18-9.475m-63.325-174.388s20.649 8.284 27.532 19.675c6.883 11.391 2.35 22.462 0 28.814-1.181 3.192-15.733 31.248 1.377 51.545m-28.614 22.058s.098-.104 7.375-2.382m-50.935-27.442s12.308 2.478 24.386 2.589m-41.397-32.931s14.455 1.45 28.024 1.243'/%3e%3cpath fill='%23369443' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M1882.877 1610.513s-.442-12.581 15.486-13.513l46.901 65.237s-1.77 4.194-23.008 3.728c0 0-2.249-.015-3.429 2.47-1.812 3.815-35.95-57.922-35.95-57.922z'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M1807.618 1217.501s20.846 4.142 32.056 4.349m-49.362-39.765s25.709 7.338 44.839 9.941m42.478 15.12s-18.486 17.19 3.736 33.138c0 0-9.243 14.498 9.243 29.617m-4.916 7.146s-2.753 27.646 31.072 27.648c0 0-6.49 24.647 26.156 23.819 0 0 3.736 19.676 27.336 15.74'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' d='M1918.258 1560.685s-5.352 1.191-16.962 0'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M1868.651 1575.183s-16.323-2.485-15.536 32.931m25.369-24.854s-14.75-1.864-13.766 32.516'/%3e%3cpath fill='none' stroke='%23010002' stroke-width='3' d='M2020.914 1500.415s-7.08 1.45-11.996 7.042-14.356 4.556-14.356 4.556 5.113-4.142 6.883-14.498 7.473-13.462 7.473-13.462m-16.89-9.806s-7.08 1.45-11.996 7.042-14.356 4.556-14.356 4.556 5.113-4.142 6.883-14.498 7.473-13.462 7.473-13.462m7.128 56.561s-6.182 1.266-10.474 6.148c-4.293 4.883-12.535 3.978-12.535 3.978s4.465-3.617 6.01-12.659c1.545-9.042 6.525-11.754 6.525-11.754'/%3e%3cpath fill='%23162667' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M2274.03 1230.549s-72.456 37.901-148.029-3.107c-75.573 41.008-148.029 3.107-148.029 3.107v109.976h296.058v-109.976z'/%3e%3cpath fill='%230081C6' stroke='%23010002' stroke-width='3' stroke-miterlimit='10' d='M1609.306 1515.748c7.175-2.929 12.342-5.756 12.32-13.412-.005-1.825-1.019-5.863-3.055-12.114l-48.177-147.24c-2.853-8.747-5.01-13.947-6.01-15.863-2.166-4.147-6.417-5.835-12.143-8.22h61.232c-6.652 3.143-12.716 5.639-12.659 12.691.022 2.693.779 6.49 2.341 11.393l36.907 115.541 36.871-115.541c1.562-4.903 2.369-8.7 2.343-11.393-.071-7.248-6.386-9.86-12.591-12.691h59.343c-5.426 2.174-9.848 3.878-12.12 8.22-1.002 1.916-3.157 7.116-6.009 15.863l-48.177 147.24c-2.038 6.25-2.775 10.357-3.056 12.258 0 0-2.217 9.312 12.32 13.267l-59.68.001zm1026.68-15.143v-166.709c0-2.884-.476-5.095-1.425-6.634-.951-1.537-5.09-5.969-10.995-8.364h55.175c-5.906 1.955-10.046 6.706-10.995 8.292-.951 1.586-1.425 3.821-1.425 6.706v166.709c0 2.981.491 5.264 1.476 6.85.983 1.586 5.039 5.458 10.944 8.292h-55.175c5.906-2.687 10.044-6.825 10.995-8.364.949-1.536 1.425-3.797 1.425-6.778z'/%3e%3c/svg%3e\"},1590:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-15 -10 30 20'%3e%3cpath fill='%23DA251d' d='M-20-15h40v30h-40z'/%3e%3cg id='b' transform='translate(0 -6)'%3e%3cpath id='a' fill='%23FF0' transform='rotate(18)' d='M0 0v6h4'/%3e%3cuse xlink:href='%23a' transform='scale(-1 1)'/%3e%3c/g%3e%3cg id='c' transform='rotate(72)'%3e%3cuse xlink:href='%23b'/%3e%3cuse xlink:href='%23b' transform='rotate(72)'/%3e%3c/g%3e%3cuse xlink:href='%23c' transform='scale(-1 1)'/%3e%3c/svg%3e\"},5546:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 950 570'%3e%3cpath fill='%23d21034' d='M0 0h950v285H0z'/%3e%3cpath fill='%23009543' d='M0 285h950v285H0z'/%3e%3cpath d='m0 0 552.813 285L0 570z'/%3e%3cpath d='M0 234h950v102H0z'/%3e%3cpath d='M0 40.502 474.251 285 0 529.496z' fill='%23fdce12'/%3e%3cpath fill='%23fdce12' d='M0 270h950v30H0z'/%3e%3cpath d='M0 74.255 408.782 285 0 495.745z'/%3e%3cpath d='M115.481 339.524V372c28.253 0 83.7-21.65 83.7-91.356 0-69.706-59.144-82.644-76.835-82.644C104.656 198 50 210.674 50 267.706c0 57.032 53.6 62.313 64.161 62.313s50.167-9.506 45.679-52.28c0 12.146-13.73 37.758-42.511 37.758-28.78 0-46.734-21.388-46.734-42.51 0-21.124 17.426-49.376 47.79-49.376s52.543 26.931 52.543 54.128c0 27.196-21.386 61.785-55.447 61.785z' fill='%23fdce12'/%3e%3cg id='a' fill='%23fdce12'%3e%3cpath d='m90.728 297.245 1.683 1.089s13.367-30.496 49.309-52.18c-4.555 2.475-28.615 14.456-50.992 51.091z' stroke='%23fdce12'/%3e%3cpath d='M94.193 291.997s-4.158-8.515-.495-12.277c3.664-3.763 1.981 10 1.981 10l1.584-2.277s-2.476-10.397.297-12.575c2.772-2.178 1.386 10 1.386 10l1.683-2.178s-1.782-10.099.891-11.981c2.674-1.881.991 9.506.991 9.506l1.98-2.278s-1.485-9.604 1.782-11.881c3.268-2.278.396 9.109.396 9.109l2.178-2.376s-.99-8.813 1.783-10.793c2.772-1.98.396 8.317.396 8.317l1.98-2.079s-.594-8.218 2.079-10.099c2.674-1.882.198 7.822.198 7.822l2.08-1.981s-.495-8.218 2.871-9.802c3.366-1.584-.594 7.723-.594 7.723l2.277-1.98s.693-9.604 3.565-10.496c2.871-.891-1.287 8.516-1.287 8.516l2.079-1.684s1.089-8.218 4.257-9.208c3.169-.99-1.98 7.525-1.98 7.525l2.079-1.584s2.278-8.218 5.248-9.109c2.971-.891-3.069 7.723-3.069 7.723l1.98-1.386s3.267-7.427 5.941-7.922c2.673-.495-2.971 6.139-2.971 6.139l2.476-1.485s4.257-7.723 5.743-5.347c1.485 2.377-5.941 5.842-5.941 5.842l-2.476 1.386s9.011-4.257 10.1-2.079c1.089 2.178-12.377 3.565-12.377 3.565l-2.178 1.485s9.01-2.476 7.921-.198c-1.089 2.277-10 1.782-10 1.782l-2.08 1.485s9.01-2.178 7.822-.099c-1.188 2.079-10 1.881-10 1.881l-2.178 1.783s8.812-2.278 7.525.396c-1.288 2.673-11.288 2.574-11.288 2.574l-2.475 2.277s9.307-3.168 8.515-.693c-.792 2.476-11.387 3.763-11.387 3.763l-2.376 2.376s10-3.366 7.03-.297c-2.97 3.07-10.198 3.862-10.198 3.862l-2.872 3.465s9.902-5.941 8.515-2.574c-1.386 3.366-11.089 5.644-11.089 5.644l-1.98 2.376s8.911-5.149 8.02-2.277c-.891 2.871-10.397 5.94-10.397 5.94l-1.584 2.179s10.495-6.238 9.604-3.07c-.891 3.169-10.891 5.446-10.891 5.446l-1.287 1.98s9.703-5.544 9.802-2.871c.099 2.673-11.387 5.347-11.387 5.347l-.198-2.278z'/%3e%3c/g%3e%3cuse xlink:href='%23a' transform='matrix(-1 0 0 1 238.5 0)'/%3e%3c/svg%3e\"},3301:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 100'%3e%3cpath fill='%23ED2939' d='M0 0h150v100H0z'/%3e%3cpath fill='%23FFF' d='M0 0h40v40H0z'/%3e%3cpath fill='%23002395' d='M0 0h20v40H0z'/%3e%3cpath fill='none' stroke='%23FFF' d='M0 40h60V0'/%3e%3cpath fill='%23FFF' d='M105 46 93 34h24zm-4 4L89 38v24zm4 4L93 66h24zm4-4 12-12v24z'/%3e%3c/svg%3e\"},7170:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 2880 1440'%3e%3cdefs%3e%3cpath id='a' d='m0 0 .309.951L-.5.363h1l-.809.588z'/%3e%3c/defs%3e%3cpath fill='%23ce1126' d='M0 0h2880v1440H0z'/%3e%3cpath fill='%23002b7f' d='M0 0h1440v720H0z'/%3e%3cg fill='%23fff'%3e%3cuse xlink:href='%23a' transform='matrix(160 0 0 160 720 30)'/%3e%3cuse xlink:href='%23a' transform='matrix(160 0 0 160 500 210)'/%3e%3cuse xlink:href='%23a' transform='matrix(150 0 0 150 945 180)'/%3e%3cuse xlink:href='%23a' transform='matrix(100 0 0 100 830 364.894)'/%3e%3cuse xlink:href='%23a' transform='matrix(200 0 0 200 720 499.789)'/%3e%3c/g%3e%3c/svg%3e\"},8419:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 840 600'%3e%3cpath fill='%23244aa5' d='M0 0h840v600H0z'/%3e%3cpath d='M424.541 190.135c3.515 4.101 5.868 8.2 5.868 13.185-2.951 1.459-7.028 2.054-9.381 4.69 14.651-2.055 17.57 14.934 33.978 8.487.596 2.353 2.95 4.407 5.867 3.519l1.757-4.68c6.432-1.756 4.675 8.785 11.731 6.73 3.517 2.934 1.164 7.907 3.517 11.437 0 4.094 1.758 7.608 3.513 11.122 1.759-2.04 2.92-4.974 7.028-4.095 2.919 3.217 5.272 6.15 5.865 9.664-1.19 6.745-2.947 12.596 4.08 16.11v2.054c4.707 2.055 15.249-2.054 15.249 6.15-.598 2.934 2.917.298 4.109 2.055 2.919-1.177 7.028-.58 10.541-.58 2.919 6.15-3.513 10.541-5.27 16.11 2.917 2.919 1.757 8.204 1.161 11.702l-1.758.879c4.675.878 10.54-.565 14.652 2.07l7.624 2.918c3.513-2.038 7.593-2.352 12.298-2.038 3.514 2.636-1.191 7.027 1.758 9.067 4.11 0 7.624.597 8.189 4.111l.595 1.16c2.919-5.271 11.138-1.758 14.653-5.552 5.866 0 7.026 6.432 9.944 9.946 1.193 9.097-9.944 13.209-6.431 22.275-2.353 4.391-7.028 7.907-10.541 12.016 1.16.596.564 2.04.564 2.918-3.514 2.071-.564 8.22-5.271 8.787-.565 3.826-7.593 2.352-5.27 6.46 4.704 6.15-2.323 9.947-2.323 15.531-2.95 3.231-8.816-2.95-8.816 3.231-3.514.878-7.027-3.23-9.35.284-1.19 4.11 2.323 5.553 1.758 9.663 5.836-.597 7.593 5.27 9.946 8.785l5.867 5.866c-5.867 4.675-13.491-.597-20.52 2.039-1.757-.878 0-3.2-1.757-4.078-1.758-2.072-5.27-2.072-8.189-2.638.565 2.638-4.705 3.515-2.352 6.715 0 .878 1.16 3.514-1.162 3.514-4.706 1.475-4.11-4.078-8.22-2.04-5.27 2.04-1.16 9.947-8.784 9.068 1.16 7.06-11.703 11.735-2.919 17.884 1.16 1.162.565 3.514.565 5.27-5.272 4.707-14.623 2.95-20.488 1.192-4.706-1.191-1.757-7.058-3.513-10.258-1.758-2.95-7.028-4.989-7.028-9.099-3.517-1.445-6.463-2.35-8.816-5.271-8.188 7.906-18.163 15.53-29.869 15.812-5.27 2.636-8.219 13.21-16.408 8.815-3.216 5.273-12.895 0-13.476 7.595-3.812 1.474-2.055 6.462-4.392 8.784-.879 5.866 0 10.854 4.973 14.37 2.054 4.391-4.393 4.391-1.758 8.503.597 1.444 0 3.513-.878 4.109-1.757.878-2.337 1.758-1.757 3.514-1.459 0-2.053.878-3.216 2.039-1.475 2.918-6.15 4.392-9.38 6.432-3.217.878-5.57-1.444-7.61-3.514-.596 3.231-3.23 4.989-6.446 4.989-4.691 0-3.812-4.11-7.327-5.867 1.46-5.271-3.23-7.593-1.757-12.3 3.811-2.917 10.244-4.987 8.487-11.136-4.094-4.958-2.635-12.3-6.73-18.166-2.635-2.322-7.027-5.835-5.569-11.42 3.812-4.392 0-9.663-2.054-14.338-.878-3.827-3.216-7.34-3.216-11.734-6.447-3.796-6.746-13.773-15.828-14.651-6.447 0-7.608-8.19-14.056-7.625-.595-1.16-2.054-2.038-3.23-3.2-4.675 3.2-10.542-.878-16.394.565-3.812-6.432 3.216-15.217-7.043-19.045v-4.078c1.177.564 1.757-.598 2.055-1.193.58-4.392-7.327-4.957-4.094-9.946-1.758-1.474-3.812-2.07-2.636-4.988-4.407-9.068-17.585-8.189-20.518-17.287 2.352-2.038 2.352-4.11 3.232-5.866-2.056-3.515-2.636-7.311-2.056-11.107 2.056-.597 3.216-3.231 4.393-5.303-2.636-1.756-5.853-4.391-8.786-3.513-5.27-.878-9.083-4.957-13.773-7.31-1.176-1.162-.58-3.231-.58-4.675 6.447-2.072-.878-11.154 7.028-9.977 2.056-2.635 6.447-3.514 9.665-5.569 3.23-.58 5.866.596 9.082 1.475 2.635 3.499 7.326 2.04 9.96 4.972 2.636-.595 5.868-2.055 9.084-.595 0-4.974 2.338-7.907 5.866-11.422.58-2.04 3.797-3.513 6.432-4.675 4.99 1.162 10.84 1.162 14.37-2.353 2.338 1.474 4.393-1.458 7.028-1.458 3.215-.596 5.851.282 8.204 1.757.283-5.868 10.541-.88 12.597-7.907 2.338-4.691-6.447-6.447-5.867-10.557-1.46-4.691 2.055-7.028 3.811-10.244 2.055-.88 4.393-2.055 7.028-1.475 6.746-2.338 1.474-16.11 12.315-11.122 0 1.46-.596 3.216.282 3.514 3.812 0 4.397-4.396 7.044-5.866 1.16-4.094-1.474-9.082 2.04-12.3 1.757-.297 3.23-.877 4.392-2.352 0-3.216-1.757-4.972-4.393-7.028-.878 1.464-3.216.298-4.686.88 0-3.515-2.044-5.852-2.64-9.084-1.757-.878-2.635-2.337-2.04-4.393 2.636-2.635 0-9.082 6.15-7.62 2.338-2.043 6.447-.584 8.785-4.099 6.15-3.513 14.353-3.513 19.044-9.96 2.055.297 4.393-1.757 6.447 0 .582 3.81 6.151 2.336 6.151 5.858' fill='%23d0a650'/%3e%3cpath d='m469.9 110.7-8.1-24.9-8 24.9h-26.2l21.2 15.4-8.1 24.9 21.1-15.4L483 151l-8.1-24.9 21.2-15.4zm82.4 14.5-8.1-24.8-8 24.8H510l21.2 15.4-8.1 24.9 21.1-15.4 21.2 15.4-8.1-24.9 21.2-15.4zm78.6 28.6-8-24.8-8.1 24.8h-26.2l21.2 15.4-8.1 24.9 21.2-15.4 21.1 15.4-8.1-24.9 21.2-15.4zm-244.7-43.1-8-24.9-8.1 24.9h-26.2l21.2 15.4L357 151l21.2-15.4 21.1 15.4-8.1-24.9 21.2-15.4zm-82.4 14.5-8-24.8-8.1 24.8h-26.2l21.2 15.4-8.1 24.9 21.2-15.4 21.1 15.4-8.1-24.9 21.2-15.4zm-78.6 28.6-8.1-24.8-8 24.8h-26.2l21.2 15.4-8.1 24.9 21.1-15.4 21.2 15.4-8.1-24.9 21.2-15.4z' fill='%23fff'/%3e%3c/svg%3e\"},8274:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 450 300'%3e%3cpath d='M0 0h450v300H0z'/%3e%3cpath fill='%23FFF' d='M0 0h450v200H0z'/%3e%3cpath fill='%23CE1126' d='M0 0h450v100H0z'/%3e%3c/svg%3e\"},2699:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3e%3cpath fill='%23ED2939' d='M0 0h900v600H0z'/%3e%3cpath fill='%23fff' d='M0 0h600v600H0z'/%3e%3cpath fill='%23002395' d='M0 0h300v600H0z'/%3e%3c/svg%3e\"},9638:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 9 6'%3e%3cclipPath id='c'%3e%3cpath d='m0 0 4.5 3L0 6' id='b'/%3e%3c/clipPath%3e%3cclipPath id='a'%3e%3cpath d='M0 0h9v6H0z'/%3e%3c/clipPath%3e%3cg clip-path='url(%23a)'%3e%3cpath d='M0 0v6h9V0z' fill='%23001489'/%3e%3cpath d='M0 0v3h9V0z' fill='%23e03c31'/%3e%3cg stroke-width='2' stroke='%23fff'%3e%3cpath d='m0 0 4.5 3L0 6m4.5-3H9' id='d'/%3e%3cuse xlink:href='%23b' stroke='%23ffb81c' clip-path='url(%23c)'/%3e%3c/g%3e%3cuse xlink:href='%23d' fill='none' stroke='%23007749' stroke-width='1.2'/%3e%3c/g%3e%3c/svg%3e\"},6320:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2100 1400'%3e%3cpath fill='%23198a00' d='M0 0h2100v1400H0z'/%3e%3cpath fill='%23ef7d00' d='M1850 500h250v900h-250z'/%3e%3cpath d='M1600 500h250v900h-250z'/%3e%3cpath fill='%23de2010' d='M1350 500h250v900h-250z'/%3e%3cg fill='%23ef7d00' stroke='%23000' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M1916.425 168.334s86.002-33.706 94.334-40.656c3.79 4.17-34.476 46.564-108.731 62.2 67.435-14.594 125.023-60.462 136.768-59.072 3.41.695 2.65 44.826-151.923 83.05 106.837-25.715 168.97-72.973 168.213-67.76.757 1.042-10.608 37.18-104.185 65.327 26.141-5.56 96.987-45.174 96.23-37.529 2.272 3.128-68.574 86.524-196.627 59.421 102.292 24.324 168.59-34.402 178.062-33.36 1.895.348-18.944 51.429-147.753 54.556 61.755-5.907 43.946-.348 43.946-.348s-36.37 26.061-80.317 8.341c34.476 8.688 38.264 9.034 39.021 11.814-2.272 3.474-30.687 8.687-57.964-4.866 21.973 8.34 41.674 9.73 42.052 12.858-.378 1.042-14.395 8.34-26.897 3.128-12.502-5.214-127.676-70.193-127.676-70.193l196.249-49.343zm-230.712 175.771c-17.257 0-17.734 14.085-17.734 14.085s-1.424 1.017-.474 7.844c2.85-4.649 4.275-6.1 4.275-6.1 1.9.29 9.816 2.468 22.324-6.535-11.4 10.89-4.59 14.957-4.59 14.957s-2.692 8.568 6.014 10.311c-2.69-3.486-1.107-6.535-1.107-6.535s12.19-1.161 11.4-14.811c.475 12.341 7.758 15.391 7.758 15.391s0 6.825 7.915 7.407c-4.273-3.486-3.325-8.859-3.325-8.859s10.292-6.825 1.584-18.443c5.225-2.76 9.5-10.455 9.5-10.455s-7.124-2.76-10.449-5.082c-1.585-3.051-.158-19.75-.158-19.75l-4.276-21.639-12.192 33.693c.474-4.793.792 14.521-16.465 14.521z'/%3e%3cpath d='M1770.944 295.514c.378.348 12.882 13.206 25.004 12.51 4.545-3.474-9.472-11.119-9.472-12.857 4.925 4.17 25.762 20.501 39.023 14.594 5.303-6.95-9.472-5.906-25.763-24.671 11.365 6.95 39.78 22.239 53.04 16.332 5.685-5.56-29.551-22.936-41.296-36.487l-30.307-14.246-41.296 30.927zm-46.599-105.635s14.017-7.645 70.088-3.823c6.062.695 38.264-10.077 48.494-13.204 16.29-2.78 68.193-13.205 82.212-22.935 9.85-1.042-2.654 16.68-15.154 20.85-13.262 5.56-61.376 20.849-78.425 18.764 20.459.348 9.094 15.637-25.005 8.34 16.292 8.34 10.23 9.73 10.23 9.73s-28.792 1.39-36.37-4.518c19.323 6.602 11.366 9.035 11.366 9.035s-19.7 1.737-28.794-2.085c14.017 3.822 6.82 6.255 6.82 6.255s-11.365 1.737-20.837-1.39c-9.47-3.128-23.868-25.02-24.625-25.02zm22.482 112.837 2.06 33.982s-1.11 1.743-2.06 2.76c-.95 1.016-26.283-3.632-22.8 14.085 0 7.262.16 9.149 5.543 13.215-1.426-4.792-.95-8.131-.95-8.131s7.124 3.921 14.091-6.825c-4.75 10.6-1.426 14.376-.317 14.667 1.109 1.889-1.899 10.455 7.6 10.31-3.64-3.195-1.9-7.843-1.9-7.843s9.976-1.45 6.492-18.006c3.642-3.34 5.066-.145 5.066-.145s1.108 9.874 9.816 7.842c3.96 2.032-.632 7.405-.632 7.405s6.332.146 8.232-4.792c1.9-4.937 4.117-13.796-6.334-17.426-1.266-3.484 4.118-3.775 4.118-3.775s6.65 2.032 8.549 5.082c1.9 3.05 1.267-7.986-6.966-9.149-10.133-.291-10.766-2.178-10.766-2.613 0-.437-1.741-24.687-2.533-31.658z'/%3e%3cpath d='M1782.069 331.675c.124-1.558-17.286-23.059-12.869-25.838 4.415.833 11.656 10.613 17.522 7.438-1.778-3.811-7.018-1.665-12.97-11.423-5.948-11.032-6.817-27.593-27.654-45.658 13.49 19.116 44.092 30.322 45.388 24.748 1.296-5.575-26.946-26.653-25.5-31.733 5.617 10.433 33.975 33.678 54.868 31.753 1.432-4.475-17.11-13.508-21.881-21.942-13.347-8.224-49.065-36.462-49.78-43.011-12.998-17.387-21.111-22.647-24.89-24.65-1.46-1.577-1.826-3.085-2.112-4.044-8.068-17.446 2.619-23.11 8.874-23.949 5.147-.524 6.642.182 10.346-1.463-4.386-1.574-8.77-3.046-13.156-4.62 5.719 3.848 20.325.46 17.16 11.542 6.403-2.235 20.03-17.104-15.444-20.46-11.545-12.147-59.009-19.128-70.89 33.888.95.743 1.446 1.354 4.465 3.422-14.989-6.663-55.421-11.802-69.992-13.961-39.364-10.417-80.244-35.52-84.174-32.433-5.256 2.14 23.784 26.92 22.274 27.468-25.18-13.466-48.182-23.006-69.585-31.687-15.058-5.163-30.14-17.182-31.802-14.896-5.542 10.53 24.14 36.996 29.662 40.11 5.523 2.978 48.947 21.453 48.307 21.684-65.406-27.229-76.372-32.165-79.654-35.305-5.764-1.19-19.807-18.581-23.72-17.463-2.143 1.93 2.154 29.41 33.364 41.744 5.087 3.4 66.9 23.739 66.295 25.333-.15.399-70.798-26.743-73.542-27.714-13.621-4.899-30.334-22.07-33.459-20.14-2.982 1.753 7.705 20.339 21.468 26.168 7.215 2.92 34.887 15.492 59.819 23.493 1.591.527-44.815-16.141-67.126-24.693-10.116-5.15-14.88-11.568-16.42-10.187-2.28 1.38 3.682 28.837 75.38 44.33 1.888.737 25.237-5.074 24.083-4.303-.289.193-23.186 4.765-25.415 4.608-1.984-.278-14.528 1.362-14.755 1.959-.758 1.857 4.545 11.688 41.564 9.638 4.733-.261 30.416-8.579 28.258-6.79-1.08.896-34.973 10.997-37.554 11.196-2.242.291-14.15 1.433-14.59 2.595-.537 1.584 8.814 8.58 28.694 9.702 17.602.857 51.05-9.865 50.378-9.17-.67.695-32.244 10.618-33.07 11.223-1.142.593-12.704 1.168-13.11 1.982-.942 2.026 16.678 17.138 68.787 1.01-5.235 6.486-30.493 10.921-30.457 12.09-.117.847 5.565 5.882 14.396 7.684 4.415.9 10.46.717 15.982-.083 9.918-1.821 20.37-5.42 33.65-16.678 1.587 3.533-33.174 19.668-31.542 21.207 7.537 6.41 32.576-.827 34.216-1.667 1.641-.842 48.215-24.93 48.055-27.718.723 3.573-60.046 33.859-59.39 35.101 3.9 5.71 24.66-.3 25.652-.825.99-.523 26.493-13.16 27.192-13.532.697-.373-29.973 16.464-27.24 19.027-1.321 10.933 47.898-7.546 51.755-9.847 1.929-1.15-23.644 10.313-23.712 15.759 8.235 12.77 34.603 8.719 38.67 5.91 2.035-1.405-2.393 9.486-.967 8.497.497-.205 5.735-5.886 7.75-9.998-.643 3.568-3.534 9.189-5.22 15.638-1.69 6.449-2.173 13.726-4.49 21.458-.532 3.396 16.247-6.64 13.81-30.631 1.436 12.479-5.299 35.813-3.536 37.026 3.525 2.426 13.27-11.621 14.255-21.12 2.894 4.798 8.968 14.813 14.193 17.117-.569-7.258.1-6.925-2.252-14.059 1.357-9.47 1.546-22.578 1.874-37.38 14.199 24.948 19.862 35.483 15.895 54.588 4.222 1.615 10.966-13.335 10.422-21.03 5.422 21.381 28.825 24.587 29.197 23.965z'/%3e%3cpath d='M1545.575 173.288s-9.664 6.697-21.69 6.303c3.006 11.03 27.918 2.56 27.918 2.56s-12.027 12.213-20.617 14.183c5.154 3.94 26.845 2.56 30.497.591 3.65-1.97 10.093-9.652 10.093-9.652s-22.335 23.637-25.557 23.44c-.43 2.758 23.41 1.773 28.35-2.363 4.938-4.137 17.394-10.243 17.394-10.243s-32.643 20.88-34.147 20.88c12.241 2.954 36.724-3.546 52.402-12.41-23.195 14.182-25.34 16.743-37.153 21.47 10.524 2.167 15.89 8.668 51.542-5.515 20.403-8.864 31.998-25.016 31.998-25.016-12.67 15.561-32.644 28.76-54.762 41.76-1.29 2.363 23.622 12.014 55.406-18.32m60.992 18.122s2.148 9.258 10.738 16.35c8.592 7.09 9.236 13.984 9.236 13.984m-24.268-90.609s3.006 8.273 11.811 13.592c9.02 5.318 22.552 22.06 23.625 25.016 1.04 3.576 6.227 29.35 5.798 32.106'/%3e%3cpath d='M1659.184 191.606c.644 3.152-12.672 19.107 5.582 37.82-16.537 18.515-16.535 20.88-16.535 20.88s9.234 4.727 25.77-8.274c27.274 30.73 18.186 44.792 18.186 44.792'/%3e%3cpath d='M1690.014 265.13s-2.512-3.3 1.967-15.626c4.033 4.456 8.518 5.407 10.484 7.211 1.965 1.804 22.558 4.538 23.867 17.16m-12.109-124.443c0-.927-4.147-9.088-19.616 1.113 8.29.464 16.48 4.822 19.616-1.113zm147.646 37.319c.757.348 46.22 9.382 61.375 4.865-19.322 23.63-57.965 7.645-57.965 7.645 18.942 5.212 19.701 4.865 25.761 9.73 1.895 4.517-34.854 2.432-46.978-3.823 33.719 9.73 34.476 9.035 35.614 12.857 1.517 5.212-55.314-1.39-60.239-8.34 15.155 10.772 23.49 12.857 31.824 17.722-10.23 4.17-29.171 8.339-64.027-14.247 45.84 38.224 87.137 35.79 93.579 42.74-15.912 21.545-77.667-12.856-106.082-30.23-28.414-17.375 62.133 42.046 70.47 41.003-4.17 5.907-34.098.695-35.993-2.085'/%3e%3cpath d='M1873.613 226.712c-5.302.695-21.214.695-23.487.348m-317.866-60.076s34.576 16.743 49.18 15.562c-3.866 3.348-9.666 4.727-9.666 4.727 3.652 1.379 13.746 6.303 28.995 3.152-3.652 3.348-8.377 7.091-8.377 7.091s13.101 4.53 27.92-2.56c-4.51 5.12-7.089 8.863-7.089 8.863l10.31.591'/%3e%3c/g%3e%3c/svg%3e\"},7064:c=>{c.exports=\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 126'%3e%3cpath fill='%23319208' d='M0 0h252v126H0z'/%3e%3cpath fill='%23FFD200' d='M0 18h252v90H0z'/%3e%3cpath fill='%23DE2010' d='M0 36h252v54H0z'/%3e%3cpath d='M0 54h252v18H0z'/%3e%3cpath d='m4.583 0 84 63-84 63H0V0h4.583z'/%3e%3cpath fill='%23FFF' d='m0 0 84 63-84 63'/%3e%3cpath fill='%23DE2010' d='m46.161 66.045 18.273-12.934-21.029-3.055L34 31l-9.405 19.056-21.029 3.055 18.273 12.934-4.003 19.203L34 76l16.164 9.248z'/%3e%3cpath fill='%23FFC618' d='M28.635 55.109c1.976 4.305 2.47 4.588 7.411 6.282 4.94 1.694 18.898 3.3 20.274 3.458-.9-.9-16.621-12.545-19.85-14.875-3.229-2.329-4.129-3.388-4.129-3.388s-2.911-5.24-3.917-6.776c-1.006-1.535-2.858-3.705-5.293-3.705s-3.917 1.429-4.623 3.97c-.388.106-2.47 1.376-2.4 2.682.6-.071 4.376-1.129 5.682 3.141s1.376 11.257.035 14.716c-1.341 3.459-3.423 6.07-3.423 9.105 0 .423.282 1.27.988 1.27.247 1.341 2.223 10.904 2.223 10.904h28.161l4.473-17.292'/%3e%3cg fill='none' stroke='%23000' stroke-width='.212'%3e%3cpath d='M28.635 55.109c1.976 4.305 2.47 4.588 7.411 6.282 4.94 1.694 18.898 3.3 20.274 3.458-.9-.9-16.621-12.545-19.85-14.875-3.229-2.329-4.129-3.388-4.129-3.388s-2.911-5.24-3.917-6.776c-1.006-1.535-2.858-3.705-5.293-3.705s-3.917 1.429-4.623 3.97c-.388.106-2.47 1.376-2.4 2.682.6-.071 4.376-1.129 5.682 3.141s1.376 11.257.035 14.716c-1.341 3.459-3.423 6.07-3.423 9.105 0 .423.282 1.27.988 1.27.247 1.341 2.223 10.904 2.223 10.904h28.161l4.473-17.292'/%3e%3cpath d='M19.39 70.99s5.999-.353 7.623-.353c1.623 0 16.734.019 25.165 1.968'/%3e%3cpath d='M21.508 70.871s-.601-.728-.213-2.175c.388-1.447 4.623-5.188 4.623-10.481m-.776 12.422s-.494-2.364 4.905-4.376c1.518-.459 5.858-2.894 5.999-4.87'/%3e%3cpath d='M29.473 66.485s13.243.058 23.724 2.175m-20.404-3.755s4.551.156 5.292-.056c.741-.212 2.053-.762 2.575-2.313'/%3e%3cpath d='M35.49 64.959s2.434-1.265 2.911-2.911m-10.26 19.846s-1.041-7.216-1.253-11.257l2.717 2.594 2.875-2.514 2.472 2.638 2.858-2.425 2.471 2.778 2.83-2.407 2.252 2.618 2.822-2.041 3.355 3.189'/%3e%3cpath d='M50.951 77.345c-10.081-1.444-23.57-1.35-23.57-1.35m-4.687-24.943s8.2-3.918 9.647-4.465'/%3e%3c/g%3e%3cg transform='translate(16 36) scale(.21174)' fill='none' stroke='%23000'%3e%3cpath d='m52.487 177.086 13.018 11.852 11.762-11.762 11.896 12.266 12.846-11.358 11.827 12.43 13.339-11.013 10.897 12.728 13.27-10.145 13.947 12.319'/%3e%3ccircle cx='89.425' cy='154.584' r='5.167'/%3e%3ccircle cx='111.237' cy='156.047' r='5.167'/%3e%3ccircle cx='30.05' cy='16.5' r='4'/%3e%3c/g%3e%3c/svg%3e\"},4815:(c,a,e)=>{c.exports=e(6535)},8156:a=>{\"use strict\";a.exports=c},6535:c=>{\"use strict\";c.exports=JSON.parse('[{\"name\":{\"common\":\"Aruba\",\"official\":\"Aruba\",\"native\":{\"nld\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"pap\":{\"official\":\"Aruba\",\"common\":\"Aruba\"}}},\"tld\":[\".aw\"],\"cca2\":\"AW\",\"ccn3\":\"533\",\"cca3\":\"ABW\",\"cioc\":\"ARU\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"AWG\":{\"name\":\"Aruban florin\",\"symbol\":\"ƒ\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"97\"]},\"capital\":[\"Oranjestad\"],\"altSpellings\":[\"AW\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"nld\":\"Dutch\",\"pap\":\"Papiamento\"},\"translations\":{\"ces\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"deu\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"fra\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"hrv\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"ita\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"jpn\":{\"official\":\"アルバ\",\"common\":\"アルバ\"},\"nld\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"por\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"rus\":{\"official\":\"Аруба\",\"common\":\"Аруба\"},\"slk\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"spa\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"fin\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"est\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"zho\":{\"official\":\"阿鲁巴\",\"common\":\"阿鲁巴\"},\"pol\":{\"official\":\"Aruba\",\"common\":\"Aruba\"},\"urd\":{\"official\":\"اروبا\",\"common\":\"اروبا\"},\"kor\":{\"official\":\"아루바\",\"common\":\"아루바\"},\"per\":{\"official\":\"آروبا\",\"common\":\"آروبا\"}},\"latlng\":[12.5,-69.96666666],\"landlocked\":false,\"borders\":[],\"area\":180,\"flag\":\"🇦🇼\",\"demonyms\":{\"eng\":{\"f\":\"Aruban\",\"m\":\"Aruban\"},\"fra\":{\"f\":\"Arubaise\",\"m\":\"Arubais\"}}},{\"name\":{\"common\":\"Afghanistan\",\"official\":\"Islamic Republic of Afghanistan\",\"native\":{\"prs\":{\"official\":\"جمهوری اسلامی افغانستان\",\"common\":\"افغانستان\"},\"pus\":{\"official\":\"د افغانستان اسلامي جمهوریت\",\"common\":\"افغانستان\"},\"tuk\":{\"official\":\"Owganystan Yslam Respublikasy\",\"common\":\"Owganystan\"}}},\"tld\":[\".af\"],\"cca2\":\"AF\",\"ccn3\":\"004\",\"cca3\":\"AFG\",\"cioc\":\"AFG\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"AFN\":{\"name\":\"Afghan afghani\",\"symbol\":\"؋\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"3\"]},\"capital\":[\"Kabul\"],\"altSpellings\":[\"AF\",\"Afġānistān\"],\"region\":\"Asia\",\"subregion\":\"Southern Asia\",\"languages\":{\"prs\":\"Dari\",\"pus\":\"Pashto\",\"tuk\":\"Turkmen\"},\"translations\":{\"ces\":{\"official\":\"Afghánská islámská republika\",\"common\":\"Afghánistán\"},\"cym\":{\"official\":\"Gweriniaeth Islamaidd Affganistan\",\"common\":\"Affganistan\"},\"deu\":{\"official\":\"Islamische Republik Afghanistan\",\"common\":\"Afghanistan\"},\"fra\":{\"official\":\"République islamique d\\'Afghanistan\",\"common\":\"Afghanistan\"},\"hrv\":{\"official\":\"Islamska Republika Afganistan\",\"common\":\"Afganistan\"},\"ita\":{\"official\":\"Repubblica islamica dell\\'Afghanistan\",\"common\":\"Afghanistan\"},\"jpn\":{\"official\":\"アフガニスタン·イスラム共和国\",\"common\":\"アフガニスタン\"},\"nld\":{\"official\":\"Islamitische Republiek Afghanistan\",\"common\":\"Afghanistan\"},\"por\":{\"official\":\"República Islâmica do Afeganistão\",\"common\":\"Afeganistão\"},\"rus\":{\"official\":\"Исламская Республика Афганистан\",\"common\":\"Афганистан\"},\"slk\":{\"official\":\"Afgánsky islamský štát\",\"common\":\"Afganistan\"},\"spa\":{\"official\":\"República Islámica de Afganistán\",\"common\":\"Afganistán\"},\"fin\":{\"official\":\"Afganistanin islamilainen tasavalta\",\"common\":\"Afganistan\"},\"est\":{\"official\":\"Afganistani Islamivabariik\",\"common\":\"Afganistan\"},\"zho\":{\"official\":\"阿富汗伊斯兰共和国\",\"common\":\"阿富汗\"},\"pol\":{\"official\":\"Islamska Republika Afganistanu\",\"common\":\"Afganistan\"},\"urd\":{\"official\":\"اسلامی جمہوریہ افغانستان\",\"common\":\"افغانستان\"},\"kor\":{\"official\":\"아프가니스탄 이슬람 공화국\",\"common\":\"아프가니스탄\"},\"per\":{\"official\":\"جمهوری اسلامی افغانستان\",\"common\":\"افغانستان\"}},\"latlng\":[33,65],\"landlocked\":true,\"borders\":[\"IRN\",\"PAK\",\"TKM\",\"UZB\",\"TJK\",\"CHN\"],\"area\":652230,\"flag\":\"🇦🇫\",\"demonyms\":{\"eng\":{\"f\":\"Afghan\",\"m\":\"Afghan\"},\"fra\":{\"f\":\"Afghane\",\"m\":\"Afghan\"}}},{\"name\":{\"common\":\"Angola\",\"official\":\"Republic of Angola\",\"native\":{\"por\":{\"official\":\"República de Angola\",\"common\":\"Angola\"}}},\"tld\":[\".ao\"],\"cca2\":\"AO\",\"ccn3\":\"024\",\"cca3\":\"AGO\",\"cioc\":\"ANG\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"AOA\":{\"name\":\"Angolan kwanza\",\"symbol\":\"Kz\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"44\"]},\"capital\":[\"Luanda\"],\"altSpellings\":[\"AO\",\"República de Angola\",\"ʁɛpublika de an\\'ɡɔla\"],\"region\":\"Africa\",\"subregion\":\"Middle Africa\",\"languages\":{\"por\":\"Portuguese\"},\"translations\":{\"ces\":{\"official\":\"Angolská republika\",\"common\":\"Angola\"},\"cym\":{\"official\":\"Gweriniaeth Angola\",\"common\":\"Angola\"},\"deu\":{\"official\":\"Republik Angola\",\"common\":\"Angola\"},\"fra\":{\"official\":\"République d\\'Angola\",\"common\":\"Angola\"},\"hrv\":{\"official\":\"Republika Angola\",\"common\":\"Angola\"},\"ita\":{\"official\":\"Repubblica dell\\'Angola\",\"common\":\"Angola\"},\"jpn\":{\"official\":\"アンゴラ共和国\",\"common\":\"アンゴラ\"},\"nld\":{\"official\":\"Republiek Angola\",\"common\":\"Angola\"},\"por\":{\"official\":\"República de Angola\",\"common\":\"Angola\"},\"rus\":{\"official\":\"Республика Ангола\",\"common\":\"Ангола\"},\"slk\":{\"official\":\"Angolská republika\",\"common\":\"Angola\"},\"spa\":{\"official\":\"República de Angola\",\"common\":\"Angola\"},\"fin\":{\"official\":\"Angolan tasavalta\",\"common\":\"Angola\"},\"est\":{\"official\":\"Angola Vabariik\",\"common\":\"Angola\"},\"zho\":{\"official\":\"安哥拉共和国\",\"common\":\"安哥拉\"},\"pol\":{\"official\":\"Republika Angoli\",\"common\":\"Angola\"},\"urd\":{\"official\":\"جمہوریہ انگولہ\",\"common\":\"انگولہ\"},\"kor\":{\"official\":\"앙골라 공화국\",\"common\":\"앙골라\"},\"per\":{\"official\":\"جمهوری آنگولا\",\"common\":\"آنگولا\"}},\"latlng\":[-12.5,18.5],\"landlocked\":false,\"borders\":[\"COG\",\"COD\",\"ZMB\",\"NAM\"],\"area\":1246700,\"flag\":\"🇦🇴\",\"demonyms\":{\"eng\":{\"f\":\"Angolan\",\"m\":\"Angolan\"},\"fra\":{\"f\":\"Angolaise\",\"m\":\"Angolais\"}}},{\"name\":{\"common\":\"Anguilla\",\"official\":\"Anguilla\",\"native\":{\"eng\":{\"official\":\"Anguilla\",\"common\":\"Anguilla\"}}},\"tld\":[\".ai\"],\"cca2\":\"AI\",\"ccn3\":\"660\",\"cca3\":\"AIA\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"XCD\":{\"name\":\"Eastern Caribbean dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"264\"]},\"capital\":[\"The Valley\"],\"altSpellings\":[\"AI\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Anguilla\",\"common\":\"Anguilla\"},\"deu\":{\"official\":\"Anguilla\",\"common\":\"Anguilla\"},\"fra\":{\"official\":\"Anguilla\",\"common\":\"Anguilla\"},\"hrv\":{\"official\":\"Anguilla\",\"common\":\"Angvila\"},\"ita\":{\"official\":\"Anguilla\",\"common\":\"Anguilla\"},\"jpn\":{\"official\":\"アングィラ\",\"common\":\"アンギラ\"},\"nld\":{\"official\":\"Anguilla\",\"common\":\"Anguilla\"},\"por\":{\"official\":\"Anguilla\",\"common\":\"Anguilla\"},\"rus\":{\"official\":\"Ангилья\",\"common\":\"Ангилья\"},\"slk\":{\"official\":\"Anguilla\",\"common\":\"Anguilla\"},\"spa\":{\"official\":\"Anguila\",\"common\":\"Anguilla\"},\"fin\":{\"official\":\"Anguilla\",\"common\":\"Anguilla\"},\"est\":{\"official\":\"Anguilla\",\"common\":\"Anguilla\"},\"zho\":{\"official\":\"安圭拉\",\"common\":\"安圭拉\"},\"pol\":{\"official\":\"Anguilla\",\"common\":\"Anguilla\"},\"urd\":{\"official\":\"اینگویلا\",\"common\":\"اینگویلا\"},\"kor\":{\"official\":\"앵귈라\",\"common\":\"앵귈라\"},\"per\":{\"official\":\"آنگویلا\",\"common\":\"آنگویلا\"}},\"latlng\":[18.25,-63.16666666],\"landlocked\":false,\"borders\":[],\"area\":91,\"flag\":\"🇦🇮\",\"demonyms\":{\"eng\":{\"f\":\"Anguillian\",\"m\":\"Anguillian\"},\"fra\":{\"f\":\"Anguillane\",\"m\":\"Anguillan\"}}},{\"name\":{\"common\":\"Åland Islands\",\"official\":\"Åland Islands\",\"native\":{\"swe\":{\"official\":\"Landskapet Åland\",\"common\":\"Åland\"}}},\"tld\":[\".ax\"],\"cca2\":\"AX\",\"ccn3\":\"248\",\"cca3\":\"ALA\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"5818\"]},\"capital\":[\"Mariehamn\"],\"altSpellings\":[\"AX\",\"Aaland\",\"Aland\",\"Ahvenanmaa\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"swe\":\"Swedish\"},\"translations\":{\"ces\":{\"official\":\"Ålandské ostrovy\",\"common\":\"Ålandy\"},\"deu\":{\"official\":\"Åland-Inseln\",\"common\":\"Åland\"},\"fra\":{\"official\":\"Ahvenanmaa\",\"common\":\"Ahvenanmaa\"},\"hrv\":{\"official\":\"Aland Islands\",\"common\":\"Ålandski otoci\"},\"ita\":{\"official\":\"Isole Åland\",\"common\":\"Isole Aland\"},\"jpn\":{\"official\":\"オーランド諸島\",\"common\":\"オーランド諸島\"},\"nld\":{\"official\":\"Åland eilanden\",\"common\":\"Ålandeilanden\"},\"por\":{\"official\":\"Ilhas Åland\",\"common\":\"Alândia\"},\"rus\":{\"official\":\"Аландские острова\",\"common\":\"Аландские острова\"},\"slk\":{\"official\":\"Alandské ostrovy\",\"common\":\"Alandy\"},\"spa\":{\"official\":\"Islas Åland\",\"common\":\"Alandia\"},\"fin\":{\"official\":\"Ahvenanmaan maakunta\",\"common\":\"Ahvenanmaa\"},\"est\":{\"official\":\"Ahvenamaa maakond\",\"common\":\"Ahvenamaa\"},\"zho\":{\"official\":\"奥兰群岛\",\"common\":\"奥兰群岛\"},\"pol\":{\"official\":\"Wyspy Alandzkie\",\"common\":\"Wyspy Alandzkie\"},\"urd\":{\"official\":\"جزائر اولند\",\"common\":\"جزائر اولند\"},\"kor\":{\"official\":\"올란드 제도\",\"common\":\"올란드 제도\"},\"per\":{\"official\":\"جزایر الند\",\"common\":\"جزایر الند\"}},\"latlng\":[60.116667,19.9],\"landlocked\":false,\"borders\":[],\"area\":1580,\"flag\":\"🇦🇽\",\"demonyms\":{\"eng\":{\"f\":\"Ålandish\",\"m\":\"Ålandish\"},\"fra\":{\"f\":\"Ålandaise\",\"m\":\"Ålandais\"}}},{\"name\":{\"common\":\"Albania\",\"official\":\"Republic of Albania\",\"native\":{\"sqi\":{\"official\":\"Republika e Shqipërisë\",\"common\":\"Shqipëria\"}}},\"tld\":[\".al\"],\"cca2\":\"AL\",\"ccn3\":\"008\",\"cca3\":\"ALB\",\"cioc\":\"ALB\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"ALL\":{\"name\":\"Albanian lek\",\"symbol\":\"L\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"55\"]},\"capital\":[\"Tirana\"],\"altSpellings\":[\"AL\",\"Shqipëri\",\"Shqipëria\",\"Shqipnia\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"sqi\":\"Albanian\"},\"translations\":{\"ces\":{\"official\":\"Albánská republika\",\"common\":\"Albánie\"},\"cym\":{\"official\":\"Gweriniaeth Albania\",\"common\":\"Albania\"},\"deu\":{\"official\":\"Republik Albanien\",\"common\":\"Albanien\"},\"fra\":{\"official\":\"République d\\'Albanie\",\"common\":\"Albanie\"},\"hrv\":{\"official\":\"Republika Albanija\",\"common\":\"Albanija\"},\"ita\":{\"official\":\"Repubblica d\\'Albania\",\"common\":\"Albania\"},\"jpn\":{\"official\":\"アルバニア共和国\",\"common\":\"アルバニア\"},\"nld\":{\"official\":\"Republiek Albanië\",\"common\":\"Albanië\"},\"por\":{\"official\":\"República da Albânia\",\"common\":\"Albânia\"},\"rus\":{\"official\":\"Республика Албания\",\"common\":\"Албания\"},\"slk\":{\"official\":\"Albánska republika\",\"common\":\"Albánsko\"},\"spa\":{\"official\":\"República de Albania\",\"common\":\"Albania\"},\"fin\":{\"official\":\"Albanian tasavalta\",\"common\":\"Albania\"},\"est\":{\"official\":\"Albaania Vabariik\",\"common\":\"Albaania\"},\"zho\":{\"official\":\"阿尔巴尼亚共和国\",\"common\":\"阿尔巴尼亚\"},\"pol\":{\"official\":\"Republika Albanii\",\"common\":\"Albania\"},\"urd\":{\"official\":\"جمہوریہ البانیا\",\"common\":\"البانیا\"},\"kor\":{\"official\":\"알바니아 공화국\",\"common\":\"알바니아\"},\"per\":{\"official\":\"جمهوری آلبانی\",\"common\":\"آلبانی\"}},\"latlng\":[41,20],\"landlocked\":false,\"borders\":[\"MNE\",\"GRC\",\"MKD\",\"UNK\"],\"area\":28748,\"flag\":\"🇦🇱\",\"demonyms\":{\"eng\":{\"f\":\"Albanian\",\"m\":\"Albanian\"},\"fra\":{\"f\":\"Albanaise\",\"m\":\"Albanais\"}}},{\"name\":{\"common\":\"Andorra\",\"official\":\"Principality of Andorra\",\"native\":{\"cat\":{\"official\":\"Principat d\\'Andorra\",\"common\":\"Andorra\"}}},\"tld\":[\".ad\"],\"cca2\":\"AD\",\"ccn3\":\"020\",\"cca3\":\"AND\",\"cioc\":\"AND\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"76\"]},\"capital\":[\"Andorra la Vella\"],\"altSpellings\":[\"AD\",\"Principality of Andorra\",\"Principat d\\'Andorra\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"cat\":\"Catalan\"},\"translations\":{\"ces\":{\"official\":\"Andorrské knížectví\",\"common\":\"Andorra\"},\"cym\":{\"official\":\"Tywysogaeth Andorra\",\"common\":\"Andorra\"},\"deu\":{\"official\":\"Fürstentum Andorra\",\"common\":\"Andorra\"},\"fra\":{\"official\":\"Principauté d\\'Andorre\",\"common\":\"Andorre\"},\"hrv\":{\"official\":\"Kneževina Andora\",\"common\":\"Andora\"},\"ita\":{\"official\":\"Principato di Andorra\",\"common\":\"Andorra\"},\"jpn\":{\"official\":\"アンドラ公国\",\"common\":\"アンドラ\"},\"nld\":{\"official\":\"Prinsdom Andorra\",\"common\":\"Andorra\"},\"por\":{\"official\":\"Principado de Andorra\",\"common\":\"Andorra\"},\"rus\":{\"official\":\"Княжество Андорра\",\"common\":\"Андорра\"},\"slk\":{\"official\":\"Andorrské kniežatstvo\",\"common\":\"Andorra\"},\"spa\":{\"official\":\"Principado de Andorra\",\"common\":\"Andorra\"},\"fin\":{\"official\":\"Andorran ruhtinaskunta\",\"common\":\"Andorra\"},\"est\":{\"official\":\"Andorra Vürstiriik\",\"common\":\"Andorra\"},\"zho\":{\"official\":\"安道尔公国\",\"common\":\"安道尔\"},\"pol\":{\"official\":\"Księstwo Andory\",\"common\":\"Andora\"},\"urd\":{\"official\":\"اماراتِ انڈورا\",\"common\":\"انڈورا\"},\"kor\":{\"official\":\"안도라 공국\",\"common\":\"안도라\"},\"per\":{\"official\":\"شاهزادهنشین آندورا\",\"common\":\"آندورا\"}},\"latlng\":[42.5,1.5],\"landlocked\":true,\"borders\":[\"FRA\",\"ESP\"],\"area\":468,\"flag\":\"🇦🇩\",\"demonyms\":{\"eng\":{\"f\":\"Andorran\",\"m\":\"Andorran\"},\"fra\":{\"f\":\"Andorrane\",\"m\":\"Andorran\"}}},{\"name\":{\"common\":\"United Arab Emirates\",\"official\":\"United Arab Emirates\",\"native\":{\"ara\":{\"official\":\"الإمارات العربية المتحدة\",\"common\":\"دولة الإمارات العربية المتحدة\"}}},\"tld\":[\".ae\",\"امارات.\"],\"cca2\":\"AE\",\"ccn3\":\"784\",\"cca3\":\"ARE\",\"cioc\":\"UAE\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"AED\":{\"name\":\"United Arab Emirates dirham\",\"symbol\":\"د.إ\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"71\"]},\"capital\":[\"Abu Dhabi\"],\"altSpellings\":[\"AE\",\"UAE\",\"Emirates\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Spojené arabské emiráty\",\"common\":\"Spojené arabské emiráty\"},\"deu\":{\"official\":\"Vereinigte Arabische Emirate\",\"common\":\"Vereinigte Arabische Emirate\"},\"fra\":{\"official\":\"Émirats arabes unis\",\"common\":\"Émirats arabes unis\"},\"hrv\":{\"official\":\"Ujedinjeni Arapski Emirati\",\"common\":\"Ujedinjeni Arapski Emirati\"},\"ita\":{\"official\":\"Emirati Arabi Uniti\",\"common\":\"Emirati Arabi Uniti\"},\"jpn\":{\"official\":\"アラブ首長国連邦\",\"common\":\"アラブ首長国連邦\"},\"nld\":{\"official\":\"Verenigde Arabische Emiraten\",\"common\":\"Verenigde Arabische Emiraten\"},\"por\":{\"official\":\"Emirados Árabes Unidos\",\"common\":\"Emirados Árabes Unidos\"},\"rus\":{\"official\":\"Объединенные Арабские Эмираты\",\"common\":\"Объединённые Арабские Эмираты\"},\"slk\":{\"official\":\"Spojené arabské emiráty\",\"common\":\"Spojené arabské emiráty\"},\"spa\":{\"official\":\"Emiratos Árabes Unidos\",\"common\":\"Emiratos Árabes Unidos\"},\"fin\":{\"official\":\"Yhdistyneet arabiemiirikunnat\",\"common\":\"Arabiemiraatit\"},\"est\":{\"official\":\"Araabia Ühendemiraadid\",\"common\":\"Araabia Ühendemiraadid\"},\"zho\":{\"official\":\"阿拉伯联合酋长国\",\"common\":\"阿拉伯联合酋长国\"},\"pol\":{\"official\":\"Zjednoczone Emiraty Arabskie\",\"common\":\"Zjednoczone Emiraty Arabskie\"},\"urd\":{\"official\":\"متحدہ عرب امارات\",\"common\":\"متحدہ عرب امارات\"},\"kor\":{\"official\":\"아랍 토후국 연방\",\"common\":\"아랍에미리트\"},\"per\":{\"official\":\"امارات متحده عربی\",\"common\":\"امارات\"}},\"latlng\":[24,54],\"landlocked\":false,\"borders\":[\"OMN\",\"SAU\"],\"area\":83600,\"flag\":\"🇦🇪\",\"demonyms\":{\"eng\":{\"f\":\"Emirati\",\"m\":\"Emirati\"},\"fra\":{\"f\":\"Emirienne\",\"m\":\"Emirien\"}}},{\"name\":{\"common\":\"Argentina\",\"official\":\"Argentine Republic\",\"native\":{\"grn\":{\"official\":\"Argentine Republic\",\"common\":\"Argentina\"},\"spa\":{\"official\":\"República Argentina\",\"common\":\"Argentina\"}}},\"tld\":[\".ar\"],\"cca2\":\"AR\",\"ccn3\":\"032\",\"cca3\":\"ARG\",\"cioc\":\"ARG\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"ARS\":{\"name\":\"Argentine peso\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"4\"]},\"capital\":[\"Buenos Aires\"],\"altSpellings\":[\"AR\",\"Argentine Republic\",\"República Argentina\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"grn\":\"Guaraní\",\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Argentinská republika\",\"common\":\"Argentina\"},\"cym\":{\"official\":\"Gweriniaeth yr Ariannin\",\"common\":\"Ariannin\"},\"deu\":{\"official\":\"Argentinische Republik\",\"common\":\"Argentinien\"},\"fra\":{\"official\":\"République argentine\",\"common\":\"Argentine\"},\"hrv\":{\"official\":\"Argentinski Republika\",\"common\":\"Argentina\"},\"ita\":{\"official\":\"Repubblica Argentina\",\"common\":\"Argentina\"},\"jpn\":{\"official\":\"アルゼンチン共和国\",\"common\":\"アルゼンチン\"},\"nld\":{\"official\":\"Argentijnse Republiek\",\"common\":\"Argentinië\"},\"por\":{\"official\":\"República Argentina\",\"common\":\"Argentina\"},\"rus\":{\"official\":\"Аргентинская Республика\",\"common\":\"Аргентина\"},\"slk\":{\"official\":\"Argentínska republika\",\"common\":\"Argentína\"},\"spa\":{\"official\":\"República Argentina\",\"common\":\"Argentina\"},\"fin\":{\"official\":\"Argentiinan tasavalta\",\"common\":\"Argentiina\"},\"est\":{\"official\":\"Argentina Vabariik\",\"common\":\"Argentina\"},\"zho\":{\"official\":\"阿根廷共和国\",\"common\":\"阿根廷\"},\"pol\":{\"official\":\"Republika Argentyńska\",\"common\":\"Argentyna\"},\"urd\":{\"official\":\"جمہوریہ ارجنٹائن\",\"common\":\"ارجنٹائن\"},\"kor\":{\"official\":\"아르헨티나 공화국\",\"common\":\"아르헨티나\"},\"per\":{\"official\":\"جمهوری آرژانتین\",\"common\":\"آرژانتین\"}},\"latlng\":[-34,-64],\"landlocked\":false,\"borders\":[\"BOL\",\"BRA\",\"CHL\",\"PRY\",\"URY\"],\"area\":2780400,\"flag\":\"🇦🇷\",\"demonyms\":{\"eng\":{\"f\":\"Argentine\",\"m\":\"Argentine\"},\"fra\":{\"f\":\"Argentine\",\"m\":\"Argentin\"}}},{\"name\":{\"common\":\"Armenia\",\"official\":\"Republic of Armenia\",\"native\":{\"hye\":{\"official\":\"Հայաստանի Հանրապետություն\",\"common\":\"Հայաստան\"}}},\"tld\":[\".am\"],\"cca2\":\"AM\",\"ccn3\":\"051\",\"cca3\":\"ARM\",\"cioc\":\"ARM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"AMD\":{\"name\":\"Armenian dram\",\"symbol\":\"֏\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"74\"]},\"capital\":[\"Yerevan\"],\"altSpellings\":[\"AM\",\"Hayastan\",\"Republic of Armenia\",\"Հայաստանի Հանրապետություն\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"hye\":\"Armenian\"},\"translations\":{\"ces\":{\"official\":\"Arménská republika\",\"common\":\"Arménie\"},\"cym\":{\"official\":\"Gweriniaeth Armenia\",\"common\":\"Armenia\"},\"deu\":{\"official\":\"Republik Armenien\",\"common\":\"Armenien\"},\"fra\":{\"official\":\"République d\\'Arménie\",\"common\":\"Arménie\"},\"hrv\":{\"official\":\"Republika Armenija\",\"common\":\"Armenija\"},\"ita\":{\"official\":\"Repubblica di Armenia\",\"common\":\"Armenia\"},\"jpn\":{\"official\":\"アルメニア共和国\",\"common\":\"アルメニア\"},\"nld\":{\"official\":\"Republiek Armenië\",\"common\":\"Armenië\"},\"por\":{\"official\":\"República da Arménia\",\"common\":\"Arménia\"},\"rus\":{\"official\":\"Республика Армения\",\"common\":\"Армения\"},\"slk\":{\"official\":\"Arménska republika\",\"common\":\"Arménsko\"},\"spa\":{\"official\":\"República de Armenia\",\"common\":\"Armenia\"},\"fin\":{\"official\":\"Armenian tasavalta\",\"common\":\"Armenia\"},\"est\":{\"official\":\"Armeenia Vabariik\",\"common\":\"Armeenia\"},\"zho\":{\"official\":\"亚美尼亚共和国\",\"common\":\"亚美尼亚\"},\"pol\":{\"official\":\"Republika Armenii\",\"common\":\"Armenia\"},\"urd\":{\"official\":\"جمہوریہ آرمینیا\",\"common\":\"آرمینیا\"},\"kor\":{\"official\":\"아르메니아 공화국\",\"common\":\"아르메니아\"},\"per\":{\"official\":\"جمهوری ارمنستان\",\"common\":\"ارمنستان\"}},\"latlng\":[40,45],\"landlocked\":true,\"borders\":[\"AZE\",\"GEO\",\"IRN\",\"TUR\"],\"area\":29743,\"flag\":\"🇦🇲\",\"demonyms\":{\"eng\":{\"f\":\"Armenian\",\"m\":\"Armenian\"},\"fra\":{\"f\":\"Arménienne\",\"m\":\"Arménien\"}}},{\"name\":{\"common\":\"American Samoa\",\"official\":\"American Samoa\",\"native\":{\"eng\":{\"official\":\"American Samoa\",\"common\":\"American Samoa\"},\"smo\":{\"official\":\"Sāmoa Amelika\",\"common\":\"Sāmoa Amelika\"}}},\"tld\":[\".as\"],\"cca2\":\"AS\",\"ccn3\":\"016\",\"cca3\":\"ASM\",\"cioc\":\"ASA\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"684\"]},\"capital\":[\"Pago Pago\"],\"altSpellings\":[\"AS\",\"Amerika Sāmoa\",\"Amelika Sāmoa\",\"Sāmoa Amelika\"],\"region\":\"Oceania\",\"subregion\":\"Polynesia\",\"languages\":{\"eng\":\"English\",\"smo\":\"Samoan\"},\"translations\":{\"ces\":{\"official\":\"Americká Samoa\",\"common\":\"Americká Samoa\"},\"deu\":{\"official\":\"Amerikanisch-Samoa\",\"common\":\"Amerikanisch-Samoa\"},\"fra\":{\"official\":\"Samoa américaines\",\"common\":\"Samoa américaines\"},\"hrv\":{\"official\":\"američka Samoa\",\"common\":\"Američka Samoa\"},\"ita\":{\"official\":\"Samoa americane\",\"common\":\"Samoa Americane\"},\"jpn\":{\"official\":\"米サモア\",\"common\":\"アメリカ領サモア\"},\"nld\":{\"official\":\"Amerikaans Samoa\",\"common\":\"Amerikaans Samoa\"},\"por\":{\"official\":\"Samoa americana\",\"common\":\"Samoa Americana\"},\"rus\":{\"official\":\"американское Самоа\",\"common\":\"Американское Самоа\"},\"slk\":{\"official\":\"Americká Samoa\",\"common\":\"Americká Samoa\"},\"spa\":{\"official\":\"Samoa Americana\",\"common\":\"Samoa Americana\"},\"fin\":{\"official\":\"Amerikan Samoa\",\"common\":\"Amerikan Samoa\"},\"est\":{\"official\":\"Ameerika Samoa\",\"common\":\"Ameerika Samoa\"},\"zho\":{\"official\":\"美属萨摩亚\",\"common\":\"美属萨摩亚\"},\"pol\":{\"official\":\"Samoa Amerykańskie\",\"common\":\"Samoa Amerykańskie\"},\"urd\":{\"official\":\"امریکی سمووا\",\"common\":\"امریکی سمووا\"},\"kor\":{\"official\":\"아메리칸사모아\",\"common\":\"아메리칸사모아\"},\"per\":{\"official\":\"ساموآی آمریکا\",\"common\":\"ساموآی آمریکا\"}},\"latlng\":[-14.33333333,-170],\"landlocked\":false,\"borders\":[],\"area\":199,\"flag\":\"🇦🇸\",\"demonyms\":{\"eng\":{\"f\":\"American Samoan\",\"m\":\"American Samoan\"},\"fra\":{\"f\":\"Samoane\",\"m\":\"Samoan\"}}},{\"name\":{\"common\":\"Antarctica\",\"official\":\"Antarctica\",\"native\":{}},\"tld\":[\".aq\"],\"cca2\":\"AQ\",\"ccn3\":\"010\",\"cca3\":\"ATA\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":[],\"idd\":{\"root\":\"\",\"suffixes\":[]},\"capital\":[\"\"],\"altSpellings\":[\"AQ\"],\"region\":\"Antarctic\",\"subregion\":\"\",\"languages\":{},\"translations\":{\"ces\":{\"official\":\"Antarktida\",\"common\":\"Antarktida\"},\"cym\":{\"official\":\"Yr Antarctig\",\"common\":\"Yr Antarctig\"},\"deu\":{\"official\":\"Antarktika\",\"common\":\"Antarktis\"},\"fra\":{\"official\":\"Antarctique\",\"common\":\"Antarctique\"},\"hrv\":{\"official\":\"Antarktika\",\"common\":\"Antarktika\"},\"ita\":{\"official\":\"Antartide\",\"common\":\"Antartide\"},\"jpn\":{\"official\":\"南極大陸\",\"common\":\"南極\"},\"nld\":{\"official\":\"Antarctica\",\"common\":\"Antarctica\"},\"por\":{\"official\":\"Antártica\",\"common\":\"Antártida\"},\"rus\":{\"official\":\"Антарктида\",\"common\":\"Антарктида\"},\"slk\":{\"official\":\"Antarktída\",\"common\":\"Antarktída\"},\"spa\":{\"official\":\"Antártida\",\"common\":\"Antártida\"},\"fin\":{\"official\":\"Etelämanner\",\"common\":\"Etelämanner\"},\"est\":{\"official\":\"Antarktika\",\"common\":\"Antarktika\"},\"zho\":{\"official\":\"南极洲\",\"common\":\"南极洲\"},\"pol\":{\"official\":\"Antarktyka\",\"common\":\"Antarktyka\"},\"urd\":{\"official\":\"انٹارکٹکا\",\"common\":\"انٹارکٹکا\"},\"kor\":{\"official\":\"남극\",\"common\":\"남극\"},\"per\":{\"official\":\"جنوبگان\",\"common\":\"جنوبگان\"}},\"latlng\":[-90,0],\"landlocked\":false,\"borders\":[],\"area\":14000000,\"flag\":\"🇦🇶\",\"demonyms\":{\"eng\":{\"f\":\"Antarctican\",\"m\":\"Antarctican\"},\"fra\":{\"f\":\"Antarcticaine\",\"m\":\"Antarcticain\"}}},{\"name\":{\"common\":\"French Southern and Antarctic Lands\",\"official\":\"Territory of the French Southern and Antarctic Lands\",\"native\":{\"fra\":{\"official\":\"Territoire des Terres australes et antarctiques françaises\",\"common\":\"Terres australes et antarctiques françaises\"}}},\"tld\":[\".tf\"],\"cca2\":\"TF\",\"ccn3\":\"260\",\"cca3\":\"ATF\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"62\"]},\"capital\":[\"Port-aux-Français\"],\"altSpellings\":[\"TF\",\"French Southern Territories\"],\"region\":\"Antarctic\",\"subregion\":\"\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Teritorium Francouzská jižní a antarktická území\",\"common\":\"Francouzská jižní a antarktická území\"},\"deu\":{\"official\":\"Gebiet der Französisch Süd- und Antarktisgebiete\",\"common\":\"Französische Süd- und Antarktisgebiete\"},\"fra\":{\"official\":\"Territoire des Terres australes et antarctiques françaises\",\"common\":\"Terres australes et antarctiques françaises\"},\"hrv\":{\"official\":\"Teritoriju Francuski južni i antarktički teritoriji\",\"common\":\"Francuski južni i antarktički teritoriji\"},\"ita\":{\"official\":\"Territorio della australi e antartiche francesi Terre\",\"common\":\"Territori Francesi del Sud\"},\"jpn\":{\"official\":\"フランス領南方·南極地域の領土\",\"common\":\"フランス領南方・南極地域\"},\"nld\":{\"official\":\"Grondgebied van de Franse Zuidelijke en Antarctische gebieden\",\"common\":\"Franse Gebieden in de zuidelijke Indische Oceaan\"},\"por\":{\"official\":\"Território do Sul e Antártica Francesa\",\"common\":\"Terras Austrais e Antárticas Francesas\"},\"rus\":{\"official\":\"Территория Французские Южные и Антарктические земли\",\"common\":\"Французские Южные и Антарктические территории\"},\"slk\":{\"official\":\"Francúzske južné a antarktické územia\",\"common\":\"Francúzske juŽné a antarktické územia\"},\"spa\":{\"official\":\"Territorio del Francés Tierras australes y antárticas\",\"common\":\"Tierras Australes y Antárticas Francesas\"},\"fin\":{\"official\":\"Ranskan eteläiset ja antarktiset alueet\",\"common\":\"Ranskan eteläiset ja antarktiset alueet\"},\"est\":{\"official\":\"Prantsuse Lõunaalad\",\"common\":\"Prantsuse Lõunaalad\"},\"zho\":{\"official\":\"法国南部和南极土地\",\"common\":\"法国南部和南极土地\"},\"pol\":{\"official\":\"Francuskie Terytoria Południowe i Antarktyczne\",\"common\":\"Francuskie Terytoria Południowe i Antarktyczne\"},\"urd\":{\"official\":\"سرزمینِ جنوبی فرانسیسیہ و انٹارکٹیکہ\",\"common\":\"سرزمین جنوبی فرانسیسیہ و انٹارکٹیکا\"},\"kor\":{\"official\":\"프랑스령 남부와 남극 지역\",\"common\":\"프랑스령 남부와 남극 지역\"},\"per\":{\"official\":\"سرزمینهای جنوبی و جنوبگانی فرانسه\",\"common\":\"سرزمینهای جنوبی و جنوبگانی فرانسه\"}},\"latlng\":[-49.25,69.167],\"landlocked\":false,\"borders\":[],\"area\":7747,\"flag\":\"🇹🇫\",\"demonyms\":{\"eng\":{\"f\":\"French\",\"m\":\"French\"},\"fra\":{\"f\":\"Française\",\"m\":\"Français\"}}},{\"name\":{\"common\":\"Antigua and Barbuda\",\"official\":\"Antigua and Barbuda\",\"native\":{\"eng\":{\"official\":\"Antigua and Barbuda\",\"common\":\"Antigua and Barbuda\"}}},\"tld\":[\".ag\"],\"cca2\":\"AG\",\"ccn3\":\"028\",\"cca3\":\"ATG\",\"cioc\":\"ANT\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XCD\":{\"name\":\"Eastern Caribbean dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"268\"]},\"capital\":[\"Saint John\\'s\"],\"altSpellings\":[\"AG\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Antigua a Barbuda\",\"common\":\"Antigua a Barbuda\"},\"cym\":{\"official\":\"Antigwa a Barbiwda\",\"common\":\"Antigwa a Barbiwda\"},\"deu\":{\"official\":\"Antigua und Barbuda\",\"common\":\"Antigua und Barbuda\"},\"fra\":{\"official\":\"Antigua -et-Barbuda\",\"common\":\"Antigua-et-Barbuda\"},\"hrv\":{\"official\":\"Antigva i Barbuda\",\"common\":\"Antigva i Barbuda\"},\"ita\":{\"official\":\"Antigua e Barbuda\",\"common\":\"Antigua e Barbuda\"},\"jpn\":{\"official\":\"アンチグアバーブーダ\",\"common\":\"アンティグア・バーブーダ\"},\"nld\":{\"official\":\"Antigua en Barbuda\",\"common\":\"Antigua en Barbuda\"},\"por\":{\"official\":\"Antigua e Barbuda\",\"common\":\"Antígua e Barbuda\"},\"rus\":{\"official\":\"Антигуа и Барбуда\",\"common\":\"Антигуа и Барбуда\"},\"slk\":{\"official\":\"Antigua a Barbuda\",\"common\":\"Antigua a Barbuda\"},\"spa\":{\"official\":\"Antigua y Barbuda\",\"common\":\"Antigua y Barbuda\"},\"fin\":{\"official\":\"Antigua ja Barbuda\",\"common\":\"Antigua ja Barbuda\"},\"est\":{\"official\":\"Antigua ja Barbuda\",\"common\":\"Antigua ja Barbuda\"},\"zho\":{\"official\":\"安提瓜和巴布达\",\"common\":\"安提瓜和巴布达\"},\"pol\":{\"official\":\"Antigua i Barbuda\",\"common\":\"Antigua i Barbuda\"},\"urd\":{\"official\":\"اینٹیگوا و باربوڈا\",\"common\":\"اینٹیگوا و باربوڈا\"},\"kor\":{\"official\":\"앤티가 바부다\",\"common\":\"앤티가 바부다\"},\"per\":{\"official\":\"آنتیگوا و باربودا\",\"common\":\"آنتیگوا و باربودا\"}},\"latlng\":[17.05,-61.8],\"landlocked\":false,\"borders\":[],\"area\":442,\"flag\":\"🇦🇬\",\"demonyms\":{\"eng\":{\"f\":\"Antiguan, Barbudan\",\"m\":\"Antiguan, Barbudan\"},\"fra\":{\"f\":\"Antiguaise et barbudienne\",\"m\":\"Antiguaise et barbudien\"}}},{\"name\":{\"common\":\"Australia\",\"official\":\"Commonwealth of Australia\",\"native\":{\"eng\":{\"official\":\"Commonwealth of Australia\",\"common\":\"Australia\"}}},\"tld\":[\".au\"],\"cca2\":\"AU\",\"ccn3\":\"036\",\"cca3\":\"AUS\",\"cioc\":\"AUS\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"AUD\":{\"name\":\"Australian dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"1\"]},\"capital\":[\"Canberra\"],\"altSpellings\":[\"AU\"],\"region\":\"Oceania\",\"subregion\":\"Australia and New Zealand\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Australské společenství\",\"common\":\"Austrálie\"},\"cym\":{\"official\":\"Cymanwlad Awstralia\",\"common\":\"Awstralia\"},\"deu\":{\"official\":\"Commonwealth Australien\",\"common\":\"Australien\"},\"fra\":{\"official\":\"Australie\",\"common\":\"Australie\"},\"hrv\":{\"official\":\"Commonwealth of Australia\",\"common\":\"Australija\"},\"ita\":{\"official\":\"Commonwealth dell\\'Australia\",\"common\":\"Australia\"},\"jpn\":{\"official\":\"オーストラリア連邦\",\"common\":\"オーストラリア\"},\"nld\":{\"official\":\"Gemenebest van Australië\",\"common\":\"Australië\"},\"por\":{\"official\":\"Comunidade da Austrália\",\"common\":\"Austrália\"},\"rus\":{\"official\":\"Содружество Австралии\",\"common\":\"Австралия\"},\"slk\":{\"official\":\"Austrálsky zväz\",\"common\":\"Austrália\"},\"spa\":{\"official\":\"Mancomunidad de Australia\",\"common\":\"Australia\"},\"fin\":{\"official\":\"Australian liittovaltio\",\"common\":\"Australia\"},\"est\":{\"official\":\"Austraalia Ühendus\",\"common\":\"Austraalia\"},\"zho\":{\"official\":\"澳大利亚联邦\",\"common\":\"澳大利亚\"},\"pol\":{\"official\":\"Związek Australijski\",\"common\":\"Australia\"},\"urd\":{\"official\":\"دولتِ مشترکہ آسٹریلیا\",\"common\":\"آسٹریلیا\"},\"kor\":{\"official\":\"오스트레일리아 연방\",\"common\":\"호주\"},\"per\":{\"official\":\"قلمرو همسود استرالیا\",\"common\":\"استرالیا\"}},\"latlng\":[-27,133],\"landlocked\":false,\"borders\":[],\"area\":7692024,\"flag\":\"🇦🇺\",\"demonyms\":{\"eng\":{\"f\":\"Australian\",\"m\":\"Australian\"},\"fra\":{\"f\":\"Australienne\",\"m\":\"Australien\"}}},{\"name\":{\"common\":\"Austria\",\"official\":\"Republic of Austria\",\"native\":{\"bar\":{\"official\":\"Republik Österreich\",\"common\":\"Österreich\"}}},\"tld\":[\".at\"],\"cca2\":\"AT\",\"ccn3\":\"040\",\"cca3\":\"AUT\",\"cioc\":\"AUT\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"3\"]},\"capital\":[\"Vienna\"],\"altSpellings\":[\"AT\",\"Osterreich\",\"Oesterreich\"],\"region\":\"Europe\",\"subregion\":\"Western Europe\",\"languages\":{\"bar\":\"Austro-Bavarian German\"},\"translations\":{\"ces\":{\"official\":\"Rakouská republika\",\"common\":\"Rakousko\"},\"cym\":{\"official\":\"Gweriniaeth Awstria\",\"common\":\"Awstria\"},\"deu\":{\"official\":\"Republik Österreich\",\"common\":\"Österreich\"},\"fra\":{\"official\":\"République d\\'Autriche\",\"common\":\"Autriche\"},\"hrv\":{\"official\":\"Republika Austrija\",\"common\":\"Austrija\"},\"ita\":{\"official\":\"Repubblica d\\'Austria\",\"common\":\"Austria\"},\"jpn\":{\"official\":\"オーストリア共和国\",\"common\":\"オーストリア\"},\"nld\":{\"official\":\"Republiek Oostenrijk\",\"common\":\"Oostenrijk\"},\"por\":{\"official\":\"República da Áustria\",\"common\":\"Áustria\"},\"rus\":{\"official\":\"Австрийская Республика\",\"common\":\"Австрия\"},\"slk\":{\"official\":\"Rakúska republika\",\"common\":\"Rakúsko\"},\"spa\":{\"official\":\"República de Austria\",\"common\":\"Austria\"},\"fin\":{\"official\":\"Itävallan tasavalta\",\"common\":\"Itävalta\"},\"est\":{\"official\":\"Austria Vabariik\",\"common\":\"Austria\"},\"zho\":{\"official\":\"奥地利共和国\",\"common\":\"奥地利\"},\"pol\":{\"official\":\"Republika Austrii\",\"common\":\"Austria\"},\"urd\":{\"official\":\"جمہوریہ آسٹریا\",\"common\":\"آسٹریا\"},\"kor\":{\"official\":\"오스트리아 공화국\",\"common\":\"오스트리아\"},\"per\":{\"official\":\"جمهوری اتریش\",\"common\":\"اتریش\"}},\"latlng\":[47.33333333,13.33333333],\"landlocked\":true,\"borders\":[\"CZE\",\"DEU\",\"HUN\",\"ITA\",\"LIE\",\"SVK\",\"SVN\",\"CHE\"],\"area\":83871,\"flag\":\"🇦🇹\",\"demonyms\":{\"eng\":{\"f\":\"Austrian\",\"m\":\"Austrian\"},\"fra\":{\"f\":\"Autrichienne\",\"m\":\"Autrichien\"}}},{\"name\":{\"common\":\"Azerbaijan\",\"official\":\"Republic of Azerbaijan\",\"native\":{\"aze\":{\"official\":\"Azərbaycan Respublikası\",\"common\":\"Azərbaycan\"},\"rus\":{\"official\":\"Азербайджанская Республика\",\"common\":\"Азербайджан\"}}},\"tld\":[\".az\"],\"cca2\":\"AZ\",\"ccn3\":\"031\",\"cca3\":\"AZE\",\"cioc\":\"AZE\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"AZN\":{\"name\":\"Azerbaijani manat\",\"symbol\":\"₼\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"94\"]},\"capital\":[\"Baku\"],\"altSpellings\":[\"AZ\",\"Republic of Azerbaijan\",\"Azərbaycan Respublikası\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"aze\":\"Azerbaijani\",\"rus\":\"Russian\"},\"translations\":{\"ces\":{\"official\":\"Ázerbájdžánská republika\",\"common\":\"Ázerbájdžán\"},\"cym\":{\"official\":\"Gweriniaeth Aserbaijan\",\"common\":\"Aserbaijan\"},\"deu\":{\"official\":\"Republik Aserbaidschan\",\"common\":\"Aserbaidschan\"},\"fra\":{\"official\":\"République d\\'Azerbaïdjan\",\"common\":\"Azerbaïdjan\"},\"hrv\":{\"official\":\"Republika Azerbajdžan\",\"common\":\"Azerbajdžan\"},\"ita\":{\"official\":\"Repubblica dell\\'Azerbaigian\",\"common\":\"Azerbaijan\"},\"jpn\":{\"official\":\"アゼルバイジャン共和国\",\"common\":\"アゼルバイジャン\"},\"nld\":{\"official\":\"Republiek Azerbeidzjan\",\"common\":\"Azerbeidzjan\"},\"por\":{\"official\":\"República do Azerbaijão\",\"common\":\"Azerbeijão\"},\"rus\":{\"official\":\"Азербайджанская Республика\",\"common\":\"Азербайджан\"},\"slk\":{\"official\":\"Azerbajdžanská republika\",\"common\":\"AzerbajLJan\"},\"spa\":{\"official\":\"República de Azerbaiyán\",\"common\":\"Azerbaiyán\"},\"fin\":{\"official\":\"Azerbaidzanin tasavalta\",\"common\":\"Azerbaidzan\"},\"est\":{\"official\":\"Aserbaidžaani Vabariik\",\"common\":\"Aserbaidžaan\"},\"zho\":{\"official\":\"阿塞拜疆共和国\",\"common\":\"阿塞拜疆\"},\"pol\":{\"official\":\"Republika Azerbejdżanu\",\"common\":\"Azerbejdżan\"},\"urd\":{\"official\":\"جمہوریہ آذربائیجان\",\"common\":\"آذربائیجان\"},\"kor\":{\"official\":\"아제르바이잔 공화국\",\"common\":\"아제르바이잔\"},\"per\":{\"official\":\"جمهوری آذربایجان\",\"common\":\"جمهوری آذربایجان\"}},\"latlng\":[40.5,47.5],\"landlocked\":true,\"borders\":[\"ARM\",\"GEO\",\"IRN\",\"RUS\",\"TUR\"],\"area\":86600,\"flag\":\"🇦🇿\",\"demonyms\":{\"eng\":{\"f\":\"Azerbaijani\",\"m\":\"Azerbaijani\"},\"fra\":{\"f\":\"Azerbaïdjanaise\",\"m\":\"Azerbaïdjanais\"}}},{\"name\":{\"common\":\"Burundi\",\"official\":\"Republic of Burundi\",\"native\":{\"fra\":{\"official\":\"République du Burundi\",\"common\":\"Burundi\"},\"run\":{\"official\":\"Republika y\\'Uburundi \",\"common\":\"Uburundi\"}}},\"tld\":[\".bi\"],\"cca2\":\"BI\",\"ccn3\":\"108\",\"cca3\":\"BDI\",\"cioc\":\"BDI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BIF\":{\"name\":\"Burundian franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"57\"]},\"capital\":[\"Bujumbura\"],\"altSpellings\":[\"BI\",\"Republic of Burundi\",\"Republika y\\'Uburundi\",\"République du Burundi\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"fra\":\"French\",\"run\":\"Kirundi\"},\"translations\":{\"ces\":{\"official\":\"Burundská republika\",\"common\":\"Burundi\"},\"cym\":{\"official\":\"Gweriniaeth Bwrwndi\",\"common\":\"Bwrwndi\"},\"deu\":{\"official\":\"Republik Burundi\",\"common\":\"Burundi\"},\"fra\":{\"official\":\"République du Burundi\",\"common\":\"Burundi\"},\"hrv\":{\"official\":\"Burundi\",\"common\":\"Burundi\"},\"ita\":{\"official\":\"Repubblica del Burundi\",\"common\":\"Burundi\"},\"jpn\":{\"official\":\"ブルンジ共和国\",\"common\":\"ブルンジ\"},\"nld\":{\"official\":\"Republiek Burundi\",\"common\":\"Burundi\"},\"por\":{\"official\":\"República do Burundi\",\"common\":\"Burundi\"},\"rus\":{\"official\":\"Республика Бурунди\",\"common\":\"Бурунди\"},\"slk\":{\"official\":\"Burundská republika\",\"common\":\"Burundi\"},\"spa\":{\"official\":\"República de Burundi\",\"common\":\"Burundi\"},\"fin\":{\"official\":\"Burundin tasavalta\",\"common\":\"Burundi\"},\"est\":{\"official\":\"Burundi Vabariik\",\"common\":\"Burundi\"},\"zho\":{\"official\":\"布隆迪共和国\",\"common\":\"布隆迪\"},\"pol\":{\"official\":\"Republika Burundi\",\"common\":\"Burundi\"},\"urd\":{\"official\":\"جمہوریہ برونڈی\",\"common\":\"برونڈی\"},\"kor\":{\"official\":\"부룬디\",\"common\":\"부룬디\"},\"per\":{\"official\":\"جمهوری بوروندی\",\"common\":\"بوروندی\"}},\"latlng\":[-3.5,30],\"landlocked\":true,\"borders\":[\"COD\",\"RWA\",\"TZA\"],\"area\":27834,\"flag\":\"🇧🇮\",\"demonyms\":{\"eng\":{\"f\":\"Burundian\",\"m\":\"Burundian\"},\"fra\":{\"f\":\"Burundaise\",\"m\":\"Burundais\"}}},{\"name\":{\"common\":\"Belgium\",\"official\":\"Kingdom of Belgium\",\"native\":{\"deu\":{\"official\":\"Königreich Belgien\",\"common\":\"Belgien\"},\"fra\":{\"official\":\"Royaume de Belgique\",\"common\":\"Belgique\"},\"nld\":{\"official\":\"Koninkrijk België\",\"common\":\"België\"}}},\"tld\":[\".be\"],\"cca2\":\"BE\",\"ccn3\":\"056\",\"cca3\":\"BEL\",\"cioc\":\"BEL\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"2\"]},\"capital\":[\"Brussels\"],\"altSpellings\":[\"BE\",\"België\",\"Belgie\",\"Belgien\",\"Belgique\",\"Kingdom of Belgium\",\"Koninkrijk België\",\"Royaume de Belgique\",\"Königreich Belgien\"],\"region\":\"Europe\",\"subregion\":\"Western Europe\",\"languages\":{\"deu\":\"German\",\"fra\":\"French\",\"nld\":\"Dutch\"},\"translations\":{\"ces\":{\"official\":\"Belgické království\",\"common\":\"Belgie\"},\"cym\":{\"official\":\"Teyrnas Gwlad Belg\",\"common\":\"Gwlad Belg\"},\"deu\":{\"official\":\"Königreich Belgien\",\"common\":\"Belgien\"},\"fra\":{\"official\":\"Royaume de Belgique\",\"common\":\"Belgique\"},\"hrv\":{\"official\":\"Kraljevina Belgija\",\"common\":\"Belgija\"},\"ita\":{\"official\":\"Regno del Belgio\",\"common\":\"Belgio\"},\"jpn\":{\"official\":\"ベルギー王国\",\"common\":\"ベルギー\"},\"nld\":{\"official\":\"Koninkrijk België\",\"common\":\"België\"},\"por\":{\"official\":\"Reino da Bélgica\",\"common\":\"Bélgica\"},\"rus\":{\"official\":\"Королевство Бельгия\",\"common\":\"Бельгия\"},\"slk\":{\"official\":\"Belgické kráľovstvo\",\"common\":\"Belgicko\"},\"spa\":{\"official\":\"Reino de Bélgica\",\"common\":\"Bélgica\"},\"fin\":{\"official\":\"Belgian kuningaskunta\",\"common\":\"Belgia\"},\"est\":{\"official\":\"Belgia Kuningriik\",\"common\":\"Belgia\"},\"zho\":{\"official\":\"比利时王国\",\"common\":\"比利时\"},\"pol\":{\"official\":\"Królestwo Belgii\",\"common\":\"Belgia\"},\"urd\":{\"official\":\"مملکتِ بلجئیم\",\"common\":\"بلجئیم\"},\"kor\":{\"official\":\"벨기에 왕국\",\"common\":\"벨기에\"},\"per\":{\"official\":\"پادشاهی بلژیک\",\"common\":\"بلژیک\"}},\"latlng\":[50.83333333,4],\"landlocked\":false,\"borders\":[\"FRA\",\"DEU\",\"LUX\",\"NLD\"],\"area\":30528,\"flag\":\"🇧🇪\",\"demonyms\":{\"eng\":{\"f\":\"Belgian\",\"m\":\"Belgian\"},\"fra\":{\"f\":\"Belge\",\"m\":\"Belge\"}}},{\"name\":{\"common\":\"Benin\",\"official\":\"Republic of Benin\",\"native\":{\"fra\":{\"official\":\"République du Bénin\",\"common\":\"Bénin\"}}},\"tld\":[\".bj\"],\"cca2\":\"BJ\",\"ccn3\":\"204\",\"cca3\":\"BEN\",\"cioc\":\"BEN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XOF\":{\"name\":\"West African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"29\"]},\"capital\":[\"Porto-Novo\"],\"altSpellings\":[\"BJ\",\"Republic of Benin\",\"République du Bénin\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Beninská republika\",\"common\":\"Benin\"},\"cym\":{\"official\":\"Gweriniaeth Benin\",\"common\":\"Benin\"},\"deu\":{\"official\":\"Republik Benin\",\"common\":\"Benin\"},\"fra\":{\"official\":\"République du Bénin\",\"common\":\"Bénin\"},\"hrv\":{\"official\":\"Republika Benin\",\"common\":\"Benin\"},\"ita\":{\"official\":\"Repubblica del Benin\",\"common\":\"Benin\"},\"jpn\":{\"official\":\"ベナン共和国\",\"common\":\"ベナン\"},\"nld\":{\"official\":\"Republiek Benin\",\"common\":\"Benin\"},\"por\":{\"official\":\"República do Benin\",\"common\":\"Benin\"},\"rus\":{\"official\":\"Республика Бенин\",\"common\":\"Бенин\"},\"slk\":{\"official\":\"Beninská republika\",\"common\":\"Benin\"},\"spa\":{\"official\":\"República de Benin\",\"common\":\"Benín\"},\"fin\":{\"official\":\"Beninin tasavalta\",\"common\":\"Benin\"},\"est\":{\"official\":\"Benini Vabariik\",\"common\":\"Benin\"},\"zho\":{\"official\":\"贝宁共和国\",\"common\":\"贝宁\"},\"pol\":{\"official\":\"Benin\",\"common\":\"Benin\"},\"urd\":{\"official\":\"جمہوریہ بینن\",\"common\":\"بینن\"},\"kor\":{\"official\":\"베냉 공화국\",\"common\":\"베냉\"},\"per\":{\"official\":\"جمهوری بنین\",\"common\":\"بنین\"}},\"latlng\":[9.5,2.25],\"landlocked\":false,\"borders\":[\"BFA\",\"NER\",\"NGA\",\"TGO\"],\"area\":112622,\"flag\":\"🇧🇯\",\"demonyms\":{\"eng\":{\"f\":\"Beninese\",\"m\":\"Beninese\"},\"fra\":{\"f\":\"Béninoise\",\"m\":\"Béninois\"}}},{\"name\":{\"common\":\"Burkina Faso\",\"official\":\"Burkina Faso\",\"native\":{\"fra\":{\"official\":\"République du Burkina\",\"common\":\"Burkina Faso\"}}},\"tld\":[\".bf\"],\"cca2\":\"BF\",\"ccn3\":\"854\",\"cca3\":\"BFA\",\"cioc\":\"BUR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XOF\":{\"name\":\"West African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"26\"]},\"capital\":[\"Ouagadougou\"],\"altSpellings\":[\"BF\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Burkina Faso\",\"common\":\"Burkina Faso\"},\"cym\":{\"official\":\"Bwrcina Ffaso\",\"common\":\"Bwrcina Ffaso\"},\"deu\":{\"official\":\"Burkina Faso\",\"common\":\"Burkina Faso\"},\"fra\":{\"official\":\"République du Burkina\",\"common\":\"Burkina Faso\"},\"hrv\":{\"official\":\"Burkina Faso\",\"common\":\"Burkina Faso\"},\"ita\":{\"official\":\"Burkina Faso\",\"common\":\"Burkina Faso\"},\"jpn\":{\"official\":\"ブルキナファソ\",\"common\":\"ブルキナファソ\"},\"nld\":{\"official\":\"Burkina Faso\",\"common\":\"Burkina Faso\"},\"por\":{\"official\":\"Burkina Faso\",\"common\":\"Burkina Faso\"},\"rus\":{\"official\":\"Буркина -Фасо\",\"common\":\"Буркина-Фасо\"},\"slk\":{\"official\":\"Burkina Faso\",\"common\":\"Burkina Faso\"},\"spa\":{\"official\":\"Burkina Faso\",\"common\":\"Burkina Faso\"},\"fin\":{\"official\":\"Burkina Faso\",\"common\":\"Burkina Faso\"},\"est\":{\"official\":\"Burkina Faso\",\"common\":\"Burkina Faso\"},\"zho\":{\"official\":\"布基纳法索\",\"common\":\"布基纳法索\"},\"pol\":{\"official\":\"Burkina Faso\",\"common\":\"Burkina Faso\"},\"urd\":{\"official\":\"برکینا فاسو\",\"common\":\"برکینا فاسو\"},\"kor\":{\"official\":\"부르키나파소\",\"common\":\"부르키나파소\"},\"per\":{\"official\":\"بورکینافاسو\",\"common\":\"بورکینافاسو\"}},\"latlng\":[13,-2],\"landlocked\":true,\"borders\":[\"BEN\",\"CIV\",\"GHA\",\"MLI\",\"NER\",\"TGO\"],\"area\":272967,\"flag\":\"🇧🇫\",\"demonyms\":{\"eng\":{\"f\":\"Burkinabe\",\"m\":\"Burkinabe\"},\"fra\":{\"f\":\"Burkinabée\",\"m\":\"Burkinabé\"}}},{\"name\":{\"common\":\"Bangladesh\",\"official\":\"People\\'s Republic of Bangladesh\",\"native\":{\"ben\":{\"official\":\"বাংলাদেশ গণপ্রজাতন্ত্রী\",\"common\":\"বাংলাদেশ\"}}},\"tld\":[\".bd\"],\"cca2\":\"BD\",\"ccn3\":\"050\",\"cca3\":\"BGD\",\"cioc\":\"BAN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BDT\":{\"name\":\"Bangladeshi taka\",\"symbol\":\"৳\"}},\"idd\":{\"root\":\"+8\",\"suffixes\":[\"80\"]},\"capital\":[\"Dhaka\"],\"altSpellings\":[\"BD\",\"People\\'s Republic of Bangladesh\",\"Gônôprôjatôntri Bangladesh\"],\"region\":\"Asia\",\"subregion\":\"Southern Asia\",\"languages\":{\"ben\":\"Bengali\"},\"translations\":{\"ces\":{\"official\":\"Bangladéšská lidová republika\",\"common\":\"Bangladéš\"},\"cym\":{\"official\":\"Gweriniaeth Pobl Bangladesh\",\"common\":\"Bangladesh\"},\"deu\":{\"official\":\"Volksrepublik Bangladesch\",\"common\":\"Bangladesch\"},\"fra\":{\"official\":\"La République populaire du Bangladesh\",\"common\":\"Bangladesh\"},\"hrv\":{\"official\":\"Narodna Republika Bangladeš\",\"common\":\"Bangladeš\"},\"ita\":{\"official\":\"Repubblica popolare del Bangladesh\",\"common\":\"Bangladesh\"},\"jpn\":{\"official\":\"バングラデシュ人民共和国\",\"common\":\"バングラデシュ\"},\"nld\":{\"official\":\"Volksrepubliek Bangladesh\",\"common\":\"Bangladesh\"},\"por\":{\"official\":\"República Popular do Bangladesh\",\"common\":\"Bangladesh\"},\"rus\":{\"official\":\"Народная Республика Бангладеш\",\"common\":\"Бангладеш\"},\"slk\":{\"official\":\"Bangladéšska ľudová republika\",\"common\":\"Bangladéš\"},\"spa\":{\"official\":\"República Popular de Bangladesh\",\"common\":\"Bangladesh\"},\"fin\":{\"official\":\"Bangladeshin kansantasavalta\",\"common\":\"Bangladesh\"},\"est\":{\"official\":\"Bangladeshi Rahvavabariik\",\"common\":\"Bangladesh\"},\"zho\":{\"official\":\"孟加拉人民共和国\",\"common\":\"孟加拉国\"},\"pol\":{\"official\":\"Ludowa Republika Bangladeszu\",\"common\":\"Bangladesz\"},\"urd\":{\"official\":\"عوامی جمہوریہ بنگلہ دیش\",\"common\":\"بنگلہ دیش\"},\"kor\":{\"official\":\"방글라데시 인민 공화국\",\"common\":\"방글라데시\"},\"per\":{\"official\":\"جمهوری خلق بنگلادش\",\"common\":\"بنگلادش\"}},\"latlng\":[24,90],\"landlocked\":false,\"borders\":[\"MMR\",\"IND\"],\"area\":147570,\"flag\":\"🇧🇩\",\"demonyms\":{\"eng\":{\"f\":\"Bangladeshi\",\"m\":\"Bangladeshi\"},\"fra\":{\"f\":\"Bangladaise\",\"m\":\"Bangladais\"}}},{\"name\":{\"common\":\"Bulgaria\",\"official\":\"Republic of Bulgaria\",\"native\":{\"bul\":{\"official\":\"Република България\",\"common\":\"България\"}}},\"tld\":[\".bg\"],\"cca2\":\"BG\",\"ccn3\":\"100\",\"cca3\":\"BGR\",\"cioc\":\"BUL\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BGN\":{\"name\":\"Bulgarian lev\",\"symbol\":\"лв\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"59\"]},\"capital\":[\"Sofia\"],\"altSpellings\":[\"BG\",\"Republic of Bulgaria\",\"Република България\"],\"region\":\"Europe\",\"subregion\":\"Eastern Europe\",\"languages\":{\"bul\":\"Bulgarian\"},\"translations\":{\"ces\":{\"official\":\"Bulharská republika\",\"common\":\"Bulharsko\"},\"cym\":{\"official\":\"Gweriniaeth Bwlgaria\",\"common\":\"Bwlgaria\"},\"deu\":{\"official\":\"Republik Bulgarien\",\"common\":\"Bulgarien\"},\"fra\":{\"official\":\"République de Bulgarie\",\"common\":\"Bulgarie\"},\"hrv\":{\"official\":\"Republika Bugarska\",\"common\":\"Bugarska\"},\"ita\":{\"official\":\"Repubblica di Bulgaria\",\"common\":\"Bulgaria\"},\"jpn\":{\"official\":\"ブルガリア共和国\",\"common\":\"ブルガリア\"},\"nld\":{\"official\":\"Republiek Bulgarije\",\"common\":\"Bulgarije\"},\"por\":{\"official\":\"República da Bulgária\",\"common\":\"Bulgária\"},\"rus\":{\"official\":\"Республика Болгария\",\"common\":\"Болгария\"},\"slk\":{\"official\":\"Bulharská republika\",\"common\":\"Bulharsko\"},\"spa\":{\"official\":\"República de Bulgaria\",\"common\":\"Bulgaria\"},\"fin\":{\"official\":\"Bulgarian tasavalta\",\"common\":\"Bulgaria\"},\"est\":{\"official\":\"Bulgaaria Vabariik\",\"common\":\"Bulgaaria\"},\"zho\":{\"official\":\"保加利亚共和国\",\"common\":\"保加利亚\"},\"pol\":{\"official\":\"Republika Bułgarii\",\"common\":\"Bułgaria\"},\"urd\":{\"official\":\"جمہوریہ بلغاریہ\",\"common\":\"بلغاریہ\"},\"kor\":{\"official\":\"불가리아 공화국\",\"common\":\"불가리아\"},\"per\":{\"official\":\"جمهوری بلغارستان\",\"common\":\"بلغارستان\"}},\"latlng\":[43,25],\"landlocked\":false,\"borders\":[\"GRC\",\"MKD\",\"ROU\",\"SRB\",\"TUR\"],\"area\":110879,\"flag\":\"🇧🇬\",\"demonyms\":{\"eng\":{\"f\":\"Bulgarian\",\"m\":\"Bulgarian\"},\"fra\":{\"f\":\"Bulgare\",\"m\":\"Bulgare\"}}},{\"name\":{\"common\":\"Bahrain\",\"official\":\"Kingdom of Bahrain\",\"native\":{\"ara\":{\"official\":\"مملكة البحرين\",\"common\":\"البحرين\"}}},\"tld\":[\".bh\"],\"cca2\":\"BH\",\"ccn3\":\"048\",\"cca3\":\"BHR\",\"cioc\":\"BRN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BHD\":{\"name\":\"Bahraini dinar\",\"symbol\":\".د.ب\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"73\"]},\"capital\":[\"Manama\"],\"altSpellings\":[\"BH\",\"Kingdom of Bahrain\",\"Mamlakat al-Baḥrayn\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Království Bahrajn\",\"common\":\"Bahrajn\"},\"cym\":{\"official\":\"Teyrnas Bahrein\",\"common\":\"Bahrain\"},\"deu\":{\"official\":\"Königreich Bahrain\",\"common\":\"Bahrain\"},\"fra\":{\"official\":\"Royaume de Bahreïn\",\"common\":\"Bahreïn\"},\"hrv\":{\"official\":\"Kraljevina Bahrein\",\"common\":\"Bahrein\"},\"ita\":{\"official\":\"Regno del Bahrain\",\"common\":\"Bahrein\"},\"jpn\":{\"official\":\"バーレーン王国\",\"common\":\"バーレーン\"},\"nld\":{\"official\":\"Koninkrijk Bahrein\",\"common\":\"Bahrein\"},\"por\":{\"official\":\"Reino do Bahrein\",\"common\":\"Bahrein\"},\"rus\":{\"official\":\"Королевство Бахрейн\",\"common\":\"Бахрейн\"},\"slk\":{\"official\":\"Bahrajnské kráľovstvo\",\"common\":\"Bahrajn\"},\"spa\":{\"official\":\"Reino de Bahrein\",\"common\":\"Bahrein\"},\"fin\":{\"official\":\"Bahrainin kuningaskunta\",\"common\":\"Bahrain\"},\"est\":{\"official\":\"Bahreini Kuningriik\",\"common\":\"Bahrein\"},\"zho\":{\"official\":\"巴林王国\",\"common\":\"巴林\"},\"pol\":{\"official\":\"Królestwo Bahrajnu\",\"common\":\"Bahrajn\"},\"urd\":{\"official\":\"مملکتِ بحرین\",\"common\":\"بحرین\"},\"kor\":{\"official\":\"바레인 왕국\",\"common\":\"바레인\"},\"per\":{\"official\":\"پادشاهی بحرین\",\"common\":\"بحرین\"}},\"latlng\":[26,50.55],\"landlocked\":false,\"borders\":[],\"area\":765,\"flag\":\"🇧🇭\",\"demonyms\":{\"eng\":{\"f\":\"Bahraini\",\"m\":\"Bahraini\"},\"fra\":{\"f\":\"Bahreïnienne\",\"m\":\"Bahreïnien\"}}},{\"name\":{\"common\":\"Bahamas\",\"official\":\"Commonwealth of the Bahamas\",\"native\":{\"eng\":{\"official\":\"Commonwealth of the Bahamas\",\"common\":\"Bahamas\"}}},\"tld\":[\".bs\"],\"cca2\":\"BS\",\"ccn3\":\"044\",\"cca3\":\"BHS\",\"cioc\":\"BAH\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BSD\":{\"name\":\"Bahamian dollar\",\"symbol\":\"$\"},\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"242\"]},\"capital\":[\"Nassau\"],\"altSpellings\":[\"BS\",\"Commonwealth of the Bahamas\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Bahamské společenství\",\"common\":\"Bahamy\"},\"cym\":{\"official\":\"Cymanwlad y Bahamas\",\"common\":\"Bahamas\"},\"deu\":{\"official\":\"Commonwealth der Bahamas\",\"common\":\"Bahamas\"},\"fra\":{\"official\":\"Commonwealth des Bahamas\",\"common\":\"Bahamas\"},\"hrv\":{\"official\":\"Zajednica Bahama\",\"common\":\"Bahami\"},\"ita\":{\"official\":\"Commonwealth delle Bahamas\",\"common\":\"Bahamas\"},\"jpn\":{\"official\":\"バハマ\",\"common\":\"バハマ\"},\"nld\":{\"official\":\"Gemenebest van de Bahama\\'s\",\"common\":\"Bahama’s\"},\"por\":{\"official\":\"Comunidade das Bahamas\",\"common\":\"Bahamas\"},\"rus\":{\"official\":\"Содружество Багамских Островов\",\"common\":\"Багамские Острова\"},\"slk\":{\"official\":\"Bahamské spoločenstvo\",\"common\":\"Bahamy\"},\"spa\":{\"official\":\"Commonwealth de las Bahamas\",\"common\":\"Bahamas\"},\"fin\":{\"official\":\"Bahaman liittovaltio\",\"common\":\"Bahamasaaret\"},\"est\":{\"official\":\"Bahama Ühendus\",\"common\":\"Bahama\"},\"zho\":{\"official\":\"巴哈马联邦\",\"common\":\"巴哈马\"},\"pol\":{\"official\":\"Bahamy\",\"common\":\"Bahamy\"},\"urd\":{\"official\":\"دولتِ مشترکہ بہاماس\",\"common\":\"بہاماس\"},\"kor\":{\"official\":\"바하마 연방\",\"common\":\"바하마\"},\"per\":{\"official\":\"قلمرو همسود باهاما\",\"common\":\"باهاما\"}},\"latlng\":[24.25,-76],\"landlocked\":false,\"borders\":[],\"area\":13943,\"flag\":\"🇧🇸\",\"demonyms\":{\"eng\":{\"f\":\"Bahamian\",\"m\":\"Bahamian\"},\"fra\":{\"f\":\"Bahamienne\",\"m\":\"Bahamien\"}}},{\"name\":{\"common\":\"Bosnia and Herzegovina\",\"official\":\"Bosnia and Herzegovina\",\"native\":{\"bos\":{\"official\":\"Bosna i Hercegovina\",\"common\":\"Bosna i Hercegovina\"},\"hrv\":{\"official\":\"Bosna i Hercegovina\",\"common\":\"Bosna i Hercegovina\"},\"srp\":{\"official\":\"Боснa и Херцеговина\",\"common\":\"Боснa и Херцеговина\"}}},\"tld\":[\".ba\"],\"cca2\":\"BA\",\"ccn3\":\"070\",\"cca3\":\"BIH\",\"cioc\":\"BIH\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BAM\":{\"name\":\"Bosnia and Herzegovina convertible mark\",\"symbol\":\"\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"87\"]},\"capital\":[\"Sarajevo\"],\"altSpellings\":[\"BA\",\"Bosnia-Herzegovina\",\"Босна и Херцеговина\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"bos\":\"Bosnian\",\"hrv\":\"Croatian\",\"srp\":\"Serbian\"},\"translations\":{\"ces\":{\"official\":\"Bosna a Hercegovina\",\"common\":\"Bosna a Hercegovina\"},\"cym\":{\"official\":\"Bosnia a Hercegovina\",\"common\":\"Bosnia a Hercegovina\"},\"deu\":{\"official\":\"Bosnien und Herzegowina\",\"common\":\"Bosnien und Herzegowina\"},\"fra\":{\"official\":\"Bosnie-et-Herzégovine\",\"common\":\"Bosnie-Herzégovine\"},\"hrv\":{\"official\":\"Bosna i Hercegovina\",\"common\":\"Bosna i Hercegovina\"},\"ita\":{\"official\":\"Bosnia-Erzegovina\",\"common\":\"Bosnia ed Erzegovina\"},\"jpn\":{\"official\":\"ボスニア·ヘルツェゴビナ\",\"common\":\"ボスニア・ヘルツェゴビナ\"},\"nld\":{\"official\":\"Bosnië-Herzegovina\",\"common\":\"Bosnië en Herzegovina\"},\"por\":{\"official\":\"Bósnia e Herzegovina\",\"common\":\"Bósnia e Herzegovina\"},\"rus\":{\"official\":\"Босния и Герцеговина\",\"common\":\"Босния и Герцеговина\"},\"slk\":{\"official\":\"Republika Bosny a Hercegoviny\",\"common\":\"Bosna a Hercegovina\"},\"spa\":{\"official\":\"Bosnia y Herzegovina\",\"common\":\"Bosnia y Herzegovina\"},\"fin\":{\"official\":\"Bosnia ja Hertsegovina\",\"common\":\"Bosnia ja Hertsegovina\"},\"est\":{\"official\":\"Bosnia ja Hertsegoviina\",\"common\":\"Bosnia ja Hertsegoviina\"},\"zho\":{\"official\":\"波斯尼亚和黑塞哥维那\",\"common\":\"波斯尼亚和黑塞哥维那\"},\"pol\":{\"official\":\"Bośnia i Hercegowina\",\"common\":\"Bośnia i Hercegowina\"},\"urd\":{\"official\":\"بوسنیا و ہرزیگووینا\",\"common\":\"بوسنیا و ہرزیگووینا\"},\"kor\":{\"official\":\"보스니아 헤르체고비나\",\"common\":\"보스니아 헤르체고비나\"},\"per\":{\"official\":\"بوسنی و هرزگوین\",\"common\":\"بوسنی و هرزگوین\"}},\"latlng\":[44,18],\"landlocked\":false,\"borders\":[\"HRV\",\"MNE\",\"SRB\"],\"area\":51209,\"flag\":\"🇧🇦\",\"demonyms\":{\"eng\":{\"f\":\"Bosnian, Herzegovinian\",\"m\":\"Bosnian, Herzegovinian\"},\"fra\":{\"f\":\"Bosnienne\",\"m\":\"Bosnien\"}}},{\"name\":{\"common\":\"Saint Barthélemy\",\"official\":\"Collectivity of Saint Barthélemy\",\"native\":{\"fra\":{\"official\":\"Collectivité de Saint-Barthélemy\",\"common\":\"Saint-Barthélemy\"}}},\"tld\":[\".bl\"],\"cca2\":\"BL\",\"ccn3\":\"652\",\"cca3\":\"BLM\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"90\"]},\"capital\":[\"Gustavia\"],\"altSpellings\":[\"BL\",\"St. Barthelemy\",\"Collectivity of Saint Barthélemy\",\"Collectivité de Saint-Barthélemy\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Svatý Bartoloměj\",\"common\":\"Svatý Bartoloměj\"},\"deu\":{\"official\":\"Gebietskörperschaft Saint-Barthélemy\",\"common\":\"Saint-Barthélemy\"},\"fra\":{\"official\":\"Collectivité de Saint-Barthélemy\",\"common\":\"Saint-Barthélemy\"},\"hrv\":{\"official\":\"Kolektivnost sv Barthélemy\",\"common\":\"Saint Barthélemy\"},\"ita\":{\"official\":\"Collettività di Saint Barthélemy\",\"common\":\"Antille Francesi\"},\"jpn\":{\"official\":\"サン·バルテルミー島の集合体\",\"common\":\"サン・バルテルミー\"},\"nld\":{\"official\":\"Gemeenschap Saint Barthélemy\",\"common\":\"Saint Barthélemy\"},\"por\":{\"official\":\"Coletividade de Saint Barthélemy\",\"common\":\"São Bartolomeu\"},\"rus\":{\"official\":\"Коллективность Санкт -Бартельми\",\"common\":\"Сен-Бартелеми\"},\"slk\":{\"official\":\"Svätý Bartolomej\",\"common\":\"Svätý Bartolomej\"},\"spa\":{\"official\":\"Colectividad de San Barthélemy\",\"common\":\"San Bartolomé\"},\"fin\":{\"official\":\"Saint-Barthélemyn yhteisö\",\"common\":\"Saint-Barthélemy\"},\"est\":{\"official\":\"Saint-Barthélemy territoriaalühendus\",\"common\":\"Saint-Barthélemy\"},\"zho\":{\"official\":\"圣巴泰勒米集体\",\"common\":\"圣巴泰勒米\"},\"pol\":{\"official\":\"Saint-Barthélemy\",\"common\":\"Saint-Barthélemy\"},\"urd\":{\"official\":\"سینٹ بارتھیملے\",\"common\":\"سینٹ بارتھیملے\"},\"kor\":{\"official\":\"생바르텔레미\",\"common\":\"생바르텔레미\"},\"per\":{\"official\":\"سن بارتلمی\",\"common\":\"سن بارتلمی\"}},\"latlng\":[18.5,-63.41666666],\"landlocked\":false,\"borders\":[],\"area\":21,\"flag\":\"🇧🇱\",\"demonyms\":{\"eng\":{\"f\":\"Saint Barthélemy Islander\",\"m\":\"Saint Barthélemy Islander\"},\"fra\":{\"f\":\"Barthéloméenne\",\"m\":\"Barthéloméen\"}}},{\"name\":{\"common\":\"Saint Helena, Ascension and Tristan da Cunha\",\"official\":\"Saint Helena, Ascension and Tristan da Cunha\",\"native\":{\"eng\":{\"official\":\"Saint Helena, Ascension and Tristan da Cunha\",\"common\":\"Saint Helena, Ascension and Tristan da Cunha\"}}},\"tld\":[\".sh\",\".ac\"],\"cca2\":\"SH\",\"ccn3\":\"654\",\"cca3\":\"SHN\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"GBP\":{\"name\":\"Pound sterling\",\"symbol\":\"£\"},\"SHP\":{\"name\":\"Saint Helena pound\",\"symbol\":\"£\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"90\",\"47\"]},\"capital\":[\"Jamestown\"],\"altSpellings\":[\"Saint Helena\",\"St. Helena, Ascension and Tristan da Cunha\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Svatá Helena, Ascension a Tristan da Cunha\",\"common\":\"Svatá Helena, Ascension a Tristan da Cunha\"},\"deu\":{\"official\":\"Sankt Helena, Ascension und Tristan da Cunha\",\"common\":\"St. Helena, Ascension und Tristan da Cunha\"},\"fra\":{\"official\":\"Sainte-Hélène, Ascension et Tristan da Cunha\",\"common\":\"Sainte-Hélène, Ascension et Tristan da Cunha\"},\"hrv\":{\"official\":\"Sveta Helena\",\"common\":\"Sveta Helena\"},\"ita\":{\"official\":\"Sant\\'Elena, Ascensione e Tristan da Cunha\",\"common\":\"Sant\\'Elena, Ascensione e Tristan da Cunha\"},\"jpn\":{\"official\":\"セントヘレナ・アセンションおよびトリスタンダクーニャ\",\"common\":\"セントヘレナ・アセンションおよびトリスタンダクーニャ\"},\"nld\":{\"official\":\"Sint-Helena, Ascension en Tristan da Cunha\",\"common\":\"Sint-Helena, Ascension en Tristan da Cunha\"},\"por\":{\"official\":\"Santa Helena, Ascensão e Tristão da Cunha\",\"common\":\"Santa Helena, Ascensão e Tristão da Cunha\"},\"rus\":{\"official\":\"Острова Святой Елены, Вознесения и Тристан-да-Кунья\",\"common\":\"Острова Святой Елены, Вознесения и Тристан-да-Кунья\"},\"slk\":{\"official\":\"Svätá Helena (zámorské územie)\",\"common\":\"Svätá Helena (zámorské územie)\"},\"spa\":{\"official\":\"Santa Elena, Ascensión y Tristán de Acuña\",\"common\":\"Santa Elena, Ascensión y Tristán de Acuña\"},\"fin\":{\"official\":\"Saint Helena, Ascension ja Tristan da Cunha\",\"common\":\"Saint Helena, Ascension ja Tristan da Cunha\"},\"est\":{\"official\":\"Saint Helena, Ascension ja Tristan da Cunha\",\"common\":\"Saint Helena, Ascension ja Tristan da Cunha\"},\"zho\":{\"official\":\"圣赫勒拿、阿森松和特里斯坦-达库尼亚\",\"common\":\"圣赫勒拿、阿森松和特里斯坦-达库尼亚\"},\"pol\":{\"official\":\"Wyspa Świętej Heleny, Wyspa Wniebowstąpienia i Tristan da Cunha\",\"common\":\"Wyspa Świętej Heleny, Wyspa Wniebowstąpienia i Tristan da Cunha\"},\"urd\":{\"official\":\"سینٹ ہلینا، اسینشن و ترسٹان دا کونیا\",\"common\":\"سینٹ ہلینا، اسینشن و ترسٹان دا کونیا\"},\"kor\":{\"official\":\"세인트헬레나\",\"common\":\"세인트헬레나\"},\"per\":{\"official\":\"سنت هلن\",\"common\":\"سنت هلن\"}},\"latlng\":[-15.95,-5.72],\"landlocked\":false,\"borders\":[],\"area\":394,\"flag\":\"🇸🇭\",\"demonyms\":{\"eng\":{\"f\":\"Saint Helenian\",\"m\":\"Saint Helenian\"},\"fra\":{\"f\":\"Sainte-Hélénoise\",\"m\":\"Sainte-Hélènois\"}}},{\"name\":{\"common\":\"Belarus\",\"official\":\"Republic of Belarus\",\"native\":{\"bel\":{\"official\":\"Рэспубліка Беларусь\",\"common\":\"Белару́сь\"},\"rus\":{\"official\":\"Республика Беларусь\",\"common\":\"Беларусь\"}}},\"tld\":[\".by\"],\"cca2\":\"BY\",\"ccn3\":\"112\",\"cca3\":\"BLR\",\"cioc\":\"BLR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BYN\":{\"name\":\"Belarusian ruble\",\"symbol\":\"Br\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"75\"]},\"capital\":[\"Minsk\"],\"altSpellings\":[\"BY\",\"Bielaruś\",\"Republic of Belarus\",\"Белоруссия\",\"Республика Белоруссия\"],\"region\":\"Europe\",\"subregion\":\"Eastern Europe\",\"languages\":{\"bel\":\"Belarusian\",\"rus\":\"Russian\"},\"translations\":{\"ces\":{\"official\":\"Běloruská republika\",\"common\":\"Bělorusko\"},\"cym\":{\"official\":\"Gweriniaeth Belarws\",\"common\":\"Belarws\"},\"deu\":{\"official\":\"Republik Belarus\",\"common\":\"Weißrussland\"},\"fra\":{\"official\":\"République de Biélorussie\",\"common\":\"Biélorussie\"},\"hrv\":{\"official\":\"Republika Bjelorusija\",\"common\":\"Bjelorusija\"},\"ita\":{\"official\":\"Repubblica di Belarus\",\"common\":\"Bielorussia\"},\"jpn\":{\"official\":\"ベラルーシ共和国\",\"common\":\"ベラルーシ\"},\"nld\":{\"official\":\"Republiek Belarus\",\"common\":\"Wit-Rusland\"},\"por\":{\"official\":\"República da Bielorrússia\",\"common\":\"Bielorússia\"},\"rus\":{\"official\":\"Республика Беларусь\",\"common\":\"Беларусь\"},\"slk\":{\"official\":\"Bieloruská republika\",\"common\":\"Bielorusko\"},\"spa\":{\"official\":\"República de Belarús\",\"common\":\"Bielorrusia\"},\"fin\":{\"official\":\"Valko-Venäjän tasavalta\",\"common\":\"Valko-Venäjä\"},\"est\":{\"official\":\"Valgevene Vabariik\",\"common\":\"Valgevene\"},\"zho\":{\"official\":\"白俄罗斯共和国\",\"common\":\"白俄罗斯\"},\"pol\":{\"official\":\"Republika Białorusi\",\"common\":\"Białoruś\"},\"urd\":{\"official\":\"جمہوریہ بیلاروس\",\"common\":\"بیلاروس\"},\"kor\":{\"official\":\"벨라루스 공화국\",\"common\":\"벨라루스\"},\"per\":{\"official\":\"جمهوری بلاروس\",\"common\":\"بلاروس\"}},\"latlng\":[53,28],\"landlocked\":true,\"borders\":[\"LVA\",\"LTU\",\"POL\",\"RUS\",\"UKR\"],\"area\":207600,\"flag\":\"🇧🇾\",\"demonyms\":{\"eng\":{\"f\":\"Belarusian\",\"m\":\"Belarusian\"},\"fra\":{\"f\":\"Biélorusse\",\"m\":\"Biélorusse\"}}},{\"name\":{\"common\":\"Belize\",\"official\":\"Belize\",\"native\":{\"bjz\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"eng\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"spa\":{\"official\":\"Belice\",\"common\":\"Belice\"}}},\"tld\":[\".bz\"],\"cca2\":\"BZ\",\"ccn3\":\"084\",\"cca3\":\"BLZ\",\"cioc\":\"BIZ\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BZD\":{\"name\":\"Belize dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"01\"]},\"capital\":[\"Belmopan\"],\"altSpellings\":[\"BZ\"],\"region\":\"Americas\",\"subregion\":\"Central America\",\"languages\":{\"bjz\":\"Belizean Creole\",\"eng\":\"English\",\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"cym\":{\"official\":\"Belîs\",\"common\":\"Belîs\"},\"deu\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"fra\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"hrv\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"ita\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"jpn\":{\"official\":\"ベリーズ\",\"common\":\"ベリーズ\"},\"nld\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"por\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"rus\":{\"official\":\"Белиз\",\"common\":\"Белиз\"},\"slk\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"spa\":{\"official\":\"Belice\",\"common\":\"Belice\"},\"fin\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"est\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"zho\":{\"official\":\"伯利兹\",\"common\":\"伯利兹\"},\"pol\":{\"official\":\"Belize\",\"common\":\"Belize\"},\"urd\":{\"official\":\"بیلیز\",\"common\":\"بیلیز\"},\"kor\":{\"official\":\"벨리즈\",\"common\":\"벨리즈\"},\"per\":{\"official\":\"بلیز\",\"common\":\"بلیز\"}},\"latlng\":[17.25,-88.75],\"landlocked\":false,\"borders\":[\"GTM\",\"MEX\"],\"area\":22966,\"flag\":\"🇧🇿\",\"demonyms\":{\"eng\":{\"f\":\"Belizean\",\"m\":\"Belizean\"},\"fra\":{\"f\":\"Bélizienne\",\"m\":\"Bélizien\"}}},{\"name\":{\"common\":\"Bermuda\",\"official\":\"Bermuda\",\"native\":{\"eng\":{\"official\":\"Bermuda\",\"common\":\"Bermuda\"}}},\"tld\":[\".bm\"],\"cca2\":\"BM\",\"ccn3\":\"060\",\"cca3\":\"BMU\",\"cioc\":\"BER\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"BMD\":{\"name\":\"Bermudian dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"441\"]},\"capital\":[\"Hamilton\"],\"altSpellings\":[\"BM\",\"The Islands of Bermuda\",\"The Bermudas\",\"Somers Isles\"],\"region\":\"Americas\",\"subregion\":\"North America\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Bermudské ostrovy\",\"common\":\"Bermudy\"},\"cym\":{\"official\":\"Bermiwda\",\"common\":\"Bermiwda\"},\"deu\":{\"official\":\"Bermuda\",\"common\":\"Bermuda\"},\"fra\":{\"official\":\"Bermudes\",\"common\":\"Bermudes\"},\"hrv\":{\"official\":\"Bermuda\",\"common\":\"Bermudi\"},\"ita\":{\"official\":\"Bermuda\",\"common\":\"Bermuda\"},\"jpn\":{\"official\":\"バミューダ\",\"common\":\"バミューダ\"},\"nld\":{\"official\":\"Bermuda\",\"common\":\"Bermuda\"},\"por\":{\"official\":\"Bermudas\",\"common\":\"Bermudas\"},\"rus\":{\"official\":\"Бермудские острова\",\"common\":\"Бермудские Острова\"},\"slk\":{\"official\":\"Bermudy\",\"common\":\"Bermudy\"},\"spa\":{\"official\":\"Bermuda\",\"common\":\"Bermudas\"},\"fin\":{\"official\":\"Bermuda\",\"common\":\"Bermuda\"},\"est\":{\"official\":\"Bermuda\",\"common\":\"Bermuda\"},\"zho\":{\"official\":\"百慕大\",\"common\":\"百慕大\"},\"pol\":{\"official\":\"Bermudy\",\"common\":\"Bermudy\"},\"urd\":{\"official\":\"برمودا\",\"common\":\"برمودا\"},\"kor\":{\"official\":\"버뮤다\",\"common\":\"버뮤다\"},\"per\":{\"official\":\"جزایر برمودا\",\"common\":\"برمودا\"}},\"latlng\":[32.33333333,-64.75],\"landlocked\":false,\"borders\":[],\"area\":54,\"flag\":\"🇧🇲\",\"demonyms\":{\"eng\":{\"f\":\"Bermudian\",\"m\":\"Bermudian\"},\"fra\":{\"f\":\"Bermudienne\",\"m\":\"Bermudien\"}}},{\"name\":{\"common\":\"Bolivia\",\"official\":\"Plurinational State of Bolivia\",\"native\":{\"aym\":{\"official\":\"Wuliwya Suyu\",\"common\":\"Wuliwya\"},\"grn\":{\"official\":\"Tetã Volívia\",\"common\":\"Volívia\"},\"que\":{\"official\":\"Buliwya Mamallaqta\",\"common\":\"Buliwya\"},\"spa\":{\"official\":\"Estado Plurinacional de Bolivia\",\"common\":\"Bolivia\"}}},\"tld\":[\".bo\"],\"cca2\":\"BO\",\"ccn3\":\"068\",\"cca3\":\"BOL\",\"cioc\":\"BOL\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BOB\":{\"name\":\"Bolivian boliviano\",\"symbol\":\"Bs.\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"91\"]},\"capital\":[\"Sucre\"],\"altSpellings\":[\"BO\",\"Buliwya\",\"Wuliwya\",\"Bolivia, Plurinational State of\",\"Plurinational State of Bolivia\",\"Estado Plurinacional de Bolivia\",\"Buliwya Mamallaqta\",\"Wuliwya Suyu\",\"Tetã Volívia\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"aym\":\"Aymara\",\"grn\":\"Guaraní\",\"que\":\"Quechua\",\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Mnohonárodnostní stát Bolívie\",\"common\":\"Bolívie\"},\"cym\":{\"official\":\"Gweriniaeth Bolifia\",\"common\":\"Bolifia\"},\"deu\":{\"official\":\"Plurinationaler Staat Bolivien\",\"common\":\"Bolivien\"},\"fra\":{\"official\":\"État plurinational de Bolivie\",\"common\":\"Bolivie\"},\"hrv\":{\"official\":\"Plurinational State of Bolivia\",\"common\":\"Bolivija\"},\"ita\":{\"official\":\"Stato Plurinazionale della Bolivia\",\"common\":\"Bolivia\"},\"jpn\":{\"official\":\"ボリビアの多民族国\",\"common\":\"ボリビア多民族国\"},\"nld\":{\"official\":\"Plurinationale Staat van Bolivia\",\"common\":\"Bolivia\"},\"por\":{\"official\":\"Estado Plurinacional da Bolívia\",\"common\":\"Bolívia\"},\"rus\":{\"official\":\"Многонациональное Государство Боливия\",\"common\":\"Боливия\"},\"slk\":{\"official\":\"Bolívijská republika\",\"common\":\"Bolívia\"},\"spa\":{\"official\":\"Estado Plurinacional de Bolivia\",\"common\":\"Bolivia\"},\"fin\":{\"official\":\"Bolivian monikansainen valtio\",\"common\":\"Bolivia\"},\"est\":{\"official\":\"Boliivia Paljurahvuseline Riik\",\"common\":\"Boliivia\"},\"zho\":{\"official\":\"多民族玻利维亚国\",\"common\":\"玻利维亚\"},\"pol\":{\"official\":\"Wielonarodowe Państwo Boliwia\",\"common\":\"Boliwia\"},\"urd\":{\"official\":\"جمہوریہ بولیویا\",\"common\":\"بولیویا\"},\"kor\":{\"official\":\"볼리비아 다민족국\",\"common\":\"볼리비아\"},\"per\":{\"official\":\"جمهوری بولیوی\",\"common\":\"بولیوی\"}},\"latlng\":[-17,-65],\"landlocked\":true,\"borders\":[\"ARG\",\"BRA\",\"CHL\",\"PRY\",\"PER\"],\"area\":1098581,\"flag\":\"🇧🇴\",\"demonyms\":{\"eng\":{\"f\":\"Bolivian\",\"m\":\"Bolivian\"},\"fra\":{\"f\":\"Bolivienne\",\"m\":\"Bolivien\"}}},{\"name\":{\"common\":\"Caribbean Netherlands\",\"official\":\"Bonaire, Sint Eustatius and Saba\",\"native\":{\"nld\":{\"official\":\"Bonaire, Sint Eustatius en Saba\",\"common\":\"Caribisch Nederland\"},\"pap\":{\"official\":\"Boneiru, Sint Eustatius y Saba\",\"common\":\"Boneiru, Sint Eustatius y Saba\"}}},\"tld\":[\".bq\",\".nl\"],\"cca2\":\"BQ\",\"ccn3\":\"535\",\"cca3\":\"BES\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"99\"]},\"capital\":[],\"altSpellings\":[\"BES islands\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\",\"nld\":\"Dutch\",\"pap\":\"Papiamento\"},\"translations\":{\"ces\":{\"official\":\"Karibské Nizozemsko\",\"common\":\"Karibské Nizozemsko\"},\"deu\":{\"official\":\"Bonaire, Sint Eustatius und Saba\",\"common\":\"Karibische Niederlande\"},\"fra\":{\"official\":\"Bonaire, Saint-Eustache et Saba\",\"common\":\"Pays-Bas caribéens\"},\"hrv\":{\"official\":\"Bonaire, Sint Eustatius i Saba\",\"common\":\"Bonaire, Sint Eustatius i Saba\"},\"ita\":{\"official\":\"Bonaire, Sint Eustatius e Saba\",\"common\":\"Paesi Bassi caraibici\"},\"jpn\":{\"official\":\"ボネール、シント・ユースタティウスおよびサバ\",\"common\":\"ボネール、シント・ユースタティウスおよびサバ\"},\"nld\":{\"official\":\"Bonaire, Sint Eustatius en Saba\",\"common\":\"Caribisch Nederland\"},\"por\":{\"official\":\"Bonaire, Saba e Santo Eustáquio\",\"common\":\"Países Baixos Caribenhos\"},\"rus\":{\"official\":\"Бонэйр, Синт-Эстатиус и Саба\",\"common\":\"Карибские Нидерланды\"},\"slk\":{\"official\":\"Bonaire, Sint Eustatius a Saba\",\"common\":\"Bonaire, Sint Eustatius a Saba\"},\"spa\":{\"official\":\"Bonaire, San Eustaquio y Saba\",\"common\":\"Caribe Neerlandés\"},\"fin\":{\"official\":\"Bonaire, Sint Eustatius ja Saba\",\"common\":\"Bonaire, Sint Eustatius ja Saba\"},\"est\":{\"official\":\"Bonaire, Sint Eustatius ja Saba\",\"common\":\"Bonaire, Sint Eustatius ja Saba\"},\"zho\":{\"official\":\"荷蘭加勒比區\",\"common\":\"荷蘭加勒比區\"},\"pol\":{\"official\":\"Bonaire, Sint Eustatius i Saba\",\"common\":\"Antyle Holenderskie\"},\"urd\":{\"official\":\"بونایر، سینٹ ایوسٹائیس اور سابا\",\"common\":\"کیریبین نیدرلینڈز\"},\"kor\":{\"official\":\"보네르, 신트외스타티위스, 사바\",\"common\":\"카리브 네덜란드\"},\"per\":{\"official\":\"جزایر کارائیب هلند\",\"common\":\"جزایر کارائیب هلند\"}},\"latlng\":[12.18,-68.25],\"landlocked\":false,\"borders\":[],\"area\":328,\"flag\":\"\",\"demonyms\":{\"eng\":{\"f\":\"Dutch\",\"m\":\"Dutch\"},\"fra\":{\"f\":\"Néerlandaise\",\"m\":\"Néerlandais\"}}},{\"name\":{\"common\":\"Brazil\",\"official\":\"Federative Republic of Brazil\",\"native\":{\"por\":{\"official\":\"República Federativa do Brasil\",\"common\":\"Brasil\"}}},\"tld\":[\".br\"],\"cca2\":\"BR\",\"ccn3\":\"076\",\"cca3\":\"BRA\",\"cioc\":\"BRA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BRL\":{\"name\":\"Brazilian real\",\"symbol\":\"R$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"5\"]},\"capital\":[\"Brasília\"],\"altSpellings\":[\"BR\",\"Brasil\",\"Federative Republic of Brazil\",\"República Federativa do Brasil\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"por\":\"Portuguese\"},\"translations\":{\"ces\":{\"official\":\"Brazilská federativní republika\",\"common\":\"Brazílie\"},\"cym\":{\"official\":\"Gweriniaeth Ffederal Brasil\",\"common\":\"Brasil\"},\"deu\":{\"official\":\"Föderative Republik Brasilien\",\"common\":\"Brasilien\"},\"fra\":{\"official\":\"République fédérative du Brésil\",\"common\":\"Brésil\"},\"hrv\":{\"official\":\"Savezne Republike Brazil\",\"common\":\"Brazil\"},\"ita\":{\"official\":\"Repubblica federativa del Brasile\",\"common\":\"Brasile\"},\"jpn\":{\"official\":\"ブラジル連邦共和国\",\"common\":\"ブラジル\"},\"nld\":{\"official\":\"Federale Republiek Brazilië\",\"common\":\"Brazilië\"},\"por\":{\"official\":\"República Federativa do Brasil\",\"common\":\"Brasil\"},\"rus\":{\"official\":\"Федеративная Республика Бразилия\",\"common\":\"Бразилия\"},\"slk\":{\"official\":\"Brazílska federatívna republika\",\"common\":\"Brazília\"},\"spa\":{\"official\":\"República Federativa del Brasil\",\"common\":\"Brasil\"},\"fin\":{\"official\":\"Brasilian liittotasavalta\",\"common\":\"Brasilia\"},\"est\":{\"official\":\"Brasiilia Liitvabariik\",\"common\":\"Brasiilia\"},\"zho\":{\"official\":\"巴西联邦共和国\",\"common\":\"巴西\"},\"pol\":{\"official\":\"Federacyjna Republika Brazylii\",\"common\":\"Brazylia\"},\"urd\":{\"official\":\"وفاقی جمہوریہ برازیل\",\"common\":\"برازیل\"},\"kor\":{\"official\":\"브라질 연방 공화국\",\"common\":\"브라질\"},\"per\":{\"official\":\"جمهوری فدراتیو برزیل\",\"common\":\"برزیل\"}},\"latlng\":[-10,-55],\"landlocked\":false,\"borders\":[\"ARG\",\"BOL\",\"COL\",\"GUF\",\"GUY\",\"PRY\",\"PER\",\"SUR\",\"URY\",\"VEN\"],\"area\":8515767,\"flag\":\"🇧🇷\",\"demonyms\":{\"eng\":{\"f\":\"Brazilian\",\"m\":\"Brazilian\"},\"fra\":{\"f\":\"Brésilienne\",\"m\":\"Brésilien\"}}},{\"name\":{\"common\":\"Barbados\",\"official\":\"Barbados\",\"native\":{\"eng\":{\"official\":\"Barbados\",\"common\":\"Barbados\"}}},\"tld\":[\".bb\"],\"cca2\":\"BB\",\"ccn3\":\"052\",\"cca3\":\"BRB\",\"cioc\":\"BAR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BBD\":{\"name\":\"Barbadian dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"246\"]},\"capital\":[\"Bridgetown\"],\"altSpellings\":[\"BB\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"cym\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"deu\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"fra\":{\"official\":\"Barbade\",\"common\":\"Barbade\"},\"hrv\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"ita\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"jpn\":{\"official\":\"バルバドス\",\"common\":\"バルバドス\"},\"nld\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"por\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"rus\":{\"official\":\"Барбадос\",\"common\":\"Барбадос\"},\"slk\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"spa\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"fin\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"est\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"zho\":{\"official\":\"巴巴多斯\",\"common\":\"巴巴多斯\"},\"pol\":{\"official\":\"Barbados\",\"common\":\"Barbados\"},\"urd\":{\"official\":\"بارباڈوس\",\"common\":\"بارباڈوس\"},\"kor\":{\"official\":\"바베이도스\",\"common\":\"바베이도스\"},\"per\":{\"official\":\"باربادوس\",\"common\":\"باربادوس\"}},\"latlng\":[13.16666666,-59.53333333],\"landlocked\":false,\"borders\":[],\"area\":430,\"flag\":\"🇧🇧\",\"demonyms\":{\"eng\":{\"f\":\"Barbadian\",\"m\":\"Barbadian\"},\"fra\":{\"f\":\"Barbadienne\",\"m\":\"Barbadien\"}}},{\"name\":{\"common\":\"Brunei\",\"official\":\"Nation of Brunei, Abode of Peace\",\"native\":{\"msa\":{\"official\":\"Nation of Brunei, Abode Damai\",\"common\":\"Negara Brunei Darussalam\"}}},\"tld\":[\".bn\"],\"cca2\":\"BN\",\"ccn3\":\"096\",\"cca3\":\"BRN\",\"cioc\":\"BRU\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BND\":{\"name\":\"Brunei dollar\",\"symbol\":\"$\"},\"SGD\":{\"name\":\"Singapore dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"73\"]},\"capital\":[\"Bandar Seri Begawan\"],\"altSpellings\":[\"BN\",\"Brunei Darussalam\",\"Nation of Brunei\",\"the Abode of Peace\"],\"region\":\"Asia\",\"subregion\":\"South-Eastern Asia\",\"languages\":{\"msa\":\"Malay\"},\"translations\":{\"ces\":{\"official\":\"Sultanát Brunej\",\"common\":\"Brunej\"},\"cym\":{\"official\":\"Teyrnas Brwnei\",\"common\":\"Brunei\"},\"deu\":{\"official\":\"Sultanat Brunei Darussalam\",\"common\":\"Brunei\"},\"fra\":{\"official\":\"État de Brunei Darussalam\",\"common\":\"Brunei\"},\"hrv\":{\"official\":\"Nacija od Bruneja, Kuću Mira\",\"common\":\"Brunej\"},\"ita\":{\"official\":\"Nazione di Brunei, Dimora della Pace\",\"common\":\"Brunei\"},\"jpn\":{\"official\":\"ブルネイ、平和の精舎の国家\",\"common\":\"ブルネイ・ダルサラーム\"},\"nld\":{\"official\":\"Natie van Brunei, de verblijfplaats van de Vrede\",\"common\":\"Brunei\"},\"por\":{\"official\":\"Nação do Brunei, Morada da Paz\",\"common\":\"Brunei\"},\"rus\":{\"official\":\"Нация Бруней, обитель мира\",\"common\":\"Бруней\"},\"slk\":{\"official\":\"Brunejský sultanât\",\"common\":\"Brunej\"},\"spa\":{\"official\":\"Nación de Brunei, Morada de la Paz\",\"common\":\"Brunei\"},\"fin\":{\"official\":\"Brunei Darussalamin valtio\",\"common\":\"Brunei\"},\"est\":{\"official\":\"Brunei Darussalami Riik\",\"common\":\"Brunei\"},\"zho\":{\"official\":\"文莱和平之国\",\"common\":\"文莱\"},\"pol\":{\"official\":\"Państwo Brunei Darussalam\",\"common\":\"Brunei\"},\"urd\":{\"official\":\"ریاستِ برونائی دارالسلام\",\"common\":\"برونائی\"},\"kor\":{\"official\":\"브루나이 다루살람국\",\"common\":\"브루나이\"},\"per\":{\"official\":\"برونئی سرای صلح\",\"common\":\"برونئی\"}},\"latlng\":[4.5,114.66666666],\"landlocked\":false,\"borders\":[\"MYS\"],\"area\":5765,\"flag\":\"🇧🇳\",\"demonyms\":{\"eng\":{\"f\":\"Bruneian\",\"m\":\"Bruneian\"},\"fra\":{\"f\":\"Brunéienne\",\"m\":\"Brunéien\"}}},{\"name\":{\"common\":\"Bhutan\",\"official\":\"Kingdom of Bhutan\",\"native\":{\"dzo\":{\"official\":\"འབྲུག་རྒྱལ་ཁབ་\",\"common\":\"འབྲུག་ཡུལ་\"}}},\"tld\":[\".bt\"],\"cca2\":\"BT\",\"ccn3\":\"064\",\"cca3\":\"BTN\",\"cioc\":\"BHU\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BTN\":{\"name\":\"Bhutanese ngultrum\",\"symbol\":\"Nu.\"},\"INR\":{\"name\":\"Indian rupee\",\"symbol\":\"₹\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"75\"]},\"capital\":[\"Thimphu\"],\"altSpellings\":[\"BT\",\"Kingdom of Bhutan\"],\"region\":\"Asia\",\"subregion\":\"Southern Asia\",\"languages\":{\"dzo\":\"Dzongkha\"},\"translations\":{\"ces\":{\"official\":\"Bhútánské království\",\"common\":\"Bhútán\"},\"cym\":{\"official\":\"Teyrnas Bhwtan\",\"common\":\"Bhwtan\"},\"deu\":{\"official\":\"Königreich Bhutan\",\"common\":\"Bhutan\"},\"fra\":{\"official\":\"Royaume du Bhoutan\",\"common\":\"Bhoutan\"},\"hrv\":{\"official\":\"Kraljevina Butan\",\"common\":\"Butan\"},\"ita\":{\"official\":\"Regno del Bhutan\",\"common\":\"Bhutan\"},\"jpn\":{\"official\":\"ブータン王国\",\"common\":\"ブータン\"},\"nld\":{\"official\":\"Koninkrijk Bhutan\",\"common\":\"Bhutan\"},\"por\":{\"official\":\"Reino do Butão\",\"common\":\"Butão\"},\"rus\":{\"official\":\"Королевство Бутан\",\"common\":\"Бутан\"},\"slk\":{\"official\":\"Bhutánske krâľovstvo\",\"common\":\"Bhután\"},\"spa\":{\"official\":\"Reino de Bután\",\"common\":\"Bután\"},\"fin\":{\"official\":\"Bhutanin kuningaskunta\",\"common\":\"Bhutan\"},\"est\":{\"official\":\"Bhutani Kuningriik\",\"common\":\"Bhutan\"},\"zho\":{\"official\":\"不丹王国\",\"common\":\"不丹\"},\"pol\":{\"official\":\"Bhutan\",\"common\":\"Bhutan\"},\"urd\":{\"official\":\"سلطنت بھوٹان\",\"common\":\"بھوٹان\"},\"kor\":{\"official\":\"부탄 왕국\",\"common\":\"부탄\"},\"per\":{\"official\":\"پادشاهی بوتان\",\"common\":\"بوتان\"}},\"latlng\":[27.5,90.5],\"landlocked\":true,\"borders\":[\"CHN\",\"IND\"],\"area\":38394,\"flag\":\"🇧🇹\",\"demonyms\":{\"eng\":{\"f\":\"Bhutanese\",\"m\":\"Bhutanese\"},\"fra\":{\"f\":\"Bhoutanaise\",\"m\":\"Bhoutanais\"}}},{\"name\":{\"common\":\"Bouvet Island\",\"official\":\"Bouvet Island\",\"native\":{\"nor\":{\"official\":\"Bouvetøya\",\"common\":\"Bouvetøya\"}}},\"tld\":[\".bv\"],\"cca2\":\"BV\",\"ccn3\":\"074\",\"cca3\":\"BVT\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":[],\"idd\":{\"root\":\"+4\",\"suffixes\":[\"7\"]},\"capital\":[\"\"],\"altSpellings\":[\"BV\",\"Bouvetøya\",\"Bouvet-øya\"],\"region\":\"Antarctic\",\"subregion\":\"\",\"languages\":{\"nor\":\"Norwegian\"},\"translations\":{\"ces\":{\"official\":\"Bouvetův ostrov\",\"common\":\"Bouvetův ostrov\"},\"deu\":{\"official\":\"Bouvetinsel\",\"common\":\"Bouvetinsel\"},\"fra\":{\"official\":\"Île Bouvet\",\"common\":\"Île Bouvet\"},\"hrv\":{\"official\":\"Bouvet Island\",\"common\":\"Otok Bouvet\"},\"ita\":{\"official\":\"Isola Bouvet\",\"common\":\"Isola Bouvet\"},\"jpn\":{\"official\":\"ブーヴェ島\",\"common\":\"ブーベ島\"},\"nld\":{\"official\":\"Bouvet Island\",\"common\":\"Bouveteiland\"},\"por\":{\"official\":\"Ilha Bouvet\",\"common\":\"Ilha Bouvet\"},\"rus\":{\"official\":\"Остров Буве\",\"common\":\"Остров Буве\"},\"slk\":{\"official\":\"Bouvetov ostrov\",\"common\":\"Bouvetov ostrov\"},\"spa\":{\"official\":\"Isla Bouvet\",\"common\":\"Isla Bouvet\"},\"fin\":{\"official\":\"Bouvet\\'nsaari\",\"common\":\"Bouvet\\'nsaari\"},\"est\":{\"official\":\"Bouvet’ saar\",\"common\":\"Bouvet’ saar\"},\"zho\":{\"official\":\"布维岛\",\"common\":\"布维岛\"},\"pol\":{\"official\":\"Wyspa Bouveta\",\"common\":\"Wyspa Bouveta\"},\"urd\":{\"official\":\"جزیرہ بووہ\",\"common\":\"جزیرہ بووہ\"},\"kor\":{\"official\":\"부베 섬\",\"common\":\"부베 섬\"},\"per\":{\"official\":\"جزیرهٔ بووه\",\"common\":\"جزیرهٔ بووه\"}},\"latlng\":[-54.43333333,3.4],\"landlocked\":false,\"borders\":[],\"area\":49,\"flag\":\"🇧🇻\",\"demonyms\":{\"eng\":{\"f\":\"\",\"m\":\"\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Botswana\",\"official\":\"Republic of Botswana\",\"native\":{\"eng\":{\"official\":\"Republic of Botswana\",\"common\":\"Botswana\"},\"tsn\":{\"official\":\"Lefatshe la Botswana\",\"common\":\"Botswana\"}}},\"tld\":[\".bw\"],\"cca2\":\"BW\",\"ccn3\":\"072\",\"cca3\":\"BWA\",\"cioc\":\"BOT\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BWP\":{\"name\":\"Botswana pula\",\"symbol\":\"P\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"67\"]},\"capital\":[\"Gaborone\"],\"altSpellings\":[\"BW\",\"Republic of Botswana\",\"Lefatshe la Botswana\"],\"region\":\"Africa\",\"subregion\":\"Southern Africa\",\"languages\":{\"eng\":\"English\",\"tsn\":\"Tswana\"},\"translations\":{\"ces\":{\"official\":\"Botswanská republika\",\"common\":\"Botswana\"},\"deu\":{\"official\":\"Republik Botsuana\",\"common\":\"Botswana\"},\"fra\":{\"official\":\"République du Botswana\",\"common\":\"Botswana\"},\"hrv\":{\"official\":\"Republika Bocvana\",\"common\":\"Bocvana\"},\"ita\":{\"official\":\"Repubblica del Botswana\",\"common\":\"Botswana\"},\"jpn\":{\"official\":\"ボツワナ共和国\",\"common\":\"ボツワナ\"},\"nld\":{\"official\":\"Republiek Botswana\",\"common\":\"Botswana\"},\"por\":{\"official\":\"República do Botswana\",\"common\":\"Botswana\"},\"rus\":{\"official\":\"Республика Ботсвана\",\"common\":\"Ботсвана\"},\"slk\":{\"official\":\"Botswanská republika\",\"common\":\"Botswana\"},\"spa\":{\"official\":\"República de Botswana\",\"common\":\"Botswana\"},\"fin\":{\"official\":\"Botswanan tasavalta\",\"common\":\"Botswana\"},\"est\":{\"official\":\"Botswana Vabariik\",\"common\":\"Botswana\"},\"zho\":{\"official\":\"博茨瓦纳共和国\",\"common\":\"博茨瓦纳\"},\"pol\":{\"official\":\"Republika Botswany\",\"common\":\"Botswana\"},\"urd\":{\"official\":\"جمہوریہ بوٹسوانا\",\"common\":\"بوٹسوانا\"},\"kor\":{\"official\":\"보츠와나 공화국\",\"common\":\"보츠와나\"},\"per\":{\"official\":\"جمهوری بوتسوانا\",\"common\":\"بوتسوانا\"}},\"latlng\":[-22,24],\"landlocked\":true,\"borders\":[\"NAM\",\"ZAF\",\"ZMB\",\"ZWE\"],\"area\":582000,\"flag\":\"🇧🇼\",\"demonyms\":{\"eng\":{\"f\":\"Motswana\",\"m\":\"Motswana\"},\"fra\":{\"f\":\"Botswanaise\",\"m\":\"Botswanais\"}}},{\"name\":{\"common\":\"Central African Republic\",\"official\":\"Central African Republic\",\"native\":{\"fra\":{\"official\":\"République centrafricaine\",\"common\":\"République centrafricaine\"},\"sag\":{\"official\":\"Ködörösêse tî Bêafrîka\",\"common\":\"Bêafrîka\"}}},\"tld\":[\".cf\"],\"cca2\":\"CF\",\"ccn3\":\"140\",\"cca3\":\"CAF\",\"cioc\":\"CAF\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XAF\":{\"name\":\"Central African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"36\"]},\"capital\":[\"Bangui\"],\"altSpellings\":[\"CF\",\"Central African Republic\",\"République centrafricaine\"],\"region\":\"Africa\",\"subregion\":\"Middle Africa\",\"languages\":{\"fra\":\"French\",\"sag\":\"Sango\"},\"translations\":{\"ces\":{\"official\":\"Středoafrická republika\",\"common\":\"Středoafrická republika\"},\"cym\":{\"official\":\"Gweriniaeth Canolbarth Affrica\",\"common\":\"Gweriniaeth Canolbarth Affrica\"},\"deu\":{\"official\":\"Zentralafrikanische Republik\",\"common\":\"Zentralafrikanische Republik\"},\"fra\":{\"official\":\"République centrafricaine\",\"common\":\"République centrafricaine\"},\"hrv\":{\"official\":\"Centralna Afrička Republika\",\"common\":\"Srednjoafrička Republika\"},\"ita\":{\"official\":\"Repubblica Centrafricana\",\"common\":\"Repubblica Centrafricana\"},\"jpn\":{\"official\":\"中央アフリカ共和国\",\"common\":\"中央アフリカ共和国\"},\"nld\":{\"official\":\"Centraal-Afrikaanse Republiek\",\"common\":\"Centraal-Afrikaanse Republiek\"},\"por\":{\"official\":\"República Centro-Africano\",\"common\":\"República Centro-Africana\"},\"rus\":{\"official\":\"Центрально-Африканская Республика\",\"common\":\"Центральноафриканская Республика\"},\"slk\":{\"official\":\"Stredoafrická republika\",\"common\":\"Stredoafrická republika\"},\"spa\":{\"official\":\"República Centroafricana\",\"common\":\"República Centroafricana\"},\"fin\":{\"official\":\"Keski-Afrikan tasavalta\",\"common\":\"Keski-Afrikan tasavalta\"},\"est\":{\"official\":\"Kesk-Aafrika Vabariik\",\"common\":\"Kesk-Aafrika Vabariik\"},\"zho\":{\"official\":\"中非共和国\",\"common\":\"中非共和国\"},\"pol\":{\"official\":\"Republika Środkowoafrykańska\",\"common\":\"Republika Środkowoafrykańska\"},\"urd\":{\"official\":\"وسطی افریقی جمہوریہ\",\"common\":\"وسطی افریقی جمہوریہ\"},\"kor\":{\"official\":\"중앙아프리카 공화국\",\"common\":\"중앙아프리카 공화국\"},\"per\":{\"official\":\"جمهوری آفریقای مرکزی\",\"common\":\"جمهوری آفریقای مرکزی\"}},\"latlng\":[7,21],\"landlocked\":true,\"borders\":[\"CMR\",\"TCD\",\"COD\",\"COG\",\"SSD\",\"SDN\"],\"area\":622984,\"flag\":\"🇨🇫\",\"demonyms\":{\"eng\":{\"f\":\"Central African\",\"m\":\"Central African\"},\"fra\":{\"f\":\"Centrafricaine\",\"m\":\"Centrafricain\"}}},{\"name\":{\"common\":\"Canada\",\"official\":\"Canada\",\"native\":{\"eng\":{\"official\":\"Canada\",\"common\":\"Canada\"},\"fra\":{\"official\":\"Canada\",\"common\":\"Canada\"}}},\"tld\":[\".ca\"],\"cca2\":\"CA\",\"ccn3\":\"124\",\"cca3\":\"CAN\",\"cioc\":\"CAN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"CAD\":{\"name\":\"Canadian dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"\"]},\"capital\":[\"Ottawa\"],\"altSpellings\":[\"CA\"],\"region\":\"Americas\",\"subregion\":\"North America\",\"languages\":{\"eng\":\"English\",\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Kanada\",\"common\":\"Kanada\"},\"cym\":{\"official\":\"Canada\",\"common\":\"Canada\"},\"deu\":{\"official\":\"Kanada\",\"common\":\"Kanada\"},\"fra\":{\"official\":\"Canada\",\"common\":\"Canada\"},\"hrv\":{\"official\":\"Kanada\",\"common\":\"Kanada\"},\"ita\":{\"official\":\"Canada\",\"common\":\"Canada\"},\"jpn\":{\"official\":\"カナダ\",\"common\":\"カナダ\"},\"nld\":{\"official\":\"Canada\",\"common\":\"Canada\"},\"por\":{\"official\":\"Canadá\",\"common\":\"Canadá\"},\"rus\":{\"official\":\"Канада\",\"common\":\"Канада\"},\"slk\":{\"official\":\"Kanada\",\"common\":\"Kanada\"},\"spa\":{\"official\":\"Canadá\",\"common\":\"Canadá\"},\"fin\":{\"official\":\"Kanada\",\"common\":\"Kanada\"},\"est\":{\"official\":\"Kanada\",\"common\":\"Kanada\"},\"zho\":{\"official\":\"加拿大\",\"common\":\"加拿大\"},\"pol\":{\"official\":\"Kanada\",\"common\":\"Kanada\"},\"urd\":{\"official\":\"کینیڈا\",\"common\":\"کینیڈا\"},\"kor\":{\"official\":\"캐나다\",\"common\":\"캐나다\"},\"per\":{\"official\":\"کانادا\",\"common\":\"کانادا\"}},\"latlng\":[60,-95],\"landlocked\":false,\"borders\":[\"USA\"],\"area\":9984670,\"flag\":\"🇨🇦\",\"demonyms\":{\"eng\":{\"f\":\"Canadian\",\"m\":\"Canadian\"},\"fra\":{\"f\":\"Canadienne\",\"m\":\"Canadien\"}}},{\"name\":{\"common\":\"Cocos (Keeling) Islands\",\"official\":\"Territory of the Cocos (Keeling) Islands\",\"native\":{\"eng\":{\"official\":\"Territory of the Cocos (Keeling) Islands\",\"common\":\"Cocos (Keeling) Islands\"}}},\"tld\":[\".cc\"],\"cca2\":\"CC\",\"ccn3\":\"166\",\"cca3\":\"CCK\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"AUD\":{\"name\":\"Australian dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"1\"]},\"capital\":[\"West Island\"],\"altSpellings\":[\"CC\",\"Keeling Islands\",\"Cocos Islands\"],\"region\":\"Oceania\",\"subregion\":\"Australia and New Zealand\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Kokosové ostrovy\",\"common\":\"Kokosové ostrovy\"},\"cym\":{\"official\":\"Tiriogaeth yr Ynysoedd Cocos (Keeling)\",\"common\":\"Ynysoedd Cocos\"},\"deu\":{\"official\":\"Gebiet der Kokos- (Keeling-) Inseln\",\"common\":\"Kokosinseln\"},\"fra\":{\"official\":\"Territoire des îles Cocos (Keeling)\",\"common\":\"Îles Cocos\"},\"hrv\":{\"official\":\"Teritoriju Kokosovi (Keeling) Islands\",\"common\":\"Kokosovi Otoci\"},\"ita\":{\"official\":\"Territorio della (Keeling) Isole Cocos\",\"common\":\"Isole Cocos e Keeling\"},\"jpn\":{\"official\":\"ココス諸島の領土\",\"common\":\"ココス(キーリング)諸島\"},\"nld\":{\"official\":\"Grondgebied van de Eilanden Cocos (Keeling )\",\"common\":\"Cocoseilanden\"},\"por\":{\"official\":\"Território dos Cocos (Keeling)\",\"common\":\"Ilhas Cocos (Keeling)\"},\"rus\":{\"official\":\"Территория Кокосовые (Килинг) острова\",\"common\":\"Кокосовые острова\"},\"slk\":{\"official\":\"Kokosové ostrovy\",\"common\":\"Kokosové ostrovy\"},\"spa\":{\"official\":\"Territorio de los (Keeling) Islas Cocos\",\"common\":\"Islas Cocos o Islas Keeling\"},\"fin\":{\"official\":\"Kookossaaret\",\"common\":\"Kookossaaret\"},\"est\":{\"official\":\"Kookossaarte ala\",\"common\":\"Kookossaared\"},\"zho\":{\"official\":\"科科斯\",\"common\":\"科科斯\"},\"pol\":{\"official\":\"Wyspy Kokosowe\",\"common\":\"Wyspy Kokosowe\"},\"urd\":{\"official\":\"جزائر (کیلنگ) کوکوس\",\"common\":\"جزائر کوکوس\"},\"kor\":{\"official\":\"코코스 제도\",\"common\":\"코코스 제도\"},\"per\":{\"official\":\"جزایر کوکوس\",\"common\":\"جزایر کوکوس\"}},\"latlng\":[-12.5,96.83333333],\"landlocked\":false,\"borders\":[],\"area\":14,\"flag\":\"🇨🇨\",\"demonyms\":{\"eng\":{\"f\":\"Cocos Islander\",\"m\":\"Cocos Islander\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Switzerland\",\"official\":\"Swiss Confederation\",\"native\":{\"fra\":{\"official\":\"Confédération suisse\",\"common\":\"Suisse\"},\"gsw\":{\"official\":\"Schweizerische Eidgenossenschaft\",\"common\":\"Schweiz\"},\"ita\":{\"official\":\"Confederazione Svizzera\",\"common\":\"Svizzera\"},\"roh\":{\"official\":\"Confederaziun svizra\",\"common\":\"Svizra\"}}},\"tld\":[\".ch\"],\"cca2\":\"CH\",\"ccn3\":\"756\",\"cca3\":\"CHE\",\"cioc\":\"SUI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"CHF\":{\"name\":\"Swiss franc\",\"symbol\":\"Fr.\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"1\"]},\"capital\":[\"Bern\"],\"altSpellings\":[\"CH\",\"Swiss Confederation\",\"Schweiz\",\"Suisse\",\"Svizzera\",\"Svizra\"],\"region\":\"Europe\",\"subregion\":\"Western Europe\",\"languages\":{\"fra\":\"French\",\"gsw\":\"Swiss German\",\"ita\":\"Italian\",\"roh\":\"Romansh\"},\"translations\":{\"ces\":{\"official\":\"Švýcarská konfederace\",\"common\":\"Švýcarsko\"},\"deu\":{\"official\":\"Schweizerische Eidgenossenschaft\",\"common\":\"Schweiz\"},\"fra\":{\"official\":\"Confédération suisse\",\"common\":\"Suisse\"},\"hrv\":{\"official\":\"švicarska Konfederacija\",\"common\":\"Švicarska\"},\"ita\":{\"official\":\"Confederazione svizzera\",\"common\":\"Svizzera\"},\"jpn\":{\"official\":\"スイス連邦\",\"common\":\"スイス\"},\"nld\":{\"official\":\"Zwitserse Confederatie\",\"common\":\"Zwitserland\"},\"por\":{\"official\":\"Confederação Suíça\",\"common\":\"Suíça\"},\"rus\":{\"official\":\"Швейцарская Конфедерация\",\"common\":\"Швейцария\"},\"slk\":{\"official\":\"Švajčiarska konfederácia\",\"common\":\"Švajčiarsko\"},\"spa\":{\"official\":\"Confederación Suiza\",\"common\":\"Suiza\"},\"fin\":{\"official\":\"Sveitsin valaliitto\",\"common\":\"Sveitsi\"},\"est\":{\"official\":\"Šveitsi Konföderatsioon\",\"common\":\"Šveits\"},\"zho\":{\"official\":\"瑞士联邦\",\"common\":\"瑞士\"},\"pol\":{\"official\":\"Konfederacja Szwajcarska\",\"common\":\"Szwajcaria\"},\"urd\":{\"official\":\"سوئیس متحدہ\",\"common\":\"سویٹذرلینڈ\"},\"kor\":{\"official\":\"스위스 연방\",\"common\":\"스위스\"},\"per\":{\"official\":\"کنفدراسیون سوئیس\",\"common\":\"سوئیس\"}},\"latlng\":[47,8],\"landlocked\":true,\"borders\":[\"AUT\",\"FRA\",\"ITA\",\"LIE\",\"DEU\"],\"area\":41284,\"flag\":\"🇨🇭\",\"demonyms\":{\"eng\":{\"f\":\"Swiss\",\"m\":\"Swiss\"},\"fra\":{\"f\":\"Suisse\",\"m\":\"Suisse\"}}},{\"name\":{\"common\":\"Chile\",\"official\":\"Republic of Chile\",\"native\":{\"spa\":{\"official\":\"República de Chile\",\"common\":\"Chile\"}}},\"tld\":[\".cl\"],\"cca2\":\"CL\",\"ccn3\":\"152\",\"cca3\":\"CHL\",\"cioc\":\"CHI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"CLP\":{\"name\":\"Chilean peso\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"6\"]},\"capital\":[\"Santiago\"],\"altSpellings\":[\"CL\",\"Republic of Chile\",\"República de Chile\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Chilská republika\",\"common\":\"Chile\"},\"cym\":{\"official\":\"Gweriniaeth Chile\",\"common\":\"Chile\"},\"deu\":{\"official\":\"Republik Chile\",\"common\":\"Chile\"},\"fra\":{\"official\":\"République du Chili\",\"common\":\"Chili\"},\"hrv\":{\"official\":\"Republika Čile\",\"common\":\"Čile\"},\"ita\":{\"official\":\"Repubblica del Cile\",\"common\":\"Cile\"},\"jpn\":{\"official\":\"チリ共和国\",\"common\":\"チリ\"},\"nld\":{\"official\":\"Republiek Chili\",\"common\":\"Chili\"},\"por\":{\"official\":\"República do Chile\",\"common\":\"Chile\"},\"rus\":{\"official\":\"Республика Чили\",\"common\":\"Чили\"},\"slk\":{\"official\":\"Čílska republika\",\"common\":\"Čile\"},\"spa\":{\"official\":\"República de Chile\",\"common\":\"Chile\"},\"fin\":{\"official\":\"Chilen tasavalta\",\"common\":\"Chile\"},\"est\":{\"official\":\"Tšiili Vabariik\",\"common\":\"Tšiili\"},\"zho\":{\"official\":\"智利共和国\",\"common\":\"智利\"},\"pol\":{\"official\":\"Republika Chile\",\"common\":\"Chile\"},\"urd\":{\"official\":\"جمہوریہ چلی\",\"common\":\"چلی\"},\"kor\":{\"official\":\"칠레 공화국\",\"common\":\"칠레\"},\"per\":{\"official\":\"جمهوری شیلی\",\"common\":\"شیلی\"}},\"latlng\":[-30,-71],\"landlocked\":false,\"borders\":[\"ARG\",\"BOL\",\"PER\"],\"area\":756102,\"flag\":\"🇨🇱\",\"demonyms\":{\"eng\":{\"f\":\"Chilean\",\"m\":\"Chilean\"},\"fra\":{\"f\":\"Chilienne\",\"m\":\"Chilien\"}}},{\"name\":{\"common\":\"China\",\"official\":\"People\\'s Republic of China\",\"native\":{\"zho\":{\"official\":\"中华人民共和国\",\"common\":\"中国\"}}},\"tld\":[\".cn\",\".中国\",\".中國\",\".公司\",\".网络\"],\"cca2\":\"CN\",\"ccn3\":\"156\",\"cca3\":\"CHN\",\"cioc\":\"CHN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"CNY\":{\"name\":\"Chinese yuan\",\"symbol\":\"¥\"}},\"idd\":{\"root\":\"+8\",\"suffixes\":[\"6\"]},\"capital\":[\"Beijing\"],\"altSpellings\":[\"CN\",\"Zhōngguó\",\"Zhongguo\",\"Zhonghua\",\"People\\'s Republic of China\",\"中华人民共和国\",\"Zhōnghuá Rénmín Gònghéguó\"],\"region\":\"Asia\",\"subregion\":\"Eastern Asia\",\"languages\":{\"zho\":\"Chinese\"},\"translations\":{\"ces\":{\"official\":\"Čínská lidová republika\",\"common\":\"Čína\"},\"cym\":{\"official\":\"Gweriniaeth Pobl Tsieina\",\"common\":\"Tsieina\"},\"deu\":{\"official\":\"Volksrepublik China\",\"common\":\"China\"},\"fra\":{\"official\":\"République populaire de Chine\",\"common\":\"Chine\"},\"hrv\":{\"official\":\"Narodna Republika Kina\",\"common\":\"Kina\"},\"ita\":{\"official\":\"Repubblica popolare cinese\",\"common\":\"Cina\"},\"jpn\":{\"official\":\"中華人民共和国\",\"common\":\"中国\"},\"nld\":{\"official\":\"Volksrepubliek China\",\"common\":\"China\"},\"por\":{\"official\":\"República Popular da China\",\"common\":\"China\"},\"rus\":{\"official\":\"Народная Республика Китай\",\"common\":\"Китай\"},\"slk\":{\"official\":\"Čínska ľudová republika\",\"common\":\"Čína\"},\"spa\":{\"official\":\"República Popular de China\",\"common\":\"China\"},\"fin\":{\"official\":\"Kiinan kansantasavalta\",\"common\":\"Kiina\"},\"est\":{\"official\":\"Hiina Rahvavabariik\",\"common\":\"Hiina\"},\"pol\":{\"official\":\"Chińska Republika Ludowa\",\"common\":\"Chiny\"},\"urd\":{\"official\":\"عوامی جمہوریہ چین\",\"common\":\"چین\"},\"kor\":{\"official\":\"중화인민공화국\",\"common\":\"중국\"},\"per\":{\"official\":\"جمهوری خلق چین\",\"common\":\"چین\"}},\"latlng\":[35,105],\"landlocked\":false,\"borders\":[\"AFG\",\"BTN\",\"MMR\",\"HKG\",\"IND\",\"KAZ\",\"NPL\",\"PRK\",\"KGZ\",\"LAO\",\"MAC\",\"MNG\",\"PAK\",\"RUS\",\"TJK\",\"VNM\"],\"area\":9706961,\"flag\":\"🇨🇳\",\"demonyms\":{\"eng\":{\"f\":\"Chinese\",\"m\":\"Chinese\"},\"fra\":{\"f\":\"Chinoise\",\"m\":\"Chinois\"}}},{\"name\":{\"common\":\"Ivory Coast\",\"official\":\"Republic of Côte d\\'Ivoire\",\"native\":{\"fra\":{\"official\":\"République de Côte d\\'Ivoire\",\"common\":\"Côte d\\'Ivoire\"}}},\"tld\":[\".ci\"],\"cca2\":\"CI\",\"ccn3\":\"384\",\"cca3\":\"CIV\",\"cioc\":\"CIV\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XOF\":{\"name\":\"West African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"25\"]},\"capital\":[\"Yamoussoukro\"],\"altSpellings\":[\"CI\",\"Côte d\\'Ivoire\",\"Ivory Coast\",\"Republic of Côte d\\'Ivoire\",\"République de Côte d\\'Ivoire\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Republika Pobřeží slonoviny\",\"common\":\"Pobřeží slonoviny\"},\"deu\":{\"official\":\"Republik Côte d\\'Ivoire\",\"common\":\"Elfenbeinküste\"},\"fra\":{\"official\":\"République de Côte d\\' Ivoire\",\"common\":\"Côte d\\'Ivoire\"},\"hrv\":{\"official\":\"Republika Côte d\\'Ivoire\",\"common\":\"Obala Bjelokosti\"},\"ita\":{\"official\":\"Repubblica della Costa d\\'Avorio\",\"common\":\"Costa d\\'Avorio\"},\"jpn\":{\"official\":\"コートジボワール共和国\",\"common\":\"コートジボワール\"},\"nld\":{\"official\":\"Republiek Ivoorkust\",\"common\":\"Ivoorkust\"},\"por\":{\"official\":\"República da Côte d\\'Ivoire\",\"common\":\"Costa do Marfim\"},\"rus\":{\"official\":\"Республика Кот-д\\'Ивуаре\",\"common\":\"Кот-д’Ивуар\"},\"slk\":{\"official\":\"Republika Pobrežie Slonoviny\",\"common\":\"Pobržie Slonoviny\"},\"spa\":{\"official\":\"República de Côte d\\'Ivoire\",\"common\":\"Costa de Marfil\"},\"fin\":{\"official\":\"Norsunluurannikon tasavalta\",\"common\":\"Norsunluurannikko\"},\"est\":{\"official\":\"Côte d’Ivoire’i Vabariik\",\"common\":\"Elevandiluurannik\"},\"zho\":{\"official\":\"科特迪瓦共和国\",\"common\":\"科特迪瓦\"},\"pol\":{\"official\":\"Republika WybrzeŻa Kości Słoniowej\",\"common\":\"WybrzeŻe Kości Słoniowej\"},\"urd\":{\"official\":\"جمہوریہ کوت دیواغ\",\"common\":\"آئیوری کوسٹ\"},\"kor\":{\"official\":\"코트디부아르 공화국\",\"common\":\"코트디부아르\"},\"per\":{\"official\":\"جمهوری ساحل عاج\",\"common\":\"ساحل عاج\"}},\"latlng\":[8,-5],\"landlocked\":false,\"borders\":[\"BFA\",\"GHA\",\"GIN\",\"LBR\",\"MLI\"],\"area\":322463,\"flag\":\"🇨🇮\",\"demonyms\":{\"eng\":{\"f\":\"Ivorian\",\"m\":\"Ivorian\"},\"fra\":{\"f\":\"Ivoirienne\",\"m\":\"Ivoirien\"}}},{\"name\":{\"common\":\"Cameroon\",\"official\":\"Republic of Cameroon\",\"native\":{\"eng\":{\"official\":\"Republic of Cameroon\",\"common\":\"Cameroon\"},\"fra\":{\"official\":\"République du Cameroun\",\"common\":\"Cameroun\"}}},\"tld\":[\".cm\"],\"cca2\":\"CM\",\"ccn3\":\"120\",\"cca3\":\"CMR\",\"cioc\":\"CMR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XAF\":{\"name\":\"Central African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"37\"]},\"capital\":[\"Yaoundé\"],\"altSpellings\":[\"CM\",\"Republic of Cameroon\",\"République du Cameroun\"],\"region\":\"Africa\",\"subregion\":\"Middle Africa\",\"languages\":{\"eng\":\"English\",\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Kamerunská republika\",\"common\":\"Kamerun\"},\"cym\":{\"official\":\"Gweriniaeth Camerŵn\",\"common\":\"Camerŵn\"},\"deu\":{\"official\":\"Republik Kamerun\",\"common\":\"Kamerun\"},\"fra\":{\"official\":\"République du Cameroun\",\"common\":\"Cameroun\"},\"hrv\":{\"official\":\"Republika Kamerun\",\"common\":\"Kamerun\"},\"ita\":{\"official\":\"Repubblica del Camerun\",\"common\":\"Camerun\"},\"jpn\":{\"official\":\"カメルーン共和国\",\"common\":\"カメルーン\"},\"nld\":{\"official\":\"Republiek Kameroen\",\"common\":\"Kameroen\"},\"por\":{\"official\":\"República dos Camarões\",\"common\":\"Camarões\"},\"rus\":{\"official\":\"Республика Камерун\",\"common\":\"Камерун\"},\"slk\":{\"official\":\"Kamerunská republika\",\"common\":\"Kamerun\"},\"spa\":{\"official\":\"República de Camerún\",\"common\":\"Camerún\"},\"fin\":{\"official\":\"Kamerunin tasavalta\",\"common\":\"Kamerun\"},\"est\":{\"official\":\"Kameruni Vabariik\",\"common\":\"Kamerun\"},\"zho\":{\"official\":\"喀麦隆共和国\",\"common\":\"喀麦隆\"},\"pol\":{\"official\":\"Republika WybrzeŻa Kości Słoniowej\",\"common\":\"WybrzeŻe Kości Słoniowej\"},\"urd\":{\"official\":\"جمہوریہ کیمرون\",\"common\":\"کیمرون\"},\"kor\":{\"official\":\"카메룬 공화국\",\"common\":\"카메룬\"},\"per\":{\"official\":\"جمهوری کامِرون\",\"common\":\"کامِرون\"}},\"latlng\":[6,12],\"landlocked\":false,\"borders\":[\"CAF\",\"TCD\",\"COG\",\"GNQ\",\"GAB\",\"NGA\"],\"area\":475442,\"flag\":\"🇨🇲\",\"demonyms\":{\"eng\":{\"f\":\"Cameroonian\",\"m\":\"Cameroonian\"},\"fra\":{\"f\":\"Camerounaise\",\"m\":\"Camerounais\"}}},{\"name\":{\"common\":\"DR Congo\",\"official\":\"Democratic Republic of the Congo\",\"native\":{\"fra\":{\"official\":\"République démocratique du Congo\",\"common\":\"RD Congo\"},\"kon\":{\"official\":\"Repubilika ya Kongo Demokratiki\",\"common\":\"Repubilika ya Kongo Demokratiki\"},\"lin\":{\"official\":\"Republiki ya Kongó Demokratiki\",\"common\":\"Republiki ya Kongó Demokratiki\"},\"lua\":{\"official\":\"Ditunga dia Kongu wa Mungalaata\",\"common\":\"Ditunga dia Kongu wa Mungalaata\"},\"swa\":{\"official\":\"Jamhuri ya Kidemokrasia ya Kongo\",\"common\":\"Jamhuri ya Kidemokrasia ya Kongo\"}}},\"tld\":[\".cd\"],\"cca2\":\"CD\",\"ccn3\":\"180\",\"cca3\":\"COD\",\"cioc\":\"COD\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"CDF\":{\"name\":\"Congolese franc\",\"symbol\":\"FC\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"43\"]},\"capital\":[\"Kinshasa\"],\"altSpellings\":[\"CD\",\"DR Congo\",\"Congo-Kinshasa\",\"Congo, the Democratic Republic of the\",\"DRC\"],\"region\":\"Africa\",\"subregion\":\"Middle Africa\",\"languages\":{\"fra\":\"French\",\"kon\":\"Kikongo\",\"lin\":\"Lingala\",\"lua\":\"Tshiluba\",\"swa\":\"Swahili\"},\"translations\":{\"ces\":{\"official\":\"Demokratická republika Kongo\",\"common\":\"DR Kongo\"},\"cym\":{\"official\":\"Gweriniaeth Ddemocrataidd Congo\",\"common\":\"Gweriniaeth Ddemocrataidd Congo\"},\"deu\":{\"official\":\"Demokratische Republik Kongo\",\"common\":\"Kongo (Dem. Rep.)\"},\"fra\":{\"official\":\"République démocratique du Congo\",\"common\":\"Congo (Rép. dém.)\"},\"hrv\":{\"official\":\"Demokratska Republika Kongo\",\"common\":\"Kongo, Demokratska Republika\"},\"ita\":{\"official\":\"Repubblica Democratica del Congo\",\"common\":\"Congo (Rep. Dem.)\"},\"jpn\":{\"official\":\"コンゴ民主共和国\",\"common\":\"コンゴ民主共和国\"},\"nld\":{\"official\":\"Democratische Republiek Congo\",\"common\":\"Congo (DRC)\"},\"por\":{\"official\":\"República Democrática do Congo\",\"common\":\"República Democrática do Congo\"},\"rus\":{\"official\":\"Демократическая Республика Конго\",\"common\":\"Демократическая Республика Конго\"},\"slk\":{\"official\":\"Konžská demokratická republika\",\"common\":\"Kongo\"},\"spa\":{\"official\":\"República Democrática del Congo\",\"common\":\"Congo (Rep. Dem.)\"},\"fin\":{\"official\":\"Kongon demokraattinen tasavalta\",\"common\":\"Kongon demokraattinen tasavalta\"},\"est\":{\"official\":\"Kongo Demokraatlik Vabariik\",\"common\":\"Kongo DV\"},\"zho\":{\"official\":\"刚果民主共和国\",\"common\":\"民主刚果\"},\"pol\":{\"official\":\"Demokratyczna Republika Konga\",\"common\":\"Demokratyczna Republika Konga\"},\"urd\":{\"official\":\"جمہوری جمہوریہ کانگو\",\"common\":\"\\\\nکانگو\"},\"kor\":{\"official\":\"콩고 민주 공화국\",\"common\":\"콩고 민주 공화국\"},\"per\":{\"official\":\"جمهوری دموکراتیک کنگو\",\"common\":\"کنگو دموکراتیک\"}},\"latlng\":[0,25],\"landlocked\":false,\"borders\":[\"AGO\",\"BDI\",\"CAF\",\"COG\",\"RWA\",\"SSD\",\"TZA\",\"UGA\",\"ZMB\"],\"area\":2344858,\"flag\":\"🇨🇩\",\"demonyms\":{\"eng\":{\"f\":\"Congolese\",\"m\":\"Congolese\"},\"fra\":{\"f\":\"Congolaise\",\"m\":\"Congolais\"}}},{\"name\":{\"common\":\"Republic of the Congo\",\"official\":\"Republic of the Congo\",\"native\":{\"fra\":{\"official\":\"République du Congo\",\"common\":\"République du Congo\"},\"kon\":{\"official\":\"Repubilika ya Kongo\",\"common\":\"Repubilika ya Kongo\"},\"lin\":{\"official\":\"Republíki ya Kongó\",\"common\":\"Republíki ya Kongó\"}}},\"tld\":[\".cg\"],\"cca2\":\"CG\",\"ccn3\":\"178\",\"cca3\":\"COG\",\"cioc\":\"CGO\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XAF\":{\"name\":\"Central African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"42\"]},\"capital\":[\"Brazzaville\"],\"altSpellings\":[\"CG\",\"Congo\",\"Congo-Brazzaville\"],\"region\":\"Africa\",\"subregion\":\"Middle Africa\",\"languages\":{\"fra\":\"French\",\"kon\":\"Kikongo\",\"lin\":\"Lingala\"},\"translations\":{\"ces\":{\"official\":\"Konžská republika\",\"common\":\"Kongo\"},\"cym\":{\"official\":\"Gweriniaeth y Congo\",\"common\":\"Gweriniaeth y Congo\"},\"deu\":{\"official\":\"Republik Kongo\",\"common\":\"Kongo\"},\"fra\":{\"official\":\"République du Congo\",\"common\":\"Congo\"},\"hrv\":{\"official\":\"Republika Kongo\",\"common\":\"Kongo\"},\"ita\":{\"official\":\"Repubblica del Congo\",\"common\":\"Congo\"},\"jpn\":{\"official\":\"コンゴ共和国\",\"common\":\"コンゴ共和国\"},\"nld\":{\"official\":\"Republiek Congo\",\"common\":\"Congo\"},\"por\":{\"official\":\"República do Congo\",\"common\":\"Congo\"},\"rus\":{\"official\":\"Республика Конго\",\"common\":\"Республика Конго\"},\"slk\":{\"official\":\"Konžská republika\",\"common\":\"Kongo\"},\"spa\":{\"official\":\"República del Congo\",\"common\":\"Congo\"},\"fin\":{\"official\":\"Kongon tasavalta\",\"common\":\"Kongo-Brazzaville\"},\"est\":{\"official\":\"Kongo Vabariik\",\"common\":\"Kongo Vabariik\"},\"zho\":{\"official\":\"刚果共和国\",\"common\":\"刚果\"},\"pol\":{\"official\":\"Republika Konga\",\"common\":\"Kongo\"},\"urd\":{\"official\":\"جمہوریہ کانگو\",\"common\":\"جمہوریہ کانگو\"},\"kor\":{\"official\":\"콩고\",\"common\":\"콩고\"},\"per\":{\"official\":\"جمهوری برازاویل کُنگو\",\"common\":\"جمهوری کُنگو\"}},\"latlng\":[-1,15],\"landlocked\":false,\"borders\":[\"AGO\",\"CMR\",\"CAF\",\"COD\",\"GAB\"],\"area\":342000,\"flag\":\"🇨🇬\",\"demonyms\":{\"eng\":{\"f\":\"Congolese\",\"m\":\"Congolese\"},\"fra\":{\"f\":\"Congolaise\",\"m\":\"Congolais\"}}},{\"name\":{\"common\":\"Cook Islands\",\"official\":\"Cook Islands\",\"native\":{\"eng\":{\"official\":\"Cook Islands\",\"common\":\"Cook Islands\"},\"rar\":{\"official\":\"Kūki \\'Āirani\",\"common\":\"Kūki \\'Āirani\"}}},\"tld\":[\".ck\"],\"cca2\":\"CK\",\"ccn3\":\"184\",\"cca3\":\"COK\",\"cioc\":\"COK\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"CKD\":{\"name\":\"Cook Islands dollar\",\"symbol\":\"$\"},\"NZD\":{\"name\":\"New Zealand dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"82\"]},\"capital\":[\"Avarua\"],\"altSpellings\":[\"CK\",\"Kūki \\'Āirani\"],\"region\":\"Oceania\",\"subregion\":\"Polynesia\",\"languages\":{\"eng\":\"English\",\"rar\":\"Cook Islands Māori\"},\"translations\":{\"ces\":{\"official\":\"Cookovy ostrovy\",\"common\":\"Cookovy ostrovy\"},\"cym\":{\"official\":\"Ynysoedd Cook\",\"common\":\"Ynysoedd Cook\"},\"deu\":{\"official\":\"Cookinseln\",\"common\":\"Cookinseln\"},\"fra\":{\"official\":\"Îles Cook\",\"common\":\"Îles Cook\"},\"hrv\":{\"official\":\"Cook Islands\",\"common\":\"Cookovo Otočje\"},\"ita\":{\"official\":\"Isole Cook\",\"common\":\"Isole Cook\"},\"jpn\":{\"official\":\"クック諸島\",\"common\":\"クック諸島\"},\"nld\":{\"official\":\"Cook eilanden\",\"common\":\"Cookeilanden\"},\"por\":{\"official\":\"Ilhas Cook\",\"common\":\"Ilhas Cook\"},\"rus\":{\"official\":\"острова Кука\",\"common\":\"Острова Кука\"},\"slk\":{\"official\":\"Cookove ostrovy\",\"common\":\"Cookove ostrovy\"},\"spa\":{\"official\":\"Islas Cook\",\"common\":\"Islas Cook\"},\"fin\":{\"official\":\"Cookinsaaret\",\"common\":\"Cookinsaaret\"},\"est\":{\"official\":\"Cooki saared\",\"common\":\"Cooki saared\"},\"zho\":{\"official\":\"库克群岛\",\"common\":\"库克群岛\"},\"pol\":{\"official\":\"Wyspy Cooka\",\"common\":\"Wyspy Cooka\"},\"urd\":{\"official\":\"جزائر کک\",\"common\":\"جزائر کک\"},\"kor\":{\"official\":\"쿡 제도\",\"common\":\"쿡 제도\"},\"per\":{\"official\":\"جزایر کوک\",\"common\":\"جزایر کوک\"}},\"latlng\":[-21.23333333,-159.76666666],\"landlocked\":false,\"borders\":[],\"area\":236,\"flag\":\"🇨🇰\",\"demonyms\":{\"eng\":{\"f\":\"Cook Islander\",\"m\":\"Cook Islander\"},\"fra\":{\"f\":\"Cookienne\",\"m\":\"Cookien\"}}},{\"name\":{\"common\":\"Colombia\",\"official\":\"Republic of Colombia\",\"native\":{\"spa\":{\"official\":\"República de Colombia\",\"common\":\"Colombia\"}}},\"tld\":[\".co\"],\"cca2\":\"CO\",\"ccn3\":\"170\",\"cca3\":\"COL\",\"cioc\":\"COL\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"COP\":{\"name\":\"Colombian peso\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"7\"]},\"capital\":[\"Bogotá\"],\"altSpellings\":[\"CO\",\"Republic of Colombia\",\"República de Colombia\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Kolumbijská republika\",\"common\":\"Kolumbie\"},\"cym\":{\"official\":\"Gweriniaeth Colombia\",\"common\":\"Colombia\"},\"deu\":{\"official\":\"Republik Kolumbien\",\"common\":\"Kolumbien\"},\"fra\":{\"official\":\"République de Colombie\",\"common\":\"Colombie\"},\"hrv\":{\"official\":\"Republika Kolumbija\",\"common\":\"Kolumbija\"},\"ita\":{\"official\":\"Repubblica di Colombia\",\"common\":\"Colombia\"},\"jpn\":{\"official\":\"コロンビア共和国\",\"common\":\"コロンビア\"},\"nld\":{\"official\":\"Republiek Colombia\",\"common\":\"Colombia\"},\"por\":{\"official\":\"República da Colômbia\",\"common\":\"Colômbia\"},\"rus\":{\"official\":\"Республика Колумбия\",\"common\":\"Колумбия\"},\"slk\":{\"official\":\"Kolumbijská republika\",\"common\":\"Kolumbia\"},\"spa\":{\"official\":\"República de Colombia\",\"common\":\"Colombia\"},\"fin\":{\"official\":\"Kolumbian tasavalta\",\"common\":\"Kolumbia\"},\"est\":{\"official\":\"Colombia Vabariik\",\"common\":\"Colombia\"},\"zho\":{\"official\":\"哥伦比亚共和国\",\"common\":\"哥伦比亚\"},\"pol\":{\"official\":\"Republika Kolumbii\",\"common\":\"Kolumbia\"},\"urd\":{\"official\":\"جمہوریہ کولمبیا\",\"common\":\"کولمبیا\"},\"kor\":{\"official\":\"콜롬비아 공화국\",\"common\":\"콜롬비아\"},\"per\":{\"official\":\"جمهوری کلمبیا\",\"common\":\"کلمبیا\"}},\"latlng\":[4,-72],\"landlocked\":false,\"borders\":[\"BRA\",\"ECU\",\"PAN\",\"PER\",\"VEN\"],\"area\":1141748,\"flag\":\"🇨🇴\",\"demonyms\":{\"eng\":{\"f\":\"Colombian\",\"m\":\"Colombian\"},\"fra\":{\"f\":\"Colombienne\",\"m\":\"Colombien\"}}},{\"name\":{\"common\":\"Comoros\",\"official\":\"Union of the Comoros\",\"native\":{\"ara\":{\"official\":\"الاتحاد القمري\",\"common\":\"القمر\"},\"fra\":{\"official\":\"Union des Comores\",\"common\":\"Comores\"},\"zdj\":{\"official\":\"Udzima wa Komori\",\"common\":\"Komori\"}}},\"tld\":[\".km\"],\"cca2\":\"KM\",\"ccn3\":\"174\",\"cca3\":\"COM\",\"cioc\":\"COM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"KMF\":{\"name\":\"Comorian franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"69\"]},\"capital\":[\"Moroni\"],\"altSpellings\":[\"KM\",\"Union of the Comoros\",\"Union des Comores\",\"Udzima wa Komori\",\"al-Ittiḥād al-Qumurī\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"ara\":\"Arabic\",\"fra\":\"French\",\"zdj\":\"Comorian\"},\"translations\":{\"ces\":{\"official\":\"Komorský svaz\",\"common\":\"Komory\"},\"cym\":{\"official\":\"Undeb y Comoros\",\"common\":\"Y Comoros\"},\"deu\":{\"official\":\"Union der Komoren\",\"common\":\"Komoren\"},\"fra\":{\"official\":\"Union des Comores\",\"common\":\"Comores\"},\"hrv\":{\"official\":\"Savez Komori\",\"common\":\"Komori\"},\"ita\":{\"official\":\"Unione delle Comore\",\"common\":\"Comore\"},\"jpn\":{\"official\":\"コモロ連合\",\"common\":\"コモロ\"},\"nld\":{\"official\":\"Unie van de Comoren\",\"common\":\"Comoren\"},\"por\":{\"official\":\"União das Comores\",\"common\":\"Comores\"},\"rus\":{\"official\":\"Союз Коморских Островов\",\"common\":\"Коморы\"},\"slk\":{\"official\":\"Komorská únia\",\"common\":\"Komory\"},\"spa\":{\"official\":\"Unión de las Comoras\",\"common\":\"Comoras\"},\"fin\":{\"official\":\"Komorien liitto\",\"common\":\"Komorit\"},\"est\":{\"official\":\"Komoori Liit\",\"common\":\"Komoorid\"},\"zho\":{\"official\":\"科摩罗联盟\",\"common\":\"科摩罗\"},\"pol\":{\"official\":\"Związek Komorów\",\"common\":\"Komory\"},\"urd\":{\"official\":\"اتحاد القمری\",\"common\":\"القمری\"},\"kor\":{\"official\":\"코모로 연방\",\"common\":\"코모로\"},\"per\":{\"official\":\"مجمعالجزایر قمر\",\"common\":\"اتحاد قُمُر\"}},\"latlng\":[-12.16666666,44.25],\"landlocked\":false,\"borders\":[],\"area\":1862,\"flag\":\"🇰🇲\",\"demonyms\":{\"eng\":{\"f\":\"Comoran\",\"m\":\"Comoran\"},\"fra\":{\"f\":\"Comorienne\",\"m\":\"Comorien\"}}},{\"name\":{\"common\":\"Cape Verde\",\"official\":\"Republic of Cabo Verde\",\"native\":{\"por\":{\"official\":\"República de Cabo Verde\",\"common\":\"Cabo Verde\"}}},\"tld\":[\".cv\"],\"cca2\":\"CV\",\"ccn3\":\"132\",\"cca3\":\"CPV\",\"cioc\":\"CPV\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"CVE\":{\"name\":\"Cape Verdean escudo\",\"symbol\":\"Esc\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"38\"]},\"capital\":[\"Praia\"],\"altSpellings\":[\"CV\",\"Republic of Cabo Verde\",\"República de Cabo Verde\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"por\":\"Portuguese\"},\"translations\":{\"ces\":{\"official\":\"Kapverdská republika\",\"common\":\"Kapverdy\"},\"cym\":{\"official\":\"Gweriniaeth Cabo Verde\",\"common\":\"Penrhyn Verde\"},\"deu\":{\"official\":\"Republik Cabo Verde\",\"common\":\"Kap Verde\"},\"fra\":{\"official\":\"République du Cap-Vert\",\"common\":\"Îles du Cap-Vert\"},\"hrv\":{\"official\":\"Republika Cabo Verde\",\"common\":\"Zelenortska Republika\"},\"ita\":{\"official\":\"Repubblica di Capo Verde\",\"common\":\"Capo Verde\"},\"jpn\":{\"official\":\"カーボベルデ共和国\",\"common\":\"カーボベルデ\"},\"nld\":{\"official\":\"Republiek van Cabo Verde\",\"common\":\"Kaapverdië\"},\"por\":{\"official\":\"República de Cabo Verde\",\"common\":\"Cabo Verde\"},\"rus\":{\"official\":\"Республика Кабо -Верде\",\"common\":\"Кабо-Верде\"},\"slk\":{\"official\":\"Kapverdská republika\",\"common\":\"Kapverdy\"},\"spa\":{\"official\":\"República de Cabo Verde\",\"common\":\"Cabo Verde\"},\"fin\":{\"official\":\"Kap Verden tasavalta\",\"common\":\"Kap Verde\"},\"est\":{\"official\":\"Cabo Verde Vabariik\",\"common\":\"Roheneemesaared\"},\"zho\":{\"official\":\"佛得角共和国\",\"common\":\"佛得角\"},\"pol\":{\"official\":\"Republika Zielonego Przylądka\",\"common\":\"Republika Zielonego Przylądka\"},\"urd\":{\"official\":\"جمہوریہ کیپ ورڈی\",\"common\":\"کیپ ورڈی\"},\"kor\":{\"official\":\"카보베르데 공화국\",\"common\":\"카보베르데\"},\"per\":{\"official\":\"جمهوری کبو ورد\",\"common\":\"دماغهٔ سبز\"}},\"latlng\":[16,-24],\"landlocked\":false,\"borders\":[],\"area\":4033,\"flag\":\"🇨🇻\",\"demonyms\":{\"eng\":{\"f\":\"Cape Verdian\",\"m\":\"Cape Verdian\"},\"fra\":{\"f\":\"Cap-verdienne\",\"m\":\"Cap-verdien\"}}},{\"name\":{\"common\":\"Costa Rica\",\"official\":\"Republic of Costa Rica\",\"native\":{\"spa\":{\"official\":\"República de Costa Rica\",\"common\":\"Costa Rica\"}}},\"tld\":[\".cr\"],\"cca2\":\"CR\",\"ccn3\":\"188\",\"cca3\":\"CRI\",\"cioc\":\"CRC\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"CRC\":{\"name\":\"Costa Rican colón\",\"symbol\":\"₡\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"06\"]},\"capital\":[\"San José\"],\"altSpellings\":[\"CR\",\"Republic of Costa Rica\",\"República de Costa Rica\"],\"region\":\"Americas\",\"subregion\":\"Central America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Kostarická republika\",\"common\":\"Kostarika\"},\"cym\":{\"official\":\"Gweriniaeth Costa Rica\",\"common\":\"Costa Rica\"},\"deu\":{\"official\":\"Republik Costa Rica\",\"common\":\"Costa Rica\"},\"fra\":{\"official\":\"République du Costa Rica\",\"common\":\"Costa Rica\"},\"hrv\":{\"official\":\"Republika Kostarika\",\"common\":\"Kostarika\"},\"ita\":{\"official\":\"Repubblica di Costa Rica\",\"common\":\"Costa Rica\"},\"jpn\":{\"official\":\"コスタリカ共和国\",\"common\":\"コスタリカ\"},\"nld\":{\"official\":\"Republiek Costa Rica\",\"common\":\"Costa Rica\"},\"por\":{\"official\":\"República da Costa Rica\",\"common\":\"Costa Rica\"},\"rus\":{\"official\":\"Республика Коста-Рика\",\"common\":\"Коста-Рика\"},\"slk\":{\"official\":\"Kostarická republika\",\"common\":\"Kostarika\"},\"spa\":{\"official\":\"República de Costa Rica\",\"common\":\"Costa Rica\"},\"fin\":{\"official\":\"Costa Rican tasavalta\",\"common\":\"Costa Rica\"},\"est\":{\"official\":\"Costa Rica Vabariik\",\"common\":\"Costa Rica\"},\"zho\":{\"official\":\"哥斯达黎加共和国\",\"common\":\"哥斯达黎加\"},\"pol\":{\"official\":\"Republika Kostaryki\",\"common\":\"Kostaryka\"},\"urd\":{\"official\":\"جمہوریہ کوسٹاریکا\",\"common\":\"کوسٹاریکا\"},\"kor\":{\"official\":\"코스타리카 공화국\",\"common\":\"코스타리카\"},\"per\":{\"official\":\"جمهوری کاستاریکا\",\"common\":\"کاستاریکا\"}},\"latlng\":[10,-84],\"landlocked\":false,\"borders\":[\"NIC\",\"PAN\"],\"area\":51100,\"flag\":\"🇨🇷\",\"demonyms\":{\"eng\":{\"f\":\"Costa Rican\",\"m\":\"Costa Rican\"},\"fra\":{\"f\":\"Costaricaine\",\"m\":\"Costaricain\"}}},{\"name\":{\"common\":\"Cuba\",\"official\":\"Republic of Cuba\",\"native\":{\"spa\":{\"official\":\"República de Cuba\",\"common\":\"Cuba\"}}},\"tld\":[\".cu\"],\"cca2\":\"CU\",\"ccn3\":\"192\",\"cca3\":\"CUB\",\"cioc\":\"CUB\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"CUC\":{\"name\":\"Cuban convertible peso\",\"symbol\":\"$\"},\"CUP\":{\"name\":\"Cuban peso\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"3\"]},\"capital\":[\"Havana\"],\"altSpellings\":[\"CU\",\"Republic of Cuba\",\"República de Cuba\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Kubánská republika\",\"common\":\"Kuba\"},\"cym\":{\"official\":\"Gweriniaeth Ciwba\",\"common\":\"Ciwba\"},\"deu\":{\"official\":\"Republik Kuba\",\"common\":\"Kuba\"},\"fra\":{\"official\":\"République de Cuba\",\"common\":\"Cuba\"},\"hrv\":{\"official\":\"Republika Kuba\",\"common\":\"Kuba\"},\"ita\":{\"official\":\"Repubblica di Cuba\",\"common\":\"Cuba\"},\"jpn\":{\"official\":\"キューバ共和国\",\"common\":\"キューバ\"},\"nld\":{\"official\":\"Republiek Cuba\",\"common\":\"Cuba\"},\"por\":{\"official\":\"República de Cuba\",\"common\":\"Cuba\"},\"rus\":{\"official\":\"Республика Куба\",\"common\":\"Куба\"},\"slk\":{\"official\":\"Kubánska republika\",\"common\":\"Kuba\"},\"spa\":{\"official\":\"República de Cuba\",\"common\":\"Cuba\"},\"fin\":{\"official\":\"Kuuban tasavalta\",\"common\":\"Kuuba\"},\"est\":{\"official\":\"Kuuba Vabariik\",\"common\":\"Kuuba\"},\"zho\":{\"official\":\"古巴共和国\",\"common\":\"古巴\"},\"pol\":{\"official\":\"Republika Kuby\",\"common\":\"Kuba\"},\"urd\":{\"official\":\"جمہوریہ کیوبا\",\"common\":\"کیوبا\"},\"kor\":{\"official\":\"쿠바 공화국\",\"common\":\"쿠바\"},\"per\":{\"official\":\"جمهوری کوبا\",\"common\":\"کوبا\"}},\"latlng\":[21.5,-80],\"landlocked\":false,\"borders\":[],\"area\":109884,\"flag\":\"🇨🇺\",\"demonyms\":{\"eng\":{\"f\":\"Cuban\",\"m\":\"Cuban\"},\"fra\":{\"f\":\"Cubaine\",\"m\":\"Cubain\"}}},{\"name\":{\"common\":\"Curaçao\",\"official\":\"Country of Curaçao\",\"native\":{\"eng\":{\"official\":\"Country of Curaçao\",\"common\":\"Curaçao\"},\"nld\":{\"official\":\"Land Curaçao\",\"common\":\"Curaçao\"},\"pap\":{\"official\":\"Pais Kòrsou\",\"common\":\"Pais Kòrsou\"}}},\"tld\":[\".cw\"],\"cca2\":\"CW\",\"ccn3\":\"531\",\"cca3\":\"CUW\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"ANG\":{\"name\":\"Netherlands Antillean guilder\",\"symbol\":\"ƒ\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"99\"]},\"capital\":[\"Willemstad\"],\"altSpellings\":[\"CW\",\"Curacao\",\"Kòrsou\",\"Country of Curaçao\",\"Land Curaçao\",\"Pais Kòrsou\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\",\"nld\":\"Dutch\",\"pap\":\"Papiamento\"},\"translations\":{\"ces\":{\"official\":\"Autonomní země Curaçao\",\"common\":\"Curaçao\"},\"deu\":{\"official\":\"Land Curaçao\",\"common\":\"Curaçao\"},\"fra\":{\"official\":\"Pays de Curaçao\",\"common\":\"Curaçao\"},\"ita\":{\"official\":\"Paese di Curaçao\",\"common\":\"Curaçao\"},\"nld\":{\"official\":\"Land Curaçao\",\"common\":\"Curaçao\"},\"por\":{\"official\":\"País de Curaçao\",\"common\":\"ilha da Curação\"},\"rus\":{\"official\":\"Страна Кюрасао\",\"common\":\"Кюрасао\"},\"slk\":{\"official\":\"Curacao\",\"common\":\"Curacao\"},\"spa\":{\"official\":\"País de Curazao\",\"common\":\"Curazao\"},\"fin\":{\"official\":\"Curaçao\",\"common\":\"Curaçao\"},\"est\":{\"official\":\"Curaçao\",\"common\":\"Curaçao\"},\"zho\":{\"official\":\"库拉索\",\"common\":\"库拉索\"},\"pol\":{\"official\":\"Curaçao\",\"common\":\"Curaçao\"},\"urd\":{\"official\":\"مملکتِ کیوراساؤ\",\"common\":\"کیوراساؤ\"},\"kor\":{\"official\":\"퀴라소\",\"common\":\"퀴라소\"},\"per\":{\"official\":\"کوراسائو\",\"common\":\"کوراسائو\"}},\"latlng\":[12.116667,-68.933333],\"landlocked\":false,\"borders\":[],\"area\":444,\"flag\":\"🇨🇼\",\"demonyms\":{\"eng\":{\"f\":\"Curaçaoan\",\"m\":\"Curaçaoan\"},\"fra\":{\"f\":\"Curacienne\",\"m\":\"Curacien\"}}},{\"name\":{\"common\":\"Christmas Island\",\"official\":\"Territory of Christmas Island\",\"native\":{\"eng\":{\"official\":\"Territory of Christmas Island\",\"common\":\"Christmas Island\"}}},\"tld\":[\".cx\"],\"cca2\":\"CX\",\"ccn3\":\"162\",\"cca3\":\"CXR\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"AUD\":{\"name\":\"Australian dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"1\"]},\"capital\":[\"Flying Fish Cove\"],\"altSpellings\":[\"CX\",\"Territory of Christmas Island\"],\"region\":\"Oceania\",\"subregion\":\"Australia and New Zealand\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Teritorium Vánočního ostrova\",\"common\":\"Vánoční ostrov\"},\"cym\":{\"official\":\"Tiriogaeth yr Ynys y Nadolig\",\"common\":\"Ynys y Nadolig\"},\"deu\":{\"official\":\"Gebiet der Weihnachtsinsel\",\"common\":\"Weihnachtsinsel\"},\"fra\":{\"official\":\"Territoire de l\\'île Christmas\",\"common\":\"Île Christmas\"},\"hrv\":{\"official\":\"Teritorij Božićni otok\",\"common\":\"Božićni otok\"},\"ita\":{\"official\":\"Territorio di Christmas Island\",\"common\":\"Isola di Natale\"},\"jpn\":{\"official\":\"クリスマス島の領土\",\"common\":\"クリスマス島\"},\"nld\":{\"official\":\"Grondgebied van Christmas Island\",\"common\":\"Christmaseiland\"},\"por\":{\"official\":\"Território da Ilha Christmas\",\"common\":\"Ilha do Natal\"},\"rus\":{\"official\":\"Территория острова Рождества\",\"common\":\"Остров Рождества\"},\"slk\":{\"official\":\"Teritórium Vianočného ostrova\",\"common\":\"Vianočnú ostrov\"},\"spa\":{\"official\":\"Territorio de la Isla de Navidad\",\"common\":\"Isla de Navidad\"},\"fin\":{\"official\":\"Joulusaaren alue\",\"common\":\"Joulusaari\"},\"est\":{\"official\":\"Jõulusaare ala\",\"common\":\"Jõulusaar\"},\"zho\":{\"official\":\"圣诞岛\",\"common\":\"圣诞岛\"},\"pol\":{\"official\":\"Wyspa Bożego Narodzenia\",\"common\":\"Wyspa Bożego Narodzenia\"},\"urd\":{\"official\":\"ریاستِ جزیرہ کرسمس\",\"common\":\"جزیرہ کرسمس\"},\"kor\":{\"official\":\"크리스마스 섬\",\"common\":\"크리스마스 섬\"},\"per\":{\"official\":\"جزیرهٔ کریسمس\",\"common\":\"جزیرهٔ کریسمس\"}},\"latlng\":[-10.5,105.66666666],\"landlocked\":false,\"borders\":[],\"area\":135,\"flag\":\"🇨🇽\",\"demonyms\":{\"eng\":{\"f\":\"Christmas Islander\",\"m\":\"Christmas Islander\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Cayman Islands\",\"official\":\"Cayman Islands\",\"native\":{\"eng\":{\"official\":\"Cayman Islands\",\"common\":\"Cayman Islands\"}}},\"tld\":[\".ky\"],\"cca2\":\"KY\",\"ccn3\":\"136\",\"cca3\":\"CYM\",\"cioc\":\"CAY\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"KYD\":{\"name\":\"Cayman Islands dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"345\"]},\"capital\":[\"George Town\"],\"altSpellings\":[\"KY\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Kajmanské ostrovy\",\"common\":\"Kajmanské ostrovy\"},\"cym\":{\"official\":\"Ynysoedd Cayman\",\"common\":\"Ynysoedd Cayman\"},\"deu\":{\"official\":\"Cayman-Inseln\",\"common\":\"Kaimaninseln\"},\"fra\":{\"official\":\"Îles Caïmans\",\"common\":\"Îles Caïmans\"},\"hrv\":{\"official\":\"Kajmanski otoci\",\"common\":\"Kajmanski otoci\"},\"ita\":{\"official\":\"Isole Cayman\",\"common\":\"Isole Cayman\"},\"jpn\":{\"official\":\"ケイマン諸島\",\"common\":\"ケイマン諸島\"},\"nld\":{\"official\":\"Caymaneilanden\",\"common\":\"Caymaneilanden\"},\"por\":{\"official\":\"Ilhas Cayman\",\"common\":\"Ilhas Caimão\"},\"rus\":{\"official\":\"Каймановы острова\",\"common\":\"Каймановы острова\"},\"slk\":{\"official\":\"Kajmanie ostrovy\",\"common\":\"Kajmanie ostrovy\"},\"spa\":{\"official\":\"Islas Caimán\",\"common\":\"Islas Caimán\"},\"fin\":{\"official\":\"Caymansaaret\",\"common\":\"Caymansaaret\"},\"est\":{\"official\":\"Kaimanisaared\",\"common\":\"Kaimanisaared\"},\"zho\":{\"official\":\"开曼群岛\",\"common\":\"开曼群岛\"},\"pol\":{\"official\":\"Kajmany\",\"common\":\"Kajmany\"},\"urd\":{\"official\":\"جزائر کیمین\",\"common\":\"جزائر کیمین\"},\"kor\":{\"official\":\"케이맨 제도\",\"common\":\"케이맨 제도\"},\"per\":{\"official\":\"جزایر کیمن\",\"common\":\"جزایر کیمن\"}},\"latlng\":[19.5,-80.5],\"landlocked\":false,\"borders\":[],\"area\":264,\"flag\":\"🇰🇾\",\"demonyms\":{\"eng\":{\"f\":\"Caymanian\",\"m\":\"Caymanian\"},\"fra\":{\"f\":\"Caïmanienne\",\"m\":\"Caïmanien\"}}},{\"name\":{\"common\":\"Cyprus\",\"official\":\"Republic of Cyprus\",\"native\":{\"ell\":{\"official\":\"Δημοκρατία της Κύπρος\",\"common\":\"Κύπρος\"},\"tur\":{\"official\":\"Kıbrıs Cumhuriyeti\",\"common\":\"Kıbrıs\"}}},\"tld\":[\".cy\"],\"cca2\":\"CY\",\"ccn3\":\"196\",\"cca3\":\"CYP\",\"cioc\":\"CYP\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"57\"]},\"capital\":[\"Nicosia\"],\"altSpellings\":[\"CY\",\"Kýpros\",\"Kıbrıs\",\"Republic of Cyprus\",\"Κυπριακή Δημοκρατία\",\"Kıbrıs Cumhuriyeti\"],\"region\":\"Europe\",\"subregion\":\"Eastern Europe\",\"languages\":{\"ell\":\"Greek\",\"tur\":\"Turkish\"},\"translations\":{\"ces\":{\"official\":\"Kyperská republika\",\"common\":\"Kypr\"},\"cym\":{\"official\":\"Gweriniaeth Cyprus\",\"common\":\"Cyprus\"},\"deu\":{\"official\":\"Republik Zypern\",\"common\":\"Zypern\"},\"fra\":{\"official\":\"République de Chypre\",\"common\":\"Chypre\"},\"hrv\":{\"official\":\"Republika Cipar\",\"common\":\"Cipar\"},\"ita\":{\"official\":\"Repubblica di Cipro\",\"common\":\"Cipro\"},\"jpn\":{\"official\":\"キプロス共和国\",\"common\":\"キプロス\"},\"nld\":{\"official\":\"Republiek Cyprus\",\"common\":\"Cyprus\"},\"por\":{\"official\":\"República de Chipre\",\"common\":\"Chipre\"},\"rus\":{\"official\":\"Республика Кипр\",\"common\":\"Кипр\"},\"slk\":{\"official\":\"Cyperská republika\",\"common\":\"Cyprus\"},\"spa\":{\"official\":\"República de Chipre\",\"common\":\"Chipre\"},\"fin\":{\"official\":\"Kyproksen tasavalta\",\"common\":\"Kypros\"},\"est\":{\"official\":\"Küprose Vabariik\",\"common\":\"Küpros\"},\"zho\":{\"official\":\"塞浦路斯共和国\",\"common\":\"塞浦路斯\"},\"pol\":{\"official\":\"Republika Cypryjska\",\"common\":\"Cypr\"},\"urd\":{\"official\":\"جمہوریہ قبرص\",\"common\":\"قبرص\"},\"kor\":{\"official\":\"키프로스 공화국\",\"common\":\"키프로스\"},\"per\":{\"official\":\"جمهوری قبرس\",\"common\":\"قِبرِس\"}},\"latlng\":[35,33],\"landlocked\":false,\"borders\":[],\"area\":9251,\"flag\":\"🇨🇾\",\"demonyms\":{\"eng\":{\"f\":\"Cypriot\",\"m\":\"Cypriot\"},\"fra\":{\"f\":\"Chypriote\",\"m\":\"Chypriote\"}}},{\"name\":{\"common\":\"Czechia\",\"official\":\"Czech Republic\",\"native\":{\"ces\":{\"official\":\"česká republika\",\"common\":\"Česko\"},\"slk\":{\"official\":\"Česká republika\",\"common\":\"Česko\"}}},\"tld\":[\".cz\"],\"cca2\":\"CZ\",\"ccn3\":\"203\",\"cca3\":\"CZE\",\"cioc\":\"CZE\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"CZK\":{\"name\":\"Czech koruna\",\"symbol\":\"Kč\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"20\"]},\"capital\":[\"Prague\"],\"altSpellings\":[\"CZ\",\"Česká republika\",\"Česko\"],\"region\":\"Europe\",\"subregion\":\"Eastern Europe\",\"languages\":{\"ces\":\"Czech\",\"slk\":\"Slovak\"},\"translations\":{\"ces\":{\"official\":\"Česká republika\",\"common\":\"Česko\"},\"cym\":{\"official\":\"Y Weriniaeth Tsiec\",\"common\":\"Y Weriniaeth Tsiec\"},\"deu\":{\"official\":\"Tschechische Republik\",\"common\":\"Tschechien\"},\"fra\":{\"official\":\"République tchèque\",\"common\":\"Tchéquie\"},\"hrv\":{\"official\":\"Češka\",\"common\":\"Češka\"},\"ita\":{\"official\":\"Repubblica Ceca\",\"common\":\"Cechia\"},\"jpn\":{\"official\":\"チェコ共和国\",\"common\":\"チェコ\"},\"nld\":{\"official\":\"Tsjechische Republiek\",\"common\":\"Tsjechië\"},\"por\":{\"official\":\"República Checa\",\"common\":\"Chéquia\"},\"rus\":{\"official\":\"Чешская Республика\",\"common\":\"Чехия\"},\"slk\":{\"official\":\"Česká republika\",\"common\":\"Česko\"},\"spa\":{\"official\":\"República Checa\",\"common\":\"Chequia\"},\"fin\":{\"official\":\"Tšekin tasavalta\",\"common\":\"Tšekki\"},\"est\":{\"official\":\"Tšehhi Vabariik\",\"common\":\"Tšehhi\"},\"zho\":{\"official\":\"捷克共和国\",\"common\":\"捷克\"},\"pol\":{\"official\":\"Republika Czeska\",\"common\":\"Czechy\"},\"urd\":{\"official\":\"چيک جمہوريہ\",\"common\":\"چيک\"},\"kor\":{\"official\":\"체코\",\"common\":\"체코\"},\"per\":{\"official\":\"جمهوری چک\",\"common\":\"جمهوری چک\"}},\"latlng\":[49.75,15.5],\"landlocked\":true,\"borders\":[\"AUT\",\"DEU\",\"POL\",\"SVK\"],\"area\":78865,\"flag\":\"🇨🇿\",\"demonyms\":{\"eng\":{\"f\":\"Czech\",\"m\":\"Czech\"},\"fra\":{\"f\":\"Tchèque\",\"m\":\"Tchèque\"}}},{\"name\":{\"common\":\"Germany\",\"official\":\"Federal Republic of Germany\",\"native\":{\"deu\":{\"official\":\"Bundesrepublik Deutschland\",\"common\":\"Deutschland\"}}},\"tld\":[\".de\"],\"cca2\":\"DE\",\"ccn3\":\"276\",\"cca3\":\"DEU\",\"cioc\":\"GER\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"9\"]},\"capital\":[\"Berlin\"],\"altSpellings\":[\"DE\",\"Federal Republic of Germany\",\"Bundesrepublik Deutschland\"],\"region\":\"Europe\",\"subregion\":\"Western Europe\",\"languages\":{\"deu\":\"German\"},\"translations\":{\"ces\":{\"official\":\"Spolková republika Německo\",\"common\":\"Německo\"},\"deu\":{\"official\":\"Bundesrepublik Deutschland\",\"common\":\"Deutschland\"},\"fra\":{\"official\":\"République fédérale d\\'Allemagne\",\"common\":\"Allemagne\"},\"hrv\":{\"official\":\"Njemačka Federativna Republika\",\"common\":\"Njemačka\"},\"ita\":{\"official\":\"Repubblica federale di Germania\",\"common\":\"Germania\"},\"jpn\":{\"official\":\"ドイツ連邦共和国\",\"common\":\"ドイツ\"},\"nld\":{\"official\":\"Bondsrepubliek Duitsland\",\"common\":\"Duitsland\"},\"por\":{\"official\":\"República Federal da Alemanha\",\"common\":\"Alemanha\"},\"rus\":{\"official\":\"Федеративная Республика Германия\",\"common\":\"Германия\"},\"slk\":{\"official\":\"Nemecká spolková republika\",\"common\":\"Nemecko\"},\"spa\":{\"official\":\"República Federal de Alemania\",\"common\":\"Alemania\"},\"fin\":{\"official\":\"Saksan liittotasavalta\",\"common\":\"Saksa\"},\"est\":{\"official\":\"Saksamaa Liitvabariik\",\"common\":\"Saksamaa\"},\"zho\":{\"official\":\"德意志联邦共和国\",\"common\":\"德国\"},\"pol\":{\"official\":\"Republika Federalna Niemiec\",\"common\":\"Niemcy\"},\"urd\":{\"official\":\"وفاقی جمہوریہ جرمنی\",\"common\":\"جرمنی\"},\"kor\":{\"official\":\"독일 연방 공화국\",\"common\":\"독일\"},\"per\":{\"official\":\"جمهوری فدرال آلمان\",\"common\":\"آلمان\"}},\"latlng\":[51,9],\"landlocked\":false,\"borders\":[\"AUT\",\"BEL\",\"CZE\",\"DNK\",\"FRA\",\"LUX\",\"NLD\",\"POL\",\"CHE\"],\"area\":357114,\"flag\":\"🇩🇪\",\"demonyms\":{\"eng\":{\"f\":\"German\",\"m\":\"German\"},\"fra\":{\"f\":\"Allemande\",\"m\":\"Allemand\"}}},{\"name\":{\"common\":\"Djibouti\",\"official\":\"Republic of Djibouti\",\"native\":{\"ara\":{\"official\":\"جمهورية جيبوتي\",\"common\":\"جيبوتي\"},\"fra\":{\"official\":\"République de Djibouti\",\"common\":\"Djibouti\"}}},\"tld\":[\".dj\"],\"cca2\":\"DJ\",\"ccn3\":\"262\",\"cca3\":\"DJI\",\"cioc\":\"DJI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"DJF\":{\"name\":\"Djiboutian franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"53\"]},\"capital\":[\"Djibouti\"],\"altSpellings\":[\"DJ\",\"Jabuuti\",\"Gabuuti\",\"Republic of Djibouti\",\"République de Djibouti\",\"Gabuutih Ummuuno\",\"Jamhuuriyadda Jabuuti\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"ara\":\"Arabic\",\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Džibutská republika\",\"common\":\"Džibutsko\"},\"cym\":{\"official\":\"Gweriniaeth Jibwti\",\"common\":\"Jibwti\"},\"deu\":{\"official\":\"Republik Dschibuti\",\"common\":\"Dschibuti\"},\"fra\":{\"official\":\"République de Djibouti\",\"common\":\"Djibouti\"},\"hrv\":{\"official\":\"Republika Džibuti\",\"common\":\"Džibuti\"},\"ita\":{\"official\":\"Repubblica di Gibuti\",\"common\":\"Gibuti\"},\"jpn\":{\"official\":\"ジブチ共和国\",\"common\":\"ジブチ\"},\"nld\":{\"official\":\"Republiek Djibouti\",\"common\":\"Djibouti\"},\"por\":{\"official\":\"República do Djibouti\",\"common\":\"Djibouti\"},\"rus\":{\"official\":\"Республика Джибути\",\"common\":\"Джибути\"},\"slk\":{\"official\":\"Džibutská republika\",\"common\":\"Džibutsko\"},\"spa\":{\"official\":\"República de Djibouti\",\"common\":\"Djibouti\"},\"fin\":{\"official\":\"Dijiboutin tasavalta\",\"common\":\"Dijibouti\"},\"est\":{\"official\":\"Djibouti Vabariik\",\"common\":\"Djibouti\"},\"zho\":{\"official\":\"吉布提共和国\",\"common\":\"吉布提\"},\"pol\":{\"official\":\"Republika Dżibuti\",\"common\":\"Dżibuti\"},\"urd\":{\"official\":\"جمہوریہ جبوتی\",\"common\":\"جبوتی\"},\"kor\":{\"official\":\"지부티 공화국\",\"common\":\"지부티\"},\"per\":{\"official\":\"جمهوری جیبوتی\",\"common\":\"جیبوتی\"}},\"latlng\":[11.5,43],\"landlocked\":false,\"borders\":[\"ERI\",\"ETH\",\"SOM\"],\"area\":23200,\"flag\":\"🇩🇯\",\"demonyms\":{\"eng\":{\"f\":\"Djibouti\",\"m\":\"Djibouti\"},\"fra\":{\"f\":\"Djiboutienne\",\"m\":\"Djiboutien\"}}},{\"name\":{\"common\":\"Dominica\",\"official\":\"Commonwealth of Dominica\",\"native\":{\"eng\":{\"official\":\"Commonwealth of Dominica\",\"common\":\"Dominica\"}}},\"tld\":[\".dm\"],\"cca2\":\"DM\",\"ccn3\":\"212\",\"cca3\":\"DMA\",\"cioc\":\"DMA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XCD\":{\"name\":\"Eastern Caribbean dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"767\"]},\"capital\":[\"Roseau\"],\"altSpellings\":[\"DM\",\"Dominique\",\"Wai‘tu kubuli\",\"Commonwealth of Dominica\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Dominikánské společenství\",\"common\":\"Dominika\"},\"cym\":{\"official\":\"Cymanwlad Dominica\",\"common\":\"Dominica\"},\"deu\":{\"official\":\"Commonwealth von Dominica\",\"common\":\"Dominica\"},\"fra\":{\"official\":\"Commonwealth de la Dominique\",\"common\":\"Dominique\"},\"hrv\":{\"official\":\"Zajednica Dominika\",\"common\":\"Dominika\"},\"ita\":{\"official\":\"Commonwealth di Dominica\",\"common\":\"Dominica\"},\"jpn\":{\"official\":\"ドミニカ国\",\"common\":\"ドミニカ国\"},\"nld\":{\"official\":\"Gemenebest Dominica\",\"common\":\"Dominica\"},\"por\":{\"official\":\"Comunidade da Dominica\",\"common\":\"Dominica\"},\"rus\":{\"official\":\"Содружество Доминики\",\"common\":\"Доминика\"},\"slk\":{\"official\":\"Dominické spoločenstvo\",\"common\":\"Dominika\"},\"spa\":{\"official\":\"Mancomunidad de Dominica\",\"common\":\"Dominica\"},\"fin\":{\"official\":\"Dominican liittovaltio\",\"common\":\"Dominica\"},\"est\":{\"official\":\"Dominica Ühendus\",\"common\":\"Dominica\"},\"zho\":{\"official\":\"多米尼加共和国\",\"common\":\"多米尼加\"},\"pol\":{\"official\":\"Wspólnota Dominiki\",\"common\":\"Dominika\"},\"urd\":{\"official\":\"دولتِ مشترکہ ڈومینیکا\",\"common\":\"ڈومینیکا\"},\"kor\":{\"official\":\"도미니카 공화국\",\"common\":\"도미니카 공화국\"},\"per\":{\"official\":\"قلمرو همسود دومینیکا\",\"common\":\"دومینیکا\"}},\"latlng\":[15.41666666,-61.33333333],\"landlocked\":false,\"borders\":[],\"area\":751,\"flag\":\"🇩🇲\",\"demonyms\":{\"eng\":{\"f\":\"Dominican\",\"m\":\"Dominican\"},\"fra\":{\"f\":\"Dominiquaise\",\"m\":\"Dominiquais\"}}},{\"name\":{\"common\":\"Denmark\",\"official\":\"Kingdom of Denmark\",\"native\":{\"dan\":{\"official\":\"Kongeriget Danmark\",\"common\":\"Danmark\"}}},\"tld\":[\".dk\"],\"cca2\":\"DK\",\"ccn3\":\"208\",\"cca3\":\"DNK\",\"cioc\":\"DEN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"DKK\":{\"name\":\"Danish krone\",\"symbol\":\"kr\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"5\"]},\"capital\":[\"Copenhagen\"],\"altSpellings\":[\"DK\",\"Danmark\",\"Kingdom of Denmark\",\"Kongeriget Danmark\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"dan\":\"Danish\"},\"translations\":{\"ces\":{\"official\":\"Dánské království\",\"common\":\"Dánsko\"},\"cym\":{\"official\":\"Teyrnas Denmarc\",\"common\":\"Denmarc\"},\"deu\":{\"official\":\"Königreich Dänemark\",\"common\":\"Dänemark\"},\"fra\":{\"official\":\"Royaume du Danemark\",\"common\":\"Danemark\"},\"hrv\":{\"official\":\"Kraljevina Danska\",\"common\":\"Danska\"},\"ita\":{\"official\":\"Regno di Danimarca\",\"common\":\"Danimarca\"},\"jpn\":{\"official\":\"デンマーク王国\",\"common\":\"デンマーク\"},\"nld\":{\"official\":\"Koninkrijk Denemarken\",\"common\":\"Denemarken\"},\"por\":{\"official\":\"Reino da Dinamarca\",\"common\":\"Dinamarca\"},\"rus\":{\"official\":\"Королевство Дания\",\"common\":\"Дания\"},\"slk\":{\"official\":\"Dánske kráľovstvo\",\"common\":\"Dánsko\"},\"spa\":{\"official\":\"Reino de Dinamarca\",\"common\":\"Dinamarca\"},\"fin\":{\"official\":\"Tanskan kuningaskunta\",\"common\":\"Tanska\"},\"est\":{\"official\":\"Taani Kuningriik\",\"common\":\"Taani\"},\"zho\":{\"official\":\"丹麦王国\",\"common\":\"丹麦\"},\"pol\":{\"official\":\"Królestwo Danii\",\"common\":\"Dania\"},\"urd\":{\"official\":\"مملکتِ ڈنمارک\",\"common\":\"ڈنمارک\"},\"kor\":{\"official\":\"덴마크 왕국\",\"common\":\"덴마크\"},\"per\":{\"official\":\"پادشاهی دانمارک\",\"common\":\"دانمارک\"}},\"latlng\":[56,10],\"landlocked\":false,\"borders\":[\"DEU\"],\"area\":43094,\"flag\":\"🇩🇰\",\"demonyms\":{\"eng\":{\"f\":\"Danish\",\"m\":\"Danish\"},\"fra\":{\"f\":\"Danoise\",\"m\":\"Danois\"}}},{\"name\":{\"common\":\"Dominican Republic\",\"official\":\"Dominican Republic\",\"native\":{\"spa\":{\"official\":\"República Dominicana\",\"common\":\"República Dominicana\"}}},\"tld\":[\".do\"],\"cca2\":\"DO\",\"ccn3\":\"214\",\"cca3\":\"DOM\",\"cioc\":\"DOM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"DOP\":{\"name\":\"Dominican peso\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"809\",\"829\",\"849\"]},\"capital\":[\"Santo Domingo\"],\"altSpellings\":[\"DO\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Dominikánská republika\",\"common\":\"Dominikánská republika\"},\"cym\":{\"official\":\"Gweriniaeth Dominica\",\"common\":\"Gweriniaeth Dominica\"},\"deu\":{\"official\":\"Dominikanische Republik\",\"common\":\"Dominikanische Republik\"},\"fra\":{\"official\":\"République Dominicaine\",\"common\":\"République dominicaine\"},\"hrv\":{\"official\":\"Dominikanska Republika\",\"common\":\"Dominikanska Republika\"},\"ita\":{\"official\":\"Repubblica Dominicana\",\"common\":\"Repubblica Dominicana\"},\"jpn\":{\"official\":\"ドミニカ共和国\",\"common\":\"ドミニカ共和国\"},\"nld\":{\"official\":\"Dominicaanse Republiek\",\"common\":\"Dominicaanse Republiek\"},\"por\":{\"official\":\"República Dominicana\",\"common\":\"República Dominicana\"},\"rus\":{\"official\":\"Доминиканская Республика\",\"common\":\"Доминиканская Республика\"},\"slk\":{\"official\":\"Dominikánska republika\",\"common\":\"Dominikánska republika\"},\"spa\":{\"official\":\"República Dominicana\",\"common\":\"República Dominicana\"},\"fin\":{\"official\":\"Dominikaaninen tasavalta\",\"common\":\"Dominikaaninen tasavalta\"},\"est\":{\"official\":\"Dominikaani Vabariik\",\"common\":\"Dominikaani Vabariik\"},\"zho\":{\"official\":\"多明尼加共和国\",\"common\":\"多明尼加\"},\"pol\":{\"official\":\"Republika Dominikańska\",\"common\":\"Dominikana\"},\"urd\":{\"official\":\"جمہوریہ ڈومینیکن\",\"common\":\"ڈومینیکن\"},\"kor\":{\"official\":\"도미니카 공화국\",\"common\":\"도미니카 공화국\"},\"per\":{\"official\":\"جمهوری دومینیکن\",\"common\":\"جمهوری دومینیکن\"}},\"latlng\":[19,-70.66666666],\"landlocked\":false,\"borders\":[\"HTI\"],\"area\":48671,\"flag\":\"🇩🇴\",\"demonyms\":{\"eng\":{\"f\":\"Dominican\",\"m\":\"Dominican\"},\"fra\":{\"f\":\"Dominicaine\",\"m\":\"Dominicain\"}}},{\"name\":{\"common\":\"Algeria\",\"official\":\"People\\'s Democratic Republic of Algeria\",\"native\":{\"ara\":{\"official\":\"الجمهورية الديمقراطية الشعبية الجزائرية\",\"common\":\"الجزائر\"}}},\"tld\":[\".dz\",\"الجزائر.\"],\"cca2\":\"DZ\",\"ccn3\":\"012\",\"cca3\":\"DZA\",\"cioc\":\"ALG\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"DZD\":{\"name\":\"Algerian dinar\",\"symbol\":\"د.ج\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"13\"]},\"capital\":[\"Algiers\"],\"altSpellings\":[\"DZ\",\"Dzayer\",\"Algérie\"],\"region\":\"Africa\",\"subregion\":\"Northern Africa\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Alžírská demokratická a lidová republika\",\"common\":\"Alžírsko\"},\"cym\":{\"official\":\"Gweriniaeth Ddemocrataidd Pobl Algeria\",\"common\":\"Algeria\"},\"deu\":{\"official\":\"Demokratische Volksrepublik Algerien\",\"common\":\"Algerien\"},\"fra\":{\"official\":\"République démocratique et populaire d\\'Algérie\",\"common\":\"Algérie\"},\"hrv\":{\"official\":\"Narodna Demokratska Republika Alžir\",\"common\":\"Alžir\"},\"ita\":{\"official\":\"Repubblica popolare democratica di Algeria\",\"common\":\"Algeria\"},\"jpn\":{\"official\":\"アルジェリア人民民主共和国\",\"common\":\"アルジェリア\"},\"nld\":{\"official\":\"Democratische Volksrepubliek Algerije\",\"common\":\"Algerije\"},\"por\":{\"official\":\"República Argelina Democrática e Popular\",\"common\":\"Argélia\"},\"rus\":{\"official\":\"Народно-Демократическая Республика Алжир\",\"common\":\"Алжир\"},\"slk\":{\"official\":\"Alžírska demokratická ľudová republika\",\"common\":\"Alžírsko\"},\"spa\":{\"official\":\"República Argelina Democrática y Popular\",\"common\":\"Argelia\"},\"fin\":{\"official\":\"Algerian demokraattinen kansantasavalta\",\"common\":\"Algeria\"},\"est\":{\"official\":\"Alžeeria Demokraatlik Rahvavabariik\",\"common\":\"Alžeeria\"},\"zho\":{\"official\":\"阿尔及利亚人民民主共和国\",\"common\":\"阿尔及利亚\"},\"pol\":{\"official\":\"Algierska Republika Ludowo-Demokratyczna\",\"common\":\"Algieria\"},\"urd\":{\"official\":\"عوامی جمہوری جمہوریہ الجزائر\",\"common\":\"الجزائر\"},\"kor\":{\"official\":\"알제리 인민 민주 공화국\",\"common\":\"알제리\"},\"per\":{\"official\":\"جمهوری دموکراتیک خلق الجزایر\",\"common\":\"الجزایر\"}},\"latlng\":[28,3],\"landlocked\":false,\"borders\":[\"TUN\",\"LBY\",\"NER\",\"ESH\",\"MRT\",\"MLI\",\"MAR\"],\"area\":2381741,\"flag\":\"🇩🇿\",\"demonyms\":{\"eng\":{\"f\":\"Algerian\",\"m\":\"Algerian\"},\"fra\":{\"f\":\"Algérienne\",\"m\":\"Algérien\"}}},{\"name\":{\"common\":\"Ecuador\",\"official\":\"Republic of Ecuador\",\"native\":{\"spa\":{\"official\":\"República del Ecuador\",\"common\":\"Ecuador\"}}},\"tld\":[\".ec\"],\"cca2\":\"EC\",\"ccn3\":\"218\",\"cca3\":\"ECU\",\"cioc\":\"ECU\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"93\"]},\"capital\":[\"Quito\"],\"altSpellings\":[\"EC\",\"Republic of Ecuador\",\"República del Ecuador\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Ekvádorská republika\",\"common\":\"Ekvádor\"},\"cym\":{\"official\":\"Gweriniaeth Ecwador\",\"common\":\"Ecwador\"},\"deu\":{\"official\":\"Republik Ecuador\",\"common\":\"Ecuador\"},\"fra\":{\"official\":\"République de l\\'Équateur\",\"common\":\"Équateur\"},\"hrv\":{\"official\":\"Republika Ekvador\",\"common\":\"Ekvador\"},\"ita\":{\"official\":\"Repubblica dell\\'Ecuador\",\"common\":\"Ecuador\"},\"jpn\":{\"official\":\"エクアドル共和国\",\"common\":\"エクアドル\"},\"nld\":{\"official\":\"Republiek Ecuador\",\"common\":\"Ecuador\"},\"por\":{\"official\":\"República do Equador\",\"common\":\"Equador\"},\"rus\":{\"official\":\"Республика Эквадор\",\"common\":\"Эквадор\"},\"slk\":{\"official\":\"Ekvádorská republika\",\"common\":\"Ekvádor\"},\"spa\":{\"official\":\"República del Ecuador\",\"common\":\"Ecuador\"},\"fin\":{\"official\":\"Ecuadorin tasavalta\",\"common\":\"Ecuador\"},\"est\":{\"official\":\"Ecuadori Vabariik\",\"common\":\"Ecuador\"},\"zho\":{\"official\":\"厄瓜多尔共和国\",\"common\":\"厄瓜多尔\"},\"pol\":{\"official\":\"Ekwador\",\"common\":\"Ekwador\"},\"urd\":{\"official\":\"جمہوریہ ایکوڈور\",\"common\":\"ایکواڈور\"},\"kor\":{\"official\":\"에콰도르 공화국\",\"common\":\"에콰도르\"},\"per\":{\"official\":\"جمهوری اکوادور\",\"common\":\"اکوادور\"}},\"latlng\":[-2,-77.5],\"landlocked\":false,\"borders\":[\"COL\",\"PER\"],\"area\":276841,\"flag\":\"🇪🇨\",\"demonyms\":{\"eng\":{\"f\":\"Ecuadorean\",\"m\":\"Ecuadorean\"},\"fra\":{\"f\":\"Équatorienne\",\"m\":\"Équatorien\"}}},{\"name\":{\"common\":\"Egypt\",\"official\":\"Arab Republic of Egypt\",\"native\":{\"ara\":{\"official\":\"جمهورية مصر العربية\",\"common\":\"مصر\"}}},\"tld\":[\".eg\",\".مصر\"],\"cca2\":\"EG\",\"ccn3\":\"818\",\"cca3\":\"EGY\",\"cioc\":\"EGY\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EGP\":{\"name\":\"Egyptian pound\",\"symbol\":\"£\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"0\"]},\"capital\":[\"Cairo\"],\"altSpellings\":[\"EG\",\"Arab Republic of Egypt\"],\"region\":\"Africa\",\"subregion\":\"Northern Africa\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Egyptská arabská republika\",\"common\":\"Egypt\"},\"cym\":{\"official\":\"Gweriniaeth Arabaidd yr Aifft\",\"common\":\"Yr Aifft\"},\"deu\":{\"official\":\"Arabische Republik Ägypten\",\"common\":\"Ägypten\"},\"fra\":{\"official\":\"République arabe d\\'Égypte\",\"common\":\"Égypte\"},\"hrv\":{\"official\":\"Arapska Republika Egipat\",\"common\":\"Egipat\"},\"ita\":{\"official\":\"Repubblica araba d\\'Egitto\",\"common\":\"Egitto\"},\"jpn\":{\"official\":\"エジプト·アラブ共和国\",\"common\":\"エジプト\"},\"nld\":{\"official\":\"Arabische Republiek Egypte\",\"common\":\"Egypte\"},\"por\":{\"official\":\"República Árabe do Egipto\",\"common\":\"Egito\"},\"rus\":{\"official\":\"Арабская Республика Египет\",\"common\":\"Египет\"},\"slk\":{\"official\":\"Egyptská arabská republika\",\"common\":\"Egypt\"},\"spa\":{\"official\":\"República Árabe de Egipto\",\"common\":\"Egipto\"},\"fin\":{\"official\":\"Egyptin arabitasavalta\",\"common\":\"Egypti\"},\"est\":{\"official\":\"Egiptuse Araabia Vabariik\",\"common\":\"Egiptus\"},\"zho\":{\"official\":\"阿拉伯埃及共和国\",\"common\":\"埃及\"},\"pol\":{\"official\":\"Arabska Republika Egiptu\",\"common\":\"Egipt\"},\"urd\":{\"official\":\"مصری عرب جمہوریہ\",\"common\":\"مصر\"},\"kor\":{\"official\":\"이집트 아랍 공화국\",\"common\":\"이집트\"},\"per\":{\"official\":\"جمهوری عربی مصر\",\"common\":\"مصر\"}},\"latlng\":[27,30],\"landlocked\":false,\"borders\":[\"ISR\",\"LBY\",\"PSE\",\"SDN\"],\"area\":1002450,\"flag\":\"🇪🇬\",\"demonyms\":{\"eng\":{\"f\":\"Egyptian\",\"m\":\"Egyptian\"},\"fra\":{\"f\":\"Égyptienne\",\"m\":\"Égyptien\"}}},{\"name\":{\"common\":\"Eritrea\",\"official\":\"State of Eritrea\",\"native\":{\"ara\":{\"official\":\"دولة إرتريا\",\"common\":\"إرتريا\"},\"eng\":{\"official\":\"State of Eritrea\",\"common\":\"Eritrea\"},\"tir\":{\"official\":\"ሃገረ ኤርትራ\",\"common\":\"ኤርትራ\"}}},\"tld\":[\".er\"],\"cca2\":\"ER\",\"ccn3\":\"232\",\"cca3\":\"ERI\",\"cioc\":\"ERI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"ERN\":{\"name\":\"Eritrean nakfa\",\"symbol\":\"Nfk\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"91\"]},\"capital\":[\"Asmara\"],\"altSpellings\":[\"ER\",\"State of Eritrea\",\"ሃገረ ኤርትራ\",\"Dawlat Iritriyá\",\"ʾErtrā\",\"Iritriyā\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"ara\":\"Arabic\",\"eng\":\"English\",\"tir\":\"Tigrinya\"},\"translations\":{\"ces\":{\"official\":\"Stát Eritrea\",\"common\":\"Eritrea\"},\"cym\":{\"official\":\"Gwladwriaeth Eritrea\",\"common\":\"Eritrea\"},\"deu\":{\"official\":\"Staat Eritrea\",\"common\":\"Eritrea\"},\"fra\":{\"official\":\"État d\\'Érythrée\",\"common\":\"Érythrée\"},\"hrv\":{\"official\":\"Država Eritreji\",\"common\":\"Eritreja\"},\"ita\":{\"official\":\"Stato di Eritrea\",\"common\":\"Eritrea\"},\"jpn\":{\"official\":\"エリトリア国\",\"common\":\"エリトリア\"},\"nld\":{\"official\":\"Staat Eritrea\",\"common\":\"Eritrea\"},\"por\":{\"official\":\"Estado da Eritreia\",\"common\":\"Eritreia\"},\"rus\":{\"official\":\"Государство Эритрея\",\"common\":\"Эритрея\"},\"slk\":{\"official\":\"Eritrejský štát\",\"common\":\"Eritrea\"},\"spa\":{\"official\":\"Estado de Eritrea\",\"common\":\"Eritrea\"},\"fin\":{\"official\":\"Eritrean valtio\",\"common\":\"Eritrea\"},\"est\":{\"official\":\"Eritrea Riik\",\"common\":\"Eritrea\"},\"zho\":{\"official\":\"厄立特里亚\",\"common\":\"厄立特里亚\"},\"pol\":{\"official\":\"Państwo Erytrea\",\"common\":\"Erytrea\"},\"urd\":{\"official\":\"ریاستِ ارتریا\",\"common\":\"ارتریا\"},\"kor\":{\"official\":\"에리트레아국\",\"common\":\"에리트레아\"},\"per\":{\"official\":\"جمهوری اریتره\",\"common\":\"اریتره\"}},\"latlng\":[15,39],\"landlocked\":false,\"borders\":[\"DJI\",\"ETH\",\"SDN\"],\"area\":117600,\"flag\":\"🇪🇷\",\"demonyms\":{\"eng\":{\"f\":\"Eritrean\",\"m\":\"Eritrean\"},\"fra\":{\"f\":\"Érythréenne\",\"m\":\"Érythréen\"}}},{\"name\":{\"common\":\"Western Sahara\",\"official\":\"Sahrawi Arab Democratic Republic\",\"native\":{\"ber\":{\"official\":\"Sahrawi Arab Democratic Republic\",\"common\":\"Western Sahara\"},\"mey\":{\"official\":\"الجمهورية العربية الصحراوية الديمقراطية\",\"common\":\"الصحراء الغربية\"},\"spa\":{\"official\":\"República Árabe Saharaui Democrática\",\"common\":\"Sahara Occidental\"}}},\"tld\":[\".eh\"],\"cca2\":\"EH\",\"ccn3\":\"732\",\"cca3\":\"ESH\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"DZD\":{\"name\":\"Algerian dinar\",\"symbol\":\"دج\"},\"MAD\":{\"name\":\"Moroccan dirham\",\"symbol\":\"DH\"},\"MRU\":{\"name\":\"Mauritanian ouguiya\",\"symbol\":\"UM\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"125288\",\"125289\"]},\"capital\":[\"El Aaiún\"],\"altSpellings\":[\"EH\",\"Taneẓroft Tutrimt\"],\"region\":\"Africa\",\"subregion\":\"Northern Africa\",\"languages\":{\"ber\":\"Berber\",\"mey\":\"Hassaniya\",\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Západní Sahara\",\"common\":\"Západní Sahara\"},\"deu\":{\"official\":\"Demokratische Arabische Republik Sahara\",\"common\":\"Westsahara\"},\"fra\":{\"official\":\"République arabe sahraouie démocratique\",\"common\":\"Sahara Occidental\"},\"hrv\":{\"official\":\"Sahrawi Arab Demokratska Republika\",\"common\":\"Zapadna Sahara\"},\"ita\":{\"official\":\"Repubblica Araba Saharawi Democratica\",\"common\":\"Sahara Occidentale\"},\"jpn\":{\"official\":\"サハラアラブ民主共和国\",\"common\":\"西サハラ\"},\"nld\":{\"official\":\"Sahrawi Arabische Democratische Republiek\",\"common\":\"Westelijke Sahara\"},\"por\":{\"official\":\"República Árabe Saharaui Democrática\",\"common\":\"Saara Ocidental\"},\"rus\":{\"official\":\"Sahrawi Арабская Демократическая Республика\",\"common\":\"Западная Сахара\"},\"slk\":{\"official\":\"Západná Sahara\",\"common\":\"Západná Sahara\"},\"spa\":{\"official\":\"República Árabe Saharaui Democrática\",\"common\":\"Sahara Occidental\"},\"fin\":{\"official\":\"Länsi-Sahara\",\"common\":\"Länsi-Sahara\"},\"est\":{\"official\":\"Lääne-Sahara\",\"common\":\"Lääne-Sahara\"},\"zho\":{\"official\":\"阿拉伯撒哈拉民主共和国\",\"common\":\"西撒哈拉\"},\"pol\":{\"official\":\"Saharyjska Arabska Republika Demokratyczna\",\"common\":\"Sahara Zachodnia\"},\"urd\":{\"official\":\"صحراوی عرب عوامی جمہوریہ\",\"common\":\"مغربی صحارا\"},\"kor\":{\"official\":\"사하라 아랍 민주 공화국\",\"common\":\"서사하라\"},\"per\":{\"official\":\"صحرای غربی\",\"common\":\"صحرای غربی\"}},\"latlng\":[24.5,-13],\"landlocked\":false,\"borders\":[\"DZA\",\"MRT\",\"MAR\"],\"area\":266000,\"flag\":\"🇪🇭\",\"demonyms\":{\"eng\":{\"f\":\"Sahrawi\",\"m\":\"Sahrawi\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Spain\",\"official\":\"Kingdom of Spain\",\"native\":{\"spa\":{\"official\":\"Reino de España\",\"common\":\"España\"}}},\"tld\":[\".es\"],\"cca2\":\"ES\",\"ccn3\":\"724\",\"cca3\":\"ESP\",\"cioc\":\"ESP\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"4\"]},\"capital\":[\"Madrid\"],\"altSpellings\":[\"ES\",\"Kingdom of Spain\",\"Reino de España\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Španělské království\",\"common\":\"Španělsko\"},\"deu\":{\"official\":\"Königreich Spanien\",\"common\":\"Spanien\"},\"fra\":{\"official\":\"Royaume d\\'Espagne\",\"common\":\"Espagne\"},\"hrv\":{\"official\":\"Kraljevina Španjolska\",\"common\":\"Španjolska\"},\"ita\":{\"official\":\"Regno di Spagna\",\"common\":\"Spagna\"},\"jpn\":{\"official\":\"スペイン王国\",\"common\":\"スペイン\"},\"nld\":{\"official\":\"Koninkrijk Spanje\",\"common\":\"Spanje\"},\"por\":{\"official\":\"Reino de Espanha\",\"common\":\"Espanha\"},\"rus\":{\"official\":\"Королевство Испания\",\"common\":\"Испания\"},\"slk\":{\"official\":\"Španielske kráľovstvo\",\"common\":\"Španielsko\"},\"spa\":{\"official\":\"Reino de España\",\"common\":\"España\"},\"fin\":{\"official\":\"Espanjan kuningaskunta\",\"common\":\"Espanja\"},\"est\":{\"official\":\"Hispaania Kuningriik\",\"common\":\"Hispaania\"},\"zho\":{\"official\":\"西班牙王国\",\"common\":\"西班牙\"},\"pol\":{\"official\":\"Królestwo Hiszpanii \",\"common\":\"Hiszpania\"},\"urd\":{\"official\":\"مملکتِ ہسپانیہ\",\"common\":\"ہسپانیہ\"},\"kor\":{\"official\":\"에스파냐 왕국\",\"common\":\"스페인\"},\"per\":{\"official\":\"پادشاهی اسپانیا\",\"common\":\"اسپانیا\"}},\"latlng\":[40,-4],\"landlocked\":false,\"borders\":[\"AND\",\"FRA\",\"GIB\",\"PRT\",\"MAR\"],\"area\":505992,\"flag\":\"🇪🇸\",\"demonyms\":{\"eng\":{\"f\":\"Spanish\",\"m\":\"Spanish\"},\"fra\":{\"f\":\"Espagnole\",\"m\":\"Espagnol\"}}},{\"name\":{\"common\":\"Estonia\",\"official\":\"Republic of Estonia\",\"native\":{\"est\":{\"official\":\"Eesti Vabariik\",\"common\":\"Eesti\"}}},\"tld\":[\".ee\"],\"cca2\":\"EE\",\"ccn3\":\"233\",\"cca3\":\"EST\",\"cioc\":\"EST\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"72\"]},\"capital\":[\"Tallinn\"],\"altSpellings\":[\"EE\",\"Eesti\",\"Republic of Estonia\",\"Eesti Vabariik\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"est\":\"Estonian\"},\"translations\":{\"ces\":{\"official\":\"Estonská republika\",\"common\":\"Estonsko\"},\"cym\":{\"official\":\"Gweriniaeth Estonia\",\"common\":\"Estonia\"},\"deu\":{\"official\":\"Republik Estland\",\"common\":\"Estland\"},\"fra\":{\"official\":\"République d\\'Estonie\",\"common\":\"Estonie\"},\"hrv\":{\"official\":\"Republika Estonija\",\"common\":\"Estonija\"},\"ita\":{\"official\":\"Repubblica di Estonia\",\"common\":\"Estonia\"},\"jpn\":{\"official\":\"エストニア共和国\",\"common\":\"エストニア\"},\"nld\":{\"official\":\"Republiek Estland\",\"common\":\"Estland\"},\"por\":{\"official\":\"República da Estónia\",\"common\":\"Estónia\"},\"rus\":{\"official\":\"Эстонская Республика\",\"common\":\"Эстония\"},\"slk\":{\"official\":\"Estónska republika\",\"common\":\"Estónsko\"},\"spa\":{\"official\":\"República de Estonia\",\"common\":\"Estonia\"},\"fin\":{\"official\":\"Viron tasavalta\",\"common\":\"Viro\"},\"est\":{\"official\":\"Eesti Vabariik\",\"common\":\"Eesti\"},\"zho\":{\"official\":\"爱沙尼亚共和国\",\"common\":\"爱沙尼亚\"},\"pol\":{\"official\":\"Republika Estońska\",\"common\":\"Estonia\"},\"urd\":{\"official\":\"جمہوریہ اسٹونیا\",\"common\":\"اسٹونیا\"},\"kor\":{\"official\":\"에스토니아 공화국\",\"common\":\"에스토니아\"},\"per\":{\"official\":\"جمهوری استونی\",\"common\":\"اِستونی\"}},\"latlng\":[59,26],\"landlocked\":false,\"borders\":[\"LVA\",\"RUS\"],\"area\":45227,\"flag\":\"🇪🇪\",\"demonyms\":{\"eng\":{\"f\":\"Estonian\",\"m\":\"Estonian\"},\"fra\":{\"f\":\"Estonienne\",\"m\":\"Estonien\"}}},{\"name\":{\"common\":\"Ethiopia\",\"official\":\"Federal Democratic Republic of Ethiopia\",\"native\":{\"amh\":{\"official\":\"የኢትዮጵያ ፌዴራላዊ ዲሞክራሲያዊ ሪፐብሊክ\",\"common\":\"ኢትዮጵያ\"}}},\"tld\":[\".et\"],\"cca2\":\"ET\",\"ccn3\":\"231\",\"cca3\":\"ETH\",\"cioc\":\"ETH\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"ETB\":{\"name\":\"Ethiopian birr\",\"symbol\":\"Br\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"51\"]},\"capital\":[\"Addis Ababa\"],\"altSpellings\":[\"ET\",\"ʾĪtyōṗṗyā\",\"Federal Democratic Republic of Ethiopia\",\"የኢትዮጵያ ፌዴራላዊ ዲሞክራሲያዊ ሪፐብሊክ\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"amh\":\"Amharic\"},\"translations\":{\"ces\":{\"official\":\"Etiopská federativní demokratická republika\",\"common\":\"Etiopie\"},\"cym\":{\"official\":\"Gweriniaeth Ddemocrataidd Ffederal Ethiopia\",\"common\":\"Ethiopia\"},\"deu\":{\"official\":\"Demokratische Bundesrepublik Äthiopien\",\"common\":\"Äthiopien\"},\"fra\":{\"official\":\"République fédérale démocratique d\\'Éthiopie\",\"common\":\"Éthiopie\"},\"hrv\":{\"official\":\"Savezna Demokratska Republika Etiopija\",\"common\":\"Etiopija\"},\"ita\":{\"official\":\"Repubblica federale democratica di Etiopia\",\"common\":\"Etiopia\"},\"jpn\":{\"official\":\"エチオピア連邦民主共和国\",\"common\":\"エチオピア\"},\"nld\":{\"official\":\"Federale Democratische Republiek Ethiopië\",\"common\":\"Ethiopië\"},\"por\":{\"official\":\"República Federal Democrática da Etiópia\",\"common\":\"Etiópia\"},\"rus\":{\"official\":\"Федеративная Демократическая Республика Эфиопия\",\"common\":\"Эфиопия\"},\"slk\":{\"official\":\"Etiópska federatívna demokratická republika\",\"common\":\"Etiópia\"},\"spa\":{\"official\":\"República Democrática Federal de Etiopía\",\"common\":\"Etiopía\"},\"fin\":{\"official\":\"Etiopian demokraattinen liittotasavalta\",\"common\":\"Etiopia\"},\"est\":{\"official\":\"Etioopia Demokraatlik Liitvabariik\",\"common\":\"Etioopia\"},\"zho\":{\"official\":\"埃塞俄比亚联邦民主共和国\",\"common\":\"埃塞俄比亚\"},\"pol\":{\"official\":\"Federalna Demokratyczna Republika Etiopii\",\"common\":\"Etiopia\"},\"urd\":{\"official\":\"وفاقی جمہوری جمہوریہ ایتھوپیا\",\"common\":\"ایتھوپیا\"},\"kor\":{\"official\":\"에티오피아 연방 민주 공화국\",\"common\":\"에티오피아\"},\"per\":{\"official\":\"جمهوری فدرال دموکراتیک اتیوپی\",\"common\":\"اِتیوپی\"}},\"latlng\":[8,38],\"landlocked\":true,\"borders\":[\"DJI\",\"ERI\",\"KEN\",\"SOM\",\"SSD\",\"SDN\"],\"area\":1104300,\"flag\":\"🇪🇹\",\"demonyms\":{\"eng\":{\"f\":\"Ethiopian\",\"m\":\"Ethiopian\"},\"fra\":{\"f\":\"Éthiopienne\",\"m\":\"Éthiopien\"}}},{\"name\":{\"common\":\"Finland\",\"official\":\"Republic of Finland\",\"native\":{\"fin\":{\"official\":\"Suomen tasavalta\",\"common\":\"Suomi\"},\"swe\":{\"official\":\"Republiken Finland\",\"common\":\"Finland\"}}},\"tld\":[\".fi\"],\"cca2\":\"FI\",\"ccn3\":\"246\",\"cca3\":\"FIN\",\"cioc\":\"FIN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"58\"]},\"capital\":[\"Helsinki\"],\"altSpellings\":[\"FI\",\"Suomi\",\"Republic of Finland\",\"Suomen tasavalta\",\"Republiken Finland\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"fin\":\"Finnish\",\"swe\":\"Swedish\"},\"translations\":{\"ces\":{\"official\":\"Finská republika\",\"common\":\"Finsko\"},\"deu\":{\"official\":\"Republik Finnland\",\"common\":\"Finnland\"},\"fra\":{\"official\":\"République de Finlande\",\"common\":\"Finlande\"},\"hrv\":{\"official\":\"Republika Finska\",\"common\":\"Finska\"},\"ita\":{\"official\":\"Repubblica di Finlandia\",\"common\":\"Finlandia\"},\"jpn\":{\"official\":\"フィンランド共和国\",\"common\":\"フィンランド\"},\"nld\":{\"official\":\"Republiek Finland\",\"common\":\"Finland\"},\"por\":{\"official\":\"República da Finlândia\",\"common\":\"Finlândia\"},\"rus\":{\"official\":\"Финляндская Республика\",\"common\":\"Финляндия\"},\"slk\":{\"official\":\"Fínska republika\",\"common\":\"Fínsko\"},\"spa\":{\"official\":\"República de Finlandia\",\"common\":\"Finlandia\"},\"fin\":{\"official\":\"Suomen tasavalta\",\"common\":\"Suomi\"},\"est\":{\"official\":\"Soome Vabariik\",\"common\":\"Soome\"},\"zho\":{\"official\":\"芬兰共和国\",\"common\":\"芬兰\"},\"pol\":{\"official\":\"Republika Finlandii\",\"common\":\"Finlandia\"},\"urd\":{\"official\":\"جمہوریہ فن لینڈ\",\"common\":\"فن لینڈ\"},\"kor\":{\"official\":\"핀란드 공화국\",\"common\":\"핀란드\"},\"per\":{\"official\":\"جمهوری فنلاند\",\"common\":\"فنلاند\"}},\"latlng\":[64,26],\"landlocked\":false,\"borders\":[\"NOR\",\"SWE\",\"RUS\"],\"area\":338424,\"flag\":\"🇫🇮\",\"demonyms\":{\"eng\":{\"f\":\"Finnish\",\"m\":\"Finnish\"},\"fra\":{\"f\":\"Finlandaise\",\"m\":\"Finlandais\"}}},{\"name\":{\"common\":\"Fiji\",\"official\":\"Republic of Fiji\",\"native\":{\"eng\":{\"official\":\"Republic of Fiji\",\"common\":\"Fiji\"},\"fij\":{\"official\":\"Matanitu Tugalala o Viti\",\"common\":\"Viti\"},\"hif\":{\"official\":\"रिपब्लिक ऑफ फीजी\",\"common\":\"फिजी\"}}},\"tld\":[\".fj\"],\"cca2\":\"FJ\",\"ccn3\":\"242\",\"cca3\":\"FJI\",\"cioc\":\"FIJ\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"FJD\":{\"name\":\"Fijian dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"79\"]},\"capital\":[\"Suva\"],\"altSpellings\":[\"FJ\",\"Viti\",\"Republic of Fiji\",\"Matanitu ko Viti\",\"Fijī Gaṇarājya\"],\"region\":\"Oceania\",\"subregion\":\"Melanesia\",\"languages\":{\"eng\":\"English\",\"fij\":\"Fijian\",\"hif\":\"Fiji Hindi\"},\"translations\":{\"ces\":{\"official\":\"Republika Fidžijských ostrovů\",\"common\":\"Fidži\"},\"deu\":{\"official\":\"Republik Fidschi\",\"common\":\"Fidschi\"},\"fra\":{\"official\":\"République des Fidji\",\"common\":\"Fidji\"},\"hrv\":{\"official\":\"Republika Fidži\",\"common\":\"Fiđi\"},\"ita\":{\"official\":\"Repubblica di Figi\",\"common\":\"Figi\"},\"jpn\":{\"official\":\"フィジー共和国\",\"common\":\"フィジー\"},\"nld\":{\"official\":\"Republiek Fiji\",\"common\":\"Fiji\"},\"por\":{\"official\":\"República de Fiji\",\"common\":\"Fiji\"},\"rus\":{\"official\":\"Республика Фиджи\",\"common\":\"Фиджи\"},\"slk\":{\"official\":\"Fidžijská republika\",\"common\":\"Fidži\"},\"spa\":{\"official\":\"República de Fiji\",\"common\":\"Fiyi\"},\"fin\":{\"official\":\"Fidžin tasavalta\",\"common\":\"Fidži\"},\"est\":{\"official\":\"Fidži Vabariik\",\"common\":\"Fidži\"},\"zho\":{\"official\":\"斐济共和国\",\"common\":\"斐济\"},\"pol\":{\"official\":\"Republika Fidżi\",\"common\":\"Fidżi\"},\"urd\":{\"official\":\"جمہوریہ فجی\",\"common\":\"فجی\"},\"kor\":{\"official\":\"피지 공화국\",\"common\":\"피지\"},\"per\":{\"official\":\"جمهوری جزایر فیجی\",\"common\":\"فیجی\"}},\"latlng\":[-18,175],\"landlocked\":false,\"borders\":[],\"area\":18272,\"flag\":\"🇫🇯\",\"demonyms\":{\"eng\":{\"f\":\"Fijian\",\"m\":\"Fijian\"},\"fra\":{\"f\":\"Fidjienne\",\"m\":\"Fidjien\"}}},{\"name\":{\"common\":\"Falkland Islands\",\"official\":\"Falkland Islands\",\"native\":{\"eng\":{\"official\":\"Falkland Islands\",\"common\":\"Falkland Islands\"}}},\"tld\":[\".fk\"],\"cca2\":\"FK\",\"ccn3\":\"238\",\"cca3\":\"FLK\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"FKP\":{\"name\":\"Falkland Islands pound\",\"symbol\":\"£\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"00\"]},\"capital\":[\"Stanley\"],\"altSpellings\":[\"FK\",\"Islas Malvinas\",\"Falkland Islands (Malvinas)\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Falklandské ostrovy\",\"common\":\"Falklandy\"},\"deu\":{\"official\":\"Falklandinseln\",\"common\":\"Falklandinseln\"},\"fra\":{\"official\":\"Îles Malouines\",\"common\":\"Îles Malouines\"},\"hrv\":{\"official\":\"Falklandski otoci\",\"common\":\"Falklandski Otoci\"},\"ita\":{\"official\":\"Isole Falkland\",\"common\":\"Isole Falkland o Isole Malvine\"},\"jpn\":{\"official\":\"フォークランド\",\"common\":\"フォークランド(マルビナス)諸島\"},\"nld\":{\"official\":\"Falkland eilanden\",\"common\":\"Falklandeilanden\"},\"por\":{\"official\":\"Ilhas Malvinas\",\"common\":\"Ilhas Malvinas\"},\"rus\":{\"official\":\"Фолклендские острова\",\"common\":\"Фолклендские острова\"},\"slk\":{\"official\":\"Falklandské ostrovy\",\"common\":\"Falklandy\"},\"spa\":{\"official\":\"islas Malvinas\",\"common\":\"Islas Malvinas\"},\"fin\":{\"official\":\"Falkandinsaaret\",\"common\":\"Falkandinsaaret\"},\"est\":{\"official\":\"Falklandi saared\",\"common\":\"Falklandi saared\"},\"zho\":{\"official\":\"福克兰群岛\",\"common\":\"福克兰群岛\"},\"pol\":{\"official\":\"Falklandy\",\"common\":\"Falklandy\"},\"urd\":{\"official\":\"جزائر فاکلینڈ\",\"common\":\"جزائر فاکلینڈ\"},\"kor\":{\"official\":\"포클랜드 제도\",\"common\":\"포클랜드 제도\"},\"per\":{\"official\":\"جزایر فالکلند\",\"common\":\"جزایر فالکلند\"}},\"latlng\":[-51.75,-59],\"landlocked\":false,\"borders\":[],\"area\":12173,\"flag\":\"🇫🇰\",\"demonyms\":{\"eng\":{\"f\":\"Falkland Islander\",\"m\":\"Falkland Islander\"},\"fra\":{\"f\":\"Malouinne\",\"m\":\"Malouin\"}}},{\"name\":{\"common\":\"France\",\"official\":\"French Republic\",\"native\":{\"fra\":{\"official\":\"République française\",\"common\":\"France\"}}},\"tld\":[\".fr\"],\"cca2\":\"FR\",\"ccn3\":\"250\",\"cca3\":\"FRA\",\"cioc\":\"FRA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"3\"]},\"capital\":[\"Paris\"],\"altSpellings\":[\"FR\",\"French Republic\",\"République française\"],\"region\":\"Europe\",\"subregion\":\"Western Europe\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Francouzská republika\",\"common\":\"Francie\"},\"deu\":{\"official\":\"Französische Republik\",\"common\":\"Frankreich\"},\"fra\":{\"official\":\"République française\",\"common\":\"France\"},\"hrv\":{\"official\":\"Francuska Republika\",\"common\":\"Francuska\"},\"ita\":{\"official\":\"Repubblica francese\",\"common\":\"Francia\"},\"jpn\":{\"official\":\"フランス共和国\",\"common\":\"フランス\"},\"nld\":{\"official\":\"Franse Republiek\",\"common\":\"Frankrijk\"},\"por\":{\"official\":\"República Francesa\",\"common\":\"França\"},\"rus\":{\"official\":\"Французская Республика\",\"common\":\"Франция\"},\"slk\":{\"official\":\"Francúzska republika\",\"common\":\"Francúzsko\"},\"spa\":{\"official\":\"República francés\",\"common\":\"Francia\"},\"fin\":{\"official\":\"Ranskan tasavalta\",\"common\":\"Ranska\"},\"est\":{\"official\":\"Prantsuse Vabariik\",\"common\":\"Prantsusmaa\"},\"zho\":{\"official\":\"法兰西共和国\",\"common\":\"法国\"},\"pol\":{\"official\":\"Republika Francuska\",\"common\":\"Francja\"},\"urd\":{\"official\":\"جمہوریہ فرانس\",\"common\":\"فرانس\"},\"kor\":{\"official\":\"프랑스 공화국\",\"common\":\"프랑스\"},\"per\":{\"official\":\"جمهوری فرانسه\",\"common\":\"فرانسه\"}},\"latlng\":[46,2],\"landlocked\":false,\"borders\":[\"AND\",\"BEL\",\"DEU\",\"ITA\",\"LUX\",\"MCO\",\"ESP\",\"CHE\"],\"area\":551695,\"flag\":\"🇫🇷\",\"demonyms\":{\"eng\":{\"f\":\"French\",\"m\":\"French\"},\"fra\":{\"f\":\"Française\",\"m\":\"Français\"}}},{\"name\":{\"common\":\"Faroe Islands\",\"official\":\"Faroe Islands\",\"native\":{\"dan\":{\"official\":\"Færøerne\",\"common\":\"Færøerne\"},\"fao\":{\"official\":\"Føroyar\",\"common\":\"Føroyar\"}}},\"tld\":[\".fo\"],\"cca2\":\"FO\",\"ccn3\":\"234\",\"cca3\":\"FRO\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"DKK\":{\"name\":\"Danish krone\",\"symbol\":\"kr\"},\"FOK\":{\"name\":\"Faroese króna\",\"symbol\":\"kr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"98\"]},\"capital\":[\"Tórshavn\"],\"altSpellings\":[\"FO\",\"Føroyar\",\"Færøerne\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"dan\":\"Danish\",\"fao\":\"Faroese\"},\"translations\":{\"ces\":{\"official\":\"Faerské ostrovy\",\"common\":\"Faerské ostrovy\"},\"deu\":{\"official\":\"Färöer\",\"common\":\"Färöer-Inseln\"},\"fra\":{\"official\":\"Îles Féroé\",\"common\":\"Îles Féroé\"},\"hrv\":{\"official\":\"Farski Otoci\",\"common\":\"Farski Otoci\"},\"ita\":{\"official\":\"Isole Faroe\",\"common\":\"Isole Far Oer\"},\"jpn\":{\"official\":\"フェロー諸島\",\"common\":\"フェロー諸島\"},\"nld\":{\"official\":\"Faeröer\",\"common\":\"Faeröer\"},\"por\":{\"official\":\"Ilhas Faroe\",\"common\":\"Ilhas Faroé\"},\"rus\":{\"official\":\"Фарерские острова\",\"common\":\"Фарерские острова\"},\"slk\":{\"official\":\"Faerské ostrovy\",\"common\":\"Faerské ostrovy\"},\"spa\":{\"official\":\"Islas Feroe\",\"common\":\"Islas Faroe\"},\"fin\":{\"official\":\"Färsaaret\",\"common\":\"Färsaaret\"},\"est\":{\"official\":\"Fääri saared\",\"common\":\"Fääri saared\"},\"zho\":{\"official\":\"法罗群岛\",\"common\":\"法罗群岛\"},\"pol\":{\"official\":\"Wyspy Owcze\",\"common\":\"Wyspy Owcze\"},\"urd\":{\"official\":\"جزائر فارو\",\"common\":\"جزائر فارو\"},\"kor\":{\"official\":\"페로 제도\",\"common\":\"페로 제도\"},\"per\":{\"official\":\"جزایر فاروئه\",\"common\":\"جزایر فاروئه\"}},\"latlng\":[62,-7],\"landlocked\":false,\"borders\":[],\"area\":1393,\"flag\":\"🇫🇴\",\"demonyms\":{\"eng\":{\"f\":\"Faroese\",\"m\":\"Faroese\"},\"fra\":{\"f\":\"Féroïenne\",\"m\":\"Féroïen\"}}},{\"name\":{\"common\":\"Micronesia\",\"official\":\"Federated States of Micronesia\",\"native\":{\"eng\":{\"official\":\"Federated States of Micronesia\",\"common\":\"Micronesia\"}}},\"tld\":[\".fm\"],\"cca2\":\"FM\",\"ccn3\":\"583\",\"cca3\":\"FSM\",\"cioc\":\"FSM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":[],\"idd\":{\"root\":\"+6\",\"suffixes\":[\"91\"]},\"capital\":[\"Palikir\"],\"altSpellings\":[\"FM\",\"Federated States of Micronesia\",\"Micronesia, Federated States of\"],\"region\":\"Oceania\",\"subregion\":\"Micronesia\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Federativní státy Mikronésie\",\"common\":\"Mikronésie\"},\"deu\":{\"official\":\"Föderierte Staaten von Mikronesien\",\"common\":\"Mikronesien\"},\"fra\":{\"official\":\"États fédérés de Micronésie\",\"common\":\"Micronésie\"},\"hrv\":{\"official\":\"Savezne Države Mikronezije\",\"common\":\"Mikronezija\"},\"ita\":{\"official\":\"Stati federati di Micronesia\",\"common\":\"Micronesia\"},\"jpn\":{\"official\":\"ミクロネシア連邦\",\"common\":\"ミクロネシア連邦\"},\"nld\":{\"official\":\"Federale Staten van Micronesia\",\"common\":\"Micronesië\"},\"por\":{\"official\":\"Estados Federados da Micronésia\",\"common\":\"Micronésia\"},\"rus\":{\"official\":\"Федеративные Штаты Микронезии\",\"common\":\"Федеративные Штаты Микронезии\"},\"slk\":{\"official\":\"Mikronézske federatívne štáty\",\"common\":\"Mikronézia\"},\"spa\":{\"official\":\"Estados Federados de Micronesia\",\"common\":\"Micronesia\"},\"fin\":{\"official\":\"Mikronesian liittovaltio\",\"common\":\"Mikronesia\"},\"est\":{\"official\":\"Mikroneesia Liiduriigid\",\"common\":\"Mikroneesia\"},\"zho\":{\"official\":\"密克罗尼西亚联邦\",\"common\":\"密克罗尼西亚\"},\"pol\":{\"official\":\"Sfederowane Stany Mikronezji\",\"common\":\"Mikronezja\"},\"urd\":{\"official\":\"ریاستہائے وفاقیہ مائکرونیشیا\",\"common\":\"مائکرونیشیا\"},\"kor\":{\"official\":\"미크로네시아 연방\",\"common\":\"미크로네시아\"},\"per\":{\"official\":\"ایالات فدرال میکرونزی\",\"common\":\"میکرونزی\"}},\"latlng\":[6.91666666,158.25],\"landlocked\":false,\"borders\":[],\"area\":702,\"flag\":\"🇫🇲\",\"demonyms\":{\"eng\":{\"f\":\"Micronesian\",\"m\":\"Micronesian\"},\"fra\":{\"f\":\"Micronésienne\",\"m\":\"Micronésien\"}}},{\"name\":{\"common\":\"Gabon\",\"official\":\"Gabonese Republic\",\"native\":{\"fra\":{\"official\":\"République gabonaise\",\"common\":\"Gabon\"}}},\"tld\":[\".ga\"],\"cca2\":\"GA\",\"ccn3\":\"266\",\"cca3\":\"GAB\",\"cioc\":\"GAB\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XAF\":{\"name\":\"Central African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"41\"]},\"capital\":[\"Libreville\"],\"altSpellings\":[\"GA\",\"Gabonese Republic\",\"République Gabonaise\"],\"region\":\"Africa\",\"subregion\":\"Middle Africa\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Gabonská republika\",\"common\":\"Gabon\"},\"deu\":{\"official\":\"Gabunische Republik\",\"common\":\"Gabun\"},\"fra\":{\"official\":\"République gabonaise\",\"common\":\"Gabon\"},\"hrv\":{\"official\":\"Gabon Republika\",\"common\":\"Gabon\"},\"ita\":{\"official\":\"Repubblica gabonese\",\"common\":\"Gabon\"},\"jpn\":{\"official\":\"ガボン共和国\",\"common\":\"ガボン\"},\"nld\":{\"official\":\"Republiek Gabon\",\"common\":\"Gabon\"},\"por\":{\"official\":\"República do Gabão\",\"common\":\"Gabão\"},\"rus\":{\"official\":\"Габона Республика\",\"common\":\"Габон\"},\"slk\":{\"official\":\"Gabonská republika\",\"common\":\"Gabon\"},\"spa\":{\"official\":\"República de Gabón\",\"common\":\"Gabón\"},\"fin\":{\"official\":\"Gabonin tasavalta\",\"common\":\"Gabon\"},\"est\":{\"official\":\"Gaboni Vabariik\",\"common\":\"Gabon\"},\"zho\":{\"official\":\"加蓬共和国\",\"common\":\"加蓬\"},\"pol\":{\"official\":\"Republika Gabońska\",\"common\":\"Gabon\"},\"urd\":{\"official\":\"جمہوریہ گیبون\",\"common\":\"گیبون\"},\"kor\":{\"official\":\"가봉 공화국\",\"common\":\"가봉\"},\"per\":{\"official\":\"جمهوری گابُن\",\"common\":\"گابن\"}},\"latlng\":[-1,11.75],\"landlocked\":false,\"borders\":[\"CMR\",\"COG\",\"GNQ\"],\"area\":267668,\"flag\":\"🇬🇦\",\"demonyms\":{\"eng\":{\"f\":\"Gabonese\",\"m\":\"Gabonese\"},\"fra\":{\"f\":\"Gabonaise\",\"m\":\"Gabonais\"}}},{\"name\":{\"common\":\"United Kingdom\",\"official\":\"United Kingdom of Great Britain and Northern Ireland\",\"native\":{\"eng\":{\"official\":\"United Kingdom of Great Britain and Northern Ireland\",\"common\":\"United Kingdom\"}}},\"tld\":[\".uk\"],\"cca2\":\"GB\",\"ccn3\":\"826\",\"cca3\":\"GBR\",\"cioc\":\"GBR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"GBP\":{\"name\":\"British pound\",\"symbol\":\"£\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"4\"]},\"capital\":[\"London\"],\"altSpellings\":[\"GB\",\"UK\",\"Great Britain\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Spojené království Velké Británie a Severního Irska\",\"common\":\"Spojené království\"},\"deu\":{\"official\":\"Vereinigtes Königreich Großbritannien und Nordirland\",\"common\":\"Vereinigtes Königreich\"},\"fra\":{\"official\":\"Royaume-Uni de Grande-Bretagne et d\\'Irlande du Nord\",\"common\":\"Royaume-Uni\"},\"hrv\":{\"official\":\"Ujedinjeno Kraljevstvo Velike Britanije i Sjeverne Irske\",\"common\":\"Ujedinjeno Kraljevstvo\"},\"ita\":{\"official\":\"Regno Unito di Gran Bretagna e Irlanda del Nord\",\"common\":\"Regno Unito\"},\"jpn\":{\"official\":\"グレート·ブリテンおよび北アイルランド連合王国\",\"common\":\"イギリス\"},\"nld\":{\"official\":\"Verenigd Koninkrijk van Groot-Brittannië en Noord-Ierland\",\"common\":\"Verenigd Koninkrijk\"},\"por\":{\"official\":\"Reino Unido da Grã-Bretanha e Irlanda do Norte\",\"common\":\"Reino Unido\"},\"rus\":{\"official\":\"Соединенное Королевство Великобритании и Северной Ирландии\",\"common\":\"Великобритания\"},\"slk\":{\"official\":\"Spojené kráľovstvo Veľkej Británie a SevernéhoÌrska\",\"common\":\"Veľká Británia (Spojené kráľovstvo)\"},\"spa\":{\"official\":\"Reino Unido de Gran Bretaña e Irlanda del Norte\",\"common\":\"Reino Unido\"},\"fin\":{\"official\":\"Ison-Britannian ja Pohjois-Irlannin yhdistynyt kuningaskunta\",\"common\":\"Yhdistynyt kuningaskunta\"},\"est\":{\"official\":\"Suurbritannia ja Põhja-Iiri Ühendkuningriik\",\"common\":\"Suurbritannia\"},\"zho\":{\"official\":\"大不列颠及北爱尔兰联合王国\",\"common\":\"英国\"},\"pol\":{\"official\":\"Zjednoczone Królestwo Wielkiej Brytanii i Irlandii Północnej\",\"common\":\"Zjednoczone Krłlestwo\"},\"urd\":{\"official\":\"مملکتِ متحدہ برطانیہ عظمی و شمالی آئرلینڈ\",\"common\":\"مملکتِ متحدہ\"},\"kor\":{\"official\":\"그레이트브리튼 북아일랜드 연합 왕국\",\"common\":\"영국\"},\"per\":{\"official\":\"پادشاهی متحد بریتانیای کبیر و ایرلند شمالی\",\"common\":\"انگلیس\"}},\"latlng\":[54,-2],\"landlocked\":false,\"borders\":[\"IRL\"],\"area\":242900,\"flag\":\"🇬🇧\",\"demonyms\":{\"eng\":{\"f\":\"British\",\"m\":\"British\"},\"fra\":{\"f\":\"Britannique\",\"m\":\"Britannique\"}}},{\"name\":{\"common\":\"Georgia\",\"official\":\"Georgia\",\"native\":{\"kat\":{\"official\":\"საქართველო\",\"common\":\"საქართველო\"}}},\"tld\":[\".ge\"],\"cca2\":\"GE\",\"ccn3\":\"268\",\"cca3\":\"GEO\",\"cioc\":\"GEO\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"GEL\":{\"name\":\"lari\",\"symbol\":\"₾\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"95\"]},\"capital\":[\"Tbilisi\"],\"altSpellings\":[\"GE\",\"Sakartvelo\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"kat\":\"Georgian\"},\"translations\":{\"ces\":{\"official\":\"Gruzie\",\"common\":\"Gruzie\"},\"deu\":{\"official\":\"Georgien\",\"common\":\"Georgien\"},\"fra\":{\"official\":\"République de Géorgie\",\"common\":\"Géorgie\"},\"hrv\":{\"official\":\"Gruzija\",\"common\":\"Gruzija\"},\"ita\":{\"official\":\"Georgia\",\"common\":\"Georgia\"},\"jpn\":{\"official\":\"グルジア\",\"common\":\"グルジア\"},\"nld\":{\"official\":\"Georgia\",\"common\":\"Georgië\"},\"por\":{\"official\":\"Georgia\",\"common\":\"Geórgia\"},\"rus\":{\"official\":\"Грузия\",\"common\":\"Грузия\"},\"slk\":{\"official\":\"Gruzínsko\",\"common\":\"Gruzínsko\"},\"spa\":{\"official\":\"Georgia\",\"common\":\"Georgia\"},\"fin\":{\"official\":\"Georgia\",\"common\":\"Georgia\"},\"est\":{\"official\":\"Gruusia\",\"common\":\"Gruusia\"},\"zho\":{\"official\":\"格鲁吉亚\",\"common\":\"格鲁吉亚\"},\"pol\":{\"official\":\"Gruzja\",\"common\":\"Gruzja\"},\"urd\":{\"official\":\"جارجیا\",\"common\":\"جارجیا\"},\"kor\":{\"official\":\"조지아\",\"common\":\"조지아\"},\"per\":{\"official\":\"گرجستان\",\"common\":\"گرجستان\"}},\"latlng\":[42,43.5],\"landlocked\":false,\"borders\":[\"ARM\",\"AZE\",\"RUS\",\"TUR\"],\"area\":69700,\"flag\":\"🇬🇪\",\"demonyms\":{\"eng\":{\"f\":\"Georgian\",\"m\":\"Georgian\"},\"fra\":{\"f\":\"Géorgienne\",\"m\":\"Géorgien\"}}},{\"name\":{\"common\":\"Guernsey\",\"official\":\"Bailiwick of Guernsey\",\"native\":{\"eng\":{\"official\":\"Bailiwick of Guernsey\",\"common\":\"Guernsey\"},\"fra\":{\"official\":\"Bailliage de Guernesey\",\"common\":\"Guernesey\"},\"nfr\":{\"official\":\"Dgèrnésiais\",\"common\":\"Dgèrnésiais\"}}},\"tld\":[\".gg\"],\"cca2\":\"GG\",\"ccn3\":\"831\",\"cca3\":\"GGY\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"GBP\":{\"name\":\"British pound\",\"symbol\":\"£\"},\"GGP\":{\"name\":\"Guernsey pound\",\"symbol\":\"£\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"4\"]},\"capital\":[\"St. Peter Port\"],\"altSpellings\":[\"GG\",\"Bailiwick of Guernsey\",\"Bailliage de Guernesey\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"eng\":\"English\",\"fra\":\"French\",\"nfr\":\"Guernésiais\"},\"translations\":{\"ces\":{\"official\":\"Rychtářství Guernsey\",\"common\":\"Guernsey\"},\"deu\":{\"official\":\"Vogtei Guernsey\",\"common\":\"Guernsey\"},\"fra\":{\"official\":\"Bailliage de Guernesey\",\"common\":\"Guernesey\"},\"hrv\":{\"official\":\"Struka Guernsey\",\"common\":\"Guernsey\"},\"ita\":{\"official\":\"Baliato di Guernsey\",\"common\":\"Guernsey\"},\"jpn\":{\"official\":\"ガーンジーの得意分野\",\"common\":\"ガーンジー\"},\"nld\":{\"official\":\"Baljuwschap Guernsey\",\"common\":\"Guernsey\"},\"por\":{\"official\":\"Bailiado de Guernsey\",\"common\":\"Guernsey\"},\"rus\":{\"official\":\"Коронное владение Гернси\",\"common\":\"Гернси\"},\"slk\":{\"official\":\"Guernsey\",\"common\":\"Guernsey\"},\"spa\":{\"official\":\"Bailía de Guernsey\",\"common\":\"Guernsey\"},\"fin\":{\"official\":\"Guernsey\",\"common\":\"Guernsey\"},\"est\":{\"official\":\"Guernsey foogtkond\",\"common\":\"Guernsey\"},\"zho\":{\"official\":\"根西岛\",\"common\":\"根西岛\"},\"pol\":{\"official\":\"Baliwat Guernsey\",\"common\":\"Guernsey\"},\"urd\":{\"official\":\"گرنزی رودبار\",\"common\":\"گرنزی\"},\"kor\":{\"official\":\"건지 섬\",\"common\":\"건지 섬\"},\"per\":{\"official\":\"گرنزی\",\"common\":\"گرنزی\"}},\"latlng\":[49.46666666,-2.58333333],\"landlocked\":false,\"borders\":[],\"area\":78,\"flag\":\"🇬🇬\",\"demonyms\":{\"eng\":{\"f\":\"Channel Islander\",\"m\":\"Channel Islander\"},\"fra\":{\"f\":\"Guernesiaise\",\"m\":\"Guernesiais\"}}},{\"name\":{\"common\":\"Ghana\",\"official\":\"Republic of Ghana\",\"native\":{\"eng\":{\"official\":\"Republic of Ghana\",\"common\":\"Ghana\"}}},\"tld\":[\".gh\"],\"cca2\":\"GH\",\"ccn3\":\"288\",\"cca3\":\"GHA\",\"cioc\":\"GHA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"GHS\":{\"name\":\"Ghanaian cedi\",\"symbol\":\"₵\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"33\"]},\"capital\":[\"Accra\"],\"altSpellings\":[\"GH\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Ghanská republika\",\"common\":\"Ghana\"},\"deu\":{\"official\":\"Republik Ghana\",\"common\":\"Ghana\"},\"fra\":{\"official\":\"République du Ghana\",\"common\":\"Ghana\"},\"hrv\":{\"official\":\"Republika Gana\",\"common\":\"Gana\"},\"ita\":{\"official\":\"Repubblica del Ghana\",\"common\":\"Ghana\"},\"jpn\":{\"official\":\"ガーナ共和国\",\"common\":\"ガーナ\"},\"nld\":{\"official\":\"Republiek Ghana\",\"common\":\"Ghana\"},\"por\":{\"official\":\"República do Gana\",\"common\":\"Gana\"},\"rus\":{\"official\":\"Республика Гана\",\"common\":\"Гана\"},\"slk\":{\"official\":\"Ghanská republika\",\"common\":\"Ghana\"},\"spa\":{\"official\":\"República de Ghana\",\"common\":\"Ghana\"},\"fin\":{\"official\":\"Ghanan tasavalta\",\"common\":\"Ghana\"},\"est\":{\"official\":\"Ghana Vabariik\",\"common\":\"Ghana\"},\"zho\":{\"official\":\"加纳共和国\",\"common\":\"加纳\"},\"pol\":{\"official\":\"Republika Ghany\",\"common\":\"Ghana\"},\"urd\":{\"official\":\"جمہوریہ گھانا\",\"common\":\"گھانا\"},\"kor\":{\"official\":\"가나 공화국\",\"common\":\"가나\"},\"per\":{\"official\":\"جمهوری غنا\",\"common\":\"غنا\"}},\"latlng\":[8,-2],\"landlocked\":false,\"borders\":[\"BFA\",\"CIV\",\"TGO\"],\"area\":238533,\"flag\":\"🇬🇭\",\"demonyms\":{\"eng\":{\"f\":\"Ghanaian\",\"m\":\"Ghanaian\"},\"fra\":{\"f\":\"Ghanéenne\",\"m\":\"Ghanéen\"}}},{\"name\":{\"common\":\"Gibraltar\",\"official\":\"Gibraltar\",\"native\":{\"eng\":{\"official\":\"Gibraltar\",\"common\":\"Gibraltar\"}}},\"tld\":[\".gi\"],\"cca2\":\"GI\",\"ccn3\":\"292\",\"cca3\":\"GIB\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"GIP\":{\"name\":\"Gibraltar pound\",\"symbol\":\"£\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"50\"]},\"capital\":[\"Gibraltar\"],\"altSpellings\":[\"GI\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Gibraltar\",\"common\":\"Gibraltar\"},\"deu\":{\"official\":\"Gibraltar\",\"common\":\"Gibraltar\"},\"fra\":{\"official\":\"Gibraltar\",\"common\":\"Gibraltar\"},\"hrv\":{\"official\":\"Gibraltar\",\"common\":\"Gibraltar\"},\"ita\":{\"official\":\"Gibilterra\",\"common\":\"Gibilterra\"},\"jpn\":{\"official\":\"ジブラルタル\",\"common\":\"ジブラルタル\"},\"nld\":{\"official\":\"Gibraltar\",\"common\":\"Gibraltar\"},\"por\":{\"official\":\"Gibraltar\",\"common\":\"Gibraltar\"},\"rus\":{\"official\":\"Гибралтар\",\"common\":\"Гибралтар\"},\"slk\":{\"official\":\"Gibraltár\",\"common\":\"Gibraltár\"},\"spa\":{\"official\":\"Gibraltar\",\"common\":\"Gibraltar\"},\"fin\":{\"official\":\"Gibraltar\",\"common\":\"Gibraltar\"},\"est\":{\"official\":\"Gibraltar\",\"common\":\"Gibraltar\"},\"zho\":{\"official\":\"直布罗陀\",\"common\":\"直布罗陀\"},\"pol\":{\"official\":\"Gibraltar\",\"common\":\"Gibraltar\"},\"urd\":{\"official\":\"جبل الطارق\",\"common\":\"جبل الطارق\"},\"kor\":{\"official\":\"지브롤터\",\"common\":\"지브롤터\"},\"per\":{\"official\":\"جبل طارق\",\"common\":\"جبل طارق\"}},\"latlng\":[36.13333333,-5.35],\"landlocked\":false,\"borders\":[\"ESP\"],\"area\":6,\"flag\":\"🇬🇮\",\"demonyms\":{\"eng\":{\"f\":\"Gibraltar\",\"m\":\"Gibraltar\"},\"fra\":{\"f\":\"Gibraltarienne\",\"m\":\"Gibraltarien\"}}},{\"name\":{\"common\":\"Guinea\",\"official\":\"Republic of Guinea\",\"native\":{\"fra\":{\"official\":\"République de Guinée\",\"common\":\"Guinée\"}}},\"tld\":[\".gn\"],\"cca2\":\"GN\",\"ccn3\":\"324\",\"cca3\":\"GIN\",\"cioc\":\"GUI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"GNF\":{\"name\":\"Guinean franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"24\"]},\"capital\":[\"Conakry\"],\"altSpellings\":[\"GN\",\"Republic of Guinea\",\"République de Guinée\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Guinejská republika\",\"common\":\"Guinea\"},\"deu\":{\"official\":\"Republik Guinea\",\"common\":\"Guinea\"},\"fra\":{\"official\":\"République de Guinée\",\"common\":\"Guinée\"},\"hrv\":{\"official\":\"Republika Gvineja\",\"common\":\"Gvineja\"},\"ita\":{\"official\":\"Repubblica di Guinea\",\"common\":\"Guinea\"},\"jpn\":{\"official\":\"ギニア共和国\",\"common\":\"ギニア\"},\"nld\":{\"official\":\"Republiek Guinee\",\"common\":\"Guinee\"},\"por\":{\"official\":\"República da Guiné\",\"common\":\"Guiné\"},\"rus\":{\"official\":\"Республика Гвинея\",\"common\":\"Гвинея\"},\"slk\":{\"official\":\"Guinejská republika\",\"common\":\"Guinea\"},\"spa\":{\"official\":\"República de Guinea\",\"common\":\"Guinea\"},\"fin\":{\"official\":\"Guinean tasavalta\",\"common\":\"Guinea\"},\"est\":{\"official\":\"Guinea Vabariik\",\"common\":\"Guinea\"},\"zho\":{\"official\":\"几内亚共和国\",\"common\":\"几内亚\"},\"pol\":{\"official\":\"Republika Gwinei\",\"common\":\"Gwinea\"},\"urd\":{\"official\":\"جمہوریہ گنی\",\"common\":\"گنی\"},\"kor\":{\"official\":\"기니 공화국\",\"common\":\"기니\"},\"per\":{\"official\":\"مملکت مستقل پاپوآ گینه نو\",\"common\":\"پاپوآ گینه نو\"}},\"latlng\":[11,-10],\"landlocked\":false,\"borders\":[\"CIV\",\"GNB\",\"LBR\",\"MLI\",\"SEN\",\"SLE\"],\"area\":245857,\"flag\":\"🇬🇳\",\"demonyms\":{\"eng\":{\"f\":\"Guinean\",\"m\":\"Guinean\"},\"fra\":{\"f\":\"Guinéenne\",\"m\":\"Guinéen\"}}},{\"name\":{\"common\":\"Guadeloupe\",\"official\":\"Guadeloupe\",\"native\":{\"fra\":{\"official\":\"Guadeloupe\",\"common\":\"Guadeloupe\"}}},\"tld\":[\".gp\"],\"cca2\":\"GP\",\"ccn3\":\"312\",\"cca3\":\"GLP\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"90\"]},\"capital\":[\"Basse-Terre\"],\"altSpellings\":[\"GP\",\"Gwadloup\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Guadeloupe\",\"common\":\"Guadeloupe\"},\"deu\":{\"official\":\"Guadeloupe\",\"common\":\"Guadeloupe\"},\"fra\":{\"official\":\"Guadeloupe\",\"common\":\"Guadeloupe\"},\"hrv\":{\"official\":\"Gvadalupa\",\"common\":\"Gvadalupa\"},\"ita\":{\"official\":\"Guadeloupe\",\"common\":\"Guadeloupa\"},\"jpn\":{\"official\":\"グアドループ島\",\"common\":\"グアドループ\"},\"nld\":{\"official\":\"Guadeloupe\",\"common\":\"Guadeloupe\"},\"por\":{\"official\":\"Guadalupe\",\"common\":\"Guadalupe\"},\"rus\":{\"official\":\"Гваделупа\",\"common\":\"Гваделупа\"},\"slk\":{\"official\":\"Guadeloupe\",\"common\":\"Guadeloupe\"},\"spa\":{\"official\":\"Guadalupe\",\"common\":\"Guadalupe\"},\"fin\":{\"official\":\"Guadeloupen departmentti\",\"common\":\"Guadeloupe\"},\"est\":{\"official\":\"Guadeloupe’i ja sõltkondade departemang\",\"common\":\"Guadeloupe\"},\"zho\":{\"official\":\"瓜德罗普岛\",\"common\":\"瓜德罗普岛\"},\"pol\":{\"official\":\"Gwadelupa\",\"common\":\"Gwadelupa\"},\"urd\":{\"official\":\"گواڈیلوپ\",\"common\":\"گواڈیلوپ\"},\"kor\":{\"official\":\"과들루프\",\"common\":\"과들루프\"},\"per\":{\"official\":\"گوادلوپ\",\"common\":\"گوادلوپ\"}},\"latlng\":[16.25,-61.583333],\"landlocked\":false,\"borders\":[],\"area\":1628,\"flag\":\"🇬🇵\",\"demonyms\":{\"eng\":{\"f\":\"Guadeloupian\",\"m\":\"Guadeloupian\"},\"fra\":{\"f\":\"Guadeloupéenne\",\"m\":\"Guadeloupéen\"}}},{\"name\":{\"common\":\"Gambia\",\"official\":\"Republic of the Gambia\",\"native\":{\"eng\":{\"official\":\"Republic of the Gambia\",\"common\":\"Gambia\"}}},\"tld\":[\".gm\"],\"cca2\":\"GM\",\"ccn3\":\"270\",\"cca3\":\"GMB\",\"cioc\":\"GAM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"GMD\":{\"name\":\"dalasi\",\"symbol\":\"D\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"20\"]},\"capital\":[\"Banjul\"],\"altSpellings\":[\"GM\",\"Republic of the Gambia\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Gambijská republika\",\"common\":\"Gambie\"},\"deu\":{\"official\":\"Republik Gambia\",\"common\":\"Gambia\"},\"fra\":{\"official\":\"République de Gambie\",\"common\":\"Gambie\"},\"hrv\":{\"official\":\"Republika Gambija\",\"common\":\"Gambija\"},\"ita\":{\"official\":\"Repubblica del Gambia\",\"common\":\"Gambia\"},\"jpn\":{\"official\":\"ガンビア共和国\",\"common\":\"ガンビア\"},\"nld\":{\"official\":\"Republiek Gambia\",\"common\":\"Gambia\"},\"por\":{\"official\":\"República da Gâmbia\",\"common\":\"Gâmbia\"},\"rus\":{\"official\":\"Республика Гамбия\",\"common\":\"Гамбия\"},\"slk\":{\"official\":\"Gambijská republika\",\"common\":\"Gambia\"},\"spa\":{\"official\":\"República de Gambia\",\"common\":\"Gambia\"},\"fin\":{\"official\":\"Gambian tasavalta\",\"common\":\"Gambia\"},\"est\":{\"official\":\"Gambia Vabariik\",\"common\":\"Gambia\"},\"zho\":{\"official\":\"冈比亚共和国\",\"common\":\"冈比亚\"},\"pol\":{\"official\":\"Republika Gambii\",\"common\":\"Gambia\"},\"urd\":{\"official\":\"جمہوریہ گیمبیا\",\"common\":\"گیمبیا\"},\"kor\":{\"official\":\"감비아 공화국\",\"common\":\"감비아\"},\"per\":{\"official\":\"جمهوری گامبیا\",\"common\":\"گامبیا\"}},\"latlng\":[13.46666666,-16.56666666],\"landlocked\":false,\"borders\":[\"SEN\"],\"area\":10689,\"flag\":\"🇬🇲\",\"demonyms\":{\"eng\":{\"f\":\"Gambian\",\"m\":\"Gambian\"},\"fra\":{\"f\":\"Gambienne\",\"m\":\"Gambien\"}}},{\"name\":{\"common\":\"Guinea-Bissau\",\"official\":\"Republic of Guinea-Bissau\",\"native\":{\"por\":{\"official\":\"República da Guiné-Bissau\",\"common\":\"Guiné-Bissau\"},\"pov\":{\"official\":\"República da Guiné-Bissau\",\"common\":\"Guiné-Bissau\"}}},\"tld\":[\".gw\"],\"cca2\":\"GW\",\"ccn3\":\"624\",\"cca3\":\"GNB\",\"cioc\":\"GBS\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XOF\":{\"name\":\"West African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"45\"]},\"capital\":[\"Bissau\"],\"altSpellings\":[\"GW\",\"Republic of Guinea-Bissau\",\"República da Guiné-Bissau\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"por\":\"Portuguese\",\"pov\":\"Upper Guinea Creole\"},\"translations\":{\"ces\":{\"official\":\"Republika Guinea-Bissau\",\"common\":\"Guinea-Bissau\"},\"deu\":{\"official\":\"Republik Guinea-Bissau\",\"common\":\"Guinea-Bissau\"},\"fra\":{\"official\":\"République de Guinée-Bissau\",\"common\":\"Guinée-Bissau\"},\"hrv\":{\"official\":\"Republika Gvineja Bisau\",\"common\":\"Gvineja Bisau\"},\"ita\":{\"official\":\"Repubblica di Guinea-Bissau\",\"common\":\"Guinea-Bissau\"},\"jpn\":{\"official\":\"ギニアビサウ共和国\",\"common\":\"ギニアビサウ\"},\"nld\":{\"official\":\"Republiek Guinee-Bissau\",\"common\":\"Guinee-Bissau\"},\"por\":{\"official\":\"República da Guiné-Bissau\",\"common\":\"Guiné-Bissau\"},\"rus\":{\"official\":\"Республика Гвинея -Бисау\",\"common\":\"Гвинея-Бисау\"},\"slk\":{\"official\":\"Guinejsko-bissauská republika\",\"common\":\"Guinea-Bissau\"},\"spa\":{\"official\":\"República de Guinea-Bissau\",\"common\":\"Guinea-Bisáu\"},\"fin\":{\"official\":\"Guinea-Bissaun tasavalta\",\"common\":\"Guinea-Bissau\"},\"est\":{\"official\":\"Guinea-Bissau Vabariik\",\"common\":\"Guinea-Bissau\"},\"zho\":{\"official\":\"几内亚比绍共和国\",\"common\":\"几内亚比绍\"},\"pol\":{\"official\":\"Republika Gwinei Bissau\",\"common\":\"Gwinea Bissau\"},\"urd\":{\"official\":\"جمہوریہ گنی بساؤ\",\"common\":\"گنی بساؤ\"},\"kor\":{\"official\":\"기니비사우 공화국\",\"common\":\"기니비사우\"},\"per\":{\"official\":\"جمهوری گینه بیسائو\",\"common\":\"گینه بیسائو\"}},\"latlng\":[12,-15],\"landlocked\":false,\"borders\":[\"GIN\",\"SEN\"],\"area\":36125,\"flag\":\"🇬🇼\",\"demonyms\":{\"eng\":{\"f\":\"Guinea-Bissauan\",\"m\":\"Guinea-Bissauan\"},\"fra\":{\"f\":\"Bissau-Guinéenne\",\"m\":\"Bissau-Guinéen\"}}},{\"name\":{\"common\":\"Equatorial Guinea\",\"official\":\"Republic of Equatorial Guinea\",\"native\":{\"fra\":{\"official\":\"République de la Guinée Équatoriale\",\"common\":\"Guinée équatoriale\"},\"por\":{\"official\":\"República da Guiné Equatorial\",\"common\":\"Guiné Equatorial\"},\"spa\":{\"official\":\"República de Guinea Ecuatorial\",\"common\":\"Guinea Ecuatorial\"}}},\"tld\":[\".gq\"],\"cca2\":\"GQ\",\"ccn3\":\"226\",\"cca3\":\"GNQ\",\"cioc\":\"GEQ\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XAF\":{\"name\":\"Central African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"40\"]},\"capital\":[\"Malabo\"],\"altSpellings\":[\"GQ\",\"Republic of Equatorial Guinea\",\"República de Guinea Ecuatorial\",\"République de Guinée équatoriale\",\"República da Guiné Equatorial\"],\"region\":\"Africa\",\"subregion\":\"Middle Africa\",\"languages\":{\"fra\":\"French\",\"por\":\"Portuguese\",\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Republika Rovníková Guinea\",\"common\":\"Rovníková Guinea\"},\"cym\":{\"official\":\"Gweriniaeth Gini Gyhydeddol\",\"common\":\"Gini Gyhydeddol\"},\"deu\":{\"official\":\"Republik Äquatorialguinea\",\"common\":\"Äquatorialguinea\"},\"fra\":{\"official\":\"République de Guinée équatoriale\",\"common\":\"Guinée équatoriale\"},\"hrv\":{\"official\":\"Republika Ekvatorska Gvineja\",\"common\":\"Ekvatorijalna Gvineja\"},\"ita\":{\"official\":\"Repubblica della Guinea Equatoriale\",\"common\":\"Guinea Equatoriale\"},\"jpn\":{\"official\":\"赤道ギニア共和国\",\"common\":\"赤道ギニア\"},\"nld\":{\"official\":\"Republiek Equatoriaal-Guinea\",\"common\":\"Equatoriaal-Guinea\"},\"por\":{\"official\":\"República da Guiné Equatorial\",\"common\":\"Guiné Equatorial\"},\"rus\":{\"official\":\"Республика Экваториальная Гвинея\",\"common\":\"Экваториальная Гвинея\"},\"slk\":{\"official\":\"Republika rovníkovej Guiney\",\"common\":\"Rovníková Guinea\"},\"spa\":{\"official\":\"República de Guinea Ecuatorial\",\"common\":\"Guinea Ecuatorial\"},\"fin\":{\"official\":\"Päiväntasaajan Guinean tasavalta\",\"common\":\"Päiväntasaajan Guinea\"},\"est\":{\"official\":\"Ekvatoriaal-Guinea Vabariik\",\"common\":\"Ekvatoriaal-Guinea\"},\"zho\":{\"official\":\"赤道几内亚共和国\",\"common\":\"赤道几内亚\"},\"pol\":{\"official\":\"Republika Gwinei Równikowej\",\"common\":\"Gwinea Równikowa\"},\"urd\":{\"official\":\"جمہوریہ استوائی گنی\",\"common\":\"استوائی گنی\"},\"kor\":{\"official\":\"적도 기니 공화국\",\"common\":\"적도 기니\"},\"per\":{\"official\":\"جمهوری گینه استوایی\",\"common\":\"گینه استوایی\"}},\"latlng\":[2,10],\"landlocked\":false,\"borders\":[\"CMR\",\"GAB\"],\"area\":28051,\"flag\":\"🇬🇶\",\"demonyms\":{\"eng\":{\"f\":\"Equatorial Guinean\",\"m\":\"Equatorial Guinean\"},\"fra\":{\"f\":\"Équato-guinéenne\",\"m\":\"Équato-guinéen\"}}},{\"name\":{\"common\":\"Greece\",\"official\":\"Hellenic Republic\",\"native\":{\"ell\":{\"official\":\"Ελληνική Δημοκρατία\",\"common\":\"Ελλάδα\"}}},\"tld\":[\".gr\"],\"cca2\":\"GR\",\"ccn3\":\"300\",\"cca3\":\"GRC\",\"cioc\":\"GRE\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"0\"]},\"capital\":[\"Athens\"],\"altSpellings\":[\"GR\",\"Elláda\",\"Hellenic Republic\",\"Ελληνική Δημοκρατία\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"ell\":\"Greek\"},\"translations\":{\"ces\":{\"official\":\"Řecká republika\",\"common\":\"Řecko\"},\"deu\":{\"official\":\"Hellenische Republik\",\"common\":\"Griechenland\"},\"fra\":{\"official\":\"République hellénique\",\"common\":\"Grèce\"},\"hrv\":{\"official\":\"Helenska Republika\",\"common\":\"Grčka\"},\"ita\":{\"official\":\"Repubblica ellenica\",\"common\":\"Grecia\"},\"jpn\":{\"official\":\"ギリシャ共和国\",\"common\":\"ギリシャ\"},\"nld\":{\"official\":\"Helleense Republiek\",\"common\":\"Griekenland\"},\"por\":{\"official\":\"República Helénica\",\"common\":\"Grécia\"},\"rus\":{\"official\":\"Греческая Республика\",\"common\":\"Греция\"},\"slk\":{\"official\":\"Grécka republika\",\"common\":\"Greécko\"},\"spa\":{\"official\":\"República Helénica\",\"common\":\"Grecia\"},\"fin\":{\"official\":\"Helleenien tasavalta\",\"common\":\"Kreikka\"},\"est\":{\"official\":\"Kreeka Vabariik\",\"common\":\"Kreeka\"},\"zho\":{\"official\":\"希腊共和国\",\"common\":\"希腊\"},\"pol\":{\"official\":\"Republika Grecka\",\"common\":\"Grecja\"},\"urd\":{\"official\":\"جمہوریہ ہیلینیہ\",\"common\":\"یونان\"},\"kor\":{\"official\":\"그리스 공화국\",\"common\":\"그리스\"},\"per\":{\"official\":\"جمهوری یونان\",\"common\":\"یونان\"}},\"latlng\":[39,22],\"landlocked\":false,\"borders\":[\"ALB\",\"BGR\",\"TUR\",\"MKD\"],\"area\":131990,\"flag\":\"🇬🇷\",\"demonyms\":{\"eng\":{\"f\":\"Greek\",\"m\":\"Greek\"},\"fra\":{\"f\":\"Grecque\",\"m\":\"Grec\"}}},{\"name\":{\"common\":\"Grenada\",\"official\":\"Grenada\",\"native\":{\"eng\":{\"official\":\"Grenada\",\"common\":\"Grenada\"}}},\"tld\":[\".gd\"],\"cca2\":\"GD\",\"ccn3\":\"308\",\"cca3\":\"GRD\",\"cioc\":\"GRN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XCD\":{\"name\":\"Eastern Caribbean dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"473\"]},\"capital\":[\"St. George\\'s\"],\"altSpellings\":[\"GD\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Grenada\",\"common\":\"Grenada\"},\"deu\":{\"official\":\"Grenada\",\"common\":\"Grenada\"},\"fra\":{\"official\":\"Grenade\",\"common\":\"Grenade\"},\"hrv\":{\"official\":\"Grenada\",\"common\":\"Grenada\"},\"ita\":{\"official\":\"Grenada\",\"common\":\"Grenada\"},\"jpn\":{\"official\":\"グレナダ\",\"common\":\"グレナダ\"},\"nld\":{\"official\":\"Grenada\",\"common\":\"Grenada\"},\"por\":{\"official\":\"Grenada\",\"common\":\"Granada\"},\"rus\":{\"official\":\"Гренада\",\"common\":\"Гренада\"},\"slk\":{\"official\":\"Grenada\",\"common\":\"Grenada\"},\"spa\":{\"official\":\"Granada\",\"common\":\"Grenada\"},\"fin\":{\"official\":\"Grenada\",\"common\":\"Grenada\"},\"est\":{\"official\":\"Grenada\",\"common\":\"Grenada\"},\"zho\":{\"official\":\"格林纳达\",\"common\":\"格林纳达\"},\"pol\":{\"official\":\"Grenada\",\"common\":\"Grenada\"},\"urd\":{\"official\":\"گریناڈا\",\"common\":\"گریناڈا\"},\"kor\":{\"official\":\"그레나다\",\"common\":\"그레나다\"},\"per\":{\"official\":\"گرنادا\",\"common\":\"گرنادا\"}},\"latlng\":[12.11666666,-61.66666666],\"landlocked\":false,\"borders\":[],\"area\":344,\"flag\":\"🇬🇩\",\"demonyms\":{\"eng\":{\"f\":\"Grenadian\",\"m\":\"Grenadian\"},\"fra\":{\"f\":\"Grenadienne\",\"m\":\"Grenadien\"}}},{\"name\":{\"common\":\"Greenland\",\"official\":\"Greenland\",\"native\":{\"kal\":{\"official\":\"Kalaallit Nunaat\",\"common\":\"Kalaallit Nunaat\"}}},\"tld\":[\".gl\"],\"cca2\":\"GL\",\"ccn3\":\"304\",\"cca3\":\"GRL\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"DKK\":{\"name\":\"krone\",\"symbol\":\"kr.\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"99\"]},\"capital\":[\"Nuuk\"],\"altSpellings\":[\"GL\",\"Grønland\"],\"region\":\"Americas\",\"subregion\":\"North America\",\"languages\":{\"kal\":\"Greenlandic\"},\"translations\":{\"ces\":{\"official\":\"Grónsko\",\"common\":\"Grónsko\"},\"deu\":{\"official\":\"Grönland\",\"common\":\"Grönland\"},\"fra\":{\"official\":\"Groenland\",\"common\":\"Groenland\"},\"hrv\":{\"official\":\"Grenland\",\"common\":\"Grenland\"},\"ita\":{\"official\":\"Groenlandia\",\"common\":\"Groenlandia\"},\"jpn\":{\"official\":\"グリーンランド\",\"common\":\"グリーンランド\"},\"nld\":{\"official\":\"Groenland\",\"common\":\"Groenland\"},\"por\":{\"official\":\"Groenlândia\",\"common\":\"Gronelândia\"},\"rus\":{\"official\":\"Гренландия\",\"common\":\"Гренландия\"},\"slk\":{\"official\":\"Grónsko\",\"common\":\"Grónsko\"},\"spa\":{\"official\":\"Groenlandia\",\"common\":\"Groenlandia\"},\"fin\":{\"official\":\"Groönlanti\",\"common\":\"Groönlanti\"},\"est\":{\"official\":\"Gröönimaa\",\"common\":\"Gröönimaa\"},\"zho\":{\"official\":\"格陵兰\",\"common\":\"格陵兰\"},\"pol\":{\"official\":\"Grenlandia\",\"common\":\"Grenlandia\"},\"urd\":{\"official\":\"گرین لینڈ\",\"common\":\"گرین لینڈ\"},\"kor\":{\"official\":\"그린란드\",\"common\":\"그린란드\"},\"per\":{\"official\":\"گروئنلند\",\"common\":\"گرینلند\"}},\"latlng\":[72,-40],\"landlocked\":false,\"borders\":[],\"area\":2166086,\"flag\":\"🇬🇱\",\"demonyms\":{\"eng\":{\"f\":\"Greenlandic\",\"m\":\"Greenlandic\"},\"fra\":{\"f\":\"Groenlandaise\",\"m\":\"Groenlandais\"}}},{\"name\":{\"common\":\"Guatemala\",\"official\":\"Republic of Guatemala\",\"native\":{\"spa\":{\"official\":\"República de Guatemala\",\"common\":\"Guatemala\"}}},\"tld\":[\".gt\"],\"cca2\":\"GT\",\"ccn3\":\"320\",\"cca3\":\"GTM\",\"cioc\":\"GUA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"GTQ\":{\"name\":\"Guatemalan quetzal\",\"symbol\":\"Q\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"02\"]},\"capital\":[\"Guatemala City\"],\"altSpellings\":[\"GT\"],\"region\":\"Americas\",\"subregion\":\"Central America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Republika Guatemala\",\"common\":\"Guatemala\"},\"deu\":{\"official\":\"Republik Guatemala\",\"common\":\"Guatemala\"},\"fra\":{\"official\":\"République du Guatemala\",\"common\":\"Guatemala\"},\"hrv\":{\"official\":\"Republika Gvatemala\",\"common\":\"Gvatemala\"},\"ita\":{\"official\":\"Repubblica del Guatemala\",\"common\":\"Guatemala\"},\"jpn\":{\"official\":\"グアテマラ共和国\",\"common\":\"グアテマラ\"},\"nld\":{\"official\":\"Republiek Guatemala\",\"common\":\"Guatemala\"},\"por\":{\"official\":\"República da Guatemala\",\"common\":\"Guatemala\"},\"rus\":{\"official\":\"Республика Гватемала\",\"common\":\"Гватемала\"},\"slk\":{\"official\":\"Guatemalská republika\",\"common\":\"Guatemala\"},\"spa\":{\"official\":\"República de Guatemala\",\"common\":\"Guatemala\"},\"fin\":{\"official\":\"Guatemalan tasavalta\",\"common\":\"Guatemala\"},\"est\":{\"official\":\"Guatemala Vabariik\",\"common\":\"Guatemala\"},\"zho\":{\"official\":\"危地马拉共和国\",\"common\":\"危地马拉\"},\"pol\":{\"official\":\"Republika Gwatemali\",\"common\":\"Gwatemala\"},\"urd\":{\"official\":\"جمہوریہ گواتیمالا\",\"common\":\"گواتیمالا\"},\"kor\":{\"official\":\"과테말라 공화국\",\"common\":\"과테말라\"},\"per\":{\"official\":\"جمهوری گواتِمالا\",\"common\":\"گواتِمالا\"}},\"latlng\":[15.5,-90.25],\"landlocked\":false,\"borders\":[\"BLZ\",\"SLV\",\"HND\",\"MEX\"],\"area\":108889,\"flag\":\"🇬🇹\",\"demonyms\":{\"eng\":{\"f\":\"Guatemalan\",\"m\":\"Guatemalan\"},\"fra\":{\"f\":\"Guatémaltèque\",\"m\":\"Guatémaltèque\"}}},{\"name\":{\"common\":\"French Guiana\",\"official\":\"Guiana\",\"native\":{\"fra\":{\"official\":\"Guyane\",\"common\":\"Guyane française\"}}},\"tld\":[\".gf\"],\"cca2\":\"GF\",\"ccn3\":\"254\",\"cca3\":\"GUF\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"94\"]},\"capital\":[\"Cayenne\"],\"altSpellings\":[\"GF\",\"Guiana\",\"Guyane\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Francouzská Guyana\",\"common\":\"Francouzská Guyana\"},\"deu\":{\"official\":\"Französisch-Guayana\",\"common\":\"Französisch-Guayana\"},\"fra\":{\"official\":\"Guyane\",\"common\":\"Guyane\"},\"hrv\":{\"official\":\"Gijana\",\"common\":\"Francuska Gvajana\"},\"ita\":{\"official\":\"Guiana\",\"common\":\"Guyana francese\"},\"jpn\":{\"official\":\"ギアナ\",\"common\":\"フランス領ギアナ\"},\"nld\":{\"official\":\"Guyana\",\"common\":\"Frans-Guyana\"},\"por\":{\"official\":\"Guiana\",\"common\":\"Guiana Francesa\"},\"rus\":{\"official\":\"Гвиана\",\"common\":\"Французская Гвиана\"},\"slk\":{\"official\":\"Francúzska Guyana\",\"common\":\"Guyana\"},\"spa\":{\"official\":\"Guayana\",\"common\":\"Guayana Francesa\"},\"fin\":{\"official\":\"Ranskan Guayana\",\"common\":\"Ranskan Guayana\"},\"est\":{\"official\":\"Guajaana departemang\",\"common\":\"Prantsuse Guajaana\"},\"zho\":{\"official\":\"法属圭亚那\",\"common\":\"法属圭亚那\"},\"pol\":{\"official\":\"Gujana Francuska\",\"common\":\"Gujana Francuska\"},\"urd\":{\"official\":\"گیانا\",\"common\":\"فرانسیسی گیانا\"},\"kor\":{\"official\":\"프랑스령 기아나\",\"common\":\"프랑스령 기아나\"},\"per\":{\"official\":\"گویان فرانسه\",\"common\":\"گویان فرانسه\"}},\"latlng\":[4,-53],\"landlocked\":false,\"borders\":[\"BRA\",\"SUR\"],\"area\":83534,\"flag\":\"🇬🇫\",\"demonyms\":{\"eng\":{\"f\":\"Guianan\",\"m\":\"Guianan\"},\"fra\":{\"f\":\"Guyanaise\",\"m\":\"Guyanais\"}}},{\"name\":{\"common\":\"Guam\",\"official\":\"Guam\",\"native\":{\"cha\":{\"official\":\"Guåhån\",\"common\":\"Guåhån\"},\"eng\":{\"official\":\"Guam\",\"common\":\"Guam\"},\"spa\":{\"official\":\"Guam\",\"common\":\"Guam\"}}},\"tld\":[\".gu\"],\"cca2\":\"GU\",\"ccn3\":\"316\",\"cca3\":\"GUM\",\"cioc\":\"GUM\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"671\"]},\"capital\":[\"Hagåtña\"],\"altSpellings\":[\"GU\",\"Guåhån\"],\"region\":\"Oceania\",\"subregion\":\"Micronesia\",\"languages\":{\"cha\":\"Chamorro\",\"eng\":\"English\",\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Guam\",\"common\":\"Guam\"},\"deu\":{\"official\":\"Guam\",\"common\":\"Guam\"},\"fra\":{\"official\":\"Guam\",\"common\":\"Guam\"},\"hrv\":{\"official\":\"Guam\",\"common\":\"Guam\"},\"ita\":{\"official\":\"Guam\",\"common\":\"Guam\"},\"jpn\":{\"official\":\"グアム\",\"common\":\"グアム\"},\"nld\":{\"official\":\"Guam\",\"common\":\"Guam\"},\"por\":{\"official\":\"Guam\",\"common\":\"Guam\"},\"rus\":{\"official\":\"Гуам\",\"common\":\"Гуам\"},\"slk\":{\"official\":\"Guam\",\"common\":\"Guam\"},\"spa\":{\"official\":\"Guam\",\"common\":\"Guam\"},\"fin\":{\"official\":\"Guam\",\"common\":\"Guam\"},\"est\":{\"official\":\"Guami ala\",\"common\":\"Guam\"},\"zho\":{\"official\":\"关岛\",\"common\":\"关岛\"},\"pol\":{\"official\":\"Terytorium Guamu\",\"common\":\"Guam\"},\"urd\":{\"official\":\"گوام\",\"common\":\"گوام\"},\"kor\":{\"official\":\"괌\",\"common\":\"괌\"},\"per\":{\"official\":\"گوآم\",\"common\":\"گوآم\"}},\"latlng\":[13.46666666,144.78333333],\"landlocked\":false,\"borders\":[],\"area\":549,\"flag\":\"🇬🇺\",\"demonyms\":{\"eng\":{\"f\":\"Guamanian\",\"m\":\"Guamanian\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Guyana\",\"official\":\"Co-operative Republic of Guyana\",\"native\":{\"eng\":{\"official\":\"Co-operative Republic of Guyana\",\"common\":\"Guyana\"}}},\"tld\":[\".gy\"],\"cca2\":\"GY\",\"ccn3\":\"328\",\"cca3\":\"GUY\",\"cioc\":\"GUY\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"GYD\":{\"name\":\"Guyanese dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"92\"]},\"capital\":[\"Georgetown\"],\"altSpellings\":[\"GY\",\"Co-operative Republic of Guyana\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Kooperativní republika Guyana\",\"common\":\"Guyana\"},\"deu\":{\"official\":\"Kooperative Republik Guyana\",\"common\":\"Guyana\"},\"fra\":{\"official\":\"République coopérative de Guyana\",\"common\":\"Guyana\"},\"hrv\":{\"official\":\"Zadruga Republika Gvajana\",\"common\":\"Gvajana\"},\"ita\":{\"official\":\"Co -operative Republic of Guyana\",\"common\":\"Guyana\"},\"jpn\":{\"official\":\"ガイアナの協同共和国\",\"common\":\"ガイアナ\"},\"nld\":{\"official\":\"Coöperatieve Republiek Guyana\",\"common\":\"Guyana\"},\"por\":{\"official\":\"Co -operative República da Guiana\",\"common\":\"Guiana\"},\"rus\":{\"official\":\"Кооперативная Республика Гайана\",\"common\":\"Гайана\"},\"slk\":{\"official\":\"Guyanská kooperatívna republika\",\"common\":\"Guyana\"},\"spa\":{\"official\":\"República Cooperativa de Guyana\",\"common\":\"Guyana\"},\"fin\":{\"official\":\"Guayanan osuustoiminnallinen tasavalta\",\"common\":\"Guayana\"},\"est\":{\"official\":\"Guyana Vabariik\",\"common\":\"Guyana\"},\"zho\":{\"official\":\"圭亚那共和国\",\"common\":\"圭亚那\"},\"pol\":{\"official\":\"Kooperacyjna Republika Gujany\",\"common\":\"Gujana\"},\"urd\":{\"official\":\"تعاونی جمہوریہ گیانا\",\"common\":\"گیانا\"},\"kor\":{\"official\":\"가이아나 협동 공화국\",\"common\":\"가이아나\"},\"per\":{\"official\":\"جمهوری تعاونی گویان\",\"common\":\"گویان\"}},\"latlng\":[5,-59],\"landlocked\":false,\"borders\":[\"BRA\",\"SUR\",\"VEN\"],\"area\":214969,\"flag\":\"🇬🇾\",\"demonyms\":{\"eng\":{\"f\":\"Guyanese\",\"m\":\"Guyanese\"},\"fra\":{\"f\":\"Guyanienne\",\"m\":\"Guyanien\"}}},{\"name\":{\"common\":\"Hong Kong\",\"official\":\"Hong Kong Special Administrative Region of the People\\'s Republic of China\",\"native\":{\"eng\":{\"official\":\"Hong Kong Special Administrative Region of the People\\'s Republic of China\",\"common\":\"Hong Kong\"},\"zho\":{\"official\":\"中华人民共和国香港特别行政区\",\"common\":\"香港\"}}},\"tld\":[\".hk\",\".香港\"],\"cca2\":\"HK\",\"ccn3\":\"344\",\"cca3\":\"HKG\",\"cioc\":\"HKG\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"HKD\":{\"name\":\"Hong Kong dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+8\",\"suffixes\":[\"52\"]},\"capital\":[\"City of Victoria\"],\"altSpellings\":[\"HK\"],\"region\":\"Asia\",\"subregion\":\"Eastern Asia\",\"languages\":{\"eng\":\"English\",\"zho\":\"Chinese\"},\"translations\":{\"ces\":{\"official\":\"Zvláštní administrativní oblast Čínské lidové republiky Hongkong\",\"common\":\"Hongkong\"},\"deu\":{\"official\":\"Sonderverwaltungszone Hongkong der Volksrepublik China\",\"common\":\"Hongkong\"},\"fra\":{\"official\":\"Région administrative spéciale de Hong Kong de la République populaire de Chine\",\"common\":\"Hong Kong\"},\"hrv\":{\"official\":\"Hong Kong Posebnog upravnog područjaNarodne Republike Kine\",\"common\":\"Hong Kong\"},\"ita\":{\"official\":\"Hong Kong Regione amministrativa speciale della Repubblica Popolare Cinese\",\"common\":\"Hong Kong\"},\"jpn\":{\"official\":\"中華人民共和国香港特別行政区\",\"common\":\"香港\"},\"nld\":{\"official\":\"Hong Kong Speciale Administratieve Regio van de Volksrepubliek China\",\"common\":\"Hongkong\"},\"por\":{\"official\":\"Hong Kong Região Administrativa Especial da República Popular da China\",\"common\":\"Hong Kong\"},\"rus\":{\"official\":\"Hong Kong Специальный административный район Китайской Народной Республики Китая\",\"common\":\"Гонконг\"},\"slk\":{\"official\":\"Špeciálna administratívna oblasťČínskej ľudovej republiky Hongkong\",\"common\":\"Hongkong\"},\"spa\":{\"official\":\"Hong Kong Región Administrativa Especial de la República Popular China\",\"common\":\"Hong Kong\"},\"fin\":{\"official\":\"Hong Kongin erityishallintoalue\",\"common\":\"Hongkong\"},\"est\":{\"official\":\"Hongkongi erihalduspiirkond\",\"common\":\"Hongkong\"},\"pol\":{\"official\":\"Specjalny Region Administracyjny Chińskiej Republiki Ludowej Hongkong\",\"common\":\"Hongkong\"},\"urd\":{\"official\":\"ہانگ کانگ عوامی جمہوریہ چین کا خصوصی انتظامی علاقہ\",\"common\":\"ہانگ کانگ\"},\"kor\":{\"official\":\"중화인민공화국 홍콩 특별행정구\",\"common\":\"홍콩\"},\"per\":{\"official\":\"هُنگ کُنگ\",\"common\":\"هُنگ کُنگ\"}},\"latlng\":[22.267,114.188],\"landlocked\":false,\"borders\":[\"CHN\"],\"area\":1104,\"flag\":\"🇭🇰\",\"demonyms\":{\"eng\":{\"f\":\"Hong Konger\",\"m\":\"Hong Konger\"},\"fra\":{\"f\":\"Hongkongaise\",\"m\":\"Hongkongais\"}}},{\"name\":{\"common\":\"Heard Island and McDonald Islands\",\"official\":\"Heard Island and McDonald Islands\",\"native\":{\"eng\":{\"official\":\"Heard Island and McDonald Islands\",\"common\":\"Heard Island and McDonald Islands\"}}},\"tld\":[\".hm\",\".aq\"],\"cca2\":\"HM\",\"ccn3\":\"334\",\"cca3\":\"HMD\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":[],\"idd\":{\"root\":\"\",\"suffixes\":[\"\"]},\"capital\":[\"\"],\"altSpellings\":[\"HM\",\"Heard Island and McDonald Islands\"],\"region\":\"Antarctic\",\"subregion\":\"\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Heardův ostrov a McDonaldovy ostrovy\",\"common\":\"Heardův ostrov a McDonaldovy ostrovy\"},\"deu\":{\"official\":\"Heard und McDonaldinseln\",\"common\":\"Heard und die McDonaldinseln\"},\"fra\":{\"official\":\"Des îles Heard et McDonald\",\"common\":\"Îles Heard-et-MacDonald\"},\"hrv\":{\"official\":\"Otok Heard i otočje McDonald\",\"common\":\"Otok Heard i otočje McDonald\"},\"ita\":{\"official\":\"Isole Heard e McDonald\",\"common\":\"Isole Heard e McDonald\"},\"jpn\":{\"official\":\"ハード島とマクドナルド諸島\",\"common\":\"ハード島とマクドナルド諸島\"},\"nld\":{\"official\":\"Heard en McDonaldeilanden\",\"common\":\"Heard-en McDonaldeilanden\"},\"por\":{\"official\":\"Ilha Heard e Ilhas McDonald\",\"common\":\"Ilha Heard e Ilhas McDonald\"},\"rus\":{\"official\":\"Остров Херд и острова Макдональд\",\"common\":\"Остров Херд и острова Макдональд\"},\"slk\":{\"official\":\"Teritórium Heardovho ostrova a Macdonaldových ostrovov\",\"common\":\"Heardov ostrov\"},\"spa\":{\"official\":\"Islas Heard y McDonald\",\"common\":\"Islas Heard y McDonald\"},\"fin\":{\"official\":\"Heard ja McDonaldinsaaret\",\"common\":\"Heard ja McDonaldinsaaret\"},\"est\":{\"official\":\"Heardi ja McDonaldi saarte ala\",\"common\":\"Heard ja McDonald\"},\"zho\":{\"official\":\"赫德岛和麦当劳群岛\",\"common\":\"赫德岛和麦当劳群岛\"},\"pol\":{\"official\":\"Terytorium Wysp Heard i McDonalda\",\"common\":\"Wyspy Heard i McDonalda\"},\"urd\":{\"official\":\"جزیرہ ہرڈ و جزائر مکڈونلڈ\",\"common\":\"جزیرہ ہرڈ و جزائر مکڈونلڈ\"},\"kor\":{\"official\":\"허드 맥도널드 제도\",\"common\":\"허드 맥도널드 제도\"},\"per\":{\"official\":\"جزیره هرد و جزایر مکدونالد\",\"common\":\"جزیره هرد و جزایر مکدونالد\"}},\"latlng\":[-53.1,72.51666666],\"landlocked\":false,\"borders\":[],\"area\":412,\"flag\":\"🇭🇲\",\"demonyms\":{\"eng\":{\"f\":\"Heard and McDonald Islander\",\"m\":\"Heard and McDonald Islander\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Honduras\",\"official\":\"Republic of Honduras\",\"native\":{\"spa\":{\"official\":\"República de Honduras\",\"common\":\"Honduras\"}}},\"tld\":[\".hn\"],\"cca2\":\"HN\",\"ccn3\":\"340\",\"cca3\":\"HND\",\"cioc\":\"HON\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"HNL\":{\"name\":\"Honduran lempira\",\"symbol\":\"L\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"04\"]},\"capital\":[\"Tegucigalpa\"],\"altSpellings\":[\"HN\",\"Republic of Honduras\",\"República de Honduras\"],\"region\":\"Americas\",\"subregion\":\"Central America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Honduraská republika\",\"common\":\"Honduras\"},\"deu\":{\"official\":\"Republik Honduras\",\"common\":\"Honduras\"},\"fra\":{\"official\":\"République du Honduras\",\"common\":\"Honduras\"},\"hrv\":{\"official\":\"Republika Honduras\",\"common\":\"Honduras\"},\"ita\":{\"official\":\"Repubblica di Honduras\",\"common\":\"Honduras\"},\"jpn\":{\"official\":\"ホンジュラス共和国\",\"common\":\"ホンジュラス\"},\"nld\":{\"official\":\"Republiek Honduras\",\"common\":\"Honduras\"},\"por\":{\"official\":\"República de Honduras\",\"common\":\"Honduras\"},\"rus\":{\"official\":\"Республика Гондурас\",\"common\":\"Гондурас\"},\"slk\":{\"official\":\"Honduraská republika\",\"common\":\"Honduras\"},\"spa\":{\"official\":\"República de Honduras\",\"common\":\"Honduras\"},\"fin\":{\"official\":\"Hondurasin tasavalta\",\"common\":\"Honduras\"},\"est\":{\"official\":\"Hondurase Vabariik\",\"common\":\"Honduras\"},\"zho\":{\"official\":\"洪都拉斯共和国\",\"common\":\"洪都拉斯\"},\"pol\":{\"official\":\"Republika Hondurasu\",\"common\":\"Honduras\"},\"urd\":{\"official\":\"جمہوریہ ہونڈوراس\",\"common\":\"ہونڈوراس\"},\"kor\":{\"official\":\"온두라스 공화국\",\"common\":\"온두라스\"},\"per\":{\"official\":\"جمهوری هندوراس\",\"common\":\"هُندوراس\"}},\"latlng\":[15,-86.5],\"landlocked\":false,\"borders\":[\"GTM\",\"SLV\",\"NIC\"],\"area\":112492,\"flag\":\"🇭🇳\",\"demonyms\":{\"eng\":{\"f\":\"Honduran\",\"m\":\"Honduran\"},\"fra\":{\"f\":\"Hondurienne\",\"m\":\"Hondurien\"}}},{\"name\":{\"common\":\"Croatia\",\"official\":\"Republic of Croatia\",\"native\":{\"hrv\":{\"official\":\"Republika Hrvatska\",\"common\":\"Hrvatska\"}}},\"tld\":[\".hr\"],\"cca2\":\"HR\",\"ccn3\":\"191\",\"cca3\":\"HRV\",\"cioc\":\"CRO\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"HRK\":{\"name\":\"Croatian kuna\",\"symbol\":\"kn\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"85\"]},\"capital\":[\"Zagreb\"],\"altSpellings\":[\"HR\",\"Hrvatska\",\"Republic of Croatia\",\"Republika Hrvatska\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"hrv\":\"Croatian\"},\"translations\":{\"ces\":{\"official\":\"Chorvatská republika\",\"common\":\"Chorvatsko\"},\"cym\":{\"official\":\"Gweriniaeth Croatia\",\"common\":\"Croatia\"},\"deu\":{\"official\":\"Republik Kroatien\",\"common\":\"Kroatien\"},\"fra\":{\"official\":\"République de Croatie\",\"common\":\"Croatie\"},\"hrv\":{\"official\":\"Republika Hrvatska\",\"common\":\"Hrvatska\"},\"ita\":{\"official\":\"Repubblica di Croazia\",\"common\":\"Croazia\"},\"jpn\":{\"official\":\"クロアチア共和国\",\"common\":\"クロアチア\"},\"nld\":{\"official\":\"Republiek Kroatië\",\"common\":\"Kroatië\"},\"por\":{\"official\":\"República da Croácia\",\"common\":\"Croácia\"},\"rus\":{\"official\":\"Республика Хорватия\",\"common\":\"Хорватия\"},\"slk\":{\"official\":\"Chorvátska republika\",\"common\":\"Chorvátsko\"},\"spa\":{\"official\":\"República de Croacia\",\"common\":\"Croacia\"},\"fin\":{\"official\":\"Kroatian tasavalta\",\"common\":\"Kroatia\"},\"est\":{\"official\":\"Horvaatia Vabariik\",\"common\":\"Horvaatia\"},\"zho\":{\"official\":\"克罗地亚共和国\",\"common\":\"克罗地亚\"},\"pol\":{\"official\":\"Republika Chorwacji\",\"common\":\"Chorwacja\"},\"urd\":{\"official\":\"جمہوریہ کرویئشا\",\"common\":\"کرویئشا\"},\"kor\":{\"official\":\"크로아티아 공화국\",\"common\":\"크로아티아\"},\"per\":{\"official\":\"جمهوری کرواسی\",\"common\":\"کرُواسی\"}},\"latlng\":[45.16666666,15.5],\"landlocked\":false,\"borders\":[\"BIH\",\"HUN\",\"MNE\",\"SRB\",\"SVN\"],\"area\":56594,\"flag\":\"🇭🇷\",\"demonyms\":{\"eng\":{\"f\":\"Croatian\",\"m\":\"Croatian\"},\"fra\":{\"f\":\"Croate\",\"m\":\"Croate\"}}},{\"name\":{\"common\":\"Haiti\",\"official\":\"Republic of Haiti\",\"native\":{\"fra\":{\"official\":\"République d\\'Haïti\",\"common\":\"Haïti\"},\"hat\":{\"official\":\"Repiblik Ayiti\",\"common\":\"Ayiti\"}}},\"tld\":[\".ht\"],\"cca2\":\"HT\",\"ccn3\":\"332\",\"cca3\":\"HTI\",\"cioc\":\"HAI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"HTG\":{\"name\":\"Haitian gourde\",\"symbol\":\"G\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"09\"]},\"capital\":[\"Port-au-Prince\"],\"altSpellings\":[\"HT\",\"Republic of Haiti\",\"République d\\'Haïti\",\"Repiblik Ayiti\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"fra\":\"French\",\"hat\":\"Haitian Creole\"},\"translations\":{\"ces\":{\"official\":\"Republika Haiti\",\"common\":\"Haiti\"},\"deu\":{\"official\":\"Republik Haiti\",\"common\":\"Haiti\"},\"fra\":{\"official\":\"République d\\'Haïti\",\"common\":\"Haïti\"},\"hrv\":{\"official\":\"Republika Haiti\",\"common\":\"Haiti\"},\"ita\":{\"official\":\"Repubblica di Haiti\",\"common\":\"Haiti\"},\"jpn\":{\"official\":\"ハイチ共和国\",\"common\":\"ハイチ\"},\"nld\":{\"official\":\"Republiek Haïti\",\"common\":\"Haïti\"},\"por\":{\"official\":\"República do Haiti\",\"common\":\"Haiti\"},\"rus\":{\"official\":\"Республика Гаити\",\"common\":\"Гаити\"},\"slk\":{\"official\":\"Haitská republika\",\"common\":\"Haiti\"},\"spa\":{\"official\":\"República de Haití\",\"common\":\"Haití\"},\"fin\":{\"official\":\"Haitin tasavalta\",\"common\":\"Haiti\"},\"est\":{\"official\":\"Haiti Vabariik\",\"common\":\"Haiti\"},\"zho\":{\"official\":\"海地共和国\",\"common\":\"海地\"},\"pol\":{\"official\":\"Republika Haiti\",\"common\":\"Haiti\"},\"urd\":{\"official\":\"جمہوریہ ہیٹی\",\"common\":\"ہیٹی\"},\"kor\":{\"official\":\"아이티 공화국\",\"common\":\"아이티\"},\"per\":{\"official\":\"جمهوری هائیتی\",\"common\":\"هائیتی\"}},\"latlng\":[19,-72.41666666],\"landlocked\":false,\"borders\":[\"DOM\"],\"area\":27750,\"flag\":\"🇭🇹\",\"demonyms\":{\"eng\":{\"f\":\"Haitian\",\"m\":\"Haitian\"},\"fra\":{\"f\":\"Haïtienne\",\"m\":\"Haïtien\"}}},{\"name\":{\"common\":\"Hungary\",\"official\":\"Hungary\",\"native\":{\"hun\":{\"official\":\"Magyarország\",\"common\":\"Magyarország\"}}},\"tld\":[\".hu\"],\"cca2\":\"HU\",\"ccn3\":\"348\",\"cca3\":\"HUN\",\"cioc\":\"HUN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"HUF\":{\"name\":\"Hungarian forint\",\"symbol\":\"Ft\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"6\"]},\"capital\":[\"Budapest\"],\"altSpellings\":[\"HU\"],\"region\":\"Europe\",\"subregion\":\"Eastern Europe\",\"languages\":{\"hun\":\"Hungarian\"},\"translations\":{\"ces\":{\"official\":\"Maďarsko\",\"common\":\"Maďarsko\"},\"deu\":{\"official\":\"Ungarn\",\"common\":\"Ungarn\"},\"fra\":{\"official\":\"Hongrie\",\"common\":\"Hongrie\"},\"hrv\":{\"official\":\"Madžarska\",\"common\":\"Mađarska\"},\"ita\":{\"official\":\"Ungheria\",\"common\":\"Ungheria\"},\"jpn\":{\"official\":\"ハンガリー\",\"common\":\"ハンガリー\"},\"nld\":{\"official\":\"Hongarije\",\"common\":\"Hongarije\"},\"por\":{\"official\":\"Hungria\",\"common\":\"Hungria\"},\"rus\":{\"official\":\"Венгрия\",\"common\":\"Венгрия\"},\"slk\":{\"official\":\"Maďarsko\",\"common\":\"Maďarsko\"},\"spa\":{\"official\":\"Hungría\",\"common\":\"Hungría\"},\"fin\":{\"official\":\"Unkari\",\"common\":\"Unkari\"},\"est\":{\"official\":\"Ungari\",\"common\":\"Ungari\"},\"zho\":{\"official\":\"匈牙利\",\"common\":\"匈牙利\"},\"pol\":{\"official\":\"Węgry\",\"common\":\"Węgry\"},\"urd\":{\"official\":\"مجارستان\",\"common\":\"مجارستان\"},\"kor\":{\"official\":\"헝가리\",\"common\":\"헝가리\"},\"per\":{\"official\":\"مجارستان\",\"common\":\"مجارستان\"}},\"latlng\":[47,20],\"landlocked\":true,\"borders\":[\"AUT\",\"HRV\",\"ROU\",\"SRB\",\"SVK\",\"SVN\",\"UKR\"],\"area\":93028,\"flag\":\"🇭🇺\",\"demonyms\":{\"eng\":{\"f\":\"Hungarian\",\"m\":\"Hungarian\"},\"fra\":{\"f\":\"Hongroise\",\"m\":\"Hongrois\"}}},{\"name\":{\"common\":\"Indonesia\",\"official\":\"Republic of Indonesia\",\"native\":{\"ind\":{\"official\":\"Republik Indonesia\",\"common\":\"Indonesia\"}}},\"tld\":[\".id\"],\"cca2\":\"ID\",\"ccn3\":\"360\",\"cca3\":\"IDN\",\"cioc\":\"INA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"IDR\":{\"name\":\"Indonesian rupiah\",\"symbol\":\"Rp\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"2\"]},\"capital\":[\"Jakarta\"],\"altSpellings\":[\"ID\",\"Republic of Indonesia\",\"Republik Indonesia\"],\"region\":\"Asia\",\"subregion\":\"South-Eastern Asia\",\"languages\":{\"ind\":\"Indonesian\"},\"translations\":{\"ces\":{\"official\":\"Indonéská republika\",\"common\":\"Indonésie\"},\"deu\":{\"official\":\"Republik Indonesien\",\"common\":\"Indonesien\"},\"fra\":{\"official\":\"République d\\'Indonésie\",\"common\":\"Indonésie\"},\"hrv\":{\"official\":\"Republika Indonezija\",\"common\":\"Indonezija\"},\"ita\":{\"official\":\"Repubblica di Indonesia\",\"common\":\"Indonesia\"},\"jpn\":{\"official\":\"インドネシア共和国\",\"common\":\"インドネシア\"},\"nld\":{\"official\":\"Republiek Indonesië\",\"common\":\"Indonesië\"},\"por\":{\"official\":\"República da Indonésia\",\"common\":\"Indonésia\"},\"rus\":{\"official\":\"Республика Индонезия\",\"common\":\"Индонезия\"},\"slk\":{\"official\":\"Indonézska republika\",\"common\":\"Indonézia\"},\"spa\":{\"official\":\"República de Indonesia\",\"common\":\"Indonesia\"},\"fin\":{\"official\":\"Indonesian tasavalta\",\"common\":\"Indonesia\"},\"est\":{\"official\":\"Indoneesia Vabariik\",\"common\":\"Indoneesia\"},\"zho\":{\"official\":\"印度尼西亚共和国\",\"common\":\"印度尼西亚\"},\"pol\":{\"official\":\"Republika Indonezji\",\"common\":\"Indonezja\"},\"urd\":{\"official\":\"جمہوریہ انڈونیشیا\",\"common\":\"انڈونیشیا\"},\"kor\":{\"official\":\"인도네시아 공화국\",\"common\":\"인도네시아\"},\"per\":{\"official\":\"جمهوری اندونزی\",\"common\":\"اندونزی\"}},\"latlng\":[-5,120],\"landlocked\":false,\"borders\":[\"TLS\",\"MYS\",\"PNG\"],\"area\":1904569,\"flag\":\"🇮🇩\",\"demonyms\":{\"eng\":{\"f\":\"Indonesian\",\"m\":\"Indonesian\"},\"fra\":{\"f\":\"Indonésienne\",\"m\":\"Indonésien\"}}},{\"name\":{\"common\":\"Isle of Man\",\"official\":\"Isle of Man\",\"native\":{\"eng\":{\"official\":\"Isle of Man\",\"common\":\"Isle of Man\"},\"glv\":{\"official\":\"Ellan Vannin or Mannin\",\"common\":\"Mannin\"}}},\"tld\":[\".im\"],\"cca2\":\"IM\",\"ccn3\":\"833\",\"cca3\":\"IMN\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"GBP\":{\"name\":\"British pound\",\"symbol\":\"£\"},\"IMP\":{\"name\":\"Manx pound\",\"symbol\":\"£\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"4\"]},\"capital\":[\"Douglas\"],\"altSpellings\":[\"IM\",\"Ellan Vannin\",\"Mann\",\"Mannin\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"eng\":\"English\",\"glv\":\"Manx\"},\"translations\":{\"ces\":{\"official\":\"Ostrov Man\",\"common\":\"Ostrov Man\"},\"deu\":{\"official\":\"Isle of Man\",\"common\":\"Insel Man\"},\"fra\":{\"official\":\"Isle of Man\",\"common\":\"Île de Man\"},\"hrv\":{\"official\":\"Mana ostrvo\",\"common\":\"Otok Man\"},\"ita\":{\"official\":\"Isola di Man\",\"common\":\"Isola di Man\"},\"jpn\":{\"official\":\"マン島\",\"common\":\"マン島\"},\"nld\":{\"official\":\"Isle of Man\",\"common\":\"Isle of Man\"},\"por\":{\"official\":\"Isle of Man\",\"common\":\"Ilha de Man\"},\"rus\":{\"official\":\"Остров Мэн\",\"common\":\"Остров Мэн\"},\"slk\":{\"official\":\"Ostrov Man\",\"common\":\"Man\"},\"spa\":{\"official\":\"Isla de Man\",\"common\":\"Isla de Man\"},\"fin\":{\"official\":\"Mansaari\",\"common\":\"Mansaari\"},\"est\":{\"official\":\"Mani saar\",\"common\":\"Mani saar\"},\"zho\":{\"official\":\"马恩岛\",\"common\":\"马恩岛\"},\"pol\":{\"official\":\"Wyspa Man\",\"common\":\"Wyspa Man\"},\"urd\":{\"official\":\"آئل آف مین\",\"common\":\"آئل آف مین\"},\"kor\":{\"official\":\"맨섬\",\"common\":\"맨섬\"},\"per\":{\"official\":\"جزیرهٔ مَن\",\"common\":\"جزیرهٔ مَن\"}},\"latlng\":[54.25,-4.5],\"landlocked\":false,\"borders\":[],\"area\":572,\"flag\":\"🇮🇲\",\"demonyms\":{\"eng\":{\"f\":\"Manx\",\"m\":\"Manx\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"India\",\"official\":\"Republic of India\",\"native\":{\"eng\":{\"official\":\"Republic of India\",\"common\":\"India\"},\"hin\":{\"official\":\"भारत गणराज्य\",\"common\":\"भारत\"},\"tam\":{\"official\":\"இந்தியக் குடியரசு\",\"common\":\"இந்தியா\"}}},\"tld\":[\".in\"],\"cca2\":\"IN\",\"ccn3\":\"356\",\"cca3\":\"IND\",\"cioc\":\"IND\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"INR\":{\"name\":\"Indian rupee\",\"symbol\":\"₹\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"1\"]},\"capital\":[\"New Delhi\"],\"altSpellings\":[\"IN\",\"Bhārat\",\"Republic of India\",\"Bharat Ganrajya\",\"இந்தியா\"],\"region\":\"Asia\",\"subregion\":\"Southern Asia\",\"languages\":{\"eng\":\"English\",\"hin\":\"Hindi\",\"tam\":\"Tamil\"},\"translations\":{\"ces\":{\"official\":\"Indická republika\",\"common\":\"Indie\"},\"deu\":{\"official\":\"Republik Indien\",\"common\":\"Indien\"},\"fra\":{\"official\":\"République de l\\'Inde\",\"common\":\"Inde\"},\"hrv\":{\"official\":\"Republika Indija\",\"common\":\"Indija\"},\"ita\":{\"official\":\"Repubblica dell\\'India\",\"common\":\"India\"},\"jpn\":{\"official\":\"インド共和国\",\"common\":\"インド\"},\"nld\":{\"official\":\"Republiek India\",\"common\":\"India\"},\"por\":{\"official\":\"República da Índia\",\"common\":\"Índia\"},\"rus\":{\"official\":\"Республика Индия\",\"common\":\"Индия\"},\"slk\":{\"official\":\"Indická republika\",\"common\":\"India\"},\"spa\":{\"official\":\"República de la India\",\"common\":\"India\"},\"fin\":{\"official\":\"Intian tasavalta\",\"common\":\"Intia\"},\"est\":{\"official\":\"India Vabariik\",\"common\":\"India\"},\"zho\":{\"official\":\"印度共和国\",\"common\":\"印度\"},\"pol\":{\"official\":\"Republika Indii\",\"common\":\"Indie\"},\"urd\":{\"official\":\"جمہوریہ بھارت\",\"common\":\"بھارت\"},\"kor\":{\"official\":\"인도 공화국\",\"common\":\"인도\"},\"per\":{\"official\":\"جمهوری هندوستان\",\"common\":\"هند\"}},\"latlng\":[20,77],\"landlocked\":false,\"borders\":[\"BGD\",\"BTN\",\"MMR\",\"CHN\",\"NPL\",\"PAK\"],\"area\":3287590,\"flag\":\"🇮🇳\",\"demonyms\":{\"eng\":{\"f\":\"Indian\",\"m\":\"Indian\"},\"fra\":{\"f\":\"Indienne\",\"m\":\"Indien\"}}},{\"name\":{\"common\":\"British Indian Ocean Territory\",\"official\":\"British Indian Ocean Territory\",\"native\":{\"eng\":{\"official\":\"British Indian Ocean Territory\",\"common\":\"British Indian Ocean Territory\"}}},\"tld\":[\".io\"],\"cca2\":\"IO\",\"ccn3\":\"086\",\"cca3\":\"IOT\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"46\"]},\"capital\":[\"Diego Garcia\"],\"altSpellings\":[\"IO\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Britské indickooceánské území\",\"common\":\"Britské indickooceánské území\"},\"cym\":{\"official\":\"Tiriogaeth Brydeinig Cefnfor India\",\"common\":\"Tiriogaeth Brydeinig Cefnfor India\"},\"deu\":{\"official\":\"Britisches Territorium im Indischen Ozean\",\"common\":\"Britisches Territorium im Indischen Ozean\"},\"fra\":{\"official\":\"Territoire britannique de l\\' océan Indien\",\"common\":\"Territoire britannique de l\\'océan Indien\"},\"hrv\":{\"official\":\"British Indian Ocean Territory\",\"common\":\"Britanski Indijskooceanski teritorij\"},\"ita\":{\"official\":\"Territorio britannico dell\\'Oceano Indiano\",\"common\":\"Territorio britannico dell\\'oceano indiano\"},\"jpn\":{\"official\":\"イギリス領インド洋地域\",\"common\":\"イギリス領インド洋地域\"},\"nld\":{\"official\":\"Brits Indische Oceaan Territorium\",\"common\":\"Britse Gebieden in de Indische Oceaan\"},\"por\":{\"official\":\"British Indian Ocean Territory\",\"common\":\"Território Britânico do Oceano Índico\"},\"rus\":{\"official\":\"Британская территория Индийского океана\",\"common\":\"Британская территория в Индийском океане\"},\"slk\":{\"official\":\"Britské indickooceánske územie\",\"common\":\"Britské indickooceánske územie\"},\"spa\":{\"official\":\"Territorio Británico del Océano Índico\",\"common\":\"Territorio Británico del Océano Índico\"},\"fin\":{\"official\":\"Brittiläinen Intian valtameren alue\",\"common\":\"Brittiläinen Intian valtameren alue\"},\"est\":{\"official\":\"Briti India ookeani ala\",\"common\":\"Briti India ookeani ala\"},\"zho\":{\"official\":\"英属印度洋领地\",\"common\":\"英属印度洋领地\"},\"pol\":{\"official\":\"Brytyjskie Terytorium Oceanu Indyjskiego\",\"common\":\"Brytyjskie Terytorium Oceanu Indyjskiego\"},\"urd\":{\"official\":\"برطانوی بحرہند خطہ\",\"common\":\"برطانوی بحرہند خطہ\"},\"kor\":{\"official\":\"인도 공화국\",\"common\":\"인도\"},\"per\":{\"official\":\"قلمرو بریتانیا در اقیانوس هند\",\"common\":\"قلمرو بریتانیا در اقیانوس هند\"}},\"latlng\":[-6,71.5],\"landlocked\":false,\"borders\":[],\"area\":60,\"flag\":\"🇮🇴\",\"demonyms\":{\"eng\":{\"f\":\"Indian\",\"m\":\"Indian\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Ireland\",\"official\":\"Republic of Ireland\",\"native\":{\"eng\":{\"official\":\"Republic of Ireland\",\"common\":\"Ireland\"},\"gle\":{\"official\":\"Poblacht na hÉireann\",\"common\":\"Éire\"}}},\"tld\":[\".ie\"],\"cca2\":\"IE\",\"ccn3\":\"372\",\"cca3\":\"IRL\",\"cioc\":\"IRL\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"53\"]},\"capital\":[\"Dublin\"],\"altSpellings\":[\"IE\",\"Éire\",\"Republic of Ireland\",\"Poblacht na hÉireann\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"eng\":\"English\",\"gle\":\"Irish\"},\"translations\":{\"ces\":{\"official\":\"Irsko\",\"common\":\"Irsko\"},\"deu\":{\"official\":\"Republik Irland\",\"common\":\"Irland\"},\"fra\":{\"official\":\"République d\\'Irlande\",\"common\":\"Irlande\"},\"hrv\":{\"official\":\"Republika Irska\",\"common\":\"Irska\"},\"ita\":{\"official\":\"Repubblica d\\'Irlanda\",\"common\":\"Irlanda\"},\"jpn\":{\"official\":\"アイルランド共和国\",\"common\":\"アイルランド\"},\"nld\":{\"official\":\"Republic of Ireland\",\"common\":\"Ierland\"},\"por\":{\"official\":\"República da Irlanda\",\"common\":\"Irlanda\"},\"rus\":{\"official\":\"Ирландия\",\"common\":\"Ирландия\"},\"slk\":{\"official\":\"Írska republika\",\"common\":\"Írsko\"},\"spa\":{\"official\":\"República de Irlanda\",\"common\":\"Irlanda\"},\"fin\":{\"official\":\"Irlannin tasavalta\",\"common\":\"Irlanti\"},\"est\":{\"official\":\"Iirimaa\",\"common\":\"Iirimaa\"},\"zho\":{\"official\":\"爱尔兰共和国\",\"common\":\"爱尔兰\"},\"pol\":{\"official\":\"Republika Irlandii\",\"common\":\"Irlandia\"},\"urd\":{\"official\":\"جمہوریہ جزیرہ آئرلینڈ\",\"common\":\"جزیرہ آئرلینڈ\"},\"kor\":{\"official\":\"아일랜드 공화국\",\"common\":\"아일랜드\"},\"per\":{\"official\":\"ایرلند\",\"common\":\"ایرلند\"}},\"latlng\":[53,-8],\"landlocked\":false,\"borders\":[\"GBR\"],\"area\":70273,\"flag\":\"🇮🇪\",\"demonyms\":{\"eng\":{\"f\":\"Irish\",\"m\":\"Irish\"},\"fra\":{\"f\":\"Irlandaise\",\"m\":\"Irlandais\"}}},{\"name\":{\"common\":\"Iran\",\"official\":\"Islamic Republic of Iran\",\"native\":{\"fas\":{\"official\":\"جمهوری اسلامی ایران\",\"common\":\"ایران\"}}},\"tld\":[\".ir\",\"ایران.\"],\"cca2\":\"IR\",\"ccn3\":\"364\",\"cca3\":\"IRN\",\"cioc\":\"IRI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"IRR\":{\"name\":\"Iranian rial\",\"symbol\":\"﷼\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"8\"]},\"capital\":[\"Tehran\"],\"altSpellings\":[\"IR\",\"Islamic Republic of Iran\",\"Iran, Islamic Republic of\",\"Jomhuri-ye Eslāmi-ye Irān\"],\"region\":\"Asia\",\"subregion\":\"Southern Asia\",\"languages\":{\"fas\":\"Persian (Farsi)\"},\"translations\":{\"ces\":{\"official\":\"Islámská republika Írán\",\"common\":\"Írán\"},\"deu\":{\"official\":\"Islamische Republik Iran\",\"common\":\"Iran\"},\"fra\":{\"official\":\"République islamique d\\'Iran\",\"common\":\"Iran\"},\"hrv\":{\"official\":\"Islamska Republika Iran\",\"common\":\"Iran\"},\"ita\":{\"official\":\"Repubblica islamica dell\\'Iran\",\"common\":\"Iran\"},\"jpn\":{\"official\":\"イラン·イスラム共和国\",\"common\":\"イラン・イスラム共和国\"},\"nld\":{\"official\":\"Islamitische Republiek Iran\",\"common\":\"Iran\"},\"por\":{\"official\":\"República Islâmica do Irã\",\"common\":\"Irão\"},\"rus\":{\"official\":\"Исламская Республика Иран\",\"common\":\"Иран\"},\"slk\":{\"official\":\"Iránska islamská republika\",\"common\":\"Irán\"},\"spa\":{\"official\":\"República Islámica de Irán\",\"common\":\"Iran\"},\"fin\":{\"official\":\"Iranin islamilainen tasavalta\",\"common\":\"Iran\"},\"est\":{\"official\":\"Iraani Islamivabariik\",\"common\":\"Iraan\"},\"zho\":{\"official\":\"伊朗伊斯兰共和国\",\"common\":\"伊朗\"},\"pol\":{\"official\":\"Islamska Republika Iranu\",\"common\":\"Iran\"},\"urd\":{\"official\":\"جمہوریہ ایران\",\"common\":\"ایران\"},\"kor\":{\"official\":\"이란 이슬람 공화국\",\"common\":\"이란\"}},\"latlng\":[32,53],\"landlocked\":false,\"borders\":[\"AFG\",\"ARM\",\"AZE\",\"IRQ\",\"PAK\",\"TUR\",\"TKM\"],\"area\":1648195,\"flag\":\"🇮🇷\",\"demonyms\":{\"eng\":{\"f\":\"Iranian\",\"m\":\"Iranian\"},\"fra\":{\"f\":\"Iranienne\",\"m\":\"Iranien\"}}},{\"name\":{\"common\":\"Iraq\",\"official\":\"Republic of Iraq\",\"native\":{\"ara\":{\"official\":\"جمهورية العراق\",\"common\":\"العراق\"},\"arc\":{\"official\":\"ܩܘܼܛܢܵܐ ܐܝܼܪܲܩ\",\"common\":\"ܩܘܼܛܢܵܐ\"},\"ckb\":{\"official\":\"کۆماری عێراق\",\"common\":\"کۆماری\"}}},\"tld\":[\".iq\"],\"cca2\":\"IQ\",\"ccn3\":\"368\",\"cca3\":\"IRQ\",\"cioc\":\"IRQ\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"IQD\":{\"name\":\"Iraqi dinar\",\"symbol\":\"ع.د\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"64\"]},\"capital\":[\"Baghdad\"],\"altSpellings\":[\"IQ\",\"Republic of Iraq\",\"Jumhūriyyat al-‘Irāq\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\",\"arc\":\"Aramaic\",\"ckb\":\"Sorani\"},\"translations\":{\"ces\":{\"official\":\"Irácká republika\",\"common\":\"Irák\"},\"deu\":{\"official\":\"Republik Irak\",\"common\":\"Irak\"},\"fra\":{\"official\":\"République d\\'Irak\",\"common\":\"Irak\"},\"hrv\":{\"official\":\"Republika Irak\",\"common\":\"Irak\"},\"ita\":{\"official\":\"Repubblica dell\\'Iraq\",\"common\":\"Iraq\"},\"jpn\":{\"official\":\"イラク共和国\",\"common\":\"イラク\"},\"nld\":{\"official\":\"Republiek Irak\",\"common\":\"Irak\"},\"por\":{\"official\":\"República do Iraque\",\"common\":\"Iraque\"},\"rus\":{\"official\":\"Республика Ирак\",\"common\":\"Ирак\"},\"slk\":{\"official\":\"Iracká republika\",\"common\":\"Irak\"},\"spa\":{\"official\":\"República de Irak\",\"common\":\"Irak\"},\"fin\":{\"official\":\"Irakin tasavalta\",\"common\":\"Irak\"},\"est\":{\"official\":\"Iraagi Vabariik\",\"common\":\"Iraak\"},\"zho\":{\"official\":\"伊拉克共和国\",\"common\":\"伊拉克\"},\"pol\":{\"official\":\"Republika Iraku\",\"common\":\"Irak\"},\"urd\":{\"official\":\"جمہوریہ عراق\",\"common\":\"عراق\"},\"kor\":{\"official\":\"이라크 공화국\",\"common\":\"이라크\"},\"per\":{\"official\":\"جمهوری عراق\",\"common\":\"عراق\"}},\"latlng\":[33,44],\"landlocked\":false,\"borders\":[\"IRN\",\"JOR\",\"KWT\",\"SAU\",\"SYR\",\"TUR\"],\"area\":438317,\"flag\":\"🇮🇶\",\"demonyms\":{\"eng\":{\"f\":\"Iraqi\",\"m\":\"Iraqi\"},\"fra\":{\"f\":\"Irakienne\",\"m\":\"Irakien\"}}},{\"name\":{\"common\":\"Iceland\",\"official\":\"Iceland\",\"native\":{\"isl\":{\"official\":\"Ísland\",\"common\":\"Ísland\"}}},\"tld\":[\".is\"],\"cca2\":\"IS\",\"ccn3\":\"352\",\"cca3\":\"ISL\",\"cioc\":\"ISL\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"ISK\":{\"name\":\"Icelandic króna\",\"symbol\":\"kr\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"54\"]},\"capital\":[\"Reykjavik\"],\"altSpellings\":[\"IS\",\"Island\",\"Republic of Iceland\",\"Lýðveldið Ísland\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"isl\":\"Icelandic\"},\"translations\":{\"ces\":{\"official\":\"Island\",\"common\":\"Island\"},\"deu\":{\"official\":\"Island\",\"common\":\"Island\"},\"fra\":{\"official\":\"République d\\'Islande\",\"common\":\"Islande\"},\"hrv\":{\"official\":\"Island\",\"common\":\"Island\"},\"ita\":{\"official\":\"Islanda\",\"common\":\"Islanda\"},\"jpn\":{\"official\":\"アイスランド\",\"common\":\"アイスランド\"},\"nld\":{\"official\":\"IJsland\",\"common\":\"IJsland\"},\"por\":{\"official\":\"Islândia\",\"common\":\"Islândia\"},\"rus\":{\"official\":\"Исландия\",\"common\":\"Исландия\"},\"slk\":{\"official\":\"Islandská republika\",\"common\":\"Island\"},\"spa\":{\"official\":\"Islandia\",\"common\":\"Islandia\"},\"fin\":{\"official\":\"Islanti\",\"common\":\"Islanti\"},\"est\":{\"official\":\"Islandi Vabariik\",\"common\":\"Island\"},\"zho\":{\"official\":\"冰岛\",\"common\":\"冰岛\"},\"pol\":{\"official\":\"Republika Islandii\",\"common\":\"Islandia\"},\"urd\":{\"official\":\"آئس لینڈ\",\"common\":\"آئس لینڈ\"},\"kor\":{\"official\":\"아이슬란드 공화국\",\"common\":\"아이슬란드\"},\"per\":{\"official\":\"جمهوری ایسلند\",\"common\":\"ایسلند\"}},\"latlng\":[65,-18],\"landlocked\":false,\"borders\":[],\"area\":103000,\"flag\":\"🇮🇸\",\"demonyms\":{\"eng\":{\"f\":\"Icelander\",\"m\":\"Icelander\"},\"fra\":{\"f\":\"Islandaise\",\"m\":\"Islandais\"}}},{\"name\":{\"common\":\"Israel\",\"official\":\"State of Israel\",\"native\":{\"ara\":{\"official\":\"دولة إسرائيل\",\"common\":\"إسرائيل\"},\"heb\":{\"official\":\"מדינת ישראל\",\"common\":\"ישראל\"}}},\"tld\":[\".il\"],\"cca2\":\"IL\",\"ccn3\":\"376\",\"cca3\":\"ISR\",\"cioc\":\"ISR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"ILS\":{\"name\":\"Israeli new shekel\",\"symbol\":\"₪\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"72\"]},\"capital\":[\"Jerusalem\"],\"altSpellings\":[\"IL\",\"State of Israel\",\"Medīnat Yisrā\\'el\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\",\"heb\":\"Hebrew\"},\"translations\":{\"ces\":{\"official\":\"Stát Izrael\",\"common\":\"Izrael\"},\"deu\":{\"official\":\"Staat Israel\",\"common\":\"Israel\"},\"fra\":{\"official\":\"État d\\'Israël\",\"common\":\"Israël\"},\"hrv\":{\"official\":\"Država Izrael\",\"common\":\"Izrael\"},\"ita\":{\"official\":\"Stato di Israele\",\"common\":\"Israele\"},\"jpn\":{\"official\":\"イスラエル国\",\"common\":\"イスラエル\"},\"nld\":{\"official\":\"Staat Israël\",\"common\":\"Israël\"},\"por\":{\"official\":\"Estado de Israel\",\"common\":\"Israel\"},\"rus\":{\"official\":\"Государство Израиль\",\"common\":\"Израиль\"},\"slk\":{\"official\":\"Izraelský štát\",\"common\":\"Izrael\"},\"spa\":{\"official\":\"Estado de Israel\",\"common\":\"Israel\"},\"fin\":{\"official\":\"Israelin valtio\",\"common\":\"Israel\"},\"est\":{\"official\":\"Iisraeli Riik\",\"common\":\"Iisrael\"},\"zho\":{\"official\":\"以色列国\",\"common\":\"以色列\"},\"pol\":{\"official\":\"Państwo Izrael\",\"common\":\"Izrael\"},\"urd\":{\"official\":\"ریاستِ اسرائیل\",\"common\":\"اسرائیل\"},\"kor\":{\"official\":\"이스라엘국\",\"common\":\"이스라엘\"},\"per\":{\"official\":\"فلسطين اشغالی\",\"common\":\"فلسطين اشغالی\"}},\"latlng\":[31.47,35.13],\"landlocked\":false,\"borders\":[\"EGY\",\"JOR\",\"LBN\",\"PSE\",\"SYR\"],\"area\":20770,\"flag\":\"🇮🇱\",\"demonyms\":{\"eng\":{\"f\":\"Israeli\",\"m\":\"Israeli\"},\"fra\":{\"f\":\"Israélienne\",\"m\":\"Israélien\"}}},{\"name\":{\"common\":\"Italy\",\"official\":\"Italian Republic\",\"native\":{\"ita\":{\"official\":\"Repubblica italiana\",\"common\":\"Italia\"}}},\"tld\":[\".it\"],\"cca2\":\"IT\",\"ccn3\":\"380\",\"cca3\":\"ITA\",\"cioc\":\"ITA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"9\"]},\"capital\":[\"Rome\"],\"altSpellings\":[\"IT\",\"Italian Republic\",\"Repubblica italiana\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"ita\":\"Italian\"},\"translations\":{\"ces\":{\"official\":\"Italská republika\",\"common\":\"Itálie\"},\"deu\":{\"official\":\"Italienische Republik\",\"common\":\"Italien\"},\"fra\":{\"official\":\"République italienne\",\"common\":\"Italie\"},\"hrv\":{\"official\":\"talijanska Republika\",\"common\":\"Italija\"},\"ita\":{\"official\":\"Repubblica italiana\",\"common\":\"Italia\"},\"jpn\":{\"official\":\"イタリア共和国\",\"common\":\"イタリア\"},\"nld\":{\"official\":\"Italiaanse Republiek\",\"common\":\"Italië\"},\"por\":{\"official\":\"República Italiana\",\"common\":\"Itália\"},\"rus\":{\"official\":\"итальянская Республика\",\"common\":\"Италия\"},\"slk\":{\"official\":\"Talianska republika\",\"common\":\"Taliansko\"},\"spa\":{\"official\":\"República Italiana\",\"common\":\"Italia\"},\"fin\":{\"official\":\"Italian tasavalta\",\"common\":\"Italia\"},\"est\":{\"official\":\"Itaalia Vabariik\",\"common\":\"Itaalia\"},\"zho\":{\"official\":\"意大利共和国\",\"common\":\"意大利\"},\"pol\":{\"official\":\"Republika Włoska\",\"common\":\"Włochy\"},\"urd\":{\"official\":\"جمہوریہ اطالیہ\",\"common\":\"اطالیہ\"},\"kor\":{\"official\":\"이탈리아 공화국\",\"common\":\"이탈리아\"},\"per\":{\"official\":\"جمهوری ایتالیا\",\"common\":\"ایتالیا\"}},\"latlng\":[42.83333333,12.83333333],\"landlocked\":false,\"borders\":[\"AUT\",\"FRA\",\"SMR\",\"SVN\",\"CHE\",\"VAT\"],\"area\":301336,\"flag\":\"🇮🇹\",\"demonyms\":{\"eng\":{\"f\":\"Italian\",\"m\":\"Italian\"},\"fra\":{\"f\":\"Italienne\",\"m\":\"Italien\"}}},{\"name\":{\"common\":\"Jamaica\",\"official\":\"Jamaica\",\"native\":{\"eng\":{\"official\":\"Jamaica\",\"common\":\"Jamaica\"},\"jam\":{\"official\":\"Jamaica\",\"common\":\"Jamaica\"}}},\"tld\":[\".jm\"],\"cca2\":\"JM\",\"ccn3\":\"388\",\"cca3\":\"JAM\",\"cioc\":\"JAM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"JMD\":{\"name\":\"Jamaican dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"876\"]},\"capital\":[\"Kingston\"],\"altSpellings\":[\"JM\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\",\"jam\":\"Jamaican Patois\"},\"translations\":{\"ces\":{\"official\":\"Jamajka\",\"common\":\"Jamajka\"},\"deu\":{\"official\":\"Jamaika\",\"common\":\"Jamaika\"},\"fra\":{\"official\":\"Jamaïque\",\"common\":\"Jamaïque\"},\"hrv\":{\"official\":\"Jamajka\",\"common\":\"Jamajka\"},\"ita\":{\"official\":\"Giamaica\",\"common\":\"Giamaica\"},\"jpn\":{\"official\":\"ジャマイカ\",\"common\":\"ジャマイカ\"},\"nld\":{\"official\":\"Jamaica\",\"common\":\"Jamaica\"},\"por\":{\"official\":\"Jamaica\",\"common\":\"Jamaica\"},\"rus\":{\"official\":\"Ямайка\",\"common\":\"Ямайка\"},\"slk\":{\"official\":\"Jamajka\",\"common\":\"Jamajka\"},\"spa\":{\"official\":\"Jamaica\",\"common\":\"Jamaica\"},\"fin\":{\"official\":\"Jamaika\",\"common\":\"Jamaika\"},\"est\":{\"official\":\"Jamaica\",\"common\":\"Jamaica\"},\"zho\":{\"official\":\"牙买加\",\"common\":\"牙买加\"},\"pol\":{\"official\":\"Jamajka\",\"common\":\"Jamajka\"},\"urd\":{\"official\":\"جمیکا\",\"common\":\"جمیکا\"},\"kor\":{\"official\":\"자메이카\",\"common\":\"자메이카\"},\"per\":{\"official\":\"جامائیکا\",\"common\":\"جامائیکا\"}},\"latlng\":[18.25,-77.5],\"landlocked\":false,\"borders\":[],\"area\":10991,\"flag\":\"🇯🇲\",\"demonyms\":{\"eng\":{\"f\":\"Jamaican\",\"m\":\"Jamaican\"},\"fra\":{\"f\":\"Jamaïcaine\",\"m\":\"Jamaïcain\"}}},{\"name\":{\"common\":\"Jersey\",\"official\":\"Bailiwick of Jersey\",\"native\":{\"eng\":{\"official\":\"Bailiwick of Jersey\",\"common\":\"Jersey\"},\"fra\":{\"official\":\"Bailliage de Jersey\",\"common\":\"Jersey\"},\"nrf\":{\"official\":\"Bailliage dé Jèrri\",\"common\":\"Jèrri\"}}},\"tld\":[\".je\"],\"cca2\":\"JE\",\"ccn3\":\"832\",\"cca3\":\"JEY\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"GBP\":{\"name\":\"British pound\",\"symbol\":\"£\"},\"JEP\":{\"name\":\"Jersey pound\",\"symbol\":\"£\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"4\"]},\"capital\":[\"Saint Helier\"],\"altSpellings\":[\"JE\",\"Bailiwick of Jersey\",\"Bailliage de Jersey\",\"Bailliage dé Jèrri\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"eng\":\"English\",\"fra\":\"French\",\"nrf\":\"Jèrriais\"},\"translations\":{\"ces\":{\"official\":\"Rychtářství Jersey\",\"common\":\"Jersey\"},\"deu\":{\"official\":\"Vogtei Jersey\",\"common\":\"Jersey\"},\"fra\":{\"official\":\"Bailliage de Jersey\",\"common\":\"Jersey\"},\"hrv\":{\"official\":\"Struka od Jersey\",\"common\":\"Jersey\"},\"ita\":{\"official\":\"Baliato di Jersey\",\"common\":\"Isola di Jersey\"},\"jpn\":{\"official\":\"ジャージの得意分野\",\"common\":\"ジャージー\"},\"nld\":{\"official\":\"Baljuwschap Jersey\",\"common\":\"Jersey\"},\"por\":{\"official\":\"Bailiado de Jersey\",\"common\":\"Jersey\"},\"rus\":{\"official\":\"Коронное владение Джерси\",\"common\":\"Джерси\"},\"slk\":{\"official\":\"Bailiwick Jersey\",\"common\":\"Jersey\"},\"spa\":{\"official\":\"Bailía de Jersey\",\"common\":\"Jersey\"},\"fin\":{\"official\":\"Jersey\",\"common\":\"Jersey\"},\"est\":{\"official\":\"Jersey foogtkond\",\"common\":\"Jersey\"},\"zho\":{\"official\":\"泽西岛\",\"common\":\"泽西岛\"},\"pol\":{\"official\":\"Jersey\",\"common\":\"Jersey\"},\"urd\":{\"official\":\"جرزی\",\"common\":\"جرزی\"},\"kor\":{\"official\":\"저지 섬\",\"common\":\"저지 섬\"},\"per\":{\"official\":\"جرزی\",\"common\":\"جرزی\"}},\"latlng\":[49.25,-2.16666666],\"landlocked\":false,\"borders\":[],\"area\":116,\"flag\":\"🇯🇪\",\"demonyms\":{\"eng\":{\"f\":\"Channel Islander\",\"m\":\"Channel Islander\"},\"fra\":{\"f\":\"Jersiaise\",\"m\":\"Jersiais\"}}},{\"name\":{\"common\":\"Jordan\",\"official\":\"Hashemite Kingdom of Jordan\",\"native\":{\"ara\":{\"official\":\"المملكة الأردنية الهاشمية\",\"common\":\"الأردن\"}}},\"tld\":[\".jo\",\"الاردن.\"],\"cca2\":\"JO\",\"ccn3\":\"400\",\"cca3\":\"JOR\",\"cioc\":\"JOR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"JOD\":{\"name\":\"Jordanian dinar\",\"symbol\":\"د.ا\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"62\"]},\"capital\":[\"Amman\"],\"altSpellings\":[\"JO\",\"Hashemite Kingdom of Jordan\",\"al-Mamlakah al-Urdunīyah al-Hāshimīyah\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Jordánské hášimovské království\",\"common\":\"Jordánsko\"},\"deu\":{\"official\":\"Haschemitisches Königreich Jordanien\",\"common\":\"Jordanien\"},\"fra\":{\"official\":\"Royaume hachémite de Jordanie\",\"common\":\"Jordanie\"},\"hrv\":{\"official\":\"Hašemitske Kraljevine Jordan\",\"common\":\"Jordan\"},\"ita\":{\"official\":\"Regno hascemita di Giordania\",\"common\":\"Giordania\"},\"jpn\":{\"official\":\"ヨルダン·ハシミテ王国\",\"common\":\"ヨルダン\"},\"nld\":{\"official\":\"Hasjemitisch Koninkrijk Jordanië\",\"common\":\"Jordanië\"},\"por\":{\"official\":\"Reino Hachemita da Jordânia\",\"common\":\"Jordânia\"},\"rus\":{\"official\":\"Иорданского Хашимитского Королевства\",\"common\":\"Иордания\"},\"slk\":{\"official\":\"Jordánske hášimovské kráľovstvo\",\"common\":\"Jordánsko\"},\"spa\":{\"official\":\"Reino Hachemita de Jordania\",\"common\":\"Jordania\"},\"fin\":{\"official\":\"Jordanian hašemiittinen kunigaskunta\",\"common\":\"Jordania\"},\"est\":{\"official\":\"Jordaania Hašimiidi Kuningriik\",\"common\":\"Jordaania\"},\"zho\":{\"official\":\"约旦哈希姆王国\",\"common\":\"约旦\"},\"pol\":{\"official\":\"Jordańskie Królestwo Haszymidzkie\",\"common\":\"Jordania\"},\"urd\":{\"official\":\"ھاشمی مملکتِ اردن\",\"common\":\"اردن\"},\"kor\":{\"official\":\"요르단 하심 왕국\",\"common\":\"요르단\"},\"per\":{\"official\":\"پادشاهی اُردُن هاشمی\",\"common\":\"اردن\"}},\"latlng\":[31,36],\"landlocked\":false,\"borders\":[\"IRQ\",\"ISR\",\"PSE\",\"SAU\",\"SYR\"],\"area\":89342,\"flag\":\"🇯🇴\",\"demonyms\":{\"eng\":{\"f\":\"Jordanian\",\"m\":\"Jordanian\"},\"fra\":{\"f\":\"Jordanienne\",\"m\":\"Jordanien\"}}},{\"name\":{\"common\":\"Japan\",\"official\":\"Japan\",\"native\":{\"jpn\":{\"official\":\"日本\",\"common\":\"日本\"}}},\"tld\":[\".jp\",\".みんな\"],\"cca2\":\"JP\",\"ccn3\":\"392\",\"cca3\":\"JPN\",\"cioc\":\"JPN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"JPY\":{\"name\":\"Japanese yen\",\"symbol\":\"¥\"}},\"idd\":{\"root\":\"+8\",\"suffixes\":[\"1\"]},\"capital\":[\"Tokyo\"],\"altSpellings\":[\"JP\",\"Nippon\",\"Nihon\"],\"region\":\"Asia\",\"subregion\":\"Eastern Asia\",\"languages\":{\"jpn\":\"Japanese\"},\"translations\":{\"ces\":{\"official\":\"Japonsko\",\"common\":\"Japonsko\"},\"deu\":{\"official\":\"Japan\",\"common\":\"Japan\"},\"fra\":{\"official\":\"Japon\",\"common\":\"Japon\"},\"hrv\":{\"official\":\"Japan\",\"common\":\"Japan\"},\"ita\":{\"official\":\"Giappone\",\"common\":\"Giappone\"},\"jpn\":{\"official\":\"日本\",\"common\":\"日本\"},\"nld\":{\"official\":\"Japan\",\"common\":\"Japan\"},\"por\":{\"official\":\"Japão\",\"common\":\"Japão\"},\"rus\":{\"official\":\"Япония\",\"common\":\"Япония\"},\"slk\":{\"official\":\"Japonsko\",\"common\":\"Japonsko\"},\"spa\":{\"official\":\"Japón\",\"common\":\"Japón\"},\"fin\":{\"official\":\"Japani\",\"common\":\"Japani\"},\"est\":{\"official\":\"Jaapan\",\"common\":\"Jaapan\"},\"zho\":{\"official\":\"日本国\",\"common\":\"日本\"},\"pol\":{\"official\":\"Japonia\",\"common\":\"Japonia\"},\"urd\":{\"official\":\"جاپان\",\"common\":\"جاپان\"},\"kor\":{\"official\":\"일본국\",\"common\":\"일본\"},\"per\":{\"official\":\"ژاپن\",\"common\":\"ژاپن\"}},\"latlng\":[36,138],\"landlocked\":false,\"borders\":[],\"area\":377930,\"flag\":\"🇯🇵\",\"demonyms\":{\"eng\":{\"f\":\"Japanese\",\"m\":\"Japanese\"},\"fra\":{\"f\":\"Japonaise\",\"m\":\"Japonais\"}}},{\"name\":{\"common\":\"Kazakhstan\",\"official\":\"Republic of Kazakhstan\",\"native\":{\"kaz\":{\"official\":\"Қазақстан Республикасы\",\"common\":\"Қазақстан\"},\"rus\":{\"official\":\"Республика Казахстан\",\"common\":\"Казахстан\"}}},\"tld\":[\".kz\",\".қаз\"],\"cca2\":\"KZ\",\"ccn3\":\"398\",\"cca3\":\"KAZ\",\"cioc\":\"KAZ\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"KZT\":{\"name\":\"Kazakhstani tenge\",\"symbol\":\"₸\"}},\"idd\":{\"root\":\"+7\",\"suffixes\":[\"6XX\",\"7XX\"]},\"capital\":[\"Astana\"],\"altSpellings\":[\"KZ\",\"Qazaqstan\",\"Казахстан\",\"Republic of Kazakhstan\",\"Қазақстан Республикасы\",\"Qazaqstan Respublïkası\",\"Республика Казахстан\",\"Respublika Kazakhstan\"],\"region\":\"Asia\",\"subregion\":\"Central Asia\",\"languages\":{\"kaz\":\"Kazakh\",\"rus\":\"Russian\"},\"translations\":{\"ces\":{\"official\":\"Republika Kazachstán\",\"common\":\"Kazachstán\"},\"deu\":{\"official\":\"Republik Kasachstan\",\"common\":\"Kasachstan\"},\"fra\":{\"official\":\"République du Kazakhstan\",\"common\":\"Kazakhstan\"},\"hrv\":{\"official\":\"Republika Kazahstan\",\"common\":\"Kazahstan\"},\"ita\":{\"official\":\"Repubblica del Kazakhstan\",\"common\":\"Kazakistan\"},\"jpn\":{\"official\":\"カザフスタン共和国\",\"common\":\"カザフスタン\"},\"nld\":{\"official\":\"Republiek Kazachstan\",\"common\":\"Kazachstan\"},\"por\":{\"official\":\"República do Cazaquistão\",\"common\":\"Cazaquistão\"},\"rus\":{\"official\":\"Республика Казахстан\",\"common\":\"Казахстан\"},\"slk\":{\"official\":\"Kazašská republika\",\"common\":\"Kazachstan\"},\"spa\":{\"official\":\"República de Kazajstán\",\"common\":\"Kazajistán\"},\"fin\":{\"official\":\"Kazakstanin tasavalta\",\"common\":\"Kazakstan\"},\"est\":{\"official\":\"Kasahstani Vabariik\",\"common\":\"Kasahstan\"},\"zho\":{\"official\":\"哈萨克斯坦共和国\",\"common\":\"哈萨克斯坦\"},\"pol\":{\"official\":\"Republika Kazachstanu\",\"common\":\"Kazachstan\"},\"urd\":{\"official\":\"جمہوریہ قازقستان\",\"common\":\"قازقستان\"},\"kor\":{\"official\":\"카자흐스탄 공화국\",\"common\":\"카자흐스탄\"},\"per\":{\"official\":\"جمهوری قزاقستان\",\"common\":\"قزاقستان\"}},\"latlng\":[48,68],\"landlocked\":true,\"borders\":[\"CHN\",\"KGZ\",\"RUS\",\"TKM\",\"UZB\"],\"area\":2724900,\"flag\":\"🇰🇿\",\"demonyms\":{\"eng\":{\"f\":\"Kazakhstani\",\"m\":\"Kazakhstani\"},\"fra\":{\"f\":\"Kazakhstanaise\",\"m\":\"Kazakhstanais\"}}},{\"name\":{\"common\":\"Kenya\",\"official\":\"Republic of Kenya\",\"native\":{\"eng\":{\"official\":\"Republic of Kenya\",\"common\":\"Kenya\"},\"swa\":{\"official\":\"Republic of Kenya\",\"common\":\"Kenya\"}}},\"tld\":[\".ke\"],\"cca2\":\"KE\",\"ccn3\":\"404\",\"cca3\":\"KEN\",\"cioc\":\"KEN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"KES\":{\"name\":\"Kenyan shilling\",\"symbol\":\"Sh\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"54\"]},\"capital\":[\"Nairobi\"],\"altSpellings\":[\"KE\",\"Republic of Kenya\",\"Jamhuri ya Kenya\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"eng\":\"English\",\"swa\":\"Swahili\"},\"translations\":{\"ces\":{\"official\":\"Keňská republika\",\"common\":\"Keňa\"},\"deu\":{\"official\":\"Republik Kenia\",\"common\":\"Kenia\"},\"fra\":{\"official\":\"République du Kenya\",\"common\":\"Kenya\"},\"hrv\":{\"official\":\"Republika Kenija\",\"common\":\"Kenija\"},\"ita\":{\"official\":\"Repubblica del Kenya\",\"common\":\"Kenya\"},\"jpn\":{\"official\":\"ケニア共和国\",\"common\":\"ケニア\"},\"nld\":{\"official\":\"Republiek Kenia\",\"common\":\"Kenia\"},\"por\":{\"official\":\"República do Quénia\",\"common\":\"Quénia\"},\"rus\":{\"official\":\"Республика Кения\",\"common\":\"Кения\"},\"slk\":{\"official\":\"Kenská republika\",\"common\":\"Keňa\"},\"spa\":{\"official\":\"República de Kenya\",\"common\":\"Kenia\"},\"fin\":{\"official\":\"Kenian tasavalta\",\"common\":\"Kenia\"},\"est\":{\"official\":\"Keenia Vabariik\",\"common\":\"Keenia\"},\"zho\":{\"official\":\"肯尼亚共和国\",\"common\":\"肯尼亚\"},\"pol\":{\"official\":\"Republika Kenii\",\"common\":\"Kenia\"},\"urd\":{\"official\":\"جمہوریہ کینیا\",\"common\":\"کینیا\"},\"kor\":{\"official\":\"케냐 공화국\",\"common\":\"케냐\"},\"per\":{\"official\":\"جمهوری کنیا\",\"common\":\"کنیا\"}},\"latlng\":[1,38],\"landlocked\":false,\"borders\":[\"ETH\",\"SOM\",\"SSD\",\"TZA\",\"UGA\"],\"area\":580367,\"flag\":\"🇰🇪\",\"demonyms\":{\"eng\":{\"f\":\"Kenyan\",\"m\":\"Kenyan\"},\"fra\":{\"f\":\"Kényane\",\"m\":\"Kényan\"}}},{\"name\":{\"common\":\"Kyrgyzstan\",\"official\":\"Kyrgyz Republic\",\"native\":{\"kir\":{\"official\":\"Кыргыз Республикасы\",\"common\":\"Кыргызстан\"},\"rus\":{\"official\":\"Кыргызская Республика\",\"common\":\"Киргизия\"}}},\"tld\":[\".kg\"],\"cca2\":\"KG\",\"ccn3\":\"417\",\"cca3\":\"KGZ\",\"cioc\":\"KGZ\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"KGS\":{\"name\":\"Kyrgyzstani som\",\"symbol\":\"с\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"96\"]},\"capital\":[\"Bishkek\"],\"altSpellings\":[\"KG\",\"Киргизия\",\"Kyrgyz Republic\",\"Кыргыз Республикасы\",\"Kyrgyz Respublikasy\"],\"region\":\"Asia\",\"subregion\":\"Central Asia\",\"languages\":{\"kir\":\"Kyrgyz\",\"rus\":\"Russian\"},\"translations\":{\"ces\":{\"official\":\"Kyrgyzská republika\",\"common\":\"Kyrgyzstán\"},\"deu\":{\"official\":\"Kirgisische Republik\",\"common\":\"Kirgisistan\"},\"fra\":{\"official\":\"République kirghize\",\"common\":\"Kirghizistan\"},\"hrv\":{\"official\":\"Kirgistanu\",\"common\":\"Kirgistan\"},\"ita\":{\"official\":\"Kirghizistan\",\"common\":\"Kirghizistan\"},\"jpn\":{\"official\":\"キルギス共和国\",\"common\":\"キルギス\"},\"nld\":{\"official\":\"Kirgizische Republiek\",\"common\":\"Kirgizië\"},\"por\":{\"official\":\"República do Quirguistão\",\"common\":\"Quirguistão\"},\"rus\":{\"official\":\"Кыргызская Республика\",\"common\":\"Киргизия\"},\"slk\":{\"official\":\"Kirgizská republika\",\"common\":\"Kirgizsko\"},\"spa\":{\"official\":\"República Kirguisa\",\"common\":\"Kirguizistán\"},\"fin\":{\"official\":\"Kirgisian tasavalta\",\"common\":\"Kirgisia\"},\"est\":{\"official\":\"Kirgiisi Vabariik\",\"common\":\"Kõrgõzstan\"},\"zho\":{\"official\":\"吉尔吉斯斯坦共和国\",\"common\":\"吉尔吉斯斯坦\"},\"pol\":{\"official\":\"Republika Kirgiska\",\"common\":\"Kirgistan\"},\"urd\":{\"official\":\"جمہوریہ کرغیزستان\",\"common\":\"کرغیزستان\"},\"kor\":{\"official\":\"키르기스 공화국\",\"common\":\"키르기스스탄\"},\"per\":{\"official\":\"جمهوری قِرقیزستان\",\"common\":\"قرقیزستان\"}},\"latlng\":[41,75],\"landlocked\":true,\"borders\":[\"CHN\",\"KAZ\",\"TJK\",\"UZB\"],\"area\":199951,\"flag\":\"🇰🇬\",\"demonyms\":{\"eng\":{\"f\":\"Kirghiz\",\"m\":\"Kirghiz\"},\"fra\":{\"f\":\"Kirghize\",\"m\":\"Kirghize\"}}},{\"name\":{\"common\":\"Cambodia\",\"official\":\"Kingdom of Cambodia\",\"native\":{\"khm\":{\"official\":\"ព្រះរាជាណាចក្រកម្ពុជា\",\"common\":\"Kâmpŭchéa\"}}},\"tld\":[\".kh\"],\"cca2\":\"KH\",\"ccn3\":\"116\",\"cca3\":\"KHM\",\"cioc\":\"CAM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"KHR\":{\"name\":\"Cambodian riel\",\"symbol\":\"៛\"},\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+8\",\"suffixes\":[\"55\"]},\"capital\":[\"Phnom Penh\"],\"altSpellings\":[\"KH\",\"Kingdom of Cambodia\"],\"region\":\"Asia\",\"subregion\":\"South-Eastern Asia\",\"languages\":{\"khm\":\"Khmer\"},\"translations\":{\"ces\":{\"official\":\"Kambodžské království\",\"common\":\"Kambodža\"},\"cym\":{\"official\":\"Teyrnas Cambodia\",\"common\":\"Cambodia\"},\"deu\":{\"official\":\"Königreich Kambodscha\",\"common\":\"Kambodscha\"},\"fra\":{\"official\":\"Royaume du Cambodge\",\"common\":\"Cambodge\"},\"hrv\":{\"official\":\"Kraljevina Kambodža\",\"common\":\"Kambodža\"},\"ita\":{\"official\":\"Regno di Cambogia\",\"common\":\"Cambogia\"},\"jpn\":{\"official\":\"カンボジア王国\",\"common\":\"カンボジア\"},\"nld\":{\"official\":\"Koninkrijk Cambodja\",\"common\":\"Cambodja\"},\"por\":{\"official\":\"Reino do Camboja\",\"common\":\"Camboja\"},\"rus\":{\"official\":\"Королевство Камбоджа\",\"common\":\"Камбоджа\"},\"slk\":{\"official\":\"Kambodžské kráľovstvo\",\"common\":\"Kambodža\"},\"spa\":{\"official\":\"Reino de Camboya\",\"common\":\"Camboya\"},\"fin\":{\"official\":\"Kambodžan kuningaskunta\",\"common\":\"Kambodža\"},\"est\":{\"official\":\"Kambodža Kuningriik\",\"common\":\"Kambodža\"},\"zho\":{\"official\":\"柬埔寨王国\",\"common\":\"柬埔寨\"},\"pol\":{\"official\":\"Królestwo Kambodży\",\"common\":\"Kambodża\"},\"urd\":{\"official\":\"مملکتِ کمبوڈیا\",\"common\":\"کمبوڈیا\"},\"kor\":{\"official\":\"캄보디아 왕국\",\"common\":\"캄보디아\"},\"per\":{\"official\":\"پادشاهی کامبوج\",\"common\":\"کامبوج\"}},\"latlng\":[13,105],\"landlocked\":false,\"borders\":[\"LAO\",\"THA\",\"VNM\"],\"area\":181035,\"flag\":\"🇰🇭\",\"demonyms\":{\"eng\":{\"f\":\"Cambodian\",\"m\":\"Cambodian\"},\"fra\":{\"f\":\"Cambodgienne\",\"m\":\"Cambodgien\"}}},{\"name\":{\"common\":\"Kiribati\",\"official\":\"Independent and Sovereign Republic of Kiribati\",\"native\":{\"eng\":{\"official\":\"Independent and Sovereign Republic of Kiribati\",\"common\":\"Kiribati\"},\"gil\":{\"official\":\"Ribaberiki Kiribati\",\"common\":\"Kiribati\"}}},\"tld\":[\".ki\"],\"cca2\":\"KI\",\"ccn3\":\"296\",\"cca3\":\"KIR\",\"cioc\":\"KIR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"AUD\":{\"name\":\"Australian dollar\",\"symbol\":\"$\"},\"KID\":{\"name\":\"Kiribati dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"86\"]},\"capital\":[\"South Tarawa\"],\"altSpellings\":[\"KI\",\"Republic of Kiribati\",\"Ribaberiki Kiribati\"],\"region\":\"Oceania\",\"subregion\":\"Micronesia\",\"languages\":{\"eng\":\"English\",\"gil\":\"Gilbertese\"},\"translations\":{\"ces\":{\"official\":\"Republika Kiribati\",\"common\":\"Kiribati\"},\"deu\":{\"official\":\"Republik Kiribati\",\"common\":\"Kiribati\"},\"fra\":{\"official\":\"République de Kiribati\",\"common\":\"Kiribati\"},\"hrv\":{\"official\":\"Samostalne i suverene Republike Kiribati\",\"common\":\"Kiribati\"},\"ita\":{\"official\":\"Repubblica indipendente e sovrano di Kiribati\",\"common\":\"Kiribati\"},\"jpn\":{\"official\":\"キリバスの独立と主権共和国\",\"common\":\"キリバス\"},\"nld\":{\"official\":\"Onafhankelijke en soevereine republiek Kiribati\",\"common\":\"Kiribati\"},\"por\":{\"official\":\"Independente e soberano República de Kiribati\",\"common\":\"Kiribati\"},\"rus\":{\"official\":\"Независимой и суверенной Республики Кирибати\",\"common\":\"Кирибати\"},\"slk\":{\"official\":\"Kiribatská republika\",\"common\":\"Kiribati\"},\"spa\":{\"official\":\"República Independiente y Soberano de Kiribati\",\"common\":\"Kiribati\"},\"fin\":{\"official\":\"Kiribatin tasavalta\",\"common\":\"Kiribati\"},\"est\":{\"official\":\"Kiribati Vabariik\",\"common\":\"Kiribati\"},\"zho\":{\"official\":\"基里巴斯共和国\",\"common\":\"基里巴斯\"},\"pol\":{\"official\":\"Republika Kiribati\",\"common\":\"Kiribati\"},\"urd\":{\"official\":\"سلطنت آزاد جمہوریہ کیریباتی\",\"common\":\"کیریباتی\"},\"kor\":{\"official\":\"키리바시 공화국\",\"common\":\"키리바시\"},\"per\":{\"official\":\"جمهوری کیریباتی\",\"common\":\"کیریباتی\"}},\"latlng\":[1.41666666,173],\"landlocked\":false,\"borders\":[],\"area\":811,\"flag\":\"🇰🇮\",\"demonyms\":{\"eng\":{\"f\":\"I-Kiribati\",\"m\":\"I-Kiribati\"},\"fra\":{\"f\":\"Kiribatienne\",\"m\":\"Kiribatien\"}}},{\"name\":{\"common\":\"Saint Kitts and Nevis\",\"official\":\"Federation of Saint Christopher and Nevis\",\"native\":{\"eng\":{\"official\":\"Federation of Saint Christopher and Nevis\",\"common\":\"Saint Kitts and Nevis\"}}},\"tld\":[\".kn\"],\"cca2\":\"KN\",\"ccn3\":\"659\",\"cca3\":\"KNA\",\"cioc\":\"SKN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XCD\":{\"name\":\"Eastern Caribbean dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"869\"]},\"capital\":[\"Basseterre\"],\"altSpellings\":[\"KN\",\"Federation of Saint Christopher and Nevis\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Federace Sv. Kryštof a Nevis\",\"common\":\"Svatý Kryštof a Nevis\"},\"deu\":{\"official\":\"Föderation von St. Kitts und Nevis\",\"common\":\"St. Kitts und Nevis\"},\"fra\":{\"official\":\"Fédération de Saint-Christophe-et-Niévès\",\"common\":\"Saint-Christophe-et-Niévès\"},\"hrv\":{\"official\":\"Federacija Sv.Kristofora i Nevisa\",\"common\":\"Sveti Kristof i Nevis\"},\"ita\":{\"official\":\"Federazione di Saint Christopher e Nevis\",\"common\":\"Saint Kitts e Nevis\"},\"jpn\":{\"official\":\"セントクリストファーNevis連盟\",\"common\":\"セントクリストファー・ネイビス\"},\"nld\":{\"official\":\"Federatie van Saint Kitts en Nevis\",\"common\":\"Saint Kitts en Nevis\"},\"por\":{\"official\":\"Federação de São Cristóvão e Nevis\",\"common\":\"São Cristóvão e Nevis\"},\"rus\":{\"official\":\"Федерация Сент-Кристофер и Н е в и с\",\"common\":\"Сент-Китс и Невис\"},\"slk\":{\"official\":\"Federcia Svätého Krištofa a Nevisu\",\"common\":\"Svätý Krištof a Nevis\"},\"spa\":{\"official\":\"Federación de San Cristóbal y Nevis\",\"common\":\"San Cristóbal y Nieves\"},\"fin\":{\"official\":\"Saint Christopherin ja Nevisin federaatio\",\"common\":\"Saint Kitts ja Nevis\"},\"est\":{\"official\":\"Saint Kittsi ja Nevise Föderatsioon\",\"common\":\"Saint Kitts ja Nevis\"},\"zho\":{\"official\":\"圣克里斯托弗和尼维斯联邦\",\"common\":\"圣基茨和尼维斯\"},\"pol\":{\"official\":\"Federacja Saint Kitts i Nevis\",\"common\":\"Saint Kitts i Nevis\"},\"urd\":{\"official\":\"وفاقِ سینٹ کیٹز و ناویس\",\"common\":\"سینٹ کیٹز و ناویس\"},\"kor\":{\"official\":\"세인트키츠 네비스 연방\",\"common\":\"세인트키츠 네비스\"},\"per\":{\"official\":\"فدراسیون سنت کیتس و نویس\",\"common\":\"سنت کیتس و نویس\"}},\"latlng\":[17.33333333,-62.75],\"landlocked\":false,\"borders\":[],\"area\":261,\"flag\":\"🇰🇳\",\"demonyms\":{\"eng\":{\"f\":\"Kittitian or Nevisian\",\"m\":\"Kittitian or Nevisian\"},\"fra\":{\"f\":\"Kittitienne-et-nevicienne\",\"m\":\"Kittitien-et-nevicien\"}}},{\"name\":{\"common\":\"South Korea\",\"official\":\"Republic of Korea\",\"native\":{\"kor\":{\"official\":\"대한민국\",\"common\":\"한국\"}}},\"tld\":[\".kr\",\".한국\"],\"cca2\":\"KR\",\"ccn3\":\"410\",\"cca3\":\"KOR\",\"cioc\":\"KOR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"KRW\":{\"name\":\"South Korean won\",\"symbol\":\"₩\"}},\"idd\":{\"root\":\"+8\",\"suffixes\":[\"2\"]},\"capital\":[\"Seoul\"],\"altSpellings\":[\"KR\",\"Korea, Republic of\",\"Republic of Korea\",\"남한\",\"남조선\"],\"region\":\"Asia\",\"subregion\":\"Eastern Asia\",\"languages\":{\"kor\":\"Korean\"},\"translations\":{\"ces\":{\"official\":\"Korejská republika\",\"common\":\"Jižní Korea\"},\"deu\":{\"official\":\"Republik Korea\",\"common\":\"Südkorea\"},\"fra\":{\"official\":\"République de Corée\",\"common\":\"Corée du Sud\"},\"hrv\":{\"official\":\"Republika Koreja\",\"common\":\"Južna Koreja\"},\"ita\":{\"official\":\"Repubblica di Corea\",\"common\":\"Corea del Sud\"},\"jpn\":{\"official\":\"大韓民国\",\"common\":\"韓国\"},\"nld\":{\"official\":\"Republiek Korea\",\"common\":\"Zuid-Korea\"},\"por\":{\"official\":\"República da Coreia\",\"common\":\"Coreia do Sul\"},\"rus\":{\"official\":\"Республика Корея\",\"common\":\"Южная Корея\"},\"slk\":{\"official\":\"Kórejská republika\",\"common\":\"Južná Kórea\"},\"spa\":{\"official\":\"República de Corea\",\"common\":\"Corea del Sur\"},\"fin\":{\"official\":\"Korean tasavalta\",\"common\":\"Etelä-Korea\"},\"est\":{\"official\":\"Korea Vabariik\",\"common\":\"Lõuna-Korea\"},\"zho\":{\"official\":\"大韩民国\",\"common\":\"韩国\"},\"pol\":{\"official\":\"Republika Korei\",\"common\":\"Korea Południowa\"},\"urd\":{\"official\":\"جمہوریہ کوریا \",\"common\":\"جنوبی کوریا\"},\"kor\":{\"official\":\"대한민국\",\"common\":\"한국\"},\"per\":{\"official\":\"جمهوری کره\",\"common\":\"کرهٔ جنوبی\"}},\"latlng\":[37,127.5],\"landlocked\":false,\"borders\":[\"PRK\"],\"area\":100210,\"flag\":\"🇰🇷\",\"demonyms\":{\"eng\":{\"f\":\"South Korean\",\"m\":\"South Korean\"},\"fra\":{\"f\":\"Sud-coréenne\",\"m\":\"Sud-coréen\"}}},{\"name\":{\"common\":\"Kosovo\",\"official\":\"Republic of Kosovo\",\"native\":{\"sqi\":{\"official\":\"Republika e Kosovës\",\"common\":\"Kosova\"},\"srp\":{\"official\":\"Република Косово\",\"common\":\"Косово\"}}},\"tld\":[],\"cca2\":\"XK\",\"ccn3\":\"\",\"cca3\":\"UNK\",\"cioc\":\"KOS\",\"independent\":null,\"status\":\"user-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"83\"]},\"capital\":[\"Pristina\"],\"altSpellings\":[\"XK\",\"Република Косово\"],\"region\":\"Europe\",\"subregion\":\"Eastern Europe\",\"languages\":{\"sqi\":\"Albanian\",\"srp\":\"Serbian\"},\"translations\":{\"ces\":{\"official\":\"Kosovská republika\",\"common\":\"Kosovo\"},\"deu\":{\"official\":\"Republik Kosovo\",\"common\":\"Kosovo\"},\"fra\":{\"official\":\"République du Kosovo\",\"common\":\"Kosovo\"},\"hrv\":{\"official\":\"Republika Kosovo\",\"common\":\"Kosovo\"},\"ita\":{\"official\":\"Repubblica del Kosovo\",\"common\":\"Kosovo\"},\"nld\":{\"official\":\"Republiek Kosovo\",\"common\":\"Kosovo\"},\"por\":{\"official\":\"República do Kosovo\",\"common\":\"Kosovo\"},\"rus\":{\"official\":\"Республика Косово\",\"common\":\"Республика Косово\"},\"slk\":{\"official\":\"Republika Kosovo\",\"common\":\"Kosovo\"},\"spa\":{\"official\":\"República de Kosovo\",\"common\":\"Kosovo\"},\"fin\":{\"official\":\"Kosovon tasavalta\",\"common\":\"Kosovo\"},\"est\":{\"official\":\"Kosovo Vabariik\",\"common\":\"Kosovo\"},\"zho\":{\"official\":\"科索沃共和国\",\"common\":\"科索沃\"},\"pol\":{\"official\":\"Republika Kosowa\",\"common\":\"Kosowo\"},\"urd\":{\"official\":\"جمہوریہ کوسووہ\",\"common\":\"کوسووہ\"},\"kor\":{\"official\":\"코소보 공화국\",\"common\":\"코소보\"},\"per\":{\"official\":\"جمهوری کوزوو\",\"common\":\"کوزوو\"}},\"latlng\":[42.666667,21.166667],\"landlocked\":true,\"borders\":[\"ALB\",\"MKD\",\"MNE\",\"SRB\"],\"area\":10908,\"flag\":\"🇽🇰\",\"demonyms\":{\"eng\":{\"f\":\"Kosovar\",\"m\":\"Kosovar\"},\"fra\":{\"f\":\"Kosovare\",\"m\":\"Kosovar\"}}},{\"name\":{\"common\":\"Kuwait\",\"official\":\"State of Kuwait\",\"native\":{\"ara\":{\"official\":\"دولة الكويت\",\"common\":\"الكويت\"}}},\"tld\":[\".kw\"],\"cca2\":\"KW\",\"ccn3\":\"414\",\"cca3\":\"KWT\",\"cioc\":\"KUW\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"KWD\":{\"name\":\"Kuwaiti dinar\",\"symbol\":\"د.ك\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"65\"]},\"capital\":[\"Kuwait City\"],\"altSpellings\":[\"KW\",\"State of Kuwait\",\"Dawlat al-Kuwait\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Stát Kuvajt\",\"common\":\"Kuvajt\"},\"deu\":{\"official\":\"Staat Kuwait\",\"common\":\"Kuwait\"},\"fra\":{\"official\":\"État du Koweït\",\"common\":\"Koweït\"},\"hrv\":{\"official\":\"Država Kuvajt\",\"common\":\"Kuvajt\"},\"ita\":{\"official\":\"Stato del Kuwait\",\"common\":\"Kuwait\"},\"jpn\":{\"official\":\"クウェート国\",\"common\":\"クウェート\"},\"nld\":{\"official\":\"Staat Koeweit\",\"common\":\"Koeweit\"},\"por\":{\"official\":\"Estado do Kuwait\",\"common\":\"Kuwait\"},\"rus\":{\"official\":\"Государство Кувейт\",\"common\":\"Кувейт\"},\"slk\":{\"official\":\"Kuvajtský štát\",\"common\":\"Kuvajt\"},\"spa\":{\"official\":\"Estado de Kuwait\",\"common\":\"Kuwait\"},\"fin\":{\"official\":\"Kuwaitin valtio\",\"common\":\"Kuwait\"},\"est\":{\"official\":\"Kuveidi Riik\",\"common\":\"Kuveit\"},\"zho\":{\"official\":\"科威特国\",\"common\":\"科威特\"},\"pol\":{\"official\":\"Państwo Kuwejt\",\"common\":\"Kuwejt\"},\"urd\":{\"official\":\"دولتِ کویت\",\"common\":\"کویت\"},\"kor\":{\"official\":\"쿠웨이트국\",\"common\":\"쿠웨이트\"},\"per\":{\"official\":\"دولت کویت\",\"common\":\"کُویت\"}},\"latlng\":[29.5,45.75],\"landlocked\":false,\"borders\":[\"IRQ\",\"SAU\"],\"area\":17818,\"flag\":\"🇰🇼\",\"demonyms\":{\"eng\":{\"f\":\"Kuwaiti\",\"m\":\"Kuwaiti\"},\"fra\":{\"f\":\"Koweïtienne\",\"m\":\"Koweïtien\"}}},{\"name\":{\"common\":\"Laos\",\"official\":\"Lao People\\'s Democratic Republic\",\"native\":{\"lao\":{\"official\":\"ສາທາລະນະ ຊາທິປະໄຕ ຄົນລາວ ຂອງ\",\"common\":\"ສປປລາວ\"}}},\"tld\":[\".la\"],\"cca2\":\"LA\",\"ccn3\":\"418\",\"cca3\":\"LAO\",\"cioc\":\"LAO\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"LAK\":{\"name\":\"Lao kip\",\"symbol\":\"₭\"}},\"idd\":{\"root\":\"+8\",\"suffixes\":[\"56\"]},\"capital\":[\"Vientiane\"],\"altSpellings\":[\"LA\",\"Lao\",\"Lao People\\'s Democratic Republic\",\"Sathalanalat Paxathipatai Paxaxon Lao\"],\"region\":\"Asia\",\"subregion\":\"South-Eastern Asia\",\"languages\":{\"lao\":\"Lao\"},\"translations\":{\"ces\":{\"official\":\"Laoská lidově demokratická republika\",\"common\":\"Laos\"},\"deu\":{\"official\":\"Demokratische Volksrepublik Laos\",\"common\":\"Laos\"},\"fra\":{\"official\":\"République démocratique populaire lao\",\"common\":\"Laos\"},\"hrv\":{\"official\":\"Narodna Demokratska Republika\",\"common\":\"Laos\"},\"ita\":{\"official\":\"Repubblica democratica popolare del Laos\",\"common\":\"Laos\"},\"jpn\":{\"official\":\"ラオス人民民主共和国\",\"common\":\"ラオス人民民主共和国\"},\"nld\":{\"official\":\"Lao Democratische Volksrepubliek\",\"common\":\"Laos\"},\"por\":{\"official\":\"Laos, República Democrática\",\"common\":\"Laos\"},\"rus\":{\"official\":\"Лаосская Народно-Демократическая Республика\",\"common\":\"Лаос\"},\"slk\":{\"official\":\"Laoská ľudovodemokratická republika\",\"common\":\"Laos\"},\"spa\":{\"official\":\"República Democrática Popular Lao\",\"common\":\"Laos\"},\"fin\":{\"official\":\"Laosin demokraattinen kansantasavalta\",\"common\":\"Laos\"},\"est\":{\"official\":\"Laose Demokraatlik Rahvavabariik\",\"common\":\"Laos\"},\"zho\":{\"official\":\"老挝人民民主共和国\",\"common\":\"老挝\"},\"pol\":{\"official\":\"Laotańska Republika Ludowo-Demokratyczna\",\"common\":\"Laos\"},\"urd\":{\"official\":\"عوامی جمہوری جمہوریہ لاؤ\",\"common\":\"لاؤس\"},\"kor\":{\"official\":\"라오 인민 민주 공화국\",\"common\":\"라오스\"},\"per\":{\"official\":\"جمهوری دموکراتیک خلق لائوس\",\"common\":\"لائوس\"}},\"latlng\":[18,105],\"landlocked\":true,\"borders\":[\"MMR\",\"KHM\",\"CHN\",\"THA\",\"VNM\"],\"area\":236800,\"flag\":\"🇱🇦\",\"demonyms\":{\"eng\":{\"f\":\"Laotian\",\"m\":\"Laotian\"},\"fra\":{\"f\":\"Laotienne\",\"m\":\"Laotien\"}}},{\"name\":{\"common\":\"Lebanon\",\"official\":\"Lebanese Republic\",\"native\":{\"ara\":{\"official\":\"الجمهورية اللبنانية\",\"common\":\"لبنان\"},\"fra\":{\"official\":\"République libanaise\",\"common\":\"Liban\"}}},\"tld\":[\".lb\"],\"cca2\":\"LB\",\"ccn3\":\"422\",\"cca3\":\"LBN\",\"cioc\":\"LIB\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"LBP\":{\"name\":\"Lebanese pound\",\"symbol\":\"ل.ل\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"61\"]},\"capital\":[\"Beirut\"],\"altSpellings\":[\"LB\",\"Lebanese Republic\",\"Al-Jumhūrīyah Al-Libnānīyah\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\",\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Libanonská republika\",\"common\":\"Libanon\"},\"deu\":{\"official\":\"Libanesische Republik\",\"common\":\"Libanon\"},\"fra\":{\"official\":\"République libanaise\",\"common\":\"Liban\"},\"hrv\":{\"official\":\"Libanonska Republika\",\"common\":\"Libanon\"},\"ita\":{\"official\":\"Repubblica libanese\",\"common\":\"Libano\"},\"jpn\":{\"official\":\"レバノン共和国\",\"common\":\"レバノン\"},\"nld\":{\"official\":\"Libanese Republiek\",\"common\":\"Libanon\"},\"por\":{\"official\":\"República Libanesa\",\"common\":\"Líbano\"},\"rus\":{\"official\":\"Ливанская Республика\",\"common\":\"Ливан\"},\"slk\":{\"official\":\"Libanonská republika\",\"common\":\"Libanon\"},\"spa\":{\"official\":\"República Libanesa\",\"common\":\"Líbano\"},\"fin\":{\"official\":\"Libanonin tasavalta\",\"common\":\"Libanon\"},\"est\":{\"official\":\"Liibanoni Vabariik\",\"common\":\"Liibanon\"},\"zho\":{\"official\":\"黎巴嫩共和国\",\"common\":\"黎巴嫩\"},\"pol\":{\"official\":\"Republika Libańska\",\"common\":\"Liban\"},\"urd\":{\"official\":\"جمہوریہ لبنان\",\"common\":\"لبنان\"},\"kor\":{\"official\":\"레바논 공화국\",\"common\":\"레바논\"},\"per\":{\"official\":\"جمهوری لبنان\",\"common\":\"لبنان\"}},\"latlng\":[33.83333333,35.83333333],\"landlocked\":false,\"borders\":[\"ISR\",\"SYR\"],\"area\":10452,\"flag\":\"🇱🇧\",\"demonyms\":{\"eng\":{\"f\":\"Lebanese\",\"m\":\"Lebanese\"},\"fra\":{\"f\":\"Libanaise\",\"m\":\"Libanais\"}}},{\"name\":{\"common\":\"Liberia\",\"official\":\"Republic of Liberia\",\"native\":{\"eng\":{\"official\":\"Republic of Liberia\",\"common\":\"Liberia\"}}},\"tld\":[\".lr\"],\"cca2\":\"LR\",\"ccn3\":\"430\",\"cca3\":\"LBR\",\"cioc\":\"LBR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"LRD\":{\"name\":\"Liberian dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"31\"]},\"capital\":[\"Monrovia\"],\"altSpellings\":[\"LR\",\"Republic of Liberia\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Liberijská republika\",\"common\":\"Libérie\"},\"deu\":{\"official\":\"Republik Liberia\",\"common\":\"Liberia\"},\"fra\":{\"official\":\"République du Libéria\",\"common\":\"Liberia\"},\"hrv\":{\"official\":\"Republika Liberija\",\"common\":\"Liberija\"},\"ita\":{\"official\":\"Repubblica di Liberia\",\"common\":\"Liberia\"},\"jpn\":{\"official\":\"リベリア共和国\",\"common\":\"リベリア\"},\"nld\":{\"official\":\"Republiek Liberia\",\"common\":\"Liberia\"},\"por\":{\"official\":\"República da Libéria\",\"common\":\"Libéria\"},\"rus\":{\"official\":\"Республика Либерия\",\"common\":\"Либерия\"},\"slk\":{\"official\":\"Libérijská republika\",\"common\":\"Libéria\"},\"spa\":{\"official\":\"República de Liberia\",\"common\":\"Liberia\"},\"fin\":{\"official\":\"Liberian tasavalta\",\"common\":\"Liberia\"},\"est\":{\"official\":\"Libeeria Vabariik\",\"common\":\"Libeeria\"},\"zho\":{\"official\":\"利比里亚共和国\",\"common\":\"利比里亚\"},\"pol\":{\"official\":\"Republika Liberii\",\"common\":\"Liberia\"},\"urd\":{\"official\":\"جمہوریہ لائبیریا\",\"common\":\"لائبیریا\"},\"kor\":{\"official\":\"라이베리아 공화국\",\"common\":\"라이베리아\"},\"per\":{\"official\":\"جمهوری لیبریا\",\"common\":\"لیبـِریا\"}},\"latlng\":[6.5,-9.5],\"landlocked\":false,\"borders\":[\"GIN\",\"CIV\",\"SLE\"],\"area\":111369,\"flag\":\"🇱🇷\",\"demonyms\":{\"eng\":{\"f\":\"Liberian\",\"m\":\"Liberian\"},\"fra\":{\"f\":\"Libérienne\",\"m\":\"Libérien\"}}},{\"name\":{\"common\":\"Libya\",\"official\":\"State of Libya\",\"native\":{\"ara\":{\"official\":\"الدولة ليبيا\",\"common\":\"ليبيا\"}}},\"tld\":[\".ly\"],\"cca2\":\"LY\",\"ccn3\":\"434\",\"cca3\":\"LBY\",\"cioc\":\"LBA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"LYD\":{\"name\":\"Libyan dinar\",\"symbol\":\"ل.د\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"18\"]},\"capital\":[\"Tripoli\"],\"altSpellings\":[\"LY\",\"State of Libya\",\"Dawlat Libya\"],\"region\":\"Africa\",\"subregion\":\"Northern Africa\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Stát Libye\",\"common\":\"Libye\"},\"deu\":{\"official\":\"Staat Libyen\",\"common\":\"Libyen\"},\"fra\":{\"official\":\"Grande République arabe libyenne populaire et socialiste\",\"common\":\"Libye\"},\"hrv\":{\"official\":\"Država Libiji\",\"common\":\"Libija\"},\"ita\":{\"official\":\"Stato della Libia\",\"common\":\"Libia\"},\"jpn\":{\"official\":\"リビアの国家\",\"common\":\"リビア\"},\"nld\":{\"official\":\"Staat van Libië\",\"common\":\"Libië\"},\"por\":{\"official\":\"Estado da Líbia\",\"common\":\"Líbia\"},\"rus\":{\"official\":\"Государство Ливии\",\"common\":\"Ливия\"},\"slk\":{\"official\":\"Líbya\",\"common\":\"Líbya\"},\"spa\":{\"official\":\"Estado de Libia\",\"common\":\"Libia\"},\"fin\":{\"official\":\"Libyan valtio\",\"common\":\"Libya\"},\"est\":{\"official\":\"Liibüa\",\"common\":\"Liibüa\"},\"zho\":{\"official\":\"利比亚国\",\"common\":\"利比亚\"},\"pol\":{\"official\":\"Państwo Libia\",\"common\":\"Libia\"},\"urd\":{\"official\":\"ریاستِ لیبیا\",\"common\":\"لیبیا\"},\"kor\":{\"official\":\"리비아\",\"common\":\"리비아\"},\"per\":{\"official\":\"دولت لیبی\",\"common\":\"لیبی\"}},\"latlng\":[25,17],\"landlocked\":false,\"borders\":[\"DZA\",\"TCD\",\"EGY\",\"NER\",\"SDN\",\"TUN\"],\"area\":1759540,\"flag\":\"🇱🇾\",\"demonyms\":{\"eng\":{\"f\":\"Libyan\",\"m\":\"Libyan\"},\"fra\":{\"f\":\"Libyenne\",\"m\":\"Libyen\"}}},{\"name\":{\"common\":\"Saint Lucia\",\"official\":\"Saint Lucia\",\"native\":{\"eng\":{\"official\":\"Saint Lucia\",\"common\":\"Saint Lucia\"}}},\"tld\":[\".lc\"],\"cca2\":\"LC\",\"ccn3\":\"662\",\"cca3\":\"LCA\",\"cioc\":\"LCA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XCD\":{\"name\":\"Eastern Caribbean dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"758\"]},\"capital\":[\"Castries\"],\"altSpellings\":[\"LC\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Svatá Lucie\",\"common\":\"Svatá Lucie\"},\"deu\":{\"official\":\"St. Lucia\",\"common\":\"St. Lucia\"},\"fra\":{\"official\":\"Sainte-Lucie\",\"common\":\"Sainte-Lucie\"},\"hrv\":{\"official\":\"Sveta Lucija\",\"common\":\"Sveta Lucija\"},\"ita\":{\"official\":\"Santa Lucia\",\"common\":\"Santa Lucia\"},\"jpn\":{\"official\":\"セントルシア\",\"common\":\"セントルシア\"},\"nld\":{\"official\":\"Saint Lucia\",\"common\":\"Saint Lucia\"},\"por\":{\"official\":\"Santa Lúcia\",\"common\":\"Santa Lúcia\"},\"rus\":{\"official\":\"Сент-Люсия\",\"common\":\"Сент-Люсия\"},\"slk\":{\"official\":\"Svätá Lucia\",\"common\":\"Svätá Lucia\"},\"spa\":{\"official\":\"Santa Lucía\",\"common\":\"Santa Lucía\"},\"fin\":{\"official\":\"Saint Lucia\",\"common\":\"Saint Lucia\"},\"est\":{\"official\":\"Saint Lucia\",\"common\":\"Saint Lucia\"},\"zho\":{\"official\":\"圣卢西亚\",\"common\":\"圣卢西亚\"},\"pol\":{\"official\":\"Saint Lucia\",\"common\":\"Saint Lucia\"},\"urd\":{\"official\":\"سینٹ لوسیا\",\"common\":\"سینٹ لوسیا\"},\"kor\":{\"official\":\"세인트루시아\",\"common\":\"세인트루시아\"},\"per\":{\"official\":\"سنت لوسیا\",\"common\":\"سنت لوسیا\"}},\"latlng\":[13.88333333,-60.96666666],\"landlocked\":false,\"borders\":[],\"area\":616,\"flag\":\"🇱🇨\",\"demonyms\":{\"eng\":{\"f\":\"Saint Lucian\",\"m\":\"Saint Lucian\"},\"fra\":{\"f\":\"Saint-Lucienne\",\"m\":\"Saint-Lucien\"}}},{\"name\":{\"common\":\"Liechtenstein\",\"official\":\"Principality of Liechtenstein\",\"native\":{\"deu\":{\"official\":\"Fürstentum Liechtenstein\",\"common\":\"Liechtenstein\"}}},\"tld\":[\".li\"],\"cca2\":\"LI\",\"ccn3\":\"438\",\"cca3\":\"LIE\",\"cioc\":\"LIE\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"CHF\":{\"name\":\"Swiss franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"23\"]},\"capital\":[\"Vaduz\"],\"altSpellings\":[\"LI\",\"Principality of Liechtenstein\",\"Fürstentum Liechtenstein\"],\"region\":\"Europe\",\"subregion\":\"Western Europe\",\"languages\":{\"deu\":\"German\"},\"translations\":{\"ces\":{\"official\":\"Knížectví Lichtenštejnské\",\"common\":\"Lichtenštejnsko\"},\"deu\":{\"official\":\"Fürstentum Liechtenstein\",\"common\":\"Liechtenstein\"},\"fra\":{\"official\":\"Principauté du Liechtenstein\",\"common\":\"Liechtenstein\"},\"hrv\":{\"official\":\"Kneževina Lihtenštajn\",\"common\":\"Lihtenštajn\"},\"ita\":{\"official\":\"Principato del Liechtenstein\",\"common\":\"Liechtenstein\"},\"jpn\":{\"official\":\"リヒテンシュタイン公国\",\"common\":\"リヒテンシュタイン\"},\"nld\":{\"official\":\"Vorstendom Liechtenstein\",\"common\":\"Liechtenstein\"},\"por\":{\"official\":\"Principado de Liechtenstein\",\"common\":\"Liechtenstein\"},\"rus\":{\"official\":\"Княжество Лихтенштейн\",\"common\":\"Лихтенштейн\"},\"slk\":{\"official\":\"Lichtenštajnské kniežatstvo\",\"common\":\"Lichtenštajnsko\"},\"spa\":{\"official\":\"Principado de Liechtenstein\",\"common\":\"Liechtenstein\"},\"fin\":{\"official\":\"Liechensteinin ruhtinaskunta\",\"common\":\"Liechenstein\"},\"est\":{\"official\":\"Liechtensteini Vürstiriik\",\"common\":\"Liechtenstein\"},\"zho\":{\"official\":\"列支敦士登公国\",\"common\":\"列支敦士登\"},\"pol\":{\"official\":\"Księstwo Liechtensteinu\",\"common\":\"Liechtenstein\"},\"urd\":{\"official\":\"امارات لیختینستائن\",\"common\":\"لیختینستائن\"},\"kor\":{\"official\":\"리히텐슈타인 공국\",\"common\":\"리히텐슈타인\"},\"per\":{\"official\":\"شاهزادهنشین لیختناشتاین\",\"common\":\"لیختناشتاین\"}},\"latlng\":[47.26666666,9.53333333],\"landlocked\":true,\"borders\":[\"AUT\",\"CHE\"],\"area\":160,\"flag\":\"🇱🇮\",\"demonyms\":{\"eng\":{\"f\":\"Liechtensteiner\",\"m\":\"Liechtensteiner\"},\"fra\":{\"f\":\"Liechtensteinoise\",\"m\":\"Liechtensteinois\"}}},{\"name\":{\"common\":\"Sri Lanka\",\"official\":\"Democratic Socialist Republic of Sri Lanka\",\"native\":{\"sin\":{\"official\":\"ශ්රී ලංකා ප්රජාතාන්ත්රික සමාජවාදී ජනරජය\",\"common\":\"ශ්රී ලංකාව\"},\"tam\":{\"official\":\"இலங்கை சனநாயக சோசலிசக் குடியரசு\",\"common\":\"இலங்கை\"}}},\"tld\":[\".lk\",\".இலங்கை\",\".ලංකා\"],\"cca2\":\"LK\",\"ccn3\":\"144\",\"cca3\":\"LKA\",\"cioc\":\"SRI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"LKR\":{\"name\":\"Sri Lankan rupee\",\"symbol\":\"Rs රු\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"4\"]},\"capital\":[\"Colombo\"],\"altSpellings\":[\"LK\",\"ilaṅkai\",\"Democratic Socialist Republic of Sri Lanka\"],\"region\":\"Asia\",\"subregion\":\"Southern Asia\",\"languages\":{\"sin\":\"Sinhala\",\"tam\":\"Tamil\"},\"translations\":{\"ces\":{\"official\":\"Srílanská demokratická socialistická republika\",\"common\":\"Srí Lanka\"},\"deu\":{\"official\":\"Demokratische Sozialistische Republik Sri Lanka\",\"common\":\"Sri Lanka\"},\"fra\":{\"official\":\"République démocratique socialiste du Sri Lanka\",\"common\":\"Sri Lanka\"},\"hrv\":{\"official\":\"Demokratska Socijalističke Republike Šri Lanke\",\"common\":\"Šri Lanka\"},\"ita\":{\"official\":\"Repubblica democratica socialista dello Sri Lanka\",\"common\":\"Sri Lanka\"},\"jpn\":{\"official\":\"スリランカ民主社会主義共和国\",\"common\":\"スリランカ\"},\"nld\":{\"official\":\"Democratische Socialistische Republiek Sri Lanka\",\"common\":\"Sri Lanka\"},\"por\":{\"official\":\"República Democrática Socialista do Sri Lanka\",\"common\":\"Sri Lanka\"},\"rus\":{\"official\":\"Демократическая Социалистическая Республика Шри-Ланка\",\"common\":\"Шри-Ланка\"},\"slk\":{\"official\":\"Srílanská demokratická socialistická republika\",\"common\":\"Srí Lanka\"},\"spa\":{\"official\":\"República Democrática Socialista de Sri Lanka\",\"common\":\"Sri Lanka\"},\"fin\":{\"official\":\"Sri Lankan demokraattinen sosialistinen tasavalta\",\"common\":\"Sri Lanka\"},\"est\":{\"official\":\"Sri Lanka Demokraatlik Sotsialistlik Vabariik\",\"common\":\"Sri Lanka\"},\"zho\":{\"official\":\"斯里兰卡民主社会主义共和国\",\"common\":\"斯里兰卡\"},\"pol\":{\"official\":\"Demokratyczno-Socjalistyczna Republika Sri Lanki\",\"common\":\"Sri Lanka\"},\"urd\":{\"official\":\"جمہوری و اشتراکی جمہوریہ سری لنکا\",\"common\":\"سری لنکا\"},\"kor\":{\"official\":\"스리랑카 민주 사회주의 공화국\",\"common\":\"스리랑카\"},\"per\":{\"official\":\"جمهوری دموکراتیک سوسیالیستی سریلانکا\",\"common\":\"سریلانکا\"}},\"latlng\":[7,81],\"landlocked\":false,\"borders\":[\"IND\"],\"area\":65610,\"flag\":\"🇱🇰\",\"demonyms\":{\"eng\":{\"f\":\"Sri Lankan\",\"m\":\"Sri Lankan\"},\"fra\":{\"f\":\"Sri-lankaise\",\"m\":\"Sri-lankais\"}}},{\"name\":{\"common\":\"Lesotho\",\"official\":\"Kingdom of Lesotho\",\"native\":{\"eng\":{\"official\":\"Kingdom of Lesotho\",\"common\":\"Lesotho\"},\"sot\":{\"official\":\"Kingdom of Lesotho\",\"common\":\"Lesotho\"}}},\"tld\":[\".ls\"],\"cca2\":\"LS\",\"ccn3\":\"426\",\"cca3\":\"LSO\",\"cioc\":\"LES\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"LSL\":{\"name\":\"Lesotho loti\",\"symbol\":\"L\"},\"ZAR\":{\"name\":\"South African rand\",\"symbol\":\"R\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"66\"]},\"capital\":[\"Maseru\"],\"altSpellings\":[\"LS\",\"Kingdom of Lesotho\",\"Muso oa Lesotho\"],\"region\":\"Africa\",\"subregion\":\"Southern Africa\",\"languages\":{\"eng\":\"English\",\"sot\":\"Sotho\"},\"translations\":{\"ces\":{\"official\":\"Lesothské království\",\"common\":\"Lesotho\"},\"deu\":{\"official\":\"Königreich Lesotho\",\"common\":\"Lesotho\"},\"fra\":{\"official\":\"Royaume du Lesotho\",\"common\":\"Lesotho\"},\"hrv\":{\"official\":\"Kraljevina Lesoto\",\"common\":\"Lesoto\"},\"ita\":{\"official\":\"Regno del Lesotho\",\"common\":\"Lesotho\"},\"jpn\":{\"official\":\"レソト王国\",\"common\":\"レソト\"},\"nld\":{\"official\":\"Koninkrijk Lesotho\",\"common\":\"Lesotho\"},\"por\":{\"official\":\"Reino do Lesoto\",\"common\":\"Lesoto\"},\"rus\":{\"official\":\"Королевство Лесото\",\"common\":\"Лесото\"},\"slk\":{\"official\":\"Lesothské kráľovstvo\",\"common\":\"Lesotho\"},\"spa\":{\"official\":\"Reino de Lesotho\",\"common\":\"Lesotho\"},\"fin\":{\"official\":\"Lesothon kuningaskunta\",\"common\":\"Lesotho\"},\"est\":{\"official\":\"Lesotho Kuningriik\",\"common\":\"Lesotho\"},\"zho\":{\"official\":\"莱索托王国\",\"common\":\"莱索托\"},\"pol\":{\"official\":\"Królestwo Lesotho\",\"common\":\"Lesotho\"},\"urd\":{\"official\":\"مملکتِ لیسوتھو\",\"common\":\"لیسوتھو\"},\"kor\":{\"official\":\"레소토 왕국\",\"common\":\"레소토\"},\"per\":{\"official\":\"پادشاهی لسوتو\",\"common\":\"لسوتو\"}},\"latlng\":[-29.5,28.5],\"landlocked\":true,\"borders\":[\"ZAF\"],\"area\":30355,\"flag\":\"🇱🇸\",\"demonyms\":{\"eng\":{\"f\":\"Mosotho\",\"m\":\"Mosotho\"},\"fra\":{\"f\":\"Lésothienne\",\"m\":\"Lésothien\"}}},{\"name\":{\"common\":\"Lithuania\",\"official\":\"Republic of Lithuania\",\"native\":{\"lit\":{\"official\":\"Lietuvos Respublikos\",\"common\":\"Lietuva\"}}},\"tld\":[\".lt\"],\"cca2\":\"LT\",\"ccn3\":\"440\",\"cca3\":\"LTU\",\"cioc\":\"LTU\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"70\"]},\"capital\":[\"Vilnius\"],\"altSpellings\":[\"LT\",\"Republic of Lithuania\",\"Lietuvos Respublika\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"lit\":\"Lithuanian\"},\"translations\":{\"ces\":{\"official\":\"Litevská republika\",\"common\":\"Litva\"},\"deu\":{\"official\":\"Republik Litauen\",\"common\":\"Litauen\"},\"fra\":{\"official\":\"République de Lituanie\",\"common\":\"Lituanie\"},\"hrv\":{\"official\":\"Republika Litva\",\"common\":\"Litva\"},\"ita\":{\"official\":\"Repubblica di Lituania\",\"common\":\"Lituania\"},\"jpn\":{\"official\":\"リトアニア共和国\",\"common\":\"リトアニア\"},\"nld\":{\"official\":\"Republiek Litouwen\",\"common\":\"Litouwen\"},\"por\":{\"official\":\"República da Lituânia\",\"common\":\"Lituânia\"},\"rus\":{\"official\":\"Литовская Республика\",\"common\":\"Литва\"},\"slk\":{\"official\":\"Litovská republika\",\"common\":\"Litva\"},\"spa\":{\"official\":\"República de Lituania\",\"common\":\"Lituania\"},\"fin\":{\"official\":\"Liettuan tasavalta\",\"common\":\"Liettua\"},\"est\":{\"official\":\"Leedu Vabariik\",\"common\":\"Leedu\"},\"zho\":{\"official\":\"立陶宛共和国\",\"common\":\"立陶宛\"},\"pol\":{\"official\":\"Republika Litewska\",\"common\":\"Litwa\"},\"urd\":{\"official\":\"جمہوریہ لتھووینیا\",\"common\":\"لتھووینیا\"},\"kor\":{\"official\":\"리투아니아 공화국\",\"common\":\"리투아니아\"},\"per\":{\"official\":\"لیتوانیاییها\",\"common\":\"لیتوانیاییها\"}},\"latlng\":[56,24],\"landlocked\":false,\"borders\":[\"BLR\",\"LVA\",\"POL\",\"RUS\"],\"area\":65300,\"flag\":\"🇱🇹\",\"demonyms\":{\"eng\":{\"f\":\"Lithuanian\",\"m\":\"Lithuanian\"},\"fra\":{\"f\":\"Lituanienne\",\"m\":\"Lituanien\"}}},{\"name\":{\"common\":\"Luxembourg\",\"official\":\"Grand Duchy of Luxembourg\",\"native\":{\"deu\":{\"official\":\"Großherzogtum Luxemburg\",\"common\":\"Luxemburg\"},\"fra\":{\"official\":\"Grand-Duché de Luxembourg\",\"common\":\"Luxembourg\"},\"ltz\":{\"official\":\"Groussherzogtum Lëtzebuerg\",\"common\":\"Lëtzebuerg\"}}},\"tld\":[\".lu\"],\"cca2\":\"LU\",\"ccn3\":\"442\",\"cca3\":\"LUX\",\"cioc\":\"LUX\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"52\"]},\"capital\":[\"Luxembourg\"],\"altSpellings\":[\"LU\",\"Grand Duchy of Luxembourg\",\"Grand-Duché de Luxembourg\",\"Großherzogtum Luxemburg\",\"Groussherzogtum Lëtzebuerg\"],\"region\":\"Europe\",\"subregion\":\"Western Europe\",\"languages\":{\"deu\":\"German\",\"fra\":\"French\",\"ltz\":\"Luxembourgish\"},\"translations\":{\"ces\":{\"official\":\"Lucemburské velkovévodství\",\"common\":\"Lucembursko\"},\"deu\":{\"official\":\"Großherzogtum Luxemburg,\",\"common\":\"Luxemburg\"},\"fra\":{\"official\":\"Grand-Duché de Luxembourg\",\"common\":\"Luxembourg\"},\"hrv\":{\"official\":\"Veliko Vojvodstvo Luksemburg\",\"common\":\"Luksemburg\"},\"ita\":{\"official\":\"Granducato di Lussemburgo\",\"common\":\"Lussemburgo\"},\"jpn\":{\"official\":\"ルクセンブルク大公国\",\"common\":\"ルクセンブルク\"},\"nld\":{\"official\":\"Groothertogdom Luxemburg\",\"common\":\"Luxemburg\"},\"por\":{\"official\":\"Grão-Ducado do Luxemburgo\",\"common\":\"Luxemburgo\"},\"rus\":{\"official\":\"Великое Герцогство Люксембург\",\"common\":\"Люксембург\"},\"slk\":{\"official\":\"Luxemburské veľkovojvodstvo\",\"common\":\"Luxembursko\"},\"spa\":{\"official\":\"Gran Ducado de Luxemburgo\",\"common\":\"Luxemburgo\"},\"fin\":{\"official\":\"Luxemburgin suurherttuakunta\",\"common\":\"Luxemburg\"},\"est\":{\"official\":\"Luksemburgi Suurhertsogiriik\",\"common\":\"Luksemburg\"},\"zho\":{\"official\":\"卢森堡大公国\",\"common\":\"卢森堡\"},\"pol\":{\"official\":\"Wielkie Księstwo Luksemburga\",\"common\":\"Luksemburg\"},\"urd\":{\"official\":\"دوقیہ کبیرلکسمبرگ\",\"common\":\"لکسمبرگ\"},\"kor\":{\"official\":\"룩셈부르크 대공국\",\"common\":\"룩셈부르크\"},\"per\":{\"official\":\"دوکنشین لوکزامبورگ\",\"common\":\"لوکزامبورگ\"}},\"latlng\":[49.75,6.16666666],\"landlocked\":true,\"borders\":[\"BEL\",\"FRA\",\"DEU\"],\"area\":2586,\"flag\":\"🇱🇺\",\"demonyms\":{\"eng\":{\"f\":\"Luxembourger\",\"m\":\"Luxembourger\"},\"fra\":{\"f\":\"Luxembourgeoise\",\"m\":\"Luxembourgeois\"}}},{\"name\":{\"common\":\"Latvia\",\"official\":\"Republic of Latvia\",\"native\":{\"lav\":{\"official\":\"Latvijas Republikas\",\"common\":\"Latvija\"}}},\"tld\":[\".lv\"],\"cca2\":\"LV\",\"ccn3\":\"428\",\"cca3\":\"LVA\",\"cioc\":\"LAT\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"71\"]},\"capital\":[\"Riga\"],\"altSpellings\":[\"LV\",\"Republic of Latvia\",\"Latvijas Republika\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"lav\":\"Latvian\"},\"translations\":{\"ces\":{\"official\":\"Lotyšská republika\",\"common\":\"Lotyšsko\"},\"deu\":{\"official\":\"Republik Lettland\",\"common\":\"Lettland\"},\"fra\":{\"official\":\"République de Lettonie\",\"common\":\"Lettonie\"},\"hrv\":{\"official\":\"Republika Latvija\",\"common\":\"Latvija\"},\"ita\":{\"official\":\"Repubblica di Lettonia\",\"common\":\"Lettonia\"},\"jpn\":{\"official\":\"ラトビア共和国\",\"common\":\"ラトビア\"},\"nld\":{\"official\":\"Republiek Letland\",\"common\":\"Letland\"},\"por\":{\"official\":\"República da Letónia\",\"common\":\"Letónia\"},\"rus\":{\"official\":\"Латвийская Республика\",\"common\":\"Латвия\"},\"slk\":{\"official\":\"Lotyšská republika\",\"common\":\"Lotyšsko\"},\"spa\":{\"official\":\"República de Letonia\",\"common\":\"Letonia\"},\"fin\":{\"official\":\"Latvian tasavalta\",\"common\":\"Latvia\"},\"est\":{\"official\":\"Läti Vabariik\",\"common\":\"Läti\"},\"zho\":{\"official\":\"拉脱维亚共和国\",\"common\":\"拉脱维亚\"},\"pol\":{\"official\":\"Republika Łotewska\",\"common\":\"Łotwa\"},\"urd\":{\"official\":\"جمہوریہ لٹویا\",\"common\":\"لٹویا\"},\"kor\":{\"official\":\"라트비아 공화국\",\"common\":\"라트비아\"},\"per\":{\"official\":\"جمهوری لتونی\",\"common\":\"لتونی\"}},\"latlng\":[57,25],\"landlocked\":false,\"borders\":[\"BLR\",\"EST\",\"LTU\",\"RUS\"],\"area\":64559,\"flag\":\"🇱🇻\",\"demonyms\":{\"eng\":{\"f\":\"Latvian\",\"m\":\"Latvian\"},\"fra\":{\"f\":\"Lettone\",\"m\":\"Letton\"}}},{\"name\":{\"common\":\"Macau\",\"official\":\"Macao Special Administrative Region of the People\\'s Republic of China\",\"native\":{\"por\":{\"official\":\"Região Administrativa Especial de Macau da República Popular da China\",\"common\":\"Macau\"},\"zho\":{\"official\":\"中华人民共和国澳门特别行政区\",\"common\":\"澳门\"}}},\"tld\":[\".mo\"],\"cca2\":\"MO\",\"ccn3\":\"446\",\"cca3\":\"MAC\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"MOP\":{\"name\":\"Macanese pataca\",\"symbol\":\"P\"}},\"idd\":{\"root\":\"+8\",\"suffixes\":[\"53\"]},\"capital\":[\"\"],\"altSpellings\":[\"MO\",\"澳门\",\"Macao\",\"Macao Special Administrative Region of the People\\'s Republic of China\",\"中華人民共和國澳門特別行政區\",\"Região Administrativa Especial de Macau da República Popular da China\"],\"region\":\"Asia\",\"subregion\":\"Eastern Asia\",\"languages\":{\"por\":\"Portuguese\",\"zho\":\"Chinese\"},\"translations\":{\"ces\":{\"official\":\"Zvláštní správní oblast Čínské lidové republiky Macao\",\"common\":\"Macao\"},\"deu\":{\"official\":\"Sonderverwaltungsregion Macau der Volksrepublik China\",\"common\":\"Macao\"},\"fra\":{\"official\":\"Région administrative spéciale de Macao de la République populaire de Chine\",\"common\":\"Macao\"},\"hrv\":{\"official\":\"Makao Posebnog upravnog područjaNarodne Republike Kine\",\"common\":\"Makao\"},\"ita\":{\"official\":\"Macao Regione amministrativa speciale della Repubblica Popolare Cinese\",\"common\":\"Macao\"},\"jpn\":{\"official\":\"中華人民共和国マカオ特別行政区\",\"common\":\"マカオ\"},\"nld\":{\"official\":\"Speciale Administratieve Regio Macau van de Volksrepubliek China\",\"common\":\"Macao\"},\"por\":{\"official\":\"Macau Região Administrativa Especial da República Popular da China\",\"common\":\"Macau\"},\"rus\":{\"official\":\"Специальный административный район Макао Китайской Народной Республики Китай\",\"common\":\"Макао\"},\"slk\":{\"official\":\"Macao, Špeciàlna administratívna oblasŦ\",\"common\":\"Macao\"},\"spa\":{\"official\":\"Macao, Región Administrativa Especial de la República Popular China\",\"common\":\"Macao\"},\"fin\":{\"official\":\"Macaon Kiinan kansantasavallan erityishallintoalue\",\"common\":\"Macao\"},\"est\":{\"official\":\"Macau erihalduspiirkond\",\"common\":\"Macau\"},\"pol\":{\"official\":\"Specjalny Region Administracyjny Chińskiej Republiki Ludowej Makau\",\"common\":\"Makau\"},\"urd\":{\"official\":\"مکاؤ عوامی جمہوریہ چین کا خصوصی انتظامی علاقہ\",\"common\":\"مکاؤ\"},\"kor\":{\"official\":\"중화인민공화국 마카오 특별행정구\",\"common\":\"마카오\"},\"per\":{\"official\":\"ماکائو\",\"common\":\"ماکائو\"}},\"latlng\":[22.16666666,113.55],\"landlocked\":false,\"borders\":[\"CHN\"],\"area\":30,\"flag\":\"🇲🇴\",\"demonyms\":{\"eng\":{\"f\":\"Macanese\",\"m\":\"Macanese\"},\"fra\":{\"f\":\"Macanaise\",\"m\":\"Macanais\"}}},{\"name\":{\"common\":\"Saint Martin\",\"official\":\"Saint Martin\",\"native\":{\"fra\":{\"official\":\"Saint-Martin\",\"common\":\"Saint-Martin\"}}},\"tld\":[\".fr\",\".gp\"],\"cca2\":\"MF\",\"ccn3\":\"663\",\"cca3\":\"MAF\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"90\"]},\"capital\":[\"Marigot\"],\"altSpellings\":[\"MF\",\"Collectivity of Saint Martin\",\"Collectivité de Saint-Martin\",\"Saint Martin (French part)\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Svatý Martin\",\"common\":\"Svatý Martin (Francie)\"},\"deu\":{\"official\":\"Saint-Martin\",\"common\":\"Saint-Martin\"},\"fra\":{\"official\":\"Saint-Martin\",\"common\":\"Saint-Martin\"},\"hrv\":{\"official\":\"Saint Martin\",\"common\":\"Sveti Martin\"},\"ita\":{\"official\":\"saint Martin\",\"common\":\"Saint Martin\"},\"jpn\":{\"official\":\"サンマルタン島\",\"common\":\"サン・マルタン(フランス領)\"},\"nld\":{\"official\":\"Saint Martin\",\"common\":\"Saint-Martin\"},\"por\":{\"official\":\"saint Martin\",\"common\":\"São Martinho\"},\"rus\":{\"official\":\"Сен-Мартен\",\"common\":\"Сен-Мартен\"},\"slk\":{\"official\":\"Saint-Martin\",\"common\":\"Saint-Martin\"},\"spa\":{\"official\":\"Saint Martin\",\"common\":\"Saint Martin\"},\"fin\":{\"official\":\"Saint-Martin\",\"common\":\"Saint-Martin\"},\"est\":{\"official\":\"Saint-Martini ühendus\",\"common\":\"Saint-Martin\"},\"zho\":{\"official\":\"圣马丁\",\"common\":\"圣马丁\"},\"pol\":{\"official\":\"Wspólnota Saint-Martin\",\"common\":\"Saint-Martin\"},\"urd\":{\"official\":\"سینٹ مارٹن\",\"common\":\"سینٹ مارٹن\"},\"kor\":{\"official\":\"생마르탱\",\"common\":\"생마르탱\"},\"per\":{\"official\":\"سن مارتن\",\"common\":\"سن مارتن\"}},\"latlng\":[18.08333333,-63.95],\"landlocked\":false,\"borders\":[\"SXM\"],\"area\":53,\"flag\":\"🇲🇫\",\"demonyms\":{\"eng\":{\"f\":\"Saint Martin Islander\",\"m\":\"Saint Martin Islander\"},\"fra\":{\"f\":\"Saint-Martinoise\",\"m\":\"Saint-Martinois\"}}},{\"name\":{\"common\":\"Morocco\",\"official\":\"Kingdom of Morocco\",\"native\":{\"ara\":{\"official\":\"المملكة المغربية\",\"common\":\"المغرب\"},\"ber\":{\"official\":\"ⵜⴰⴳⵍⴷⵉⵜ ⵏ ⵍⵎⵖⵔⵉⴱ\",\"common\":\"ⵍⵎⴰⵖⵔⵉⴱ\"}}},\"tld\":[\".ma\",\"المغرب.\"],\"cca2\":\"MA\",\"ccn3\":\"504\",\"cca3\":\"MAR\",\"cioc\":\"MAR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MAD\":{\"name\":\"Moroccan dirham\",\"symbol\":\"د.م.\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"12\"]},\"capital\":[\"Rabat\"],\"altSpellings\":[\"MA\",\"Kingdom of Morocco\",\"Al-Mamlakah al-Maġribiyah\"],\"region\":\"Africa\",\"subregion\":\"Northern Africa\",\"languages\":{\"ara\":\"Arabic\",\"ber\":\"Berber\"},\"translations\":{\"ces\":{\"official\":\"Marocké království\",\"common\":\"Maroko\"},\"deu\":{\"official\":\"Königreich Marokko\",\"common\":\"Marokko\"},\"fra\":{\"official\":\"Royaume du Maroc\",\"common\":\"Maroc\"},\"hrv\":{\"official\":\"Kraljevina Maroko\",\"common\":\"Maroko\"},\"ita\":{\"official\":\"Regno del Marocco\",\"common\":\"Marocco\"},\"jpn\":{\"official\":\"モロッコ王国\",\"common\":\"モロッコ\"},\"nld\":{\"official\":\"Koninkrijk Marokko\",\"common\":\"Marokko\"},\"por\":{\"official\":\"Reino de Marrocos\",\"common\":\"Marrocos\"},\"rus\":{\"official\":\"Королевство Марокко\",\"common\":\"Марокко\"},\"slk\":{\"official\":\"Marocké kniežatstvo\",\"common\":\"Maroko\"},\"spa\":{\"official\":\"Reino de Marruecos\",\"common\":\"Marruecos\"},\"fin\":{\"official\":\"Marokon kuningaskunta\",\"common\":\"Marokko\"},\"est\":{\"official\":\"Maroko Kuningriik\",\"common\":\"Maroko\"},\"zho\":{\"official\":\"摩洛哥王国\",\"common\":\"摩洛哥\"},\"pol\":{\"official\":\"Królestwo Marokańskie\",\"common\":\"Maroko\"},\"urd\":{\"official\":\"مملکتِ مراکش\",\"common\":\"مراکش\"},\"kor\":{\"official\":\"모로코 왕국\",\"common\":\"모로코\"},\"per\":{\"official\":\"پادشاهی مراکش\",\"common\":\"مراکش\"}},\"latlng\":[32,-5],\"landlocked\":false,\"borders\":[\"DZA\",\"ESH\",\"ESP\"],\"area\":446550,\"flag\":\"🇲🇦\",\"demonyms\":{\"eng\":{\"f\":\"Moroccan\",\"m\":\"Moroccan\"},\"fra\":{\"f\":\"Marocaine\",\"m\":\"Marocain\"}}},{\"name\":{\"common\":\"Monaco\",\"official\":\"Principality of Monaco\",\"native\":{\"fra\":{\"official\":\"Principauté de Monaco\",\"common\":\"Monaco\"}}},\"tld\":[\".mc\"],\"cca2\":\"MC\",\"ccn3\":\"492\",\"cca3\":\"MCO\",\"cioc\":\"MON\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"77\"]},\"capital\":[\"Monaco\"],\"altSpellings\":[\"MC\",\"Principality of Monaco\",\"Principauté de Monaco\"],\"region\":\"Europe\",\"subregion\":\"Western Europe\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Monacké knížectví\",\"common\":\"Monako\"},\"deu\":{\"official\":\"Fürstentum Monaco\",\"common\":\"Monaco\"},\"fra\":{\"official\":\"Principauté de Monaco\",\"common\":\"Monaco\"},\"hrv\":{\"official\":\"Kneževina Monako\",\"common\":\"Monako\"},\"ita\":{\"official\":\"Principato di Monaco\",\"common\":\"Principato di Monaco\"},\"jpn\":{\"official\":\"モナコ公国\",\"common\":\"モナコ\"},\"nld\":{\"official\":\"Vorstendom Monaco\",\"common\":\"Monaco\"},\"por\":{\"official\":\"Principado do Mónaco\",\"common\":\"Mónaco\"},\"rus\":{\"official\":\"Княжество Монако\",\"common\":\"Монако\"},\"slk\":{\"official\":\"Monacké kniežatstvo\",\"common\":\"Monako\"},\"spa\":{\"official\":\"Principado de Mónaco\",\"common\":\"Mónaco\"},\"fin\":{\"official\":\"Monacon ruhtinaskunta\",\"common\":\"Monaco\"},\"est\":{\"official\":\"Monaco Vürstiriik\",\"common\":\"Monaco\"},\"zho\":{\"official\":\"摩纳哥公国\",\"common\":\"摩纳哥\"},\"pol\":{\"official\":\"Księstwo Monako\",\"common\":\"Monako\"},\"urd\":{\"official\":\"جمہوریہ مناکو\",\"common\":\"موناکو\"},\"kor\":{\"official\":\"모나코 공국\",\"common\":\"모나코\"},\"per\":{\"official\":\"شاهزادهنشین موناکو\",\"common\":\"موناکو\"}},\"latlng\":[43.73333333,7.4],\"landlocked\":false,\"borders\":[\"FRA\"],\"area\":2.02,\"flag\":\"🇲🇨\",\"demonyms\":{\"eng\":{\"f\":\"Monegasque\",\"m\":\"Monegasque\"},\"fra\":{\"f\":\"Monégasque\",\"m\":\"Monégasque\"}}},{\"name\":{\"common\":\"Moldova\",\"official\":\"Republic of Moldova\",\"native\":{\"ron\":{\"official\":\"Republica Moldova\",\"common\":\"Moldova\"}}},\"tld\":[\".md\"],\"cca2\":\"MD\",\"ccn3\":\"498\",\"cca3\":\"MDA\",\"cioc\":\"MDA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MDL\":{\"name\":\"Moldovan leu\",\"symbol\":\"L\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"73\"]},\"capital\":[\"Chișinău\"],\"altSpellings\":[\"MD\",\"Moldova, Republic of\",\"Republic of Moldova\",\"Republica Moldova\"],\"region\":\"Europe\",\"subregion\":\"Eastern Europe\",\"languages\":{\"ron\":\"Moldavian\"},\"translations\":{\"ces\":{\"official\":\"Moldavská republika\",\"common\":\"Moldavsko\"},\"deu\":{\"official\":\"Republik Moldau\",\"common\":\"Moldawien\"},\"fra\":{\"official\":\"République de Moldavie\",\"common\":\"Moldavie\"},\"hrv\":{\"official\":\"Moldavija\",\"common\":\"Moldova\"},\"ita\":{\"official\":\"Repubblica di Moldova\",\"common\":\"Moldavia\"},\"jpn\":{\"official\":\"モルドバ共和国\",\"common\":\"モルドバ共和国\"},\"nld\":{\"official\":\"Republiek Moldavië\",\"common\":\"Moldavië\"},\"por\":{\"official\":\"República da Moldávia\",\"common\":\"Moldávia\"},\"rus\":{\"official\":\"Молдова\",\"common\":\"Молдавия\"},\"slk\":{\"official\":\"Moldavská republika\",\"common\":\"Moldavsko\"},\"spa\":{\"official\":\"República de Moldova\",\"common\":\"Moldavia\"},\"fin\":{\"official\":\"Moldovan tasavalta\",\"common\":\"Moldova\"},\"est\":{\"official\":\"Moldova Vabariik\",\"common\":\"Moldova\"},\"zho\":{\"official\":\"摩尔多瓦共和国\",\"common\":\"摩尔多瓦\"},\"pol\":{\"official\":\"Republika Mołdawii\",\"common\":\"Mołdawia\"},\"urd\":{\"official\":\"جمہوریہ مالدووا\",\"common\":\"مالدووا\"},\"kor\":{\"official\":\"몰도바 공화국\",\"common\":\"몰도바\"},\"per\":{\"official\":\"جمهوری مولداوی\",\"common\":\"مولداوی\"}},\"latlng\":[47,29],\"landlocked\":true,\"borders\":[\"ROU\",\"UKR\"],\"area\":33846,\"flag\":\"🇲🇩\",\"demonyms\":{\"eng\":{\"f\":\"Moldovan\",\"m\":\"Moldovan\"},\"fra\":{\"f\":\"Moldave\",\"m\":\"Moldave\"}}},{\"name\":{\"common\":\"Madagascar\",\"official\":\"Republic of Madagascar\",\"native\":{\"fra\":{\"official\":\"République de Madagascar\",\"common\":\"Madagascar\"},\"mlg\":{\"official\":\"Repoblikan\\'i Madagasikara\",\"common\":\"Madagasikara\"}}},\"tld\":[\".mg\"],\"cca2\":\"MG\",\"ccn3\":\"450\",\"cca3\":\"MDG\",\"cioc\":\"MAD\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MGA\":{\"name\":\"Malagasy ariary\",\"symbol\":\"Ar\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"61\"]},\"capital\":[\"Antananarivo\"],\"altSpellings\":[\"MG\",\"Republic of Madagascar\",\"Repoblikan\\'i Madagasikara\",\"République de Madagascar\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"fra\":\"French\",\"mlg\":\"Malagasy\"},\"translations\":{\"ces\":{\"official\":\"Madagaskarská republika\",\"common\":\"Madagaskar\"},\"deu\":{\"official\":\"Republik Madagaskar\",\"common\":\"Madagaskar\"},\"fra\":{\"official\":\"République de Madagascar\",\"common\":\"Madagascar\"},\"hrv\":{\"official\":\"Republika Madagaskar\",\"common\":\"Madagaskar\"},\"ita\":{\"official\":\"Repubblica del Madagascar\",\"common\":\"Madagascar\"},\"jpn\":{\"official\":\"マダガスカル共和国\",\"common\":\"マダガスカル\"},\"nld\":{\"official\":\"Republiek Madagaskar\",\"common\":\"Madagaskar\"},\"por\":{\"official\":\"República de Madagáscar\",\"common\":\"Madagáscar\"},\"rus\":{\"official\":\"Республика Мадагаскар\",\"common\":\"Мадагаскар\"},\"slk\":{\"official\":\"Madagaskarská republika\",\"common\":\"Madagaskar\"},\"spa\":{\"official\":\"República de Madagascar\",\"common\":\"Madagascar\"},\"fin\":{\"official\":\"Madagaskarin tasavalta\",\"common\":\"Madagaskar\"},\"est\":{\"official\":\"Madagaskari Vabariik\",\"common\":\"Madagaskar\"},\"zho\":{\"official\":\"马达加斯加共和国\",\"common\":\"马达加斯加\"},\"pol\":{\"official\":\"Republika Madagaskaru\",\"common\":\"Madagaskar\"},\"urd\":{\"official\":\"جمہوریہ مڈغاسکر\",\"common\":\"مڈغاسکر\"},\"kor\":{\"official\":\"마다가스카르 공화국\",\"common\":\"마다가스카르\"},\"per\":{\"official\":\"جمهوری ماداگاسکار\",\"common\":\"ماداگاسکار\"}},\"latlng\":[-20,47],\"landlocked\":false,\"borders\":[],\"area\":587041,\"flag\":\"🇲🇬\",\"demonyms\":{\"eng\":{\"f\":\"Malagasy\",\"m\":\"Malagasy\"},\"fra\":{\"f\":\"Malgache\",\"m\":\"Malgache\"}}},{\"name\":{\"common\":\"Maldives\",\"official\":\"Republic of the Maldives\",\"native\":{\"div\":{\"official\":\"ދިވެހިރާއްޖޭގެ ޖުމްހޫރިއްޔާ\",\"common\":\"ދިވެހިރާއްޖޭގެ\"}}},\"tld\":[\".mv\"],\"cca2\":\"MV\",\"ccn3\":\"462\",\"cca3\":\"MDV\",\"cioc\":\"MDV\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MVR\":{\"name\":\"Maldivian rufiyaa\",\"symbol\":\".ރ\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"60\"]},\"capital\":[\"Malé\"],\"altSpellings\":[\"MV\",\"Maldive Islands\",\"Republic of the Maldives\",\"Dhivehi Raajjeyge Jumhooriyya\"],\"region\":\"Asia\",\"subregion\":\"Southern Asia\",\"languages\":{\"div\":\"Maldivian\"},\"translations\":{\"ces\":{\"official\":\"Maledivská republika\",\"common\":\"Maledivy\"},\"deu\":{\"official\":\"Republik Malediven\",\"common\":\"Malediven\"},\"fra\":{\"official\":\"République des Maldives\",\"common\":\"Maldives\"},\"hrv\":{\"official\":\"Republika Maldivi\",\"common\":\"Maldivi\"},\"ita\":{\"official\":\"Repubblica delle Maldive\",\"common\":\"Maldive\"},\"jpn\":{\"official\":\"モルディブ共和国\",\"common\":\"モルディブ\"},\"nld\":{\"official\":\"Republiek van de Malediven\",\"common\":\"Maldiven\"},\"por\":{\"official\":\"República das Maldivas\",\"common\":\"Maldivas\"},\"spa\":{\"official\":\"República de las Maldivas\",\"common\":\"Maldivas\"},\"rus\":{\"official\":\"Республика Мальдивы\",\"common\":\"Мальдивы\"},\"slk\":{\"official\":\"Maldivská republika\",\"common\":\"Maldivy\"},\"fin\":{\"official\":\"Malediivien tasavalta\",\"common\":\"Malediivit\"},\"est\":{\"official\":\"Maldiivi Vabariik\",\"common\":\"Maldiivid\"},\"zho\":{\"official\":\"马尔代夫共和国\",\"common\":\"马尔代夫\"},\"pol\":{\"official\":\"Republika Malediwów\",\"common\":\"Malediwy\"},\"urd\":{\"official\":\"جمہوریہ مالدیپ\",\"common\":\"مالدیپ\"},\"kor\":{\"official\":\"몰디브 공화국\",\"common\":\"몰디브\"},\"per\":{\"official\":\"جمهوری مالدیو\",\"common\":\"مالدیو\"}},\"latlng\":[3.25,73],\"landlocked\":false,\"borders\":[],\"area\":300,\"flag\":\"🇲🇻\",\"demonyms\":{\"eng\":{\"f\":\"Maldivan\",\"m\":\"Maldivan\"},\"fra\":{\"f\":\"Maldivienne\",\"m\":\"Maldivien\"}}},{\"name\":{\"common\":\"Mexico\",\"official\":\"United Mexican States\",\"native\":{\"spa\":{\"official\":\"Estados Unidos Mexicanos\",\"common\":\"México\"}}},\"tld\":[\".mx\"],\"cca2\":\"MX\",\"ccn3\":\"484\",\"cca3\":\"MEX\",\"cioc\":\"MEX\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MXN\":{\"name\":\"Mexican peso\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"2\"]},\"capital\":[\"Mexico City\"],\"altSpellings\":[\"MX\",\"Mexicanos\",\"United Mexican States\",\"Estados Unidos Mexicanos\"],\"region\":\"Americas\",\"subregion\":\"North America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Spojené státy mexické\",\"common\":\"Mexiko\"},\"deu\":{\"official\":\"Vereinigte Mexikanische Staaten\",\"common\":\"Mexiko\"},\"fra\":{\"official\":\"États-Unis du Mexique\",\"common\":\"Mexique\"},\"hrv\":{\"official\":\"Sjedinjene Meksičke Države\",\"common\":\"Meksiko\"},\"ita\":{\"official\":\"Stati Uniti del Messico\",\"common\":\"Messico\"},\"jpn\":{\"official\":\"メキシコ合衆国\",\"common\":\"メキシコ\"},\"nld\":{\"official\":\"Verenigde Mexicaanse Staten\",\"common\":\"Mexico\"},\"por\":{\"official\":\"Estados Unidos Mexicanos\",\"common\":\"México\"},\"rus\":{\"official\":\"Мексиканские Соединённые Штаты\",\"common\":\"Мексика\"},\"slk\":{\"official\":\"Spojené štášy mexické\",\"common\":\"Mexiko\"},\"spa\":{\"official\":\"Estados Unidos Mexicanos\",\"common\":\"México\"},\"fin\":{\"official\":\"Meksikon yhdysvallat\",\"common\":\"Meksiko\"},\"est\":{\"official\":\"Mehhiko Ühendriigid\",\"common\":\"Mehhiko\"},\"zho\":{\"official\":\"墨西哥合众国\",\"common\":\"墨西哥\"},\"pol\":{\"official\":\"Meksykańskie Stany Zjednoczone\",\"common\":\"Meksyk\"},\"urd\":{\"official\":\"ریاستہائے متحدہ میکسیکو\",\"common\":\"میکسیکو\"},\"kor\":{\"official\":\"멕시코 합중국\",\"common\":\"멕시코\"},\"per\":{\"official\":\"ایالات متحد مکزیک\",\"common\":\"مکزیک\"}},\"latlng\":[23,-102],\"landlocked\":false,\"borders\":[\"BLZ\",\"GTM\",\"USA\"],\"area\":1964375,\"flag\":\"🇲🇽\",\"demonyms\":{\"eng\":{\"f\":\"Mexican\",\"m\":\"Mexican\"},\"fra\":{\"f\":\"Mexicaine\",\"m\":\"Mexicain\"}}},{\"name\":{\"common\":\"Marshall Islands\",\"official\":\"Republic of the Marshall Islands\",\"native\":{\"eng\":{\"official\":\"Republic of the Marshall Islands\",\"common\":\"Marshall Islands\"},\"mah\":{\"official\":\"Republic of the Marshall Islands\",\"common\":\"M̧ajeļ\"}}},\"tld\":[\".mh\"],\"cca2\":\"MH\",\"ccn3\":\"584\",\"cca3\":\"MHL\",\"cioc\":\"MHL\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"92\"]},\"capital\":[\"Majuro\"],\"altSpellings\":[\"MH\",\"Republic of the Marshall Islands\",\"Aolepān Aorōkin M̧ajeļ\"],\"region\":\"Oceania\",\"subregion\":\"Micronesia\",\"languages\":{\"eng\":\"English\",\"mah\":\"Marshallese\"},\"translations\":{\"ces\":{\"official\":\"Republika Marshallovy ostrovy\",\"common\":\"Marshallovy ostrovy\"},\"deu\":{\"official\":\"Republik Marshallinseln\",\"common\":\"Marshallinseln\"},\"fra\":{\"official\":\"République des Îles Marshall\",\"common\":\"Îles Marshall\"},\"hrv\":{\"official\":\"Republika Maršalovi Otoci\",\"common\":\"Maršalovi Otoci\"},\"ita\":{\"official\":\"Repubblica delle Isole Marshall\",\"common\":\"Isole Marshall\"},\"jpn\":{\"official\":\"マーシャル諸島共和国\",\"common\":\"マーシャル諸島\"},\"nld\":{\"official\":\"Republiek van de Marshall-eilanden\",\"common\":\"Marshalleilanden\"},\"por\":{\"official\":\"República das Ilhas Marshall\",\"common\":\"Ilhas Marshall\"},\"rus\":{\"official\":\"Республика Маршалловы острова\",\"common\":\"Маршалловы Острова\"},\"slk\":{\"official\":\"Republika Marshallových ostrovov\",\"common\":\"Marshallove ostrovy\"},\"spa\":{\"official\":\"República de las Islas Marshall\",\"common\":\"Islas Marshall\"},\"fin\":{\"official\":\"Marshallinsaarten tasavalta\",\"common\":\"Marshallinsaaret\"},\"est\":{\"official\":\"Marshalli Saarte Vabariik\",\"common\":\"Marshalli Saared\"},\"zho\":{\"official\":\"马绍尔群岛共和国\",\"common\":\"马绍尔群岛\"},\"pol\":{\"official\":\"Republika Wysp Marshalla\",\"common\":\"Wyspy Marshalla\"},\"urd\":{\"official\":\"جمہوریہ جزائر مارشل\",\"common\":\"جزائر مارشل\"},\"kor\":{\"official\":\"마셜 제도 공화국\",\"common\":\"마셜 제도\"},\"per\":{\"official\":\"جمهوری جزایر مارشال\",\"common\":\"جزایر مارشال\"}},\"latlng\":[9,168],\"landlocked\":false,\"borders\":[],\"area\":181,\"flag\":\"🇲🇭\",\"demonyms\":{\"eng\":{\"f\":\"Marshallese\",\"m\":\"Marshallese\"},\"fra\":{\"f\":\"Marshallaise\",\"m\":\"Marshallais\"}}},{\"name\":{\"common\":\"North Macedonia\",\"official\":\"Republic of North Macedonia\",\"native\":{\"mkd\":{\"official\":\"Република Северна Македонија\",\"common\":\"Македонија\"}}},\"tld\":[\".mk\"],\"cca2\":\"MK\",\"ccn3\":\"807\",\"cca3\":\"MKD\",\"cioc\":\"MKD\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MKD\":{\"name\":\"denar\",\"symbol\":\"den\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"89\"]},\"capital\":[\"Skopje\"],\"altSpellings\":[\"MK\",\"The former Yugoslav Republic of Macedonia\",\"Republic of North Macedonia\",\"Macedonia, The Former Yugoslav Republic of\",\"Република Северна Македонија\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"mkd\":\"Macedonian\"},\"translations\":{\"ces\":{\"official\":\"Republika Severní Makedonie\",\"common\":\"Severní Makedonie\"},\"deu\":{\"official\":\"Republik Nordmazedonien\",\"common\":\"Nordmazedonien\"},\"fra\":{\"official\":\"République de Macédoine du Nord\",\"common\":\"Macédoine du Nord\"},\"hrv\":{\"official\":\"Republika Sjeverna Makedonija\",\"common\":\"Sjeverna Makedonija\"},\"ita\":{\"official\":\"Repubblica di Macedonia del Nord\",\"common\":\"Macedonia del Nord\"},\"jpn\":{\"official\":\"北マケドニア共和国\",\"common\":\"北マケドニア \"},\"nld\":{\"official\":\"Republiek Noord-Macedonië\",\"common\":\"Noord-Macedonië\"},\"por\":{\"official\":\"República da Macedônia do Norte\",\"common\":\"Macedónia do Norte\"},\"rus\":{\"official\":\"Республика Северная Македония\",\"common\":\"Северная Македония\"},\"slk\":{\"official\":\"Severomacedónska republika\",\"common\":\"Severné Macedónsko\"},\"spa\":{\"official\":\"República de Macedonia del Norte\",\"common\":\"Macedonia del Norte\"},\"fin\":{\"official\":\"Pohjois-Makedonian tasavalta\",\"common\":\"Pohjois-Makedonia\"},\"est\":{\"official\":\"Põhja-Makedoonia Vabariik\",\"common\":\"Põhja-Makedoonia\"},\"zho\":{\"official\":\"北馬其頓共和國\",\"common\":\"北馬其頓\"},\"pol\":{\"official\":\"Republika Macedonii Północnej\",\"common\":\"Macedonia Północna\"},\"urd\":{\"official\":\"جمہوریہ مقدونیہ\",\"common\":\"شمالی مقدونیہ\"},\"kor\":{\"official\":\"북마케도니아 공화국\",\"common\":\"북마케도니아\"},\"per\":{\"official\":\"جمهوری مقدونیه شمالی\",\"common\":\"مقدونیه شمالی\"}},\"latlng\":[41.83333333,22],\"landlocked\":true,\"borders\":[\"ALB\",\"BGR\",\"GRC\",\"UNK\",\"SRB\"],\"area\":25713,\"flag\":\"🇲🇰\",\"demonyms\":{\"eng\":{\"f\":\"Macedonian\",\"m\":\"Macedonian\"},\"fra\":{\"f\":\"Macédonienne\",\"m\":\"Macédonien\"}}},{\"name\":{\"common\":\"Mali\",\"official\":\"Republic of Mali\",\"native\":{\"fra\":{\"official\":\"République du Mali\",\"common\":\"Mali\"}}},\"tld\":[\".ml\"],\"cca2\":\"ML\",\"ccn3\":\"466\",\"cca3\":\"MLI\",\"cioc\":\"MLI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XOF\":{\"name\":\"West African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"23\"]},\"capital\":[\"Bamako\"],\"altSpellings\":[\"ML\",\"Republic of Mali\",\"République du Mali\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Republika Mali\",\"common\":\"Mali\"},\"deu\":{\"official\":\"Republik Mali\",\"common\":\"Mali\"},\"fra\":{\"official\":\"République du Mali\",\"common\":\"Mali\"},\"hrv\":{\"official\":\"Republika Mali\",\"common\":\"Mali\"},\"ita\":{\"official\":\"Repubblica del Mali\",\"common\":\"Mali\"},\"jpn\":{\"official\":\"マリ共和国\",\"common\":\"マリ\"},\"nld\":{\"official\":\"Republiek Mali\",\"common\":\"Mali\"},\"por\":{\"official\":\"República do Mali\",\"common\":\"Mali\"},\"rus\":{\"official\":\"Республика Мали\",\"common\":\"Мали\"},\"slk\":{\"official\":\"Malijská republika\",\"common\":\"Mali\"},\"spa\":{\"official\":\"República de Malí\",\"common\":\"Mali\"},\"fin\":{\"official\":\"Malin tasavalta\",\"common\":\"Mali\"},\"est\":{\"official\":\"Mali Vabariik\",\"common\":\"Mali\"},\"zho\":{\"official\":\"马里共和国\",\"common\":\"马里\"},\"pol\":{\"official\":\"Republika Mali\",\"common\":\"Mali\"},\"urd\":{\"official\":\"جمہوریہ مالی\",\"common\":\"مالی\"},\"kor\":{\"official\":\"말리 공화국\",\"common\":\"말리\"},\"per\":{\"official\":\"جمهوری مالی\",\"common\":\"مالی\"}},\"latlng\":[17,-4],\"landlocked\":true,\"borders\":[\"DZA\",\"BFA\",\"GIN\",\"CIV\",\"MRT\",\"NER\",\"SEN\"],\"area\":1240192,\"flag\":\"🇲🇱\",\"demonyms\":{\"eng\":{\"f\":\"Malian\",\"m\":\"Malian\"},\"fra\":{\"f\":\"Malienne\",\"m\":\"Malien\"}}},{\"name\":{\"common\":\"Malta\",\"official\":\"Republic of Malta\",\"native\":{\"eng\":{\"official\":\"Republic of Malta\",\"common\":\"Malta\"},\"mlt\":{\"official\":\"Repubblika ta \\' Malta\",\"common\":\"Malta\"}}},\"tld\":[\".mt\"],\"cca2\":\"MT\",\"ccn3\":\"470\",\"cca3\":\"MLT\",\"cioc\":\"MLT\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"56\"]},\"capital\":[\"Valletta\"],\"altSpellings\":[\"MT\",\"Republic of Malta\",\"Repubblika ta\\' Malta\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"eng\":\"English\",\"mlt\":\"Maltese\"},\"translations\":{\"ces\":{\"official\":\"Maltská republika\",\"common\":\"Malta\"},\"deu\":{\"official\":\"Republik Malta\",\"common\":\"Malta\"},\"fra\":{\"official\":\"République de Malte\",\"common\":\"Malte\"},\"hrv\":{\"official\":\"Republika Malta\",\"common\":\"Malta\"},\"ita\":{\"official\":\"Repubblica di Malta\",\"common\":\"Malta\"},\"jpn\":{\"official\":\"マルタ共和国\",\"common\":\"マルタ\"},\"nld\":{\"official\":\"Republiek Malta\",\"common\":\"Malta\"},\"por\":{\"official\":\"República de Malta\",\"common\":\"Malta\"},\"rus\":{\"official\":\"Республика Мальта\",\"common\":\"Мальта\"},\"slk\":{\"official\":\"Maltská republika\",\"common\":\"Malta\"},\"spa\":{\"official\":\"República de Malta\",\"common\":\"Malta\"},\"fin\":{\"official\":\"Maltan tasavalta\",\"common\":\"Malta\"},\"est\":{\"official\":\"Malta Vabariik\",\"common\":\"Malta\"},\"zho\":{\"official\":\"马耳他共和国\",\"common\":\"马耳他\"},\"pol\":{\"official\":\"Republika Malty\",\"common\":\"Malta\"},\"urd\":{\"official\":\"جمہوریہ مالٹا\",\"common\":\"مالٹا\"},\"kor\":{\"official\":\"몰타 공화국\",\"common\":\"몰타\"},\"per\":{\"official\":\"جمهوری مالت\",\"common\":\"مالت\"}},\"latlng\":[35.83333333,14.58333333],\"landlocked\":false,\"borders\":[],\"area\":316,\"flag\":\"🇲🇹\",\"demonyms\":{\"eng\":{\"f\":\"Maltese\",\"m\":\"Maltese\"},\"fra\":{\"f\":\"Maltaise\",\"m\":\"Maltais\"}}},{\"name\":{\"common\":\"Myanmar\",\"official\":\"Republic of the Union of Myanmar\",\"native\":{\"mya\":{\"official\":\"ပြည်ထောင်စု သမ္မတ မြန်မာနိုင်ငံတော်\",\"common\":\"မြန်မာ\"}}},\"tld\":[\".mm\"],\"cca2\":\"MM\",\"ccn3\":\"104\",\"cca3\":\"MMR\",\"cioc\":\"MYA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MMK\":{\"name\":\"Burmese kyat\",\"symbol\":\"Ks\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"5\"]},\"capital\":[\"Naypyidaw\"],\"altSpellings\":[\"MM\",\"Burma\",\"Republic of the Union of Myanmar\",\"Pyidaunzu Thanmăda Myăma Nainngandaw\"],\"region\":\"Asia\",\"subregion\":\"South-Eastern Asia\",\"languages\":{\"mya\":\"Burmese\"},\"translations\":{\"ces\":{\"official\":\"Republika Myanmarský svaz\",\"common\":\"Myanmar\"},\"deu\":{\"official\":\"Republik der Union Myanmar\",\"common\":\"Myanmar\"},\"fra\":{\"official\":\"République de l\\'Union du Myanmar\",\"common\":\"Birmanie\"},\"hrv\":{\"official\":\"Republika Unije Mijanmar\",\"common\":\"Mijanmar\"},\"ita\":{\"official\":\"Repubblica dell\\'Unione di Myanmar\",\"common\":\"Birmania\"},\"jpn\":{\"official\":\"ミャンマー連邦共和国\",\"common\":\"ミャンマー\"},\"nld\":{\"official\":\"Republiek van de Unie van Myanmar\",\"common\":\"Myanmar\"},\"por\":{\"official\":\"República da União de Myanmar\",\"common\":\"Myanmar\"},\"rus\":{\"official\":\"Республика Союза Мьянма\",\"common\":\"Мьянма\"},\"slk\":{\"official\":\"Mjanmarská zväzová republika\",\"common\":\"Mjanmarsko\"},\"spa\":{\"official\":\"República de la Unión de Myanmar\",\"common\":\"Myanmar\"},\"fin\":{\"official\":\"Myanmarin liiton tasavalta\",\"common\":\"Myanmar\"},\"est\":{\"official\":\"Myanmari Liidu Vabariik\",\"common\":\"Myanmar\"},\"zho\":{\"official\":\"缅甸联邦共和国\",\"common\":\"缅甸\"},\"pol\":{\"official\":\"Republika Związku Mjanmy\",\"common\":\"Mjanma\"},\"urd\":{\"official\":\"متحدہ جمہوریہ میانمار\",\"common\":\"میانمار\"},\"kor\":{\"official\":\"미얀마 연방 공화국\",\"common\":\"미얀마\"},\"per\":{\"official\":\"اتحادیه جمهوری میانمار\",\"common\":\"میانمار\"}},\"latlng\":[22,98],\"landlocked\":false,\"borders\":[\"BGD\",\"CHN\",\"IND\",\"LAO\",\"THA\"],\"area\":676578,\"flag\":\"🇲🇲\",\"demonyms\":{\"eng\":{\"f\":\"Burmese\",\"m\":\"Burmese\"},\"fra\":{\"f\":\"Birmane\",\"m\":\"Birman\"}}},{\"name\":{\"common\":\"Montenegro\",\"official\":\"Montenegro\",\"native\":{\"srp\":{\"official\":\"Црна Гора\",\"common\":\"Црна Гора\"}}},\"tld\":[\".me\"],\"cca2\":\"ME\",\"ccn3\":\"499\",\"cca3\":\"MNE\",\"cioc\":\"MNE\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"82\"]},\"capital\":[\"Podgorica\"],\"altSpellings\":[\"ME\",\"Crna Gora\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"srp\":\"Montenegrin\"},\"translations\":{\"ces\":{\"official\":\"Černá Hora\",\"common\":\"Černá Hora\"},\"deu\":{\"official\":\"Montenegro\",\"common\":\"Montenegro\"},\"fra\":{\"official\":\"Monténégro\",\"common\":\"Monténégro\"},\"hrv\":{\"official\":\"Crna Gora\",\"common\":\"Crna Gora\"},\"ita\":{\"official\":\"Montenegro\",\"common\":\"Montenegro\"},\"jpn\":{\"official\":\"モンテネグロ\",\"common\":\"モンテネグロ\"},\"nld\":{\"official\":\"Montenegro\",\"common\":\"Montenegro\"},\"por\":{\"official\":\"Montenegro\",\"common\":\"Montenegro\"},\"rus\":{\"official\":\"Черногория\",\"common\":\"Черногория\"},\"slk\":{\"official\":\"Čierna Hora\",\"common\":\"Čierna Hora\"},\"spa\":{\"official\":\"Montenegro\",\"common\":\"Montenegro\"},\"fin\":{\"official\":\"Montenegro\",\"common\":\"Montenegro\"},\"est\":{\"official\":\"Montenegro\",\"common\":\"Montenegro\"},\"zho\":{\"official\":\"黑山\",\"common\":\"黑山\"},\"pol\":{\"official\":\"Czarnogóra\",\"common\":\"Czarnogóra\"},\"urd\":{\"official\":\"مونٹینیگرو\",\"common\":\"مونٹینیگرو\"},\"kor\":{\"official\":\"몬테네그로\",\"common\":\"몬테네그로\"},\"per\":{\"official\":\"مونتهنگرو\",\"common\":\"مونتهنگرو\"}},\"latlng\":[42.5,19.3],\"landlocked\":false,\"borders\":[\"ALB\",\"BIH\",\"HRV\",\"UNK\",\"SRB\"],\"area\":13812,\"flag\":\"🇲🇪\",\"demonyms\":{\"eng\":{\"f\":\"Montenegrin\",\"m\":\"Montenegrin\"},\"fra\":{\"f\":\"Monténégrine\",\"m\":\"Monténégrin\"}}},{\"name\":{\"common\":\"Mongolia\",\"official\":\"Mongolia\",\"native\":{\"mon\":{\"official\":\"Монгол улс\",\"common\":\"Монгол улс\"}}},\"tld\":[\".mn\"],\"cca2\":\"MN\",\"ccn3\":\"496\",\"cca3\":\"MNG\",\"cioc\":\"MGL\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MNT\":{\"name\":\"Mongolian tögrög\",\"symbol\":\"₮\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"76\"]},\"capital\":[\"Ulan Bator\"],\"altSpellings\":[\"MN\"],\"region\":\"Asia\",\"subregion\":\"Eastern Asia\",\"languages\":{\"mon\":\"Mongolian\"},\"translations\":{\"ces\":{\"official\":\"Stát Mongolsko\",\"common\":\"Mongolsko\"},\"deu\":{\"official\":\"Mongolei\",\"common\":\"Mongolei\"},\"fra\":{\"official\":\"Mongolie\",\"common\":\"Mongolie\"},\"hrv\":{\"official\":\"Mongolija\",\"common\":\"Mongolija\"},\"ita\":{\"official\":\"Mongolia\",\"common\":\"Mongolia\"},\"jpn\":{\"official\":\"モンゴル\",\"common\":\"モンゴル\"},\"nld\":{\"official\":\"Mongolië\",\"common\":\"Mongolië\"},\"por\":{\"official\":\"Mongólia\",\"common\":\"Mongólia\"},\"rus\":{\"official\":\"Монголия\",\"common\":\"Монголия\"},\"slk\":{\"official\":\"Mongolsko\",\"common\":\"Mongolsko\"},\"spa\":{\"official\":\"Mongolia\",\"common\":\"Mongolia\"},\"fin\":{\"official\":\"Mongolian tasavalta\",\"common\":\"Mongolia\"},\"est\":{\"official\":\"Mongoolia\",\"common\":\"Mongoolia\"},\"zho\":{\"official\":\"蒙古\",\"common\":\"蒙古\"},\"pol\":{\"official\":\"Mongolia\",\"common\":\"Mongolia\"},\"urd\":{\"official\":\"منگولیا\",\"common\":\"منگولیا\"},\"kor\":{\"official\":\"몽골\",\"common\":\"몽골국\"},\"per\":{\"official\":\"مغولستان\",\"common\":\"مغولستان\"}},\"latlng\":[46,105],\"landlocked\":true,\"borders\":[\"CHN\",\"RUS\"],\"area\":1564110,\"flag\":\"🇲🇳\",\"demonyms\":{\"eng\":{\"f\":\"Mongolian\",\"m\":\"Mongolian\"},\"fra\":{\"f\":\"Mongole\",\"m\":\"Mongol\"}}},{\"name\":{\"common\":\"Northern Mariana Islands\",\"official\":\"Commonwealth of the Northern Mariana Islands\",\"native\":{\"cal\":{\"official\":\"Commonwealth of the Northern Mariana Islands\",\"common\":\"Northern Mariana Islands\"},\"cha\":{\"official\":\"Sankattan Siha Na Islas Mariånas\",\"common\":\"Na Islas Mariånas\"},\"eng\":{\"official\":\"Commonwealth of the Northern Mariana Islands\",\"common\":\"Northern Mariana Islands\"}}},\"tld\":[\".mp\"],\"cca2\":\"MP\",\"ccn3\":\"580\",\"cca3\":\"MNP\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"670\"]},\"capital\":[\"Saipan\"],\"altSpellings\":[\"MP\",\"Commonwealth of the Northern Mariana Islands\",\"Sankattan Siha Na Islas Mariånas\"],\"region\":\"Oceania\",\"subregion\":\"Micronesia\",\"languages\":{\"cal\":\"Carolinian\",\"cha\":\"Chamorro\",\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Společenství Severních Marian\",\"common\":\"Severní Mariany\"},\"deu\":{\"official\":\"Commonwealth der Nördlichen Marianen\",\"common\":\"Nördliche Marianen\"},\"fra\":{\"official\":\"Commonwealth des îles Mariannes du Nord\",\"common\":\"Îles Mariannes du Nord\"},\"hrv\":{\"official\":\"Zajednica je Sjeverni Marijanski otoci\",\"common\":\"Sjevernomarijanski otoci\"},\"ita\":{\"official\":\"Commonwealth delle Isole Marianne Settentrionali\",\"common\":\"Isole Marianne Settentrionali\"},\"jpn\":{\"official\":\"北マリアナ諸島\",\"common\":\"北マリアナ諸島\"},\"nld\":{\"official\":\"Commonwealth van de Noordelijke Marianen\",\"common\":\"Noordelijke Marianeneilanden\"},\"por\":{\"official\":\"Comunidade das Ilhas Marianas do Norte\",\"common\":\"Marianas Setentrionais\"},\"rus\":{\"official\":\"Содружество Северных Марианских островов\",\"common\":\"Северные Марианские острова\"},\"slk\":{\"official\":\"Spoločenstvo ostrovov Severné Mariány\",\"common\":\"Severné Mariány\"},\"spa\":{\"official\":\"Mancomunidad de las Islas Marianas del Norte\",\"common\":\"Islas Marianas del Norte\"},\"fin\":{\"official\":\"Pohjois-Mariaanit\",\"common\":\"Pohjois-Mariaanit\"},\"est\":{\"official\":\"Põhja-Mariaani Ühendus\",\"common\":\"Põhja-Mariaanid\"},\"zho\":{\"official\":\"北马里亚纳群岛\",\"common\":\"北马里亚纳群岛\"},\"pol\":{\"official\":\"Wspólnota Marianów Północnych\",\"common\":\"Mariany Północne\"},\"urd\":{\"official\":\"دولتِ مشترکہ جزائر شمالی ماریانا\",\"common\":\"جزائر شمالی ماریانا\"},\"kor\":{\"official\":\"북마리아나 제도\",\"common\":\"북마리아나 제도\"},\"per\":{\"official\":\"جزایر ماریانای شمالی\",\"common\":\"جزایر ماریانای شمالی\"}},\"latlng\":[15.2,145.75],\"landlocked\":false,\"borders\":[],\"area\":464,\"flag\":\"🇲🇵\",\"demonyms\":{\"eng\":{\"f\":\"American\",\"m\":\"American\"},\"fra\":{\"f\":\"Américaine\",\"m\":\"Américan\"}}},{\"name\":{\"common\":\"Mozambique\",\"official\":\"Republic of Mozambique\",\"native\":{\"por\":{\"official\":\"República de Moçambique\",\"common\":\"Moçambique\"}}},\"tld\":[\".mz\"],\"cca2\":\"MZ\",\"ccn3\":\"508\",\"cca3\":\"MOZ\",\"cioc\":\"MOZ\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MZN\":{\"name\":\"Mozambican metical\",\"symbol\":\"MT\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"58\"]},\"capital\":[\"Maputo\"],\"altSpellings\":[\"MZ\",\"Republic of Mozambique\",\"República de Moçambique\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"por\":\"Portuguese\"},\"translations\":{\"ces\":{\"official\":\"Mosambická republika\",\"common\":\"Mosambik\"},\"deu\":{\"official\":\"Republik Mosambik\",\"common\":\"Mosambik\"},\"fra\":{\"official\":\"République du Mozambique\",\"common\":\"Mozambique\"},\"hrv\":{\"official\":\"Republika Mozambiku\",\"common\":\"Mozambik\"},\"ita\":{\"official\":\"Repubblica del Mozambico\",\"common\":\"Mozambico\"},\"jpn\":{\"official\":\"モザンビーク共和国\",\"common\":\"モザンビーク\"},\"nld\":{\"official\":\"Republiek Mozambique\",\"common\":\"Mozambique\"},\"por\":{\"official\":\"República de Moçambique\",\"common\":\"Moçambique\"},\"rus\":{\"official\":\"Республика Мозамбик\",\"common\":\"Мозамбик\"},\"slk\":{\"official\":\"Mozambická republika\",\"common\":\"Mozambik\"},\"spa\":{\"official\":\"República de Mozambique\",\"common\":\"Mozambique\"},\"fin\":{\"official\":\"Mosambikin tasavalta\",\"common\":\"Mosambik\"},\"est\":{\"official\":\"Mosambiigi Vabariik\",\"common\":\"Mosambiik\"},\"zho\":{\"official\":\"莫桑比克共和国\",\"common\":\"莫桑比克\"},\"pol\":{\"official\":\"Republika Mozambiku\",\"common\":\"Mozambik\"},\"urd\":{\"official\":\"جمہوریہ موزمبیق\",\"common\":\"موزمبیق\"},\"kor\":{\"official\":\"모잠비크 공화국\",\"common\":\"모잠비크\"},\"per\":{\"official\":\"جمهوری موزامبیک\",\"common\":\"موزامبیک\"}},\"latlng\":[-18.25,35],\"landlocked\":false,\"borders\":[\"MWI\",\"ZAF\",\"SWZ\",\"TZA\",\"ZMB\",\"ZWE\"],\"area\":801590,\"flag\":\"🇲🇿\",\"demonyms\":{\"eng\":{\"f\":\"Mozambican\",\"m\":\"Mozambican\"},\"fra\":{\"f\":\"Mozambicaine\",\"m\":\"Mozambicain\"}}},{\"name\":{\"common\":\"Mauritania\",\"official\":\"Islamic Republic of Mauritania\",\"native\":{\"ara\":{\"official\":\"الجمهورية الإسلامية الموريتانية\",\"common\":\"موريتانيا\"}}},\"tld\":[\".mr\"],\"cca2\":\"MR\",\"ccn3\":\"478\",\"cca3\":\"MRT\",\"cioc\":\"MTN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MRU\":{\"name\":\"Mauritanian ouguiya\",\"symbol\":\"UM\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"22\"]},\"capital\":[\"Nouakchott\"],\"altSpellings\":[\"MR\",\"Islamic Republic of Mauritania\",\"al-Jumhūriyyah al-ʾIslāmiyyah al-Mūrītāniyyah\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Mauritánská islámská republika\",\"common\":\"Mauritánie\"},\"deu\":{\"official\":\"Islamische Republik Mauretanien\",\"common\":\"Mauretanien\"},\"fra\":{\"official\":\"République islamique de Mauritanie\",\"common\":\"Mauritanie\"},\"hrv\":{\"official\":\"Islamska Republika Mauritanija\",\"common\":\"Mauritanija\"},\"ita\":{\"official\":\"Repubblica islamica di Mauritania\",\"common\":\"Mauritania\"},\"jpn\":{\"official\":\"モーリタニア·イスラム共和国\",\"common\":\"モーリタニア\"},\"nld\":{\"official\":\"Islamitische Republiek Mauritanië\",\"common\":\"Mauritanië\"},\"por\":{\"official\":\"República Islâmica da Mauritânia\",\"common\":\"Mauritânia\"},\"rus\":{\"official\":\"Исламская Республика Мавритания\",\"common\":\"Мавритания\"},\"slk\":{\"official\":\"Mauritánska islamská republika\",\"common\":\"Mauritánia\"},\"spa\":{\"official\":\"República Islámica de Mauritania\",\"common\":\"Mauritania\"},\"fin\":{\"official\":\"Mauritanian islamilainen tasavalta\",\"common\":\"Mauritania\"},\"est\":{\"official\":\"Mauritaania Islamivabariik\",\"common\":\"Mauritaania\"},\"zho\":{\"official\":\"毛里塔尼亚伊斯兰共和国\",\"common\":\"毛里塔尼亚\"},\"pol\":{\"official\":\"Islamska Republika Mauretańska\",\"common\":\"Mauretania\"},\"urd\":{\"official\":\"اسلامی جمہوریہ موریتانیہ\",\"common\":\"موریتانیہ\"},\"kor\":{\"official\":\"모리타니 이슬람 공화국\",\"common\":\"모리타니\"},\"per\":{\"official\":\"جمهوری اسلامی موریتانی\",\"common\":\"موریتانی\"}},\"latlng\":[20,-12],\"landlocked\":false,\"borders\":[\"DZA\",\"MLI\",\"SEN\",\"ESH\"],\"area\":1030700,\"flag\":\"🇲🇷\",\"demonyms\":{\"eng\":{\"f\":\"Mauritanian\",\"m\":\"Mauritanian\"},\"fra\":{\"f\":\"Mauritanienne\",\"m\":\"Mauritanien\"}}},{\"name\":{\"common\":\"Montserrat\",\"official\":\"Montserrat\",\"native\":{\"eng\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"}}},\"tld\":[\".ms\"],\"cca2\":\"MS\",\"ccn3\":\"500\",\"cca3\":\"MSR\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"XCD\":{\"name\":\"Eastern Caribbean dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"664\"]},\"capital\":[\"Plymouth\"],\"altSpellings\":[\"MS\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"deu\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"fra\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"hrv\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"ita\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"jpn\":{\"official\":\"モントセラト\",\"common\":\"モントセラト\"},\"nld\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"por\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"rus\":{\"official\":\"Монтсеррат\",\"common\":\"Монтсеррат\"},\"slk\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"spa\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"fin\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"est\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"zho\":{\"official\":\"蒙特塞拉特\",\"common\":\"蒙特塞拉特\"},\"pol\":{\"official\":\"Montserrat\",\"common\":\"Montserrat\"},\"urd\":{\"official\":\"مانٹسریٹ\",\"common\":\"مانٹسریٹ\"},\"kor\":{\"official\":\"몬트세랫\",\"common\":\"몬트세랫\"},\"per\":{\"official\":\"مونتسرات\",\"common\":\"مونتسرات\"}},\"latlng\":[16.75,-62.2],\"landlocked\":false,\"borders\":[],\"area\":102,\"flag\":\"🇲🇸\",\"demonyms\":{\"eng\":{\"f\":\"Montserratian\",\"m\":\"Montserratian\"},\"fra\":{\"f\":\"Montserratienne\",\"m\":\"Montserratien\"}}},{\"name\":{\"common\":\"Martinique\",\"official\":\"Martinique\",\"native\":{\"fra\":{\"official\":\"Martinique\",\"common\":\"Martinique\"}}},\"tld\":[\".mq\"],\"cca2\":\"MQ\",\"ccn3\":\"474\",\"cca3\":\"MTQ\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"96\"]},\"capital\":[\"Fort-de-France\"],\"altSpellings\":[\"MQ\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Martinik\",\"common\":\"Martinik\"},\"deu\":{\"official\":\"Martinique\",\"common\":\"Martinique\"},\"fra\":{\"official\":\"Martinique\",\"common\":\"Martinique\"},\"hrv\":{\"official\":\"Martinique\",\"common\":\"Martinique\"},\"ita\":{\"official\":\"Martinique\",\"common\":\"Martinica\"},\"jpn\":{\"official\":\"マルティニーク島\",\"common\":\"マルティニーク\"},\"nld\":{\"official\":\"Martinique\",\"common\":\"Martinique\"},\"por\":{\"official\":\"Martinique\",\"common\":\"Martinica\"},\"rus\":{\"official\":\"Мартиника\",\"common\":\"Мартиника\"},\"spa\":{\"official\":\"Martinica\",\"common\":\"Martinica\"},\"slk\":{\"official\":\"Martinique\",\"common\":\"Martinique\"},\"fin\":{\"official\":\"Martinique\",\"common\":\"Martinique\"},\"est\":{\"official\":\"Martinique’i departemang\",\"common\":\"Martinique\"},\"zho\":{\"official\":\"马提尼克\",\"common\":\"马提尼克\"},\"pol\":{\"official\":\"Martynika\",\"common\":\"Martynika\"},\"urd\":{\"official\":\"مارٹینیک\",\"common\":\"مارٹینیک\"},\"kor\":{\"official\":\"마르티니크\",\"common\":\"마르티니크\"},\"per\":{\"official\":\"مارتینیک\",\"common\":\"مارتینیک\"}},\"latlng\":[14.666667,-61],\"landlocked\":false,\"borders\":[],\"area\":1128,\"flag\":\"🇲🇶\",\"demonyms\":{\"eng\":{\"f\":\"Martinican\",\"m\":\"Martinican\"},\"fra\":{\"f\":\"Martiniquaise\",\"m\":\"Martiniquais\"}}},{\"name\":{\"common\":\"Mauritius\",\"official\":\"Republic of Mauritius\",\"native\":{\"eng\":{\"official\":\"Republic of Mauritius\",\"common\":\"Mauritius\"},\"fra\":{\"official\":\"République de Maurice\",\"common\":\"Maurice\"},\"mfe\":{\"official\":\"Republik Moris\",\"common\":\"Moris\"}}},\"tld\":[\".mu\"],\"cca2\":\"MU\",\"ccn3\":\"480\",\"cca3\":\"MUS\",\"cioc\":\"MRI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MUR\":{\"name\":\"Mauritian rupee\",\"symbol\":\"₨\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"30\"]},\"capital\":[\"Port Louis\"],\"altSpellings\":[\"MU\",\"Republic of Mauritius\",\"République de Maurice\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"eng\":\"English\",\"fra\":\"French\",\"mfe\":\"Mauritian Creole\"},\"translations\":{\"ces\":{\"official\":\"Mauricijská republika\",\"common\":\"Mauricius\"},\"deu\":{\"official\":\"Republik Mauritius\",\"common\":\"Mauritius\"},\"fra\":{\"official\":\"République de Maurice\",\"common\":\"Île Maurice\"},\"hrv\":{\"official\":\"Republika Mauricijus\",\"common\":\"Mauricijus\"},\"ita\":{\"official\":\"Repubblica di Mauritius\",\"common\":\"Mauritius\"},\"jpn\":{\"official\":\"モーリシャス共和国\",\"common\":\"モーリシャス\"},\"nld\":{\"official\":\"Republiek Mauritius\",\"common\":\"Mauritius\"},\"por\":{\"official\":\"República das Maurícias\",\"common\":\"Maurício\"},\"rus\":{\"official\":\"Республика Маврикий\",\"common\":\"Маврикий\"},\"slk\":{\"official\":\"Maurícijská republika\",\"common\":\"Maurícius\"},\"spa\":{\"official\":\"República de Mauricio\",\"common\":\"Mauricio\"},\"fin\":{\"official\":\"Mauritiuksen tasavalta\",\"common\":\"Mauritius\"},\"est\":{\"official\":\"Mauritiuse Vabariik\",\"common\":\"Mauritius\"},\"zho\":{\"official\":\"毛里求斯共和国\",\"common\":\"毛里求斯\"},\"pol\":{\"official\":\"Republika Mauritiusu\",\"common\":\"Mauritius\"},\"urd\":{\"official\":\"جمہوریہ موریشس\",\"common\":\"موریشس\"},\"kor\":{\"official\":\"모리셔스 공화국\",\"common\":\"모리셔스\"},\"per\":{\"official\":\"جمهوری موریس\",\"common\":\"موریس\"}},\"latlng\":[-20.28333333,57.55],\"landlocked\":false,\"borders\":[],\"area\":2040,\"flag\":\"🇲🇺\",\"demonyms\":{\"eng\":{\"f\":\"Mauritian\",\"m\":\"Mauritian\"},\"fra\":{\"f\":\"Mauricienne\",\"m\":\"Mauricien\"}}},{\"name\":{\"common\":\"Malawi\",\"official\":\"Republic of Malawi\",\"native\":{\"eng\":{\"official\":\"Republic of Malawi\",\"common\":\"Malawi\"},\"nya\":{\"official\":\"Chalo cha Malawi, Dziko la Malaŵi\",\"common\":\"Malaŵi\"}}},\"tld\":[\".mw\"],\"cca2\":\"MW\",\"ccn3\":\"454\",\"cca3\":\"MWI\",\"cioc\":\"MAW\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MWK\":{\"name\":\"Malawian kwacha\",\"symbol\":\"MK\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"65\"]},\"capital\":[\"Lilongwe\"],\"altSpellings\":[\"MW\",\"Republic of Malawi\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"eng\":\"English\",\"nya\":\"Chewa\"},\"translations\":{\"ces\":{\"official\":\"Malawiská republika\",\"common\":\"Malawi\"},\"deu\":{\"official\":\"Republik Malawi\",\"common\":\"Malawi\"},\"fra\":{\"official\":\"République du Malawi\",\"common\":\"Malawi\"},\"hrv\":{\"official\":\"Republika Malavi\",\"common\":\"Malavi\"},\"ita\":{\"official\":\"Repubblica del Malawi\",\"common\":\"Malawi\"},\"jpn\":{\"official\":\"マラウイ共和国\",\"common\":\"マラウイ\"},\"nld\":{\"official\":\"Republiek Malawi\",\"common\":\"Malawi\"},\"por\":{\"official\":\"República do Malawi\",\"common\":\"Malawi\"},\"rus\":{\"official\":\"Республика Малави\",\"common\":\"Малави\"},\"slk\":{\"official\":\"Malawijská republika\",\"common\":\"Malawi\"},\"spa\":{\"official\":\"República de Malawi\",\"common\":\"Malawi\"},\"fin\":{\"official\":\"Malawin tasavalta\",\"common\":\"Malawi\"},\"est\":{\"official\":\"Malawi Vabariik\",\"common\":\"Malawi\"},\"zho\":{\"official\":\"马拉维共和国\",\"common\":\"马拉维\"},\"pol\":{\"official\":\"Republika Malawi\",\"common\":\"Malawi\"},\"urd\":{\"official\":\"جمہوریہ ملاوی\",\"common\":\"ملاوی\"},\"kor\":{\"official\":\"말라위 공화국\",\"common\":\"말라위\"},\"per\":{\"official\":\"جمهوری مالاوی\",\"common\":\"مالاوی\"}},\"latlng\":[-13.5,34],\"landlocked\":true,\"borders\":[\"MOZ\",\"TZA\",\"ZMB\"],\"area\":118484,\"flag\":\"🇲🇼\",\"demonyms\":{\"eng\":{\"f\":\"Malawian\",\"m\":\"Malawian\"},\"fra\":{\"f\":\"Malawienne\",\"m\":\"Malawien\"}}},{\"name\":{\"common\":\"Malaysia\",\"official\":\"Malaysia\",\"native\":{\"eng\":{\"official\":\"Malaysia\",\"common\":\"Malaysia\"},\"msa\":{\"official\":\"مليسيا\",\"common\":\"مليسيا\"}}},\"tld\":[\".my\"],\"cca2\":\"MY\",\"ccn3\":\"458\",\"cca3\":\"MYS\",\"cioc\":\"MAS\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"MYR\":{\"name\":\"Malaysian ringgit\",\"symbol\":\"RM\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"0\"]},\"capital\":[\"Kuala Lumpur\"],\"altSpellings\":[\"MY\"],\"region\":\"Asia\",\"subregion\":\"South-Eastern Asia\",\"languages\":{\"eng\":\"English\",\"msa\":\"Malay\"},\"translations\":{\"ces\":{\"official\":\"Malajsie\",\"common\":\"Malajsie\"},\"deu\":{\"official\":\"Malaysia\",\"common\":\"Malaysia\"},\"fra\":{\"official\":\"Fédération de Malaisie\",\"common\":\"Malaisie\"},\"hrv\":{\"official\":\"Malezija\",\"common\":\"Malezija\"},\"ita\":{\"official\":\"Malaysia\",\"common\":\"Malesia\"},\"jpn\":{\"official\":\"マレーシア\",\"common\":\"マレーシア\"},\"nld\":{\"official\":\"Maleisië\",\"common\":\"Maleisië\"},\"por\":{\"official\":\"Malásia\",\"common\":\"Malásia\"},\"rus\":{\"official\":\"Малайзия\",\"common\":\"Малайзия\"},\"slk\":{\"official\":\"Malajzia\",\"common\":\"Malajzia\"},\"spa\":{\"official\":\"Malasia\",\"common\":\"Malasia\"},\"fin\":{\"official\":\"Malesia\",\"common\":\"Malesia\"},\"est\":{\"official\":\"Malaisia\",\"common\":\"Malaisia\"},\"zho\":{\"official\":\"马来西亚\",\"common\":\"马来西亚\"},\"pol\":{\"official\":\"Malezja\",\"common\":\"Malezja\"},\"urd\":{\"official\":\"ملائیشیا\",\"common\":\"ملائیشیا\"},\"kor\":{\"official\":\"말레이시아\",\"common\":\"말레이시아\"},\"per\":{\"official\":\"فدراسیون مالزی\",\"common\":\"مالزی\"}},\"latlng\":[2.5,112.5],\"landlocked\":false,\"borders\":[\"BRN\",\"IDN\",\"THA\"],\"area\":330803,\"flag\":\"🇲🇾\",\"demonyms\":{\"eng\":{\"f\":\"Malaysian\",\"m\":\"Malaysian\"},\"fra\":{\"f\":\"Malaisienne\",\"m\":\"Malaisien\"}}},{\"name\":{\"common\":\"Mayotte\",\"official\":\"Department of Mayotte\",\"native\":{\"fra\":{\"official\":\"Département de Mayotte\",\"common\":\"Mayotte\"}}},\"tld\":[\".yt\"],\"cca2\":\"YT\",\"ccn3\":\"175\",\"cca3\":\"MYT\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"62\"]},\"capital\":[\"Mamoudzou\"],\"altSpellings\":[\"YT\",\"Department of Mayotte\",\"Département de Mayotte\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Mayotte\",\"common\":\"Mayotte\"},\"deu\":{\"official\":\"Übersee-Département Mayotte\",\"common\":\"Mayotte\"},\"fra\":{\"official\":\"Département de Mayotte\",\"common\":\"Mayotte\"},\"hrv\":{\"official\":\"Odjel Mayotte\",\"common\":\"Mayotte\"},\"ita\":{\"official\":\"Dipartimento di Mayotte\",\"common\":\"Mayotte\"},\"jpn\":{\"official\":\"マヨット科\",\"common\":\"マヨット\"},\"nld\":{\"official\":\"Afdeling Mayotte\",\"common\":\"Mayotte\"},\"por\":{\"official\":\"Departamento de Mayotte\",\"common\":\"Mayotte\"},\"rus\":{\"official\":\"Департамент Майотта\",\"common\":\"Майотта\"},\"slk\":{\"official\":\"Department Mayotte\",\"common\":\"Mayotte\"},\"spa\":{\"official\":\"Departamento de Mayotte\",\"common\":\"Mayotte\"},\"fin\":{\"official\":\"Mayotte\",\"common\":\"Mayotte\"},\"est\":{\"official\":\"Mayotte\",\"common\":\"Mayotte\"},\"zho\":{\"official\":\"马约特\",\"common\":\"马约特\"},\"pol\":{\"official\":\"Majotta\",\"common\":\"Majotta\"},\"urd\":{\"official\":\"مایوٹ\",\"common\":\"مایوٹ\"},\"kor\":{\"official\":\"마요트\",\"common\":\"마요트\"},\"per\":{\"official\":\"مجموعه شهرستانی مایوت\",\"common\":\"مایوت\"}},\"latlng\":[-12.83333333,45.16666666],\"landlocked\":false,\"borders\":[],\"area\":374,\"flag\":\"🇾🇹\",\"demonyms\":{\"eng\":{\"f\":\"Mahoran\",\"m\":\"Mahoran\"},\"fra\":{\"f\":\"Mahoraise\",\"m\":\"Mahorais\"}}},{\"name\":{\"common\":\"Namibia\",\"official\":\"Republic of Namibia\",\"native\":{\"afr\":{\"official\":\"Republiek van Namibië\",\"common\":\"Namibië\"},\"deu\":{\"official\":\"Republik Namibia\",\"common\":\"Namibia\"},\"eng\":{\"official\":\"Republic of Namibia\",\"common\":\"Namibia\"},\"her\":{\"official\":\"Republic of Namibia\",\"common\":\"Namibia\"},\"hgm\":{\"official\":\"Republic of Namibia\",\"common\":\"Namibia\"},\"kwn\":{\"official\":\"Republic of Namibia\",\"common\":\"Namibia\"},\"loz\":{\"official\":\"Republic of Namibia\",\"common\":\"Namibia\"},\"ndo\":{\"official\":\"Republic of Namibia\",\"common\":\"Namibia\"},\"tsn\":{\"official\":\"Lefatshe la Namibia\",\"common\":\"Namibia\"}}},\"tld\":[\".na\"],\"cca2\":\"NA\",\"ccn3\":\"516\",\"cca3\":\"NAM\",\"cioc\":\"NAM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"NAD\":{\"name\":\"Namibian dollar\",\"symbol\":\"$\"},\"ZAR\":{\"name\":\"South African rand\",\"symbol\":\"R\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"64\"]},\"capital\":[\"Windhoek\"],\"altSpellings\":[\"NA\",\"Namibië\",\"Republic of Namibia\"],\"region\":\"Africa\",\"subregion\":\"Southern Africa\",\"languages\":{\"afr\":\"Afrikaans\",\"deu\":\"German\",\"eng\":\"English\",\"her\":\"Herero\",\"hgm\":\"Khoekhoe\",\"kwn\":\"Kwangali\",\"loz\":\"Lozi\",\"ndo\":\"Ndonga\",\"tsn\":\"Tswana\"},\"translations\":{\"ces\":{\"official\":\"Namibijská republika\",\"common\":\"Namibie\"},\"deu\":{\"official\":\"Republik Namibia\",\"common\":\"Namibia\"},\"fra\":{\"official\":\"République de Namibie\",\"common\":\"Namibie\"},\"hrv\":{\"official\":\"Republika Namibija\",\"common\":\"Namibija\"},\"ita\":{\"official\":\"Repubblica di Namibia\",\"common\":\"Namibia\"},\"jpn\":{\"official\":\"ナミビア共和国\",\"common\":\"ナミビア\"},\"nld\":{\"official\":\"Republiek Namibië\",\"common\":\"Namibië\"},\"por\":{\"official\":\"República da Namíbia\",\"common\":\"Namíbia\"},\"rus\":{\"official\":\"Республика Намибия\",\"common\":\"Намибия\"},\"slk\":{\"official\":\"Namíbijská republika\",\"common\":\"Namíbia\"},\"spa\":{\"official\":\"República de Namibia\",\"common\":\"Namibia\"},\"fin\":{\"official\":\"Namibian tasavalta\",\"common\":\"Namibia\"},\"est\":{\"official\":\"Namiibia Vabariik\",\"common\":\"Namiibia\"},\"zho\":{\"official\":\"纳米比亚共和国\",\"common\":\"纳米比亚\"},\"pol\":{\"official\":\"Republika Namibii\",\"common\":\"Namibia\"},\"urd\":{\"official\":\"جمہوریہ نمیبیا\",\"common\":\"نمیبیا\"},\"kor\":{\"official\":\"나미비아 공화국\",\"common\":\"나미비아\"},\"per\":{\"official\":\"جمهوری نامیبیا\",\"common\":\"نامیبیا\"}},\"latlng\":[-22,17],\"landlocked\":false,\"borders\":[\"AGO\",\"BWA\",\"ZAF\",\"ZMB\"],\"area\":825615,\"flag\":\"🇳🇦\",\"demonyms\":{\"eng\":{\"f\":\"Namibian\",\"m\":\"Namibian\"},\"fra\":{\"f\":\"Namibienne\",\"m\":\"Namibien\"}}},{\"name\":{\"common\":\"New Caledonia\",\"official\":\"New Caledonia\",\"native\":{\"fra\":{\"official\":\"Nouvelle-Calédonie\",\"common\":\"Nouvelle-Calédonie\"}}},\"tld\":[\".nc\"],\"cca2\":\"NC\",\"ccn3\":\"540\",\"cca3\":\"NCL\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"XPF\":{\"name\":\"CFP franc\",\"symbol\":\"₣\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"87\"]},\"capital\":[\"Nouméa\"],\"altSpellings\":[\"NC\"],\"region\":\"Oceania\",\"subregion\":\"Melanesia\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Nová Kaledonie\",\"common\":\"Nová Kaledonie\"},\"deu\":{\"official\":\"Neukaledonien\",\"common\":\"Neukaledonien\"},\"fra\":{\"official\":\"Nouvelle-Calédonie\",\"common\":\"Nouvelle-Calédonie\"},\"hrv\":{\"official\":\"Nova Kaledonija\",\"common\":\"Nova Kaledonija\"},\"ita\":{\"official\":\"Nuova Caledonia\",\"common\":\"Nuova Caledonia\"},\"jpn\":{\"official\":\"ニューカレドニア\",\"common\":\"ニューカレドニア\"},\"nld\":{\"official\":\"nieuw -Caledonië\",\"common\":\"Nieuw-Caledonië\"},\"por\":{\"official\":\"New Caledonia\",\"common\":\"Nova Caledónia\"},\"rus\":{\"official\":\"Новая Каледония\",\"common\":\"Новая Каледония\"},\"slk\":{\"official\":\"Nová Kaledónia\",\"common\":\"Nová Kaledónia\"},\"spa\":{\"official\":\"nueva Caledonia\",\"common\":\"Nueva Caledonia\"},\"fin\":{\"official\":\"Uusi-Kaledonia\",\"common\":\"Uusi-Kaledonia\"},\"est\":{\"official\":\"Uus-Kaledoonia\",\"common\":\"Uus-Kaledoonia\"},\"zho\":{\"official\":\"新喀里多尼亚\",\"common\":\"新喀里多尼亚\"},\"pol\":{\"official\":\"Nowa Kaledonia\",\"common\":\"Nowa Kaledonia\"},\"urd\":{\"official\":\"نیو کیلیڈونیا\",\"common\":\"نیو کیلیڈونیا\"},\"kor\":{\"official\":\"누벨칼레도니\",\"common\":\"누벨칼레도니\"},\"per\":{\"official\":\"کالدونیای جدید\",\"common\":\"کالدونیای جدید\"}},\"latlng\":[-21.5,165.5],\"landlocked\":false,\"borders\":[],\"area\":18575,\"flag\":\"🇳🇨\",\"demonyms\":{\"eng\":{\"f\":\"New Caledonian\",\"m\":\"New Caledonian\"},\"fra\":{\"f\":\"Néo-Calédonienne\",\"m\":\"Néo-Calédonien\"}}},{\"name\":{\"common\":\"Niger\",\"official\":\"Republic of Niger\",\"native\":{\"fra\":{\"official\":\"République du Niger\",\"common\":\"Niger\"}}},\"tld\":[\".ne\"],\"cca2\":\"NE\",\"ccn3\":\"562\",\"cca3\":\"NER\",\"cioc\":\"NIG\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XOF\":{\"name\":\"West African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"27\"]},\"capital\":[\"Niamey\"],\"altSpellings\":[\"NE\",\"Nijar\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Nigerská republika\",\"common\":\"Niger\"},\"deu\":{\"official\":\"Republik Niger\",\"common\":\"Niger\"},\"fra\":{\"official\":\"République du Niger\",\"common\":\"Niger\"},\"hrv\":{\"official\":\"Republika Niger\",\"common\":\"Niger\"},\"ita\":{\"official\":\"Repubblica del Niger\",\"common\":\"Niger\"},\"jpn\":{\"official\":\"ニジェール共和国\",\"common\":\"ニジェール\"},\"nld\":{\"official\":\"Republiek Niger\",\"common\":\"Niger\"},\"por\":{\"official\":\"República do Níger\",\"common\":\"Níger\"},\"rus\":{\"official\":\"Республика Нигер\",\"common\":\"Нигер\"},\"slk\":{\"official\":\"Nigérská republika\",\"common\":\"Niger\"},\"spa\":{\"official\":\"República de Níger\",\"common\":\"Níger\"},\"fin\":{\"official\":\"Nigerin tasavalta\",\"common\":\"Niger\"},\"est\":{\"official\":\"Nigeri Vabariik\",\"common\":\"Niger\"},\"zho\":{\"official\":\"尼日尔共和国\",\"common\":\"尼日尔\"},\"pol\":{\"official\":\"Republika Nigru\",\"common\":\"Niger\"},\"urd\":{\"official\":\"جمہوریہ نائجر\",\"common\":\"نائجر\"},\"kor\":{\"official\":\"니제르 공화국\",\"common\":\"니제르\"},\"per\":{\"official\":\"جمهوری نیجر\",\"common\":\"نیجر\"}},\"latlng\":[16,8],\"landlocked\":true,\"borders\":[\"DZA\",\"BEN\",\"BFA\",\"TCD\",\"LBY\",\"MLI\",\"NGA\"],\"area\":1267000,\"flag\":\"🇳🇪\",\"demonyms\":{\"eng\":{\"f\":\"Nigerien\",\"m\":\"Nigerien\"},\"fra\":{\"f\":\"Nigérienne\",\"m\":\"Nigérien\"}}},{\"name\":{\"common\":\"Norfolk Island\",\"official\":\"Territory of Norfolk Island\",\"native\":{\"eng\":{\"official\":\"Territory of Norfolk Island\",\"common\":\"Norfolk Island\"},\"pih\":{\"official\":\"Teratri of Norf\\'k Ailen\",\"common\":\"Norf\\'k Ailen\"}}},\"tld\":[\".nf\"],\"cca2\":\"NF\",\"ccn3\":\"574\",\"cca3\":\"NFK\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"AUD\":{\"name\":\"Australian dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"72\"]},\"capital\":[\"Kingston\"],\"altSpellings\":[\"NF\",\"Territory of Norfolk Island\",\"Teratri of Norf\\'k Ailen\"],\"region\":\"Oceania\",\"subregion\":\"Australia and New Zealand\",\"languages\":{\"eng\":\"English\",\"pih\":\"Norfuk\"},\"translations\":{\"ces\":{\"official\":\"Teritorium ostrova Norfolk\",\"common\":\"Norfolk\"},\"deu\":{\"official\":\"Gebiet der Norfolkinsel\",\"common\":\"Norfolkinsel\"},\"fra\":{\"official\":\"Territoire de l\\'île Norfolk\",\"common\":\"Île Norfolk\"},\"hrv\":{\"official\":\"Teritorij Norfolk Island\",\"common\":\"Otok Norfolk\"},\"ita\":{\"official\":\"Territorio di Norfolk Island\",\"common\":\"Isola Norfolk\"},\"jpn\":{\"official\":\"ノーフォーク島の領土\",\"common\":\"ノーフォーク島\"},\"nld\":{\"official\":\"Grondgebied van Norfolk Island\",\"common\":\"Norfolkeiland\"},\"por\":{\"official\":\"Território da Ilha Norfolk\",\"common\":\"Ilha Norfolk\"},\"rus\":{\"official\":\"Территория острова Норфолк\",\"common\":\"Норфолк\"},\"slk\":{\"official\":\"Teritórium ostrova Norfolk\",\"common\":\"Norfolk\"},\"spa\":{\"official\":\"Territorio de la Isla Norfolk\",\"common\":\"Isla de Norfolk\"},\"fin\":{\"official\":\"Norfolkinsaaren territorio\",\"common\":\"Norfolkinsaari\"},\"est\":{\"official\":\"Norfolki saare ala\",\"common\":\"Norfolk\"},\"zho\":{\"official\":\"诺福克岛\",\"common\":\"诺福克岛\"},\"pol\":{\"official\":\"Terytorium Wyspy Norfolk\",\"common\":\"Wyspa Norfolk\"},\"urd\":{\"official\":\"جزیرہ نورفک خطہ\",\"common\":\"جزیرہ نورفک\"},\"kor\":{\"official\":\"노퍽 섬\",\"common\":\"노퍽 섬\"},\"per\":{\"official\":\"قلمرو جزایر نورفک\",\"common\":\"جزیره نورفک\"}},\"latlng\":[-29.03333333,167.95],\"landlocked\":false,\"borders\":[],\"area\":36,\"flag\":\"🇳🇫\",\"demonyms\":{\"eng\":{\"f\":\"Norfolk Islander\",\"m\":\"Norfolk Islander\"},\"fra\":{\"f\":\"Norfolkaise\",\"m\":\"Norfolkais\"}}},{\"name\":{\"common\":\"Nigeria\",\"official\":\"Federal Republic of Nigeria\",\"native\":{\"eng\":{\"official\":\"Federal Republic of Nigeria\",\"common\":\"Nigeria\"}}},\"tld\":[\".ng\"],\"cca2\":\"NG\",\"ccn3\":\"566\",\"cca3\":\"NGA\",\"cioc\":\"NGR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"NGN\":{\"name\":\"Nigerian naira\",\"symbol\":\"₦\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"34\"]},\"capital\":[\"Abuja\"],\"altSpellings\":[\"NG\",\"Nijeriya\",\"Naíjíríà\",\"Federal Republic of Nigeria\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Nigerijská federativní republika\",\"common\":\"Nigérie\"},\"deu\":{\"official\":\"Bundesrepublik Nigeria\",\"common\":\"Nigeria\"},\"fra\":{\"official\":\"République fédérale du Nigeria\",\"common\":\"Nigéria\"},\"hrv\":{\"official\":\"Savezna Republika Nigerija\",\"common\":\"Nigerija\"},\"ita\":{\"official\":\"Repubblica federale di Nigeria\",\"common\":\"Nigeria\"},\"jpn\":{\"official\":\"ナイジェリア連邦共和国\",\"common\":\"ナイジェリア\"},\"nld\":{\"official\":\"Federale Republiek Nigeria\",\"common\":\"Nigeria\"},\"por\":{\"official\":\"República Federal da Nigéria\",\"common\":\"Nigéria\"},\"rus\":{\"official\":\"Федеративная Республика Нигерия\",\"common\":\"Нигерия\"},\"slk\":{\"official\":\"Nigérijská federatívna republika\",\"common\":\"Nigéria\"},\"spa\":{\"official\":\"República Federal de Nigeria\",\"common\":\"Nigeria\"},\"fin\":{\"official\":\"Nigerian liittotasavalta\",\"common\":\"Nigeria\"},\"est\":{\"official\":\"Nigeeria Liitvabariik\",\"common\":\"Nigeeria\"},\"zho\":{\"official\":\"尼日利亚联邦共和国\",\"common\":\"尼日利亚\"},\"pol\":{\"official\":\"Federalna Republika Nigerii\",\"common\":\"Nigeria\"},\"urd\":{\"official\":\"وفاقی جمہوریہ نائجیریا\",\"common\":\"نائجیریا\"},\"kor\":{\"official\":\"나이지리아 연방 공화국\",\"common\":\"나이지리아\"},\"per\":{\"official\":\"جمهوری فدرال نیجریه\",\"common\":\"نیجریه\"}},\"latlng\":[10,8],\"landlocked\":false,\"borders\":[\"BEN\",\"CMR\",\"TCD\",\"NER\"],\"area\":923768,\"flag\":\"🇳🇬\",\"demonyms\":{\"eng\":{\"f\":\"Nigerian\",\"m\":\"Nigerian\"},\"fra\":{\"f\":\"Nigériane\",\"m\":\"Nigérian\"}}},{\"name\":{\"common\":\"Nicaragua\",\"official\":\"Republic of Nicaragua\",\"native\":{\"spa\":{\"official\":\"República de Nicaragua\",\"common\":\"Nicaragua\"}}},\"tld\":[\".ni\"],\"cca2\":\"NI\",\"ccn3\":\"558\",\"cca3\":\"NIC\",\"cioc\":\"NCA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"NIO\":{\"name\":\"Nicaraguan córdoba\",\"symbol\":\"C$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"05\"]},\"capital\":[\"Managua\"],\"altSpellings\":[\"NI\",\"Republic of Nicaragua\",\"República de Nicaragua\"],\"region\":\"Americas\",\"subregion\":\"Central America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Republika Nikaragua\",\"common\":\"Nikaragua\"},\"deu\":{\"official\":\"Republik Nicaragua\",\"common\":\"Nicaragua\"},\"fra\":{\"official\":\"République du Nicaragua\",\"common\":\"Nicaragua\"},\"hrv\":{\"official\":\"Republika Nikaragva\",\"common\":\"Nikaragva\"},\"ita\":{\"official\":\"Repubblica del Nicaragua\",\"common\":\"Nicaragua\"},\"jpn\":{\"official\":\"ニカラグア共和国\",\"common\":\"ニカラグア\"},\"nld\":{\"official\":\"Republiek Nicaragua\",\"common\":\"Nicaragua\"},\"por\":{\"official\":\"República da Nicarágua\",\"common\":\"Nicarágua\"},\"rus\":{\"official\":\"Республика Никарагуа\",\"common\":\"Никарагуа\"},\"slk\":{\"official\":\"Nikaragujská republika\",\"common\":\"Nikaragua\"},\"spa\":{\"official\":\"República de Nicaragua\",\"common\":\"Nicaragua\"},\"fin\":{\"official\":\"Nicaraguan tasavalta\",\"common\":\"Nicaragua\"},\"est\":{\"official\":\"Nicaragua Vabariik\",\"common\":\"Nicaragua\"},\"zho\":{\"official\":\"尼加拉瓜共和国\",\"common\":\"尼加拉瓜\"},\"pol\":{\"official\":\"Republika Nikaragui\",\"common\":\"Nikaragua\"},\"urd\":{\"official\":\"جمہوریہ نکاراگوا\",\"common\":\"نکاراگوا\"},\"kor\":{\"official\":\"니카라과 공화국\",\"common\":\"니카라과\"},\"per\":{\"official\":\"جمهوری نیکاراگوئه\",\"common\":\"نیکاراگوئه\"}},\"latlng\":[13,-85],\"landlocked\":false,\"borders\":[\"CRI\",\"HND\"],\"area\":130373,\"flag\":\"🇳🇮\",\"demonyms\":{\"eng\":{\"f\":\"Nicaraguan\",\"m\":\"Nicaraguan\"},\"fra\":{\"f\":\"Nicaraguayenne\",\"m\":\"Nicaraguayen\"}}},{\"name\":{\"common\":\"Niue\",\"official\":\"Niue\",\"native\":{\"eng\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"niu\":{\"official\":\"Niuē\",\"common\":\"Niuē\"}}},\"tld\":[\".nu\"],\"cca2\":\"NU\",\"ccn3\":\"570\",\"cca3\":\"NIU\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"NZD\":{\"name\":\"New Zealand dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"83\"]},\"capital\":[\"Alofi\"],\"altSpellings\":[\"NU\"],\"region\":\"Oceania\",\"subregion\":\"Polynesia\",\"languages\":{\"eng\":\"English\",\"niu\":\"Niuean\"},\"translations\":{\"ces\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"deu\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"fra\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"hrv\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"ita\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"jpn\":{\"official\":\"ニウエ\",\"common\":\"ニウエ\"},\"nld\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"por\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"rus\":{\"official\":\"Ниуэ\",\"common\":\"Ниуэ\"},\"slk\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"spa\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"fin\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"est\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"zho\":{\"official\":\"纽埃\",\"common\":\"纽埃\"},\"pol\":{\"official\":\"Niue\",\"common\":\"Niue\"},\"urd\":{\"official\":\"نیووے\",\"common\":\"نیووے\"},\"kor\":{\"official\":\"니우에\",\"common\":\"니우에\"},\"per\":{\"official\":\"نیووی\",\"common\":\"نیووی\"}},\"latlng\":[-19.03333333,-169.86666666],\"landlocked\":false,\"borders\":[],\"area\":260,\"flag\":\"🇳🇺\",\"demonyms\":{\"eng\":{\"f\":\"Niuean\",\"m\":\"Niuean\"},\"fra\":{\"f\":\"Niuéenne\",\"m\":\"Niuéen\"}}},{\"name\":{\"common\":\"Netherlands\",\"official\":\"Kingdom of the Netherlands\",\"native\":{\"nld\":{\"official\":\"Koninkrijk der Nederlanden\",\"common\":\"Nederland\"}}},\"tld\":[\".nl\"],\"cca2\":\"NL\",\"ccn3\":\"528\",\"cca3\":\"NLD\",\"cioc\":\"NED\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"1\"]},\"capital\":[\"Amsterdam\"],\"altSpellings\":[\"NL\",\"Holland\",\"Nederland\",\"The Netherlands\"],\"region\":\"Europe\",\"subregion\":\"Western Europe\",\"languages\":{\"nld\":\"Dutch\"},\"translations\":{\"ces\":{\"official\":\"Nizozemské království\",\"common\":\"Nizozemsko\"},\"deu\":{\"official\":\"Niederlande\",\"common\":\"Niederlande\"},\"fra\":{\"official\":\"Pays-Bas\",\"common\":\"Pays-Bas\"},\"hrv\":{\"official\":\"Holandija\",\"common\":\"Nizozemska\"},\"ita\":{\"official\":\"Paesi Bassi\",\"common\":\"Paesi Bassi\"},\"jpn\":{\"official\":\"オランダ\",\"common\":\"オランダ\"},\"nld\":{\"official\":\"Nederland\",\"common\":\"Nederland\"},\"por\":{\"official\":\"Holanda\",\"common\":\"Holanda\"},\"rus\":{\"official\":\"Нидерланды\",\"common\":\"Нидерланды\"},\"slk\":{\"official\":\"Holandské kráľovstvo\",\"common\":\"Holansko\"},\"spa\":{\"official\":\"Países Bajos\",\"common\":\"Países Bajos\"},\"fin\":{\"official\":\"Alankomaat\",\"common\":\"Alankomaat\"},\"est\":{\"official\":\"Madalmaade Kuningriik\",\"common\":\"Holland\"},\"zho\":{\"official\":\"荷兰\",\"common\":\"荷兰\"},\"pol\":{\"official\":\"Królestwo Niderlandów\",\"common\":\"Holandia\"},\"urd\":{\"official\":\"مملکتِ نیدرلینڈز\",\"common\":\"نیدرلینڈز\"},\"kor\":{\"official\":\"네덜란드 왕국\",\"common\":\"네덜란드\"},\"per\":{\"official\":\"هلند\",\"common\":\"هلند\"}},\"latlng\":[52.5,5.75],\"landlocked\":false,\"borders\":[\"BEL\",\"DEU\"],\"area\":41850,\"flag\":\"🇳🇱\",\"demonyms\":{\"eng\":{\"f\":\"Dutch\",\"m\":\"Dutch\"},\"fra\":{\"f\":\"Néerlandaise\",\"m\":\"Néerlandais\"}}},{\"name\":{\"common\":\"Norway\",\"official\":\"Kingdom of Norway\",\"native\":{\"nno\":{\"official\":\"Kongeriket Noreg\",\"common\":\"Noreg\"},\"nob\":{\"official\":\"Kongeriket Norge\",\"common\":\"Norge\"},\"smi\":{\"official\":\"Norgga gonagasriika\",\"common\":\"Norgga\"}}},\"tld\":[\".no\"],\"cca2\":\"NO\",\"ccn3\":\"578\",\"cca3\":\"NOR\",\"cioc\":\"NOR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"NOK\":{\"name\":\"Norwegian krone\",\"symbol\":\"kr\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"7\"]},\"capital\":[\"Oslo\"],\"altSpellings\":[\"NO\",\"Norge\",\"Noreg\",\"Kingdom of Norway\",\"Kongeriket Norge\",\"Kongeriket Noreg\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"nno\":\"Norwegian Nynorsk\",\"nob\":\"Norwegian Bokmål\",\"smi\":\"Sami\"},\"translations\":{\"ces\":{\"official\":\"Norské království\",\"common\":\"Norsko\"},\"deu\":{\"official\":\"Königreich Norwegen\",\"common\":\"Norwegen\"},\"fra\":{\"official\":\"Royaume de Norvège\",\"common\":\"Norvège\"},\"hrv\":{\"official\":\"Kraljevina Norveška\",\"common\":\"Norveška\"},\"ita\":{\"official\":\"Regno di Norvegia\",\"common\":\"Norvegia\"},\"jpn\":{\"official\":\"ノルウェー王国\",\"common\":\"ノルウェー\"},\"nld\":{\"official\":\"Koninkrijk Noorwegen\",\"common\":\"Noorwegen\"},\"por\":{\"official\":\"Reino da Noruega\",\"common\":\"Noruega\"},\"rus\":{\"official\":\"Королевство Норвегия\",\"common\":\"Норвегия\"},\"slk\":{\"official\":\"Nórske kráľovstvo\",\"common\":\"Nórsko\"},\"spa\":{\"official\":\"Reino de Noruega\",\"common\":\"Noruega\"},\"fin\":{\"official\":\"Norjan kuningaskunta\",\"common\":\"Norja\"},\"est\":{\"official\":\"Norra Kuningriik\",\"common\":\"Norra\"},\"zho\":{\"official\":\"挪威王国\",\"common\":\"挪威\"},\"pol\":{\"official\":\"Królestwo Norwegii\",\"common\":\"Norwegia\"},\"urd\":{\"official\":\"مملکتِ ناروے\",\"common\":\"ناروے\"},\"kor\":{\"official\":\"노르웨이 왕국\",\"common\":\"노르웨이\"},\"per\":{\"official\":\"پادشاهی نروژ\",\"common\":\"نروژ\"}},\"latlng\":[62,10],\"landlocked\":false,\"borders\":[\"FIN\",\"SWE\",\"RUS\"],\"area\":323802,\"flag\":\"🇳🇴\",\"demonyms\":{\"eng\":{\"f\":\"Norwegian\",\"m\":\"Norwegian\"},\"fra\":{\"f\":\"Norvégienne\",\"m\":\"Norvégien\"}}},{\"name\":{\"common\":\"Nepal\",\"official\":\"Federal Democratic Republic of Nepal\",\"native\":{\"nep\":{\"official\":\"नेपाल संघीय लोकतान्त्रिक गणतन्त्र\",\"common\":\"नेपाल\"}}},\"tld\":[\".np\"],\"cca2\":\"NP\",\"ccn3\":\"524\",\"cca3\":\"NPL\",\"cioc\":\"NEP\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"NPR\":{\"name\":\"Nepalese rupee\",\"symbol\":\"₨\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"77\"]},\"capital\":[\"Kathmandu\"],\"altSpellings\":[\"NP\",\"Federal Democratic Republic of Nepal\",\"Loktāntrik Ganatantra Nepāl\"],\"region\":\"Asia\",\"subregion\":\"Southern Asia\",\"languages\":{\"nep\":\"Nepali\"},\"translations\":{\"ces\":{\"official\":\"Federativní demokratická republika Nepál\",\"common\":\"Nepál\"},\"deu\":{\"official\":\"Demokratische Bundesrepublik Nepal\",\"common\":\"Nepal\"},\"fra\":{\"official\":\"République du Népal\",\"common\":\"Népal\"},\"hrv\":{\"official\":\"Savezna Demokratska Republika Nepal\",\"common\":\"Nepal\"},\"ita\":{\"official\":\"Repubblica federale democratica del Nepal\",\"common\":\"Nepal\"},\"jpn\":{\"official\":\"ネパール連邦民主共和国\",\"common\":\"ネパール\"},\"nld\":{\"official\":\"Federale Democratische Republiek Nepal\",\"common\":\"Nepal\"},\"por\":{\"official\":\"República Democrática Federal do Nepal\",\"common\":\"Nepal\"},\"rus\":{\"official\":\"Федеративная Демократическая Республика Непал\",\"common\":\"Непал\"},\"slk\":{\"official\":\"Nepálska federatívna demokratická republika\",\"common\":\"Nepál\"},\"spa\":{\"official\":\"República Democrática Federal de Nepal\",\"common\":\"Nepal\"},\"fin\":{\"official\":\"Nepalin demokraattinen liittotasavalta\",\"common\":\"Nepal\"},\"est\":{\"official\":\"Nepali Demokraatlik Liitvabariik\",\"common\":\"Nepal\"},\"zho\":{\"official\":\"尼泊尔联邦民主共和国\",\"common\":\"尼泊尔\"},\"pol\":{\"official\":\"Federalna Demokratyczna Republika Nepalu\",\"common\":\"Nepal\"},\"urd\":{\"official\":\"وفاقی جمہوری جمہوریہ نیپال\",\"common\":\"نیپال\"},\"kor\":{\"official\":\"네팔 연방 민주 공화국\",\"common\":\"네팔\"},\"per\":{\"official\":\"جمهوری فدرال دموکراتیک نپال\",\"common\":\"نپال\"}},\"latlng\":[28,84],\"landlocked\":true,\"borders\":[\"CHN\",\"IND\"],\"area\":147181,\"flag\":\"🇳🇵\",\"demonyms\":{\"eng\":{\"f\":\"Nepalese\",\"m\":\"Nepalese\"},\"fra\":{\"f\":\"Népalaise\",\"m\":\"Népalais\"}}},{\"name\":{\"common\":\"Nauru\",\"official\":\"Republic of Nauru\",\"native\":{\"eng\":{\"official\":\"Republic of Nauru\",\"common\":\"Nauru\"},\"nau\":{\"official\":\"Republic of Nauru\",\"common\":\"Nauru\"}}},\"tld\":[\".nr\"],\"cca2\":\"NR\",\"ccn3\":\"520\",\"cca3\":\"NRU\",\"cioc\":\"NRU\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"AUD\":{\"name\":\"Australian dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"74\"]},\"capital\":[\"Yaren\"],\"altSpellings\":[\"NR\",\"Naoero\",\"Pleasant Island\",\"Republic of Nauru\",\"Ripublik Naoero\"],\"region\":\"Oceania\",\"subregion\":\"Micronesia\",\"languages\":{\"eng\":\"English\",\"nau\":\"Nauru\"},\"translations\":{\"ces\":{\"official\":\"Republika Nauru\",\"common\":\"Nauru\"},\"deu\":{\"official\":\"Republik Nauru\",\"common\":\"Nauru\"},\"fra\":{\"official\":\"République de Nauru\",\"common\":\"Nauru\"},\"hrv\":{\"official\":\"Republika Nauru\",\"common\":\"Nauru\"},\"ita\":{\"official\":\"Repubblica di Nauru\",\"common\":\"Nauru\"},\"jpn\":{\"official\":\"ナウル共和国\",\"common\":\"ナウル\"},\"nld\":{\"official\":\"Republiek Nauru\",\"common\":\"Nauru\"},\"por\":{\"official\":\"República de Nauru\",\"common\":\"Nauru\"},\"rus\":{\"official\":\"Республика Науру\",\"common\":\"Науру\"},\"slk\":{\"official\":\"Naurská republika\",\"common\":\"Nauru\"},\"spa\":{\"official\":\"República de Nauru\",\"common\":\"Nauru\"},\"fin\":{\"official\":\"Naurun tasavalta\",\"common\":\"Nauru\"},\"est\":{\"official\":\"Nauru Vabariik\",\"common\":\"Nauru\"},\"zho\":{\"official\":\"瑙鲁共和国\",\"common\":\"瑙鲁\"},\"pol\":{\"official\":\"Republika Nauru\",\"common\":\"Nauru\"},\"urd\":{\"official\":\"جمہوریہ ناورو\",\"common\":\"ناورو\"},\"kor\":{\"official\":\"나우루 공화국\",\"common\":\"나우루\"},\"per\":{\"official\":\"جمهوری نائورو\",\"common\":\"نائورو\"}},\"latlng\":[-0.53333333,166.91666666],\"landlocked\":false,\"borders\":[],\"area\":21,\"flag\":\"🇳🇷\",\"demonyms\":{\"eng\":{\"f\":\"Nauruan\",\"m\":\"Nauruan\"},\"fra\":{\"f\":\"Nauruane\",\"m\":\"Nauruan\"}}},{\"name\":{\"common\":\"New Zealand\",\"official\":\"New Zealand\",\"native\":{\"eng\":{\"official\":\"New Zealand\",\"common\":\"New Zealand\"},\"mri\":{\"official\":\"Aotearoa\",\"common\":\"Aotearoa\"},\"nzs\":{\"official\":\"New Zealand\",\"common\":\"New Zealand\"}}},\"tld\":[\".nz\"],\"cca2\":\"NZ\",\"ccn3\":\"554\",\"cca3\":\"NZL\",\"cioc\":\"NZL\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"NZD\":{\"name\":\"New Zealand dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"4\"]},\"capital\":[\"Wellington\"],\"altSpellings\":[\"NZ\",\"Aotearoa\"],\"region\":\"Oceania\",\"subregion\":\"Australia and New Zealand\",\"languages\":{\"eng\":\"English\",\"mri\":\"Māori\",\"nzs\":\"New Zealand Sign Language\"},\"translations\":{\"ces\":{\"official\":\"Nový Zéland\",\"common\":\"Nový Zéland\"},\"deu\":{\"official\":\"Neuseeland\",\"common\":\"Neuseeland\"},\"fra\":{\"official\":\"Nouvelle-Zélande\",\"common\":\"Nouvelle-Zélande\"},\"hrv\":{\"official\":\"Novi Zeland\",\"common\":\"Novi Zeland\"},\"ita\":{\"official\":\"Nuova Zelanda\",\"common\":\"Nuova Zelanda\"},\"jpn\":{\"official\":\"ニュージーランド\",\"common\":\"ニュージーランド\"},\"nld\":{\"official\":\"Nieuw Zeeland\",\"common\":\"Nieuw-Zeeland\"},\"por\":{\"official\":\"nova Zelândia\",\"common\":\"Nova Zelândia\"},\"rus\":{\"official\":\"Новая Зеландия\",\"common\":\"Новая Зеландия\"},\"slk\":{\"official\":\"Nový Zéland\",\"common\":\"Nový Zéland\"},\"spa\":{\"official\":\"nueva Zelanda\",\"common\":\"Nueva Zelanda\"},\"fin\":{\"official\":\"Uusi-Seelanti\",\"common\":\"Uusi-Seelanti\"},\"est\":{\"official\":\"Uus-Meremaa\",\"common\":\"Uus-Meremaa\"},\"zho\":{\"official\":\"新西兰\",\"common\":\"新西兰\"},\"pol\":{\"official\":\"Nowa Zelandia\",\"common\":\"Nowa Zelandia\"},\"urd\":{\"official\":\"نیوزی لینڈ\",\"common\":\"نیوزی لینڈ\"},\"kor\":{\"official\":\"뉴질랜드\",\"common\":\"뉴질랜드\"},\"per\":{\"official\":\"نیوزیلند\",\"common\":\"نیوزیلند\"}},\"latlng\":[-41,174],\"landlocked\":false,\"borders\":[],\"area\":270467,\"flag\":\"🇳🇿\",\"demonyms\":{\"eng\":{\"f\":\"New Zealander\",\"m\":\"New Zealander\"},\"fra\":{\"f\":\"Neo-Zélandaise\",\"m\":\"Neo-Zélandais\"}}},{\"name\":{\"common\":\"Oman\",\"official\":\"Sultanate of Oman\",\"native\":{\"ara\":{\"official\":\"سلطنة عمان\",\"common\":\"عمان\"}}},\"tld\":[\".om\"],\"cca2\":\"OM\",\"ccn3\":\"512\",\"cca3\":\"OMN\",\"cioc\":\"OMA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"OMR\":{\"name\":\"Omani rial\",\"symbol\":\"ر.ع.\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"68\"]},\"capital\":[\"Muscat\"],\"altSpellings\":[\"OM\",\"Sultanate of Oman\",\"Salṭanat ʻUmān\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Sultanát Omán\",\"common\":\"Omán\"},\"deu\":{\"official\":\"Sultanat Oman\",\"common\":\"Oman\"},\"fra\":{\"official\":\"Sultanat d\\'Oman\",\"common\":\"Oman\"},\"hrv\":{\"official\":\"Sultanat Oman\",\"common\":\"Oman\"},\"ita\":{\"official\":\"Sultanato dell\\'Oman\",\"common\":\"oman\"},\"jpn\":{\"official\":\"オマーン·スルタン国\",\"common\":\"オマーン\"},\"nld\":{\"official\":\"Sultanaat van Oman\",\"common\":\"Oman\"},\"por\":{\"official\":\"Sultanato de Omã\",\"common\":\"Omã\"},\"rus\":{\"official\":\"Султанат Оман\",\"common\":\"Оман\"},\"slk\":{\"official\":\"Ománsky sultanát\",\"common\":\"Omán\"},\"spa\":{\"official\":\"Sultanato de Omán\",\"common\":\"Omán\"},\"fin\":{\"official\":\"Omanin sulttaanikunta\",\"common\":\"Oman\"},\"est\":{\"official\":\"Omaani Sultaniriik\",\"common\":\"Omaan\"},\"zho\":{\"official\":\"阿曼苏丹国\",\"common\":\"阿曼\"},\"pol\":{\"official\":\"Sułtanat Omanu\",\"common\":\"Oman\"},\"urd\":{\"official\":\"سلطنت عمان\",\"common\":\"عمان\"},\"kor\":{\"official\":\"오만 술탄국\",\"common\":\"오만\"},\"per\":{\"official\":\"سلطاننشین عُمان\",\"common\":\"عمان\"}},\"latlng\":[21,57],\"landlocked\":false,\"borders\":[\"SAU\",\"ARE\",\"YEM\"],\"area\":309500,\"flag\":\"🇴🇲\",\"demonyms\":{\"eng\":{\"f\":\"Omani\",\"m\":\"Omani\"},\"fra\":{\"f\":\"Omanaise\",\"m\":\"Omanais\"}}},{\"name\":{\"common\":\"Pakistan\",\"official\":\"Islamic Republic of Pakistan\",\"native\":{\"eng\":{\"official\":\"Islamic Republic of Pakistan\",\"common\":\"Pakistan\"},\"urd\":{\"official\":\"اسلامی جمہوریۂ پاكستان\",\"common\":\"پاكستان\"}}},\"tld\":[\".pk\"],\"cca2\":\"PK\",\"ccn3\":\"586\",\"cca3\":\"PAK\",\"cioc\":\"PAK\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"PKR\":{\"name\":\"Pakistani rupee\",\"symbol\":\"₨\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"2\"]},\"capital\":[\"Islamabad\"],\"altSpellings\":[\"PK\",\"Pākistān\",\"Islamic Republic of Pakistan\",\"Islāmī Jumhūriya\\'eh Pākistān\"],\"region\":\"Asia\",\"subregion\":\"Southern Asia\",\"languages\":{\"eng\":\"English\",\"urd\":\"Urdu\"},\"translations\":{\"ces\":{\"official\":\"Pákistánská islámská republika\",\"common\":\"Pákistán\"},\"deu\":{\"official\":\"Islamische Republik Pakistan\",\"common\":\"Pakistan\"},\"fra\":{\"official\":\"République islamique du Pakistan\",\"common\":\"Pakistan\"},\"hrv\":{\"official\":\"Islamska Republika Pakistan\",\"common\":\"Pakistan\"},\"ita\":{\"official\":\"Repubblica islamica del Pakistan\",\"common\":\"Pakistan\"},\"jpn\":{\"official\":\"パキスタン\",\"common\":\"パキスタン\"},\"nld\":{\"official\":\"Islamitische Republiek Pakistan\",\"common\":\"Pakistan\"},\"por\":{\"official\":\"República Islâmica do Paquistão\",\"common\":\"Paquistão\"},\"rus\":{\"official\":\"Исламская Республика Пакистан\",\"common\":\"Пакистан\"},\"slk\":{\"official\":\"Pakistanská islamská republika\",\"common\":\"Pakistan\"},\"spa\":{\"official\":\"República Islámica de Pakistán\",\"common\":\"Pakistán\"},\"fin\":{\"official\":\"Pakistanin islamilainen tasavalta\",\"common\":\"Pakistan\"},\"est\":{\"official\":\"Pakistani Islamivabariik\",\"common\":\"Pakistan\"},\"zho\":{\"official\":\"巴基斯坦伊斯兰共和国\",\"common\":\"巴基斯坦\"},\"pol\":{\"official\":\"Islamska Republika Pakistanu\",\"common\":\"Pakistan\"},\"urd\":{\"official\":\"اسلامی جمہوریہ پاکستان\",\"common\":\"پاکستان\"},\"kor\":{\"official\":\"파키스탄 이슬람 공화국\",\"common\":\"파키스탄\"},\"per\":{\"official\":\"جمهوری اسلامی پاکستان\",\"common\":\"پاکستان\"}},\"latlng\":[30,70],\"landlocked\":false,\"borders\":[\"AFG\",\"CHN\",\"IND\",\"IRN\"],\"area\":881912,\"flag\":\"🇵🇰\",\"demonyms\":{\"eng\":{\"f\":\"Pakistani\",\"m\":\"Pakistani\"},\"fra\":{\"f\":\"Pakistanaise\",\"m\":\"Pakistanais\"}}},{\"name\":{\"common\":\"Panama\",\"official\":\"Republic of Panama\",\"native\":{\"spa\":{\"official\":\"República de Panamá\",\"common\":\"Panamá\"}}},\"tld\":[\".pa\"],\"cca2\":\"PA\",\"ccn3\":\"591\",\"cca3\":\"PAN\",\"cioc\":\"PAN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"PAB\":{\"name\":\"Panamanian balboa\",\"symbol\":\"B/.\"},\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"07\"]},\"capital\":[\"Panama City\"],\"altSpellings\":[\"PA\",\"Republic of Panama\",\"República de Panamá\"],\"region\":\"Americas\",\"subregion\":\"Central America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Panamská republika\",\"common\":\"Panama\"},\"deu\":{\"official\":\"Republik Panama\",\"common\":\"Panama\"},\"fra\":{\"official\":\"République du Panama\",\"common\":\"Panama\"},\"hrv\":{\"official\":\"Republika Panama\",\"common\":\"Panama\"},\"ita\":{\"official\":\"Repubblica di Panama\",\"common\":\"Panama\"},\"jpn\":{\"official\":\"パナマ共和国\",\"common\":\"パナマ\"},\"nld\":{\"official\":\"Republiek Panama\",\"common\":\"Panama\"},\"por\":{\"official\":\"República do Panamá\",\"common\":\"Panamá\"},\"rus\":{\"official\":\"Республика Панама\",\"common\":\"Панама\"},\"slk\":{\"official\":\"Panamská republika\",\"common\":\"Panama\"},\"spa\":{\"official\":\"República de Panamá\",\"common\":\"Panamá\"},\"fin\":{\"official\":\"Panaman tasavalta\",\"common\":\"Panama\"},\"est\":{\"official\":\"Panama Vabariik\",\"common\":\"Panama\"},\"zho\":{\"official\":\"巴拿马共和国\",\"common\":\"巴拿马\"},\"pol\":{\"official\":\"Republika Panamy\",\"common\":\"Panama\"},\"urd\":{\"official\":\"جمہوریہ پاناما\",\"common\":\"پاناما\"},\"kor\":{\"official\":\"파나마 공화국\",\"common\":\"파나마\"},\"per\":{\"official\":\"جمهوری پاناما\",\"common\":\"پاناما\"}},\"latlng\":[9,-80],\"landlocked\":false,\"borders\":[\"COL\",\"CRI\"],\"area\":75417,\"flag\":\"🇵🇦\",\"demonyms\":{\"eng\":{\"f\":\"Panamanian\",\"m\":\"Panamanian\"},\"fra\":{\"f\":\"Panaméenne\",\"m\":\"Panaméen\"}}},{\"name\":{\"common\":\"Pitcairn Islands\",\"official\":\"Pitcairn Group of Islands\",\"native\":{\"eng\":{\"official\":\"Pitcairn Group of Islands\",\"common\":\"Pitcairn Islands\"}}},\"tld\":[\".pn\"],\"cca2\":\"PN\",\"ccn3\":\"612\",\"cca3\":\"PCN\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"NZD\":{\"name\":\"New Zealand dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"4\"]},\"capital\":[\"Adamstown\"],\"altSpellings\":[\"PN\",\"Pitcairn\",\"Pitcairn Henderson Ducie and Oeno Islands\"],\"region\":\"Oceania\",\"subregion\":\"Polynesia\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Pitcairnovy ostrovy\",\"common\":\"Pitcairnovy ostrovy\"},\"deu\":{\"official\":\"Pitcairninseln\",\"common\":\"Pitcairninseln\"},\"fra\":{\"official\":\"Groupe d\\'îles Pitcairn\",\"common\":\"Îles Pitcairn\"},\"hrv\":{\"official\":\"Pitcairn skupine otoka\",\"common\":\"Pitcairnovo otočje\"},\"ita\":{\"official\":\"Pitcairn gruppo di isole\",\"common\":\"Isole Pitcairn\"},\"jpn\":{\"official\":\"島のピトケアングループ\",\"common\":\"ピトケアン\"},\"nld\":{\"official\":\"Pitcairn groep eilanden\",\"common\":\"Pitcairneilanden\"},\"por\":{\"official\":\"Pitcairn grupo de ilhas\",\"common\":\"Ilhas Pitcairn\"},\"rus\":{\"official\":\"Питкэрн группа островов\",\"common\":\"Острова Питкэрн\"},\"slk\":{\"official\":\"Pitcairnove ostrovy\",\"common\":\"Pitcairnove ostrovy\"},\"spa\":{\"official\":\"Grupo de Islas Pitcairn\",\"common\":\"Islas Pitcairn\"},\"fin\":{\"official\":\"Pitcairn\",\"common\":\"Pitcairn\"},\"est\":{\"official\":\"Pitcairni, Hendersoni, Ducie ja Oeno saar\",\"common\":\"Pitcairn\"},\"zho\":{\"official\":\"皮特凯恩群岛\",\"common\":\"皮特凯恩群岛\"},\"pol\":{\"official\":\"Wyspy Pitcairn, Henderson, Ducie i Oeno\",\"common\":\"Pitcairn\"},\"urd\":{\"official\":\"پٹکیرن جزائر\",\"common\":\"جزائر پٹکیرن\"},\"kor\":{\"official\":\"핏케언 제도\",\"common\":\"핏케언 제도\"},\"per\":{\"official\":\"جزایر پیتکرن\",\"common\":\"جزایر پیتکرن\"}},\"latlng\":[-25.06666666,-130.1],\"landlocked\":false,\"borders\":[],\"area\":47,\"flag\":\"🇵🇳\",\"demonyms\":{\"eng\":{\"f\":\"Pitcairn Islander\",\"m\":\"Pitcairn Islander\"},\"fra\":{\"f\":\"Pitcairnaise\",\"m\":\"Pitcairnais\"}}},{\"name\":{\"common\":\"Peru\",\"official\":\"Republic of Peru\",\"native\":{\"aym\":{\"official\":\"Piruw Suyu\",\"common\":\"Piruw\"},\"que\":{\"official\":\"Piruw Ripuwlika\",\"common\":\"Piruw\"},\"spa\":{\"official\":\"República del Perú\",\"common\":\"Perú\"}}},\"tld\":[\".pe\"],\"cca2\":\"PE\",\"ccn3\":\"604\",\"cca3\":\"PER\",\"cioc\":\"PER\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"PEN\":{\"name\":\"Peruvian sol\",\"symbol\":\"S/.\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"1\"]},\"capital\":[\"Lima\"],\"altSpellings\":[\"PE\",\"Republic of Peru\",\"República del Perú\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"aym\":\"Aymara\",\"que\":\"Quechua\",\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Peruánská republika\",\"common\":\"Peru\"},\"deu\":{\"official\":\"Republik Peru\",\"common\":\"Peru\"},\"fra\":{\"official\":\"République du Pérou\",\"common\":\"Pérou\"},\"hrv\":{\"official\":\"Republika Peru\",\"common\":\"Peru\"},\"ita\":{\"official\":\"Repubblica del Perù\",\"common\":\"Perù\"},\"jpn\":{\"official\":\"ペルー共和国\",\"common\":\"ペルー\"},\"nld\":{\"official\":\"Republiek Peru\",\"common\":\"Peru\"},\"por\":{\"official\":\"República do Peru\",\"common\":\"Perú\"},\"rus\":{\"official\":\"Республика Перу\",\"common\":\"Перу\"},\"slk\":{\"official\":\"Peruánska republika\",\"common\":\"Peru\"},\"spa\":{\"official\":\"República de Perú\",\"common\":\"Perú\"},\"fin\":{\"official\":\"Perun tasavalta\",\"common\":\"Peru\"},\"est\":{\"official\":\"Peruu Vabariik\",\"common\":\"Peruu\"},\"zho\":{\"official\":\"秘鲁共和国\",\"common\":\"秘鲁\"},\"pol\":{\"official\":\"Republika Peru\",\"common\":\"Peru\"},\"urd\":{\"official\":\"جمہوریہ پیرو\",\"common\":\"پیرو\"},\"kor\":{\"official\":\"페루 공화국\",\"common\":\"페루\"},\"per\":{\"official\":\"جمهوری پرو\",\"common\":\"پرو\"}},\"latlng\":[-10,-76],\"landlocked\":false,\"borders\":[\"BOL\",\"BRA\",\"CHL\",\"COL\",\"ECU\"],\"area\":1285216,\"flag\":\"🇵🇪\",\"demonyms\":{\"eng\":{\"f\":\"Peruvian\",\"m\":\"Peruvian\"},\"fra\":{\"f\":\"Péruvienne\",\"m\":\"Péruvien\"}}},{\"name\":{\"common\":\"Philippines\",\"official\":\"Republic of the Philippines\",\"native\":{\"eng\":{\"official\":\"Republic of the Philippines\",\"common\":\"Philippines\"},\"fil\":{\"official\":\"Republic of the Philippines\",\"common\":\"Pilipinas\"}}},\"tld\":[\".ph\"],\"cca2\":\"PH\",\"ccn3\":\"608\",\"cca3\":\"PHL\",\"cioc\":\"PHI\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"PHP\":{\"name\":\"Philippine peso\",\"symbol\":\"₱\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"3\"]},\"capital\":[\"Manila\"],\"altSpellings\":[\"PH\",\"Republic of the Philippines\",\"Repúblika ng Pilipinas\"],\"region\":\"Asia\",\"subregion\":\"South-Eastern Asia\",\"languages\":{\"eng\":\"English\",\"fil\":\"Filipino\"},\"translations\":{\"ces\":{\"official\":\"Filipínská republika\",\"common\":\"Filipíny\"},\"deu\":{\"official\":\"Republik der Philippinen\",\"common\":\"Philippinen\"},\"fra\":{\"official\":\"République des Philippines\",\"common\":\"Philippines\"},\"hrv\":{\"official\":\"Republika Filipini\",\"common\":\"Filipini\"},\"ita\":{\"official\":\"Repubblica delle Filippine\",\"common\":\"Filippine\"},\"jpn\":{\"official\":\"フィリピン共和国\",\"common\":\"フィリピン\"},\"nld\":{\"official\":\"Republiek der Filipijnen\",\"common\":\"Filipijnen\"},\"por\":{\"official\":\"República das Filipinas\",\"common\":\"Filipinas\"},\"rus\":{\"official\":\"Республика Филиппины\",\"common\":\"Филиппины\"},\"slk\":{\"official\":\"Filipínska republika\",\"common\":\"Filipíny\"},\"spa\":{\"official\":\"República de las Filipinas\",\"common\":\"Filipinas\"},\"fin\":{\"official\":\"Filippiinien tasavalta\",\"common\":\"Filippiinit\"},\"est\":{\"official\":\"Filipiini Vabariik\",\"common\":\"Filipiinid\"},\"zho\":{\"official\":\"菲律宾共和国\",\"common\":\"菲律宾\"},\"pol\":{\"official\":\"Republika Filipin\",\"common\":\"Filipiny\"},\"urd\":{\"official\":\"جمہوریہ فلپائن\",\"common\":\"فلپائن\"},\"kor\":{\"official\":\"필리핀 공화국\",\"common\":\"필리핀\"},\"per\":{\"official\":\"جمهوری فیلیپین\",\"common\":\"فیلیپین\"}},\"latlng\":[13,122],\"landlocked\":false,\"borders\":[],\"area\":342353,\"flag\":\"🇵🇭\",\"demonyms\":{\"eng\":{\"f\":\"Filipino\",\"m\":\"Filipino\"},\"fra\":{\"f\":\"Philippine\",\"m\":\"Philippin\"}}},{\"name\":{\"common\":\"Palau\",\"official\":\"Republic of Palau\",\"native\":{\"eng\":{\"official\":\"Republic of Palau\",\"common\":\"Palau\"},\"pau\":{\"official\":\"Beluu er a Belau\",\"common\":\"Belau\"}}},\"tld\":[\".pw\"],\"cca2\":\"PW\",\"ccn3\":\"585\",\"cca3\":\"PLW\",\"cioc\":\"PLW\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"80\"]},\"capital\":[\"Ngerulmud\"],\"altSpellings\":[\"PW\",\"Republic of Palau\",\"Beluu er a Belau\"],\"region\":\"Oceania\",\"subregion\":\"Micronesia\",\"languages\":{\"eng\":\"English\",\"pau\":\"Palauan\"},\"translations\":{\"ces\":{\"official\":\"Republika Palau\",\"common\":\"Palau\"},\"deu\":{\"official\":\"Republik Palau\",\"common\":\"Palau\"},\"fra\":{\"official\":\"République des Palaos (Palau)\",\"common\":\"Palaos (Palau)\"},\"hrv\":{\"official\":\"Republika Palau\",\"common\":\"Palau\"},\"ita\":{\"official\":\"Repubblica di Palau\",\"common\":\"Palau\"},\"jpn\":{\"official\":\"パラオ共和国\",\"common\":\"パラオ\"},\"nld\":{\"official\":\"Republiek van Palau\",\"common\":\"Palau\"},\"por\":{\"official\":\"República de Palau\",\"common\":\"Palau\"},\"rus\":{\"official\":\"Республика Палау\",\"common\":\"Палау\"},\"slk\":{\"official\":\"Palauská republika\",\"common\":\"Palau\"},\"spa\":{\"official\":\"República de Palau\",\"common\":\"Palau\"},\"fin\":{\"official\":\"Palaun tasavalta\",\"common\":\"Palau\"},\"est\":{\"official\":\"Belau Vabariik\",\"common\":\"Belau\"},\"zho\":{\"official\":\"帕劳共和国\",\"common\":\"帕劳\"},\"pol\":{\"official\":\"Republika Palau\",\"common\":\"Palau\"},\"urd\":{\"official\":\"جمہوریہ پلاؤ\",\"common\":\"پلاؤ\"},\"kor\":{\"official\":\"팔라우 공화국\",\"common\":\"팔라우\"},\"per\":{\"official\":\"جمهوری پالائو\",\"common\":\"پالائو\"}},\"latlng\":[7.5,134.5],\"landlocked\":false,\"borders\":[],\"area\":459,\"flag\":\"🇵🇼\",\"demonyms\":{\"eng\":{\"f\":\"Palauan\",\"m\":\"Palauan\"},\"fra\":{\"f\":\"Paluane\",\"m\":\"Paluan\"}}},{\"name\":{\"common\":\"Papua New Guinea\",\"official\":\"Independent State of Papua New Guinea\",\"native\":{\"eng\":{\"official\":\"Independent State of Papua New Guinea\",\"common\":\"Papua New Guinea\"},\"hmo\":{\"official\":\"Independen Stet bilong Papua Niugini\",\"common\":\"Papua Niu Gini\"},\"tpi\":{\"official\":\"Independen Stet bilong Papua Niugini\",\"common\":\"Papua Niugini\"}}},\"tld\":[\".pg\"],\"cca2\":\"PG\",\"ccn3\":\"598\",\"cca3\":\"PNG\",\"cioc\":\"PNG\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"PGK\":{\"name\":\"Papua New Guinean kina\",\"symbol\":\"K\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"75\"]},\"capital\":[\"Port Moresby\"],\"altSpellings\":[\"PG\",\"Independent State of Papua New Guinea\",\"Independen Stet bilong Papua Niugini\"],\"region\":\"Oceania\",\"subregion\":\"Melanesia\",\"languages\":{\"eng\":\"English\",\"hmo\":\"Hiri Motu\",\"tpi\":\"Tok Pisin\"},\"translations\":{\"ces\":{\"official\":\"Nezávislý stát Papua Nová Guinea\",\"common\":\"Papua-Nová Guinea\"},\"deu\":{\"official\":\"Unabhängiger Staat Papua-Neuguinea\",\"common\":\"Papua-Neuguinea\"},\"fra\":{\"official\":\"État indépendant de Papouasie-Nouvelle-Guinée\",\"common\":\"Papouasie-Nouvelle-Guinée\"},\"hrv\":{\"official\":\"Nezavisna Država Papui Novoj Gvineji\",\"common\":\"Papua Nova Gvineja\"},\"ita\":{\"official\":\"Stato indipendente di Papua Nuova Guinea\",\"common\":\"Papua Nuova Guinea\"},\"jpn\":{\"official\":\"パプアニューギニア独立国\",\"common\":\"パプアニューギニア\"},\"nld\":{\"official\":\"Onafhankelijke Staat Papoea -Nieuw-Guinea\",\"common\":\"Papoea-Nieuw-Guinea\"},\"por\":{\"official\":\"Estado Independente da Papua Nova Guiné\",\"common\":\"Papua Nova Guiné\"},\"rus\":{\"official\":\"Независимое Государство Папуа-Новой Гвинеи\",\"common\":\"Папуа — Новая Гвинея\"},\"slk\":{\"official\":\"Nezávislý štát Papua-Nová Guinea\",\"common\":\"Papua-Nová Guinea\"},\"spa\":{\"official\":\"Estado Independiente de Papúa Nueva Guinea\",\"common\":\"Papúa Nueva Guinea\"},\"fin\":{\"official\":\"Papua-Uuden-Guinean Itsenäinen valtio\",\"common\":\"Papua-Uusi-Guinea\"},\"est\":{\"official\":\"Paapua Uus-Guinea Iseseisvusriik\",\"common\":\"Paapua Uus-Guinea\"},\"zho\":{\"official\":\"巴布亚新几内亚\",\"common\":\"巴布亚新几内亚\"},\"pol\":{\"official\":\"Niezależne Państwo Papui-Nowej Gwinei\",\"common\":\"Papua-Nowa Gwinea\"},\"urd\":{\"official\":\"آزاد ریاستِ پاپوا نیو گنی\",\"common\":\"پاپوا نیو گنی\"},\"kor\":{\"official\":\"파푸아뉴기니 독립국\",\"common\":\"파푸아뉴기니\"},\"per\":{\"official\":\"مملکت مستقل پاپوآ گینهٔ نو\",\"common\":\"پاپوآ گینه نو\"}},\"latlng\":[-6,147],\"landlocked\":false,\"borders\":[\"IDN\"],\"area\":462840,\"flag\":\"🇵🇬\",\"demonyms\":{\"eng\":{\"f\":\"Papua New Guinean\",\"m\":\"Papua New Guinean\"},\"fra\":{\"f\":\"Papouasienne\",\"m\":\"Papouasien\"}}},{\"name\":{\"common\":\"Poland\",\"official\":\"Republic of Poland\",\"native\":{\"pol\":{\"official\":\"Rzeczpospolita Polska\",\"common\":\"Polska\"}}},\"tld\":[\".pl\"],\"cca2\":\"PL\",\"ccn3\":\"616\",\"cca3\":\"POL\",\"cioc\":\"POL\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"PLN\":{\"name\":\"Polish złoty\",\"symbol\":\"zł\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"8\"]},\"capital\":[\"Warsaw\"],\"altSpellings\":[\"PL\",\"Republic of Poland\",\"Rzeczpospolita Polska\"],\"region\":\"Europe\",\"subregion\":\"Eastern Europe\",\"languages\":{\"pol\":\"Polish\"},\"translations\":{\"ces\":{\"official\":\"Polská republika\",\"common\":\"Polsko\"},\"deu\":{\"official\":\"Republik Polen\",\"common\":\"Polen\"},\"fra\":{\"official\":\"République de Pologne\",\"common\":\"Pologne\"},\"hrv\":{\"official\":\"Republika Poljska\",\"common\":\"Poljska\"},\"ita\":{\"official\":\"Repubblica di Polonia\",\"common\":\"Polonia\"},\"jpn\":{\"official\":\"ポーランド共和国\",\"common\":\"ポーランド\"},\"nld\":{\"official\":\"Republiek Polen\",\"common\":\"Polen\"},\"por\":{\"official\":\"República da Polónia\",\"common\":\"Polónia\"},\"rus\":{\"official\":\"Республика Польша\",\"common\":\"Польша\"},\"slk\":{\"official\":\"Poľská republika\",\"common\":\"Poľsko\"},\"spa\":{\"official\":\"República de Polonia\",\"common\":\"Polonia\"},\"fin\":{\"official\":\"Puolan tasavalta\",\"common\":\"Puola\"},\"est\":{\"official\":\"Poola Vabariik\",\"common\":\"Poola\"},\"zho\":{\"official\":\"波兰共和国\",\"common\":\"波兰\"},\"pol\":{\"official\":\"Rzeczpospolita Polska\",\"common\":\"Polska\"},\"urd\":{\"official\":\"جمہوریہ پولینڈ\",\"common\":\"پولینڈ\"},\"kor\":{\"official\":\"폴란드 공화국\",\"common\":\"폴란드\"},\"per\":{\"official\":\"جمهوری لهستان\",\"common\":\"لهستان\"}},\"latlng\":[52,20],\"landlocked\":false,\"borders\":[\"BLR\",\"CZE\",\"DEU\",\"LTU\",\"RUS\",\"SVK\",\"UKR\"],\"area\":312679,\"flag\":\"🇵🇱\",\"demonyms\":{\"eng\":{\"f\":\"Polish\",\"m\":\"Polish\"},\"fra\":{\"f\":\"Polonaise\",\"m\":\"Polonais\"}}},{\"name\":{\"common\":\"Puerto Rico\",\"official\":\"Commonwealth of Puerto Rico\",\"native\":{\"eng\":{\"official\":\"Commonwealth of Puerto Rico\",\"common\":\"Puerto Rico\"},\"spa\":{\"official\":\"Estado Libre Asociado de Puerto Rico\",\"common\":\"Puerto Rico\"}}},\"tld\":[\".pr\"],\"cca2\":\"PR\",\"ccn3\":\"630\",\"cca3\":\"PRI\",\"cioc\":\"PUR\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"787\",\"939\"]},\"capital\":[\"San Juan\"],\"altSpellings\":[\"PR\",\"Commonwealth of Puerto Rico\",\"Estado Libre Asociado de Puerto Rico\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\",\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Portoriko\",\"common\":\"Portoriko\"},\"deu\":{\"official\":\"Freistaat Puerto Rico\",\"common\":\"Puerto Rico\"},\"fra\":{\"official\":\"Porto Rico\",\"common\":\"Porto Rico\"},\"hrv\":{\"official\":\"Zajednica Puerto Rico\",\"common\":\"Portoriko\"},\"ita\":{\"official\":\"Commonwealth di Porto Rico\",\"common\":\"Porto Rico\"},\"jpn\":{\"official\":\"プエルトリコのコモンウェルス\",\"common\":\"プエルトリコ\"},\"nld\":{\"official\":\"Gemenebest van Puerto Rico\",\"common\":\"Puerto Rico\"},\"por\":{\"official\":\"Commonwealth of Puerto Rico\",\"common\":\"Porto Rico\"},\"rus\":{\"official\":\"Содружество Пуэрто-Рико\",\"common\":\"Пуэрто-Рико\"},\"slk\":{\"official\":\"Portorické spoločenstvo\",\"common\":\"Portoriko\"},\"spa\":{\"official\":\"Asociado de Puerto Rico\",\"common\":\"Puerto Rico\"},\"fin\":{\"official\":\"Puerto Rico\",\"common\":\"Puerto Rico\"},\"est\":{\"official\":\"Puerto Rico Ühendus\",\"common\":\"Puerto Rico\"},\"zho\":{\"official\":\"波多黎各联邦\",\"common\":\"波多黎各\"},\"pol\":{\"official\":\"Wolne Stowarzyszone Państwo Portoryko\",\"common\":\"Portoryko\"},\"urd\":{\"official\":\" دولتِ مشترکہ پورٹو ریکو\",\"common\":\"پورٹو ریکو\"},\"kor\":{\"official\":\"푸에르토리코\",\"common\":\"푸에르토리코\"},\"per\":{\"official\":\"قلمرو همسود پورتوریکو\",\"common\":\"پورتوریکو\"}},\"latlng\":[18.25,-66.5],\"landlocked\":false,\"borders\":[],\"area\":8870,\"flag\":\"🇵🇷\",\"demonyms\":{\"eng\":{\"f\":\"Puerto Rican\",\"m\":\"Puerto Rican\"},\"fra\":{\"f\":\"Portoricaine\",\"m\":\"Portoricain\"}}},{\"name\":{\"common\":\"North Korea\",\"official\":\"Democratic People\\'s Republic of Korea\",\"native\":{\"kor\":{\"official\":\"조선민주주의인민공화국\",\"common\":\"조선\"}}},\"tld\":[\".kp\"],\"cca2\":\"KP\",\"ccn3\":\"408\",\"cca3\":\"PRK\",\"cioc\":\"PRK\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"KPW\":{\"name\":\"North Korean won\",\"symbol\":\"₩\"}},\"idd\":{\"root\":\"+8\",\"suffixes\":[\"50\"]},\"capital\":[\"Pyongyang\"],\"altSpellings\":[\"KP\",\"Democratic People\\'s Republic of Korea\",\"DPRK\",\"조선민주주의인민공화국\",\"Chosŏn Minjujuŭi Inmin Konghwaguk\",\"Korea, Democratic People\\'s Republic of\",\"북한\",\"북조선\"],\"region\":\"Asia\",\"subregion\":\"Eastern Asia\",\"languages\":{\"kor\":\"Korean\"},\"translations\":{\"ces\":{\"official\":\"Korejská lidově demokratická republika\",\"common\":\"Severní Korea\"},\"deu\":{\"official\":\"Demokratische Volksrepublik Korea\",\"common\":\"Nordkorea\"},\"fra\":{\"official\":\"République populaire démocratique de Corée\",\"common\":\"Corée du Nord\"},\"hrv\":{\"official\":\"Demokratska Narodna Republika Koreja\",\"common\":\"Sjeverna Koreja\"},\"ita\":{\"official\":\"Repubblica democratica popolare di Corea\",\"common\":\"Corea del Nord\"},\"jpn\":{\"official\":\"朝鮮民主主義人民共和国\",\"common\":\"朝鮮民主主義人民共和国\"},\"nld\":{\"official\":\"Democratische Volksrepubliek Korea\",\"common\":\"Noord-Korea\"},\"por\":{\"official\":\"República Popular Democrática da Coreia\",\"common\":\"Coreia do Norte\"},\"rus\":{\"official\":\"Корейская Народно-Демократическая Республика Корея\",\"common\":\"Северная Корея\"},\"slk\":{\"official\":\"Kórejská ľudovodemokratická republika\",\"common\":\"Kórejská ľudovodemokratická republika (KĽR, Severná Kórea)\"},\"spa\":{\"official\":\"República Popular Democrática de Corea\",\"common\":\"Corea del Norte\"},\"fin\":{\"official\":\"Korean demokraattinen kansantasavalta\",\"common\":\"Pohjois-Korea\"},\"est\":{\"official\":\"Korea Rahvademokraatlik Vabariik\",\"common\":\"Põhja-Korea\"},\"zho\":{\"official\":\"朝鲜人民民主共和国\",\"common\":\"朝鲜\"},\"pol\":{\"official\":\"Koreańska Republika Ludowo-Demokratyczna\",\"common\":\"Korea Północna\"},\"urd\":{\"official\":\"جمہوری عوامی جمہوریہ کوریا\",\"common\":\"شمالی کوریا\"},\"kor\":{\"official\":\"조선민주주의인민공화국\",\"common\":\"조선\"},\"per\":{\"official\":\"جمهوری دموکراتیک خلق کره\",\"common\":\"کُره شمالی\"}},\"latlng\":[40,127],\"landlocked\":false,\"borders\":[\"CHN\",\"KOR\",\"RUS\"],\"area\":120538,\"flag\":\"🇰🇵\",\"demonyms\":{\"eng\":{\"f\":\"North Korean\",\"m\":\"North Korean\"},\"fra\":{\"f\":\"Nord-coréenne\",\"m\":\"Nord-coréen\"}}},{\"name\":{\"common\":\"Portugal\",\"official\":\"Portuguese Republic\",\"native\":{\"por\":{\"official\":\"República português\",\"common\":\"Portugal\"}}},\"tld\":[\".pt\"],\"cca2\":\"PT\",\"ccn3\":\"620\",\"cca3\":\"PRT\",\"cioc\":\"POR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"51\"]},\"capital\":[\"Lisbon\"],\"altSpellings\":[\"PT\",\"Portuguesa\",\"Portuguese Republic\",\"República Portuguesa\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"por\":\"Portuguese\"},\"translations\":{\"ces\":{\"official\":\"Portugalská republika\",\"common\":\"Portugalsko\"},\"deu\":{\"official\":\"Portugiesische Republik\",\"common\":\"Portugal\"},\"fra\":{\"official\":\"République portugaise\",\"common\":\"Portugal\"},\"hrv\":{\"official\":\"Portugalska Republika\",\"common\":\"Portugal\"},\"ita\":{\"official\":\"Repubblica portoghese\",\"common\":\"Portogallo\"},\"jpn\":{\"official\":\"ポルトガル共和国\",\"common\":\"ポルトガル\"},\"nld\":{\"official\":\"Portugese Republiek\",\"common\":\"Portugal\"},\"por\":{\"official\":\"República português\",\"common\":\"Portugal\"},\"rus\":{\"official\":\"Португальская Республика\",\"common\":\"Португалия\"},\"slk\":{\"official\":\"Portugalská republika\",\"common\":\"Portugalsko\"},\"spa\":{\"official\":\"República Portuguesa\",\"common\":\"Portugal\"},\"fin\":{\"official\":\"Portugalin tasavalta\",\"common\":\"Portugali\"},\"est\":{\"official\":\"Portugali Vabariik\",\"common\":\"Portugal\"},\"zho\":{\"official\":\"葡萄牙共和国\",\"common\":\"葡萄牙\"},\"pol\":{\"official\":\"Republika Portugalska\",\"common\":\"Portugalia\"},\"urd\":{\"official\":\"جمہوریہ پرتگال\",\"common\":\"پرتگال\"},\"kor\":{\"official\":\"포르투갈 공화국\",\"common\":\"포르투갈\"},\"per\":{\"official\":\"جمهوری پرتغال\",\"common\":\"پرتغال\"}},\"latlng\":[39.5,-8],\"landlocked\":false,\"borders\":[\"ESP\"],\"area\":92090,\"flag\":\"🇵🇹\",\"demonyms\":{\"eng\":{\"f\":\"Portuguese\",\"m\":\"Portuguese\"},\"fra\":{\"f\":\"Portugaise\",\"m\":\"Portugais\"}}},{\"name\":{\"common\":\"Paraguay\",\"official\":\"Republic of Paraguay\",\"native\":{\"grn\":{\"official\":\"Tetã Paraguái\",\"common\":\"Paraguái\"},\"spa\":{\"official\":\"República de Paraguay\",\"common\":\"Paraguay\"}}},\"tld\":[\".py\"],\"cca2\":\"PY\",\"ccn3\":\"600\",\"cca3\":\"PRY\",\"cioc\":\"PAR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"PYG\":{\"name\":\"Paraguayan guaraní\",\"symbol\":\"₲\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"95\"]},\"capital\":[\"Asunción\"],\"altSpellings\":[\"PY\",\"Republic of Paraguay\",\"República del Paraguay\",\"Tetã Paraguái\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"grn\":\"Guaraní\",\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Paraguayská republika\",\"common\":\"Paraguay\"},\"deu\":{\"official\":\"Republik Paraguay\",\"common\":\"Paraguay\"},\"fra\":{\"official\":\"République du Paraguay\",\"common\":\"Paraguay\"},\"hrv\":{\"official\":\"Republika Paragvaj\",\"common\":\"Paragvaj\"},\"ita\":{\"official\":\"Repubblica del Paraguay\",\"common\":\"Paraguay\"},\"jpn\":{\"official\":\"パラグアイ共和国\",\"common\":\"パラグアイ\"},\"nld\":{\"official\":\"Republiek Paraguay\",\"common\":\"Paraguay\"},\"por\":{\"official\":\"República do Paraguai\",\"common\":\"Paraguai\"},\"rus\":{\"official\":\"Республика Парагвай\",\"common\":\"Парагвай\"},\"slk\":{\"official\":\"Paraguajská republika\",\"common\":\"Paraguaj\"},\"spa\":{\"official\":\"República de Paraguay\",\"common\":\"Paraguay\"},\"fin\":{\"official\":\"Paraguayn tasavalta\",\"common\":\"Paraguay\"},\"est\":{\"official\":\"Paraguay Vabariik\",\"common\":\"Paraguay\"},\"zho\":{\"official\":\"巴拉圭共和国\",\"common\":\"巴拉圭\"},\"pol\":{\"official\":\"Republika Paragwaju\",\"common\":\"Paragwaj\"},\"urd\":{\"official\":\"جمہوریہ پیراگوئے\",\"common\":\"پیراگوئے\"},\"kor\":{\"official\":\"파라과이 공화국\",\"common\":\"파라과이\"},\"per\":{\"official\":\"جمهوری پاراگوئه\",\"common\":\"پاراگوئه\"}},\"latlng\":[-23,-58],\"landlocked\":true,\"borders\":[\"ARG\",\"BOL\",\"BRA\"],\"area\":406752,\"flag\":\"🇵🇾\",\"demonyms\":{\"eng\":{\"f\":\"Paraguayan\",\"m\":\"Paraguayan\"},\"fra\":{\"f\":\"Paraguayenne\",\"m\":\"Paraguayen\"}}},{\"name\":{\"common\":\"Palestine\",\"official\":\"State of Palestine\",\"native\":{\"ara\":{\"official\":\"دولة فلسطين\",\"common\":\"فلسطين\"}}},\"tld\":[\".ps\",\"فلسطين.\"],\"cca2\":\"PS\",\"ccn3\":\"275\",\"cca3\":\"PSE\",\"cioc\":\"PLE\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"EGP\":{\"name\":\"Egyptian pound\",\"symbol\":\"E£\"},\"ILS\":{\"name\":\"Israeli new shekel\",\"symbol\":\"₪\"},\"JOD\":{\"name\":\"Jordanian dinar\",\"symbol\":\"JD\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"70\"]},\"capital\":[\"Ramallah\"],\"altSpellings\":[\"PS\",\"Palestine, State of\",\"State of Palestine\",\"Dawlat Filasṭin\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Stát Palestina\",\"common\":\"Palestina\"},\"deu\":{\"official\":\"Staat Palästina\",\"common\":\"Palästina\"},\"fra\":{\"official\":\"État de Palestine\",\"common\":\"Palestine\"},\"hrv\":{\"official\":\"State of Palestine\",\"common\":\"Palestina\"},\"ita\":{\"official\":\"Stato di Palestina\",\"common\":\"Palestina\"},\"jpn\":{\"official\":\"パレスチナ自治政府\",\"common\":\"パレスチナ\"},\"nld\":{\"official\":\"Staat Palestina\",\"common\":\"Palestijnse gebieden\"},\"por\":{\"official\":\"Estado da Palestina\",\"common\":\"Palestina\"},\"rus\":{\"official\":\"Государство Палестина\",\"common\":\"Палестина\"},\"slk\":{\"official\":\"Palestínsky štát\",\"common\":\"Palestína\"},\"spa\":{\"official\":\"Estado de Palestina\",\"common\":\"Palestina\"},\"fin\":{\"official\":\"Palestiinan valtio\",\"common\":\"Palestiina\"},\"est\":{\"official\":\"Palestiina Riik\",\"common\":\"Palestiina\"},\"zho\":{\"official\":\"巴勒斯坦国\",\"common\":\"巴勒斯坦\"},\"pol\":{\"official\":\"Państwo Palestyna\",\"common\":\"Palestyna\"},\"urd\":{\"official\":\"ریاستِ فلسطین\",\"common\":\"فلسطین\"},\"kor\":{\"official\":\"팔레스타인국\",\"common\":\"팔레스타인\"},\"per\":{\"official\":\"دولت فلسطین\",\"common\":\"فلسطین\"}},\"latlng\":[31.9,35.2],\"landlocked\":false,\"borders\":[\"ISR\",\"EGY\",\"JOR\"],\"area\":6220,\"flag\":\"🇵🇸\",\"demonyms\":{\"eng\":{\"f\":\"Palestinian\",\"m\":\"Palestinian\"},\"fra\":{\"f\":\"Palestinienne\",\"m\":\"Palestinien\"}}},{\"name\":{\"common\":\"French Polynesia\",\"official\":\"French Polynesia\",\"native\":{\"fra\":{\"official\":\"Polynésie française\",\"common\":\"Polynésie française\"}}},\"tld\":[\".pf\"],\"cca2\":\"PF\",\"ccn3\":\"258\",\"cca3\":\"PYF\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"XPF\":{\"name\":\"CFP franc\",\"symbol\":\"₣\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"89\"]},\"capital\":[\"Papeetē\"],\"altSpellings\":[\"PF\",\"Polynésie française\",\"French Polynesia\",\"Pōrīnetia Farāni\"],\"region\":\"Oceania\",\"subregion\":\"Polynesia\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Francouzská Polynésie\",\"common\":\"Francouzská Polynésie\"},\"deu\":{\"official\":\"Französisch-Polynesien\",\"common\":\"Französisch-Polynesien\"},\"fra\":{\"official\":\"Polynésie française\",\"common\":\"Polynésie française\"},\"hrv\":{\"official\":\"Francuska Polinezija\",\"common\":\"Francuska Polinezija\"},\"ita\":{\"official\":\"Polinesia Francese\",\"common\":\"Polinesia Francese\"},\"jpn\":{\"official\":\"フランス領ポリネシア\",\"common\":\"フランス領ポリネシア\"},\"nld\":{\"official\":\"Frans-Polynesië\",\"common\":\"Frans-Polynesië\"},\"por\":{\"official\":\"Polinésia Francesa\",\"common\":\"Polinésia Francesa\"},\"rus\":{\"official\":\"Французская Полинезия\",\"common\":\"Французская Полинезия\"},\"slk\":{\"official\":\"Francúzska Polynézia\",\"common\":\"Francúzska Polynézia\"},\"spa\":{\"official\":\"Polinesia francés\",\"common\":\"Polinesia Francesa\"},\"fin\":{\"official\":\"Ranskan Polynesia\",\"common\":\"Ranskan Polynesia\"},\"est\":{\"official\":\"Prantsuse Polüneesia\",\"common\":\"Prantsuse Polüneesia\"},\"zho\":{\"official\":\"法属波利尼西亚\",\"common\":\"法属波利尼西亚\"},\"pol\":{\"official\":\"Polinezja Francuska\",\"common\":\"Polinezja Francuska\"},\"urd\":{\"official\":\"فرانسیسی پولینیشیا\",\"common\":\"فرانسیسی پولینیشیا\"},\"kor\":{\"official\":\"프랑스령 폴리네시아\",\"common\":\"프랑스령 폴리네시아\"},\"per\":{\"official\":\"پُلینِزی فرانسه\",\"common\":\"پُلینِزی فرانسه\"}},\"latlng\":[-15,-140],\"landlocked\":false,\"borders\":[],\"area\":4167,\"flag\":\"🇵🇫\",\"demonyms\":{\"eng\":{\"f\":\"French Polynesian\",\"m\":\"French Polynesian\"},\"fra\":{\"f\":\"Polynésienne\",\"m\":\"Polynésien\"}}},{\"name\":{\"common\":\"Qatar\",\"official\":\"State of Qatar\",\"native\":{\"ara\":{\"official\":\"دولة قطر\",\"common\":\"قطر\"}}},\"tld\":[\".qa\",\"قطر.\"],\"cca2\":\"QA\",\"ccn3\":\"634\",\"cca3\":\"QAT\",\"cioc\":\"QAT\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"QAR\":{\"name\":\"Qatari riyal\",\"symbol\":\"ر.ق\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"74\"]},\"capital\":[\"Doha\"],\"altSpellings\":[\"QA\",\"State of Qatar\",\"Dawlat Qaṭar\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Stát Katar\",\"common\":\"Katar\"},\"deu\":{\"official\":\"Staat Katar\",\"common\":\"Katar\"},\"fra\":{\"official\":\"État du Qatar\",\"common\":\"Qatar\"},\"hrv\":{\"official\":\"Država Katar\",\"common\":\"Katar\"},\"ita\":{\"official\":\"Stato del Qatar\",\"common\":\"Qatar\"},\"jpn\":{\"official\":\"カタール国\",\"common\":\"カタール\"},\"nld\":{\"official\":\"Staat Qatar\",\"common\":\"Qatar\"},\"por\":{\"official\":\"Estado do Qatar\",\"common\":\"Catar\"},\"rus\":{\"official\":\"Государство Катар\",\"common\":\"Катар\"},\"slk\":{\"official\":\"Katarský štát\",\"common\":\"Katar\"},\"spa\":{\"official\":\"Estado de Qatar\",\"common\":\"Catar\"},\"fin\":{\"official\":\"Qatarin valtio\",\"common\":\"Qatar\"},\"est\":{\"official\":\"Katari Riik\",\"common\":\"Katar\"},\"zho\":{\"official\":\"卡塔尔国\",\"common\":\"卡塔尔\"},\"pol\":{\"official\":\"Państwo Katar\",\"common\":\"Katar\"},\"urd\":{\"official\":\"ریاستِ قطر\",\"common\":\"قطر\"},\"kor\":{\"official\":\"카타르국\",\"common\":\"카타르\"},\"per\":{\"official\":\"دولت قطر\",\"common\":\"قطر\"}},\"latlng\":[25.5,51.25],\"landlocked\":false,\"borders\":[\"SAU\"],\"area\":11586,\"flag\":\"🇶🇦\",\"demonyms\":{\"eng\":{\"f\":\"Qatari\",\"m\":\"Qatari\"},\"fra\":{\"f\":\"Qatarienne\",\"m\":\"Qatarien\"}}},{\"name\":{\"common\":\"Réunion\",\"official\":\"Réunion Island\",\"native\":{\"fra\":{\"official\":\"Ile de la Réunion\",\"common\":\"La Réunion\"}}},\"tld\":[\".re\"],\"cca2\":\"RE\",\"ccn3\":\"638\",\"cca3\":\"REU\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"62\"]},\"capital\":[\"Saint-Denis\"],\"altSpellings\":[\"RE\",\"Reunion\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Réunion\",\"common\":\"Réunion\"},\"deu\":{\"official\":\"Réunion\",\"common\":\"Réunion\"},\"fra\":{\"official\":\"Ile de la Réunion\",\"common\":\"Réunion\"},\"hrv\":{\"official\":\"Réunion Island\",\"common\":\"Réunion\"},\"ita\":{\"official\":\"Réunion\",\"common\":\"Riunione\"},\"jpn\":{\"official\":\"レユニオン島\",\"common\":\"レユニオン\"},\"nld\":{\"official\":\"Réunion\",\"common\":\"Réunion\"},\"por\":{\"official\":\"Ilha da Reunião\",\"common\":\"Reunião\"},\"rus\":{\"official\":\"Реюньон\",\"common\":\"Реюньон\"},\"slk\":{\"official\":\"Réunionský zámorský departmán\",\"common\":\"Réunion\"},\"spa\":{\"official\":\"Isla de la Reunión\",\"common\":\"Reunión\"},\"fin\":{\"official\":\"Réunion\",\"common\":\"Réunion\"},\"est\":{\"official\":\"Réunioni departemang\",\"common\":\"Réunion\"},\"zho\":{\"official\":\"留尼旺岛\",\"common\":\"留尼旺岛\"},\"pol\":{\"official\":\"Reunion\",\"common\":\"Reunion\"},\"urd\":{\"official\":\"رے یونیوں جزیرہ\",\"common\":\"رے یونیوں\"},\"kor\":{\"official\":\"레위니옹\",\"common\":\"레위니옹\"},\"per\":{\"official\":\"رئونیون\",\"common\":\"رئونیون\"}},\"latlng\":[-21.15,55.5],\"landlocked\":false,\"borders\":[],\"area\":2511,\"flag\":\"🇷🇪\",\"demonyms\":{\"eng\":{\"f\":\"Réunionese\",\"m\":\"Réunionese\"},\"fra\":{\"f\":\"Réunionnaise\",\"m\":\"Réunionnais\"}}},{\"name\":{\"common\":\"Romania\",\"official\":\"Romania\",\"native\":{\"ron\":{\"official\":\"România\",\"common\":\"România\"}}},\"tld\":[\".ro\"],\"cca2\":\"RO\",\"ccn3\":\"642\",\"cca3\":\"ROU\",\"cioc\":\"ROU\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"RON\":{\"name\":\"Romanian leu\",\"symbol\":\"lei\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"0\"]},\"capital\":[\"Bucharest\"],\"altSpellings\":[\"RO\",\"Rumania\",\"Roumania\",\"România\"],\"region\":\"Europe\",\"subregion\":\"Eastern Europe\",\"languages\":{\"ron\":\"Romanian\"},\"translations\":{\"ces\":{\"official\":\"Rumunsko\",\"common\":\"Rumunsko\"},\"deu\":{\"official\":\"Rumänien\",\"common\":\"Rumänien\"},\"fra\":{\"official\":\"Roumanie\",\"common\":\"Roumanie\"},\"hrv\":{\"official\":\"Rumunija\",\"common\":\"Rumunjska\"},\"ita\":{\"official\":\"Romania\",\"common\":\"Romania\"},\"jpn\":{\"official\":\"ルーマニア\",\"common\":\"ルーマニア\"},\"nld\":{\"official\":\"Roemenië\",\"common\":\"Roemenië\"},\"por\":{\"official\":\"Romênia\",\"common\":\"Roménia\"},\"rus\":{\"official\":\"Румыния\",\"common\":\"Румыния\"},\"slk\":{\"official\":\"Rumunsko\",\"common\":\"Rumunsko\"},\"spa\":{\"official\":\"Rumania\",\"common\":\"Rumania\"},\"fin\":{\"official\":\"Romania\",\"common\":\"Romania\"},\"est\":{\"official\":\"Rumeenia\",\"common\":\"Rumeenia\"},\"zho\":{\"official\":\"罗马尼亚\",\"common\":\"罗马尼亚\"},\"pol\":{\"official\":\"Rumunia\",\"common\":\"Rumunia\"},\"urd\":{\"official\":\"رومانیہ\",\"common\":\"رومانیہ\"},\"kor\":{\"official\":\"루마니아\",\"common\":\"루마니아\"},\"per\":{\"official\":\"رومانی\",\"common\":\"رومانی\"}},\"latlng\":[46,25],\"landlocked\":false,\"borders\":[\"BGR\",\"HUN\",\"MDA\",\"SRB\",\"UKR\"],\"area\":238391,\"flag\":\"🇷🇴\",\"demonyms\":{\"eng\":{\"f\":\"Romanian\",\"m\":\"Romanian\"},\"fra\":{\"f\":\"Roumaine\",\"m\":\"Roumain\"}}},{\"name\":{\"common\":\"Russia\",\"official\":\"Russian Federation\",\"native\":{\"rus\":{\"official\":\"Российская Федерация\",\"common\":\"Россия\"}}},\"tld\":[\".ru\",\".su\",\".рф\"],\"cca2\":\"RU\",\"ccn3\":\"643\",\"cca3\":\"RUS\",\"cioc\":\"RUS\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"RUB\":{\"name\":\"Russian ruble\",\"symbol\":\"₽\"}},\"idd\":{\"root\":\"+7\",\"suffixes\":[\"3XX\",\"4XX\",\"5XX\",\"8XX\",\"9XX\"]},\"capital\":[\"Moscow\"],\"altSpellings\":[\"RU\",\"Russian Federation\",\"Российская Федерация\"],\"region\":\"Europe\",\"subregion\":\"Eastern Europe\",\"languages\":{\"rus\":\"Russian\"},\"translations\":{\"ces\":{\"official\":\"Ruská federace\",\"common\":\"Rusko\"},\"deu\":{\"official\":\"Russische Föderation\",\"common\":\"Russland\"},\"fra\":{\"official\":\"Fédération de Russie\",\"common\":\"Russie\"},\"hrv\":{\"official\":\"Ruska Federacija\",\"common\":\"Rusija\"},\"ita\":{\"official\":\"Federazione russa\",\"common\":\"Russia\"},\"jpn\":{\"official\":\"ロシア連邦\",\"common\":\"ロシア連邦\"},\"nld\":{\"official\":\"Russische Federatie\",\"common\":\"Rusland\"},\"por\":{\"official\":\"Federação Russa\",\"common\":\"Rússia\"},\"rus\":{\"official\":\"Российская Федерация\",\"common\":\"Россия\"},\"slk\":{\"official\":\"Ruská federácia\",\"common\":\"Rusko\"},\"spa\":{\"official\":\"Federación de Rusia\",\"common\":\"Rusia\"},\"fin\":{\"official\":\"Venäjän federaatio\",\"common\":\"Venäjä\"},\"est\":{\"official\":\"Venemaa Föderatsioon\",\"common\":\"Venemaa\"},\"zho\":{\"official\":\"俄罗斯联邦\",\"common\":\"俄罗斯\"},\"pol\":{\"official\":\"Federacja Rosyjska\",\"common\":\"Rosja\"},\"urd\":{\"official\":\"روسی وفاق\",\"common\":\"روس\"},\"kor\":{\"official\":\"러시아 연방\",\"common\":\"러시아\"},\"per\":{\"official\":\"فدراسیون روسیه\",\"common\":\"روسیه\"}},\"latlng\":[60,100],\"landlocked\":false,\"borders\":[\"AZE\",\"BLR\",\"CHN\",\"EST\",\"FIN\",\"GEO\",\"KAZ\",\"PRK\",\"LVA\",\"LTU\",\"MNG\",\"NOR\",\"POL\",\"UKR\"],\"area\":17098242,\"flag\":\"🇷🇺\",\"demonyms\":{\"eng\":{\"f\":\"Russian\",\"m\":\"Russian\"},\"fra\":{\"f\":\"Russe\",\"m\":\"Russe\"}}},{\"name\":{\"common\":\"Rwanda\",\"official\":\"Republic of Rwanda\",\"native\":{\"eng\":{\"official\":\"Republic of Rwanda\",\"common\":\"Rwanda\"},\"fra\":{\"official\":\"République rwandaise\",\"common\":\"Rwanda\"},\"kin\":{\"official\":\"Repubulika y\\'u Rwanda\",\"common\":\"Rwanda\"}}},\"tld\":[\".rw\"],\"cca2\":\"RW\",\"ccn3\":\"646\",\"cca3\":\"RWA\",\"cioc\":\"RWA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"RWF\":{\"name\":\"Rwandan franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"50\"]},\"capital\":[\"Kigali\"],\"altSpellings\":[\"RW\",\"Republic of Rwanda\",\"Repubulika y\\'u Rwanda\",\"République du Rwanda\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"eng\":\"English\",\"fra\":\"French\",\"kin\":\"Kinyarwanda\"},\"translations\":{\"ces\":{\"official\":\"Rwandská republika\",\"common\":\"Rwanda\"},\"deu\":{\"official\":\"Republik Ruanda\",\"common\":\"Ruanda\"},\"fra\":{\"official\":\"République rwandaise\",\"common\":\"Rwanda\"},\"hrv\":{\"official\":\"Republika Ruandi\",\"common\":\"Ruanda\"},\"ita\":{\"official\":\"Repubblica del Ruanda\",\"common\":\"Ruanda\"},\"jpn\":{\"official\":\"ルワンダ共和国\",\"common\":\"ルワンダ\"},\"nld\":{\"official\":\"Republiek Rwanda\",\"common\":\"Rwanda\"},\"por\":{\"official\":\"República do Ruanda\",\"common\":\"Ruanda\"},\"rus\":{\"official\":\"Республика Руанда\",\"common\":\"Руанда\"},\"slk\":{\"official\":\"Rwandská republika\",\"common\":\"Rwanda\"},\"spa\":{\"official\":\"República de Rwanda\",\"common\":\"Ruanda\"},\"fin\":{\"official\":\"Ruandan tasavalta\",\"common\":\"Ruanda\"},\"est\":{\"official\":\"Rwanda Vabariik\",\"common\":\"Rwanda\"},\"zho\":{\"official\":\"卢旺达共和国\",\"common\":\"卢旺达\"},\"pol\":{\"official\":\"Republika Rwandy\",\"common\":\"Rwanda\"},\"urd\":{\"official\":\"جمہوریہ روانڈا\",\"common\":\"روانڈا\"},\"kor\":{\"official\":\"르완다 공화국\",\"common\":\"르완다\"},\"per\":{\"official\":\"جمهوری رواندا\",\"common\":\"رواندا\"}},\"latlng\":[-2,30],\"landlocked\":true,\"borders\":[\"BDI\",\"COD\",\"TZA\",\"UGA\"],\"area\":26338,\"flag\":\"🇷🇼\",\"demonyms\":{\"eng\":{\"f\":\"Rwandan\",\"m\":\"Rwandan\"},\"fra\":{\"f\":\"Rwandaise\",\"m\":\"Rwandais\"}}},{\"name\":{\"common\":\"Saudi Arabia\",\"official\":\"Kingdom of Saudi Arabia\",\"native\":{\"ara\":{\"official\":\"المملكة العربية السعودية\",\"common\":\"العربية السعودية\"}}},\"tld\":[\".sa\",\".السعودية\"],\"cca2\":\"SA\",\"ccn3\":\"682\",\"cca3\":\"SAU\",\"cioc\":\"KSA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SAR\":{\"name\":\"Saudi riyal\",\"symbol\":\"ر.س\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"66\"]},\"capital\":[\"Riyadh\"],\"altSpellings\":[\"Saudi\",\"SA\",\"Kingdom of Saudi Arabia\",\"Al-Mamlakah al-‘Arabiyyah as-Su‘ūdiyyah\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Saúdskoarabské království\",\"common\":\"Saúdská Arábie\"},\"deu\":{\"official\":\"Königreich Saudi-Arabien\",\"common\":\"Saudi-Arabien\"},\"fra\":{\"official\":\"Royaume d\\'Arabie Saoudite\",\"common\":\"Arabie Saoudite\"},\"hrv\":{\"official\":\"Kraljevina Saudijska Arabija\",\"common\":\"Saudijska Arabija\"},\"ita\":{\"official\":\"Arabia Saudita\",\"common\":\"Arabia Saudita\"},\"jpn\":{\"official\":\"サウジアラビア王国\",\"common\":\"サウジアラビア\"},\"nld\":{\"official\":\"Koninkrijk van Saoedi-Arabië\",\"common\":\"Saoedi-Arabië\"},\"por\":{\"official\":\"Reino da Arábia Saudita\",\"common\":\"Arábia Saudita\"},\"rus\":{\"official\":\"Королевство Саудовская Аравия\",\"common\":\"Саудовская Аравия\"},\"slk\":{\"official\":\"Saudskoarabské kráľovstvo\",\"common\":\"Saudská Arábia\"},\"spa\":{\"official\":\"Reino de Arabia Saudita\",\"common\":\"Arabia Saudí\"},\"fin\":{\"official\":\"Saudi-Arabian kuningaskunta\",\"common\":\"Saudi-Arabia\"},\"est\":{\"official\":\"Saudi Araabia Kuningriik\",\"common\":\"Saudi Araabia\"},\"zho\":{\"official\":\"沙特阿拉伯王国\",\"common\":\"沙特阿拉伯\"},\"pol\":{\"official\":\"Królestwo Arabii Saudyjskiej\",\"common\":\"Arabia Saudyjska\"},\"urd\":{\"official\":\"مملکتِ سعودی عرب\",\"common\":\"سعودی عرب\"},\"kor\":{\"official\":\"사우디아라비아 왕국\",\"common\":\"사우디아라비아\"},\"per\":{\"official\":\"پادشاهی عربی سَعودی\",\"common\":\"عربستان سعودی\"}},\"latlng\":[25,45],\"landlocked\":false,\"borders\":[\"IRQ\",\"JOR\",\"KWT\",\"OMN\",\"QAT\",\"ARE\",\"YEM\"],\"area\":2149690,\"flag\":\"🇸🇦\",\"demonyms\":{\"eng\":{\"f\":\"Saudi Arabian\",\"m\":\"Saudi Arabian\"},\"fra\":{\"f\":\"Saoudienne\",\"m\":\"Saoudien\"}}},{\"name\":{\"common\":\"Sudan\",\"official\":\"Republic of the Sudan\",\"native\":{\"ara\":{\"official\":\"جمهورية السودان\",\"common\":\"السودان\"},\"eng\":{\"official\":\"Republic of the Sudan\",\"common\":\"Sudan\"}}},\"tld\":[\".sd\"],\"cca2\":\"SD\",\"ccn3\":\"729\",\"cca3\":\"SDN\",\"cioc\":\"SUD\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SDG\":{\"name\":\"Sudanese pound\",\"symbol\":\"\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"49\"]},\"capital\":[\"Khartoum\"],\"altSpellings\":[\"SD\",\"Republic of the Sudan\",\"Jumhūrīyat as-Sūdān\"],\"region\":\"Africa\",\"subregion\":\"Northern Africa\",\"languages\":{\"ara\":\"Arabic\",\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Súdánská republika\",\"common\":\"Súdán\"},\"deu\":{\"official\":\"Republik Sudan\",\"common\":\"Sudan\"},\"fra\":{\"official\":\"République du Soudan\",\"common\":\"Soudan\"},\"hrv\":{\"official\":\"Republika Sudan\",\"common\":\"Sudan\"},\"ita\":{\"official\":\"Repubblica del Sudan\",\"common\":\"Sudan\"},\"jpn\":{\"official\":\"スーダン共和国\",\"common\":\"スーダン\"},\"nld\":{\"official\":\"Republiek Soedan\",\"common\":\"Soedan\"},\"por\":{\"official\":\"República do Sudão\",\"common\":\"Sudão\"},\"rus\":{\"official\":\"Республика Судан\",\"common\":\"Судан\"},\"slk\":{\"official\":\"Sudánska republika\",\"common\":\"Sudán\"},\"spa\":{\"official\":\"República de Sudán\",\"common\":\"Sudán\"},\"fin\":{\"official\":\"Sudanin tasavalta\",\"common\":\"Sudan\"},\"est\":{\"official\":\"Sudaani Vabariik\",\"common\":\"Sudaan\"},\"zho\":{\"official\":\"苏丹共和国\",\"common\":\"苏丹\"},\"pol\":{\"official\":\"Republika Sudanu\",\"common\":\"Sudan\"},\"urd\":{\"official\":\"جمہوریہ سودان\",\"common\":\"سودان\"},\"kor\":{\"official\":\"수단 공화국\",\"common\":\"수단\"},\"per\":{\"official\":\"جمهوری سودان\",\"common\":\"سودان\"}},\"latlng\":[15,30],\"landlocked\":false,\"borders\":[\"CAF\",\"TCD\",\"EGY\",\"ERI\",\"ETH\",\"LBY\",\"SSD\"],\"area\":1886068,\"flag\":\"🇸🇩\",\"demonyms\":{\"eng\":{\"f\":\"Sudanese\",\"m\":\"Sudanese\"},\"fra\":{\"f\":\"Soudanaise\",\"m\":\"Soudanais\"}}},{\"name\":{\"common\":\"Senegal\",\"official\":\"Republic of Senegal\",\"native\":{\"fra\":{\"official\":\"République du Sénégal\",\"common\":\"Sénégal\"}}},\"tld\":[\".sn\"],\"cca2\":\"SN\",\"ccn3\":\"686\",\"cca3\":\"SEN\",\"cioc\":\"SEN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XOF\":{\"name\":\"West African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"21\"]},\"capital\":[\"Dakar\"],\"altSpellings\":[\"SN\",\"Republic of Senegal\",\"République du Sénégal\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Senegalská republika\",\"common\":\"Senegal\"},\"deu\":{\"official\":\"Republik Senegal\",\"common\":\"Senegal\"},\"fra\":{\"official\":\"République du Sénégal\",\"common\":\"Sénégal\"},\"hrv\":{\"official\":\"Republika Senegal\",\"common\":\"Senegal\"},\"ita\":{\"official\":\"Repubblica del Senegal\",\"common\":\"Senegal\"},\"jpn\":{\"official\":\"セネガル共和国\",\"common\":\"セネガル\"},\"nld\":{\"official\":\"Republiek Senegal\",\"common\":\"Senegal\"},\"por\":{\"official\":\"República do Senegal\",\"common\":\"Senegal\"},\"rus\":{\"official\":\"Республика Сенегал\",\"common\":\"Сенегал\"},\"slk\":{\"official\":\"Senegalská republika\",\"common\":\"Senegal\"},\"spa\":{\"official\":\"República de Senegal\",\"common\":\"Senegal\"},\"fin\":{\"official\":\"Senegalin tasavalta\",\"common\":\"Senegal\"},\"est\":{\"official\":\"Senegali Vabariik\",\"common\":\"Senegal\"},\"zho\":{\"official\":\"塞内加尔共和国\",\"common\":\"塞内加尔\"},\"pol\":{\"official\":\"Senegal\",\"common\":\"Senegal\"},\"urd\":{\"official\":\"جمہوریہ سینیگال\",\"common\":\"سینیگال\"},\"kor\":{\"official\":\"세네갈 공화국\",\"common\":\"세네갈\"},\"per\":{\"official\":\"جمهوری سنگال\",\"common\":\"سنگال\"}},\"latlng\":[14,-14],\"landlocked\":false,\"borders\":[\"GMB\",\"GIN\",\"GNB\",\"MLI\",\"MRT\"],\"area\":196722,\"flag\":\"🇸🇳\",\"demonyms\":{\"eng\":{\"f\":\"Senegalese\",\"m\":\"Senegalese\"},\"fra\":{\"f\":\"Sénégalaise\",\"m\":\"Sénégalais\"}}},{\"name\":{\"common\":\"Singapore\",\"official\":\"Republic of Singapore\",\"native\":{\"zho\":{\"official\":\"新加坡共和国\",\"common\":\"新加坡\"},\"eng\":{\"official\":\"Republic of Singapore\",\"common\":\"Singapore\"},\"msa\":{\"official\":\"Republik Singapura\",\"common\":\"Singapura\"},\"tam\":{\"official\":\"சிங்கப்பூர் குடியரசு\",\"common\":\"சிங்கப்பூர்\"}}},\"tld\":[\".sg\",\".新加坡\",\".சிங்கப்பூர்\"],\"cca2\":\"SG\",\"ccn3\":\"702\",\"cca3\":\"SGP\",\"cioc\":\"SIN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SGD\":{\"name\":\"Singapore dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"5\"]},\"capital\":[\"Singapore\"],\"altSpellings\":[\"SG\",\"Singapura\",\"Republik Singapura\",\"新加坡共和国\"],\"region\":\"Asia\",\"subregion\":\"South-Eastern Asia\",\"languages\":{\"zho\":\"Chinese\",\"eng\":\"English\",\"msa\":\"Malay\",\"tam\":\"Tamil\"},\"translations\":{\"ces\":{\"official\":\"Singapurská republika\",\"common\":\"Singapur\"},\"deu\":{\"official\":\"Republik Singapur\",\"common\":\"Singapur\"},\"fra\":{\"official\":\"République de Singapour\",\"common\":\"Singapour\"},\"hrv\":{\"official\":\"Republika Singapur\",\"common\":\"Singapur\"},\"ita\":{\"official\":\"Repubblica di Singapore\",\"common\":\"Singapore\"},\"jpn\":{\"official\":\"シンガポール共和国\",\"common\":\"シンガポール\"},\"nld\":{\"official\":\"Republiek Singapore\",\"common\":\"Singapore\"},\"por\":{\"official\":\"República de Singapura\",\"common\":\"Singapura\"},\"rus\":{\"official\":\"Республика Сингапур\",\"common\":\"Сингапур\"},\"slk\":{\"official\":\"Singapurská republika\",\"common\":\"Singapur\"},\"spa\":{\"official\":\"República de Singapur\",\"common\":\"Singapur\"},\"fin\":{\"official\":\"Singaporen tasavalta\",\"common\":\"Singapore\"},\"est\":{\"official\":\"Singapuri Vabariik\",\"common\":\"Singapur\"},\"pol\":{\"official\":\"Republika Singapuru\",\"common\":\"Singapur\"},\"urd\":{\"official\":\"جمہوریہ سنگاپور\",\"common\":\"سنگاپور\"},\"kor\":{\"official\":\"싱가포르 공화국\",\"common\":\"싱가포르\"},\"per\":{\"official\":\"جمهوری سنگاپور\",\"common\":\"سنگاپور\"}},\"latlng\":[1.36666666,103.8],\"landlocked\":false,\"borders\":[],\"area\":710,\"flag\":\"🇸🇬\",\"demonyms\":{\"eng\":{\"f\":\"Singaporean\",\"m\":\"Singaporean\"},\"fra\":{\"f\":\"Singapourienne\",\"m\":\"Singapourien\"}}},{\"name\":{\"common\":\"South Georgia\",\"official\":\"South Georgia and the South Sandwich Islands\",\"native\":{\"eng\":{\"official\":\"South Georgia and the South Sandwich Islands\",\"common\":\"South Georgia\"}}},\"tld\":[\".gs\"],\"cca2\":\"GS\",\"ccn3\":\"239\",\"cca3\":\"SGS\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"SHP\":{\"name\":\"Saint Helena pound\",\"symbol\":\"£\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"00\"]},\"capital\":[\"King Edward Point\"],\"altSpellings\":[\"GS\",\"South Georgia and the South Sandwich Islands\"],\"region\":\"Antarctic\",\"subregion\":\"\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Jižní Georgie a Jižní Sandwichovy ostrovy\",\"common\":\"Jižní Georgie a Jižní Sandwichovy ostrovy\"},\"deu\":{\"official\":\"Südgeorgien und die Südlichen Sandwichinseln\",\"common\":\"Südgeorgien und die Südlichen Sandwichinseln\"},\"fra\":{\"official\":\"Géorgie du Sud et les îles Sandwich du Sud\",\"common\":\"Géorgie du Sud-et-les Îles Sandwich du Sud\"},\"hrv\":{\"official\":\"Južna Džordžija i Otoci Južni Sendvič\",\"common\":\"Južna Georgija i otočje Južni Sandwich\"},\"ita\":{\"official\":\"Georgia del Sud e isole Sandwich del Sud\",\"common\":\"Georgia del Sud e Isole Sandwich Meridionali\"},\"jpn\":{\"official\":\"サウスジョージア·サウスサンドウィッチ諸島\",\"common\":\"サウスジョージア・サウスサンドウィッチ諸島\"},\"nld\":{\"official\":\"Zuid-Georgië en de Zuidelijke Sandwich-eilanden\",\"common\":\"Zuid-Georgia en Zuidelijke Sandwicheilanden\"},\"por\":{\"official\":\"Geórgia do Sul e Sandwich do Sul\",\"common\":\"Ilhas Geórgia do Sul e Sandwich do Sul\"},\"rus\":{\"official\":\"Южная Георгия и Южные Сандвичевы острова\",\"common\":\"Южная Георгия и Южные Сандвичевы острова\"},\"slk\":{\"official\":\"Južná Georgia a Južné Sandwichove ostrovy\",\"common\":\"Južná Georgia a Južné Sandwichove ostrovy\"},\"spa\":{\"official\":\"Georgia del Sur y las Islas Sandwich del Sur\",\"common\":\"Islas Georgias del Sur y Sandwich del Sur\"},\"fin\":{\"official\":\"Etelä-Georgia ja Eteläiset Sandwichsaaret\",\"common\":\"Etelä-Georgia ja Eteläiset Sandwichsaaret\"},\"est\":{\"official\":\"Lõuna-Georgia ja Lõuna-Sandwichi saared\",\"common\":\"Lõuna-Georgia ja Lõuna-Sandwichi saared\"},\"zho\":{\"official\":\"南乔治亚岛和南桑威奇群岛\",\"common\":\"南乔治亚\"},\"pol\":{\"official\":\"Georgia Południowa i Sandwich Południowy\",\"common\":\"Georgia Południowa i Sandwich Południowy\"},\"urd\":{\"official\":\"جنوبی جارجیا و جزائر جنوبی سینڈوچ\",\"common\":\"جنوبی جارجیا\"},\"kor\":{\"official\":\"조지아\",\"common\":\"조지아\"},\"per\":{\"official\":\"جزایر جورجیای جنوبی و ساندویچ جنوبی\",\"common\":\"جزایر جورجیای جنوبی و ساندویچ جنوبی\"}},\"latlng\":[-54.5,-37],\"landlocked\":false,\"borders\":[],\"area\":3903,\"flag\":\"🇬🇸\",\"demonyms\":{\"eng\":{\"f\":\"South Georgian South Sandwich Islander\",\"m\":\"South Georgian South Sandwich Islander\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Svalbard and Jan Mayen\",\"official\":\"Svalbard og Jan Mayen\",\"native\":{\"nor\":{\"official\":\"Svalbard og Jan Mayen\",\"common\":\"Svalbard og Jan Mayen\"}}},\"tld\":[\".sj\"],\"cca2\":\"SJ\",\"ccn3\":\"744\",\"cca3\":\"SJM\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"NOK\":{\"name\":\"krone\",\"symbol\":\"kr\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"779\"]},\"capital\":[\"Longyearbyen\"],\"altSpellings\":[\"SJ\",\"Svalbard and Jan Mayen Islands\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"nor\":\"Norwegian\"},\"translations\":{\"ces\":{\"official\":\"Špicberky a Jan Mayen\",\"common\":\"Špicberky a Jan Mayen\"},\"deu\":{\"official\":\"Spitzbergen und Jan Mayen\",\"common\":\"Spitzbergen und Jan Mayen\"},\"fra\":{\"official\":\"Jan Mayen Svalbard\",\"common\":\"Svalbard et Jan Mayen\"},\"hrv\":{\"official\":\"Svalbard og Jan Mayen\",\"common\":\"Svalbard i Jan Mayen\"},\"ita\":{\"official\":\"Svalbard og Jan Mayen\",\"common\":\"Svalbard e Jan Mayen\"},\"jpn\":{\"official\":\"スバールバル諸島OGヤンマイエン\",\"common\":\"スヴァールバル諸島およびヤンマイエン島\"},\"nld\":{\"official\":\"Svalbard og Jan Mayen\",\"common\":\"Svalbard en Jan Mayen\"},\"por\":{\"official\":\"Svalbard og Jan Mayen\",\"common\":\"Ilhas Svalbard e Jan Mayen\"},\"rus\":{\"official\":\"Свальбарда ог Ян-Майен\",\"common\":\"Шпицберген и Ян-Майен\"},\"slk\":{\"official\":\"Svalbard a Jan Mayen\",\"common\":\"Svalbard a Jan Mayen\"},\"spa\":{\"official\":\"Svalbard og Jan Mayen\",\"common\":\"Islas Svalbard y Jan Mayen\"},\"fin\":{\"official\":\"Huippuvuoret\",\"common\":\"Huippuvuoret\"},\"est\":{\"official\":\"Svalbard\",\"common\":\"Svalbard\"},\"zho\":{\"official\":\"斯瓦尔巴特\",\"common\":\"斯瓦尔巴特\"},\"pol\":{\"official\":\"Svalbard i Jan Mayen\",\"common\":\"Svalbard i Jan Mayen\"},\"urd\":{\"official\":\"سوالبارڈ اور جان میئن\",\"common\":\"سوالبارڈ اور جان میئن\"},\"kor\":{\"official\":\"스발바르 얀마옌 제도\",\"common\":\"스발바르 얀마옌 제도\"},\"per\":{\"official\":\"سوالبارد و یان ماین\",\"common\":\"سوالبارد و یان ماین\"}},\"latlng\":[78,20],\"landlocked\":false,\"borders\":[],\"area\":-1,\"flag\":\"🇸🇯\",\"demonyms\":{\"eng\":{\"f\":\"Norwegian\",\"m\":\"Norwegian\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Solomon Islands\",\"official\":\"Solomon Islands\",\"native\":{\"eng\":{\"official\":\"Solomon Islands\",\"common\":\"Solomon Islands\"}}},\"tld\":[\".sb\"],\"cca2\":\"SB\",\"ccn3\":\"090\",\"cca3\":\"SLB\",\"cioc\":\"SOL\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SBD\":{\"name\":\"Solomon Islands dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"77\"]},\"capital\":[\"Honiara\"],\"altSpellings\":[\"SB\"],\"region\":\"Oceania\",\"subregion\":\"Melanesia\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Šalamounovy ostrovy\",\"common\":\"Šalamounovy ostrovy\"},\"deu\":{\"official\":\"Salomonen\",\"common\":\"Salomonen\"},\"fra\":{\"official\":\"Îles Salomon\",\"common\":\"Îles Salomon\"},\"hrv\":{\"official\":\"Solomonski Otoci\",\"common\":\"Solomonski Otoci\"},\"ita\":{\"official\":\"Isole Salomone\",\"common\":\"Isole Salomone\"},\"jpn\":{\"official\":\"ソロモン諸島\",\"common\":\"ソロモン諸島\"},\"nld\":{\"official\":\"Solomon eilanden\",\"common\":\"Salomonseilanden\"},\"por\":{\"official\":\"Ilhas Salomão\",\"common\":\"Ilhas Salomão\"},\"rus\":{\"official\":\"Соломоновы острова\",\"common\":\"Соломоновы Острова\"},\"slk\":{\"official\":\"Salomonove ostrovy\",\"common\":\"Salomonove ostrovy\"},\"spa\":{\"official\":\"islas Salomón\",\"common\":\"Islas Salomón\"},\"fin\":{\"official\":\"Salomonsaaret\",\"common\":\"Salomonsaaret\"},\"est\":{\"official\":\"Saalomoni Saared\",\"common\":\"Saalomoni Saared\"},\"zho\":{\"official\":\"所罗门群岛\",\"common\":\"所罗门群岛\"},\"pol\":{\"official\":\"Wyspy Salomona\",\"common\":\"Wyspy Salomona\"},\"urd\":{\"official\":\"جزائر سلیمان\",\"common\":\"جزائر سلیمان\"},\"kor\":{\"official\":\"솔로몬 제도\",\"common\":\"솔로몬 제도\"},\"per\":{\"official\":\"جزایر سلیمان\",\"common\":\"جزایر سلیمان\"}},\"latlng\":[-8,159],\"landlocked\":false,\"borders\":[],\"area\":28896,\"flag\":\"🇸🇧\",\"demonyms\":{\"eng\":{\"f\":\"Solomon Islander\",\"m\":\"Solomon Islander\"},\"fra\":{\"f\":\"Salomonienne\",\"m\":\"Salomonien\"}}},{\"name\":{\"common\":\"Sierra Leone\",\"official\":\"Republic of Sierra Leone\",\"native\":{\"eng\":{\"official\":\"Republic of Sierra Leone\",\"common\":\"Sierra Leone\"}}},\"tld\":[\".sl\"],\"cca2\":\"SL\",\"ccn3\":\"694\",\"cca3\":\"SLE\",\"cioc\":\"SLE\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SLL\":{\"name\":\"Sierra Leonean leone\",\"symbol\":\"Le\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"32\"]},\"capital\":[\"Freetown\"],\"altSpellings\":[\"SL\",\"Republic of Sierra Leone\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Republika Sierra Leone\",\"common\":\"Sierra Leone\"},\"deu\":{\"official\":\"Republik Sierra Leone\",\"common\":\"Sierra Leone\"},\"fra\":{\"official\":\"République de Sierra Leone\",\"common\":\"Sierra Leone\"},\"hrv\":{\"official\":\"Republika Sijera Leone\",\"common\":\"Sijera Leone\"},\"ita\":{\"official\":\"Repubblica della Sierra Leone\",\"common\":\"Sierra Leone\"},\"jpn\":{\"official\":\"シエラレオネ共和国\",\"common\":\"シエラレオネ\"},\"nld\":{\"official\":\"Republiek Sierra Leone\",\"common\":\"Sierra Leone\"},\"por\":{\"official\":\"República da Serra Leoa\",\"common\":\"Serra Leoa\"},\"rus\":{\"official\":\"Республика Сьерра-Леоне\",\"common\":\"Сьерра-Леоне\"},\"slk\":{\"official\":\"Sierraleonská republika\",\"common\":\"Sierra Leone\"},\"spa\":{\"official\":\"República de Sierra Leona\",\"common\":\"Sierra Leone\"},\"fin\":{\"official\":\"Sierra Leonen tasavalta\",\"common\":\"Sierra Leone\"},\"est\":{\"official\":\"Sierra Leone Vabariik\",\"common\":\"Sierra Leone\"},\"zho\":{\"official\":\"塞拉利昂共和国\",\"common\":\"塞拉利昂\"},\"pol\":{\"official\":\"Sierra Leone\",\"common\":\"Sierra Leone\"},\"urd\":{\"official\":\"جمہوریہ سیرالیون\",\"common\":\"سیرالیون\"},\"kor\":{\"official\":\"시에라리온 공화국\",\"common\":\"시에라리온\"},\"per\":{\"official\":\"جمهوری سیرالئون\",\"common\":\"سیرالئون\"}},\"latlng\":[8.5,-11.5],\"landlocked\":false,\"borders\":[\"GIN\",\"LBR\"],\"area\":71740,\"flag\":\"🇸🇱\",\"demonyms\":{\"eng\":{\"f\":\"Sierra Leonean\",\"m\":\"Sierra Leonean\"},\"fra\":{\"f\":\"Sierra-leonaise\",\"m\":\"Sierra-leonais\"}}},{\"name\":{\"common\":\"El Salvador\",\"official\":\"Republic of El Salvador\",\"native\":{\"spa\":{\"official\":\"República de El Salvador\",\"common\":\"El Salvador\"}}},\"tld\":[\".sv\"],\"cca2\":\"SV\",\"ccn3\":\"222\",\"cca3\":\"SLV\",\"cioc\":\"ESA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"03\"]},\"capital\":[\"San Salvador\"],\"altSpellings\":[\"SV\",\"Republic of El Salvador\",\"República de El Salvador\"],\"region\":\"Americas\",\"subregion\":\"Central America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Salvadorská republika\",\"common\":\"Salvador\"},\"cym\":{\"official\":\"Gweriniaeth El Salfador\",\"common\":\"El Salfador\"},\"deu\":{\"official\":\"Republik El Salvador\",\"common\":\"El Salvador\"},\"fra\":{\"official\":\"République du Salvador\",\"common\":\"Salvador\"},\"hrv\":{\"official\":\"Republika El Salvador\",\"common\":\"Salvador\"},\"ita\":{\"official\":\"Repubblica di El Salvador\",\"common\":\"El Salvador\"},\"jpn\":{\"official\":\"エルサルバドル共和国\",\"common\":\"エルサルバドル\"},\"nld\":{\"official\":\"Republiek El Salvador\",\"common\":\"El Salvador\"},\"por\":{\"official\":\"República de El Salvador\",\"common\":\"El Salvador\"},\"rus\":{\"official\":\"Республика Эль-Сальвадор\",\"common\":\"Сальвадор\"},\"slk\":{\"official\":\"Salvádorská republika\",\"common\":\"Salvádor\"},\"spa\":{\"official\":\"República de El Salvador\",\"common\":\"El Salvador\"},\"fin\":{\"official\":\"El Salvadorin tasavalta\",\"common\":\"El Salvador\"},\"est\":{\"official\":\"El Salvadori Vabariik\",\"common\":\"El Salvador\"},\"zho\":{\"official\":\"萨尔瓦多共和国\",\"common\":\"萨尔瓦多\"},\"pol\":{\"official\":\"Republika Salwadoru\",\"common\":\"Salwador\"},\"urd\":{\"official\":\"جمہوریہ ایل سیلواڈور\",\"common\":\"ایل سیلواڈور\"},\"kor\":{\"official\":\"엘살바도르 공화국\",\"common\":\"엘살바도르\"},\"per\":{\"official\":\"جمهوری السالوادور\",\"common\":\"السالوادور\"}},\"latlng\":[13.83333333,-88.91666666],\"landlocked\":false,\"borders\":[\"GTM\",\"HND\"],\"area\":21041,\"flag\":\"🇸🇻\",\"demonyms\":{\"eng\":{\"f\":\"Salvadoran\",\"m\":\"Salvadoran\"},\"fra\":{\"f\":\"Salvadorienne\",\"m\":\"Salvadorien\"}}},{\"name\":{\"common\":\"San Marino\",\"official\":\"Most Serene Republic of San Marino\",\"native\":{\"ita\":{\"official\":\"Serenissima Repubblica di San Marino\",\"common\":\"San Marino\"}}},\"tld\":[\".sm\"],\"cca2\":\"SM\",\"ccn3\":\"674\",\"cca3\":\"SMR\",\"cioc\":\"SMR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"78\"]},\"capital\":[\"City of San Marino\"],\"altSpellings\":[\"SM\",\"Republic of San Marino\",\"Repubblica di San Marino\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"ita\":\"Italian\"},\"translations\":{\"ces\":{\"official\":\"Republika San Marino\",\"common\":\"San Marino\"},\"deu\":{\"official\":\"Republik San Marino\",\"common\":\"San Marino\"},\"fra\":{\"official\":\"République de Saint-Marin\",\"common\":\"Saint-Marin\"},\"hrv\":{\"official\":\"Većina Serene Republika San Marino\",\"common\":\"San Marino\"},\"ita\":{\"official\":\"Serenissima Repubblica di San Marino\",\"common\":\"San Marino\"},\"jpn\":{\"official\":\"サンマリノのほとんどセリーヌ共和国\",\"common\":\"サンマリノ\"},\"nld\":{\"official\":\"Meest Serene Republiek San Marino\",\"common\":\"San Marino\"},\"por\":{\"official\":\"Sereníssima República de San Marino\",\"common\":\"San Marino\"},\"rus\":{\"official\":\"Большинство Serene Республика Сан-Марино\",\"common\":\"Сан-Марино\"},\"slk\":{\"official\":\"Sanmarínska republika\",\"common\":\"San Maríno\"},\"spa\":{\"official\":\"Serenísima República de San Marino\",\"common\":\"San Marino\"},\"fin\":{\"official\":\"San Marinon seesteinen tasavalta\",\"common\":\"San Marino\"},\"est\":{\"official\":\"San Marino Vabariik\",\"common\":\"San Marino\"},\"zho\":{\"official\":\"圣马力诺共和国\",\"common\":\"圣马力诺\"},\"pol\":{\"official\":\"Republika San Marino\",\"common\":\"San Marino\"},\"urd\":{\"official\":\"جمہوریہ سان مارینو\",\"common\":\"سان مارینو\"},\"kor\":{\"official\":\"산마리노 공화국\",\"common\":\"산마리노\"},\"per\":{\"official\":\"جمهوری سان مارینو\",\"common\":\"سان مارینو\"}},\"latlng\":[43.76666666,12.41666666],\"landlocked\":true,\"borders\":[\"ITA\"],\"area\":61,\"flag\":\"🇸🇲\",\"demonyms\":{\"eng\":{\"f\":\"Sammarinese\",\"m\":\"Sammarinese\"},\"fra\":{\"f\":\"Saint-Marinaise\",\"m\":\"Saint-Marinais\"}}},{\"name\":{\"common\":\"Somalia\",\"official\":\"Federal Republic of Somalia\",\"native\":{\"ara\":{\"official\":\"جمهورية الصومال\",\"common\":\"الصومال\"},\"som\":{\"official\":\"Jamhuuriyadda Federaalka Soomaaliya\",\"common\":\"Soomaaliya\"}}},\"tld\":[\".so\"],\"cca2\":\"SO\",\"ccn3\":\"706\",\"cca3\":\"SOM\",\"cioc\":\"SOM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SOS\":{\"name\":\"Somali shilling\",\"symbol\":\"Sh\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"52\"]},\"capital\":[\"Mogadishu\"],\"altSpellings\":[\"SO\",\"aṣ-Ṣūmāl\",\"Federal Republic of Somalia\",\"Jamhuuriyadda Federaalka Soomaaliya\",\"Jumhūriyyat aṣ-Ṣūmāl al-Fiderāliyya\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"ara\":\"Arabic\",\"som\":\"Somali\"},\"translations\":{\"ces\":{\"official\":\"Somálská demokratická republika\",\"common\":\"Somálsko\"},\"deu\":{\"official\":\"Bundesrepublik Somalia\",\"common\":\"Somalia\"},\"fra\":{\"official\":\"République fédérale de Somalie\",\"common\":\"Somalie\"},\"hrv\":{\"official\":\"Savezna Republika Somaliji\",\"common\":\"Somalija\"},\"ita\":{\"official\":\"Repubblica federale di Somalia\",\"common\":\"Somalia\"},\"jpn\":{\"official\":\"ソマリア連邦共和国\",\"common\":\"ソマリア\"},\"nld\":{\"official\":\"Federale Republiek Somalië\",\"common\":\"Somalië\"},\"por\":{\"official\":\"República Federal da Somália\",\"common\":\"Somália\"},\"rus\":{\"official\":\"Федеративная Республика Сомали\",\"common\":\"Сомали\"},\"slk\":{\"official\":\"Somálska federatívna republika\",\"common\":\"Somálsko\"},\"spa\":{\"official\":\"República Federal de Somalia\",\"common\":\"Somalia\"},\"fin\":{\"official\":\"Somalian liittotasavalta\",\"common\":\"Somalia\"},\"est\":{\"official\":\"Somaalia Liitvabariik\",\"common\":\"Somaalia\"},\"zho\":{\"official\":\"索马里共和国\",\"common\":\"索马里\"},\"pol\":{\"official\":\"Federalna Republika Somalii\",\"common\":\"Somalia\"},\"urd\":{\"official\":\"وفاقی جمہوریہ صومالیہ\",\"common\":\"صومالیہ\"},\"kor\":{\"official\":\" 소말리아 연방 공화국\",\"common\":\"소말리아\"},\"per\":{\"official\":\"جمهوری فدرال سومالی\",\"common\":\"سومالی\"}},\"latlng\":[10,49],\"landlocked\":false,\"borders\":[\"DJI\",\"ETH\",\"KEN\"],\"area\":637657,\"flag\":\"🇸🇴\",\"demonyms\":{\"eng\":{\"f\":\"Somali\",\"m\":\"Somali\"},\"fra\":{\"f\":\"Somalienne\",\"m\":\"Somalien\"}}},{\"name\":{\"common\":\"Saint Pierre and Miquelon\",\"official\":\"Saint Pierre and Miquelon\",\"native\":{\"fra\":{\"official\":\"Collectivité territoriale de Saint-Pierre-et-Miquelon\",\"common\":\"Saint-Pierre-et-Miquelon\"}}},\"tld\":[\".pm\"],\"cca2\":\"PM\",\"ccn3\":\"666\",\"cca3\":\"SPM\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"08\"]},\"capital\":[\"Saint-Pierre\"],\"altSpellings\":[\"PM\",\"Collectivité territoriale de Saint-Pierre-et-Miquelon\"],\"region\":\"Americas\",\"subregion\":\"North America\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Saint-Pierre a Miquelon\",\"common\":\"Saint-Pierre a Miquelon\"},\"deu\":{\"official\":\"St. Pierre und Miquelon\",\"common\":\"St. Pierre und Miquelon\"},\"fra\":{\"official\":\"Saint-Pierre-et-Miquelon\",\"common\":\"Saint-Pierre-et-Miquelon\"},\"hrv\":{\"official\":\"Saint Pierre i Miquelon\",\"common\":\"Sveti Petar i Mikelon\"},\"ita\":{\"official\":\"Saint Pierre e Miquelon\",\"common\":\"Saint-Pierre e Miquelon\"},\"jpn\":{\"official\":\"サンピエール島·ミクロン島\",\"common\":\"サンピエール島・ミクロン島\"},\"nld\":{\"official\":\"Saint-Pierre en Miquelon\",\"common\":\"Saint Pierre en Miquelon\"},\"por\":{\"official\":\"Saint Pierre e Miquelon\",\"common\":\"Saint-Pierre e Miquelon\"},\"rus\":{\"official\":\"Сен-Пьер и Микелон\",\"common\":\"Сен-Пьер и Микелон\"},\"slk\":{\"official\":\"Ostrovy Saint Pierre a Miquelon\",\"common\":\"Saint Pierre a Miquelon\"},\"spa\":{\"official\":\"San Pedro y Miquelón\",\"common\":\"San Pedro y Miquelón\"},\"fin\":{\"official\":\"Saint-Pierre ja Miquelon\",\"common\":\"Saint-Pierre ja Miquelon\"},\"est\":{\"official\":\"Saint-Pierre’i ja Miqueloni territoriaalühendus\",\"common\":\"Saint-Pierre ja Miquelon\"},\"zho\":{\"official\":\"圣皮埃尔和密克隆\",\"common\":\"圣皮埃尔和密克隆\"},\"pol\":{\"official\":\"Saint-Pierre i Miquelon\",\"common\":\"Saint-Pierre i Miquelon\"},\"urd\":{\"official\":\"سینٹ پیئر و میکیلون\",\"common\":\"سینٹ پیئر و میکیلون\"},\"kor\":{\"official\":\"생피에르 미클롱\",\"common\":\"생피에르 미클롱\"},\"per\":{\"official\":\"سن-پیر-ا-میکلون\",\"common\":\"سن-پیِر و میکلُن\"}},\"latlng\":[46.83333333,-56.33333333],\"landlocked\":false,\"borders\":[],\"area\":242,\"flag\":\"🇵🇲\",\"demonyms\":{\"eng\":{\"f\":\"Saint-Pierrais, Miquelonnais\",\"m\":\"Saint-Pierrais, Miquelonnais\"},\"fra\":{\"f\":\"Saint-Pierraise, Miquelonaise\",\"m\":\"Saint-Pierrais, Miquelonais\"}}},{\"name\":{\"common\":\"Serbia\",\"official\":\"Republic of Serbia\",\"native\":{\"srp\":{\"official\":\"Република Србија\",\"common\":\"Србија\"}}},\"tld\":[\".rs\",\".срб\"],\"cca2\":\"RS\",\"ccn3\":\"688\",\"cca3\":\"SRB\",\"cioc\":\"SRB\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"RSD\":{\"name\":\"Serbian dinar\",\"symbol\":\"дин.\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"81\"]},\"capital\":[\"Belgrade\"],\"altSpellings\":[\"RS\",\"Srbija\",\"Republic of Serbia\",\"Република Србија\",\"Republika Srbija\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"srp\":\"Serbian\"},\"translations\":{\"ces\":{\"official\":\"Srbská republika\",\"common\":\"Srbsko\"},\"deu\":{\"official\":\"Republik Serbien\",\"common\":\"Serbien\"},\"fra\":{\"official\":\"République de Serbie\",\"common\":\"Serbie\"},\"hrv\":{\"official\":\"Republika Srbija\",\"common\":\"Srbija\"},\"ita\":{\"official\":\"Repubblica di Serbia\",\"common\":\"Serbia\"},\"jpn\":{\"official\":\"セルビア共和国\",\"common\":\"セルビア\"},\"nld\":{\"official\":\"Republiek Servië\",\"common\":\"Servië\"},\"por\":{\"official\":\"República da Sérvia\",\"common\":\"Sérvia\"},\"rus\":{\"official\":\"Республика Сербия\",\"common\":\"Сербия\"},\"slk\":{\"official\":\"Srbská republika\",\"common\":\"Srbsko\"},\"spa\":{\"official\":\"República de Serbia\",\"common\":\"Serbia\"},\"fin\":{\"official\":\"Serbian tasavalta\",\"common\":\"Serbia\"},\"est\":{\"official\":\"Serbia Vabariik\",\"common\":\"Serbia\"},\"zho\":{\"official\":\"塞尔维亚共和国\",\"common\":\"塞尔维亚\"},\"pol\":{\"official\":\"Republika Serbii\",\"common\":\"Serbia\"},\"urd\":{\"official\":\"جمہوریہ سربیا\",\"common\":\"سربیا\"},\"kor\":{\"official\":\"세르비아 공화국\",\"common\":\"세르비아\"},\"per\":{\"official\":\"جمهوری صربستان\",\"common\":\"صربستان\"}},\"latlng\":[44,21],\"landlocked\":true,\"borders\":[\"BIH\",\"BGR\",\"HRV\",\"HUN\",\"UNK\",\"MKD\",\"MNE\",\"ROU\"],\"area\":88361,\"flag\":\"🇷🇸\",\"demonyms\":{\"eng\":{\"f\":\"Serbian\",\"m\":\"Serbian\"},\"fra\":{\"f\":\"Serbe\",\"m\":\"Serbe\"}}},{\"name\":{\"common\":\"South Sudan\",\"official\":\"Republic of South Sudan\",\"native\":{\"eng\":{\"official\":\"Republic of South Sudan\",\"common\":\"South Sudan\"}}},\"tld\":[\".ss\"],\"cca2\":\"SS\",\"ccn3\":\"728\",\"cca3\":\"SSD\",\"cioc\":\"\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SSP\":{\"name\":\"South Sudanese pound\",\"symbol\":\"£\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"11\"]},\"capital\":[\"Juba\"],\"altSpellings\":[\"SS\"],\"region\":\"Africa\",\"subregion\":\"Middle Africa\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Jihosúdánská republika\",\"common\":\"Jižní Súdán\"},\"deu\":{\"official\":\"Republik Südsudan\",\"common\":\"Südsudan\"},\"fra\":{\"official\":\"République du Soudan du Sud\",\"common\":\"Soudan du Sud\"},\"hrv\":{\"official\":\"Republika Južni Sudan\",\"common\":\"Južni Sudan\"},\"ita\":{\"official\":\"Repubblica del Sudan del Sud\",\"common\":\"Sudan del sud\"},\"jpn\":{\"official\":\"南スーダン共和国\",\"common\":\"南スーダン\"},\"nld\":{\"official\":\"Republiek Zuid-Soedan\",\"common\":\"Zuid-Soedan\"},\"por\":{\"official\":\"República do Sudão do Sul\",\"common\":\"Sudão do Sul\"},\"rus\":{\"official\":\"Республика Южный Судан\",\"common\":\"Южный Судан\"},\"slk\":{\"official\":\"Juhosudánska republika\",\"common\":\"Južný Sudán\"},\"spa\":{\"official\":\"República de Sudán del Sur\",\"common\":\"Sudán del Sur\"},\"fin\":{\"official\":\"Etelä-Sudanin tasavalta\",\"common\":\"Etelä-Sudan\"},\"est\":{\"official\":\"Lõuna-Sudaani Vabariik\",\"common\":\"Lõuna-Sudaan\"},\"zho\":{\"official\":\"南苏丹共和国\",\"common\":\"南苏丹\"},\"pol\":{\"official\":\"Republika Sudanu\",\"common\":\"Sudan\"},\"urd\":{\"official\":\"جمہوریہ جنوبی سوڈان\",\"common\":\"جنوبی سوڈان\"},\"kor\":{\"official\":\"남수단 공화국\",\"common\":\"남수단\"},\"per\":{\"official\":\"جمهوری سودان جنوبی\",\"common\":\"سودان جنوبی\"}},\"latlng\":[7,30],\"landlocked\":true,\"borders\":[\"CAF\",\"COD\",\"ETH\",\"KEN\",\"SDN\",\"UGA\"],\"area\":619745,\"flag\":\"🇸🇸\",\"demonyms\":{\"eng\":{\"f\":\"South Sudanese\",\"m\":\"South Sudanese\"},\"fra\":{\"f\":\"Sud-Soudanaise\",\"m\":\"Sud-Soudanais\"}}},{\"name\":{\"common\":\"São Tomé and Príncipe\",\"official\":\"Democratic Republic of São Tomé and Príncipe\",\"native\":{\"por\":{\"official\":\"República Democrática do São Tomé e Príncipe\",\"common\":\"São Tomé e Príncipe\"}}},\"tld\":[\".st\"],\"cca2\":\"ST\",\"ccn3\":\"678\",\"cca3\":\"STP\",\"cioc\":\"STP\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"STN\":{\"name\":\"São Tomé and Príncipe dobra\",\"symbol\":\"Db\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"39\"]},\"capital\":[\"São Tomé\"],\"altSpellings\":[\"ST\",\"Democratic Republic of São Tomé and Príncipe\",\"Sao Tome and Principe\",\"República Democrática de São Tomé e Príncipe\"],\"region\":\"Africa\",\"subregion\":\"Middle Africa\",\"languages\":{\"por\":\"Portuguese\"},\"translations\":{\"ces\":{\"official\":\"Demokratická republika Svatý Tomáš a Princův ostrov\",\"common\":\"Svatý Tomáš a Princův ostrov\"},\"deu\":{\"official\":\"Demokratische Republik São Tomé und Príncipe\",\"common\":\"São Tomé und Príncipe\"},\"fra\":{\"official\":\"République démocratique de São Tomé et Príncipe\",\"common\":\"São Tomé et Príncipe\"},\"hrv\":{\"official\":\"Demokratska Republika São Tome i Principe\",\"common\":\"Sveti Toma i Princip\"},\"ita\":{\"official\":\"Repubblica democratica di São Tomé e Príncipe\",\"common\":\"São Tomé e Príncipe\"},\"jpn\":{\"official\":\"サントメ·プリンシペ民主共和国\",\"common\":\"サントメ・プリンシペ\"},\"nld\":{\"official\":\"Democratische Republiek Sao Tomé en Principe\",\"common\":\"Sao Tomé en Principe\"},\"por\":{\"official\":\"República Democrática de São Tomé e Príncipe\",\"common\":\"São Tomé e Príncipe\"},\"spa\":{\"official\":\"República Democrática de Santo Tomé y Príncipe\",\"common\":\"Santo Tomé y Príncipe\"},\"rus\":{\"official\":\"Демократическая Республика Сан-Томе и Принсипи\",\"common\":\"Сан-Томе и Принсипи\"},\"slk\":{\"official\":\"Demokratická republika Svätého Tomáša A princovho ostrova\",\"common\":\"Svätý Tomáš a Princov ostrov\"},\"fin\":{\"official\":\"São Tomé ja Príncipen demokraattinen tasavalta\",\"common\":\"São Téme ja Príncipe\"},\"est\":{\"official\":\"São Tomé ja Príncipe Demokraatlik Vabariik\",\"common\":\"São Tomé ja Príncipe\"},\"zho\":{\"official\":\"圣多美和普林西比民主共和国\",\"common\":\"圣多美和普林西比\"},\"pol\":{\"official\":\"Demokratyczna Republika Wysp Świętego Tomasza i Książęcej\",\"common\":\"Wyspy Świętego Tomasza i Książęca\"},\"urd\":{\"official\":\"جمہوریہ ساؤ ٹومے و پرنسپے\",\"common\":\"ساؤ ٹومے و پرنسپے\"},\"kor\":{\"official\":\"상투메 프린시페 민주 공화국\",\"common\":\"상투메 프린시페\"},\"per\":{\"official\":\"جمهوری دموکراتیک سائوتومه و پرنسیپ\",\"common\":\"سائوتومه و پرنسیپ\"}},\"latlng\":[1,7],\"landlocked\":false,\"borders\":[],\"area\":964,\"flag\":\"🇸🇹\",\"demonyms\":{\"eng\":{\"f\":\"Sao Tomean\",\"m\":\"Sao Tomean\"},\"fra\":{\"f\":\"Santoméenne\",\"m\":\"Santoméen\"}}},{\"name\":{\"common\":\"Suriname\",\"official\":\"Republic of Suriname\",\"native\":{\"nld\":{\"official\":\"Republiek Suriname\",\"common\":\"Suriname\"}}},\"tld\":[\".sr\"],\"cca2\":\"SR\",\"ccn3\":\"740\",\"cca3\":\"SUR\",\"cioc\":\"SUR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SRD\":{\"name\":\"Surinamese dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"97\"]},\"capital\":[\"Paramaribo\"],\"altSpellings\":[\"SR\",\"Sarnam\",\"Sranangron\",\"Republic of Suriname\",\"Republiek Suriname\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"nld\":\"Dutch\"},\"translations\":{\"ces\":{\"official\":\"Republika Surinam\",\"common\":\"Surinam\"},\"deu\":{\"official\":\"Republik Suriname\",\"common\":\"Suriname\"},\"fra\":{\"official\":\"République du Suriname\",\"common\":\"Surinam\"},\"hrv\":{\"official\":\"Republika Surinam\",\"common\":\"Surinam\"},\"ita\":{\"official\":\"Repubblica del Suriname\",\"common\":\"Suriname\"},\"jpn\":{\"official\":\"スリナム共和国\",\"common\":\"スリナム\"},\"nld\":{\"official\":\"Republiek Suriname\",\"common\":\"Suriname\"},\"por\":{\"official\":\"República do Suriname\",\"common\":\"Suriname\"},\"rus\":{\"official\":\"Республика Суринам\",\"common\":\"Суринам\"},\"slk\":{\"official\":\"Surinamská republika\",\"common\":\"Surinam\"},\"spa\":{\"official\":\"República de Suriname\",\"common\":\"Surinam\"},\"fin\":{\"official\":\"Surinamen tasavalta\",\"common\":\"Suriname\"},\"est\":{\"official\":\"Suriname Vabariik\",\"common\":\"Suriname\"},\"zho\":{\"official\":\"苏里南共和国\",\"common\":\"苏里南\"},\"pol\":{\"official\":\"Republika Surinamu\",\"common\":\"Surinam\"},\"urd\":{\"official\":\"جمہوریہ سرینام\",\"common\":\"سرینام\"},\"kor\":{\"official\":\"수리남 공화국\",\"common\":\"수리남\"},\"per\":{\"official\":\"جمهوری سورینام\",\"common\":\"سورینام\"}},\"latlng\":[4,-56],\"landlocked\":false,\"borders\":[\"BRA\",\"GUF\",\"GUY\"],\"area\":163820,\"flag\":\"🇸🇷\",\"demonyms\":{\"eng\":{\"f\":\"Surinamer\",\"m\":\"Surinamer\"},\"fra\":{\"f\":\"Surinamaise\",\"m\":\"Surinamais\"}}},{\"name\":{\"common\":\"Slovakia\",\"official\":\"Slovak Republic\",\"native\":{\"slk\":{\"official\":\"Slovenská republika\",\"common\":\"Slovensko\"}}},\"tld\":[\".sk\"],\"cca2\":\"SK\",\"ccn3\":\"703\",\"cca3\":\"SVK\",\"cioc\":\"SVK\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"21\"]},\"capital\":[\"Bratislava\"],\"altSpellings\":[\"SK\",\"Slovak Republic\",\"Slovenská republika\"],\"region\":\"Europe\",\"subregion\":\"Central Europe\",\"languages\":{\"slk\":\"Slovak\"},\"translations\":{\"ces\":{\"official\":\"Slovenská republika\",\"common\":\"Slovensko\"},\"deu\":{\"official\":\"Slowakische Republik\",\"common\":\"Slowakei\"},\"fra\":{\"official\":\"République slovaque\",\"common\":\"Slovaquie\"},\"hrv\":{\"official\":\"slovačka\",\"common\":\"Slovačka\"},\"ita\":{\"official\":\"Repubblica slovacca\",\"common\":\"Slovacchia\"},\"jpn\":{\"official\":\"スロバキア共和国\",\"common\":\"スロバキア\"},\"nld\":{\"official\":\"Slowaakse Republiek\",\"common\":\"Slowakije\"},\"por\":{\"official\":\"República Eslovaca\",\"common\":\"Eslováquia\"},\"rus\":{\"official\":\"Словацкая Республика\",\"common\":\"Словакия\"},\"slk\":{\"official\":\"Slovenská republika\",\"common\":\"Slovensko\"},\"spa\":{\"official\":\"República Eslovaca\",\"common\":\"República Eslovaca\"},\"fin\":{\"official\":\"Slovakian tasavalta\",\"common\":\"Slovakia\"},\"est\":{\"official\":\"Slovaki Vabariik\",\"common\":\"Slovakkia\"},\"zho\":{\"official\":\"斯洛伐克共和国\",\"common\":\"斯洛伐克\"},\"pol\":{\"official\":\"Republika Słowacka\",\"common\":\"Słowacja\"},\"urd\":{\"official\":\"جمہوریہ سلوواکیہ\",\"common\":\"سلوواکیہ\"},\"kor\":{\"official\":\"슬로바키아 공화국\",\"common\":\"슬로바키아\"},\"per\":{\"official\":\"جمهوری اسلواکی\",\"common\":\"اِسلُواکی\"}},\"latlng\":[48.66666666,19.5],\"landlocked\":true,\"borders\":[\"AUT\",\"CZE\",\"HUN\",\"POL\",\"UKR\"],\"area\":49037,\"flag\":\"🇸🇰\",\"demonyms\":{\"eng\":{\"f\":\"Slovak\",\"m\":\"Slovak\"},\"fra\":{\"f\":\"Slovaque\",\"m\":\"Slovaque\"}}},{\"name\":{\"common\":\"Slovenia\",\"official\":\"Republic of Slovenia\",\"native\":{\"slv\":{\"official\":\"Republika Slovenija\",\"common\":\"Slovenija\"}}},\"tld\":[\".si\"],\"cca2\":\"SI\",\"ccn3\":\"705\",\"cca3\":\"SVN\",\"cioc\":\"SLO\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"86\"]},\"capital\":[\"Ljubljana\"],\"altSpellings\":[\"SI\",\"Republic of Slovenia\",\"Republika Slovenija\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"slv\":\"Slovene\"},\"translations\":{\"ces\":{\"official\":\"Slovinská republika\",\"common\":\"Slovinsko\"},\"deu\":{\"official\":\"Republik Slowenien\",\"common\":\"Slowenien\"},\"fra\":{\"official\":\"République de Slovénie\",\"common\":\"Slovénie\"},\"hrv\":{\"official\":\"Republika Slovenija\",\"common\":\"Slovenija\"},\"ita\":{\"official\":\"Repubblica di Slovenia\",\"common\":\"Slovenia\"},\"jpn\":{\"official\":\"スロベニア共和国\",\"common\":\"スロベニア\"},\"nld\":{\"official\":\"Republiek Slovenië\",\"common\":\"Slovenië\"},\"por\":{\"official\":\"República da Eslovénia\",\"common\":\"Eslovénia\"},\"rus\":{\"official\":\"Республика Словения\",\"common\":\"Словения\"},\"slk\":{\"official\":\"Slovinská republika\",\"common\":\"Slovinsko\"},\"spa\":{\"official\":\"República de Eslovenia\",\"common\":\"Eslovenia\"},\"fin\":{\"official\":\"Slovenian tasavalta\",\"common\":\"Slovenia\"},\"est\":{\"official\":\"Sloveenia Vabariik\",\"common\":\"Sloveenia\"},\"zho\":{\"official\":\"斯洛文尼亚共和国\",\"common\":\"斯洛文尼亚\"},\"pol\":{\"official\":\"Republika Słowenii\",\"common\":\"Słowenia\"},\"urd\":{\"official\":\"جمہوریہ سلووینیا\",\"common\":\"سلووینیا\"},\"kor\":{\"official\":\"슬로베니아 공화국\",\"common\":\"슬로베니아\"},\"per\":{\"official\":\"جمهوری اسلوونی\",\"common\":\"اسلوونی\"}},\"latlng\":[46.11666666,14.81666666],\"landlocked\":false,\"borders\":[\"AUT\",\"HRV\",\"ITA\",\"HUN\"],\"area\":20273,\"flag\":\"🇸🇮\",\"demonyms\":{\"eng\":{\"f\":\"Slovene\",\"m\":\"Slovene\"},\"fra\":{\"f\":\"Slovène\",\"m\":\"Slovène\"}}},{\"name\":{\"common\":\"Sweden\",\"official\":\"Kingdom of Sweden\",\"native\":{\"swe\":{\"official\":\"Konungariket Sverige\",\"common\":\"Sverige\"}}},\"tld\":[\".se\"],\"cca2\":\"SE\",\"ccn3\":\"752\",\"cca3\":\"SWE\",\"cioc\":\"SWE\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SEK\":{\"name\":\"Swedish krona\",\"symbol\":\"kr\"}},\"idd\":{\"root\":\"+4\",\"suffixes\":[\"6\"]},\"capital\":[\"Stockholm\"],\"altSpellings\":[\"SE\",\"Kingdom of Sweden\",\"Konungariket Sverige\"],\"region\":\"Europe\",\"subregion\":\"Northern Europe\",\"languages\":{\"swe\":\"Swedish\"},\"translations\":{\"ces\":{\"official\":\"Švédské království\",\"common\":\"Švédsko\"},\"deu\":{\"official\":\"Königreich Schweden\",\"common\":\"Schweden\"},\"fra\":{\"official\":\"Royaume de Suède\",\"common\":\"Suède\"},\"hrv\":{\"official\":\"Kraljevina Švedska\",\"common\":\"Švedska\"},\"ita\":{\"official\":\"Regno di Svezia\",\"common\":\"Svezia\"},\"jpn\":{\"official\":\"スウェーデン王国\",\"common\":\"スウェーデン\"},\"nld\":{\"official\":\"Koninkrijk Zweden\",\"common\":\"Zweden\"},\"por\":{\"official\":\"Reino da Suécia\",\"common\":\"Suécia\"},\"rus\":{\"official\":\"Королевство Швеция\",\"common\":\"Швеция\"},\"slk\":{\"official\":\"Švédske kráľovstvo\",\"common\":\"Švédsko\"},\"spa\":{\"official\":\"Reino de Suecia\",\"common\":\"Suecia\"},\"fin\":{\"official\":\"Ruotsin kuningaskunta\",\"common\":\"Ruotsi\"},\"est\":{\"official\":\"Rootsi Kuningriik\",\"common\":\"Rootsi\"},\"zho\":{\"official\":\"瑞典王国\",\"common\":\"瑞典\"},\"pol\":{\"official\":\"Królestwo Szwecji\",\"common\":\"Szwecja\"},\"urd\":{\"official\":\"مملکتِ سویڈن\",\"common\":\"سویڈن\"},\"kor\":{\"official\":\"스웨덴 왕국\",\"common\":\"스웨덴\"},\"per\":{\"official\":\"پادشاهی سوئد\",\"common\":\"سوئد\"}},\"latlng\":[62,15],\"landlocked\":false,\"borders\":[\"FIN\",\"NOR\"],\"area\":450295,\"flag\":\"🇸🇪\",\"demonyms\":{\"eng\":{\"f\":\"Swedish\",\"m\":\"Swedish\"},\"fra\":{\"f\":\"Suédoise\",\"m\":\"Suédois\"}}},{\"name\":{\"common\":\"Eswatini\",\"official\":\"Kingdom of Eswatini\",\"native\":{\"eng\":{\"official\":\"Kingdom of Eswatini\",\"common\":\"Eswatini\"},\"ssw\":{\"official\":\"Umbuso weSwatini\",\"common\":\"eSwatini\"}}},\"tld\":[\".sz\"],\"cca2\":\"SZ\",\"ccn3\":\"748\",\"cca3\":\"SWZ\",\"cioc\":\"SWZ\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SZL\":{\"name\":\"Swazi lilangeni\",\"symbol\":\"L\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"68\"]},\"capital\":[\"Lobamba\"],\"altSpellings\":[\"SZ\",\"Swaziland\",\"weSwatini\",\"Swatini\",\"Ngwane\",\"Kingdom of Eswatini\",\"Umbuso weSwatini\"],\"region\":\"Africa\",\"subregion\":\"Southern Africa\",\"languages\":{\"eng\":\"English\",\"ssw\":\"Swazi\"},\"translations\":{\"ces\":{\"official\":\"Svazijské království\",\"common\":\"Svazijsko\"},\"deu\":{\"official\":\"Königreich Eswatini\",\"common\":\"Swasiland\"},\"fra\":{\"official\":\"Royaume d’Eswatini\",\"common\":\"Swaziland\"},\"hrv\":{\"official\":\"Kraljevina eSwatini\",\"common\":\"Svazi\"},\"ita\":{\"official\":\"Regno di eSwatini\",\"common\":\"Swaziland\"},\"jpn\":{\"official\":\"スワジランド王国\",\"common\":\"スワジランド\"},\"nld\":{\"official\":\"Koninkrijk eSwatini\",\"common\":\"Swaziland\"},\"por\":{\"official\":\"Reino de eSwatini\",\"common\":\"Suazilândia\"},\"rus\":{\"official\":\"Королевство Свазиленд\",\"common\":\"Свазиленд\"},\"slk\":{\"official\":\"Svazijské kráľovstvo\",\"common\":\"Svazijsko\"},\"spa\":{\"official\":\"Reino de eSwatini\",\"common\":\"Suazilandia\"},\"fin\":{\"official\":\"Swazimaan kuningaskunta\",\"common\":\"Swazimaa\"},\"est\":{\"official\":\"eSwatini Kuningriik\",\"common\":\"Svaasimaa\"},\"pol\":{\"official\":\"Królestwo Suazi\",\"common\":\"Suazi\"},\"zho\":{\"official\":\"斯威士兰王国\",\"common\":\"斯威士兰\"},\"urd\":{\"official\":\"مملکتِ سوازی لینڈ\",\"common\":\"سوازی لینڈ\"},\"kor\":{\"official\":\"에스와티니 왕국\",\"common\":\"에스와티니\"},\"per\":{\"official\":\"پادشاهی سوازیلند\",\"common\":\"اسواتینی\"}},\"latlng\":[-26.5,31.5],\"landlocked\":true,\"borders\":[\"MOZ\",\"ZAF\"],\"area\":17364,\"flag\":\"🇸🇿\",\"demonyms\":{\"eng\":{\"f\":\"Swazi\",\"m\":\"Swazi\"},\"fra\":{\"f\":\"Swazie\",\"m\":\"Swazie\"}}},{\"name\":{\"common\":\"Sint Maarten\",\"official\":\"Sint Maarten\",\"native\":{\"eng\":{\"official\":\"Sint Maarten\",\"common\":\"Sint Maarten\"},\"fra\":{\"official\":\"Saint-Martin\",\"common\":\"Saint-Martin\"},\"nld\":{\"official\":\"Sint Maarten\",\"common\":\"Sint Maarten\"}}},\"tld\":[\".sx\"],\"cca2\":\"SX\",\"ccn3\":\"534\",\"cca3\":\"SXM\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"ANG\":{\"name\":\"Netherlands Antillean guilder\",\"symbol\":\"ƒ\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"721\"]},\"capital\":[\"Philipsburg\"],\"altSpellings\":[\"SX\",\"Sint Maarten (Dutch part)\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\",\"fra\":\"French\",\"nld\":\"Dutch\"},\"translations\":{\"ces\":{\"official\":\"Svatý Martin\",\"common\":\"Svatý Martin (Nizozemsko)\"},\"deu\":{\"official\":\"Sint Maarten\",\"common\":\"Sint Maarten\"},\"fra\":{\"official\":\"Sint Maarten\",\"common\":\"Saint-Martin\"},\"hrv\":{\"official\":\"Sveti Martin\",\"common\":\"Sveti Martin\"},\"ita\":{\"official\":\"Sint Maarten\",\"common\":\"Sint Maarten\"},\"jpn\":{\"official\":\"シントマールテン島\",\"common\":\"シント・マールテン\"},\"nld\":{\"official\":\"Sint Maarten\",\"common\":\"Sint Maarten\"},\"por\":{\"official\":\"Sint Maarten\",\"common\":\"São Martinho\"},\"rus\":{\"official\":\"Синт-Маартен\",\"common\":\"Синт-Мартен\"},\"slk\":{\"official\":\"Sint Maarten\",\"common\":\"Sint Maarten\"},\"spa\":{\"official\":\"Sint Maarten\",\"common\":\"Sint Maarten\"},\"fin\":{\"official\":\"Sint Maarten\",\"common\":\"Sint Maarten\"},\"est\":{\"official\":\"Sint Maarten\",\"common\":\"Sint Maarten\"},\"zho\":{\"official\":\"圣马丁岛\",\"common\":\"圣马丁岛\"},\"pol\":{\"official\":\"Sint Maarten\",\"common\":\"Sint Maarten\"},\"urd\":{\"official\":\"سنٹ مارٹن\",\"common\":\"سنٹ مارٹن\"},\"kor\":{\"official\":\"신트마르턴\",\"common\":\"신트마르턴\"},\"per\":{\"official\":\"سن مارتن\",\"common\":\"سن مارتن\"}},\"latlng\":[18.033333,-63.05],\"landlocked\":false,\"borders\":[\"MAF\"],\"area\":34,\"flag\":\"🇸🇽\",\"demonyms\":{\"eng\":{\"f\":\"St. Maartener\",\"m\":\"St. Maartener\"},\"fra\":{\"f\":\"Saint-Martinoise\",\"m\":\"Saint-Martinois\"}}},{\"name\":{\"common\":\"Seychelles\",\"official\":\"Republic of Seychelles\",\"native\":{\"crs\":{\"official\":\"Repiblik Sesel\",\"common\":\"Sesel\"},\"eng\":{\"official\":\"Republic of Seychelles\",\"common\":\"Seychelles\"},\"fra\":{\"official\":\"République des Seychelles\",\"common\":\"Seychelles\"}}},\"tld\":[\".sc\"],\"cca2\":\"SC\",\"ccn3\":\"690\",\"cca3\":\"SYC\",\"cioc\":\"SEY\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SCR\":{\"name\":\"Seychellois rupee\",\"symbol\":\"₨\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"48\"]},\"capital\":[\"Victoria\"],\"altSpellings\":[\"SC\",\"Republic of Seychelles\",\"Repiblik Sesel\",\"République des Seychelles\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"crs\":\"Seychellois Creole\",\"eng\":\"English\",\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Seychelská republika\",\"common\":\"Seychely\"},\"deu\":{\"official\":\"Republik der Seychellen\",\"common\":\"Seychellen\"},\"fra\":{\"official\":\"République des Seychelles\",\"common\":\"Seychelles\"},\"hrv\":{\"official\":\"Republika Sejšeli\",\"common\":\"Sejšeli\"},\"ita\":{\"official\":\"Repubblica delle Seychelles\",\"common\":\"Seychelles\"},\"jpn\":{\"official\":\"セイシェル共和国\",\"common\":\"セーシェル\"},\"nld\":{\"official\":\"Republiek der Seychellen\",\"common\":\"Seychellen\"},\"por\":{\"official\":\"República das Seychelles\",\"common\":\"Seicheles\"},\"rus\":{\"official\":\"Республика Сейшельские Острова\",\"common\":\"Сейшельские Острова\"},\"slk\":{\"official\":\"Seychelská republika\",\"common\":\"Seychely\"},\"spa\":{\"official\":\"República de las Seychelles\",\"common\":\"Seychelles\"},\"fin\":{\"official\":\"Seychellien tasavalta\",\"common\":\"Seychellit\"},\"est\":{\"official\":\"Seišelli Vabariik\",\"common\":\"Seišellid\"},\"zho\":{\"official\":\"塞舌尔共和国\",\"common\":\"塞舌尔\"},\"pol\":{\"official\":\"Republika Seszeli\",\"common\":\"Seszele\"},\"urd\":{\"official\":\"جمہوریہ سیچیلیس\",\"common\":\"سیچیلیس\"},\"kor\":{\"official\":\"세이셸 공화국\",\"common\":\"세이셸\"},\"per\":{\"official\":\"جمهوری سیشل\",\"common\":\"سیشل\"}},\"latlng\":[-4.58333333,55.66666666],\"landlocked\":false,\"borders\":[],\"area\":452,\"flag\":\"🇸🇨\",\"demonyms\":{\"eng\":{\"f\":\"Seychellois\",\"m\":\"Seychellois\"},\"fra\":{\"f\":\"Seychelloise\",\"m\":\"Seychellois\"}}},{\"name\":{\"common\":\"Syria\",\"official\":\"Syrian Arab Republic\",\"native\":{\"ara\":{\"official\":\"الجمهورية العربية السورية\",\"common\":\"سوريا\"}}},\"tld\":[\".sy\",\"سوريا.\"],\"cca2\":\"SY\",\"ccn3\":\"760\",\"cca3\":\"SYR\",\"cioc\":\"SYR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"SYP\":{\"name\":\"Syrian pound\",\"symbol\":\"£\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"63\"]},\"capital\":[\"Damascus\"],\"altSpellings\":[\"SY\",\"Syrian Arab Republic\",\"Al-Jumhūrīyah Al-ʻArabīyah As-Sūrīyah\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Syrská arabská republika\",\"common\":\"Sýrie\"},\"deu\":{\"official\":\"Arabische Republik Syrien\",\"common\":\"Syrien\"},\"fra\":{\"official\":\"République arabe syrienne\",\"common\":\"Syrie\"},\"hrv\":{\"official\":\"Sirijska Arapska Republika\",\"common\":\"Sirija\"},\"ita\":{\"official\":\"Repubblica araba siriana\",\"common\":\"Siria\"},\"jpn\":{\"official\":\"シリアアラブ共和国\",\"common\":\"シリア・アラブ共和国\"},\"nld\":{\"official\":\"Syrische Arabische Republiek\",\"common\":\"Syrië\"},\"por\":{\"official\":\"República Árabe Síria\",\"common\":\"Síria\"},\"rus\":{\"official\":\"Сирийская Арабская Республика\",\"common\":\"Сирия\"},\"slk\":{\"official\":\"Sýrska arabská republika\",\"common\":\"Sýria\"},\"spa\":{\"official\":\"República Árabe Siria\",\"common\":\"Siria\"},\"fin\":{\"official\":\"Syyrian arabitasavalta\",\"common\":\"Syyria\"},\"est\":{\"official\":\"Süüria Araabia Vabariik\",\"common\":\"Süüria\"},\"zho\":{\"official\":\"叙利亚阿拉伯共和国\",\"common\":\"叙利亚\"},\"pol\":{\"official\":\"Syryjska Republika Arabska\",\"common\":\"Syria\"},\"urd\":{\"official\":\"عرب جمہوریہ سوریہ\",\"common\":\"سوریہ\"},\"kor\":{\"official\":\"시리아 아랍 공화국\",\"common\":\"시리아\"},\"per\":{\"official\":\"جمهوری عربی سوریه\",\"common\":\"سوریه\"}},\"latlng\":[35,38],\"landlocked\":false,\"borders\":[\"IRQ\",\"ISR\",\"JOR\",\"LBN\",\"TUR\"],\"area\":185180,\"flag\":\"🇸🇾\",\"demonyms\":{\"eng\":{\"f\":\"Syrian\",\"m\":\"Syrian\"},\"fra\":{\"f\":\"Syrienne\",\"m\":\"Syrien\"}}},{\"name\":{\"common\":\"Turks and Caicos Islands\",\"official\":\"Turks and Caicos Islands\",\"native\":{\"eng\":{\"official\":\"Turks and Caicos Islands\",\"common\":\"Turks and Caicos Islands\"}}},\"tld\":[\".tc\"],\"cca2\":\"TC\",\"ccn3\":\"796\",\"cca3\":\"TCA\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"649\"]},\"capital\":[\"Cockburn Town\"],\"altSpellings\":[\"TC\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Turks a Caicos\",\"common\":\"Turks a Caicos\"},\"deu\":{\"official\":\"Turks und Caicos Inseln\",\"common\":\"Turks-und Caicosinseln\"},\"fra\":{\"official\":\"Îles Turques et Caïques\",\"common\":\"Îles Turques-et-Caïques\"},\"hrv\":{\"official\":\"Otoci Turks i Caicos\",\"common\":\"Otoci Turks i Caicos\"},\"ita\":{\"official\":\"Turks e Caicos\",\"common\":\"Isole Turks e Caicos\"},\"jpn\":{\"official\":\"タークス·カイコス諸島\",\"common\":\"タークス・カイコス諸島\"},\"nld\":{\"official\":\"Turks-en Caicoseilanden\",\"common\":\"Turks-en Caicoseilanden\"},\"por\":{\"official\":\"Ilhas Turks e Caicos\",\"common\":\"Ilhas Turks e Caicos\"},\"rus\":{\"official\":\"Теркс и Кайкос острова\",\"common\":\"Теркс и Кайкос\"},\"slk\":{\"official\":\"Ostrovy Turks a Caicos\",\"common\":\"Turks a Caicos\"},\"spa\":{\"official\":\"Islas Turcas y Caicos\",\"common\":\"Islas Turks y Caicos\"},\"fin\":{\"official\":\"Turks-ja Caicossaaret\",\"common\":\"Turks-ja Caicossaaret\"},\"est\":{\"official\":\"Turksi ja Caicose saared\",\"common\":\"Turks ja Caicos\"},\"zho\":{\"official\":\"特克斯和凯科斯群岛\",\"common\":\"特克斯和凯科斯群岛\"},\"pol\":{\"official\":\"Turks i Caicos\",\"common\":\"Turks i Caicos\"},\"urd\":{\"official\":\"جزائر کیکس و ترکیہ\",\"common\":\"جزائر کیکس و ترکیہ\"},\"kor\":{\"official\":\"터크스 케이커스 제도\",\"common\":\"터크스 케이커스 제도\"},\"per\":{\"official\":\"جزایر تورکس و کایکوس\",\"common\":\"جزایر تورکس و کایکوس\"}},\"latlng\":[21.75,-71.58333333],\"landlocked\":false,\"borders\":[],\"area\":948,\"flag\":\"🇹🇨\",\"demonyms\":{\"eng\":{\"f\":\"Turks and Caicos Islander\",\"m\":\"Turks and Caicos Islander\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Chad\",\"official\":\"Republic of Chad\",\"native\":{\"ara\":{\"official\":\"جمهورية تشاد\",\"common\":\"تشاد\"},\"fra\":{\"official\":\"République du Tchad\",\"common\":\"Tchad\"}}},\"tld\":[\".td\"],\"cca2\":\"TD\",\"ccn3\":\"148\",\"cca3\":\"TCD\",\"cioc\":\"CHA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XAF\":{\"name\":\"Central African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"35\"]},\"capital\":[\"N\\'Djamena\"],\"altSpellings\":[\"TD\",\"Tchad\",\"Republic of Chad\",\"République du Tchad\"],\"region\":\"Africa\",\"subregion\":\"Middle Africa\",\"languages\":{\"ara\":\"Arabic\",\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Čadská republika\",\"common\":\"Čad\"},\"cym\":{\"official\":\"Gweriniaeth Tsiad\",\"common\":\"Tsiad\"},\"deu\":{\"official\":\"Republik Tschad\",\"common\":\"Tschad\"},\"fra\":{\"official\":\"République du Tchad\",\"common\":\"Tchad\"},\"hrv\":{\"official\":\"Čadu\",\"common\":\"Čad\"},\"ita\":{\"official\":\"Repubblica del Ciad\",\"common\":\"Ciad\"},\"jpn\":{\"official\":\"チャド共和国\",\"common\":\"チャド\"},\"nld\":{\"official\":\"Republiek Tsjaad\",\"common\":\"Tsjaad\"},\"por\":{\"official\":\"República do Chade\",\"common\":\"Chade\"},\"rus\":{\"official\":\"Республика Чад\",\"common\":\"Чад\"},\"slk\":{\"official\":\"Čadská republika\",\"common\":\"Čad\"},\"spa\":{\"official\":\"República de Chad\",\"common\":\"Chad\"},\"fin\":{\"official\":\"Tšadin tasavalta\",\"common\":\"Tšad\"},\"est\":{\"official\":\"Tšaadi Vabariik\",\"common\":\"Tšaad\"},\"zho\":{\"official\":\"乍得共和国\",\"common\":\"乍得\"},\"pol\":{\"official\":\"Republika Czadu\",\"common\":\"Czad\"},\"urd\":{\"official\":\"جمہوریہ چاڈ\",\"common\":\"چاڈ\"},\"kor\":{\"official\":\"차드 공화국\",\"common\":\"차드\"},\"per\":{\"official\":\"جمهوری چاد\",\"common\":\"چاد\"}},\"latlng\":[15,19],\"landlocked\":true,\"borders\":[\"CMR\",\"CAF\",\"LBY\",\"NER\",\"NGA\",\"SDN\"],\"area\":1284000,\"flag\":\"🇹🇩\",\"demonyms\":{\"eng\":{\"f\":\"Chadian\",\"m\":\"Chadian\"},\"fra\":{\"f\":\"Tchadienne\",\"m\":\"Tchadien\"}}},{\"name\":{\"common\":\"Togo\",\"official\":\"Togolese Republic\",\"native\":{\"fra\":{\"official\":\"République togolaise\",\"common\":\"Togo\"}}},\"tld\":[\".tg\"],\"cca2\":\"TG\",\"ccn3\":\"768\",\"cca3\":\"TGO\",\"cioc\":\"TOG\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XOF\":{\"name\":\"West African CFA franc\",\"symbol\":\"Fr\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"28\"]},\"capital\":[\"Lomé\"],\"altSpellings\":[\"TG\",\"Togolese\",\"Togolese Republic\",\"République Togolaise\"],\"region\":\"Africa\",\"subregion\":\"Western Africa\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Republika Togo\",\"common\":\"Togo\"},\"deu\":{\"official\":\"Republik Togo\",\"common\":\"Togo\"},\"fra\":{\"official\":\"République togolaise\",\"common\":\"Togo\"},\"hrv\":{\"official\":\"Togolese Republika\",\"common\":\"Togo\"},\"ita\":{\"official\":\"Repubblica del Togo\",\"common\":\"Togo\"},\"jpn\":{\"official\":\"トーゴ共和国\",\"common\":\"トーゴ\"},\"nld\":{\"official\":\"Republiek Togo\",\"common\":\"Togo\"},\"por\":{\"official\":\"República do Togo\",\"common\":\"Togo\"},\"rus\":{\"official\":\"Того Республика\",\"common\":\"Того\"},\"slk\":{\"official\":\"Togská republika\",\"common\":\"Togo\"},\"spa\":{\"official\":\"República de Togo\",\"common\":\"Togo\"},\"fin\":{\"official\":\"Togon tasavalta\",\"common\":\"Togo\"},\"est\":{\"official\":\"Togo Vabariik\",\"common\":\"Togo\"},\"zho\":{\"official\":\"多哥共和国\",\"common\":\"多哥\"},\"pol\":{\"official\":\"Republika Togijska\",\"common\":\"Togo\"},\"urd\":{\"official\":\"جمہوریہ ٹوگو\",\"common\":\"ٹوگو\"},\"kor\":{\"official\":\"토고 공화국\",\"common\":\"토고\"},\"per\":{\"official\":\"جمهوری توگو\",\"common\":\"توگو\"}},\"latlng\":[8,1.16666666],\"landlocked\":false,\"borders\":[\"BEN\",\"BFA\",\"GHA\"],\"area\":56785,\"flag\":\"🇹🇬\",\"demonyms\":{\"eng\":{\"f\":\"Togolese\",\"m\":\"Togolese\"},\"fra\":{\"f\":\"Togolaise\",\"m\":\"Togolais\"}}},{\"name\":{\"common\":\"Thailand\",\"official\":\"Kingdom of Thailand\",\"native\":{\"tha\":{\"official\":\"ราชอาณาจักรไทย\",\"common\":\"ประเทศไทย\"}}},\"tld\":[\".th\",\".ไทย\"],\"cca2\":\"TH\",\"ccn3\":\"764\",\"cca3\":\"THA\",\"cioc\":\"THA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"THB\":{\"name\":\"Thai baht\",\"symbol\":\"฿\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"6\"]},\"capital\":[\"Bangkok\"],\"altSpellings\":[\"TH\",\"Prathet\",\"Thai\",\"Kingdom of Thailand\",\"ราชอาณาจักรไทย\",\"Ratcha Anachak Thai\"],\"region\":\"Asia\",\"subregion\":\"South-Eastern Asia\",\"languages\":{\"tha\":\"Thai\"},\"translations\":{\"ces\":{\"official\":\"Thajské království\",\"common\":\"Thajsko\"},\"deu\":{\"official\":\"Königreich Thailand\",\"common\":\"Thailand\"},\"fra\":{\"official\":\"Royaume de Thaïlande\",\"common\":\"Thaïlande\"},\"hrv\":{\"official\":\"Kraljevina Tajland\",\"common\":\"Tajland\"},\"ita\":{\"official\":\"Regno di Thailandia\",\"common\":\"Tailandia\"},\"jpn\":{\"official\":\"タイ王国\",\"common\":\"タイ\"},\"nld\":{\"official\":\"Koninkrijk Thailand\",\"common\":\"Thailand\"},\"por\":{\"official\":\"Reino da Tailândia\",\"common\":\"Tailândia\"},\"rus\":{\"official\":\"Королевство Таиланд\",\"common\":\"Таиланд\"},\"slk\":{\"official\":\"Thajské kráľovstvo\",\"common\":\"Thajsko\"},\"spa\":{\"official\":\"Reino de Tailandia\",\"common\":\"Tailandia\"},\"fin\":{\"official\":\"Thaimaan kuningaskunta\",\"common\":\"Thaimaa\"},\"est\":{\"official\":\"Tai Kuningriik\",\"common\":\"Tai\"},\"zho\":{\"official\":\"泰王国\",\"common\":\"泰国\"},\"pol\":{\"official\":\"Królestwo Tajlandii\",\"common\":\"Tajlandia\"},\"urd\":{\"official\":\"مملکتِ تھائی لینڈ\",\"common\":\"تھائی لینڈ\"},\"kor\":{\"official\":\"타이 왕국\",\"common\":\"태국\"},\"per\":{\"official\":\"پادشاهی تایلند\",\"common\":\"تایلند\"}},\"latlng\":[15,100],\"landlocked\":false,\"borders\":[\"MMR\",\"KHM\",\"LAO\",\"MYS\"],\"area\":513120,\"flag\":\"🇹🇭\",\"demonyms\":{\"eng\":{\"f\":\"Thai\",\"m\":\"Thai\"},\"fra\":{\"f\":\"Thaïlandaise\",\"m\":\"Thaïlandais\"}}},{\"name\":{\"common\":\"Tajikistan\",\"official\":\"Republic of Tajikistan\",\"native\":{\"rus\":{\"official\":\"Республика Таджикистан\",\"common\":\"Таджикистан\"},\"tgk\":{\"official\":\"Ҷумҳурии Тоҷикистон\",\"common\":\"Тоҷикистон\"}}},\"tld\":[\".tj\"],\"cca2\":\"TJ\",\"ccn3\":\"762\",\"cca3\":\"TJK\",\"cioc\":\"TJK\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"TJS\":{\"name\":\"Tajikistani somoni\",\"symbol\":\"ЅМ\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"92\"]},\"capital\":[\"Dushanbe\"],\"altSpellings\":[\"TJ\",\"Toçikiston\",\"Republic of Tajikistan\",\"Ҷумҳурии Тоҷикистон\",\"Çumhuriyi Toçikiston\"],\"region\":\"Asia\",\"subregion\":\"Central Asia\",\"languages\":{\"rus\":\"Russian\",\"tgk\":\"Tajik\"},\"translations\":{\"ces\":{\"official\":\"Republika Tádžikistán\",\"common\":\"Tádžikistán\"},\"deu\":{\"official\":\"Republik Tadschikistan\",\"common\":\"Tadschikistan\"},\"fra\":{\"official\":\"République du Tadjikistan\",\"common\":\"Tadjikistan\"},\"hrv\":{\"official\":\"Republika Tadžikistan\",\"common\":\"Tađikistan\"},\"ita\":{\"official\":\"Repubblica del Tajikistan\",\"common\":\"Tagikistan\"},\"jpn\":{\"official\":\"タジキスタン共和国\",\"common\":\"タジキスタン\"},\"nld\":{\"official\":\"Tadzjikistan\",\"common\":\"Tadzjikistan\"},\"por\":{\"official\":\"República do Tajiquistão\",\"common\":\"Tajiquistão\"},\"rus\":{\"official\":\"Республика Таджикистан\",\"common\":\"Таджикистан\"},\"slk\":{\"official\":\"Tadžická republika\",\"common\":\"Tadžikistan\"},\"spa\":{\"official\":\"República de Tayikistán\",\"common\":\"Tayikistán\"},\"fin\":{\"official\":\"Tadžikistanin tasavalta\",\"common\":\"Tadžikistan\"},\"est\":{\"official\":\"Tadžikistani Vabariik\",\"common\":\"Tadžikistan\"},\"zho\":{\"official\":\"塔吉克斯坦共和国\",\"common\":\"塔吉克斯坦\"},\"pol\":{\"official\":\"Republika Tadżykistanu\",\"common\":\"Tadżykistan\"},\"urd\":{\"official\":\"جمہوریہ تاجکستان\",\"common\":\"تاجکستان\"},\"kor\":{\"official\":\"타지키스탄 공화국\",\"common\":\"타지키스탄\"},\"per\":{\"official\":\"جمهوری تاجیکستان\",\"common\":\"تاجیکِستان\"}},\"latlng\":[39,71],\"landlocked\":true,\"borders\":[\"AFG\",\"CHN\",\"KGZ\",\"UZB\"],\"area\":143100,\"flag\":\"🇹🇯\",\"demonyms\":{\"eng\":{\"f\":\"Tadzhik\",\"m\":\"Tadzhik\"},\"fra\":{\"f\":\"Tadjike\",\"m\":\"Tadjike\"}}},{\"name\":{\"common\":\"Tokelau\",\"official\":\"Tokelau\",\"native\":{\"eng\":{\"official\":\"Tokelau\",\"common\":\"Tokelau\"},\"smo\":{\"official\":\"Tokelau\",\"common\":\"Tokelau\"},\"tkl\":{\"official\":\"Tokelau\",\"common\":\"Tokelau\"}}},\"tld\":[\".tk\"],\"cca2\":\"TK\",\"ccn3\":\"772\",\"cca3\":\"TKL\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"NZD\":{\"name\":\"New Zealand dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"90\"]},\"capital\":[\"Fakaofo\"],\"altSpellings\":[\"TK\"],\"region\":\"Oceania\",\"subregion\":\"Polynesia\",\"languages\":{\"eng\":\"English\",\"smo\":\"Samoan\",\"tkl\":\"Tokelauan\"},\"translations\":{\"ces\":{\"official\":\"Tokelau\",\"common\":\"Tokelau\"},\"deu\":{\"official\":\"Tokelau\",\"common\":\"Tokelau\"},\"fra\":{\"official\":\"Îles Tokelau\",\"common\":\"Tokelau\"},\"hrv\":{\"official\":\"Tokelau\",\"common\":\"Tokelau\"},\"ita\":{\"official\":\"Tokelau\",\"common\":\"Isole Tokelau\"},\"jpn\":{\"official\":\"トケラウ諸島\",\"common\":\"トケラウ\"},\"nld\":{\"official\":\"Tokelau\",\"common\":\"Tokelau\"},\"por\":{\"official\":\"Tokelau\",\"common\":\"Tokelau\"},\"rus\":{\"official\":\"Токелау\",\"common\":\"Токелау\"},\"slk\":{\"official\":\"Tokelauské ostrovy\",\"common\":\"Tokelau\"},\"spa\":{\"official\":\"Tokelau\",\"common\":\"Islas Tokelau\"},\"fin\":{\"official\":\"Tokelau\",\"common\":\"Tokelau\"},\"est\":{\"official\":\"Tokelau\",\"common\":\"Tokelau\"},\"zho\":{\"official\":\"托克劳\",\"common\":\"托克劳\"},\"pol\":{\"official\":\"Tokelau\",\"common\":\"Tokelau\"},\"urd\":{\"official\":\"ٹوکیلاؤ\",\"common\":\"ٹوکیلاؤ\"},\"kor\":{\"official\":\"토켈라우\",\"common\":\"토켈라우\"},\"per\":{\"official\":\"توکلائو\",\"common\":\"توکلائو\"}},\"latlng\":[-9,-172],\"landlocked\":false,\"borders\":[],\"area\":12,\"flag\":\"🇹🇰\",\"demonyms\":{\"eng\":{\"f\":\"Tokelauan\",\"m\":\"Tokelauan\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Turkmenistan\",\"official\":\"Turkmenistan\",\"native\":{\"rus\":{\"official\":\"Туркменистан\",\"common\":\"Туркмения\"},\"tuk\":{\"official\":\"Türkmenistan\",\"common\":\"Türkmenistan\"}}},\"tld\":[\".tm\"],\"cca2\":\"TM\",\"ccn3\":\"795\",\"cca3\":\"TKM\",\"cioc\":\"TKM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"TMT\":{\"name\":\"Turkmenistan manat\",\"symbol\":\"m\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"93\"]},\"capital\":[\"Ashgabat\"],\"altSpellings\":[\"TM\"],\"region\":\"Asia\",\"subregion\":\"Central Asia\",\"languages\":{\"rus\":\"Russian\",\"tuk\":\"Turkmen\"},\"translations\":{\"ces\":{\"official\":\"Turkmenistán\",\"common\":\"Turkmenistán\"},\"deu\":{\"official\":\"Turkmenistan\",\"common\":\"Turkmenistan\"},\"fra\":{\"official\":\"Turkménistan\",\"common\":\"Turkménistan\"},\"hrv\":{\"official\":\"Turkmenistan\",\"common\":\"Turkmenistan\"},\"ita\":{\"official\":\"Turkmenistan\",\"common\":\"Turkmenistan\"},\"jpn\":{\"official\":\"トルクメニスタン\",\"common\":\"トルクメニスタン\"},\"nld\":{\"official\":\"Turkmenistan\",\"common\":\"Turkmenistan\"},\"por\":{\"official\":\"Turcomenistão\",\"common\":\"Turquemenistão\"},\"rus\":{\"official\":\"Туркменистан\",\"common\":\"Туркмения\"},\"slk\":{\"official\":\"Turkménsko\",\"common\":\"Turkménsko\"},\"spa\":{\"official\":\"Turkmenistán\",\"common\":\"Turkmenistán\"},\"fin\":{\"official\":\"Turkmenistan\",\"common\":\"Turkmenistan\"},\"est\":{\"official\":\"Türkmenistan\",\"common\":\"Türkmenistan\"},\"zho\":{\"official\":\"土库曼斯坦\",\"common\":\"土库曼斯坦\"},\"pol\":{\"official\":\"Republika Turkmenistanu\",\"common\":\"Turkmenistan\"},\"urd\":{\"official\":\"ترکمانستان\",\"common\":\"ترکمانستان\"},\"kor\":{\"official\":\"투르크메니스탄\",\"common\":\"투르크메니스탄\"},\"per\":{\"official\":\"جمهوری خلق ترکمنستان\",\"common\":\"ترکمنستان\"}},\"latlng\":[40,60],\"landlocked\":true,\"borders\":[\"AFG\",\"IRN\",\"KAZ\",\"UZB\"],\"area\":488100,\"flag\":\"🇹🇲\",\"demonyms\":{\"eng\":{\"f\":\"Turkmen\",\"m\":\"Turkmen\"},\"fra\":{\"f\":\"Turkmène\",\"m\":\"Turkmène\"}}},{\"name\":{\"common\":\"Timor-Leste\",\"official\":\"Democratic Republic of Timor-Leste\",\"native\":{\"por\":{\"official\":\"República Democrática de Timor-Leste\",\"common\":\"Timor-Leste\"},\"tet\":{\"official\":\"Repúblika Demokrátika Timór-Leste\",\"common\":\"Timór-Leste\"}}},\"tld\":[\".tl\"],\"cca2\":\"TL\",\"ccn3\":\"626\",\"cca3\":\"TLS\",\"cioc\":\"TLS\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"70\"]},\"capital\":[\"Dili\"],\"altSpellings\":[\"TL\",\"East Timor\",\"Democratic Republic of Timor-Leste\",\"República Democrática de Timor-Leste\",\"Repúblika Demokrátika Timór-Leste\",\"Timór Lorosa\\'e\",\"Timor Lorosae\"],\"region\":\"Asia\",\"subregion\":\"South-Eastern Asia\",\"languages\":{\"por\":\"Portuguese\",\"tet\":\"Tetum\"},\"translations\":{\"ces\":{\"official\":\"Demokratická republika Východní Timor\",\"common\":\"Východní Timor\"},\"deu\":{\"official\":\"Demokratische Republik Timor-Leste\",\"common\":\"Osttimor\"},\"fra\":{\"official\":\"République démocratique du Timor oriental\",\"common\":\"Timor oriental\"},\"hrv\":{\"official\":\"Demokratska Republika Timor-Leste\",\"common\":\"Istočni Timor\"},\"ita\":{\"official\":\"Repubblica Democratica di Timor Est\",\"common\":\"Timor Est\"},\"jpn\":{\"official\":\"東ティモール民主共和国\",\"common\":\"東ティモール\"},\"nld\":{\"official\":\"Democratische Republiek Oost-Timor\",\"common\":\"Oost-Timor\"},\"por\":{\"official\":\"República Democrática de Timor-Leste\",\"common\":\"Timor-Leste\"},\"rus\":{\"official\":\"Демократическая Республика Тимор -Лешти\",\"common\":\"Восточный Тимор\"},\"slk\":{\"official\":\"Východotimorská demokratická republika\",\"common\":\"Východný Timor\"},\"spa\":{\"official\":\"República Democrática de Timor-Leste\",\"common\":\"Timor Oriental\"},\"fin\":{\"official\":\"Itä-Timorin demokraattinen tasavalta\",\"common\":\"Itä-Timor\"},\"est\":{\"official\":\"Timor-Leste Demokraatlik Vabariik\",\"common\":\"Ida-Timor\"},\"zho\":{\"official\":\"东帝汶民主共和国\",\"common\":\"东帝汶\"},\"pol\":{\"official\":\"Demokratyczna Republika Timoru Wschodniego\",\"common\":\"Timor Wschodni\"},\"urd\":{\"official\":\"جمہوری جمہوریہ مشرقی تیمور\",\"common\":\"مشرقی تیمور\"},\"kor\":{\"official\":\"동티모르 민주 공화국\",\"common\":\"동티모르\"},\"per\":{\"official\":\"جمهوری دموکراتیک تیمور شرقی\",\"common\":\"تیمور شرقی\"}},\"latlng\":[-8.83333333,125.91666666],\"landlocked\":false,\"borders\":[\"IDN\"],\"area\":14874,\"flag\":\"🇹🇱\",\"demonyms\":{\"eng\":{\"f\":\"East Timorese\",\"m\":\"East Timorese\"},\"fra\":{\"f\":\"Est-timoraise\",\"m\":\"Est-timorais\"}}},{\"name\":{\"common\":\"Tonga\",\"official\":\"Kingdom of Tonga\",\"native\":{\"eng\":{\"official\":\"Kingdom of Tonga\",\"common\":\"Tonga\"},\"ton\":{\"official\":\"Kingdom of Tonga\",\"common\":\"Tonga\"}}},\"tld\":[\".to\"],\"cca2\":\"TO\",\"ccn3\":\"776\",\"cca3\":\"TON\",\"cioc\":\"TGA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"TOP\":{\"name\":\"Tongan paʻanga\",\"symbol\":\"T$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"76\"]},\"capital\":[\"Nuku\\'alofa\"],\"altSpellings\":[\"TO\"],\"region\":\"Oceania\",\"subregion\":\"Polynesia\",\"languages\":{\"eng\":\"English\",\"ton\":\"Tongan\"},\"translations\":{\"ces\":{\"official\":\"Království Tonga\",\"common\":\"Tonga\"},\"deu\":{\"official\":\"Königreich Tonga\",\"common\":\"Tonga\"},\"fra\":{\"official\":\"Royaume des Tonga\",\"common\":\"Tonga\"},\"hrv\":{\"official\":\"Kraljevina Tonga\",\"common\":\"Tonga\"},\"ita\":{\"official\":\"Regno di Tonga\",\"common\":\"Tonga\"},\"jpn\":{\"official\":\"トンガ王国\",\"common\":\"トンガ\"},\"nld\":{\"official\":\"Koninkrijk Tonga\",\"common\":\"Tonga\"},\"por\":{\"official\":\"Reino de Tonga\",\"common\":\"Tonga\"},\"rus\":{\"official\":\"Королевство Тонга\",\"common\":\"Тонга\"},\"slk\":{\"official\":\"Tongské kráľovstvo\",\"common\":\"Tonga\"},\"spa\":{\"official\":\"Reino de Tonga\",\"common\":\"Tonga\"},\"fin\":{\"official\":\"Tongan kuningaskunta\",\"common\":\"Tonga\"},\"est\":{\"official\":\"Tonga Kuningriik\",\"common\":\"Tonga\"},\"zho\":{\"official\":\"汤加王国\",\"common\":\"汤加\"},\"pol\":{\"official\":\"Królestwo Tonga\",\"common\":\"Tonga\"},\"urd\":{\"official\":\"مملکتِ ٹونگا\",\"common\":\"ٹونگا\"},\"kor\":{\"official\":\"통가 왕국\",\"common\":\"통가\"},\"per\":{\"official\":\"پادشاهی تونگا\",\"common\":\"تونگا\"}},\"latlng\":[-20,-175],\"landlocked\":false,\"borders\":[],\"area\":747,\"flag\":\"🇹🇴\",\"demonyms\":{\"eng\":{\"f\":\"Tongan\",\"m\":\"Tongan\"},\"fra\":{\"f\":\"Tonguienne\",\"m\":\"Tonguien\"}}},{\"name\":{\"common\":\"Trinidad and Tobago\",\"official\":\"Republic of Trinidad and Tobago\",\"native\":{\"eng\":{\"official\":\"Republic of Trinidad and Tobago\",\"common\":\"Trinidad and Tobago\"}}},\"tld\":[\".tt\"],\"cca2\":\"TT\",\"ccn3\":\"780\",\"cca3\":\"TTO\",\"cioc\":\"TTO\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"TTD\":{\"name\":\"Trinidad and Tobago dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"868\"]},\"capital\":[\"Port of Spain\"],\"altSpellings\":[\"TT\",\"Republic of Trinidad and Tobago\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Republika Trinidad a Tobago\",\"common\":\"Trinidad a Tobago\"},\"deu\":{\"official\":\"Republik Trinidad und Tobago\",\"common\":\"Trinidad und Tobago\"},\"fra\":{\"official\":\"République de Trinité-et-Tobago\",\"common\":\"Trinité-et-Tobago\"},\"hrv\":{\"official\":\"Republika Trinidad i Tobago\",\"common\":\"Trinidad i Tobago\"},\"ita\":{\"official\":\"Repubblica di Trinidad e Tobago\",\"common\":\"Trinidad e Tobago\"},\"jpn\":{\"official\":\"トリニダード·トバゴ共和国\",\"common\":\"トリニダード・トバゴ\"},\"nld\":{\"official\":\"Republiek Trinidad en Tobago\",\"common\":\"Trinidad en Tobago\"},\"por\":{\"official\":\"República de Trinidad e Tobago\",\"common\":\"Trinidade e Tobago\"},\"rus\":{\"official\":\"Республика Тринидад и Тобаго\",\"common\":\"Тринидад и Тобаго\"},\"slk\":{\"official\":\"Republika Trinidad a Tobaga\",\"common\":\"Trinidad a Tobago\"},\"spa\":{\"official\":\"República de Trinidad y Tobago\",\"common\":\"Trinidad y Tobago\"},\"fin\":{\"official\":\"Trinidadin ja Tobagon tasavalta\",\"common\":\"Trinidad ja Tobago\"},\"est\":{\"official\":\"Trinidadi ja Tobago Vabariik\",\"common\":\"Trinidad ja Tobago\"},\"zho\":{\"official\":\"特立尼达和多巴哥共和国\",\"common\":\"特立尼达和多巴哥\"},\"pol\":{\"official\":\"Trynidad i Tobago\",\"common\":\"Trynidad i Tobago\"},\"urd\":{\"official\":\"جمہوریہ ٹرینیڈاڈ و ٹوباگو\",\"common\":\"ٹرینیڈاڈ و ٹوباگو\"},\"kor\":{\"official\":\"트리니다드 토바고 공화국\",\"common\":\"트리니다드 토바고\"},\"per\":{\"official\":\"جمهوری ترینیداد و توباگو\",\"common\":\"ترینیداد و توباگو\"}},\"latlng\":[11,-61],\"landlocked\":false,\"borders\":[],\"area\":5130,\"flag\":\"🇹🇹\",\"demonyms\":{\"eng\":{\"f\":\"Trinidadian\",\"m\":\"Trinidadian\"},\"fra\":{\"f\":\"Trinidadienne\",\"m\":\"Trinidadien\"}}},{\"name\":{\"common\":\"Tunisia\",\"official\":\"Tunisian Republic\",\"native\":{\"ara\":{\"official\":\"الجمهورية التونسية\",\"common\":\"تونس\"}}},\"tld\":[\".tn\"],\"cca2\":\"TN\",\"ccn3\":\"788\",\"cca3\":\"TUN\",\"cioc\":\"TUN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"TND\":{\"name\":\"Tunisian dinar\",\"symbol\":\"د.ت\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"16\"]},\"capital\":[\"Tunis\"],\"altSpellings\":[\"TN\",\"Republic of Tunisia\",\"al-Jumhūriyyah at-Tūnisiyyah\"],\"region\":\"Africa\",\"subregion\":\"Northern Africa\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Tuniská republika\",\"common\":\"Tunisko\"},\"deu\":{\"official\":\"Tunesische Republik\",\"common\":\"Tunesien\"},\"fra\":{\"official\":\"République tunisienne\",\"common\":\"Tunisie\"},\"hrv\":{\"official\":\"Tuniski Republika\",\"common\":\"Tunis\"},\"ita\":{\"official\":\"Repubblica tunisina\",\"common\":\"Tunisia\"},\"jpn\":{\"official\":\"チュニジア共和国\",\"common\":\"チュニジア\"},\"nld\":{\"official\":\"Republiek Tunesië\",\"common\":\"Tunesië\"},\"por\":{\"official\":\"República da Tunísia\",\"common\":\"Tunísia\"},\"rus\":{\"official\":\"Тунисской Республики\",\"common\":\"Тунис\"},\"slk\":{\"official\":\"Tuniská republika\",\"common\":\"Tunisko\"},\"spa\":{\"official\":\"República de Túnez\",\"common\":\"Túnez\"},\"fin\":{\"official\":\"Tunisian tasavalta\",\"common\":\"Tunisia\"},\"est\":{\"official\":\"Tuneesia Vabariik\",\"common\":\"Tuneesia\"},\"zho\":{\"official\":\"突尼斯共和国\",\"common\":\"突尼斯\"},\"pol\":{\"official\":\"Republika Tunezyjska\",\"common\":\"Tunezja\"},\"urd\":{\"official\":\"جمہوریہ تونس\",\"common\":\"تونس\"},\"kor\":{\"official\":\"튀니지 공화국\",\"common\":\"튀니지\"},\"per\":{\"official\":\"جمهوری تونس\",\"common\":\"تونس\"}},\"latlng\":[34,9],\"landlocked\":false,\"borders\":[\"DZA\",\"LBY\"],\"area\":163610,\"flag\":\"🇹🇳\",\"demonyms\":{\"eng\":{\"f\":\"Tunisian\",\"m\":\"Tunisian\"},\"fra\":{\"f\":\"Tunisienne\",\"m\":\"Tunisien\"}}},{\"name\":{\"common\":\"Turkey\",\"official\":\"Republic of Turkey\",\"native\":{\"tur\":{\"official\":\"Türkiye Cumhuriyeti\",\"common\":\"Türkiye\"}}},\"tld\":[\".tr\"],\"cca2\":\"TR\",\"ccn3\":\"792\",\"cca3\":\"TUR\",\"cioc\":\"TUR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"TRY\":{\"name\":\"Turkish lira\",\"symbol\":\"₺\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"0\"]},\"capital\":[\"Ankara\"],\"altSpellings\":[\"TR\",\"Turkiye\",\"Republic of Turkey\",\"Türkiye Cumhuriyeti\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"tur\":\"Turkish\"},\"translations\":{\"ces\":{\"official\":\"Turecká republika\",\"common\":\"Turecko\"},\"deu\":{\"official\":\"Republik Türkei\",\"common\":\"Türkei\"},\"fra\":{\"official\":\"République de Turquie\",\"common\":\"Turquie\"},\"hrv\":{\"official\":\"Republika Turska\",\"common\":\"Turska\"},\"ita\":{\"official\":\"Repubblica di Turchia\",\"common\":\"Turchia\"},\"jpn\":{\"official\":\"トルコ共和国\",\"common\":\"トルコ\"},\"nld\":{\"official\":\"Republiek Turkije\",\"common\":\"Turkije\"},\"por\":{\"official\":\"República da Turquia\",\"common\":\"Turquia\"},\"rus\":{\"official\":\"Республика Турции\",\"common\":\"Турция\"},\"slk\":{\"official\":\"Turecká republika\",\"common\":\"Turecko\"},\"spa\":{\"official\":\"República de Turquía\",\"common\":\"Turquía\"},\"fin\":{\"official\":\"Turkin tasavalta\",\"common\":\"Turkki\"},\"est\":{\"official\":\"Türgi Vabariik\",\"common\":\"Türgi\"},\"zho\":{\"official\":\"土耳其共和国\",\"common\":\"土耳其\"},\"pol\":{\"official\":\"Republika Turcji\",\"common\":\"Turcja\"},\"urd\":{\"official\":\"جمہوریہ ترکی\",\"common\":\"ترکی\"},\"kor\":{\"official\":\"터키 공화국\",\"common\":\"터키\"},\"per\":{\"official\":\"جمهوری ترکیه\",\"common\":\"ترکیه\"}},\"latlng\":[39,35],\"landlocked\":false,\"borders\":[\"ARM\",\"AZE\",\"BGR\",\"GEO\",\"GRC\",\"IRN\",\"IRQ\",\"SYR\"],\"area\":783562,\"flag\":\"🇹🇷\",\"demonyms\":{\"eng\":{\"f\":\"Turkish\",\"m\":\"Turkish\"},\"fra\":{\"f\":\"Turque\",\"m\":\"Turc\"}}},{\"name\":{\"common\":\"Tuvalu\",\"official\":\"Tuvalu\",\"native\":{\"eng\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"tvl\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"}}},\"tld\":[\".tv\"],\"cca2\":\"TV\",\"ccn3\":\"798\",\"cca3\":\"TUV\",\"cioc\":\"TUV\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"AUD\":{\"name\":\"Australian dollar\",\"symbol\":\"$\"},\"TVD\":{\"name\":\"Tuvaluan dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"88\"]},\"capital\":[\"Funafuti\"],\"altSpellings\":[\"TV\"],\"region\":\"Oceania\",\"subregion\":\"Polynesia\",\"languages\":{\"eng\":\"English\",\"tvl\":\"Tuvaluan\"},\"translations\":{\"ces\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"deu\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"fra\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"hrv\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"ita\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"jpn\":{\"official\":\"ツバル\",\"common\":\"ツバル\"},\"nld\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"por\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"rus\":{\"official\":\"Тувалу\",\"common\":\"Тувалу\"},\"slk\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"spa\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"fin\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"est\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"zho\":{\"official\":\"图瓦卢\",\"common\":\"图瓦卢\"},\"pol\":{\"official\":\"Tuvalu\",\"common\":\"Tuvalu\"},\"urd\":{\"official\":\"تووالو\",\"common\":\"تووالو\"},\"kor\":{\"official\":\"투발루\",\"common\":\"투발루\"},\"per\":{\"official\":\"تووالو\",\"common\":\"تووالو\"}},\"latlng\":[-8,178],\"landlocked\":false,\"borders\":[],\"area\":26,\"flag\":\"🇹🇻\",\"demonyms\":{\"eng\":{\"f\":\"Tuvaluan\",\"m\":\"Tuvaluan\"},\"fra\":{\"f\":\"Tuvaluane\",\"m\":\"Tuvaluan\"}}},{\"name\":{\"common\":\"Taiwan\",\"official\":\"Republic of China (Taiwan)\",\"native\":{\"zho\":{\"official\":\"中華民國\",\"common\":\"台灣\"}}},\"tld\":[\".tw\",\".台灣\",\".台湾\"],\"cca2\":\"TW\",\"ccn3\":\"158\",\"cca3\":\"TWN\",\"cioc\":\"TPE\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"TWD\":{\"name\":\"New Taiwan dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+8\",\"suffixes\":[\"86\"]},\"capital\":[\"Taipei\"],\"altSpellings\":[\"TW\",\"Táiwān\",\"Republic of China\",\"中華民國\",\"Zhōnghuá Mínguó\",\"Chinese Taipei\"],\"region\":\"Asia\",\"subregion\":\"Eastern Asia\",\"languages\":{\"zho\":\"Chinese\"},\"translations\":{\"ces\":{\"official\":\"Čínská republika\",\"common\":\"Tchaj-wan\"},\"deu\":{\"official\":\"Republik China (Taiwan)\",\"common\":\"Taiwan\"},\"fra\":{\"official\":\"République de Chine (Taïwan)\",\"common\":\"Taïwan\"},\"hrv\":{\"official\":\"Republika Kina\",\"common\":\"Tajvan\"},\"ita\":{\"official\":\"Repubblica cinese (Taiwan)\",\"common\":\"Taiwan\"},\"jpn\":{\"official\":\"中華民国\",\"common\":\"台湾\"},\"nld\":{\"official\":\"Republiek China (Taiwan)\",\"common\":\"Taiwan\"},\"por\":{\"official\":\"República da China\",\"common\":\"Ilha Formosa\"},\"rus\":{\"official\":\"Китайская Республика\",\"common\":\"Тайвань\"},\"slk\":{\"official\":\"Čínska republika\",\"common\":\"Taiwan\"},\"spa\":{\"official\":\"República de China en Taiwán\",\"common\":\"Taiwán\"},\"fin\":{\"official\":\"Kiinan tasavalta\",\"common\":\"Taiwan\"},\"est\":{\"official\":\"Taiwani\",\"common\":\"Taiwan\"},\"pol\":{\"official\":\"Republika Chińska (Tajwan)\",\"common\":\"Tajwan\"},\"urd\":{\"official\":\"جمہوریہ چین (تائیوان)\",\"common\":\"تائیوان\"},\"kor\":{\"official\":\"중화민국\",\"common\":\"대만\"},\"per\":{\"official\":\"جمهوری چین\",\"common\":\"تایوان\"}},\"latlng\":[23.5,121],\"landlocked\":false,\"borders\":[],\"area\":36193,\"flag\":\"🇹🇼\",\"demonyms\":{\"eng\":{\"f\":\"Taiwanese\",\"m\":\"Taiwanese\"},\"fra\":{\"f\":\"Taïwanaise\",\"m\":\"Taïwanais\"}}},{\"name\":{\"common\":\"Tanzania\",\"official\":\"United Republic of Tanzania\",\"native\":{\"eng\":{\"official\":\"United Republic of Tanzania\",\"common\":\"Tanzania\"},\"swa\":{\"official\":\"Jamhuri ya Muungano wa Tanzania\",\"common\":\"Tanzania\"}}},\"tld\":[\".tz\"],\"cca2\":\"TZ\",\"ccn3\":\"834\",\"cca3\":\"TZA\",\"cioc\":\"TAN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"TZS\":{\"name\":\"Tanzanian shilling\",\"symbol\":\"Sh\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"55\"]},\"capital\":[\"Dodoma\"],\"altSpellings\":[\"TZ\",\"Tanzania, United Republic of\",\"United Republic of Tanzania\",\"Jamhuri ya Muungano wa Tanzania\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"eng\":\"English\",\"swa\":\"Swahili\"},\"translations\":{\"ces\":{\"official\":\"Sjednocená tanzanská republika\",\"common\":\"Tanzanie\"},\"deu\":{\"official\":\"Vereinigte Republik Tansania\",\"common\":\"Tansania\"},\"fra\":{\"official\":\"République -Unie de Tanzanie\",\"common\":\"Tanzanie\"},\"hrv\":{\"official\":\"Ujedinjena Republika Tanzanija\",\"common\":\"Tanzanija\"},\"ita\":{\"official\":\"Repubblica Unita di Tanzania\",\"common\":\"Tanzania\"},\"jpn\":{\"official\":\"タンザニア連合共和国\",\"common\":\"タンザニア\"},\"nld\":{\"official\":\"Verenigde Republiek Tanzania\",\"common\":\"Tanzania\"},\"por\":{\"official\":\"República Unida da Tanzânia\",\"common\":\"Tanzânia\"},\"rus\":{\"official\":\"Объединенная Республика Танзания\",\"common\":\"Танзания\"},\"slk\":{\"official\":\"Tanzánijská zjednotená republika\",\"common\":\"Tanzánia\"},\"spa\":{\"official\":\"República Unida de Tanzania\",\"common\":\"Tanzania\"},\"fin\":{\"official\":\"Tansanian yhdistynyt tasavalta\",\"common\":\"Tansania\"},\"est\":{\"official\":\"Tansaania Ühendvabariik\",\"common\":\"Tansaania\"},\"zho\":{\"official\":\"坦桑尼亚联合共和国\",\"common\":\"坦桑尼亚\"},\"pol\":{\"official\":\"Zjednoczona Republika Tanzanii\",\"common\":\"Tanzania\"},\"urd\":{\"official\":\"متحدہ جمہوریہ تنزانیہ\",\"common\":\"تنزانیہ\"},\"kor\":{\"official\":\"탄자니아 연합 공화국\",\"common\":\"탄자니아\"},\"per\":{\"official\":\"جمهوری متحد تانزانیا\",\"common\":\"تانزانیا\"}},\"latlng\":[-6,35],\"landlocked\":false,\"borders\":[\"BDI\",\"COD\",\"KEN\",\"MWI\",\"MOZ\",\"RWA\",\"UGA\",\"ZMB\"],\"area\":945087,\"flag\":\"🇹🇿\",\"demonyms\":{\"eng\":{\"f\":\"Tanzanian\",\"m\":\"Tanzanian\"},\"fra\":{\"f\":\"Tanzanienne\",\"m\":\"Tanzanien\"}}},{\"name\":{\"common\":\"Uganda\",\"official\":\"Republic of Uganda\",\"native\":{\"eng\":{\"official\":\"Republic of Uganda\",\"common\":\"Uganda\"},\"swa\":{\"official\":\"Republic of Uganda\",\"common\":\"Uganda\"}}},\"tld\":[\".ug\"],\"cca2\":\"UG\",\"ccn3\":\"800\",\"cca3\":\"UGA\",\"cioc\":\"UGA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"UGX\":{\"name\":\"Ugandan shilling\",\"symbol\":\"Sh\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"56\"]},\"capital\":[\"Kampala\"],\"altSpellings\":[\"UG\",\"Republic of Uganda\",\"Jamhuri ya Uganda\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"eng\":\"English\",\"swa\":\"Swahili\"},\"translations\":{\"ces\":{\"official\":\"Ugandská republika\",\"common\":\"Uganda\"},\"deu\":{\"official\":\"Republik Uganda\",\"common\":\"Uganda\"},\"fra\":{\"official\":\"République de l\\'Ouganda\",\"common\":\"Ouganda\"},\"hrv\":{\"official\":\"Republika Uganda\",\"common\":\"Uganda\"},\"ita\":{\"official\":\"Repubblica di Uganda\",\"common\":\"Uganda\"},\"jpn\":{\"official\":\"ウガンダ共和国\",\"common\":\"ウガンダ\"},\"nld\":{\"official\":\"Republiek Uganda\",\"common\":\"Oeganda\"},\"por\":{\"official\":\"República do Uganda\",\"common\":\"Uganda\"},\"rus\":{\"official\":\"Республика Уганда\",\"common\":\"Уганда\"},\"slk\":{\"official\":\"Ugandská republika\",\"common\":\"Uganda\"},\"spa\":{\"official\":\"República de Uganda\",\"common\":\"Uganda\"},\"fin\":{\"official\":\"Ugandan tasavalta\",\"common\":\"Uganda\"},\"est\":{\"official\":\"Uganda Vabariik\",\"common\":\"Uganda\"},\"zho\":{\"official\":\"乌干达共和国\",\"common\":\"乌干达\"},\"pol\":{\"official\":\"Republika Ugandy\",\"common\":\"Uganda\"},\"urd\":{\"official\":\"جمہوریہ یوگنڈا\",\"common\":\"یوگنڈا\"},\"kor\":{\"official\":\"우간다 공화국\",\"common\":\"우간다\"},\"per\":{\"official\":\"جمهوری اوگاندا\",\"common\":\"اوگاندا\"}},\"latlng\":[1,32],\"landlocked\":true,\"borders\":[\"COD\",\"KEN\",\"RWA\",\"SSD\",\"TZA\"],\"area\":241550,\"flag\":\"🇺🇬\",\"demonyms\":{\"eng\":{\"f\":\"Ugandan\",\"m\":\"Ugandan\"},\"fra\":{\"f\":\"Ougandaise\",\"m\":\"Ougandais\"}}},{\"name\":{\"common\":\"Ukraine\",\"official\":\"Ukraine\",\"native\":{\"ukr\":{\"official\":\"Україна\",\"common\":\"Україна\"}}},\"tld\":[\".ua\",\".укр\"],\"cca2\":\"UA\",\"ccn3\":\"804\",\"cca3\":\"UKR\",\"cioc\":\"UKR\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"UAH\":{\"name\":\"Ukrainian hryvnia\",\"symbol\":\"₴\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"80\"]},\"capital\":[\"Kyiv\"],\"altSpellings\":[\"UA\",\"Ukrayina\"],\"region\":\"Europe\",\"subregion\":\"Eastern Europe\",\"languages\":{\"ukr\":\"Ukrainian\"},\"translations\":{\"ces\":{\"official\":\"Ukrajina\",\"common\":\"Ukrajina\"},\"deu\":{\"official\":\"Ukraine\",\"common\":\"Ukraine\"},\"fra\":{\"official\":\"Ukraine\",\"common\":\"Ukraine\"},\"hrv\":{\"official\":\"Ukrajina\",\"common\":\"Ukrajina\"},\"ita\":{\"official\":\"Ucraina\",\"common\":\"Ucraina\"},\"jpn\":{\"official\":\"ウクライナ\",\"common\":\"ウクライナ\"},\"nld\":{\"official\":\"Oekraïne\",\"common\":\"Oekraïne\"},\"por\":{\"official\":\"Ucrânia\",\"common\":\"Ucrânia\"},\"rus\":{\"official\":\"Украина\",\"common\":\"Украина\"},\"slk\":{\"official\":\"Ukrajina\",\"common\":\"Ukrajina\"},\"spa\":{\"official\":\"Ucrania\",\"common\":\"Ucrania\"},\"fin\":{\"official\":\"Ukraina\",\"common\":\"Ukraina\"},\"est\":{\"official\":\"Ukraina\",\"common\":\"Ukraina\"},\"zho\":{\"official\":\"乌克兰\",\"common\":\"乌克兰\"},\"pol\":{\"official\":\"Ukraina\",\"common\":\"Ukraina\"},\"urd\":{\"official\":\"یوکرین\",\"common\":\"یوکرین\"},\"kor\":{\"official\":\"우크라이나\",\"common\":\"우크라이나\"},\"per\":{\"official\":\"اوکراین\",\"common\":\"اوکراین\"}},\"latlng\":[49,32],\"landlocked\":false,\"borders\":[\"BLR\",\"HUN\",\"MDA\",\"POL\",\"ROU\",\"RUS\",\"SVK\"],\"area\":603500,\"flag\":\"🇺🇦\",\"demonyms\":{\"eng\":{\"f\":\"Ukrainian\",\"m\":\"Ukrainian\"},\"fra\":{\"f\":\"Ukrainienne\",\"m\":\"Ukrainien\"}}},{\"name\":{\"common\":\"United States Minor Outlying Islands\",\"official\":\"United States Minor Outlying Islands\",\"native\":{\"eng\":{\"official\":\"United States Minor Outlying Islands\",\"common\":\"United States Minor Outlying Islands\"}}},\"tld\":[\".us\"],\"cca2\":\"UM\",\"ccn3\":\"581\",\"cca3\":\"UMI\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"68\"]},\"capital\":[\"\"],\"altSpellings\":[\"UM\"],\"region\":\"Americas\",\"subregion\":\"North America\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Menší odlehlé ostrovy Spojených států amerických\",\"common\":\"Menší odlehlé ostrovy USA\"},\"deu\":{\"official\":\"USA, kleinere ausgelagerte Inseln\",\"common\":\"Kleinere Inselbesitzungen der Vereinigten Staaten\"},\"fra\":{\"official\":\"Îles mineures éloignées des États-Unis\",\"common\":\"Îles mineures éloignées des États-Unis\"},\"hrv\":{\"official\":\"Mali udaljeni otoci SAD-a\",\"common\":\"Mali udaljeni otoci SAD-a\"},\"ita\":{\"official\":\"Stati Uniti Isole Minori\",\"common\":\"Isole minori esterne degli Stati Uniti d\\'America\"},\"jpn\":{\"official\":\"アメリカ合衆国外諸島\",\"common\":\"合衆国領有小離島\"},\"nld\":{\"official\":\"Kleine afgelegen eilanden van de Verenigde Staten\",\"common\":\"Kleine afgelegen eilanden van de Verenigde Staten\"},\"por\":{\"official\":\"Estados Unidos Ilhas Menores Distantes\",\"common\":\"Ilhas Menores Distantes dos Estados Unidos\"},\"rus\":{\"official\":\"Внешние малые острова США\",\"common\":\"Внешние малые острова США\"},\"slk\":{\"official\":\"Menšie odľahlé ostrovy Spjoených štátov\",\"common\":\"Menšie odľahlé ostrovy USA\"},\"spa\":{\"official\":\"Estados Unidos Islas menores alejadas de\",\"common\":\"Islas Ultramarinas Menores de Estados Unidos\"},\"fin\":{\"official\":\"Yhdysvaltain asumattomat saaret\",\"common\":\"Yhdysvaltain asumattomat saaret\"},\"est\":{\"official\":\"Ühendriikide väikesed hajasaared\",\"common\":\"Ühendriikide hajasaared\"},\"zho\":{\"official\":\"美国本土外小岛屿\",\"common\":\"美国本土外小岛屿\"},\"pol\":{\"official\":\"Dalekie Wyspy Mniejsze Stanów Zjednoczonych\",\"common\":\"Dalekie Wyspy Mniejsze Stanów Zjednoczonych\"},\"urd\":{\"official\":\"امریکی چھوٹے بیرونی جزائر\",\"common\":\"امریکی چھوٹے بیرونی جزائر\"},\"kor\":{\"official\":\"미국령 군소 제도\",\"common\":\"미국령 군소 제도\"},\"per\":{\"official\":\"جزایر کوچک حاشیهای ایالات متحده آمریکا\",\"common\":\"جزایر کوچک حاشیهای ایالات متحده آمریکا\"}},\"latlng\":[19.3,166.633333],\"landlocked\":false,\"borders\":[],\"area\":34.2,\"flag\":\"🇺🇲\",\"demonyms\":{\"eng\":{\"f\":\"American\",\"m\":\"American\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Uruguay\",\"official\":\"Oriental Republic of Uruguay\",\"native\":{\"spa\":{\"official\":\"República Oriental del Uruguay\",\"common\":\"Uruguay\"}}},\"tld\":[\".uy\"],\"cca2\":\"UY\",\"ccn3\":\"858\",\"cca3\":\"URY\",\"cioc\":\"URU\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"UYU\":{\"name\":\"Uruguayan peso\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"98\"]},\"capital\":[\"Montevideo\"],\"altSpellings\":[\"UY\",\"Oriental Republic of Uruguay\",\"República Oriental del Uruguay\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Uruguayská východní republika\",\"common\":\"Uruguay\"},\"deu\":{\"official\":\"Republik Östlich des Uruguay\",\"common\":\"Uruguay\"},\"fra\":{\"official\":\"République orientale de l\\'Uruguay\",\"common\":\"Uruguay\"},\"hrv\":{\"official\":\"Orijentalna Republika Urugvaj\",\"common\":\"Urugvaj\"},\"ita\":{\"official\":\"Repubblica Orientale dell\\'Uruguay\",\"common\":\"Uruguay\"},\"jpn\":{\"official\":\"ウルグアイ東方共和国\",\"common\":\"ウルグアイ\"},\"nld\":{\"official\":\"Oosterse Republiek Uruguay\",\"common\":\"Uruguay\"},\"por\":{\"official\":\"República Oriental do Uruguai\",\"common\":\"Uruguai\"},\"rus\":{\"official\":\"Восточной Республики Уругвай\",\"common\":\"Уругвай\"},\"slk\":{\"official\":\"Uruguajská východná republika\",\"common\":\"Uruguaj\"},\"spa\":{\"official\":\"República Oriental del Uruguay\",\"common\":\"Uruguay\"},\"fin\":{\"official\":\"Uruguayn itäinen tasavalta\",\"common\":\"Uruguay\"},\"est\":{\"official\":\"Uruguay Idavabariik\",\"common\":\"Uruguay\"},\"zho\":{\"official\":\"乌拉圭东岸共和国\",\"common\":\"乌拉圭\"},\"pol\":{\"official\":\"Wschodnia Republika Urugwaju\",\"common\":\"Urugwaj\"},\"urd\":{\"official\":\"جمہوریہ شرقیہ یوراگوئے\",\"common\":\"یوراگوئے\"},\"kor\":{\"official\":\"우루과이 동방 공화국\",\"common\":\"우루과이\"},\"per\":{\"official\":\"جمهوری اروگوئه\",\"common\":\"اروگوئه\"}},\"latlng\":[-33,-56],\"landlocked\":false,\"borders\":[\"ARG\",\"BRA\"],\"area\":181034,\"flag\":\"🇺🇾\",\"demonyms\":{\"eng\":{\"f\":\"Uruguayan\",\"m\":\"Uruguayan\"},\"fra\":{\"f\":\"Uruguayenne\",\"m\":\"Uruguayen\"}}},{\"name\":{\"common\":\"United States\",\"official\":\"United States of America\",\"native\":{\"eng\":{\"official\":\"United States of America\",\"common\":\"United States\"}}},\"tld\":[\".us\"],\"cca2\":\"US\",\"ccn3\":\"840\",\"cca3\":\"USA\",\"cioc\":\"USA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"201\",\"202\",\"203\",\"205\",\"206\",\"207\",\"208\",\"209\",\"210\",\"212\",\"213\",\"214\",\"215\",\"216\",\"217\",\"218\",\"219\",\"220\",\"224\",\"225\",\"227\",\"228\",\"229\",\"231\",\"234\",\"239\",\"240\",\"248\",\"251\",\"252\",\"253\",\"254\",\"256\",\"260\",\"262\",\"267\",\"269\",\"270\",\"272\",\"274\",\"276\",\"281\",\"283\",\"301\",\"302\",\"303\",\"304\",\"305\",\"307\",\"308\",\"309\",\"310\",\"312\",\"313\",\"314\",\"315\",\"316\",\"317\",\"318\",\"319\",\"320\",\"321\",\"323\",\"325\",\"327\",\"330\",\"331\",\"334\",\"336\",\"337\",\"339\",\"346\",\"347\",\"351\",\"352\",\"360\",\"361\",\"364\",\"380\",\"385\",\"386\",\"401\",\"402\",\"404\",\"405\",\"406\",\"407\",\"408\",\"409\",\"410\",\"412\",\"413\",\"414\",\"415\",\"417\",\"419\",\"423\",\"424\",\"425\",\"430\",\"432\",\"434\",\"435\",\"440\",\"442\",\"443\",\"447\",\"458\",\"463\",\"464\",\"469\",\"470\",\"475\",\"478\",\"479\",\"480\",\"484\",\"501\",\"502\",\"503\",\"504\",\"505\",\"507\",\"508\",\"509\",\"510\",\"512\",\"513\",\"515\",\"516\",\"517\",\"518\",\"520\",\"530\",\"531\",\"534\",\"539\",\"540\",\"541\",\"551\",\"559\",\"561\",\"562\",\"563\",\"564\",\"567\",\"570\",\"571\",\"573\",\"574\",\"575\",\"580\",\"585\",\"586\",\"601\",\"602\",\"603\",\"605\",\"606\",\"607\",\"608\",\"609\",\"610\",\"612\",\"614\",\"615\",\"616\",\"617\",\"618\",\"619\",\"620\",\"623\",\"626\",\"628\",\"629\",\"630\",\"631\",\"636\",\"641\",\"646\",\"650\",\"651\",\"657\",\"660\",\"661\",\"662\",\"667\",\"669\",\"678\",\"681\",\"682\",\"701\",\"702\",\"703\",\"704\",\"706\",\"707\",\"708\",\"712\",\"713\",\"714\",\"715\",\"716\",\"717\",\"718\",\"719\",\"720\",\"724\",\"725\",\"727\",\"730\",\"731\",\"732\",\"734\",\"737\",\"740\",\"743\",\"747\",\"754\",\"757\",\"760\",\"762\",\"763\",\"765\",\"769\",\"770\",\"772\",\"773\",\"774\",\"775\",\"779\",\"781\",\"785\",\"786\",\"801\",\"802\",\"803\",\"804\",\"805\",\"806\",\"808\",\"810\",\"812\",\"813\",\"814\",\"815\",\"816\",\"817\",\"818\",\"828\",\"830\",\"831\",\"832\",\"843\",\"845\",\"847\",\"848\",\"850\",\"854\",\"856\",\"857\",\"858\",\"859\",\"860\",\"862\",\"863\",\"864\",\"865\",\"870\",\"872\",\"878\",\"901\",\"903\",\"904\",\"906\",\"907\",\"908\",\"909\",\"910\",\"912\",\"913\",\"914\",\"915\",\"916\",\"917\",\"918\",\"919\",\"920\",\"925\",\"928\",\"929\",\"930\",\"931\",\"934\",\"936\",\"937\",\"938\",\"940\",\"941\",\"947\",\"949\",\"951\",\"952\",\"954\",\"956\",\"959\",\"970\",\"971\",\"972\",\"973\",\"975\",\"978\",\"979\",\"980\",\"984\",\"985\",\"989\"]},\"capital\":[\"Washington D.C.\"],\"altSpellings\":[\"US\",\"USA\",\"United States of America\"],\"region\":\"Americas\",\"subregion\":\"North America\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Spojené státy americké\",\"common\":\"Spojené státy\"},\"deu\":{\"official\":\"Vereinigte Staaten von Amerika\",\"common\":\"Vereinigte Staaten\"},\"fra\":{\"official\":\"Les états-unis d\\'Amérique\",\"common\":\"États-Unis\"},\"hrv\":{\"official\":\"Sjedinjene Države Amerike\",\"common\":\"Sjedinjene Američke Države\"},\"ita\":{\"official\":\"Stati Uniti d\\'America\",\"common\":\"Stati Uniti d\\'America\"},\"jpn\":{\"official\":\"アメリカ合衆国\",\"common\":\"アメリカ合衆国\"},\"nld\":{\"official\":\"Verenigde Staten van Amerika\",\"common\":\"Verenigde Staten\"},\"por\":{\"official\":\"Estados Unidos da América\",\"common\":\"Estados Unidos\"},\"rus\":{\"official\":\"Соединенные Штаты Америки\",\"common\":\"Соединённые Штаты Америки\"},\"slk\":{\"official\":\"Spojené štáty Americké\",\"common\":\"Spojené štáty americké\"},\"spa\":{\"official\":\"Estados Unidos de América\",\"common\":\"Estados Unidos\"},\"fin\":{\"official\":\"Amerikan yhdysvallat\",\"common\":\"Yhdysvallat\"},\"est\":{\"official\":\"Ameerika Ühendriigid\",\"common\":\"Ameerika Ühendriigid\"},\"zho\":{\"official\":\"美利坚合众国\",\"common\":\"美国\"},\"pol\":{\"official\":\"Stany Zjednoczone Ameryki\",\"common\":\"Stany Zjednoczone\"},\"urd\":{\"official\":\"ریاستہائے متحدہ امریکا\",\"common\":\"ریاستہائے متحدہ\"},\"kor\":{\"official\":\"아메리카 합중국\",\"common\":\"미국\"},\"per\":{\"official\":\"ایالات متحده آمریکا\",\"common\":\"ایالات متحده آمریکا\"}},\"latlng\":[38,-97],\"landlocked\":false,\"borders\":[\"CAN\",\"MEX\"],\"area\":9372610,\"flag\":\"🇺🇸\",\"demonyms\":{\"eng\":{\"f\":\"American\",\"m\":\"American\"},\"fra\":{\"f\":\"Américaine\",\"m\":\"Américain\"}}},{\"name\":{\"common\":\"Uzbekistan\",\"official\":\"Republic of Uzbekistan\",\"native\":{\"rus\":{\"official\":\"Республика Узбекистан\",\"common\":\"Узбекистан\"},\"uzb\":{\"official\":\"O\\'zbekiston Respublikasi\",\"common\":\"O‘zbekiston\"}}},\"tld\":[\".uz\"],\"cca2\":\"UZ\",\"ccn3\":\"860\",\"cca3\":\"UZB\",\"cioc\":\"UZB\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"UZS\":{\"name\":\"Uzbekistani soʻm\",\"symbol\":\"so\\'m\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"98\"]},\"capital\":[\"Tashkent\"],\"altSpellings\":[\"UZ\",\"Republic of Uzbekistan\",\"O‘zbekiston Respublikasi\",\"Ўзбекистон Республикаси\"],\"region\":\"Asia\",\"subregion\":\"Central Asia\",\"languages\":{\"rus\":\"Russian\",\"uzb\":\"Uzbek\"},\"translations\":{\"ces\":{\"official\":\"Republika Uzbekistán\",\"common\":\"Uzbekistán\"},\"deu\":{\"official\":\"Republik Usbekistan\",\"common\":\"Usbekistan\"},\"fra\":{\"official\":\"République d\\'Ouzbékistan\",\"common\":\"Ouzbékistan\"},\"hrv\":{\"official\":\"Republika Uzbekistan\",\"common\":\"Uzbekistan\"},\"ita\":{\"official\":\"Repubblica di Uzbekistan\",\"common\":\"Uzbekistan\"},\"jpn\":{\"official\":\"ウズベキスタン共和国\",\"common\":\"ウズベキスタン\"},\"nld\":{\"official\":\"Republiek Oezbekistan\",\"common\":\"Oezbekistan\"},\"por\":{\"official\":\"República do Usbequistão\",\"common\":\"Uzbequistão\"},\"rus\":{\"official\":\"Республика Узбекистан\",\"common\":\"Узбекистан\"},\"slk\":{\"official\":\"Uzbecká republika\",\"common\":\"Uzbekistan\"},\"spa\":{\"official\":\"República de Uzbekistán\",\"common\":\"Uzbekistán\"},\"fin\":{\"official\":\"Uzbekistanin tasavalta\",\"common\":\"Uzbekistan\"},\"est\":{\"official\":\"Usbekistani Vabariik\",\"common\":\"Usbekistan\"},\"zho\":{\"official\":\"乌兹别克斯坦共和国\",\"common\":\"乌兹别克斯坦\"},\"pol\":{\"official\":\"Republika Uzbekistanu\",\"common\":\"Uzbekistan\"},\"urd\":{\"official\":\"جمہوریہ ازبکستان\",\"common\":\"ازبکستان\"},\"kor\":{\"official\":\"우즈베키스탄 공화국\",\"common\":\"우즈베키스탄\"},\"per\":{\"official\":\"جمهوری ازبکستان\",\"common\":\"ازبکستان\"}},\"latlng\":[41,64],\"landlocked\":true,\"borders\":[\"AFG\",\"KAZ\",\"KGZ\",\"TJK\",\"TKM\"],\"area\":447400,\"flag\":\"🇺🇿\",\"demonyms\":{\"eng\":{\"f\":\"Uzbekistani\",\"m\":\"Uzbekistani\"},\"fra\":{\"f\":\"Ouzbèke\",\"m\":\"Ouzbèke\"}}},{\"name\":{\"common\":\"Vatican City\",\"official\":\"Vatican City State\",\"native\":{\"ita\":{\"official\":\"Stato della Città del Vaticano\",\"common\":\"Vaticano\"},\"lat\":{\"official\":\"Status Civitatis Vaticanæ\",\"common\":\"Vaticanæ\"}}},\"tld\":[\".va\"],\"cca2\":\"VA\",\"ccn3\":\"336\",\"cca3\":\"VAT\",\"cioc\":\"\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"}},\"idd\":{\"root\":\"+3\",\"suffixes\":[\"906698\",\"79\"]},\"capital\":[\"Vatican City\"],\"altSpellings\":[\"VA\",\"Holy See (Vatican City State)\",\"Vatican City State\",\"Stato della Città del Vaticano\"],\"region\":\"Europe\",\"subregion\":\"Southern Europe\",\"languages\":{\"ita\":\"Italian\",\"lat\":\"Latin\"},\"translations\":{\"ces\":{\"official\":\"Městský stát Vatikán\",\"common\":\"Vatikán\"},\"deu\":{\"official\":\"Staat Vatikanstadt\",\"common\":\"Vatikanstadt\"},\"fra\":{\"official\":\"Cité du Vatican\",\"common\":\"Cité du Vatican\"},\"hrv\":{\"official\":\"Vatikan\",\"common\":\"Vatikan\"},\"ita\":{\"official\":\"Città del Vaticano\",\"common\":\"Città del Vaticano\"},\"jpn\":{\"official\":\"バチカン市国の状態\",\"common\":\"バチカン市国\"},\"nld\":{\"official\":\"Vaticaanstad\",\"common\":\"Vaticaanstad\"},\"por\":{\"official\":\"Cidade do Vaticano\",\"common\":\"Cidade do Vaticano\"},\"rus\":{\"official\":\"Город-государство Ватикан\",\"common\":\"Ватикан\"},\"slk\":{\"official\":\"Svätá stolica (Vatikánsky mestský štát\",\"common\":\"Vatikán\"},\"spa\":{\"official\":\"Ciudad del Vaticano\",\"common\":\"Ciudad del Vaticano\"},\"fin\":{\"official\":\"Vatikaanin kaupunkivaltio\",\"common\":\"Vatikaani\"},\"est\":{\"official\":\"Vatikani Linnriik\",\"common\":\"Vatikan\"},\"zho\":{\"official\":\"梵蒂冈城国\",\"common\":\"梵蒂冈\"},\"pol\":{\"official\":\"Państwo Watykańskie\",\"common\":\"Watykan\"},\"urd\":{\"official\":\"ویٹیکن سٹی\",\"common\":\"ویٹیکن سٹی\"},\"kor\":{\"official\":\"바티칸 시국\",\"common\":\"바티칸\"},\"per\":{\"official\":\"دولتشهر واتیکان\",\"common\":\"واتیکان\"}},\"latlng\":[41.9,12.45],\"landlocked\":true,\"borders\":[\"ITA\"],\"area\":0.44,\"flag\":\"🇻🇦\",\"demonyms\":{\"eng\":{\"f\":\"Vatican\",\"m\":\"Vatican\"},\"fra\":{\"f\":\"Vaticane\",\"m\":\"Vatican\"}}},{\"name\":{\"common\":\"Saint Vincent and the Grenadines\",\"official\":\"Saint Vincent and the Grenadines\",\"native\":{\"eng\":{\"official\":\"Saint Vincent and the Grenadines\",\"common\":\"Saint Vincent and the Grenadines\"}}},\"tld\":[\".vc\"],\"cca2\":\"VC\",\"ccn3\":\"670\",\"cca3\":\"VCT\",\"cioc\":\"VIN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"XCD\":{\"name\":\"Eastern Caribbean dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"784\"]},\"capital\":[\"Kingstown\"],\"altSpellings\":[\"VC\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Svatý Vincenc a Grenadiny\",\"common\":\"Svatý Vincenc a Grenadiny\"},\"deu\":{\"official\":\"St. Vincent und die Grenadinen\",\"common\":\"St. Vincent und die Grenadinen\"},\"fra\":{\"official\":\"Saint-Vincent-et-les Grenadines\",\"common\":\"Saint-Vincent-et-les-Grenadines\"},\"hrv\":{\"official\":\"Sveti Vincent i Grenadini\",\"common\":\"Sveti Vincent i Grenadini\"},\"ita\":{\"official\":\"Saint Vincent e Grenadine\",\"common\":\"Saint Vincent e Grenadine\"},\"jpn\":{\"official\":\"セントビンセントおよびグレナディーン諸島\",\"common\":\"セントビンセントおよびグレナディーン諸島\"},\"nld\":{\"official\":\"Saint Vincent en de Grenadines\",\"common\":\"Saint Vincent en de Grenadines\"},\"por\":{\"official\":\"São Vicente e Granadinas\",\"common\":\"São Vincente e Granadinas\"},\"rus\":{\"official\":\"Сент-Винсент и Гренадины\",\"common\":\"Сент-Винсент и Гренадины\"},\"slk\":{\"official\":\"Svätý Vincent a Grenadíny\",\"common\":\"Svätý Vincent a Grenadíny\"},\"spa\":{\"official\":\"San Vicente y las Granadinas\",\"common\":\"San Vicente y Granadinas\"},\"fin\":{\"official\":\"Saint Vincent ja Grenadiinit\",\"common\":\"Saint Vincent ja Grenadiinit\"},\"est\":{\"official\":\"Saint Vincent ja Grenadiinid\",\"common\":\"Saint Vincent\"},\"zho\":{\"official\":\"圣文森特和格林纳丁斯\",\"common\":\"圣文森特和格林纳丁斯\"},\"pol\":{\"official\":\"Saint Vincent i Grenadyny\",\"common\":\"Saint Vincent i Grenadyny\"},\"urd\":{\"official\":\"سینٹ وینسینٹ و گریناڈائنز\",\"common\":\"سینٹ وینسینٹ و گریناڈائنز\"},\"kor\":{\"official\":\"세인트빈센트 그레나딘\",\"common\":\"세인트빈센트 그레나딘\"},\"per\":{\"official\":\"سنت وینسنت و گرنادینها\",\"common\":\"سنت وینسنت و گرنادینها\"}},\"latlng\":[13.25,-61.2],\"landlocked\":false,\"borders\":[],\"area\":389,\"flag\":\"🇻🇨\",\"demonyms\":{\"eng\":{\"f\":\"Saint Vincentian\",\"m\":\"Saint Vincentian\"},\"fra\":{\"f\":\"Vincentaise\",\"m\":\"Vincentais\"}}},{\"name\":{\"common\":\"Venezuela\",\"official\":\"Bolivarian Republic of Venezuela\",\"native\":{\"spa\":{\"official\":\"República Bolivariana de Venezuela\",\"common\":\"Venezuela\"}}},\"tld\":[\".ve\"],\"cca2\":\"VE\",\"ccn3\":\"862\",\"cca3\":\"VEN\",\"cioc\":\"VEN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"VES\":{\"name\":\"Venezuelan bolívar soberano\",\"symbol\":\"Bs.S.\"}},\"idd\":{\"root\":\"+5\",\"suffixes\":[\"8\"]},\"capital\":[\"Caracas\"],\"altSpellings\":[\"VE\",\"Bolivarian Republic of Venezuela\",\"Venezuela, Bolivarian Republic of\",\"República Bolivariana de Venezuela\"],\"region\":\"Americas\",\"subregion\":\"South America\",\"languages\":{\"spa\":\"Spanish\"},\"translations\":{\"ces\":{\"official\":\"Bolívarská republika Venezuela\",\"common\":\"Venezuela\"},\"deu\":{\"official\":\"Bolivarische Republik Venezuela\",\"common\":\"Venezuela\"},\"fra\":{\"official\":\"République bolivarienne du Venezuela\",\"common\":\"Venezuela\"},\"hrv\":{\"official\":\"BOLIVARIJANSKA Republika Venezuela\",\"common\":\"Venezuela\"},\"ita\":{\"official\":\"Repubblica Bolivariana del Venezuela\",\"common\":\"Venezuela\"},\"jpn\":{\"official\":\"ベネズエラ·ボリバル共和国\",\"common\":\"ベネズエラ・ボリバル共和国\"},\"nld\":{\"official\":\"Bolivariaanse Republiek Venezuela\",\"common\":\"Venezuela\"},\"por\":{\"official\":\"República Bolivariana da Venezuela\",\"common\":\"Venezuela\"},\"rus\":{\"official\":\"Боливарианская Республика Венесуэла\",\"common\":\"Венесуэла\"},\"slk\":{\"official\":\"Venezuelská bolívarovská republika\",\"common\":\"Venezuela\"},\"spa\":{\"official\":\"República Bolivariana de Venezuela\",\"common\":\"Venezuela\"},\"fin\":{\"official\":\"Venezuelan bolivariaainen tasavalta\",\"common\":\"Venezuela\"},\"est\":{\"official\":\"Venezuela Bolívari Vabariik\",\"common\":\"Venezuela\"},\"zho\":{\"official\":\"委内瑞拉玻利瓦尔共和国\",\"common\":\"委内瑞拉\"},\"pol\":{\"official\":\"Boliwariańska Republika Wenezueli\",\"common\":\"Wenezuela\"},\"urd\":{\"official\":\"جمہوریہ وینیزویلا\",\"common\":\"وینیزویلا\"},\"kor\":{\"official\":\"베네수엘라 볼리바르 공화국\",\"common\":\"베네수엘라\"},\"per\":{\"official\":\"جمهوری بولیواری ونزوئلا\",\"common\":\"ونزوئلا\"}},\"latlng\":[8,-66],\"landlocked\":false,\"borders\":[\"BRA\",\"COL\",\"GUY\"],\"area\":916445,\"flag\":\"🇻🇪\",\"demonyms\":{\"eng\":{\"f\":\"Venezuelan\",\"m\":\"Venezuelan\"},\"fra\":{\"f\":\"Vénézuélienne\",\"m\":\"Vénézuélien\"}}},{\"name\":{\"common\":\"British Virgin Islands\",\"official\":\"Virgin Islands\",\"native\":{\"eng\":{\"official\":\"Virgin Islands\",\"common\":\"British Virgin Islands\"}}},\"tld\":[\".vg\"],\"cca2\":\"VG\",\"ccn3\":\"092\",\"cca3\":\"VGB\",\"cioc\":\"IVB\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"284\"]},\"capital\":[\"Road Town\"],\"altSpellings\":[\"VG\",\"Virgin Islands, British\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Britské Panenské ostrovy\",\"common\":\"Britské Panenské ostrovy\"},\"deu\":{\"official\":\"Jungferninseln\",\"common\":\"Britische Jungferninseln\"},\"fra\":{\"official\":\"îles Vierges\",\"common\":\"Îles Vierges britanniques\"},\"hrv\":{\"official\":\"Djevičanski Otoci\",\"common\":\"Britanski Djevičanski Otoci\"},\"ita\":{\"official\":\"Isole Vergini\",\"common\":\"Isole Vergini Britanniche\"},\"jpn\":{\"official\":\"バージン諸島\",\"common\":\"イギリス領ヴァージン諸島\"},\"nld\":{\"official\":\"Maagdeneilanden\",\"common\":\"Britse Maagdeneilanden\"},\"por\":{\"official\":\"Ilhas Virgens\",\"common\":\"Ilhas Virgens\"},\"rus\":{\"official\":\"Виргинские острова\",\"common\":\"Британские Виргинские острова\"},\"slk\":{\"official\":\"Panenské ostrovy\",\"common\":\"Panenské ostrovy\"},\"spa\":{\"official\":\"Islas Vírgenes\",\"common\":\"Islas Vírgenes del Reino Unido\"},\"fin\":{\"official\":\"Brittiläiset Neitsytsaaret\",\"common\":\"Neitsytsaaret\"},\"est\":{\"official\":\"Neitsisaared\",\"common\":\"Briti Neitsisaared\"},\"zho\":{\"official\":\"英属维尔京群岛\",\"common\":\"英属维尔京群岛\"},\"pol\":{\"official\":\"Brytyjskie Wyspy Dziewicze\",\"common\":\"Brytyjskie Wyspy Dziewicze\"},\"urd\":{\"official\":\"برطانوی جزائر ورجن\",\"common\":\"برطانوی جزائر ورجن\"},\"kor\":{\"official\":\"영국령 버진아일랜드\",\"common\":\"영국령 버진아일랜드\"},\"per\":{\"official\":\"جزایر ویرجین بریتانیا\",\"common\":\"جزایر ویرجین بریتانیا\"}},\"latlng\":[18.431383,-64.62305],\"landlocked\":false,\"borders\":[],\"area\":151,\"flag\":\"🇻🇬\",\"demonyms\":{\"eng\":{\"f\":\"Virgin Islander\",\"m\":\"Virgin Islander\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"United States Virgin Islands\",\"official\":\"Virgin Islands of the United States\",\"native\":{\"eng\":{\"official\":\"Virgin Islands of the United States\",\"common\":\"United States Virgin Islands\"}}},\"tld\":[\".vi\"],\"cca2\":\"VI\",\"ccn3\":\"850\",\"cca3\":\"VIR\",\"cioc\":\"ISV\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+1\",\"suffixes\":[\"340\"]},\"capital\":[\"Charlotte Amalie\"],\"altSpellings\":[\"VI\",\"Virgin Islands, U.S.\"],\"region\":\"Americas\",\"subregion\":\"Caribbean\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Americké Panenské ostrovy\",\"common\":\"Americké Panenské ostrovy\"},\"deu\":{\"official\":\"Amerikanische Jungferninseln\",\"common\":\"Amerikanische Jungferninseln\"},\"fra\":{\"official\":\"Îles Vierges des États-Unis\",\"common\":\"Îles Vierges des États-Unis\"},\"hrv\":{\"official\":\"Djevičanski Otoci SAD\",\"common\":\"Američki Djevičanski Otoci\"},\"ita\":{\"official\":\"Isole Vergini degli Stati Uniti\",\"common\":\"Isole Vergini americane\"},\"jpn\":{\"official\":\"米国のバージン諸島\",\"common\":\"アメリカ領ヴァージン諸島\"},\"nld\":{\"official\":\"Maagdeneilanden van de Verenigde Staten\",\"common\":\"Amerikaanse Maagdeneilanden\"},\"por\":{\"official\":\"Ilhas Virgens dos Estados Unidos\",\"common\":\"Ilhas Virgens dos Estados Unidos\"},\"rus\":{\"official\":\"Виргинские острова Соединенных Штатов\",\"common\":\"Виргинские Острова\"},\"slk\":{\"official\":\"Americké Panenské ostrovy\",\"common\":\"Americké Panenské ostrovy\"},\"spa\":{\"official\":\"Islas Vírgenes de los Estados Unidos\",\"common\":\"Islas Vírgenes de los Estados Unidos\"},\"fin\":{\"official\":\"Yhdysvaltain Neitsytsaaret\",\"common\":\"Neitsytsaaret\"},\"est\":{\"official\":\"Ühendriikide Neitsisaared\",\"common\":\"Neitsisaared, USA\"},\"zho\":{\"official\":\"美属维尔京群岛\",\"common\":\"美属维尔京群岛\"},\"pol\":{\"official\":\"Wyspy Dziewicze Stanów Zjednoczonych\",\"common\":\"Wyspy Dziewicze Stanów Zjednoczonych\"},\"urd\":{\"official\":\"امریکی جزائر ورجن\",\"common\":\"امریکی جزائر ورجن\"},\"kor\":{\"official\":\"미국령 버진아일랜드\",\"common\":\"미국령 버진아일랜드\"},\"per\":{\"official\":\"جزایر ویرجین ایالات متحده آمریکا\",\"common\":\"جزایر ویرجین ایالات متحده آمریکا\"}},\"latlng\":[18.35,-64.933333],\"landlocked\":false,\"borders\":[],\"area\":347,\"flag\":\"🇻🇮\",\"demonyms\":{\"eng\":{\"f\":\"Virgin Islander\",\"m\":\"Virgin Islander\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Vietnam\",\"official\":\"Socialist Republic of Vietnam\",\"native\":{\"vie\":{\"official\":\"Cộng hòa xã hội chủ nghĩa Việt Nam\",\"common\":\"Việt Nam\"}}},\"tld\":[\".vn\"],\"cca2\":\"VN\",\"ccn3\":\"704\",\"cca3\":\"VNM\",\"cioc\":\"VIE\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"VND\":{\"name\":\"Vietnamese đồng\",\"symbol\":\"₫\"}},\"idd\":{\"root\":\"+8\",\"suffixes\":[\"4\"]},\"capital\":[\"Hanoi\"],\"altSpellings\":[\"VN\",\"Socialist Republic of Vietnam\",\"Cộng hòa Xã hội chủ nghĩa Việt Nam\",\"Viet Nam\"],\"region\":\"Asia\",\"subregion\":\"South-Eastern Asia\",\"languages\":{\"vie\":\"Vietnamese\"},\"translations\":{\"ces\":{\"official\":\"Vietnamská socialistická republika\",\"common\":\"Vietnam\"},\"deu\":{\"official\":\"Sozialistische Republik Vietnam\",\"common\":\"Vietnam\"},\"fra\":{\"official\":\"République socialiste du Viêt Nam\",\"common\":\"Viêt Nam\"},\"hrv\":{\"official\":\"Socijalistička Republika Vijetnam\",\"common\":\"Vijetnam\"},\"ita\":{\"official\":\"Repubblica socialista del Vietnam\",\"common\":\"Vietnam\"},\"jpn\":{\"official\":\"ベトナム社会主義共和国\",\"common\":\"ベトナム\"},\"nld\":{\"official\":\"Socialistische Republiek Vietnam\",\"common\":\"Vietnam\"},\"por\":{\"official\":\"República Socialista do Vietname\",\"common\":\"Vietname\"},\"rus\":{\"official\":\"Социалистическая Республика Вьетнам\",\"common\":\"Вьетнам\"},\"slk\":{\"official\":\"Vietnamská socialistická republika\",\"common\":\"Vietnam\"},\"spa\":{\"official\":\"República Socialista de Vietnam\",\"common\":\"Vietnam\"},\"fin\":{\"official\":\"Vietnamin sosialistinen tasavalta\",\"common\":\"Vietnam\"},\"est\":{\"official\":\"Vietnami Sotsialistlik Vabariik\",\"common\":\"Vietnam\"},\"zho\":{\"official\":\"越南社会主义共和国\",\"common\":\"越南\"},\"pol\":{\"official\":\"Socjalistyczna Republika Wietnamu\",\"common\":\"Wietnam\"},\"urd\":{\"official\":\"اشتراکی جمہوریہ ویتنام\",\"common\":\"ویتنام\"},\"kor\":{\"official\":\"베트남 사회주의 공화국\",\"common\":\"베트남\"},\"per\":{\"official\":\"جمهوری سوسیالیستی ویتنام\",\"common\":\"ویتنام\"}},\"latlng\":[16.16666666,107.83333333],\"landlocked\":false,\"borders\":[\"KHM\",\"CHN\",\"LAO\"],\"area\":331212,\"flag\":\"🇻🇳\",\"demonyms\":{\"eng\":{\"f\":\"Vietnamese\",\"m\":\"Vietnamese\"},\"fra\":{\"f\":\"Vietnamienne\",\"m\":\"Vietnamien\"}}},{\"name\":{\"common\":\"Vanuatu\",\"official\":\"Republic of Vanuatu\",\"native\":{\"bis\":{\"official\":\"Ripablik blong Vanuatu\",\"common\":\"Vanuatu\"},\"eng\":{\"official\":\"Republic of Vanuatu\",\"common\":\"Vanuatu\"},\"fra\":{\"official\":\"République de Vanuatu\",\"common\":\"Vanuatu\"}}},\"tld\":[\".vu\"],\"cca2\":\"VU\",\"ccn3\":\"548\",\"cca3\":\"VUT\",\"cioc\":\"VAN\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"VUV\":{\"name\":\"Vanuatu vatu\",\"symbol\":\"Vt\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"78\"]},\"capital\":[\"Port Vila\"],\"altSpellings\":[\"VU\",\"Republic of Vanuatu\",\"Ripablik blong Vanuatu\",\"République de Vanuatu\"],\"region\":\"Oceania\",\"subregion\":\"Melanesia\",\"languages\":{\"bis\":\"Bislama\",\"eng\":\"English\",\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Republika Vanuatu\",\"common\":\"Vanuatu\"},\"deu\":{\"official\":\"Vanuatu\",\"common\":\"Vanuatu\"},\"fra\":{\"official\":\"République de Vanuatu\",\"common\":\"Vanuatu\"},\"hrv\":{\"official\":\"Republika Vanuatu\",\"common\":\"Vanuatu\"},\"ita\":{\"official\":\"Repubblica di Vanuatu\",\"common\":\"Vanuatu\"},\"jpn\":{\"official\":\"バヌアツ共和国\",\"common\":\"バヌアツ\"},\"nld\":{\"official\":\"Republiek Vanuatu\",\"common\":\"Vanuatu\"},\"por\":{\"official\":\"República de Vanuatu\",\"common\":\"Vanuatu\"},\"rus\":{\"official\":\"Республика Вануату\",\"common\":\"Вануату\"},\"slk\":{\"official\":\"Vanuatská republika\",\"common\":\"Vanuatu\"},\"spa\":{\"official\":\"República de Vanuatu\",\"common\":\"Vanuatu\"},\"fin\":{\"official\":\"Vanuatun tasavalta\",\"common\":\"Vanuatu\"},\"est\":{\"official\":\"Vanuatu Vabariik\",\"common\":\"Vanuatu\"},\"zho\":{\"official\":\"瓦努阿图共和国\",\"common\":\"瓦努阿图\"},\"pol\":{\"official\":\"Republika Vanuatu\",\"common\":\"Vanuatu\"},\"urd\":{\"official\":\"جمہوریہ وانواتو\",\"common\":\"وانواتو\"},\"kor\":{\"official\":\"바누아투 공화국\",\"common\":\"바누아투\"},\"per\":{\"official\":\"جمهوری وانواتو\",\"common\":\"وانواتو\"}},\"latlng\":[-16,167],\"landlocked\":false,\"borders\":[],\"area\":12189,\"flag\":\"🇻🇺\",\"demonyms\":{\"eng\":{\"f\":\"Ni-Vanuatu\",\"m\":\"Ni-Vanuatu\"},\"fra\":{\"f\":\"Vanuatuane\",\"m\":\"Vanuatuan\"}}},{\"name\":{\"common\":\"Wallis and Futuna\",\"official\":\"Territory of the Wallis and Futuna Islands\",\"native\":{\"fra\":{\"official\":\"Territoire des îles Wallis et Futuna\",\"common\":\"Wallis et Futuna\"}}},\"tld\":[\".wf\"],\"cca2\":\"WF\",\"ccn3\":\"876\",\"cca3\":\"WLF\",\"cioc\":\"\",\"independent\":false,\"status\":\"officially-assigned\",\"currencies\":{\"XPF\":{\"name\":\"CFP franc\",\"symbol\":\"₣\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"81\"]},\"capital\":[\"Mata-Utu\"],\"altSpellings\":[\"WF\",\"Territory of the Wallis and Futuna Islands\",\"Territoire des îles Wallis et Futuna\"],\"region\":\"Oceania\",\"subregion\":\"Polynesia\",\"languages\":{\"fra\":\"French\"},\"translations\":{\"ces\":{\"official\":\"Teritorium ostrovů Wallis a Futuna\",\"common\":\"Wallis a Futuna\"},\"deu\":{\"official\":\"Gebiet der Wallis und Futuna\",\"common\":\"Wallis und Futuna\"},\"fra\":{\"official\":\"Territoire des îles Wallis et Futuna\",\"common\":\"Wallis-et-Futuna\"},\"hrv\":{\"official\":\"Teritoriju Wallis i Futuna\",\"common\":\"Wallis i Fortuna\"},\"ita\":{\"official\":\"Territorio delle Isole Wallis e Futuna\",\"common\":\"Wallis e Futuna\"},\"jpn\":{\"official\":\"ウォリス·フツナ諸島の領土\",\"common\":\"ウォリス・フツナ\"},\"nld\":{\"official\":\"Grondgebied van de Wallis en Futuna\",\"common\":\"Wallis en Futuna\"},\"por\":{\"official\":\"Território das Ilhas Wallis e Futuna\",\"common\":\"Wallis e Futuna\"},\"rus\":{\"official\":\"Территория Уоллис и Футуна острова\",\"common\":\"Уоллис и Футуна\"},\"slk\":{\"official\":\"Teritórium ostrovov Wallis a Futuna\",\"common\":\"Wallis a Futuna\"},\"spa\":{\"official\":\"Territorio de las Islas Wallis y Futuna\",\"common\":\"Wallis y Futuna\"},\"fin\":{\"official\":\"Wallisin ja Futunan yhteisö\",\"common\":\"Wallis ja Futuna\"},\"est\":{\"official\":\"Wallise ja Futuna ala\",\"common\":\"Wallis ja Futuna\"},\"zho\":{\"official\":\"瓦利斯和富图纳群岛\",\"common\":\"瓦利斯和富图纳群岛\"},\"pol\":{\"official\":\"Terytorium Wysp Wallis i Futuna\",\"common\":\"Wallis i Futuna\"},\"urd\":{\"official\":\"سر زمینِ والس و فتونہ جزائر\",\"common\":\"والس و فتونہ\"},\"kor\":{\"official\":\"왈리스 퓌튀나\",\"common\":\"왈리스 퓌튀나\"},\"per\":{\"official\":\"جزایر والیس و فوتونا\",\"common\":\"والیس و فوتونا\"}},\"latlng\":[-13.3,-176.2],\"landlocked\":false,\"borders\":[],\"area\":142,\"flag\":\"🇼🇫\",\"demonyms\":{\"eng\":{\"f\":\"Wallis and Futuna Islander\",\"m\":\"Wallis and Futuna Islander\"},\"fra\":{\"f\":\"\",\"m\":\"\"}}},{\"name\":{\"common\":\"Samoa\",\"official\":\"Independent State of Samoa\",\"native\":{\"eng\":{\"official\":\"Independent State of Samoa\",\"common\":\"Samoa\"},\"smo\":{\"official\":\"Malo Saʻoloto Tutoʻatasi o Sāmoa\",\"common\":\"Sāmoa\"}}},\"tld\":[\".ws\"],\"cca2\":\"WS\",\"ccn3\":\"882\",\"cca3\":\"WSM\",\"cioc\":\"SAM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"WST\":{\"name\":\"Samoan tālā\",\"symbol\":\"T\"}},\"idd\":{\"root\":\"+6\",\"suffixes\":[\"85\"]},\"capital\":[\"Apia\"],\"altSpellings\":[\"WS\",\"Independent State of Samoa\",\"Malo Saʻoloto Tutoʻatasi o Sāmoa\"],\"region\":\"Oceania\",\"subregion\":\"Polynesia\",\"languages\":{\"eng\":\"English\",\"smo\":\"Samoan\"},\"translations\":{\"ces\":{\"official\":\"Nezávislý stát Samoa\",\"common\":\"Samoa\"},\"deu\":{\"official\":\"Unabhängige Staat Samoa\",\"common\":\"Samoa\"},\"fra\":{\"official\":\"Samoa\",\"common\":\"Samoa\"},\"hrv\":{\"official\":\"Nezavisna Država Samoa\",\"common\":\"Samoa\"},\"ita\":{\"official\":\"Stato indipendente di Samoa\",\"common\":\"Samoa\"},\"jpn\":{\"official\":\"サモア独立国\",\"common\":\"サモア\"},\"nld\":{\"official\":\"Onafhankelijke Staat Samoa\",\"common\":\"Samoa\"},\"por\":{\"official\":\"Estado Independente de Samoa\",\"common\":\"Samoa\"},\"rus\":{\"official\":\"Независимое Государство Самоа\",\"common\":\"Самоа\"},\"slk\":{\"official\":\"Nezávislý štátSamoa\",\"common\":\"Samoa\"},\"spa\":{\"official\":\"Estado Independiente de Samoa\",\"common\":\"Samoa\"},\"fin\":{\"official\":\"Samoan itsenäinen valtio\",\"common\":\"Samoa\"},\"est\":{\"official\":\"Samoa Iseseisvusriik\",\"common\":\"Samoa\"},\"zho\":{\"official\":\"萨摩亚独立国\",\"common\":\"萨摩亚\"},\"pol\":{\"official\":\"Niezależne Państwo Samoa\",\"common\":\"Samoa\"},\"urd\":{\"official\":\"آزاد سلطنتِ ساموا\",\"common\":\"سامووا\"},\"kor\":{\"official\":\"사모아 독립국\",\"common\":\"사모아\"},\"per\":{\"official\":\"ایالت مستقل ساموآ\",\"common\":\"ساموآ\"}},\"latlng\":[-13.58333333,-172.33333333],\"landlocked\":false,\"borders\":[],\"area\":2842,\"flag\":\"🇼🇸\",\"demonyms\":{\"eng\":{\"f\":\"Samoan\",\"m\":\"Samoan\"},\"fra\":{\"f\":\"Samoane\",\"m\":\"Samoan\"}}},{\"name\":{\"common\":\"Yemen\",\"official\":\"Republic of Yemen\",\"native\":{\"ara\":{\"official\":\"الجمهورية اليمنية\",\"common\":\"اليَمَن\"}}},\"tld\":[\".ye\"],\"cca2\":\"YE\",\"ccn3\":\"887\",\"cca3\":\"YEM\",\"cioc\":\"YEM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"YER\":{\"name\":\"Yemeni rial\",\"symbol\":\"﷼\"}},\"idd\":{\"root\":\"+9\",\"suffixes\":[\"67\"]},\"capital\":[\"Sana\\'a\"],\"altSpellings\":[\"YE\",\"Yemeni Republic\",\"al-Jumhūriyyah al-Yamaniyyah\"],\"region\":\"Asia\",\"subregion\":\"Western Asia\",\"languages\":{\"ara\":\"Arabic\"},\"translations\":{\"ces\":{\"official\":\"Jemenská republika\",\"common\":\"Jemen\"},\"deu\":{\"official\":\"Republik Jemen\",\"common\":\"Jemen\"},\"fra\":{\"official\":\"République du Yémen\",\"common\":\"Yémen\"},\"hrv\":{\"official\":\"Republika Jemen\",\"common\":\"Jemen\"},\"ita\":{\"official\":\"Repubblica dello Yemen\",\"common\":\"Yemen\"},\"jpn\":{\"official\":\"イエメン共和国\",\"common\":\"イエメン\"},\"nld\":{\"official\":\"Republiek Jemen\",\"common\":\"Jemen\"},\"por\":{\"official\":\"República do Iêmen\",\"common\":\"Iémen\"},\"rus\":{\"official\":\"Йеменская Республика\",\"common\":\"Йемен\"},\"slk\":{\"official\":\"Jemenská republika\",\"common\":\"Jemen\"},\"spa\":{\"official\":\"República de Yemen\",\"common\":\"Yemen\"},\"fin\":{\"official\":\"Jemenin tasavalta\",\"common\":\"Jemen\"},\"est\":{\"official\":\"Jeemeni Vabariik\",\"common\":\"Jeemen\"},\"zho\":{\"official\":\"也门共和国\",\"common\":\"也门\"},\"pol\":{\"official\":\"Republika Jemeńska\",\"common\":\"Jemen\"},\"urd\":{\"official\":\"جمہوریہ یمن\",\"common\":\"یمن\"},\"kor\":{\"official\":\"예멘 공화국\",\"common\":\"예멘\"},\"per\":{\"official\":\"جمهوری یمن\",\"common\":\"یمن\"}},\"latlng\":[15,48],\"landlocked\":false,\"borders\":[\"OMN\",\"SAU\"],\"area\":527968,\"flag\":\"🇾🇪\",\"demonyms\":{\"eng\":{\"f\":\"Yemeni\",\"m\":\"Yemeni\"},\"fra\":{\"f\":\"Yéménite\",\"m\":\"Yéménite\"}}},{\"name\":{\"common\":\"South Africa\",\"official\":\"Republic of South Africa\",\"native\":{\"afr\":{\"official\":\"Republiek van Suid-Afrika\",\"common\":\"South Africa\"},\"eng\":{\"official\":\"Republic of South Africa\",\"common\":\"South Africa\"},\"nbl\":{\"official\":\"IRiphabliki yeSewula Afrika\",\"common\":\"Sewula Afrika\"},\"nso\":{\"official\":\"Rephaboliki ya Afrika-Borwa \",\"common\":\"Afrika-Borwa\"},\"sot\":{\"official\":\"Rephaboliki ya Afrika Borwa\",\"common\":\"Afrika Borwa\"},\"ssw\":{\"official\":\"IRiphabhulikhi yeNingizimu Afrika\",\"common\":\"Ningizimu Afrika\"},\"tsn\":{\"official\":\"Rephaboliki ya Aforika Borwa\",\"common\":\"Aforika Borwa\"},\"tso\":{\"official\":\"Riphabliki ra Afrika Dzonga\",\"common\":\"Afrika Dzonga\"},\"ven\":{\"official\":\"Riphabuḽiki ya Afurika Tshipembe\",\"common\":\"Afurika Tshipembe\"},\"xho\":{\"official\":\"IRiphabliki yaseMzantsi Afrika\",\"common\":\"Mzantsi Afrika\"},\"zul\":{\"official\":\"IRiphabliki yaseNingizimu Afrika\",\"common\":\"Ningizimu Afrika\"}}},\"tld\":[\".za\"],\"cca2\":\"ZA\",\"ccn3\":\"710\",\"cca3\":\"ZAF\",\"cioc\":\"RSA\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"ZAR\":{\"name\":\"South African rand\",\"symbol\":\"R\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"7\"]},\"capital\":[\"Pretoria\",\"Bloemfontein\",\"Cape Town\"],\"altSpellings\":[\"ZA\",\"RSA\",\"Suid-Afrika\",\"Republic of South Africa\"],\"region\":\"Africa\",\"subregion\":\"Southern Africa\",\"languages\":{\"afr\":\"Afrikaans\",\"eng\":\"English\",\"nbl\":\"Southern Ndebele\",\"nso\":\"Northern Sotho\",\"sot\":\"Southern Sotho\",\"ssw\":\"Swazi\",\"tsn\":\"Tswana\",\"tso\":\"Tsonga\",\"ven\":\"Venda\",\"xho\":\"Xhosa\",\"zul\":\"Zulu\"},\"translations\":{\"ces\":{\"official\":\"Jihoafrická republika\",\"common\":\"Jihoafrická republika\"},\"deu\":{\"official\":\"Republik Südafrika\",\"common\":\"Südafrika\"},\"fra\":{\"official\":\"République d\\'Afrique du Sud\",\"common\":\"Afrique du Sud\"},\"hrv\":{\"official\":\"Južnoafrička Republika\",\"common\":\"Južnoafrička Republika\"},\"ita\":{\"official\":\"Repubblica del Sud Africa\",\"common\":\"Sud Africa\"},\"jpn\":{\"official\":\"南アフリカ共和国\",\"common\":\"南アフリカ\"},\"nld\":{\"official\":\"Republiek Zuid-Afrika\",\"common\":\"Zuid-Afrika\"},\"por\":{\"official\":\"República da África do Sul\",\"common\":\"África do Sul\"},\"rus\":{\"official\":\"Южно-Африканская Республика\",\"common\":\"Южно-Африканская Республика\"},\"slk\":{\"official\":\"Juhoafrická republika\",\"common\":\"Juhoafrická republika\"},\"spa\":{\"official\":\"República de Sudáfrica\",\"common\":\"República de Sudáfrica\"},\"fin\":{\"official\":\"Etelä-Afrikan tasavalta\",\"common\":\"Etelä-Afrikka\"},\"est\":{\"official\":\"Lõuna-Aafrika Vabariik\",\"common\":\"Lõuna-Aafrika Vabariik\"},\"zho\":{\"official\":\"南非共和国\",\"common\":\"南非\"},\"pol\":{\"official\":\"Republika Południowej Afryki\",\"common\":\"Południowa Afryka\"},\"urd\":{\"official\":\"جمہوریہ جنوبی افریقا\",\"common\":\"جنوبی افریقا\"},\"kor\":{\"official\":\"남아프리카 공화국\",\"common\":\"남아프리카\"},\"per\":{\"official\":\"جمهوری آفریقای جنوبی\",\"common\":\"آفریقای جنوبی\"}},\"latlng\":[-29,24],\"landlocked\":false,\"borders\":[\"BWA\",\"LSO\",\"MOZ\",\"NAM\",\"SWZ\",\"ZWE\"],\"area\":1221037,\"flag\":\"🇿🇦\",\"demonyms\":{\"eng\":{\"f\":\"South African\",\"m\":\"South African\"},\"fra\":{\"f\":\"Sud-africaine\",\"m\":\"Sud-africain\"}}},{\"name\":{\"common\":\"Zambia\",\"official\":\"Republic of Zambia\",\"native\":{\"eng\":{\"official\":\"Republic of Zambia\",\"common\":\"Zambia\"}}},\"tld\":[\".zm\"],\"cca2\":\"ZM\",\"ccn3\":\"894\",\"cca3\":\"ZMB\",\"cioc\":\"ZAM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"ZMW\":{\"name\":\"Zambian kwacha\",\"symbol\":\"ZK\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"60\"]},\"capital\":[\"Lusaka\"],\"altSpellings\":[\"ZM\",\"Republic of Zambia\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"eng\":\"English\"},\"translations\":{\"ces\":{\"official\":\"Zambijská republika\",\"common\":\"Zambie\"},\"deu\":{\"official\":\"Republik Sambia\",\"common\":\"Sambia\"},\"fra\":{\"official\":\"République de Zambie\",\"common\":\"Zambie\"},\"hrv\":{\"official\":\"Republika Zambija\",\"common\":\"Zambija\"},\"ita\":{\"official\":\"Repubblica di Zambia\",\"common\":\"Zambia\"},\"jpn\":{\"official\":\"ザンビア共和国\",\"common\":\"ザンビア\"},\"nld\":{\"official\":\"Republiek Zambia\",\"common\":\"Zambia\"},\"por\":{\"official\":\"República da Zâmbia\",\"common\":\"Zâmbia\"},\"rus\":{\"official\":\"Республика Замбия\",\"common\":\"Замбия\"},\"slk\":{\"official\":\"Zambijská republika\",\"common\":\"Zambia\"},\"spa\":{\"official\":\"República de Zambia\",\"common\":\"Zambia\"},\"fin\":{\"official\":\"Sambian tasavalta\",\"common\":\"Sambia\"},\"est\":{\"official\":\"Sambia Vabariik\",\"common\":\"Sambia\"},\"zho\":{\"official\":\"赞比亚共和国\",\"common\":\"赞比亚\"},\"pol\":{\"official\":\"Republika Zambii\",\"common\":\"Zambia\"},\"urd\":{\"official\":\"جمہوریہ زیمبیا\",\"common\":\"زیمبیا\"},\"kor\":{\"official\":\"잠비아 공화국\",\"common\":\"잠비아\"},\"per\":{\"official\":\"جمهوری زامبیا\",\"common\":\"زامبیا\"}},\"latlng\":[-15,30],\"landlocked\":true,\"borders\":[\"AGO\",\"BWA\",\"COD\",\"MWI\",\"MOZ\",\"NAM\",\"TZA\",\"ZWE\"],\"area\":752612,\"flag\":\"🇿🇲\",\"demonyms\":{\"eng\":{\"f\":\"Zambian\",\"m\":\"Zambian\"},\"fra\":{\"f\":\"Zambienne\",\"m\":\"Zambien\"}}},{\"name\":{\"common\":\"Zimbabwe\",\"official\":\"Republic of Zimbabwe\",\"native\":{\"bwg\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"eng\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"kck\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"khi\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"ndc\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"nde\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"nya\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"sna\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"sot\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"toi\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"tsn\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"tso\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"ven\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"xho\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"},\"zib\":{\"official\":\"Republic of Zimbabwe\",\"common\":\"Zimbabwe\"}}},\"tld\":[\".zw\"],\"cca2\":\"ZW\",\"ccn3\":\"716\",\"cca3\":\"ZWE\",\"cioc\":\"ZIM\",\"independent\":true,\"status\":\"officially-assigned\",\"currencies\":{\"BWP\":{\"name\":\"Botswana pula\",\"symbol\":\"P\"},\"CNY\":{\"name\":\"Chinese yuan\",\"symbol\":\"¥\"},\"EUR\":{\"name\":\"Euro\",\"symbol\":\"€\"},\"GBP\":{\"name\":\"British pound\",\"symbol\":\"£\"},\"INR\":{\"name\":\"Indian rupee\",\"symbol\":\"₹\"},\"JPY\":{\"name\":\"Japanese yen\",\"symbol\":\"¥\"},\"USD\":{\"name\":\"United States dollar\",\"symbol\":\"$\"},\"ZAR\":{\"name\":\"South African rand\",\"symbol\":\"Rs\"},\"ZWB\":{\"name\":\"Zimbabwean bonds\",\"symbol\":\"$\"}},\"idd\":{\"root\":\"+2\",\"suffixes\":[\"63\"]},\"capital\":[\"Harare\"],\"altSpellings\":[\"ZW\",\"Republic of Zimbabwe\"],\"region\":\"Africa\",\"subregion\":\"Eastern Africa\",\"languages\":{\"bwg\":\"Chibarwe\",\"eng\":\"English\",\"kck\":\"Kalanga\",\"khi\":\"Khoisan\",\"ndc\":\"Ndau\",\"nde\":\"Northern Ndebele\",\"nya\":\"Chewa\",\"sna\":\"Shona\",\"sot\":\"Sotho\",\"toi\":\"Tonga\",\"tsn\":\"Tswana\",\"tso\":\"Tsonga\",\"ven\":\"Venda\",\"xho\":\"Xhosa\",\"zib\":\"Zimbabwean Sign Language\"},\"translations\":{\"ces\":{\"official\":\"Zimbabwská republika\",\"common\":\"Zimbabwe\"},\"deu\":{\"official\":\"Republik Simbabwe\",\"common\":\"Simbabwe\"},\"fra\":{\"official\":\"République du Zimbabwe\",\"common\":\"Zimbabwe\"},\"hrv\":{\"official\":\"Republika Zimbabve\",\"common\":\"Zimbabve\"},\"ita\":{\"official\":\"Repubblica dello Zimbabwe\",\"common\":\"Zimbabwe\"},\"jpn\":{\"official\":\"ジンバブエ共和国\",\"common\":\"ジンバブエ\"},\"nld\":{\"official\":\"Republiek Zimbabwe\",\"common\":\"Zimbabwe\"},\"por\":{\"official\":\"República do Zimbabwe\",\"common\":\"Zimbabwe\"},\"rus\":{\"official\":\"Республика Зимбабве\",\"common\":\"Зимбабве\"},\"slk\":{\"official\":\"Zimbabwianska republika\",\"common\":\"Zimbabwe\"},\"spa\":{\"official\":\"República de Zimbabue\",\"common\":\"Zimbabue\"},\"fin\":{\"official\":\"Zimbabwen tasavalta\",\"common\":\"Zimbabwe\"},\"est\":{\"official\":\"Zimbabwe Vabariik\",\"common\":\"Zimbabwe\"},\"zho\":{\"official\":\"津巴布韦共和国\",\"common\":\"津巴布韦\"},\"pol\":{\"official\":\"Republika Zimbabwe\",\"common\":\"Zimbabwe\"},\"urd\":{\"official\":\"جمہوریہ زمبابوے\",\"common\":\"زمبابوے\"},\"kor\":{\"official\":\"짐바브웨 공화국\",\"common\":\"짐바브웨\"},\"per\":{\"official\":\"جمهوری زیمبابوه\",\"common\":\"زیمبابوه\"}},\"latlng\":[-20,30],\"landlocked\":true,\"borders\":[\"BWA\",\"MOZ\",\"ZAF\",\"ZMB\"],\"area\":390757,\"flag\":\"🇿🇼\",\"demonyms\":{\"eng\":{\"f\":\"Zimbabwean\",\"m\":\"Zimbabwean\"},\"fra\":{\"f\":\"Zimbabwéenne\",\"m\":\"Zimbabwéen\"}}}]')}},e={};function i(c){var l=e[c];if(void 0!==l)return l.exports;var o=e[c]={exports:{}};return a[c](o,o.exports,i),o.exports}i.n=c=>{var a=c&&c.__esModule?()=>c.default:()=>c;return i.d(a,{a}),a},i.d=(c,a)=>{for(var e in a)i.o(a,e)&&!i.o(c,e)&&Object.defineProperty(c,e,{enumerable:!0,get:a[e]})},i.o=(c,a)=>Object.prototype.hasOwnProperty.call(c,a),i.r=c=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(c,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(c,\"__esModule\",{value:!0})};var l={};return(()=>{\"use strict\";i.r(l),i.d(l,{default:()=>Ts});var c=i(8156),a=i.n(c),e=i(3630),o=i.n(e),t=i(8679),n=i.n(t),s=i(133),m=i.n(s),r=i(6772),f=i.n(r),d=i(5897),h=i.n(d),p=i(1648),k=i.n(p),z=i(9263),u=i.n(z),g=i(1426),M=i.n(g),v=i(1195),b=i.n(v),w=i(6448),x=i.n(w),y=i(8512),S=i.n(y),R=i(3928),A=i.n(R),B=i(5611),C=i.n(B),H=i(1791),j=i.n(H),F=i(3875),G=i.n(F),P=i(3170),E=i.n(P),T=i(1477),N=i.n(T),L=i(4324),K=i.n(L),I=i(2594),U=i.n(I),V=i(768),D=i.n(V),O=i(8194),q=i.n(O),Z=i(3121),J=i.n(Z),_=i(1096),W=i.n(_),Y=i(9197),X=i.n(Y),$=i(744),Q=i.n($),cc=i(7709),ac=i.n(cc),ec=i(2603),ic=i.n(ec),lc=i(9704),oc=i.n(lc),tc=i(6576),nc=i.n(tc),sc=i(7184),mc=i.n(sc),rc=i(5779),fc=i.n(rc),dc=i(6902),hc=i.n(dc),pc=i(2823),kc=i.n(pc),zc=i(9301),uc=i.n(zc),gc=i(988),Mc=i.n(gc),vc=i(4827),bc=i.n(vc),wc=i(6783),xc=i.n(wc),yc=i(4790),Sc=i.n(yc),Rc=i(1022),Ac=i.n(Rc),Bc=i(957),Cc=i.n(Bc),Hc=i(2867),jc=i.n(Hc),Fc=i(2882),Gc=i.n(Fc),Pc=i(956),Ec=i.n(Pc),Tc=i(2857),Nc=i.n(Tc),Lc=i(7464),Kc=i.n(Lc),Ic=i(4039),Uc=i.n(Ic),Vc=i(5294),Dc=i.n(Vc),Oc=i(4564),qc=i.n(Oc),Zc=i(2170),Jc=i.n(Zc),_c=i(7160),Wc=i.n(_c),Yc=i(1516),Xc=i.n(Yc),$c=i(2440),Qc=i.n($c),ca=i(2177),aa=i.n(ca),ea=i(8168),ia=i.n(ea),la=i(7628),oa=i.n(la),ta=i(3250),na=i.n(ta),sa=i(49),ma=i.n(sa),ra=i(7558),fa=i.n(ra),da=i(540),ha=i.n(da),pa=i(8280),ka=i.n(pa),za=i(4944),ua=i.n(za),ga=i(7316),Ma=i.n(ga),va=i(5606),ba=i.n(va),wa=i(734),xa=i.n(wa),ya=i(9927),Sa=i.n(ya),Ra=i(5174),Aa=i.n(Ra),Ba=i(346),Ca=i.n(Ba),Ha=i(3553),ja=i.n(Ha),Fa=i(1934),Ga=i.n(Fa),Pa=i(4178),Ea=i.n(Pa),Ta=i(4617),Na=i.n(Ta),La=i(9314),Ka=i.n(La),Ia=i(5916),Ua=i.n(Ia),Va=i(7971),Da=i.n(Va),Oa=i(2883),qa=i.n(Oa),Za=i(2619),Ja=i.n(Za),_a=i(9206),Wa=i.n(_a),Ya=i(9297),Xa=i.n(Ya),$a=i(4170),Qa=i.n($a),ce=i(9488),ae=i.n(ce),ee=i(3782),ie=i.n(ee),le=i(1365),oe=i.n(le),te=i(5564),ne=i.n(te),se=i(1898),me=i.n(se),re=i(5676),fe=i.n(re),de=i(9209),he=i.n(de),pe=i(9654),ke=i.n(pe),ze=i(3426),ue=i.n(ze),ge=i(3983),Me=i.n(ge),ve=i(9860),be=i.n(ve),we=i(3671),xe=i.n(we),ye=i(5948),Se=i.n(ye),Re=i(3797),Ae=i.n(Re),Be=i(1836),Ce=i.n(Be),He=i(8281),je=i.n(He),Fe=i(4273),Ge=i.n(Fe),Pe=i(4523),Ee=i.n(Pe),Te=i(6296),Ne=i.n(Te),Le=i(2203),Ke=i.n(Le),Ie=i(5418),Ue=i.n(Ie),Ve=i(9588),De=i.n(Ve),Oe=i(6382),qe=i.n(Oe),Ze=i(5220),Je=i.n(Ze),_e=i(1276),We=i.n(_e),Ye=i(2032),Xe=i.n(Ye),$e=i(7710),Qe=i.n($e),ci=i(2126),ai=i.n(ci),ei=i(7884),ii=i.n(ei),li=i(9571),oi=i.n(li),ti=i(2509),ni=i.n(ti),si=i(2908),mi=i.n(si),ri=i(141),fi=i.n(ri),di=i(8247),hi=i.n(di),pi=i(9339),ki=i.n(pi),zi=i(74),ui=i.n(zi),gi=i(8451),Mi=i.n(gi),vi=i(2306),bi=i.n(vi),wi=i(6413),xi=i.n(wi),yi=i(9191),Si=i.n(yi),Ri=i(3923),Ai=i.n(Ri),Bi=i(6755),Ci=i.n(Bi),Hi=i(3867),ji=i.n(Hi),Fi=i(3108),Gi=i.n(Fi),Pi=i(9584),Ei=i.n(Pi),Ti=i(740),Ni=i.n(Ti),Li=i(1552),Ki=i.n(Li),Ii=i(4848),Ui=i.n(Ii),Vi=i(9831),Di=i.n(Vi),Oi=i(970),qi=i.n(Oi),Zi=i(3941),Ji=i.n(Zi),_i=i(3025),Wi=i.n(_i),Yi=i(5984),Xi=i.n(Yi),$i=i(2012),Qi=i.n($i),cl=i(9875),al=i.n(cl),el=i(325),il=i.n(el),ll=i(1616),ol=i.n(ll),tl=i(7073),nl=i.n(tl),sl=i(7192),ml=i.n(sl),rl=i(6906),fl=i.n(rl),dl=i(9207),hl=i.n(dl),pl=i(5590),kl=i.n(pl),zl=i(1084),ul=i.n(zl),gl=i(3365),Ml=i.n(gl),vl=i(6072),bl=i.n(vl),wl=i(4399),xl=i.n(wl),yl=i(6249),Sl=i.n(yl),Rl=i(82),Al=i.n(Rl),Bl=i(3675),Cl=i.n(Bl),Hl=i(8562),jl=i.n(Hl),Fl=i(8006),Gl=i.n(Fl),Pl=i(3692),El=i.n(Pl),Tl=i(9086),Nl=i.n(Tl),Ll=i(4158),Kl=i.n(Ll),Il=i(2914),Ul=i.n(Il),Vl=i(8787),Dl=i.n(Vl),Ol=i(8125),ql=i.n(Ol),Zl=i(1727),Jl=i.n(Zl),_l=i(8643),Wl=i.n(_l),Yl=i(7698),Xl=i.n(Yl),$l=i(6550),Ql=i.n($l),co=i(9709),ao=i.n(co),eo=i(448),io=i.n(eo),lo=i(7925),oo=i.n(lo),to=i(7758),no=i.n(to),so=i(1598),mo=i.n(so),ro=i(6329),fo=i.n(ro),ho=i(4860),po=i.n(ho),ko=i(3309),zo=i.n(ko),uo=i(6376),go=i.n(uo),Mo=i(476),vo=i.n(Mo),bo=i(886),wo=i.n(bo),xo=i(6829),yo=i.n(xo),So=i(2888),Ro=i.n(So),Ao=i(8556),Bo=i.n(Ao),Co=i(5649),Ho=i.n(Co),jo=i(7923),Fo=i.n(jo),Go=i(1606),Po=i.n(Go),Eo=i(268),To=i.n(Eo),No=i(3172),Lo=i.n(No),Ko=i(5385),Io=i.n(Ko),Uo=i(9778),Vo=i.n(Uo),Do=i(9305),Oo=i.n(Do),qo=i(6015),Zo=i.n(qo),Jo=i(675),_o=i.n(Jo),Wo=i(7254),Yo=i.n(Wo),Xo=i(2282),$o=i.n(Xo),Qo=i(9761),ct=i.n(Qo),at=i(3642),et=i.n(at),it=i(5711),lt=i.n(it),ot=i(9668),tt=i.n(ot),nt=i(6103),st=i.n(nt),mt=i(6475),rt=i.n(mt),ft=i(3913),dt=i.n(ft),ht=i(3915),pt=i.n(ht),kt=i(3886),zt=i.n(kt),ut=i(7357),gt=i.n(ut),Mt=i(6517),vt=i.n(Mt),bt=i(950),wt=i.n(bt),xt=i(4707),yt=i.n(xt),St=i(4520),Rt=i.n(St),At=i(9228),Bt=i.n(At),Ct=i(9230),Ht=i.n(Ct),jt=i(5738),Ft=i.n(jt),Gt=i(8623),Pt=i.n(Gt),Et=i(3226),Tt=i.n(Et),Nt=i(2775),Lt=i.n(Nt),Kt=i(4989),It=i.n(Kt),Ut=i(5299),Vt=i.n(Ut),Dt=i(5084),Ot=i.n(Dt),qt=i(694),Zt=i.n(qt),Jt=i(9924),_t=i.n(Jt),Wt=i(1950),Yt=i.n(Wt),Xt=i(3071),$t=i.n(Xt),Qt=i(1336),cn=i.n(Qt),an=i(2538),en=i.n(an),ln=i(3908),on=i.n(ln),tn=i(2906),nn=i.n(tn),sn=i(5862),mn=i.n(sn),rn=i(6324),fn=i.n(rn),dn=i(4524),hn=i.n(dn),pn=i(2346),kn=i.n(pn),zn=i(9418),un=i.n(zn),gn=i(3969),Mn=i.n(gn),vn=i(9493),bn=i.n(vn),wn=i(5437),xn=i.n(wn),yn=i(7238),Sn=i.n(yn),Rn=i(7246),An=i.n(Rn),Bn=i(4698),Cn=i.n(Bn),Hn=i(8736),jn=i.n(Hn),Fn=i(2439),Gn=i.n(Fn),Pn=i(1900),En=i.n(Pn),Tn=i(8627),Nn=i.n(Tn),Ln=i(6754),Kn=i.n(Ln),In=i(8065),Un=i.n(In),Vn=i(5454),Dn=i.n(Vn),On=i(8505),qn=i.n(On),Zn=i(8855),Jn=i.n(Zn),_n=i(7639),Wn=i.n(_n),Yn=i(3945),Xn=i.n(Yn),$n=i(603),Qn=i.n($n),cs=i(814),as=i.n(cs),es=i(793),is=i.n(es),ls=i(4261),os=i.n(ls),ts=i(8574),ns=i.n(ts),ss=i(8728),ms=i.n(ss),rs=i(3545),fs=i.n(rs),ds=i(1590),hs=i.n(ds),ps=i(5546),ks=i.n(ps),zs=i(3301),us=i.n(zs),gs=i(8419),Ms=i.n(gs),vs=i(7170),bs=i.n(vs),ws=i(8274),xs=i.n(ws),ys=i(2699),Ss=i.n(ys),Rs=i(9638),As=i.n(Rs),Bs=i(6320),Cs=i.n(Bs),Hs=i(7064),js=i.n(Hs);const Fs={flag_AD:o(),flag_AE:n(),flag_AF:m(),flag_AG:f(),flag_AI:h(),flag_AL:k(),flag_AM:u(),flag_AN:M(),flag_AO:b(),flag_AQ:x(),flag_AR:S(),flag_AS:A(),flag_AT:C(),flag_AU:j(),flag_AW:G(),flag_AX:E(),flag_AZ:N(),flag_BA:K(),flag_BB:U(),flag_BD:D(),flag_BE:q(),flag_BF:J(),flag_BG:W(),flag_BH:X(),flag_BI:Q(),flag_BJ:ac(),flag_BL:ic(),flag_BM:oc(),flag_BN:nc(),flag_BO:mc(),flag_BQ:fc(),flag_BR:hc(),flag_BS:kc(),flag_BT:uc(),flag_BV:Mc(),flag_BW:bc(),flag_BY:xc(),flag_BZ:Sc(),flag_CA:Ac(),flag_CC:Cc(),flag_CD:jc(),flag_CF:Gc(),flag_CG:Ec(),flag_CH:Nc(),flag_CI:Kc(),flag_CK:Uc(),flag_CL:Dc(),flag_CM:qc(),flag_CN:Jc(),flag_CO:Wc(),flag_CR:Xc(),flag_CU:Qc(),flag_CV:aa(),flag_CW:ia(),flag_CX:oa(),flag_CY:na(),flag_CZ:ma(),flag_DE:fa(),flag_DJ:ha(),flag_DK:ka(),flag_DM:ua(),flag_DO:Ma(),flag_DZ:ba(),flag_EC:xa(),flag_EE:Sa(),flag_EG:Aa(),flag_EH:Ca(),flag_ER:ja(),flag_ES:Ga(),flag_ET:Ea(),flag_EU:Na(),flag_FI:Ka(),flag_FJ:Ua(),flag_FK:Da(),flag_FM:qa(),flag_FO:Ja(),flag_FR:Wa(),flag_GA:Xa(),flag_GB_ENG:Qa(),flag_GB_NIR:ae(),flag_GB_SCT:ie(),flag_GB_WLS:oe(),flag_GB:ne(),flag_GD:me(),flag_GE:fe(),flag_GF:he(),flag_GG:ke(),flag_GH:ue(),flag_GI:Me(),flag_GL:be(),flag_GM:xe(),flag_GN:Se(),flag_GP:Ae(),flag_GQ:Ce(),flag_GR:je(),flag_GS:Ge(),flag_GT:Ee(),flag_GU:Ne(),flag_GW:Ke(),flag_GY:Ue(),flag_HK:De(),flag_HM:qe(),flag_HN:Je(),flag_HR:We(),flag_HT:Xe(),flag_HU:Qe(),flag_ID:ai(),flag_IE:ii(),flag_IL:oi(),flag_IM:ni(),flag_IN:mi(),flag_IO:fi(),flag_IQ:hi(),flag_IR:ki(),flag_IS:ui(),flag_IT:Mi(),flag_JE:bi(),flag_JM:xi(),flag_JO:Si(),flag_JP:Ai(),flag_KE:Ci(),flag_KG:ji(),flag_KH:Gi(),flag_KI:Ei(),flag_KM:Ni(),flag_KN:Ki(),flag_KP:Ui(),flag_KR:Di(),flag_KW:qi(),flag_KY:Ji(),flag_KZ:Wi(),flag_LA:Xi(),flag_LB:Qi(),flag_LC:al(),flag_LI:il(),flag_LK:ol(),flag_LR:nl(),flag_LS:ml(),flag_LT:fl(),flag_LU:hl(),flag_LV:kl(),flag_LY:ul(),flag_MA:Ml(),flag_MC:bl(),flag_MD:xl(),flag_ME:Sl(),flag_MF:Al(),flag_MG:Cl(),flag_MH:jl(),flag_MK:Gl(),flag_ML:El(),flag_MM:Nl(),flag_MN:Kl(),flag_MO:Ul(),flag_MP:Dl(),flag_MQ:ql(),flag_MR:Jl(),flag_MS:Wl(),flag_MT:Xl(),flag_MU:Ql(),flag_MV:ao(),flag_MW:io(),flag_MX:oo(),flag_MY:no(),flag_MZ:mo(),flag_NA:fo(),flag_NC:po(),flag_NE:zo(),flag_NF:go(),flag_NG:vo(),flag_NI:wo(),flag_NL:yo(),flag_NO:Ro(),flag_NP:Bo(),flag_NR:Ho(),flag_NU:Fo(),flag_NZ:Po(),flag_OM:To(),flag_PA:Lo(),flag_PE:Io(),flag_PF:Vo(),flag_PG:Oo(),flag_PH:Zo(),flag_PK:_o(),flag_PL:Yo(),flag_PM:$o(),flag_PN:ct(),flag_PR:et(),flag_PS:lt(),flag_PT:tt(),flag_PW:st(),flag_PY:rt(),flag_QA:dt(),flag_RE:pt(),flag_RO:zt(),flag_RS:gt(),flag_RU:vt(),flag_RW:wt(),flag_SA:yt(),flag_SB:Rt(),flag_SC:Bt(),flag_SD:Ht(),flag_SE:Ft(),flag_SG:Pt(),flag_SH:Tt(),flag_SI:Lt(),flag_SJ:It(),flag_SK:Vt(),flag_SL:Ot(),flag_SM:Zt(),flag_SN:_t(),flag_SO:Yt(),flag_SR:$t(),flag_SS:cn(),flag_ST:en(),flag_SV:on(),flag_SX:nn(),flag_SY:mn(),flag_SZ:fn(),flag_TC:hn(),flag_TD:kn(),flag_TF:un(),flag_TG:Mn(),flag_TH:bn(),flag_TJ:xn(),flag_TK:Sn(),flag_TL:An(),flag_TM:Cn(),flag_TN:jn(),flag_TO:Gn(),flag_TR:En(),flag_TT:Nn(),flag_TV:Kn(),flag_TW:Un(),flag_TZ:Dn(),flag_UA:qn(),flag_UG:Jn(),flag_UM:Wn(),flag_US:Xn(),flag_UY:Qn(),flag_UZ:as(),flag_VA:is(),flag_VC:os(),flag_VE:ns(),flag_VG:ms(),flag_VI:fs(),flag_VN:hs(),flag_VU:ks(),flag_WF:us(),flag_XK:Ms(),flag_WS:bs(),flag_YE:xs(),flag_YT:Ss(),flag_ZA:As(),flag_ZM:Cs(),flag_ZW:js()};var Gs=i(4815),Ps=[\"code\",\"fallback\"];function Es(){return Es=Object.assign?Object.assign.bind():function(c){for(var a=1;a=0||(l[e]=c[e]);return l}(c,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(c);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(c,e)&&(l[e]=c[e])}return l}(c,Ps);if(!e)return l;var t=function(c){var a=String(c).toUpperCase(),e=Gs.find((function(c){return c.cca2===a||c.ccn3===a||c.cca3==a}));return e&&e.cca2||c}(e),n=Fs[\"flag_\"+t.replace(\"-\",\"_\")];return n?a().createElement(\"img\",Es({},o,{src:n})):l}})(),l})()));","/** @license React v17.0.2\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';require(\"object-assign\");var f=require(\"react\"),g=60103;exports.Fragment=60107;if(\"function\"===typeof Symbol&&Symbol.for){var h=Symbol.for;g=h(\"react.element\");exports.Fragment=h(\"react.fragment\")}var m=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,n=Object.prototype.hasOwnProperty,p={key:!0,ref:!0,__self:!0,__source:!0};\nfunction q(c,a,k){var b,d={},e=null,l=null;void 0!==k&&(e=\"\"+k);void 0!==a.key&&(e=\"\"+a.key);void 0!==a.ref&&(l=a.ref);for(b in a)n.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:g,type:c,key:e,ref:l,props:d,_owner:m.current}}exports.jsx=q;exports.jsxs=q;\n","/** @license React v17.0.2\n * react.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var l=require(\"object-assign\"),n=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60109,r=60110,t=60112;exports.Suspense=60113;var u=60115,v=60116;\nif(\"function\"===typeof Symbol&&Symbol.for){var w=Symbol.for;n=w(\"react.element\");p=w(\"react.portal\");exports.Fragment=w(\"react.fragment\");exports.StrictMode=w(\"react.strict_mode\");exports.Profiler=w(\"react.profiler\");q=w(\"react.provider\");r=w(\"react.context\");t=w(\"react.forward_ref\");exports.Suspense=w(\"react.suspense\");u=w(\"react.memo\");v=w(\"react.lazy\")}var x=\"function\"===typeof Symbol&&Symbol.iterator;\nfunction y(a){if(null===a||\"object\"!==typeof a)return null;a=x&&a[x]||a[\"@@iterator\"];return\"function\"===typeof a?a:null}function z(a){for(var b=\"https://reactjs.org/docs/error-decoder.html?invariant=\"+a,c=1;c arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction _iterableToArrayLimit(arr, i) { if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\n/**\n * @fileOverview Render a group of error bar\n */\nimport React from 'react';\nimport { Layer } from '../container/Layer';\nimport { filterProps } from '../util/types';\nexport function ErrorBar(props) {\n var offset = props.offset,\n layout = props.layout,\n width = props.width,\n dataKey = props.dataKey,\n data = props.data,\n dataPointFormatter = props.dataPointFormatter,\n xAxis = props.xAxis,\n yAxis = props.yAxis,\n others = _objectWithoutProperties(props, [\"offset\", \"layout\", \"width\", \"dataKey\", \"data\", \"dataPointFormatter\", \"xAxis\", \"yAxis\"]);\n\n var svgProps = filterProps(others);\n var errorBars = data.map(function (entry, i) {\n var _dataPointFormatter = dataPointFormatter(entry, dataKey),\n x = _dataPointFormatter.x,\n y = _dataPointFormatter.y,\n value = _dataPointFormatter.value,\n errorVal = _dataPointFormatter.errorVal;\n\n if (!errorVal) {\n return null;\n }\n\n var lineCoordinates = [];\n var lowBound, highBound;\n\n if (Array.isArray(errorVal)) {\n var _errorVal = _slicedToArray(errorVal, 2);\n\n lowBound = _errorVal[0];\n highBound = _errorVal[1];\n } else {\n lowBound = highBound = errorVal;\n }\n\n if (layout === 'vertical') {\n // error bar for horizontal charts, the y is fixed, x is a range value\n var scale = xAxis.scale;\n var yMid = y + offset;\n var yMin = yMid + width;\n var yMax = yMid - width;\n var xMin = scale(value - lowBound);\n var xMax = scale(value + highBound); // the right line of |--|\n\n lineCoordinates.push({\n x1: xMax,\n y1: yMin,\n x2: xMax,\n y2: yMax\n }); // the middle line of |--|\n\n lineCoordinates.push({\n x1: xMin,\n y1: yMid,\n x2: xMax,\n y2: yMid\n }); // the left line of |--|\n\n lineCoordinates.push({\n x1: xMin,\n y1: yMin,\n x2: xMin,\n y2: yMax\n });\n } else if (layout === 'horizontal') {\n // error bar for horizontal charts, the x is fixed, y is a range value\n var _scale = yAxis.scale;\n var xMid = x + offset;\n\n var _xMin = xMid - width;\n\n var _xMax = xMid + width;\n\n var _yMin = _scale(value - lowBound);\n\n var _yMax = _scale(value + highBound); // the top line\n\n\n lineCoordinates.push({\n x1: _xMin,\n y1: _yMax,\n x2: _xMax,\n y2: _yMax\n }); // the middle line\n\n lineCoordinates.push({\n x1: xMid,\n y1: _yMin,\n x2: xMid,\n y2: _yMax\n }); // the bottom line\n\n lineCoordinates.push({\n x1: _xMin,\n y1: _yMin,\n x2: _xMax,\n y2: _yMin\n });\n }\n\n return (\n /*#__PURE__*/\n // eslint-disable-next-line react/no-array-index-key\n React.createElement(Layer, _extends({\n className: \"recharts-errorBar\",\n key: \"bar-\".concat(i)\n }, svgProps), lineCoordinates.map(function (coordinates, index) {\n return (\n /*#__PURE__*/\n // eslint-disable-next-line react/no-array-index-key\n React.createElement(\"line\", _extends({}, coordinates, {\n key: \"line-\".concat(index)\n }))\n );\n }))\n );\n });\n return /*#__PURE__*/React.createElement(Layer, {\n className: \"recharts-errorBars\"\n }, errorBars);\n}\nErrorBar.defaultProps = {\n stroke: 'black',\n strokeWidth: 1.5,\n width: 5,\n offset: 0,\n layout: 'horizontal'\n};\nErrorBar.displayName = 'ErrorBar';","/**\n * @fileOverview Cross\n */\nexport var Cell = function Cell(_props) {\n return null;\n};\nCell.displayName = 'Cell';","import _isObject from \"lodash/isObject\";\nimport _isFunction from \"lodash/isFunction\";\nimport _isNil from \"lodash/isNil\";\nimport _last from \"lodash/last\";\nimport _isArray from \"lodash/isArray\";\n\nfunction _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\n\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _iterableToArray(iter) { if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter); }\n\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React, { cloneElement } from 'react';\nimport { Label } from './Label';\nimport { Layer } from '../container/Layer';\nimport { findAllByType } from '../util/ReactUtils';\nimport { getValueByDataKey } from '../util/ChartUtils';\nimport { filterProps } from '../util/types';\nvar defaultProps = {\n valueAccessor: function valueAccessor(entry) {\n return _isArray(entry.value) ? _last(entry.value) : entry.value;\n }\n};\nexport function LabelList(props) {\n var data = props.data,\n valueAccessor = props.valueAccessor,\n dataKey = props.dataKey,\n clockWise = props.clockWise,\n id = props.id,\n textBreakAll = props.textBreakAll,\n others = _objectWithoutProperties(props, [\"data\", \"valueAccessor\", \"dataKey\", \"clockWise\", \"id\", \"textBreakAll\"]);\n\n if (!data || !data.length) {\n return null;\n }\n\n return /*#__PURE__*/React.createElement(Layer, {\n className: \"recharts-label-list\"\n }, data.map(function (entry, index) {\n var value = _isNil(dataKey) ? valueAccessor(entry, index) : getValueByDataKey(entry && entry.payload, dataKey);\n var idProps = _isNil(id) ? {} : {\n id: \"\".concat(id, \"-\").concat(index)\n };\n return /*#__PURE__*/React.createElement(Label, _extends({}, filterProps(entry, true), others, idProps, {\n parentViewBox: entry.parentViewBox,\n index: index,\n value: value,\n textBreakAll: textBreakAll,\n viewBox: Label.parseViewBox(_isNil(clockWise) ? entry : _objectSpread(_objectSpread({}, entry), {}, {\n clockWise: clockWise\n })),\n key: \"label-\".concat(index) // eslint-disable-line react/no-array-index-key\n\n }));\n }));\n}\nLabelList.displayName = 'LabelList';\n\nfunction parseLabelList(label, data) {\n if (!label) {\n return null;\n }\n\n if (label === true) {\n return /*#__PURE__*/React.createElement(LabelList, {\n key: \"labelList-implicit\",\n data: data\n });\n }\n\n if ( /*#__PURE__*/React.isValidElement(label) || _isFunction(label)) {\n return /*#__PURE__*/React.createElement(LabelList, {\n key: \"labelList-implicit\",\n data: data,\n content: label\n });\n }\n\n if (_isObject(label)) {\n return /*#__PURE__*/React.createElement(LabelList, _extends({\n data: data\n }, label, {\n key: \"labelList-implicit\"\n }));\n }\n\n return null;\n}\n\nfunction renderCallByParent(parentProps, data) {\n var ckeckPropsLabel = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;\n\n if (!parentProps || !parentProps.children && ckeckPropsLabel && !parentProps.label) {\n return null;\n }\n\n var children = parentProps.children;\n var explicitChilren = findAllByType(children, LabelList.displayName).map(function (child, index) {\n return /*#__PURE__*/cloneElement(child, {\n data: data,\n key: \"labelList-\".concat(index)\n });\n });\n\n if (!ckeckPropsLabel) {\n return explicitChilren;\n }\n\n var implicitLabelList = parseLabelList(parentProps.label, data);\n return [implicitLabelList].concat(_toConsumableArray(explicitChilren));\n}\n\nLabelList.renderCallByParent = renderCallByParent;\nLabelList.defaultProps = defaultProps;","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport _isNil from \"lodash/isNil\";\nimport _isEqual from \"lodash/isEqual\";\nimport _isFunction from \"lodash/isFunction\";\nimport _isArray from \"lodash/isArray\";\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n/**\n * @fileOverview Render a group of bar\n */\nimport React, { PureComponent } from 'react';\nimport classNames from 'classnames';\nimport Animate from 'react-smooth';\nimport { Rectangle } from '../shape/Rectangle';\nimport { Layer } from '../container/Layer';\nimport { ErrorBar } from './ErrorBar';\nimport { Cell } from '../component/Cell';\nimport { LabelList } from '../component/LabelList';\nimport { uniqueId, mathSign, interpolateNumber } from '../util/DataUtils';\nimport { findAllByType } from '../util/ReactUtils';\nimport { Global } from '../util/Global';\nimport { getCateCoordinateOfBar, getValueByDataKey, truncateByDomain, getBaseValueOfBar, findPositionOfBar, getTooltipItem } from '../util/ChartUtils';\nimport { filterProps, adaptEventsOfChild } from '../util/types';\nexport var Bar = /*#__PURE__*/function (_PureComponent) {\n _inherits(Bar, _PureComponent);\n\n var _super = _createSuper(Bar);\n\n function Bar() {\n var _this;\n\n _classCallCheck(this, Bar);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _super.call.apply(_super, [this].concat(args));\n _this.state = {\n isAnimationFinished: false\n };\n _this.id = uniqueId('recharts-bar-');\n\n _this.handleAnimationEnd = function () {\n var onAnimationEnd = _this.props.onAnimationEnd;\n\n _this.setState({\n isAnimationFinished: true\n });\n\n if (onAnimationEnd) {\n onAnimationEnd();\n }\n };\n\n _this.handleAnimationStart = function () {\n var onAnimationStart = _this.props.onAnimationStart;\n\n _this.setState({\n isAnimationFinished: false\n });\n\n if (onAnimationStart) {\n onAnimationStart();\n }\n };\n\n return _this;\n }\n\n _createClass(Bar, [{\n key: \"renderRectanglesStatically\",\n value: function renderRectanglesStatically(data) {\n var _this2 = this;\n\n var shape = this.props.shape;\n var baseProps = filterProps(this.props);\n return data && data.map(function (entry, i) {\n var props = _objectSpread(_objectSpread(_objectSpread({}, baseProps), entry), {}, {\n index: i\n });\n\n return /*#__PURE__*/React.createElement(Layer, _extends({\n className: \"recharts-bar-rectangle\"\n }, adaptEventsOfChild(_this2.props, entry, i), {\n key: \"rectangle-\".concat(i) // eslint-disable-line react/no-array-index-key\n\n }), Bar.renderRectangle(shape, props));\n });\n }\n }, {\n key: \"renderRectanglesWithAnimation\",\n value: function renderRectanglesWithAnimation() {\n var _this3 = this;\n\n var _this$props = this.props,\n data = _this$props.data,\n layout = _this$props.layout,\n isAnimationActive = _this$props.isAnimationActive,\n animationBegin = _this$props.animationBegin,\n animationDuration = _this$props.animationDuration,\n animationEasing = _this$props.animationEasing,\n animationId = _this$props.animationId;\n var prevData = this.state.prevData;\n return /*#__PURE__*/React.createElement(Animate, {\n begin: animationBegin,\n duration: animationDuration,\n isActive: isAnimationActive,\n easing: animationEasing,\n from: {\n t: 0\n },\n to: {\n t: 1\n },\n key: \"bar-\".concat(animationId),\n onAnimationEnd: this.handleAnimationEnd,\n onAnimationStart: this.handleAnimationStart\n }, function (_ref) {\n var t = _ref.t;\n var stepData = data.map(function (entry, index) {\n var prev = prevData && prevData[index];\n\n if (prev) {\n var interpolatorX = interpolateNumber(prev.x, entry.x);\n var interpolatorY = interpolateNumber(prev.y, entry.y);\n var interpolatorWidth = interpolateNumber(prev.width, entry.width);\n var interpolatorHeight = interpolateNumber(prev.height, entry.height);\n return _objectSpread(_objectSpread({}, entry), {}, {\n x: interpolatorX(t),\n y: interpolatorY(t),\n width: interpolatorWidth(t),\n height: interpolatorHeight(t)\n });\n }\n\n if (layout === 'horizontal') {\n var _interpolatorHeight = interpolateNumber(0, entry.height);\n\n var h = _interpolatorHeight(t);\n\n return _objectSpread(_objectSpread({}, entry), {}, {\n y: entry.y + entry.height - h,\n height: h\n });\n }\n\n var interpolator = interpolateNumber(0, entry.width);\n var w = interpolator(t);\n return _objectSpread(_objectSpread({}, entry), {}, {\n width: w\n });\n });\n return /*#__PURE__*/React.createElement(Layer, null, _this3.renderRectanglesStatically(stepData));\n });\n }\n }, {\n key: \"renderRectangles\",\n value: function renderRectangles() {\n var _this$props2 = this.props,\n data = _this$props2.data,\n isAnimationActive = _this$props2.isAnimationActive;\n var prevData = this.state.prevData;\n\n if (isAnimationActive && data && data.length && (!prevData || !_isEqual(prevData, data))) {\n return this.renderRectanglesWithAnimation();\n }\n\n return this.renderRectanglesStatically(data);\n }\n }, {\n key: \"renderBackground\",\n value: function renderBackground() {\n var _this4 = this;\n\n var data = this.props.data;\n var backgroundProps = filterProps(this.props.background);\n return data.map(function (entry, i) {\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n var value = entry.value,\n background = entry.background,\n rest = _objectWithoutProperties(entry, [\"value\", \"background\"]);\n\n if (!background) {\n return null;\n }\n\n var props = _objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({}, rest), {}, {\n fill: '#eee'\n }, background), backgroundProps), adaptEventsOfChild(_this4.props, entry, i)), {}, {\n index: i,\n key: \"background-bar-\".concat(i),\n className: 'recharts-bar-background-rectangle'\n });\n\n return Bar.renderRectangle(_this4.props.background, props);\n });\n }\n }, {\n key: \"renderErrorBar\",\n value: function renderErrorBar() {\n if (this.props.isAnimationActive && !this.state.isAnimationFinished) {\n return null;\n }\n\n var _this$props3 = this.props,\n data = _this$props3.data,\n xAxis = _this$props3.xAxis,\n yAxis = _this$props3.yAxis,\n layout = _this$props3.layout,\n children = _this$props3.children;\n var errorBarItems = findAllByType(children, ErrorBar.displayName);\n\n if (!errorBarItems) {\n return null;\n }\n\n var offset = layout === 'vertical' ? data[0].height / 2 : data[0].width / 2;\n\n function dataPointFormatter(dataPoint, dataKey) {\n return {\n x: dataPoint.x,\n y: dataPoint.y,\n value: dataPoint.value,\n errorVal: getValueByDataKey(dataPoint, dataKey)\n };\n }\n\n return errorBarItems.map(function (item, i) {\n return /*#__PURE__*/React.cloneElement(item, {\n key: \"error-bar-\".concat(i),\n // eslint-disable-line react/no-array-index-key\n data: data,\n xAxis: xAxis,\n yAxis: yAxis,\n layout: layout,\n offset: offset,\n dataPointFormatter: dataPointFormatter\n });\n });\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this$props4 = this.props,\n hide = _this$props4.hide,\n data = _this$props4.data,\n className = _this$props4.className,\n xAxis = _this$props4.xAxis,\n yAxis = _this$props4.yAxis,\n left = _this$props4.left,\n top = _this$props4.top,\n width = _this$props4.width,\n height = _this$props4.height,\n isAnimationActive = _this$props4.isAnimationActive,\n background = _this$props4.background,\n id = _this$props4.id;\n\n if (hide || !data || !data.length) {\n return null;\n }\n\n var isAnimationFinished = this.state.isAnimationFinished;\n var layerClass = classNames('recharts-bar', className);\n var needClip = xAxis && xAxis.allowDataOverflow || yAxis && yAxis.allowDataOverflow;\n var clipPathId = _isNil(id) ? this.id : id;\n return /*#__PURE__*/React.createElement(Layer, {\n className: layerClass\n }, needClip ? /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clipPath-\".concat(clipPathId)\n }, /*#__PURE__*/React.createElement(\"rect\", {\n x: left,\n y: top,\n width: width,\n height: height\n }))) : null, /*#__PURE__*/React.createElement(Layer, {\n className: \"recharts-bar-rectangles\",\n clipPath: needClip ? \"url(#clipPath-\".concat(clipPathId, \")\") : null\n }, background ? this.renderBackground() : null, this.renderRectangles()), this.renderErrorBar(), (!isAnimationActive || isAnimationFinished) && LabelList.renderCallByParent(this.props, data));\n }\n }], [{\n key: \"getDerivedStateFromProps\",\n value: function getDerivedStateFromProps(nextProps, prevState) {\n if (nextProps.animationId !== prevState.prevAnimationId) {\n return {\n prevAnimationId: nextProps.animationId,\n curData: nextProps.data,\n prevData: prevState.curData\n };\n }\n\n if (nextProps.data !== prevState.curData) {\n return {\n curData: nextProps.data\n };\n }\n\n return null;\n }\n }, {\n key: \"renderRectangle\",\n value: function renderRectangle(option, props) {\n var rectangle;\n\n if ( /*#__PURE__*/React.isValidElement(option)) {\n rectangle = /*#__PURE__*/React.cloneElement(option, props);\n } else if (_isFunction(option)) {\n rectangle = option(props);\n } else {\n rectangle = /*#__PURE__*/React.createElement(Rectangle, props);\n }\n\n return rectangle;\n }\n }]);\n\n return Bar;\n}(PureComponent);\nBar.displayName = 'Bar';\nBar.defaultProps = {\n xAxisId: 0,\n yAxisId: 0,\n legendType: 'rect',\n minPointSize: 0,\n hide: false,\n // data of bar\n data: [],\n layout: 'vertical',\n isAnimationActive: !Global.isSsr,\n animationBegin: 0,\n animationDuration: 400,\n animationEasing: 'ease'\n};\n\nBar.getComposedData = function (_ref2) {\n var props = _ref2.props,\n item = _ref2.item,\n barPosition = _ref2.barPosition,\n bandSize = _ref2.bandSize,\n xAxis = _ref2.xAxis,\n yAxis = _ref2.yAxis,\n xAxisTicks = _ref2.xAxisTicks,\n yAxisTicks = _ref2.yAxisTicks,\n stackedData = _ref2.stackedData,\n dataStartIndex = _ref2.dataStartIndex,\n displayedData = _ref2.displayedData,\n offset = _ref2.offset;\n var pos = findPositionOfBar(barPosition, item);\n\n if (!pos) {\n return null;\n }\n\n var layout = props.layout;\n var _item$props = item.props,\n dataKey = _item$props.dataKey,\n children = _item$props.children,\n minPointSize = _item$props.minPointSize;\n var numericAxis = layout === 'horizontal' ? yAxis : xAxis;\n var stackedDomain = stackedData ? numericAxis.scale.domain() : null;\n var baseValue = getBaseValueOfBar({\n numericAxis: numericAxis\n });\n var cells = findAllByType(children, Cell.displayName);\n var rects = displayedData.map(function (entry, index) {\n var value, x, y, width, height, background;\n\n if (stackedData) {\n value = truncateByDomain(stackedData[dataStartIndex + index], stackedDomain);\n } else {\n value = getValueByDataKey(entry, dataKey);\n\n if (!_isArray(value)) {\n value = [baseValue, value];\n }\n }\n\n if (layout === 'horizontal') {\n x = getCateCoordinateOfBar({\n axis: xAxis,\n ticks: xAxisTicks,\n bandSize: bandSize,\n offset: pos.offset,\n entry: entry,\n index: index\n });\n y = yAxis.scale(value[1]);\n width = pos.size;\n height = yAxis.scale(value[0]) - yAxis.scale(value[1]);\n background = {\n x: x,\n y: yAxis.y,\n width: width,\n height: yAxis.height\n };\n\n if (Math.abs(minPointSize) > 0 && Math.abs(height) < Math.abs(minPointSize)) {\n var delta = mathSign(height || minPointSize) * (Math.abs(minPointSize) - Math.abs(height));\n y -= delta;\n height += delta;\n }\n } else {\n x = xAxis.scale(value[0]);\n y = getCateCoordinateOfBar({\n axis: yAxis,\n ticks: yAxisTicks,\n bandSize: bandSize,\n offset: pos.offset,\n entry: entry,\n index: index\n });\n width = xAxis.scale(value[1]) - xAxis.scale(value[0]);\n height = pos.size;\n background = {\n x: xAxis.x,\n y: y,\n width: xAxis.width,\n height: height\n };\n\n if (Math.abs(minPointSize) > 0 && Math.abs(width) < Math.abs(minPointSize)) {\n var _delta = mathSign(width || minPointSize) * (Math.abs(minPointSize) - Math.abs(width));\n\n width += _delta;\n }\n }\n\n return _objectSpread(_objectSpread(_objectSpread({}, entry), {}, {\n x: x,\n y: y,\n width: width,\n height: height,\n value: stackedData ? value : value[1],\n payload: entry,\n background: background\n }, cells && cells[index] && cells[index].props), {}, {\n tooltipPayload: [getTooltipItem(item, entry)],\n tooltipPosition: {\n x: x + width / 2,\n y: y + height / 2\n }\n });\n });\n return _objectSpread({\n data: rects,\n layout: layout\n }, offset);\n};","/**\n * @fileOverview X Axis\n */\n\n/** Define of XAxis props */\nexport var XAxis = function XAxis() {\n return null;\n};\nXAxis.displayName = 'XAxis';\nXAxis.defaultProps = {\n allowDecimals: true,\n hide: false,\n orientation: 'bottom',\n width: 0,\n height: 30,\n mirror: false,\n xAxisId: 0,\n tickCount: 5,\n type: 'category',\n domain: [0, 'auto'],\n padding: {\n left: 0,\n right: 0\n },\n allowDataOverflow: false,\n scale: 'auto',\n reversed: false,\n allowDuplicatedCategory: true\n};","export default function() {}\n","export function point(that, x, y) {\n that._context.bezierCurveTo(\n (2 * that._x0 + that._x1) / 3,\n (2 * that._y0 + that._y1) / 3,\n (that._x0 + 2 * that._x1) / 3,\n (that._y0 + 2 * that._y1) / 3,\n (that._x0 + 4 * that._x1 + x) / 6,\n (that._y0 + 4 * that._y1 + y) / 6\n );\n}\n\nexport function Basis(context) {\n this._context = context;\n}\n\nBasis.prototype = {\n areaStart: function() {\n this._line = 0;\n },\n areaEnd: function() {\n this._line = NaN;\n },\n lineStart: function() {\n this._x0 = this._x1 =\n this._y0 = this._y1 = NaN;\n this._point = 0;\n },\n lineEnd: function() {\n switch (this._point) {\n case 3: point(this, this._x1, this._y1); // falls through\n case 2: this._context.lineTo(this._x1, this._y1); break;\n }\n if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath();\n this._line = 1 - this._line;\n },\n point: function(x, y) {\n x = +x, y = +y;\n switch (this._point) {\n case 0: this._point = 1; this._line ? this._context.lineTo(x, y) : this._context.moveTo(x, y); break;\n case 1: this._point = 2; break;\n case 2: this._point = 3; this._context.lineTo((5 * this._x0 + this._x1) / 6, (5 * this._y0 + this._y1) / 6); // falls through\n default: point(this, x, y); break;\n }\n this._x0 = this._x1, this._x1 = x;\n this._y0 = this._y1, this._y1 = y;\n }\n};\n\nexport default function(context) {\n return new Basis(context);\n}\n","import noop from \"../noop.js\";\nimport {point} from \"./basis.js\";\n\nfunction BasisClosed(context) {\n this._context = context;\n}\n\nBasisClosed.prototype = {\n areaStart: noop,\n areaEnd: noop,\n lineStart: function() {\n this._x0 = this._x1 = this._x2 = this._x3 = this._x4 =\n this._y0 = this._y1 = this._y2 = this._y3 = this._y4 = NaN;\n this._point = 0;\n },\n lineEnd: function() {\n switch (this._point) {\n case 1: {\n this._context.moveTo(this._x2, this._y2);\n this._context.closePath();\n break;\n }\n case 2: {\n this._context.moveTo((this._x2 + 2 * this._x3) / 3, (this._y2 + 2 * this._y3) / 3);\n this._context.lineTo((this._x3 + 2 * this._x2) / 3, (this._y3 + 2 * this._y2) / 3);\n this._context.closePath();\n break;\n }\n case 3: {\n this.point(this._x2, this._y2);\n this.point(this._x3, this._y3);\n this.point(this._x4, this._y4);\n break;\n }\n }\n },\n point: function(x, y) {\n x = +x, y = +y;\n switch (this._point) {\n case 0: this._point = 1; this._x2 = x, this._y2 = y; break;\n case 1: this._point = 2; this._x3 = x, this._y3 = y; break;\n case 2: this._point = 3; this._x4 = x, this._y4 = y; this._context.moveTo((this._x0 + 4 * this._x1 + x) / 6, (this._y0 + 4 * this._y1 + y) / 6); break;\n default: point(this, x, y); break;\n }\n this._x0 = this._x1, this._x1 = x;\n this._y0 = this._y1, this._y1 = y;\n }\n};\n\nexport default function(context) {\n return new BasisClosed(context);\n}\n","import {point} from \"./basis.js\";\n\nfunction BasisOpen(context) {\n this._context = context;\n}\n\nBasisOpen.prototype = {\n areaStart: function() {\n this._line = 0;\n },\n areaEnd: function() {\n this._line = NaN;\n },\n lineStart: function() {\n this._x0 = this._x1 =\n this._y0 = this._y1 = NaN;\n this._point = 0;\n },\n lineEnd: function() {\n if (this._line || (this._line !== 0 && this._point === 3)) this._context.closePath();\n this._line = 1 - this._line;\n },\n point: function(x, y) {\n x = +x, y = +y;\n switch (this._point) {\n case 0: this._point = 1; break;\n case 1: this._point = 2; break;\n case 2: this._point = 3; var x0 = (this._x0 + 4 * this._x1 + x) / 6, y0 = (this._y0 + 4 * this._y1 + y) / 6; this._line ? this._context.lineTo(x0, y0) : this._context.moveTo(x0, y0); break;\n case 3: this._point = 4; // falls through\n default: point(this, x, y); break;\n }\n this._x0 = this._x1, this._x1 = x;\n this._y0 = this._y1, this._y1 = y;\n }\n};\n\nexport default function(context) {\n return new BasisOpen(context);\n}\n","import noop from \"../noop.js\";\n\nfunction LinearClosed(context) {\n this._context = context;\n}\n\nLinearClosed.prototype = {\n areaStart: noop,\n areaEnd: noop,\n lineStart: function() {\n this._point = 0;\n },\n lineEnd: function() {\n if (this._point) this._context.closePath();\n },\n point: function(x, y) {\n x = +x, y = +y;\n if (this._point) this._context.lineTo(x, y);\n else this._point = 1, this._context.moveTo(x, y);\n }\n};\n\nexport default function(context) {\n return new LinearClosed(context);\n}\n","function Linear(context) {\n this._context = context;\n}\n\nLinear.prototype = {\n areaStart: function() {\n this._line = 0;\n },\n areaEnd: function() {\n this._line = NaN;\n },\n lineStart: function() {\n this._point = 0;\n },\n lineEnd: function() {\n if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath();\n this._line = 1 - this._line;\n },\n point: function(x, y) {\n x = +x, y = +y;\n switch (this._point) {\n case 0: this._point = 1; this._line ? this._context.lineTo(x, y) : this._context.moveTo(x, y); break;\n case 1: this._point = 2; // falls through\n default: this._context.lineTo(x, y); break;\n }\n }\n};\n\nexport default function(context) {\n return new Linear(context);\n}\n","function sign(x) {\n return x < 0 ? -1 : 1;\n}\n\n// Calculate the slopes of the tangents (Hermite-type interpolation) based on\n// the following paper: Steffen, M. 1990. A Simple Method for Monotonic\n// Interpolation in One Dimension. Astronomy and Astrophysics, Vol. 239, NO.\n// NOV(II), P. 443, 1990.\nfunction slope3(that, x2, y2) {\n var h0 = that._x1 - that._x0,\n h1 = x2 - that._x1,\n s0 = (that._y1 - that._y0) / (h0 || h1 < 0 && -0),\n s1 = (y2 - that._y1) / (h1 || h0 < 0 && -0),\n p = (s0 * h1 + s1 * h0) / (h0 + h1);\n return (sign(s0) + sign(s1)) * Math.min(Math.abs(s0), Math.abs(s1), 0.5 * Math.abs(p)) || 0;\n}\n\n// Calculate a one-sided slope.\nfunction slope2(that, t) {\n var h = that._x1 - that._x0;\n return h ? (3 * (that._y1 - that._y0) / h - t) / 2 : t;\n}\n\n// According to https://en.wikipedia.org/wiki/Cubic_Hermite_spline#Representations\n// \"you can express cubic Hermite interpolation in terms of cubic Bézier curves\n// with respect to the four values p0, p0 + m0 / 3, p1 - m1 / 3, p1\".\nfunction point(that, t0, t1) {\n var x0 = that._x0,\n y0 = that._y0,\n x1 = that._x1,\n y1 = that._y1,\n dx = (x1 - x0) / 3;\n that._context.bezierCurveTo(x0 + dx, y0 + dx * t0, x1 - dx, y1 - dx * t1, x1, y1);\n}\n\nfunction MonotoneX(context) {\n this._context = context;\n}\n\nMonotoneX.prototype = {\n areaStart: function() {\n this._line = 0;\n },\n areaEnd: function() {\n this._line = NaN;\n },\n lineStart: function() {\n this._x0 = this._x1 =\n this._y0 = this._y1 =\n this._t0 = NaN;\n this._point = 0;\n },\n lineEnd: function() {\n switch (this._point) {\n case 2: this._context.lineTo(this._x1, this._y1); break;\n case 3: point(this, this._t0, slope2(this, this._t0)); break;\n }\n if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath();\n this._line = 1 - this._line;\n },\n point: function(x, y) {\n var t1 = NaN;\n\n x = +x, y = +y;\n if (x === this._x1 && y === this._y1) return; // Ignore coincident points.\n switch (this._point) {\n case 0: this._point = 1; this._line ? this._context.lineTo(x, y) : this._context.moveTo(x, y); break;\n case 1: this._point = 2; break;\n case 2: this._point = 3; point(this, slope2(this, t1 = slope3(this, x, y)), t1); break;\n default: point(this, this._t0, t1 = slope3(this, x, y)); break;\n }\n\n this._x0 = this._x1, this._x1 = x;\n this._y0 = this._y1, this._y1 = y;\n this._t0 = t1;\n }\n}\n\nfunction MonotoneY(context) {\n this._context = new ReflectContext(context);\n}\n\n(MonotoneY.prototype = Object.create(MonotoneX.prototype)).point = function(x, y) {\n MonotoneX.prototype.point.call(this, y, x);\n};\n\nfunction ReflectContext(context) {\n this._context = context;\n}\n\nReflectContext.prototype = {\n moveTo: function(x, y) { this._context.moveTo(y, x); },\n closePath: function() { this._context.closePath(); },\n lineTo: function(x, y) { this._context.lineTo(y, x); },\n bezierCurveTo: function(x1, y1, x2, y2, x, y) { this._context.bezierCurveTo(y1, x1, y2, x2, y, x); }\n};\n\nexport function monotoneX(context) {\n return new MonotoneX(context);\n}\n\nexport function monotoneY(context) {\n return new MonotoneY(context);\n}\n","function Natural(context) {\n this._context = context;\n}\n\nNatural.prototype = {\n areaStart: function() {\n this._line = 0;\n },\n areaEnd: function() {\n this._line = NaN;\n },\n lineStart: function() {\n this._x = [];\n this._y = [];\n },\n lineEnd: function() {\n var x = this._x,\n y = this._y,\n n = x.length;\n\n if (n) {\n this._line ? this._context.lineTo(x[0], y[0]) : this._context.moveTo(x[0], y[0]);\n if (n === 2) {\n this._context.lineTo(x[1], y[1]);\n } else {\n var px = controlPoints(x),\n py = controlPoints(y);\n for (var i0 = 0, i1 = 1; i1 < n; ++i0, ++i1) {\n this._context.bezierCurveTo(px[0][i0], py[0][i0], px[1][i0], py[1][i0], x[i1], y[i1]);\n }\n }\n }\n\n if (this._line || (this._line !== 0 && n === 1)) this._context.closePath();\n this._line = 1 - this._line;\n this._x = this._y = null;\n },\n point: function(x, y) {\n this._x.push(+x);\n this._y.push(+y);\n }\n};\n\n// See https://www.particleincell.com/2012/bezier-splines/ for derivation.\nfunction controlPoints(x) {\n var i,\n n = x.length - 1,\n m,\n a = new Array(n),\n b = new Array(n),\n r = new Array(n);\n a[0] = 0, b[0] = 2, r[0] = x[0] + 2 * x[1];\n for (i = 1; i < n - 1; ++i) a[i] = 1, b[i] = 4, r[i] = 4 * x[i] + 2 * x[i + 1];\n a[n - 1] = 2, b[n - 1] = 7, r[n - 1] = 8 * x[n - 1] + x[n];\n for (i = 1; i < n; ++i) m = a[i] / b[i - 1], b[i] -= m, r[i] -= m * r[i - 1];\n a[n - 1] = r[n - 1] / b[n - 1];\n for (i = n - 2; i >= 0; --i) a[i] = (r[i] - a[i + 1]) / b[i];\n b[n - 1] = (x[n] + a[n - 1]) / 2;\n for (i = 0; i < n - 1; ++i) b[i] = 2 * x[i + 1] - a[i + 1];\n return [a, b];\n}\n\nexport default function(context) {\n return new Natural(context);\n}\n","function Step(context, t) {\n this._context = context;\n this._t = t;\n}\n\nStep.prototype = {\n areaStart: function() {\n this._line = 0;\n },\n areaEnd: function() {\n this._line = NaN;\n },\n lineStart: function() {\n this._x = this._y = NaN;\n this._point = 0;\n },\n lineEnd: function() {\n if (0 < this._t && this._t < 1 && this._point === 2) this._context.lineTo(this._x, this._y);\n if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath();\n if (this._line >= 0) this._t = 1 - this._t, this._line = 1 - this._line;\n },\n point: function(x, y) {\n x = +x, y = +y;\n switch (this._point) {\n case 0: this._point = 1; this._line ? this._context.lineTo(x, y) : this._context.moveTo(x, y); break;\n case 1: this._point = 2; // falls through\n default: {\n if (this._t <= 0) {\n this._context.lineTo(this._x, y);\n this._context.lineTo(x, y);\n } else {\n var x1 = this._x * (1 - this._t) + x * this._t;\n this._context.lineTo(x1, this._y);\n this._context.lineTo(x1, y);\n }\n break;\n }\n }\n this._x = x, this._y = y;\n }\n};\n\nexport default function(context) {\n return new Step(context, 0.5);\n}\n\nexport function stepBefore(context) {\n return new Step(context, 0);\n}\n\nexport function stepAfter(context) {\n return new Step(context, 1);\n}\n","export function x(p) {\n return p[0];\n}\n\nexport function y(p) {\n return p[1];\n}\n","import {path} from \"d3-path\";\nimport array from \"./array.js\";\nimport constant from \"./constant.js\";\nimport curveLinear from \"./curve/linear.js\";\nimport {x as pointX, y as pointY} from \"./point.js\";\n\nexport default function(x, y) {\n var defined = constant(true),\n context = null,\n curve = curveLinear,\n output = null;\n\n x = typeof x === \"function\" ? x : (x === undefined) ? pointX : constant(x);\n y = typeof y === \"function\" ? y : (y === undefined) ? pointY : constant(y);\n\n function line(data) {\n var i,\n n = (data = array(data)).length,\n d,\n defined0 = false,\n buffer;\n\n if (context == null) output = curve(buffer = path());\n\n for (i = 0; i <= n; ++i) {\n if (!(i < n && defined(d = data[i], i, data)) === defined0) {\n if (defined0 = !defined0) output.lineStart();\n else output.lineEnd();\n }\n if (defined0) output.point(+x(d, i, data), +y(d, i, data));\n }\n\n if (buffer) return output = null, buffer + \"\" || null;\n }\n\n line.x = function(_) {\n return arguments.length ? (x = typeof _ === \"function\" ? _ : constant(+_), line) : x;\n };\n\n line.y = function(_) {\n return arguments.length ? (y = typeof _ === \"function\" ? _ : constant(+_), line) : y;\n };\n\n line.defined = function(_) {\n return arguments.length ? (defined = typeof _ === \"function\" ? _ : constant(!!_), line) : defined;\n };\n\n line.curve = function(_) {\n return arguments.length ? (curve = _, context != null && (output = curve(context)), line) : curve;\n };\n\n line.context = function(_) {\n return arguments.length ? (_ == null ? context = output = null : output = curve(context = _), line) : context;\n };\n\n return line;\n}\n","import {path} from \"d3-path\";\nimport array from \"./array.js\";\nimport constant from \"./constant.js\";\nimport curveLinear from \"./curve/linear.js\";\nimport line from \"./line.js\";\nimport {x as pointX, y as pointY} from \"./point.js\";\n\nexport default function(x0, y0, y1) {\n var x1 = null,\n defined = constant(true),\n context = null,\n curve = curveLinear,\n output = null;\n\n x0 = typeof x0 === \"function\" ? x0 : (x0 === undefined) ? pointX : constant(+x0);\n y0 = typeof y0 === \"function\" ? y0 : (y0 === undefined) ? constant(0) : constant(+y0);\n y1 = typeof y1 === \"function\" ? y1 : (y1 === undefined) ? pointY : constant(+y1);\n\n function area(data) {\n var i,\n j,\n k,\n n = (data = array(data)).length,\n d,\n defined0 = false,\n buffer,\n x0z = new Array(n),\n y0z = new Array(n);\n\n if (context == null) output = curve(buffer = path());\n\n for (i = 0; i <= n; ++i) {\n if (!(i < n && defined(d = data[i], i, data)) === defined0) {\n if (defined0 = !defined0) {\n j = i;\n output.areaStart();\n output.lineStart();\n } else {\n output.lineEnd();\n output.lineStart();\n for (k = i - 1; k >= j; --k) {\n output.point(x0z[k], y0z[k]);\n }\n output.lineEnd();\n output.areaEnd();\n }\n }\n if (defined0) {\n x0z[i] = +x0(d, i, data), y0z[i] = +y0(d, i, data);\n output.point(x1 ? +x1(d, i, data) : x0z[i], y1 ? +y1(d, i, data) : y0z[i]);\n }\n }\n\n if (buffer) return output = null, buffer + \"\" || null;\n }\n\n function arealine() {\n return line().defined(defined).curve(curve).context(context);\n }\n\n area.x = function(_) {\n return arguments.length ? (x0 = typeof _ === \"function\" ? _ : constant(+_), x1 = null, area) : x0;\n };\n\n area.x0 = function(_) {\n return arguments.length ? (x0 = typeof _ === \"function\" ? _ : constant(+_), area) : x0;\n };\n\n area.x1 = function(_) {\n return arguments.length ? (x1 = _ == null ? null : typeof _ === \"function\" ? _ : constant(+_), area) : x1;\n };\n\n area.y = function(_) {\n return arguments.length ? (y0 = typeof _ === \"function\" ? _ : constant(+_), y1 = null, area) : y0;\n };\n\n area.y0 = function(_) {\n return arguments.length ? (y0 = typeof _ === \"function\" ? _ : constant(+_), area) : y0;\n };\n\n area.y1 = function(_) {\n return arguments.length ? (y1 = _ == null ? null : typeof _ === \"function\" ? _ : constant(+_), area) : y1;\n };\n\n area.lineX0 =\n area.lineY0 = function() {\n return arealine().x(x0).y(y0);\n };\n\n area.lineY1 = function() {\n return arealine().x(x0).y(y1);\n };\n\n area.lineX1 = function() {\n return arealine().x(x1).y(y0);\n };\n\n area.defined = function(_) {\n return arguments.length ? (defined = typeof _ === \"function\" ? _ : constant(!!_), area) : defined;\n };\n\n area.curve = function(_) {\n return arguments.length ? (curve = _, context != null && (output = curve(context)), area) : curve;\n };\n\n area.context = function(_) {\n return arguments.length ? (_ == null ? context = output = null : output = curve(context = _), area) : context;\n };\n\n return area;\n}\n","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport _isArray from \"lodash/isArray\";\nimport _upperFirst from \"lodash/upperFirst\";\nimport _isFunction from \"lodash/isFunction\";\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n/**\n * @fileOverview Curve\n */\nimport React, { PureComponent } from 'react';\nimport { line as shapeLine, area as shapeArea, curveBasisClosed, curveBasisOpen, curveBasis, curveLinearClosed, curveLinear, curveMonotoneX, curveMonotoneY, curveNatural, curveStep, curveStepAfter, curveStepBefore } from 'd3-shape';\nimport classNames from 'classnames';\nimport { adaptEventHandlers, filterProps } from '../util/types';\nimport { isNumber } from '../util/DataUtils';\nvar CURVE_FACTORIES = {\n curveBasisClosed: curveBasisClosed,\n curveBasisOpen: curveBasisOpen,\n curveBasis: curveBasis,\n curveLinearClosed: curveLinearClosed,\n curveLinear: curveLinear,\n curveMonotoneX: curveMonotoneX,\n curveMonotoneY: curveMonotoneY,\n curveNatural: curveNatural,\n curveStep: curveStep,\n curveStepAfter: curveStepAfter,\n curveStepBefore: curveStepBefore\n};\n\nvar defined = function defined(p) {\n return p.x === +p.x && p.y === +p.y;\n};\n\nvar getX = function getX(p) {\n return p.x;\n};\n\nvar getY = function getY(p) {\n return p.y;\n};\n\nvar getCurveFactory = function getCurveFactory(type, layout) {\n if (_isFunction(type)) {\n return type;\n }\n\n var name = \"curve\".concat(_upperFirst(type));\n\n if (name === 'curveMonotone' && layout) {\n return CURVE_FACTORIES[\"\".concat(name).concat(layout === 'vertical' ? 'Y' : 'X')];\n }\n\n return CURVE_FACTORIES[name] || curveLinear;\n};\n\nexport var Curve = /*#__PURE__*/function (_PureComponent) {\n _inherits(Curve, _PureComponent);\n\n var _super = _createSuper(Curve);\n\n function Curve() {\n _classCallCheck(this, Curve);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(Curve, [{\n key: \"getPath\",\n value:\n /**\n * Calculate the path of curve\n * @return {String} path\n */\n function getPath() {\n var _this$props = this.props,\n type = _this$props.type,\n points = _this$props.points,\n baseLine = _this$props.baseLine,\n layout = _this$props.layout,\n connectNulls = _this$props.connectNulls;\n var curveFactory = getCurveFactory(type, layout);\n var formatPoints = connectNulls ? points.filter(function (entry) {\n return defined(entry);\n }) : points;\n var lineFunction;\n\n if (_isArray(baseLine)) {\n var formatBaseLine = connectNulls ? baseLine.filter(function (base) {\n return defined(base);\n }) : baseLine;\n var areaPoints = formatPoints.map(function (entry, index) {\n return _objectSpread(_objectSpread({}, entry), {}, {\n base: formatBaseLine[index]\n });\n });\n\n if (layout === 'vertical') {\n lineFunction = shapeArea().y(getY).x1(getX).x0(function (d) {\n return d.base.x;\n });\n } else {\n lineFunction = shapeArea().x(getX).y1(getY).y0(function (d) {\n return d.base.y;\n });\n }\n\n lineFunction.defined(defined).curve(curveFactory);\n return lineFunction(areaPoints);\n }\n\n if (layout === 'vertical' && isNumber(baseLine)) {\n lineFunction = shapeArea().y(getY).x1(getX).x0(baseLine);\n } else if (isNumber(baseLine)) {\n lineFunction = shapeArea().x(getX).y1(getY).y0(baseLine);\n } else {\n lineFunction = shapeLine().x(getX).y(getY);\n }\n\n lineFunction.defined(defined).curve(curveFactory);\n return lineFunction(formatPoints);\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this$props2 = this.props,\n className = _this$props2.className,\n points = _this$props2.points,\n path = _this$props2.path,\n pathRef = _this$props2.pathRef;\n\n if ((!points || !points.length) && !path) {\n return null;\n }\n\n var realPath = points && points.length ? this.getPath() : path;\n return /*#__PURE__*/React.createElement(\"path\", _extends({}, filterProps(this.props), adaptEventHandlers(this.props), {\n className: classNames('recharts-curve', className),\n d: realPath,\n ref: pathRef\n }));\n }\n }]);\n\n return Curve;\n}(PureComponent);\nCurve.defaultProps = {\n type: 'linear',\n points: [],\n connectNulls: false\n};","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n/**\n * @fileOverview Cross\n */\nimport React, { PureComponent } from 'react';\nimport classNames from 'classnames';\nimport { isNumber } from '../util/DataUtils';\nimport { filterProps } from '../util/types';\nexport var Cross = /*#__PURE__*/function (_PureComponent) {\n _inherits(Cross, _PureComponent);\n\n var _super = _createSuper(Cross);\n\n function Cross() {\n _classCallCheck(this, Cross);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(Cross, [{\n key: \"render\",\n value: function render() {\n var _this$props = this.props,\n x = _this$props.x,\n y = _this$props.y,\n width = _this$props.width,\n height = _this$props.height,\n top = _this$props.top,\n left = _this$props.left,\n className = _this$props.className;\n\n if (!isNumber(x) || !isNumber(y) || !isNumber(width) || !isNumber(height) || !isNumber(top) || !isNumber(left)) {\n return null;\n }\n\n return /*#__PURE__*/React.createElement(\"path\", _extends({}, filterProps(this.props, true), {\n className: classNames('recharts-cross', className),\n d: Cross.getPath(x, y, width, height, top, left)\n }));\n }\n }], [{\n key: \"getPath\",\n value: function getPath(x, y, width, height, top, left) {\n return \"M\".concat(x, \",\").concat(top, \"v\").concat(height, \"M\").concat(left, \",\").concat(y, \"h\").concat(width);\n }\n }]);\n\n return Cross;\n}(PureComponent);\nCross.defaultProps = {\n x: 0,\n y: 0,\n top: 0,\n left: 0,\n width: 0,\n height: 0\n};","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n/**\n * @fileOverview Sector\n */\nimport React, { PureComponent } from 'react';\nimport classNames from 'classnames';\nimport { filterProps } from '../util/types';\nimport { polarToCartesian, RADIAN } from '../util/PolarUtils';\nimport { getPercentValue, mathSign } from '../util/DataUtils';\n\nvar getDeltaAngle = function getDeltaAngle(startAngle, endAngle) {\n var sign = mathSign(endAngle - startAngle);\n var deltaAngle = Math.min(Math.abs(endAngle - startAngle), 359.999);\n return sign * deltaAngle;\n};\n\nvar getTangentCircle = function getTangentCircle(_ref) {\n var cx = _ref.cx,\n cy = _ref.cy,\n radius = _ref.radius,\n angle = _ref.angle,\n sign = _ref.sign,\n isExternal = _ref.isExternal,\n cornerRadius = _ref.cornerRadius,\n cornerIsExternal = _ref.cornerIsExternal;\n var centerRadius = cornerRadius * (isExternal ? 1 : -1) + radius;\n var theta = Math.asin(cornerRadius / centerRadius) / RADIAN;\n var centerAngle = cornerIsExternal ? angle : angle + sign * theta;\n var center = polarToCartesian(cx, cy, centerRadius, centerAngle); // The coordinate of point which is tangent to the circle\n\n var circleTangency = polarToCartesian(cx, cy, radius, centerAngle); // The coordinate of point which is tangent to the radius line\n\n var lineTangencyAngle = cornerIsExternal ? angle - sign * theta : angle;\n var lineTangency = polarToCartesian(cx, cy, centerRadius * Math.cos(theta * RADIAN), lineTangencyAngle);\n return {\n center: center,\n circleTangency: circleTangency,\n lineTangency: lineTangency,\n theta: theta\n };\n};\n\nvar getSectorPath = function getSectorPath(_ref2) {\n var cx = _ref2.cx,\n cy = _ref2.cy,\n innerRadius = _ref2.innerRadius,\n outerRadius = _ref2.outerRadius,\n startAngle = _ref2.startAngle,\n endAngle = _ref2.endAngle;\n var angle = getDeltaAngle(startAngle, endAngle); // When the angle of sector equals to 360, star point and end point coincide\n\n var tempEndAngle = startAngle + angle;\n var outerStartPoint = polarToCartesian(cx, cy, outerRadius, startAngle);\n var outerEndPoint = polarToCartesian(cx, cy, outerRadius, tempEndAngle);\n var path = \"M \".concat(outerStartPoint.x, \",\").concat(outerStartPoint.y, \"\\n A \").concat(outerRadius, \",\").concat(outerRadius, \",0,\\n \").concat(+(Math.abs(angle) > 180), \",\").concat(+(startAngle > tempEndAngle), \",\\n \").concat(outerEndPoint.x, \",\").concat(outerEndPoint.y, \"\\n \");\n\n if (innerRadius > 0) {\n var innerStartPoint = polarToCartesian(cx, cy, innerRadius, startAngle);\n var innerEndPoint = polarToCartesian(cx, cy, innerRadius, tempEndAngle);\n path += \"L \".concat(innerEndPoint.x, \",\").concat(innerEndPoint.y, \"\\n A \").concat(innerRadius, \",\").concat(innerRadius, \",0,\\n \").concat(+(Math.abs(angle) > 180), \",\").concat(+(startAngle <= tempEndAngle), \",\\n \").concat(innerStartPoint.x, \",\").concat(innerStartPoint.y, \" Z\");\n } else {\n path += \"L \".concat(cx, \",\").concat(cy, \" Z\");\n }\n\n return path;\n};\n\nvar getSectorWithCorner = function getSectorWithCorner(_ref3) {\n var cx = _ref3.cx,\n cy = _ref3.cy,\n innerRadius = _ref3.innerRadius,\n outerRadius = _ref3.outerRadius,\n cornerRadius = _ref3.cornerRadius,\n forceCornerRadius = _ref3.forceCornerRadius,\n cornerIsExternal = _ref3.cornerIsExternal,\n startAngle = _ref3.startAngle,\n endAngle = _ref3.endAngle;\n var sign = mathSign(endAngle - startAngle);\n\n var _getTangentCircle = getTangentCircle({\n cx: cx,\n cy: cy,\n radius: outerRadius,\n angle: startAngle,\n sign: sign,\n cornerRadius: cornerRadius,\n cornerIsExternal: cornerIsExternal\n }),\n soct = _getTangentCircle.circleTangency,\n solt = _getTangentCircle.lineTangency,\n sot = _getTangentCircle.theta;\n\n var _getTangentCircle2 = getTangentCircle({\n cx: cx,\n cy: cy,\n radius: outerRadius,\n angle: endAngle,\n sign: -sign,\n cornerRadius: cornerRadius,\n cornerIsExternal: cornerIsExternal\n }),\n eoct = _getTangentCircle2.circleTangency,\n eolt = _getTangentCircle2.lineTangency,\n eot = _getTangentCircle2.theta;\n\n var outerArcAngle = cornerIsExternal ? Math.abs(startAngle - endAngle) : Math.abs(startAngle - endAngle) - sot - eot;\n\n if (outerArcAngle < 0) {\n if (forceCornerRadius) {\n return \"M \".concat(solt.x, \",\").concat(solt.y, \"\\n a\").concat(cornerRadius, \",\").concat(cornerRadius, \",0,0,1,\").concat(cornerRadius * 2, \",0\\n a\").concat(cornerRadius, \",\").concat(cornerRadius, \",0,0,1,\").concat(-cornerRadius * 2, \",0\\n \");\n }\n\n return getSectorPath({\n cx: cx,\n cy: cy,\n innerRadius: innerRadius,\n outerRadius: outerRadius,\n startAngle: startAngle,\n endAngle: endAngle\n });\n }\n\n var path = \"M \".concat(solt.x, \",\").concat(solt.y, \"\\n A\").concat(cornerRadius, \",\").concat(cornerRadius, \",0,0,\").concat(+(sign < 0), \",\").concat(soct.x, \",\").concat(soct.y, \"\\n A\").concat(outerRadius, \",\").concat(outerRadius, \",0,\").concat(+(outerArcAngle > 180), \",\").concat(+(sign < 0), \",\").concat(eoct.x, \",\").concat(eoct.y, \"\\n A\").concat(cornerRadius, \",\").concat(cornerRadius, \",0,0,\").concat(+(sign < 0), \",\").concat(eolt.x, \",\").concat(eolt.y, \"\\n \");\n\n if (innerRadius > 0) {\n var _getTangentCircle3 = getTangentCircle({\n cx: cx,\n cy: cy,\n radius: innerRadius,\n angle: startAngle,\n sign: sign,\n isExternal: true,\n cornerRadius: cornerRadius,\n cornerIsExternal: cornerIsExternal\n }),\n sict = _getTangentCircle3.circleTangency,\n silt = _getTangentCircle3.lineTangency,\n sit = _getTangentCircle3.theta;\n\n var _getTangentCircle4 = getTangentCircle({\n cx: cx,\n cy: cy,\n radius: innerRadius,\n angle: endAngle,\n sign: -sign,\n isExternal: true,\n cornerRadius: cornerRadius,\n cornerIsExternal: cornerIsExternal\n }),\n eict = _getTangentCircle4.circleTangency,\n eilt = _getTangentCircle4.lineTangency,\n eit = _getTangentCircle4.theta;\n\n var innerArcAngle = cornerIsExternal ? Math.abs(startAngle - endAngle) : Math.abs(startAngle - endAngle) - sit - eit;\n\n if (innerArcAngle < 0 && cornerRadius === 0) {\n return \"\".concat(path, \"L\").concat(cx, \",\").concat(cy, \"Z\");\n }\n\n path += \"L\".concat(eilt.x, \",\").concat(eilt.y, \"\\n A\").concat(cornerRadius, \",\").concat(cornerRadius, \",0,0,\").concat(+(sign < 0), \",\").concat(eict.x, \",\").concat(eict.y, \"\\n A\").concat(innerRadius, \",\").concat(innerRadius, \",0,\").concat(+(innerArcAngle > 180), \",\").concat(+(sign > 0), \",\").concat(sict.x, \",\").concat(sict.y, \"\\n A\").concat(cornerRadius, \",\").concat(cornerRadius, \",0,0,\").concat(+(sign < 0), \",\").concat(silt.x, \",\").concat(silt.y, \"Z\");\n } else {\n path += \"L\".concat(cx, \",\").concat(cy, \"Z\");\n }\n\n return path;\n};\n\nexport var Sector = /*#__PURE__*/function (_PureComponent) {\n _inherits(Sector, _PureComponent);\n\n var _super = _createSuper(Sector);\n\n function Sector() {\n _classCallCheck(this, Sector);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(Sector, [{\n key: \"render\",\n value: function render() {\n var _this$props = this.props,\n cx = _this$props.cx,\n cy = _this$props.cy,\n innerRadius = _this$props.innerRadius,\n outerRadius = _this$props.outerRadius,\n cornerRadius = _this$props.cornerRadius,\n forceCornerRadius = _this$props.forceCornerRadius,\n cornerIsExternal = _this$props.cornerIsExternal,\n startAngle = _this$props.startAngle,\n endAngle = _this$props.endAngle,\n className = _this$props.className;\n\n if (outerRadius < innerRadius || startAngle === endAngle) {\n return null;\n }\n\n var layerClass = classNames('recharts-sector', className);\n var deltaRadius = outerRadius - innerRadius;\n var cr = getPercentValue(cornerRadius, deltaRadius, 0, true);\n var path;\n\n if (cr > 0 && Math.abs(startAngle - endAngle) < 360) {\n path = getSectorWithCorner({\n cx: cx,\n cy: cy,\n innerRadius: innerRadius,\n outerRadius: outerRadius,\n cornerRadius: Math.min(cr, deltaRadius / 2),\n forceCornerRadius: forceCornerRadius,\n cornerIsExternal: cornerIsExternal,\n startAngle: startAngle,\n endAngle: endAngle\n });\n } else {\n path = getSectorPath({\n cx: cx,\n cy: cy,\n innerRadius: innerRadius,\n outerRadius: outerRadius,\n startAngle: startAngle,\n endAngle: endAngle\n });\n }\n\n return /*#__PURE__*/React.createElement(\"path\", _extends({}, filterProps(this.props, true), {\n className: layerClass,\n d: path\n }));\n }\n }]);\n\n return Sector;\n}(PureComponent);\nSector.defaultProps = {\n cx: 0,\n cy: 0,\n innerRadius: 0,\n outerRadius: 0,\n startAngle: 0,\n endAngle: 0,\n cornerRadius: 0,\n forceCornerRadius: false,\n cornerIsExternal: false\n};","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n/**\n * @fileOverview Dot\n */\nimport React, { PureComponent } from 'react';\nimport classNames from 'classnames';\nimport { adaptEventHandlers, filterProps } from '../util/types';\nexport var Dot = /*#__PURE__*/function (_PureComponent) {\n _inherits(Dot, _PureComponent);\n\n var _super = _createSuper(Dot);\n\n function Dot() {\n _classCallCheck(this, Dot);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(Dot, [{\n key: \"render\",\n value: function render() {\n var _this$props = this.props,\n cx = _this$props.cx,\n cy = _this$props.cy,\n r = _this$props.r,\n className = _this$props.className;\n var layerClass = classNames('recharts-dot', className);\n\n if (cx === +cx && cy === +cy && r === +r) {\n return /*#__PURE__*/React.createElement(\"circle\", _extends({}, filterProps(this.props), adaptEventHandlers(this.props), {\n className: layerClass,\n cx: cx,\n cy: cy,\n r: r\n }));\n }\n\n return null;\n }\n }]);\n\n return Dot;\n}(PureComponent);","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport _get from \"lodash/get\";\nimport _isFunction from \"lodash/isFunction\";\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n/**\n * @fileOverview Cartesian Axis\n */\nimport React, { Component } from 'react';\nimport classNames from 'classnames';\nimport { shallowEqual } from '../util/ShallowEqual';\nimport { getStringSize } from '../util/DOMUtils';\nimport { Layer } from '../container/Layer';\nimport { Text } from '../component/Text';\nimport { Label } from '../component/Label';\nimport { Global } from '../util/Global';\nimport { isNumber, mathSign } from '../util/DataUtils';\nimport { filterProps, adaptEventsOfChild } from '../util/types';\nexport var CartesianAxis = /*#__PURE__*/function (_Component) {\n _inherits(CartesianAxis, _Component);\n\n var _super = _createSuper(CartesianAxis);\n\n function CartesianAxis(props) {\n var _this;\n\n _classCallCheck(this, CartesianAxis);\n\n _this = _super.call(this, props);\n _this.layerReference = void 0;\n _this.state = {\n fontSize: '',\n letterSpacing: ''\n };\n return _this;\n } // todo Array\n\n\n _createClass(CartesianAxis, [{\n key: \"shouldComponentUpdate\",\n value: function shouldComponentUpdate(_ref, nextState) {\n var viewBox = _ref.viewBox,\n restProps = _objectWithoutProperties(_ref, [\"viewBox\"]);\n\n // props.viewBox is sometimes generated every time -\n // check that specially as object equality is likely to fail\n var _this$props = this.props,\n viewBoxOld = _this$props.viewBox,\n restPropsOld = _objectWithoutProperties(_this$props, [\"viewBox\"]);\n\n return !shallowEqual(viewBox, viewBoxOld) || !shallowEqual(restProps, restPropsOld) || !shallowEqual(nextState, this.state);\n }\n }, {\n key: \"componentDidMount\",\n value: function componentDidMount() {\n var htmlLayer = this.layerReference;\n if (!htmlLayer) return;\n var tick = htmlLayer.getElementsByClassName('recharts-cartesian-axis-tick-value')[0];\n\n if (tick) {\n this.setState({\n fontSize: window.getComputedStyle(tick).fontSize,\n letterSpacing: window.getComputedStyle(tick).letterSpacing\n });\n }\n }\n /**\n * Calculate the coordinates of endpoints in ticks\n * @param {Object} data The data of a simple tick\n * @return {Object} (x1, y1): The coordinate of endpoint close to tick text\n * (x2, y2): The coordinate of endpoint close to axis\n */\n\n }, {\n key: \"getTickLineCoord\",\n value: function getTickLineCoord(data) {\n var _this$props2 = this.props,\n x = _this$props2.x,\n y = _this$props2.y,\n width = _this$props2.width,\n height = _this$props2.height,\n orientation = _this$props2.orientation,\n tickSize = _this$props2.tickSize,\n mirror = _this$props2.mirror,\n tickMargin = _this$props2.tickMargin;\n var x1, x2, y1, y2, tx, ty;\n var sign = mirror ? -1 : 1;\n var finalTickSize = data.tickSize || tickSize;\n var tickCoord = isNumber(data.tickCoord) ? data.tickCoord : data.coordinate;\n\n switch (orientation) {\n case 'top':\n x1 = x2 = data.coordinate;\n y2 = y + +!mirror * height;\n y1 = y2 - sign * finalTickSize;\n ty = y1 - sign * tickMargin;\n tx = tickCoord;\n break;\n\n case 'left':\n y1 = y2 = data.coordinate;\n x2 = x + +!mirror * width;\n x1 = x2 - sign * finalTickSize;\n tx = x1 - sign * tickMargin;\n ty = tickCoord;\n break;\n\n case 'right':\n y1 = y2 = data.coordinate;\n x2 = x + +mirror * width;\n x1 = x2 + sign * finalTickSize;\n tx = x1 + sign * tickMargin;\n ty = tickCoord;\n break;\n\n default:\n x1 = x2 = data.coordinate;\n y2 = y + +mirror * height;\n y1 = y2 + sign * finalTickSize;\n ty = y1 + sign * tickMargin;\n tx = tickCoord;\n break;\n }\n\n return {\n line: {\n x1: x1,\n y1: y1,\n x2: x2,\n y2: y2\n },\n tick: {\n x: tx,\n y: ty\n }\n };\n }\n }, {\n key: \"getTickTextAnchor\",\n value: function getTickTextAnchor() {\n var _this$props3 = this.props,\n orientation = _this$props3.orientation,\n mirror = _this$props3.mirror;\n var textAnchor;\n\n switch (orientation) {\n case 'left':\n textAnchor = mirror ? 'start' : 'end';\n break;\n\n case 'right':\n textAnchor = mirror ? 'end' : 'start';\n break;\n\n default:\n textAnchor = 'middle';\n break;\n }\n\n return textAnchor;\n }\n }, {\n key: \"getTickVerticalAnchor\",\n value: function getTickVerticalAnchor() {\n var _this$props4 = this.props,\n orientation = _this$props4.orientation,\n mirror = _this$props4.mirror;\n var verticalAnchor = 'end';\n\n switch (orientation) {\n case 'left':\n case 'right':\n verticalAnchor = 'middle';\n break;\n\n case 'top':\n verticalAnchor = mirror ? 'start' : 'end';\n break;\n\n default:\n verticalAnchor = mirror ? 'end' : 'start';\n break;\n }\n\n return verticalAnchor;\n }\n }, {\n key: \"renderAxisLine\",\n value: function renderAxisLine() {\n var _this$props5 = this.props,\n x = _this$props5.x,\n y = _this$props5.y,\n width = _this$props5.width,\n height = _this$props5.height,\n orientation = _this$props5.orientation,\n mirror = _this$props5.mirror,\n axisLine = _this$props5.axisLine;\n\n var props = _objectSpread(_objectSpread(_objectSpread({}, filterProps(this.props)), filterProps(axisLine)), {}, {\n fill: 'none'\n });\n\n if (orientation === 'top' || orientation === 'bottom') {\n var needHeight = +(orientation === 'top' && !mirror || orientation === 'bottom' && mirror);\n props = _objectSpread(_objectSpread({}, props), {}, {\n x1: x,\n y1: y + needHeight * height,\n x2: x + width,\n y2: y + needHeight * height\n });\n } else {\n var needWidth = +(orientation === 'left' && !mirror || orientation === 'right' && mirror);\n props = _objectSpread(_objectSpread({}, props), {}, {\n x1: x + needWidth * width,\n y1: y,\n x2: x + needWidth * width,\n y2: y + height\n });\n }\n\n return /*#__PURE__*/React.createElement(\"line\", _extends({}, props, {\n className: classNames('recharts-cartesian-axis-line', _get(axisLine, 'className'))\n }));\n }\n }, {\n key: \"renderTicks\",\n value:\n /**\n * render the ticks\n * @param {Array} ticks The ticks to actually render (overrides what was passed in props)\n * @return {ReactComponent} renderedTicks\n */\n function renderTicks(ticks, fontSize, letterSpacing) {\n var _this2 = this;\n\n var _this$props6 = this.props,\n tickLine = _this$props6.tickLine,\n stroke = _this$props6.stroke,\n tick = _this$props6.tick,\n tickFormatter = _this$props6.tickFormatter,\n unit = _this$props6.unit;\n var finalTicks = CartesianAxis.getTicks(_objectSpread(_objectSpread({}, this.props), {}, {\n ticks: ticks\n }), fontSize, letterSpacing);\n var textAnchor = this.getTickTextAnchor();\n var verticalAnchor = this.getTickVerticalAnchor();\n var axisProps = filterProps(this.props);\n var customTickProps = filterProps(tick);\n\n var tickLineProps = _objectSpread(_objectSpread({}, axisProps), {}, {\n fill: 'none'\n }, filterProps(tickLine));\n\n var items = finalTicks.map(function (entry, i) {\n var _this2$getTickLineCoo = _this2.getTickLineCoord(entry),\n lineCoord = _this2$getTickLineCoo.line,\n tickCoord = _this2$getTickLineCoo.tick;\n\n var tickProps = _objectSpread(_objectSpread(_objectSpread(_objectSpread({\n textAnchor: textAnchor,\n verticalAnchor: verticalAnchor\n }, axisProps), {}, {\n stroke: 'none',\n fill: stroke\n }, customTickProps), tickCoord), {}, {\n index: i,\n payload: entry,\n visibleTicksCount: finalTicks.length,\n tickFormatter: tickFormatter\n });\n\n return /*#__PURE__*/React.createElement(Layer, _extends({\n className: \"recharts-cartesian-axis-tick\",\n key: \"tick-\".concat(i) // eslint-disable-line react/no-array-index-key\n\n }, adaptEventsOfChild(_this2.props, entry, i)), tickLine && /*#__PURE__*/React.createElement(\"line\", _extends({}, tickLineProps, lineCoord, {\n className: classNames('recharts-cartesian-axis-tick-line', _get(tickLine, 'className'))\n })), tick && CartesianAxis.renderTickItem(tick, tickProps, \"\".concat(_isFunction(tickFormatter) ? tickFormatter(entry.value, i) : entry.value).concat(unit || '')));\n });\n return /*#__PURE__*/React.createElement(\"g\", {\n className: \"recharts-cartesian-axis-ticks\"\n }, items);\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this3 = this;\n\n var _this$props7 = this.props,\n axisLine = _this$props7.axisLine,\n width = _this$props7.width,\n height = _this$props7.height,\n ticksGenerator = _this$props7.ticksGenerator,\n className = _this$props7.className,\n hide = _this$props7.hide;\n\n if (hide) {\n return null;\n }\n\n var _this$props8 = this.props,\n ticks = _this$props8.ticks,\n noTicksProps = _objectWithoutProperties(_this$props8, [\"ticks\"]);\n\n var finalTicks = ticks;\n\n if (_isFunction(ticksGenerator)) {\n finalTicks = ticks && ticks.length > 0 ? ticksGenerator(this.props) : ticksGenerator(noTicksProps);\n }\n\n if (width <= 0 || height <= 0 || !finalTicks || !finalTicks.length) {\n return null;\n }\n\n return /*#__PURE__*/React.createElement(Layer, {\n className: classNames('recharts-cartesian-axis', className),\n ref: function ref(_ref2) {\n _this3.layerReference = _ref2;\n }\n }, axisLine && this.renderAxisLine(), this.renderTicks(finalTicks, this.state.fontSize, this.state.letterSpacing), Label.renderCallByParent(this.props));\n }\n }], [{\n key: \"getTicks\",\n value: function getTicks(props, fontSize, letterSpacing) {\n var tick = props.tick,\n ticks = props.ticks,\n viewBox = props.viewBox,\n minTickGap = props.minTickGap,\n orientation = props.orientation,\n interval = props.interval,\n tickFormatter = props.tickFormatter,\n unit = props.unit;\n\n if (!ticks || !ticks.length || !tick) {\n return [];\n }\n\n if (isNumber(interval) || Global.isSsr) {\n return CartesianAxis.getNumberIntervalTicks(ticks, typeof interval === 'number' && isNumber(interval) ? interval : 0);\n }\n\n if (interval === 'preserveStartEnd') {\n return CartesianAxis.getTicksStart({\n ticks: ticks,\n tickFormatter: tickFormatter,\n viewBox: viewBox,\n orientation: orientation,\n minTickGap: minTickGap,\n unit: unit,\n fontSize: fontSize,\n letterSpacing: letterSpacing\n }, true);\n }\n\n if (interval === 'preserveStart') {\n return CartesianAxis.getTicksStart({\n ticks: ticks,\n tickFormatter: tickFormatter,\n viewBox: viewBox,\n orientation: orientation,\n minTickGap: minTickGap,\n unit: unit,\n fontSize: fontSize,\n letterSpacing: letterSpacing\n });\n }\n\n return CartesianAxis.getTicksEnd({\n ticks: ticks,\n tickFormatter: tickFormatter,\n viewBox: viewBox,\n orientation: orientation,\n minTickGap: minTickGap,\n unit: unit,\n fontSize: fontSize,\n letterSpacing: letterSpacing\n });\n }\n }, {\n key: \"getNumberIntervalTicks\",\n value: function getNumberIntervalTicks(ticks, interval) {\n return ticks.filter(function (entry, i) {\n return i % (interval + 1) === 0;\n });\n }\n }, {\n key: \"getTicksStart\",\n value: function getTicksStart(_ref3, preserveEnd) {\n var ticks = _ref3.ticks,\n tickFormatter = _ref3.tickFormatter,\n viewBox = _ref3.viewBox,\n orientation = _ref3.orientation,\n minTickGap = _ref3.minTickGap,\n unit = _ref3.unit,\n fontSize = _ref3.fontSize,\n letterSpacing = _ref3.letterSpacing;\n var x = viewBox.x,\n y = viewBox.y,\n width = viewBox.width,\n height = viewBox.height;\n var sizeKey = orientation === 'top' || orientation === 'bottom' ? 'width' : 'height';\n var result = (ticks || []).slice(); // we need add the width of 'unit' only when sizeKey === 'width'\n\n var unitSize = unit && sizeKey === 'width' ? getStringSize(unit, {\n fontSize: fontSize,\n letterSpacing: letterSpacing\n })[sizeKey] : 0;\n var len = result.length;\n var sign = len >= 2 ? mathSign(result[1].coordinate - result[0].coordinate) : 1;\n var start, end;\n\n if (sign === 1) {\n start = sizeKey === 'width' ? x : y;\n end = sizeKey === 'width' ? x + width : y + height;\n } else {\n start = sizeKey === 'width' ? x + width : y + height;\n end = sizeKey === 'width' ? x : y;\n }\n\n if (preserveEnd) {\n // Try to guarantee the tail to be displayed\n var tail = ticks[len - 1];\n var tailContent = _isFunction(tickFormatter) ? tickFormatter(tail.value, len - 1) : tail.value;\n var tailSize = getStringSize(tailContent, {\n fontSize: fontSize,\n letterSpacing: letterSpacing\n })[sizeKey] + unitSize;\n var tailGap = sign * (tail.coordinate + sign * tailSize / 2 - end);\n result[len - 1] = tail = _objectSpread(_objectSpread({}, tail), {}, {\n tickCoord: tailGap > 0 ? tail.coordinate - tailGap * sign : tail.coordinate\n });\n var isTailShow = sign * (tail.tickCoord - sign * tailSize / 2 - start) >= 0 && sign * (tail.tickCoord + sign * tailSize / 2 - end) <= 0;\n\n if (isTailShow) {\n end = tail.tickCoord - sign * (tailSize / 2 + minTickGap);\n result[len - 1] = _objectSpread(_objectSpread({}, tail), {}, {\n isShow: true\n });\n }\n }\n\n var count = preserveEnd ? len - 1 : len;\n\n for (var i = 0; i < count; i++) {\n var entry = result[i];\n var content = _isFunction(tickFormatter) ? tickFormatter(entry.value, i) : entry.value;\n var size = getStringSize(content, {\n fontSize: fontSize,\n letterSpacing: letterSpacing\n })[sizeKey] + unitSize;\n\n if (i === 0) {\n var gap = sign * (entry.coordinate - sign * size / 2 - start);\n result[i] = entry = _objectSpread(_objectSpread({}, entry), {}, {\n tickCoord: gap < 0 ? entry.coordinate - gap * sign : entry.coordinate\n });\n } else {\n result[i] = entry = _objectSpread(_objectSpread({}, entry), {}, {\n tickCoord: entry.coordinate\n });\n }\n\n var isShow = sign * (entry.tickCoord - sign * size / 2 - start) >= 0 && sign * (entry.tickCoord + sign * size / 2 - end) <= 0;\n\n if (isShow) {\n start = entry.tickCoord + sign * (size / 2 + minTickGap);\n result[i] = _objectSpread(_objectSpread({}, entry), {}, {\n isShow: true\n });\n }\n }\n\n return result.filter(function (entry) {\n return entry.isShow;\n });\n }\n }, {\n key: \"getTicksEnd\",\n value: function getTicksEnd(_ref4) {\n var ticks = _ref4.ticks,\n tickFormatter = _ref4.tickFormatter,\n viewBox = _ref4.viewBox,\n orientation = _ref4.orientation,\n minTickGap = _ref4.minTickGap,\n unit = _ref4.unit,\n fontSize = _ref4.fontSize,\n letterSpacing = _ref4.letterSpacing;\n var x = viewBox.x,\n y = viewBox.y,\n width = viewBox.width,\n height = viewBox.height;\n var sizeKey = orientation === 'top' || orientation === 'bottom' ? 'width' : 'height'; // we need add the width of 'unit' only when sizeKey === 'width'\n\n var unitSize = unit && sizeKey === 'width' ? getStringSize(unit, {\n fontSize: fontSize,\n letterSpacing: letterSpacing\n })[sizeKey] : 0;\n var result = (ticks || []).slice();\n var len = result.length;\n var sign = len >= 2 ? mathSign(result[1].coordinate - result[0].coordinate) : 1;\n var start, end;\n\n if (sign === 1) {\n start = sizeKey === 'width' ? x : y;\n end = sizeKey === 'width' ? x + width : y + height;\n } else {\n start = sizeKey === 'width' ? x + width : y + height;\n end = sizeKey === 'width' ? x : y;\n }\n\n for (var i = len - 1; i >= 0; i--) {\n var entry = result[i];\n var content = _isFunction(tickFormatter) ? tickFormatter(entry.value, len - i - 1) : entry.value;\n var size = getStringSize(content, {\n fontSize: fontSize,\n letterSpacing: letterSpacing\n })[sizeKey] + unitSize;\n\n if (i === len - 1) {\n var gap = sign * (entry.coordinate + sign * size / 2 - end);\n result[i] = entry = _objectSpread(_objectSpread({}, entry), {}, {\n tickCoord: gap > 0 ? entry.coordinate - gap * sign : entry.coordinate\n });\n } else {\n result[i] = entry = _objectSpread(_objectSpread({}, entry), {}, {\n tickCoord: entry.coordinate\n });\n }\n\n var isShow = sign * (entry.tickCoord - sign * size / 2 - start) >= 0 && sign * (entry.tickCoord + sign * size / 2 - end) <= 0;\n\n if (isShow) {\n end = entry.tickCoord - sign * (size / 2 + minTickGap);\n result[i] = _objectSpread(_objectSpread({}, entry), {}, {\n isShow: true\n });\n }\n }\n\n return result.filter(function (entry) {\n return entry.isShow;\n });\n }\n }, {\n key: \"renderTickItem\",\n value: function renderTickItem(option, props, value) {\n var tickItem;\n\n if ( /*#__PURE__*/React.isValidElement(option)) {\n tickItem = /*#__PURE__*/React.cloneElement(option, props);\n } else if (_isFunction(option)) {\n tickItem = option(props);\n } else {\n tickItem = /*#__PURE__*/React.createElement(Text, _extends({}, props, {\n className: \"recharts-cartesian-axis-tick-value\"\n }), value);\n }\n\n return tickItem;\n }\n }]);\n\n return CartesianAxis;\n}(Component);\nCartesianAxis.displayName = 'CartesianAxis';\nCartesianAxis.defaultProps = {\n x: 0,\n y: 0,\n width: 0,\n height: 0,\n viewBox: {\n x: 0,\n y: 0,\n width: 0,\n height: 0\n },\n // The orientation of axis\n orientation: 'bottom',\n // The ticks\n ticks: [],\n stroke: '#666',\n tickLine: true,\n axisLine: true,\n tick: true,\n mirror: false,\n minTickGap: 5,\n // The width or height of tick\n tickSize: 6,\n tickMargin: 2,\n interval: 'preserveEnd'\n};","function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar PREFIX_LIST = ['Webkit', 'Moz', 'O', 'ms'];\nexport var generatePrefixStyle = function generatePrefixStyle(name, value) {\n if (!name) {\n return null;\n }\n\n var camelName = name.replace(/(\\w)/, function (v) {\n return v.toUpperCase();\n });\n var result = PREFIX_LIST.reduce(function (res, entry) {\n return _objectSpread(_objectSpread({}, res), {}, _defineProperty({}, entry + camelName, value));\n }, {});\n result[name] = value;\n return result;\n};","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport _isFunction from \"lodash/isFunction\";\nimport _range from \"lodash/range\";\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n/**\n * @fileOverview Brush\n */\nimport React, { PureComponent, Children } from 'react';\nimport classNames from 'classnames';\nimport { scalePoint } from 'd3-scale';\nimport { Layer } from '../container/Layer';\nimport { Text } from '../component/Text';\nimport { getValueByDataKey } from '../util/ChartUtils';\nimport { isNumber } from '../util/DataUtils';\nimport { generatePrefixStyle } from '../util/CssPrefixUtils';\nimport { filterProps } from '../util/types';\n\nvar createScale = function createScale(_ref) {\n var data = _ref.data,\n startIndex = _ref.startIndex,\n endIndex = _ref.endIndex,\n x = _ref.x,\n width = _ref.width,\n travellerWidth = _ref.travellerWidth;\n\n if (!data || !data.length) {\n return {};\n }\n\n var len = data.length;\n var scale = scalePoint().domain(_range(0, len)).range([x, x + width - travellerWidth]);\n var scaleValues = scale.domain().map(function (entry) {\n return scale(entry);\n });\n return {\n isTextActive: false,\n isSlideMoving: false,\n isTravellerMoving: false,\n startX: scale(startIndex),\n endX: scale(endIndex),\n scale: scale,\n scaleValues: scaleValues\n };\n};\n\nvar isTouch = function isTouch(e) {\n return e.changedTouches && !!e.changedTouches.length;\n};\n\nexport var Brush = /*#__PURE__*/function (_PureComponent) {\n _inherits(Brush, _PureComponent);\n\n var _super = _createSuper(Brush);\n\n function Brush(props) {\n var _this;\n\n _classCallCheck(this, Brush);\n\n _this = _super.call(this, props);\n _this.leaveTimer = void 0;\n _this.travellerDragStartHandlers = void 0;\n\n _this.handleDrag = function (e) {\n if (_this.leaveTimer) {\n clearTimeout(_this.leaveTimer);\n _this.leaveTimer = null;\n }\n\n if (_this.state.isTravellerMoving) {\n _this.handleTravellerMove(e);\n } else if (_this.state.isSlideMoving) {\n _this.handleSlideDrag(e);\n }\n };\n\n _this.handleTouchMove = function (e) {\n if (e.changedTouches != null && e.changedTouches.length > 0) {\n _this.handleDrag(e.changedTouches[0]);\n }\n };\n\n _this.handleDragEnd = function () {\n _this.setState({\n isTravellerMoving: false,\n isSlideMoving: false\n });\n\n _this.detachDragEndListener();\n };\n\n _this.handleLeaveWrapper = function () {\n if (_this.state.isTravellerMoving || _this.state.isSlideMoving) {\n _this.leaveTimer = window.setTimeout(_this.handleDragEnd, _this.props.leaveTimeOut);\n }\n };\n\n _this.handleEnterSlideOrTraveller = function () {\n _this.setState({\n isTextActive: true\n });\n };\n\n _this.handleLeaveSlideOrTraveller = function () {\n _this.setState({\n isTextActive: false\n });\n };\n\n _this.handleSlideDragStart = function (e) {\n var event = isTouch(e) ? e.changedTouches[0] : e;\n\n _this.setState({\n isTravellerMoving: false,\n isSlideMoving: true,\n slideMoveStartX: event.pageX\n });\n\n _this.attachDragEndListener();\n };\n\n _this.travellerDragStartHandlers = {\n startX: _this.handleTravellerDragStart.bind(_assertThisInitialized(_this), 'startX'),\n endX: _this.handleTravellerDragStart.bind(_assertThisInitialized(_this), 'endX')\n };\n _this.state = {};\n return _this;\n }\n\n _createClass(Brush, [{\n key: \"componentWillUnmount\",\n value: function componentWillUnmount() {\n if (this.leaveTimer) {\n clearTimeout(this.leaveTimer);\n this.leaveTimer = null;\n }\n\n this.detachDragEndListener();\n }\n }, {\n key: \"getIndex\",\n value: function getIndex(_ref2) {\n var startX = _ref2.startX,\n endX = _ref2.endX;\n var scaleValues = this.state.scaleValues;\n var _this$props = this.props,\n gap = _this$props.gap,\n data = _this$props.data;\n var lastIndex = data.length - 1;\n var min = Math.min(startX, endX);\n var max = Math.max(startX, endX);\n var minIndex = Brush.getIndexInRange(scaleValues, min);\n var maxIndex = Brush.getIndexInRange(scaleValues, max);\n return {\n startIndex: minIndex - minIndex % gap,\n endIndex: maxIndex === lastIndex ? lastIndex : maxIndex - maxIndex % gap\n };\n }\n }, {\n key: \"getTextOfTick\",\n value: function getTextOfTick(index) {\n var _this$props2 = this.props,\n data = _this$props2.data,\n tickFormatter = _this$props2.tickFormatter,\n dataKey = _this$props2.dataKey;\n var text = getValueByDataKey(data[index], dataKey, index);\n return _isFunction(tickFormatter) ? tickFormatter(text, index) : text;\n }\n }, {\n key: \"attachDragEndListener\",\n value: function attachDragEndListener() {\n window.addEventListener('mouseup', this.handleDragEnd, true);\n window.addEventListener('touchend', this.handleDragEnd, true);\n }\n }, {\n key: \"detachDragEndListener\",\n value: function detachDragEndListener() {\n window.removeEventListener('mouseup', this.handleDragEnd, true);\n window.removeEventListener('touchend', this.handleDragEnd, true);\n }\n }, {\n key: \"handleSlideDrag\",\n value: function handleSlideDrag(e) {\n var _this$state = this.state,\n slideMoveStartX = _this$state.slideMoveStartX,\n startX = _this$state.startX,\n endX = _this$state.endX;\n var _this$props3 = this.props,\n x = _this$props3.x,\n width = _this$props3.width,\n travellerWidth = _this$props3.travellerWidth,\n startIndex = _this$props3.startIndex,\n endIndex = _this$props3.endIndex,\n onChange = _this$props3.onChange;\n var delta = e.pageX - slideMoveStartX;\n\n if (delta > 0) {\n delta = Math.min(delta, x + width - travellerWidth - endX, x + width - travellerWidth - startX);\n } else if (delta < 0) {\n delta = Math.max(delta, x - startX, x - endX);\n }\n\n var newIndex = this.getIndex({\n startX: startX + delta,\n endX: endX + delta\n });\n\n if ((newIndex.startIndex !== startIndex || newIndex.endIndex !== endIndex) && onChange) {\n onChange(newIndex);\n }\n\n this.setState({\n startX: startX + delta,\n endX: endX + delta,\n slideMoveStartX: e.pageX\n });\n }\n }, {\n key: \"handleTravellerDragStart\",\n value: function handleTravellerDragStart(id, e) {\n var event = isTouch(e) ? e.changedTouches[0] : e;\n this.setState({\n isSlideMoving: false,\n isTravellerMoving: true,\n movingTravellerId: id,\n brushMoveStartX: event.pageX\n });\n this.attachDragEndListener();\n }\n }, {\n key: \"handleTravellerMove\",\n value: function handleTravellerMove(e) {\n var _this$setState;\n\n var _this$state2 = this.state,\n brushMoveStartX = _this$state2.brushMoveStartX,\n movingTravellerId = _this$state2.movingTravellerId,\n endX = _this$state2.endX,\n startX = _this$state2.startX;\n var prevValue = this.state[movingTravellerId];\n var _this$props4 = this.props,\n x = _this$props4.x,\n width = _this$props4.width,\n travellerWidth = _this$props4.travellerWidth,\n onChange = _this$props4.onChange,\n gap = _this$props4.gap,\n data = _this$props4.data;\n var params = {\n startX: this.state.startX,\n endX: this.state.endX\n };\n var delta = e.pageX - brushMoveStartX;\n\n if (delta > 0) {\n delta = Math.min(delta, x + width - travellerWidth - prevValue);\n } else if (delta < 0) {\n delta = Math.max(delta, x - prevValue);\n }\n\n params[movingTravellerId] = prevValue + delta;\n var newIndex = this.getIndex(params);\n var startIndex = newIndex.startIndex,\n endIndex = newIndex.endIndex;\n\n var isFullGap = function isFullGap() {\n var lastIndex = data.length - 1;\n\n if (movingTravellerId === 'startX' && (endX > startX ? startIndex % gap === 0 : endIndex % gap === 0) || endX < startX && endIndex === lastIndex || movingTravellerId === 'endX' && (endX > startX ? endIndex % gap === 0 : startIndex % gap === 0) || endX > startX && endIndex === lastIndex) {\n return true;\n }\n\n return false;\n };\n\n this.setState((_this$setState = {}, _defineProperty(_this$setState, movingTravellerId, prevValue + delta), _defineProperty(_this$setState, \"brushMoveStartX\", e.pageX), _this$setState), function () {\n if (onChange) {\n if (isFullGap()) {\n onChange(newIndex);\n }\n }\n });\n }\n }, {\n key: \"renderBackground\",\n value: function renderBackground() {\n var _this$props5 = this.props,\n x = _this$props5.x,\n y = _this$props5.y,\n width = _this$props5.width,\n height = _this$props5.height,\n fill = _this$props5.fill,\n stroke = _this$props5.stroke;\n return /*#__PURE__*/React.createElement(\"rect\", {\n stroke: stroke,\n fill: fill,\n x: x,\n y: y,\n width: width,\n height: height\n });\n }\n }, {\n key: \"renderPanorama\",\n value: function renderPanorama() {\n var _this$props6 = this.props,\n x = _this$props6.x,\n y = _this$props6.y,\n width = _this$props6.width,\n height = _this$props6.height,\n data = _this$props6.data,\n children = _this$props6.children,\n padding = _this$props6.padding;\n var chartElement = Children.only(children);\n\n if (!chartElement) {\n return null;\n }\n\n return /*#__PURE__*/React.cloneElement(chartElement, {\n x: x,\n y: y,\n width: width,\n height: height,\n margin: padding,\n compact: true,\n data: data\n });\n }\n }, {\n key: \"renderTravellerLayer\",\n value: function renderTravellerLayer(travellerX, id) {\n var _this$props7 = this.props,\n y = _this$props7.y,\n travellerWidth = _this$props7.travellerWidth,\n height = _this$props7.height,\n traveller = _this$props7.traveller;\n var x = Math.max(travellerX, this.props.x);\n\n var travellerProps = _objectSpread(_objectSpread({}, filterProps(this.props)), {}, {\n x: x,\n y: y,\n width: travellerWidth,\n height: height\n });\n\n return /*#__PURE__*/React.createElement(Layer, {\n className: \"recharts-brush-traveller\",\n onMouseEnter: this.handleEnterSlideOrTraveller,\n onMouseLeave: this.handleLeaveSlideOrTraveller,\n onMouseDown: this.travellerDragStartHandlers[id],\n onTouchStart: this.travellerDragStartHandlers[id],\n style: {\n cursor: 'col-resize'\n }\n }, Brush.renderTraveller(traveller, travellerProps));\n }\n }, {\n key: \"renderSlide\",\n value: function renderSlide(startX, endX) {\n var _this$props8 = this.props,\n y = _this$props8.y,\n height = _this$props8.height,\n stroke = _this$props8.stroke,\n travellerWidth = _this$props8.travellerWidth;\n var x = Math.min(startX, endX) + travellerWidth;\n var width = Math.max(Math.abs(endX - startX) - travellerWidth, 0);\n return /*#__PURE__*/React.createElement(\"rect\", {\n className: \"recharts-brush-slide\",\n onMouseEnter: this.handleEnterSlideOrTraveller,\n onMouseLeave: this.handleLeaveSlideOrTraveller,\n onMouseDown: this.handleSlideDragStart,\n onTouchStart: this.handleSlideDragStart,\n style: {\n cursor: 'move'\n },\n stroke: \"none\",\n fill: stroke,\n fillOpacity: 0.2,\n x: x,\n y: y,\n width: width,\n height: height\n });\n }\n }, {\n key: \"renderText\",\n value: function renderText() {\n var _this$props9 = this.props,\n startIndex = _this$props9.startIndex,\n endIndex = _this$props9.endIndex,\n y = _this$props9.y,\n height = _this$props9.height,\n travellerWidth = _this$props9.travellerWidth,\n stroke = _this$props9.stroke;\n var _this$state3 = this.state,\n startX = _this$state3.startX,\n endX = _this$state3.endX;\n var offset = 5;\n var attrs = {\n pointerEvents: 'none',\n fill: stroke\n };\n return /*#__PURE__*/React.createElement(Layer, {\n className: \"recharts-brush-texts\"\n }, /*#__PURE__*/React.createElement(Text, _extends({\n textAnchor: \"end\",\n verticalAnchor: \"middle\",\n x: Math.min(startX, endX) - offset,\n y: y + height / 2\n }, attrs), this.getTextOfTick(startIndex)), /*#__PURE__*/React.createElement(Text, _extends({\n textAnchor: \"start\",\n verticalAnchor: \"middle\",\n x: Math.max(startX, endX) + travellerWidth + offset,\n y: y + height / 2\n }, attrs), this.getTextOfTick(endIndex)));\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this$props10 = this.props,\n data = _this$props10.data,\n className = _this$props10.className,\n children = _this$props10.children,\n x = _this$props10.x,\n y = _this$props10.y,\n width = _this$props10.width,\n height = _this$props10.height,\n alwaysShowText = _this$props10.alwaysShowText;\n var _this$state4 = this.state,\n startX = _this$state4.startX,\n endX = _this$state4.endX,\n isTextActive = _this$state4.isTextActive,\n isSlideMoving = _this$state4.isSlideMoving,\n isTravellerMoving = _this$state4.isTravellerMoving;\n\n if (!data || !data.length || !isNumber(x) || !isNumber(y) || !isNumber(width) || !isNumber(height) || width <= 0 || height <= 0) {\n return null;\n }\n\n var layerClass = classNames('recharts-brush', className);\n var isPanoramic = React.Children.count(children) === 1;\n var style = generatePrefixStyle('userSelect', 'none');\n return /*#__PURE__*/React.createElement(Layer, {\n className: layerClass,\n onMouseMove: this.handleDrag,\n onMouseLeave: this.handleLeaveWrapper,\n onTouchMove: this.handleTouchMove,\n style: style\n }, this.renderBackground(), isPanoramic && this.renderPanorama(), this.renderSlide(startX, endX), this.renderTravellerLayer(startX, 'startX'), this.renderTravellerLayer(endX, 'endX'), (isTextActive || isSlideMoving || isTravellerMoving || alwaysShowText) && this.renderText());\n }\n }], [{\n key: \"renderDefaultTraveller\",\n value: function renderDefaultTraveller(props) {\n var x = props.x,\n y = props.y,\n width = props.width,\n height = props.height,\n stroke = props.stroke;\n var lineY = Math.floor(y + height / 2) - 1;\n return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(\"rect\", {\n x: x,\n y: y,\n width: width,\n height: height,\n fill: stroke,\n stroke: \"none\"\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: x + 1,\n y1: lineY,\n x2: x + width - 1,\n y2: lineY,\n fill: \"none\",\n stroke: \"#fff\"\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: x + 1,\n y1: lineY + 2,\n x2: x + width - 1,\n y2: lineY + 2,\n fill: \"none\",\n stroke: \"#fff\"\n }));\n }\n }, {\n key: \"renderTraveller\",\n value: function renderTraveller(option, props) {\n var rectangle;\n\n if ( /*#__PURE__*/React.isValidElement(option)) {\n rectangle = /*#__PURE__*/React.cloneElement(option, props);\n } else if (_isFunction(option)) {\n rectangle = option(props);\n } else {\n rectangle = Brush.renderDefaultTraveller(props);\n }\n\n return rectangle;\n }\n }, {\n key: \"getDerivedStateFromProps\",\n value: function getDerivedStateFromProps(nextProps, prevState) {\n var data = nextProps.data,\n width = nextProps.width,\n x = nextProps.x,\n travellerWidth = nextProps.travellerWidth,\n updateId = nextProps.updateId,\n startIndex = nextProps.startIndex,\n endIndex = nextProps.endIndex;\n\n if (data !== prevState.prevData || updateId !== prevState.prevUpdateId) {\n return _objectSpread({\n prevData: data,\n prevTravellerWidth: travellerWidth,\n prevUpdateId: updateId,\n prevX: x,\n prevWidth: width\n }, data && data.length ? createScale({\n data: data,\n width: width,\n x: x,\n travellerWidth: travellerWidth,\n startIndex: startIndex,\n endIndex: endIndex\n }) : {\n scale: null,\n scaleValues: null\n });\n }\n\n if (prevState.scale && (width !== prevState.prevWidth || x !== prevState.prevX || travellerWidth !== prevState.prevTravellerWidth)) {\n prevState.scale.range([x, x + width - travellerWidth]);\n var scaleValues = prevState.scale.domain().map(function (entry) {\n return prevState.scale(entry);\n });\n return {\n prevData: data,\n prevTravellerWidth: travellerWidth,\n prevUpdateId: updateId,\n prevX: x,\n prevWidth: width,\n startX: prevState.scale(nextProps.startIndex),\n endX: prevState.scale(nextProps.endIndex),\n scaleValues: scaleValues\n };\n }\n\n return null;\n }\n }, {\n key: \"getIndexInRange\",\n value: function getIndexInRange(range, x) {\n var len = range.length;\n var start = 0;\n var end = len - 1;\n\n while (end - start > 1) {\n var middle = Math.floor((start + end) / 2);\n\n if (range[middle] > x) {\n end = middle;\n } else {\n start = middle;\n }\n }\n\n return x >= range[end] ? end : start;\n }\n }]);\n\n return Brush;\n}(PureComponent);\nBrush.displayName = 'Brush';\nBrush.defaultProps = {\n height: 40,\n travellerWidth: 5,\n gap: 1,\n fill: '#fff',\n stroke: '#666',\n padding: {\n top: 1,\n right: 1,\n bottom: 1,\n left: 1\n },\n leaveTimeOut: 1000,\n alwaysShowText: false\n};","export var ifOverflowMatches = function ifOverflowMatches(props, value) {\n var alwaysShow = props.alwaysShow;\n var ifOverflow = props.ifOverflow;\n\n if (alwaysShow) {\n ifOverflow = 'extendDomain';\n }\n\n return ifOverflow === value;\n};","import _every from \"lodash/every\";\nimport _mapValues from \"lodash/mapValues\";\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nimport { getTicksOfScale, parseScale, checkDomainOfScale, getBandSizeOfAxis } from './ChartUtils';\nimport { findChildByType } from './ReactUtils';\nimport { getPercentValue } from './DataUtils';\n/**\n * Calculate the scale function, position, width, height of axes\n * @param {Object} props Latest props\n * @param {Object} axisMap The configuration of axes\n * @param {Object} offset The offset of main part in the svg element\n * @param {String} axisType The type of axes, x-axis or y-axis\n * @param {String} chartName The name of chart\n * @return {Object} Configuration\n */\n\nexport var formatAxisMap = function formatAxisMap(props, axisMap, offset, axisType, chartName) {\n var width = props.width,\n height = props.height,\n layout = props.layout,\n children = props.children;\n var ids = Object.keys(axisMap);\n var steps = {\n left: offset.left,\n leftMirror: offset.left,\n right: width - offset.right,\n rightMirror: width - offset.right,\n top: offset.top,\n topMirror: offset.top,\n bottom: height - offset.bottom,\n bottomMirror: height - offset.bottom\n };\n var hasBar = !!findChildByType(children, 'Bar');\n return ids.reduce(function (result, id) {\n var axis = axisMap[id];\n var orientation = axis.orientation,\n domain = axis.domain,\n _axis$padding = axis.padding,\n padding = _axis$padding === void 0 ? {} : _axis$padding,\n mirror = axis.mirror,\n reversed = axis.reversed;\n var offsetKey = \"\".concat(orientation).concat(mirror ? 'Mirror' : '');\n var calculatedPadding, range, x, y, needSpace;\n\n if (axis.type === 'number' && (axis.padding === 'gap' || axis.padding === 'no-gap')) {\n var diff = domain[1] - domain[0];\n var smallestDistanceBetweenValues = Infinity;\n var sortedValues = axis.categoricalDomain.sort();\n sortedValues.forEach(function (value, index) {\n if (index > 0) {\n smallestDistanceBetweenValues = Math.min((value || 0) - (sortedValues[index - 1] || 0), smallestDistanceBetweenValues);\n }\n });\n var smallestDistanceInPercent = smallestDistanceBetweenValues / diff;\n var rangeWidth = axis.layout === 'vertical' ? offset.height : offset.width;\n\n if (axis.padding === 'gap') {\n calculatedPadding = smallestDistanceInPercent * rangeWidth / 2;\n }\n\n if (axis.padding === 'no-gap') {\n var gap = getPercentValue(props.barCategoryGap, smallestDistanceInPercent * rangeWidth);\n var halfBand = smallestDistanceInPercent * rangeWidth / 2;\n calculatedPadding = halfBand - gap - (halfBand - gap) / rangeWidth * gap;\n }\n }\n\n if (axisType === 'xAxis') {\n range = [offset.left + (padding.left || 0) + (calculatedPadding || 0), offset.left + offset.width - (padding.right || 0) - (calculatedPadding || 0)];\n } else if (axisType === 'yAxis') {\n range = layout === 'horizontal' ? [offset.top + offset.height - (padding.bottom || 0), offset.top + (padding.top || 0)] : [offset.top + (padding.top || 0) + (calculatedPadding || 0), offset.top + offset.height - (padding.bottom || 0) - (calculatedPadding || 0)];\n } else {\n range = axis.range;\n }\n\n if (reversed) {\n range = [range[1], range[0]];\n }\n\n var _parseScale = parseScale(axis, chartName, hasBar),\n scale = _parseScale.scale,\n realScaleType = _parseScale.realScaleType;\n\n scale.domain(domain).range(range);\n checkDomainOfScale(scale);\n var ticks = getTicksOfScale(scale, _objectSpread(_objectSpread({}, axis), {}, {\n realScaleType: realScaleType\n }));\n\n if (axisType === 'xAxis') {\n needSpace = orientation === 'top' && !mirror || orientation === 'bottom' && mirror;\n x = offset.left;\n y = steps[offsetKey] - needSpace * axis.height;\n } else if (axisType === 'yAxis') {\n needSpace = orientation === 'left' && !mirror || orientation === 'right' && mirror;\n x = steps[offsetKey] - needSpace * axis.width;\n y = offset.top;\n }\n\n var finalAxis = _objectSpread(_objectSpread(_objectSpread({}, axis), ticks), {}, {\n realScaleType: realScaleType,\n x: x,\n y: y,\n scale: scale,\n width: axisType === 'xAxis' ? offset.width : axis.width,\n height: axisType === 'yAxis' ? offset.height : axis.height\n });\n\n finalAxis.bandSize = getBandSizeOfAxis(finalAxis, ticks);\n\n if (!axis.hide && axisType === 'xAxis') {\n steps[offsetKey] += (needSpace ? -1 : 1) * finalAxis.height;\n } else if (!axis.hide) {\n steps[offsetKey] += (needSpace ? -1 : 1) * finalAxis.width;\n }\n\n return _objectSpread(_objectSpread({}, result), {}, _defineProperty({}, id, finalAxis));\n }, {});\n};\nexport var rectWithPoints = function rectWithPoints(_ref, _ref2) {\n var x1 = _ref.x,\n y1 = _ref.y;\n var x2 = _ref2.x,\n y2 = _ref2.y;\n return {\n x: Math.min(x1, x2),\n y: Math.min(y1, y2),\n width: Math.abs(x2 - x1),\n height: Math.abs(y2 - y1)\n };\n};\n/**\n * Compute the x, y, width, and height of a box from two reference points.\n * @param {Object} coords x1, x2, y1, and y2\n * @return {Object} object\n */\n\nexport var rectWithCoords = function rectWithCoords(_ref3) {\n var x1 = _ref3.x1,\n y1 = _ref3.y1,\n x2 = _ref3.x2,\n y2 = _ref3.y2;\n return rectWithPoints({\n x: x1,\n y: y1\n }, {\n x: x2,\n y: y2\n });\n};\nexport var ScaleHelper = /*#__PURE__*/function () {\n function ScaleHelper(scale) {\n _classCallCheck(this, ScaleHelper);\n\n this.scale = void 0;\n this.scale = scale;\n }\n\n _createClass(ScaleHelper, [{\n key: \"domain\",\n get: function get() {\n return this.scale.domain;\n }\n }, {\n key: \"range\",\n get: function get() {\n return this.scale.range;\n }\n }, {\n key: \"rangeMin\",\n get: function get() {\n return this.range()[0];\n }\n }, {\n key: \"rangeMax\",\n get: function get() {\n return this.range()[1];\n }\n }, {\n key: \"bandwidth\",\n get: function get() {\n return this.scale.bandwidth;\n }\n }, {\n key: \"apply\",\n value: function apply(value) {\n var _ref4 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},\n bandAware = _ref4.bandAware,\n position = _ref4.position;\n\n if (value === undefined) {\n return undefined;\n }\n\n if (position) {\n switch (position) {\n case 'start':\n {\n return this.scale(value);\n }\n\n case 'middle':\n {\n var offset = this.bandwidth ? this.bandwidth() / 2 : 0;\n return this.scale(value) + offset;\n }\n\n case 'end':\n {\n var _offset = this.bandwidth ? this.bandwidth() : 0;\n\n return this.scale(value) + _offset;\n }\n\n default:\n {\n return this.scale(value);\n }\n }\n }\n\n if (bandAware) {\n var _offset2 = this.bandwidth ? this.bandwidth() / 2 : 0;\n\n return this.scale(value) + _offset2;\n }\n\n return this.scale(value);\n }\n }, {\n key: \"isInRange\",\n value: function isInRange(value) {\n var range = this.range();\n var first = range[0];\n var last = range[range.length - 1];\n return first <= last ? value >= first && value <= last : value >= last && value <= first;\n }\n }], [{\n key: \"create\",\n value: function create(obj) {\n return new ScaleHelper(obj);\n }\n }]);\n\n return ScaleHelper;\n}();\nScaleHelper.EPS = 1e-4;\nexport var createLabeledScales = function createLabeledScales(options) {\n var scales = Object.keys(options).reduce(function (res, key) {\n return _objectSpread(_objectSpread({}, res), {}, _defineProperty({}, key, ScaleHelper.create(options[key])));\n }, {});\n return _objectSpread(_objectSpread({}, scales), {}, {\n apply: function apply(coord) {\n var _ref5 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},\n bandAware = _ref5.bandAware,\n position = _ref5.position;\n\n return _mapValues(coord, function (value, label) {\n return scales[label].apply(value, {\n bandAware: bandAware,\n position: position\n });\n });\n },\n isInRange: function isInRange(coord) {\n return _every(coord, function (value, label) {\n return scales[label].isInRange(value);\n });\n }\n });\n};","/* eslint no-console: 0 */\nvar isDev = process.env.NODE_ENV !== 'production';\nexport var warn = function warn(condition, format) {\n for (var _len = arguments.length, args = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {\n args[_key - 2] = arguments[_key];\n }\n\n if (isDev && typeof console !== 'undefined' && console.warn) {\n if (format === undefined) {\n console.warn('LogUtils requires an error message argument');\n }\n\n if (!condition) {\n if (format === undefined) {\n console.warn('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');\n } else {\n var argIndex = 0;\n console.warn(format.replace(/%s/g, function () {\n return args[argIndex++];\n }));\n }\n }\n }\n};","import _isFunction from \"lodash/isFunction\";\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n/**\n * @fileOverview Reference Dot\n */\nimport React from 'react';\nimport classNames from 'classnames';\nimport { Layer } from '../container/Layer';\nimport { Dot } from '../shape/Dot';\nimport { Label } from '../component/Label';\nimport { isNumOrStr } from '../util/DataUtils';\nimport { ifOverflowMatches } from '../util/IfOverflowMatches';\nimport { createLabeledScales } from '../util/CartesianUtils';\nimport { warn } from '../util/LogUtils';\nimport { filterProps } from '../util/types';\n\nvar getCoordinate = function getCoordinate(props) {\n var x = props.x,\n y = props.y,\n xAxis = props.xAxis,\n yAxis = props.yAxis;\n var scales = createLabeledScales({\n x: xAxis.scale,\n y: yAxis.scale\n });\n var result = scales.apply({\n x: x,\n y: y\n }, {\n bandAware: true\n });\n\n if (ifOverflowMatches(props, 'discard') && !scales.isInRange(result)) {\n return null;\n }\n\n return result;\n};\n\nexport function ReferenceDot(props) {\n var x = props.x,\n y = props.y,\n r = props.r,\n alwaysShow = props.alwaysShow,\n clipPathId = props.clipPathId;\n var isX = isNumOrStr(x);\n var isY = isNumOrStr(y);\n warn(alwaysShow === undefined, 'The alwaysShow prop is deprecated. Please use ifOverflow=\"extendDomain\" instead.');\n\n if (!isX || !isY) {\n return null;\n }\n\n var coordinate = getCoordinate(props);\n\n if (!coordinate) {\n return null;\n }\n\n var cx = coordinate.x,\n cy = coordinate.y;\n var shape = props.shape,\n className = props.className;\n var clipPath = ifOverflowMatches(props, 'hidden') ? \"url(#\".concat(clipPathId, \")\") : undefined;\n\n var dotProps = _objectSpread(_objectSpread({\n clipPath: clipPath\n }, filterProps(props, true)), {}, {\n cx: cx,\n cy: cy\n });\n\n return /*#__PURE__*/React.createElement(Layer, {\n className: classNames('recharts-reference-dot', className)\n }, ReferenceDot.renderDot(shape, dotProps), Label.renderCallByParent(props, {\n x: cx - r,\n y: cy - r,\n width: 2 * r,\n height: 2 * r\n }));\n}\nReferenceDot.displayName = 'ReferenceDot';\nReferenceDot.defaultProps = {\n isFront: false,\n ifOverflow: 'discard',\n xAxisId: 0,\n yAxisId: 0,\n r: 10,\n fill: '#fff',\n stroke: '#ccc',\n fillOpacity: 1,\n strokeWidth: 1\n};\n\nReferenceDot.renderDot = function (option, props) {\n var dot;\n\n if ( /*#__PURE__*/React.isValidElement(option)) {\n dot = /*#__PURE__*/React.cloneElement(option, props);\n } else if (_isFunction(option)) {\n dot = option(props);\n } else {\n dot = /*#__PURE__*/React.createElement(Dot, _extends({}, props, {\n cx: props.cx,\n cy: props.cy,\n className: \"recharts-reference-dot-dot\"\n }));\n }\n\n return dot;\n};","import _some from \"lodash/some\";\nimport _isFunction from \"lodash/isFunction\";\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\n\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction _iterableToArrayLimit(arr, i) { if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\n/**\n * @fileOverview Reference Line\n */\nimport React from 'react';\nimport classNames from 'classnames';\nimport { Layer } from '../container/Layer';\nimport { Label } from '../component/Label';\nimport { ifOverflowMatches } from '../util/IfOverflowMatches';\nimport { isNumOrStr } from '../util/DataUtils';\nimport { createLabeledScales, rectWithCoords } from '../util/CartesianUtils';\nimport { warn } from '../util/LogUtils';\nimport { filterProps } from '../util/types';\n\nvar renderLine = function renderLine(option, props) {\n var line;\n\n if ( /*#__PURE__*/React.isValidElement(option)) {\n line = /*#__PURE__*/React.cloneElement(option, props);\n } else if (_isFunction(option)) {\n line = option(props);\n } else {\n line = /*#__PURE__*/React.createElement(\"line\", _extends({}, props, {\n className: \"recharts-reference-line-line\"\n }));\n }\n\n return line;\n}; // TODO: ScaleHelper\n\n\nvar getEndPoints = function getEndPoints(scales, isFixedX, isFixedY, isSegment, props) {\n var _props$viewBox = props.viewBox,\n x = _props$viewBox.x,\n y = _props$viewBox.y,\n width = _props$viewBox.width,\n height = _props$viewBox.height,\n position = props.position;\n\n if (isFixedY) {\n var yCoord = props.y,\n orientation = props.yAxis.orientation;\n var coord = scales.y.apply(yCoord, {\n position: position\n });\n\n if (ifOverflowMatches(props, 'discard') && !scales.y.isInRange(coord)) {\n return null;\n }\n\n var points = [{\n x: x + width,\n y: coord\n }, {\n x: x,\n y: coord\n }];\n return orientation === 'left' ? points.reverse() : points;\n }\n\n if (isFixedX) {\n var xCoord = props.x,\n _orientation = props.xAxis.orientation;\n\n var _coord = scales.x.apply(xCoord, {\n position: position\n });\n\n if (ifOverflowMatches(props, 'discard') && !scales.x.isInRange(_coord)) {\n return null;\n }\n\n var _points = [{\n x: _coord,\n y: y + height\n }, {\n x: _coord,\n y: y\n }];\n return _orientation === 'top' ? _points.reverse() : _points;\n }\n\n if (isSegment) {\n var segment = props.segment;\n\n var _points2 = segment.map(function (p) {\n return scales.apply(p, {\n position: position\n });\n });\n\n if (ifOverflowMatches(props, 'discard') && _some(_points2, function (p) {\n return !scales.isInRange(p);\n })) {\n return null;\n }\n\n return _points2;\n }\n\n return null;\n};\n\nexport function ReferenceLine(props) {\n var fixedX = props.x,\n fixedY = props.y,\n segment = props.segment,\n xAxis = props.xAxis,\n yAxis = props.yAxis,\n shape = props.shape,\n className = props.className,\n alwaysShow = props.alwaysShow,\n clipPathId = props.clipPathId;\n warn(alwaysShow === undefined, 'The alwaysShow prop is deprecated. Please use ifOverflow=\"extendDomain\" instead.');\n var scales = createLabeledScales({\n x: xAxis.scale,\n y: yAxis.scale\n });\n var isX = isNumOrStr(fixedX);\n var isY = isNumOrStr(fixedY);\n var isSegment = segment && segment.length === 2;\n var endPoints = getEndPoints(scales, isX, isY, isSegment, props);\n\n if (!endPoints) {\n return null;\n }\n\n var _endPoints = _slicedToArray(endPoints, 2),\n _endPoints$ = _endPoints[0],\n x1 = _endPoints$.x,\n y1 = _endPoints$.y,\n _endPoints$2 = _endPoints[1],\n x2 = _endPoints$2.x,\n y2 = _endPoints$2.y;\n\n var clipPath = ifOverflowMatches(props, 'hidden') ? \"url(#\".concat(clipPathId, \")\") : undefined;\n\n var lineProps = _objectSpread(_objectSpread({\n clipPath: clipPath\n }, filterProps(props, true)), {}, {\n x1: x1,\n y1: y1,\n x2: x2,\n y2: y2\n });\n\n return /*#__PURE__*/React.createElement(Layer, {\n className: classNames('recharts-reference-line', className)\n }, renderLine(shape, lineProps), Label.renderCallByParent(props, rectWithCoords({\n x1: x1,\n y1: y1,\n x2: x2,\n y2: y2\n })));\n}\nReferenceLine.displayName = 'ReferenceLine';\nReferenceLine.defaultProps = {\n isFront: false,\n ifOverflow: 'discard',\n xAxisId: 0,\n yAxisId: 0,\n fill: 'none',\n stroke: '#ccc',\n fillOpacity: 1,\n strokeWidth: 1,\n position: 'middle'\n};","import _isFunction from \"lodash/isFunction\";\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n/**\n * @fileOverview Reference Line\n */\nimport React from 'react';\nimport classNames from 'classnames';\nimport { Layer } from '../container/Layer';\nimport { Label } from '../component/Label';\nimport { createLabeledScales, rectWithPoints } from '../util/CartesianUtils';\nimport { ifOverflowMatches } from '../util/IfOverflowMatches';\nimport { isNumOrStr } from '../util/DataUtils';\nimport { warn } from '../util/LogUtils';\nimport { Rectangle } from '../shape/Rectangle';\nimport { filterProps } from '../util/types';\n\nvar getRect = function getRect(hasX1, hasX2, hasY1, hasY2, props) {\n var xValue1 = props.x1,\n xValue2 = props.x2,\n yValue1 = props.y1,\n yValue2 = props.y2,\n xAxis = props.xAxis,\n yAxis = props.yAxis;\n if (!xAxis || !yAxis) return null;\n var scales = createLabeledScales({\n x: xAxis.scale,\n y: yAxis.scale\n });\n var p1 = {\n x: hasX1 ? scales.x.apply(xValue1, {\n position: 'start'\n }) : scales.x.rangeMin,\n y: hasY1 ? scales.y.apply(yValue1, {\n position: 'start'\n }) : scales.y.rangeMin\n };\n var p2 = {\n x: hasX2 ? scales.x.apply(xValue2, {\n position: 'end'\n }) : scales.x.rangeMax,\n y: hasY2 ? scales.y.apply(yValue2, {\n position: 'end'\n }) : scales.y.rangeMax\n };\n\n if (ifOverflowMatches(props, 'discard') && (!scales.isInRange(p1) || !scales.isInRange(p2))) {\n return null;\n }\n\n return rectWithPoints(p1, p2);\n};\n\nexport function ReferenceArea(props) {\n var x1 = props.x1,\n x2 = props.x2,\n y1 = props.y1,\n y2 = props.y2,\n className = props.className,\n alwaysShow = props.alwaysShow,\n clipPathId = props.clipPathId;\n warn(alwaysShow === undefined, 'The alwaysShow prop is deprecated. Please use ifOverflow=\"extendDomain\" instead.');\n var hasX1 = isNumOrStr(x1);\n var hasX2 = isNumOrStr(x2);\n var hasY1 = isNumOrStr(y1);\n var hasY2 = isNumOrStr(y2);\n var shape = props.shape;\n\n if (!hasX1 && !hasX2 && !hasY1 && !hasY2 && !shape) {\n return null;\n }\n\n var rect = getRect(hasX1, hasX2, hasY1, hasY2, props);\n\n if (!rect && !shape) {\n return null;\n }\n\n var clipPath = ifOverflowMatches(props, 'hidden') ? \"url(#\".concat(clipPathId, \")\") : undefined;\n return /*#__PURE__*/React.createElement(Layer, {\n className: classNames('recharts-reference-area', className)\n }, ReferenceArea.renderRect(shape, _objectSpread(_objectSpread({\n clipPath: clipPath\n }, filterProps(props, true)), rect)), Label.renderCallByParent(props, rect));\n}\nReferenceArea.displayName = 'ReferenceArea';\nReferenceArea.defaultProps = {\n isFront: false,\n ifOverflow: 'discard',\n xAxisId: 0,\n yAxisId: 0,\n r: 10,\n fill: '#ccc',\n fillOpacity: 0.5,\n stroke: 'none',\n strokeWidth: 1\n};\n\nReferenceArea.renderRect = function (option, props) {\n var rect;\n\n if ( /*#__PURE__*/React.isValidElement(option)) {\n rect = /*#__PURE__*/React.cloneElement(option, props);\n } else if (_isFunction(option)) {\n rect = option(props);\n } else {\n rect = /*#__PURE__*/React.createElement(Rectangle, _extends({}, props, {\n className: \"recharts-reference-area-rect\"\n }));\n }\n\n return rect;\n};","import { ReferenceDot } from '../cartesian/ReferenceDot';\nimport { ReferenceLine } from '../cartesian/ReferenceLine';\nimport { ReferenceArea } from '../cartesian/ReferenceArea';\nimport { ifOverflowMatches } from './IfOverflowMatches';\nimport { findAllByType } from './ReactUtils';\nimport { isNumber } from './DataUtils';\nexport var detectReferenceElementsDomain = function detectReferenceElementsDomain(children, domain, axisId, axisType, specifiedTicks) {\n var lines = findAllByType(children, ReferenceLine.displayName);\n var dots = findAllByType(children, ReferenceDot.displayName);\n var elements = lines.concat(dots);\n var areas = findAllByType(children, ReferenceArea.displayName);\n var idKey = \"\".concat(axisType, \"Id\");\n var valueKey = axisType[0];\n var finalDomain = domain;\n\n if (elements.length) {\n finalDomain = elements.reduce(function (result, el) {\n if (el.props[idKey] === axisId && ifOverflowMatches(el.props, 'extendDomain') && isNumber(el.props[valueKey])) {\n var value = el.props[valueKey];\n return [Math.min(result[0], value), Math.max(result[1], value)];\n }\n\n return result;\n }, finalDomain);\n }\n\n if (areas.length) {\n var key1 = \"\".concat(valueKey, \"1\");\n var key2 = \"\".concat(valueKey, \"2\");\n finalDomain = areas.reduce(function (result, el) {\n if (el.props[idKey] === axisId && ifOverflowMatches(el.props, 'extendDomain') && isNumber(el.props[key1]) && isNumber(el.props[key2])) {\n var value1 = el.props[key1];\n var value2 = el.props[key2];\n return [Math.min(result[0], value1, value2), Math.max(result[1], value1, value2)];\n }\n\n return result;\n }, finalDomain);\n }\n\n if (specifiedTicks && specifiedTicks.length) {\n finalDomain = specifiedTicks.reduce(function (result, tick) {\n if (isNumber(tick)) {\n return [Math.min(result[0], tick), Math.max(result[1], tick)];\n }\n\n return result;\n }, finalDomain);\n }\n\n return finalDomain;\n};","import EventEmitter from 'eventemitter3';\nvar eventCenter = new EventEmitter();\n\nif (eventCenter.setMaxListeners) {\n eventCenter.setMaxListeners(10);\n}\n\nexport { eventCenter };\nexport var SYNC_EVENT = 'recharts.syncMouseEvents'; // eslint-disable-next-line no-redeclare","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport _every from \"lodash/every\";\nimport _find from \"lodash/find\";\nimport _isFunction from \"lodash/isFunction\";\nimport _throttle from \"lodash/throttle\";\nimport _sortBy from \"lodash/sortBy\";\nimport _get from \"lodash/get\";\nimport _range from \"lodash/range\";\nimport _isNil from \"lodash/isNil\";\nimport _isBoolean from \"lodash/isBoolean\";\nimport _isArray from \"lodash/isArray\";\n\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\n\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _iterableToArrayLimit(arr, i) { if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\n\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _iterableToArray(iter) { if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter); }\n\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nimport React, { Component, cloneElement, isValidElement, createElement } from 'react';\nimport classNames from 'classnames';\nimport { Surface } from '../container/Surface';\nimport { Layer } from '../container/Layer';\nimport { Tooltip } from '../component/Tooltip';\nimport { Legend } from '../component/Legend';\nimport { Curve } from '../shape/Curve';\nimport { Cross } from '../shape/Cross';\nimport { Sector } from '../shape/Sector';\nimport { Dot } from '../shape/Dot';\nimport { isInRectangle, Rectangle } from '../shape/Rectangle';\nimport { findAllByType, findChildByType, getDisplayName, parseChildIndex, validateWidthHeight, isChildrenEqual, renderByOrder, getReactEventByType } from '../util/ReactUtils';\nimport { CartesianAxis } from '../cartesian/CartesianAxis';\nimport { Brush } from '../cartesian/Brush';\nimport { getOffset, calculateChartCoordinate } from '../util/DOMUtils';\nimport { getAnyElementOfObject, hasDuplicate, uniqueId, isNumber, findEntryInArray } from '../util/DataUtils';\nimport { calculateActiveTickIndex, getMainColorOfGraphicItem, getBarSizeList, getBarPosition, appendOffsetOfLegend, getLegendProps, combineEventHandlers, getTicksOfAxis, getCoordinatesOfGrid, getStackedDataOfItem, parseErrorBarsOfAxis, getBandSizeOfAxis, getStackGroupsByAxisId, isCategoricalAxis, getDomainOfItemsWithSameAxis, getDomainOfStackGroups, getDomainOfDataByKey, parseSpecifiedDomain, parseDomainOfCategoryAxis, getTooltipItem } from '../util/ChartUtils';\nimport { detectReferenceElementsDomain } from '../util/DetectReferenceElementsDomain';\nimport { inRangeOfSector, polarToCartesian } from '../util/PolarUtils';\nimport { shallowEqual } from '../util/ShallowEqual';\nimport { eventCenter, SYNC_EVENT } from '../util/Events';\nimport { filterProps, adaptEventHandlers } from '../util/types';\nvar ORIENT_MAP = {\n xAxis: ['bottom', 'top'],\n yAxis: ['left', 'right']\n};\nvar originCoordinate = {\n x: 0,\n y: 0\n}; // use legacy isFinite only if there is a problem (aka IE)\n// eslint-disable-next-line no-restricted-globals\n\nvar isFinit = Number.isFinite ? Number.isFinite : isFinite;\nvar defer = // eslint-disable-next-line no-nested-ternary\ntypeof requestAnimationFrame === 'function' ? requestAnimationFrame : typeof setImmediate === 'function' ? setImmediate : setTimeout;\nvar deferClear = // eslint-disable-next-line no-nested-ternary\ntypeof cancelAnimationFrame === 'function' ? cancelAnimationFrame : typeof clearImmediate === 'function' ? clearImmediate : clearTimeout;\n\nvar calculateTooltipPos = function calculateTooltipPos(rangeObj, layout) {\n if (layout === 'horizontal') {\n return rangeObj.x;\n }\n\n if (layout === 'vertical') {\n return rangeObj.y;\n }\n\n if (layout === 'centric') {\n return rangeObj.angle;\n }\n\n return rangeObj.radius;\n};\n\nvar getActiveCoordinate = function getActiveCoordinate(layout, tooltipTicks, activeIndex, rangeObj) {\n var entry = tooltipTicks.find(function (tick) {\n return tick && tick.index === activeIndex;\n });\n\n if (entry) {\n if (layout === 'horizontal') {\n return {\n x: entry.coordinate,\n y: rangeObj.y\n };\n }\n\n if (layout === 'vertical') {\n return {\n x: rangeObj.x,\n y: entry.coordinate\n };\n }\n\n if (layout === 'centric') {\n var _angle = entry.coordinate;\n var _radius = rangeObj.radius;\n return _objectSpread(_objectSpread(_objectSpread({}, rangeObj), polarToCartesian(rangeObj.cx, rangeObj.cy, _radius, _angle)), {}, {\n angle: _angle,\n radius: _radius\n });\n }\n\n var radius = entry.coordinate;\n var angle = rangeObj.angle;\n return _objectSpread(_objectSpread(_objectSpread({}, rangeObj), polarToCartesian(rangeObj.cx, rangeObj.cy, radius, angle)), {}, {\n angle: angle,\n radius: radius\n });\n }\n\n return originCoordinate;\n};\n\nvar getDisplayedData = function getDisplayedData(data, _ref, item) {\n var graphicalItems = _ref.graphicalItems,\n dataStartIndex = _ref.dataStartIndex,\n dataEndIndex = _ref.dataEndIndex;\n var itemsData = (graphicalItems || []).reduce(function (result, child) {\n var itemData = child.props.data;\n\n if (itemData && itemData.length) {\n return [].concat(_toConsumableArray(result), _toConsumableArray(itemData));\n }\n\n return result;\n }, []);\n\n if (itemsData && itemsData.length > 0) {\n return itemsData;\n }\n\n if (item && item.props && item.props.data && item.props.data.length > 0) {\n return item.props.data;\n }\n\n if (data && data.length && isNumber(dataStartIndex) && isNumber(dataEndIndex)) {\n return data.slice(dataStartIndex, dataEndIndex + 1);\n }\n\n return [];\n};\n/**\n * Get the content to be displayed in the tooltip\n * @param {Object} state Current state\n * @param {Array} chartData The data defined in chart\n * @param {Number} activeIndex Active index of data\n * @param {String} activeLabel Active label of data\n * @return {Array} The content of tooltip\n */\n\n\nvar getTooltipContent = function getTooltipContent(state, chartData, activeIndex, activeLabel) {\n var graphicalItems = state.graphicalItems,\n tooltipAxis = state.tooltipAxis;\n var displayedData = getDisplayedData(chartData, state);\n\n if (activeIndex < 0 || !graphicalItems || !graphicalItems.length || activeIndex >= displayedData.length) {\n return null;\n } // get data by activeIndex when the axis don't allow duplicated category\n\n\n return graphicalItems.reduce(function (result, child) {\n var hide = child.props.hide;\n\n if (hide) {\n return result;\n }\n\n var data = child.props.data;\n var payload;\n\n if (tooltipAxis.dataKey && !tooltipAxis.allowDuplicatedCategory) {\n // graphic child has data props\n var entries = data === undefined ? displayedData : data;\n payload = findEntryInArray(entries, tooltipAxis.dataKey, activeLabel);\n } else {\n payload = data && data[activeIndex] || displayedData[activeIndex];\n }\n\n if (!payload) {\n return result;\n }\n\n return [].concat(_toConsumableArray(result), [getTooltipItem(child, payload)]);\n }, []);\n};\n/**\n * Returns tooltip data based on a mouse position (as a parameter or in state)\n * @param {Object} state current state\n * @param {Array} chartData the data defined in chart\n * @param {String} layout The layout type of chart\n * @param {Object} rangeObj { x, y } coordinates\n * @return {Object} Tooltip data data\n */\n\n\nvar getTooltipData = function getTooltipData(state, chartData, layout, rangeObj) {\n var rangeData = rangeObj || {\n x: state.chartX,\n y: state.chartY\n };\n var pos = calculateTooltipPos(rangeData, layout);\n var ticks = state.orderedTooltipTicks,\n axis = state.tooltipAxis,\n tooltipTicks = state.tooltipTicks;\n var activeIndex = calculateActiveTickIndex(pos, ticks, tooltipTicks, axis);\n\n if (activeIndex >= 0 && tooltipTicks) {\n var activeLabel = tooltipTicks[activeIndex] && tooltipTicks[activeIndex].value;\n var activePayload = getTooltipContent(state, chartData, activeIndex, activeLabel);\n var activeCoordinate = getActiveCoordinate(layout, ticks, activeIndex, rangeData);\n return {\n activeTooltipIndex: activeIndex,\n activeLabel: activeLabel,\n activePayload: activePayload,\n activeCoordinate: activeCoordinate\n };\n }\n\n return null;\n};\n/**\n * Get the configuration of axis by the options of axis instance\n * @param {Object} props Latest props\n * @param {Array} axes The instance of axes\n * @param {Array} graphicalItems The instances of item\n * @param {String} axisType The type of axis, xAxis - x-axis, yAxis - y-axis\n * @param {String} axisIdKey The unique id of an axis\n * @param {Object} stackGroups The items grouped by axisId and stackId\n * @param {Number} dataStartIndex The start index of the data series when a brush is applied\n * @param {Number} dataEndIndex The end index of the data series when a brush is applied\n * @return {Object} Configuration\n */\n\n\nvar getAxisMapByAxes = function getAxisMapByAxes(props, _ref2) {\n var axes = _ref2.axes,\n graphicalItems = _ref2.graphicalItems,\n axisType = _ref2.axisType,\n axisIdKey = _ref2.axisIdKey,\n stackGroups = _ref2.stackGroups,\n dataStartIndex = _ref2.dataStartIndex,\n dataEndIndex = _ref2.dataEndIndex;\n var layout = props.layout,\n children = props.children,\n stackOffset = props.stackOffset;\n var isCategorical = isCategoricalAxis(layout, axisType); // Eliminate duplicated axes\n\n var axisMap = axes.reduce(function (result, child) {\n var _child$props = child.props,\n type = _child$props.type,\n dataKey = _child$props.dataKey,\n allowDataOverflow = _child$props.allowDataOverflow,\n allowDuplicatedCategory = _child$props.allowDuplicatedCategory,\n scale = _child$props.scale,\n ticks = _child$props.ticks;\n var axisId = child.props[axisIdKey];\n var displayedData = getDisplayedData(props.data, {\n graphicalItems: graphicalItems.filter(function (item) {\n return item.props[axisIdKey] === axisId;\n }),\n dataStartIndex: dataStartIndex,\n dataEndIndex: dataEndIndex\n });\n var len = displayedData.length;\n\n if (!result[axisId]) {\n var domain, duplicateDomain, categoricalDomain;\n\n if (dataKey) {\n // has dataKey in \n domain = getDomainOfDataByKey(displayedData, dataKey, type);\n\n if (type === 'category' && isCategorical) {\n // the field type is category data and this axis is catrgorical axis\n var duplicate = hasDuplicate(domain);\n\n if (allowDuplicatedCategory && duplicate) {\n duplicateDomain = domain; // When category axis has duplicated text, serial numbers are used to generate scale\n\n domain = _range(0, len);\n } else if (!allowDuplicatedCategory) {\n // remove duplicated category\n domain = parseDomainOfCategoryAxis(child.props.domain, domain, child).reduce(function (finalDomain, entry) {\n return finalDomain.indexOf(entry) >= 0 ? finalDomain : [].concat(_toConsumableArray(finalDomain), [entry]);\n }, []);\n }\n } else if (type === 'category') {\n // the field type is category data and this axis is numerical axis\n if (!allowDuplicatedCategory) {\n domain = parseDomainOfCategoryAxis(child.props.domain, domain, child).reduce(function (finalDomain, entry) {\n return finalDomain.indexOf(entry) >= 0 || entry === '' || _isNil(entry) ? finalDomain : [].concat(_toConsumableArray(finalDomain), [entry]);\n }, []);\n } else {\n // eliminate undefined or null or empty string\n domain = domain.filter(function (entry) {\n return entry !== '' && !_isNil(entry);\n });\n }\n } else if (type === 'number') {\n // the field type is numerical\n var errorBarsDomain = parseErrorBarsOfAxis(displayedData, graphicalItems.filter(function (item) {\n return item.props[axisIdKey] === axisId && !item.props.hide;\n }), dataKey, axisType, layout);\n\n if (errorBarsDomain) {\n domain = errorBarsDomain;\n }\n }\n\n if (isCategorical && (type === 'number' || scale !== 'auto')) {\n categoricalDomain = getDomainOfDataByKey(displayedData, dataKey, 'category');\n }\n } else if (isCategorical) {\n // the axis is a categorical axis\n domain = _range(0, len);\n } else if (stackGroups && stackGroups[axisId] && stackGroups[axisId].hasStack && type === 'number') {\n // when stackOffset is 'expand', the domain may be calculated as [0, 1.000000000002]\n domain = stackOffset === 'expand' ? [0, 1] : getDomainOfStackGroups(stackGroups[axisId].stackGroups, dataStartIndex, dataEndIndex);\n } else {\n domain = getDomainOfItemsWithSameAxis(displayedData, graphicalItems.filter(function (item) {\n return item.props[axisIdKey] === axisId && !item.props.hide;\n }), type, layout, true);\n }\n\n if (type === 'number') {\n // To detect wether there is any reference lines whose props alwaysShow is true\n domain = detectReferenceElementsDomain(children, domain, axisId, axisType, ticks);\n\n if (child.props.domain) {\n domain = parseSpecifiedDomain(child.props.domain, domain, allowDataOverflow);\n }\n } else if (type === 'category' && child.props.domain) {\n var axisDomain = child.props.domain;\n var isDomainValidate = domain.every(function (entry) {\n return axisDomain.indexOf(entry) >= 0;\n });\n\n if (isDomainValidate) {\n domain = axisDomain;\n }\n }\n\n return _objectSpread(_objectSpread({}, result), {}, _defineProperty({}, axisId, _objectSpread(_objectSpread({}, child.props), {}, {\n axisType: axisType,\n domain: domain,\n categoricalDomain: categoricalDomain,\n duplicateDomain: duplicateDomain,\n originalDomain: child.props.domain,\n isCategorical: isCategorical,\n layout: layout\n })));\n }\n\n return result;\n }, {});\n return axisMap;\n};\n/**\n * Get the configuration of axis by the options of item,\n * this kind of axis does not display in chart\n * @param {Object} props Latest props\n * @param {Array} graphicalItems The instances of item\n * @param {ReactElement} Axis Axis Component\n * @param {String} axisType The type of axis, xAxis - x-axis, yAxis - y-axis\n * @param {String} axisIdKey The unique id of an axis\n * @param {Object} stackGroups The items grouped by axisId and stackId\n * @param {Number} dataStartIndex The start index of the data series when a brush is applied\n * @param {Number} dataEndIndex The end index of the data series when a brush is applied\n * @return {Object} Configuration\n */\n\n\nvar getAxisMapByItems = function getAxisMapByItems(props, _ref3) {\n var graphicalItems = _ref3.graphicalItems,\n Axis = _ref3.Axis,\n axisType = _ref3.axisType,\n axisIdKey = _ref3.axisIdKey,\n stackGroups = _ref3.stackGroups,\n dataStartIndex = _ref3.dataStartIndex,\n dataEndIndex = _ref3.dataEndIndex;\n var layout = props.layout,\n children = props.children;\n var displayedData = getDisplayedData(props.data, {\n graphicalItems: graphicalItems,\n dataStartIndex: dataStartIndex,\n dataEndIndex: dataEndIndex\n });\n var len = displayedData.length;\n var isCategorical = isCategoricalAxis(layout, axisType);\n var index = -1; // The default type of x-axis is category axis,\n // The default contents of x-axis is the serial numbers of data\n // The default type of y-axis is number axis\n // The default contents of y-axis is the domain of data\n\n var axisMap = graphicalItems.reduce(function (result, child) {\n var axisId = child.props[axisIdKey];\n\n if (!result[axisId]) {\n index++;\n var domain;\n\n if (isCategorical) {\n domain = _range(0, len);\n } else if (stackGroups && stackGroups[axisId] && stackGroups[axisId].hasStack) {\n domain = getDomainOfStackGroups(stackGroups[axisId].stackGroups, dataStartIndex, dataEndIndex);\n domain = detectReferenceElementsDomain(children, domain, axisId, axisType);\n } else {\n domain = parseSpecifiedDomain(Axis.defaultProps.domain, getDomainOfItemsWithSameAxis(displayedData, graphicalItems.filter(function (item) {\n return item.props[axisIdKey] === axisId && !item.props.hide;\n }), 'number', layout), Axis.defaultProps.allowDataOverflow);\n domain = detectReferenceElementsDomain(children, domain, axisId, axisType);\n }\n\n return _objectSpread(_objectSpread({}, result), {}, _defineProperty({}, axisId, _objectSpread(_objectSpread({\n axisType: axisType\n }, Axis.defaultProps), {}, {\n hide: true,\n orientation: _get(ORIENT_MAP, \"\".concat(axisType, \".\").concat(index % 2), null),\n domain: domain,\n originalDomain: Axis.defaultProps.domain,\n isCategorical: isCategorical,\n layout: layout // specify scale when no Axis\n // scale: isCategorical ? 'band' : 'linear',\n\n })));\n }\n\n return result;\n }, {});\n return axisMap;\n};\n/**\n * Get the configuration of all x-axis or y-axis\n * @param {Object} props Latest props\n * @param {String} axisType The type of axis\n * @param {Array} graphicalItems The instances of item\n * @param {Object} stackGroups The items grouped by axisId and stackId\n * @param {Number} dataStartIndex The start index of the data series when a brush is applied\n * @param {Number} dataEndIndex The end index of the data series when a brush is applied\n * @return {Object} Configuration\n */\n\n\nvar getAxisMap = function getAxisMap(props, _ref4) {\n var _ref4$axisType = _ref4.axisType,\n axisType = _ref4$axisType === void 0 ? 'xAxis' : _ref4$axisType,\n AxisComp = _ref4.AxisComp,\n graphicalItems = _ref4.graphicalItems,\n stackGroups = _ref4.stackGroups,\n dataStartIndex = _ref4.dataStartIndex,\n dataEndIndex = _ref4.dataEndIndex;\n var children = props.children;\n var axisIdKey = \"\".concat(axisType, \"Id\"); // Get all the instance of Axis\n\n var axes = findAllByType(children, AxisComp);\n var axisMap = {};\n\n if (axes && axes.length) {\n axisMap = getAxisMapByAxes(props, {\n axes: axes,\n graphicalItems: graphicalItems,\n axisType: axisType,\n axisIdKey: axisIdKey,\n stackGroups: stackGroups,\n dataStartIndex: dataStartIndex,\n dataEndIndex: dataEndIndex\n });\n } else if (graphicalItems && graphicalItems.length) {\n axisMap = getAxisMapByItems(props, {\n Axis: AxisComp,\n graphicalItems: graphicalItems,\n axisType: axisType,\n axisIdKey: axisIdKey,\n stackGroups: stackGroups,\n dataStartIndex: dataStartIndex,\n dataEndIndex: dataEndIndex\n });\n }\n\n return axisMap;\n};\n\nvar tooltipTicksGenerator = function tooltipTicksGenerator(axisMap) {\n var axis = getAnyElementOfObject(axisMap);\n var tooltipTicks = getTicksOfAxis(axis, false, true);\n return {\n tooltipTicks: tooltipTicks,\n orderedTooltipTicks: _sortBy(tooltipTicks, function (o) {\n return o.coordinate;\n }),\n tooltipAxis: axis,\n tooltipAxisBandSize: getBandSizeOfAxis(axis, tooltipTicks)\n };\n};\n/**\n * Returns default, reset state for the categorical chart.\n * @param {Object} props Props object to use when creating the default state\n * @return {Object} Whole new state\n */\n\n\nvar createDefaultState = function createDefaultState(props) {\n var children = props.children,\n defaultShowTooltip = props.defaultShowTooltip;\n var brushItem = findChildByType(children, Brush.displayName);\n var startIndex = brushItem && brushItem.props && brushItem.props.startIndex || 0;\n var endIndex = brushItem && brushItem.props && brushItem.props.endIndex || props.data && props.data.length - 1 || 0;\n return {\n chartX: 0,\n chartY: 0,\n dataStartIndex: startIndex,\n dataEndIndex: endIndex,\n activeTooltipIndex: -1,\n isTooltipActive: !_isNil(defaultShowTooltip) ? defaultShowTooltip : false\n };\n};\n\nvar hasGraphicalBarItem = function hasGraphicalBarItem(graphicalItems) {\n if (!graphicalItems || !graphicalItems.length) {\n return false;\n }\n\n return graphicalItems.some(function (item) {\n var name = getDisplayName(item && item.type);\n return name && name.indexOf('Bar') >= 0;\n });\n};\n\nvar getAxisNameByLayout = function getAxisNameByLayout(layout) {\n if (layout === 'horizontal') {\n return {\n numericAxisName: 'yAxis',\n cateAxisName: 'xAxis'\n };\n }\n\n if (layout === 'vertical') {\n return {\n numericAxisName: 'xAxis',\n cateAxisName: 'yAxis'\n };\n }\n\n if (layout === 'centric') {\n return {\n numericAxisName: 'radiusAxis',\n cateAxisName: 'angleAxis'\n };\n }\n\n return {\n numericAxisName: 'angleAxis',\n cateAxisName: 'radiusAxis'\n };\n};\n/**\n * Calculate the offset of main part in the svg element\n * @param {Object} props Latest props\n * graphicalItems The instances of item\n * xAxisMap The configuration of x-axis\n * yAxisMap The configuration of y-axis\n * @param {Object} prevLegendBBox the boundary box of legend\n * @return {Object} The offset of main part in the svg element\n */\n\n\nvar calculateOffset = function calculateOffset(_ref5, prevLegendBBox) {\n var props = _ref5.props,\n graphicalItems = _ref5.graphicalItems,\n _ref5$xAxisMap = _ref5.xAxisMap,\n xAxisMap = _ref5$xAxisMap === void 0 ? {} : _ref5$xAxisMap,\n _ref5$yAxisMap = _ref5.yAxisMap,\n yAxisMap = _ref5$yAxisMap === void 0 ? {} : _ref5$yAxisMap;\n var width = props.width,\n height = props.height,\n children = props.children;\n var margin = props.margin || {};\n var brushItem = findChildByType(children, Brush.displayName);\n var legendItem = findChildByType(children, Legend.displayName);\n var offsetH = Object.keys(yAxisMap).reduce(function (result, id) {\n var entry = yAxisMap[id];\n var orientation = entry.orientation;\n\n if (!entry.mirror && !entry.hide) {\n return _objectSpread(_objectSpread({}, result), {}, _defineProperty({}, orientation, result[orientation] + entry.width));\n }\n\n return result;\n }, {\n left: margin.left || 0,\n right: margin.right || 0\n });\n var offsetV = Object.keys(xAxisMap).reduce(function (result, id) {\n var entry = xAxisMap[id];\n var orientation = entry.orientation;\n\n if (!entry.mirror && !entry.hide) {\n return _objectSpread(_objectSpread({}, result), {}, _defineProperty({}, orientation, _get(result, \"\".concat(orientation)) + entry.height));\n }\n\n return result;\n }, {\n top: margin.top || 0,\n bottom: margin.bottom || 0\n });\n\n var offset = _objectSpread(_objectSpread({}, offsetV), offsetH);\n\n var brushBottom = offset.bottom;\n\n if (brushItem) {\n offset.bottom += brushItem.props.height || Brush.defaultProps.height;\n }\n\n if (legendItem && prevLegendBBox) {\n offset = appendOffsetOfLegend(offset, graphicalItems, props, prevLegendBBox);\n }\n\n return _objectSpread(_objectSpread({\n brushBottom: brushBottom\n }, offset), {}, {\n width: width - offset.left - offset.right,\n height: height - offset.top - offset.bottom\n });\n};\n\nexport var generateCategoricalChart = function generateCategoricalChart(_ref6) {\n var _class, _temp;\n\n var chartName = _ref6.chartName,\n GraphicalChild = _ref6.GraphicalChild,\n _ref6$defaultTooltipE = _ref6.defaultTooltipEventType,\n defaultTooltipEventType = _ref6$defaultTooltipE === void 0 ? 'axis' : _ref6$defaultTooltipE,\n _ref6$validateTooltip = _ref6.validateTooltipEventTypes,\n validateTooltipEventTypes = _ref6$validateTooltip === void 0 ? ['axis'] : _ref6$validateTooltip,\n axisComponents = _ref6.axisComponents,\n legendContent = _ref6.legendContent,\n formatAxisMap = _ref6.formatAxisMap,\n defaultProps = _ref6.defaultProps;\n\n var getFormatItems = function getFormatItems(props, currentState) {\n var graphicalItems = currentState.graphicalItems,\n stackGroups = currentState.stackGroups,\n offset = currentState.offset,\n updateId = currentState.updateId,\n dataStartIndex = currentState.dataStartIndex,\n dataEndIndex = currentState.dataEndIndex;\n var barSize = props.barSize,\n layout = props.layout,\n barGap = props.barGap,\n barCategoryGap = props.barCategoryGap,\n globalMaxBarSize = props.maxBarSize;\n\n var _getAxisNameByLayout = getAxisNameByLayout(layout),\n numericAxisName = _getAxisNameByLayout.numericAxisName,\n cateAxisName = _getAxisNameByLayout.cateAxisName;\n\n var hasBar = hasGraphicalBarItem(graphicalItems);\n var sizeList = hasBar && getBarSizeList({\n barSize: barSize,\n stackGroups: stackGroups\n });\n var formattedItems = [];\n graphicalItems.forEach(function (item, index) {\n var displayedData = getDisplayedData(props.data, {\n dataStartIndex: dataStartIndex,\n dataEndIndex: dataEndIndex\n }, item);\n var _item$props = item.props,\n dataKey = _item$props.dataKey,\n childMaxBarSize = _item$props.maxBarSize;\n var numericAxisId = item.props[\"\".concat(numericAxisName, \"Id\")];\n var cateAxisId = item.props[\"\".concat(cateAxisName, \"Id\")];\n var axisObj = axisComponents.reduce(function (result, entry) {\n var _objectSpread6;\n\n var axisMap = currentState[\"\".concat(entry.axisType, \"Map\")];\n var id = item.props[\"\".concat(entry.axisType, \"Id\")];\n var axis = axisMap && axisMap[id];\n return _objectSpread(_objectSpread({}, result), {}, (_objectSpread6 = {}, _defineProperty(_objectSpread6, entry.axisType, axis), _defineProperty(_objectSpread6, \"\".concat(entry.axisType, \"Ticks\"), getTicksOfAxis(axis)), _objectSpread6));\n }, {});\n var cateAxis = axisObj[cateAxisName];\n var cateTicks = axisObj[\"\".concat(cateAxisName, \"Ticks\")];\n var stackedData = stackGroups && stackGroups[numericAxisId] && stackGroups[numericAxisId].hasStack && getStackedDataOfItem(item, stackGroups[numericAxisId].stackGroups);\n var itemIsBar = getDisplayName(item.type).indexOf('Bar') >= 0;\n var bandSize = getBandSizeOfAxis(cateAxis, cateTicks);\n var barPosition = [];\n\n if (itemIsBar) {\n var _ref7, _getBandSizeOfAxis;\n\n // 如果是bar,计算bar的位置\n var maxBarSize = _isNil(childMaxBarSize) ? globalMaxBarSize : childMaxBarSize;\n var barBandSize = (_ref7 = (_getBandSizeOfAxis = getBandSizeOfAxis(cateAxis, cateTicks, true)) !== null && _getBandSizeOfAxis !== void 0 ? _getBandSizeOfAxis : maxBarSize) !== null && _ref7 !== void 0 ? _ref7 : 0;\n barPosition = getBarPosition({\n barGap: barGap,\n barCategoryGap: barCategoryGap,\n bandSize: barBandSize !== bandSize ? barBandSize : bandSize,\n sizeList: sizeList[cateAxisId],\n maxBarSize: maxBarSize\n });\n\n if (barBandSize !== bandSize) {\n barPosition = barPosition.map(function (pos) {\n return _objectSpread(_objectSpread({}, pos), {}, {\n position: _objectSpread(_objectSpread({}, pos.position), {}, {\n offset: pos.position.offset - barBandSize / 2\n })\n });\n });\n }\n }\n\n var composedFn = item && item.type && item.type.getComposedData;\n\n if (composedFn) {\n var _objectSpread7;\n\n formattedItems.push({\n props: _objectSpread(_objectSpread({}, composedFn(_objectSpread(_objectSpread({}, axisObj), {}, {\n displayedData: displayedData,\n props: props,\n dataKey: dataKey,\n item: item,\n bandSize: bandSize,\n barPosition: barPosition,\n offset: offset,\n stackedData: stackedData,\n layout: layout,\n dataStartIndex: dataStartIndex,\n dataEndIndex: dataEndIndex\n }))), {}, (_objectSpread7 = {\n key: item.key || \"item-\".concat(index)\n }, _defineProperty(_objectSpread7, numericAxisName, axisObj[numericAxisName]), _defineProperty(_objectSpread7, cateAxisName, axisObj[cateAxisName]), _defineProperty(_objectSpread7, \"animationId\", updateId), _objectSpread7)),\n childIndex: parseChildIndex(item, props.children),\n item: item\n });\n }\n });\n return formattedItems;\n };\n /**\n * The AxisMaps are expensive to render on large data sets\n * so provide the ability to store them in state and only update them when necessary\n * they are dependent upon the start and end index of\n * the brush so it's important that this method is called _after_\n * the state is updated with any new start/end indices\n *\n * @param {Object} props The props object to be used for updating the axismaps\n * dataStartIndex: The start index of the data series when a brush is applied\n * dataEndIndex: The end index of the data series when a brush is applied\n * updateId: The update id\n * @param {Object} prevState Prev state\n * @return {Object} state New state to set\n */\n\n\n var updateStateOfAxisMapsOffsetAndStackGroups = function updateStateOfAxisMapsOffsetAndStackGroups(_ref8, prevState) {\n var props = _ref8.props,\n dataStartIndex = _ref8.dataStartIndex,\n dataEndIndex = _ref8.dataEndIndex,\n updateId = _ref8.updateId;\n\n if (!validateWidthHeight({\n props: props\n })) {\n return null;\n }\n\n var children = props.children,\n layout = props.layout,\n stackOffset = props.stackOffset,\n data = props.data,\n reverseStackOrder = props.reverseStackOrder;\n\n var _getAxisNameByLayout2 = getAxisNameByLayout(layout),\n numericAxisName = _getAxisNameByLayout2.numericAxisName,\n cateAxisName = _getAxisNameByLayout2.cateAxisName;\n\n var graphicalItems = findAllByType(children, GraphicalChild);\n var stackGroups = getStackGroupsByAxisId(data, graphicalItems, \"\".concat(numericAxisName, \"Id\"), \"\".concat(cateAxisName, \"Id\"), stackOffset, reverseStackOrder);\n var axisObj = axisComponents.reduce(function (result, entry) {\n var name = \"\".concat(entry.axisType, \"Map\");\n return _objectSpread(_objectSpread({}, result), {}, _defineProperty({}, name, getAxisMap(props, _objectSpread(_objectSpread({}, entry), {}, {\n graphicalItems: graphicalItems,\n stackGroups: entry.axisType === numericAxisName && stackGroups,\n dataStartIndex: dataStartIndex,\n dataEndIndex: dataEndIndex\n }))));\n }, {});\n var offset = calculateOffset(_objectSpread(_objectSpread({}, axisObj), {}, {\n props: props,\n graphicalItems: graphicalItems\n }), prevState === null || prevState === void 0 ? void 0 : prevState.legendBBox);\n Object.keys(axisObj).forEach(function (key) {\n axisObj[key] = formatAxisMap(props, axisObj[key], offset, key.replace('Map', ''), chartName);\n });\n var cateAxisMap = axisObj[\"\".concat(cateAxisName, \"Map\")];\n var ticksObj = tooltipTicksGenerator(cateAxisMap);\n var formattedGraphicalItems = getFormatItems(props, _objectSpread(_objectSpread({}, axisObj), {}, {\n dataStartIndex: dataStartIndex,\n dataEndIndex: dataEndIndex,\n updateId: updateId,\n graphicalItems: graphicalItems,\n stackGroups: stackGroups,\n offset: offset\n }));\n return _objectSpread(_objectSpread({\n formattedGraphicalItems: formattedGraphicalItems,\n graphicalItems: graphicalItems,\n offset: offset,\n stackGroups: stackGroups\n }, ticksObj), axisObj);\n };\n\n return _temp = _class = /*#__PURE__*/function (_Component) {\n _inherits(CategoricalChartWrapper, _Component);\n\n var _super = _createSuper(CategoricalChartWrapper);\n\n // todo join specific chart propTypes\n function CategoricalChartWrapper(_props) {\n var _this;\n\n _classCallCheck(this, CategoricalChartWrapper);\n\n _this = _super.call(this, _props);\n _this.uniqueChartId = void 0;\n _this.clipPathId = void 0;\n _this.legendInstance = void 0;\n _this.deferId = void 0;\n _this.container = void 0;\n\n _this.clearDeferId = function () {\n if (!_isNil(_this.deferId) && deferClear) {\n deferClear(_this.deferId);\n }\n\n _this.deferId = null;\n };\n\n _this.handleLegendBBoxUpdate = function (box) {\n if (box) {\n var _this$state = _this.state,\n dataStartIndex = _this$state.dataStartIndex,\n dataEndIndex = _this$state.dataEndIndex,\n updateId = _this$state.updateId;\n\n _this.setState(_objectSpread({\n legendBBox: box\n }, updateStateOfAxisMapsOffsetAndStackGroups({\n props: _this.props,\n dataStartIndex: dataStartIndex,\n dataEndIndex: dataEndIndex,\n updateId: updateId\n }, _objectSpread(_objectSpread({}, _this.state), {}, {\n legendBBox: box\n }))));\n }\n };\n\n _this.handleReceiveSyncEvent = function (cId, chartId, data) {\n var syncId = _this.props.syncId;\n\n if (syncId === cId && chartId !== _this.uniqueChartId) {\n _this.clearDeferId();\n\n _this.deferId = defer && defer(_this.applySyncEvent.bind(_assertThisInitialized(_this), data));\n }\n };\n\n _this.handleBrushChange = function (_ref9) {\n var startIndex = _ref9.startIndex,\n endIndex = _ref9.endIndex;\n\n // Only trigger changes if the extents of the brush have actually changed\n if (startIndex !== _this.state.dataStartIndex || endIndex !== _this.state.dataEndIndex) {\n var updateId = _this.state.updateId;\n\n _this.setState(function () {\n return _objectSpread({\n dataStartIndex: startIndex,\n dataEndIndex: endIndex\n }, updateStateOfAxisMapsOffsetAndStackGroups({\n props: _this.props,\n dataStartIndex: startIndex,\n dataEndIndex: endIndex,\n updateId: updateId\n }, _this.state));\n });\n\n _this.triggerSyncEvent({\n dataStartIndex: startIndex,\n dataEndIndex: endIndex\n });\n }\n };\n\n _this.handleMouseEnter = function (e) {\n var onMouseEnter = _this.props.onMouseEnter;\n\n var mouse = _this.getMouseInfo(e);\n\n if (mouse) {\n var _nextState = _objectSpread(_objectSpread({}, mouse), {}, {\n isTooltipActive: true\n });\n\n _this.setState(_nextState);\n\n _this.triggerSyncEvent(_nextState);\n\n if (_isFunction(onMouseEnter)) {\n onMouseEnter(_nextState, e);\n }\n }\n };\n\n _this.triggeredAfterMouseMove = function (e) {\n var onMouseMove = _this.props.onMouseMove;\n\n var mouse = _this.getMouseInfo(e);\n\n var nextState = mouse ? _objectSpread(_objectSpread({}, mouse), {}, {\n isTooltipActive: true\n }) : {\n isTooltipActive: false\n };\n\n _this.setState(nextState);\n\n _this.triggerSyncEvent(nextState);\n\n if (_isFunction(onMouseMove)) {\n onMouseMove(nextState, e);\n }\n };\n\n _this.handleItemMouseEnter = function (el) {\n _this.setState(function () {\n return {\n isTooltipActive: true,\n activeItem: el,\n activePayload: el.tooltipPayload,\n activeCoordinate: el.tooltipPosition || {\n x: el.cx,\n y: el.cy\n }\n };\n });\n };\n\n _this.handleItemMouseLeave = function () {\n _this.setState(function () {\n return {\n isTooltipActive: false\n };\n });\n };\n\n _this.handleMouseMove = function (e) {\n if (e && _isFunction(e.persist)) {\n e.persist();\n }\n\n _this.triggeredAfterMouseMove(e);\n };\n\n _this.handleMouseLeave = function (e) {\n var onMouseLeave = _this.props.onMouseLeave;\n var nextState = {\n isTooltipActive: false\n };\n\n _this.setState(nextState);\n\n _this.triggerSyncEvent(nextState);\n\n if (_isFunction(onMouseLeave)) {\n onMouseLeave(nextState, e);\n }\n\n _this.cancelThrottledTriggerAfterMouseMove();\n };\n\n _this.handleOuterEvent = function (e) {\n var eventName = getReactEventByType(e);\n\n var event = _get(_this.props, \"\".concat(eventName));\n\n if (eventName && _isFunction(event)) {\n var mouse;\n\n if (/.*touch.*/i.test(eventName)) {\n mouse = _this.getMouseInfo(e.changedTouches[0]);\n } else {\n mouse = _this.getMouseInfo(e);\n }\n\n var handler = event;\n handler(mouse, e);\n }\n };\n\n _this.handleClick = function (e) {\n var onClick = _this.props.onClick;\n\n var mouse = _this.getMouseInfo(e);\n\n if (mouse) {\n var _nextState2 = _objectSpread(_objectSpread({}, mouse), {}, {\n isTooltipActive: true\n });\n\n _this.setState(_nextState2);\n\n _this.triggerSyncEvent(_nextState2);\n\n if (_isFunction(onClick)) {\n onClick(_nextState2, e);\n }\n }\n };\n\n _this.handleMouseDown = function (e) {\n var onMouseDown = _this.props.onMouseDown;\n\n if (_isFunction(onMouseDown)) {\n var _nextState3 = _this.getMouseInfo(e);\n\n onMouseDown(_nextState3, e);\n }\n };\n\n _this.handleMouseUp = function (e) {\n var onMouseUp = _this.props.onMouseUp;\n\n if (_isFunction(onMouseUp)) {\n var _nextState4 = _this.getMouseInfo(e);\n\n onMouseUp(_nextState4, e);\n }\n };\n\n _this.handleTouchMove = function (e) {\n if (e.changedTouches != null && e.changedTouches.length > 0) {\n _this.handleMouseMove(e.changedTouches[0]);\n }\n };\n\n _this.handleTouchStart = function (e) {\n if (e.changedTouches != null && e.changedTouches.length > 0) {\n _this.handleMouseDown(e.changedTouches[0]);\n }\n };\n\n _this.handleTouchEnd = function (e) {\n if (e.changedTouches != null && e.changedTouches.length > 0) {\n _this.handleMouseUp(e.changedTouches[0]);\n }\n };\n\n _this.verticalCoordinatesGenerator = function (_ref10) {\n var xAxis = _ref10.xAxis,\n width = _ref10.width,\n height = _ref10.height,\n offset = _ref10.offset;\n return getCoordinatesOfGrid(CartesianAxis.getTicks(_objectSpread(_objectSpread(_objectSpread({}, CartesianAxis.defaultProps), xAxis), {}, {\n ticks: getTicksOfAxis(xAxis, true),\n viewBox: {\n x: 0,\n y: 0,\n width: width,\n height: height\n }\n })), offset.left, offset.left + offset.width);\n };\n\n _this.horizontalCoordinatesGenerator = function (_ref11) {\n var yAxis = _ref11.yAxis,\n width = _ref11.width,\n height = _ref11.height,\n offset = _ref11.offset;\n return getCoordinatesOfGrid(CartesianAxis.getTicks(_objectSpread(_objectSpread(_objectSpread({}, CartesianAxis.defaultProps), yAxis), {}, {\n ticks: getTicksOfAxis(yAxis, true),\n viewBox: {\n x: 0,\n y: 0,\n width: width,\n height: height\n }\n })), offset.top, offset.top + offset.height);\n };\n\n _this.axesTicksGenerator = function (axis) {\n return getTicksOfAxis(axis, true);\n };\n\n _this.renderCursor = function (element) {\n var _this$state2 = _this.state,\n isTooltipActive = _this$state2.isTooltipActive,\n activeCoordinate = _this$state2.activeCoordinate,\n activePayload = _this$state2.activePayload,\n offset = _this$state2.offset,\n activeTooltipIndex = _this$state2.activeTooltipIndex;\n\n var tooltipEventType = _this.getTooltipEventType();\n\n if (!element || !element.props.cursor || !isTooltipActive || !activeCoordinate || chartName !== 'ScatterChart' && tooltipEventType !== 'axis') {\n return null;\n }\n\n var layout = _this.props.layout;\n var restProps;\n var cursorComp = Curve;\n\n if (chartName === 'ScatterChart') {\n restProps = activeCoordinate;\n cursorComp = Cross;\n } else if (chartName === 'BarChart') {\n restProps = _this.getCursorRectangle();\n cursorComp = Rectangle;\n } else if (layout === 'radial') {\n var _this$getCursorPoints = _this.getCursorPoints(),\n cx = _this$getCursorPoints.cx,\n cy = _this$getCursorPoints.cy,\n radius = _this$getCursorPoints.radius,\n startAngle = _this$getCursorPoints.startAngle,\n endAngle = _this$getCursorPoints.endAngle;\n\n restProps = {\n cx: cx,\n cy: cy,\n startAngle: startAngle,\n endAngle: endAngle,\n innerRadius: radius,\n outerRadius: radius\n };\n cursorComp = Sector;\n } else {\n restProps = {\n points: _this.getCursorPoints()\n };\n cursorComp = Curve;\n }\n\n var key = element.key || '_recharts-cursor';\n\n var cursorProps = _objectSpread(_objectSpread(_objectSpread(_objectSpread({\n stroke: '#ccc',\n pointerEvents: 'none'\n }, offset), restProps), filterProps(element.props.cursor)), {}, {\n payload: activePayload,\n payloadIndex: activeTooltipIndex,\n key: key,\n className: 'recharts-tooltip-cursor'\n });\n\n return /*#__PURE__*/isValidElement(element.props.cursor) ? /*#__PURE__*/cloneElement(element.props.cursor, cursorProps) : /*#__PURE__*/createElement(cursorComp, cursorProps);\n };\n\n _this.renderPolarAxis = function (element, displayName, index) {\n var axisType = _get(element, 'type.axisType');\n\n var axisMap = _get(_this.state, \"\".concat(axisType, \"Map\"));\n\n var axisOption = axisMap[element.props[\"\".concat(axisType, \"Id\")]];\n return /*#__PURE__*/cloneElement(element, _objectSpread(_objectSpread({}, axisOption), {}, {\n className: axisType,\n key: element.key || \"\".concat(displayName, \"-\").concat(index),\n ticks: getTicksOfAxis(axisOption, true)\n }));\n };\n\n _this.renderXAxis = function (element, displayName, index) {\n var xAxisMap = _this.state.xAxisMap;\n var axisObj = xAxisMap[element.props.xAxisId];\n return _this.renderAxis(axisObj, element, displayName, index);\n };\n\n _this.renderYAxis = function (element, displayName, index) {\n var yAxisMap = _this.state.yAxisMap;\n var axisObj = yAxisMap[element.props.yAxisId];\n return _this.renderAxis(axisObj, element, displayName, index);\n };\n\n _this.renderGrid = function (element) {\n var _this$state3 = _this.state,\n xAxisMap = _this$state3.xAxisMap,\n yAxisMap = _this$state3.yAxisMap,\n offset = _this$state3.offset;\n var _this$props = _this.props,\n width = _this$props.width,\n height = _this$props.height;\n var xAxis = getAnyElementOfObject(xAxisMap);\n\n var yAxisWithFiniteDomain = _find(yAxisMap, function (axis) {\n return _every(axis.domain, isFinit);\n });\n\n var yAxis = yAxisWithFiniteDomain || getAnyElementOfObject(yAxisMap);\n var props = element.props || {};\n return /*#__PURE__*/cloneElement(element, {\n key: element.key || 'grid',\n x: isNumber(props.x) ? props.x : offset.left,\n y: isNumber(props.y) ? props.y : offset.top,\n width: isNumber(props.width) ? props.width : offset.width,\n height: isNumber(props.height) ? props.height : offset.height,\n xAxis: xAxis,\n yAxis: yAxis,\n offset: offset,\n chartWidth: width,\n chartHeight: height,\n verticalCoordinatesGenerator: props.verticalCoordinatesGenerator || _this.verticalCoordinatesGenerator,\n horizontalCoordinatesGenerator: props.horizontalCoordinatesGenerator || _this.horizontalCoordinatesGenerator\n });\n };\n\n _this.renderPolarGrid = function (element) {\n var _element$props = element.props,\n radialLines = _element$props.radialLines,\n polarAngles = _element$props.polarAngles,\n polarRadius = _element$props.polarRadius;\n var _this$state4 = _this.state,\n radiusAxisMap = _this$state4.radiusAxisMap,\n angleAxisMap = _this$state4.angleAxisMap;\n var radiusAxis = getAnyElementOfObject(radiusAxisMap);\n var angleAxis = getAnyElementOfObject(angleAxisMap);\n var cx = angleAxis.cx,\n cy = angleAxis.cy,\n innerRadius = angleAxis.innerRadius,\n outerRadius = angleAxis.outerRadius;\n return /*#__PURE__*/cloneElement(element, {\n polarAngles: _isArray(polarAngles) ? polarAngles : getTicksOfAxis(angleAxis, true).map(function (entry) {\n return entry.coordinate;\n }),\n polarRadius: _isArray(polarRadius) ? polarRadius : getTicksOfAxis(radiusAxis, true).map(function (entry) {\n return entry.coordinate;\n }),\n cx: cx,\n cy: cy,\n innerRadius: innerRadius,\n outerRadius: outerRadius,\n key: element.key || 'polar-grid',\n radialLines: radialLines\n });\n };\n\n _this.renderLegend = function () {\n var formattedGraphicalItems = _this.state.formattedGraphicalItems;\n var _this$props2 = _this.props,\n children = _this$props2.children,\n width = _this$props2.width,\n height = _this$props2.height;\n var margin = _this.props.margin || {};\n var legendWidth = width - (margin.left || 0) - (margin.right || 0);\n var props = getLegendProps({\n children: children,\n formattedGraphicalItems: formattedGraphicalItems,\n legendWidth: legendWidth,\n legendContent: legendContent\n });\n\n if (!props) {\n return null;\n }\n\n var item = props.item,\n otherProps = _objectWithoutProperties(props, [\"item\"]);\n\n return /*#__PURE__*/cloneElement(item, _objectSpread(_objectSpread({}, otherProps), {}, {\n chartWidth: width,\n chartHeight: height,\n margin: margin,\n ref: function ref(legend) {\n _this.legendInstance = legend;\n },\n onBBoxUpdate: _this.handleLegendBBoxUpdate\n }));\n };\n\n _this.renderTooltip = function () {\n var children = _this.props.children;\n var tooltipItem = findChildByType(children, Tooltip.displayName);\n\n if (!tooltipItem) {\n return null;\n }\n\n var _this$state5 = _this.state,\n isTooltipActive = _this$state5.isTooltipActive,\n activeCoordinate = _this$state5.activeCoordinate,\n activePayload = _this$state5.activePayload,\n activeLabel = _this$state5.activeLabel,\n offset = _this$state5.offset;\n return /*#__PURE__*/cloneElement(tooltipItem, {\n viewBox: _objectSpread(_objectSpread({}, offset), {}, {\n x: offset.left,\n y: offset.top\n }),\n active: isTooltipActive,\n label: activeLabel,\n payload: isTooltipActive ? activePayload : [],\n coordinate: activeCoordinate\n });\n };\n\n _this.renderBrush = function (element) {\n var _this$props3 = _this.props,\n margin = _this$props3.margin,\n data = _this$props3.data;\n var _this$state6 = _this.state,\n offset = _this$state6.offset,\n dataStartIndex = _this$state6.dataStartIndex,\n dataEndIndex = _this$state6.dataEndIndex,\n updateId = _this$state6.updateId; // TODO: update brush when children update\n\n return /*#__PURE__*/cloneElement(element, {\n key: element.key || '_recharts-brush',\n onChange: combineEventHandlers(_this.handleBrushChange, null, element.props.onChange),\n data: data,\n x: isNumber(element.props.x) ? element.props.x : offset.left,\n y: isNumber(element.props.y) ? element.props.y : offset.top + offset.height + offset.brushBottom - (margin.bottom || 0),\n width: isNumber(element.props.width) ? element.props.width : offset.width,\n startIndex: dataStartIndex,\n endIndex: dataEndIndex,\n updateId: \"brush-\".concat(updateId)\n });\n };\n\n _this.renderReferenceElement = function (element, displayName, index) {\n if (!element) {\n return null;\n }\n\n var _assertThisInitialize = _assertThisInitialized(_this),\n clipPathId = _assertThisInitialize.clipPathId;\n\n var _this$state7 = _this.state,\n xAxisMap = _this$state7.xAxisMap,\n yAxisMap = _this$state7.yAxisMap,\n offset = _this$state7.offset;\n var _element$props2 = element.props,\n xAxisId = _element$props2.xAxisId,\n yAxisId = _element$props2.yAxisId;\n return /*#__PURE__*/cloneElement(element, {\n key: element.key || \"\".concat(displayName, \"-\").concat(index),\n xAxis: xAxisMap[xAxisId],\n yAxis: yAxisMap[yAxisId],\n viewBox: {\n x: offset.left,\n y: offset.top,\n width: offset.width,\n height: offset.height\n },\n clipPathId: clipPathId\n });\n };\n\n _this.renderActivePoints = function (_ref12) {\n var item = _ref12.item,\n activePoint = _ref12.activePoint,\n basePoint = _ref12.basePoint,\n childIndex = _ref12.childIndex,\n isRange = _ref12.isRange;\n var result = [];\n var key = item.props.key;\n var _item$item$props = item.item.props,\n activeDot = _item$item$props.activeDot,\n dataKey = _item$item$props.dataKey;\n\n var dotProps = _objectSpread(_objectSpread({\n index: childIndex,\n dataKey: dataKey,\n cx: activePoint.x,\n cy: activePoint.y,\n r: 4,\n fill: getMainColorOfGraphicItem(item.item),\n strokeWidth: 2,\n stroke: '#fff',\n payload: activePoint.payload,\n value: activePoint.value,\n key: \"\".concat(key, \"-activePoint-\").concat(childIndex)\n }, filterProps(activeDot)), adaptEventHandlers(activeDot));\n\n result.push(CategoricalChartWrapper.renderActiveDot(activeDot, dotProps));\n\n if (basePoint) {\n result.push(CategoricalChartWrapper.renderActiveDot(activeDot, _objectSpread(_objectSpread({}, dotProps), {}, {\n cx: basePoint.x,\n cy: basePoint.y,\n key: \"\".concat(key, \"-basePoint-\").concat(childIndex)\n })));\n } else if (isRange) {\n result.push(null);\n }\n\n return result;\n };\n\n _this.renderGraphicChild = function (element, displayName, index) {\n var item = _this.filterFormatItem(element, displayName, index);\n\n if (!item) {\n return null;\n }\n\n var tooltipEventType = _this.getTooltipEventType();\n\n var _this$state8 = _this.state,\n isTooltipActive = _this$state8.isTooltipActive,\n tooltipAxis = _this$state8.tooltipAxis,\n activeTooltipIndex = _this$state8.activeTooltipIndex,\n activeLabel = _this$state8.activeLabel;\n var children = _this.props.children;\n var tooltipItem = findChildByType(children, Tooltip.displayName);\n var _item$props2 = item.props,\n points = _item$props2.points,\n isRange = _item$props2.isRange,\n baseLine = _item$props2.baseLine;\n var _item$item$props2 = item.item.props,\n activeDot = _item$item$props2.activeDot,\n hide = _item$item$props2.hide;\n var hasActive = !hide && isTooltipActive && tooltipItem && activeDot && activeTooltipIndex >= 0;\n var itemEvents = {};\n\n if (tooltipEventType !== 'axis' && tooltipItem && tooltipItem.props.trigger === 'click') {\n itemEvents = {\n onClick: combineEventHandlers(_this.handleItemMouseEnter, null, element.props.onCLick)\n };\n } else if (tooltipEventType !== 'axis') {\n itemEvents = {\n onMouseLeave: combineEventHandlers(_this.handleItemMouseLeave, null, element.props.onMouseLeave),\n onMouseEnter: combineEventHandlers(_this.handleItemMouseEnter, null, element.props.onMouseEnter)\n };\n }\n\n var graphicalItem = /*#__PURE__*/cloneElement(element, _objectSpread(_objectSpread({}, item.props), itemEvents));\n\n function findWithPayload(entry) {\n // TODO needs to verify dataKey is Function\n return typeof tooltipAxis.dataKey === 'function' ? tooltipAxis.dataKey(entry.payload) : null;\n }\n\n if (hasActive) {\n var activePoint, basePoint;\n\n if (tooltipAxis.dataKey && !tooltipAxis.allowDuplicatedCategory) {\n // number transform to string\n var specifiedKey = typeof tooltipAxis.dataKey === 'function' ? findWithPayload : 'payload.'.concat(tooltipAxis.dataKey.toString());\n activePoint = findEntryInArray(points, specifiedKey, activeLabel);\n basePoint = isRange && baseLine && findEntryInArray(baseLine, specifiedKey, activeLabel);\n } else {\n activePoint = points[activeTooltipIndex];\n basePoint = isRange && baseLine && baseLine[activeTooltipIndex];\n }\n\n if (!_isNil(activePoint)) {\n return [graphicalItem].concat(_toConsumableArray(_this.renderActivePoints({\n item: item,\n activePoint: activePoint,\n basePoint: basePoint,\n childIndex: activeTooltipIndex,\n isRange: isRange\n })));\n }\n }\n\n if (isRange) {\n return [graphicalItem, null, null];\n }\n\n return [graphicalItem, null];\n };\n\n _this.renderCustomized = function (element, displayName, index) {\n return /*#__PURE__*/cloneElement(element, _objectSpread(_objectSpread({\n key: \"recharts-customized-\".concat(index)\n }, _this.props), _this.state));\n };\n\n _this.uniqueChartId = _isNil(_props.id) ? uniqueId('recharts') : _props.id;\n _this.clipPathId = \"\".concat(_this.uniqueChartId, \"-clip\");\n\n if (_props.throttleDelay) {\n _this.triggeredAfterMouseMove = _throttle(_this.triggeredAfterMouseMove, _props.throttleDelay);\n }\n\n _this.state = {};\n return _this;\n }\n /* eslint-disable react/no-did-mount-set-state */\n\n\n _createClass(CategoricalChartWrapper, [{\n key: \"componentDidMount\",\n value: function componentDidMount() {\n if (!_isNil(this.props.syncId)) {\n this.addListener();\n }\n }\n }, {\n key: \"componentDidUpdate\",\n value: function componentDidUpdate(prevProps) {\n // add syncId\n if (_isNil(prevProps.syncId) && !_isNil(this.props.syncId)) {\n this.addListener();\n } // remove syncId\n\n\n if (!_isNil(prevProps.syncId) && _isNil(this.props.syncId)) {\n this.removeListener();\n }\n }\n }, {\n key: \"componentWillUnmount\",\n value: function componentWillUnmount() {\n this.clearDeferId();\n\n if (!_isNil(this.props.syncId)) {\n this.removeListener();\n }\n\n this.cancelThrottledTriggerAfterMouseMove();\n }\n }, {\n key: \"cancelThrottledTriggerAfterMouseMove\",\n value: function cancelThrottledTriggerAfterMouseMove() {\n if (typeof this.triggeredAfterMouseMove.cancel === 'function') {\n this.triggeredAfterMouseMove.cancel();\n }\n }\n }, {\n key: \"getTooltipEventType\",\n value: function getTooltipEventType() {\n var tooltipItem = findChildByType(this.props.children, Tooltip.displayName);\n\n if (tooltipItem && _isBoolean(tooltipItem.props.shared)) {\n var eventType = tooltipItem.props.shared ? 'axis' : 'item';\n return validateTooltipEventTypes.indexOf(eventType) >= 0 ? eventType : defaultTooltipEventType;\n }\n\n return defaultTooltipEventType;\n }\n /**\n * Get the information of mouse in chart, return null when the mouse is not in the chart\n * @param {Object} event The event object\n * @return {Object} Mouse data\n */\n\n }, {\n key: \"getMouseInfo\",\n value: function getMouseInfo(event) {\n if (!this.container) {\n return null;\n }\n\n var containerOffset = getOffset(this.container);\n var e = calculateChartCoordinate(event, containerOffset);\n var rangeObj = this.inRange(e.chartX, e.chartY);\n\n if (!rangeObj) {\n return null;\n }\n\n var _this$state9 = this.state,\n xAxisMap = _this$state9.xAxisMap,\n yAxisMap = _this$state9.yAxisMap;\n var tooltipEventType = this.getTooltipEventType();\n\n if (tooltipEventType !== 'axis' && xAxisMap && yAxisMap) {\n var xScale = getAnyElementOfObject(xAxisMap).scale;\n var yScale = getAnyElementOfObject(yAxisMap).scale;\n var xValue = xScale && xScale.invert ? xScale.invert(e.chartX) : null;\n var yValue = yScale && yScale.invert ? yScale.invert(e.chartY) : null;\n return _objectSpread(_objectSpread({}, e), {}, {\n xValue: xValue,\n yValue: yValue\n });\n }\n\n var toolTipData = getTooltipData(this.state, this.props.data, this.props.layout, rangeObj);\n\n if (toolTipData) {\n return _objectSpread(_objectSpread({}, e), toolTipData);\n }\n\n return null;\n }\n }, {\n key: \"getCursorRectangle\",\n value: function getCursorRectangle() {\n var layout = this.props.layout;\n var _this$state10 = this.state,\n activeCoordinate = _this$state10.activeCoordinate,\n offset = _this$state10.offset,\n tooltipAxisBandSize = _this$state10.tooltipAxisBandSize;\n var halfSize = tooltipAxisBandSize / 2;\n return {\n stroke: 'none',\n fill: '#ccc',\n x: layout === 'horizontal' ? activeCoordinate.x - halfSize : offset.left + 0.5,\n y: layout === 'horizontal' ? offset.top + 0.5 : activeCoordinate.y - halfSize,\n width: layout === 'horizontal' ? tooltipAxisBandSize : offset.width - 1,\n height: layout === 'horizontal' ? offset.height - 1 : tooltipAxisBandSize\n };\n }\n }, {\n key: \"getCursorPoints\",\n value: function getCursorPoints() {\n var layout = this.props.layout;\n var _this$state11 = this.state,\n activeCoordinate = _this$state11.activeCoordinate,\n offset = _this$state11.offset;\n var x1, y1, x2, y2;\n\n if (layout === 'horizontal') {\n x1 = activeCoordinate.x;\n x2 = x1;\n y1 = offset.top;\n y2 = offset.top + offset.height;\n } else if (layout === 'vertical') {\n y1 = activeCoordinate.y;\n y2 = y1;\n x1 = offset.left;\n x2 = offset.left + offset.width;\n } else if (!_isNil(activeCoordinate.cx) || !_isNil(activeCoordinate.cy)) {\n if (layout === 'centric') {\n var cx = activeCoordinate.cx,\n cy = activeCoordinate.cy,\n innerRadius = activeCoordinate.innerRadius,\n outerRadius = activeCoordinate.outerRadius,\n angle = activeCoordinate.angle;\n var innerPoint = polarToCartesian(cx, cy, innerRadius, angle);\n var outerPoint = polarToCartesian(cx, cy, outerRadius, angle);\n x1 = innerPoint.x;\n y1 = innerPoint.y;\n x2 = outerPoint.x;\n y2 = outerPoint.y;\n } else {\n var _cx = activeCoordinate.cx,\n _cy = activeCoordinate.cy,\n radius = activeCoordinate.radius,\n startAngle = activeCoordinate.startAngle,\n endAngle = activeCoordinate.endAngle;\n var startPoint = polarToCartesian(_cx, _cy, radius, startAngle);\n var endPoint = polarToCartesian(_cx, _cy, radius, endAngle);\n return {\n points: [startPoint, endPoint],\n cx: _cx,\n cy: _cy,\n radius: radius,\n startAngle: startAngle,\n endAngle: endAngle\n };\n }\n }\n\n return [{\n x: x1,\n y: y1\n }, {\n x: x2,\n y: y2\n }];\n }\n }, {\n key: \"inRange\",\n value: function inRange(x, y) {\n var layout = this.props.layout;\n\n if (layout === 'horizontal' || layout === 'vertical') {\n var offset = this.state.offset;\n var isInRange = x >= offset.left && x <= offset.left + offset.width && y >= offset.top && y <= offset.top + offset.height;\n return isInRange ? {\n x: x,\n y: y\n } : null;\n }\n\n var _this$state12 = this.state,\n angleAxisMap = _this$state12.angleAxisMap,\n radiusAxisMap = _this$state12.radiusAxisMap;\n\n if (angleAxisMap && radiusAxisMap) {\n var angleAxis = getAnyElementOfObject(angleAxisMap);\n return inRangeOfSector({\n x: x,\n y: y\n }, angleAxis);\n }\n\n return null;\n }\n }, {\n key: \"parseEventsOfWrapper\",\n value: function parseEventsOfWrapper() {\n var children = this.props.children;\n var tooltipEventType = this.getTooltipEventType();\n var tooltipItem = findChildByType(children, Tooltip.displayName);\n var tooltipEvents = {};\n\n if (tooltipItem && tooltipEventType === 'axis') {\n if (tooltipItem.props.trigger === 'click') {\n tooltipEvents = {\n onClick: this.handleClick\n };\n } else {\n tooltipEvents = {\n onMouseEnter: this.handleMouseEnter,\n onMouseMove: this.handleMouseMove,\n onMouseLeave: this.handleMouseLeave,\n onTouchMove: this.handleTouchMove,\n onTouchStart: this.handleTouchStart,\n onTouchEnd: this.handleTouchEnd\n };\n }\n }\n\n var outerEvents = adaptEventHandlers(this.props, this.handleOuterEvent);\n return _objectSpread(_objectSpread({}, outerEvents), tooltipEvents);\n }\n /* eslint-disable no-underscore-dangle */\n\n }, {\n key: \"addListener\",\n value: function addListener() {\n eventCenter.on(SYNC_EVENT, this.handleReceiveSyncEvent);\n\n if (eventCenter.setMaxListeners && eventCenter._maxListeners) {\n eventCenter.setMaxListeners(eventCenter._maxListeners + 1);\n }\n }\n }, {\n key: \"removeListener\",\n value: function removeListener() {\n eventCenter.removeListener(SYNC_EVENT, this.handleReceiveSyncEvent);\n\n if (eventCenter.setMaxListeners && eventCenter._maxListeners) {\n eventCenter.setMaxListeners(eventCenter._maxListeners - 1);\n }\n }\n }, {\n key: \"triggerSyncEvent\",\n value: function triggerSyncEvent(data) {\n var syncId = this.props.syncId;\n\n if (!_isNil(syncId)) {\n eventCenter.emit(SYNC_EVENT, syncId, this.uniqueChartId, data);\n }\n }\n }, {\n key: \"applySyncEvent\",\n value: function applySyncEvent(data) {\n var _this$props4 = this.props,\n layout = _this$props4.layout,\n syncMethod = _this$props4.syncMethod;\n var updateId = this.state.updateId;\n var dataStartIndex = data.dataStartIndex,\n dataEndIndex = data.dataEndIndex;\n\n if (!_isNil(data.dataStartIndex) || !_isNil(data.dataEndIndex)) {\n this.setState(_objectSpread({\n dataStartIndex: dataStartIndex,\n dataEndIndex: dataEndIndex\n }, updateStateOfAxisMapsOffsetAndStackGroups({\n props: this.props,\n dataStartIndex: dataStartIndex,\n dataEndIndex: dataEndIndex,\n updateId: updateId\n }, this.state)));\n } else if (!_isNil(data.activeTooltipIndex)) {\n var chartX = data.chartX,\n chartY = data.chartY;\n var activeTooltipIndex = data.activeTooltipIndex;\n var _this$state13 = this.state,\n offset = _this$state13.offset,\n tooltipTicks = _this$state13.tooltipTicks;\n\n if (!offset) {\n return;\n }\n\n if (typeof syncMethod === 'function') {\n // Call a callback function. If there is an application specific algorithm\n activeTooltipIndex = syncMethod(tooltipTicks, data);\n } else if (syncMethod === 'value') {\n // Set activeTooltipIndex to the index with the same value as data.activeLabel\n // For loop instead of findIndex because the latter is very slow in some browsers\n activeTooltipIndex = -1; // in case we cannot find the element\n\n for (var i = 0; i < tooltipTicks.length; i++) {\n if (tooltipTicks[i].value === data.activeLabel) {\n activeTooltipIndex = i;\n break;\n }\n }\n }\n\n var viewBox = _objectSpread(_objectSpread({}, offset), {}, {\n x: offset.left,\n y: offset.top\n }); // When a categotical chart is combined with another chart, the value of chartX\n // and chartY may beyond the boundaries.\n\n\n var validateChartX = Math.min(chartX, viewBox.x + viewBox.width);\n var validateChartY = Math.min(chartY, viewBox.y + viewBox.height);\n var activeLabel = tooltipTicks[activeTooltipIndex] && tooltipTicks[activeTooltipIndex].value;\n var activePayload = getTooltipContent(this.state, this.props.data, activeTooltipIndex);\n var activeCoordinate = tooltipTicks[activeTooltipIndex] ? {\n x: layout === 'horizontal' ? tooltipTicks[activeTooltipIndex].coordinate : validateChartX,\n y: layout === 'horizontal' ? validateChartY : tooltipTicks[activeTooltipIndex].coordinate\n } : originCoordinate;\n this.setState(_objectSpread(_objectSpread({}, data), {}, {\n activeLabel: activeLabel,\n activeCoordinate: activeCoordinate,\n activePayload: activePayload,\n activeTooltipIndex: activeTooltipIndex\n }));\n } else {\n this.setState(data);\n }\n }\n }, {\n key: \"filterFormatItem\",\n value: function filterFormatItem(item, displayName, childIndex) {\n var formattedGraphicalItems = this.state.formattedGraphicalItems;\n\n for (var i = 0, len = formattedGraphicalItems.length; i < len; i++) {\n var entry = formattedGraphicalItems[i];\n\n if (entry.item === item || entry.props.key === item.key || displayName === getDisplayName(entry.item.type) && childIndex === entry.childIndex) {\n return entry;\n }\n }\n\n return null;\n }\n }, {\n key: \"renderAxis\",\n value:\n /**\n * Draw axis\n * @param {Object} axisOptions The options of axis\n * @param {Object} element The axis element\n * @param {String} displayName The display name of axis\n * @param {Number} index The index of element\n * @return {ReactElement} The instance of x-axes\n */\n function renderAxis(axisOptions, element, displayName, index) {\n var _this$props5 = this.props,\n width = _this$props5.width,\n height = _this$props5.height;\n return /*#__PURE__*/React.createElement(CartesianAxis, _extends({}, axisOptions, {\n className: \"recharts-\".concat(axisOptions.axisType, \" \").concat(axisOptions.axisType),\n key: element.key || \"\".concat(displayName, \"-\").concat(index),\n viewBox: {\n x: 0,\n y: 0,\n width: width,\n height: height\n },\n ticksGenerator: this.axesTicksGenerator\n }));\n }\n /**\n * Draw grid\n * @param {ReactElement} element the grid item\n * @return {ReactElement} The instance of grid\n */\n\n }, {\n key: \"renderClipPath\",\n value: function renderClipPath() {\n var clipPathId = this.clipPathId;\n var _this$state$offset = this.state.offset,\n left = _this$state$offset.left,\n top = _this$state$offset.top,\n height = _this$state$offset.height,\n width = _this$state$offset.width;\n return /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: clipPathId\n }, /*#__PURE__*/React.createElement(\"rect\", {\n x: left,\n y: top,\n height: height,\n width: width\n })));\n }\n }, {\n key: \"getXScales\",\n value: function getXScales() {\n var xAxisMap = this.state.xAxisMap;\n return xAxisMap ? Object.entries(xAxisMap).reduce(function (res, _ref13) {\n var _ref14 = _slicedToArray(_ref13, 2),\n axisId = _ref14[0],\n axisProps = _ref14[1];\n\n return _objectSpread(_objectSpread({}, res), {}, _defineProperty({}, axisId, axisProps.scale));\n }, {}) : null;\n }\n }, {\n key: \"getYScales\",\n value: function getYScales() {\n var yAxisMap = this.state.yAxisMap;\n return yAxisMap ? Object.entries(yAxisMap).reduce(function (res, _ref15) {\n var _ref16 = _slicedToArray(_ref15, 2),\n axisId = _ref16[0],\n axisProps = _ref16[1];\n\n return _objectSpread(_objectSpread({}, res), {}, _defineProperty({}, axisId, axisProps.scale));\n }, {}) : null;\n }\n }, {\n key: \"getXScaleByAxisId\",\n value: function getXScaleByAxisId(axisId) {\n var _this$state$xAxisMap, _this$state$xAxisMap$;\n\n return (_this$state$xAxisMap = this.state.xAxisMap) === null || _this$state$xAxisMap === void 0 ? void 0 : (_this$state$xAxisMap$ = _this$state$xAxisMap[axisId]) === null || _this$state$xAxisMap$ === void 0 ? void 0 : _this$state$xAxisMap$.scale;\n }\n }, {\n key: \"getYScaleByAxisId\",\n value: function getYScaleByAxisId(axisId) {\n var _this$state$yAxisMap, _this$state$yAxisMap$;\n\n return (_this$state$yAxisMap = this.state.yAxisMap) === null || _this$state$yAxisMap === void 0 ? void 0 : (_this$state$yAxisMap$ = _this$state$yAxisMap[axisId]) === null || _this$state$yAxisMap$ === void 0 ? void 0 : _this$state$yAxisMap$.scale;\n }\n }, {\n key: \"getItemByXY\",\n value: function getItemByXY(chartXY) {\n var formattedGraphicalItems = this.state.formattedGraphicalItems;\n\n if (formattedGraphicalItems && formattedGraphicalItems.length) {\n for (var i = 0, len = formattedGraphicalItems.length; i < len; i++) {\n var graphicalItem = formattedGraphicalItems[i];\n var props = graphicalItem.props,\n item = graphicalItem.item;\n var itemDisplayName = getDisplayName(item.type);\n\n if (itemDisplayName === 'Bar') {\n var activeBarItem = (props.data || []).find(function (entry) {\n return isInRectangle(chartXY, entry);\n });\n\n if (activeBarItem) {\n return {\n graphicalItem: graphicalItem,\n payload: activeBarItem\n };\n }\n } else if (itemDisplayName === 'RadialBar') {\n var _activeBarItem = (props.data || []).find(function (entry) {\n return inRangeOfSector(chartXY, entry);\n });\n\n if (_activeBarItem) {\n return {\n graphicalItem: graphicalItem,\n payload: _activeBarItem\n };\n }\n }\n }\n }\n\n return null;\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this2 = this;\n\n if (!validateWidthHeight(this)) {\n return null;\n }\n\n var _this$props6 = this.props,\n children = _this$props6.children,\n className = _this$props6.className,\n width = _this$props6.width,\n height = _this$props6.height,\n style = _this$props6.style,\n compact = _this$props6.compact,\n title = _this$props6.title,\n desc = _this$props6.desc,\n others = _objectWithoutProperties(_this$props6, [\"children\", \"className\", \"width\", \"height\", \"style\", \"compact\", \"title\", \"desc\"]);\n\n var attrs = filterProps(others);\n var map = {\n CartesianGrid: {\n handler: this.renderGrid,\n once: true\n },\n ReferenceArea: {\n handler: this.renderReferenceElement\n },\n ReferenceLine: {\n handler: this.renderReferenceElement\n },\n ReferenceDot: {\n handler: this.renderReferenceElement\n },\n XAxis: {\n handler: this.renderXAxis\n },\n YAxis: {\n handler: this.renderYAxis\n },\n Brush: {\n handler: this.renderBrush,\n once: true\n },\n Bar: {\n handler: this.renderGraphicChild\n },\n Line: {\n handler: this.renderGraphicChild\n },\n Area: {\n handler: this.renderGraphicChild\n },\n Radar: {\n handler: this.renderGraphicChild\n },\n RadialBar: {\n handler: this.renderGraphicChild\n },\n Scatter: {\n handler: this.renderGraphicChild\n },\n Pie: {\n handler: this.renderGraphicChild\n },\n Funnel: {\n handler: this.renderGraphicChild\n },\n Tooltip: {\n handler: this.renderCursor,\n once: true\n },\n PolarGrid: {\n handler: this.renderPolarGrid,\n once: true\n },\n PolarAngleAxis: {\n handler: this.renderPolarAxis\n },\n PolarRadiusAxis: {\n handler: this.renderPolarAxis\n },\n Customized: {\n handler: this.renderCustomized\n }\n }; // The \"compact\" mode is mainly used as the panorama within Brush\n\n if (compact) {\n return /*#__PURE__*/React.createElement(Surface, _extends({}, attrs, {\n width: width,\n height: height,\n title: title,\n desc: desc\n }), this.renderClipPath(), renderByOrder(children, map));\n }\n\n var events = this.parseEventsOfWrapper();\n return /*#__PURE__*/React.createElement(\"div\", _extends({\n className: classNames('recharts-wrapper', className),\n style: _objectSpread({\n position: 'relative',\n cursor: 'default',\n width: width,\n height: height\n }, style)\n }, events, {\n ref: function ref(node) {\n _this2.container = node;\n }\n }), /*#__PURE__*/React.createElement(Surface, _extends({}, attrs, {\n width: width,\n height: height,\n title: title,\n desc: desc\n }), this.renderClipPath(), renderByOrder(children, map)), this.renderLegend(), this.renderTooltip());\n }\n }]);\n\n return CategoricalChartWrapper;\n }(Component), _class.displayName = chartName, _class.defaultProps = _objectSpread({\n layout: 'horizontal',\n stackOffset: 'none',\n barCategoryGap: '10%',\n barGap: 4,\n margin: {\n top: 5,\n right: 5,\n bottom: 5,\n left: 5\n },\n reverseStackOrder: false,\n syncMethod: 'index'\n }, defaultProps), _class.getDerivedStateFromProps = function (nextProps, prevState) {\n var data = nextProps.data,\n children = nextProps.children,\n width = nextProps.width,\n height = nextProps.height,\n layout = nextProps.layout,\n stackOffset = nextProps.stackOffset,\n margin = nextProps.margin;\n\n if (_isNil(prevState.updateId)) {\n var defaultState = createDefaultState(nextProps);\n return _objectSpread(_objectSpread(_objectSpread({}, defaultState), {}, {\n updateId: 0\n }, updateStateOfAxisMapsOffsetAndStackGroups(_objectSpread(_objectSpread({\n props: nextProps\n }, defaultState), {}, {\n updateId: 0\n }), prevState)), {}, {\n prevData: data,\n prevWidth: width,\n prevHeight: height,\n prevLayout: layout,\n prevStackOffset: stackOffset,\n prevMargin: margin,\n prevChildren: children\n });\n }\n\n if (data !== prevState.prevData || width !== prevState.prevWidth || height !== prevState.prevHeight || layout !== prevState.prevLayout || stackOffset !== prevState.prevStackOffset || !shallowEqual(margin, prevState.prevMargin)) {\n var _defaultState = createDefaultState(nextProps); // Fixes https://github.com/recharts/recharts/issues/2143\n\n\n var keepFromPrevState = {\n // (chartX, chartY) are (0,0) in default state, but we want to keep the last mouse position to avoid\n // any flickering\n chartX: prevState.chartX,\n chartY: prevState.chartY,\n // The tooltip should stay active when it was active in the previous render. If this is not\n // the case, the tooltip disappears and immediately re-appears, causing a flickering effect\n isTooltipActive: prevState.isTooltipActive\n };\n\n var updatesToState = _objectSpread(_objectSpread({}, getTooltipData(prevState, data, layout)), {}, {\n updateId: prevState.updateId + 1\n });\n\n var newState = _objectSpread(_objectSpread(_objectSpread({}, _defaultState), keepFromPrevState), updatesToState);\n\n return _objectSpread(_objectSpread(_objectSpread({}, newState), updateStateOfAxisMapsOffsetAndStackGroups(_objectSpread({\n props: nextProps\n }, newState), prevState)), {}, {\n prevData: data,\n prevWidth: width,\n prevHeight: height,\n prevLayout: layout,\n prevStackOffset: stackOffset,\n prevMargin: margin,\n prevChildren: children\n });\n }\n\n if (!isChildrenEqual(children, prevState.prevChildren)) {\n // update configuration in chilren\n var hasGlobalData = !_isNil(data);\n var newUpdateId = hasGlobalData ? prevState.updateId : prevState.updateId + 1;\n return _objectSpread(_objectSpread({\n updateId: newUpdateId\n }, updateStateOfAxisMapsOffsetAndStackGroups(_objectSpread(_objectSpread({\n props: nextProps\n }, prevState), {}, {\n updateId: newUpdateId\n }), prevState)), {}, {\n prevChildren: children\n });\n }\n\n return null;\n }, _class.renderActiveDot = function (option, props) {\n var dot;\n\n if ( /*#__PURE__*/isValidElement(option)) {\n dot = /*#__PURE__*/cloneElement(option, props);\n } else if (_isFunction(option)) {\n dot = option(props);\n } else {\n dot = /*#__PURE__*/React.createElement(Dot, props);\n }\n\n return /*#__PURE__*/React.createElement(Layer, {\n className: \"recharts-active-dot\",\n key: props.key\n }, dot);\n }, _temp;\n};","/**\n * @fileOverview Y Axis\n */\nexport var YAxis = function YAxis() {\n return null;\n};\nYAxis.displayName = 'YAxis';\nYAxis.defaultProps = {\n allowDuplicatedCategory: true,\n allowDecimals: true,\n hide: false,\n orientation: 'left',\n width: 60,\n height: 0,\n mirror: false,\n yAxisId: 0,\n tickCount: 5,\n type: 'number',\n domain: [0, 'auto'],\n padding: {\n top: 0,\n bottom: 0\n },\n allowDataOverflow: false,\n scale: 'auto',\n reversed: false\n};","/**\n * @fileOverview Bar Chart\n */\nimport { generateCategoricalChart } from './generateCategoricalChart';\nimport { Bar } from '../cartesian/Bar';\nimport { XAxis } from '../cartesian/XAxis';\nimport { YAxis } from '../cartesian/YAxis';\nimport { formatAxisMap } from '../util/CartesianUtils';\nexport var BarChart = generateCategoricalChart({\n chartName: 'BarChart',\n GraphicalChild: Bar,\n defaultTooltipEventType: 'axis',\n validateTooltipEventTypes: ['axis', 'item'],\n axisComponents: [{\n axisType: 'xAxis',\n AxisComp: XAxis\n }, {\n axisType: 'yAxis',\n AxisComp: YAxis\n }],\n formatAxisMap: formatAxisMap\n});","import _isObject from \"lodash/isObject\";\nimport _isFunction from \"lodash/isFunction\";\nimport _isNil from \"lodash/isNil\";\n\nfunction _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\n\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _iterableToArray(iter) { if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter); }\n\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nimport React, { cloneElement, isValidElement, createElement } from 'react';\nimport classNames from 'classnames';\nimport { Text } from './Text';\nimport { findAllByType } from '../util/ReactUtils';\nimport { isNumOrStr, isNumber, isPercent, getPercentValue, uniqueId, mathSign } from '../util/DataUtils';\nimport { polarToCartesian } from '../util/PolarUtils';\nimport { filterProps } from '../util/types';\n\nvar getLabel = function getLabel(props) {\n var value = props.value,\n formatter = props.formatter;\n var label = _isNil(props.children) ? value : props.children;\n\n if (_isFunction(formatter)) {\n return formatter(label);\n }\n\n return label;\n};\n\nvar getDeltaAngle = function getDeltaAngle(startAngle, endAngle) {\n var sign = mathSign(endAngle - startAngle);\n var deltaAngle = Math.min(Math.abs(endAngle - startAngle), 360);\n return sign * deltaAngle;\n};\n\nvar renderRadialLabel = function renderRadialLabel(labelProps, label, attrs) {\n var position = labelProps.position,\n viewBox = labelProps.viewBox,\n offset = labelProps.offset,\n className = labelProps.className;\n var _ref = viewBox,\n cx = _ref.cx,\n cy = _ref.cy,\n innerRadius = _ref.innerRadius,\n outerRadius = _ref.outerRadius,\n startAngle = _ref.startAngle,\n endAngle = _ref.endAngle,\n clockWise = _ref.clockWise;\n var radius = (innerRadius + outerRadius) / 2;\n var deltaAngle = getDeltaAngle(startAngle, endAngle);\n var sign = deltaAngle >= 0 ? 1 : -1;\n var labelAngle, direction;\n\n if (position === 'insideStart') {\n labelAngle = startAngle + sign * offset;\n direction = clockWise;\n } else if (position === 'insideEnd') {\n labelAngle = endAngle - sign * offset;\n direction = !clockWise;\n } else if (position === 'end') {\n labelAngle = endAngle + sign * offset;\n direction = clockWise;\n }\n\n direction = deltaAngle <= 0 ? direction : !direction;\n var startPoint = polarToCartesian(cx, cy, radius, labelAngle);\n var endPoint = polarToCartesian(cx, cy, radius, labelAngle + (direction ? 1 : -1) * 359);\n var path = \"M\".concat(startPoint.x, \",\").concat(startPoint.y, \"\\n A\").concat(radius, \",\").concat(radius, \",0,1,\").concat(direction ? 0 : 1, \",\\n \").concat(endPoint.x, \",\").concat(endPoint.y);\n var id = _isNil(labelProps.id) ? uniqueId('recharts-radial-line-') : labelProps.id;\n return /*#__PURE__*/React.createElement(\"text\", _extends({}, attrs, {\n dominantBaseline: \"central\",\n className: classNames('recharts-radial-bar-label', className)\n }), /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: id,\n d: path\n })), /*#__PURE__*/React.createElement(\"textPath\", {\n xlinkHref: \"#\".concat(id)\n }, label));\n};\n\nvar getAttrsOfPolarLabel = function getAttrsOfPolarLabel(props) {\n var viewBox = props.viewBox,\n offset = props.offset,\n position = props.position;\n var _ref2 = viewBox,\n cx = _ref2.cx,\n cy = _ref2.cy,\n innerRadius = _ref2.innerRadius,\n outerRadius = _ref2.outerRadius,\n startAngle = _ref2.startAngle,\n endAngle = _ref2.endAngle;\n var midAngle = (startAngle + endAngle) / 2;\n\n if (position === 'outside') {\n var _polarToCartesian = polarToCartesian(cx, cy, outerRadius + offset, midAngle),\n _x = _polarToCartesian.x,\n _y = _polarToCartesian.y;\n\n return {\n x: _x,\n y: _y,\n textAnchor: _x >= cx ? 'start' : 'end',\n verticalAnchor: 'middle'\n };\n }\n\n if (position === 'center') {\n return {\n x: cx,\n y: cy,\n textAnchor: 'middle',\n verticalAnchor: 'middle'\n };\n }\n\n if (position === 'centerTop') {\n return {\n x: cx,\n y: cy,\n textAnchor: 'middle',\n verticalAnchor: 'start'\n };\n }\n\n if (position === 'centerBottom') {\n return {\n x: cx,\n y: cy,\n textAnchor: 'middle',\n verticalAnchor: 'end'\n };\n }\n\n var r = (innerRadius + outerRadius) / 2;\n\n var _polarToCartesian2 = polarToCartesian(cx, cy, r, midAngle),\n x = _polarToCartesian2.x,\n y = _polarToCartesian2.y;\n\n return {\n x: x,\n y: y,\n textAnchor: 'middle',\n verticalAnchor: 'middle'\n };\n};\n\nvar getAttrsOfCartesianLabel = function getAttrsOfCartesianLabel(props) {\n var viewBox = props.viewBox,\n parentViewBox = props.parentViewBox,\n offset = props.offset,\n position = props.position;\n var _ref3 = viewBox,\n x = _ref3.x,\n y = _ref3.y,\n width = _ref3.width,\n height = _ref3.height; // Define vertical offsets and position inverts based on the value being positive or negative\n\n var verticalSign = height >= 0 ? 1 : -1;\n var verticalOffset = verticalSign * offset;\n var verticalEnd = verticalSign > 0 ? 'end' : 'start';\n var verticalStart = verticalSign > 0 ? 'start' : 'end'; // Define horizontal offsets and position inverts based on the value being positive or negative\n\n var horizontalSign = width >= 0 ? 1 : -1;\n var horizontalOffset = horizontalSign * offset;\n var horizontalEnd = horizontalSign > 0 ? 'end' : 'start';\n var horizontalStart = horizontalSign > 0 ? 'start' : 'end';\n\n if (position === 'top') {\n var attrs = {\n x: x + width / 2,\n y: y - verticalSign * offset,\n textAnchor: 'middle',\n verticalAnchor: verticalEnd\n };\n return _objectSpread(_objectSpread({}, attrs), parentViewBox ? {\n height: Math.max(y - parentViewBox.y, 0),\n width: width\n } : {});\n }\n\n if (position === 'bottom') {\n var _attrs = {\n x: x + width / 2,\n y: y + height + verticalOffset,\n textAnchor: 'middle',\n verticalAnchor: verticalStart\n };\n return _objectSpread(_objectSpread({}, _attrs), parentViewBox ? {\n height: Math.max(parentViewBox.y + parentViewBox.height - (y + height), 0),\n width: width\n } : {});\n }\n\n if (position === 'left') {\n var _attrs2 = {\n x: x - horizontalOffset,\n y: y + height / 2,\n textAnchor: horizontalEnd,\n verticalAnchor: 'middle'\n };\n return _objectSpread(_objectSpread({}, _attrs2), parentViewBox ? {\n width: Math.max(_attrs2.x - parentViewBox.x, 0),\n height: height\n } : {});\n }\n\n if (position === 'right') {\n var _attrs3 = {\n x: x + width + horizontalOffset,\n y: y + height / 2,\n textAnchor: horizontalStart,\n verticalAnchor: 'middle'\n };\n return _objectSpread(_objectSpread({}, _attrs3), parentViewBox ? {\n width: Math.max(parentViewBox.x + parentViewBox.width - _attrs3.x, 0),\n height: height\n } : {});\n }\n\n var sizeAttrs = parentViewBox ? {\n width: width,\n height: height\n } : {};\n\n if (position === 'insideLeft') {\n return _objectSpread({\n x: x + horizontalOffset,\n y: y + height / 2,\n textAnchor: horizontalStart,\n verticalAnchor: 'middle'\n }, sizeAttrs);\n }\n\n if (position === 'insideRight') {\n return _objectSpread({\n x: x + width - horizontalOffset,\n y: y + height / 2,\n textAnchor: horizontalEnd,\n verticalAnchor: 'middle'\n }, sizeAttrs);\n }\n\n if (position === 'insideTop') {\n return _objectSpread({\n x: x + width / 2,\n y: y + verticalOffset,\n textAnchor: 'middle',\n verticalAnchor: verticalStart\n }, sizeAttrs);\n }\n\n if (position === 'insideBottom') {\n return _objectSpread({\n x: x + width / 2,\n y: y + height - verticalOffset,\n textAnchor: 'middle',\n verticalAnchor: verticalEnd\n }, sizeAttrs);\n }\n\n if (position === 'insideTopLeft') {\n return _objectSpread({\n x: x + horizontalOffset,\n y: y + verticalOffset,\n textAnchor: horizontalStart,\n verticalAnchor: verticalStart\n }, sizeAttrs);\n }\n\n if (position === 'insideTopRight') {\n return _objectSpread({\n x: x + width - horizontalOffset,\n y: y + verticalOffset,\n textAnchor: horizontalEnd,\n verticalAnchor: verticalStart\n }, sizeAttrs);\n }\n\n if (position === 'insideBottomLeft') {\n return _objectSpread({\n x: x + horizontalOffset,\n y: y + height - verticalOffset,\n textAnchor: horizontalStart,\n verticalAnchor: verticalEnd\n }, sizeAttrs);\n }\n\n if (position === 'insideBottomRight') {\n return _objectSpread({\n x: x + width - horizontalOffset,\n y: y + height - verticalOffset,\n textAnchor: horizontalEnd,\n verticalAnchor: verticalEnd\n }, sizeAttrs);\n }\n\n if (_isObject(position) && (isNumber(position.x) || isPercent(position.x)) && (isNumber(position.y) || isPercent(position.y))) {\n return _objectSpread({\n x: x + getPercentValue(position.x, width),\n y: y + getPercentValue(position.y, height),\n textAnchor: 'end',\n verticalAnchor: 'end'\n }, sizeAttrs);\n }\n\n return _objectSpread({\n x: x + width / 2,\n y: y + height / 2,\n textAnchor: 'middle',\n verticalAnchor: 'middle'\n }, sizeAttrs);\n};\n\nvar isPolar = function isPolar(viewBox) {\n return isNumber(viewBox.cx);\n};\n\nexport function Label(props) {\n var viewBox = props.viewBox,\n position = props.position,\n value = props.value,\n children = props.children,\n content = props.content,\n _props$className = props.className,\n className = _props$className === void 0 ? '' : _props$className,\n textBreakAll = props.textBreakAll;\n\n if (!viewBox || _isNil(value) && _isNil(children) && ! /*#__PURE__*/isValidElement(content) && !_isFunction(content)) {\n return null;\n }\n\n if ( /*#__PURE__*/isValidElement(content)) {\n return /*#__PURE__*/cloneElement(content, props);\n }\n\n var label;\n\n if (_isFunction(content)) {\n label = /*#__PURE__*/createElement(content, props);\n\n if ( /*#__PURE__*/isValidElement(label)) {\n return label;\n }\n } else {\n label = getLabel(props);\n }\n\n var isPolarLabel = isPolar(viewBox);\n var attrs = filterProps(props, true);\n\n if (isPolarLabel && (position === 'insideStart' || position === 'insideEnd' || position === 'end')) {\n return renderRadialLabel(props, label, attrs);\n }\n\n var positionAttrs = isPolarLabel ? getAttrsOfPolarLabel(props) : getAttrsOfCartesianLabel(props);\n return /*#__PURE__*/React.createElement(Text, _extends({\n className: classNames('recharts-label', className)\n }, attrs, positionAttrs, {\n breakAll: textBreakAll\n }), label);\n}\nLabel.displayName = 'Label';\nLabel.defaultProps = {\n offset: 5\n};\n\nvar parseViewBox = function parseViewBox(props) {\n var cx = props.cx,\n cy = props.cy,\n angle = props.angle,\n startAngle = props.startAngle,\n endAngle = props.endAngle,\n r = props.r,\n radius = props.radius,\n innerRadius = props.innerRadius,\n outerRadius = props.outerRadius,\n x = props.x,\n y = props.y,\n top = props.top,\n left = props.left,\n width = props.width,\n height = props.height,\n clockWise = props.clockWise,\n labelViewBox = props.labelViewBox;\n\n if (labelViewBox) {\n return labelViewBox;\n }\n\n if (isNumber(width) && isNumber(height)) {\n if (isNumber(x) && isNumber(y)) {\n return {\n x: x,\n y: y,\n width: width,\n height: height\n };\n }\n\n if (isNumber(top) && isNumber(left)) {\n return {\n x: top,\n y: left,\n width: width,\n height: height\n };\n }\n }\n\n if (isNumber(x) && isNumber(y)) {\n return {\n x: x,\n y: y,\n width: 0,\n height: 0\n };\n }\n\n if (isNumber(cx) && isNumber(cy)) {\n return {\n cx: cx,\n cy: cy,\n startAngle: startAngle || angle || 0,\n endAngle: endAngle || angle || 0,\n innerRadius: innerRadius || 0,\n outerRadius: outerRadius || radius || r || 0,\n clockWise: clockWise\n };\n }\n\n if (props.viewBox) {\n return props.viewBox;\n }\n\n return {};\n};\n\nvar parseLabel = function parseLabel(label, viewBox) {\n if (!label) {\n return null;\n }\n\n if (label === true) {\n return /*#__PURE__*/React.createElement(Label, {\n key: \"label-implicit\",\n viewBox: viewBox\n });\n }\n\n if (isNumOrStr(label)) {\n return /*#__PURE__*/React.createElement(Label, {\n key: \"label-implicit\",\n viewBox: viewBox,\n value: label\n });\n }\n\n if ( /*#__PURE__*/isValidElement(label)) {\n if (label.type === Label) {\n return /*#__PURE__*/cloneElement(label, {\n key: 'label-implicit',\n viewBox: viewBox\n });\n }\n\n return /*#__PURE__*/React.createElement(Label, {\n key: \"label-implicit\",\n content: label,\n viewBox: viewBox\n });\n }\n\n if (_isFunction(label)) {\n return /*#__PURE__*/React.createElement(Label, {\n key: \"label-implicit\",\n content: label,\n viewBox: viewBox\n });\n }\n\n if (_isObject(label)) {\n return /*#__PURE__*/React.createElement(Label, _extends({\n viewBox: viewBox\n }, label, {\n key: \"label-implicit\"\n }));\n }\n\n return null;\n};\n\nvar renderCallByParent = function renderCallByParent(parentProps, viewBox) {\n var checkPropsLabel = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;\n\n if (!parentProps || !parentProps.children && checkPropsLabel && !parentProps.label) {\n return null;\n }\n\n var children = parentProps.children;\n var parentViewBox = parseViewBox(parentProps);\n var explicitChildren = findAllByType(children, Label.displayName).map(function (child, index) {\n return /*#__PURE__*/cloneElement(child, {\n viewBox: viewBox || parentViewBox,\n key: \"label-\".concat(index)\n });\n });\n\n if (!checkPropsLabel) {\n return explicitChildren;\n }\n\n var implicitLabel = parseLabel(parentProps.label, viewBox || parentViewBox);\n return [implicitLabel].concat(_toConsumableArray(explicitChildren));\n};\n\nLabel.parseViewBox = parseViewBox;\nLabel.renderCallByParent = renderCallByParent;","export const abs = Math.abs;\nexport const atan2 = Math.atan2;\nexport const cos = Math.cos;\nexport const max = Math.max;\nexport const min = Math.min;\nexport const sin = Math.sin;\nexport const sqrt = Math.sqrt;\n\nexport const epsilon = 1e-12;\nexport const pi = Math.PI;\nexport const halfPi = pi / 2;\nexport const tau = 2 * pi;\n\nexport function acos(x) {\n return x > 1 ? 0 : x < -1 ? pi : Math.acos(x);\n}\n\nexport function asin(x) {\n return x >= 1 ? halfPi : x <= -1 ? -halfPi : Math.asin(x);\n}\n","import {pi, sqrt, tau} from \"../math.js\";\n\nexport default {\n draw(context, size) {\n const r = sqrt(size / pi);\n context.moveTo(r, 0);\n context.arc(0, 0, r, 0, tau);\n }\n};\n","import {sqrt} from \"../math.js\";\n\nexport default {\n draw(context, size) {\n const r = sqrt(size / 5) / 2;\n context.moveTo(-3 * r, -r);\n context.lineTo(-r, -r);\n context.lineTo(-r, -3 * r);\n context.lineTo(r, -3 * r);\n context.lineTo(r, -r);\n context.lineTo(3 * r, -r);\n context.lineTo(3 * r, r);\n context.lineTo(r, r);\n context.lineTo(r, 3 * r);\n context.lineTo(-r, 3 * r);\n context.lineTo(-r, r);\n context.lineTo(-3 * r, r);\n context.closePath();\n }\n};\n","import {sqrt} from \"../math.js\";\n\nconst tan30 = sqrt(1 / 3);\nconst tan30_2 = tan30 * 2;\n\nexport default {\n draw(context, size) {\n const y = sqrt(size / tan30_2);\n const x = y * tan30;\n context.moveTo(0, -y);\n context.lineTo(x, 0);\n context.lineTo(0, y);\n context.lineTo(-x, 0);\n context.closePath();\n }\n};\n","import {sqrt} from \"../math.js\";\n\nexport default {\n draw(context, size) {\n const w = sqrt(size);\n const x = -w / 2;\n context.rect(x, x, w, w);\n }\n};\n","import {sin, cos, sqrt, pi, tau} from \"../math.js\";\n\nconst ka = 0.89081309152928522810;\nconst kr = sin(pi / 10) / sin(7 * pi / 10);\nconst kx = sin(tau / 10) * kr;\nconst ky = -cos(tau / 10) * kr;\n\nexport default {\n draw(context, size) {\n const r = sqrt(size * ka);\n const x = kx * r;\n const y = ky * r;\n context.moveTo(0, -r);\n context.lineTo(x, y);\n for (let i = 1; i < 5; ++i) {\n const a = tau * i / 5;\n const c = cos(a);\n const s = sin(a);\n context.lineTo(s * r, -c * r);\n context.lineTo(c * x - s * y, s * x + c * y);\n }\n context.closePath();\n }\n};\n","import {sqrt} from \"../math.js\";\n\nconst sqrt3 = sqrt(3);\n\nexport default {\n draw(context, size) {\n const y = -sqrt(size / (sqrt3 * 3));\n context.moveTo(0, y * 2);\n context.lineTo(-sqrt3 * y, -y);\n context.lineTo(sqrt3 * y, -y);\n context.closePath();\n }\n};\n","import {sqrt} from \"../math.js\";\n\nconst c = -0.5;\nconst s = sqrt(3) / 2;\nconst k = 1 / sqrt(12);\nconst a = (k / 2 + 1) * 3;\n\nexport default {\n draw(context, size) {\n const r = sqrt(size / a);\n const x0 = r / 2, y0 = r * k;\n const x1 = x0, y1 = r * k + r;\n const x2 = -x1, y2 = y1;\n context.moveTo(x0, y0);\n context.lineTo(x1, y1);\n context.lineTo(x2, y2);\n context.lineTo(c * x0 - s * y0, s * x0 + c * y0);\n context.lineTo(c * x1 - s * y1, s * x1 + c * y1);\n context.lineTo(c * x2 - s * y2, s * x2 + c * y2);\n context.lineTo(c * x0 + s * y0, c * y0 - s * x0);\n context.lineTo(c * x1 + s * y1, c * y1 - s * x1);\n context.lineTo(c * x2 + s * y2, c * y2 - s * x2);\n context.closePath();\n }\n};\n","import {min, sqrt} from \"../math.js\";\n\nconst sqrt3 = sqrt(3);\n\nexport default {\n draw(context, size) {\n const r = sqrt(size + min(size / 28, 0.75)) * 0.59436;\n const t = r / 2;\n const u = t * sqrt3;\n context.moveTo(0, r);\n context.lineTo(0, -r);\n context.moveTo(-u, -t);\n context.lineTo(u, t);\n context.moveTo(-u, t);\n context.lineTo(u, -t);\n }\n};\n","import {sqrt} from \"../math.js\";\n\nconst sqrt3 = sqrt(3);\n\nexport default {\n draw(context, size) {\n const s = sqrt(size) * 0.6824;\n const t = s / 2;\n const u = (s * sqrt3) / 2; // cos(Math.PI / 6)\n context.moveTo(0, -s);\n context.lineTo(u, t);\n context.lineTo(-u, t);\n context.closePath();\n }\n};\n","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport _upperFirst from \"lodash/upperFirst\";\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n/**\n * @fileOverview Curve\n */\nimport React, { PureComponent } from 'react';\nimport { symbol as shapeSymbol, symbolCircle, symbolCross, symbolDiamond, symbolSquare, symbolStar, symbolTriangle, symbolWye } from 'd3-shape';\nimport classNames from 'classnames';\nimport { filterProps } from '../util/types';\nvar symbolFactories = {\n symbolCircle: symbolCircle,\n symbolCross: symbolCross,\n symbolDiamond: symbolDiamond,\n symbolSquare: symbolSquare,\n symbolStar: symbolStar,\n symbolTriangle: symbolTriangle,\n symbolWye: symbolWye\n};\nvar RADIAN = Math.PI / 180;\n\nvar getSymbolFactory = function getSymbolFactory(type) {\n var name = \"symbol\".concat(_upperFirst(type));\n return symbolFactories[name] || symbolCircle;\n};\n\nvar calculateAreaSize = function calculateAreaSize(size, sizeType, type) {\n if (sizeType === 'area') {\n return size;\n }\n\n switch (type) {\n case 'cross':\n return 5 * size * size / 9;\n\n case 'diamond':\n return 0.5 * size * size / Math.sqrt(3);\n\n case 'square':\n return size * size;\n\n case 'star':\n {\n var angle = 18 * RADIAN;\n return 1.25 * size * size * (Math.tan(angle) - Math.tan(angle * 2) * Math.pow(Math.tan(angle), 2));\n }\n\n case 'triangle':\n return Math.sqrt(3) * size * size / 4;\n\n case 'wye':\n return (21 - 10 * Math.sqrt(3)) * size * size / 8;\n\n default:\n return Math.PI * size * size / 4;\n }\n};\n\nexport var Symbols = /*#__PURE__*/function (_PureComponent) {\n _inherits(Symbols, _PureComponent);\n\n var _super = _createSuper(Symbols);\n\n function Symbols() {\n _classCallCheck(this, Symbols);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(Symbols, [{\n key: \"getPath\",\n value:\n /**\n * Calculate the path of curve\n * @return {String} path\n */\n function getPath() {\n var _this$props = this.props,\n size = _this$props.size,\n sizeType = _this$props.sizeType,\n type = _this$props.type;\n var symbolFactory = getSymbolFactory(type);\n var symbol = shapeSymbol().type(symbolFactory).size(calculateAreaSize(size, sizeType, type));\n return symbol();\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this$props2 = this.props,\n className = _this$props2.className,\n cx = _this$props2.cx,\n cy = _this$props2.cy,\n size = _this$props2.size;\n\n if (cx === +cx && cy === +cy && size === +size) {\n return /*#__PURE__*/React.createElement(\"path\", _extends({}, filterProps(this.props, true), {\n className: classNames('recharts-symbols', className),\n transform: \"translate(\".concat(cx, \", \").concat(cy, \")\"),\n d: this.getPath()\n }));\n }\n\n return null;\n }\n }]);\n\n return Symbols;\n}(PureComponent);\nSymbols.defaultProps = {\n type: 'circle',\n size: 64,\n sizeType: 'area'\n};\n\nSymbols.registerSymbol = function (key, factory) {\n symbolFactories[\"symbol\".concat(_upperFirst(key))] = factory;\n};","import {path} from \"d3-path\";\nimport constant from \"./constant.js\";\nimport asterisk from \"./symbol/asterisk.js\";\nimport circle from \"./symbol/circle.js\";\nimport cross from \"./symbol/cross.js\";\nimport diamond from \"./symbol/diamond.js\";\nimport diamond2 from \"./symbol/diamond2.js\";\nimport plus from \"./symbol/plus.js\";\nimport square from \"./symbol/square.js\";\nimport square2 from \"./symbol/square2.js\";\nimport star from \"./symbol/star.js\";\nimport triangle from \"./symbol/triangle.js\";\nimport triangle2 from \"./symbol/triangle2.js\";\nimport wye from \"./symbol/wye.js\";\nimport x from \"./symbol/x.js\";\n\n// These symbols are designed to be filled.\nexport const symbolsFill = [\n circle,\n cross,\n diamond,\n square,\n star,\n triangle,\n wye\n];\n\n// These symbols are designed to be stroked (with a width of 1.5px and round caps).\nexport const symbolsStroke = [\n circle,\n plus,\n x,\n triangle2,\n asterisk,\n square2,\n diamond2\n];\n\nexport default function Symbol(type, size) {\n let context = null;\n\n type = typeof type === \"function\" ? type : constant(type || circle);\n size = typeof size === \"function\" ? size : constant(size === undefined ? 64 : +size);\n\n function symbol() {\n let buffer;\n if (!context) context = buffer = path();\n type.apply(this, arguments).draw(context, +size.apply(this, arguments));\n if (buffer) return context = null, buffer + \"\" || null;\n }\n\n symbol.type = function(_) {\n return arguments.length ? (type = typeof _ === \"function\" ? _ : constant(_), symbol) : type;\n };\n\n symbol.size = function(_) {\n return arguments.length ? (size = typeof _ === \"function\" ? _ : constant(+_), symbol) : size;\n };\n\n symbol.context = function(_) {\n return arguments.length ? (context = _ == null ? null : _, symbol) : context;\n };\n\n return symbol;\n}\n","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n/**\n * @fileOverview Default Legend Content\n */\nimport React, { PureComponent } from 'react';\nimport classNames from 'classnames';\nimport { Surface } from '../container/Surface';\nimport { Symbols } from '../shape/Symbols';\nimport { adaptEventsOfChild } from '../util/types';\nvar SIZE = 32;\nexport var DefaultLegendContent = /*#__PURE__*/function (_PureComponent) {\n _inherits(DefaultLegendContent, _PureComponent);\n\n var _super = _createSuper(DefaultLegendContent);\n\n function DefaultLegendContent() {\n _classCallCheck(this, DefaultLegendContent);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(DefaultLegendContent, [{\n key: \"renderIcon\",\n value:\n /**\n * Render the path of icon\n * @param {Object} data Data of each legend item\n * @return {String} Path element\n */\n function renderIcon(data) {\n var inactiveColor = this.props.inactiveColor;\n var halfSize = SIZE / 2;\n var sixthSize = SIZE / 6;\n var thirdSize = SIZE / 3;\n var color = data.inactive ? inactiveColor : data.color;\n\n if (data.type === 'plainline') {\n return /*#__PURE__*/React.createElement(\"line\", {\n strokeWidth: 4,\n fill: \"none\",\n stroke: color,\n strokeDasharray: data.payload.strokeDasharray,\n x1: 0,\n y1: halfSize,\n x2: SIZE,\n y2: halfSize,\n className: \"recharts-legend-icon\"\n });\n }\n\n if (data.type === 'line') {\n return /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: 4,\n fill: \"none\",\n stroke: color,\n d: \"M0,\".concat(halfSize, \"h\").concat(thirdSize, \"\\n A\").concat(sixthSize, \",\").concat(sixthSize, \",0,1,1,\").concat(2 * thirdSize, \",\").concat(halfSize, \"\\n H\").concat(SIZE, \"M\").concat(2 * thirdSize, \",\").concat(halfSize, \"\\n A\").concat(sixthSize, \",\").concat(sixthSize, \",0,1,1,\").concat(thirdSize, \",\").concat(halfSize),\n className: \"recharts-legend-icon\"\n });\n }\n\n if (data.type === 'rect') {\n return /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"none\",\n fill: color,\n d: \"M0,\".concat(SIZE / 8, \"h\").concat(SIZE, \"v\").concat(SIZE * 3 / 4, \"h\").concat(-SIZE, \"z\"),\n className: \"recharts-legend-icon\"\n });\n }\n\n if ( /*#__PURE__*/React.isValidElement(data.legendIcon)) {\n var iconProps = _objectSpread({}, data);\n\n delete iconProps.legendIcon;\n return /*#__PURE__*/React.cloneElement(data.legendIcon, iconProps);\n }\n\n return /*#__PURE__*/React.createElement(Symbols, {\n fill: color,\n cx: halfSize,\n cy: halfSize,\n size: SIZE,\n sizeType: \"diameter\",\n type: data.type\n });\n }\n /**\n * Draw items of legend\n * @return {ReactElement} Items\n */\n\n }, {\n key: \"renderItems\",\n value: function renderItems() {\n var _this = this;\n\n var _this$props = this.props,\n payload = _this$props.payload,\n iconSize = _this$props.iconSize,\n layout = _this$props.layout,\n formatter = _this$props.formatter,\n inactiveColor = _this$props.inactiveColor;\n var viewBox = {\n x: 0,\n y: 0,\n width: SIZE,\n height: SIZE\n };\n var itemStyle = {\n display: layout === 'horizontal' ? 'inline-block' : 'block',\n marginRight: 10\n };\n var svgStyle = {\n display: 'inline-block',\n verticalAlign: 'middle',\n marginRight: 4\n };\n return payload.map(function (entry, i) {\n var _classNames;\n\n var finalFormatter = entry.formatter || formatter;\n var className = classNames((_classNames = {\n 'recharts-legend-item': true\n }, _defineProperty(_classNames, \"legend-item-\".concat(i), true), _defineProperty(_classNames, \"inactive\", entry.inactive), _classNames));\n\n if (entry.type === 'none') {\n return null;\n }\n\n var color = entry.inactive ? inactiveColor : entry.color;\n return /*#__PURE__*/React.createElement(\"li\", _extends({\n className: className,\n style: itemStyle,\n key: \"legend-item-\".concat(i) // eslint-disable-line react/no-array-index-key\n\n }, adaptEventsOfChild(_this.props, entry, i)), /*#__PURE__*/React.createElement(Surface, {\n width: iconSize,\n height: iconSize,\n viewBox: viewBox,\n style: svgStyle\n }, _this.renderIcon(entry)), /*#__PURE__*/React.createElement(\"span\", {\n className: \"recharts-legend-item-text\",\n style: {\n color: color\n }\n }, finalFormatter ? finalFormatter(entry.value, entry, i) : entry.value));\n });\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this$props2 = this.props,\n payload = _this$props2.payload,\n layout = _this$props2.layout,\n align = _this$props2.align;\n\n if (!payload || !payload.length) {\n return null;\n }\n\n var finalStyle = {\n padding: 0,\n margin: 0,\n textAlign: layout === 'horizontal' ? align : 'left'\n };\n return /*#__PURE__*/React.createElement(\"ul\", {\n className: \"recharts-default-legend\",\n style: finalStyle\n }, this.renderItems());\n }\n }]);\n\n return DefaultLegendContent;\n}(PureComponent);\nDefaultLegendContent.displayName = 'Legend';\nDefaultLegendContent.defaultProps = {\n iconSize: 14,\n layout: 'horizontal',\n align: 'center',\n verticalAlign: 'middle',\n inactiveColor: '#ccc'\n};","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport _isFunction from \"lodash/isFunction\";\nimport _uniqBy from \"lodash/uniqBy\";\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\n/**\n * @fileOverview Legend\n */\nimport React, { PureComponent } from 'react';\nimport { DefaultLegendContent } from './DefaultLegendContent';\nimport { isNumber } from '../util/DataUtils';\n\nfunction defaultUniqBy(entry) {\n return entry.value;\n}\n\nfunction getUniqPayload(option, payload) {\n if (option === true) {\n return _uniqBy(payload, defaultUniqBy);\n }\n\n if (_isFunction(option)) {\n return _uniqBy(payload, option);\n }\n\n return payload;\n}\n\nfunction renderContent(content, props) {\n if ( /*#__PURE__*/React.isValidElement(content)) {\n return /*#__PURE__*/React.cloneElement(content, props);\n }\n\n if (_isFunction(content)) {\n return /*#__PURE__*/React.createElement(content, props);\n }\n\n var ref = props.ref,\n otherProps = _objectWithoutProperties(props, [\"ref\"]);\n\n return /*#__PURE__*/React.createElement(DefaultLegendContent, otherProps);\n}\n\nvar EPS = 1;\nexport var Legend = /*#__PURE__*/function (_PureComponent) {\n _inherits(Legend, _PureComponent);\n\n var _super = _createSuper(Legend);\n\n function Legend() {\n var _this;\n\n _classCallCheck(this, Legend);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _super.call.apply(_super, [this].concat(args));\n _this.wrapperNode = void 0;\n _this.state = {\n boxWidth: -1,\n boxHeight: -1\n };\n return _this;\n }\n\n _createClass(Legend, [{\n key: \"componentDidMount\",\n value: function componentDidMount() {\n this.updateBBox();\n }\n }, {\n key: \"componentDidUpdate\",\n value: function componentDidUpdate() {\n this.updateBBox();\n }\n }, {\n key: \"getBBox\",\n value: function getBBox() {\n if (this.wrapperNode && this.wrapperNode.getBoundingClientRect) {\n return this.wrapperNode.getBoundingClientRect();\n }\n\n return null;\n }\n }, {\n key: \"getBBoxSnapshot\",\n value: function getBBoxSnapshot() {\n var _this$state = this.state,\n boxWidth = _this$state.boxWidth,\n boxHeight = _this$state.boxHeight;\n\n if (boxWidth >= 0 && boxHeight >= 0) {\n return {\n width: boxWidth,\n height: boxHeight\n };\n }\n\n return null;\n }\n }, {\n key: \"getDefaultPosition\",\n value: function getDefaultPosition(style) {\n var _this$props = this.props,\n layout = _this$props.layout,\n align = _this$props.align,\n verticalAlign = _this$props.verticalAlign,\n margin = _this$props.margin,\n chartWidth = _this$props.chartWidth,\n chartHeight = _this$props.chartHeight;\n var hPos, vPos;\n\n if (!style || (style.left === undefined || style.left === null) && (style.right === undefined || style.right === null)) {\n if (align === 'center' && layout === 'vertical') {\n var _box = this.getBBoxSnapshot() || {\n width: 0\n };\n\n hPos = {\n left: ((chartWidth || 0) - _box.width) / 2\n };\n } else {\n hPos = align === 'right' ? {\n right: margin && margin.right || 0\n } : {\n left: margin && margin.left || 0\n };\n }\n }\n\n if (!style || (style.top === undefined || style.top === null) && (style.bottom === undefined || style.bottom === null)) {\n if (verticalAlign === 'middle') {\n var _box2 = this.getBBoxSnapshot() || {\n height: 0\n };\n\n vPos = {\n top: ((chartHeight || 0) - _box2.height) / 2\n };\n } else {\n vPos = verticalAlign === 'bottom' ? {\n bottom: margin && margin.bottom || 0\n } : {\n top: margin && margin.top || 0\n };\n }\n }\n\n return _objectSpread(_objectSpread({}, hPos), vPos);\n }\n }, {\n key: \"updateBBox\",\n value: function updateBBox() {\n var _this$state2 = this.state,\n boxWidth = _this$state2.boxWidth,\n boxHeight = _this$state2.boxHeight;\n var onBBoxUpdate = this.props.onBBoxUpdate;\n\n if (this.wrapperNode && this.wrapperNode.getBoundingClientRect) {\n var _box3 = this.wrapperNode.getBoundingClientRect();\n\n if (Math.abs(_box3.width - boxWidth) > EPS || Math.abs(_box3.height - boxHeight) > EPS) {\n this.setState({\n boxWidth: _box3.width,\n boxHeight: _box3.height\n }, function () {\n if (onBBoxUpdate) {\n onBBoxUpdate(_box3);\n }\n });\n }\n } else if (boxWidth !== -1 || boxHeight !== -1) {\n this.setState({\n boxWidth: -1,\n boxHeight: -1\n }, function () {\n if (onBBoxUpdate) {\n onBBoxUpdate(null);\n }\n });\n }\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this2 = this;\n\n var _this$props2 = this.props,\n content = _this$props2.content,\n width = _this$props2.width,\n height = _this$props2.height,\n wrapperStyle = _this$props2.wrapperStyle,\n payloadUniqBy = _this$props2.payloadUniqBy,\n payload = _this$props2.payload;\n\n var outerStyle = _objectSpread(_objectSpread({\n position: 'absolute',\n width: width || 'auto',\n height: height || 'auto'\n }, this.getDefaultPosition(wrapperStyle)), wrapperStyle);\n\n return /*#__PURE__*/React.createElement(\"div\", {\n className: \"recharts-legend-wrapper\",\n style: outerStyle,\n ref: function ref(node) {\n _this2.wrapperNode = node;\n }\n }, renderContent(content, _objectSpread(_objectSpread({}, this.props), {}, {\n payload: getUniqPayload(payloadUniqBy, payload)\n })));\n }\n }], [{\n key: \"getWithHeight\",\n value: function getWithHeight(item, chartWidth) {\n var layout = item.props.layout;\n\n if (layout === 'vertical' && isNumber(item.props.height)) {\n return {\n height: item.props.height\n };\n }\n\n if (layout === 'horizontal') {\n return {\n width: item.props.width || chartWidth\n };\n }\n\n return null;\n }\n }]);\n\n return Legend;\n}(PureComponent);\nLegend.displayName = 'Legend';\nLegend.defaultProps = {\n iconSize: 14,\n layout: 'horizontal',\n align: 'center',\n verticalAlign: 'bottom'\n};","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport _isNil from \"lodash/isNil\";\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\n\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction _iterableToArrayLimit(arr, i) { if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nimport React, { Component } from 'react';\nimport reduceCSSCalc from 'reduce-css-calc';\nimport classNames from 'classnames';\nimport { isNumber, isNumOrStr } from '../util/DataUtils';\nimport { Global } from '../util/Global';\nimport { filterProps } from '../util/types';\nimport { getStringSize } from '../util/DOMUtils';\nvar BREAKING_SPACES = /[ \\f\\n\\r\\t\\v\\u2028\\u2029]+/;\n\nvar calculateWordWidths = function calculateWordWidths(props) {\n try {\n var words = [];\n\n if (!_isNil(props.children)) {\n if (props.breakAll) {\n words = props.children.toString().split('');\n } else {\n words = props.children.toString().split(BREAKING_SPACES);\n }\n }\n\n var wordsWithComputedWidth = words.map(function (word) {\n return {\n word: word,\n width: getStringSize(word, props.style).width\n };\n });\n var spaceWidth = props.breakAll ? 0 : getStringSize(\"\\xA0\", props.style).width;\n return {\n wordsWithComputedWidth: wordsWithComputedWidth,\n spaceWidth: spaceWidth\n };\n } catch (e) {\n return null;\n }\n};\n\nvar calculateWordsByLines = function calculateWordsByLines(props, initialWordsWithComputedWith, spaceWidth, lineWidth, scaleToFit) {\n var shouldLimitLines = isNumber(props.maxLines);\n var text = props.children;\n\n var calculate = function calculate() {\n var words = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n return words.reduce(function (result, _ref) {\n var word = _ref.word,\n width = _ref.width;\n var currentLine = result[result.length - 1];\n\n if (currentLine && (lineWidth == null || scaleToFit || currentLine.width + width + spaceWidth < lineWidth)) {\n // Word can be added to an existing line\n currentLine.words.push(word);\n currentLine.width += width + spaceWidth;\n } else {\n // Add first word to line or word is too long to scaleToFit on existing line\n var newLine = {\n words: [word],\n width: width\n };\n result.push(newLine);\n }\n\n return result;\n }, []);\n };\n\n var originalResult = calculate(initialWordsWithComputedWith);\n\n var findLongestLine = function findLongestLine(words) {\n return words.reduce(function (a, b) {\n return a.width > b.width ? a : b;\n });\n };\n\n if (!shouldLimitLines) {\n return originalResult;\n }\n\n var suffix = '…';\n\n var checkOverflow = function checkOverflow(index) {\n var tempText = text.slice(0, index);\n var words = calculateWordWidths(_objectSpread(_objectSpread({}, props), {}, {\n children: tempText + suffix\n })).wordsWithComputedWidth;\n var result = calculate(words);\n var doesOverflow = result.length > props.maxLines || findLongestLine(result).width > lineWidth;\n return [doesOverflow, result];\n };\n\n var start = 0;\n var end = text.length - 1;\n var iterations = 0;\n var trimmedResult;\n\n while (start <= end && iterations <= text.length - 1) {\n var middle = Math.floor((start + end) / 2);\n var prev = middle - 1;\n\n var _checkOverflow = checkOverflow(prev),\n _checkOverflow2 = _slicedToArray(_checkOverflow, 2),\n doesPrevOverflow = _checkOverflow2[0],\n result = _checkOverflow2[1];\n\n var _checkOverflow3 = checkOverflow(middle),\n _checkOverflow4 = _slicedToArray(_checkOverflow3, 1),\n doesMiddleOverflow = _checkOverflow4[0];\n\n if (!doesPrevOverflow && !doesMiddleOverflow) {\n start = middle + 1;\n }\n\n if (doesPrevOverflow && doesMiddleOverflow) {\n end = middle - 1;\n }\n\n if (!doesPrevOverflow && doesMiddleOverflow) {\n trimmedResult = result;\n break;\n }\n\n iterations++;\n } // Fallback to originalResult (result without trimming) if we cannot find the\n // where to trim. This should not happen :tm:\n\n\n return trimmedResult || originalResult;\n};\n\nvar getWordsWithoutCalculate = function getWordsWithoutCalculate(children) {\n var words = !_isNil(children) ? children.toString().split(BREAKING_SPACES) : [];\n return [{\n words: words\n }];\n};\n\nvar getWordsByLines = function getWordsByLines(props, needCalculate) {\n // Only perform calculations if using features that require them (multiline, scaleToFit)\n if ((props.width || props.scaleToFit) && !Global.isSsr) {\n var wordsWithComputedWidth, spaceWidth;\n\n if (needCalculate) {\n var wordWidths = calculateWordWidths(props);\n\n if (wordWidths) {\n var wcw = wordWidths.wordsWithComputedWidth,\n sw = wordWidths.spaceWidth;\n wordsWithComputedWidth = wcw;\n spaceWidth = sw;\n } else {\n return getWordsWithoutCalculate(props.children);\n }\n\n return calculateWordsByLines(props, wordsWithComputedWidth, spaceWidth, props.width, props.scaleToFit);\n }\n }\n\n return getWordsWithoutCalculate(props.children);\n};\n\nexport var Text = /*#__PURE__*/function (_Component) {\n _inherits(Text, _Component);\n\n var _super = _createSuper(Text);\n\n function Text() {\n var _this;\n\n _classCallCheck(this, Text);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _super.call.apply(_super, [this].concat(args));\n _this.state = {};\n return _this;\n }\n\n _createClass(Text, [{\n key: \"render\",\n value: function render() {\n var _this$props = this.props,\n dx = _this$props.dx,\n dy = _this$props.dy,\n textAnchor = _this$props.textAnchor,\n verticalAnchor = _this$props.verticalAnchor,\n scaleToFit = _this$props.scaleToFit,\n angle = _this$props.angle,\n lineHeight = _this$props.lineHeight,\n capHeight = _this$props.capHeight,\n className = _this$props.className,\n breakAll = _this$props.breakAll,\n textProps = _objectWithoutProperties(_this$props, [\"dx\", \"dy\", \"textAnchor\", \"verticalAnchor\", \"scaleToFit\", \"angle\", \"lineHeight\", \"capHeight\", \"className\", \"breakAll\"]);\n\n var wordsByLines = this.state.wordsByLines;\n\n if (!isNumOrStr(textProps.x) || !isNumOrStr(textProps.y)) {\n return null;\n }\n\n var x = textProps.x + (isNumber(dx) ? dx : 0);\n var y = textProps.y + (isNumber(dy) ? dy : 0);\n var startDy;\n\n switch (verticalAnchor) {\n case 'start':\n startDy = reduceCSSCalc(\"calc(\".concat(capHeight, \")\"));\n break;\n\n case 'middle':\n startDy = reduceCSSCalc(\"calc(\".concat((wordsByLines.length - 1) / 2, \" * -\").concat(lineHeight, \" + (\").concat(capHeight, \" / 2))\"));\n break;\n\n default:\n startDy = reduceCSSCalc(\"calc(\".concat(wordsByLines.length - 1, \" * -\").concat(lineHeight, \")\"));\n break;\n }\n\n var transforms = [];\n\n if (scaleToFit) {\n var lineWidth = wordsByLines[0].width;\n var width = this.props.width;\n transforms.push(\"scale(\".concat((isNumber(width) ? width / lineWidth : 1) / lineWidth, \")\"));\n }\n\n if (angle) {\n transforms.push(\"rotate(\".concat(angle, \", \").concat(x, \", \").concat(y, \")\"));\n }\n\n if (transforms.length) {\n textProps.transform = transforms.join(' ');\n }\n\n return /*#__PURE__*/React.createElement(\"text\", _extends({}, filterProps(textProps, true), {\n x: x,\n y: y,\n className: classNames('recharts-text', className),\n textAnchor: textAnchor\n }), wordsByLines.map(function (line, index) {\n return (\n /*#__PURE__*/\n // eslint-disable-next-line react/no-array-index-key\n React.createElement(\"tspan\", {\n x: x,\n dy: index === 0 ? startDy : lineHeight,\n key: index\n }, line.words.join(breakAll ? '' : ' '))\n );\n }));\n }\n }], [{\n key: \"getDerivedStateFromProps\",\n value: function getDerivedStateFromProps(nextProps, prevState) {\n if (nextProps.width !== prevState.prevWidth || nextProps.scaleToFit !== prevState.prevScaleToFit || nextProps.children !== prevState.prevChildren || nextProps.style !== prevState.prevStyle || nextProps.breakAll !== prevState.prevBreakAll) {\n var needCalculate = nextProps.children !== prevState.prevChildren || nextProps.style !== prevState.prevStyle || nextProps.breakAll !== prevState.prevBreakAll;\n return {\n prevWidth: nextProps.width,\n prevScaleToFit: nextProps.scaleToFit,\n prevChildren: nextProps.children,\n prevStyle: nextProps.style,\n wordsByLines: getWordsByLines(nextProps, needCalculate)\n };\n }\n\n return null;\n }\n }]);\n\n return Text;\n}(Component);\nText.defaultProps = {\n x: 0,\n y: 0,\n lineHeight: '1em',\n capHeight: '0.71em',\n // Magic number from d3\n scaleToFit: false,\n textAnchor: 'start',\n verticalAnchor: 'end' // Maintain compat with existing charts / default SVG behavior\n\n};","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport _isNil from \"lodash/isNil\";\nimport _sortBy from \"lodash/sortBy\";\nimport _isArray from \"lodash/isArray\";\n\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\n\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction _iterableToArrayLimit(arr, i) { if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nimport React, { PureComponent } from 'react';\nimport classNames from 'classnames';\nimport { isNumOrStr } from '../util/DataUtils';\n\nfunction defaultFormatter(value) {\n return _isArray(value) && isNumOrStr(value[0]) && isNumOrStr(value[1]) ? value.join(' ~ ') : value;\n}\n\nexport var DefaultTooltipContent = /*#__PURE__*/function (_PureComponent) {\n _inherits(DefaultTooltipContent, _PureComponent);\n\n var _super = _createSuper(DefaultTooltipContent);\n\n function DefaultTooltipContent() {\n _classCallCheck(this, DefaultTooltipContent);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(DefaultTooltipContent, [{\n key: \"renderContent\",\n value: function renderContent() {\n var _this$props = this.props,\n payload = _this$props.payload,\n separator = _this$props.separator,\n formatter = _this$props.formatter,\n itemStyle = _this$props.itemStyle,\n itemSorter = _this$props.itemSorter;\n\n if (payload && payload.length) {\n var listStyle = {\n padding: 0,\n margin: 0\n };\n var items = (itemSorter ? _sortBy(payload, itemSorter) : payload).map(function (entry, i) {\n if (entry.type === 'none') {\n return null;\n }\n\n var finalItemStyle = _objectSpread({\n display: 'block',\n paddingTop: 4,\n paddingBottom: 4,\n color: entry.color || '#000'\n }, itemStyle);\n\n var finalFormatter = entry.formatter || formatter || defaultFormatter;\n var name = entry.name,\n value = entry.value;\n\n if (finalFormatter) {\n var formatted = finalFormatter(value, name, entry, i, payload);\n\n if (Array.isArray(formatted)) {\n var _ref = formatted;\n\n var _ref2 = _slicedToArray(_ref, 2);\n\n value = _ref2[0];\n name = _ref2[1];\n } else {\n value = formatted;\n }\n }\n\n return (\n /*#__PURE__*/\n // eslint-disable-next-line react/no-array-index-key\n React.createElement(\"li\", {\n className: \"recharts-tooltip-item\",\n key: \"tooltip-item-\".concat(i),\n style: finalItemStyle\n }, isNumOrStr(name) ? /*#__PURE__*/React.createElement(\"span\", {\n className: \"recharts-tooltip-item-name\"\n }, name) : null, isNumOrStr(name) ? /*#__PURE__*/React.createElement(\"span\", {\n className: \"recharts-tooltip-item-separator\"\n }, separator) : null, /*#__PURE__*/React.createElement(\"span\", {\n className: \"recharts-tooltip-item-value\"\n }, value), /*#__PURE__*/React.createElement(\"span\", {\n className: \"recharts-tooltip-item-unit\"\n }, entry.unit || ''))\n );\n });\n return /*#__PURE__*/React.createElement(\"ul\", {\n className: \"recharts-tooltip-item-list\",\n style: listStyle\n }, items);\n }\n\n return null;\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this$props2 = this.props,\n wrapperClassName = _this$props2.wrapperClassName,\n contentStyle = _this$props2.contentStyle,\n labelClassName = _this$props2.labelClassName,\n labelStyle = _this$props2.labelStyle,\n label = _this$props2.label,\n labelFormatter = _this$props2.labelFormatter,\n payload = _this$props2.payload;\n\n var finalStyle = _objectSpread({\n margin: 0,\n padding: 10,\n backgroundColor: '#fff',\n border: '1px solid #ccc',\n whiteSpace: 'nowrap'\n }, contentStyle);\n\n var finalLabelStyle = _objectSpread({\n margin: 0\n }, labelStyle);\n\n var hasLabel = !_isNil(label);\n var finalLabel = hasLabel ? label : '';\n var wrapperCN = classNames('recharts-default-tooltip', wrapperClassName);\n var labelCN = classNames('recharts-tooltip-label', labelClassName);\n\n if (hasLabel && labelFormatter && payload !== undefined && payload !== null) {\n finalLabel = labelFormatter(label, payload);\n }\n\n return /*#__PURE__*/React.createElement(\"div\", {\n className: wrapperCN,\n style: finalStyle\n }, /*#__PURE__*/React.createElement(\"p\", {\n className: labelCN,\n style: finalLabelStyle\n }, /*#__PURE__*/React.isValidElement(finalLabel) ? finalLabel : \"\".concat(finalLabel)), this.renderContent());\n }\n }]);\n\n return DefaultTooltipContent;\n}(PureComponent);\nDefaultTooltipContent.displayName = 'DefaultTooltipContent';\nDefaultTooltipContent.defaultProps = {\n separator: ' : ',\n contentStyle: {},\n itemStyle: {},\n labelStyle: {}\n};","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport _isNil from \"lodash/isNil\";\nimport _isFunction from \"lodash/isFunction\";\nimport _uniqBy from \"lodash/uniqBy\";\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n/**\n * @fileOverview Tooltip\n */\nimport React, { PureComponent } from 'react';\nimport { translateStyle } from 'react-smooth';\nimport classNames from 'classnames';\nimport { DefaultTooltipContent } from './DefaultTooltipContent';\nimport { Global } from '../util/Global';\nimport { isNumber } from '../util/DataUtils';\nvar CLS_PREFIX = 'recharts-tooltip-wrapper';\nvar EPS = 1;\n\nfunction defaultUniqBy(entry) {\n return entry.dataKey;\n}\n\nfunction getUniqPayload(option, payload) {\n if (option === true) {\n return _uniqBy(payload, defaultUniqBy);\n }\n\n if (_isFunction(option)) {\n return _uniqBy(payload, option);\n }\n\n return payload;\n}\n\nfunction renderContent(content, props) {\n if ( /*#__PURE__*/React.isValidElement(content)) {\n return /*#__PURE__*/React.cloneElement(content, props);\n }\n\n if (_isFunction(content)) {\n return /*#__PURE__*/React.createElement(content, props);\n }\n\n return /*#__PURE__*/React.createElement(DefaultTooltipContent, props);\n}\n\nexport var Tooltip = /*#__PURE__*/function (_PureComponent) {\n _inherits(Tooltip, _PureComponent);\n\n var _super = _createSuper(Tooltip);\n\n function Tooltip() {\n var _this;\n\n _classCallCheck(this, Tooltip);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _super.call.apply(_super, [this].concat(args));\n _this.state = {\n boxWidth: -1,\n boxHeight: -1,\n dismissed: false,\n dismissedAtCoordinate: {\n x: 0,\n y: 0\n }\n };\n _this.wrapperNode = void 0;\n\n _this.getTranslate = function (_ref) {\n var key = _ref.key,\n tooltipDimension = _ref.tooltipDimension,\n viewBoxDimension = _ref.viewBoxDimension;\n var _this$props = _this.props,\n allowEscapeViewBox = _this$props.allowEscapeViewBox,\n coordinate = _this$props.coordinate,\n offset = _this$props.offset,\n position = _this$props.position,\n viewBox = _this$props.viewBox;\n\n if (position && isNumber(position[key])) {\n return position[key];\n }\n\n var restricted = coordinate[key] - tooltipDimension - offset;\n var unrestricted = coordinate[key] + offset;\n\n if (allowEscapeViewBox[key]) {\n return unrestricted;\n }\n\n var tooltipBoundary = coordinate[key] + tooltipDimension + offset;\n var viewBoxBoundary = viewBox[key] + viewBoxDimension;\n\n if (tooltipBoundary > viewBoxBoundary) {\n return Math.max(restricted, viewBox[key]);\n }\n\n return Math.max(unrestricted, viewBox[key]);\n };\n\n return _this;\n }\n\n _createClass(Tooltip, [{\n key: \"componentDidMount\",\n value: function componentDidMount() {\n this.updateBBox();\n }\n }, {\n key: \"componentDidUpdate\",\n value: function componentDidUpdate() {\n this.updateBBox();\n }\n }, {\n key: \"updateBBox\",\n value: function updateBBox() {\n var _this$state = this.state,\n boxWidth = _this$state.boxWidth,\n boxHeight = _this$state.boxHeight,\n dismissed = _this$state.dismissed;\n\n if (dismissed) {\n this.wrapperNode.blur();\n\n if (this.props.coordinate.x !== this.state.dismissedAtCoordinate.x || this.props.coordinate.y !== this.state.dismissedAtCoordinate.y) {\n this.setState({\n dismissed: false\n });\n }\n } else {\n this.wrapperNode.focus();\n }\n\n if (this.wrapperNode && this.wrapperNode.getBoundingClientRect) {\n var box = this.wrapperNode.getBoundingClientRect();\n\n if (Math.abs(box.width - boxWidth) > EPS || Math.abs(box.height - boxHeight) > EPS) {\n this.setState({\n boxWidth: box.width,\n boxHeight: box.height\n });\n }\n } else if (boxWidth !== -1 || boxHeight !== -1) {\n this.setState({\n boxWidth: -1,\n boxHeight: -1\n });\n }\n }\n }, {\n key: \"render\",\n value: function render() {\n var _classNames,\n _this2 = this;\n\n var _this$props2 = this.props,\n payload = _this$props2.payload,\n isAnimationActive = _this$props2.isAnimationActive,\n animationDuration = _this$props2.animationDuration,\n animationEasing = _this$props2.animationEasing,\n filterNull = _this$props2.filterNull,\n payloadUniqBy = _this$props2.payloadUniqBy;\n var finalPayload = getUniqPayload(payloadUniqBy, filterNull && payload && payload.length ? payload.filter(function (entry) {\n return !_isNil(entry.value);\n }) : payload);\n var hasPayload = finalPayload && finalPayload.length;\n var _this$props3 = this.props,\n content = _this$props3.content,\n viewBox = _this$props3.viewBox,\n coordinate = _this$props3.coordinate,\n position = _this$props3.position,\n active = _this$props3.active,\n wrapperStyle = _this$props3.wrapperStyle;\n\n var outerStyle = _objectSpread({\n pointerEvents: 'none',\n visibility: !this.state.dismissed && active && hasPayload ? 'visible' : 'hidden',\n position: 'absolute',\n top: 0,\n left: 0\n }, wrapperStyle);\n\n var translateX, translateY;\n\n if (position && isNumber(position.x) && isNumber(position.y)) {\n translateX = position.x;\n translateY = position.y;\n } else {\n var _this$state2 = this.state,\n boxWidth = _this$state2.boxWidth,\n boxHeight = _this$state2.boxHeight;\n\n if (boxWidth > 0 && boxHeight > 0 && coordinate) {\n translateX = this.getTranslate({\n key: 'x',\n tooltipDimension: boxWidth,\n viewBoxDimension: viewBox.width\n });\n translateY = this.getTranslate({\n key: 'y',\n tooltipDimension: boxHeight,\n viewBoxDimension: viewBox.height\n });\n } else {\n outerStyle.visibility = 'hidden';\n }\n }\n\n outerStyle = _objectSpread(_objectSpread({}, translateStyle({\n transform: this.props.useTranslate3d ? \"translate3d(\".concat(translateX, \"px, \").concat(translateY, \"px, 0)\") : \"translate(\".concat(translateX, \"px, \").concat(translateY, \"px)\")\n })), outerStyle);\n\n if (isAnimationActive && active) {\n outerStyle = _objectSpread(_objectSpread({}, translateStyle({\n transition: \"transform \".concat(animationDuration, \"ms \").concat(animationEasing)\n })), outerStyle);\n }\n\n var cls = classNames(CLS_PREFIX, (_classNames = {}, _defineProperty(_classNames, \"\".concat(CLS_PREFIX, \"-right\"), isNumber(translateX) && coordinate && isNumber(coordinate.x) && translateX >= coordinate.x), _defineProperty(_classNames, \"\".concat(CLS_PREFIX, \"-left\"), isNumber(translateX) && coordinate && isNumber(coordinate.x) && translateX < coordinate.x), _defineProperty(_classNames, \"\".concat(CLS_PREFIX, \"-bottom\"), isNumber(translateY) && coordinate && isNumber(coordinate.y) && translateY >= coordinate.y), _defineProperty(_classNames, \"\".concat(CLS_PREFIX, \"-top\"), isNumber(translateY) && coordinate && isNumber(coordinate.y) && translateY < coordinate.y), _classNames));\n return (\n /*#__PURE__*/\n // ESLint is disabled to allow listening to the `Escape` key. Refer to\n // https://github.com/recharts/recharts/pull/2925\n // eslint-disable-next-line jsx-a11y/no-noninteractive-element-interactions\n React.createElement(\"div\", {\n tabIndex: -1,\n role: \"dialog\",\n onKeyDown: function onKeyDown(event) {\n if (event.key === 'Escape') {\n _this2.setState({\n dismissed: true,\n dismissedAtCoordinate: _objectSpread(_objectSpread({}, _this2.state.dismissedAtCoordinate), {}, {\n x: _this2.props.coordinate.x,\n y: _this2.props.coordinate.y\n })\n });\n }\n },\n className: cls,\n style: outerStyle,\n ref: function ref(node) {\n _this2.wrapperNode = node;\n }\n }, renderContent(content, _objectSpread(_objectSpread({}, this.props), {}, {\n payload: finalPayload\n })))\n );\n }\n }]);\n\n return Tooltip;\n}(PureComponent);\nTooltip.displayName = 'Tooltip';\nTooltip.defaultProps = {\n active: false,\n allowEscapeViewBox: {\n x: false,\n y: false\n },\n offset: 10,\n viewBox: {\n x1: 0,\n x2: 0,\n y1: 0,\n y2: 0\n },\n coordinate: {\n x: 0,\n y: 0\n },\n cursorStyle: {},\n separator: ' : ',\n wrapperStyle: {},\n contentStyle: {},\n itemStyle: {},\n labelStyle: {},\n cursor: true,\n trigger: 'hover',\n isAnimationActive: !Global.isSsr,\n animationEasing: 'ease',\n animationDuration: 400,\n filterNull: true,\n useTranslate3d: false\n};","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\n/**\n * @fileOverview Layer\n */\nimport React from 'react';\nimport classNames from 'classnames';\nimport { filterProps } from '../util/types';\nexport var Layer = /*#__PURE__*/React.forwardRef(function (props, ref) {\n var children = props.children,\n className = props.className,\n others = _objectWithoutProperties(props, [\"children\", \"className\"]);\n\n var layerClass = classNames('recharts-layer', className);\n return /*#__PURE__*/React.createElement(\"g\", _extends({\n className: layerClass\n }, filterProps(others, true), {\n ref: ref\n }), children);\n});","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\n/**\n * @fileOverview Surface\n */\nimport React from 'react';\nimport classNames from 'classnames';\nimport { filterProps } from '../util/types';\nexport function Surface(props) {\n var children = props.children,\n width = props.width,\n height = props.height,\n viewBox = props.viewBox,\n className = props.className,\n style = props.style,\n others = _objectWithoutProperties(props, [\"children\", \"width\", \"height\", \"viewBox\", \"className\", \"style\"]);\n\n var svgView = viewBox || {\n width: width,\n height: height,\n x: 0,\n y: 0\n };\n var layerClass = classNames('recharts-surface', className);\n return /*#__PURE__*/React.createElement(\"svg\", _extends({}, filterProps(others, true, true), {\n className: layerClass,\n width: width,\n height: height,\n style: style,\n viewBox: \"\".concat(svgView.x, \" \").concat(svgView.y, \" \").concat(svgView.width, \" \").concat(svgView.height),\n version: \"1.1\"\n }), /*#__PURE__*/React.createElement(\"title\", null, props.title), /*#__PURE__*/React.createElement(\"desc\", null, props.desc), children);\n}","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n/**\n * @fileOverview Rectangle\n */\nimport React, { PureComponent } from 'react';\nimport classNames from 'classnames';\nimport Animate from 'react-smooth';\nimport { filterProps } from '../util/types';\n\nvar getRectanglePath = function getRectanglePath(x, y, width, height, radius) {\n var maxRadius = Math.min(Math.abs(width) / 2, Math.abs(height) / 2);\n var ySign = height >= 0 ? 1 : -1;\n var xSign = width >= 0 ? 1 : -1;\n var clockWise = height >= 0 && width >= 0 || height < 0 && width < 0 ? 1 : 0;\n var path;\n\n if (maxRadius > 0 && radius instanceof Array) {\n var newRadius = [0, 0, 0, 0];\n\n for (var i = 0, len = 4; i < len; i++) {\n newRadius[i] = radius[i] > maxRadius ? maxRadius : radius[i];\n }\n\n path = \"M\".concat(x, \",\").concat(y + ySign * newRadius[0]);\n\n if (newRadius[0] > 0) {\n path += \"A \".concat(newRadius[0], \",\").concat(newRadius[0], \",0,0,\").concat(clockWise, \",\").concat(x + xSign * newRadius[0], \",\").concat(y);\n }\n\n path += \"L \".concat(x + width - xSign * newRadius[1], \",\").concat(y);\n\n if (newRadius[1] > 0) {\n path += \"A \".concat(newRadius[1], \",\").concat(newRadius[1], \",0,0,\").concat(clockWise, \",\\n \").concat(x + width, \",\").concat(y + ySign * newRadius[1]);\n }\n\n path += \"L \".concat(x + width, \",\").concat(y + height - ySign * newRadius[2]);\n\n if (newRadius[2] > 0) {\n path += \"A \".concat(newRadius[2], \",\").concat(newRadius[2], \",0,0,\").concat(clockWise, \",\\n \").concat(x + width - xSign * newRadius[2], \",\").concat(y + height);\n }\n\n path += \"L \".concat(x + xSign * newRadius[3], \",\").concat(y + height);\n\n if (newRadius[3] > 0) {\n path += \"A \".concat(newRadius[3], \",\").concat(newRadius[3], \",0,0,\").concat(clockWise, \",\\n \").concat(x, \",\").concat(y + height - ySign * newRadius[3]);\n }\n\n path += 'Z';\n } else if (maxRadius > 0 && radius === +radius && radius > 0) {\n var _newRadius = Math.min(maxRadius, radius);\n\n path = \"M \".concat(x, \",\").concat(y + ySign * _newRadius, \"\\n A \").concat(_newRadius, \",\").concat(_newRadius, \",0,0,\").concat(clockWise, \",\").concat(x + xSign * _newRadius, \",\").concat(y, \"\\n L \").concat(x + width - xSign * _newRadius, \",\").concat(y, \"\\n A \").concat(_newRadius, \",\").concat(_newRadius, \",0,0,\").concat(clockWise, \",\").concat(x + width, \",\").concat(y + ySign * _newRadius, \"\\n L \").concat(x + width, \",\").concat(y + height - ySign * _newRadius, \"\\n A \").concat(_newRadius, \",\").concat(_newRadius, \",0,0,\").concat(clockWise, \",\").concat(x + width - xSign * _newRadius, \",\").concat(y + height, \"\\n L \").concat(x + xSign * _newRadius, \",\").concat(y + height, \"\\n A \").concat(_newRadius, \",\").concat(_newRadius, \",0,0,\").concat(clockWise, \",\").concat(x, \",\").concat(y + height - ySign * _newRadius, \" Z\");\n } else {\n path = \"M \".concat(x, \",\").concat(y, \" h \").concat(width, \" v \").concat(height, \" h \").concat(-width, \" Z\");\n }\n\n return path;\n};\n\nexport var isInRectangle = function isInRectangle(point, rect) {\n if (!point || !rect) {\n return false;\n }\n\n var px = point.x,\n py = point.y;\n var x = rect.x,\n y = rect.y,\n width = rect.width,\n height = rect.height;\n\n if (Math.abs(width) > 0 && Math.abs(height) > 0) {\n var minX = Math.min(x, x + width);\n var maxX = Math.max(x, x + width);\n var minY = Math.min(y, y + height);\n var maxY = Math.max(y, y + height);\n return px >= minX && px <= maxX && py >= minY && py <= maxY;\n }\n\n return false;\n};\nexport var Rectangle = /*#__PURE__*/function (_PureComponent) {\n _inherits(Rectangle, _PureComponent);\n\n var _super = _createSuper(Rectangle);\n\n function Rectangle() {\n var _this;\n\n _classCallCheck(this, Rectangle);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _super.call.apply(_super, [this].concat(args));\n _this.state = {\n totalLength: -1\n };\n _this.node = void 0;\n return _this;\n }\n\n _createClass(Rectangle, [{\n key: \"componentDidMount\",\n value:\n /* eslint-disable react/no-did-mount-set-state */\n function componentDidMount() {\n if (this.node && this.node.getTotalLength) {\n try {\n var totalLength = this.node.getTotalLength();\n\n if (totalLength) {\n this.setState({\n totalLength: totalLength\n });\n }\n } catch (err) {// calculate total length error\n }\n }\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this2 = this;\n\n var _this$props = this.props,\n x = _this$props.x,\n y = _this$props.y,\n width = _this$props.width,\n height = _this$props.height,\n radius = _this$props.radius,\n className = _this$props.className;\n var totalLength = this.state.totalLength;\n var _this$props2 = this.props,\n animationEasing = _this$props2.animationEasing,\n animationDuration = _this$props2.animationDuration,\n animationBegin = _this$props2.animationBegin,\n isAnimationActive = _this$props2.isAnimationActive,\n isUpdateAnimationActive = _this$props2.isUpdateAnimationActive;\n\n if (x !== +x || y !== +y || width !== +width || height !== +height || width === 0 || height === 0) {\n return null;\n }\n\n var layerClass = classNames('recharts-rectangle', className);\n\n if (!isUpdateAnimationActive) {\n return /*#__PURE__*/React.createElement(\"path\", _extends({}, filterProps(this.props, true), {\n className: layerClass,\n d: getRectanglePath(x, y, width, height, radius)\n }));\n }\n\n return /*#__PURE__*/React.createElement(Animate, {\n canBegin: totalLength > 0,\n from: {\n width: width,\n height: height,\n x: x,\n y: y\n },\n to: {\n width: width,\n height: height,\n x: x,\n y: y\n },\n duration: animationDuration,\n animationEasing: animationEasing,\n isActive: isUpdateAnimationActive\n }, function (_ref) {\n var currWidth = _ref.width,\n currHeight = _ref.height,\n currX = _ref.x,\n currY = _ref.y;\n return /*#__PURE__*/React.createElement(Animate, {\n canBegin: totalLength > 0,\n from: \"0px \".concat(totalLength === -1 ? 1 : totalLength, \"px\"),\n to: \"\".concat(totalLength, \"px 0px\"),\n attributeName: \"strokeDasharray\",\n begin: animationBegin,\n duration: animationDuration,\n isActive: isAnimationActive,\n easing: animationEasing\n }, /*#__PURE__*/React.createElement(\"path\", _extends({}, filterProps(_this2.props, true), {\n className: layerClass,\n d: getRectanglePath(currX, currY, currWidth, currHeight, radius),\n ref: function ref(node) {\n _this2.node = node;\n }\n })));\n });\n }\n }]);\n\n return Rectangle;\n}(PureComponent);\nRectangle.defaultProps = {\n x: 0,\n y: 0,\n width: 0,\n height: 0,\n // The radius of border\n // The radius of four corners when radius is a number\n // The radius of left-top, right-top, right-bottom, left-bottom when radius is an array\n radius: 0,\n isAnimationActive: false,\n isUpdateAnimationActive: false,\n animationBegin: 0,\n animationDuration: 1500,\n animationEasing: 'ease'\n};","function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\n\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _iterableToArray(iter) { if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter); }\n\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nvar identity = function identity(i) {\n return i;\n};\n\nexport var PLACE_HOLDER = {\n '@@functional/placeholder': true\n};\n\nvar isPlaceHolder = function isPlaceHolder(val) {\n return val === PLACE_HOLDER;\n};\n\nvar curry0 = function curry0(fn) {\n return function _curried() {\n if (arguments.length === 0 || arguments.length === 1 && isPlaceHolder(arguments.length <= 0 ? undefined : arguments[0])) {\n return _curried;\n }\n\n return fn.apply(void 0, arguments);\n };\n};\n\nvar curryN = function curryN(n, fn) {\n if (n === 1) {\n return fn;\n }\n\n return curry0(function () {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n var argsLength = args.filter(function (arg) {\n return arg !== PLACE_HOLDER;\n }).length;\n\n if (argsLength >= n) {\n return fn.apply(void 0, args);\n }\n\n return curryN(n - argsLength, curry0(function () {\n for (var _len2 = arguments.length, restArgs = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n restArgs[_key2] = arguments[_key2];\n }\n\n var newArgs = args.map(function (arg) {\n return isPlaceHolder(arg) ? restArgs.shift() : arg;\n });\n return fn.apply(void 0, _toConsumableArray(newArgs).concat(restArgs));\n }));\n });\n};\n\nexport var curry = function curry(fn) {\n return curryN(fn.length, fn);\n};\nexport var range = function range(begin, end) {\n var arr = [];\n\n for (var i = begin; i < end; ++i) {\n arr[i - begin] = i;\n }\n\n return arr;\n};\nexport var map = curry(function (fn, arr) {\n if (Array.isArray(arr)) {\n return arr.map(fn);\n }\n\n return Object.keys(arr).map(function (key) {\n return arr[key];\n }).map(fn);\n});\nexport var compose = function compose() {\n for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n args[_key3] = arguments[_key3];\n }\n\n if (!args.length) {\n return identity;\n }\n\n var fns = args.reverse(); // first function can receive multiply arguments\n\n var firstFn = fns[0];\n var tailsFn = fns.slice(1);\n return function () {\n return tailsFn.reduce(function (res, fn) {\n return fn(res);\n }, firstFn.apply(void 0, arguments));\n };\n};\nexport var reverse = function reverse(arr) {\n if (Array.isArray(arr)) {\n return arr.reverse();\n } // can be string\n\n\n return arr.split('').reverse.join('');\n};\nexport var memoize = function memoize(fn) {\n var lastArgs = null;\n var lastResult = null;\n return function () {\n for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {\n args[_key4] = arguments[_key4];\n }\n\n if (lastArgs && args.every(function (val, i) {\n return val === lastArgs[i];\n })) {\n return lastResult;\n }\n\n lastArgs = args;\n lastResult = fn.apply(void 0, args);\n return lastResult;\n };\n};","/**\n * @fileOverview 一些公用的运算方法\n * @author xile611\n * @date 2015-09-17\n */\nimport Decimal from 'decimal.js-light';\nimport { curry } from './utils';\n/**\n * 获取数值的位数\n * 其中绝对值属于区间[0.1, 1), 得到的值为0\n * 绝对值属于区间[0.01, 0.1),得到的位数为 -1\n * 绝对值属于区间[0.001, 0.01),得到的位数为 -2\n *\n * @param {Number} value 数值\n * @return {Integer} 位数\n */\n\nfunction getDigitCount(value) {\n var result;\n\n if (value === 0) {\n result = 1;\n } else {\n result = Math.floor(new Decimal(value).abs().log(10).toNumber()) + 1;\n }\n\n return result;\n}\n/**\n * 按照固定的步长获取[start, end)这个区间的数据\n * 并且需要处理js计算精度的问题\n *\n * @param {Decimal} start 起点\n * @param {Decimal} end 终点,不包含该值\n * @param {Decimal} step 步长\n * @return {Array} 若干数值\n */\n\n\nfunction rangeStep(start, end, step) {\n var num = new Decimal(start);\n var i = 0;\n var result = []; // magic number to prevent infinite loop\n\n while (num.lt(end) && i < 100000) {\n result.push(num.toNumber());\n num = num.add(step);\n i++;\n }\n\n return result;\n}\n/**\n * 对数值进行线性插值\n *\n * @param {Number} a 定义域的极点\n * @param {Number} b 定义域的极点\n * @param {Number} t [0, 1]内的某个值\n * @return {Number} 定义域内的某个值\n */\n\n\nvar interpolateNumber = curry(function (a, b, t) {\n var newA = +a;\n var newB = +b;\n return newA + t * (newB - newA);\n});\n/**\n * 线性插值的逆运算\n *\n * @param {Number} a 定义域的极点\n * @param {Number} b 定义域的极点\n * @param {Number} x 可以认为是插值后的一个输出值\n * @return {Number} 当x在 a ~ b这个范围内时,返回值属于[0, 1]\n */\n\nvar uninterpolateNumber = curry(function (a, b, x) {\n var diff = b - +a;\n diff = diff || Infinity;\n return (x - a) / diff;\n});\n/**\n * 线性插值的逆运算,并且有截断的操作\n *\n * @param {Number} a 定义域的极点\n * @param {Number} b 定义域的极点\n * @param {Number} x 可以认为是插值后的一个输出值\n * @return {Number} 当x在 a ~ b这个区间内时,返回值属于[0, 1],\n * 当x不在 a ~ b这个区间时,会截断到 a ~ b 这个区间\n */\n\nvar uninterpolateTruncation = curry(function (a, b, x) {\n var diff = b - +a;\n diff = diff || Infinity;\n return Math.max(0, Math.min(1, (x - a) / diff));\n});\nexport default {\n rangeStep: rangeStep,\n getDigitCount: getDigitCount,\n interpolateNumber: interpolateNumber,\n uninterpolateNumber: uninterpolateNumber,\n uninterpolateTruncation: uninterpolateTruncation\n};","function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\n\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _iterableToArray(iter) { if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter); }\n\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\n\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\n\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction _iterableToArrayLimit(arr, i) { if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\n/**\n * @fileOverview calculate tick values of scale\n * @author xile611, arcthur\n * @date 2015-09-17\n */\nimport Decimal from 'decimal.js-light';\nimport { compose, range, memoize, map, reverse } from './util/utils';\nimport Arithmetic from './util/arithmetic';\n/**\n * Calculate a interval of a minimum value and a maximum value\n *\n * @param {Number} min The minimum value\n * @param {Number} max The maximum value\n * @return {Array} An interval\n */\n\nfunction getValidInterval(_ref) {\n var _ref2 = _slicedToArray(_ref, 2),\n min = _ref2[0],\n max = _ref2[1];\n\n var validMin = min,\n validMax = max; // exchange\n\n if (min > max) {\n validMin = max;\n validMax = min;\n }\n\n return [validMin, validMax];\n}\n/**\n * Calculate the step which is easy to understand between ticks, like 10, 20, 25\n *\n * @param {Decimal} roughStep The rough step calculated by deviding the\n * difference by the tickCount\n * @param {Boolean} allowDecimals Allow the ticks to be decimals or not\n * @param {Integer} correctionFactor A correction factor\n * @return {Decimal} The step which is easy to understand between two ticks\n */\n\n\nfunction getFormatStep(roughStep, allowDecimals, correctionFactor) {\n if (roughStep.lte(0)) {\n return new Decimal(0);\n }\n\n var digitCount = Arithmetic.getDigitCount(roughStep.toNumber()); // The ratio between the rough step and the smallest number which has a bigger\n // order of magnitudes than the rough step\n\n var digitCountValue = new Decimal(10).pow(digitCount);\n var stepRatio = roughStep.div(digitCountValue); // When an integer and a float multiplied, the accuracy of result may be wrong\n\n var stepRatioScale = digitCount !== 1 ? 0.05 : 0.1;\n var amendStepRatio = new Decimal(Math.ceil(stepRatio.div(stepRatioScale).toNumber())).add(correctionFactor).mul(stepRatioScale);\n var formatStep = amendStepRatio.mul(digitCountValue);\n return allowDecimals ? formatStep : new Decimal(Math.ceil(formatStep));\n}\n/**\n * calculate the ticks when the minimum value equals to the maximum value\n *\n * @param {Number} value The minimum valuue which is also the maximum value\n * @param {Integer} tickCount The count of ticks\n * @param {Boolean} allowDecimals Allow the ticks to be decimals or not\n * @return {Array} ticks\n */\n\n\nfunction getTickOfSingleValue(value, tickCount, allowDecimals) {\n var step = 1; // calculate the middle value of ticks\n\n var middle = new Decimal(value);\n\n if (!middle.isint() && allowDecimals) {\n var absVal = Math.abs(value);\n\n if (absVal < 1) {\n // The step should be a float number when the difference is smaller than 1\n step = new Decimal(10).pow(Arithmetic.getDigitCount(value) - 1);\n middle = new Decimal(Math.floor(middle.div(step).toNumber())).mul(step);\n } else if (absVal > 1) {\n // Return the maximum integer which is smaller than 'value' when 'value' is greater than 1\n middle = new Decimal(Math.floor(value));\n }\n } else if (value === 0) {\n middle = new Decimal(Math.floor((tickCount - 1) / 2));\n } else if (!allowDecimals) {\n middle = new Decimal(Math.floor(value));\n }\n\n var middleIndex = Math.floor((tickCount - 1) / 2);\n var fn = compose(map(function (n) {\n return middle.add(new Decimal(n - middleIndex).mul(step)).toNumber();\n }), range);\n return fn(0, tickCount);\n}\n/**\n * Calculate the step\n *\n * @param {Number} min The minimum value of an interval\n * @param {Number} max The maximum value of an interval\n * @param {Integer} tickCount The count of ticks\n * @param {Boolean} allowDecimals Allow the ticks to be decimals or not\n * @param {Number} correctionFactor A correction factor\n * @return {Object} The step, minimum value of ticks, maximum value of ticks\n */\n\n\nfunction calculateStep(min, max, tickCount, allowDecimals) {\n var correctionFactor = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 0;\n\n // dirty hack (for recharts' test)\n if (!Number.isFinite((max - min) / (tickCount - 1))) {\n return {\n step: new Decimal(0),\n tickMin: new Decimal(0),\n tickMax: new Decimal(0)\n };\n } // The step which is easy to understand between two ticks\n\n\n var step = getFormatStep(new Decimal(max).sub(min).div(tickCount - 1), allowDecimals, correctionFactor); // A medial value of ticks\n\n var middle; // When 0 is inside the interval, 0 should be a tick\n\n if (min <= 0 && max >= 0) {\n middle = new Decimal(0);\n } else {\n // calculate the middle value\n middle = new Decimal(min).add(max).div(2); // minus modulo value\n\n middle = middle.sub(new Decimal(middle).mod(step));\n }\n\n var belowCount = Math.ceil(middle.sub(min).div(step).toNumber());\n var upCount = Math.ceil(new Decimal(max).sub(middle).div(step).toNumber());\n var scaleCount = belowCount + upCount + 1;\n\n if (scaleCount > tickCount) {\n // When more ticks need to cover the interval, step should be bigger.\n return calculateStep(min, max, tickCount, allowDecimals, correctionFactor + 1);\n }\n\n if (scaleCount < tickCount) {\n // When less ticks can cover the interval, we should add some additional ticks\n upCount = max > 0 ? upCount + (tickCount - scaleCount) : upCount;\n belowCount = max > 0 ? belowCount : belowCount + (tickCount - scaleCount);\n }\n\n return {\n step: step,\n tickMin: middle.sub(new Decimal(belowCount).mul(step)),\n tickMax: middle.add(new Decimal(upCount).mul(step))\n };\n}\n/**\n * Calculate the ticks of an interval, the count of ticks will be guraranteed\n *\n * @param {Number} min, max min: The minimum value, max: The maximum value\n * @param {Integer} tickCount The count of ticks\n * @param {Boolean} allowDecimals Allow the ticks to be decimals or not\n * @return {Array} ticks\n */\n\n\nfunction getNiceTickValuesFn(_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n min = _ref4[0],\n max = _ref4[1];\n\n var tickCount = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 6;\n var allowDecimals = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;\n // More than two ticks should be return\n var count = Math.max(tickCount, 2);\n\n var _getValidInterval = getValidInterval([min, max]),\n _getValidInterval2 = _slicedToArray(_getValidInterval, 2),\n cormin = _getValidInterval2[0],\n cormax = _getValidInterval2[1];\n\n if (cormin === -Infinity || cormax === Infinity) {\n var _values = cormax === Infinity ? [cormin].concat(_toConsumableArray(range(0, tickCount - 1).map(function () {\n return Infinity;\n }))) : [].concat(_toConsumableArray(range(0, tickCount - 1).map(function () {\n return -Infinity;\n })), [cormax]);\n\n return min > max ? reverse(_values) : _values;\n }\n\n if (cormin === cormax) {\n return getTickOfSingleValue(cormin, tickCount, allowDecimals);\n } // Get the step between two ticks\n\n\n var _calculateStep = calculateStep(cormin, cormax, count, allowDecimals),\n step = _calculateStep.step,\n tickMin = _calculateStep.tickMin,\n tickMax = _calculateStep.tickMax;\n\n var values = Arithmetic.rangeStep(tickMin, tickMax.add(new Decimal(0.1).mul(step)), step);\n return min > max ? reverse(values) : values;\n}\n/**\n * Calculate the ticks of an interval, the count of ticks won't be guraranteed\n *\n * @param {Number} min, max min: The minimum value, max: The maximum value\n * @param {Integer} tickCount The count of ticks\n * @param {Boolean} allowDecimals Allow the ticks to be decimals or not\n * @return {Array} ticks\n */\n\n\nfunction getTickValuesFn(_ref5) {\n var _ref6 = _slicedToArray(_ref5, 2),\n min = _ref6[0],\n max = _ref6[1];\n\n var tickCount = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 6;\n var allowDecimals = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;\n // More than two ticks should be return\n var count = Math.max(tickCount, 2);\n\n var _getValidInterval3 = getValidInterval([min, max]),\n _getValidInterval4 = _slicedToArray(_getValidInterval3, 2),\n cormin = _getValidInterval4[0],\n cormax = _getValidInterval4[1];\n\n if (cormin === -Infinity || cormax === Infinity) {\n return [min, max];\n }\n\n if (cormin === cormax) {\n return getTickOfSingleValue(cormin, tickCount, allowDecimals);\n }\n\n var step = getFormatStep(new Decimal(cormax).sub(cormin).div(count - 1), allowDecimals, 0);\n var fn = compose(map(function (n) {\n return new Decimal(cormin).add(new Decimal(n).mul(step)).toNumber();\n }), range);\n var values = fn(0, count).filter(function (entry) {\n return entry >= cormin && entry <= cormax;\n });\n return min > max ? reverse(values) : values;\n}\n/**\n * Calculate the ticks of an interval, the count of ticks won't be guraranteed,\n * but the domain will be guaranteed\n *\n * @param {Number} min, max min: The minimum value, max: The maximum value\n * @param {Integer} tickCount The count of ticks\n * @param {Boolean} allowDecimals Allow the ticks to be decimals or not\n * @return {Array} ticks\n */\n\n\nfunction getTickValuesFixedDomainFn(_ref7, tickCount) {\n var _ref8 = _slicedToArray(_ref7, 2),\n min = _ref8[0],\n max = _ref8[1];\n\n var allowDecimals = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;\n\n // More than two ticks should be return\n var _getValidInterval5 = getValidInterval([min, max]),\n _getValidInterval6 = _slicedToArray(_getValidInterval5, 2),\n cormin = _getValidInterval6[0],\n cormax = _getValidInterval6[1];\n\n if (cormin === -Infinity || cormax === Infinity) {\n return [min, max];\n }\n\n if (cormin === cormax) {\n return [cormin];\n }\n\n var count = Math.max(tickCount, 2);\n var step = getFormatStep(new Decimal(cormax).sub(cormin).div(count - 1), allowDecimals, 0);\n var values = [].concat(_toConsumableArray(Arithmetic.rangeStep(new Decimal(cormin), new Decimal(cormax).sub(new Decimal(0.99).mul(step)), step)), [cormax]);\n return min > max ? reverse(values) : values;\n}\n\nexport var getNiceTickValues = memoize(getNiceTickValuesFn);\nexport var getTickValues = memoize(getTickValuesFn);\nexport var getTickValuesFixedDomain = memoize(getTickValuesFixedDomainFn);","var e10 = Math.sqrt(50),\n e5 = Math.sqrt(10),\n e2 = Math.sqrt(2);\n\nexport default function ticks(start, stop, count) {\n var reverse,\n i = -1,\n n,\n ticks,\n step;\n\n stop = +stop, start = +start, count = +count;\n if (start === stop && count > 0) return [start];\n if (reverse = stop < start) n = start, start = stop, stop = n;\n if ((step = tickIncrement(start, stop, count)) === 0 || !isFinite(step)) return [];\n\n if (step > 0) {\n let r0 = Math.round(start / step), r1 = Math.round(stop / step);\n if (r0 * step < start) ++r0;\n if (r1 * step > stop) --r1;\n ticks = new Array(n = r1 - r0 + 1);\n while (++i < n) ticks[i] = (r0 + i) * step;\n } else {\n step = -step;\n let r0 = Math.round(start * step), r1 = Math.round(stop * step);\n if (r0 / step < start) ++r0;\n if (r1 / step > stop) --r1;\n ticks = new Array(n = r1 - r0 + 1);\n while (++i < n) ticks[i] = (r0 + i) / step;\n }\n\n if (reverse) ticks.reverse();\n\n return ticks;\n}\n\nexport function tickIncrement(start, stop, count) {\n var step = (stop - start) / Math.max(0, count),\n power = Math.floor(Math.log(step) / Math.LN10),\n error = step / Math.pow(10, power);\n return power >= 0\n ? (error >= e10 ? 10 : error >= e5 ? 5 : error >= e2 ? 2 : 1) * Math.pow(10, power)\n : -Math.pow(10, -power) / (error >= e10 ? 10 : error >= e5 ? 5 : error >= e2 ? 2 : 1);\n}\n\nexport function tickStep(start, stop, count) {\n var step0 = Math.abs(stop - start) / Math.max(0, count),\n step1 = Math.pow(10, Math.floor(Math.log(step0) / Math.LN10)),\n error = step0 / step1;\n if (error >= e10) step1 *= 10;\n else if (error >= e5) step1 *= 5;\n else if (error >= e2) step1 *= 2;\n return stop < start ? -step1 : step1;\n}\n","export default function ascending(a, b) {\n return a == null || b == null ? NaN : a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;\n}\n","export default function descending(a, b) {\n return a == null || b == null ? NaN\n : b < a ? -1\n : b > a ? 1\n : b >= a ? 0\n : NaN;\n}\n","import ascending from \"./ascending.js\";\nimport descending from \"./descending.js\";\n\nexport default function bisector(f) {\n let compare1, compare2, delta;\n\n // If an accessor is specified, promote it to a comparator. In this case we\n // can test whether the search value is (self-) comparable. We can’t do this\n // for a comparator (except for specific, known comparators) because we can’t\n // tell if the comparator is symmetric, and an asymmetric comparator can’t be\n // used to test whether a single value is comparable.\n if (f.length !== 2) {\n compare1 = ascending;\n compare2 = (d, x) => ascending(f(d), x);\n delta = (d, x) => f(d) - x;\n } else {\n compare1 = f === ascending || f === descending ? f : zero;\n compare2 = f;\n delta = f;\n }\n\n function left(a, x, lo = 0, hi = a.length) {\n if (lo < hi) {\n if (compare1(x, x) !== 0) return hi;\n do {\n const mid = (lo + hi) >>> 1;\n if (compare2(a[mid], x) < 0) lo = mid + 1;\n else hi = mid;\n } while (lo < hi);\n }\n return lo;\n }\n\n function right(a, x, lo = 0, hi = a.length) {\n if (lo < hi) {\n if (compare1(x, x) !== 0) return hi;\n do {\n const mid = (lo + hi) >>> 1;\n if (compare2(a[mid], x) <= 0) lo = mid + 1;\n else hi = mid;\n } while (lo < hi);\n }\n return lo;\n }\n\n function center(a, x, lo = 0, hi = a.length) {\n const i = left(a, x, lo, hi - 1);\n return i > lo && delta(a[i - 1], x) > -delta(a[i], x) ? i - 1 : i;\n }\n\n return {left, center, right};\n}\n\nfunction zero() {\n return 0;\n}\n","export default function number(x) {\n return x === null ? NaN : +x;\n}\n\nexport function* numbers(values, valueof) {\n if (valueof === undefined) {\n for (let value of values) {\n if (value != null && (value = +value) >= value) {\n yield value;\n }\n }\n } else {\n let index = -1;\n for (let value of values) {\n if ((value = valueof(value, ++index, values)) != null && (value = +value) >= value) {\n yield value;\n }\n }\n }\n}\n","import ascending from \"./ascending.js\";\nimport bisector from \"./bisector.js\";\nimport number from \"./number.js\";\n\nconst ascendingBisect = bisector(ascending);\nexport const bisectRight = ascendingBisect.right;\nexport const bisectLeft = ascendingBisect.left;\nexport const bisectCenter = bisector(number).center;\nexport default bisectRight;\n","export default function(constructor, factory, prototype) {\n constructor.prototype = factory.prototype = prototype;\n prototype.constructor = constructor;\n}\n\nexport function extend(parent, definition) {\n var prototype = Object.create(parent.prototype);\n for (var key in definition) prototype[key] = definition[key];\n return prototype;\n}\n","import define, {extend} from \"./define.js\";\n\nexport function Color() {}\n\nexport var darker = 0.7;\nexport var brighter = 1 / darker;\n\nvar reI = \"\\\\s*([+-]?\\\\d+)\\\\s*\",\n reN = \"\\\\s*([+-]?(?:\\\\d*\\\\.)?\\\\d+(?:[eE][+-]?\\\\d+)?)\\\\s*\",\n reP = \"\\\\s*([+-]?(?:\\\\d*\\\\.)?\\\\d+(?:[eE][+-]?\\\\d+)?)%\\\\s*\",\n reHex = /^#([0-9a-f]{3,8})$/,\n reRgbInteger = new RegExp(`^rgb\\\\(${reI},${reI},${reI}\\\\)$`),\n reRgbPercent = new RegExp(`^rgb\\\\(${reP},${reP},${reP}\\\\)$`),\n reRgbaInteger = new RegExp(`^rgba\\\\(${reI},${reI},${reI},${reN}\\\\)$`),\n reRgbaPercent = new RegExp(`^rgba\\\\(${reP},${reP},${reP},${reN}\\\\)$`),\n reHslPercent = new RegExp(`^hsl\\\\(${reN},${reP},${reP}\\\\)$`),\n reHslaPercent = new RegExp(`^hsla\\\\(${reN},${reP},${reP},${reN}\\\\)$`);\n\nvar named = {\n aliceblue: 0xf0f8ff,\n antiquewhite: 0xfaebd7,\n aqua: 0x00ffff,\n aquamarine: 0x7fffd4,\n azure: 0xf0ffff,\n beige: 0xf5f5dc,\n bisque: 0xffe4c4,\n black: 0x000000,\n blanchedalmond: 0xffebcd,\n blue: 0x0000ff,\n blueviolet: 0x8a2be2,\n brown: 0xa52a2a,\n burlywood: 0xdeb887,\n cadetblue: 0x5f9ea0,\n chartreuse: 0x7fff00,\n chocolate: 0xd2691e,\n coral: 0xff7f50,\n cornflowerblue: 0x6495ed,\n cornsilk: 0xfff8dc,\n crimson: 0xdc143c,\n cyan: 0x00ffff,\n darkblue: 0x00008b,\n darkcyan: 0x008b8b,\n darkgoldenrod: 0xb8860b,\n darkgray: 0xa9a9a9,\n darkgreen: 0x006400,\n darkgrey: 0xa9a9a9,\n darkkhaki: 0xbdb76b,\n darkmagenta: 0x8b008b,\n darkolivegreen: 0x556b2f,\n darkorange: 0xff8c00,\n darkorchid: 0x9932cc,\n darkred: 0x8b0000,\n darksalmon: 0xe9967a,\n darkseagreen: 0x8fbc8f,\n darkslateblue: 0x483d8b,\n darkslategray: 0x2f4f4f,\n darkslategrey: 0x2f4f4f,\n darkturquoise: 0x00ced1,\n darkviolet: 0x9400d3,\n deeppink: 0xff1493,\n deepskyblue: 0x00bfff,\n dimgray: 0x696969,\n dimgrey: 0x696969,\n dodgerblue: 0x1e90ff,\n firebrick: 0xb22222,\n floralwhite: 0xfffaf0,\n forestgreen: 0x228b22,\n fuchsia: 0xff00ff,\n gainsboro: 0xdcdcdc,\n ghostwhite: 0xf8f8ff,\n gold: 0xffd700,\n goldenrod: 0xdaa520,\n gray: 0x808080,\n green: 0x008000,\n greenyellow: 0xadff2f,\n grey: 0x808080,\n honeydew: 0xf0fff0,\n hotpink: 0xff69b4,\n indianred: 0xcd5c5c,\n indigo: 0x4b0082,\n ivory: 0xfffff0,\n khaki: 0xf0e68c,\n lavender: 0xe6e6fa,\n lavenderblush: 0xfff0f5,\n lawngreen: 0x7cfc00,\n lemonchiffon: 0xfffacd,\n lightblue: 0xadd8e6,\n lightcoral: 0xf08080,\n lightcyan: 0xe0ffff,\n lightgoldenrodyellow: 0xfafad2,\n lightgray: 0xd3d3d3,\n lightgreen: 0x90ee90,\n lightgrey: 0xd3d3d3,\n lightpink: 0xffb6c1,\n lightsalmon: 0xffa07a,\n lightseagreen: 0x20b2aa,\n lightskyblue: 0x87cefa,\n lightslategray: 0x778899,\n lightslategrey: 0x778899,\n lightsteelblue: 0xb0c4de,\n lightyellow: 0xffffe0,\n lime: 0x00ff00,\n limegreen: 0x32cd32,\n linen: 0xfaf0e6,\n magenta: 0xff00ff,\n maroon: 0x800000,\n mediumaquamarine: 0x66cdaa,\n mediumblue: 0x0000cd,\n mediumorchid: 0xba55d3,\n mediumpurple: 0x9370db,\n mediumseagreen: 0x3cb371,\n mediumslateblue: 0x7b68ee,\n mediumspringgreen: 0x00fa9a,\n mediumturquoise: 0x48d1cc,\n mediumvioletred: 0xc71585,\n midnightblue: 0x191970,\n mintcream: 0xf5fffa,\n mistyrose: 0xffe4e1,\n moccasin: 0xffe4b5,\n navajowhite: 0xffdead,\n navy: 0x000080,\n oldlace: 0xfdf5e6,\n olive: 0x808000,\n olivedrab: 0x6b8e23,\n orange: 0xffa500,\n orangered: 0xff4500,\n orchid: 0xda70d6,\n palegoldenrod: 0xeee8aa,\n palegreen: 0x98fb98,\n paleturquoise: 0xafeeee,\n palevioletred: 0xdb7093,\n papayawhip: 0xffefd5,\n peachpuff: 0xffdab9,\n peru: 0xcd853f,\n pink: 0xffc0cb,\n plum: 0xdda0dd,\n powderblue: 0xb0e0e6,\n purple: 0x800080,\n rebeccapurple: 0x663399,\n red: 0xff0000,\n rosybrown: 0xbc8f8f,\n royalblue: 0x4169e1,\n saddlebrown: 0x8b4513,\n salmon: 0xfa8072,\n sandybrown: 0xf4a460,\n seagreen: 0x2e8b57,\n seashell: 0xfff5ee,\n sienna: 0xa0522d,\n silver: 0xc0c0c0,\n skyblue: 0x87ceeb,\n slateblue: 0x6a5acd,\n slategray: 0x708090,\n slategrey: 0x708090,\n snow: 0xfffafa,\n springgreen: 0x00ff7f,\n steelblue: 0x4682b4,\n tan: 0xd2b48c,\n teal: 0x008080,\n thistle: 0xd8bfd8,\n tomato: 0xff6347,\n turquoise: 0x40e0d0,\n violet: 0xee82ee,\n wheat: 0xf5deb3,\n white: 0xffffff,\n whitesmoke: 0xf5f5f5,\n yellow: 0xffff00,\n yellowgreen: 0x9acd32\n};\n\ndefine(Color, color, {\n copy(channels) {\n return Object.assign(new this.constructor, this, channels);\n },\n displayable() {\n return this.rgb().displayable();\n },\n hex: color_formatHex, // Deprecated! Use color.formatHex.\n formatHex: color_formatHex,\n formatHex8: color_formatHex8,\n formatHsl: color_formatHsl,\n formatRgb: color_formatRgb,\n toString: color_formatRgb\n});\n\nfunction color_formatHex() {\n return this.rgb().formatHex();\n}\n\nfunction color_formatHex8() {\n return this.rgb().formatHex8();\n}\n\nfunction color_formatHsl() {\n return hslConvert(this).formatHsl();\n}\n\nfunction color_formatRgb() {\n return this.rgb().formatRgb();\n}\n\nexport default function color(format) {\n var m, l;\n format = (format + \"\").trim().toLowerCase();\n return (m = reHex.exec(format)) ? (l = m[1].length, m = parseInt(m[1], 16), l === 6 ? rgbn(m) // #ff0000\n : l === 3 ? new Rgb((m >> 8 & 0xf) | (m >> 4 & 0xf0), (m >> 4 & 0xf) | (m & 0xf0), ((m & 0xf) << 4) | (m & 0xf), 1) // #f00\n : l === 8 ? rgba(m >> 24 & 0xff, m >> 16 & 0xff, m >> 8 & 0xff, (m & 0xff) / 0xff) // #ff000000\n : l === 4 ? rgba((m >> 12 & 0xf) | (m >> 8 & 0xf0), (m >> 8 & 0xf) | (m >> 4 & 0xf0), (m >> 4 & 0xf) | (m & 0xf0), (((m & 0xf) << 4) | (m & 0xf)) / 0xff) // #f000\n : null) // invalid hex\n : (m = reRgbInteger.exec(format)) ? new Rgb(m[1], m[2], m[3], 1) // rgb(255, 0, 0)\n : (m = reRgbPercent.exec(format)) ? new Rgb(m[1] * 255 / 100, m[2] * 255 / 100, m[3] * 255 / 100, 1) // rgb(100%, 0%, 0%)\n : (m = reRgbaInteger.exec(format)) ? rgba(m[1], m[2], m[3], m[4]) // rgba(255, 0, 0, 1)\n : (m = reRgbaPercent.exec(format)) ? rgba(m[1] * 255 / 100, m[2] * 255 / 100, m[3] * 255 / 100, m[4]) // rgb(100%, 0%, 0%, 1)\n : (m = reHslPercent.exec(format)) ? hsla(m[1], m[2] / 100, m[3] / 100, 1) // hsl(120, 50%, 50%)\n : (m = reHslaPercent.exec(format)) ? hsla(m[1], m[2] / 100, m[3] / 100, m[4]) // hsla(120, 50%, 50%, 1)\n : named.hasOwnProperty(format) ? rgbn(named[format]) // eslint-disable-line no-prototype-builtins\n : format === \"transparent\" ? new Rgb(NaN, NaN, NaN, 0)\n : null;\n}\n\nfunction rgbn(n) {\n return new Rgb(n >> 16 & 0xff, n >> 8 & 0xff, n & 0xff, 1);\n}\n\nfunction rgba(r, g, b, a) {\n if (a <= 0) r = g = b = NaN;\n return new Rgb(r, g, b, a);\n}\n\nexport function rgbConvert(o) {\n if (!(o instanceof Color)) o = color(o);\n if (!o) return new Rgb;\n o = o.rgb();\n return new Rgb(o.r, o.g, o.b, o.opacity);\n}\n\nexport function rgb(r, g, b, opacity) {\n return arguments.length === 1 ? rgbConvert(r) : new Rgb(r, g, b, opacity == null ? 1 : opacity);\n}\n\nexport function Rgb(r, g, b, opacity) {\n this.r = +r;\n this.g = +g;\n this.b = +b;\n this.opacity = +opacity;\n}\n\ndefine(Rgb, rgb, extend(Color, {\n brighter(k) {\n k = k == null ? brighter : Math.pow(brighter, k);\n return new Rgb(this.r * k, this.g * k, this.b * k, this.opacity);\n },\n darker(k) {\n k = k == null ? darker : Math.pow(darker, k);\n return new Rgb(this.r * k, this.g * k, this.b * k, this.opacity);\n },\n rgb() {\n return this;\n },\n clamp() {\n return new Rgb(clampi(this.r), clampi(this.g), clampi(this.b), clampa(this.opacity));\n },\n displayable() {\n return (-0.5 <= this.r && this.r < 255.5)\n && (-0.5 <= this.g && this.g < 255.5)\n && (-0.5 <= this.b && this.b < 255.5)\n && (0 <= this.opacity && this.opacity <= 1);\n },\n hex: rgb_formatHex, // Deprecated! Use color.formatHex.\n formatHex: rgb_formatHex,\n formatHex8: rgb_formatHex8,\n formatRgb: rgb_formatRgb,\n toString: rgb_formatRgb\n}));\n\nfunction rgb_formatHex() {\n return `#${hex(this.r)}${hex(this.g)}${hex(this.b)}`;\n}\n\nfunction rgb_formatHex8() {\n return `#${hex(this.r)}${hex(this.g)}${hex(this.b)}${hex((isNaN(this.opacity) ? 1 : this.opacity) * 255)}`;\n}\n\nfunction rgb_formatRgb() {\n const a = clampa(this.opacity);\n return `${a === 1 ? \"rgb(\" : \"rgba(\"}${clampi(this.r)}, ${clampi(this.g)}, ${clampi(this.b)}${a === 1 ? \")\" : `, ${a})`}`;\n}\n\nfunction clampa(opacity) {\n return isNaN(opacity) ? 1 : Math.max(0, Math.min(1, opacity));\n}\n\nfunction clampi(value) {\n return Math.max(0, Math.min(255, Math.round(value) || 0));\n}\n\nfunction hex(value) {\n value = clampi(value);\n return (value < 16 ? \"0\" : \"\") + value.toString(16);\n}\n\nfunction hsla(h, s, l, a) {\n if (a <= 0) h = s = l = NaN;\n else if (l <= 0 || l >= 1) h = s = NaN;\n else if (s <= 0) h = NaN;\n return new Hsl(h, s, l, a);\n}\n\nexport function hslConvert(o) {\n if (o instanceof Hsl) return new Hsl(o.h, o.s, o.l, o.opacity);\n if (!(o instanceof Color)) o = color(o);\n if (!o) return new Hsl;\n if (o instanceof Hsl) return o;\n o = o.rgb();\n var r = o.r / 255,\n g = o.g / 255,\n b = o.b / 255,\n min = Math.min(r, g, b),\n max = Math.max(r, g, b),\n h = NaN,\n s = max - min,\n l = (max + min) / 2;\n if (s) {\n if (r === max) h = (g - b) / s + (g < b) * 6;\n else if (g === max) h = (b - r) / s + 2;\n else h = (r - g) / s + 4;\n s /= l < 0.5 ? max + min : 2 - max - min;\n h *= 60;\n } else {\n s = l > 0 && l < 1 ? 0 : h;\n }\n return new Hsl(h, s, l, o.opacity);\n}\n\nexport function hsl(h, s, l, opacity) {\n return arguments.length === 1 ? hslConvert(h) : new Hsl(h, s, l, opacity == null ? 1 : opacity);\n}\n\nfunction Hsl(h, s, l, opacity) {\n this.h = +h;\n this.s = +s;\n this.l = +l;\n this.opacity = +opacity;\n}\n\ndefine(Hsl, hsl, extend(Color, {\n brighter(k) {\n k = k == null ? brighter : Math.pow(brighter, k);\n return new Hsl(this.h, this.s, this.l * k, this.opacity);\n },\n darker(k) {\n k = k == null ? darker : Math.pow(darker, k);\n return new Hsl(this.h, this.s, this.l * k, this.opacity);\n },\n rgb() {\n var h = this.h % 360 + (this.h < 0) * 360,\n s = isNaN(h) || isNaN(this.s) ? 0 : this.s,\n l = this.l,\n m2 = l + (l < 0.5 ? l : 1 - l) * s,\n m1 = 2 * l - m2;\n return new Rgb(\n hsl2rgb(h >= 240 ? h - 240 : h + 120, m1, m2),\n hsl2rgb(h, m1, m2),\n hsl2rgb(h < 120 ? h + 240 : h - 120, m1, m2),\n this.opacity\n );\n },\n clamp() {\n return new Hsl(clamph(this.h), clampt(this.s), clampt(this.l), clampa(this.opacity));\n },\n displayable() {\n return (0 <= this.s && this.s <= 1 || isNaN(this.s))\n && (0 <= this.l && this.l <= 1)\n && (0 <= this.opacity && this.opacity <= 1);\n },\n formatHsl() {\n const a = clampa(this.opacity);\n return `${a === 1 ? \"hsl(\" : \"hsla(\"}${clamph(this.h)}, ${clampt(this.s) * 100}%, ${clampt(this.l) * 100}%${a === 1 ? \")\" : `, ${a})`}`;\n }\n}));\n\nfunction clamph(value) {\n value = (value || 0) % 360;\n return value < 0 ? value + 360 : value;\n}\n\nfunction clampt(value) {\n return Math.max(0, Math.min(1, value || 0));\n}\n\n/* From FvD 13.37, CSS Color Module Level 3 */\nfunction hsl2rgb(h, m1, m2) {\n return (h < 60 ? m1 + (m2 - m1) * h / 60\n : h < 180 ? m2\n : h < 240 ? m1 + (m2 - m1) * (240 - h) / 60\n : m1) * 255;\n}\n","export function basis(t1, v0, v1, v2, v3) {\n var t2 = t1 * t1, t3 = t2 * t1;\n return ((1 - 3 * t1 + 3 * t2 - t3) * v0\n + (4 - 6 * t2 + 3 * t3) * v1\n + (1 + 3 * t1 + 3 * t2 - 3 * t3) * v2\n + t3 * v3) / 6;\n}\n\nexport default function(values) {\n var n = values.length - 1;\n return function(t) {\n var i = t <= 0 ? (t = 0) : t >= 1 ? (t = 1, n - 1) : Math.floor(t * n),\n v1 = values[i],\n v2 = values[i + 1],\n v0 = i > 0 ? values[i - 1] : 2 * v1 - v2,\n v3 = i < n - 1 ? values[i + 2] : 2 * v2 - v1;\n return basis((t - i / n) * n, v0, v1, v2, v3);\n };\n}\n","export default x => () => x;\n","import constant from \"./constant.js\";\n\nfunction linear(a, d) {\n return function(t) {\n return a + t * d;\n };\n}\n\nfunction exponential(a, b, y) {\n return a = Math.pow(a, y), b = Math.pow(b, y) - a, y = 1 / y, function(t) {\n return Math.pow(a + t * b, y);\n };\n}\n\nexport function hue(a, b) {\n var d = b - a;\n return d ? linear(a, d > 180 || d < -180 ? d - 360 * Math.round(d / 360) : d) : constant(isNaN(a) ? b : a);\n}\n\nexport function gamma(y) {\n return (y = +y) === 1 ? nogamma : function(a, b) {\n return b - a ? exponential(a, b, y) : constant(isNaN(a) ? b : a);\n };\n}\n\nexport default function nogamma(a, b) {\n var d = b - a;\n return d ? linear(a, d) : constant(isNaN(a) ? b : a);\n}\n","import {rgb as colorRgb} from \"d3-color\";\nimport basis from \"./basis.js\";\nimport basisClosed from \"./basisClosed.js\";\nimport nogamma, {gamma} from \"./color.js\";\n\nexport default (function rgbGamma(y) {\n var color = gamma(y);\n\n function rgb(start, end) {\n var r = color((start = colorRgb(start)).r, (end = colorRgb(end)).r),\n g = color(start.g, end.g),\n b = color(start.b, end.b),\n opacity = nogamma(start.opacity, end.opacity);\n return function(t) {\n start.r = r(t);\n start.g = g(t);\n start.b = b(t);\n start.opacity = opacity(t);\n return start + \"\";\n };\n }\n\n rgb.gamma = rgbGamma;\n\n return rgb;\n})(1);\n\nfunction rgbSpline(spline) {\n return function(colors) {\n var n = colors.length,\n r = new Array(n),\n g = new Array(n),\n b = new Array(n),\n i, color;\n for (i = 0; i < n; ++i) {\n color = colorRgb(colors[i]);\n r[i] = color.r || 0;\n g[i] = color.g || 0;\n b[i] = color.b || 0;\n }\n r = spline(r);\n g = spline(g);\n b = spline(b);\n color.opacity = 1;\n return function(t) {\n color.r = r(t);\n color.g = g(t);\n color.b = b(t);\n return color + \"\";\n };\n };\n}\n\nexport var rgbBasis = rgbSpline(basis);\nexport var rgbBasisClosed = rgbSpline(basisClosed);\n","import {basis} from \"./basis.js\";\n\nexport default function(values) {\n var n = values.length;\n return function(t) {\n var i = Math.floor(((t %= 1) < 0 ? ++t : t) * n),\n v0 = values[(i + n - 1) % n],\n v1 = values[i % n],\n v2 = values[(i + 1) % n],\n v3 = values[(i + 2) % n];\n return basis((t - i / n) * n, v0, v1, v2, v3);\n };\n}\n","import value from \"./value.js\";\nimport numberArray, {isNumberArray} from \"./numberArray.js\";\n\nexport default function(a, b) {\n return (isNumberArray(b) ? numberArray : genericArray)(a, b);\n}\n\nexport function genericArray(a, b) {\n var nb = b ? b.length : 0,\n na = a ? Math.min(nb, a.length) : 0,\n x = new Array(na),\n c = new Array(nb),\n i;\n\n for (i = 0; i < na; ++i) x[i] = value(a[i], b[i]);\n for (; i < nb; ++i) c[i] = b[i];\n\n return function(t) {\n for (i = 0; i < na; ++i) c[i] = x[i](t);\n return c;\n };\n}\n","export default function(a, b) {\n var d = new Date;\n return a = +a, b = +b, function(t) {\n return d.setTime(a * (1 - t) + b * t), d;\n };\n}\n","export default function(a, b) {\n return a = +a, b = +b, function(t) {\n return a * (1 - t) + b * t;\n };\n}\n","import value from \"./value.js\";\n\nexport default function(a, b) {\n var i = {},\n c = {},\n k;\n\n if (a === null || typeof a !== \"object\") a = {};\n if (b === null || typeof b !== \"object\") b = {};\n\n for (k in b) {\n if (k in a) {\n i[k] = value(a[k], b[k]);\n } else {\n c[k] = b[k];\n }\n }\n\n return function(t) {\n for (k in i) c[k] = i[k](t);\n return c;\n };\n}\n","import number from \"./number.js\";\n\nvar reA = /[-+]?(?:\\d+\\.?\\d*|\\.?\\d+)(?:[eE][-+]?\\d+)?/g,\n reB = new RegExp(reA.source, \"g\");\n\nfunction zero(b) {\n return function() {\n return b;\n };\n}\n\nfunction one(b) {\n return function(t) {\n return b(t) + \"\";\n };\n}\n\nexport default function(a, b) {\n var bi = reA.lastIndex = reB.lastIndex = 0, // scan index for next number in b\n am, // current match in a\n bm, // current match in b\n bs, // string preceding current number in b, if any\n i = -1, // index in s\n s = [], // string constants and placeholders\n q = []; // number interpolators\n\n // Coerce inputs to strings.\n a = a + \"\", b = b + \"\";\n\n // Interpolate pairs of numbers in a & b.\n while ((am = reA.exec(a))\n && (bm = reB.exec(b))) {\n if ((bs = bm.index) > bi) { // a string precedes the next number in b\n bs = b.slice(bi, bs);\n if (s[i]) s[i] += bs; // coalesce with previous string\n else s[++i] = bs;\n }\n if ((am = am[0]) === (bm = bm[0])) { // numbers in a & b match\n if (s[i]) s[i] += bm; // coalesce with previous string\n else s[++i] = bm;\n } else { // interpolate non-matching numbers\n s[++i] = null;\n q.push({i: i, x: number(am, bm)});\n }\n bi = reB.lastIndex;\n }\n\n // Add remains of b.\n if (bi < b.length) {\n bs = b.slice(bi);\n if (s[i]) s[i] += bs; // coalesce with previous string\n else s[++i] = bs;\n }\n\n // Special optimization for only a single match.\n // Otherwise, interpolate each of the numbers and rejoin the string.\n return s.length < 2 ? (q[0]\n ? one(q[0].x)\n : zero(b))\n : (b = q.length, function(t) {\n for (var i = 0, o; i < b; ++i) s[(o = q[i]).i] = o.x(t);\n return s.join(\"\");\n });\n}\n","export default function(a, b) {\n if (!b) b = [];\n var n = a ? Math.min(b.length, a.length) : 0,\n c = b.slice(),\n i;\n return function(t) {\n for (i = 0; i < n; ++i) c[i] = a[i] * (1 - t) + b[i] * t;\n return c;\n };\n}\n\nexport function isNumberArray(x) {\n return ArrayBuffer.isView(x) && !(x instanceof DataView);\n}\n","import {color} from \"d3-color\";\nimport rgb from \"./rgb.js\";\nimport {genericArray} from \"./array.js\";\nimport date from \"./date.js\";\nimport number from \"./number.js\";\nimport object from \"./object.js\";\nimport string from \"./string.js\";\nimport constant from \"./constant.js\";\nimport numberArray, {isNumberArray} from \"./numberArray.js\";\n\nexport default function(a, b) {\n var t = typeof b, c;\n return b == null || t === \"boolean\" ? constant(b)\n : (t === \"number\" ? number\n : t === \"string\" ? ((c = color(b)) ? (b = c, rgb) : string)\n : b instanceof color ? rgb\n : b instanceof Date ? date\n : isNumberArray(b) ? numberArray\n : Array.isArray(b) ? genericArray\n : typeof b.valueOf !== \"function\" && typeof b.toString !== \"function\" || isNaN(b) ? object\n : number)(a, b);\n}\n","export default function(a, b) {\n return a = +a, b = +b, function(t) {\n return Math.round(a * (1 - t) + b * t);\n };\n}\n","export default function number(x) {\n return +x;\n}\n","import {bisect} from \"d3-array\";\nimport {interpolate as interpolateValue, interpolateNumber, interpolateRound} from \"d3-interpolate\";\nimport constant from \"./constant.js\";\nimport number from \"./number.js\";\n\nvar unit = [0, 1];\n\nexport function identity(x) {\n return x;\n}\n\nfunction normalize(a, b) {\n return (b -= (a = +a))\n ? function(x) { return (x - a) / b; }\n : constant(isNaN(b) ? NaN : 0.5);\n}\n\nfunction clamper(a, b) {\n var t;\n if (a > b) t = a, a = b, b = t;\n return function(x) { return Math.max(a, Math.min(b, x)); };\n}\n\n// normalize(a, b)(x) takes a domain value x in [a,b] and returns the corresponding parameter t in [0,1].\n// interpolate(a, b)(t) takes a parameter t in [0,1] and returns the corresponding range value x in [a,b].\nfunction bimap(domain, range, interpolate) {\n var d0 = domain[0], d1 = domain[1], r0 = range[0], r1 = range[1];\n if (d1 < d0) d0 = normalize(d1, d0), r0 = interpolate(r1, r0);\n else d0 = normalize(d0, d1), r0 = interpolate(r0, r1);\n return function(x) { return r0(d0(x)); };\n}\n\nfunction polymap(domain, range, interpolate) {\n var j = Math.min(domain.length, range.length) - 1,\n d = new Array(j),\n r = new Array(j),\n i = -1;\n\n // Reverse descending domains.\n if (domain[j] < domain[0]) {\n domain = domain.slice().reverse();\n range = range.slice().reverse();\n }\n\n while (++i < j) {\n d[i] = normalize(domain[i], domain[i + 1]);\n r[i] = interpolate(range[i], range[i + 1]);\n }\n\n return function(x) {\n var i = bisect(domain, x, 1, j) - 1;\n return r[i](d[i](x));\n };\n}\n\nexport function copy(source, target) {\n return target\n .domain(source.domain())\n .range(source.range())\n .interpolate(source.interpolate())\n .clamp(source.clamp())\n .unknown(source.unknown());\n}\n\nexport function transformer() {\n var domain = unit,\n range = unit,\n interpolate = interpolateValue,\n transform,\n untransform,\n unknown,\n clamp = identity,\n piecewise,\n output,\n input;\n\n function rescale() {\n var n = Math.min(domain.length, range.length);\n if (clamp !== identity) clamp = clamper(domain[0], domain[n - 1]);\n piecewise = n > 2 ? polymap : bimap;\n output = input = null;\n return scale;\n }\n\n function scale(x) {\n return x == null || isNaN(x = +x) ? unknown : (output || (output = piecewise(domain.map(transform), range, interpolate)))(transform(clamp(x)));\n }\n\n scale.invert = function(y) {\n return clamp(untransform((input || (input = piecewise(range, domain.map(transform), interpolateNumber)))(y)));\n };\n\n scale.domain = function(_) {\n return arguments.length ? (domain = Array.from(_, number), rescale()) : domain.slice();\n };\n\n scale.range = function(_) {\n return arguments.length ? (range = Array.from(_), rescale()) : range.slice();\n };\n\n scale.rangeRound = function(_) {\n return range = Array.from(_), interpolate = interpolateRound, rescale();\n };\n\n scale.clamp = function(_) {\n return arguments.length ? (clamp = _ ? true : identity, rescale()) : clamp !== identity;\n };\n\n scale.interpolate = function(_) {\n return arguments.length ? (interpolate = _, rescale()) : interpolate;\n };\n\n scale.unknown = function(_) {\n return arguments.length ? (unknown = _, scale) : unknown;\n };\n\n return function(t, u) {\n transform = t, untransform = u;\n return rescale();\n };\n}\n\nexport default function continuous() {\n return transformer()(identity, identity);\n}\n","export default function constants(x) {\n return function() {\n return x;\n };\n}\n","import {formatDecimalParts} from \"./formatDecimal.js\";\n\nexport var prefixExponent;\n\nexport default function(x, p) {\n var d = formatDecimalParts(x, p);\n if (!d) return x + \"\";\n var coefficient = d[0],\n exponent = d[1],\n i = exponent - (prefixExponent = Math.max(-8, Math.min(8, Math.floor(exponent / 3))) * 3) + 1,\n n = coefficient.length;\n return i === n ? coefficient\n : i > n ? coefficient + new Array(i - n + 1).join(\"0\")\n : i > 0 ? coefficient.slice(0, i) + \".\" + coefficient.slice(i)\n : \"0.\" + new Array(1 - i).join(\"0\") + formatDecimalParts(x, Math.max(0, p + i - 1))[0]; // less than 1y!\n}\n","// [[fill]align][sign][symbol][0][width][,][.precision][~][type]\nvar re = /^(?:(.)?([<>=^]))?([+\\-( ])?([$#])?(0)?(\\d+)?(,)?(\\.\\d+)?(~)?([a-z%])?$/i;\n\nexport default function formatSpecifier(specifier) {\n if (!(match = re.exec(specifier))) throw new Error(\"invalid format: \" + specifier);\n var match;\n return new FormatSpecifier({\n fill: match[1],\n align: match[2],\n sign: match[3],\n symbol: match[4],\n zero: match[5],\n width: match[6],\n comma: match[7],\n precision: match[8] && match[8].slice(1),\n trim: match[9],\n type: match[10]\n });\n}\n\nformatSpecifier.prototype = FormatSpecifier.prototype; // instanceof\n\nexport function FormatSpecifier(specifier) {\n this.fill = specifier.fill === undefined ? \" \" : specifier.fill + \"\";\n this.align = specifier.align === undefined ? \">\" : specifier.align + \"\";\n this.sign = specifier.sign === undefined ? \"-\" : specifier.sign + \"\";\n this.symbol = specifier.symbol === undefined ? \"\" : specifier.symbol + \"\";\n this.zero = !!specifier.zero;\n this.width = specifier.width === undefined ? undefined : +specifier.width;\n this.comma = !!specifier.comma;\n this.precision = specifier.precision === undefined ? undefined : +specifier.precision;\n this.trim = !!specifier.trim;\n this.type = specifier.type === undefined ? \"\" : specifier.type + \"\";\n}\n\nFormatSpecifier.prototype.toString = function() {\n return this.fill\n + this.align\n + this.sign\n + this.symbol\n + (this.zero ? \"0\" : \"\")\n + (this.width === undefined ? \"\" : Math.max(1, this.width | 0))\n + (this.comma ? \",\" : \"\")\n + (this.precision === undefined ? \"\" : \".\" + Math.max(0, this.precision | 0))\n + (this.trim ? \"~\" : \"\")\n + this.type;\n};\n","export default function(x) {\n return Math.abs(x = Math.round(x)) >= 1e21\n ? x.toLocaleString(\"en\").replace(/,/g, \"\")\n : x.toString(10);\n}\n\n// Computes the decimal coefficient and exponent of the specified number x with\n// significant digits p, where x is positive and p is in [1, 21] or undefined.\n// For example, formatDecimalParts(1.23) returns [\"123\", 0].\nexport function formatDecimalParts(x, p) {\n if ((i = (x = p ? x.toExponential(p - 1) : x.toExponential()).indexOf(\"e\")) < 0) return null; // NaN, ±Infinity\n var i, coefficient = x.slice(0, i);\n\n // The string returned by toExponential either has the form \\d\\.\\d+e[-+]\\d+\n // (e.g., 1.2e+3) or the form \\de[-+]\\d+ (e.g., 1e+3).\n return [\n coefficient.length > 1 ? coefficient[0] + coefficient.slice(2) : coefficient,\n +x.slice(i + 1)\n ];\n}\n","import {formatDecimalParts} from \"./formatDecimal.js\";\n\nexport default function(x) {\n return x = formatDecimalParts(Math.abs(x)), x ? x[1] : NaN;\n}\n","import {formatDecimalParts} from \"./formatDecimal.js\";\n\nexport default function(x, p) {\n var d = formatDecimalParts(x, p);\n if (!d) return x + \"\";\n var coefficient = d[0],\n exponent = d[1];\n return exponent < 0 ? \"0.\" + new Array(-exponent).join(\"0\") + coefficient\n : coefficient.length > exponent + 1 ? coefficient.slice(0, exponent + 1) + \".\" + coefficient.slice(exponent + 1)\n : coefficient + new Array(exponent - coefficient.length + 2).join(\"0\");\n}\n","import formatDecimal from \"./formatDecimal.js\";\nimport formatPrefixAuto from \"./formatPrefixAuto.js\";\nimport formatRounded from \"./formatRounded.js\";\n\nexport default {\n \"%\": (x, p) => (x * 100).toFixed(p),\n \"b\": (x) => Math.round(x).toString(2),\n \"c\": (x) => x + \"\",\n \"d\": formatDecimal,\n \"e\": (x, p) => x.toExponential(p),\n \"f\": (x, p) => x.toFixed(p),\n \"g\": (x, p) => x.toPrecision(p),\n \"o\": (x) => Math.round(x).toString(8),\n \"p\": (x, p) => formatRounded(x * 100, p),\n \"r\": formatRounded,\n \"s\": formatPrefixAuto,\n \"X\": (x) => Math.round(x).toString(16).toUpperCase(),\n \"x\": (x) => Math.round(x).toString(16)\n};\n","export default function(x) {\n return x;\n}\n","import exponent from \"./exponent.js\";\nimport formatGroup from \"./formatGroup.js\";\nimport formatNumerals from \"./formatNumerals.js\";\nimport formatSpecifier from \"./formatSpecifier.js\";\nimport formatTrim from \"./formatTrim.js\";\nimport formatTypes from \"./formatTypes.js\";\nimport {prefixExponent} from \"./formatPrefixAuto.js\";\nimport identity from \"./identity.js\";\n\nvar map = Array.prototype.map,\n prefixes = [\"y\",\"z\",\"a\",\"f\",\"p\",\"n\",\"µ\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\",\"P\",\"E\",\"Z\",\"Y\"];\n\nexport default function(locale) {\n var group = locale.grouping === undefined || locale.thousands === undefined ? identity : formatGroup(map.call(locale.grouping, Number), locale.thousands + \"\"),\n currencyPrefix = locale.currency === undefined ? \"\" : locale.currency[0] + \"\",\n currencySuffix = locale.currency === undefined ? \"\" : locale.currency[1] + \"\",\n decimal = locale.decimal === undefined ? \".\" : locale.decimal + \"\",\n numerals = locale.numerals === undefined ? identity : formatNumerals(map.call(locale.numerals, String)),\n percent = locale.percent === undefined ? \"%\" : locale.percent + \"\",\n minus = locale.minus === undefined ? \"−\" : locale.minus + \"\",\n nan = locale.nan === undefined ? \"NaN\" : locale.nan + \"\";\n\n function newFormat(specifier) {\n specifier = formatSpecifier(specifier);\n\n var fill = specifier.fill,\n align = specifier.align,\n sign = specifier.sign,\n symbol = specifier.symbol,\n zero = specifier.zero,\n width = specifier.width,\n comma = specifier.comma,\n precision = specifier.precision,\n trim = specifier.trim,\n type = specifier.type;\n\n // The \"n\" type is an alias for \",g\".\n if (type === \"n\") comma = true, type = \"g\";\n\n // The \"\" type, and any invalid type, is an alias for \".12~g\".\n else if (!formatTypes[type]) precision === undefined && (precision = 12), trim = true, type = \"g\";\n\n // If zero fill is specified, padding goes after sign and before digits.\n if (zero || (fill === \"0\" && align === \"=\")) zero = true, fill = \"0\", align = \"=\";\n\n // Compute the prefix and suffix.\n // For SI-prefix, the suffix is lazily computed.\n var prefix = symbol === \"$\" ? currencyPrefix : symbol === \"#\" && /[boxX]/.test(type) ? \"0\" + type.toLowerCase() : \"\",\n suffix = symbol === \"$\" ? currencySuffix : /[%p]/.test(type) ? percent : \"\";\n\n // What format function should we use?\n // Is this an integer type?\n // Can this type generate exponential notation?\n var formatType = formatTypes[type],\n maybeSuffix = /[defgprs%]/.test(type);\n\n // Set the default precision if not specified,\n // or clamp the specified precision to the supported range.\n // For significant precision, it must be in [1, 21].\n // For fixed precision, it must be in [0, 20].\n precision = precision === undefined ? 6\n : /[gprs]/.test(type) ? Math.max(1, Math.min(21, precision))\n : Math.max(0, Math.min(20, precision));\n\n function format(value) {\n var valuePrefix = prefix,\n valueSuffix = suffix,\n i, n, c;\n\n if (type === \"c\") {\n valueSuffix = formatType(value) + valueSuffix;\n value = \"\";\n } else {\n value = +value;\n\n // Determine the sign. -0 is not less than 0, but 1 / -0 is!\n var valueNegative = value < 0 || 1 / value < 0;\n\n // Perform the initial formatting.\n value = isNaN(value) ? nan : formatType(Math.abs(value), precision);\n\n // Trim insignificant zeros.\n if (trim) value = formatTrim(value);\n\n // If a negative value rounds to zero after formatting, and no explicit positive sign is requested, hide the sign.\n if (valueNegative && +value === 0 && sign !== \"+\") valueNegative = false;\n\n // Compute the prefix and suffix.\n valuePrefix = (valueNegative ? (sign === \"(\" ? sign : minus) : sign === \"-\" || sign === \"(\" ? \"\" : sign) + valuePrefix;\n valueSuffix = (type === \"s\" ? prefixes[8 + prefixExponent / 3] : \"\") + valueSuffix + (valueNegative && sign === \"(\" ? \")\" : \"\");\n\n // Break the formatted value into the integer “value” part that can be\n // grouped, and fractional or exponential “suffix” part that is not.\n if (maybeSuffix) {\n i = -1, n = value.length;\n while (++i < n) {\n if (c = value.charCodeAt(i), 48 > c || c > 57) {\n valueSuffix = (c === 46 ? decimal + value.slice(i + 1) : value.slice(i)) + valueSuffix;\n value = value.slice(0, i);\n break;\n }\n }\n }\n }\n\n // If the fill character is not \"0\", grouping is applied before padding.\n if (comma && !zero) value = group(value, Infinity);\n\n // Compute the padding.\n var length = valuePrefix.length + value.length + valueSuffix.length,\n padding = length < width ? new Array(width - length + 1).join(fill) : \"\";\n\n // If the fill character is \"0\", grouping is applied after padding.\n if (comma && zero) value = group(padding + value, padding.length ? width - valueSuffix.length : Infinity), padding = \"\";\n\n // Reconstruct the final output based on the desired alignment.\n switch (align) {\n case \"<\": value = valuePrefix + value + valueSuffix + padding; break;\n case \"=\": value = valuePrefix + padding + value + valueSuffix; break;\n case \"^\": value = padding.slice(0, length = padding.length >> 1) + valuePrefix + value + valueSuffix + padding.slice(length); break;\n default: value = padding + valuePrefix + value + valueSuffix; break;\n }\n\n return numerals(value);\n }\n\n format.toString = function() {\n return specifier + \"\";\n };\n\n return format;\n }\n\n function formatPrefix(specifier, value) {\n var f = newFormat((specifier = formatSpecifier(specifier), specifier.type = \"f\", specifier)),\n e = Math.max(-8, Math.min(8, Math.floor(exponent(value) / 3))) * 3,\n k = Math.pow(10, -e),\n prefix = prefixes[8 + e / 3];\n return function(value) {\n return f(k * value) + prefix;\n };\n }\n\n return {\n format: newFormat,\n formatPrefix: formatPrefix\n };\n}\n","import formatLocale from \"./locale.js\";\n\nvar locale;\nexport var format;\nexport var formatPrefix;\n\ndefaultLocale({\n thousands: \",\",\n grouping: [3],\n currency: [\"$\", \"\"]\n});\n\nexport default function defaultLocale(definition) {\n locale = formatLocale(definition);\n format = locale.format;\n formatPrefix = locale.formatPrefix;\n return locale;\n}\n","export default function(grouping, thousands) {\n return function(value, width) {\n var i = value.length,\n t = [],\n j = 0,\n g = grouping[0],\n length = 0;\n\n while (i > 0 && g > 0) {\n if (length + g + 1 > width) g = Math.max(1, width - length);\n t.push(value.substring(i -= g, i + g));\n if ((length += g + 1) > width) break;\n g = grouping[j = (j + 1) % grouping.length];\n }\n\n return t.reverse().join(thousands);\n };\n}\n","export default function(numerals) {\n return function(value) {\n return value.replace(/[0-9]/g, function(i) {\n return numerals[+i];\n });\n };\n}\n","// Trims insignificant zeros, e.g., replaces 1.2000k with 1.2k.\nexport default function(s) {\n out: for (var n = s.length, i = 1, i0 = -1, i1; i < n; ++i) {\n switch (s[i]) {\n case \".\": i0 = i1 = i; break;\n case \"0\": if (i0 === 0) i0 = i; i1 = i; break;\n default: if (!+s[i]) break out; if (i0 > 0) i0 = 0; break;\n }\n }\n return i0 > 0 ? s.slice(0, i0) + s.slice(i1 + 1) : s;\n}\n","import {tickStep} from \"d3-array\";\nimport {format, formatPrefix, formatSpecifier, precisionFixed, precisionPrefix, precisionRound} from \"d3-format\";\n\nexport default function tickFormat(start, stop, count, specifier) {\n var step = tickStep(start, stop, count),\n precision;\n specifier = formatSpecifier(specifier == null ? \",f\" : specifier);\n switch (specifier.type) {\n case \"s\": {\n var value = Math.max(Math.abs(start), Math.abs(stop));\n if (specifier.precision == null && !isNaN(precision = precisionPrefix(step, value))) specifier.precision = precision;\n return formatPrefix(specifier, value);\n }\n case \"\":\n case \"e\":\n case \"g\":\n case \"p\":\n case \"r\": {\n if (specifier.precision == null && !isNaN(precision = precisionRound(step, Math.max(Math.abs(start), Math.abs(stop))))) specifier.precision = precision - (specifier.type === \"e\");\n break;\n }\n case \"f\":\n case \"%\": {\n if (specifier.precision == null && !isNaN(precision = precisionFixed(step))) specifier.precision = precision - (specifier.type === \"%\") * 2;\n break;\n }\n }\n return format(specifier);\n}\n","import exponent from \"./exponent.js\";\n\nexport default function(step, value) {\n return Math.max(0, Math.max(-8, Math.min(8, Math.floor(exponent(value) / 3))) * 3 - exponent(Math.abs(step)));\n}\n","import exponent from \"./exponent.js\";\n\nexport default function(step, max) {\n step = Math.abs(step), max = Math.abs(max) - step;\n return Math.max(0, exponent(max) - exponent(step)) + 1;\n}\n","import exponent from \"./exponent.js\";\n\nexport default function(step) {\n return Math.max(0, -exponent(Math.abs(step)));\n}\n","import {ticks, tickIncrement} from \"d3-array\";\nimport continuous, {copy} from \"./continuous.js\";\nimport {initRange} from \"./init.js\";\nimport tickFormat from \"./tickFormat.js\";\n\nexport function linearish(scale) {\n var domain = scale.domain;\n\n scale.ticks = function(count) {\n var d = domain();\n return ticks(d[0], d[d.length - 1], count == null ? 10 : count);\n };\n\n scale.tickFormat = function(count, specifier) {\n var d = domain();\n return tickFormat(d[0], d[d.length - 1], count == null ? 10 : count, specifier);\n };\n\n scale.nice = function(count) {\n if (count == null) count = 10;\n\n var d = domain();\n var i0 = 0;\n var i1 = d.length - 1;\n var start = d[i0];\n var stop = d[i1];\n var prestep;\n var step;\n var maxIter = 10;\n\n if (stop < start) {\n step = start, start = stop, stop = step;\n step = i0, i0 = i1, i1 = step;\n }\n \n while (maxIter-- > 0) {\n step = tickIncrement(start, stop, count);\n if (step === prestep) {\n d[i0] = start\n d[i1] = stop\n return domain(d);\n } else if (step > 0) {\n start = Math.floor(start / step) * step;\n stop = Math.ceil(stop / step) * step;\n } else if (step < 0) {\n start = Math.ceil(start * step) / step;\n stop = Math.floor(stop * step) / step;\n } else {\n break;\n }\n prestep = step;\n }\n\n return scale;\n };\n\n return scale;\n}\n\nexport default function linear() {\n var scale = continuous();\n\n scale.copy = function() {\n return copy(scale, linear());\n };\n\n initRange.apply(scale, arguments);\n\n return linearish(scale);\n}\n","import {linearish} from \"./linear.js\";\nimport number from \"./number.js\";\n\nexport default function identity(domain) {\n var unknown;\n\n function scale(x) {\n return x == null || isNaN(x = +x) ? unknown : x;\n }\n\n scale.invert = scale;\n\n scale.domain = scale.range = function(_) {\n return arguments.length ? (domain = Array.from(_, number), scale) : domain.slice();\n };\n\n scale.unknown = function(_) {\n return arguments.length ? (unknown = _, scale) : unknown;\n };\n\n scale.copy = function() {\n return identity(domain).unknown(unknown);\n };\n\n domain = arguments.length ? Array.from(domain, number) : [0, 1];\n\n return linearish(scale);\n}\n","export default function nice(domain, interval) {\n domain = domain.slice();\n\n var i0 = 0,\n i1 = domain.length - 1,\n x0 = domain[i0],\n x1 = domain[i1],\n t;\n\n if (x1 < x0) {\n t = i0, i0 = i1, i1 = t;\n t = x0, x0 = x1, x1 = t;\n }\n\n domain[i0] = interval.floor(x0);\n domain[i1] = interval.ceil(x1);\n return domain;\n}\n","import {ticks} from \"d3-array\";\nimport {format, formatSpecifier} from \"d3-format\";\nimport nice from \"./nice.js\";\nimport {copy, transformer} from \"./continuous.js\";\nimport {initRange} from \"./init.js\";\n\nfunction transformLog(x) {\n return Math.log(x);\n}\n\nfunction transformExp(x) {\n return Math.exp(x);\n}\n\nfunction transformLogn(x) {\n return -Math.log(-x);\n}\n\nfunction transformExpn(x) {\n return -Math.exp(-x);\n}\n\nfunction pow10(x) {\n return isFinite(x) ? +(\"1e\" + x) : x < 0 ? 0 : x;\n}\n\nfunction powp(base) {\n return base === 10 ? pow10\n : base === Math.E ? Math.exp\n : x => Math.pow(base, x);\n}\n\nfunction logp(base) {\n return base === Math.E ? Math.log\n : base === 10 && Math.log10\n || base === 2 && Math.log2\n || (base = Math.log(base), x => Math.log(x) / base);\n}\n\nfunction reflect(f) {\n return (x, k) => -f(-x, k);\n}\n\nexport function loggish(transform) {\n const scale = transform(transformLog, transformExp);\n const domain = scale.domain;\n let base = 10;\n let logs;\n let pows;\n\n function rescale() {\n logs = logp(base), pows = powp(base);\n if (domain()[0] < 0) {\n logs = reflect(logs), pows = reflect(pows);\n transform(transformLogn, transformExpn);\n } else {\n transform(transformLog, transformExp);\n }\n return scale;\n }\n\n scale.base = function(_) {\n return arguments.length ? (base = +_, rescale()) : base;\n };\n\n scale.domain = function(_) {\n return arguments.length ? (domain(_), rescale()) : domain();\n };\n\n scale.ticks = count => {\n const d = domain();\n let u = d[0];\n let v = d[d.length - 1];\n const r = v < u;\n\n if (r) ([u, v] = [v, u]);\n\n let i = logs(u);\n let j = logs(v);\n let k;\n let t;\n const n = count == null ? 10 : +count;\n let z = [];\n\n if (!(base % 1) && j - i < n) {\n i = Math.floor(i), j = Math.ceil(j);\n if (u > 0) for (; i <= j; ++i) {\n for (k = 1; k < base; ++k) {\n t = i < 0 ? k / pows(-i) : k * pows(i);\n if (t < u) continue;\n if (t > v) break;\n z.push(t);\n }\n } else for (; i <= j; ++i) {\n for (k = base - 1; k >= 1; --k) {\n t = i > 0 ? k / pows(-i) : k * pows(i);\n if (t < u) continue;\n if (t > v) break;\n z.push(t);\n }\n }\n if (z.length * 2 < n) z = ticks(u, v, n);\n } else {\n z = ticks(i, j, Math.min(j - i, n)).map(pows);\n }\n return r ? z.reverse() : z;\n };\n\n scale.tickFormat = (count, specifier) => {\n if (count == null) count = 10;\n if (specifier == null) specifier = base === 10 ? \"s\" : \",\";\n if (typeof specifier !== \"function\") {\n if (!(base % 1) && (specifier = formatSpecifier(specifier)).precision == null) specifier.trim = true;\n specifier = format(specifier);\n }\n if (count === Infinity) return specifier;\n const k = Math.max(1, base * count / scale.ticks().length); // TODO fast estimate?\n return d => {\n let i = d / pows(Math.round(logs(d)));\n if (i * base < base - 0.5) i *= base;\n return i <= k ? specifier(d) : \"\";\n };\n };\n\n scale.nice = () => {\n return domain(nice(domain(), {\n floor: x => pows(Math.floor(logs(x))),\n ceil: x => pows(Math.ceil(logs(x)))\n }));\n };\n\n return scale;\n}\n\nexport default function log() {\n const scale = loggish(transformer()).domain([1, 10]);\n scale.copy = () => copy(scale, log()).base(scale.base());\n initRange.apply(scale, arguments);\n return scale;\n}\n","import {linearish} from \"./linear.js\";\nimport {copy, transformer} from \"./continuous.js\";\nimport {initRange} from \"./init.js\";\n\nfunction transformSymlog(c) {\n return function(x) {\n return Math.sign(x) * Math.log1p(Math.abs(x / c));\n };\n}\n\nfunction transformSymexp(c) {\n return function(x) {\n return Math.sign(x) * Math.expm1(Math.abs(x)) * c;\n };\n}\n\nexport function symlogish(transform) {\n var c = 1, scale = transform(transformSymlog(c), transformSymexp(c));\n\n scale.constant = function(_) {\n return arguments.length ? transform(transformSymlog(c = +_), transformSymexp(c)) : c;\n };\n\n return linearish(scale);\n}\n\nexport default function symlog() {\n var scale = symlogish(transformer());\n\n scale.copy = function() {\n return copy(scale, symlog()).constant(scale.constant());\n };\n\n return initRange.apply(scale, arguments);\n}\n","import {linearish} from \"./linear.js\";\nimport {copy, identity, transformer} from \"./continuous.js\";\nimport {initRange} from \"./init.js\";\n\nfunction transformPow(exponent) {\n return function(x) {\n return x < 0 ? -Math.pow(-x, exponent) : Math.pow(x, exponent);\n };\n}\n\nfunction transformSqrt(x) {\n return x < 0 ? -Math.sqrt(-x) : Math.sqrt(x);\n}\n\nfunction transformSquare(x) {\n return x < 0 ? -x * x : x * x;\n}\n\nexport function powish(transform) {\n var scale = transform(identity, identity),\n exponent = 1;\n\n function rescale() {\n return exponent === 1 ? transform(identity, identity)\n : exponent === 0.5 ? transform(transformSqrt, transformSquare)\n : transform(transformPow(exponent), transformPow(1 / exponent));\n }\n\n scale.exponent = function(_) {\n return arguments.length ? (exponent = +_, rescale()) : exponent;\n };\n\n return linearish(scale);\n}\n\nexport default function pow() {\n var scale = powish(transformer());\n\n scale.copy = function() {\n return copy(scale, pow()).exponent(scale.exponent());\n };\n\n initRange.apply(scale, arguments);\n\n return scale;\n}\n\nexport function sqrt() {\n return pow.apply(null, arguments).exponent(0.5);\n}\n","import continuous from \"./continuous.js\";\nimport {initRange} from \"./init.js\";\nimport {linearish} from \"./linear.js\";\nimport number from \"./number.js\";\n\nfunction square(x) {\n return Math.sign(x) * x * x;\n}\n\nfunction unsquare(x) {\n return Math.sign(x) * Math.sqrt(Math.abs(x));\n}\n\nexport default function radial() {\n var squared = continuous(),\n range = [0, 1],\n round = false,\n unknown;\n\n function scale(x) {\n var y = unsquare(squared(x));\n return isNaN(y) ? unknown : round ? Math.round(y) : y;\n }\n\n scale.invert = function(y) {\n return squared.invert(square(y));\n };\n\n scale.domain = function(_) {\n return arguments.length ? (squared.domain(_), scale) : squared.domain();\n };\n\n scale.range = function(_) {\n return arguments.length ? (squared.range((range = Array.from(_, number)).map(square)), scale) : range.slice();\n };\n\n scale.rangeRound = function(_) {\n return scale.range(_).round(true);\n };\n\n scale.round = function(_) {\n return arguments.length ? (round = !!_, scale) : round;\n };\n\n scale.clamp = function(_) {\n return arguments.length ? (squared.clamp(_), scale) : squared.clamp();\n };\n\n scale.unknown = function(_) {\n return arguments.length ? (unknown = _, scale) : unknown;\n };\n\n scale.copy = function() {\n return radial(squared.domain(), range)\n .round(round)\n .clamp(squared.clamp())\n .unknown(unknown);\n };\n\n initRange.apply(scale, arguments);\n\n return linearish(scale);\n}\n","export default function max(values, valueof) {\n let max;\n if (valueof === undefined) {\n for (const value of values) {\n if (value != null\n && (max < value || (max === undefined && value >= value))) {\n max = value;\n }\n }\n } else {\n let index = -1;\n for (let value of values) {\n if ((value = valueof(value, ++index, values)) != null\n && (max < value || (max === undefined && value >= value))) {\n max = value;\n }\n }\n }\n return max;\n}\n","export default function min(values, valueof) {\n let min;\n if (valueof === undefined) {\n for (const value of values) {\n if (value != null\n && (min > value || (min === undefined && value >= value))) {\n min = value;\n }\n }\n } else {\n let index = -1;\n for (let value of values) {\n if ((value = valueof(value, ++index, values)) != null\n && (min > value || (min === undefined && value >= value))) {\n min = value;\n }\n }\n }\n return min;\n}\n","import ascending from \"./ascending.js\";\nimport permute from \"./permute.js\";\n\nexport default function sort(values, ...F) {\n if (typeof values[Symbol.iterator] !== \"function\") throw new TypeError(\"values is not iterable\");\n values = Array.from(values);\n let [f] = F;\n if ((f && f.length !== 2) || F.length > 1) {\n const index = Uint32Array.from(values, (d, i) => i);\n if (F.length > 1) {\n F = F.map(f => values.map(f));\n index.sort((i, j) => {\n for (const f of F) {\n const c = ascendingDefined(f[i], f[j]);\n if (c) return c;\n }\n });\n } else {\n f = values.map(f);\n index.sort((i, j) => ascendingDefined(f[i], f[j]));\n }\n return permute(values, index);\n }\n return values.sort(compareDefined(f));\n}\n\nexport function compareDefined(compare = ascending) {\n if (compare === ascending) return ascendingDefined;\n if (typeof compare !== \"function\") throw new TypeError(\"compare is not a function\");\n return (a, b) => {\n const x = compare(a, b);\n if (x || x === 0) return x;\n return (compare(b, b) === 0) - (compare(a, a) === 0);\n };\n}\n\nexport function ascendingDefined(a, b) {\n return (a == null || !(a >= a)) - (b == null || !(b >= b)) || (a < b ? -1 : a > b ? 1 : 0);\n}\n","import {ascendingDefined, compareDefined} from \"./sort.js\";\n\n// Based on https://github.com/mourner/quickselect\n// ISC license, Copyright 2018 Vladimir Agafonkin.\nexport default function quickselect(array, k, left = 0, right = array.length - 1, compare) {\n compare = compare === undefined ? ascendingDefined : compareDefined(compare);\n\n while (right > left) {\n if (right - left > 600) {\n const n = right - left + 1;\n const m = k - left + 1;\n const z = Math.log(n);\n const s = 0.5 * Math.exp(2 * z / 3);\n const sd = 0.5 * Math.sqrt(z * s * (n - s) / n) * (m - n / 2 < 0 ? -1 : 1);\n const newLeft = Math.max(left, Math.floor(k - m * s / n + sd));\n const newRight = Math.min(right, Math.floor(k + (n - m) * s / n + sd));\n quickselect(array, k, newLeft, newRight, compare);\n }\n\n const t = array[k];\n let i = left;\n let j = right;\n\n swap(array, left, k);\n if (compare(array[right], t) > 0) swap(array, left, right);\n\n while (i < j) {\n swap(array, i, j), ++i, --j;\n while (compare(array[i], t) < 0) ++i;\n while (compare(array[j], t) > 0) --j;\n }\n\n if (compare(array[left], t) === 0) swap(array, left, j);\n else ++j, swap(array, j, right);\n\n if (j <= k) left = j + 1;\n if (k <= j) right = j - 1;\n }\n\n return array;\n}\n\nfunction swap(array, i, j) {\n const t = array[i];\n array[i] = array[j];\n array[j] = t;\n}\n","import max from \"./max.js\";\nimport maxIndex from \"./maxIndex.js\";\nimport min from \"./min.js\";\nimport minIndex from \"./minIndex.js\";\nimport quickselect from \"./quickselect.js\";\nimport number, {numbers} from \"./number.js\";\nimport {ascendingDefined} from \"./sort.js\";\nimport greatest from \"./greatest.js\";\n\nexport default function quantile(values, p, valueof) {\n values = Float64Array.from(numbers(values, valueof));\n if (!(n = values.length)) return;\n if ((p = +p) <= 0 || n < 2) return min(values);\n if (p >= 1) return max(values);\n var n,\n i = (n - 1) * p,\n i0 = Math.floor(i),\n value0 = max(quickselect(values, i0).subarray(0, i0 + 1)),\n value1 = min(values.subarray(i0 + 1));\n return value0 + (value1 - value0) * (i - i0);\n}\n\nexport function quantileSorted(values, p, valueof = number) {\n if (!(n = values.length)) return;\n if ((p = +p) <= 0 || n < 2) return +valueof(values[0], 0, values);\n if (p >= 1) return +valueof(values[n - 1], n - 1, values);\n var n,\n i = (n - 1) * p,\n i0 = Math.floor(i),\n value0 = +valueof(values[i0], i0, values),\n value1 = +valueof(values[i0 + 1], i0 + 1, values);\n return value0 + (value1 - value0) * (i - i0);\n}\n\nexport function quantileIndex(values, p, valueof) {\n values = Float64Array.from(numbers(values, valueof));\n if (!(n = values.length)) return;\n if ((p = +p) <= 0 || n < 2) return minIndex(values);\n if (p >= 1) return maxIndex(values);\n var n,\n i = Math.floor((n - 1) * p),\n order = (i, j) => ascendingDefined(values[i], values[j]),\n index = quickselect(Uint32Array.from(values, (_, i) => i), i, 0, n - 1, order);\n return greatest(index.subarray(0, i + 1), i => values[i]);\n}\n","import {ascending, bisect, quantileSorted as threshold} from \"d3-array\";\nimport {initRange} from \"./init.js\";\n\nexport default function quantile() {\n var domain = [],\n range = [],\n thresholds = [],\n unknown;\n\n function rescale() {\n var i = 0, n = Math.max(1, range.length);\n thresholds = new Array(n - 1);\n while (++i < n) thresholds[i - 1] = threshold(domain, i / n);\n return scale;\n }\n\n function scale(x) {\n return x == null || isNaN(x = +x) ? unknown : range[bisect(thresholds, x)];\n }\n\n scale.invertExtent = function(y) {\n var i = range.indexOf(y);\n return i < 0 ? [NaN, NaN] : [\n i > 0 ? thresholds[i - 1] : domain[0],\n i < thresholds.length ? thresholds[i] : domain[domain.length - 1]\n ];\n };\n\n scale.domain = function(_) {\n if (!arguments.length) return domain.slice();\n domain = [];\n for (let d of _) if (d != null && !isNaN(d = +d)) domain.push(d);\n domain.sort(ascending);\n return rescale();\n };\n\n scale.range = function(_) {\n return arguments.length ? (range = Array.from(_), rescale()) : range.slice();\n };\n\n scale.unknown = function(_) {\n return arguments.length ? (unknown = _, scale) : unknown;\n };\n\n scale.quantiles = function() {\n return thresholds.slice();\n };\n\n scale.copy = function() {\n return quantile()\n .domain(domain)\n .range(range)\n .unknown(unknown);\n };\n\n return initRange.apply(scale, arguments);\n}\n","import {bisect} from \"d3-array\";\nimport {linearish} from \"./linear.js\";\nimport {initRange} from \"./init.js\";\n\nexport default function quantize() {\n var x0 = 0,\n x1 = 1,\n n = 1,\n domain = [0.5],\n range = [0, 1],\n unknown;\n\n function scale(x) {\n return x != null && x <= x ? range[bisect(domain, x, 0, n)] : unknown;\n }\n\n function rescale() {\n var i = -1;\n domain = new Array(n);\n while (++i < n) domain[i] = ((i + 1) * x1 - (i - n) * x0) / (n + 1);\n return scale;\n }\n\n scale.domain = function(_) {\n return arguments.length ? ([x0, x1] = _, x0 = +x0, x1 = +x1, rescale()) : [x0, x1];\n };\n\n scale.range = function(_) {\n return arguments.length ? (n = (range = Array.from(_)).length - 1, rescale()) : range.slice();\n };\n\n scale.invertExtent = function(y) {\n var i = range.indexOf(y);\n return i < 0 ? [NaN, NaN]\n : i < 1 ? [x0, domain[0]]\n : i >= n ? [domain[n - 1], x1]\n : [domain[i - 1], domain[i]];\n };\n\n scale.unknown = function(_) {\n return arguments.length ? (unknown = _, scale) : scale;\n };\n\n scale.thresholds = function() {\n return domain.slice();\n };\n\n scale.copy = function() {\n return quantize()\n .domain([x0, x1])\n .range(range)\n .unknown(unknown);\n };\n\n return initRange.apply(linearish(scale), arguments);\n}\n","import {bisect} from \"d3-array\";\nimport {initRange} from \"./init.js\";\n\nexport default function threshold() {\n var domain = [0.5],\n range = [0, 1],\n unknown,\n n = 1;\n\n function scale(x) {\n return x != null && x <= x ? range[bisect(domain, x, 0, n)] : unknown;\n }\n\n scale.domain = function(_) {\n return arguments.length ? (domain = Array.from(_), n = Math.min(domain.length, range.length - 1), scale) : domain.slice();\n };\n\n scale.range = function(_) {\n return arguments.length ? (range = Array.from(_), n = Math.min(domain.length, range.length - 1), scale) : range.slice();\n };\n\n scale.invertExtent = function(y) {\n var i = range.indexOf(y);\n return [domain[i - 1], domain[i]];\n };\n\n scale.unknown = function(_) {\n return arguments.length ? (unknown = _, scale) : unknown;\n };\n\n scale.copy = function() {\n return threshold()\n .domain(domain)\n .range(range)\n .unknown(unknown);\n };\n\n return initRange.apply(scale, arguments);\n}\n","export const durationSecond = 1000;\nexport const durationMinute = durationSecond * 60;\nexport const durationHour = durationMinute * 60;\nexport const durationDay = durationHour * 24;\nexport const durationWeek = durationDay * 7;\nexport const durationMonth = durationDay * 30;\nexport const durationYear = durationDay * 365;\n","var t0 = new Date,\n t1 = new Date;\n\nexport default function newInterval(floori, offseti, count, field) {\n\n function interval(date) {\n return floori(date = arguments.length === 0 ? new Date : new Date(+date)), date;\n }\n\n interval.floor = function(date) {\n return floori(date = new Date(+date)), date;\n };\n\n interval.ceil = function(date) {\n return floori(date = new Date(date - 1)), offseti(date, 1), floori(date), date;\n };\n\n interval.round = function(date) {\n var d0 = interval(date),\n d1 = interval.ceil(date);\n return date - d0 < d1 - date ? d0 : d1;\n };\n\n interval.offset = function(date, step) {\n return offseti(date = new Date(+date), step == null ? 1 : Math.floor(step)), date;\n };\n\n interval.range = function(start, stop, step) {\n var range = [], previous;\n start = interval.ceil(start);\n step = step == null ? 1 : Math.floor(step);\n if (!(start < stop) || !(step > 0)) return range; // also handles Invalid Date\n do range.push(previous = new Date(+start)), offseti(start, step), floori(start);\n while (previous < start && start < stop);\n return range;\n };\n\n interval.filter = function(test) {\n return newInterval(function(date) {\n if (date >= date) while (floori(date), !test(date)) date.setTime(date - 1);\n }, function(date, step) {\n if (date >= date) {\n if (step < 0) while (++step <= 0) {\n while (offseti(date, -1), !test(date)) {} // eslint-disable-line no-empty\n } else while (--step >= 0) {\n while (offseti(date, +1), !test(date)) {} // eslint-disable-line no-empty\n }\n }\n });\n };\n\n if (count) {\n interval.count = function(start, end) {\n t0.setTime(+start), t1.setTime(+end);\n floori(t0), floori(t1);\n return Math.floor(count(t0, t1));\n };\n\n interval.every = function(step) {\n step = Math.floor(step);\n return !isFinite(step) || !(step > 0) ? null\n : !(step > 1) ? interval\n : interval.filter(field\n ? function(d) { return field(d) % step === 0; }\n : function(d) { return interval.count(0, d) % step === 0; });\n };\n }\n\n return interval;\n}\n","import interval from \"./interval.js\";\n\nvar millisecond = interval(function() {\n // noop\n}, function(date, step) {\n date.setTime(+date + step);\n}, function(start, end) {\n return end - start;\n});\n\n// An optimized implementation for this simple case.\nmillisecond.every = function(k) {\n k = Math.floor(k);\n if (!isFinite(k) || !(k > 0)) return null;\n if (!(k > 1)) return millisecond;\n return interval(function(date) {\n date.setTime(Math.floor(date / k) * k);\n }, function(date, step) {\n date.setTime(+date + step * k);\n }, function(start, end) {\n return (end - start) / k;\n });\n};\n\nexport default millisecond;\nexport var milliseconds = millisecond.range;\n","import interval from \"./interval.js\";\nimport {durationSecond} from \"./duration.js\";\n\nvar second = interval(function(date) {\n date.setTime(date - date.getMilliseconds());\n}, function(date, step) {\n date.setTime(+date + step * durationSecond);\n}, function(start, end) {\n return (end - start) / durationSecond;\n}, function(date) {\n return date.getUTCSeconds();\n});\n\nexport default second;\nexport var seconds = second.range;\n","import interval from \"./interval.js\";\nimport {durationMinute, durationSecond} from \"./duration.js\";\n\nvar minute = interval(function(date) {\n date.setTime(date - date.getMilliseconds() - date.getSeconds() * durationSecond);\n}, function(date, step) {\n date.setTime(+date + step * durationMinute);\n}, function(start, end) {\n return (end - start) / durationMinute;\n}, function(date) {\n return date.getMinutes();\n});\n\nexport default minute;\nexport var minutes = minute.range;\n","import interval from \"./interval.js\";\nimport {durationHour, durationMinute, durationSecond} from \"./duration.js\";\n\nvar hour = interval(function(date) {\n date.setTime(date - date.getMilliseconds() - date.getSeconds() * durationSecond - date.getMinutes() * durationMinute);\n}, function(date, step) {\n date.setTime(+date + step * durationHour);\n}, function(start, end) {\n return (end - start) / durationHour;\n}, function(date) {\n return date.getHours();\n});\n\nexport default hour;\nexport var hours = hour.range;\n","import interval from \"./interval.js\";\nimport {durationDay, durationMinute} from \"./duration.js\";\n\nvar day = interval(\n date => date.setHours(0, 0, 0, 0),\n (date, step) => date.setDate(date.getDate() + step),\n (start, end) => (end - start - (end.getTimezoneOffset() - start.getTimezoneOffset()) * durationMinute) / durationDay,\n date => date.getDate() - 1\n);\n\nexport default day;\nexport var days = day.range;\n","import interval from \"./interval.js\";\nimport {durationMinute, durationWeek} from \"./duration.js\";\n\nfunction weekday(i) {\n return interval(function(date) {\n date.setDate(date.getDate() - (date.getDay() + 7 - i) % 7);\n date.setHours(0, 0, 0, 0);\n }, function(date, step) {\n date.setDate(date.getDate() + step * 7);\n }, function(start, end) {\n return (end - start - (end.getTimezoneOffset() - start.getTimezoneOffset()) * durationMinute) / durationWeek;\n });\n}\n\nexport var sunday = weekday(0);\nexport var monday = weekday(1);\nexport var tuesday = weekday(2);\nexport var wednesday = weekday(3);\nexport var thursday = weekday(4);\nexport var friday = weekday(5);\nexport var saturday = weekday(6);\n\nexport var sundays = sunday.range;\nexport var mondays = monday.range;\nexport var tuesdays = tuesday.range;\nexport var wednesdays = wednesday.range;\nexport var thursdays = thursday.range;\nexport var fridays = friday.range;\nexport var saturdays = saturday.range;\n","import interval from \"./interval.js\";\n\nvar month = interval(function(date) {\n date.setDate(1);\n date.setHours(0, 0, 0, 0);\n}, function(date, step) {\n date.setMonth(date.getMonth() + step);\n}, function(start, end) {\n return end.getMonth() - start.getMonth() + (end.getFullYear() - start.getFullYear()) * 12;\n}, function(date) {\n return date.getMonth();\n});\n\nexport default month;\nexport var months = month.range;\n","import interval from \"./interval.js\";\n\nvar year = interval(function(date) {\n date.setMonth(0, 1);\n date.setHours(0, 0, 0, 0);\n}, function(date, step) {\n date.setFullYear(date.getFullYear() + step);\n}, function(start, end) {\n return end.getFullYear() - start.getFullYear();\n}, function(date) {\n return date.getFullYear();\n});\n\n// An optimized implementation for this simple case.\nyear.every = function(k) {\n return !isFinite(k = Math.floor(k)) || !(k > 0) ? null : interval(function(date) {\n date.setFullYear(Math.floor(date.getFullYear() / k) * k);\n date.setMonth(0, 1);\n date.setHours(0, 0, 0, 0);\n }, function(date, step) {\n date.setFullYear(date.getFullYear() + step * k);\n });\n};\n\nexport default year;\nexport var years = year.range;\n","import interval from \"./interval.js\";\nimport {durationMinute} from \"./duration.js\";\n\nvar utcMinute = interval(function(date) {\n date.setUTCSeconds(0, 0);\n}, function(date, step) {\n date.setTime(+date + step * durationMinute);\n}, function(start, end) {\n return (end - start) / durationMinute;\n}, function(date) {\n return date.getUTCMinutes();\n});\n\nexport default utcMinute;\nexport var utcMinutes = utcMinute.range;\n","import interval from \"./interval.js\";\nimport {durationHour} from \"./duration.js\";\n\nvar utcHour = interval(function(date) {\n date.setUTCMinutes(0, 0, 0);\n}, function(date, step) {\n date.setTime(+date + step * durationHour);\n}, function(start, end) {\n return (end - start) / durationHour;\n}, function(date) {\n return date.getUTCHours();\n});\n\nexport default utcHour;\nexport var utcHours = utcHour.range;\n","import interval from \"./interval.js\";\nimport {durationDay} from \"./duration.js\";\n\nvar utcDay = interval(function(date) {\n date.setUTCHours(0, 0, 0, 0);\n}, function(date, step) {\n date.setUTCDate(date.getUTCDate() + step);\n}, function(start, end) {\n return (end - start) / durationDay;\n}, function(date) {\n return date.getUTCDate() - 1;\n});\n\nexport default utcDay;\nexport var utcDays = utcDay.range;\n","import interval from \"./interval.js\";\nimport {durationWeek} from \"./duration.js\";\n\nfunction utcWeekday(i) {\n return interval(function(date) {\n date.setUTCDate(date.getUTCDate() - (date.getUTCDay() + 7 - i) % 7);\n date.setUTCHours(0, 0, 0, 0);\n }, function(date, step) {\n date.setUTCDate(date.getUTCDate() + step * 7);\n }, function(start, end) {\n return (end - start) / durationWeek;\n });\n}\n\nexport var utcSunday = utcWeekday(0);\nexport var utcMonday = utcWeekday(1);\nexport var utcTuesday = utcWeekday(2);\nexport var utcWednesday = utcWeekday(3);\nexport var utcThursday = utcWeekday(4);\nexport var utcFriday = utcWeekday(5);\nexport var utcSaturday = utcWeekday(6);\n\nexport var utcSundays = utcSunday.range;\nexport var utcMondays = utcMonday.range;\nexport var utcTuesdays = utcTuesday.range;\nexport var utcWednesdays = utcWednesday.range;\nexport var utcThursdays = utcThursday.range;\nexport var utcFridays = utcFriday.range;\nexport var utcSaturdays = utcSaturday.range;\n","import interval from \"./interval.js\";\n\nvar utcMonth = interval(function(date) {\n date.setUTCDate(1);\n date.setUTCHours(0, 0, 0, 0);\n}, function(date, step) {\n date.setUTCMonth(date.getUTCMonth() + step);\n}, function(start, end) {\n return end.getUTCMonth() - start.getUTCMonth() + (end.getUTCFullYear() - start.getUTCFullYear()) * 12;\n}, function(date) {\n return date.getUTCMonth();\n});\n\nexport default utcMonth;\nexport var utcMonths = utcMonth.range;\n","import interval from \"./interval.js\";\n\nvar utcYear = interval(function(date) {\n date.setUTCMonth(0, 1);\n date.setUTCHours(0, 0, 0, 0);\n}, function(date, step) {\n date.setUTCFullYear(date.getUTCFullYear() + step);\n}, function(start, end) {\n return end.getUTCFullYear() - start.getUTCFullYear();\n}, function(date) {\n return date.getUTCFullYear();\n});\n\n// An optimized implementation for this simple case.\nutcYear.every = function(k) {\n return !isFinite(k = Math.floor(k)) || !(k > 0) ? null : interval(function(date) {\n date.setUTCFullYear(Math.floor(date.getUTCFullYear() / k) * k);\n date.setUTCMonth(0, 1);\n date.setUTCHours(0, 0, 0, 0);\n }, function(date, step) {\n date.setUTCFullYear(date.getUTCFullYear() + step * k);\n });\n};\n\nexport default utcYear;\nexport var utcYears = utcYear.range;\n","import {bisector, tickStep} from \"d3-array\";\nimport {durationDay, durationHour, durationMinute, durationMonth, durationSecond, durationWeek, durationYear} from \"./duration.js\";\nimport millisecond from \"./millisecond.js\";\nimport second from \"./second.js\";\nimport minute from \"./minute.js\";\nimport hour from \"./hour.js\";\nimport day from \"./day.js\";\nimport {sunday as week} from \"./week.js\";\nimport month from \"./month.js\";\nimport year from \"./year.js\";\nimport utcMinute from \"./utcMinute.js\";\nimport utcHour from \"./utcHour.js\";\nimport utcDay from \"./utcDay.js\";\nimport {utcSunday as utcWeek} from \"./utcWeek.js\";\nimport utcMonth from \"./utcMonth.js\";\nimport utcYear from \"./utcYear.js\";\n\nfunction ticker(year, month, week, day, hour, minute) {\n\n const tickIntervals = [\n [second, 1, durationSecond],\n [second, 5, 5 * durationSecond],\n [second, 15, 15 * durationSecond],\n [second, 30, 30 * durationSecond],\n [minute, 1, durationMinute],\n [minute, 5, 5 * durationMinute],\n [minute, 15, 15 * durationMinute],\n [minute, 30, 30 * durationMinute],\n [ hour, 1, durationHour ],\n [ hour, 3, 3 * durationHour ],\n [ hour, 6, 6 * durationHour ],\n [ hour, 12, 12 * durationHour ],\n [ day, 1, durationDay ],\n [ day, 2, 2 * durationDay ],\n [ week, 1, durationWeek ],\n [ month, 1, durationMonth ],\n [ month, 3, 3 * durationMonth ],\n [ year, 1, durationYear ]\n ];\n\n function ticks(start, stop, count) {\n const reverse = stop < start;\n if (reverse) [start, stop] = [stop, start];\n const interval = count && typeof count.range === \"function\" ? count : tickInterval(start, stop, count);\n const ticks = interval ? interval.range(start, +stop + 1) : []; // inclusive stop\n return reverse ? ticks.reverse() : ticks;\n }\n\n function tickInterval(start, stop, count) {\n const target = Math.abs(stop - start) / count;\n const i = bisector(([,, step]) => step).right(tickIntervals, target);\n if (i === tickIntervals.length) return year.every(tickStep(start / durationYear, stop / durationYear, count));\n if (i === 0) return millisecond.every(Math.max(tickStep(start, stop, count), 1));\n const [t, step] = tickIntervals[target / tickIntervals[i - 1][2] < tickIntervals[i][2] / target ? i - 1 : i];\n return t.every(step);\n }\n\n return [ticks, tickInterval];\n}\n\nconst [utcTicks, utcTickInterval] = ticker(utcYear, utcMonth, utcWeek, utcDay, utcHour, utcMinute);\nconst [timeTicks, timeTickInterval] = ticker(year, month, week, day, hour, minute);\n\nexport {utcTicks, utcTickInterval, timeTicks, timeTickInterval};\n","import {\n timeDay,\n timeSunday,\n timeMonday,\n timeThursday,\n timeYear,\n utcDay,\n utcSunday,\n utcMonday,\n utcThursday,\n utcYear\n} from \"d3-time\";\n\nfunction localDate(d) {\n if (0 <= d.y && d.y < 100) {\n var date = new Date(-1, d.m, d.d, d.H, d.M, d.S, d.L);\n date.setFullYear(d.y);\n return date;\n }\n return new Date(d.y, d.m, d.d, d.H, d.M, d.S, d.L);\n}\n\nfunction utcDate(d) {\n if (0 <= d.y && d.y < 100) {\n var date = new Date(Date.UTC(-1, d.m, d.d, d.H, d.M, d.S, d.L));\n date.setUTCFullYear(d.y);\n return date;\n }\n return new Date(Date.UTC(d.y, d.m, d.d, d.H, d.M, d.S, d.L));\n}\n\nfunction newDate(y, m, d) {\n return {y: y, m: m, d: d, H: 0, M: 0, S: 0, L: 0};\n}\n\nexport default function formatLocale(locale) {\n var locale_dateTime = locale.dateTime,\n locale_date = locale.date,\n locale_time = locale.time,\n locale_periods = locale.periods,\n locale_weekdays = locale.days,\n locale_shortWeekdays = locale.shortDays,\n locale_months = locale.months,\n locale_shortMonths = locale.shortMonths;\n\n var periodRe = formatRe(locale_periods),\n periodLookup = formatLookup(locale_periods),\n weekdayRe = formatRe(locale_weekdays),\n weekdayLookup = formatLookup(locale_weekdays),\n shortWeekdayRe = formatRe(locale_shortWeekdays),\n shortWeekdayLookup = formatLookup(locale_shortWeekdays),\n monthRe = formatRe(locale_months),\n monthLookup = formatLookup(locale_months),\n shortMonthRe = formatRe(locale_shortMonths),\n shortMonthLookup = formatLookup(locale_shortMonths);\n\n var formats = {\n \"a\": formatShortWeekday,\n \"A\": formatWeekday,\n \"b\": formatShortMonth,\n \"B\": formatMonth,\n \"c\": null,\n \"d\": formatDayOfMonth,\n \"e\": formatDayOfMonth,\n \"f\": formatMicroseconds,\n \"g\": formatYearISO,\n \"G\": formatFullYearISO,\n \"H\": formatHour24,\n \"I\": formatHour12,\n \"j\": formatDayOfYear,\n \"L\": formatMilliseconds,\n \"m\": formatMonthNumber,\n \"M\": formatMinutes,\n \"p\": formatPeriod,\n \"q\": formatQuarter,\n \"Q\": formatUnixTimestamp,\n \"s\": formatUnixTimestampSeconds,\n \"S\": formatSeconds,\n \"u\": formatWeekdayNumberMonday,\n \"U\": formatWeekNumberSunday,\n \"V\": formatWeekNumberISO,\n \"w\": formatWeekdayNumberSunday,\n \"W\": formatWeekNumberMonday,\n \"x\": null,\n \"X\": null,\n \"y\": formatYear,\n \"Y\": formatFullYear,\n \"Z\": formatZone,\n \"%\": formatLiteralPercent\n };\n\n var utcFormats = {\n \"a\": formatUTCShortWeekday,\n \"A\": formatUTCWeekday,\n \"b\": formatUTCShortMonth,\n \"B\": formatUTCMonth,\n \"c\": null,\n \"d\": formatUTCDayOfMonth,\n \"e\": formatUTCDayOfMonth,\n \"f\": formatUTCMicroseconds,\n \"g\": formatUTCYearISO,\n \"G\": formatUTCFullYearISO,\n \"H\": formatUTCHour24,\n \"I\": formatUTCHour12,\n \"j\": formatUTCDayOfYear,\n \"L\": formatUTCMilliseconds,\n \"m\": formatUTCMonthNumber,\n \"M\": formatUTCMinutes,\n \"p\": formatUTCPeriod,\n \"q\": formatUTCQuarter,\n \"Q\": formatUnixTimestamp,\n \"s\": formatUnixTimestampSeconds,\n \"S\": formatUTCSeconds,\n \"u\": formatUTCWeekdayNumberMonday,\n \"U\": formatUTCWeekNumberSunday,\n \"V\": formatUTCWeekNumberISO,\n \"w\": formatUTCWeekdayNumberSunday,\n \"W\": formatUTCWeekNumberMonday,\n \"x\": null,\n \"X\": null,\n \"y\": formatUTCYear,\n \"Y\": formatUTCFullYear,\n \"Z\": formatUTCZone,\n \"%\": formatLiteralPercent\n };\n\n var parses = {\n \"a\": parseShortWeekday,\n \"A\": parseWeekday,\n \"b\": parseShortMonth,\n \"B\": parseMonth,\n \"c\": parseLocaleDateTime,\n \"d\": parseDayOfMonth,\n \"e\": parseDayOfMonth,\n \"f\": parseMicroseconds,\n \"g\": parseYear,\n \"G\": parseFullYear,\n \"H\": parseHour24,\n \"I\": parseHour24,\n \"j\": parseDayOfYear,\n \"L\": parseMilliseconds,\n \"m\": parseMonthNumber,\n \"M\": parseMinutes,\n \"p\": parsePeriod,\n \"q\": parseQuarter,\n \"Q\": parseUnixTimestamp,\n \"s\": parseUnixTimestampSeconds,\n \"S\": parseSeconds,\n \"u\": parseWeekdayNumberMonday,\n \"U\": parseWeekNumberSunday,\n \"V\": parseWeekNumberISO,\n \"w\": parseWeekdayNumberSunday,\n \"W\": parseWeekNumberMonday,\n \"x\": parseLocaleDate,\n \"X\": parseLocaleTime,\n \"y\": parseYear,\n \"Y\": parseFullYear,\n \"Z\": parseZone,\n \"%\": parseLiteralPercent\n };\n\n // These recursive directive definitions must be deferred.\n formats.x = newFormat(locale_date, formats);\n formats.X = newFormat(locale_time, formats);\n formats.c = newFormat(locale_dateTime, formats);\n utcFormats.x = newFormat(locale_date, utcFormats);\n utcFormats.X = newFormat(locale_time, utcFormats);\n utcFormats.c = newFormat(locale_dateTime, utcFormats);\n\n function newFormat(specifier, formats) {\n return function(date) {\n var string = [],\n i = -1,\n j = 0,\n n = specifier.length,\n c,\n pad,\n format;\n\n if (!(date instanceof Date)) date = new Date(+date);\n\n while (++i < n) {\n if (specifier.charCodeAt(i) === 37) {\n string.push(specifier.slice(j, i));\n if ((pad = pads[c = specifier.charAt(++i)]) != null) c = specifier.charAt(++i);\n else pad = c === \"e\" ? \" \" : \"0\";\n if (format = formats[c]) c = format(date, pad);\n string.push(c);\n j = i + 1;\n }\n }\n\n string.push(specifier.slice(j, i));\n return string.join(\"\");\n };\n }\n\n function newParse(specifier, Z) {\n return function(string) {\n var d = newDate(1900, undefined, 1),\n i = parseSpecifier(d, specifier, string += \"\", 0),\n week, day;\n if (i != string.length) return null;\n\n // If a UNIX timestamp is specified, return it.\n if (\"Q\" in d) return new Date(d.Q);\n if (\"s\" in d) return new Date(d.s * 1000 + (\"L\" in d ? d.L : 0));\n\n // If this is utcParse, never use the local timezone.\n if (Z && !(\"Z\" in d)) d.Z = 0;\n\n // The am-pm flag is 0 for AM, and 1 for PM.\n if (\"p\" in d) d.H = d.H % 12 + d.p * 12;\n\n // If the month was not specified, inherit from the quarter.\n if (d.m === undefined) d.m = \"q\" in d ? d.q : 0;\n\n // Convert day-of-week and week-of-year to day-of-year.\n if (\"V\" in d) {\n if (d.V < 1 || d.V > 53) return null;\n if (!(\"w\" in d)) d.w = 1;\n if (\"Z\" in d) {\n week = utcDate(newDate(d.y, 0, 1)), day = week.getUTCDay();\n week = day > 4 || day === 0 ? utcMonday.ceil(week) : utcMonday(week);\n week = utcDay.offset(week, (d.V - 1) * 7);\n d.y = week.getUTCFullYear();\n d.m = week.getUTCMonth();\n d.d = week.getUTCDate() + (d.w + 6) % 7;\n } else {\n week = localDate(newDate(d.y, 0, 1)), day = week.getDay();\n week = day > 4 || day === 0 ? timeMonday.ceil(week) : timeMonday(week);\n week = timeDay.offset(week, (d.V - 1) * 7);\n d.y = week.getFullYear();\n d.m = week.getMonth();\n d.d = week.getDate() + (d.w + 6) % 7;\n }\n } else if (\"W\" in d || \"U\" in d) {\n if (!(\"w\" in d)) d.w = \"u\" in d ? d.u % 7 : \"W\" in d ? 1 : 0;\n day = \"Z\" in d ? utcDate(newDate(d.y, 0, 1)).getUTCDay() : localDate(newDate(d.y, 0, 1)).getDay();\n d.m = 0;\n d.d = \"W\" in d ? (d.w + 6) % 7 + d.W * 7 - (day + 5) % 7 : d.w + d.U * 7 - (day + 6) % 7;\n }\n\n // If a time zone is specified, all fields are interpreted as UTC and then\n // offset according to the specified time zone.\n if (\"Z\" in d) {\n d.H += d.Z / 100 | 0;\n d.M += d.Z % 100;\n return utcDate(d);\n }\n\n // Otherwise, all fields are in local time.\n return localDate(d);\n };\n }\n\n function parseSpecifier(d, specifier, string, j) {\n var i = 0,\n n = specifier.length,\n m = string.length,\n c,\n parse;\n\n while (i < n) {\n if (j >= m) return -1;\n c = specifier.charCodeAt(i++);\n if (c === 37) {\n c = specifier.charAt(i++);\n parse = parses[c in pads ? specifier.charAt(i++) : c];\n if (!parse || ((j = parse(d, string, j)) < 0)) return -1;\n } else if (c != string.charCodeAt(j++)) {\n return -1;\n }\n }\n\n return j;\n }\n\n function parsePeriod(d, string, i) {\n var n = periodRe.exec(string.slice(i));\n return n ? (d.p = periodLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;\n }\n\n function parseShortWeekday(d, string, i) {\n var n = shortWeekdayRe.exec(string.slice(i));\n return n ? (d.w = shortWeekdayLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;\n }\n\n function parseWeekday(d, string, i) {\n var n = weekdayRe.exec(string.slice(i));\n return n ? (d.w = weekdayLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;\n }\n\n function parseShortMonth(d, string, i) {\n var n = shortMonthRe.exec(string.slice(i));\n return n ? (d.m = shortMonthLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;\n }\n\n function parseMonth(d, string, i) {\n var n = monthRe.exec(string.slice(i));\n return n ? (d.m = monthLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;\n }\n\n function parseLocaleDateTime(d, string, i) {\n return parseSpecifier(d, locale_dateTime, string, i);\n }\n\n function parseLocaleDate(d, string, i) {\n return parseSpecifier(d, locale_date, string, i);\n }\n\n function parseLocaleTime(d, string, i) {\n return parseSpecifier(d, locale_time, string, i);\n }\n\n function formatShortWeekday(d) {\n return locale_shortWeekdays[d.getDay()];\n }\n\n function formatWeekday(d) {\n return locale_weekdays[d.getDay()];\n }\n\n function formatShortMonth(d) {\n return locale_shortMonths[d.getMonth()];\n }\n\n function formatMonth(d) {\n return locale_months[d.getMonth()];\n }\n\n function formatPeriod(d) {\n return locale_periods[+(d.getHours() >= 12)];\n }\n\n function formatQuarter(d) {\n return 1 + ~~(d.getMonth() / 3);\n }\n\n function formatUTCShortWeekday(d) {\n return locale_shortWeekdays[d.getUTCDay()];\n }\n\n function formatUTCWeekday(d) {\n return locale_weekdays[d.getUTCDay()];\n }\n\n function formatUTCShortMonth(d) {\n return locale_shortMonths[d.getUTCMonth()];\n }\n\n function formatUTCMonth(d) {\n return locale_months[d.getUTCMonth()];\n }\n\n function formatUTCPeriod(d) {\n return locale_periods[+(d.getUTCHours() >= 12)];\n }\n\n function formatUTCQuarter(d) {\n return 1 + ~~(d.getUTCMonth() / 3);\n }\n\n return {\n format: function(specifier) {\n var f = newFormat(specifier += \"\", formats);\n f.toString = function() { return specifier; };\n return f;\n },\n parse: function(specifier) {\n var p = newParse(specifier += \"\", false);\n p.toString = function() { return specifier; };\n return p;\n },\n utcFormat: function(specifier) {\n var f = newFormat(specifier += \"\", utcFormats);\n f.toString = function() { return specifier; };\n return f;\n },\n utcParse: function(specifier) {\n var p = newParse(specifier += \"\", true);\n p.toString = function() { return specifier; };\n return p;\n }\n };\n}\n\nvar pads = {\"-\": \"\", \"_\": \" \", \"0\": \"0\"},\n numberRe = /^\\s*\\d+/, // note: ignores next directive\n percentRe = /^%/,\n requoteRe = /[\\\\^$*+?|[\\]().{}]/g;\n\nfunction pad(value, fill, width) {\n var sign = value < 0 ? \"-\" : \"\",\n string = (sign ? -value : value) + \"\",\n length = string.length;\n return sign + (length < width ? new Array(width - length + 1).join(fill) + string : string);\n}\n\nfunction requote(s) {\n return s.replace(requoteRe, \"\\\\$&\");\n}\n\nfunction formatRe(names) {\n return new RegExp(\"^(?:\" + names.map(requote).join(\"|\") + \")\", \"i\");\n}\n\nfunction formatLookup(names) {\n return new Map(names.map((name, i) => [name.toLowerCase(), i]));\n}\n\nfunction parseWeekdayNumberSunday(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 1));\n return n ? (d.w = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseWeekdayNumberMonday(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 1));\n return n ? (d.u = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseWeekNumberSunday(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 2));\n return n ? (d.U = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseWeekNumberISO(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 2));\n return n ? (d.V = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseWeekNumberMonday(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 2));\n return n ? (d.W = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseFullYear(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 4));\n return n ? (d.y = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseYear(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 2));\n return n ? (d.y = +n[0] + (+n[0] > 68 ? 1900 : 2000), i + n[0].length) : -1;\n}\n\nfunction parseZone(d, string, i) {\n var n = /^(Z)|([+-]\\d\\d)(?::?(\\d\\d))?/.exec(string.slice(i, i + 6));\n return n ? (d.Z = n[1] ? 0 : -(n[2] + (n[3] || \"00\")), i + n[0].length) : -1;\n}\n\nfunction parseQuarter(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 1));\n return n ? (d.q = n[0] * 3 - 3, i + n[0].length) : -1;\n}\n\nfunction parseMonthNumber(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 2));\n return n ? (d.m = n[0] - 1, i + n[0].length) : -1;\n}\n\nfunction parseDayOfMonth(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 2));\n return n ? (d.d = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseDayOfYear(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 3));\n return n ? (d.m = 0, d.d = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseHour24(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 2));\n return n ? (d.H = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseMinutes(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 2));\n return n ? (d.M = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseSeconds(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 2));\n return n ? (d.S = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseMilliseconds(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 3));\n return n ? (d.L = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseMicroseconds(d, string, i) {\n var n = numberRe.exec(string.slice(i, i + 6));\n return n ? (d.L = Math.floor(n[0] / 1000), i + n[0].length) : -1;\n}\n\nfunction parseLiteralPercent(d, string, i) {\n var n = percentRe.exec(string.slice(i, i + 1));\n return n ? i + n[0].length : -1;\n}\n\nfunction parseUnixTimestamp(d, string, i) {\n var n = numberRe.exec(string.slice(i));\n return n ? (d.Q = +n[0], i + n[0].length) : -1;\n}\n\nfunction parseUnixTimestampSeconds(d, string, i) {\n var n = numberRe.exec(string.slice(i));\n return n ? (d.s = +n[0], i + n[0].length) : -1;\n}\n\nfunction formatDayOfMonth(d, p) {\n return pad(d.getDate(), p, 2);\n}\n\nfunction formatHour24(d, p) {\n return pad(d.getHours(), p, 2);\n}\n\nfunction formatHour12(d, p) {\n return pad(d.getHours() % 12 || 12, p, 2);\n}\n\nfunction formatDayOfYear(d, p) {\n return pad(1 + timeDay.count(timeYear(d), d), p, 3);\n}\n\nfunction formatMilliseconds(d, p) {\n return pad(d.getMilliseconds(), p, 3);\n}\n\nfunction formatMicroseconds(d, p) {\n return formatMilliseconds(d, p) + \"000\";\n}\n\nfunction formatMonthNumber(d, p) {\n return pad(d.getMonth() + 1, p, 2);\n}\n\nfunction formatMinutes(d, p) {\n return pad(d.getMinutes(), p, 2);\n}\n\nfunction formatSeconds(d, p) {\n return pad(d.getSeconds(), p, 2);\n}\n\nfunction formatWeekdayNumberMonday(d) {\n var day = d.getDay();\n return day === 0 ? 7 : day;\n}\n\nfunction formatWeekNumberSunday(d, p) {\n return pad(timeSunday.count(timeYear(d) - 1, d), p, 2);\n}\n\nfunction dISO(d) {\n var day = d.getDay();\n return (day >= 4 || day === 0) ? timeThursday(d) : timeThursday.ceil(d);\n}\n\nfunction formatWeekNumberISO(d, p) {\n d = dISO(d);\n return pad(timeThursday.count(timeYear(d), d) + (timeYear(d).getDay() === 4), p, 2);\n}\n\nfunction formatWeekdayNumberSunday(d) {\n return d.getDay();\n}\n\nfunction formatWeekNumberMonday(d, p) {\n return pad(timeMonday.count(timeYear(d) - 1, d), p, 2);\n}\n\nfunction formatYear(d, p) {\n return pad(d.getFullYear() % 100, p, 2);\n}\n\nfunction formatYearISO(d, p) {\n d = dISO(d);\n return pad(d.getFullYear() % 100, p, 2);\n}\n\nfunction formatFullYear(d, p) {\n return pad(d.getFullYear() % 10000, p, 4);\n}\n\nfunction formatFullYearISO(d, p) {\n var day = d.getDay();\n d = (day >= 4 || day === 0) ? timeThursday(d) : timeThursday.ceil(d);\n return pad(d.getFullYear() % 10000, p, 4);\n}\n\nfunction formatZone(d) {\n var z = d.getTimezoneOffset();\n return (z > 0 ? \"-\" : (z *= -1, \"+\"))\n + pad(z / 60 | 0, \"0\", 2)\n + pad(z % 60, \"0\", 2);\n}\n\nfunction formatUTCDayOfMonth(d, p) {\n return pad(d.getUTCDate(), p, 2);\n}\n\nfunction formatUTCHour24(d, p) {\n return pad(d.getUTCHours(), p, 2);\n}\n\nfunction formatUTCHour12(d, p) {\n return pad(d.getUTCHours() % 12 || 12, p, 2);\n}\n\nfunction formatUTCDayOfYear(d, p) {\n return pad(1 + utcDay.count(utcYear(d), d), p, 3);\n}\n\nfunction formatUTCMilliseconds(d, p) {\n return pad(d.getUTCMilliseconds(), p, 3);\n}\n\nfunction formatUTCMicroseconds(d, p) {\n return formatUTCMilliseconds(d, p) + \"000\";\n}\n\nfunction formatUTCMonthNumber(d, p) {\n return pad(d.getUTCMonth() + 1, p, 2);\n}\n\nfunction formatUTCMinutes(d, p) {\n return pad(d.getUTCMinutes(), p, 2);\n}\n\nfunction formatUTCSeconds(d, p) {\n return pad(d.getUTCSeconds(), p, 2);\n}\n\nfunction formatUTCWeekdayNumberMonday(d) {\n var dow = d.getUTCDay();\n return dow === 0 ? 7 : dow;\n}\n\nfunction formatUTCWeekNumberSunday(d, p) {\n return pad(utcSunday.count(utcYear(d) - 1, d), p, 2);\n}\n\nfunction UTCdISO(d) {\n var day = d.getUTCDay();\n return (day >= 4 || day === 0) ? utcThursday(d) : utcThursday.ceil(d);\n}\n\nfunction formatUTCWeekNumberISO(d, p) {\n d = UTCdISO(d);\n return pad(utcThursday.count(utcYear(d), d) + (utcYear(d).getUTCDay() === 4), p, 2);\n}\n\nfunction formatUTCWeekdayNumberSunday(d) {\n return d.getUTCDay();\n}\n\nfunction formatUTCWeekNumberMonday(d, p) {\n return pad(utcMonday.count(utcYear(d) - 1, d), p, 2);\n}\n\nfunction formatUTCYear(d, p) {\n return pad(d.getUTCFullYear() % 100, p, 2);\n}\n\nfunction formatUTCYearISO(d, p) {\n d = UTCdISO(d);\n return pad(d.getUTCFullYear() % 100, p, 2);\n}\n\nfunction formatUTCFullYear(d, p) {\n return pad(d.getUTCFullYear() % 10000, p, 4);\n}\n\nfunction formatUTCFullYearISO(d, p) {\n var day = d.getUTCDay();\n d = (day >= 4 || day === 0) ? utcThursday(d) : utcThursday.ceil(d);\n return pad(d.getUTCFullYear() % 10000, p, 4);\n}\n\nfunction formatUTCZone() {\n return \"+0000\";\n}\n\nfunction formatLiteralPercent() {\n return \"%\";\n}\n\nfunction formatUnixTimestamp(d) {\n return +d;\n}\n\nfunction formatUnixTimestampSeconds(d) {\n return Math.floor(+d / 1000);\n}\n","import formatLocale from \"./locale.js\";\n\nvar locale;\nexport var timeFormat;\nexport var timeParse;\nexport var utcFormat;\nexport var utcParse;\n\ndefaultLocale({\n dateTime: \"%x, %X\",\n date: \"%-m/%-d/%Y\",\n time: \"%-I:%M:%S %p\",\n periods: [\"AM\", \"PM\"],\n days: [\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"],\n shortDays: [\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\"],\n months: [\"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\", \"August\", \"September\", \"October\", \"November\", \"December\"],\n shortMonths: [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"]\n});\n\nexport default function defaultLocale(definition) {\n locale = formatLocale(definition);\n timeFormat = locale.format;\n timeParse = locale.parse;\n utcFormat = locale.utcFormat;\n utcParse = locale.utcParse;\n return locale;\n}\n","import {timeYear, timeMonth, timeWeek, timeDay, timeHour, timeMinute, timeSecond, timeTicks, timeTickInterval} from \"d3-time\";\nimport {timeFormat} from \"d3-time-format\";\nimport continuous, {copy} from \"./continuous.js\";\nimport {initRange} from \"./init.js\";\nimport nice from \"./nice.js\";\n\nfunction date(t) {\n return new Date(t);\n}\n\nfunction number(t) {\n return t instanceof Date ? +t : +new Date(+t);\n}\n\nexport function calendar(ticks, tickInterval, year, month, week, day, hour, minute, second, format) {\n var scale = continuous(),\n invert = scale.invert,\n domain = scale.domain;\n\n var formatMillisecond = format(\".%L\"),\n formatSecond = format(\":%S\"),\n formatMinute = format(\"%I:%M\"),\n formatHour = format(\"%I %p\"),\n formatDay = format(\"%a %d\"),\n formatWeek = format(\"%b %d\"),\n formatMonth = format(\"%B\"),\n formatYear = format(\"%Y\");\n\n function tickFormat(date) {\n return (second(date) < date ? formatMillisecond\n : minute(date) < date ? formatSecond\n : hour(date) < date ? formatMinute\n : day(date) < date ? formatHour\n : month(date) < date ? (week(date) < date ? formatDay : formatWeek)\n : year(date) < date ? formatMonth\n : formatYear)(date);\n }\n\n scale.invert = function(y) {\n return new Date(invert(y));\n };\n\n scale.domain = function(_) {\n return arguments.length ? domain(Array.from(_, number)) : domain().map(date);\n };\n\n scale.ticks = function(interval) {\n var d = domain();\n return ticks(d[0], d[d.length - 1], interval == null ? 10 : interval);\n };\n\n scale.tickFormat = function(count, specifier) {\n return specifier == null ? tickFormat : format(specifier);\n };\n\n scale.nice = function(interval) {\n var d = domain();\n if (!interval || typeof interval.range !== \"function\") interval = tickInterval(d[0], d[d.length - 1], interval == null ? 10 : interval);\n return interval ? domain(nice(d, interval)) : scale;\n };\n\n scale.copy = function() {\n return copy(scale, calendar(ticks, tickInterval, year, month, week, day, hour, minute, second, format));\n };\n\n return scale;\n}\n\nexport default function time() {\n return initRange.apply(calendar(timeTicks, timeTickInterval, timeYear, timeMonth, timeWeek, timeDay, timeHour, timeMinute, timeSecond, timeFormat).domain([new Date(2000, 0, 1), new Date(2000, 0, 2)]), arguments);\n}\n","import {utcYear, utcMonth, utcWeek, utcDay, utcHour, utcMinute, utcSecond, utcTicks, utcTickInterval} from \"d3-time\";\nimport {utcFormat} from \"d3-time-format\";\nimport {calendar} from \"./time.js\";\nimport {initRange} from \"./init.js\";\n\nexport default function utcTime() {\n return initRange.apply(calendar(utcTicks, utcTickInterval, utcYear, utcMonth, utcWeek, utcDay, utcHour, utcMinute, utcSecond, utcFormat).domain([Date.UTC(2000, 0, 1), Date.UTC(2000, 0, 2)]), arguments);\n}\n","import {interpolate, interpolateRound} from \"d3-interpolate\";\nimport {identity} from \"./continuous.js\";\nimport {initInterpolator} from \"./init.js\";\nimport {linearish} from \"./linear.js\";\nimport {loggish} from \"./log.js\";\nimport {symlogish} from \"./symlog.js\";\nimport {powish} from \"./pow.js\";\n\nfunction transformer() {\n var x0 = 0,\n x1 = 1,\n t0,\n t1,\n k10,\n transform,\n interpolator = identity,\n clamp = false,\n unknown;\n\n function scale(x) {\n return x == null || isNaN(x = +x) ? unknown : interpolator(k10 === 0 ? 0.5 : (x = (transform(x) - t0) * k10, clamp ? Math.max(0, Math.min(1, x)) : x));\n }\n\n scale.domain = function(_) {\n return arguments.length ? ([x0, x1] = _, t0 = transform(x0 = +x0), t1 = transform(x1 = +x1), k10 = t0 === t1 ? 0 : 1 / (t1 - t0), scale) : [x0, x1];\n };\n\n scale.clamp = function(_) {\n return arguments.length ? (clamp = !!_, scale) : clamp;\n };\n\n scale.interpolator = function(_) {\n return arguments.length ? (interpolator = _, scale) : interpolator;\n };\n\n function range(interpolate) {\n return function(_) {\n var r0, r1;\n return arguments.length ? ([r0, r1] = _, interpolator = interpolate(r0, r1), scale) : [interpolator(0), interpolator(1)];\n };\n }\n\n scale.range = range(interpolate);\n\n scale.rangeRound = range(interpolateRound);\n\n scale.unknown = function(_) {\n return arguments.length ? (unknown = _, scale) : unknown;\n };\n\n return function(t) {\n transform = t, t0 = t(x0), t1 = t(x1), k10 = t0 === t1 ? 0 : 1 / (t1 - t0);\n return scale;\n };\n}\n\nexport function copy(source, target) {\n return target\n .domain(source.domain())\n .interpolator(source.interpolator())\n .clamp(source.clamp())\n .unknown(source.unknown());\n}\n\nexport default function sequential() {\n var scale = linearish(transformer()(identity));\n\n scale.copy = function() {\n return copy(scale, sequential());\n };\n\n return initInterpolator.apply(scale, arguments);\n}\n\nexport function sequentialLog() {\n var scale = loggish(transformer()).domain([1, 10]);\n\n scale.copy = function() {\n return copy(scale, sequentialLog()).base(scale.base());\n };\n\n return initInterpolator.apply(scale, arguments);\n}\n\nexport function sequentialSymlog() {\n var scale = symlogish(transformer());\n\n scale.copy = function() {\n return copy(scale, sequentialSymlog()).constant(scale.constant());\n };\n\n return initInterpolator.apply(scale, arguments);\n}\n\nexport function sequentialPow() {\n var scale = powish(transformer());\n\n scale.copy = function() {\n return copy(scale, sequentialPow()).exponent(scale.exponent());\n };\n\n return initInterpolator.apply(scale, arguments);\n}\n\nexport function sequentialSqrt() {\n return sequentialPow.apply(null, arguments).exponent(0.5);\n}\n","import {ascending, bisect, quantile} from \"d3-array\";\nimport {identity} from \"./continuous.js\";\nimport {initInterpolator} from \"./init.js\";\n\nexport default function sequentialQuantile() {\n var domain = [],\n interpolator = identity;\n\n function scale(x) {\n if (x != null && !isNaN(x = +x)) return interpolator((bisect(domain, x, 1) - 1) / (domain.length - 1));\n }\n\n scale.domain = function(_) {\n if (!arguments.length) return domain.slice();\n domain = [];\n for (let d of _) if (d != null && !isNaN(d = +d)) domain.push(d);\n domain.sort(ascending);\n return scale;\n };\n\n scale.interpolator = function(_) {\n return arguments.length ? (interpolator = _, scale) : interpolator;\n };\n\n scale.range = function() {\n return domain.map((d, i) => interpolator(i / (domain.length - 1)));\n };\n\n scale.quantiles = function(n) {\n return Array.from({length: n + 1}, (_, i) => quantile(domain, i / n));\n };\n\n scale.copy = function() {\n return sequentialQuantile(interpolator).domain(domain);\n };\n\n return initInterpolator.apply(scale, arguments);\n}\n","import {default as value} from \"./value.js\";\n\nexport default function piecewise(interpolate, values) {\n if (values === undefined) values = interpolate, interpolate = value;\n var i = 0, n = values.length - 1, v = values[0], I = new Array(n < 0 ? 0 : n);\n while (i < n) I[i] = interpolate(v, v = values[++i]);\n return function(t) {\n var i = Math.max(0, Math.min(n - 1, Math.floor(t *= n)));\n return I[i](t - i);\n };\n}\n","import {interpolate, interpolateRound, piecewise} from \"d3-interpolate\";\nimport {identity} from \"./continuous.js\";\nimport {initInterpolator} from \"./init.js\";\nimport {linearish} from \"./linear.js\";\nimport {loggish} from \"./log.js\";\nimport {copy} from \"./sequential.js\";\nimport {symlogish} from \"./symlog.js\";\nimport {powish} from \"./pow.js\";\n\nfunction transformer() {\n var x0 = 0,\n x1 = 0.5,\n x2 = 1,\n s = 1,\n t0,\n t1,\n t2,\n k10,\n k21,\n interpolator = identity,\n transform,\n clamp = false,\n unknown;\n\n function scale(x) {\n return isNaN(x = +x) ? unknown : (x = 0.5 + ((x = +transform(x)) - t1) * (s * x < s * t1 ? k10 : k21), interpolator(clamp ? Math.max(0, Math.min(1, x)) : x));\n }\n\n scale.domain = function(_) {\n return arguments.length ? ([x0, x1, x2] = _, t0 = transform(x0 = +x0), t1 = transform(x1 = +x1), t2 = transform(x2 = +x2), k10 = t0 === t1 ? 0 : 0.5 / (t1 - t0), k21 = t1 === t2 ? 0 : 0.5 / (t2 - t1), s = t1 < t0 ? -1 : 1, scale) : [x0, x1, x2];\n };\n\n scale.clamp = function(_) {\n return arguments.length ? (clamp = !!_, scale) : clamp;\n };\n\n scale.interpolator = function(_) {\n return arguments.length ? (interpolator = _, scale) : interpolator;\n };\n\n function range(interpolate) {\n return function(_) {\n var r0, r1, r2;\n return arguments.length ? ([r0, r1, r2] = _, interpolator = piecewise(interpolate, [r0, r1, r2]), scale) : [interpolator(0), interpolator(0.5), interpolator(1)];\n };\n }\n\n scale.range = range(interpolate);\n\n scale.rangeRound = range(interpolateRound);\n\n scale.unknown = function(_) {\n return arguments.length ? (unknown = _, scale) : unknown;\n };\n\n return function(t) {\n transform = t, t0 = t(x0), t1 = t(x1), t2 = t(x2), k10 = t0 === t1 ? 0 : 0.5 / (t1 - t0), k21 = t1 === t2 ? 0 : 0.5 / (t2 - t1), s = t1 < t0 ? -1 : 1;\n return scale;\n };\n}\n\nexport default function diverging() {\n var scale = linearish(transformer()(identity));\n\n scale.copy = function() {\n return copy(scale, diverging());\n };\n\n return initInterpolator.apply(scale, arguments);\n}\n\nexport function divergingLog() {\n var scale = loggish(transformer()).domain([0.1, 1, 10]);\n\n scale.copy = function() {\n return copy(scale, divergingLog()).base(scale.base());\n };\n\n return initInterpolator.apply(scale, arguments);\n}\n\nexport function divergingSymlog() {\n var scale = symlogish(transformer());\n\n scale.copy = function() {\n return copy(scale, divergingSymlog()).constant(scale.constant());\n };\n\n return initInterpolator.apply(scale, arguments);\n}\n\nexport function divergingPow() {\n var scale = powish(transformer());\n\n scale.copy = function() {\n return copy(scale, divergingPow()).exponent(scale.exponent());\n };\n\n return initInterpolator.apply(scale, arguments);\n}\n\nexport function divergingSqrt() {\n return divergingPow.apply(null, arguments).exponent(0.5);\n}\n","export default function(series, order) {\n if (!((n = series.length) > 1)) return;\n for (var i = 1, j, s0, s1 = series[order[0]], n, m = s1.length; i < n; ++i) {\n s0 = s1, s1 = series[order[i]];\n for (j = 0; j < m; ++j) {\n s1[j][1] += s1[j][0] = isNaN(s0[j][1]) ? s0[j][0] : s0[j][1];\n }\n }\n}\n","export default function(series) {\n var n = series.length, o = new Array(n);\n while (--n >= 0) o[n] = n;\n return o;\n}\n","import array from \"./array.js\";\nimport constant from \"./constant.js\";\nimport offsetNone from \"./offset/none.js\";\nimport orderNone from \"./order/none.js\";\n\nfunction stackValue(d, key) {\n return d[key];\n}\n\nfunction stackSeries(key) {\n const series = [];\n series.key = key;\n return series;\n}\n\nexport default function() {\n var keys = constant([]),\n order = orderNone,\n offset = offsetNone,\n value = stackValue;\n\n function stack(data) {\n var sz = Array.from(keys.apply(this, arguments), stackSeries),\n i, n = sz.length, j = -1,\n oz;\n\n for (const d of data) {\n for (i = 0, ++j; i < n; ++i) {\n (sz[i][j] = [0, +value(d, sz[i].key, j, data)]).data = d;\n }\n }\n\n for (i = 0, oz = array(order(sz)); i < n; ++i) {\n sz[oz[i]].index = i;\n }\n\n offset(sz, oz);\n return sz;\n }\n\n stack.keys = function(_) {\n return arguments.length ? (keys = typeof _ === \"function\" ? _ : constant(Array.from(_)), stack) : keys;\n };\n\n stack.value = function(_) {\n return arguments.length ? (value = typeof _ === \"function\" ? _ : constant(+_), stack) : value;\n };\n\n stack.order = function(_) {\n return arguments.length ? (order = _ == null ? orderNone : typeof _ === \"function\" ? _ : constant(Array.from(_)), stack) : order;\n };\n\n stack.offset = function(_) {\n return arguments.length ? (offset = _ == null ? offsetNone : _, stack) : offset;\n };\n\n return stack;\n}\n","import _isEqual from \"lodash/isEqual\";\nimport _sortBy from \"lodash/sortBy\";\nimport _isNaN from \"lodash/isNaN\";\nimport _upperFirst from \"lodash/upperFirst\";\nimport _isString from \"lodash/isString\";\nimport _isArray from \"lodash/isArray\";\nimport _max from \"lodash/max\";\nimport _min from \"lodash/min\";\nimport _flatMap from \"lodash/flatMap\";\nimport _isFunction from \"lodash/isFunction\";\nimport _get from \"lodash/get\";\nimport _isNil from \"lodash/isNil\";\n\nfunction _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\n\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _iterableToArray(iter) { if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter); }\n\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nimport { getNiceTickValues, getTickValuesFixedDomain } from 'recharts-scale';\nimport * as d3Scales from 'd3-scale';\nimport { stack as shapeStack, stackOrderNone, stackOffsetExpand, stackOffsetNone, stackOffsetSilhouette, stackOffsetWiggle } from 'd3-shape';\nimport { isNumOrStr, uniqueId, isNumber, getPercentValue, mathSign, findEntryInArray } from './DataUtils';\nimport { Legend } from '../component/Legend';\nimport { findAllByType, findChildByType, getDisplayName } from './ReactUtils'; // TODO: Cause of circular dependency. Needs refactor.\n// import { RadiusAxisProps, AngleAxisProps } from '../polar/types';\n\nimport { filterProps } from './types';\nexport function getValueByDataKey(obj, dataKey, defaultValue) {\n if (_isNil(obj) || _isNil(dataKey)) {\n return defaultValue;\n }\n\n if (isNumOrStr(dataKey)) {\n return _get(obj, dataKey, defaultValue);\n }\n\n if (_isFunction(dataKey)) {\n return dataKey(obj);\n }\n\n return defaultValue;\n}\n/**\n * Get domain of data by key\n * @param {Array} data The data displayed in the chart\n * @param {String} key The unique key of a group of data\n * @param {String} type The type of axis\n * @param {Boolean} filterNil Whether or not filter nil values\n * @return {Array} Domain of data\n */\n\nexport function getDomainOfDataByKey(data, key, type, filterNil) {\n var flattenData = _flatMap(data, function (entry) {\n return getValueByDataKey(entry, key);\n });\n\n if (type === 'number') {\n var domain = flattenData.filter(function (entry) {\n return isNumber(entry) || parseFloat(entry);\n });\n return domain.length ? [_min(domain), _max(domain)] : [Infinity, -Infinity];\n }\n\n var validateData = filterNil ? flattenData.filter(function (entry) {\n return !_isNil(entry);\n }) : flattenData; // 支持Date类型的x轴\n\n return validateData.map(function (entry) {\n return isNumOrStr(entry) || entry instanceof Date ? entry : '';\n });\n}\nexport var calculateActiveTickIndex = function calculateActiveTickIndex(coordinate) {\n var _ticks$length;\n\n var ticks = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];\n var unsortedTicks = arguments.length > 2 ? arguments[2] : undefined;\n var axis = arguments.length > 3 ? arguments[3] : undefined;\n var index = -1;\n var len = (_ticks$length = ticks === null || ticks === void 0 ? void 0 : ticks.length) !== null && _ticks$length !== void 0 ? _ticks$length : 0;\n\n if (len > 1) {\n if (axis && axis.axisType === 'angleAxis' && Math.abs(Math.abs(axis.range[1] - axis.range[0]) - 360) <= 1e-6) {\n var range = axis.range; // ticks are distributed in a circle\n\n for (var i = 0; i < len; i++) {\n var before = i > 0 ? unsortedTicks[i - 1].coordinate : unsortedTicks[len - 1].coordinate;\n var cur = unsortedTicks[i].coordinate;\n var after = i >= len - 1 ? unsortedTicks[0].coordinate : unsortedTicks[i + 1].coordinate;\n var sameDirectionCoord = void 0;\n\n if (mathSign(cur - before) !== mathSign(after - cur)) {\n var diffInterval = [];\n\n if (mathSign(after - cur) === mathSign(range[1] - range[0])) {\n sameDirectionCoord = after;\n var curInRange = cur + range[1] - range[0];\n diffInterval[0] = Math.min(curInRange, (curInRange + before) / 2);\n diffInterval[1] = Math.max(curInRange, (curInRange + before) / 2);\n } else {\n sameDirectionCoord = before;\n var afterInRange = after + range[1] - range[0];\n diffInterval[0] = Math.min(cur, (afterInRange + cur) / 2);\n diffInterval[1] = Math.max(cur, (afterInRange + cur) / 2);\n }\n\n var sameInterval = [Math.min(cur, (sameDirectionCoord + cur) / 2), Math.max(cur, (sameDirectionCoord + cur) / 2)];\n\n if (coordinate > sameInterval[0] && coordinate <= sameInterval[1] || coordinate >= diffInterval[0] && coordinate <= diffInterval[1]) {\n index = unsortedTicks[i].index;\n break;\n }\n } else {\n var min = Math.min(before, after);\n var max = Math.max(before, after);\n\n if (coordinate > (min + cur) / 2 && coordinate <= (max + cur) / 2) {\n index = unsortedTicks[i].index;\n break;\n }\n }\n }\n } else {\n // ticks are distributed in a single direction\n for (var _i = 0; _i < len; _i++) {\n if (_i === 0 && coordinate <= (ticks[_i].coordinate + ticks[_i + 1].coordinate) / 2 || _i > 0 && _i < len - 1 && coordinate > (ticks[_i].coordinate + ticks[_i - 1].coordinate) / 2 && coordinate <= (ticks[_i].coordinate + ticks[_i + 1].coordinate) / 2 || _i === len - 1 && coordinate > (ticks[_i].coordinate + ticks[_i - 1].coordinate) / 2) {\n index = ticks[_i].index;\n break;\n }\n }\n }\n } else {\n index = 0;\n }\n\n return index;\n};\n/**\n * Get the main color of each graphic item\n * @param {ReactElement} item A graphic item\n * @return {String} Color\n */\n\nexport var getMainColorOfGraphicItem = function getMainColorOfGraphicItem(item) {\n var _ref = item,\n displayName = _ref.type.displayName; // TODO: check if displayName is valid.\n\n var _item$props = item.props,\n stroke = _item$props.stroke,\n fill = _item$props.fill;\n var result;\n\n switch (displayName) {\n case 'Line':\n result = stroke;\n break;\n\n case 'Area':\n case 'Radar':\n result = stroke && stroke !== 'none' ? stroke : fill;\n break;\n\n default:\n result = fill;\n break;\n }\n\n return result;\n};\nexport var getLegendProps = function getLegendProps(_ref2) {\n var children = _ref2.children,\n formattedGraphicalItems = _ref2.formattedGraphicalItems,\n legendWidth = _ref2.legendWidth,\n legendContent = _ref2.legendContent;\n var legendItem = findChildByType(children, Legend.displayName);\n\n if (!legendItem) {\n return null;\n }\n\n var legendData;\n\n if (legendItem.props && legendItem.props.payload) {\n legendData = legendItem.props && legendItem.props.payload;\n } else if (legendContent === 'children') {\n legendData = (formattedGraphicalItems || []).reduce(function (result, _ref3) {\n var item = _ref3.item,\n props = _ref3.props;\n var data = props.sectors || props.data || [];\n return result.concat(data.map(function (entry) {\n return {\n type: legendItem.props.iconType || item.props.legendType,\n value: entry.name,\n color: entry.fill,\n payload: entry\n };\n }));\n }, []);\n } else {\n legendData = (formattedGraphicalItems || []).map(function (_ref4) {\n var item = _ref4.item;\n var _item$props2 = item.props,\n dataKey = _item$props2.dataKey,\n name = _item$props2.name,\n legendType = _item$props2.legendType,\n hide = _item$props2.hide;\n return {\n inactive: hide,\n dataKey: dataKey,\n type: legendItem.props.iconType || legendType || 'square',\n color: getMainColorOfGraphicItem(item),\n value: name || dataKey,\n payload: item.props\n };\n });\n }\n\n return _objectSpread(_objectSpread(_objectSpread({}, legendItem.props), Legend.getWithHeight(legendItem, legendWidth)), {}, {\n payload: legendData,\n item: legendItem\n });\n};\n/**\n * Calculate the size of all groups for stacked bar graph\n * @param {Object} stackGroups The items grouped by axisId and stackId\n * @return {Object} The size of all groups\n */\n\nexport var getBarSizeList = function getBarSizeList(_ref5) {\n var globalSize = _ref5.barSize,\n _ref5$stackGroups = _ref5.stackGroups,\n stackGroups = _ref5$stackGroups === void 0 ? {} : _ref5$stackGroups;\n\n if (!stackGroups) {\n return {};\n }\n\n var result = {};\n var numericAxisIds = Object.keys(stackGroups);\n\n for (var i = 0, len = numericAxisIds.length; i < len; i++) {\n var sgs = stackGroups[numericAxisIds[i]].stackGroups;\n var stackIds = Object.keys(sgs);\n\n for (var j = 0, sLen = stackIds.length; j < sLen; j++) {\n var _sgs$stackIds$j = sgs[stackIds[j]],\n items = _sgs$stackIds$j.items,\n cateAxisId = _sgs$stackIds$j.cateAxisId;\n var barItems = items.filter(function (item) {\n return getDisplayName(item.type).indexOf('Bar') >= 0;\n });\n\n if (barItems && barItems.length) {\n var selfSize = barItems[0].props.barSize;\n var cateId = barItems[0].props[cateAxisId];\n\n if (!result[cateId]) {\n result[cateId] = [];\n }\n\n result[cateId].push({\n item: barItems[0],\n stackList: barItems.slice(1),\n barSize: _isNil(selfSize) ? globalSize : selfSize\n });\n }\n }\n }\n\n return result;\n};\n/**\n * Calculate the size of each bar and the gap between two bars\n * @param {Number} bandSize The size of each category\n * @param {sizeList} sizeList The size of all groups\n * @param {maxBarSize} maxBarSize The maximum size of bar\n * @return {Number} The size of each bar and the gap between two bars\n */\n\nexport var getBarPosition = function getBarPosition(_ref6) {\n var barGap = _ref6.barGap,\n barCategoryGap = _ref6.barCategoryGap,\n bandSize = _ref6.bandSize,\n _ref6$sizeList = _ref6.sizeList,\n sizeList = _ref6$sizeList === void 0 ? [] : _ref6$sizeList,\n maxBarSize = _ref6.maxBarSize;\n var len = sizeList.length;\n if (len < 1) return null;\n var realBarGap = getPercentValue(barGap, bandSize, 0, true);\n var result; // whether or not is barSize setted by user\n\n if (sizeList[0].barSize === +sizeList[0].barSize) {\n var useFull = false;\n var fullBarSize = bandSize / len;\n var sum = sizeList.reduce(function (res, entry) {\n return res + entry.barSize || 0;\n }, 0);\n sum += (len - 1) * realBarGap;\n\n if (sum >= bandSize) {\n sum -= (len - 1) * realBarGap;\n realBarGap = 0;\n }\n\n if (sum >= bandSize && fullBarSize > 0) {\n useFull = true;\n fullBarSize *= 0.9;\n sum = len * fullBarSize;\n }\n\n var offset = (bandSize - sum) / 2 >> 0;\n var prev = {\n offset: offset - realBarGap,\n size: 0\n };\n result = sizeList.reduce(function (res, entry) {\n var newRes = [].concat(_toConsumableArray(res), [{\n item: entry.item,\n position: {\n offset: prev.offset + prev.size + realBarGap,\n size: useFull ? fullBarSize : entry.barSize\n }\n }]);\n prev = newRes[newRes.length - 1].position;\n\n if (entry.stackList && entry.stackList.length) {\n entry.stackList.forEach(function (item) {\n newRes.push({\n item: item,\n position: prev\n });\n });\n }\n\n return newRes;\n }, []);\n } else {\n var _offset = getPercentValue(barCategoryGap, bandSize, 0, true);\n\n if (bandSize - 2 * _offset - (len - 1) * realBarGap <= 0) {\n realBarGap = 0;\n }\n\n var originalSize = (bandSize - 2 * _offset - (len - 1) * realBarGap) / len;\n\n if (originalSize > 1) {\n originalSize >>= 0;\n }\n\n var size = maxBarSize === +maxBarSize ? Math.min(originalSize, maxBarSize) : originalSize;\n result = sizeList.reduce(function (res, entry, i) {\n var newRes = [].concat(_toConsumableArray(res), [{\n item: entry.item,\n position: {\n offset: _offset + (originalSize + realBarGap) * i + (originalSize - size) / 2,\n size: size\n }\n }]);\n\n if (entry.stackList && entry.stackList.length) {\n entry.stackList.forEach(function (item) {\n newRes.push({\n item: item,\n position: newRes[newRes.length - 1].position\n });\n });\n }\n\n return newRes;\n }, []);\n }\n\n return result;\n};\nexport var appendOffsetOfLegend = function appendOffsetOfLegend(offset, items, props, legendBox) {\n var children = props.children,\n width = props.width,\n margin = props.margin;\n var legendWidth = width - (margin.left || 0) - (margin.right || 0); // const legendHeight = height - (margin.top || 0) - (margin.bottom || 0);\n\n var legendProps = getLegendProps({\n children: children,\n legendWidth: legendWidth\n });\n var newOffset = offset;\n\n if (legendProps) {\n var box = legendBox || {};\n var align = legendProps.align,\n verticalAlign = legendProps.verticalAlign,\n layout = legendProps.layout;\n\n if ((layout === 'vertical' || layout === 'horizontal' && verticalAlign === 'center') && isNumber(offset[align])) {\n newOffset = _objectSpread(_objectSpread({}, offset), {}, _defineProperty({}, align, newOffset[align] + (box.width || 0)));\n }\n\n if ((layout === 'horizontal' || layout === 'vertical' && align === 'center') && isNumber(offset[verticalAlign])) {\n newOffset = _objectSpread(_objectSpread({}, offset), {}, _defineProperty({}, verticalAlign, newOffset[verticalAlign] + (box.height || 0)));\n }\n }\n\n return newOffset;\n};\n\nvar isErrorBarRelevantForAxis = function isErrorBarRelevantForAxis(layout, axisType, direction) {\n if (_isNil(axisType)) {\n return true;\n }\n\n if (layout === 'horizontal') {\n return axisType === 'yAxis';\n }\n\n if (layout === 'vertical') {\n return axisType === 'xAxis';\n }\n\n if (direction === 'x') {\n return axisType === 'xAxis';\n }\n\n if (direction === 'y') {\n return axisType === 'yAxis';\n }\n\n return true;\n};\n\nexport var getDomainOfErrorBars = function getDomainOfErrorBars(data, item, dataKey, layout, axisType) {\n var children = item.props.children;\n var errorBars = findAllByType(children, 'ErrorBar').filter(function (errorBarChild) {\n return isErrorBarRelevantForAxis(layout, axisType, errorBarChild.props.direction);\n });\n\n if (errorBars && errorBars.length) {\n var keys = errorBars.map(function (errorBarChild) {\n return errorBarChild.props.dataKey;\n });\n return data.reduce(function (result, entry) {\n var entryValue = getValueByDataKey(entry, dataKey, 0);\n var mainValue = _isArray(entryValue) ? [_min(entryValue), _max(entryValue)] : [entryValue, entryValue];\n var errorDomain = keys.reduce(function (prevErrorArr, k) {\n var errorValue = getValueByDataKey(entry, k, 0);\n var lowerValue = mainValue[0] - Math.abs(_isArray(errorValue) ? errorValue[0] : errorValue);\n var upperValue = mainValue[1] + Math.abs(_isArray(errorValue) ? errorValue[1] : errorValue);\n return [Math.min(lowerValue, prevErrorArr[0]), Math.max(upperValue, prevErrorArr[1])];\n }, [Infinity, -Infinity]);\n return [Math.min(errorDomain[0], result[0]), Math.max(errorDomain[1], result[1])];\n }, [Infinity, -Infinity]);\n }\n\n return null;\n};\nexport var parseErrorBarsOfAxis = function parseErrorBarsOfAxis(data, items, dataKey, axisType, layout) {\n var domains = items.map(function (item) {\n return getDomainOfErrorBars(data, item, dataKey, layout, axisType);\n }).filter(function (entry) {\n return !_isNil(entry);\n });\n\n if (domains && domains.length) {\n return domains.reduce(function (result, entry) {\n return [Math.min(result[0], entry[0]), Math.max(result[1], entry[1])];\n }, [Infinity, -Infinity]);\n }\n\n return null;\n};\n/**\n * Get domain of data by the configuration of item element\n * @param {Array} data The data displayed in the chart\n * @param {Array} items The instances of item\n * @param {String} type The type of axis, number - Number Axis, category - Category Axis\n * @param {LayoutType} layout The type of layout\n * @param {Boolean} filterNil Whether or not filter nil values\n * @return {Array} Domain\n */\n\nexport var getDomainOfItemsWithSameAxis = function getDomainOfItemsWithSameAxis(data, items, type, layout, filterNil) {\n var domains = items.map(function (item) {\n var dataKey = item.props.dataKey;\n\n if (type === 'number' && dataKey) {\n return getDomainOfErrorBars(data, item, dataKey, layout) || getDomainOfDataByKey(data, dataKey, type, filterNil);\n }\n\n return getDomainOfDataByKey(data, dataKey, type, filterNil);\n });\n\n if (type === 'number') {\n // Calculate the domain of number axis\n return domains.reduce(function (result, entry) {\n return [Math.min(result[0], entry[0]), Math.max(result[1], entry[1])];\n }, [Infinity, -Infinity]);\n }\n\n var tag = {}; // Get the union set of category axis\n\n return domains.reduce(function (result, entry) {\n for (var i = 0, len = entry.length; i < len; i++) {\n if (!tag[entry[i]]) {\n tag[entry[i]] = true;\n result.push(entry[i]);\n }\n }\n\n return result;\n }, []);\n};\nexport var isCategoricalAxis = function isCategoricalAxis(layout, axisType) {\n return layout === 'horizontal' && axisType === 'xAxis' || layout === 'vertical' && axisType === 'yAxis' || layout === 'centric' && axisType === 'angleAxis' || layout === 'radial' && axisType === 'radiusAxis';\n};\n/**\n * Calculate the Coordinates of grid\n * @param {Array} ticks The ticks in axis\n * @param {Number} min The minimun value of axis\n * @param {Number} max The maximun value of axis\n * @return {Array} Coordinates\n */\n\nexport var getCoordinatesOfGrid = function getCoordinatesOfGrid(ticks, min, max) {\n var hasMin, hasMax;\n var values = ticks.map(function (entry) {\n if (entry.coordinate === min) {\n hasMin = true;\n }\n\n if (entry.coordinate === max) {\n hasMax = true;\n }\n\n return entry.coordinate;\n });\n\n if (!hasMin) {\n values.push(min);\n }\n\n if (!hasMax) {\n values.push(max);\n }\n\n return values;\n};\n/**\n * Get the ticks of an axis\n * @param {Object} axis The configuration of an axis\n * @param {Boolean} isGrid Whether or not are the ticks in grid\n * @param {Boolean} isAll Return the ticks of all the points or not\n * @return {Array} Ticks\n */\n\nexport var getTicksOfAxis = function getTicksOfAxis(axis, isGrid, isAll) {\n if (!axis) return null;\n var scale = axis.scale;\n var duplicateDomain = axis.duplicateDomain,\n type = axis.type,\n range = axis.range;\n var offsetForBand = axis.realScaleType === 'scaleBand' ? scale.bandwidth() / 2 : 2;\n var offset = (isGrid || isAll) && type === 'category' && scale.bandwidth ? scale.bandwidth() / offsetForBand : 0;\n offset = axis.axisType === 'angleAxis' ? mathSign(range[0] - range[1]) * 2 * offset : offset; // The ticks setted by user should only affect the ticks adjacent to axis line\n\n if (isGrid && (axis.ticks || axis.niceTicks)) {\n return (axis.ticks || axis.niceTicks).map(function (entry) {\n var scaleContent = duplicateDomain ? duplicateDomain.indexOf(entry) : entry;\n return {\n coordinate: scale(scaleContent) + offset,\n value: entry,\n offset: offset\n };\n });\n } // When axis is a categorial axis, but the type of axis is number or the scale of axis is not \"auto\"\n\n\n if (axis.isCategorical && axis.categoricalDomain) {\n return axis.categoricalDomain.map(function (entry, index) {\n return {\n coordinate: scale(entry) + offset,\n value: entry,\n index: index,\n offset: offset\n };\n });\n }\n\n if (scale.ticks && !isAll) {\n return scale.ticks(axis.tickCount).map(function (entry) {\n return {\n coordinate: scale(entry) + offset,\n value: entry,\n offset: offset\n };\n });\n } // When axis has duplicated text, serial numbers are used to generate scale\n\n\n return scale.domain().map(function (entry, index) {\n return {\n coordinate: scale(entry) + offset,\n value: duplicateDomain ? duplicateDomain[entry] : entry,\n index: index,\n offset: offset\n };\n });\n};\n/**\n * combine the handlers\n * @param {Function} defaultHandler Internal private handler\n * @param {Function} parentHandler Handler function specified in parent component\n * @param {Function} childHandler Handler function specified in child component\n * @return {Function} The combined handler\n */\n\nexport var combineEventHandlers = function combineEventHandlers(defaultHandler, parentHandler, childHandler) {\n var customizedHandler;\n\n if (_isFunction(childHandler)) {\n customizedHandler = childHandler;\n } else if (_isFunction(parentHandler)) {\n customizedHandler = parentHandler;\n }\n\n if (_isFunction(defaultHandler) || customizedHandler) {\n return function (arg1, arg2, arg3, arg4) {\n if (_isFunction(defaultHandler)) {\n defaultHandler(arg1, arg2, arg3, arg4);\n }\n\n if (_isFunction(customizedHandler)) {\n customizedHandler(arg1, arg2, arg3, arg4);\n }\n };\n }\n\n return null;\n};\n/**\n * Parse the scale function of axis\n * @param {Object} axis The option of axis\n * @param {String} chartType The displayName of chart\n * @param {Boolean} hasBar if it has a bar\n * @return {Function} The scale function\n */\n\nexport var parseScale = function parseScale(axis, chartType, hasBar) {\n var scale = axis.scale,\n type = axis.type,\n layout = axis.layout,\n axisType = axis.axisType;\n\n if (scale === 'auto') {\n if (layout === 'radial' && axisType === 'radiusAxis') {\n return {\n scale: d3Scales.scaleBand(),\n realScaleType: 'band'\n };\n }\n\n if (layout === 'radial' && axisType === 'angleAxis') {\n return {\n scale: d3Scales.scaleLinear(),\n realScaleType: 'linear'\n };\n }\n\n if (type === 'category' && chartType && (chartType.indexOf('LineChart') >= 0 || chartType.indexOf('AreaChart') >= 0 || chartType.indexOf('ComposedChart') >= 0 && !hasBar)) {\n return {\n scale: d3Scales.scalePoint(),\n realScaleType: 'point'\n };\n }\n\n if (type === 'category') {\n return {\n scale: d3Scales.scaleBand(),\n realScaleType: 'band'\n };\n }\n\n return {\n scale: d3Scales.scaleLinear(),\n realScaleType: 'linear'\n };\n }\n\n if (_isString(scale)) {\n var name = \"scale\".concat(_upperFirst(scale));\n return {\n scale: (d3Scales[name] || d3Scales.scalePoint)(),\n realScaleType: d3Scales[name] ? name : 'point'\n };\n }\n\n return _isFunction(scale) ? {\n scale: scale\n } : {\n scale: d3Scales.scalePoint(),\n realScaleType: 'point'\n };\n};\nvar EPS = 1e-4;\nexport var checkDomainOfScale = function checkDomainOfScale(scale) {\n var domain = scale.domain();\n\n if (!domain || domain.length <= 2) {\n return;\n }\n\n var len = domain.length;\n var range = scale.range();\n var min = Math.min(range[0], range[1]) - EPS;\n var max = Math.max(range[0], range[1]) + EPS;\n var first = scale(domain[0]);\n var last = scale(domain[len - 1]);\n\n if (first < min || first > max || last < min || last > max) {\n scale.domain([domain[0], domain[len - 1]]);\n }\n};\nexport var findPositionOfBar = function findPositionOfBar(barPosition, child) {\n if (!barPosition) {\n return null;\n }\n\n for (var i = 0, len = barPosition.length; i < len; i++) {\n if (barPosition[i].item === child) {\n return barPosition[i].position;\n }\n }\n\n return null;\n};\nexport var truncateByDomain = function truncateByDomain(value, domain) {\n if (!domain || domain.length !== 2 || !isNumber(domain[0]) || !isNumber(domain[1])) {\n return value;\n }\n\n var min = Math.min(domain[0], domain[1]);\n var max = Math.max(domain[0], domain[1]);\n var result = [value[0], value[1]];\n\n if (!isNumber(value[0]) || value[0] < min) {\n result[0] = min;\n }\n\n if (!isNumber(value[1]) || value[1] > max) {\n result[1] = max;\n }\n\n if (result[0] > max) {\n result[0] = max;\n }\n\n if (result[1] < min) {\n result[1] = min;\n }\n\n return result;\n};\n/* eslint no-param-reassign: 0 */\n\nexport var offsetSign = function offsetSign(series) {\n var n = series.length;\n\n if (n <= 0) {\n return;\n }\n\n for (var j = 0, m = series[0].length; j < m; ++j) {\n var positive = 0;\n var negative = 0;\n\n for (var i = 0; i < n; ++i) {\n var value = _isNaN(series[i][j][1]) ? series[i][j][0] : series[i][j][1];\n /* eslint-disable prefer-destructuring */\n\n if (value >= 0) {\n series[i][j][0] = positive;\n series[i][j][1] = positive + value;\n positive = series[i][j][1];\n } else {\n series[i][j][0] = negative;\n series[i][j][1] = negative + value;\n negative = series[i][j][1];\n }\n /* eslint-enable prefer-destructuring */\n\n }\n }\n};\n/* eslint no-param-reassign: 0 */\n\nexport var offsetPositive = function offsetPositive(series) {\n var n = series.length;\n\n if (n <= 0) {\n return;\n }\n\n for (var j = 0, m = series[0].length; j < m; ++j) {\n var positive = 0;\n\n for (var i = 0; i < n; ++i) {\n var value = _isNaN(series[i][j][1]) ? series[i][j][0] : series[i][j][1];\n /* eslint-disable prefer-destructuring */\n\n if (value >= 0) {\n series[i][j][0] = positive;\n series[i][j][1] = positive + value;\n positive = series[i][j][1];\n } else {\n series[i][j][0] = 0;\n series[i][j][1] = 0;\n }\n /* eslint-enable prefer-destructuring */\n\n }\n }\n};\nvar STACK_OFFSET_MAP = {\n sign: offsetSign,\n expand: stackOffsetExpand,\n none: stackOffsetNone,\n silhouette: stackOffsetSilhouette,\n wiggle: stackOffsetWiggle,\n positive: offsetPositive\n};\nexport var getStackedData = function getStackedData(data, stackItems, offsetType) {\n var dataKeys = stackItems.map(function (item) {\n return item.props.dataKey;\n });\n var stack = shapeStack().keys(dataKeys).value(function (d, key) {\n return +getValueByDataKey(d, key, 0);\n }).order(stackOrderNone).offset(STACK_OFFSET_MAP[offsetType]);\n return stack(data);\n};\nexport var getStackGroupsByAxisId = function getStackGroupsByAxisId(data, _items, numericAxisId, cateAxisId, offsetType, reverseStackOrder) {\n if (!data) {\n return null;\n } // reversing items to affect render order (for layering)\n\n\n var items = reverseStackOrder ? _items.reverse() : _items;\n var stackGroups = items.reduce(function (result, item) {\n var _item$props3 = item.props,\n stackId = _item$props3.stackId,\n hide = _item$props3.hide;\n\n if (hide) {\n return result;\n }\n\n var axisId = item.props[numericAxisId];\n var parentGroup = result[axisId] || {\n hasStack: false,\n stackGroups: {}\n };\n\n if (isNumOrStr(stackId)) {\n var childGroup = parentGroup.stackGroups[stackId] || {\n numericAxisId: numericAxisId,\n cateAxisId: cateAxisId,\n items: []\n };\n childGroup.items.push(item);\n parentGroup.hasStack = true;\n parentGroup.stackGroups[stackId] = childGroup;\n } else {\n parentGroup.stackGroups[uniqueId('_stackId_')] = {\n numericAxisId: numericAxisId,\n cateAxisId: cateAxisId,\n items: [item]\n };\n }\n\n return _objectSpread(_objectSpread({}, result), {}, _defineProperty({}, axisId, parentGroup));\n }, {});\n return Object.keys(stackGroups).reduce(function (result, axisId) {\n var group = stackGroups[axisId];\n\n if (group.hasStack) {\n group.stackGroups = Object.keys(group.stackGroups).reduce(function (res, stackId) {\n var g = group.stackGroups[stackId];\n return _objectSpread(_objectSpread({}, res), {}, _defineProperty({}, stackId, {\n numericAxisId: numericAxisId,\n cateAxisId: cateAxisId,\n items: g.items,\n stackedData: getStackedData(data, g.items, offsetType)\n }));\n }, {});\n }\n\n return _objectSpread(_objectSpread({}, result), {}, _defineProperty({}, axisId, group));\n }, {});\n};\n/**\n * get domain of ticks\n * @param {Array} ticks Ticks of axis\n * @param {String} type The type of axis\n * @return {Array} domain\n */\n\nexport var calculateDomainOfTicks = function calculateDomainOfTicks(ticks, type) {\n if (type === 'number') {\n return [_min(ticks), _max(ticks)];\n }\n\n return ticks;\n};\n/**\n * Configure the scale function of axis\n * @param {Object} scale The scale function\n * @param {Object} opts The configuration of axis\n * @return {Object} null\n */\n\nexport var getTicksOfScale = function getTicksOfScale(scale, opts) {\n var realScaleType = opts.realScaleType,\n type = opts.type,\n tickCount = opts.tickCount,\n originalDomain = opts.originalDomain,\n allowDecimals = opts.allowDecimals;\n var scaleType = realScaleType || opts.scale;\n\n if (scaleType !== 'auto' && scaleType !== 'linear') {\n return null;\n }\n\n if (tickCount && type === 'number' && originalDomain && (originalDomain[0] === 'auto' || originalDomain[1] === 'auto')) {\n // Calculate the ticks by the number of grid when the axis is a number axis\n var domain = scale.domain();\n\n if (!domain.length) {\n return null;\n }\n\n var tickValues = getNiceTickValues(domain, tickCount, allowDecimals);\n scale.domain(calculateDomainOfTicks(tickValues, type));\n return {\n niceTicks: tickValues\n };\n }\n\n if (tickCount && type === 'number') {\n var _domain = scale.domain();\n\n var _tickValues = getTickValuesFixedDomain(_domain, tickCount, allowDecimals);\n\n return {\n niceTicks: _tickValues\n };\n }\n\n return null;\n};\nexport var getCateCoordinateOfLine = function getCateCoordinateOfLine(_ref7) {\n var axis = _ref7.axis,\n ticks = _ref7.ticks,\n bandSize = _ref7.bandSize,\n entry = _ref7.entry,\n index = _ref7.index,\n dataKey = _ref7.dataKey;\n\n if (axis.type === 'category') {\n // find coordinate of category axis by the value of category\n if (!axis.allowDuplicatedCategory && axis.dataKey && !_isNil(entry[axis.dataKey])) {\n var matchedTick = findEntryInArray(ticks, 'value', entry[axis.dataKey]);\n\n if (matchedTick) {\n return matchedTick.coordinate + bandSize / 2;\n }\n }\n\n return ticks[index] ? ticks[index].coordinate + bandSize / 2 : null;\n }\n\n var value = getValueByDataKey(entry, !_isNil(dataKey) ? dataKey : axis.dataKey);\n return !_isNil(value) ? axis.scale(value) : null;\n};\nexport var getCateCoordinateOfBar = function getCateCoordinateOfBar(_ref8) {\n var axis = _ref8.axis,\n ticks = _ref8.ticks,\n offset = _ref8.offset,\n bandSize = _ref8.bandSize,\n entry = _ref8.entry,\n index = _ref8.index;\n\n if (axis.type === 'category') {\n return ticks[index] ? ticks[index].coordinate + offset : null;\n }\n\n var value = getValueByDataKey(entry, axis.dataKey, axis.domain[index]);\n return !_isNil(value) ? axis.scale(value) - bandSize / 2 + offset : null;\n};\nexport var getBaseValueOfBar = function getBaseValueOfBar(_ref9) {\n var numericAxis = _ref9.numericAxis;\n var domain = numericAxis.scale.domain();\n\n if (numericAxis.type === 'number') {\n var min = Math.min(domain[0], domain[1]);\n var max = Math.max(domain[0], domain[1]);\n\n if (min <= 0 && max >= 0) {\n return 0;\n }\n\n if (max < 0) {\n return max;\n }\n\n return min;\n }\n\n return domain[0];\n};\nexport var getStackedDataOfItem = function getStackedDataOfItem(item, stackGroups) {\n var stackId = item.props.stackId;\n\n if (isNumOrStr(stackId)) {\n var group = stackGroups[stackId];\n\n if (group && group.items.length) {\n var itemIndex = -1;\n\n for (var i = 0, len = group.items.length; i < len; i++) {\n if (group.items[i] === item) {\n itemIndex = i;\n break;\n }\n }\n\n return itemIndex >= 0 ? group.stackedData[itemIndex] : null;\n }\n }\n\n return null;\n};\n\nvar getDomainOfSingle = function getDomainOfSingle(data) {\n return data.reduce(function (result, entry) {\n return [_min(entry.concat([result[0]]).filter(isNumber)), _max(entry.concat([result[1]]).filter(isNumber))];\n }, [Infinity, -Infinity]);\n};\n\nexport var getDomainOfStackGroups = function getDomainOfStackGroups(stackGroups, startIndex, endIndex) {\n return Object.keys(stackGroups).reduce(function (result, stackId) {\n var group = stackGroups[stackId];\n var stackedData = group.stackedData;\n var domain = stackedData.reduce(function (res, entry) {\n var s = getDomainOfSingle(entry.slice(startIndex, endIndex + 1));\n return [Math.min(res[0], s[0]), Math.max(res[1], s[1])];\n }, [Infinity, -Infinity]);\n return [Math.min(domain[0], result[0]), Math.max(domain[1], result[1])];\n }, [Infinity, -Infinity]).map(function (result) {\n return result === Infinity || result === -Infinity ? 0 : result;\n });\n};\nexport var MIN_VALUE_REG = /^dataMin[\\s]*-[\\s]*([0-9]+([.]{1}[0-9]+){0,1})$/;\nexport var MAX_VALUE_REG = /^dataMax[\\s]*\\+[\\s]*([0-9]+([.]{1}[0-9]+){0,1})$/;\nexport var parseSpecifiedDomain = function parseSpecifiedDomain(specifiedDomain, dataDomain, allowDataOverflow) {\n if (_isFunction(specifiedDomain)) {\n return specifiedDomain(dataDomain, allowDataOverflow);\n }\n\n if (!_isArray(specifiedDomain)) {\n return dataDomain;\n }\n\n var domain = [];\n /* eslint-disable prefer-destructuring */\n\n if (isNumber(specifiedDomain[0])) {\n domain[0] = allowDataOverflow ? specifiedDomain[0] : Math.min(specifiedDomain[0], dataDomain[0]);\n } else if (MIN_VALUE_REG.test(specifiedDomain[0])) {\n var value = +MIN_VALUE_REG.exec(specifiedDomain[0])[1];\n domain[0] = dataDomain[0] - value;\n } else if (_isFunction(specifiedDomain[0])) {\n domain[0] = specifiedDomain[0](dataDomain[0]);\n } else {\n domain[0] = dataDomain[0];\n }\n\n if (isNumber(specifiedDomain[1])) {\n domain[1] = allowDataOverflow ? specifiedDomain[1] : Math.max(specifiedDomain[1], dataDomain[1]);\n } else if (MAX_VALUE_REG.test(specifiedDomain[1])) {\n var _value = +MAX_VALUE_REG.exec(specifiedDomain[1])[1];\n\n domain[1] = dataDomain[1] + _value;\n } else if (_isFunction(specifiedDomain[1])) {\n domain[1] = specifiedDomain[1](dataDomain[1]);\n } else {\n domain[1] = dataDomain[1];\n }\n /* eslint-enable prefer-destructuring */\n\n\n return domain;\n};\n/**\n * Calculate the size between two category\n * @param {Object} axis The options of axis\n * @param {Array} ticks The ticks of axis\n * @param {Boolean} isBar if items in axis are bars\n * @return {Number} Size\n */\n\nexport var getBandSizeOfAxis = function getBandSizeOfAxis(axis, ticks, isBar) {\n if (axis && axis.scale && axis.scale.bandwidth) {\n var bandWidth = axis.scale.bandwidth();\n\n if (!isBar || bandWidth > 0) {\n return bandWidth;\n }\n }\n\n if (axis && ticks && ticks.length >= 2) {\n var orderedTicks = _sortBy(ticks, function (o) {\n return o.coordinate;\n });\n\n var bandSize = Infinity;\n\n for (var i = 1, len = orderedTicks.length; i < len; i++) {\n var cur = orderedTicks[i];\n var prev = orderedTicks[i - 1];\n bandSize = Math.min((cur.coordinate || 0) - (prev.coordinate || 0), bandSize);\n }\n\n return bandSize === Infinity ? 0 : bandSize;\n }\n\n return isBar ? undefined : 0;\n};\n/**\n * parse the domain of a category axis when a domain is specified\n * @param {Array} specifiedDomain The domain specified by users\n * @param {Array} calculatedDomain The domain calculated by dateKey\n * @param {ReactElement} axisChild The axis element\n * @returns {Array} domains\n */\n\nexport var parseDomainOfCategoryAxis = function parseDomainOfCategoryAxis(specifiedDomain, calculatedDomain, axisChild) {\n if (!specifiedDomain || !specifiedDomain.length) {\n return calculatedDomain;\n }\n\n if (_isEqual(specifiedDomain, _get(axisChild, 'type.defaultProps.domain'))) {\n return calculatedDomain;\n }\n\n return specifiedDomain;\n};\nexport var getTooltipItem = function getTooltipItem(graphicalItem, payload) {\n var _graphicalItem$props = graphicalItem.props,\n dataKey = _graphicalItem$props.dataKey,\n name = _graphicalItem$props.name,\n unit = _graphicalItem$props.unit,\n formatter = _graphicalItem$props.formatter,\n tooltipType = _graphicalItem$props.tooltipType,\n chartType = _graphicalItem$props.chartType;\n return _objectSpread(_objectSpread({}, filterProps(graphicalItem)), {}, {\n dataKey: dataKey,\n unit: unit,\n formatter: formatter,\n name: name || dataKey,\n color: getMainColorOfGraphicItem(graphicalItem),\n value: getValueByDataKey(payload, dataKey),\n type: tooltipType,\n payload: payload,\n chartType: chartType\n });\n};","import none from \"./none.js\";\n\nexport default function(series, order) {\n if (!((n = series.length) > 0)) return;\n for (var i, n, j = 0, m = series[0].length, y; j < m; ++j) {\n for (y = i = 0; i < n; ++i) y += series[i][j][1] || 0;\n if (y) for (i = 0; i < n; ++i) series[i][j][1] /= y;\n }\n none(series, order);\n}\n","import none from \"./none.js\";\n\nexport default function(series, order) {\n if (!((n = series.length) > 0)) return;\n for (var j = 0, s0 = series[order[0]], n, m = s0.length; j < m; ++j) {\n for (var i = 0, y = 0; i < n; ++i) y += series[i][j][1] || 0;\n s0[j][1] += s0[j][0] = -y / 2;\n }\n none(series, order);\n}\n","import none from \"./none.js\";\n\nexport default function(series, order) {\n if (!((n = series.length) > 0) || !((m = (s0 = series[order[0]]).length) > 0)) return;\n for (var y = 0, j = 1, s0, m, n; j < m; ++j) {\n for (var i = 0, s1 = 0, s2 = 0; i < n; ++i) {\n var si = series[order[i]],\n sij0 = si[j][1] || 0,\n sij1 = si[j - 1][1] || 0,\n s3 = (sij0 - sij1) / 2;\n for (var k = 0; k < i; ++k) {\n var sk = series[order[k]],\n skj0 = sk[j][1] || 0,\n skj1 = sk[j - 1][1] || 0;\n s3 += skj0 - skj1;\n }\n s1 += sij0, s2 += s3 * sij0;\n }\n s0[j - 1][1] += s0[j - 1][0] = y;\n if (s1) y -= s2 / s1;\n }\n s0[j - 1][1] += s0[j - 1][0] = y;\n none(series, order);\n}\n","function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\n\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _iterableToArray(iter) { if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter); }\n\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nimport { Global } from './Global';\nvar stringCache = {\n widthCache: {},\n cacheCount: 0\n};\nvar MAX_CACHE_NUM = 2000;\nvar SPAN_STYLE = {\n position: 'absolute',\n top: '-20000px',\n left: 0,\n padding: 0,\n margin: 0,\n border: 'none',\n whiteSpace: 'pre'\n};\nvar STYLE_LIST = ['minWidth', 'maxWidth', 'width', 'minHeight', 'maxHeight', 'height', 'top', 'left', 'fontSize', 'lineHeight', 'padding', 'margin', 'paddingLeft', 'paddingRight', 'paddingTop', 'paddingBottom', 'marginLeft', 'marginRight', 'marginTop', 'marginBottom'];\nvar MEASUREMENT_SPAN_ID = 'recharts_measurement_span';\n\nfunction autoCompleteStyle(name, value) {\n if (STYLE_LIST.indexOf(name) >= 0 && value === +value) {\n return \"\".concat(value, \"px\");\n }\n\n return value;\n}\n\nfunction camelToMiddleLine(text) {\n var strs = text.split('');\n var formatStrs = strs.reduce(function (result, entry) {\n if (entry === entry.toUpperCase()) {\n return [].concat(_toConsumableArray(result), ['-', entry.toLowerCase()]);\n }\n\n return [].concat(_toConsumableArray(result), [entry]);\n }, []);\n return formatStrs.join('');\n}\n\nexport var getStyleString = function getStyleString(style) {\n return Object.keys(style).reduce(function (result, s) {\n return \"\".concat(result).concat(camelToMiddleLine(s), \":\").concat(autoCompleteStyle(s, style[s]), \";\");\n }, '');\n};\nexport var getStringSize = function getStringSize(text) {\n var style = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n if (text === undefined || text === null || Global.isSsr) {\n return {\n width: 0,\n height: 0\n };\n }\n\n var str = \"\".concat(text);\n var styleString = getStyleString(style);\n var cacheKey = \"\".concat(str, \"-\").concat(styleString);\n\n if (stringCache.widthCache[cacheKey]) {\n return stringCache.widthCache[cacheKey];\n }\n\n try {\n var measurementSpan = document.getElementById(MEASUREMENT_SPAN_ID);\n\n if (!measurementSpan) {\n measurementSpan = document.createElement('span');\n measurementSpan.setAttribute('id', MEASUREMENT_SPAN_ID);\n measurementSpan.setAttribute('aria-hidden', 'true');\n document.body.appendChild(measurementSpan);\n } // Need to use CSS Object Model (CSSOM) to be able to comply with Content Security Policy (CSP)\n // https://en.wikipedia.org/wiki/Content_Security_Policy\n\n\n var measurementSpanStyle = _objectSpread(_objectSpread({}, SPAN_STYLE), style);\n\n Object.keys(measurementSpanStyle).map(function (styleKey) {\n measurementSpan.style[styleKey] = measurementSpanStyle[styleKey];\n return styleKey;\n });\n measurementSpan.textContent = str;\n var rect = measurementSpan.getBoundingClientRect();\n var result = {\n width: rect.width,\n height: rect.height\n };\n stringCache.widthCache[cacheKey] = result;\n\n if (++stringCache.cacheCount > MAX_CACHE_NUM) {\n stringCache.cacheCount = 0;\n stringCache.widthCache = {};\n }\n\n return result;\n } catch (e) {\n return {\n width: 0,\n height: 0\n };\n }\n};\nexport var getOffset = function getOffset(el) {\n var html = el.ownerDocument.documentElement;\n var box = {\n top: 0,\n left: 0\n }; // If we don't have gBCR, just use 0,0 rather than error\n // BlackBerry 5, iOS 3 (original iPhone)\n\n if (typeof el.getBoundingClientRect !== 'undefined') {\n box = el.getBoundingClientRect();\n }\n\n return {\n top: box.top + window.pageYOffset - html.clientTop,\n left: box.left + window.pageXOffset - html.clientLeft\n };\n};\n/**\n * Calculate coordinate of cursor in chart\n * @param {Object} event Event object\n * @param {Object} offset The offset of main part in the svg element\n * @return {Object} {chartX, chartY}\n */\n\nexport var calculateChartCoordinate = function calculateChartCoordinate(event, offset) {\n return {\n chartX: Math.round(event.pageX - offset.left),\n chartY: Math.round(event.pageY - offset.top)\n };\n};","import _get from \"lodash/get\";\nimport _isArray from \"lodash/isArray\";\nimport _isNaN from \"lodash/isNaN\";\nimport _isNumber from \"lodash/isNumber\";\nimport _isString from \"lodash/isString\";\nexport var mathSign = function mathSign(value) {\n if (value === 0) {\n return 0;\n }\n\n if (value > 0) {\n return 1;\n }\n\n return -1;\n};\nexport var isPercent = function isPercent(value) {\n return _isString(value) && value.indexOf('%') === value.length - 1;\n};\nexport var isNumber = function isNumber(value) {\n return _isNumber(value) && !_isNaN(value);\n};\nexport var isNumOrStr = function isNumOrStr(value) {\n return isNumber(value) || _isString(value);\n};\nvar idCounter = 0;\nexport var uniqueId = function uniqueId(prefix) {\n var id = ++idCounter;\n return \"\".concat(prefix || '').concat(id);\n};\n/**\n * Get percent value of a total value\n * @param {Number|String} percent A percent\n * @param {Number} totalValue Total value\n * @param {NUmber} defaultValue The value returned when percent is undefined or invalid\n * @param {Boolean} validate If set to be true, the result will be validated\n * @return {Number} value\n */\n\nexport var getPercentValue = function getPercentValue(percent, totalValue) {\n var defaultValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;\n var validate = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;\n\n if (!isNumber(percent) && !_isString(percent)) {\n return defaultValue;\n }\n\n var value;\n\n if (isPercent(percent)) {\n var index = percent.indexOf('%');\n value = totalValue * parseFloat(percent.slice(0, index)) / 100;\n } else {\n value = +percent;\n }\n\n if (_isNaN(value)) {\n value = defaultValue;\n }\n\n if (validate && value > totalValue) {\n value = totalValue;\n }\n\n return value;\n};\nexport var getAnyElementOfObject = function getAnyElementOfObject(obj) {\n if (!obj) {\n return null;\n }\n\n var keys = Object.keys(obj);\n\n if (keys && keys.length) {\n return obj[keys[0]];\n }\n\n return null;\n};\nexport var hasDuplicate = function hasDuplicate(ary) {\n if (!_isArray(ary)) {\n return false;\n }\n\n var len = ary.length;\n var cache = {};\n\n for (var i = 0; i < len; i++) {\n if (!cache[ary[i]]) {\n cache[ary[i]] = true;\n } else {\n return true;\n }\n }\n\n return false;\n};\nexport var interpolateNumber = function interpolateNumber(numberA, numberB) {\n if (isNumber(numberA) && isNumber(numberB)) {\n return function (t) {\n return numberA + t * (numberB - numberA);\n };\n }\n\n return function () {\n return numberB;\n };\n};\nexport function findEntryInArray(ary, specifiedKey, specifiedValue) {\n if (!ary || !ary.length) {\n return null;\n }\n\n return ary.find(function (entry) {\n return entry && (typeof specifiedKey === 'function' ? specifiedKey(entry) : _get(entry, specifiedKey)) === specifiedValue;\n });\n}\n/**\n * The least square linear regression\n * @param {Array} data The array of points\n * @returns {Object} The domain of x, and the parameter of linear function\n */\n\nexport var getLinearRegression = function getLinearRegression(data) {\n if (!data || !data.length) {\n return null;\n }\n\n var len = data.length;\n var xsum = 0;\n var ysum = 0;\n var xysum = 0;\n var xxsum = 0;\n var xmin = Infinity;\n var xmax = -Infinity;\n var xcurrent = 0;\n var ycurrent = 0;\n\n for (var i = 0; i < len; i++) {\n xcurrent = data[i].cx || 0;\n ycurrent = data[i].cy || 0;\n xsum += xcurrent;\n ysum += ycurrent;\n xysum += xcurrent * ycurrent;\n xxsum += xcurrent * xcurrent;\n xmin = Math.min(xmin, xcurrent);\n xmax = Math.max(xmax, xcurrent);\n }\n\n var a = len * xxsum !== xsum * xsum ? (len * xysum - xsum * ysum) / (len * xxsum - xsum * xsum) : 0;\n return {\n xmin: xmin,\n xmax: xmax,\n a: a,\n b: (ysum - a * xsum) / len\n };\n};","var parseIsSsrByDefault = function parseIsSsrByDefault() {\n return !(typeof window !== 'undefined' && window.document && window.document.createElement && window.setTimeout);\n};\n\nexport var Global = {\n isSsr: parseIsSsrByDefault(),\n get: function get(key) {\n return Global[key];\n },\n set: function set(key, value) {\n if (typeof key === 'string') {\n Global[key] = value;\n } else {\n var keys = Object.keys(key);\n\n if (keys && keys.length) {\n keys.forEach(function (k) {\n Global[k] = key[k];\n });\n }\n }\n }\n};","import _isNil from \"lodash/isNil\";\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\n\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction _iterableToArrayLimit(arr, i) { if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\nimport { getPercentValue } from './DataUtils';\nimport { parseScale, checkDomainOfScale, getTicksOfScale } from './ChartUtils';\nexport var RADIAN = Math.PI / 180;\nexport var degreeToRadian = function degreeToRadian(angle) {\n return angle * Math.PI / 180;\n};\nexport var radianToDegree = function radianToDegree(angleInRadian) {\n return angleInRadian * 180 / Math.PI;\n};\nexport var polarToCartesian = function polarToCartesian(cx, cy, radius, angle) {\n return {\n x: cx + Math.cos(-RADIAN * angle) * radius,\n y: cy + Math.sin(-RADIAN * angle) * radius\n };\n};\nexport var getMaxRadius = function getMaxRadius(width, height) {\n var offset = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {\n top: 0,\n right: 0,\n bottom: 0,\n left: 0\n };\n return Math.min(Math.abs(width - (offset.left || 0) - (offset.right || 0)), Math.abs(height - (offset.top || 0) - (offset.bottom || 0))) / 2;\n};\n/**\n * Calculate the scale function, position, width, height of axes\n * @param {Object} props Latest props\n * @param {Object} axisMap The configuration of axes\n * @param {Object} offset The offset of main part in the svg element\n * @param {Object} axisType The type of axes, radius-axis or angle-axis\n * @param {String} chartName The name of chart\n * @return {Object} Configuration\n */\n\nexport var formatAxisMap = function formatAxisMap(props, axisMap, offset, axisType, chartName) {\n var width = props.width,\n height = props.height;\n var startAngle = props.startAngle,\n endAngle = props.endAngle;\n var cx = getPercentValue(props.cx, width, width / 2);\n var cy = getPercentValue(props.cy, height, height / 2);\n var maxRadius = getMaxRadius(width, height, offset);\n var innerRadius = getPercentValue(props.innerRadius, maxRadius, 0);\n var outerRadius = getPercentValue(props.outerRadius, maxRadius, maxRadius * 0.8);\n var ids = Object.keys(axisMap);\n return ids.reduce(function (result, id) {\n var axis = axisMap[id];\n var domain = axis.domain,\n reversed = axis.reversed;\n var range;\n\n if (_isNil(axis.range)) {\n if (axisType === 'angleAxis') {\n range = [startAngle, endAngle];\n } else if (axisType === 'radiusAxis') {\n range = [innerRadius, outerRadius];\n }\n\n if (reversed) {\n range = [range[1], range[0]];\n }\n } else {\n range = axis.range;\n var _range = range;\n\n var _range2 = _slicedToArray(_range, 2);\n\n startAngle = _range2[0];\n endAngle = _range2[1];\n }\n\n var _parseScale = parseScale(axis, chartName),\n realScaleType = _parseScale.realScaleType,\n scale = _parseScale.scale;\n\n scale.domain(domain).range(range);\n checkDomainOfScale(scale);\n var ticks = getTicksOfScale(scale, _objectSpread(_objectSpread({}, axis), {}, {\n realScaleType: realScaleType\n }));\n\n var finalAxis = _objectSpread(_objectSpread(_objectSpread({}, axis), ticks), {}, {\n range: range,\n radius: outerRadius,\n realScaleType: realScaleType,\n scale: scale,\n cx: cx,\n cy: cy,\n innerRadius: innerRadius,\n outerRadius: outerRadius,\n startAngle: startAngle,\n endAngle: endAngle\n });\n\n return _objectSpread(_objectSpread({}, result), {}, _defineProperty({}, id, finalAxis));\n }, {});\n};\nexport var distanceBetweenPoints = function distanceBetweenPoints(point, anotherPoint) {\n var x1 = point.x,\n y1 = point.y;\n var x2 = anotherPoint.x,\n y2 = anotherPoint.y;\n return Math.sqrt(Math.pow(x1 - x2, 2) + Math.pow(y1 - y2, 2));\n};\nexport var getAngleOfPoint = function getAngleOfPoint(_ref, _ref2) {\n var x = _ref.x,\n y = _ref.y;\n var cx = _ref2.cx,\n cy = _ref2.cy;\n var radius = distanceBetweenPoints({\n x: x,\n y: y\n }, {\n x: cx,\n y: cy\n });\n\n if (radius <= 0) {\n return {\n radius: radius\n };\n }\n\n var cos = (x - cx) / radius;\n var angleInRadian = Math.acos(cos);\n\n if (y > cy) {\n angleInRadian = 2 * Math.PI - angleInRadian;\n }\n\n return {\n radius: radius,\n angle: radianToDegree(angleInRadian),\n angleInRadian: angleInRadian\n };\n};\nexport var formatAngleOfSector = function formatAngleOfSector(_ref3) {\n var startAngle = _ref3.startAngle,\n endAngle = _ref3.endAngle;\n var startCnt = Math.floor(startAngle / 360);\n var endCnt = Math.floor(endAngle / 360);\n var min = Math.min(startCnt, endCnt);\n return {\n startAngle: startAngle - min * 360,\n endAngle: endAngle - min * 360\n };\n};\n\nvar reverseFormatAngleOfSetor = function reverseFormatAngleOfSetor(angle, _ref4) {\n var startAngle = _ref4.startAngle,\n endAngle = _ref4.endAngle;\n var startCnt = Math.floor(startAngle / 360);\n var endCnt = Math.floor(endAngle / 360);\n var min = Math.min(startCnt, endCnt);\n return angle + min * 360;\n};\n\nexport var inRangeOfSector = function inRangeOfSector(_ref5, sector) {\n var x = _ref5.x,\n y = _ref5.y;\n\n var _getAngleOfPoint = getAngleOfPoint({\n x: x,\n y: y\n }, sector),\n radius = _getAngleOfPoint.radius,\n angle = _getAngleOfPoint.angle;\n\n var innerRadius = sector.innerRadius,\n outerRadius = sector.outerRadius;\n\n if (radius < innerRadius || radius > outerRadius) {\n return false;\n }\n\n if (radius === 0) {\n return true;\n }\n\n var _formatAngleOfSector = formatAngleOfSector(sector),\n startAngle = _formatAngleOfSector.startAngle,\n endAngle = _formatAngleOfSector.endAngle;\n\n var formatAngle = angle;\n var inRange;\n\n if (startAngle <= endAngle) {\n while (formatAngle > endAngle) {\n formatAngle -= 360;\n }\n\n while (formatAngle < startAngle) {\n formatAngle += 360;\n }\n\n inRange = formatAngle >= startAngle && formatAngle <= endAngle;\n } else {\n while (formatAngle > startAngle) {\n formatAngle -= 360;\n }\n\n while (formatAngle < endAngle) {\n formatAngle += 360;\n }\n\n inRange = formatAngle >= endAngle && formatAngle <= startAngle;\n }\n\n if (inRange) {\n return _objectSpread(_objectSpread({}, sector), {}, {\n radius: radius,\n angle: reverseFormatAngleOfSetor(formatAngle, sector)\n });\n }\n\n return null;\n};","import _isString from \"lodash/isString\";\nimport _get from \"lodash/get\";\nimport _isNil from \"lodash/isNil\";\nimport _isArray from \"lodash/isArray\";\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport { Children } from 'react';\nimport { isFragment } from 'react-is';\nimport { isNumber } from './DataUtils';\nimport { shallowEqual } from './ShallowEqual';\nvar REACT_BROWSER_EVENT_MAP = {\n click: 'onClick',\n mousedown: 'onMouseDown',\n mouseup: 'onMouseUp',\n mouseover: 'onMouseOver',\n mousemove: 'onMouseMove',\n mouseout: 'onMouseOut',\n mouseenter: 'onMouseEnter',\n mouseleave: 'onMouseLeave',\n touchcancel: 'onTouchCancel',\n touchend: 'onTouchEnd',\n touchmove: 'onTouchMove',\n touchstart: 'onTouchStart'\n};\nexport var SCALE_TYPES = ['auto', 'linear', 'pow', 'sqrt', 'log', 'identity', 'time', 'band', 'point', 'ordinal', 'quantile', 'quantize', 'utc', 'sequential', 'threshold'];\nexport var LEGEND_TYPES = ['plainline', 'line', 'square', 'rect', 'circle', 'cross', 'diamond', 'star', 'triangle', 'wye', 'none'];\nexport var TOOLTIP_TYPES = ['none'];\n/**\n * Get the display name of a component\n * @param {Object} Comp Specified Component\n * @return {String} Display name of Component\n */\n\nexport var getDisplayName = function getDisplayName(Comp) {\n if (typeof Comp === 'string') {\n return Comp;\n }\n\n if (!Comp) {\n return '';\n }\n\n return Comp.displayName || Comp.name || 'Component';\n}; // `toArray` gets called multiple times during the render\n// so we can memoize last invocation (since reference to `children` is the same)\n\nvar lastChildren = null;\nvar lastResult = null;\nexport var toArray = function toArray(children) {\n if (children === lastChildren && _isArray(lastResult)) {\n return lastResult;\n }\n\n var result = [];\n Children.forEach(children, function (child) {\n if (_isNil(child)) return;\n\n if (isFragment(child)) {\n result = result.concat(toArray(child.props.children));\n } else {\n result.push(child);\n }\n });\n lastResult = result;\n lastChildren = children;\n return result;\n};\n/*\n * Find and return all matched children by type. `type` can be a React element class or\n * string\n */\n\nexport var findAllByType = function findAllByType(children, type) {\n var result = [];\n var types = [];\n\n if (_isArray(type)) {\n types = type.map(function (t) {\n return getDisplayName(t);\n });\n } else {\n types = [getDisplayName(type)];\n }\n\n toArray(children).forEach(function (child) {\n var childType = _get(child, 'type.displayName') || _get(child, 'type.name');\n\n if (types.indexOf(childType) !== -1) {\n result.push(child);\n }\n });\n return result;\n};\n/*\n * Return the first matched child by type, return null otherwise.\n * `type` can be a React element class or string.\n */\n\nexport var findChildByType = function findChildByType(children, type) {\n var result = findAllByType(children, type);\n return result && result[0];\n};\n/*\n * Create a new array of children excluding the ones matched the type\n */\n\nexport var withoutType = function withoutType(children, type) {\n var newChildren = [];\n var types;\n\n if (_isArray(type)) {\n types = type.map(function (t) {\n return getDisplayName(t);\n });\n } else {\n types = [getDisplayName(type)];\n }\n\n toArray(children).forEach(function (child) {\n var displayName = _get(child, 'type.displayName');\n\n if (displayName && types.indexOf(displayName) !== -1) {\n return;\n }\n\n newChildren.push(child);\n });\n return newChildren;\n};\n/**\n * validate the width and height props of a chart element\n * @param {Object} el A chart element\n * @return {Boolean} true If the props width and height are number, and greater than 0\n */\n\nexport var validateWidthHeight = function validateWidthHeight(el) {\n if (!el || !el.props) {\n return false;\n }\n\n var _el$props = el.props,\n width = _el$props.width,\n height = _el$props.height;\n\n if (!isNumber(width) || width <= 0 || !isNumber(height) || height <= 0) {\n return false;\n }\n\n return true;\n};\nvar SVG_TAGS = ['a', 'altGlyph', 'altGlyphDef', 'altGlyphItem', 'animate', 'animateColor', 'animateMotion', 'animateTransform', 'circle', 'clipPath', 'color-profile', 'cursor', 'defs', 'desc', 'ellipse', 'feBlend', 'feColormatrix', 'feComponentTransfer', 'feComposite', 'feConvolveMatrix', 'feDiffuseLighting', 'feDisplacementMap', 'feDistantLight', 'feFlood', 'feFuncA', 'feFuncB', 'feFuncG', 'feFuncR', 'feGaussianBlur', 'feImage', 'feMerge', 'feMergeNode', 'feMorphology', 'feOffset', 'fePointLight', 'feSpecularLighting', 'feSpotLight', 'feTile', 'feTurbulence', 'filter', 'font', 'font-face', 'font-face-format', 'font-face-name', 'font-face-url', 'foreignObject', 'g', 'glyph', 'glyphRef', 'hkern', 'image', 'line', 'lineGradient', 'marker', 'mask', 'metadata', 'missing-glyph', 'mpath', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'script', 'set', 'stop', 'style', 'svg', 'switch', 'symbol', 'text', 'textPath', 'title', 'tref', 'tspan', 'use', 'view', 'vkern'];\n\nvar isSvgElement = function isSvgElement(child) {\n return child && child.type && _isString(child.type) && SVG_TAGS.indexOf(child.type) >= 0;\n};\n/**\n * Filter all the svg elements of children\n * @param {Array} children The children of a react element\n * @return {Array} All the svg elements\n */\n\n\nexport var filterSvgElements = function filterSvgElements(children) {\n var svgElements = [];\n toArray(children).forEach(function (entry) {\n if (isSvgElement(entry)) {\n svgElements.push(entry);\n }\n });\n return svgElements;\n};\n/**\n * Wether props of children changed\n * @param {Object} nextChildren The latest children\n * @param {Object} prevChildren The prev children\n * @return {Boolean} equal or not\n */\n\nexport var isChildrenEqual = function isChildrenEqual(nextChildren, prevChildren) {\n if (nextChildren === prevChildren) {\n return true;\n }\n\n var count = Children.count(nextChildren);\n\n if (count !== Children.count(prevChildren)) {\n return false;\n }\n\n if (count === 0) {\n return true;\n }\n\n if (count === 1) {\n // eslint-disable-next-line no-use-before-define,@typescript-eslint/no-use-before-define\n return isSingleChildEqual(_isArray(nextChildren) ? nextChildren[0] : nextChildren, _isArray(prevChildren) ? prevChildren[0] : prevChildren);\n }\n\n for (var i = 0; i < count; i++) {\n var nextChild = nextChildren[i];\n var prevChild = prevChildren[i];\n\n if (_isArray(nextChild) || _isArray(prevChild)) {\n if (!isChildrenEqual(nextChild, prevChild)) {\n return false;\n } // eslint-disable-next-line no-use-before-define,@typescript-eslint/no-use-before-define\n\n } else if (!isSingleChildEqual(nextChild, prevChild)) {\n return false;\n }\n }\n\n return true;\n};\nexport var isSingleChildEqual = function isSingleChildEqual(nextChild, prevChild) {\n if (_isNil(nextChild) && _isNil(prevChild)) {\n return true;\n }\n\n if (!_isNil(nextChild) && !_isNil(prevChild)) {\n var _ref = nextChild.props || {},\n nextChildren = _ref.children,\n nextProps = _objectWithoutProperties(_ref, [\"children\"]);\n\n var _ref2 = prevChild.props || {},\n prevChildren = _ref2.children,\n prevProps = _objectWithoutProperties(_ref2, [\"children\"]);\n\n if (nextChildren && prevChildren) {\n // eslint-disable-next-line no-use-before-define\n return shallowEqual(nextProps, prevProps) && isChildrenEqual(nextChildren, prevChildren);\n }\n\n if (!nextChildren && !prevChildren) {\n return shallowEqual(nextProps, prevProps);\n }\n\n return false;\n }\n\n return false;\n};\nexport var renderByOrder = function renderByOrder(children, renderMap) {\n var elements = [];\n var record = {};\n toArray(children).forEach(function (child, index) {\n if (isSvgElement(child)) {\n elements.push(child);\n } else if (child) {\n var displayName = getDisplayName(child.type);\n\n var _ref3 = renderMap[displayName] || {},\n handler = _ref3.handler,\n once = _ref3.once;\n\n if (handler && (!once || !record[displayName])) {\n var results = handler(child, displayName, index);\n elements.push(results);\n record[displayName] = true;\n }\n }\n });\n return elements;\n};\nexport var getReactEventByType = function getReactEventByType(e) {\n var type = e && e.type;\n\n if (type && REACT_BROWSER_EVENT_MAP[type]) {\n return REACT_BROWSER_EVENT_MAP[type];\n }\n\n return null;\n};\nexport var parseChildIndex = function parseChildIndex(child, children) {\n return toArray(children).indexOf(child);\n};","export function shallowEqual(a, b) {\n /* eslint-disable no-restricted-syntax */\n for (var key in a) {\n if ({}.hasOwnProperty.call(a, key) && (!{}.hasOwnProperty.call(b, key) || a[key] !== b[key])) {\n return false;\n }\n }\n\n for (var _key in b) {\n if ({}.hasOwnProperty.call(b, _key) && !{}.hasOwnProperty.call(a, _key)) {\n return false;\n }\n }\n\n return true;\n}","import _isObject from \"lodash/isObject\";\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport { isValidElement } from 'react';\nvar SVGContainerPropKeys = ['viewBox', 'children'];\nvar SVGElementPropKeys = ['aria-activedescendant', 'aria-atomic', 'aria-autocomplete', 'aria-busy', 'aria-checked', 'aria-colcount', 'aria-colindex', 'aria-colspan', 'aria-controls', 'aria-current', 'aria-describedby', 'aria-details', 'aria-disabled', 'aria-errormessage', 'aria-expanded', 'aria-flowto', 'aria-haspopup', 'aria-hidden', 'aria-invalid', 'aria-keyshortcuts', 'aria-label', 'aria-labelledby', 'aria-level', 'aria-live', 'aria-modal', 'aria-multiline', 'aria-multiselectable', 'aria-orientation', 'aria-owns', 'aria-placeholder', 'aria-posinset', 'aria-pressed', 'aria-readonly', 'aria-relevant', 'aria-required', 'aria-roledescription', 'aria-rowcount', 'aria-rowindex', 'aria-rowspan', 'aria-selected', 'aria-setsize', 'aria-sort', 'aria-valuemax', 'aria-valuemin', 'aria-valuenow', 'aria-valuetext', 'className', 'color', 'height', 'id', 'lang', 'max', 'media', 'method', 'min', 'name', 'style', 'target', 'type', 'width', 'role', 'tabIndex', 'accentHeight', 'accumulate', 'additive', 'alignmentBaseline', 'allowReorder', 'alphabetic', 'amplitude', 'arabicForm', 'ascent', 'attributeName', 'attributeType', 'autoReverse', 'azimuth', 'baseFrequency', 'baselineShift', 'baseProfile', 'bbox', 'begin', 'bias', 'by', 'calcMode', 'capHeight', 'clip', 'clipPath', 'clipPathUnits', 'clipRule', 'colorInterpolation', 'colorInterpolationFilters', 'colorProfile', 'colorRendering', 'contentScriptType', 'contentStyleType', 'cursor', 'cx', 'cy', 'd', 'decelerate', 'descent', 'diffuseConstant', 'direction', 'display', 'divisor', 'dominantBaseline', 'dur', 'dx', 'dy', 'edgeMode', 'elevation', 'enableBackground', 'end', 'exponent', 'externalResourcesRequired', 'fill', 'fillOpacity', 'fillRule', 'filter', 'filterRes', 'filterUnits', 'floodColor', 'floodOpacity', 'focusable', 'fontFamily', 'fontSize', 'fontSizeAdjust', 'fontStretch', 'fontStyle', 'fontVariant', 'fontWeight', 'format', 'from', 'fx', 'fy', 'g1', 'g2', 'glyphName', 'glyphOrientationHorizontal', 'glyphOrientationVertical', 'glyphRef', 'gradientTransform', 'gradientUnits', 'hanging', 'horizAdvX', 'horizOriginX', 'href', 'ideographic', 'imageRendering', 'in2', 'in', 'intercept', 'k1', 'k2', 'k3', 'k4', 'k', 'kernelMatrix', 'kernelUnitLength', 'kerning', 'keyPoints', 'keySplines', 'keyTimes', 'lengthAdjust', 'letterSpacing', 'lightingColor', 'limitingConeAngle', 'local', 'markerEnd', 'markerHeight', 'markerMid', 'markerStart', 'markerUnits', 'markerWidth', 'mask', 'maskContentUnits', 'maskUnits', 'mathematical', 'mode', 'numOctaves', 'offset', 'opacity', 'operator', 'order', 'orient', 'orientation', 'origin', 'overflow', 'overlinePosition', 'overlineThickness', 'paintOrder', 'panose1', 'pathLength', 'patternContentUnits', 'patternTransform', 'patternUnits', 'pointerEvents', 'points', 'pointsAtX', 'pointsAtY', 'pointsAtZ', 'preserveAlpha', 'preserveAspectRatio', 'primitiveUnits', 'r', 'radius', 'refX', 'refY', 'renderingIntent', 'repeatCount', 'repeatDur', 'requiredExtensions', 'requiredFeatures', 'restart', 'result', 'rotate', 'rx', 'ry', 'seed', 'shapeRendering', 'slope', 'spacing', 'specularConstant', 'specularExponent', 'speed', 'spreadMethod', 'startOffset', 'stdDeviation', 'stemh', 'stemv', 'stitchTiles', 'stopColor', 'stopOpacity', 'strikethroughPosition', 'strikethroughThickness', 'string', 'stroke', 'strokeDasharray', 'strokeDashoffset', 'strokeLinecap', 'strokeLinejoin', 'strokeMiterlimit', 'strokeOpacity', 'strokeWidth', 'surfaceScale', 'systemLanguage', 'tableValues', 'targetX', 'targetY', 'textAnchor', 'textDecoration', 'textLength', 'textRendering', 'to', 'transform', 'u1', 'u2', 'underlinePosition', 'underlineThickness', 'unicode', 'unicodeBidi', 'unicodeRange', 'unitsPerEm', 'vAlphabetic', 'values', 'vectorEffect', 'version', 'vertAdvY', 'vertOriginX', 'vertOriginY', 'vHanging', 'vIdeographic', 'viewTarget', 'visibility', 'vMathematical', 'widths', 'wordSpacing', 'writingMode', 'x1', 'x2', 'x', 'xChannelSelector', 'xHeight', 'xlinkActuate', 'xlinkArcrole', 'xlinkHref', 'xlinkRole', 'xlinkShow', 'xlinkTitle', 'xlinkType', 'xmlBase', 'xmlLang', 'xmlns', 'xmlnsXlink', 'xmlSpace', 'y1', 'y2', 'y', 'yChannelSelector', 'z', 'zoomAndPan', 'ref', 'key', 'angle'];\nvar EventKeys = ['dangerouslySetInnerHTML', 'onCopy', 'onCopyCapture', 'onCut', 'onCutCapture', 'onPaste', 'onPasteCapture', 'onCompositionEnd', 'onCompositionEndCapture', 'onCompositionStart', 'onCompositionStartCapture', 'onCompositionUpdate', 'onCompositionUpdateCapture', 'onFocus', 'onFocusCapture', 'onBlur', 'onBlurCapture', 'onChange', 'onChangeCapture', 'onBeforeInput', 'onBeforeInputCapture', 'onInput', 'onInputCapture', 'onReset', 'onResetCapture', 'onSubmit', 'onSubmitCapture', 'onInvalid', 'onInvalidCapture', 'onLoad', 'onLoadCapture', 'onError', 'onErrorCapture', 'onKeyDown', 'onKeyDownCapture', 'onKeyPress', 'onKeyPressCapture', 'onKeyUp', 'onKeyUpCapture', 'onAbort', 'onAbortCapture', 'onCanPlay', 'onCanPlayCapture', 'onCanPlayThrough', 'onCanPlayThroughCapture', 'onDurationChange', 'onDurationChangeCapture', 'onEmptied', 'onEmptiedCapture', 'onEncrypted', 'onEncryptedCapture', 'onEnded', 'onEndedCapture', 'onLoadedData', 'onLoadedDataCapture', 'onLoadedMetadata', 'onLoadedMetadataCapture', 'onLoadStart', 'onLoadStartCapture', 'onPause', 'onPauseCapture', 'onPlay', 'onPlayCapture', 'onPlaying', 'onPlayingCapture', 'onProgress', 'onProgressCapture', 'onRateChange', 'onRateChangeCapture', 'onSeeked', 'onSeekedCapture', 'onSeeking', 'onSeekingCapture', 'onStalled', 'onStalledCapture', 'onSuspend', 'onSuspendCapture', 'onTimeUpdate', 'onTimeUpdateCapture', 'onVolumeChange', 'onVolumeChangeCapture', 'onWaiting', 'onWaitingCapture', 'onAuxClick', 'onAuxClickCapture', 'onClick', 'onClickCapture', 'onContextMenu', 'onContextMenuCapture', 'onDoubleClick', 'onDoubleClickCapture', 'onDrag', 'onDragCapture', 'onDragEnd', 'onDragEndCapture', 'onDragEnter', 'onDragEnterCapture', 'onDragExit', 'onDragExitCapture', 'onDragLeave', 'onDragLeaveCapture', 'onDragOver', 'onDragOverCapture', 'onDragStart', 'onDragStartCapture', 'onDrop', 'onDropCapture', 'onMouseDown', 'onMouseDownCapture', 'onMouseEnter', 'onMouseLeave', 'onMouseMove', 'onMouseMoveCapture', 'onMouseOut', 'onMouseOutCapture', 'onMouseOver', 'onMouseOverCapture', 'onMouseUp', 'onMouseUpCapture', 'onSelect', 'onSelectCapture', 'onTouchCancel', 'onTouchCancelCapture', 'onTouchEnd', 'onTouchEndCapture', 'onTouchMove', 'onTouchMoveCapture', 'onTouchStart', 'onTouchStartCapture', 'onPointerDown', 'onPointerDownCapture', 'onPointerMove', 'onPointerMoveCapture', 'onPointerUp', 'onPointerUpCapture', 'onPointerCancel', 'onPointerCancelCapture', 'onPointerEnter', 'onPointerEnterCapture', 'onPointerLeave', 'onPointerLeaveCapture', 'onPointerOver', 'onPointerOverCapture', 'onPointerOut', 'onPointerOutCapture', 'onGotPointerCapture', 'onGotPointerCaptureCapture', 'onLostPointerCapture', 'onLostPointerCaptureCapture', 'onScroll', 'onScrollCapture', 'onWheel', 'onWheelCapture', 'onAnimationStart', 'onAnimationStartCapture', 'onAnimationEnd', 'onAnimationEndCapture', 'onAnimationIteration', 'onAnimationIterationCapture', 'onTransitionEnd', 'onTransitionEndCapture']; // Animation Types => TODO: Should be moved when react-smooth is typescriptified.\n\nexport var filterProps = function filterProps(props, includeEvents, isSvg) {\n if (!props || typeof props === 'function' || typeof props === 'boolean') {\n return null;\n }\n\n var inputProps = props;\n\n if ( /*#__PURE__*/isValidElement(props)) {\n inputProps = props.props;\n }\n\n if (!_isObject(inputProps)) {\n return null;\n }\n\n var out = {};\n Object.keys(inputProps).forEach(function (key) {\n // viewBox only exist in \n if (SVGElementPropKeys.includes(key) || isSvg && SVGContainerPropKeys.includes(key) || includeEvents && EventKeys.includes(key)) {\n out[key] = inputProps[key];\n }\n });\n return out;\n};\nexport var adaptEventHandlers = function adaptEventHandlers(props, newHandler) {\n if (!props || typeof props === 'function' || typeof props === 'boolean') {\n return null;\n }\n\n var inputProps = props;\n\n if ( /*#__PURE__*/isValidElement(props)) {\n inputProps = props.props;\n }\n\n if (!_isObject(inputProps)) {\n return null;\n }\n\n var out = {};\n Object.keys(inputProps).forEach(function (key) {\n if (EventKeys.includes(key)) {\n out[key] = newHandler || function (e) {\n return inputProps[key](inputProps, e);\n };\n }\n });\n return out;\n};\n\nvar getEventHandlerOfChild = function getEventHandlerOfChild(originalHandler, data, index) {\n return function (e) {\n originalHandler(data, index, e);\n return null;\n };\n};\n\nexport var adaptEventsOfChild = function adaptEventsOfChild(props, data, index) {\n if (!_isObject(props) || _typeof(props) !== 'object') {\n return null;\n }\n\n var out = null;\n Object.keys(props).forEach(function (key) {\n var item = props[key];\n\n if (EventKeys.includes(key) && typeof item === 'function') {\n if (!out) out = {};\n out[key] = getEventHandlerOfChild(item, data, index);\n }\n });\n return out;\n};","/** @license React v16.13.1\n * react-is.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';var b=\"function\"===typeof Symbol&&Symbol.for,c=b?Symbol.for(\"react.element\"):60103,d=b?Symbol.for(\"react.portal\"):60106,e=b?Symbol.for(\"react.fragment\"):60107,f=b?Symbol.for(\"react.strict_mode\"):60108,g=b?Symbol.for(\"react.profiler\"):60114,h=b?Symbol.for(\"react.provider\"):60109,k=b?Symbol.for(\"react.context\"):60110,l=b?Symbol.for(\"react.async_mode\"):60111,m=b?Symbol.for(\"react.concurrent_mode\"):60111,n=b?Symbol.for(\"react.forward_ref\"):60112,p=b?Symbol.for(\"react.suspense\"):60113,q=b?\nSymbol.for(\"react.suspense_list\"):60120,r=b?Symbol.for(\"react.memo\"):60115,t=b?Symbol.for(\"react.lazy\"):60116,v=b?Symbol.for(\"react.block\"):60121,w=b?Symbol.for(\"react.fundamental\"):60117,x=b?Symbol.for(\"react.responder\"):60118,y=b?Symbol.for(\"react.scope\"):60119;\nfunction z(a){if(\"object\"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}exports.AsyncMode=l;exports.ConcurrentMode=m;exports.ContextConsumer=k;exports.ContextProvider=h;exports.Element=c;exports.ForwardRef=n;exports.Fragment=e;exports.Lazy=t;exports.Memo=r;exports.Portal=d;\nexports.Profiler=g;exports.StrictMode=f;exports.Suspense=p;exports.isAsyncMode=function(a){return A(a)||z(a)===l};exports.isConcurrentMode=A;exports.isContextConsumer=function(a){return z(a)===k};exports.isContextProvider=function(a){return z(a)===h};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===c};exports.isForwardRef=function(a){return z(a)===n};exports.isFragment=function(a){return z(a)===e};exports.isLazy=function(a){return z(a)===t};\nexports.isMemo=function(a){return z(a)===r};exports.isPortal=function(a){return z(a)===d};exports.isProfiler=function(a){return z(a)===g};exports.isStrictMode=function(a){return z(a)===f};exports.isSuspense=function(a){return z(a)===p};\nexports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||\"object\"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};exports.typeOf=z;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}\n","'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nvar _postcssValueParser = require('postcss-value-parser');\n\nvar _postcssValueParser2 = _interopRequireDefault(_postcssValueParser);\n\nvar _parser = require('./parser');\n\nvar _reducer = require('./lib/reducer');\n\nvar _reducer2 = _interopRequireDefault(_reducer);\n\nvar _stringifier = require('./lib/stringifier');\n\nvar _stringifier2 = _interopRequireDefault(_stringifier);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n// eslint-disable-line\nvar MATCH_CALC = /((?:\\-[a-z]+\\-)?calc)/;\n\nexports.default = function (value) {\n var precision = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 5;\n\n return (0, _postcssValueParser2.default)(value).walk(function (node) {\n // skip anything which isn't a calc() function\n if (node.type !== 'function' || !MATCH_CALC.test(node.value)) return;\n\n // stringify calc expression and produce an AST\n var contents = _postcssValueParser2.default.stringify(node.nodes);\n\n // skip constant() and env()\n if (contents.indexOf('constant') >= 0 || contents.indexOf('env') >= 0) return;\n\n var ast = _parser.parser.parse(contents);\n\n // reduce AST to its simplest form, that is, either to a single value\n // or a simplified calc expression\n var reducedAst = (0, _reducer2.default)(ast, precision);\n\n // stringify AST and write it back\n node.type = 'word';\n node.value = (0, _stringifier2.default)(node.value, reducedAst, precision);\n }, true).toString();\n};\n\nmodule.exports = exports['default'];","'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nvar _cssUnitConverter = require('css-unit-converter');\n\nvar _cssUnitConverter2 = _interopRequireDefault(_cssUnitConverter);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction convertNodes(left, right, precision) {\n switch (left.type) {\n case 'LengthValue':\n case 'AngleValue':\n case 'TimeValue':\n case 'FrequencyValue':\n case 'ResolutionValue':\n return convertAbsoluteLength(left, right, precision);\n default:\n return { left: left, right: right };\n }\n}\n\nfunction convertAbsoluteLength(left, right, precision) {\n if (right.type === left.type) {\n right = {\n type: left.type,\n value: (0, _cssUnitConverter2.default)(right.value, right.unit, left.unit, precision),\n unit: left.unit\n };\n }\n return { left: left, right: right };\n}\n\nexports.default = convertNodes;\nmodule.exports = exports['default'];","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.flip = flip;\n\nvar _convert = require(\"./convert\");\n\nvar _convert2 = _interopRequireDefault(_convert);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction reduce(node, precision) {\n if (node.type === \"MathExpression\") return reduceMathExpression(node, precision);\n if (node.type === \"Calc\") return reduce(node.value, precision);\n\n return node;\n}\n\nfunction isEqual(left, right) {\n return left.type === right.type && left.value === right.value;\n}\n\nfunction isValueType(type) {\n switch (type) {\n case 'LengthValue':\n case 'AngleValue':\n case 'TimeValue':\n case 'FrequencyValue':\n case 'ResolutionValue':\n case 'EmValue':\n case 'ExValue':\n case 'ChValue':\n case 'RemValue':\n case 'VhValue':\n case 'VwValue':\n case 'VminValue':\n case 'VmaxValue':\n case 'PercentageValue':\n case 'Value':\n return true;\n }\n return false;\n}\n\nfunction convertMathExpression(node, precision) {\n var nodes = (0, _convert2.default)(node.left, node.right, precision);\n var left = reduce(nodes.left, precision);\n var right = reduce(nodes.right, precision);\n\n if (left.type === \"MathExpression\" && right.type === \"MathExpression\") {\n\n if (left.operator === '/' && right.operator === '*' || left.operator === '-' && right.operator === '+' || left.operator === '*' && right.operator === '/' || left.operator === '+' && right.operator === '-') {\n\n if (isEqual(left.right, right.right)) nodes = (0, _convert2.default)(left.left, right.left, precision);else if (isEqual(left.right, right.left)) nodes = (0, _convert2.default)(left.left, right.right, precision);\n\n left = reduce(nodes.left, precision);\n right = reduce(nodes.right, precision);\n }\n }\n\n node.left = left;\n node.right = right;\n return node;\n}\n\nfunction flip(operator) {\n return operator === '+' ? '-' : '+';\n}\n\nfunction flipValue(node) {\n if (isValueType(node.type)) node.value = -node.value;else if (node.type == 'MathExpression') {\n node.left = flipValue(node.left);\n node.right = flipValue(node.right);\n }\n return node;\n}\n\nfunction reduceAddSubExpression(node, precision) {\n var _node = node,\n left = _node.left,\n right = _node.right,\n op = _node.operator;\n\n\n if (left.type === 'CssVariable' || right.type === 'CssVariable') return node;\n\n // something + 0 => something\n // something - 0 => something\n if (right.value === 0) return left;\n\n // 0 + something => something\n if (left.value === 0 && op === \"+\") return right;\n\n // 0 - something => -something\n if (left.value === 0 && op === \"-\") return flipValue(right);\n\n // value + value\n // value - value\n if (left.type === right.type && isValueType(left.type)) {\n node = Object.assign({}, left);\n if (op === \"+\") node.value = left.value + right.value;else node.value = left.value - right.value;\n }\n\n // value (expr)\n if (isValueType(left.type) && (right.operator === '+' || right.operator === '-') && right.type === 'MathExpression') {\n // value + (value + something) => (value + value) + something\n // value + (value - something) => (value + value) - something\n // value - (value + something) => (value - value) - something\n // value - (value - something) => (value - value) + something\n if (left.type === right.left.type) {\n node = Object.assign({}, node);\n node.left = reduce({\n type: 'MathExpression',\n operator: op,\n left: left,\n right: right.left\n }, precision);\n node.right = right.right;\n node.operator = op === '-' ? flip(right.operator) : right.operator;\n return reduce(node, precision);\n }\n // value + (something + value) => (value + value) + something\n // value + (something - value) => (value - value) + something\n // value - (something + value) => (value - value) - something\n // value - (something - value) => (value + value) - something\n else if (left.type === right.right.type) {\n node = Object.assign({}, node);\n node.left = reduce({\n type: 'MathExpression',\n operator: op === '-' ? flip(right.operator) : right.operator,\n left: left,\n right: right.right\n }, precision);\n node.right = right.left;\n return reduce(node, precision);\n }\n }\n\n // (expr) value\n if (left.type === 'MathExpression' && (left.operator === '+' || left.operator === '-') && isValueType(right.type)) {\n // (value + something) + value => (value + value) + something\n // (value - something) + value => (value + value) - something\n // (value + something) - value => (value - value) + something\n // (value - something) - value => (value - value) - something\n if (right.type === left.left.type) {\n node = Object.assign({}, left);\n node.left = reduce({\n type: 'MathExpression',\n operator: op,\n left: left.left,\n right: right\n }, precision);\n return reduce(node, precision);\n }\n // (something + value) + value => something + (value + value)\n // (something - value1) + value2 => something - (value2 - value1)\n // (something + value) - value => something + (value - value)\n // (something - value) - value => something - (value + value)\n else if (right.type === left.right.type) {\n node = Object.assign({}, left);\n if (left.operator === '-') {\n node.right = reduce({\n type: 'MathExpression',\n operator: op === '-' ? '+' : '-',\n left: right,\n right: left.right\n }, precision);\n node.operator = op === '-' ? '-' : '+';\n } else {\n node.right = reduce({\n type: 'MathExpression',\n operator: op,\n left: left.right,\n right: right\n }, precision);\n }\n if (node.right.value < 0) {\n node.right.value *= -1;\n node.operator = node.operator === '-' ? '+' : '-';\n }\n return reduce(node, precision);\n }\n }\n return node;\n}\n\nfunction reduceDivisionExpression(node, precision) {\n if (!isValueType(node.right.type)) return node;\n\n if (node.right.type !== 'Value') throw new Error(\"Cannot divide by \\\"\" + node.right.unit + \"\\\", number expected\");\n\n if (node.right.value === 0) throw new Error('Cannot divide by zero');\n\n // (expr) / value\n if (node.left.type === 'MathExpression') {\n if (isValueType(node.left.left.type) && isValueType(node.left.right.type)) {\n node.left.left.value /= node.right.value;\n node.left.right.value /= node.right.value;\n return reduce(node.left, precision);\n }\n return node;\n }\n // something / value\n else if (isValueType(node.left.type)) {\n node.left.value /= node.right.value;\n return node.left;\n }\n return node;\n}\n\nfunction reduceMultiplicationExpression(node) {\n // (expr) * value\n if (node.left.type === 'MathExpression' && node.right.type === 'Value') {\n if (isValueType(node.left.left.type) && isValueType(node.left.right.type)) {\n node.left.left.value *= node.right.value;\n node.left.right.value *= node.right.value;\n return node.left;\n }\n }\n // something * value\n else if (isValueType(node.left.type) && node.right.type === 'Value') {\n node.left.value *= node.right.value;\n return node.left;\n }\n // value * (expr)\n else if (node.left.type === 'Value' && node.right.type === 'MathExpression') {\n if (isValueType(node.right.left.type) && isValueType(node.right.right.type)) {\n node.right.left.value *= node.left.value;\n node.right.right.value *= node.left.value;\n return node.right;\n }\n }\n // value * something\n else if (node.left.type === 'Value' && isValueType(node.right.type)) {\n node.right.value *= node.left.value;\n return node.right;\n }\n return node;\n}\n\nfunction reduceMathExpression(node, precision) {\n node = convertMathExpression(node, precision);\n\n switch (node.operator) {\n case \"+\":\n case \"-\":\n return reduceAddSubExpression(node, precision);\n case \"/\":\n return reduceDivisionExpression(node, precision);\n case \"*\":\n return reduceMultiplicationExpression(node);\n }\n return node;\n}\n\nexports.default = reduce;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nexports.default = function (calc, node, precision) {\n var str = stringify(node, precision);\n\n if (node.type === \"MathExpression\") {\n // if calc expression couldn't be resolved to a single value, re-wrap it as\n // a calc()\n str = calc + \"(\" + str + \")\";\n }\n return str;\n};\n\nvar _reducer = require(\"./reducer\");\n\nvar order = {\n \"*\": 0,\n \"/\": 0,\n \"+\": 1,\n \"-\": 1\n};\n\nfunction round(value, prec) {\n if (prec !== false) {\n var precision = Math.pow(10, prec);\n return Math.round(value * precision) / precision;\n }\n return value;\n}\n\nfunction stringify(node, prec) {\n switch (node.type) {\n case \"MathExpression\":\n {\n var left = node.left,\n right = node.right,\n op = node.operator;\n\n var str = \"\";\n\n if (left.type === 'MathExpression' && order[op] < order[left.operator]) str += \"(\" + stringify(left, prec) + \")\";else str += stringify(left, prec);\n\n str += \" \" + node.operator + \" \";\n\n if (right.type === 'MathExpression' && order[op] < order[right.operator]) {\n str += \"(\" + stringify(right, prec) + \")\";\n } else if (right.type === 'MathExpression' && op === \"-\" && [\"+\", \"-\"].includes(right.operator)) {\n // fix #52 : a-(b+c) = a-b-c\n right.operator = (0, _reducer.flip)(right.operator);\n str += stringify(right, prec);\n } else {\n str += stringify(right, prec);\n }\n\n return str;\n }\n case \"Value\":\n return round(node.value, prec);\n case 'CssVariable':\n if (node.fallback) {\n return \"var(\" + node.value + \", \" + stringify(node.fallback, prec, true) + \")\";\n }\n return \"var(\" + node.value + \")\";\n case 'Calc':\n if (node.prefix) {\n return \"-\" + node.prefix + \"-calc(\" + stringify(node.value, prec) + \")\";\n }\n return \"calc(\" + stringify(node.value, prec) + \")\";\n default:\n return round(node.value, prec) + node.unit;\n }\n}\n\nmodule.exports = exports[\"default\"];","\n/* parser generated by jison 0.6.1-215 */\n\n/*\n * Returns a Parser object of the following structure:\n *\n * Parser: {\n * yy: {} The so-called \"shared state\" or rather the *source* of it;\n * the real \"shared state\" `yy` passed around to\n * the rule actions, etc. is a derivative/copy of this one,\n * not a direct reference!\n * }\n *\n * Parser.prototype: {\n * yy: {},\n * EOF: 1,\n * TERROR: 2,\n *\n * trace: function(errorMessage, ...),\n *\n * JisonParserError: function(msg, hash),\n *\n * quoteName: function(name),\n * Helper function which can be overridden by user code later on: put suitable\n * quotes around literal IDs in a description string.\n *\n * originalQuoteName: function(name),\n * The basic quoteName handler provided by JISON.\n * `cleanupAfterParse()` will clean up and reset `quoteName()` to reference this function\n * at the end of the `parse()`.\n *\n * describeSymbol: function(symbol),\n * Return a more-or-less human-readable description of the given symbol, when\n * available, or the symbol itself, serving as its own 'description' for lack\n * of something better to serve up.\n *\n * Return NULL when the symbol is unknown to the parser.\n *\n * symbols_: {associative list: name ==> number},\n * terminals_: {associative list: number ==> name},\n * nonterminals: {associative list: rule-name ==> {associative list: number ==> rule-alt}},\n * terminal_descriptions_: (if there are any) {associative list: number ==> description},\n * productions_: [...],\n *\n * performAction: function parser__performAction(yytext, yyleng, yylineno, yyloc, yystate, yysp, yyvstack, yylstack, yystack, yysstack),\n *\n * The function parameters and `this` have the following value/meaning:\n * - `this` : reference to the `yyval` internal object, which has members (`$` and `_$`)\n * to store/reference the rule value `$$` and location info `@$`.\n *\n * One important thing to note about `this` a.k.a. `yyval`: every *reduce* action gets\n * to see the same object via the `this` reference, i.e. if you wish to carry custom\n * data from one reduce action through to the next within a single parse run, then you\n * may get nasty and use `yyval` a.k.a. `this` for storing you own semi-permanent data.\n *\n * `this.yy` is a direct reference to the `yy` shared state object.\n *\n * `%parse-param`-specified additional `parse()` arguments have been added to this `yy`\n * object at `parse()` start and are therefore available to the action code via the\n * same named `yy.xxxx` attributes (where `xxxx` represents a identifier name from\n * the %parse-param` list.\n *\n * - `yytext` : reference to the lexer value which belongs to the last lexer token used\n * to match this rule. This is *not* the look-ahead token, but the last token\n * that's actually part of this rule.\n *\n * Formulated another way, `yytext` is the value of the token immediately preceeding\n * the current look-ahead token.\n * Caveats apply for rules which don't require look-ahead, such as epsilon rules.\n *\n * - `yyleng` : ditto as `yytext`, only now for the lexer.yyleng value.\n *\n * - `yylineno`: ditto as `yytext`, only now for the lexer.yylineno value.\n *\n * - `yyloc` : ditto as `yytext`, only now for the lexer.yylloc lexer token location info.\n *\n * WARNING: since jison 0.4.18-186 this entry may be NULL/UNDEFINED instead\n * of an empty object when no suitable location info can be provided.\n *\n * - `yystate` : the current parser state number, used internally for dispatching and\n * executing the action code chunk matching the rule currently being reduced.\n *\n * - `yysp` : the current state stack position (a.k.a. 'stack pointer')\n *\n * This one comes in handy when you are going to do advanced things to the parser\n * stacks, all of which are accessible from your action code (see the next entries below).\n *\n * Also note that you can access this and other stack index values using the new double-hash\n * syntax, i.e. `##$ === ##0 === yysp`, while `##1` is the stack index for all things\n * related to the first rule term, just like you have `$1`, `@1` and `#1`.\n * This is made available to write very advanced grammar action rules, e.g. when you want\n * to investigate the parse state stack in your action code, which would, for example,\n * be relevant when you wish to implement error diagnostics and reporting schemes similar\n * to the work described here:\n *\n * + Pottier, F., 2016. Reachability and error diagnosis in LR(1) automata.\n * In Journées Francophones des Languages Applicatifs.\n *\n * + Jeffery, C.L., 2003. Generating LR syntax error messages from examples.\n * ACM Transactions on Programming Languages and Systems (TOPLAS), 25(5), pp.631–640.\n *\n * - `yyrulelength`: the current rule's term count, i.e. the number of entries occupied on the stack.\n *\n * This one comes in handy when you are going to do advanced things to the parser\n * stacks, all of which are accessible from your action code (see the next entries below).\n *\n * - `yyvstack`: reference to the parser value stack. Also accessed via the `$1` etc.\n * constructs.\n *\n * - `yylstack`: reference to the parser token location stack. Also accessed via\n * the `@1` etc. constructs.\n *\n * WARNING: since jison 0.4.18-186 this array MAY contain slots which are\n * UNDEFINED rather than an empty (location) object, when the lexer/parser\n * action code did not provide a suitable location info object when such a\n * slot was filled!\n *\n * - `yystack` : reference to the parser token id stack. Also accessed via the\n * `#1` etc. constructs.\n *\n * Note: this is a bit of a **white lie** as we can statically decode any `#n` reference to\n * its numeric token id value, hence that code wouldn't need the `yystack` but *you* might\n * want access this array for your own purposes, such as error analysis as mentioned above!\n *\n * Note that this stack stores the current stack of *tokens*, that is the sequence of\n * already parsed=reduced *nonterminals* (tokens representing rules) and *terminals*\n * (lexer tokens *shifted* onto the stack until the rule they belong to is found and\n * *reduced*.\n *\n * - `yysstack`: reference to the parser state stack. This one carries the internal parser\n * *states* such as the one in `yystate`, which are used to represent\n * the parser state machine in the *parse table*. *Very* *internal* stuff,\n * what can I say? If you access this one, you're clearly doing wicked things\n *\n * - `...` : the extra arguments you specified in the `%parse-param` statement in your\n * grammar definition file.\n *\n * table: [...],\n * State transition table\n * ----------------------\n *\n * index levels are:\n * - `state` --> hash table\n * - `symbol` --> action (number or array)\n *\n * If the `action` is an array, these are the elements' meaning:\n * - index [0]: 1 = shift, 2 = reduce, 3 = accept\n * - index [1]: GOTO `state`\n *\n * If the `action` is a number, it is the GOTO `state`\n *\n * defaultActions: {...},\n *\n * parseError: function(str, hash, ExceptionClass),\n * yyError: function(str, ...),\n * yyRecovering: function(),\n * yyErrOk: function(),\n * yyClearIn: function(),\n *\n * constructParseErrorInfo: function(error_message, exception_object, expected_token_set, is_recoverable),\n * Helper function **which will be set up during the first invocation of the `parse()` method**.\n * Produces a new errorInfo 'hash object' which can be passed into `parseError()`.\n * See it's use in this parser kernel in many places; example usage:\n *\n * var infoObj = parser.constructParseErrorInfo('fail!', null,\n * parser.collect_expected_token_set(state), true);\n * var retVal = parser.parseError(infoObj.errStr, infoObj, parser.JisonParserError);\n *\n * originalParseError: function(str, hash, ExceptionClass),\n * The basic `parseError` handler provided by JISON.\n * `cleanupAfterParse()` will clean up and reset `parseError()` to reference this function\n * at the end of the `parse()`.\n *\n * options: { ... parser %options ... },\n *\n * parse: function(input[, args...]),\n * Parse the given `input` and return the parsed value (or `true` when none was provided by\n * the root action, in which case the parser is acting as a *matcher*).\n * You MAY use the additional `args...` parameters as per `%parse-param` spec of this grammar:\n * these extra `args...` are added verbatim to the `yy` object reference as member variables.\n *\n * WARNING:\n * Parser's additional `args...` parameters (via `%parse-param`) MAY conflict with\n * any attributes already added to `yy` by the jison run-time;\n * when such a collision is detected an exception is thrown to prevent the generated run-time\n * from silently accepting this confusing and potentially hazardous situation!\n *\n * The lexer MAY add its own set of additional parameters (via the `%parse-param` line in\n * the lexer section of the grammar spec): these will be inserted in the `yy` shared state\n * object and any collision with those will be reported by the lexer via a thrown exception.\n *\n * cleanupAfterParse: function(resultValue, invoke_post_methods, do_not_nuke_errorinfos),\n * Helper function **which will be set up during the first invocation of the `parse()` method**.\n * This helper API is invoked at the end of the `parse()` call, unless an exception was thrown\n * and `%options no-try-catch` has been defined for this grammar: in that case this helper MAY\n * be invoked by calling user code to ensure the `post_parse` callbacks are invoked and\n * the internal parser gets properly garbage collected under these particular circumstances.\n *\n * yyMergeLocationInfo: function(first_index, last_index, first_yylloc, last_yylloc, dont_look_back),\n * Helper function **which will be set up during the first invocation of the `parse()` method**.\n * This helper API can be invoked to calculate a spanning `yylloc` location info object.\n *\n * Note: %epsilon rules MAY specify no `first_index` and `first_yylloc`, in which case\n * this function will attempt to obtain a suitable location marker by inspecting the location stack\n * backwards.\n *\n * For more info see the documentation comment further below, immediately above this function's\n * implementation.\n *\n * lexer: {\n * yy: {...}, A reference to the so-called \"shared state\" `yy` once\n * received via a call to the `.setInput(input, yy)` lexer API.\n * EOF: 1,\n * ERROR: 2,\n * JisonLexerError: function(msg, hash),\n * parseError: function(str, hash, ExceptionClass),\n * setInput: function(input, [yy]),\n * input: function(),\n * unput: function(str),\n * more: function(),\n * reject: function(),\n * less: function(n),\n * pastInput: function(n),\n * upcomingInput: function(n),\n * showPosition: function(),\n * test_match: function(regex_match_array, rule_index, ...),\n * next: function(...),\n * lex: function(...),\n * begin: function(condition),\n * pushState: function(condition),\n * popState: function(),\n * topState: function(),\n * _currentRules: function(),\n * stateStackSize: function(),\n * cleanupAfterLex: function()\n *\n * options: { ... lexer %options ... },\n *\n * performAction: function(yy, yy_, $avoiding_name_collisions, YY_START, ...),\n * rules: [...],\n * conditions: {associative list: name ==> set},\n * }\n * }\n *\n *\n * token location info (@$, _$, etc.): {\n * first_line: n,\n * last_line: n,\n * first_column: n,\n * last_column: n,\n * range: [start_number, end_number]\n * (where the numbers are indexes into the input string, zero-based)\n * }\n *\n * ---\n *\n * The `parseError` function receives a 'hash' object with these members for lexer and\n * parser errors:\n *\n * {\n * text: (matched text)\n * token: (the produced terminal token, if any)\n * token_id: (the produced terminal token numeric ID, if any)\n * line: (yylineno)\n * loc: (yylloc)\n * }\n *\n * parser (grammar) errors will also provide these additional members:\n *\n * {\n * expected: (array describing the set of expected tokens;\n * may be UNDEFINED when we cannot easily produce such a set)\n * state: (integer (or array when the table includes grammar collisions);\n * represents the current internal state of the parser kernel.\n * can, for example, be used to pass to the `collect_expected_token_set()`\n * API to obtain the expected token set)\n * action: (integer; represents the current internal action which will be executed)\n * new_state: (integer; represents the next/planned internal state, once the current\n * action has executed)\n * recoverable: (boolean: TRUE when the parser MAY have an error recovery rule\n * available for this particular error)\n * state_stack: (array: the current parser LALR/LR internal state stack; this can be used,\n * for instance, for advanced error analysis and reporting)\n * value_stack: (array: the current parser LALR/LR internal `$$` value stack; this can be used,\n * for instance, for advanced error analysis and reporting)\n * location_stack: (array: the current parser LALR/LR internal location stack; this can be used,\n * for instance, for advanced error analysis and reporting)\n * yy: (object: the current parser internal \"shared state\" `yy`\n * as is also available in the rule actions; this can be used,\n * for instance, for advanced error analysis and reporting)\n * lexer: (reference to the current lexer instance used by the parser)\n * parser: (reference to the current parser instance)\n * }\n *\n * while `this` will reference the current parser instance.\n *\n * When `parseError` is invoked by the lexer, `this` will still reference the related *parser*\n * instance, while these additional `hash` fields will also be provided:\n *\n * {\n * lexer: (reference to the current lexer instance which reported the error)\n * }\n *\n * When `parseError` is invoked by the parser due to a **JavaScript exception** being fired\n * from either the parser or lexer, `this` will still reference the related *parser*\n * instance, while these additional `hash` fields will also be provided:\n *\n * {\n * exception: (reference to the exception thrown)\n * }\n *\n * Please do note that in the latter situation, the `expected` field will be omitted as\n * this type of failure is assumed not to be due to *parse errors* but rather due to user\n * action code in either parser or lexer failing unexpectedly.\n *\n * ---\n *\n * You can specify parser options by setting / modifying the `.yy` object of your Parser instance.\n * These options are available:\n *\n * ### options which are global for all parser instances\n *\n * Parser.pre_parse: function(yy)\n * optional: you can specify a pre_parse() function in the chunk following\n * the grammar, i.e. after the last `%%`.\n * Parser.post_parse: function(yy, retval, parseInfo) { return retval; }\n * optional: you can specify a post_parse() function in the chunk following\n * the grammar, i.e. after the last `%%`. When it does not return any value,\n * the parser will return the original `retval`.\n *\n * ### options which can be set up per parser instance\n *\n * yy: {\n * pre_parse: function(yy)\n * optional: is invoked before the parse cycle starts (and before the first\n * invocation of `lex()`) but immediately after the invocation of\n * `parser.pre_parse()`).\n * post_parse: function(yy, retval, parseInfo) { return retval; }\n * optional: is invoked when the parse terminates due to success ('accept')\n * or failure (even when exceptions are thrown).\n * `retval` contains the return value to be produced by `Parser.parse()`;\n * this function can override the return value by returning another.\n * When it does not return any value, the parser will return the original\n * `retval`.\n * This function is invoked immediately before `parser.post_parse()`.\n *\n * parseError: function(str, hash, ExceptionClass)\n * optional: overrides the default `parseError` function.\n * quoteName: function(name),\n * optional: overrides the default `quoteName` function.\n * }\n *\n * parser.lexer.options: {\n * pre_lex: function()\n * optional: is invoked before the lexer is invoked to produce another token.\n * `this` refers to the Lexer object.\n * post_lex: function(token) { return token; }\n * optional: is invoked when the lexer has produced a token `token`;\n * this function can override the returned token value by returning another.\n * When it does not return any (truthy) value, the lexer will return\n * the original `token`.\n * `this` refers to the Lexer object.\n *\n * ranges: boolean\n * optional: `true` ==> token location info will include a .range[] member.\n * flex: boolean\n * optional: `true` ==> flex-like lexing behaviour where the rules are tested\n * exhaustively to find the longest match.\n * backtrack_lexer: boolean\n * optional: `true` ==> lexer regexes are tested in order and for invoked;\n * the lexer terminates the scan when a token is returned by the action code.\n * xregexp: boolean\n * optional: `true` ==> lexer rule regexes are \"extended regex format\" requiring the\n * `XRegExp` library. When this `%option` has not been specified at compile time, all lexer\n * rule regexes have been written as standard JavaScript RegExp expressions.\n * }\n */\n\n \n \n var parser = (function () {\n\n\n// See also:\n// http://stackoverflow.com/questions/1382107/whats-a-good-way-to-extend-error-in-javascript/#35881508\n// but we keep the prototype.constructor and prototype.name assignment lines too for compatibility\n// with userland code which might access the derived class in a 'classic' way.\nfunction JisonParserError(msg, hash) {\n Object.defineProperty(this, 'name', {\n enumerable: false,\n writable: false,\n value: 'JisonParserError'\n });\n\n if (msg == null) msg = '???';\n\n Object.defineProperty(this, 'message', {\n enumerable: false,\n writable: true,\n value: msg\n });\n\n this.hash = hash;\n\n var stacktrace;\n if (hash && hash.exception instanceof Error) {\n var ex2 = hash.exception;\n this.message = ex2.message || msg;\n stacktrace = ex2.stack;\n }\n if (!stacktrace) {\n if (Error.hasOwnProperty('captureStackTrace')) { // V8/Chrome engine\n Error.captureStackTrace(this, this.constructor);\n } else {\n stacktrace = (new Error(msg)).stack;\n }\n }\n if (stacktrace) {\n Object.defineProperty(this, 'stack', {\n enumerable: false,\n writable: false,\n value: stacktrace\n });\n }\n}\n\nif (typeof Object.setPrototypeOf === 'function') {\n Object.setPrototypeOf(JisonParserError.prototype, Error.prototype);\n} else {\n JisonParserError.prototype = Object.create(Error.prototype);\n}\nJisonParserError.prototype.constructor = JisonParserError;\nJisonParserError.prototype.name = 'JisonParserError';\n\n\n\n\n // helper: reconstruct the productions[] table\n function bp(s) {\n var rv = [];\n var p = s.pop;\n var r = s.rule;\n for (var i = 0, l = p.length; i < l; i++) {\n rv.push([\n p[i],\n r[i]\n ]);\n }\n return rv;\n }\n \n\n\n // helper: reconstruct the defaultActions[] table\n function bda(s) {\n var rv = {};\n var d = s.idx;\n var g = s.goto;\n for (var i = 0, l = d.length; i < l; i++) {\n var j = d[i];\n rv[j] = g[i];\n }\n return rv;\n }\n \n\n\n // helper: reconstruct the 'goto' table\n function bt(s) {\n var rv = [];\n var d = s.len;\n var y = s.symbol;\n var t = s.type;\n var a = s.state;\n var m = s.mode;\n var g = s.goto;\n for (var i = 0, l = d.length; i < l; i++) {\n var n = d[i];\n var q = {};\n for (var j = 0; j < n; j++) {\n var z = y.shift();\n switch (t.shift()) {\n case 2:\n q[z] = [\n m.shift(),\n g.shift()\n ];\n break;\n\n case 0:\n q[z] = a.shift();\n break;\n\n default:\n // type === 1: accept\n q[z] = [\n 3\n ];\n }\n }\n rv.push(q);\n }\n return rv;\n }\n \n\n\n // helper: runlength encoding with increment step: code, length: step (default step = 0)\n // `this` references an array\n function s(c, l, a) {\n a = a || 0;\n for (var i = 0; i < l; i++) {\n this.push(c);\n c += a;\n }\n }\n\n // helper: duplicate sequence from *relative* offset and length.\n // `this` references an array\n function c(i, l) {\n i = this.length - i;\n for (l += i; i < l; i++) {\n this.push(this[i]);\n }\n }\n\n // helper: unpack an array using helpers and data, all passed in an array argument 'a'.\n function u(a) {\n var rv = [];\n for (var i = 0, l = a.length; i < l; i++) {\n var e = a[i];\n // Is this entry a helper function?\n if (typeof e === 'function') {\n i++;\n e.apply(rv, a[i]);\n } else {\n rv.push(e);\n }\n }\n return rv;\n }\n \n\nvar parser = {\n // Code Generator Information Report\n // ---------------------------------\n //\n // Options:\n //\n // default action mode: ............. [\"classic\",\"merge\"]\n // test-compile action mode: ........ \"parser:*,lexer:*\"\n // try..catch: ...................... true\n // default resolve on conflict: ..... true\n // on-demand look-ahead: ............ false\n // error recovery token skip maximum: 3\n // yyerror in parse actions is: ..... NOT recoverable,\n // yyerror in lexer actions and other non-fatal lexer are:\n // .................................. NOT recoverable,\n // debug grammar/output: ............ false\n // has partial LR conflict upgrade: true\n // rudimentary token-stack support: false\n // parser table compression mode: ... 2\n // export debug tables: ............. false\n // export *all* tables: ............. false\n // module type: ..................... commonjs\n // parser engine type: .............. lalr\n // output main() in the module: ..... true\n // has user-specified main(): ....... false\n // has user-specified require()/import modules for main():\n // .................................. false\n // number of expected conflicts: .... 0\n //\n //\n // Parser Analysis flags:\n //\n // no significant actions (parser is a language matcher only):\n // .................................. false\n // uses yyleng: ..................... false\n // uses yylineno: ................... false\n // uses yytext: ..................... false\n // uses yylloc: ..................... false\n // uses ParseError API: ............. false\n // uses YYERROR: .................... false\n // uses YYRECOVERING: ............... false\n // uses YYERROK: .................... false\n // uses YYCLEARIN: .................. false\n // tracks rule values: .............. true\n // assigns rule values: ............. true\n // uses location tracking: .......... false\n // assigns location: ................ false\n // uses yystack: .................... false\n // uses yysstack: ................... false\n // uses yysp: ....................... true\n // uses yyrulelength: ............... false\n // uses yyMergeLocationInfo API: .... false\n // has error recovery: .............. false\n // has error reporting: ............. false\n //\n // --------- END OF REPORT -----------\n\ntrace: function no_op_trace() { },\nJisonParserError: JisonParserError,\nyy: {},\noptions: {\n type: \"lalr\",\n hasPartialLrUpgradeOnConflict: true,\n errorRecoveryTokenDiscardCount: 3\n},\nsymbols_: {\n \"$accept\": 0,\n \"$end\": 1,\n \"ADD\": 3,\n \"ANGLE\": 16,\n \"CHS\": 22,\n \"COMMA\": 14,\n \"CSS_CPROP\": 13,\n \"CSS_VAR\": 12,\n \"DIV\": 6,\n \"EMS\": 20,\n \"EOF\": 1,\n \"EXS\": 21,\n \"FREQ\": 18,\n \"LENGTH\": 15,\n \"LPAREN\": 7,\n \"MUL\": 5,\n \"NESTED_CALC\": 9,\n \"NUMBER\": 11,\n \"PERCENTAGE\": 28,\n \"PREFIX\": 10,\n \"REMS\": 23,\n \"RES\": 19,\n \"RPAREN\": 8,\n \"SUB\": 4,\n \"TIME\": 17,\n \"VHS\": 24,\n \"VMAXS\": 27,\n \"VMINS\": 26,\n \"VWS\": 25,\n \"css_value\": 33,\n \"css_variable\": 32,\n \"error\": 2,\n \"expression\": 29,\n \"math_expression\": 30,\n \"value\": 31\n},\nterminals_: {\n 1: \"EOF\",\n 2: \"error\",\n 3: \"ADD\",\n 4: \"SUB\",\n 5: \"MUL\",\n 6: \"DIV\",\n 7: \"LPAREN\",\n 8: \"RPAREN\",\n 9: \"NESTED_CALC\",\n 10: \"PREFIX\",\n 11: \"NUMBER\",\n 12: \"CSS_VAR\",\n 13: \"CSS_CPROP\",\n 14: \"COMMA\",\n 15: \"LENGTH\",\n 16: \"ANGLE\",\n 17: \"TIME\",\n 18: \"FREQ\",\n 19: \"RES\",\n 20: \"EMS\",\n 21: \"EXS\",\n 22: \"CHS\",\n 23: \"REMS\",\n 24: \"VHS\",\n 25: \"VWS\",\n 26: \"VMINS\",\n 27: \"VMAXS\",\n 28: \"PERCENTAGE\"\n},\nTERROR: 2,\n EOF: 1,\n\n // internals: defined here so the object *structure* doesn't get modified by parse() et al,\n // thus helping JIT compilers like Chrome V8.\n originalQuoteName: null,\n originalParseError: null,\n cleanupAfterParse: null,\n constructParseErrorInfo: null,\n yyMergeLocationInfo: null,\n\n __reentrant_call_depth: 0, // INTERNAL USE ONLY\n __error_infos: [], // INTERNAL USE ONLY: the set of parseErrorInfo objects created since the last cleanup\n __error_recovery_infos: [], // INTERNAL USE ONLY: the set of parseErrorInfo objects created since the last cleanup\n\n // APIs which will be set up depending on user action code analysis:\n //yyRecovering: 0,\n //yyErrOk: 0,\n //yyClearIn: 0,\n\n // Helper APIs\n // -----------\n\n // Helper function which can be overridden by user code later on: put suitable quotes around\n // literal IDs in a description string.\n quoteName: function parser_quoteName(id_str) {\n return '\"' + id_str + '\"';\n },\n\n // Return the name of the given symbol (terminal or non-terminal) as a string, when available.\n //\n // Return NULL when the symbol is unknown to the parser.\n getSymbolName: function parser_getSymbolName(symbol) {\n if (this.terminals_[symbol]) {\n return this.terminals_[symbol];\n }\n\n // Otherwise... this might refer to a RULE token i.e. a non-terminal: see if we can dig that one up.\n //\n // An example of this may be where a rule's action code contains a call like this:\n //\n // parser.getSymbolName(#$)\n //\n // to obtain a human-readable name of the current grammar rule.\n var s = this.symbols_;\n for (var key in s) {\n if (s[key] === symbol) {\n return key;\n }\n }\n return null;\n },\n\n // Return a more-or-less human-readable description of the given symbol, when available,\n // or the symbol itself, serving as its own 'description' for lack of something better to serve up.\n //\n // Return NULL when the symbol is unknown to the parser.\n describeSymbol: function parser_describeSymbol(symbol) {\n if (symbol !== this.EOF && this.terminal_descriptions_ && this.terminal_descriptions_[symbol]) {\n return this.terminal_descriptions_[symbol];\n }\n else if (symbol === this.EOF) {\n return 'end of input';\n }\n var id = this.getSymbolName(symbol);\n if (id) {\n return this.quoteName(id);\n }\n return null;\n },\n\n // Produce a (more or less) human-readable list of expected tokens at the point of failure.\n //\n // The produced list may contain token or token set descriptions instead of the tokens\n // themselves to help turning this output into something that easier to read by humans\n // unless `do_not_describe` parameter is set, in which case a list of the raw, *numeric*,\n // expected terminals and nonterminals is produced.\n //\n // The returned list (array) will not contain any duplicate entries.\n collect_expected_token_set: function parser_collect_expected_token_set(state, do_not_describe) {\n var TERROR = this.TERROR;\n var tokenset = [];\n var check = {};\n // Has this (error?) state been outfitted with a custom expectations description text for human consumption?\n // If so, use that one instead of the less palatable token set.\n if (!do_not_describe && this.state_descriptions_ && this.state_descriptions_[state]) {\n return [\n this.state_descriptions_[state]\n ];\n }\n for (var p in this.table[state]) {\n p = +p;\n if (p !== TERROR) {\n var d = do_not_describe ? p : this.describeSymbol(p);\n if (d && !check[d]) {\n tokenset.push(d);\n check[d] = true; // Mark this token description as already mentioned to prevent outputting duplicate entries.\n }\n }\n }\n return tokenset;\n },\nproductions_: bp({\n pop: u([\n 29,\n s,\n [30, 10],\n 31,\n 31,\n 32,\n 32,\n s,\n [33, 15]\n]),\n rule: u([\n 2,\n s,\n [3, 5],\n 4,\n 7,\n s,\n [1, 4],\n 2,\n 4,\n 6,\n s,\n [1, 14],\n 2\n])\n}),\nperformAction: function parser__PerformAction(yystate /* action[1] */, yysp, yyvstack) {\n\n /* this == yyval */\n\n // the JS engine itself can go and remove these statements when `yy` turns out to be unused in any action code!\n var yy = this.yy;\n var yyparser = yy.parser;\n var yylexer = yy.lexer;\n\n \n\n switch (yystate) {\ncase 0:\n /*! Production:: $accept : expression $end */\n\n // default action (generated by JISON mode classic/merge :: 1,VT,VA,-,-,-,-,-,-):\n this.$ = yyvstack[yysp - 1];\n // END of default action (generated by JISON mode classic/merge :: 1,VT,VA,-,-,-,-,-,-)\n break;\n\ncase 1:\n /*! Production:: expression : math_expression EOF */\n\n // default action (generated by JISON mode classic/merge :: 2,VT,VA,-,-,-,-,-,-):\n this.$ = yyvstack[yysp - 1];\n // END of default action (generated by JISON mode classic/merge :: 2,VT,VA,-,-,-,-,-,-)\n \n \n return yyvstack[yysp - 1];\n break;\n\ncase 2:\n /*! Production:: math_expression : math_expression ADD math_expression */\ncase 3:\n /*! Production:: math_expression : math_expression SUB math_expression */\ncase 4:\n /*! Production:: math_expression : math_expression MUL math_expression */\ncase 5:\n /*! Production:: math_expression : math_expression DIV math_expression */\n\n this.$ = { type: 'MathExpression', operator: yyvstack[yysp - 1], left: yyvstack[yysp - 2], right: yyvstack[yysp] };\n break;\n\ncase 6:\n /*! Production:: math_expression : LPAREN math_expression RPAREN */\n\n this.$ = yyvstack[yysp - 1];\n break;\n\ncase 7:\n /*! Production:: math_expression : NESTED_CALC LPAREN math_expression RPAREN */\n\n this.$ = { type: 'Calc', value: yyvstack[yysp - 1] };\n break;\n\ncase 8:\n /*! Production:: math_expression : SUB PREFIX SUB NESTED_CALC LPAREN math_expression RPAREN */\n\n this.$ = { type: 'Calc', value: yyvstack[yysp - 1], prefix: yyvstack[yysp - 5] };\n break;\n\ncase 9:\n /*! Production:: math_expression : css_variable */\ncase 10:\n /*! Production:: math_expression : css_value */\ncase 11:\n /*! Production:: math_expression : value */\n\n this.$ = yyvstack[yysp];\n break;\n\ncase 12:\n /*! Production:: value : NUMBER */\n\n this.$ = { type: 'Value', value: parseFloat(yyvstack[yysp]) };\n break;\n\ncase 13:\n /*! Production:: value : SUB NUMBER */\n\n this.$ = { type: 'Value', value: parseFloat(yyvstack[yysp]) * -1 };\n break;\n\ncase 14:\n /*! Production:: css_variable : CSS_VAR LPAREN CSS_CPROP RPAREN */\n\n this.$ = { type: 'CssVariable', value: yyvstack[yysp - 1] };\n break;\n\ncase 15:\n /*! Production:: css_variable : CSS_VAR LPAREN CSS_CPROP COMMA math_expression RPAREN */\n\n this.$ = { type: 'CssVariable', value: yyvstack[yysp - 3], fallback: yyvstack[yysp - 1] };\n break;\n\ncase 16:\n /*! Production:: css_value : LENGTH */\n\n this.$ = { type: 'LengthValue', value: parseFloat(yyvstack[yysp]), unit: /[a-z]+/.exec(yyvstack[yysp])[0] };\n break;\n\ncase 17:\n /*! Production:: css_value : ANGLE */\n\n this.$ = { type: 'AngleValue', value: parseFloat(yyvstack[yysp]), unit: /[a-z]+/.exec(yyvstack[yysp])[0] };\n break;\n\ncase 18:\n /*! Production:: css_value : TIME */\n\n this.$ = { type: 'TimeValue', value: parseFloat(yyvstack[yysp]), unit: /[a-z]+/.exec(yyvstack[yysp])[0] };\n break;\n\ncase 19:\n /*! Production:: css_value : FREQ */\n\n this.$ = { type: 'FrequencyValue', value: parseFloat(yyvstack[yysp]), unit: /[a-z]+/.exec(yyvstack[yysp])[0] };\n break;\n\ncase 20:\n /*! Production:: css_value : RES */\n\n this.$ = { type: 'ResolutionValue', value: parseFloat(yyvstack[yysp]), unit: /[a-z]+/.exec(yyvstack[yysp])[0] };\n break;\n\ncase 21:\n /*! Production:: css_value : EMS */\n\n this.$ = { type: 'EmValue', value: parseFloat(yyvstack[yysp]), unit: 'em' };\n break;\n\ncase 22:\n /*! Production:: css_value : EXS */\n\n this.$ = { type: 'ExValue', value: parseFloat(yyvstack[yysp]), unit: 'ex' };\n break;\n\ncase 23:\n /*! Production:: css_value : CHS */\n\n this.$ = { type: 'ChValue', value: parseFloat(yyvstack[yysp]), unit: 'ch' };\n break;\n\ncase 24:\n /*! Production:: css_value : REMS */\n\n this.$ = { type: 'RemValue', value: parseFloat(yyvstack[yysp]), unit: 'rem' };\n break;\n\ncase 25:\n /*! Production:: css_value : VHS */\n\n this.$ = { type: 'VhValue', value: parseFloat(yyvstack[yysp]), unit: 'vh' };\n break;\n\ncase 26:\n /*! Production:: css_value : VWS */\n\n this.$ = { type: 'VwValue', value: parseFloat(yyvstack[yysp]), unit: 'vw' };\n break;\n\ncase 27:\n /*! Production:: css_value : VMINS */\n\n this.$ = { type: 'VminValue', value: parseFloat(yyvstack[yysp]), unit: 'vmin' };\n break;\n\ncase 28:\n /*! Production:: css_value : VMAXS */\n\n this.$ = { type: 'VmaxValue', value: parseFloat(yyvstack[yysp]), unit: 'vmax' };\n break;\n\ncase 29:\n /*! Production:: css_value : PERCENTAGE */\n\n this.$ = { type: 'PercentageValue', value: parseFloat(yyvstack[yysp]), unit: '%' };\n break;\n\ncase 30:\n /*! Production:: css_value : SUB css_value */\n\n var prev = yyvstack[yysp]; prev.value *= -1; this.$ = prev;\n break;\n\n}\n},\ntable: bt({\n len: u([\n 24,\n 1,\n 5,\n 23,\n 1,\n 18,\n s,\n [0, 3],\n 1,\n s,\n [0, 16],\n s,\n [23, 4],\n c,\n [28, 3],\n 0,\n 0,\n 16,\n 1,\n 6,\n 6,\n s,\n [0, 3],\n 5,\n 1,\n 2,\n c,\n [37, 3],\n c,\n [20, 3],\n 5,\n 0,\n 0\n]),\n symbol: u([\n 4,\n 7,\n 9,\n 11,\n 12,\n s,\n [15, 19, 1],\n 1,\n 1,\n s,\n [3, 4, 1],\n c,\n [30, 19],\n c,\n [29, 4],\n 7,\n 4,\n 10,\n 11,\n c,\n [22, 14],\n c,\n [19, 3],\n c,\n [43, 22],\n c,\n [23, 69],\n c,\n [139, 4],\n 8,\n c,\n [51, 24],\n 4,\n c,\n [138, 15],\n 13,\n c,\n [186, 5],\n 8,\n c,\n [6, 6],\n c,\n [5, 5],\n 9,\n 8,\n 14,\n c,\n [159, 47],\n c,\n [60, 10]\n]),\n type: u([\n s,\n [2, 19],\n s,\n [0, 5],\n 1,\n s,\n [2, 24],\n s,\n [0, 4],\n c,\n [22, 19],\n c,\n [43, 42],\n c,\n [23, 70],\n c,\n [28, 25],\n c,\n [45, 25],\n c,\n [113, 54]\n]),\n state: u([\n 1,\n 2,\n 8,\n 6,\n 7,\n 30,\n c,\n [4, 3],\n 33,\n 37,\n c,\n [5, 3],\n 38,\n c,\n [4, 3],\n 39,\n c,\n [4, 3],\n 40,\n c,\n [4, 3],\n 42,\n c,\n [21, 4],\n 50,\n c,\n [5, 3],\n 51,\n c,\n [4, 3]\n]),\n mode: u([\n s,\n [1, 179],\n s,\n [2, 3],\n c,\n [5, 5],\n c,\n [6, 4],\n s,\n [1, 57]\n]),\n goto: u([\n 5,\n 3,\n 4,\n 24,\n s,\n [9, 15, 1],\n s,\n [25, 5, 1],\n c,\n [24, 19],\n 31,\n 35,\n 32,\n 34,\n c,\n [18, 14],\n 36,\n c,\n [38, 19],\n c,\n [19, 57],\n c,\n [118, 4],\n 41,\n c,\n [24, 19],\n 43,\n 35,\n c,\n [16, 14],\n 44,\n s,\n [2, 3],\n 28,\n 29,\n 2,\n s,\n [3, 3],\n 28,\n 29,\n 3,\n c,\n [53, 4],\n s,\n [45, 5, 1],\n c,\n [100, 42],\n 52,\n c,\n [5, 4],\n 53\n])\n}),\ndefaultActions: bda({\n idx: u([\n 6,\n 7,\n 8,\n s,\n [10, 16, 1],\n 33,\n 34,\n 39,\n 40,\n 41,\n 45,\n 47,\n 52,\n 53\n]),\n goto: u([\n 9,\n 10,\n 11,\n s,\n [16, 14, 1],\n 12,\n 1,\n 30,\n 13,\n s,\n [4, 4, 1],\n 14,\n 15,\n 8\n])\n}),\nparseError: function parseError(str, hash, ExceptionClass) {\n if (hash.recoverable) {\n if (typeof this.trace === 'function') {\n this.trace(str);\n }\n hash.destroy(); // destroy... well, *almost*!\n } else {\n if (typeof this.trace === 'function') {\n this.trace(str);\n }\n if (!ExceptionClass) {\n ExceptionClass = this.JisonParserError;\n }\n throw new ExceptionClass(str, hash);\n }\n},\nparse: function parse(input) {\n var self = this;\n var stack = new Array(128); // token stack: stores token which leads to state at the same index (column storage)\n var sstack = new Array(128); // state stack: stores states (column storage)\n\n var vstack = new Array(128); // semantic value stack\n\n var table = this.table;\n var sp = 0; // 'stack pointer': index into the stacks\n\n\n \n\n\n var symbol = 0;\n\n\n\n var TERROR = this.TERROR;\n var EOF = this.EOF;\n var ERROR_RECOVERY_TOKEN_DISCARD_COUNT = (this.options.errorRecoveryTokenDiscardCount | 0) || 3;\n var NO_ACTION = [0, 54 /* === table.length :: ensures that anyone using this new state will fail dramatically! */];\n\n var lexer;\n if (this.__lexer__) {\n lexer = this.__lexer__;\n } else {\n lexer = this.__lexer__ = Object.create(this.lexer);\n }\n\n var sharedState_yy = {\n parseError: undefined,\n quoteName: undefined,\n lexer: undefined,\n parser: undefined,\n pre_parse: undefined,\n post_parse: undefined,\n pre_lex: undefined,\n post_lex: undefined // WARNING: must be written this way for the code expanders to work correctly in both ES5 and ES6 modes!\n };\n\n var ASSERT;\n if (typeof assert !== 'function') {\n ASSERT = function JisonAssert(cond, msg) {\n if (!cond) {\n throw new Error('assertion failed: ' + (msg || '***'));\n }\n };\n } else {\n ASSERT = assert;\n }\n\n this.yyGetSharedState = function yyGetSharedState() {\n return sharedState_yy;\n };\n\n\n\n\n\n\n\n\n function shallow_copy_noclobber(dst, src) {\n for (var k in src) {\n if (typeof dst[k] === 'undefined' && Object.prototype.hasOwnProperty.call(src, k)) {\n dst[k] = src[k];\n }\n }\n }\n\n // copy state\n shallow_copy_noclobber(sharedState_yy, this.yy);\n\n sharedState_yy.lexer = lexer;\n sharedState_yy.parser = this;\n\n\n\n\n\n\n // Does the shared state override the default `parseError` that already comes with this instance?\n if (typeof sharedState_yy.parseError === 'function') {\n this.parseError = function parseErrorAlt(str, hash, ExceptionClass) {\n if (!ExceptionClass) {\n ExceptionClass = this.JisonParserError;\n }\n return sharedState_yy.parseError.call(this, str, hash, ExceptionClass);\n };\n } else {\n this.parseError = this.originalParseError;\n }\n\n // Does the shared state override the default `quoteName` that already comes with this instance?\n if (typeof sharedState_yy.quoteName === 'function') {\n this.quoteName = function quoteNameAlt(id_str) {\n return sharedState_yy.quoteName.call(this, id_str);\n };\n } else {\n this.quoteName = this.originalQuoteName;\n }\n\n // set up the cleanup function; make it an API so that external code can re-use this one in case of\n // calamities or when the `%options no-try-catch` option has been specified for the grammar, in which\n // case this parse() API method doesn't come with a `finally { ... }` block any more!\n //\n // NOTE: as this API uses parse() as a closure, it MUST be set again on every parse() invocation,\n // or else your `sharedState`, etc. references will be *wrong*!\n this.cleanupAfterParse = function parser_cleanupAfterParse(resultValue, invoke_post_methods, do_not_nuke_errorinfos) {\n var rv;\n\n if (invoke_post_methods) {\n var hash;\n\n if (sharedState_yy.post_parse || this.post_parse) {\n // create an error hash info instance: we re-use this API in a **non-error situation**\n // as this one delivers all parser internals ready for access by userland code.\n hash = this.constructParseErrorInfo(null /* no error! */, null /* no exception! */, null, false);\n }\n\n if (sharedState_yy.post_parse) {\n rv = sharedState_yy.post_parse.call(this, sharedState_yy, resultValue, hash);\n if (typeof rv !== 'undefined') resultValue = rv;\n }\n if (this.post_parse) {\n rv = this.post_parse.call(this, sharedState_yy, resultValue, hash);\n if (typeof rv !== 'undefined') resultValue = rv;\n }\n\n // cleanup:\n if (hash && hash.destroy) {\n hash.destroy();\n }\n }\n\n if (this.__reentrant_call_depth > 1) return resultValue; // do not (yet) kill the sharedState when this is a reentrant run.\n\n // clean up the lingering lexer structures as well:\n if (lexer.cleanupAfterLex) {\n lexer.cleanupAfterLex(do_not_nuke_errorinfos);\n }\n\n // prevent lingering circular references from causing memory leaks:\n if (sharedState_yy) {\n sharedState_yy.lexer = undefined;\n sharedState_yy.parser = undefined;\n if (lexer.yy === sharedState_yy) {\n lexer.yy = undefined;\n }\n }\n sharedState_yy = undefined;\n this.parseError = this.originalParseError;\n this.quoteName = this.originalQuoteName;\n\n // nuke the vstack[] array at least as that one will still reference obsoleted user values.\n // To be safe, we nuke the other internal stack columns as well...\n stack.length = 0; // fastest way to nuke an array without overly bothering the GC\n sstack.length = 0;\n\n vstack.length = 0;\n sp = 0;\n\n // nuke the error hash info instances created during this run.\n // Userland code must COPY any data/references\n // in the error hash instance(s) it is more permanently interested in.\n if (!do_not_nuke_errorinfos) {\n for (var i = this.__error_infos.length - 1; i >= 0; i--) {\n var el = this.__error_infos[i];\n if (el && typeof el.destroy === 'function') {\n el.destroy();\n }\n }\n this.__error_infos.length = 0;\n\n\n }\n\n return resultValue;\n };\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n // NOTE: as this API uses parse() as a closure, it MUST be set again on every parse() invocation,\n // or else your `lexer`, `sharedState`, etc. references will be *wrong*!\n this.constructParseErrorInfo = function parser_constructParseErrorInfo(msg, ex, expected, recoverable) {\n var pei = {\n errStr: msg,\n exception: ex,\n text: lexer.match,\n value: lexer.yytext,\n token: this.describeSymbol(symbol) || symbol,\n token_id: symbol,\n line: lexer.yylineno,\n\n expected: expected,\n recoverable: recoverable,\n state: state,\n action: action,\n new_state: newState,\n symbol_stack: stack,\n state_stack: sstack,\n value_stack: vstack,\n\n stack_pointer: sp,\n yy: sharedState_yy,\n lexer: lexer,\n parser: this,\n\n // and make sure the error info doesn't stay due to potential\n // ref cycle via userland code manipulations.\n // These would otherwise all be memory leak opportunities!\n //\n // Note that only array and object references are nuked as those\n // constitute the set of elements which can produce a cyclic ref.\n // The rest of the members is kept intact as they are harmless.\n destroy: function destructParseErrorInfo() {\n // remove cyclic references added to error info:\n // info.yy = null;\n // info.lexer = null;\n // info.value = null;\n // info.value_stack = null;\n // ...\n var rec = !!this.recoverable;\n for (var key in this) {\n if (this.hasOwnProperty(key) && typeof key === 'object') {\n this[key] = undefined;\n }\n }\n this.recoverable = rec;\n }\n };\n // track this instance so we can `destroy()` it once we deem it superfluous and ready for garbage collection!\n this.__error_infos.push(pei);\n return pei;\n };\n\n\n\n\n\n\n\n\n\n\n\n\n\n function getNonTerminalFromCode(symbol) {\n var tokenName = self.getSymbolName(symbol);\n if (!tokenName) {\n tokenName = symbol;\n }\n return tokenName;\n }\n\n\n function stdLex() {\n var token = lexer.lex();\n // if token isn't its numeric value, convert\n if (typeof token !== 'number') {\n token = self.symbols_[token] || token;\n }\n\n return token || EOF;\n }\n\n function fastLex() {\n var token = lexer.fastLex();\n // if token isn't its numeric value, convert\n if (typeof token !== 'number') {\n token = self.symbols_[token] || token;\n }\n\n return token || EOF;\n }\n\n var lex = stdLex;\n\n\n var state, action, r, t;\n var yyval = {\n $: true,\n _$: undefined,\n yy: sharedState_yy\n };\n var p;\n var yyrulelen;\n var this_production;\n var newState;\n var retval = false;\n\n\n try {\n this.__reentrant_call_depth++;\n\n lexer.setInput(input, sharedState_yy);\n\n // NOTE: we *assume* no lexer pre/post handlers are set up *after* \n // this initial `setInput()` call: hence we can now check and decide\n // whether we'll go with the standard, slower, lex() API or the\n // `fast_lex()` one:\n if (typeof lexer.canIUse === 'function') {\n var lexerInfo = lexer.canIUse();\n if (lexerInfo.fastLex && typeof fastLex === 'function') {\n lex = fastLex;\n }\n } \n\n\n\n vstack[sp] = null;\n sstack[sp] = 0;\n stack[sp] = 0;\n ++sp;\n\n\n\n\n\n if (this.pre_parse) {\n this.pre_parse.call(this, sharedState_yy);\n }\n if (sharedState_yy.pre_parse) {\n sharedState_yy.pre_parse.call(this, sharedState_yy);\n }\n\n newState = sstack[sp - 1];\n for (;;) {\n // retrieve state number from top of stack\n state = newState; // sstack[sp - 1];\n\n // use default actions if available\n if (this.defaultActions[state]) {\n action = 2;\n newState = this.defaultActions[state];\n } else {\n // The single `==` condition below covers both these `===` comparisons in a single\n // operation:\n //\n // if (symbol === null || typeof symbol === 'undefined') ...\n if (!symbol) {\n symbol = lex();\n }\n // read action for current state and first input\n t = (table[state] && table[state][symbol]) || NO_ACTION;\n newState = t[1];\n action = t[0];\n\n\n\n\n\n\n\n\n\n\n\n // handle parse error\n if (!action) {\n var errStr;\n var errSymbolDescr = (this.describeSymbol(symbol) || symbol);\n var expected = this.collect_expected_token_set(state);\n\n // Report error\n if (typeof lexer.yylineno === 'number') {\n errStr = 'Parse error on line ' + (lexer.yylineno + 1) + ': ';\n } else {\n errStr = 'Parse error: ';\n }\n if (typeof lexer.showPosition === 'function') {\n errStr += '\\n' + lexer.showPosition(79 - 10, 10) + '\\n';\n }\n if (expected.length) {\n errStr += 'Expecting ' + expected.join(', ') + ', got unexpected ' + errSymbolDescr;\n } else {\n errStr += 'Unexpected ' + errSymbolDescr;\n }\n // we cannot recover from the error!\n p = this.constructParseErrorInfo(errStr, null, expected, false);\n r = this.parseError(p.errStr, p, this.JisonParserError);\n if (typeof r !== 'undefined') {\n retval = r;\n }\n break;\n }\n\n\n }\n\n\n\n\n\n\n\n\n\n\n switch (action) {\n // catch misc. parse failures:\n default:\n // this shouldn't happen, unless resolve defaults are off\n if (action instanceof Array) {\n p = this.constructParseErrorInfo('Parse Error: multiple actions possible at state: ' + state + ', token: ' + symbol, null, null, false);\n r = this.parseError(p.errStr, p, this.JisonParserError);\n if (typeof r !== 'undefined') {\n retval = r;\n }\n break;\n }\n // Another case of better safe than sorry: in case state transitions come out of another error recovery process\n // or a buggy LUT (LookUp Table):\n p = this.constructParseErrorInfo('Parsing halted. No viable error recovery approach available due to internal system failure.', null, null, false);\n r = this.parseError(p.errStr, p, this.JisonParserError);\n if (typeof r !== 'undefined') {\n retval = r;\n }\n break;\n\n // shift:\n case 1:\n stack[sp] = symbol;\n vstack[sp] = lexer.yytext;\n\n sstack[sp] = newState; // push state\n\n ++sp;\n symbol = 0;\n\n\n\n\n // Pick up the lexer details for the current symbol as that one is not 'look-ahead' any more:\n\n\n\n\n continue;\n\n // reduce:\n case 2:\n\n\n\n this_production = this.productions_[newState - 1]; // `this.productions_[]` is zero-based indexed while states start from 1 upwards...\n yyrulelen = this_production[1];\n\n\n\n\n\n\n\n\n\n\n r = this.performAction.call(yyval, newState, sp - 1, vstack);\n\n if (typeof r !== 'undefined') {\n retval = r;\n break;\n }\n\n // pop off stack\n sp -= yyrulelen;\n\n // don't overwrite the `symbol` variable: use a local var to speed things up:\n var ntsymbol = this_production[0]; // push nonterminal (reduce)\n stack[sp] = ntsymbol;\n vstack[sp] = yyval.$;\n\n // goto new state = table[STATE][NONTERMINAL]\n newState = table[sstack[sp - 1]][ntsymbol];\n sstack[sp] = newState;\n ++sp;\n\n\n\n\n\n\n\n\n\n continue;\n\n // accept:\n case 3:\n if (sp !== -2) {\n retval = true;\n // Return the `$accept` rule's `$$` result, if available.\n //\n // Also note that JISON always adds this top-most `$accept` rule (with implicit,\n // default, action):\n //\n // $accept: $end\n // %{ $$ = $1; @$ = @1; %}\n //\n // which, combined with the parse kernel's `$accept` state behaviour coded below,\n // will produce the `$$` value output of the rule as the parse result,\n // IFF that result is *not* `undefined`. (See also the parser kernel code.)\n //\n // In code:\n //\n // %{\n // @$ = @1; // if location tracking support is included\n // if (typeof $1 !== 'undefined')\n // return $1;\n // else\n // return true; // the default parse result if the rule actions don't produce anything\n // %}\n sp--;\n if (typeof vstack[sp] !== 'undefined') {\n retval = vstack[sp];\n }\n }\n break;\n }\n\n // break out of loop: we accept or fail with error\n break;\n }\n } catch (ex) {\n // report exceptions through the parseError callback too, but keep the exception intact\n // if it is a known parser or lexer error which has been thrown by parseError() already:\n if (ex instanceof this.JisonParserError) {\n throw ex;\n }\n else if (lexer && typeof lexer.JisonLexerError === 'function' && ex instanceof lexer.JisonLexerError) {\n throw ex;\n }\n\n p = this.constructParseErrorInfo('Parsing aborted due to exception.', ex, null, false);\n retval = false;\n r = this.parseError(p.errStr, p, this.JisonParserError);\n if (typeof r !== 'undefined') {\n retval = r;\n }\n } finally {\n retval = this.cleanupAfterParse(retval, true, true);\n this.__reentrant_call_depth--;\n } // /finally\n\n return retval;\n}\n};\nparser.originalParseError = parser.parseError;\nparser.originalQuoteName = parser.quoteName;\n/* lexer generated by jison-lex 0.6.1-215 */\n\n/*\n * Returns a Lexer object of the following structure:\n *\n * Lexer: {\n * yy: {} The so-called \"shared state\" or rather the *source* of it;\n * the real \"shared state\" `yy` passed around to\n * the rule actions, etc. is a direct reference!\n *\n * This \"shared context\" object was passed to the lexer by way of \n * the `lexer.setInput(str, yy)` API before you may use it.\n *\n * This \"shared context\" object is passed to the lexer action code in `performAction()`\n * so userland code in the lexer actions may communicate with the outside world \n * and/or other lexer rules' actions in more or less complex ways.\n *\n * }\n *\n * Lexer.prototype: {\n * EOF: 1,\n * ERROR: 2,\n *\n * yy: The overall \"shared context\" object reference.\n *\n * JisonLexerError: function(msg, hash),\n *\n * performAction: function lexer__performAction(yy, yyrulenumber, YY_START),\n *\n * The function parameters and `this` have the following value/meaning:\n * - `this` : reference to the `lexer` instance. \n * `yy_` is an alias for `this` lexer instance reference used internally.\n *\n * - `yy` : a reference to the `yy` \"shared state\" object which was passed to the lexer\n * by way of the `lexer.setInput(str, yy)` API before.\n *\n * Note:\n * The extra arguments you specified in the `%parse-param` statement in your\n * **parser** grammar definition file are passed to the lexer via this object\n * reference as member variables.\n *\n * - `yyrulenumber` : index of the matched lexer rule (regex), used internally.\n *\n * - `YY_START`: the current lexer \"start condition\" state.\n *\n * parseError: function(str, hash, ExceptionClass),\n *\n * constructLexErrorInfo: function(error_message, is_recoverable),\n * Helper function.\n * Produces a new errorInfo 'hash object' which can be passed into `parseError()`.\n * See it's use in this lexer kernel in many places; example usage:\n *\n * var infoObj = lexer.constructParseErrorInfo('fail!', true);\n * var retVal = lexer.parseError(infoObj.errStr, infoObj, lexer.JisonLexerError);\n *\n * options: { ... lexer %options ... },\n *\n * lex: function(),\n * Produce one token of lexed input, which was passed in earlier via the `lexer.setInput()` API.\n * You MAY use the additional `args...` parameters as per `%parse-param` spec of the **lexer** grammar:\n * these extra `args...` are added verbatim to the `yy` object reference as member variables.\n *\n * WARNING:\n * Lexer's additional `args...` parameters (via lexer's `%parse-param`) MAY conflict with\n * any attributes already added to `yy` by the **parser** or the jison run-time; \n * when such a collision is detected an exception is thrown to prevent the generated run-time \n * from silently accepting this confusing and potentially hazardous situation! \n *\n * cleanupAfterLex: function(do_not_nuke_errorinfos),\n * Helper function.\n *\n * This helper API is invoked when the **parse process** has completed: it is the responsibility\n * of the **parser** (or the calling userland code) to invoke this method once cleanup is desired. \n *\n * This helper may be invoked by user code to ensure the internal lexer gets properly garbage collected.\n *\n * setInput: function(input, [yy]),\n *\n *\n * input: function(),\n *\n *\n * unput: function(str),\n *\n *\n * more: function(),\n *\n *\n * reject: function(),\n *\n *\n * less: function(n),\n *\n *\n * pastInput: function(n),\n *\n *\n * upcomingInput: function(n),\n *\n *\n * showPosition: function(),\n *\n *\n * test_match: function(regex_match_array, rule_index),\n *\n *\n * next: function(),\n *\n *\n * begin: function(condition),\n *\n *\n * pushState: function(condition),\n *\n *\n * popState: function(),\n *\n *\n * topState: function(),\n *\n *\n * _currentRules: function(),\n *\n *\n * stateStackSize: function(),\n *\n *\n * performAction: function(yy, yy_, yyrulenumber, YY_START),\n *\n *\n * rules: [...],\n *\n *\n * conditions: {associative list: name ==> set},\n * }\n *\n *\n * token location info (`yylloc`): {\n * first_line: n,\n * last_line: n,\n * first_column: n,\n * last_column: n,\n * range: [start_number, end_number]\n * (where the numbers are indexes into the input string, zero-based)\n * }\n *\n * ---\n *\n * The `parseError` function receives a 'hash' object with these members for lexer errors:\n *\n * {\n * text: (matched text)\n * token: (the produced terminal token, if any)\n * token_id: (the produced terminal token numeric ID, if any)\n * line: (yylineno)\n * loc: (yylloc)\n * recoverable: (boolean: TRUE when the parser MAY have an error recovery rule\n * available for this particular error)\n * yy: (object: the current parser internal \"shared state\" `yy`\n * as is also available in the rule actions; this can be used,\n * for instance, for advanced error analysis and reporting)\n * lexer: (reference to the current lexer instance used by the parser)\n * }\n *\n * while `this` will reference the current lexer instance.\n *\n * When `parseError` is invoked by the lexer, the default implementation will\n * attempt to invoke `yy.parser.parseError()`; when this callback is not provided\n * it will try to invoke `yy.parseError()` instead. When that callback is also not\n * provided, a `JisonLexerError` exception will be thrown containing the error\n * message and `hash`, as constructed by the `constructLexErrorInfo()` API.\n *\n * Note that the lexer's `JisonLexerError` error class is passed via the\n * `ExceptionClass` argument, which is invoked to construct the exception\n * instance to be thrown, so technically `parseError` will throw the object\n * produced by the `new ExceptionClass(str, hash)` JavaScript expression.\n *\n * ---\n *\n * You can specify lexer options by setting / modifying the `.options` object of your Lexer instance.\n * These options are available:\n *\n * (Options are permanent.)\n * \n * yy: {\n * parseError: function(str, hash, ExceptionClass)\n * optional: overrides the default `parseError` function.\n * }\n *\n * lexer.options: {\n * pre_lex: function()\n * optional: is invoked before the lexer is invoked to produce another token.\n * `this` refers to the Lexer object.\n * post_lex: function(token) { return token; }\n * optional: is invoked when the lexer has produced a token `token`;\n * this function can override the returned token value by returning another.\n * When it does not return any (truthy) value, the lexer will return\n * the original `token`.\n * `this` refers to the Lexer object.\n *\n * WARNING: the next set of options are not meant to be changed. They echo the abilities of\n * the lexer as per when it was compiled!\n *\n * ranges: boolean\n * optional: `true` ==> token location info will include a .range[] member.\n * flex: boolean\n * optional: `true` ==> flex-like lexing behaviour where the rules are tested\n * exhaustively to find the longest match.\n * backtrack_lexer: boolean\n * optional: `true` ==> lexer regexes are tested in order and for invoked;\n * the lexer terminates the scan when a token is returned by the action code.\n * xregexp: boolean\n * optional: `true` ==> lexer rule regexes are \"extended regex format\" requiring the\n * `XRegExp` library. When this %option has not been specified at compile time, all lexer\n * rule regexes have been written as standard JavaScript RegExp expressions.\n * }\n */\n\n\nvar lexer = function() {\n /**\n * See also:\n * http://stackoverflow.com/questions/1382107/whats-a-good-way-to-extend-error-in-javascript/#35881508\n * but we keep the prototype.constructor and prototype.name assignment lines too for compatibility\n * with userland code which might access the derived class in a 'classic' way.\n *\n * @public\n * @constructor\n * @nocollapse\n */\n function JisonLexerError(msg, hash) {\n Object.defineProperty(this, 'name', {\n enumerable: false,\n writable: false,\n value: 'JisonLexerError'\n });\n\n if (msg == null)\n msg = '???';\n\n Object.defineProperty(this, 'message', {\n enumerable: false,\n writable: true,\n value: msg\n });\n\n this.hash = hash;\n var stacktrace;\n\n if (hash && hash.exception instanceof Error) {\n var ex2 = hash.exception;\n this.message = ex2.message || msg;\n stacktrace = ex2.stack;\n }\n\n if (!stacktrace) {\n if (Error.hasOwnProperty('captureStackTrace')) {\n // V8\n Error.captureStackTrace(this, this.constructor);\n } else {\n stacktrace = new Error(msg).stack;\n }\n }\n\n if (stacktrace) {\n Object.defineProperty(this, 'stack', {\n enumerable: false,\n writable: false,\n value: stacktrace\n });\n }\n }\n\n if (typeof Object.setPrototypeOf === 'function') {\n Object.setPrototypeOf(JisonLexerError.prototype, Error.prototype);\n } else {\n JisonLexerError.prototype = Object.create(Error.prototype);\n }\n\n JisonLexerError.prototype.constructor = JisonLexerError;\n JisonLexerError.prototype.name = 'JisonLexerError';\n\n var lexer = {\n \n// Code Generator Information Report\n// ---------------------------------\n//\n// Options:\n//\n// backtracking: .................... false\n// location.ranges: ................. false\n// location line+column tracking: ... true\n//\n//\n// Forwarded Parser Analysis flags:\n//\n// uses yyleng: ..................... false\n// uses yylineno: ................... false\n// uses yytext: ..................... false\n// uses yylloc: ..................... false\n// uses lexer values: ............... true / true\n// location tracking: ............... false\n// location assignment: ............. false\n//\n//\n// Lexer Analysis flags:\n//\n// uses yyleng: ..................... ???\n// uses yylineno: ................... ???\n// uses yytext: ..................... ???\n// uses yylloc: ..................... ???\n// uses ParseError API: ............. ???\n// uses yyerror: .................... ???\n// uses location tracking & editing: ???\n// uses more() API: ................. ???\n// uses unput() API: ................ ???\n// uses reject() API: ............... ???\n// uses less() API: ................. ???\n// uses display APIs pastInput(), upcomingInput(), showPosition():\n// ............................. ???\n// uses describeYYLLOC() API: ....... ???\n//\n// --------- END OF REPORT -----------\n\nEOF: 1,\n ERROR: 2,\n\n // JisonLexerError: JisonLexerError, /// <-- injected by the code generator\n\n // options: {}, /// <-- injected by the code generator\n\n // yy: ..., /// <-- injected by setInput()\n\n __currentRuleSet__: null, /// INTERNAL USE ONLY: internal rule set cache for the current lexer state \n\n __error_infos: [], /// INTERNAL USE ONLY: the set of lexErrorInfo objects created since the last cleanup \n __decompressed: false, /// INTERNAL USE ONLY: mark whether the lexer instance has been 'unfolded' completely and is now ready for use \n done: false, /// INTERNAL USE ONLY \n _backtrack: false, /// INTERNAL USE ONLY \n _input: '', /// INTERNAL USE ONLY \n _more: false, /// INTERNAL USE ONLY \n _signaled_error_token: false, /// INTERNAL USE ONLY \n conditionStack: [], /// INTERNAL USE ONLY; managed via `pushState()`, `popState()`, `topState()` and `stateStackSize()` \n match: '', /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: tracks input which has been matched so far for the lexer token under construction. `match` is identical to `yytext` except that this one still contains the matched input string after `lexer.performAction()` has been invoked, where userland code MAY have changed/replaced the `yytext` value entirely! \n matched: '', /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: tracks entire input which has been matched so far \n matches: false, /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: tracks RE match result for last (successful) match attempt \n yytext: '', /// ADVANCED USE ONLY: tracks input which has been matched so far for the lexer token under construction; this value is transferred to the parser as the 'token value' when the parser consumes the lexer token produced through a call to the `lex()` API. \n offset: 0, /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: tracks the 'cursor position' in the input string, i.e. the number of characters matched so far \n yyleng: 0, /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: length of matched input for the token under construction (`yytext`) \n yylineno: 0, /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: 'line number' at which the token under construction is located \n yylloc: null, /// READ-ONLY EXTERNAL ACCESS - ADVANCED USE ONLY: tracks location info (lines + columns) for the token under construction \n\n /**\n * INTERNAL USE: construct a suitable error info hash object instance for `parseError`.\n * \n * @public\n * @this {RegExpLexer}\n */\n constructLexErrorInfo: function lexer_constructLexErrorInfo(msg, recoverable, show_input_position) {\n msg = '' + msg;\n\n // heuristic to determine if the error message already contains a (partial) source code dump\n // as produced by either `showPosition()` or `prettyPrintRange()`:\n if (show_input_position == undefined) {\n show_input_position = !(msg.indexOf('\\n') > 0 && msg.indexOf('^') > 0);\n }\n\n if (this.yylloc && show_input_position) {\n if (typeof this.prettyPrintRange === 'function') {\n var pretty_src = this.prettyPrintRange(this.yylloc);\n\n if (!/\\n\\s*$/.test(msg)) {\n msg += '\\n';\n }\n\n msg += '\\n Erroneous area:\\n' + this.prettyPrintRange(this.yylloc);\n } else if (typeof this.showPosition === 'function') {\n var pos_str = this.showPosition();\n\n if (pos_str) {\n if (msg.length && msg[msg.length - 1] !== '\\n' && pos_str[0] !== '\\n') {\n msg += '\\n' + pos_str;\n } else {\n msg += pos_str;\n }\n }\n }\n }\n\n /** @constructor */\n var pei = {\n errStr: msg,\n recoverable: !!recoverable,\n text: this.match, // This one MAY be empty; userland code should use the `upcomingInput` API to obtain more text which follows the 'lexer cursor position'... \n token: null,\n line: this.yylineno,\n loc: this.yylloc,\n yy: this.yy,\n lexer: this,\n\n /**\n * and make sure the error info doesn't stay due to potential\n * ref cycle via userland code manipulations.\n * These would otherwise all be memory leak opportunities!\n * \n * Note that only array and object references are nuked as those\n * constitute the set of elements which can produce a cyclic ref.\n * The rest of the members is kept intact as they are harmless.\n * \n * @public\n * @this {LexErrorInfo}\n */\n destroy: function destructLexErrorInfo() {\n // remove cyclic references added to error info:\n // info.yy = null;\n // info.lexer = null;\n // ...\n var rec = !!this.recoverable;\n\n for (var key in this) {\n if (this.hasOwnProperty(key) && typeof key === 'object') {\n this[key] = undefined;\n }\n }\n\n this.recoverable = rec;\n }\n };\n\n // track this instance so we can `destroy()` it once we deem it superfluous and ready for garbage collection!\n this.__error_infos.push(pei);\n\n return pei;\n },\n\n /**\n * handler which is invoked when a lexer error occurs.\n * \n * @public\n * @this {RegExpLexer}\n */\n parseError: function lexer_parseError(str, hash, ExceptionClass) {\n if (!ExceptionClass) {\n ExceptionClass = this.JisonLexerError;\n }\n\n if (this.yy) {\n if (this.yy.parser && typeof this.yy.parser.parseError === 'function') {\n return this.yy.parser.parseError.call(this, str, hash, ExceptionClass) || this.ERROR;\n } else if (typeof this.yy.parseError === 'function') {\n return this.yy.parseError.call(this, str, hash, ExceptionClass) || this.ERROR;\n }\n }\n\n throw new ExceptionClass(str, hash);\n },\n\n /**\n * method which implements `yyerror(str, ...args)` functionality for use inside lexer actions.\n * \n * @public\n * @this {RegExpLexer}\n */\n yyerror: function yyError(str /*, ...args */) {\n var lineno_msg = '';\n\n if (this.yylloc) {\n lineno_msg = ' on line ' + (this.yylineno + 1);\n }\n\n var p = this.constructLexErrorInfo(\n 'Lexical error' + lineno_msg + ': ' + str,\n this.options.lexerErrorsAreRecoverable\n );\n\n // Add any extra args to the hash under the name `extra_error_attributes`:\n var args = Array.prototype.slice.call(arguments, 1);\n\n if (args.length) {\n p.extra_error_attributes = args;\n }\n\n return this.parseError(p.errStr, p, this.JisonLexerError) || this.ERROR;\n },\n\n /**\n * final cleanup function for when we have completed lexing the input;\n * make it an API so that external code can use this one once userland\n * code has decided it's time to destroy any lingering lexer error\n * hash object instances and the like: this function helps to clean\n * up these constructs, which *may* carry cyclic references which would\n * otherwise prevent the instances from being properly and timely\n * garbage-collected, i.e. this function helps prevent memory leaks!\n * \n * @public\n * @this {RegExpLexer}\n */\n cleanupAfterLex: function lexer_cleanupAfterLex(do_not_nuke_errorinfos) {\n // prevent lingering circular references from causing memory leaks:\n this.setInput('', {});\n\n // nuke the error hash info instances created during this run.\n // Userland code must COPY any data/references\n // in the error hash instance(s) it is more permanently interested in.\n if (!do_not_nuke_errorinfos) {\n for (var i = this.__error_infos.length - 1; i >= 0; i--) {\n var el = this.__error_infos[i];\n\n if (el && typeof el.destroy === 'function') {\n el.destroy();\n }\n }\n\n this.__error_infos.length = 0;\n }\n\n return this;\n },\n\n /**\n * clear the lexer token context; intended for internal use only\n * \n * @public\n * @this {RegExpLexer}\n */\n clear: function lexer_clear() {\n this.yytext = '';\n this.yyleng = 0;\n this.match = '';\n\n // - DO NOT reset `this.matched`\n this.matches = false;\n\n this._more = false;\n this._backtrack = false;\n var col = (this.yylloc ? this.yylloc.last_column : 0);\n\n this.yylloc = {\n first_line: this.yylineno + 1,\n first_column: col,\n last_line: this.yylineno + 1,\n last_column: col,\n range: [this.offset, this.offset]\n };\n },\n\n /**\n * resets the lexer, sets new input\n * \n * @public\n * @this {RegExpLexer}\n */\n setInput: function lexer_setInput(input, yy) {\n this.yy = yy || this.yy || {};\n\n // also check if we've fully initialized the lexer instance,\n // including expansion work to be done to go from a loaded\n // lexer to a usable lexer:\n if (!this.__decompressed) {\n // step 1: decompress the regex list:\n var rules = this.rules;\n\n for (var i = 0, len = rules.length; i < len; i++) {\n var rule_re = rules[i];\n\n // compression: is the RE an xref to another RE slot in the rules[] table?\n if (typeof rule_re === 'number') {\n rules[i] = rules[rule_re];\n }\n }\n\n // step 2: unfold the conditions[] set to make these ready for use:\n var conditions = this.conditions;\n\n for (var k in conditions) {\n var spec = conditions[k];\n var rule_ids = spec.rules;\n var len = rule_ids.length;\n var rule_regexes = new Array(len + 1); // slot 0 is unused; we use a 1-based index approach here to keep the hottest code in `lexer_next()` fast and simple! \n var rule_new_ids = new Array(len + 1);\n\n for (var i = 0; i < len; i++) {\n var idx = rule_ids[i];\n var rule_re = rules[idx];\n rule_regexes[i + 1] = rule_re;\n rule_new_ids[i + 1] = idx;\n }\n\n spec.rules = rule_new_ids;\n spec.__rule_regexes = rule_regexes;\n spec.__rule_count = len;\n }\n\n this.__decompressed = true;\n }\n\n this._input = input || '';\n this.clear();\n this._signaled_error_token = false;\n this.done = false;\n this.yylineno = 0;\n this.matched = '';\n this.conditionStack = ['INITIAL'];\n this.__currentRuleSet__ = null;\n\n this.yylloc = {\n first_line: 1,\n first_column: 0,\n last_line: 1,\n last_column: 0,\n range: [0, 0]\n };\n\n this.offset = 0;\n return this;\n },\n\n /**\n * edit the remaining input via user-specified callback.\n * This can be used to forward-adjust the input-to-parse, \n * e.g. inserting macro expansions and alike in the\n * input which has yet to be lexed.\n * The behaviour of this API contrasts the `unput()` et al\n * APIs as those act on the *consumed* input, while this\n * one allows one to manipulate the future, without impacting\n * the current `yyloc` cursor location or any history. \n * \n * Use this API to help implement C-preprocessor-like\n * `#include` statements, etc.\n * \n * The provided callback must be synchronous and is\n * expected to return the edited input (string).\n *\n * The `cpsArg` argument value is passed to the callback\n * as-is.\n *\n * `callback` interface: \n * `function callback(input, cpsArg)`\n * \n * - `input` will carry the remaining-input-to-lex string\n * from the lexer.\n * - `cpsArg` is `cpsArg` passed into this API.\n * \n * The `this` reference for the callback will be set to\n * reference this lexer instance so that userland code\n * in the callback can easily and quickly access any lexer\n * API. \n *\n * When the callback returns a non-string-type falsey value,\n * we assume the callback did not edit the input and we\n * will using the input as-is.\n *\n * When the callback returns a non-string-type value, it\n * is converted to a string for lexing via the `\"\" + retval`\n * operation. (See also why: http://2ality.com/2012/03/converting-to-string.html \n * -- that way any returned object's `toValue()` and `toString()`\n * methods will be invoked in a proper/desirable order.)\n * \n * @public\n * @this {RegExpLexer}\n */\n editRemainingInput: function lexer_editRemainingInput(callback, cpsArg) {\n var rv = callback.call(this, this._input, cpsArg);\n\n if (typeof rv !== 'string') {\n if (rv) {\n this._input = '' + rv;\n } \n // else: keep `this._input` as is. \n } else {\n this._input = rv;\n }\n\n return this;\n },\n\n /**\n * consumes and returns one char from the input\n * \n * @public\n * @this {RegExpLexer}\n */\n input: function lexer_input() {\n if (!this._input) {\n //this.done = true; -- don't set `done` as we want the lex()/next() API to be able to produce one custom EOF token match after this anyhow. (lexer can match special <> tokens and perform user action code for a <> match, but only does so *once*)\n return null;\n }\n\n var ch = this._input[0];\n this.yytext += ch;\n this.yyleng++;\n this.offset++;\n this.match += ch;\n this.matched += ch;\n\n // Count the linenumber up when we hit the LF (or a stand-alone CR).\n // On CRLF, the linenumber is incremented when you fetch the CR or the CRLF combo\n // and we advance immediately past the LF as well, returning both together as if\n // it was all a single 'character' only.\n var slice_len = 1;\n\n var lines = false;\n\n if (ch === '\\n') {\n lines = true;\n } else if (ch === '\\r') {\n lines = true;\n var ch2 = this._input[1];\n\n if (ch2 === '\\n') {\n slice_len++;\n ch += ch2;\n this.yytext += ch2;\n this.yyleng++;\n this.offset++;\n this.match += ch2;\n this.matched += ch2;\n this.yylloc.range[1]++;\n }\n }\n\n if (lines) {\n this.yylineno++;\n this.yylloc.last_line++;\n this.yylloc.last_column = 0;\n } else {\n this.yylloc.last_column++;\n }\n\n this.yylloc.range[1]++;\n this._input = this._input.slice(slice_len);\n return ch;\n },\n\n /**\n * unshifts one char (or an entire string) into the input\n * \n * @public\n * @this {RegExpLexer}\n */\n unput: function lexer_unput(ch) {\n var len = ch.length;\n var lines = ch.split(/(?:\\r\\n?|\\n)/g);\n this._input = ch + this._input;\n this.yytext = this.yytext.substr(0, this.yytext.length - len);\n this.yyleng = this.yytext.length;\n this.offset -= len;\n this.match = this.match.substr(0, this.match.length - len);\n this.matched = this.matched.substr(0, this.matched.length - len);\n\n if (lines.length > 1) {\n this.yylineno -= lines.length - 1;\n this.yylloc.last_line = this.yylineno + 1;\n\n // Get last entirely matched line into the `pre_lines[]` array's\n // last index slot; we don't mind when other previously \n // matched lines end up in the array too. \n var pre = this.match;\n\n var pre_lines = pre.split(/(?:\\r\\n?|\\n)/g);\n\n if (pre_lines.length === 1) {\n pre = this.matched;\n pre_lines = pre.split(/(?:\\r\\n?|\\n)/g);\n }\n\n this.yylloc.last_column = pre_lines[pre_lines.length - 1].length;\n } else {\n this.yylloc.last_column -= len;\n }\n\n this.yylloc.range[1] = this.yylloc.range[0] + this.yyleng;\n this.done = false;\n return this;\n },\n\n /**\n * cache matched text and append it on next action\n * \n * @public\n * @this {RegExpLexer}\n */\n more: function lexer_more() {\n this._more = true;\n return this;\n },\n\n /**\n * signal the lexer that this rule fails to match the input, so the\n * next matching rule (regex) should be tested instead.\n * \n * @public\n * @this {RegExpLexer}\n */\n reject: function lexer_reject() {\n if (this.options.backtrack_lexer) {\n this._backtrack = true;\n } else {\n // when the `parseError()` call returns, we MUST ensure that the error is registered.\n // We accomplish this by signaling an 'error' token to be produced for the current\n // `.lex()` run.\n var lineno_msg = '';\n\n if (this.yylloc) {\n lineno_msg = ' on line ' + (this.yylineno + 1);\n }\n\n var p = this.constructLexErrorInfo(\n 'Lexical error' + lineno_msg + ': You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).',\n false\n );\n\n this._signaled_error_token = this.parseError(p.errStr, p, this.JisonLexerError) || this.ERROR;\n }\n\n return this;\n },\n\n /**\n * retain first n characters of the match\n * \n * @public\n * @this {RegExpLexer}\n */\n less: function lexer_less(n) {\n return this.unput(this.match.slice(n));\n },\n\n /**\n * return (part of the) already matched input, i.e. for error\n * messages.\n * \n * Limit the returned string length to `maxSize` (default: 20).\n * \n * Limit the returned string to the `maxLines` number of lines of\n * input (default: 1).\n * \n * Negative limit values equal *unlimited*.\n * \n * @public\n * @this {RegExpLexer}\n */\n pastInput: function lexer_pastInput(maxSize, maxLines) {\n var past = this.matched.substring(0, this.matched.length - this.match.length);\n\n if (maxSize < 0)\n maxSize = past.length;\n else if (!maxSize)\n maxSize = 20;\n\n if (maxLines < 0)\n maxLines = past.length; // can't ever have more input lines than this! \n else if (!maxLines)\n maxLines = 1;\n\n // `substr` anticipation: treat \\r\\n as a single character and take a little\n // more than necessary so that we can still properly check against maxSize\n // after we've transformed and limited the newLines in here:\n past = past.substr(-maxSize * 2 - 2);\n\n // now that we have a significantly reduced string to process, transform the newlines\n // and chop them, then limit them:\n var a = past.replace(/\\r\\n|\\r/g, '\\n').split('\\n');\n\n a = a.slice(-maxLines);\n past = a.join('\\n');\n\n // When, after limiting to maxLines, we still have too much to return,\n // do add an ellipsis prefix...\n if (past.length > maxSize) {\n past = '...' + past.substr(-maxSize);\n }\n\n return past;\n },\n\n /**\n * return (part of the) upcoming input, i.e. for error messages.\n * \n * Limit the returned string length to `maxSize` (default: 20).\n * \n * Limit the returned string to the `maxLines` number of lines of input (default: 1).\n * \n * Negative limit values equal *unlimited*.\n *\n * > ### NOTE ###\n * >\n * > *\"upcoming input\"* is defined as the whole of the both\n * > the *currently lexed* input, together with any remaining input\n * > following that. *\"currently lexed\"* input is the input \n * > already recognized by the lexer but not yet returned with\n * > the lexer token. This happens when you are invoking this API\n * > from inside any lexer rule action code block. \n * >\n * \n * @public\n * @this {RegExpLexer}\n */\n upcomingInput: function lexer_upcomingInput(maxSize, maxLines) {\n var next = this.match;\n\n if (maxSize < 0)\n maxSize = next.length + this._input.length;\n else if (!maxSize)\n maxSize = 20;\n\n if (maxLines < 0)\n maxLines = maxSize; // can't ever have more input lines than this! \n else if (!maxLines)\n maxLines = 1;\n\n // `substring` anticipation: treat \\r\\n as a single character and take a little\n // more than necessary so that we can still properly check against maxSize\n // after we've transformed and limited the newLines in here:\n if (next.length < maxSize * 2 + 2) {\n next += this._input.substring(0, maxSize * 2 + 2); // substring is faster on Chrome/V8 \n }\n\n // now that we have a significantly reduced string to process, transform the newlines\n // and chop them, then limit them:\n var a = next.replace(/\\r\\n|\\r/g, '\\n').split('\\n');\n\n a = a.slice(0, maxLines);\n next = a.join('\\n');\n\n // When, after limiting to maxLines, we still have too much to return,\n // do add an ellipsis postfix...\n if (next.length > maxSize) {\n next = next.substring(0, maxSize) + '...';\n }\n\n return next;\n },\n\n /**\n * return a string which displays the character position where the\n * lexing error occurred, i.e. for error messages\n * \n * @public\n * @this {RegExpLexer}\n */\n showPosition: function lexer_showPosition(maxPrefix, maxPostfix) {\n var pre = this.pastInput(maxPrefix).replace(/\\s/g, ' ');\n var c = new Array(pre.length + 1).join('-');\n return pre + this.upcomingInput(maxPostfix).replace(/\\s/g, ' ') + '\\n' + c + '^';\n },\n\n /**\n * return an YYLLOC info object derived off the given context (actual, preceding, following, current).\n * Use this method when the given `actual` location is not guaranteed to exist (i.e. when\n * it MAY be NULL) and you MUST have a valid location info object anyway:\n * then we take the given context of the `preceding` and `following` locations, IFF those are available,\n * and reconstruct the `actual` location info from those.\n * If this fails, the heuristic is to take the `current` location, IFF available.\n * If this fails as well, we assume the sought location is at/around the current lexer position\n * and then produce that one as a response. DO NOTE that these heuristic/derived location info\n * values MAY be inaccurate!\n *\n * NOTE: `deriveLocationInfo()` ALWAYS produces a location info object *copy* of `actual`, not just\n * a *reference* hence all input location objects can be assumed to be 'constant' (function has no side-effects).\n * \n * @public\n * @this {RegExpLexer}\n */\n deriveLocationInfo: function lexer_deriveYYLLOC(actual, preceding, following, current) {\n var loc = {\n first_line: 1,\n first_column: 0,\n last_line: 1,\n last_column: 0,\n range: [0, 0]\n };\n\n if (actual) {\n loc.first_line = actual.first_line | 0;\n loc.last_line = actual.last_line | 0;\n loc.first_column = actual.first_column | 0;\n loc.last_column = actual.last_column | 0;\n\n if (actual.range) {\n loc.range[0] = actual.range[0] | 0;\n loc.range[1] = actual.range[1] | 0;\n }\n }\n\n if (loc.first_line <= 0 || loc.last_line < loc.first_line) {\n // plan B: heuristic using preceding and following:\n if (loc.first_line <= 0 && preceding) {\n loc.first_line = preceding.last_line | 0;\n loc.first_column = preceding.last_column | 0;\n\n if (preceding.range) {\n loc.range[0] = actual.range[1] | 0;\n }\n }\n\n if ((loc.last_line <= 0 || loc.last_line < loc.first_line) && following) {\n loc.last_line = following.first_line | 0;\n loc.last_column = following.first_column | 0;\n\n if (following.range) {\n loc.range[1] = actual.range[0] | 0;\n }\n }\n\n // plan C?: see if the 'current' location is useful/sane too:\n if (loc.first_line <= 0 && current && (loc.last_line <= 0 || current.last_line <= loc.last_line)) {\n loc.first_line = current.first_line | 0;\n loc.first_column = current.first_column | 0;\n\n if (current.range) {\n loc.range[0] = current.range[0] | 0;\n }\n }\n\n if (loc.last_line <= 0 && current && (loc.first_line <= 0 || current.first_line >= loc.first_line)) {\n loc.last_line = current.last_line | 0;\n loc.last_column = current.last_column | 0;\n\n if (current.range) {\n loc.range[1] = current.range[1] | 0;\n }\n }\n }\n\n // sanitize: fix last_line BEFORE we fix first_line as we use the 'raw' value of the latter\n // or plan D heuristics to produce a 'sensible' last_line value:\n if (loc.last_line <= 0) {\n if (loc.first_line <= 0) {\n loc.first_line = this.yylloc.first_line;\n loc.last_line = this.yylloc.last_line;\n loc.first_column = this.yylloc.first_column;\n loc.last_column = this.yylloc.last_column;\n loc.range[0] = this.yylloc.range[0];\n loc.range[1] = this.yylloc.range[1];\n } else {\n loc.last_line = this.yylloc.last_line;\n loc.last_column = this.yylloc.last_column;\n loc.range[1] = this.yylloc.range[1];\n }\n }\n\n if (loc.first_line <= 0) {\n loc.first_line = loc.last_line;\n loc.first_column = 0; // loc.last_column; \n loc.range[1] = loc.range[0];\n }\n\n if (loc.first_column < 0) {\n loc.first_column = 0;\n }\n\n if (loc.last_column < 0) {\n loc.last_column = (loc.first_column > 0 ? loc.first_column : 80);\n }\n\n return loc;\n },\n\n /**\n * return a string which displays the lines & columns of input which are referenced \n * by the given location info range, plus a few lines of context.\n * \n * This function pretty-prints the indicated section of the input, with line numbers \n * and everything!\n * \n * This function is very useful to provide highly readable error reports, while\n * the location range may be specified in various flexible ways:\n * \n * - `loc` is the location info object which references the area which should be\n * displayed and 'marked up': these lines & columns of text are marked up by `^`\n * characters below each character in the entire input range.\n * \n * - `context_loc` is the *optional* location info object which instructs this\n * pretty-printer how much *leading* context should be displayed alongside\n * the area referenced by `loc`. This can help provide context for the displayed\n * error, etc.\n * \n * When this location info is not provided, a default context of 3 lines is\n * used.\n * \n * - `context_loc2` is another *optional* location info object, which serves\n * a similar purpose to `context_loc`: it specifies the amount of *trailing*\n * context lines to display in the pretty-print output.\n * \n * When this location info is not provided, a default context of 1 line only is\n * used.\n * \n * Special Notes:\n * \n * - when the `loc`-indicated range is very large (about 5 lines or more), then\n * only the first and last few lines of this block are printed while a\n * `...continued...` message will be printed between them.\n * \n * This serves the purpose of not printing a huge amount of text when the `loc`\n * range happens to be huge: this way a manageable & readable output results\n * for arbitrary large ranges.\n * \n * - this function can display lines of input which whave not yet been lexed.\n * `prettyPrintRange()` can access the entire input!\n * \n * @public\n * @this {RegExpLexer}\n */\n prettyPrintRange: function lexer_prettyPrintRange(loc, context_loc, context_loc2) {\n loc = this.deriveLocationInfo(loc, context_loc, context_loc2);\n const CONTEXT = 3;\n const CONTEXT_TAIL = 1;\n const MINIMUM_VISIBLE_NONEMPTY_LINE_COUNT = 2;\n var input = this.matched + this._input;\n var lines = input.split('\\n');\n var l0 = Math.max(1, (context_loc ? context_loc.first_line : loc.first_line - CONTEXT));\n var l1 = Math.max(1, (context_loc2 ? context_loc2.last_line : loc.last_line + CONTEXT_TAIL));\n var lineno_display_width = 1 + Math.log10(l1 | 1) | 0;\n var ws_prefix = new Array(lineno_display_width).join(' ');\n var nonempty_line_indexes = [];\n\n var rv = lines.slice(l0 - 1, l1 + 1).map(function injectLineNumber(line, index) {\n var lno = index + l0;\n var lno_pfx = (ws_prefix + lno).substr(-lineno_display_width);\n var rv = lno_pfx + ': ' + line;\n var errpfx = new Array(lineno_display_width + 1).join('^');\n var offset = 2 + 1;\n var len = 0;\n\n if (lno === loc.first_line) {\n offset += loc.first_column;\n\n len = Math.max(\n 2,\n ((lno === loc.last_line ? loc.last_column : line.length)) - loc.first_column + 1\n );\n } else if (lno === loc.last_line) {\n len = Math.max(2, loc.last_column + 1);\n } else if (lno > loc.first_line && lno < loc.last_line) {\n len = Math.max(2, line.length + 1);\n }\n\n if (len) {\n var lead = new Array(offset).join('.');\n var mark = new Array(len).join('^');\n rv += '\\n' + errpfx + lead + mark;\n\n if (line.trim().length > 0) {\n nonempty_line_indexes.push(index);\n }\n }\n\n rv = rv.replace(/\\t/g, ' ');\n return rv;\n });\n\n // now make sure we don't print an overly large amount of error area: limit it \n // to the top and bottom line count:\n if (nonempty_line_indexes.length > 2 * MINIMUM_VISIBLE_NONEMPTY_LINE_COUNT) {\n var clip_start = nonempty_line_indexes[MINIMUM_VISIBLE_NONEMPTY_LINE_COUNT - 1] + 1;\n var clip_end = nonempty_line_indexes[nonempty_line_indexes.length - MINIMUM_VISIBLE_NONEMPTY_LINE_COUNT] - 1;\n var intermediate_line = new Array(lineno_display_width + 1).join(' ') + ' (...continued...)';\n intermediate_line += '\\n' + new Array(lineno_display_width + 1).join('-') + ' (---------------)';\n rv.splice(clip_start, clip_end - clip_start + 1, intermediate_line);\n }\n\n return rv.join('\\n');\n },\n\n /**\n * helper function, used to produce a human readable description as a string, given\n * the input `yylloc` location object.\n * \n * Set `display_range_too` to TRUE to include the string character index position(s)\n * in the description if the `yylloc.range` is available.\n * \n * @public\n * @this {RegExpLexer}\n */\n describeYYLLOC: function lexer_describe_yylloc(yylloc, display_range_too) {\n var l1 = yylloc.first_line;\n var l2 = yylloc.last_line;\n var c1 = yylloc.first_column;\n var c2 = yylloc.last_column;\n var dl = l2 - l1;\n var dc = c2 - c1;\n var rv;\n\n if (dl === 0) {\n rv = 'line ' + l1 + ', ';\n\n if (dc <= 1) {\n rv += 'column ' + c1;\n } else {\n rv += 'columns ' + c1 + ' .. ' + c2;\n }\n } else {\n rv = 'lines ' + l1 + '(column ' + c1 + ') .. ' + l2 + '(column ' + c2 + ')';\n }\n\n if (yylloc.range && display_range_too) {\n var r1 = yylloc.range[0];\n var r2 = yylloc.range[1] - 1;\n\n if (r2 <= r1) {\n rv += ' {String Offset: ' + r1 + '}';\n } else {\n rv += ' {String Offset range: ' + r1 + ' .. ' + r2 + '}';\n }\n }\n\n return rv;\n },\n\n /**\n * test the lexed token: return FALSE when not a match, otherwise return token.\n * \n * `match` is supposed to be an array coming out of a regex match, i.e. `match[0]`\n * contains the actually matched text string.\n * \n * Also move the input cursor forward and update the match collectors:\n * \n * - `yytext`\n * - `yyleng`\n * - `match`\n * - `matches`\n * - `yylloc`\n * - `offset`\n * \n * @public\n * @this {RegExpLexer}\n */\n test_match: function lexer_test_match(match, indexed_rule) {\n var token, lines, backup, match_str, match_str_len;\n\n if (this.options.backtrack_lexer) {\n // save context\n backup = {\n yylineno: this.yylineno,\n\n yylloc: {\n first_line: this.yylloc.first_line,\n last_line: this.yylloc.last_line,\n first_column: this.yylloc.first_column,\n last_column: this.yylloc.last_column,\n range: this.yylloc.range.slice(0)\n },\n\n yytext: this.yytext,\n match: this.match,\n matches: this.matches,\n matched: this.matched,\n yyleng: this.yyleng,\n offset: this.offset,\n _more: this._more,\n _input: this._input,\n\n //_signaled_error_token: this._signaled_error_token,\n yy: this.yy,\n\n conditionStack: this.conditionStack.slice(0),\n done: this.done\n };\n }\n\n match_str = match[0];\n match_str_len = match_str.length;\n\n // if (match_str.indexOf('\\n') !== -1 || match_str.indexOf('\\r') !== -1) {\n lines = match_str.split(/(?:\\r\\n?|\\n)/g);\n\n if (lines.length > 1) {\n this.yylineno += lines.length - 1;\n this.yylloc.last_line = this.yylineno + 1;\n this.yylloc.last_column = lines[lines.length - 1].length;\n } else {\n this.yylloc.last_column += match_str_len;\n }\n\n // }\n this.yytext += match_str;\n\n this.match += match_str;\n this.matched += match_str;\n this.matches = match;\n this.yyleng = this.yytext.length;\n this.yylloc.range[1] += match_str_len;\n\n // previous lex rules MAY have invoked the `more()` API rather than producing a token:\n // those rules will already have moved this `offset` forward matching their match lengths,\n // hence we must only add our own match length now:\n this.offset += match_str_len;\n\n this._more = false;\n this._backtrack = false;\n this._input = this._input.slice(match_str_len);\n\n // calling this method:\n //\n // function lexer__performAction(yy, yyrulenumber, YY_START) {...}\n token = this.performAction.call(\n this,\n this.yy,\n indexed_rule,\n this.conditionStack[this.conditionStack.length - 1] /* = YY_START */\n );\n\n // otherwise, when the action codes are all simple return token statements:\n //token = this.simpleCaseActionClusters[indexed_rule];\n\n if (this.done && this._input) {\n this.done = false;\n }\n\n if (token) {\n return token;\n } else if (this._backtrack) {\n // recover context\n for (var k in backup) {\n this[k] = backup[k];\n }\n\n this.__currentRuleSet__ = null;\n return false; // rule action called reject() implying the next rule should be tested instead. \n } else if (this._signaled_error_token) {\n // produce one 'error' token as `.parseError()` in `reject()`\n // did not guarantee a failure signal by throwing an exception!\n token = this._signaled_error_token;\n\n this._signaled_error_token = false;\n return token;\n }\n\n return false;\n },\n\n /**\n * return next match in input\n * \n * @public\n * @this {RegExpLexer}\n */\n next: function lexer_next() {\n if (this.done) {\n this.clear();\n return this.EOF;\n }\n\n if (!this._input) {\n this.done = true;\n }\n\n var token, match, tempMatch, index;\n\n if (!this._more) {\n this.clear();\n }\n\n var spec = this.__currentRuleSet__;\n\n if (!spec) {\n // Update the ruleset cache as we apparently encountered a state change or just started lexing.\n // The cache is set up for fast lookup -- we assume a lexer will switch states much less often than it will\n // invoke the `lex()` token-producing API and related APIs, hence caching the set for direct access helps\n // speed up those activities a tiny bit.\n spec = this.__currentRuleSet__ = this._currentRules();\n\n // Check whether a *sane* condition has been pushed before: this makes the lexer robust against\n // user-programmer bugs such as https://github.com/zaach/jison-lex/issues/19\n if (!spec || !spec.rules) {\n var lineno_msg = '';\n\n if (this.options.trackPosition) {\n lineno_msg = ' on line ' + (this.yylineno + 1);\n }\n\n var p = this.constructLexErrorInfo(\n 'Internal lexer engine error' + lineno_msg + ': The lex grammar programmer pushed a non-existing condition name \"' + this.topState() + '\"; this is a fatal error and should be reported to the application programmer team!',\n false\n );\n\n // produce one 'error' token until this situation has been resolved, most probably by parse termination!\n return this.parseError(p.errStr, p, this.JisonLexerError) || this.ERROR;\n }\n }\n\n var rule_ids = spec.rules;\n var regexes = spec.__rule_regexes;\n var len = spec.__rule_count;\n\n // Note: the arrays are 1-based, while `len` itself is a valid index,\n // hence the non-standard less-or-equal check in the next loop condition!\n for (var i = 1; i <= len; i++) {\n tempMatch = this._input.match(regexes[i]);\n\n if (tempMatch && (!match || tempMatch[0].length > match[0].length)) {\n match = tempMatch;\n index = i;\n\n if (this.options.backtrack_lexer) {\n token = this.test_match(tempMatch, rule_ids[i]);\n\n if (token !== false) {\n return token;\n } else if (this._backtrack) {\n match = undefined;\n continue; // rule action called reject() implying a rule MISmatch. \n } else {\n // else: this is a lexer rule which consumes input without producing a token (e.g. whitespace)\n return false;\n }\n } else if (!this.options.flex) {\n break;\n }\n }\n }\n\n if (match) {\n token = this.test_match(match, rule_ids[index]);\n\n if (token !== false) {\n return token;\n }\n\n // else: this is a lexer rule which consumes input without producing a token (e.g. whitespace)\n return false;\n }\n\n if (!this._input) {\n this.done = true;\n this.clear();\n return this.EOF;\n } else {\n var lineno_msg = '';\n\n if (this.options.trackPosition) {\n lineno_msg = ' on line ' + (this.yylineno + 1);\n }\n\n var p = this.constructLexErrorInfo(\n 'Lexical error' + lineno_msg + ': Unrecognized text.',\n this.options.lexerErrorsAreRecoverable\n );\n\n var pendingInput = this._input;\n var activeCondition = this.topState();\n var conditionStackDepth = this.conditionStack.length;\n token = this.parseError(p.errStr, p, this.JisonLexerError) || this.ERROR;\n\n if (token === this.ERROR) {\n // we can try to recover from a lexer error that `parseError()` did not 'recover' for us\n // by moving forward at least one character at a time IFF the (user-specified?) `parseError()`\n // has not consumed/modified any pending input or changed state in the error handler:\n if (!this.matches && // and make sure the input has been modified/consumed ...\n pendingInput === this._input && // ...or the lexer state has been modified significantly enough\n // to merit a non-consuming error handling action right now.\n activeCondition === this.topState() && conditionStackDepth === this.conditionStack.length) {\n this.input();\n }\n }\n\n return token;\n }\n },\n\n /**\n * return next match that has a token\n * \n * @public\n * @this {RegExpLexer}\n */\n lex: function lexer_lex() {\n var r;\n\n // allow the PRE/POST handlers set/modify the return token for maximum flexibility of the generated lexer:\n if (typeof this.pre_lex === 'function') {\n r = this.pre_lex.call(this, 0);\n }\n\n if (typeof this.options.pre_lex === 'function') {\n // (also account for a userdef function which does not return any value: keep the token as is)\n r = this.options.pre_lex.call(this, r) || r;\n }\n\n if (this.yy && typeof this.yy.pre_lex === 'function') {\n // (also account for a userdef function which does not return any value: keep the token as is)\n r = this.yy.pre_lex.call(this, r) || r;\n }\n\n while (!r) {\n r = this.next();\n }\n\n if (this.yy && typeof this.yy.post_lex === 'function') {\n // (also account for a userdef function which does not return any value: keep the token as is)\n r = this.yy.post_lex.call(this, r) || r;\n }\n\n if (typeof this.options.post_lex === 'function') {\n // (also account for a userdef function which does not return any value: keep the token as is)\n r = this.options.post_lex.call(this, r) || r;\n }\n\n if (typeof this.post_lex === 'function') {\n // (also account for a userdef function which does not return any value: keep the token as is)\n r = this.post_lex.call(this, r) || r;\n }\n\n return r;\n },\n\n /**\n * return next match that has a token. Identical to the `lex()` API but does not invoke any of the \n * `pre_lex()` nor any of the `post_lex()` callbacks.\n * \n * @public\n * @this {RegExpLexer}\n */\n fastLex: function lexer_fastLex() {\n var r;\n\n while (!r) {\n r = this.next();\n }\n\n return r;\n },\n\n /**\n * return info about the lexer state that can help a parser or other lexer API user to use the\n * most efficient means available. This API is provided to aid run-time performance for larger\n * systems which employ this lexer.\n * \n * @public\n * @this {RegExpLexer}\n */\n canIUse: function lexer_canIUse() {\n var rv = {\n fastLex: !(typeof this.pre_lex === 'function' || typeof this.options.pre_lex === 'function' || this.yy && typeof this.yy.pre_lex === 'function' || this.yy && typeof this.yy.post_lex === 'function' || typeof this.options.post_lex === 'function' || typeof this.post_lex === 'function') && typeof this.fastLex === 'function'\n };\n\n return rv;\n },\n\n /**\n * backwards compatible alias for `pushState()`;\n * the latter is symmetrical with `popState()` and we advise to use\n * those APIs in any modern lexer code, rather than `begin()`.\n * \n * @public\n * @this {RegExpLexer}\n */\n begin: function lexer_begin(condition) {\n return this.pushState(condition);\n },\n\n /**\n * activates a new lexer condition state (pushes the new lexer\n * condition state onto the condition stack)\n * \n * @public\n * @this {RegExpLexer}\n */\n pushState: function lexer_pushState(condition) {\n this.conditionStack.push(condition);\n this.__currentRuleSet__ = null;\n return this;\n },\n\n /**\n * pop the previously active lexer condition state off the condition\n * stack\n * \n * @public\n * @this {RegExpLexer}\n */\n popState: function lexer_popState() {\n var n = this.conditionStack.length - 1;\n\n if (n > 0) {\n this.__currentRuleSet__ = null;\n return this.conditionStack.pop();\n } else {\n return this.conditionStack[0];\n }\n },\n\n /**\n * return the currently active lexer condition state; when an index\n * argument is provided it produces the N-th previous condition state,\n * if available\n * \n * @public\n * @this {RegExpLexer}\n */\n topState: function lexer_topState(n) {\n n = this.conditionStack.length - 1 - Math.abs(n || 0);\n\n if (n >= 0) {\n return this.conditionStack[n];\n } else {\n return 'INITIAL';\n }\n },\n\n /**\n * (internal) determine the lexer rule set which is active for the\n * currently active lexer condition state\n * \n * @public\n * @this {RegExpLexer}\n */\n _currentRules: function lexer__currentRules() {\n if (this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1]) {\n return this.conditions[this.conditionStack[this.conditionStack.length - 1]];\n } else {\n return this.conditions['INITIAL'];\n }\n },\n\n /**\n * return the number of states currently on the stack\n * \n * @public\n * @this {RegExpLexer}\n */\n stateStackSize: function lexer_stateStackSize() {\n return this.conditionStack.length;\n },\n\n options: {\n trackPosition: true\n },\n\n JisonLexerError: JisonLexerError,\n\n performAction: function lexer__performAction(yy, yyrulenumber, YY_START) {\n var yy_ = this;\n var YYSTATE = YY_START;\n\n switch (yyrulenumber) {\n case 1:\n /*! Conditions:: INITIAL */\n /*! Rule:: \\s+ */\n /* skip whitespace */\n break;\n\n default:\n return this.simpleCaseActionClusters[yyrulenumber];\n }\n },\n\n simpleCaseActionClusters: {\n /*! Conditions:: INITIAL */\n /*! Rule:: (--[0-9a-z-A-Z-]*) */\n 0: 13,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: \\* */\n 2: 5,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: \\/ */\n 3: 6,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: \\+ */\n 4: 3,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: - */\n 5: 4,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)px\\b */\n 6: 15,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)cm\\b */\n 7: 15,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)mm\\b */\n 8: 15,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)in\\b */\n 9: 15,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)pt\\b */\n 10: 15,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)pc\\b */\n 11: 15,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)deg\\b */\n 12: 16,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)grad\\b */\n 13: 16,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)rad\\b */\n 14: 16,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)turn\\b */\n 15: 16,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)s\\b */\n 16: 17,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)ms\\b */\n 17: 17,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)Hz\\b */\n 18: 18,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)kHz\\b */\n 19: 18,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)dpi\\b */\n 20: 19,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)dpcm\\b */\n 21: 19,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)dppx\\b */\n 22: 19,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)em\\b */\n 23: 20,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)ex\\b */\n 24: 21,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)ch\\b */\n 25: 22,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)rem\\b */\n 26: 23,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)vw\\b */\n 27: 25,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)vh\\b */\n 28: 24,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)vmin\\b */\n 29: 26,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)vmax\\b */\n 30: 27,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)% */\n 31: 28,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([0-9]+(\\.[0-9]*)?|\\.[0-9]+)\\b */\n 32: 11,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: (calc) */\n 33: 9,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: (var) */\n 34: 12,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: ([a-z]+) */\n 35: 10,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: \\( */\n 36: 7,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: \\) */\n 37: 8,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: , */\n 38: 14,\n\n /*! Conditions:: INITIAL */\n /*! Rule:: $ */\n 39: 1\n },\n\n rules: [\n /* 0: */ /^(?:(--[\\d\\-A-Za-z]*))/,\n /* 1: */ /^(?:\\s+)/,\n /* 2: */ /^(?:\\*)/,\n /* 3: */ /^(?:\\/)/,\n /* 4: */ /^(?:\\+)/,\n /* 5: */ /^(?:-)/,\n /* 6: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)px\\b)/,\n /* 7: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)cm\\b)/,\n /* 8: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)mm\\b)/,\n /* 9: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)in\\b)/,\n /* 10: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)pt\\b)/,\n /* 11: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)pc\\b)/,\n /* 12: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)deg\\b)/,\n /* 13: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)grad\\b)/,\n /* 14: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)rad\\b)/,\n /* 15: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)turn\\b)/,\n /* 16: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)s\\b)/,\n /* 17: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)ms\\b)/,\n /* 18: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)Hz\\b)/,\n /* 19: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)kHz\\b)/,\n /* 20: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)dpi\\b)/,\n /* 21: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)dpcm\\b)/,\n /* 22: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)dppx\\b)/,\n /* 23: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)em\\b)/,\n /* 24: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)ex\\b)/,\n /* 25: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)ch\\b)/,\n /* 26: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)rem\\b)/,\n /* 27: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)vw\\b)/,\n /* 28: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)vh\\b)/,\n /* 29: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)vmin\\b)/,\n /* 30: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)vmax\\b)/,\n /* 31: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)%)/,\n /* 32: */ /^(?:(\\d+(\\.\\d*)?|\\.\\d+)\\b)/,\n /* 33: */ /^(?:(calc))/,\n /* 34: */ /^(?:(var))/,\n /* 35: */ /^(?:([a-z]+))/,\n /* 36: */ /^(?:\\()/,\n /* 37: */ /^(?:\\))/,\n /* 38: */ /^(?:,)/,\n /* 39: */ /^(?:$)/\n ],\n\n conditions: {\n 'INITIAL': {\n rules: [\n 0,\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 7,\n 8,\n 9,\n 10,\n 11,\n 12,\n 13,\n 14,\n 15,\n 16,\n 17,\n 18,\n 19,\n 20,\n 21,\n 22,\n 23,\n 24,\n 25,\n 26,\n 27,\n 28,\n 29,\n 30,\n 31,\n 32,\n 33,\n 34,\n 35,\n 36,\n 37,\n 38,\n 39\n ],\n\n inclusive: true\n }\n }\n };\n\n return lexer;\n}();\nparser.lexer = lexer;\n\n\n\nfunction Parser() {\n this.yy = {};\n}\nParser.prototype = parser;\nparser.Parser = Parser;\n\nreturn new Parser();\n})();\n\n \n\n\nif (typeof require !== 'undefined' && typeof exports !== 'undefined') {\n exports.parser = parser;\n exports.Parser = parser.Parser;\n exports.parse = function () {\n return parser.parse.apply(parser, arguments);\n };\n \n}\n","var parse = require(\"./parse\");\nvar walk = require(\"./walk\");\nvar stringify = require(\"./stringify\");\n\nfunction ValueParser(value) {\n if (this instanceof ValueParser) {\n this.nodes = parse(value);\n return this;\n }\n return new ValueParser(value);\n}\n\nValueParser.prototype.toString = function() {\n return Array.isArray(this.nodes) ? stringify(this.nodes) : \"\";\n};\n\nValueParser.prototype.walk = function(cb, bubble) {\n walk(this.nodes, cb, bubble);\n return this;\n};\n\nValueParser.unit = require(\"./unit\");\n\nValueParser.walk = walk;\n\nValueParser.stringify = stringify;\n\nmodule.exports = ValueParser;\n","var openParentheses = \"(\".charCodeAt(0);\nvar closeParentheses = \")\".charCodeAt(0);\nvar singleQuote = \"'\".charCodeAt(0);\nvar doubleQuote = '\"'.charCodeAt(0);\nvar backslash = \"\\\\\".charCodeAt(0);\nvar slash = \"/\".charCodeAt(0);\nvar comma = \",\".charCodeAt(0);\nvar colon = \":\".charCodeAt(0);\nvar star = \"*\".charCodeAt(0);\n\nmodule.exports = function(input) {\n var tokens = [];\n var value = input;\n\n var next, quote, prev, token, escape, escapePos, whitespacePos;\n var pos = 0;\n var code = value.charCodeAt(pos);\n var max = value.length;\n var stack = [{ nodes: tokens }];\n var balanced = 0;\n var parent;\n\n var name = \"\";\n var before = \"\";\n var after = \"\";\n\n while (pos < max) {\n // Whitespaces\n if (code <= 32) {\n next = pos;\n do {\n next += 1;\n code = value.charCodeAt(next);\n } while (code <= 32);\n token = value.slice(pos, next);\n\n prev = tokens[tokens.length - 1];\n if (code === closeParentheses && balanced) {\n after = token;\n } else if (prev && prev.type === \"div\") {\n prev.after = token;\n } else if (\n code === comma ||\n code === colon ||\n (code === slash && value.charCodeAt(next + 1) !== star)\n ) {\n before = token;\n } else {\n tokens.push({\n type: \"space\",\n sourceIndex: pos,\n value: token\n });\n }\n\n pos = next;\n\n // Quotes\n } else if (code === singleQuote || code === doubleQuote) {\n next = pos;\n quote = code === singleQuote ? \"'\" : '\"';\n token = {\n type: \"string\",\n sourceIndex: pos,\n quote: quote\n };\n do {\n escape = false;\n next = value.indexOf(quote, next + 1);\n if (~next) {\n escapePos = next;\n while (value.charCodeAt(escapePos - 1) === backslash) {\n escapePos -= 1;\n escape = !escape;\n }\n } else {\n value += quote;\n next = value.length - 1;\n token.unclosed = true;\n }\n } while (escape);\n token.value = value.slice(pos + 1, next);\n\n tokens.push(token);\n pos = next + 1;\n code = value.charCodeAt(pos);\n\n // Comments\n } else if (code === slash && value.charCodeAt(pos + 1) === star) {\n token = {\n type: \"comment\",\n sourceIndex: pos\n };\n\n next = value.indexOf(\"*/\", pos);\n if (next === -1) {\n token.unclosed = true;\n next = value.length;\n }\n\n token.value = value.slice(pos + 2, next);\n tokens.push(token);\n\n pos = next + 2;\n code = value.charCodeAt(pos);\n\n // Dividers\n } else if (code === slash || code === comma || code === colon) {\n token = value[pos];\n\n tokens.push({\n type: \"div\",\n sourceIndex: pos - before.length,\n value: token,\n before: before,\n after: \"\"\n });\n before = \"\";\n\n pos += 1;\n code = value.charCodeAt(pos);\n\n // Open parentheses\n } else if (openParentheses === code) {\n // Whitespaces after open parentheses\n next = pos;\n do {\n next += 1;\n code = value.charCodeAt(next);\n } while (code <= 32);\n token = {\n type: \"function\",\n sourceIndex: pos - name.length,\n value: name,\n before: value.slice(pos + 1, next)\n };\n pos = next;\n\n if (name === \"url\" && code !== singleQuote && code !== doubleQuote) {\n next -= 1;\n do {\n escape = false;\n next = value.indexOf(\")\", next + 1);\n if (~next) {\n escapePos = next;\n while (value.charCodeAt(escapePos - 1) === backslash) {\n escapePos -= 1;\n escape = !escape;\n }\n } else {\n value += \")\";\n next = value.length - 1;\n token.unclosed = true;\n }\n } while (escape);\n // Whitespaces before closed\n whitespacePos = next;\n do {\n whitespacePos -= 1;\n code = value.charCodeAt(whitespacePos);\n } while (code <= 32);\n if (pos !== whitespacePos + 1) {\n token.nodes = [\n {\n type: \"word\",\n sourceIndex: pos,\n value: value.slice(pos, whitespacePos + 1)\n }\n ];\n } else {\n token.nodes = [];\n }\n if (token.unclosed && whitespacePos + 1 !== next) {\n token.after = \"\";\n token.nodes.push({\n type: \"space\",\n sourceIndex: whitespacePos + 1,\n value: value.slice(whitespacePos + 1, next)\n });\n } else {\n token.after = value.slice(whitespacePos + 1, next);\n }\n pos = next + 1;\n code = value.charCodeAt(pos);\n tokens.push(token);\n } else {\n balanced += 1;\n token.after = \"\";\n tokens.push(token);\n stack.push(token);\n tokens = token.nodes = [];\n parent = token;\n }\n name = \"\";\n\n // Close parentheses\n } else if (closeParentheses === code && balanced) {\n pos += 1;\n code = value.charCodeAt(pos);\n\n parent.after = after;\n after = \"\";\n balanced -= 1;\n stack.pop();\n parent = stack[balanced];\n tokens = parent.nodes;\n\n // Words\n } else {\n next = pos;\n do {\n if (code === backslash) {\n next += 1;\n }\n next += 1;\n code = value.charCodeAt(next);\n } while (\n next < max &&\n !(\n code <= 32 ||\n code === singleQuote ||\n code === doubleQuote ||\n code === comma ||\n code === colon ||\n code === slash ||\n code === openParentheses ||\n (code === closeParentheses && balanced)\n )\n );\n token = value.slice(pos, next);\n\n if (openParentheses === code) {\n name = token;\n } else {\n tokens.push({\n type: \"word\",\n sourceIndex: pos,\n value: token\n });\n }\n\n pos = next;\n }\n }\n\n for (pos = stack.length - 1; pos; pos -= 1) {\n stack[pos].unclosed = true;\n }\n\n return stack[0].nodes;\n};\n","function stringifyNode(node, custom) {\n var type = node.type;\n var value = node.value;\n var buf;\n var customResult;\n\n if (custom && (customResult = custom(node)) !== undefined) {\n return customResult;\n } else if (type === \"word\" || type === \"space\") {\n return value;\n } else if (type === \"string\") {\n buf = node.quote || \"\";\n return buf + value + (node.unclosed ? \"\" : buf);\n } else if (type === \"comment\") {\n return \"/*\" + value + (node.unclosed ? \"\" : \"*/\");\n } else if (type === \"div\") {\n return (node.before || \"\") + value + (node.after || \"\");\n } else if (Array.isArray(node.nodes)) {\n buf = stringify(node.nodes);\n if (type !== \"function\") {\n return buf;\n }\n return (\n value +\n \"(\" +\n (node.before || \"\") +\n buf +\n (node.after || \"\") +\n (node.unclosed ? \"\" : \")\")\n );\n }\n return value;\n}\n\nfunction stringify(nodes, custom) {\n var result, i;\n\n if (Array.isArray(nodes)) {\n result = \"\";\n for (i = nodes.length - 1; ~i; i -= 1) {\n result = stringifyNode(nodes[i], custom) + result;\n }\n return result;\n }\n return stringifyNode(nodes, custom);\n}\n\nmodule.exports = stringify;\n","var minus = \"-\".charCodeAt(0);\nvar plus = \"+\".charCodeAt(0);\nvar dot = \".\".charCodeAt(0);\nvar exp = \"e\".charCodeAt(0);\nvar EXP = \"E\".charCodeAt(0);\n\nmodule.exports = function(value) {\n var pos = 0;\n var length = value.length;\n var dotted = false;\n var sciPos = -1;\n var containsNumber = false;\n var code;\n\n while (pos < length) {\n code = value.charCodeAt(pos);\n\n if (code >= 48 && code <= 57) {\n containsNumber = true;\n } else if (code === exp || code === EXP) {\n if (sciPos > -1) {\n break;\n }\n sciPos = pos;\n } else if (code === dot) {\n if (dotted) {\n break;\n }\n dotted = true;\n } else if (code === plus || code === minus) {\n if (pos !== 0) {\n break;\n }\n } else {\n break;\n }\n\n pos += 1;\n }\n\n if (sciPos + 1 === pos) pos--;\n\n return containsNumber\n ? {\n number: value.slice(0, pos),\n unit: value.slice(pos)\n }\n : false;\n};\n","module.exports = function walk(nodes, cb, bubble) {\n var i, max, node, result;\n\n for (i = 0, max = nodes.length; i < max; i += 1) {\n node = nodes[i];\n if (!bubble) {\n result = cb(node, i, nodes);\n }\n\n if (\n result !== false &&\n node.type === \"function\" &&\n Array.isArray(node.nodes)\n ) {\n walk(node.nodes, cb, bubble);\n }\n\n if (bubble) {\n cb(node, i, nodes);\n }\n }\n};\n","/** @license React v0.20.2\n * scheduler.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var f,g,h,k;if(\"object\"===typeof performance&&\"function\"===typeof performance.now){var l=performance;exports.unstable_now=function(){return l.now()}}else{var p=Date,q=p.now();exports.unstable_now=function(){return p.now()-q}}\nif(\"undefined\"===typeof window||\"function\"!==typeof MessageChannel){var t=null,u=null,w=function(){if(null!==t)try{var a=exports.unstable_now();t(!0,a);t=null}catch(b){throw setTimeout(w,0),b;}};f=function(a){null!==t?setTimeout(f,0,a):(t=a,setTimeout(w,0))};g=function(a,b){u=setTimeout(a,b)};h=function(){clearTimeout(u)};exports.unstable_shouldYield=function(){return!1};k=exports.unstable_forceFrameRate=function(){}}else{var x=window.setTimeout,y=window.clearTimeout;if(\"undefined\"!==typeof console){var z=\nwindow.cancelAnimationFrame;\"function\"!==typeof window.requestAnimationFrame&&console.error(\"This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills\");\"function\"!==typeof z&&console.error(\"This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills\")}var A=!1,B=null,C=-1,D=5,E=0;exports.unstable_shouldYield=function(){return exports.unstable_now()>=\nE};k=function(){};exports.unstable_forceFrameRate=function(a){0>a||125>>1,e=a[d];if(void 0!==e&&0I(n,c))void 0!==r&&0>I(r,n)?(a[d]=r,a[v]=c,d=v):(a[d]=n,a[m]=c,d=m);else if(void 0!==r&&0>I(r,c))a[d]=r,a[v]=c,d=v;else break a}}return b}return null}function I(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}var L=[],M=[],N=1,O=null,P=3,Q=!1,R=!1,S=!1;\nfunction T(a){for(var b=J(M);null!==b;){if(null===b.callback)K(M);else if(b.startTime<=a)K(M),b.sortIndex=b.expirationTime,H(L,b);else break;b=J(M)}}function U(a){S=!1;T(a);if(!R)if(null!==J(L))R=!0,f(V);else{var b=J(M);null!==b&&g(U,b.startTime-a)}}\nfunction V(a,b){R=!1;S&&(S=!1,h());Q=!0;var c=P;try{T(b);for(O=J(L);null!==O&&(!(O.expirationTime>b)||a&&!exports.unstable_shouldYield());){var d=O.callback;if(\"function\"===typeof d){O.callback=null;P=O.priorityLevel;var e=d(O.expirationTime<=b);b=exports.unstable_now();\"function\"===typeof e?O.callback=e:O===J(L)&&K(L);T(b)}else K(L);O=J(L)}if(null!==O)var m=!0;else{var n=J(M);null!==n&&g(U,n.startTime-b);m=!1}return m}finally{O=null,P=c,Q=!1}}var W=k;exports.unstable_IdlePriority=5;\nexports.unstable_ImmediatePriority=1;exports.unstable_LowPriority=4;exports.unstable_NormalPriority=3;exports.unstable_Profiling=null;exports.unstable_UserBlockingPriority=2;exports.unstable_cancelCallback=function(a){a.callback=null};exports.unstable_continueExecution=function(){R||Q||(R=!0,f(V))};exports.unstable_getCurrentPriorityLevel=function(){return P};exports.unstable_getFirstCallbackNode=function(){return J(L)};\nexports.unstable_next=function(a){switch(P){case 1:case 2:case 3:var b=3;break;default:b=P}var c=P;P=b;try{return a()}finally{P=c}};exports.unstable_pauseExecution=function(){};exports.unstable_requestPaint=W;exports.unstable_runWithPriority=function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=P;P=a;try{return b()}finally{P=c}};\nexports.unstable_scheduleCallback=function(a,b,c){var d=exports.unstable_now();\"object\"===typeof c&&null!==c?(c=c.delay,c=\"number\"===typeof c&&0d?(a.sortIndex=c,H(M,a),null===J(L)&&a===J(M)&&(S?h():S=!0,g(U,c-d))):(a.sortIndex=e,H(L,a),R||Q||(R=!0,f(V)));return a};\nexports.unstable_wrapCallback=function(a){var b=P;return function(){var c=P;P=b;try{return a.apply(this,arguments)}finally{P=c}}};\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/scheduler.production.min.js');\n} else {\n module.exports = require('./cjs/scheduler.development.js');\n}\n","//\n\nmodule.exports = function shallowEqual(objA, objB, compare, compareContext) {\n var ret = compare ? compare.call(compareContext, objA, objB) : void 0;\n\n if (ret !== void 0) {\n return !!ret;\n }\n\n if (objA === objB) {\n return true;\n }\n\n if (typeof objA !== \"object\" || !objA || typeof objB !== \"object\" || !objB) {\n return false;\n }\n\n var keysA = Object.keys(objA);\n var keysB = Object.keys(objB);\n\n if (keysA.length !== keysB.length) {\n return false;\n }\n\n var bHasOwnProperty = Object.prototype.hasOwnProperty.bind(objB);\n\n // Test for A's keys different from B.\n for (var idx = 0; idx < keysA.length; idx++) {\n var key = keysA[idx];\n\n if (!bHasOwnProperty(key)) {\n return false;\n }\n\n var valueA = objA[key];\n var valueB = objB[key];\n\n ret = compare ? compare.call(compareContext, valueA, valueB, key) : void 0;\n\n if (ret === false || (ret === void 0 && valueA !== valueB)) {\n return false;\n }\n }\n\n return true;\n};\n","function stylis_min (W) {\n function M(d, c, e, h, a) {\n for (var m = 0, b = 0, v = 0, n = 0, q, g, x = 0, K = 0, k, u = k = q = 0, l = 0, r = 0, I = 0, t = 0, B = e.length, J = B - 1, y, f = '', p = '', F = '', G = '', C; l < B;) {\n g = e.charCodeAt(l);\n l === J && 0 !== b + n + v + m && (0 !== b && (g = 47 === b ? 10 : 47), n = v = m = 0, B++, J++);\n\n if (0 === b + n + v + m) {\n if (l === J && (0 < r && (f = f.replace(N, '')), 0 < f.trim().length)) {\n switch (g) {\n case 32:\n case 9:\n case 59:\n case 13:\n case 10:\n break;\n\n default:\n f += e.charAt(l);\n }\n\n g = 59;\n }\n\n switch (g) {\n case 123:\n f = f.trim();\n q = f.charCodeAt(0);\n k = 1;\n\n for (t = ++l; l < B;) {\n switch (g = e.charCodeAt(l)) {\n case 123:\n k++;\n break;\n\n case 125:\n k--;\n break;\n\n case 47:\n switch (g = e.charCodeAt(l + 1)) {\n case 42:\n case 47:\n a: {\n for (u = l + 1; u < J; ++u) {\n switch (e.charCodeAt(u)) {\n case 47:\n if (42 === g && 42 === e.charCodeAt(u - 1) && l + 2 !== u) {\n l = u + 1;\n break a;\n }\n\n break;\n\n case 10:\n if (47 === g) {\n l = u + 1;\n break a;\n }\n\n }\n }\n\n l = u;\n }\n\n }\n\n break;\n\n case 91:\n g++;\n\n case 40:\n g++;\n\n case 34:\n case 39:\n for (; l++ < J && e.charCodeAt(l) !== g;) {\n }\n\n }\n\n if (0 === k) break;\n l++;\n }\n\n k = e.substring(t, l);\n 0 === q && (q = (f = f.replace(ca, '').trim()).charCodeAt(0));\n\n switch (q) {\n case 64:\n 0 < r && (f = f.replace(N, ''));\n g = f.charCodeAt(1);\n\n switch (g) {\n case 100:\n case 109:\n case 115:\n case 45:\n r = c;\n break;\n\n default:\n r = O;\n }\n\n k = M(c, r, k, g, a + 1);\n t = k.length;\n 0 < A && (r = X(O, f, I), C = H(3, k, r, c, D, z, t, g, a, h), f = r.join(''), void 0 !== C && 0 === (t = (k = C.trim()).length) && (g = 0, k = ''));\n if (0 < t) switch (g) {\n case 115:\n f = f.replace(da, ea);\n\n case 100:\n case 109:\n case 45:\n k = f + '{' + k + '}';\n break;\n\n case 107:\n f = f.replace(fa, '$1 $2');\n k = f + '{' + k + '}';\n k = 1 === w || 2 === w && L('@' + k, 3) ? '@-webkit-' + k + '@' + k : '@' + k;\n break;\n\n default:\n k = f + k, 112 === h && (k = (p += k, ''));\n } else k = '';\n break;\n\n default:\n k = M(c, X(c, f, I), k, h, a + 1);\n }\n\n F += k;\n k = I = r = u = q = 0;\n f = '';\n g = e.charCodeAt(++l);\n break;\n\n case 125:\n case 59:\n f = (0 < r ? f.replace(N, '') : f).trim();\n if (1 < (t = f.length)) switch (0 === u && (q = f.charCodeAt(0), 45 === q || 96 < q && 123 > q) && (t = (f = f.replace(' ', ':')).length), 0 < A && void 0 !== (C = H(1, f, c, d, D, z, p.length, h, a, h)) && 0 === (t = (f = C.trim()).length) && (f = '\\x00\\x00'), q = f.charCodeAt(0), g = f.charCodeAt(1), q) {\n case 0:\n break;\n\n case 64:\n if (105 === g || 99 === g) {\n G += f + e.charAt(l);\n break;\n }\n\n default:\n 58 !== f.charCodeAt(t - 1) && (p += P(f, q, g, f.charCodeAt(2)));\n }\n I = r = u = q = 0;\n f = '';\n g = e.charCodeAt(++l);\n }\n }\n\n switch (g) {\n case 13:\n case 10:\n 47 === b ? b = 0 : 0 === 1 + q && 107 !== h && 0 < f.length && (r = 1, f += '\\x00');\n 0 < A * Y && H(0, f, c, d, D, z, p.length, h, a, h);\n z = 1;\n D++;\n break;\n\n case 59:\n case 125:\n if (0 === b + n + v + m) {\n z++;\n break;\n }\n\n default:\n z++;\n y = e.charAt(l);\n\n switch (g) {\n case 9:\n case 32:\n if (0 === n + m + b) switch (x) {\n case 44:\n case 58:\n case 9:\n case 32:\n y = '';\n break;\n\n default:\n 32 !== g && (y = ' ');\n }\n break;\n\n case 0:\n y = '\\\\0';\n break;\n\n case 12:\n y = '\\\\f';\n break;\n\n case 11:\n y = '\\\\v';\n break;\n\n case 38:\n 0 === n + b + m && (r = I = 1, y = '\\f' + y);\n break;\n\n case 108:\n if (0 === n + b + m + E && 0 < u) switch (l - u) {\n case 2:\n 112 === x && 58 === e.charCodeAt(l - 3) && (E = x);\n\n case 8:\n 111 === K && (E = K);\n }\n break;\n\n case 58:\n 0 === n + b + m && (u = l);\n break;\n\n case 44:\n 0 === b + v + n + m && (r = 1, y += '\\r');\n break;\n\n case 34:\n case 39:\n 0 === b && (n = n === g ? 0 : 0 === n ? g : n);\n break;\n\n case 91:\n 0 === n + b + v && m++;\n break;\n\n case 93:\n 0 === n + b + v && m--;\n break;\n\n case 41:\n 0 === n + b + m && v--;\n break;\n\n case 40:\n if (0 === n + b + m) {\n if (0 === q) switch (2 * x + 3 * K) {\n case 533:\n break;\n\n default:\n q = 1;\n }\n v++;\n }\n\n break;\n\n case 64:\n 0 === b + v + n + m + u + k && (k = 1);\n break;\n\n case 42:\n case 47:\n if (!(0 < n + m + v)) switch (b) {\n case 0:\n switch (2 * g + 3 * e.charCodeAt(l + 1)) {\n case 235:\n b = 47;\n break;\n\n case 220:\n t = l, b = 42;\n }\n\n break;\n\n case 42:\n 47 === g && 42 === x && t + 2 !== l && (33 === e.charCodeAt(t + 2) && (p += e.substring(t, l + 1)), y = '', b = 0);\n }\n }\n\n 0 === b && (f += y);\n }\n\n K = x;\n x = g;\n l++;\n }\n\n t = p.length;\n\n if (0 < t) {\n r = c;\n if (0 < A && (C = H(2, p, r, d, D, z, t, h, a, h), void 0 !== C && 0 === (p = C).length)) return G + p + F;\n p = r.join(',') + '{' + p + '}';\n\n if (0 !== w * E) {\n 2 !== w || L(p, 2) || (E = 0);\n\n switch (E) {\n case 111:\n p = p.replace(ha, ':-moz-$1') + p;\n break;\n\n case 112:\n p = p.replace(Q, '::-webkit-input-$1') + p.replace(Q, '::-moz-$1') + p.replace(Q, ':-ms-input-$1') + p;\n }\n\n E = 0;\n }\n }\n\n return G + p + F;\n }\n\n function X(d, c, e) {\n var h = c.trim().split(ia);\n c = h;\n var a = h.length,\n m = d.length;\n\n switch (m) {\n case 0:\n case 1:\n var b = 0;\n\n for (d = 0 === m ? '' : d[0] + ' '; b < a; ++b) {\n c[b] = Z(d, c[b], e).trim();\n }\n\n break;\n\n default:\n var v = b = 0;\n\n for (c = []; b < a; ++b) {\n for (var n = 0; n < m; ++n) {\n c[v++] = Z(d[n] + ' ', h[b], e).trim();\n }\n }\n\n }\n\n return c;\n }\n\n function Z(d, c, e) {\n var h = c.charCodeAt(0);\n 33 > h && (h = (c = c.trim()).charCodeAt(0));\n\n switch (h) {\n case 38:\n return c.replace(F, '$1' + d.trim());\n\n case 58:\n return d.trim() + c.replace(F, '$1' + d.trim());\n\n default:\n if (0 < 1 * e && 0 < c.indexOf('\\f')) return c.replace(F, (58 === d.charCodeAt(0) ? '' : '$1') + d.trim());\n }\n\n return d + c;\n }\n\n function P(d, c, e, h) {\n var a = d + ';',\n m = 2 * c + 3 * e + 4 * h;\n\n if (944 === m) {\n d = a.indexOf(':', 9) + 1;\n var b = a.substring(d, a.length - 1).trim();\n b = a.substring(0, d).trim() + b + ';';\n return 1 === w || 2 === w && L(b, 1) ? '-webkit-' + b + b : b;\n }\n\n if (0 === w || 2 === w && !L(a, 1)) return a;\n\n switch (m) {\n case 1015:\n return 97 === a.charCodeAt(10) ? '-webkit-' + a + a : a;\n\n case 951:\n return 116 === a.charCodeAt(3) ? '-webkit-' + a + a : a;\n\n case 963:\n return 110 === a.charCodeAt(5) ? '-webkit-' + a + a : a;\n\n case 1009:\n if (100 !== a.charCodeAt(4)) break;\n\n case 969:\n case 942:\n return '-webkit-' + a + a;\n\n case 978:\n return '-webkit-' + a + '-moz-' + a + a;\n\n case 1019:\n case 983:\n return '-webkit-' + a + '-moz-' + a + '-ms-' + a + a;\n\n case 883:\n if (45 === a.charCodeAt(8)) return '-webkit-' + a + a;\n if (0 < a.indexOf('image-set(', 11)) return a.replace(ja, '$1-webkit-$2') + a;\n break;\n\n case 932:\n if (45 === a.charCodeAt(4)) switch (a.charCodeAt(5)) {\n case 103:\n return '-webkit-box-' + a.replace('-grow', '') + '-webkit-' + a + '-ms-' + a.replace('grow', 'positive') + a;\n\n case 115:\n return '-webkit-' + a + '-ms-' + a.replace('shrink', 'negative') + a;\n\n case 98:\n return '-webkit-' + a + '-ms-' + a.replace('basis', 'preferred-size') + a;\n }\n return '-webkit-' + a + '-ms-' + a + a;\n\n case 964:\n return '-webkit-' + a + '-ms-flex-' + a + a;\n\n case 1023:\n if (99 !== a.charCodeAt(8)) break;\n b = a.substring(a.indexOf(':', 15)).replace('flex-', '').replace('space-between', 'justify');\n return '-webkit-box-pack' + b + '-webkit-' + a + '-ms-flex-pack' + b + a;\n\n case 1005:\n return ka.test(a) ? a.replace(aa, ':-webkit-') + a.replace(aa, ':-moz-') + a : a;\n\n case 1e3:\n b = a.substring(13).trim();\n c = b.indexOf('-') + 1;\n\n switch (b.charCodeAt(0) + b.charCodeAt(c)) {\n case 226:\n b = a.replace(G, 'tb');\n break;\n\n case 232:\n b = a.replace(G, 'tb-rl');\n break;\n\n case 220:\n b = a.replace(G, 'lr');\n break;\n\n default:\n return a;\n }\n\n return '-webkit-' + a + '-ms-' + b + a;\n\n case 1017:\n if (-1 === a.indexOf('sticky', 9)) break;\n\n case 975:\n c = (a = d).length - 10;\n b = (33 === a.charCodeAt(c) ? a.substring(0, c) : a).substring(d.indexOf(':', 7) + 1).trim();\n\n switch (m = b.charCodeAt(0) + (b.charCodeAt(7) | 0)) {\n case 203:\n if (111 > b.charCodeAt(8)) break;\n\n case 115:\n a = a.replace(b, '-webkit-' + b) + ';' + a;\n break;\n\n case 207:\n case 102:\n a = a.replace(b, '-webkit-' + (102 < m ? 'inline-' : '') + 'box') + ';' + a.replace(b, '-webkit-' + b) + ';' + a.replace(b, '-ms-' + b + 'box') + ';' + a;\n }\n\n return a + ';';\n\n case 938:\n if (45 === a.charCodeAt(5)) switch (a.charCodeAt(6)) {\n case 105:\n return b = a.replace('-items', ''), '-webkit-' + a + '-webkit-box-' + b + '-ms-flex-' + b + a;\n\n case 115:\n return '-webkit-' + a + '-ms-flex-item-' + a.replace(ba, '') + a;\n\n default:\n return '-webkit-' + a + '-ms-flex-line-pack' + a.replace('align-content', '').replace(ba, '') + a;\n }\n break;\n\n case 973:\n case 989:\n if (45 !== a.charCodeAt(3) || 122 === a.charCodeAt(4)) break;\n\n case 931:\n case 953:\n if (!0 === la.test(d)) return 115 === (b = d.substring(d.indexOf(':') + 1)).charCodeAt(0) ? P(d.replace('stretch', 'fill-available'), c, e, h).replace(':fill-available', ':stretch') : a.replace(b, '-webkit-' + b) + a.replace(b, '-moz-' + b.replace('fill-', '')) + a;\n break;\n\n case 962:\n if (a = '-webkit-' + a + (102 === a.charCodeAt(5) ? '-ms-' + a : '') + a, 211 === e + h && 105 === a.charCodeAt(13) && 0 < a.indexOf('transform', 10)) return a.substring(0, a.indexOf(';', 27) + 1).replace(ma, '$1-webkit-$2') + a;\n }\n\n return a;\n }\n\n function L(d, c) {\n var e = d.indexOf(1 === c ? ':' : '{'),\n h = d.substring(0, 3 !== c ? e : 10);\n e = d.substring(e + 1, d.length - 1);\n return R(2 !== c ? h : h.replace(na, '$1'), e, c);\n }\n\n function ea(d, c) {\n var e = P(c, c.charCodeAt(0), c.charCodeAt(1), c.charCodeAt(2));\n return e !== c + ';' ? e.replace(oa, ' or ($1)').substring(4) : '(' + c + ')';\n }\n\n function H(d, c, e, h, a, m, b, v, n, q) {\n for (var g = 0, x = c, w; g < A; ++g) {\n switch (w = S[g].call(B, d, x, e, h, a, m, b, v, n, q)) {\n case void 0:\n case !1:\n case !0:\n case null:\n break;\n\n default:\n x = w;\n }\n }\n\n if (x !== c) return x;\n }\n\n function T(d) {\n switch (d) {\n case void 0:\n case null:\n A = S.length = 0;\n break;\n\n default:\n if ('function' === typeof d) S[A++] = d;else if ('object' === typeof d) for (var c = 0, e = d.length; c < e; ++c) {\n T(d[c]);\n } else Y = !!d | 0;\n }\n\n return T;\n }\n\n function U(d) {\n d = d.prefix;\n void 0 !== d && (R = null, d ? 'function' !== typeof d ? w = 1 : (w = 2, R = d) : w = 0);\n return U;\n }\n\n function B(d, c) {\n var e = d;\n 33 > e.charCodeAt(0) && (e = e.trim());\n V = e;\n e = [V];\n\n if (0 < A) {\n var h = H(-1, c, e, e, D, z, 0, 0, 0, 0);\n void 0 !== h && 'string' === typeof h && (c = h);\n }\n\n var a = M(O, e, c, 0, 0);\n 0 < A && (h = H(-2, a, e, e, D, z, a.length, 0, 0, 0), void 0 !== h && (a = h));\n V = '';\n E = 0;\n z = D = 1;\n return a;\n }\n\n var ca = /^\\0+/g,\n N = /[\\0\\r\\f]/g,\n aa = /: */g,\n ka = /zoo|gra/,\n ma = /([,: ])(transform)/g,\n ia = /,\\r+?/g,\n F = /([\\t\\r\\n ])*\\f?&/g,\n fa = /@(k\\w+)\\s*(\\S*)\\s*/,\n Q = /::(place)/g,\n ha = /:(read-only)/g,\n G = /[svh]\\w+-[tblr]{2}/,\n da = /\\(\\s*(.*)\\s*\\)/g,\n oa = /([\\s\\S]*?);/g,\n ba = /-self|flex-/g,\n na = /[^]*?(:[rp][el]a[\\w-]+)[^]*/,\n la = /stretch|:\\s*\\w+\\-(?:conte|avail)/,\n ja = /([^-])(image-set\\()/,\n z = 1,\n D = 1,\n E = 0,\n w = 1,\n O = [],\n S = [],\n A = 0,\n R = null,\n Y = 0,\n V = '';\n B.use = T;\n B.set = U;\n void 0 !== W && U(W);\n return B;\n}\n\nexport default stylis_min;\n","var unitlessKeys = {\n animationIterationCount: 1,\n borderImageOutset: 1,\n borderImageSlice: 1,\n borderImageWidth: 1,\n boxFlex: 1,\n boxFlexGroup: 1,\n boxOrdinalGroup: 1,\n columnCount: 1,\n columns: 1,\n flex: 1,\n flexGrow: 1,\n flexPositive: 1,\n flexShrink: 1,\n flexNegative: 1,\n flexOrder: 1,\n gridRow: 1,\n gridRowEnd: 1,\n gridRowSpan: 1,\n gridRowStart: 1,\n gridColumn: 1,\n gridColumnEnd: 1,\n gridColumnSpan: 1,\n gridColumnStart: 1,\n msGridRow: 1,\n msGridRowSpan: 1,\n msGridColumn: 1,\n msGridColumnSpan: 1,\n fontWeight: 1,\n lineHeight: 1,\n opacity: 1,\n order: 1,\n orphans: 1,\n tabSize: 1,\n widows: 1,\n zIndex: 1,\n zoom: 1,\n WebkitLineClamp: 1,\n // SVG-related properties\n fillOpacity: 1,\n floodOpacity: 1,\n stopOpacity: 1,\n strokeDasharray: 1,\n strokeDashoffset: 1,\n strokeMiterlimit: 1,\n strokeOpacity: 1,\n strokeWidth: 1\n};\n\nexport default unitlessKeys;\n","function memoize(fn) {\n var cache = Object.create(null);\n return function (arg) {\n if (cache[arg] === undefined) cache[arg] = fn(arg);\n return cache[arg];\n };\n}\n\nexport default memoize;\n","import memoize from '@emotion/memoize';\n\nvar reactPropsRegex = /^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/; // https://esbench.com/bench/5bfee68a4cd7e6009ef61d23\n\nvar isPropValid = /* #__PURE__ */memoize(function (prop) {\n return reactPropsRegex.test(prop) || prop.charCodeAt(0) === 111\n /* o */\n && prop.charCodeAt(1) === 110\n /* n */\n && prop.charCodeAt(2) < 91;\n}\n/* Z+1 */\n);\n\nexport default isPropValid;\n","import{typeOf as e,isElement as t,isValidElementType as n}from\"react-is\";import r,{useState as o,useContext as s,useMemo as i,useEffect as a,useRef as c,createElement as u,useDebugValue as l,useLayoutEffect as d}from\"react\";import h from\"shallowequal\";import p from\"@emotion/stylis\";import f from\"@emotion/unitless\";import m from\"@emotion/is-prop-valid\";import y from\"hoist-non-react-statics\";function v(){return(v=Object.assign||function(e){for(var t=1;t ({})}\\n```\\n\\n',8:'ThemeProvider: Please make your \"theme\" prop an object.\\n\\n',9:\"Missing document ``\\n\\n\",10:\"Cannot find a StyleSheet instance. Usually this happens if there are multiple copies of styled-components loaded at once. Check out this issue for how to troubleshoot and fix the common cases where this situation can happen: https://github.com/styled-components/styled-components/issues/1941#issuecomment-417862021\\n\\n\",11:\"_This error was replaced with a dev-time warning, it will be deleted for v4 final._ [createGlobalStyle] received children which will not be rendered. Please use the component without passing children elements.\\n\\n\",12:\"It seems you are interpolating a keyframe declaration (%s) into an untagged string. This was supported in styled-components v3, but is not longer supported in v4 as keyframes are now injected on-demand. Please wrap your string in the css\\\\`\\\\` helper which ensures the styles are injected correctly. See https://www.styled-components.com/docs/api#css\\n\\n\",13:\"%s is not a styled component and cannot be referred to via component selector. See https://www.styled-components.com/docs/advanced#referring-to-other-components for more details.\\n\\n\",14:'ThemeProvider: \"theme\" prop is required.\\n\\n',15:\"A stylis plugin has been supplied that is not named. We need a name for each plugin to be able to prevent styling collisions between different stylis configurations within the same app. Before you pass your plugin to ``, please make sure each plugin is uniquely-named, e.g.\\n\\n```js\\nObject.defineProperty(importedPlugin, 'name', { value: 'some-unique-name' });\\n```\\n\\n\",16:\"Reached the limit of how many styled components may be created at group %s.\\nYou may only create up to 1,073,741,824 components. If you're creating components dynamically,\\nas for instance in your render method then you may be running into this limitation.\\n\\n\",17:\"CSSStyleSheet could not be found on HTMLStyleElement.\\nHas styled-components' style tag been unmounted or altered by another script?\\n\"}:{};function D(){for(var e=arguments.length<=0?void 0:arguments[0],t=[],n=1,r=arguments.length;n1?t-1:0),r=1;r0?\" Args: \"+n.join(\", \"):\"\")):new Error(D.apply(void 0,[R[e]].concat(n)).trim())}var T=function(){function e(e){this.groupSizes=new Uint32Array(512),this.length=512,this.tag=e}var t=e.prototype;return t.indexOfGroup=function(e){for(var t=0,n=0;n=this.groupSizes.length){for(var n=this.groupSizes,r=n.length,o=r;e>=o;)(o<<=1)<0&&j(16,\"\"+e);this.groupSizes=new Uint32Array(o),this.groupSizes.set(n),this.length=o;for(var s=r;s=this.length||0===this.groupSizes[e])return t;for(var n=this.groupSizes[e],r=this.indexOfGroup(e),o=r+n,s=r;s1<<30)&&j(16,\"\"+t),x.set(e,t),k.set(t,e),t},z=function(e){return k.get(e)},M=function(e,t){t>=V&&(V=t+1),x.set(e,t),k.set(t,e)},G=\"style[\"+A+'][data-styled-version=\"5.3.5\"]',L=new RegExp(\"^\"+A+'\\\\.g(\\\\d+)\\\\[id=\"([\\\\w\\\\d-]+)\"\\\\].*?\"([^\"]*)'),F=function(e,t,n){for(var r,o=n.split(\",\"),s=0,i=o.length;s=0;n--){var r=t[n];if(r&&1===r.nodeType&&r.hasAttribute(A))return r}}(n),s=void 0!==o?o.nextSibling:null;r.setAttribute(A,\"active\"),r.setAttribute(\"data-styled-version\",\"5.3.5\");var i=q();return i&&r.setAttribute(\"nonce\",i),n.insertBefore(r,s),r},$=function(){function e(e){var t=this.element=H(e);t.appendChild(document.createTextNode(\"\")),this.sheet=function(e){if(e.sheet)return e.sheet;for(var t=document.styleSheets,n=0,r=t.length;n=0){var n=document.createTextNode(t),r=this.nodes[e];return this.element.insertBefore(n,r||null),this.length++,!0}return!1},t.deleteRule=function(e){this.element.removeChild(this.nodes[e]),this.length--},t.getRule=function(e){return e0&&(u+=e+\",\")})),r+=\"\"+a+c+'{content:\"'+u+'\"}/*!sc*/\\n'}}}return r}(this)},e}(),K=/(a)(d)/gi,Q=function(e){return String.fromCharCode(e+(e>25?39:97))};function ee(e){var t,n=\"\";for(t=Math.abs(e);t>52;t=t/52|0)n=Q(t%52)+n;return(Q(t%52)+n).replace(K,\"$1-$2\")}var te=function(e,t){for(var n=t.length;n;)e=33*e^t.charCodeAt(--n);return e},ne=function(e){return te(5381,e)};function re(e){for(var t=0;t>>0);if(!t.hasNameForId(r,i)){var a=n(s,\".\"+i,void 0,r);t.insertRules(r,i,a)}o.push(i),this.staticRulesId=i}else{for(var c=this.rules.length,u=te(this.baseHash,n.hash),l=\"\",d=0;d>>0);if(!t.hasNameForId(r,m)){var y=n(l,\".\"+m,void 0,r);t.insertRules(r,m,y)}o.push(m)}}return o.join(\" \")},e}(),ie=/^\\s*\\/\\/.*$/gm,ae=[\":\",\"[\",\".\",\"#\"];function ce(e){var t,n,r,o,s=void 0===e?E:e,i=s.options,a=void 0===i?E:i,c=s.plugins,u=void 0===c?w:c,l=new p(a),d=[],h=function(e){function t(t){if(t)try{e(t+\"}\")}catch(e){}}return function(n,r,o,s,i,a,c,u,l,d){switch(n){case 1:if(0===l&&64===r.charCodeAt(0))return e(r+\";\"),\"\";break;case 2:if(0===u)return r+\"/*|*/\";break;case 3:switch(u){case 102:case 112:return e(o[0]+r),\"\";default:return r+(0===d?\"/*|*/\":\"\")}case-2:r.split(\"/*|*/}\").forEach(t)}}}((function(e){d.push(e)})),f=function(e,r,s){return 0===r&&-1!==ae.indexOf(s[n.length])||s.match(o)?e:\".\"+t};function m(e,s,i,a){void 0===a&&(a=\"&\");var c=e.replace(ie,\"\"),u=s&&i?i+\" \"+s+\" { \"+c+\" }\":c;return t=a,n=s,r=new RegExp(\"\\\\\"+n+\"\\\\b\",\"g\"),o=new RegExp(\"(\\\\\"+n+\"\\\\b){2,}\"),l(i||!s?\"\":s,u)}return l.use([].concat(u,[function(e,t,o){2===e&&o.length&&o[0].lastIndexOf(n)>0&&(o[0]=o[0].replace(r,f))},h,function(e){if(-2===e){var t=d;return d=[],t}}])),m.hash=u.length?u.reduce((function(e,t){return t.name||j(15),te(e,t.name)}),5381).toString():\"\",m}var ue=r.createContext(),le=ue.Consumer,de=r.createContext(),he=(de.Consumer,new Z),pe=ce();function fe(){return s(ue)||he}function me(){return s(de)||pe}function ye(e){var t=o(e.stylisPlugins),n=t[0],s=t[1],c=fe(),u=i((function(){var t=c;return e.sheet?t=e.sheet:e.target&&(t=t.reconstructWithOptions({target:e.target},!1)),e.disableCSSOMInjection&&(t=t.reconstructWithOptions({useCSSOMInjection:!1})),t}),[e.disableCSSOMInjection,e.sheet,e.target]),l=i((function(){return ce({options:{prefix:!e.disableVendorPrefixes},plugins:n})}),[e.disableVendorPrefixes,n]);return a((function(){h(n,e.stylisPlugins)||s(e.stylisPlugins)}),[e.stylisPlugins]),r.createElement(ue.Provider,{value:u},r.createElement(de.Provider,{value:l},\"production\"!==process.env.NODE_ENV?r.Children.only(e.children):e.children))}var ve=function(){function e(e,t){var n=this;this.inject=function(e,t){void 0===t&&(t=pe);var r=n.name+t.hash;e.hasNameForId(n.id,r)||e.insertRules(n.id,r,t(n.rules,r,\"@keyframes\"))},this.toString=function(){return j(12,String(n.name))},this.name=e,this.id=\"sc-keyframes-\"+e,this.rules=t}return e.prototype.getName=function(e){return void 0===e&&(e=pe),this.name+e.hash},e}(),ge=/([A-Z])/,Se=/([A-Z])/g,we=/^ms-/,Ee=function(e){return\"-\"+e.toLowerCase()};function be(e){return ge.test(e)?e.replace(Se,Ee).replace(we,\"-ms-\"):e}var _e=function(e){return null==e||!1===e||\"\"===e};function Ne(e,n,r,o){if(Array.isArray(e)){for(var s,i=[],a=0,c=e.length;a1?t-1:0),r=1;r1?t-1:0),i=1;i?@[\\\\\\]^`{|}~-]+/g,je=/(^-|-$)/g;function Te(e){return e.replace(De,\"-\").replace(je,\"\")}var xe=function(e){return ee(ne(e)>>>0)};function ke(e){return\"string\"==typeof e&&(\"production\"===process.env.NODE_ENV||e.charAt(0)===e.charAt(0).toLowerCase())}var Ve=function(e){return\"function\"==typeof e||\"object\"==typeof e&&null!==e&&!Array.isArray(e)},Be=function(e){return\"__proto__\"!==e&&\"constructor\"!==e&&\"prototype\"!==e};function ze(e,t,n){var r=e[n];Ve(t)&&Ve(r)?Me(r,t):e[n]=t}function Me(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r=0||(o[n]=e[n]);return o}(t,[\"componentId\"]),s=r&&r+\"-\"+(ke(e)?e:Te(_(e)));return qe(e,v({},o,{attrs:S,componentId:s}),n)},Object.defineProperty(C,\"defaultProps\",{get:function(){return this._foldedDefaultProps},set:function(t){this._foldedDefaultProps=o?Me({},e.defaultProps,t):t}}),\"production\"!==process.env.NODE_ENV&&(Oe(f,g),C.warnTooManyClasses=function(e,t){var n={},r=!1;return function(o){if(!r&&(n[o]=!0,Object.keys(n).length>=200)){var s=t?' with the id of \"'+t+'\"':\"\";console.warn(\"Over 200 classes were generated for component \"+e+s+\".\\nConsider using the attrs method, together with a style object for frequently changed styles.\\nExample:\\n const Component = styled.div.attrs(props => ({\\n style: {\\n background: props.background,\\n },\\n }))`width: 100%;`\\n\\n \"),r=!0,n={}}}}(f,g)),C.toString=function(){return\".\"+C.styledComponentId},i&&y(C,e,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,styledComponentId:!0,target:!0,withComponent:!0}),C}var He=function(e){return function e(t,r,o){if(void 0===o&&(o=E),!n(r))return j(1,String(r));var s=function(){return t(r,o,Ce.apply(void 0,arguments))};return s.withConfig=function(n){return e(t,r,v({},o,{},n))},s.attrs=function(n){return e(t,r,v({},o,{attrs:Array.prototype.concat(o.attrs,n).filter(Boolean)}))},s}(qe,e)};[\"a\",\"abbr\",\"address\",\"area\",\"article\",\"aside\",\"audio\",\"b\",\"base\",\"bdi\",\"bdo\",\"big\",\"blockquote\",\"body\",\"br\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"col\",\"colgroup\",\"data\",\"datalist\",\"dd\",\"del\",\"details\",\"dfn\",\"dialog\",\"div\",\"dl\",\"dt\",\"em\",\"embed\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"head\",\"header\",\"hgroup\",\"hr\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"keygen\",\"label\",\"legend\",\"li\",\"link\",\"main\",\"map\",\"mark\",\"marquee\",\"menu\",\"menuitem\",\"meta\",\"meter\",\"nav\",\"noscript\",\"object\",\"ol\",\"optgroup\",\"option\",\"output\",\"p\",\"param\",\"picture\",\"pre\",\"progress\",\"q\",\"rp\",\"rt\",\"ruby\",\"s\",\"samp\",\"script\",\"section\",\"select\",\"small\",\"source\",\"span\",\"strong\",\"style\",\"sub\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"title\",\"tr\",\"track\",\"u\",\"ul\",\"var\",\"video\",\"wbr\",\"circle\",\"clipPath\",\"defs\",\"ellipse\",\"foreignObject\",\"g\",\"image\",\"line\",\"linearGradient\",\"marker\",\"mask\",\"path\",\"pattern\",\"polygon\",\"polyline\",\"radialGradient\",\"rect\",\"stop\",\"svg\",\"text\",\"textPath\",\"tspan\"].forEach((function(e){He[e]=He(e)}));var $e=function(){function e(e,t){this.rules=e,this.componentId=t,this.isStatic=re(e),Z.registerId(this.componentId+1)}var t=e.prototype;return t.createStyles=function(e,t,n,r){var o=r(Ne(this.rules,t,n,r).join(\"\"),\"\"),s=this.componentId+e;n.insertRules(s,s,o)},t.removeStyles=function(e,t){t.clearRules(this.componentId+e)},t.renderStyles=function(e,t,n,r){e>2&&Z.registerId(this.componentId+e),this.removeStyles(e,n),this.createStyles(e,t,n,r)},e}();function We(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),o=1;o meta tag to the stylesheet, or simply embedding it manually in your index.html section for a simpler app.\"),t.server&&h(l,e,t,o,n),d((function(){if(!t.server)return h(l,e,t,o,n),function(){return u.removeStyles(l,t)}}),[l,e,t,o,n]),null}function h(e,t,n,r,o){if(u.isStatic)u.renderStyles(e,O,n,o);else{var s=v({},t,{theme:Re(t,r,l.defaultProps)});u.renderStyles(e,s,n,o)}}return\"production\"!==process.env.NODE_ENV&&Oe(a),r.memo(l)}function Ue(e){\"production\"!==process.env.NODE_ENV&&\"undefined\"!=typeof navigator&&\"ReactNative\"===navigator.product&&console.warn(\"`keyframes` cannot be used on ReactNative, only on the web. To do animation in ReactNative please use Animated.\");for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r\"+t+\"\"},this.getStyleTags=function(){return e.sealed?j(2):e._emitSheetCSS()},this.getStyleElement=function(){var t;if(e.sealed)return j(2);var n=((t={})[A]=\"\",t[\"data-styled-version\"]=\"5.3.5\",t.dangerouslySetInnerHTML={__html:e.instance.toString()},t),o=q();return o&&(n.nonce=o),[r.createElement(\"style\",v({},n,{key:\"sc-0-0\"}))]},this.seal=function(){e.sealed=!0},this.instance=new Z({isServer:!0}),this.sealed=!1}var t=e.prototype;return t.collectStyles=function(e){return this.sealed?j(2):r.createElement(ye,{sheet:this.instance},e)},t.interleaveWithNodeStream=function(e){return j(3)},e}(),Xe=function(e){var t=r.forwardRef((function(t,n){var o=s(Ge),i=e.defaultProps,a=Re(t,o,i);return\"production\"!==process.env.NODE_ENV&&void 0===a&&console.warn('[withTheme] You are not using a ThemeProvider nor passing a theme prop or a theme in defaultProps in component class \"'+_(e)+'\"'),r.createElement(e,v({},t,{theme:a,ref:n}))}));return y(t,e),t.displayName=\"WithTheme(\"+_(e)+\")\",t},Ze=function(){return s(Ge)},Ke={StyleSheet:Z,masterSheet:he};\"production\"!==process.env.NODE_ENV&&\"undefined\"!=typeof navigator&&\"ReactNative\"===navigator.product&&console.warn(\"It looks like you've imported 'styled-components' on React Native.\\nPerhaps you're looking to import 'styled-components/native'?\\nRead more about this at https://www.styled-components.com/docs/basics#react-native\"),\"production\"!==process.env.NODE_ENV&&\"test\"!==process.env.NODE_ENV&&\"undefined\"!=typeof window&&(window[\"__styled-components-init__\"]=window[\"__styled-components-init__\"]||0,1===window[\"__styled-components-init__\"]&&console.warn(\"It looks like there are several instances of 'styled-components' initialized in this application. This may cause dynamic styles to not render properly, errors during the rehydration process, a missing theme prop, and makes your application bigger without good reason.\\n\\nSee https://s-c.sh/2BAXzed for more info.\"),window[\"__styled-components-init__\"]+=1);export default He;export{Je as ServerStyleSheet,le as StyleSheetConsumer,ue as StyleSheetContext,ye as StyleSheetManager,Le as ThemeConsumer,Ge as ThemeContext,Fe as ThemeProvider,Ke as __PRIVATE__,We as createGlobalStyle,Ce as css,N as isStyledComponent,Ue as keyframes,Ze as useTheme,C as version,Xe as withTheme};\n//# sourceMappingURL=styled-components.browser.esm.js.map\n","var isProduction = process.env.NODE_ENV === 'production';\nvar prefix = 'Invariant failed';\nfunction invariant(condition, message) {\n if (condition) {\n return;\n }\n if (isProduction) {\n throw new Error(prefix);\n }\n var provided = typeof message === 'function' ? message() : message;\n var value = provided ? prefix + \": \" + provided : prefix;\n throw new Error(value);\n}\n\nexport { invariant as default };\n","/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nexport function __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\n/**\n * Similar to invariant but only logs a warning if the condition is not met.\n * This can be used to log issues in development environments in critical\n * paths. Removing the logging code for production environments will keep the\n * same logic and follow the same code paths.\n */\n\nvar __DEV__ = process.env.NODE_ENV !== 'production';\n\nvar warning = function() {};\n\nif (__DEV__) {\n var printWarning = function printWarning(format, args) {\n var len = arguments.length;\n args = new Array(len > 1 ? len - 1 : 0);\n for (var key = 1; key < len; key++) {\n args[key - 1] = arguments[key];\n }\n var argIndex = 0;\n var message = 'Warning: ' +\n format.replace(/%s/g, function() {\n return args[argIndex++];\n });\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n }\n\n warning = function(condition, format, args) {\n var len = arguments.length;\n args = new Array(len > 2 ? len - 2 : 0);\n for (var key = 2; key < len; key++) {\n args[key - 2] = arguments[key];\n }\n if (format === undefined) {\n throw new Error(\n '`warning(condition, format, ...args)` requires a warning ' +\n 'message argument'\n );\n }\n if (!condition) {\n printWarning.apply(null, [format].concat(args));\n }\n };\n}\n\nmodule.exports = warning;\n","function _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nmodule.exports = _defineProperty, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;","function _extends() {\n module.exports = _extends = Object.assign ? Object.assign.bind() : function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n }, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;\n return _extends.apply(this, arguments);\n}\n\nmodule.exports = _extends, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;","function _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n \"default\": obj\n };\n}\n\nmodule.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;","var _typeof = require(\"./typeof.js\")[\"default\"];\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\n\nfunction _interopRequireWildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) {\n return obj;\n }\n\n if (obj === null || _typeof(obj) !== \"object\" && typeof obj !== \"function\") {\n return {\n \"default\": obj\n };\n }\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) {\n return cache.get(obj);\n }\n\n var newObj = {};\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n\n if (desc && (desc.get || desc.set)) {\n Object.defineProperty(newObj, key, desc);\n } else {\n newObj[key] = obj[key];\n }\n }\n }\n\n newObj[\"default\"] = obj;\n\n if (cache) {\n cache.set(obj, newObj);\n }\n\n return newObj;\n}\n\nmodule.exports = _interopRequireWildcard, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;","var objectWithoutPropertiesLoose = require(\"./objectWithoutPropertiesLoose.js\");\n\nfunction _objectWithoutProperties(source, excluded) {\n if (source == null) return {};\n var target = objectWithoutPropertiesLoose(source, excluded);\n var key, i;\n\n if (Object.getOwnPropertySymbols) {\n var sourceSymbolKeys = Object.getOwnPropertySymbols(source);\n\n for (i = 0; i < sourceSymbolKeys.length; i++) {\n key = sourceSymbolKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;\n target[key] = source[key];\n }\n }\n\n return target;\n}\n\nmodule.exports = _objectWithoutProperties, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;","function _objectWithoutPropertiesLoose(source, excluded) {\n if (source == null) return {};\n var target = {};\n var sourceKeys = Object.keys(source);\n var key, i;\n\n for (i = 0; i < sourceKeys.length; i++) {\n key = sourceKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n target[key] = source[key];\n }\n\n return target;\n}\n\nmodule.exports = _objectWithoutPropertiesLoose, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;","function _typeof(obj) {\n \"@babel/helpers - typeof\";\n\n return (module.exports = _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) {\n return typeof obj;\n } : function (obj) {\n return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n }, module.exports.__esModule = true, module.exports[\"default\"] = module.exports), _typeof(obj);\n}\n\nmodule.exports = _typeof, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;","import { isReference, isField, DeepMerger, resultKeyNameFromField, shouldInclude, isNonNullObject, compact, } from \"../../utilities/index.js\";\nexport var hasOwn = Object.prototype.hasOwnProperty;\nexport function defaultDataIdFromObject(_a, context) {\n var __typename = _a.__typename, id = _a.id, _id = _a._id;\n if (typeof __typename === \"string\") {\n if (context) {\n context.keyObject =\n id !== void 0 ? { id: id } :\n _id !== void 0 ? { _id: _id } :\n void 0;\n }\n if (id === void 0)\n id = _id;\n if (id !== void 0) {\n return \"\".concat(__typename, \":\").concat((typeof id === \"number\" ||\n typeof id === \"string\") ? id : JSON.stringify(id));\n }\n }\n}\nvar defaultConfig = {\n dataIdFromObject: defaultDataIdFromObject,\n addTypename: true,\n resultCaching: true,\n canonizeResults: false,\n};\nexport function normalizeConfig(config) {\n return compact(defaultConfig, config);\n}\nexport function shouldCanonizeResults(config) {\n var value = config.canonizeResults;\n return value === void 0 ? defaultConfig.canonizeResults : value;\n}\nexport function getTypenameFromStoreObject(store, objectOrReference) {\n return isReference(objectOrReference)\n ? store.get(objectOrReference.__ref, \"__typename\")\n : objectOrReference && objectOrReference.__typename;\n}\nexport var TypeOrFieldNameRegExp = /^[_a-z][_0-9a-z]*/i;\nexport function fieldNameFromStoreName(storeFieldName) {\n var match = storeFieldName.match(TypeOrFieldNameRegExp);\n return match ? match[0] : storeFieldName;\n}\nexport function selectionSetMatchesResult(selectionSet, result, variables) {\n if (isNonNullObject(result)) {\n return isArray(result)\n ? result.every(function (item) { return selectionSetMatchesResult(selectionSet, item, variables); })\n : selectionSet.selections.every(function (field) {\n if (isField(field) && shouldInclude(field, variables)) {\n var key = resultKeyNameFromField(field);\n return hasOwn.call(result, key) &&\n (!field.selectionSet ||\n selectionSetMatchesResult(field.selectionSet, result[key], variables));\n }\n return true;\n });\n }\n return false;\n}\nexport function storeValueIsStoreObject(value) {\n return isNonNullObject(value) &&\n !isReference(value) &&\n !isArray(value);\n}\nexport function makeProcessedFieldsMerger() {\n return new DeepMerger;\n}\nexport var isArray = function (a) { return Array.isArray(a); };\n//# sourceMappingURL=helpers.js.map","import { __assign, __rest } from \"tslib\";\nimport { wrap } from 'optimism';\nimport { getFragmentQueryDocument, } from \"../../utilities/index.js\";\nvar ApolloCache = (function () {\n function ApolloCache() {\n this.getFragmentDoc = wrap(getFragmentQueryDocument);\n }\n ApolloCache.prototype.batch = function (options) {\n var _this = this;\n var optimisticId = typeof options.optimistic === \"string\" ? options.optimistic :\n options.optimistic === false ? null : void 0;\n var updateResult;\n this.performTransaction(function () { return updateResult = options.update(_this); }, optimisticId);\n return updateResult;\n };\n ApolloCache.prototype.recordOptimisticTransaction = function (transaction, optimisticId) {\n this.performTransaction(transaction, optimisticId);\n };\n ApolloCache.prototype.transformDocument = function (document) {\n return document;\n };\n ApolloCache.prototype.identify = function (object) {\n return;\n };\n ApolloCache.prototype.gc = function () {\n return [];\n };\n ApolloCache.prototype.modify = function (options) {\n return false;\n };\n ApolloCache.prototype.transformForLink = function (document) {\n return document;\n };\n ApolloCache.prototype.readQuery = function (options, optimistic) {\n if (optimistic === void 0) { optimistic = !!options.optimistic; }\n return this.read(__assign(__assign({}, options), { rootId: options.id || 'ROOT_QUERY', optimistic: optimistic }));\n };\n ApolloCache.prototype.readFragment = function (options, optimistic) {\n if (optimistic === void 0) { optimistic = !!options.optimistic; }\n return this.read(__assign(__assign({}, options), { query: this.getFragmentDoc(options.fragment, options.fragmentName), rootId: options.id, optimistic: optimistic }));\n };\n ApolloCache.prototype.writeQuery = function (_a) {\n var id = _a.id, data = _a.data, options = __rest(_a, [\"id\", \"data\"]);\n return this.write(Object.assign(options, {\n dataId: id || 'ROOT_QUERY',\n result: data,\n }));\n };\n ApolloCache.prototype.writeFragment = function (_a) {\n var id = _a.id, data = _a.data, fragment = _a.fragment, fragmentName = _a.fragmentName, options = __rest(_a, [\"id\", \"data\", \"fragment\", \"fragmentName\"]);\n return this.write(Object.assign(options, {\n query: this.getFragmentDoc(fragment, fragmentName),\n dataId: id,\n result: data,\n }));\n };\n ApolloCache.prototype.updateQuery = function (options, update) {\n return this.batch({\n update: function (cache) {\n var value = cache.readQuery(options);\n var data = update(value);\n if (data === void 0 || data === null)\n return value;\n cache.writeQuery(__assign(__assign({}, options), { data: data }));\n return data;\n },\n });\n };\n ApolloCache.prototype.updateFragment = function (options, update) {\n return this.batch({\n update: function (cache) {\n var value = cache.readFragment(options);\n var data = update(value);\n if (data === void 0 || data === null)\n return value;\n cache.writeFragment(__assign(__assign({}, options), { data: data }));\n return data;\n },\n });\n };\n return ApolloCache;\n}());\nexport { ApolloCache };\n//# sourceMappingURL=cache.js.map","var MissingFieldError = (function () {\n function MissingFieldError(message, path, query, variables) {\n this.message = message;\n this.path = path;\n this.query = query;\n this.variables = variables;\n }\n return MissingFieldError;\n}());\nexport { MissingFieldError };\n//# sourceMappingURL=common.js.map","import { __assign, __extends, __rest } from \"tslib\";\nimport { invariant } from \"../../utilities/globals/index.js\";\nimport { dep } from 'optimism';\nimport { equal } from '@wry/equality';\nimport { Trie } from '@wry/trie';\nimport { isReference, makeReference, DeepMerger, maybeDeepFreeze, canUseWeakMap, isNonNullObject, } from \"../../utilities/index.js\";\nimport { hasOwn, fieldNameFromStoreName } from \"./helpers.js\";\nvar DELETE = Object.create(null);\nvar delModifier = function () { return DELETE; };\nvar INVALIDATE = Object.create(null);\nvar EntityStore = (function () {\n function EntityStore(policies, group) {\n var _this = this;\n this.policies = policies;\n this.group = group;\n this.data = Object.create(null);\n this.rootIds = Object.create(null);\n this.refs = Object.create(null);\n this.getFieldValue = function (objectOrReference, storeFieldName) { return maybeDeepFreeze(isReference(objectOrReference)\n ? _this.get(objectOrReference.__ref, storeFieldName)\n : objectOrReference && objectOrReference[storeFieldName]); };\n this.canRead = function (objOrRef) {\n return isReference(objOrRef)\n ? _this.has(objOrRef.__ref)\n : typeof objOrRef === \"object\";\n };\n this.toReference = function (objOrIdOrRef, mergeIntoStore) {\n if (typeof objOrIdOrRef === \"string\") {\n return makeReference(objOrIdOrRef);\n }\n if (isReference(objOrIdOrRef)) {\n return objOrIdOrRef;\n }\n var id = _this.policies.identify(objOrIdOrRef)[0];\n if (id) {\n var ref = makeReference(id);\n if (mergeIntoStore) {\n _this.merge(id, objOrIdOrRef);\n }\n return ref;\n }\n };\n }\n EntityStore.prototype.toObject = function () {\n return __assign({}, this.data);\n };\n EntityStore.prototype.has = function (dataId) {\n return this.lookup(dataId, true) !== void 0;\n };\n EntityStore.prototype.get = function (dataId, fieldName) {\n this.group.depend(dataId, fieldName);\n if (hasOwn.call(this.data, dataId)) {\n var storeObject = this.data[dataId];\n if (storeObject && hasOwn.call(storeObject, fieldName)) {\n return storeObject[fieldName];\n }\n }\n if (fieldName === \"__typename\" &&\n hasOwn.call(this.policies.rootTypenamesById, dataId)) {\n return this.policies.rootTypenamesById[dataId];\n }\n if (this instanceof Layer) {\n return this.parent.get(dataId, fieldName);\n }\n };\n EntityStore.prototype.lookup = function (dataId, dependOnExistence) {\n if (dependOnExistence)\n this.group.depend(dataId, \"__exists\");\n if (hasOwn.call(this.data, dataId)) {\n return this.data[dataId];\n }\n if (this instanceof Layer) {\n return this.parent.lookup(dataId, dependOnExistence);\n }\n if (this.policies.rootTypenamesById[dataId]) {\n return Object.create(null);\n }\n };\n EntityStore.prototype.merge = function (older, newer) {\n var _this = this;\n var dataId;\n if (isReference(older))\n older = older.__ref;\n if (isReference(newer))\n newer = newer.__ref;\n var existing = typeof older === \"string\"\n ? this.lookup(dataId = older)\n : older;\n var incoming = typeof newer === \"string\"\n ? this.lookup(dataId = newer)\n : newer;\n if (!incoming)\n return;\n __DEV__ ? invariant(typeof dataId === \"string\", \"store.merge expects a string ID\") : invariant(typeof dataId === \"string\", 1);\n var merged = new DeepMerger(storeObjectReconciler).merge(existing, incoming);\n this.data[dataId] = merged;\n if (merged !== existing) {\n delete this.refs[dataId];\n if (this.group.caching) {\n var fieldsToDirty_1 = Object.create(null);\n if (!existing)\n fieldsToDirty_1.__exists = 1;\n Object.keys(incoming).forEach(function (storeFieldName) {\n if (!existing || existing[storeFieldName] !== merged[storeFieldName]) {\n fieldsToDirty_1[storeFieldName] = 1;\n var fieldName = fieldNameFromStoreName(storeFieldName);\n if (fieldName !== storeFieldName &&\n !_this.policies.hasKeyArgs(merged.__typename, fieldName)) {\n fieldsToDirty_1[fieldName] = 1;\n }\n if (merged[storeFieldName] === void 0 && !(_this instanceof Layer)) {\n delete merged[storeFieldName];\n }\n }\n });\n if (fieldsToDirty_1.__typename &&\n !(existing && existing.__typename) &&\n this.policies.rootTypenamesById[dataId] === merged.__typename) {\n delete fieldsToDirty_1.__typename;\n }\n Object.keys(fieldsToDirty_1).forEach(function (fieldName) { return _this.group.dirty(dataId, fieldName); });\n }\n }\n };\n EntityStore.prototype.modify = function (dataId, fields) {\n var _this = this;\n var storeObject = this.lookup(dataId);\n if (storeObject) {\n var changedFields_1 = Object.create(null);\n var needToMerge_1 = false;\n var allDeleted_1 = true;\n var sharedDetails_1 = {\n DELETE: DELETE,\n INVALIDATE: INVALIDATE,\n isReference: isReference,\n toReference: this.toReference,\n canRead: this.canRead,\n readField: function (fieldNameOrOptions, from) { return _this.policies.readField(typeof fieldNameOrOptions === \"string\" ? {\n fieldName: fieldNameOrOptions,\n from: from || makeReference(dataId),\n } : fieldNameOrOptions, { store: _this }); },\n };\n Object.keys(storeObject).forEach(function (storeFieldName) {\n var fieldName = fieldNameFromStoreName(storeFieldName);\n var fieldValue = storeObject[storeFieldName];\n if (fieldValue === void 0)\n return;\n var modify = typeof fields === \"function\"\n ? fields\n : fields[storeFieldName] || fields[fieldName];\n if (modify) {\n var newValue = modify === delModifier ? DELETE :\n modify(maybeDeepFreeze(fieldValue), __assign(__assign({}, sharedDetails_1), { fieldName: fieldName, storeFieldName: storeFieldName, storage: _this.getStorage(dataId, storeFieldName) }));\n if (newValue === INVALIDATE) {\n _this.group.dirty(dataId, storeFieldName);\n }\n else {\n if (newValue === DELETE)\n newValue = void 0;\n if (newValue !== fieldValue) {\n changedFields_1[storeFieldName] = newValue;\n needToMerge_1 = true;\n fieldValue = newValue;\n }\n }\n }\n if (fieldValue !== void 0) {\n allDeleted_1 = false;\n }\n });\n if (needToMerge_1) {\n this.merge(dataId, changedFields_1);\n if (allDeleted_1) {\n if (this instanceof Layer) {\n this.data[dataId] = void 0;\n }\n else {\n delete this.data[dataId];\n }\n this.group.dirty(dataId, \"__exists\");\n }\n return true;\n }\n }\n return false;\n };\n EntityStore.prototype.delete = function (dataId, fieldName, args) {\n var _a;\n var storeObject = this.lookup(dataId);\n if (storeObject) {\n var typename = this.getFieldValue(storeObject, \"__typename\");\n var storeFieldName = fieldName && args\n ? this.policies.getStoreFieldName({ typename: typename, fieldName: fieldName, args: args })\n : fieldName;\n return this.modify(dataId, storeFieldName ? (_a = {},\n _a[storeFieldName] = delModifier,\n _a) : delModifier);\n }\n return false;\n };\n EntityStore.prototype.evict = function (options, limit) {\n var evicted = false;\n if (options.id) {\n if (hasOwn.call(this.data, options.id)) {\n evicted = this.delete(options.id, options.fieldName, options.args);\n }\n if (this instanceof Layer && this !== limit) {\n evicted = this.parent.evict(options, limit) || evicted;\n }\n if (options.fieldName || evicted) {\n this.group.dirty(options.id, options.fieldName || \"__exists\");\n }\n }\n return evicted;\n };\n EntityStore.prototype.clear = function () {\n this.replace(null);\n };\n EntityStore.prototype.extract = function () {\n var _this = this;\n var obj = this.toObject();\n var extraRootIds = [];\n this.getRootIdSet().forEach(function (id) {\n if (!hasOwn.call(_this.policies.rootTypenamesById, id)) {\n extraRootIds.push(id);\n }\n });\n if (extraRootIds.length) {\n obj.__META = { extraRootIds: extraRootIds.sort() };\n }\n return obj;\n };\n EntityStore.prototype.replace = function (newData) {\n var _this = this;\n Object.keys(this.data).forEach(function (dataId) {\n if (!(newData && hasOwn.call(newData, dataId))) {\n _this.delete(dataId);\n }\n });\n if (newData) {\n var __META = newData.__META, rest_1 = __rest(newData, [\"__META\"]);\n Object.keys(rest_1).forEach(function (dataId) {\n _this.merge(dataId, rest_1[dataId]);\n });\n if (__META) {\n __META.extraRootIds.forEach(this.retain, this);\n }\n }\n };\n EntityStore.prototype.retain = function (rootId) {\n return this.rootIds[rootId] = (this.rootIds[rootId] || 0) + 1;\n };\n EntityStore.prototype.release = function (rootId) {\n if (this.rootIds[rootId] > 0) {\n var count = --this.rootIds[rootId];\n if (!count)\n delete this.rootIds[rootId];\n return count;\n }\n return 0;\n };\n EntityStore.prototype.getRootIdSet = function (ids) {\n if (ids === void 0) { ids = new Set(); }\n Object.keys(this.rootIds).forEach(ids.add, ids);\n if (this instanceof Layer) {\n this.parent.getRootIdSet(ids);\n }\n else {\n Object.keys(this.policies.rootTypenamesById).forEach(ids.add, ids);\n }\n return ids;\n };\n EntityStore.prototype.gc = function () {\n var _this = this;\n var ids = this.getRootIdSet();\n var snapshot = this.toObject();\n ids.forEach(function (id) {\n if (hasOwn.call(snapshot, id)) {\n Object.keys(_this.findChildRefIds(id)).forEach(ids.add, ids);\n delete snapshot[id];\n }\n });\n var idsToRemove = Object.keys(snapshot);\n if (idsToRemove.length) {\n var root_1 = this;\n while (root_1 instanceof Layer)\n root_1 = root_1.parent;\n idsToRemove.forEach(function (id) { return root_1.delete(id); });\n }\n return idsToRemove;\n };\n EntityStore.prototype.findChildRefIds = function (dataId) {\n if (!hasOwn.call(this.refs, dataId)) {\n var found_1 = this.refs[dataId] = Object.create(null);\n var root = this.data[dataId];\n if (!root)\n return found_1;\n var workSet_1 = new Set([root]);\n workSet_1.forEach(function (obj) {\n if (isReference(obj)) {\n found_1[obj.__ref] = true;\n }\n if (isNonNullObject(obj)) {\n Object.keys(obj).forEach(function (key) {\n var child = obj[key];\n if (isNonNullObject(child)) {\n workSet_1.add(child);\n }\n });\n }\n });\n }\n return this.refs[dataId];\n };\n EntityStore.prototype.makeCacheKey = function () {\n return this.group.keyMaker.lookupArray(arguments);\n };\n return EntityStore;\n}());\nexport { EntityStore };\nvar CacheGroup = (function () {\n function CacheGroup(caching, parent) {\n if (parent === void 0) { parent = null; }\n this.caching = caching;\n this.parent = parent;\n this.d = null;\n this.resetCaching();\n }\n CacheGroup.prototype.resetCaching = function () {\n this.d = this.caching ? dep() : null;\n this.keyMaker = new Trie(canUseWeakMap);\n };\n CacheGroup.prototype.depend = function (dataId, storeFieldName) {\n if (this.d) {\n this.d(makeDepKey(dataId, storeFieldName));\n var fieldName = fieldNameFromStoreName(storeFieldName);\n if (fieldName !== storeFieldName) {\n this.d(makeDepKey(dataId, fieldName));\n }\n if (this.parent) {\n this.parent.depend(dataId, storeFieldName);\n }\n }\n };\n CacheGroup.prototype.dirty = function (dataId, storeFieldName) {\n if (this.d) {\n this.d.dirty(makeDepKey(dataId, storeFieldName), storeFieldName === \"__exists\" ? \"forget\" : \"setDirty\");\n }\n };\n return CacheGroup;\n}());\nfunction makeDepKey(dataId, storeFieldName) {\n return storeFieldName + '#' + dataId;\n}\nexport function maybeDependOnExistenceOfEntity(store, entityId) {\n if (supportsResultCaching(store)) {\n store.group.depend(entityId, \"__exists\");\n }\n}\n(function (EntityStore) {\n var Root = (function (_super) {\n __extends(Root, _super);\n function Root(_a) {\n var policies = _a.policies, _b = _a.resultCaching, resultCaching = _b === void 0 ? true : _b, seed = _a.seed;\n var _this = _super.call(this, policies, new CacheGroup(resultCaching)) || this;\n _this.stump = new Stump(_this);\n _this.storageTrie = new Trie(canUseWeakMap);\n if (seed)\n _this.replace(seed);\n return _this;\n }\n Root.prototype.addLayer = function (layerId, replay) {\n return this.stump.addLayer(layerId, replay);\n };\n Root.prototype.removeLayer = function () {\n return this;\n };\n Root.prototype.getStorage = function () {\n return this.storageTrie.lookupArray(arguments);\n };\n return Root;\n }(EntityStore));\n EntityStore.Root = Root;\n})(EntityStore || (EntityStore = {}));\nvar Layer = (function (_super) {\n __extends(Layer, _super);\n function Layer(id, parent, replay, group) {\n var _this = _super.call(this, parent.policies, group) || this;\n _this.id = id;\n _this.parent = parent;\n _this.replay = replay;\n _this.group = group;\n replay(_this);\n return _this;\n }\n Layer.prototype.addLayer = function (layerId, replay) {\n return new Layer(layerId, this, replay, this.group);\n };\n Layer.prototype.removeLayer = function (layerId) {\n var _this = this;\n var parent = this.parent.removeLayer(layerId);\n if (layerId === this.id) {\n if (this.group.caching) {\n Object.keys(this.data).forEach(function (dataId) {\n var ownStoreObject = _this.data[dataId];\n var parentStoreObject = parent[\"lookup\"](dataId);\n if (!parentStoreObject) {\n _this.delete(dataId);\n }\n else if (!ownStoreObject) {\n _this.group.dirty(dataId, \"__exists\");\n Object.keys(parentStoreObject).forEach(function (storeFieldName) {\n _this.group.dirty(dataId, storeFieldName);\n });\n }\n else if (ownStoreObject !== parentStoreObject) {\n Object.keys(ownStoreObject).forEach(function (storeFieldName) {\n if (!equal(ownStoreObject[storeFieldName], parentStoreObject[storeFieldName])) {\n _this.group.dirty(dataId, storeFieldName);\n }\n });\n }\n });\n }\n return parent;\n }\n if (parent === this.parent)\n return this;\n return parent.addLayer(this.id, this.replay);\n };\n Layer.prototype.toObject = function () {\n return __assign(__assign({}, this.parent.toObject()), this.data);\n };\n Layer.prototype.findChildRefIds = function (dataId) {\n var fromParent = this.parent.findChildRefIds(dataId);\n return hasOwn.call(this.data, dataId) ? __assign(__assign({}, fromParent), _super.prototype.findChildRefIds.call(this, dataId)) : fromParent;\n };\n Layer.prototype.getStorage = function () {\n var p = this.parent;\n while (p.parent)\n p = p.parent;\n return p.getStorage.apply(p, arguments);\n };\n return Layer;\n}(EntityStore));\nvar Stump = (function (_super) {\n __extends(Stump, _super);\n function Stump(root) {\n return _super.call(this, \"EntityStore.Stump\", root, function () { }, new CacheGroup(root.group.caching, root.group)) || this;\n }\n Stump.prototype.removeLayer = function () {\n return this;\n };\n Stump.prototype.merge = function () {\n return this.parent.merge.apply(this.parent, arguments);\n };\n return Stump;\n}(Layer));\nfunction storeObjectReconciler(existingObject, incomingObject, property) {\n var existingValue = existingObject[property];\n var incomingValue = incomingObject[property];\n return equal(existingValue, incomingValue) ? existingValue : incomingValue;\n}\nexport function supportsResultCaching(store) {\n return !!(store instanceof EntityStore && store.group.caching);\n}\n//# sourceMappingURL=entityStore.js.map","import { __assign } from \"tslib\";\nimport { invariant } from \"../../utilities/globals/index.js\";\nimport { wrap } from 'optimism';\nimport { isField, resultKeyNameFromField, isReference, makeReference, createFragmentMap, shouldInclude, addTypenameToDocument, getDefaultValues, getFragmentDefinitions, getMainDefinition, getQueryDefinition, getFragmentFromSelection, maybeDeepFreeze, mergeDeepArray, DeepMerger, isNonNullObject, canUseWeakMap, compact, } from \"../../utilities/index.js\";\nimport { maybeDependOnExistenceOfEntity, supportsResultCaching } from \"./entityStore.js\";\nimport { getTypenameFromStoreObject, isArray, shouldCanonizeResults } from \"./helpers.js\";\nimport { MissingFieldError } from \"../core/types/common.js\";\nimport { canonicalStringify, ObjectCanon } from \"./object-canon.js\";\n;\nfunction execSelectionSetKeyArgs(options) {\n return [\n options.selectionSet,\n options.objectOrReference,\n options.context,\n options.context.canonizeResults,\n ];\n}\nvar StoreReader = (function () {\n function StoreReader(config) {\n var _this = this;\n this.knownResults = new (canUseWeakMap ? WeakMap : Map)();\n this.config = compact(config, {\n addTypename: config.addTypename !== false,\n canonizeResults: shouldCanonizeResults(config),\n });\n this.canon = config.canon || new ObjectCanon;\n this.executeSelectionSet = wrap(function (options) {\n var _a;\n var canonizeResults = options.context.canonizeResults;\n var peekArgs = execSelectionSetKeyArgs(options);\n peekArgs[3] = !canonizeResults;\n var other = (_a = _this.executeSelectionSet).peek.apply(_a, peekArgs);\n if (other) {\n if (canonizeResults) {\n return __assign(__assign({}, other), { result: _this.canon.admit(other.result) });\n }\n return other;\n }\n maybeDependOnExistenceOfEntity(options.context.store, options.enclosingRef.__ref);\n return _this.execSelectionSetImpl(options);\n }, {\n max: this.config.resultCacheMaxSize,\n keyArgs: execSelectionSetKeyArgs,\n makeCacheKey: function (selectionSet, parent, context, canonizeResults) {\n if (supportsResultCaching(context.store)) {\n return context.store.makeCacheKey(selectionSet, isReference(parent) ? parent.__ref : parent, context.varString, canonizeResults);\n }\n }\n });\n this.executeSubSelectedArray = wrap(function (options) {\n maybeDependOnExistenceOfEntity(options.context.store, options.enclosingRef.__ref);\n return _this.execSubSelectedArrayImpl(options);\n }, {\n max: this.config.resultCacheMaxSize,\n makeCacheKey: function (_a) {\n var field = _a.field, array = _a.array, context = _a.context;\n if (supportsResultCaching(context.store)) {\n return context.store.makeCacheKey(field, array, context.varString);\n }\n }\n });\n }\n StoreReader.prototype.resetCanon = function () {\n this.canon = new ObjectCanon;\n };\n StoreReader.prototype.diffQueryAgainstStore = function (_a) {\n var store = _a.store, query = _a.query, _b = _a.rootId, rootId = _b === void 0 ? 'ROOT_QUERY' : _b, variables = _a.variables, _c = _a.returnPartialData, returnPartialData = _c === void 0 ? true : _c, _d = _a.canonizeResults, canonizeResults = _d === void 0 ? this.config.canonizeResults : _d;\n var policies = this.config.cache.policies;\n variables = __assign(__assign({}, getDefaultValues(getQueryDefinition(query))), variables);\n var rootRef = makeReference(rootId);\n var execResult = this.executeSelectionSet({\n selectionSet: getMainDefinition(query).selectionSet,\n objectOrReference: rootRef,\n enclosingRef: rootRef,\n context: {\n store: store,\n query: query,\n policies: policies,\n variables: variables,\n varString: canonicalStringify(variables),\n canonizeResults: canonizeResults,\n fragmentMap: createFragmentMap(getFragmentDefinitions(query)),\n },\n });\n var missing;\n if (execResult.missing) {\n missing = [new MissingFieldError(firstMissing(execResult.missing), execResult.missing, query, variables)];\n if (!returnPartialData) {\n throw missing[0];\n }\n }\n return {\n result: execResult.result,\n complete: !missing,\n missing: missing,\n };\n };\n StoreReader.prototype.isFresh = function (result, parent, selectionSet, context) {\n if (supportsResultCaching(context.store) &&\n this.knownResults.get(result) === selectionSet) {\n var latest = this.executeSelectionSet.peek(selectionSet, parent, context, this.canon.isKnown(result));\n if (latest && result === latest.result) {\n return true;\n }\n }\n return false;\n };\n StoreReader.prototype.execSelectionSetImpl = function (_a) {\n var _this = this;\n var selectionSet = _a.selectionSet, objectOrReference = _a.objectOrReference, enclosingRef = _a.enclosingRef, context = _a.context;\n if (isReference(objectOrReference) &&\n !context.policies.rootTypenamesById[objectOrReference.__ref] &&\n !context.store.has(objectOrReference.__ref)) {\n return {\n result: this.canon.empty,\n missing: \"Dangling reference to missing \".concat(objectOrReference.__ref, \" object\"),\n };\n }\n var variables = context.variables, policies = context.policies, store = context.store;\n var typename = store.getFieldValue(objectOrReference, \"__typename\");\n var objectsToMerge = [];\n var missing;\n var missingMerger = new DeepMerger();\n if (this.config.addTypename &&\n typeof typename === \"string\" &&\n !policies.rootIdsByTypename[typename]) {\n objectsToMerge.push({ __typename: typename });\n }\n function handleMissing(result, resultName) {\n var _a;\n if (result.missing) {\n missing = missingMerger.merge(missing, (_a = {}, _a[resultName] = result.missing, _a));\n }\n return result.result;\n }\n var workSet = new Set(selectionSet.selections);\n workSet.forEach(function (selection) {\n var _a, _b;\n if (!shouldInclude(selection, variables))\n return;\n if (isField(selection)) {\n var fieldValue = policies.readField({\n fieldName: selection.name.value,\n field: selection,\n variables: context.variables,\n from: objectOrReference,\n }, context);\n var resultName = resultKeyNameFromField(selection);\n if (fieldValue === void 0) {\n if (!addTypenameToDocument.added(selection)) {\n missing = missingMerger.merge(missing, (_a = {},\n _a[resultName] = \"Can't find field '\".concat(selection.name.value, \"' on \").concat(isReference(objectOrReference)\n ? objectOrReference.__ref + \" object\"\n : \"object \" + JSON.stringify(objectOrReference, null, 2)),\n _a));\n }\n }\n else if (isArray(fieldValue)) {\n fieldValue = handleMissing(_this.executeSubSelectedArray({\n field: selection,\n array: fieldValue,\n enclosingRef: enclosingRef,\n context: context,\n }), resultName);\n }\n else if (!selection.selectionSet) {\n if (context.canonizeResults) {\n fieldValue = _this.canon.pass(fieldValue);\n }\n }\n else if (fieldValue != null) {\n fieldValue = handleMissing(_this.executeSelectionSet({\n selectionSet: selection.selectionSet,\n objectOrReference: fieldValue,\n enclosingRef: isReference(fieldValue) ? fieldValue : enclosingRef,\n context: context,\n }), resultName);\n }\n if (fieldValue !== void 0) {\n objectsToMerge.push((_b = {}, _b[resultName] = fieldValue, _b));\n }\n }\n else {\n var fragment = getFragmentFromSelection(selection, context.fragmentMap);\n if (fragment && policies.fragmentMatches(fragment, typename)) {\n fragment.selectionSet.selections.forEach(workSet.add, workSet);\n }\n }\n });\n var result = mergeDeepArray(objectsToMerge);\n var finalResult = { result: result, missing: missing };\n var frozen = context.canonizeResults\n ? this.canon.admit(finalResult)\n : maybeDeepFreeze(finalResult);\n if (frozen.result) {\n this.knownResults.set(frozen.result, selectionSet);\n }\n return frozen;\n };\n StoreReader.prototype.execSubSelectedArrayImpl = function (_a) {\n var _this = this;\n var field = _a.field, array = _a.array, enclosingRef = _a.enclosingRef, context = _a.context;\n var missing;\n var missingMerger = new DeepMerger();\n function handleMissing(childResult, i) {\n var _a;\n if (childResult.missing) {\n missing = missingMerger.merge(missing, (_a = {}, _a[i] = childResult.missing, _a));\n }\n return childResult.result;\n }\n if (field.selectionSet) {\n array = array.filter(context.store.canRead);\n }\n array = array.map(function (item, i) {\n if (item === null) {\n return null;\n }\n if (isArray(item)) {\n return handleMissing(_this.executeSubSelectedArray({\n field: field,\n array: item,\n enclosingRef: enclosingRef,\n context: context,\n }), i);\n }\n if (field.selectionSet) {\n return handleMissing(_this.executeSelectionSet({\n selectionSet: field.selectionSet,\n objectOrReference: item,\n enclosingRef: isReference(item) ? item : enclosingRef,\n context: context,\n }), i);\n }\n if (__DEV__) {\n assertSelectionSetForIdValue(context.store, field, item);\n }\n return item;\n });\n return {\n result: context.canonizeResults ? this.canon.admit(array) : array,\n missing: missing,\n };\n };\n return StoreReader;\n}());\nexport { StoreReader };\nfunction firstMissing(tree) {\n try {\n JSON.stringify(tree, function (_, value) {\n if (typeof value === \"string\")\n throw value;\n return value;\n });\n }\n catch (result) {\n return result;\n }\n}\nfunction assertSelectionSetForIdValue(store, field, fieldValue) {\n if (!field.selectionSet) {\n var workSet_1 = new Set([fieldValue]);\n workSet_1.forEach(function (value) {\n if (isNonNullObject(value)) {\n __DEV__ ? invariant(!isReference(value), \"Missing selection set for object of type \".concat(getTypenameFromStoreObject(store, value), \" returned for query field \").concat(field.name.value)) : invariant(!isReference(value), 5);\n Object.values(value).forEach(workSet_1.add, workSet_1);\n }\n });\n }\n}\n//# sourceMappingURL=readFromStore.js.map","import { invariant } from \"../../utilities/globals/index.js\";\nimport { argumentsObjectFromField, DeepMerger, isNonEmptyArray, isNonNullObject, } from \"../../utilities/index.js\";\nimport { hasOwn, isArray } from \"./helpers.js\";\nvar specifierInfoCache = Object.create(null);\nfunction lookupSpecifierInfo(spec) {\n var cacheKey = JSON.stringify(spec);\n return specifierInfoCache[cacheKey] ||\n (specifierInfoCache[cacheKey] = Object.create(null));\n}\nexport function keyFieldsFnFromSpecifier(specifier) {\n var info = lookupSpecifierInfo(specifier);\n return info.keyFieldsFn || (info.keyFieldsFn = function (object, context) {\n var extract = function (from, key) { return context.readField(key, from); };\n var keyObject = context.keyObject = collectSpecifierPaths(specifier, function (schemaKeyPath) {\n var extracted = extractKeyPath(context.storeObject, schemaKeyPath, extract);\n if (extracted === void 0 &&\n object !== context.storeObject &&\n hasOwn.call(object, schemaKeyPath[0])) {\n extracted = extractKeyPath(object, schemaKeyPath, extractKey);\n }\n __DEV__ ? invariant(extracted !== void 0, \"Missing field '\".concat(schemaKeyPath.join('.'), \"' while extracting keyFields from \").concat(JSON.stringify(object))) : invariant(extracted !== void 0, 2);\n return extracted;\n });\n return \"\".concat(context.typename, \":\").concat(JSON.stringify(keyObject));\n });\n}\nexport function keyArgsFnFromSpecifier(specifier) {\n var info = lookupSpecifierInfo(specifier);\n return info.keyArgsFn || (info.keyArgsFn = function (args, _a) {\n var field = _a.field, variables = _a.variables, fieldName = _a.fieldName;\n var collected = collectSpecifierPaths(specifier, function (keyPath) {\n var firstKey = keyPath[0];\n var firstChar = firstKey.charAt(0);\n if (firstChar === \"@\") {\n if (field && isNonEmptyArray(field.directives)) {\n var directiveName_1 = firstKey.slice(1);\n var d = field.directives.find(function (d) { return d.name.value === directiveName_1; });\n var directiveArgs = d && argumentsObjectFromField(d, variables);\n return directiveArgs && extractKeyPath(directiveArgs, keyPath.slice(1));\n }\n return;\n }\n if (firstChar === \"$\") {\n var variableName = firstKey.slice(1);\n if (variables && hasOwn.call(variables, variableName)) {\n var varKeyPath = keyPath.slice(0);\n varKeyPath[0] = variableName;\n return extractKeyPath(variables, varKeyPath);\n }\n return;\n }\n if (args) {\n return extractKeyPath(args, keyPath);\n }\n });\n var suffix = JSON.stringify(collected);\n if (args || suffix !== \"{}\") {\n fieldName += \":\" + suffix;\n }\n return fieldName;\n });\n}\nexport function collectSpecifierPaths(specifier, extractor) {\n var merger = new DeepMerger;\n return getSpecifierPaths(specifier).reduce(function (collected, path) {\n var _a;\n var toMerge = extractor(path);\n if (toMerge !== void 0) {\n for (var i = path.length - 1; i >= 0; --i) {\n toMerge = (_a = {}, _a[path[i]] = toMerge, _a);\n }\n collected = merger.merge(collected, toMerge);\n }\n return collected;\n }, Object.create(null));\n}\nexport function getSpecifierPaths(spec) {\n var info = lookupSpecifierInfo(spec);\n if (!info.paths) {\n var paths_1 = info.paths = [];\n var currentPath_1 = [];\n spec.forEach(function (s, i) {\n if (isArray(s)) {\n getSpecifierPaths(s).forEach(function (p) { return paths_1.push(currentPath_1.concat(p)); });\n currentPath_1.length = 0;\n }\n else {\n currentPath_1.push(s);\n if (!isArray(spec[i + 1])) {\n paths_1.push(currentPath_1.slice(0));\n currentPath_1.length = 0;\n }\n }\n });\n }\n return info.paths;\n}\nfunction extractKey(object, key) {\n return object[key];\n}\nexport function extractKeyPath(object, path, extract) {\n extract = extract || extractKey;\n return normalize(path.reduce(function reducer(obj, key) {\n return isArray(obj)\n ? obj.map(function (child) { return reducer(child, key); })\n : obj && extract(obj, key);\n }, object));\n}\nfunction normalize(value) {\n if (isNonNullObject(value)) {\n if (isArray(value)) {\n return value.map(normalize);\n }\n return collectSpecifierPaths(Object.keys(value).sort(), function (path) { return extractKeyPath(value, path); });\n }\n return value;\n}\n//# sourceMappingURL=key-extractor.js.map","import { __assign, __rest } from \"tslib\";\nimport { invariant, InvariantError } from \"../../utilities/globals/index.js\";\nimport { storeKeyNameFromField, argumentsObjectFromField, isReference, getStoreKeyName, isNonNullObject, stringifyForDisplay, } from \"../../utilities/index.js\";\nimport { hasOwn, fieldNameFromStoreName, storeValueIsStoreObject, selectionSetMatchesResult, TypeOrFieldNameRegExp, defaultDataIdFromObject, isArray, } from \"./helpers.js\";\nimport { cacheSlot } from \"./reactiveVars.js\";\nimport { canonicalStringify } from \"./object-canon.js\";\nimport { keyArgsFnFromSpecifier, keyFieldsFnFromSpecifier } from \"./key-extractor.js\";\ngetStoreKeyName.setStringify(canonicalStringify);\nfunction argsFromFieldSpecifier(spec) {\n return spec.args !== void 0 ? spec.args :\n spec.field ? argumentsObjectFromField(spec.field, spec.variables) : null;\n}\nvar nullKeyFieldsFn = function () { return void 0; };\nvar simpleKeyArgsFn = function (_args, context) { return context.fieldName; };\nvar mergeTrueFn = function (existing, incoming, _a) {\n var mergeObjects = _a.mergeObjects;\n return mergeObjects(existing, incoming);\n};\nvar mergeFalseFn = function (_, incoming) { return incoming; };\nvar Policies = (function () {\n function Policies(config) {\n this.config = config;\n this.typePolicies = Object.create(null);\n this.toBeAdded = Object.create(null);\n this.supertypeMap = new Map();\n this.fuzzySubtypes = new Map();\n this.rootIdsByTypename = Object.create(null);\n this.rootTypenamesById = Object.create(null);\n this.usingPossibleTypes = false;\n this.config = __assign({ dataIdFromObject: defaultDataIdFromObject }, config);\n this.cache = this.config.cache;\n this.setRootTypename(\"Query\");\n this.setRootTypename(\"Mutation\");\n this.setRootTypename(\"Subscription\");\n if (config.possibleTypes) {\n this.addPossibleTypes(config.possibleTypes);\n }\n if (config.typePolicies) {\n this.addTypePolicies(config.typePolicies);\n }\n }\n Policies.prototype.identify = function (object, partialContext) {\n var _a;\n var policies = this;\n var typename = partialContext && (partialContext.typename ||\n ((_a = partialContext.storeObject) === null || _a === void 0 ? void 0 : _a.__typename)) || object.__typename;\n if (typename === this.rootTypenamesById.ROOT_QUERY) {\n return [\"ROOT_QUERY\"];\n }\n var storeObject = partialContext && partialContext.storeObject || object;\n var context = __assign(__assign({}, partialContext), { typename: typename, storeObject: storeObject, readField: partialContext && partialContext.readField || function () {\n var options = normalizeReadFieldOptions(arguments, storeObject);\n return policies.readField(options, {\n store: policies.cache[\"data\"],\n variables: options.variables,\n });\n } });\n var id;\n var policy = typename && this.getTypePolicy(typename);\n var keyFn = policy && policy.keyFn || this.config.dataIdFromObject;\n while (keyFn) {\n var specifierOrId = keyFn(object, context);\n if (isArray(specifierOrId)) {\n keyFn = keyFieldsFnFromSpecifier(specifierOrId);\n }\n else {\n id = specifierOrId;\n break;\n }\n }\n id = id ? String(id) : void 0;\n return context.keyObject ? [id, context.keyObject] : [id];\n };\n Policies.prototype.addTypePolicies = function (typePolicies) {\n var _this = this;\n Object.keys(typePolicies).forEach(function (typename) {\n var _a = typePolicies[typename], queryType = _a.queryType, mutationType = _a.mutationType, subscriptionType = _a.subscriptionType, incoming = __rest(_a, [\"queryType\", \"mutationType\", \"subscriptionType\"]);\n if (queryType)\n _this.setRootTypename(\"Query\", typename);\n if (mutationType)\n _this.setRootTypename(\"Mutation\", typename);\n if (subscriptionType)\n _this.setRootTypename(\"Subscription\", typename);\n if (hasOwn.call(_this.toBeAdded, typename)) {\n _this.toBeAdded[typename].push(incoming);\n }\n else {\n _this.toBeAdded[typename] = [incoming];\n }\n });\n };\n Policies.prototype.updateTypePolicy = function (typename, incoming) {\n var _this = this;\n var existing = this.getTypePolicy(typename);\n var keyFields = incoming.keyFields, fields = incoming.fields;\n function setMerge(existing, merge) {\n existing.merge =\n typeof merge === \"function\" ? merge :\n merge === true ? mergeTrueFn :\n merge === false ? mergeFalseFn :\n existing.merge;\n }\n setMerge(existing, incoming.merge);\n existing.keyFn =\n keyFields === false ? nullKeyFieldsFn :\n isArray(keyFields) ? keyFieldsFnFromSpecifier(keyFields) :\n typeof keyFields === \"function\" ? keyFields :\n existing.keyFn;\n if (fields) {\n Object.keys(fields).forEach(function (fieldName) {\n var existing = _this.getFieldPolicy(typename, fieldName, true);\n var incoming = fields[fieldName];\n if (typeof incoming === \"function\") {\n existing.read = incoming;\n }\n else {\n var keyArgs = incoming.keyArgs, read = incoming.read, merge = incoming.merge;\n existing.keyFn =\n keyArgs === false ? simpleKeyArgsFn :\n isArray(keyArgs) ? keyArgsFnFromSpecifier(keyArgs) :\n typeof keyArgs === \"function\" ? keyArgs :\n existing.keyFn;\n if (typeof read === \"function\") {\n existing.read = read;\n }\n setMerge(existing, merge);\n }\n if (existing.read && existing.merge) {\n existing.keyFn = existing.keyFn || simpleKeyArgsFn;\n }\n });\n }\n };\n Policies.prototype.setRootTypename = function (which, typename) {\n if (typename === void 0) { typename = which; }\n var rootId = \"ROOT_\" + which.toUpperCase();\n var old = this.rootTypenamesById[rootId];\n if (typename !== old) {\n __DEV__ ? invariant(!old || old === which, \"Cannot change root \".concat(which, \" __typename more than once\")) : invariant(!old || old === which, 3);\n if (old)\n delete this.rootIdsByTypename[old];\n this.rootIdsByTypename[typename] = rootId;\n this.rootTypenamesById[rootId] = typename;\n }\n };\n Policies.prototype.addPossibleTypes = function (possibleTypes) {\n var _this = this;\n this.usingPossibleTypes = true;\n Object.keys(possibleTypes).forEach(function (supertype) {\n _this.getSupertypeSet(supertype, true);\n possibleTypes[supertype].forEach(function (subtype) {\n _this.getSupertypeSet(subtype, true).add(supertype);\n var match = subtype.match(TypeOrFieldNameRegExp);\n if (!match || match[0] !== subtype) {\n _this.fuzzySubtypes.set(subtype, new RegExp(subtype));\n }\n });\n });\n };\n Policies.prototype.getTypePolicy = function (typename) {\n var _this = this;\n if (!hasOwn.call(this.typePolicies, typename)) {\n var policy_1 = this.typePolicies[typename] = Object.create(null);\n policy_1.fields = Object.create(null);\n var supertypes = this.supertypeMap.get(typename);\n if (supertypes && supertypes.size) {\n supertypes.forEach(function (supertype) {\n var _a = _this.getTypePolicy(supertype), fields = _a.fields, rest = __rest(_a, [\"fields\"]);\n Object.assign(policy_1, rest);\n Object.assign(policy_1.fields, fields);\n });\n }\n }\n var inbox = this.toBeAdded[typename];\n if (inbox && inbox.length) {\n inbox.splice(0).forEach(function (policy) {\n _this.updateTypePolicy(typename, policy);\n });\n }\n return this.typePolicies[typename];\n };\n Policies.prototype.getFieldPolicy = function (typename, fieldName, createIfMissing) {\n if (typename) {\n var fieldPolicies = this.getTypePolicy(typename).fields;\n return fieldPolicies[fieldName] || (createIfMissing && (fieldPolicies[fieldName] = Object.create(null)));\n }\n };\n Policies.prototype.getSupertypeSet = function (subtype, createIfMissing) {\n var supertypeSet = this.supertypeMap.get(subtype);\n if (!supertypeSet && createIfMissing) {\n this.supertypeMap.set(subtype, supertypeSet = new Set());\n }\n return supertypeSet;\n };\n Policies.prototype.fragmentMatches = function (fragment, typename, result, variables) {\n var _this = this;\n if (!fragment.typeCondition)\n return true;\n if (!typename)\n return false;\n var supertype = fragment.typeCondition.name.value;\n if (typename === supertype)\n return true;\n if (this.usingPossibleTypes &&\n this.supertypeMap.has(supertype)) {\n var typenameSupertypeSet = this.getSupertypeSet(typename, true);\n var workQueue_1 = [typenameSupertypeSet];\n var maybeEnqueue_1 = function (subtype) {\n var supertypeSet = _this.getSupertypeSet(subtype, false);\n if (supertypeSet &&\n supertypeSet.size &&\n workQueue_1.indexOf(supertypeSet) < 0) {\n workQueue_1.push(supertypeSet);\n }\n };\n var needToCheckFuzzySubtypes = !!(result && this.fuzzySubtypes.size);\n var checkingFuzzySubtypes = false;\n for (var i = 0; i < workQueue_1.length; ++i) {\n var supertypeSet = workQueue_1[i];\n if (supertypeSet.has(supertype)) {\n if (!typenameSupertypeSet.has(supertype)) {\n if (checkingFuzzySubtypes) {\n __DEV__ && invariant.warn(\"Inferring subtype \".concat(typename, \" of supertype \").concat(supertype));\n }\n typenameSupertypeSet.add(supertype);\n }\n return true;\n }\n supertypeSet.forEach(maybeEnqueue_1);\n if (needToCheckFuzzySubtypes &&\n i === workQueue_1.length - 1 &&\n selectionSetMatchesResult(fragment.selectionSet, result, variables)) {\n needToCheckFuzzySubtypes = false;\n checkingFuzzySubtypes = true;\n this.fuzzySubtypes.forEach(function (regExp, fuzzyString) {\n var match = typename.match(regExp);\n if (match && match[0] === typename) {\n maybeEnqueue_1(fuzzyString);\n }\n });\n }\n }\n }\n return false;\n };\n Policies.prototype.hasKeyArgs = function (typename, fieldName) {\n var policy = this.getFieldPolicy(typename, fieldName, false);\n return !!(policy && policy.keyFn);\n };\n Policies.prototype.getStoreFieldName = function (fieldSpec) {\n var typename = fieldSpec.typename, fieldName = fieldSpec.fieldName;\n var policy = this.getFieldPolicy(typename, fieldName, false);\n var storeFieldName;\n var keyFn = policy && policy.keyFn;\n if (keyFn && typename) {\n var context = {\n typename: typename,\n fieldName: fieldName,\n field: fieldSpec.field || null,\n variables: fieldSpec.variables,\n };\n var args = argsFromFieldSpecifier(fieldSpec);\n while (keyFn) {\n var specifierOrString = keyFn(args, context);\n if (isArray(specifierOrString)) {\n keyFn = keyArgsFnFromSpecifier(specifierOrString);\n }\n else {\n storeFieldName = specifierOrString || fieldName;\n break;\n }\n }\n }\n if (storeFieldName === void 0) {\n storeFieldName = fieldSpec.field\n ? storeKeyNameFromField(fieldSpec.field, fieldSpec.variables)\n : getStoreKeyName(fieldName, argsFromFieldSpecifier(fieldSpec));\n }\n if (storeFieldName === false) {\n return fieldName;\n }\n return fieldName === fieldNameFromStoreName(storeFieldName)\n ? storeFieldName\n : fieldName + \":\" + storeFieldName;\n };\n Policies.prototype.readField = function (options, context) {\n var objectOrReference = options.from;\n if (!objectOrReference)\n return;\n var nameOrField = options.field || options.fieldName;\n if (!nameOrField)\n return;\n if (options.typename === void 0) {\n var typename = context.store.getFieldValue(objectOrReference, \"__typename\");\n if (typename)\n options.typename = typename;\n }\n var storeFieldName = this.getStoreFieldName(options);\n var fieldName = fieldNameFromStoreName(storeFieldName);\n var existing = context.store.getFieldValue(objectOrReference, storeFieldName);\n var policy = this.getFieldPolicy(options.typename, fieldName, false);\n var read = policy && policy.read;\n if (read) {\n var readOptions = makeFieldFunctionOptions(this, objectOrReference, options, context, context.store.getStorage(isReference(objectOrReference)\n ? objectOrReference.__ref\n : objectOrReference, storeFieldName));\n return cacheSlot.withValue(this.cache, read, [existing, readOptions]);\n }\n return existing;\n };\n Policies.prototype.getReadFunction = function (typename, fieldName) {\n var policy = this.getFieldPolicy(typename, fieldName, false);\n return policy && policy.read;\n };\n Policies.prototype.getMergeFunction = function (parentTypename, fieldName, childTypename) {\n var policy = this.getFieldPolicy(parentTypename, fieldName, false);\n var merge = policy && policy.merge;\n if (!merge && childTypename) {\n policy = this.getTypePolicy(childTypename);\n merge = policy && policy.merge;\n }\n return merge;\n };\n Policies.prototype.runMergeFunction = function (existing, incoming, _a, context, storage) {\n var field = _a.field, typename = _a.typename, merge = _a.merge;\n if (merge === mergeTrueFn) {\n return makeMergeObjectsFunction(context.store)(existing, incoming);\n }\n if (merge === mergeFalseFn) {\n return incoming;\n }\n if (context.overwrite) {\n existing = void 0;\n }\n return merge(existing, incoming, makeFieldFunctionOptions(this, void 0, { typename: typename, fieldName: field.name.value, field: field, variables: context.variables }, context, storage || Object.create(null)));\n };\n return Policies;\n}());\nexport { Policies };\nfunction makeFieldFunctionOptions(policies, objectOrReference, fieldSpec, context, storage) {\n var storeFieldName = policies.getStoreFieldName(fieldSpec);\n var fieldName = fieldNameFromStoreName(storeFieldName);\n var variables = fieldSpec.variables || context.variables;\n var _a = context.store, toReference = _a.toReference, canRead = _a.canRead;\n return {\n args: argsFromFieldSpecifier(fieldSpec),\n field: fieldSpec.field || null,\n fieldName: fieldName,\n storeFieldName: storeFieldName,\n variables: variables,\n isReference: isReference,\n toReference: toReference,\n storage: storage,\n cache: policies.cache,\n canRead: canRead,\n readField: function () {\n return policies.readField(normalizeReadFieldOptions(arguments, objectOrReference, variables), context);\n },\n mergeObjects: makeMergeObjectsFunction(context.store),\n };\n}\nexport function normalizeReadFieldOptions(readFieldArgs, objectOrReference, variables) {\n var fieldNameOrOptions = readFieldArgs[0], from = readFieldArgs[1], argc = readFieldArgs.length;\n var options;\n if (typeof fieldNameOrOptions === \"string\") {\n options = {\n fieldName: fieldNameOrOptions,\n from: argc > 1 ? from : objectOrReference,\n };\n }\n else {\n options = __assign({}, fieldNameOrOptions);\n if (!hasOwn.call(options, \"from\")) {\n options.from = objectOrReference;\n }\n }\n if (__DEV__ && options.from === void 0) {\n __DEV__ && invariant.warn(\"Undefined 'from' passed to readField with arguments \".concat(stringifyForDisplay(Array.from(readFieldArgs))));\n }\n if (void 0 === options.variables) {\n options.variables = variables;\n }\n return options;\n}\nfunction makeMergeObjectsFunction(store) {\n return function mergeObjects(existing, incoming) {\n if (isArray(existing) || isArray(incoming)) {\n throw __DEV__ ? new InvariantError(\"Cannot automatically merge arrays\") : new InvariantError(4);\n }\n if (isNonNullObject(existing) &&\n isNonNullObject(incoming)) {\n var eType = store.getFieldValue(existing, \"__typename\");\n var iType = store.getFieldValue(incoming, \"__typename\");\n var typesDiffer = eType && iType && eType !== iType;\n if (typesDiffer) {\n return incoming;\n }\n if (isReference(existing) &&\n storeValueIsStoreObject(incoming)) {\n store.merge(existing.__ref, incoming);\n return existing;\n }\n if (storeValueIsStoreObject(existing) &&\n isReference(incoming)) {\n store.merge(existing, incoming.__ref);\n return incoming;\n }\n if (storeValueIsStoreObject(existing) &&\n storeValueIsStoreObject(incoming)) {\n return __assign(__assign({}, existing), incoming);\n }\n }\n return incoming;\n };\n}\n//# sourceMappingURL=policies.js.map","import { makeUniqueId } from \"./makeUniqueId.js\";\nexport function stringifyForDisplay(value) {\n var undefId = makeUniqueId(\"stringifyForDisplay\");\n return JSON.stringify(value, function (key, value) {\n return value === void 0 ? undefId : value;\n }).split(JSON.stringify(undefId)).join(\"\");\n}\n//# sourceMappingURL=stringifyForDisplay.js.map","import { __assign } from \"tslib\";\nimport { invariant, InvariantError } from \"../../utilities/globals/index.js\";\nimport { equal } from '@wry/equality';\nimport { Trie } from '@wry/trie';\nimport { createFragmentMap, getFragmentFromSelection, getDefaultValues, getFragmentDefinitions, getOperationDefinition, getTypenameFromResult, makeReference, isField, resultKeyNameFromField, isReference, shouldInclude, cloneDeep, addTypenameToDocument, isNonEmptyArray, argumentsObjectFromField, } from \"../../utilities/index.js\";\nimport { makeProcessedFieldsMerger, fieldNameFromStoreName, storeValueIsStoreObject, isArray } from \"./helpers.js\";\nimport { canonicalStringify } from \"./object-canon.js\";\nimport { normalizeReadFieldOptions } from \"./policies.js\";\n;\nfunction getContextFlavor(context, clientOnly, deferred) {\n var key = \"\".concat(clientOnly).concat(deferred);\n var flavored = context.flavors.get(key);\n if (!flavored) {\n context.flavors.set(key, flavored = (context.clientOnly === clientOnly &&\n context.deferred === deferred) ? context : __assign(__assign({}, context), { clientOnly: clientOnly, deferred: deferred }));\n }\n return flavored;\n}\nvar StoreWriter = (function () {\n function StoreWriter(cache, reader) {\n this.cache = cache;\n this.reader = reader;\n }\n StoreWriter.prototype.writeToStore = function (store, _a) {\n var _this = this;\n var query = _a.query, result = _a.result, dataId = _a.dataId, variables = _a.variables, overwrite = _a.overwrite;\n var operationDefinition = getOperationDefinition(query);\n var merger = makeProcessedFieldsMerger();\n variables = __assign(__assign({}, getDefaultValues(operationDefinition)), variables);\n var context = {\n store: store,\n written: Object.create(null),\n merge: function (existing, incoming) {\n return merger.merge(existing, incoming);\n },\n variables: variables,\n varString: canonicalStringify(variables),\n fragmentMap: createFragmentMap(getFragmentDefinitions(query)),\n overwrite: !!overwrite,\n incomingById: new Map,\n clientOnly: false,\n deferred: false,\n flavors: new Map,\n };\n var ref = this.processSelectionSet({\n result: result || Object.create(null),\n dataId: dataId,\n selectionSet: operationDefinition.selectionSet,\n mergeTree: { map: new Map },\n context: context,\n });\n if (!isReference(ref)) {\n throw __DEV__ ? new InvariantError(\"Could not identify object \".concat(JSON.stringify(result))) : new InvariantError(6);\n }\n context.incomingById.forEach(function (_a, dataId) {\n var storeObject = _a.storeObject, mergeTree = _a.mergeTree, fieldNodeSet = _a.fieldNodeSet;\n var entityRef = makeReference(dataId);\n if (mergeTree && mergeTree.map.size) {\n var applied = _this.applyMerges(mergeTree, entityRef, storeObject, context);\n if (isReference(applied)) {\n return;\n }\n storeObject = applied;\n }\n if (__DEV__ && !context.overwrite) {\n var fieldsWithSelectionSets_1 = Object.create(null);\n fieldNodeSet.forEach(function (field) {\n if (field.selectionSet) {\n fieldsWithSelectionSets_1[field.name.value] = true;\n }\n });\n var hasSelectionSet_1 = function (storeFieldName) {\n return fieldsWithSelectionSets_1[fieldNameFromStoreName(storeFieldName)] === true;\n };\n var hasMergeFunction_1 = function (storeFieldName) {\n var childTree = mergeTree && mergeTree.map.get(storeFieldName);\n return Boolean(childTree && childTree.info && childTree.info.merge);\n };\n Object.keys(storeObject).forEach(function (storeFieldName) {\n if (hasSelectionSet_1(storeFieldName) &&\n !hasMergeFunction_1(storeFieldName)) {\n warnAboutDataLoss(entityRef, storeObject, storeFieldName, context.store);\n }\n });\n }\n store.merge(dataId, storeObject);\n });\n store.retain(ref.__ref);\n return ref;\n };\n StoreWriter.prototype.processSelectionSet = function (_a) {\n var _this = this;\n var dataId = _a.dataId, result = _a.result, selectionSet = _a.selectionSet, context = _a.context, mergeTree = _a.mergeTree;\n var policies = this.cache.policies;\n var incoming = Object.create(null);\n var typename = (dataId && policies.rootTypenamesById[dataId]) ||\n getTypenameFromResult(result, selectionSet, context.fragmentMap) ||\n (dataId && context.store.get(dataId, \"__typename\"));\n if (\"string\" === typeof typename) {\n incoming.__typename = typename;\n }\n var readField = function () {\n var options = normalizeReadFieldOptions(arguments, incoming, context.variables);\n if (isReference(options.from)) {\n var info = context.incomingById.get(options.from.__ref);\n if (info) {\n var result_1 = policies.readField(__assign(__assign({}, options), { from: info.storeObject }), context);\n if (result_1 !== void 0) {\n return result_1;\n }\n }\n }\n return policies.readField(options, context);\n };\n var fieldNodeSet = new Set();\n this.flattenFields(selectionSet, result, context, typename).forEach(function (context, field) {\n var _a;\n var resultFieldKey = resultKeyNameFromField(field);\n var value = result[resultFieldKey];\n fieldNodeSet.add(field);\n if (value !== void 0) {\n var storeFieldName = policies.getStoreFieldName({\n typename: typename,\n fieldName: field.name.value,\n field: field,\n variables: context.variables,\n });\n var childTree = getChildMergeTree(mergeTree, storeFieldName);\n var incomingValue = _this.processFieldValue(value, field, field.selectionSet\n ? getContextFlavor(context, false, false)\n : context, childTree);\n var childTypename = void 0;\n if (field.selectionSet &&\n (isReference(incomingValue) ||\n storeValueIsStoreObject(incomingValue))) {\n childTypename = readField(\"__typename\", incomingValue);\n }\n var merge = policies.getMergeFunction(typename, field.name.value, childTypename);\n if (merge) {\n childTree.info = {\n field: field,\n typename: typename,\n merge: merge,\n };\n }\n else {\n maybeRecycleChildMergeTree(mergeTree, storeFieldName);\n }\n incoming = context.merge(incoming, (_a = {},\n _a[storeFieldName] = incomingValue,\n _a));\n }\n else if (__DEV__ &&\n !context.clientOnly &&\n !context.deferred &&\n !addTypenameToDocument.added(field) &&\n !policies.getReadFunction(typename, field.name.value)) {\n __DEV__ && invariant.error(\"Missing field '\".concat(resultKeyNameFromField(field), \"' while writing result \").concat(JSON.stringify(result, null, 2)).substring(0, 1000));\n }\n });\n try {\n var _b = policies.identify(result, {\n typename: typename,\n selectionSet: selectionSet,\n fragmentMap: context.fragmentMap,\n storeObject: incoming,\n readField: readField,\n }), id = _b[0], keyObject = _b[1];\n dataId = dataId || id;\n if (keyObject) {\n incoming = context.merge(incoming, keyObject);\n }\n }\n catch (e) {\n if (!dataId)\n throw e;\n }\n if (\"string\" === typeof dataId) {\n var dataRef = makeReference(dataId);\n var sets = context.written[dataId] || (context.written[dataId] = []);\n if (sets.indexOf(selectionSet) >= 0)\n return dataRef;\n sets.push(selectionSet);\n if (this.reader && this.reader.isFresh(result, dataRef, selectionSet, context)) {\n return dataRef;\n }\n var previous_1 = context.incomingById.get(dataId);\n if (previous_1) {\n previous_1.storeObject = context.merge(previous_1.storeObject, incoming);\n previous_1.mergeTree = mergeMergeTrees(previous_1.mergeTree, mergeTree);\n fieldNodeSet.forEach(function (field) { return previous_1.fieldNodeSet.add(field); });\n }\n else {\n context.incomingById.set(dataId, {\n storeObject: incoming,\n mergeTree: mergeTreeIsEmpty(mergeTree) ? void 0 : mergeTree,\n fieldNodeSet: fieldNodeSet,\n });\n }\n return dataRef;\n }\n return incoming;\n };\n StoreWriter.prototype.processFieldValue = function (value, field, context, mergeTree) {\n var _this = this;\n if (!field.selectionSet || value === null) {\n return __DEV__ ? cloneDeep(value) : value;\n }\n if (isArray(value)) {\n return value.map(function (item, i) {\n var value = _this.processFieldValue(item, field, context, getChildMergeTree(mergeTree, i));\n maybeRecycleChildMergeTree(mergeTree, i);\n return value;\n });\n }\n return this.processSelectionSet({\n result: value,\n selectionSet: field.selectionSet,\n context: context,\n mergeTree: mergeTree,\n });\n };\n StoreWriter.prototype.flattenFields = function (selectionSet, result, context, typename) {\n if (typename === void 0) { typename = getTypenameFromResult(result, selectionSet, context.fragmentMap); }\n var fieldMap = new Map();\n var policies = this.cache.policies;\n var limitingTrie = new Trie(false);\n (function flatten(selectionSet, inheritedContext) {\n var visitedNode = limitingTrie.lookup(selectionSet, inheritedContext.clientOnly, inheritedContext.deferred);\n if (visitedNode.visited)\n return;\n visitedNode.visited = true;\n selectionSet.selections.forEach(function (selection) {\n if (!shouldInclude(selection, context.variables))\n return;\n var clientOnly = inheritedContext.clientOnly, deferred = inheritedContext.deferred;\n if (!(clientOnly && deferred) &&\n isNonEmptyArray(selection.directives)) {\n selection.directives.forEach(function (dir) {\n var name = dir.name.value;\n if (name === \"client\")\n clientOnly = true;\n if (name === \"defer\") {\n var args = argumentsObjectFromField(dir, context.variables);\n if (!args || args.if !== false) {\n deferred = true;\n }\n }\n });\n }\n if (isField(selection)) {\n var existing = fieldMap.get(selection);\n if (existing) {\n clientOnly = clientOnly && existing.clientOnly;\n deferred = deferred && existing.deferred;\n }\n fieldMap.set(selection, getContextFlavor(context, clientOnly, deferred));\n }\n else {\n var fragment = getFragmentFromSelection(selection, context.fragmentMap);\n if (fragment &&\n policies.fragmentMatches(fragment, typename, result, context.variables)) {\n flatten(fragment.selectionSet, getContextFlavor(context, clientOnly, deferred));\n }\n }\n });\n })(selectionSet, context);\n return fieldMap;\n };\n StoreWriter.prototype.applyMerges = function (mergeTree, existing, incoming, context, getStorageArgs) {\n var _a;\n var _this = this;\n if (mergeTree.map.size && !isReference(incoming)) {\n var e_1 = (!isArray(incoming) &&\n (isReference(existing) || storeValueIsStoreObject(existing))) ? existing : void 0;\n var i_1 = incoming;\n if (e_1 && !getStorageArgs) {\n getStorageArgs = [isReference(e_1) ? e_1.__ref : e_1];\n }\n var changedFields_1;\n var getValue_1 = function (from, name) {\n return isArray(from)\n ? (typeof name === \"number\" ? from[name] : void 0)\n : context.store.getFieldValue(from, String(name));\n };\n mergeTree.map.forEach(function (childTree, storeFieldName) {\n var eVal = getValue_1(e_1, storeFieldName);\n var iVal = getValue_1(i_1, storeFieldName);\n if (void 0 === iVal)\n return;\n if (getStorageArgs) {\n getStorageArgs.push(storeFieldName);\n }\n var aVal = _this.applyMerges(childTree, eVal, iVal, context, getStorageArgs);\n if (aVal !== iVal) {\n changedFields_1 = changedFields_1 || new Map;\n changedFields_1.set(storeFieldName, aVal);\n }\n if (getStorageArgs) {\n invariant(getStorageArgs.pop() === storeFieldName);\n }\n });\n if (changedFields_1) {\n incoming = (isArray(i_1) ? i_1.slice(0) : __assign({}, i_1));\n changedFields_1.forEach(function (value, name) {\n incoming[name] = value;\n });\n }\n }\n if (mergeTree.info) {\n return this.cache.policies.runMergeFunction(existing, incoming, mergeTree.info, context, getStorageArgs && (_a = context.store).getStorage.apply(_a, getStorageArgs));\n }\n return incoming;\n };\n return StoreWriter;\n}());\nexport { StoreWriter };\nvar emptyMergeTreePool = [];\nfunction getChildMergeTree(_a, name) {\n var map = _a.map;\n if (!map.has(name)) {\n map.set(name, emptyMergeTreePool.pop() || { map: new Map });\n }\n return map.get(name);\n}\nfunction mergeMergeTrees(left, right) {\n if (left === right || !right || mergeTreeIsEmpty(right))\n return left;\n if (!left || mergeTreeIsEmpty(left))\n return right;\n var info = left.info && right.info ? __assign(__assign({}, left.info), right.info) : left.info || right.info;\n var needToMergeMaps = left.map.size && right.map.size;\n var map = needToMergeMaps ? new Map :\n left.map.size ? left.map : right.map;\n var merged = { info: info, map: map };\n if (needToMergeMaps) {\n var remainingRightKeys_1 = new Set(right.map.keys());\n left.map.forEach(function (leftTree, key) {\n merged.map.set(key, mergeMergeTrees(leftTree, right.map.get(key)));\n remainingRightKeys_1.delete(key);\n });\n remainingRightKeys_1.forEach(function (key) {\n merged.map.set(key, mergeMergeTrees(right.map.get(key), left.map.get(key)));\n });\n }\n return merged;\n}\nfunction mergeTreeIsEmpty(tree) {\n return !tree || !(tree.info || tree.map.size);\n}\nfunction maybeRecycleChildMergeTree(_a, name) {\n var map = _a.map;\n var childTree = map.get(name);\n if (childTree && mergeTreeIsEmpty(childTree)) {\n emptyMergeTreePool.push(childTree);\n map.delete(name);\n }\n}\nvar warnings = new Set();\nfunction warnAboutDataLoss(existingRef, incomingObj, storeFieldName, store) {\n var getChild = function (objOrRef) {\n var child = store.getFieldValue(objOrRef, storeFieldName);\n return typeof child === \"object\" && child;\n };\n var existing = getChild(existingRef);\n if (!existing)\n return;\n var incoming = getChild(incomingObj);\n if (!incoming)\n return;\n if (isReference(existing))\n return;\n if (equal(existing, incoming))\n return;\n if (Object.keys(existing).every(function (key) { return store.getFieldValue(incoming, key) !== void 0; })) {\n return;\n }\n var parentType = store.getFieldValue(existingRef, \"__typename\") ||\n store.getFieldValue(incomingObj, \"__typename\");\n var fieldName = fieldNameFromStoreName(storeFieldName);\n var typeDotName = \"\".concat(parentType, \".\").concat(fieldName);\n if (warnings.has(typeDotName))\n return;\n warnings.add(typeDotName);\n var childTypenames = [];\n if (!isArray(existing) &&\n !isArray(incoming)) {\n [existing, incoming].forEach(function (child) {\n var typename = store.getFieldValue(child, \"__typename\");\n if (typeof typename === \"string\" &&\n !childTypenames.includes(typename)) {\n childTypenames.push(typename);\n }\n });\n }\n __DEV__ && invariant.warn(\"Cache data may be lost when replacing the \".concat(fieldName, \" field of a \").concat(parentType, \" object.\\n\\nTo address this problem (which is not a bug in Apollo Client), \").concat(childTypenames.length\n ? \"either ensure all objects of type \" +\n childTypenames.join(\" and \") + \" have an ID or a custom merge function, or \"\n : \"\", \"define a custom merge function for the \").concat(typeDotName, \" field, so InMemoryCache can safely merge these objects:\\n\\n existing: \").concat(JSON.stringify(existing).slice(0, 1000), \"\\n incoming: \").concat(JSON.stringify(incoming).slice(0, 1000), \"\\n\\nFor more information about these options, please refer to the documentation:\\n\\n * Ensuring entity objects have IDs: https://go.apollo.dev/c/generating-unique-identifiers\\n * Defining custom merge functions: https://go.apollo.dev/c/merging-non-normalized-objects\\n\"));\n}\n//# sourceMappingURL=writeToStore.js.map","import { __assign, __extends } from \"tslib\";\nimport { invariant } from \"../../utilities/globals/index.js\";\nimport \"./fixPolyfills.js\";\nimport { wrap } from 'optimism';\nimport { equal } from '@wry/equality';\nimport { ApolloCache } from \"../core/cache.js\";\nimport { MissingFieldError } from \"../core/types/common.js\";\nimport { addTypenameToDocument, isReference, } from \"../../utilities/index.js\";\nimport { StoreReader } from \"./readFromStore.js\";\nimport { StoreWriter } from \"./writeToStore.js\";\nimport { EntityStore, supportsResultCaching } from \"./entityStore.js\";\nimport { makeVar, forgetCache, recallCache } from \"./reactiveVars.js\";\nimport { Policies } from \"./policies.js\";\nimport { hasOwn, normalizeConfig, shouldCanonizeResults } from \"./helpers.js\";\nimport { canonicalStringify } from \"./object-canon.js\";\nvar InMemoryCache = (function (_super) {\n __extends(InMemoryCache, _super);\n function InMemoryCache(config) {\n if (config === void 0) { config = {}; }\n var _this = _super.call(this) || this;\n _this.watches = new Set();\n _this.typenameDocumentCache = new Map();\n _this.makeVar = makeVar;\n _this.txCount = 0;\n _this.config = normalizeConfig(config);\n _this.addTypename = !!_this.config.addTypename;\n _this.policies = new Policies({\n cache: _this,\n dataIdFromObject: _this.config.dataIdFromObject,\n possibleTypes: _this.config.possibleTypes,\n typePolicies: _this.config.typePolicies,\n });\n _this.init();\n return _this;\n }\n InMemoryCache.prototype.init = function () {\n var rootStore = this.data = new EntityStore.Root({\n policies: this.policies,\n resultCaching: this.config.resultCaching,\n });\n this.optimisticData = rootStore.stump;\n this.resetResultCache();\n };\n InMemoryCache.prototype.resetResultCache = function (resetResultIdentities) {\n var _this = this;\n var previousReader = this.storeReader;\n this.storeWriter = new StoreWriter(this, this.storeReader = new StoreReader({\n cache: this,\n addTypename: this.addTypename,\n resultCacheMaxSize: this.config.resultCacheMaxSize,\n canonizeResults: shouldCanonizeResults(this.config),\n canon: resetResultIdentities\n ? void 0\n : previousReader && previousReader.canon,\n }));\n this.maybeBroadcastWatch = wrap(function (c, options) {\n return _this.broadcastWatch(c, options);\n }, {\n max: this.config.resultCacheMaxSize,\n makeCacheKey: function (c) {\n var store = c.optimistic ? _this.optimisticData : _this.data;\n if (supportsResultCaching(store)) {\n var optimistic = c.optimistic, rootId = c.rootId, variables = c.variables;\n return store.makeCacheKey(c.query, c.callback, canonicalStringify({ optimistic: optimistic, rootId: rootId, variables: variables }));\n }\n }\n });\n new Set([\n this.data.group,\n this.optimisticData.group,\n ]).forEach(function (group) { return group.resetCaching(); });\n };\n InMemoryCache.prototype.restore = function (data) {\n this.init();\n if (data)\n this.data.replace(data);\n return this;\n };\n InMemoryCache.prototype.extract = function (optimistic) {\n if (optimistic === void 0) { optimistic = false; }\n return (optimistic ? this.optimisticData : this.data).extract();\n };\n InMemoryCache.prototype.read = function (options) {\n var _a = options.returnPartialData, returnPartialData = _a === void 0 ? false : _a;\n try {\n return this.storeReader.diffQueryAgainstStore(__assign(__assign({}, options), { store: options.optimistic ? this.optimisticData : this.data, config: this.config, returnPartialData: returnPartialData })).result || null;\n }\n catch (e) {\n if (e instanceof MissingFieldError) {\n return null;\n }\n throw e;\n }\n };\n InMemoryCache.prototype.write = function (options) {\n try {\n ++this.txCount;\n return this.storeWriter.writeToStore(this.data, options);\n }\n finally {\n if (!--this.txCount && options.broadcast !== false) {\n this.broadcastWatches();\n }\n }\n };\n InMemoryCache.prototype.modify = function (options) {\n if (hasOwn.call(options, \"id\") && !options.id) {\n return false;\n }\n var store = options.optimistic\n ? this.optimisticData\n : this.data;\n try {\n ++this.txCount;\n return store.modify(options.id || \"ROOT_QUERY\", options.fields);\n }\n finally {\n if (!--this.txCount && options.broadcast !== false) {\n this.broadcastWatches();\n }\n }\n };\n InMemoryCache.prototype.diff = function (options) {\n return this.storeReader.diffQueryAgainstStore(__assign(__assign({}, options), { store: options.optimistic ? this.optimisticData : this.data, rootId: options.id || \"ROOT_QUERY\", config: this.config }));\n };\n InMemoryCache.prototype.watch = function (watch) {\n var _this = this;\n if (!this.watches.size) {\n recallCache(this);\n }\n this.watches.add(watch);\n if (watch.immediate) {\n this.maybeBroadcastWatch(watch);\n }\n return function () {\n if (_this.watches.delete(watch) && !_this.watches.size) {\n forgetCache(_this);\n }\n _this.maybeBroadcastWatch.forget(watch);\n };\n };\n InMemoryCache.prototype.gc = function (options) {\n canonicalStringify.reset();\n var ids = this.optimisticData.gc();\n if (options && !this.txCount) {\n if (options.resetResultCache) {\n this.resetResultCache(options.resetResultIdentities);\n }\n else if (options.resetResultIdentities) {\n this.storeReader.resetCanon();\n }\n }\n return ids;\n };\n InMemoryCache.prototype.retain = function (rootId, optimistic) {\n return (optimistic ? this.optimisticData : this.data).retain(rootId);\n };\n InMemoryCache.prototype.release = function (rootId, optimistic) {\n return (optimistic ? this.optimisticData : this.data).release(rootId);\n };\n InMemoryCache.prototype.identify = function (object) {\n if (isReference(object))\n return object.__ref;\n try {\n return this.policies.identify(object)[0];\n }\n catch (e) {\n __DEV__ && invariant.warn(e);\n }\n };\n InMemoryCache.prototype.evict = function (options) {\n if (!options.id) {\n if (hasOwn.call(options, \"id\")) {\n return false;\n }\n options = __assign(__assign({}, options), { id: \"ROOT_QUERY\" });\n }\n try {\n ++this.txCount;\n return this.optimisticData.evict(options, this.data);\n }\n finally {\n if (!--this.txCount && options.broadcast !== false) {\n this.broadcastWatches();\n }\n }\n };\n InMemoryCache.prototype.reset = function (options) {\n var _this = this;\n this.init();\n canonicalStringify.reset();\n if (options && options.discardWatches) {\n this.watches.forEach(function (watch) { return _this.maybeBroadcastWatch.forget(watch); });\n this.watches.clear();\n forgetCache(this);\n }\n else {\n this.broadcastWatches();\n }\n return Promise.resolve();\n };\n InMemoryCache.prototype.removeOptimistic = function (idToRemove) {\n var newOptimisticData = this.optimisticData.removeLayer(idToRemove);\n if (newOptimisticData !== this.optimisticData) {\n this.optimisticData = newOptimisticData;\n this.broadcastWatches();\n }\n };\n InMemoryCache.prototype.batch = function (options) {\n var _this = this;\n var update = options.update, _a = options.optimistic, optimistic = _a === void 0 ? true : _a, removeOptimistic = options.removeOptimistic, onWatchUpdated = options.onWatchUpdated;\n var updateResult;\n var perform = function (layer) {\n var _a = _this, data = _a.data, optimisticData = _a.optimisticData;\n ++_this.txCount;\n if (layer) {\n _this.data = _this.optimisticData = layer;\n }\n try {\n return updateResult = update(_this);\n }\n finally {\n --_this.txCount;\n _this.data = data;\n _this.optimisticData = optimisticData;\n }\n };\n var alreadyDirty = new Set();\n if (onWatchUpdated && !this.txCount) {\n this.broadcastWatches(__assign(__assign({}, options), { onWatchUpdated: function (watch) {\n alreadyDirty.add(watch);\n return false;\n } }));\n }\n if (typeof optimistic === 'string') {\n this.optimisticData = this.optimisticData.addLayer(optimistic, perform);\n }\n else if (optimistic === false) {\n perform(this.data);\n }\n else {\n perform();\n }\n if (typeof removeOptimistic === \"string\") {\n this.optimisticData = this.optimisticData.removeLayer(removeOptimistic);\n }\n if (onWatchUpdated && alreadyDirty.size) {\n this.broadcastWatches(__assign(__assign({}, options), { onWatchUpdated: function (watch, diff) {\n var result = onWatchUpdated.call(this, watch, diff);\n if (result !== false) {\n alreadyDirty.delete(watch);\n }\n return result;\n } }));\n if (alreadyDirty.size) {\n alreadyDirty.forEach(function (watch) { return _this.maybeBroadcastWatch.dirty(watch); });\n }\n }\n else {\n this.broadcastWatches(options);\n }\n return updateResult;\n };\n InMemoryCache.prototype.performTransaction = function (update, optimisticId) {\n return this.batch({\n update: update,\n optimistic: optimisticId || (optimisticId !== null),\n });\n };\n InMemoryCache.prototype.transformDocument = function (document) {\n if (this.addTypename) {\n var result = this.typenameDocumentCache.get(document);\n if (!result) {\n result = addTypenameToDocument(document);\n this.typenameDocumentCache.set(document, result);\n this.typenameDocumentCache.set(result, result);\n }\n return result;\n }\n return document;\n };\n InMemoryCache.prototype.broadcastWatches = function (options) {\n var _this = this;\n if (!this.txCount) {\n this.watches.forEach(function (c) { return _this.maybeBroadcastWatch(c, options); });\n }\n };\n InMemoryCache.prototype.broadcastWatch = function (c, options) {\n var lastDiff = c.lastDiff;\n var diff = this.diff(c);\n if (options) {\n if (c.optimistic &&\n typeof options.optimistic === \"string\") {\n diff.fromOptimisticTransaction = true;\n }\n if (options.onWatchUpdated &&\n options.onWatchUpdated.call(this, c, diff, lastDiff) === false) {\n return;\n }\n }\n if (!lastDiff || !equal(lastDiff.result, diff.result)) {\n c.callback(c.lastDiff = diff, lastDiff);\n }\n };\n return InMemoryCache;\n}(ApolloCache));\nexport { InMemoryCache };\n//# sourceMappingURL=inMemoryCache.js.map","import { __assign } from \"tslib\";\nimport \"../../utilities/globals/index.js\";\nimport { Trie } from \"@wry/trie\";\nimport { canUseWeakMap, canUseWeakSet, isNonNullObject as isObjectOrArray, } from \"../../utilities/index.js\";\nimport { isArray } from \"./helpers.js\";\nfunction shallowCopy(value) {\n if (isObjectOrArray(value)) {\n return isArray(value)\n ? value.slice(0)\n : __assign({ __proto__: Object.getPrototypeOf(value) }, value);\n }\n return value;\n}\nvar ObjectCanon = (function () {\n function ObjectCanon() {\n this.known = new (canUseWeakSet ? WeakSet : Set)();\n this.pool = new Trie(canUseWeakMap);\n this.passes = new WeakMap();\n this.keysByJSON = new Map();\n this.empty = this.admit({});\n }\n ObjectCanon.prototype.isKnown = function (value) {\n return isObjectOrArray(value) && this.known.has(value);\n };\n ObjectCanon.prototype.pass = function (value) {\n if (isObjectOrArray(value)) {\n var copy = shallowCopy(value);\n this.passes.set(copy, value);\n return copy;\n }\n return value;\n };\n ObjectCanon.prototype.admit = function (value) {\n var _this = this;\n if (isObjectOrArray(value)) {\n var original = this.passes.get(value);\n if (original)\n return original;\n var proto = Object.getPrototypeOf(value);\n switch (proto) {\n case Array.prototype: {\n if (this.known.has(value))\n return value;\n var array = value.map(this.admit, this);\n var node = this.pool.lookupArray(array);\n if (!node.array) {\n this.known.add(node.array = array);\n if (__DEV__) {\n Object.freeze(array);\n }\n }\n return node.array;\n }\n case null:\n case Object.prototype: {\n if (this.known.has(value))\n return value;\n var proto_1 = Object.getPrototypeOf(value);\n var array_1 = [proto_1];\n var keys = this.sortedKeys(value);\n array_1.push(keys.json);\n var firstValueIndex_1 = array_1.length;\n keys.sorted.forEach(function (key) {\n array_1.push(_this.admit(value[key]));\n });\n var node = this.pool.lookupArray(array_1);\n if (!node.object) {\n var obj_1 = node.object = Object.create(proto_1);\n this.known.add(obj_1);\n keys.sorted.forEach(function (key, i) {\n obj_1[key] = array_1[firstValueIndex_1 + i];\n });\n if (__DEV__) {\n Object.freeze(obj_1);\n }\n }\n return node.object;\n }\n }\n }\n return value;\n };\n ObjectCanon.prototype.sortedKeys = function (obj) {\n var keys = Object.keys(obj);\n var node = this.pool.lookupArray(keys);\n if (!node.keys) {\n keys.sort();\n var json = JSON.stringify(keys);\n if (!(node.keys = this.keysByJSON.get(json))) {\n this.keysByJSON.set(json, node.keys = { sorted: keys, json: json });\n }\n }\n return node.keys;\n };\n return ObjectCanon;\n}());\nexport { ObjectCanon };\nexport var canonicalStringify = Object.assign(function (value) {\n if (isObjectOrArray(value)) {\n if (stringifyCanon === void 0) {\n resetCanonicalStringify();\n }\n var canonical = stringifyCanon.admit(value);\n var json = stringifyCache.get(canonical);\n if (json === void 0) {\n stringifyCache.set(canonical, json = JSON.stringify(canonical));\n }\n return json;\n }\n return JSON.stringify(value);\n}, {\n reset: resetCanonicalStringify,\n});\nvar stringifyCanon;\nvar stringifyCache;\nfunction resetCanonicalStringify() {\n stringifyCanon = new ObjectCanon;\n stringifyCache = new (canUseWeakMap ? WeakMap : Map)();\n}\n//# sourceMappingURL=object-canon.js.map","import { dep } from \"optimism\";\nimport { Slot } from \"@wry/context\";\nexport var cacheSlot = new Slot();\nvar cacheInfoMap = new WeakMap();\nfunction getCacheInfo(cache) {\n var info = cacheInfoMap.get(cache);\n if (!info) {\n cacheInfoMap.set(cache, info = {\n vars: new Set,\n dep: dep(),\n });\n }\n return info;\n}\nexport function forgetCache(cache) {\n getCacheInfo(cache).vars.forEach(function (rv) { return rv.forgetCache(cache); });\n}\nexport function recallCache(cache) {\n getCacheInfo(cache).vars.forEach(function (rv) { return rv.attachCache(cache); });\n}\nexport function makeVar(value) {\n var caches = new Set();\n var listeners = new Set();\n var rv = function (newValue) {\n if (arguments.length > 0) {\n if (value !== newValue) {\n value = newValue;\n caches.forEach(function (cache) {\n getCacheInfo(cache).dep.dirty(rv);\n broadcast(cache);\n });\n var oldListeners = Array.from(listeners);\n listeners.clear();\n oldListeners.forEach(function (listener) { return listener(value); });\n }\n }\n else {\n var cache = cacheSlot.getValue();\n if (cache) {\n attach(cache);\n getCacheInfo(cache).dep(rv);\n }\n }\n return value;\n };\n rv.onNextChange = function (listener) {\n listeners.add(listener);\n return function () {\n listeners.delete(listener);\n };\n };\n var attach = rv.attachCache = function (cache) {\n caches.add(cache);\n getCacheInfo(cache).vars.add(rv);\n return rv;\n };\n rv.forgetCache = function (cache) { return caches.delete(cache); };\n return rv;\n}\nfunction broadcast(cache) {\n if (cache.broadcastWatches) {\n cache.broadcastWatches();\n }\n}\n//# sourceMappingURL=reactiveVars.js.map","import { ApolloLink } from \"./ApolloLink.js\";\nexport var execute = ApolloLink.execute;\n//# sourceMappingURL=execute.js.map","import { __extends } from \"tslib\";\nimport { ApolloLink } from \"../core/index.js\";\nimport { createHttpLink } from \"./createHttpLink.js\";\nvar HttpLink = (function (_super) {\n __extends(HttpLink, _super);\n function HttpLink(options) {\n if (options === void 0) { options = {}; }\n var _this = _super.call(this, createHttpLink(options).request) || this;\n _this.options = options;\n return _this;\n }\n return HttpLink;\n}(ApolloLink));\nexport { HttpLink };\n//# sourceMappingURL=HttpLink.js.map","import { Observable } from \"./Observable.js\";\nexport function asyncMap(observable, mapFn, catchFn) {\n return new Observable(function (observer) {\n var next = observer.next, error = observer.error, complete = observer.complete;\n var activeCallbackCount = 0;\n var completed = false;\n var promiseQueue = {\n then: function (callback) {\n return new Promise(function (resolve) { return resolve(callback()); });\n },\n };\n function makeCallback(examiner, delegate) {\n if (examiner) {\n return function (arg) {\n ++activeCallbackCount;\n var both = function () { return examiner(arg); };\n promiseQueue = promiseQueue.then(both, both).then(function (result) {\n --activeCallbackCount;\n next && next.call(observer, result);\n if (completed) {\n handler.complete();\n }\n }, function (error) {\n --activeCallbackCount;\n throw error;\n }).catch(function (caught) {\n error && error.call(observer, caught);\n });\n };\n }\n else {\n return function (arg) { return delegate && delegate.call(observer, arg); };\n }\n }\n var handler = {\n next: makeCallback(mapFn, next),\n error: makeCallback(catchFn, error),\n complete: function () {\n completed = true;\n if (!activeCallbackCount) {\n complete && complete.call(observer);\n }\n },\n };\n var sub = observable.subscribe(handler);\n return function () { return sub.unsubscribe(); };\n });\n}\n//# sourceMappingURL=asyncMap.js.map","export function graphQLResultHasError(result) {\n return (result.errors && result.errors.length > 0) || false;\n}\n//# sourceMappingURL=errorHandling.js.map","export function iterateObserversSafely(observers, method, argument) {\n var observersWithMethod = [];\n observers.forEach(function (obs) { return obs[method] && observersWithMethod.push(obs); });\n observersWithMethod.forEach(function (obs) { return obs[method](argument); });\n}\n//# sourceMappingURL=iteration.js.map","import { Observable } from \"./Observable.js\";\nimport { canUseSymbol } from \"../common/canUse.js\";\nexport function fixObservableSubclass(subclass) {\n function set(key) {\n Object.defineProperty(subclass, key, { value: Observable });\n }\n if (canUseSymbol && Symbol.species) {\n set(Symbol.species);\n }\n set(\"@@species\");\n return subclass;\n}\n//# sourceMappingURL=subclassing.js.map","import { __extends } from \"tslib\";\nimport { Observable } from \"./Observable.js\";\nimport { iterateObserversSafely } from \"./iteration.js\";\nimport { fixObservableSubclass } from \"./subclassing.js\";\nfunction isPromiseLike(value) {\n return value && typeof value.then === \"function\";\n}\nvar Concast = (function (_super) {\n __extends(Concast, _super);\n function Concast(sources) {\n var _this = _super.call(this, function (observer) {\n _this.addObserver(observer);\n return function () { return _this.removeObserver(observer); };\n }) || this;\n _this.observers = new Set();\n _this.addCount = 0;\n _this.promise = new Promise(function (resolve, reject) {\n _this.resolve = resolve;\n _this.reject = reject;\n });\n _this.handlers = {\n next: function (result) {\n if (_this.sub !== null) {\n _this.latest = [\"next\", result];\n iterateObserversSafely(_this.observers, \"next\", result);\n }\n },\n error: function (error) {\n var sub = _this.sub;\n if (sub !== null) {\n if (sub)\n setTimeout(function () { return sub.unsubscribe(); });\n _this.sub = null;\n _this.latest = [\"error\", error];\n _this.reject(error);\n iterateObserversSafely(_this.observers, \"error\", error);\n }\n },\n complete: function () {\n var sub = _this.sub;\n if (sub !== null) {\n var value = _this.sources.shift();\n if (!value) {\n if (sub)\n setTimeout(function () { return sub.unsubscribe(); });\n _this.sub = null;\n if (_this.latest &&\n _this.latest[0] === \"next\") {\n _this.resolve(_this.latest[1]);\n }\n else {\n _this.resolve();\n }\n iterateObserversSafely(_this.observers, \"complete\");\n }\n else if (isPromiseLike(value)) {\n value.then(function (obs) { return _this.sub = obs.subscribe(_this.handlers); });\n }\n else {\n _this.sub = value.subscribe(_this.handlers);\n }\n }\n },\n };\n _this.cancel = function (reason) {\n _this.reject(reason);\n _this.sources = [];\n _this.handlers.complete();\n };\n _this.promise.catch(function (_) { });\n if (typeof sources === \"function\") {\n sources = [new Observable(sources)];\n }\n if (isPromiseLike(sources)) {\n sources.then(function (iterable) { return _this.start(iterable); }, _this.handlers.error);\n }\n else {\n _this.start(sources);\n }\n return _this;\n }\n Concast.prototype.start = function (sources) {\n if (this.sub !== void 0)\n return;\n this.sources = Array.from(sources);\n this.handlers.complete();\n };\n Concast.prototype.deliverLastMessage = function (observer) {\n if (this.latest) {\n var nextOrError = this.latest[0];\n var method = observer[nextOrError];\n if (method) {\n method.call(observer, this.latest[1]);\n }\n if (this.sub === null &&\n nextOrError === \"next\" &&\n observer.complete) {\n observer.complete();\n }\n }\n };\n Concast.prototype.addObserver = function (observer) {\n if (!this.observers.has(observer)) {\n this.deliverLastMessage(observer);\n this.observers.add(observer);\n ++this.addCount;\n }\n };\n Concast.prototype.removeObserver = function (observer, quietly) {\n if (this.observers.delete(observer) &&\n --this.addCount < 1 &&\n !quietly) {\n this.handlers.complete();\n }\n };\n Concast.prototype.cleanup = function (callback) {\n var _this = this;\n var called = false;\n var once = function () {\n if (!called) {\n called = true;\n _this.observers.delete(observer);\n callback();\n }\n };\n var observer = {\n next: once,\n error: once,\n complete: once,\n };\n var count = this.addCount;\n this.addObserver(observer);\n this.addCount = count;\n };\n return Concast;\n}(Observable));\nexport { Concast };\nfixObservableSubclass(Concast);\n//# sourceMappingURL=Concast.js.map","import { __assign, __extends } from \"tslib\";\nimport { invariant } from \"../utilities/globals/index.js\";\nimport { equal } from '@wry/equality';\nimport { NetworkStatus, isNetworkRequestInFlight } from \"./networkStatus.js\";\nimport { cloneDeep, compact, getOperationDefinition, Observable, iterateObserversSafely, isNonEmptyArray, fixObservableSubclass, getQueryDefinition, } from \"../utilities/index.js\";\nvar assign = Object.assign, hasOwnProperty = Object.hasOwnProperty;\nvar ObservableQuery = (function (_super) {\n __extends(ObservableQuery, _super);\n function ObservableQuery(_a) {\n var queryManager = _a.queryManager, queryInfo = _a.queryInfo, options = _a.options;\n var _this = _super.call(this, function (observer) {\n try {\n var subObserver = observer._subscription._observer;\n if (subObserver && !subObserver.error) {\n subObserver.error = defaultSubscriptionObserverErrorCallback;\n }\n }\n catch (_a) { }\n var first = !_this.observers.size;\n _this.observers.add(observer);\n var last = _this.last;\n if (last && last.error) {\n observer.error && observer.error(last.error);\n }\n else if (last && last.result) {\n observer.next && observer.next(last.result);\n }\n if (first) {\n _this.reobserve().catch(function () { });\n }\n return function () {\n if (_this.observers.delete(observer) && !_this.observers.size) {\n _this.tearDownQuery();\n }\n };\n }) || this;\n _this.observers = new Set();\n _this.subscriptions = new Set();\n _this.queryInfo = queryInfo;\n _this.queryManager = queryManager;\n _this.isTornDown = false;\n var _b = queryManager.defaultOptions.watchQuery, _c = _b === void 0 ? {} : _b, _d = _c.fetchPolicy, defaultFetchPolicy = _d === void 0 ? \"cache-first\" : _d;\n var _e = options.fetchPolicy, fetchPolicy = _e === void 0 ? defaultFetchPolicy : _e, _f = options.initialFetchPolicy, initialFetchPolicy = _f === void 0 ? (fetchPolicy === \"standby\" ? defaultFetchPolicy : fetchPolicy) : _f;\n _this.options = __assign(__assign({}, options), { initialFetchPolicy: initialFetchPolicy, fetchPolicy: fetchPolicy });\n _this.queryId = queryInfo.queryId || queryManager.generateQueryId();\n var opDef = getOperationDefinition(_this.query);\n _this.queryName = opDef && opDef.name && opDef.name.value;\n return _this;\n }\n Object.defineProperty(ObservableQuery.prototype, \"query\", {\n get: function () {\n return this.queryManager.transform(this.options.query).document;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(ObservableQuery.prototype, \"variables\", {\n get: function () {\n return this.options.variables;\n },\n enumerable: false,\n configurable: true\n });\n ObservableQuery.prototype.result = function () {\n var _this = this;\n return new Promise(function (resolve, reject) {\n var observer = {\n next: function (result) {\n resolve(result);\n _this.observers.delete(observer);\n if (!_this.observers.size) {\n _this.queryManager.removeQuery(_this.queryId);\n }\n setTimeout(function () {\n subscription.unsubscribe();\n }, 0);\n },\n error: reject,\n };\n var subscription = _this.subscribe(observer);\n });\n };\n ObservableQuery.prototype.getCurrentResult = function (saveAsLastResult) {\n if (saveAsLastResult === void 0) { saveAsLastResult = true; }\n var lastResult = this.getLastResult(true);\n var networkStatus = this.queryInfo.networkStatus ||\n (lastResult && lastResult.networkStatus) ||\n NetworkStatus.ready;\n var result = __assign(__assign({}, lastResult), { loading: isNetworkRequestInFlight(networkStatus), networkStatus: networkStatus });\n var _a = this.options.fetchPolicy, fetchPolicy = _a === void 0 ? \"cache-first\" : _a;\n if (fetchPolicy === 'network-only' ||\n fetchPolicy === 'no-cache' ||\n fetchPolicy === 'standby' ||\n this.queryManager.transform(this.options.query).hasForcedResolvers) {\n }\n else {\n var diff = this.queryInfo.getDiff();\n if (diff.complete || this.options.returnPartialData) {\n result.data = diff.result;\n }\n if (equal(result.data, {})) {\n result.data = void 0;\n }\n if (diff.complete) {\n delete result.partial;\n if (diff.complete &&\n result.networkStatus === NetworkStatus.loading &&\n (fetchPolicy === 'cache-first' ||\n fetchPolicy === 'cache-only')) {\n result.networkStatus = NetworkStatus.ready;\n result.loading = false;\n }\n }\n else {\n result.partial = true;\n }\n if (__DEV__ &&\n !diff.complete &&\n !this.options.partialRefetch &&\n !result.loading &&\n !result.data &&\n !result.error) {\n logMissingFieldErrors(diff.missing);\n }\n }\n if (saveAsLastResult) {\n this.updateLastResult(result);\n }\n return result;\n };\n ObservableQuery.prototype.isDifferentFromLastResult = function (newResult) {\n return !this.last || !equal(this.last.result, newResult);\n };\n ObservableQuery.prototype.getLast = function (key, variablesMustMatch) {\n var last = this.last;\n if (last &&\n last[key] &&\n (!variablesMustMatch || equal(last.variables, this.variables))) {\n return last[key];\n }\n };\n ObservableQuery.prototype.getLastResult = function (variablesMustMatch) {\n return this.getLast(\"result\", variablesMustMatch);\n };\n ObservableQuery.prototype.getLastError = function (variablesMustMatch) {\n return this.getLast(\"error\", variablesMustMatch);\n };\n ObservableQuery.prototype.resetLastResults = function () {\n delete this.last;\n this.isTornDown = false;\n };\n ObservableQuery.prototype.resetQueryStoreErrors = function () {\n this.queryManager.resetErrors(this.queryId);\n };\n ObservableQuery.prototype.refetch = function (variables) {\n var _a;\n var reobserveOptions = {\n pollInterval: 0,\n };\n var fetchPolicy = this.options.fetchPolicy;\n if (fetchPolicy === 'cache-and-network') {\n reobserveOptions.fetchPolicy = fetchPolicy;\n }\n else if (fetchPolicy === 'no-cache') {\n reobserveOptions.fetchPolicy = 'no-cache';\n }\n else {\n reobserveOptions.fetchPolicy = 'network-only';\n }\n if (__DEV__ && variables && hasOwnProperty.call(variables, \"variables\")) {\n var queryDef = getQueryDefinition(this.query);\n var vars = queryDef.variableDefinitions;\n if (!vars || !vars.some(function (v) { return v.variable.name.value === \"variables\"; })) {\n __DEV__ && invariant.warn(\"Called refetch(\".concat(JSON.stringify(variables), \") for query \").concat(((_a = queryDef.name) === null || _a === void 0 ? void 0 : _a.value) || JSON.stringify(queryDef), \", which does not declare a $variables variable.\\nDid you mean to call refetch(variables) instead of refetch({ variables })?\"));\n }\n }\n if (variables && !equal(this.options.variables, variables)) {\n reobserveOptions.variables = this.options.variables = __assign(__assign({}, this.options.variables), variables);\n }\n this.queryInfo.resetLastWrite();\n return this.reobserve(reobserveOptions, NetworkStatus.refetch);\n };\n ObservableQuery.prototype.fetchMore = function (fetchMoreOptions) {\n var _this = this;\n var combinedOptions = __assign(__assign({}, (fetchMoreOptions.query ? fetchMoreOptions : __assign(__assign(__assign(__assign({}, this.options), { query: this.query }), fetchMoreOptions), { variables: __assign(__assign({}, this.options.variables), fetchMoreOptions.variables) }))), { fetchPolicy: \"no-cache\" });\n var qid = this.queryManager.generateQueryId();\n var queryInfo = this.queryInfo;\n var originalNetworkStatus = queryInfo.networkStatus;\n queryInfo.networkStatus = NetworkStatus.fetchMore;\n if (combinedOptions.notifyOnNetworkStatusChange) {\n this.observe();\n }\n var updatedQuerySet = new Set();\n return this.queryManager.fetchQuery(qid, combinedOptions, NetworkStatus.fetchMore).then(function (fetchMoreResult) {\n _this.queryManager.removeQuery(qid);\n if (queryInfo.networkStatus === NetworkStatus.fetchMore) {\n queryInfo.networkStatus = originalNetworkStatus;\n }\n _this.queryManager.cache.batch({\n update: function (cache) {\n var updateQuery = fetchMoreOptions.updateQuery;\n if (updateQuery) {\n cache.updateQuery({\n query: _this.query,\n variables: _this.variables,\n returnPartialData: true,\n optimistic: false,\n }, function (previous) { return updateQuery(previous, {\n fetchMoreResult: fetchMoreResult.data,\n variables: combinedOptions.variables,\n }); });\n }\n else {\n cache.writeQuery({\n query: combinedOptions.query,\n variables: combinedOptions.variables,\n data: fetchMoreResult.data,\n });\n }\n },\n onWatchUpdated: function (watch) {\n updatedQuerySet.add(watch.query);\n },\n });\n return fetchMoreResult;\n }).finally(function () {\n if (!updatedQuerySet.has(_this.query)) {\n reobserveCacheFirst(_this);\n }\n });\n };\n ObservableQuery.prototype.subscribeToMore = function (options) {\n var _this = this;\n var subscription = this.queryManager\n .startGraphQLSubscription({\n query: options.document,\n variables: options.variables,\n context: options.context,\n })\n .subscribe({\n next: function (subscriptionData) {\n var updateQuery = options.updateQuery;\n if (updateQuery) {\n _this.updateQuery(function (previous, _a) {\n var variables = _a.variables;\n return updateQuery(previous, {\n subscriptionData: subscriptionData,\n variables: variables,\n });\n });\n }\n },\n error: function (err) {\n if (options.onError) {\n options.onError(err);\n return;\n }\n __DEV__ && invariant.error('Unhandled GraphQL subscription error', err);\n },\n });\n this.subscriptions.add(subscription);\n return function () {\n if (_this.subscriptions.delete(subscription)) {\n subscription.unsubscribe();\n }\n };\n };\n ObservableQuery.prototype.setOptions = function (newOptions) {\n return this.reobserve(newOptions);\n };\n ObservableQuery.prototype.setVariables = function (variables) {\n if (equal(this.variables, variables)) {\n return this.observers.size\n ? this.result()\n : Promise.resolve();\n }\n this.options.variables = variables;\n if (!this.observers.size) {\n return Promise.resolve();\n }\n return this.reobserve({\n fetchPolicy: this.options.initialFetchPolicy,\n variables: variables,\n }, NetworkStatus.setVariables);\n };\n ObservableQuery.prototype.updateQuery = function (mapFn) {\n var queryManager = this.queryManager;\n var result = queryManager.cache.diff({\n query: this.options.query,\n variables: this.variables,\n returnPartialData: true,\n optimistic: false,\n }).result;\n var newResult = mapFn(result, {\n variables: this.variables,\n });\n if (newResult) {\n queryManager.cache.writeQuery({\n query: this.options.query,\n data: newResult,\n variables: this.variables,\n });\n queryManager.broadcastQueries();\n }\n };\n ObservableQuery.prototype.startPolling = function (pollInterval) {\n this.options.pollInterval = pollInterval;\n this.updatePolling();\n };\n ObservableQuery.prototype.stopPolling = function () {\n this.options.pollInterval = 0;\n this.updatePolling();\n };\n ObservableQuery.prototype.applyNextFetchPolicy = function (reason, options) {\n if (options.nextFetchPolicy) {\n var _a = options.fetchPolicy, fetchPolicy = _a === void 0 ? \"cache-first\" : _a, _b = options.initialFetchPolicy, initialFetchPolicy = _b === void 0 ? fetchPolicy : _b;\n if (fetchPolicy === \"standby\") {\n }\n else if (typeof options.nextFetchPolicy === \"function\") {\n options.fetchPolicy = options.nextFetchPolicy(fetchPolicy, {\n reason: reason,\n options: options,\n observable: this,\n initialFetchPolicy: initialFetchPolicy,\n });\n }\n else if (reason === \"variables-changed\") {\n options.fetchPolicy = initialFetchPolicy;\n }\n else {\n options.fetchPolicy = options.nextFetchPolicy;\n }\n }\n return options.fetchPolicy;\n };\n ObservableQuery.prototype.fetch = function (options, newNetworkStatus) {\n this.queryManager.setObservableQuery(this);\n return this.queryManager.fetchQueryObservable(this.queryId, options, newNetworkStatus);\n };\n ObservableQuery.prototype.updatePolling = function () {\n var _this = this;\n if (this.queryManager.ssrMode) {\n return;\n }\n var _a = this, pollingInfo = _a.pollingInfo, pollInterval = _a.options.pollInterval;\n if (!pollInterval) {\n if (pollingInfo) {\n clearTimeout(pollingInfo.timeout);\n delete this.pollingInfo;\n }\n return;\n }\n if (pollingInfo &&\n pollingInfo.interval === pollInterval) {\n return;\n }\n __DEV__ ? invariant(pollInterval, 'Attempted to start a polling query without a polling interval.') : invariant(pollInterval, 10);\n var info = pollingInfo || (this.pollingInfo = {});\n info.interval = pollInterval;\n var maybeFetch = function () {\n if (_this.pollingInfo) {\n if (!isNetworkRequestInFlight(_this.queryInfo.networkStatus)) {\n _this.reobserve({\n fetchPolicy: \"network-only\",\n }, NetworkStatus.poll).then(poll, poll);\n }\n else {\n poll();\n }\n }\n ;\n };\n var poll = function () {\n var info = _this.pollingInfo;\n if (info) {\n clearTimeout(info.timeout);\n info.timeout = setTimeout(maybeFetch, info.interval);\n }\n };\n poll();\n };\n ObservableQuery.prototype.updateLastResult = function (newResult, variables) {\n if (variables === void 0) { variables = this.variables; }\n this.last = __assign(__assign({}, this.last), { result: this.queryManager.assumeImmutableResults\n ? newResult\n : cloneDeep(newResult), variables: variables });\n if (!isNonEmptyArray(newResult.errors)) {\n delete this.last.error;\n }\n return this.last;\n };\n ObservableQuery.prototype.reobserve = function (newOptions, newNetworkStatus) {\n var _this = this;\n this.isTornDown = false;\n var useDisposableConcast = newNetworkStatus === NetworkStatus.refetch ||\n newNetworkStatus === NetworkStatus.fetchMore ||\n newNetworkStatus === NetworkStatus.poll;\n var oldVariables = this.options.variables;\n var oldFetchPolicy = this.options.fetchPolicy;\n var mergedOptions = compact(this.options, newOptions || {});\n var options = useDisposableConcast\n ? mergedOptions\n : assign(this.options, mergedOptions);\n if (!useDisposableConcast) {\n this.updatePolling();\n if (newOptions &&\n newOptions.variables &&\n !equal(newOptions.variables, oldVariables) &&\n options.fetchPolicy !== \"standby\" &&\n options.fetchPolicy === oldFetchPolicy) {\n this.applyNextFetchPolicy(\"variables-changed\", options);\n if (newNetworkStatus === void 0) {\n newNetworkStatus = NetworkStatus.setVariables;\n }\n }\n }\n var variables = options.variables && __assign({}, options.variables);\n var concast = this.fetch(options, newNetworkStatus);\n var observer = {\n next: function (result) {\n _this.reportResult(result, variables);\n },\n error: function (error) {\n _this.reportError(error, variables);\n },\n };\n if (!useDisposableConcast) {\n if (this.concast && this.observer) {\n this.concast.removeObserver(this.observer);\n }\n this.concast = concast;\n this.observer = observer;\n }\n concast.addObserver(observer);\n return concast.promise;\n };\n ObservableQuery.prototype.observe = function () {\n this.reportResult(this.getCurrentResult(false), this.variables);\n };\n ObservableQuery.prototype.reportResult = function (result, variables) {\n var lastError = this.getLastError();\n if (lastError || this.isDifferentFromLastResult(result)) {\n if (lastError || !result.partial || this.options.returnPartialData) {\n this.updateLastResult(result, variables);\n }\n iterateObserversSafely(this.observers, 'next', result);\n }\n };\n ObservableQuery.prototype.reportError = function (error, variables) {\n var errorResult = __assign(__assign({}, this.getLastResult()), { error: error, errors: error.graphQLErrors, networkStatus: NetworkStatus.error, loading: false });\n this.updateLastResult(errorResult, variables);\n iterateObserversSafely(this.observers, 'error', this.last.error = error);\n };\n ObservableQuery.prototype.hasObservers = function () {\n return this.observers.size > 0;\n };\n ObservableQuery.prototype.tearDownQuery = function () {\n if (this.isTornDown)\n return;\n if (this.concast && this.observer) {\n this.concast.removeObserver(this.observer);\n delete this.concast;\n delete this.observer;\n }\n this.stopPolling();\n this.subscriptions.forEach(function (sub) { return sub.unsubscribe(); });\n this.subscriptions.clear();\n this.queryManager.stopQuery(this.queryId);\n this.observers.clear();\n this.isTornDown = true;\n };\n return ObservableQuery;\n}(Observable));\nexport { ObservableQuery };\nfixObservableSubclass(ObservableQuery);\nexport function reobserveCacheFirst(obsQuery) {\n var _a = obsQuery.options, fetchPolicy = _a.fetchPolicy, nextFetchPolicy = _a.nextFetchPolicy;\n if (fetchPolicy === \"cache-and-network\" ||\n fetchPolicy === \"network-only\") {\n return obsQuery.reobserve({\n fetchPolicy: \"cache-first\",\n nextFetchPolicy: function () {\n this.nextFetchPolicy = nextFetchPolicy;\n if (typeof nextFetchPolicy === \"function\") {\n return nextFetchPolicy.apply(this, arguments);\n }\n return fetchPolicy;\n },\n });\n }\n return obsQuery.reobserve();\n}\nfunction defaultSubscriptionObserverErrorCallback(error) {\n __DEV__ && invariant.error('Unhandled error', error.message, error.stack);\n}\nexport function logMissingFieldErrors(missing) {\n if (__DEV__ && missing) {\n __DEV__ && invariant.debug(\"Missing cache result fields: \".concat(JSON.stringify(missing)), missing);\n }\n}\n//# sourceMappingURL=ObservableQuery.js.map","import { __assign, __awaiter, __generator } from \"tslib\";\nimport { invariant } from \"../utilities/globals/index.js\";\nimport { visit, BREAK, } from 'graphql';\nimport { argumentsObjectFromField, buildQueryFromSelectionSet, createFragmentMap, getFragmentDefinitions, getMainDefinition, hasDirectives, isField, isInlineFragment, mergeDeep, mergeDeepArray, removeClientSetsFromDocument, resultKeyNameFromField, shouldInclude, } from \"../utilities/index.js\";\nimport { cacheSlot } from \"../cache/index.js\";\nvar LocalState = (function () {\n function LocalState(_a) {\n var cache = _a.cache, client = _a.client, resolvers = _a.resolvers, fragmentMatcher = _a.fragmentMatcher;\n this.cache = cache;\n if (client) {\n this.client = client;\n }\n if (resolvers) {\n this.addResolvers(resolvers);\n }\n if (fragmentMatcher) {\n this.setFragmentMatcher(fragmentMatcher);\n }\n }\n LocalState.prototype.addResolvers = function (resolvers) {\n var _this = this;\n this.resolvers = this.resolvers || {};\n if (Array.isArray(resolvers)) {\n resolvers.forEach(function (resolverGroup) {\n _this.resolvers = mergeDeep(_this.resolvers, resolverGroup);\n });\n }\n else {\n this.resolvers = mergeDeep(this.resolvers, resolvers);\n }\n };\n LocalState.prototype.setResolvers = function (resolvers) {\n this.resolvers = {};\n this.addResolvers(resolvers);\n };\n LocalState.prototype.getResolvers = function () {\n return this.resolvers || {};\n };\n LocalState.prototype.runResolvers = function (_a) {\n var document = _a.document, remoteResult = _a.remoteResult, context = _a.context, variables = _a.variables, _b = _a.onlyRunForcedResolvers, onlyRunForcedResolvers = _b === void 0 ? false : _b;\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_c) {\n if (document) {\n return [2, this.resolveDocument(document, remoteResult.data, context, variables, this.fragmentMatcher, onlyRunForcedResolvers).then(function (localResult) { return (__assign(__assign({}, remoteResult), { data: localResult.result })); })];\n }\n return [2, remoteResult];\n });\n });\n };\n LocalState.prototype.setFragmentMatcher = function (fragmentMatcher) {\n this.fragmentMatcher = fragmentMatcher;\n };\n LocalState.prototype.getFragmentMatcher = function () {\n return this.fragmentMatcher;\n };\n LocalState.prototype.clientQuery = function (document) {\n if (hasDirectives(['client'], document)) {\n if (this.resolvers) {\n return document;\n }\n }\n return null;\n };\n LocalState.prototype.serverQuery = function (document) {\n return removeClientSetsFromDocument(document);\n };\n LocalState.prototype.prepareContext = function (context) {\n var cache = this.cache;\n return __assign(__assign({}, context), { cache: cache, getCacheKey: function (obj) {\n return cache.identify(obj);\n } });\n };\n LocalState.prototype.addExportedVariables = function (document, variables, context) {\n if (variables === void 0) { variables = {}; }\n if (context === void 0) { context = {}; }\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n if (document) {\n return [2, this.resolveDocument(document, this.buildRootValueFromCache(document, variables) || {}, this.prepareContext(context), variables).then(function (data) { return (__assign(__assign({}, variables), data.exportedVariables)); })];\n }\n return [2, __assign({}, variables)];\n });\n });\n };\n LocalState.prototype.shouldForceResolvers = function (document) {\n var forceResolvers = false;\n visit(document, {\n Directive: {\n enter: function (node) {\n if (node.name.value === 'client' && node.arguments) {\n forceResolvers = node.arguments.some(function (arg) {\n return arg.name.value === 'always' &&\n arg.value.kind === 'BooleanValue' &&\n arg.value.value === true;\n });\n if (forceResolvers) {\n return BREAK;\n }\n }\n },\n },\n });\n return forceResolvers;\n };\n LocalState.prototype.buildRootValueFromCache = function (document, variables) {\n return this.cache.diff({\n query: buildQueryFromSelectionSet(document),\n variables: variables,\n returnPartialData: true,\n optimistic: false,\n }).result;\n };\n LocalState.prototype.resolveDocument = function (document, rootValue, context, variables, fragmentMatcher, onlyRunForcedResolvers) {\n if (context === void 0) { context = {}; }\n if (variables === void 0) { variables = {}; }\n if (fragmentMatcher === void 0) { fragmentMatcher = function () { return true; }; }\n if (onlyRunForcedResolvers === void 0) { onlyRunForcedResolvers = false; }\n return __awaiter(this, void 0, void 0, function () {\n var mainDefinition, fragments, fragmentMap, definitionOperation, defaultOperationType, _a, cache, client, execContext;\n return __generator(this, function (_b) {\n mainDefinition = getMainDefinition(document);\n fragments = getFragmentDefinitions(document);\n fragmentMap = createFragmentMap(fragments);\n definitionOperation = mainDefinition\n .operation;\n defaultOperationType = definitionOperation\n ? definitionOperation.charAt(0).toUpperCase() +\n definitionOperation.slice(1)\n : 'Query';\n _a = this, cache = _a.cache, client = _a.client;\n execContext = {\n fragmentMap: fragmentMap,\n context: __assign(__assign({}, context), { cache: cache, client: client }),\n variables: variables,\n fragmentMatcher: fragmentMatcher,\n defaultOperationType: defaultOperationType,\n exportedVariables: {},\n onlyRunForcedResolvers: onlyRunForcedResolvers,\n };\n return [2, this.resolveSelectionSet(mainDefinition.selectionSet, rootValue, execContext).then(function (result) { return ({\n result: result,\n exportedVariables: execContext.exportedVariables,\n }); })];\n });\n });\n };\n LocalState.prototype.resolveSelectionSet = function (selectionSet, rootValue, execContext) {\n return __awaiter(this, void 0, void 0, function () {\n var fragmentMap, context, variables, resultsToMerge, execute;\n var _this = this;\n return __generator(this, function (_a) {\n fragmentMap = execContext.fragmentMap, context = execContext.context, variables = execContext.variables;\n resultsToMerge = [rootValue];\n execute = function (selection) { return __awaiter(_this, void 0, void 0, function () {\n var fragment, typeCondition;\n return __generator(this, function (_a) {\n if (!shouldInclude(selection, variables)) {\n return [2];\n }\n if (isField(selection)) {\n return [2, this.resolveField(selection, rootValue, execContext).then(function (fieldResult) {\n var _a;\n if (typeof fieldResult !== 'undefined') {\n resultsToMerge.push((_a = {},\n _a[resultKeyNameFromField(selection)] = fieldResult,\n _a));\n }\n })];\n }\n if (isInlineFragment(selection)) {\n fragment = selection;\n }\n else {\n fragment = fragmentMap[selection.name.value];\n __DEV__ ? invariant(fragment, \"No fragment named \".concat(selection.name.value)) : invariant(fragment, 9);\n }\n if (fragment && fragment.typeCondition) {\n typeCondition = fragment.typeCondition.name.value;\n if (execContext.fragmentMatcher(rootValue, typeCondition, context)) {\n return [2, this.resolveSelectionSet(fragment.selectionSet, rootValue, execContext).then(function (fragmentResult) {\n resultsToMerge.push(fragmentResult);\n })];\n }\n }\n return [2];\n });\n }); };\n return [2, Promise.all(selectionSet.selections.map(execute)).then(function () {\n return mergeDeepArray(resultsToMerge);\n })];\n });\n });\n };\n LocalState.prototype.resolveField = function (field, rootValue, execContext) {\n return __awaiter(this, void 0, void 0, function () {\n var variables, fieldName, aliasedFieldName, aliasUsed, defaultResult, resultPromise, resolverType, resolverMap, resolve;\n var _this = this;\n return __generator(this, function (_a) {\n variables = execContext.variables;\n fieldName = field.name.value;\n aliasedFieldName = resultKeyNameFromField(field);\n aliasUsed = fieldName !== aliasedFieldName;\n defaultResult = rootValue[aliasedFieldName] || rootValue[fieldName];\n resultPromise = Promise.resolve(defaultResult);\n if (!execContext.onlyRunForcedResolvers ||\n this.shouldForceResolvers(field)) {\n resolverType = rootValue.__typename || execContext.defaultOperationType;\n resolverMap = this.resolvers && this.resolvers[resolverType];\n if (resolverMap) {\n resolve = resolverMap[aliasUsed ? fieldName : aliasedFieldName];\n if (resolve) {\n resultPromise = Promise.resolve(cacheSlot.withValue(this.cache, resolve, [\n rootValue,\n argumentsObjectFromField(field, variables),\n execContext.context,\n { field: field, fragmentMap: execContext.fragmentMap },\n ]));\n }\n }\n }\n return [2, resultPromise.then(function (result) {\n if (result === void 0) { result = defaultResult; }\n if (field.directives) {\n field.directives.forEach(function (directive) {\n if (directive.name.value === 'export' && directive.arguments) {\n directive.arguments.forEach(function (arg) {\n if (arg.name.value === 'as' && arg.value.kind === 'StringValue') {\n execContext.exportedVariables[arg.value.value] = result;\n }\n });\n }\n });\n }\n if (!field.selectionSet) {\n return result;\n }\n if (result == null) {\n return result;\n }\n if (Array.isArray(result)) {\n return _this.resolveSubSelectedArray(field, result, execContext);\n }\n if (field.selectionSet) {\n return _this.resolveSelectionSet(field.selectionSet, result, execContext);\n }\n })];\n });\n });\n };\n LocalState.prototype.resolveSubSelectedArray = function (field, result, execContext) {\n var _this = this;\n return Promise.all(result.map(function (item) {\n if (item === null) {\n return null;\n }\n if (Array.isArray(item)) {\n return _this.resolveSubSelectedArray(field, item, execContext);\n }\n if (field.selectionSet) {\n return _this.resolveSelectionSet(field.selectionSet, item, execContext);\n }\n }));\n };\n return LocalState;\n}());\nexport { LocalState };\n//# sourceMappingURL=LocalState.js.map","import { __assign } from \"tslib\";\nimport { equal } from \"@wry/equality\";\nimport { reobserveCacheFirst } from \"./ObservableQuery.js\";\nimport { isNonEmptyArray, graphQLResultHasError, canUseWeakMap, } from \"../utilities/index.js\";\nimport { NetworkStatus, isNetworkRequestInFlight, } from \"./networkStatus.js\";\n;\nvar destructiveMethodCounts = new (canUseWeakMap ? WeakMap : Map)();\nfunction wrapDestructiveCacheMethod(cache, methodName) {\n var original = cache[methodName];\n if (typeof original === \"function\") {\n cache[methodName] = function () {\n destructiveMethodCounts.set(cache, (destructiveMethodCounts.get(cache) + 1) % 1e15);\n return original.apply(this, arguments);\n };\n }\n}\nfunction cancelNotifyTimeout(info) {\n if (info[\"notifyTimeout\"]) {\n clearTimeout(info[\"notifyTimeout\"]);\n info[\"notifyTimeout\"] = void 0;\n }\n}\nvar QueryInfo = (function () {\n function QueryInfo(queryManager, queryId) {\n if (queryId === void 0) { queryId = queryManager.generateQueryId(); }\n this.queryId = queryId;\n this.listeners = new Set();\n this.document = null;\n this.lastRequestId = 1;\n this.subscriptions = new Set();\n this.stopped = false;\n this.dirty = false;\n this.observableQuery = null;\n var cache = this.cache = queryManager.cache;\n if (!destructiveMethodCounts.has(cache)) {\n destructiveMethodCounts.set(cache, 0);\n wrapDestructiveCacheMethod(cache, \"evict\");\n wrapDestructiveCacheMethod(cache, \"modify\");\n wrapDestructiveCacheMethod(cache, \"reset\");\n }\n }\n QueryInfo.prototype.init = function (query) {\n var networkStatus = query.networkStatus || NetworkStatus.loading;\n if (this.variables &&\n this.networkStatus !== NetworkStatus.loading &&\n !equal(this.variables, query.variables)) {\n networkStatus = NetworkStatus.setVariables;\n }\n if (!equal(query.variables, this.variables)) {\n this.lastDiff = void 0;\n }\n Object.assign(this, {\n document: query.document,\n variables: query.variables,\n networkError: null,\n graphQLErrors: this.graphQLErrors || [],\n networkStatus: networkStatus,\n });\n if (query.observableQuery) {\n this.setObservableQuery(query.observableQuery);\n }\n if (query.lastRequestId) {\n this.lastRequestId = query.lastRequestId;\n }\n return this;\n };\n QueryInfo.prototype.reset = function () {\n cancelNotifyTimeout(this);\n this.lastDiff = void 0;\n this.dirty = false;\n };\n QueryInfo.prototype.getDiff = function (variables) {\n if (variables === void 0) { variables = this.variables; }\n var options = this.getDiffOptions(variables);\n if (this.lastDiff && equal(options, this.lastDiff.options)) {\n return this.lastDiff.diff;\n }\n this.updateWatch(this.variables = variables);\n var oq = this.observableQuery;\n if (oq && oq.options.fetchPolicy === \"no-cache\") {\n return { complete: false };\n }\n var diff = this.cache.diff(options);\n this.updateLastDiff(diff, options);\n return diff;\n };\n QueryInfo.prototype.updateLastDiff = function (diff, options) {\n this.lastDiff = diff ? {\n diff: diff,\n options: options || this.getDiffOptions(),\n } : void 0;\n };\n QueryInfo.prototype.getDiffOptions = function (variables) {\n var _a;\n if (variables === void 0) { variables = this.variables; }\n return {\n query: this.document,\n variables: variables,\n returnPartialData: true,\n optimistic: true,\n canonizeResults: (_a = this.observableQuery) === null || _a === void 0 ? void 0 : _a.options.canonizeResults,\n };\n };\n QueryInfo.prototype.setDiff = function (diff) {\n var _this = this;\n var oldDiff = this.lastDiff && this.lastDiff.diff;\n this.updateLastDiff(diff);\n if (!this.dirty &&\n !equal(oldDiff && oldDiff.result, diff && diff.result)) {\n this.dirty = true;\n if (!this.notifyTimeout) {\n this.notifyTimeout = setTimeout(function () { return _this.notify(); }, 0);\n }\n }\n };\n QueryInfo.prototype.setObservableQuery = function (oq) {\n var _this = this;\n if (oq === this.observableQuery)\n return;\n if (this.oqListener) {\n this.listeners.delete(this.oqListener);\n }\n this.observableQuery = oq;\n if (oq) {\n oq[\"queryInfo\"] = this;\n this.listeners.add(this.oqListener = function () {\n var diff = _this.getDiff();\n if (diff.fromOptimisticTransaction) {\n oq[\"observe\"]();\n }\n else {\n reobserveCacheFirst(oq);\n }\n });\n }\n else {\n delete this.oqListener;\n }\n };\n QueryInfo.prototype.notify = function () {\n var _this = this;\n cancelNotifyTimeout(this);\n if (this.shouldNotify()) {\n this.listeners.forEach(function (listener) { return listener(_this); });\n }\n this.dirty = false;\n };\n QueryInfo.prototype.shouldNotify = function () {\n if (!this.dirty || !this.listeners.size) {\n return false;\n }\n if (isNetworkRequestInFlight(this.networkStatus) &&\n this.observableQuery) {\n var fetchPolicy = this.observableQuery.options.fetchPolicy;\n if (fetchPolicy !== \"cache-only\" &&\n fetchPolicy !== \"cache-and-network\") {\n return false;\n }\n }\n return true;\n };\n QueryInfo.prototype.stop = function () {\n if (!this.stopped) {\n this.stopped = true;\n this.reset();\n this.cancel();\n this.cancel = QueryInfo.prototype.cancel;\n this.subscriptions.forEach(function (sub) { return sub.unsubscribe(); });\n var oq = this.observableQuery;\n if (oq)\n oq.stopPolling();\n }\n };\n QueryInfo.prototype.cancel = function () { };\n QueryInfo.prototype.updateWatch = function (variables) {\n var _this = this;\n if (variables === void 0) { variables = this.variables; }\n var oq = this.observableQuery;\n if (oq && oq.options.fetchPolicy === \"no-cache\") {\n return;\n }\n var watchOptions = __assign(__assign({}, this.getDiffOptions(variables)), { watcher: this, callback: function (diff) { return _this.setDiff(diff); } });\n if (!this.lastWatch ||\n !equal(watchOptions, this.lastWatch)) {\n this.cancel();\n this.cancel = this.cache.watch(this.lastWatch = watchOptions);\n }\n };\n QueryInfo.prototype.resetLastWrite = function () {\n this.lastWrite = void 0;\n };\n QueryInfo.prototype.shouldWrite = function (result, variables) {\n var lastWrite = this.lastWrite;\n return !(lastWrite &&\n lastWrite.dmCount === destructiveMethodCounts.get(this.cache) &&\n equal(variables, lastWrite.variables) &&\n equal(result.data, lastWrite.result.data));\n };\n QueryInfo.prototype.markResult = function (result, options, cacheWriteBehavior) {\n var _this = this;\n this.graphQLErrors = isNonEmptyArray(result.errors) ? result.errors : [];\n this.reset();\n if (options.fetchPolicy === 'no-cache') {\n this.updateLastDiff({ result: result.data, complete: true }, this.getDiffOptions(options.variables));\n }\n else if (cacheWriteBehavior !== 0) {\n if (shouldWriteResult(result, options.errorPolicy)) {\n this.cache.performTransaction(function (cache) {\n if (_this.shouldWrite(result, options.variables)) {\n cache.writeQuery({\n query: _this.document,\n data: result.data,\n variables: options.variables,\n overwrite: cacheWriteBehavior === 1,\n });\n _this.lastWrite = {\n result: result,\n variables: options.variables,\n dmCount: destructiveMethodCounts.get(_this.cache),\n };\n }\n else {\n if (_this.lastDiff &&\n _this.lastDiff.diff.complete) {\n result.data = _this.lastDiff.diff.result;\n return;\n }\n }\n var diffOptions = _this.getDiffOptions(options.variables);\n var diff = cache.diff(diffOptions);\n if (!_this.stopped) {\n _this.updateWatch(options.variables);\n }\n _this.updateLastDiff(diff, diffOptions);\n if (diff.complete) {\n result.data = diff.result;\n }\n });\n }\n else {\n this.lastWrite = void 0;\n }\n }\n };\n QueryInfo.prototype.markReady = function () {\n this.networkError = null;\n return this.networkStatus = NetworkStatus.ready;\n };\n QueryInfo.prototype.markError = function (error) {\n this.networkStatus = NetworkStatus.error;\n this.lastWrite = void 0;\n this.reset();\n if (error.graphQLErrors) {\n this.graphQLErrors = error.graphQLErrors;\n }\n if (error.networkError) {\n this.networkError = error.networkError;\n }\n return error;\n };\n return QueryInfo;\n}());\nexport { QueryInfo };\nexport function shouldWriteResult(result, errorPolicy) {\n if (errorPolicy === void 0) { errorPolicy = \"none\"; }\n var ignoreErrors = errorPolicy === \"ignore\" ||\n errorPolicy === \"all\";\n var writeWithErrors = !graphQLResultHasError(result);\n if (!writeWithErrors && ignoreErrors && result.data) {\n writeWithErrors = true;\n }\n return writeWithErrors;\n}\n//# sourceMappingURL=QueryInfo.js.map","import { __assign, __awaiter, __generator } from \"tslib\";\nimport { invariant, InvariantError } from \"../utilities/globals/index.js\";\nimport { equal } from '@wry/equality';\nimport { execute } from \"../link/core/index.js\";\nimport { canonicalStringify } from \"../cache/index.js\";\nimport { getDefaultValues, getOperationDefinition, getOperationName, hasClientExports, graphQLResultHasError, removeConnectionDirectiveFromDocument, canUseWeakMap, Observable, asyncMap, isNonEmptyArray, Concast, makeUniqueId, isDocumentNode, isNonNullObject, } from \"../utilities/index.js\";\nimport { ApolloError, isApolloError } from \"../errors/index.js\";\nimport { ObservableQuery, logMissingFieldErrors } from \"./ObservableQuery.js\";\nimport { NetworkStatus, isNetworkRequestInFlight } from \"./networkStatus.js\";\nimport { LocalState } from \"./LocalState.js\";\nimport { QueryInfo, shouldWriteResult, } from \"./QueryInfo.js\";\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar QueryManager = (function () {\n function QueryManager(_a) {\n var cache = _a.cache, link = _a.link, defaultOptions = _a.defaultOptions, _b = _a.queryDeduplication, queryDeduplication = _b === void 0 ? false : _b, onBroadcast = _a.onBroadcast, _c = _a.ssrMode, ssrMode = _c === void 0 ? false : _c, _d = _a.clientAwareness, clientAwareness = _d === void 0 ? {} : _d, localState = _a.localState, assumeImmutableResults = _a.assumeImmutableResults;\n this.clientAwareness = {};\n this.queries = new Map();\n this.fetchCancelFns = new Map();\n this.transformCache = new (canUseWeakMap ? WeakMap : Map)();\n this.queryIdCounter = 1;\n this.requestIdCounter = 1;\n this.mutationIdCounter = 1;\n this.inFlightLinkObservables = new Map();\n this.cache = cache;\n this.link = link;\n this.defaultOptions = defaultOptions || Object.create(null);\n this.queryDeduplication = queryDeduplication;\n this.clientAwareness = clientAwareness;\n this.localState = localState || new LocalState({ cache: cache });\n this.ssrMode = ssrMode;\n this.assumeImmutableResults = !!assumeImmutableResults;\n if ((this.onBroadcast = onBroadcast)) {\n this.mutationStore = Object.create(null);\n }\n }\n QueryManager.prototype.stop = function () {\n var _this = this;\n this.queries.forEach(function (_info, queryId) {\n _this.stopQueryNoBroadcast(queryId);\n });\n this.cancelPendingFetches(__DEV__ ? new InvariantError('QueryManager stopped while query was in flight') : new InvariantError(11));\n };\n QueryManager.prototype.cancelPendingFetches = function (error) {\n this.fetchCancelFns.forEach(function (cancel) { return cancel(error); });\n this.fetchCancelFns.clear();\n };\n QueryManager.prototype.mutate = function (_a) {\n var _b, _c;\n var mutation = _a.mutation, variables = _a.variables, optimisticResponse = _a.optimisticResponse, updateQueries = _a.updateQueries, _d = _a.refetchQueries, refetchQueries = _d === void 0 ? [] : _d, _e = _a.awaitRefetchQueries, awaitRefetchQueries = _e === void 0 ? false : _e, updateWithProxyFn = _a.update, onQueryUpdated = _a.onQueryUpdated, _f = _a.fetchPolicy, fetchPolicy = _f === void 0 ? ((_b = this.defaultOptions.mutate) === null || _b === void 0 ? void 0 : _b.fetchPolicy) || \"network-only\" : _f, _g = _a.errorPolicy, errorPolicy = _g === void 0 ? ((_c = this.defaultOptions.mutate) === null || _c === void 0 ? void 0 : _c.errorPolicy) || \"none\" : _g, keepRootFields = _a.keepRootFields, context = _a.context;\n return __awaiter(this, void 0, void 0, function () {\n var mutationId, mutationStoreValue, self;\n return __generator(this, function (_h) {\n switch (_h.label) {\n case 0:\n __DEV__ ? invariant(mutation, 'mutation option is required. You must specify your GraphQL document in the mutation option.') : invariant(mutation, 12);\n __DEV__ ? invariant(fetchPolicy === 'network-only' ||\n fetchPolicy === 'no-cache', \"Mutations support only 'network-only' or 'no-cache' fetchPolicy strings. The default `network-only` behavior automatically writes mutation results to the cache. Passing `no-cache` skips the cache write.\") : invariant(fetchPolicy === 'network-only' ||\n fetchPolicy === 'no-cache', 13);\n mutationId = this.generateMutationId();\n mutation = this.transform(mutation).document;\n variables = this.getVariables(mutation, variables);\n if (!this.transform(mutation).hasClientExports) return [3, 2];\n return [4, this.localState.addExportedVariables(mutation, variables, context)];\n case 1:\n variables = (_h.sent());\n _h.label = 2;\n case 2:\n mutationStoreValue = this.mutationStore &&\n (this.mutationStore[mutationId] = {\n mutation: mutation,\n variables: variables,\n loading: true,\n error: null,\n });\n if (optimisticResponse) {\n this.markMutationOptimistic(optimisticResponse, {\n mutationId: mutationId,\n document: mutation,\n variables: variables,\n fetchPolicy: fetchPolicy,\n errorPolicy: errorPolicy,\n context: context,\n updateQueries: updateQueries,\n update: updateWithProxyFn,\n keepRootFields: keepRootFields,\n });\n }\n this.broadcastQueries();\n self = this;\n return [2, new Promise(function (resolve, reject) {\n return asyncMap(self.getObservableFromLink(mutation, __assign(__assign({}, context), { optimisticResponse: optimisticResponse }), variables, false), function (result) {\n if (graphQLResultHasError(result) && errorPolicy === 'none') {\n throw new ApolloError({\n graphQLErrors: result.errors,\n });\n }\n if (mutationStoreValue) {\n mutationStoreValue.loading = false;\n mutationStoreValue.error = null;\n }\n var storeResult = __assign({}, result);\n if (typeof refetchQueries === \"function\") {\n refetchQueries = refetchQueries(storeResult);\n }\n if (errorPolicy === 'ignore' &&\n graphQLResultHasError(storeResult)) {\n delete storeResult.errors;\n }\n return self.markMutationResult({\n mutationId: mutationId,\n result: storeResult,\n document: mutation,\n variables: variables,\n fetchPolicy: fetchPolicy,\n errorPolicy: errorPolicy,\n context: context,\n update: updateWithProxyFn,\n updateQueries: updateQueries,\n awaitRefetchQueries: awaitRefetchQueries,\n refetchQueries: refetchQueries,\n removeOptimistic: optimisticResponse ? mutationId : void 0,\n onQueryUpdated: onQueryUpdated,\n keepRootFields: keepRootFields,\n });\n }).subscribe({\n next: function (storeResult) {\n self.broadcastQueries();\n resolve(storeResult);\n },\n error: function (err) {\n if (mutationStoreValue) {\n mutationStoreValue.loading = false;\n mutationStoreValue.error = err;\n }\n if (optimisticResponse) {\n self.cache.removeOptimistic(mutationId);\n }\n self.broadcastQueries();\n reject(err instanceof ApolloError ? err : new ApolloError({\n networkError: err,\n }));\n },\n });\n })];\n }\n });\n });\n };\n QueryManager.prototype.markMutationResult = function (mutation, cache) {\n var _this = this;\n if (cache === void 0) { cache = this.cache; }\n var result = mutation.result;\n var cacheWrites = [];\n var skipCache = mutation.fetchPolicy === \"no-cache\";\n if (!skipCache && shouldWriteResult(result, mutation.errorPolicy)) {\n cacheWrites.push({\n result: result.data,\n dataId: 'ROOT_MUTATION',\n query: mutation.document,\n variables: mutation.variables,\n });\n var updateQueries_1 = mutation.updateQueries;\n if (updateQueries_1) {\n this.queries.forEach(function (_a, queryId) {\n var observableQuery = _a.observableQuery;\n var queryName = observableQuery && observableQuery.queryName;\n if (!queryName || !hasOwnProperty.call(updateQueries_1, queryName)) {\n return;\n }\n var updater = updateQueries_1[queryName];\n var _b = _this.queries.get(queryId), document = _b.document, variables = _b.variables;\n var _c = cache.diff({\n query: document,\n variables: variables,\n returnPartialData: true,\n optimistic: false,\n }), currentQueryResult = _c.result, complete = _c.complete;\n if (complete && currentQueryResult) {\n var nextQueryResult = updater(currentQueryResult, {\n mutationResult: result,\n queryName: document && getOperationName(document) || void 0,\n queryVariables: variables,\n });\n if (nextQueryResult) {\n cacheWrites.push({\n result: nextQueryResult,\n dataId: 'ROOT_QUERY',\n query: document,\n variables: variables,\n });\n }\n }\n });\n }\n }\n if (cacheWrites.length > 0 ||\n mutation.refetchQueries ||\n mutation.update ||\n mutation.onQueryUpdated ||\n mutation.removeOptimistic) {\n var results_1 = [];\n this.refetchQueries({\n updateCache: function (cache) {\n if (!skipCache) {\n cacheWrites.forEach(function (write) { return cache.write(write); });\n }\n var update = mutation.update;\n if (update) {\n if (!skipCache) {\n var diff = cache.diff({\n id: \"ROOT_MUTATION\",\n query: _this.transform(mutation.document).asQuery,\n variables: mutation.variables,\n optimistic: false,\n returnPartialData: true,\n });\n if (diff.complete) {\n result = __assign(__assign({}, result), { data: diff.result });\n }\n }\n update(cache, result, {\n context: mutation.context,\n variables: mutation.variables,\n });\n }\n if (!skipCache && !mutation.keepRootFields) {\n cache.modify({\n id: 'ROOT_MUTATION',\n fields: function (value, _a) {\n var fieldName = _a.fieldName, DELETE = _a.DELETE;\n return fieldName === \"__typename\" ? value : DELETE;\n },\n });\n }\n },\n include: mutation.refetchQueries,\n optimistic: false,\n removeOptimistic: mutation.removeOptimistic,\n onQueryUpdated: mutation.onQueryUpdated || null,\n }).forEach(function (result) { return results_1.push(result); });\n if (mutation.awaitRefetchQueries || mutation.onQueryUpdated) {\n return Promise.all(results_1).then(function () { return result; });\n }\n }\n return Promise.resolve(result);\n };\n QueryManager.prototype.markMutationOptimistic = function (optimisticResponse, mutation) {\n var _this = this;\n var data = typeof optimisticResponse === \"function\"\n ? optimisticResponse(mutation.variables)\n : optimisticResponse;\n return this.cache.recordOptimisticTransaction(function (cache) {\n try {\n _this.markMutationResult(__assign(__assign({}, mutation), { result: { data: data } }), cache);\n }\n catch (error) {\n __DEV__ && invariant.error(error);\n }\n }, mutation.mutationId);\n };\n QueryManager.prototype.fetchQuery = function (queryId, options, networkStatus) {\n return this.fetchQueryObservable(queryId, options, networkStatus).promise;\n };\n QueryManager.prototype.getQueryStore = function () {\n var store = Object.create(null);\n this.queries.forEach(function (info, queryId) {\n store[queryId] = {\n variables: info.variables,\n networkStatus: info.networkStatus,\n networkError: info.networkError,\n graphQLErrors: info.graphQLErrors,\n };\n });\n return store;\n };\n QueryManager.prototype.resetErrors = function (queryId) {\n var queryInfo = this.queries.get(queryId);\n if (queryInfo) {\n queryInfo.networkError = undefined;\n queryInfo.graphQLErrors = [];\n }\n };\n QueryManager.prototype.transform = function (document) {\n var transformCache = this.transformCache;\n if (!transformCache.has(document)) {\n var transformed = this.cache.transformDocument(document);\n var forLink = removeConnectionDirectiveFromDocument(this.cache.transformForLink(transformed));\n var clientQuery = this.localState.clientQuery(transformed);\n var serverQuery = forLink && this.localState.serverQuery(forLink);\n var cacheEntry_1 = {\n document: transformed,\n hasClientExports: hasClientExports(transformed),\n hasForcedResolvers: this.localState.shouldForceResolvers(transformed),\n clientQuery: clientQuery,\n serverQuery: serverQuery,\n defaultVars: getDefaultValues(getOperationDefinition(transformed)),\n asQuery: __assign(__assign({}, transformed), { definitions: transformed.definitions.map(function (def) {\n if (def.kind === \"OperationDefinition\" &&\n def.operation !== \"query\") {\n return __assign(__assign({}, def), { operation: \"query\" });\n }\n return def;\n }) })\n };\n var add = function (doc) {\n if (doc && !transformCache.has(doc)) {\n transformCache.set(doc, cacheEntry_1);\n }\n };\n add(document);\n add(transformed);\n add(clientQuery);\n add(serverQuery);\n }\n return transformCache.get(document);\n };\n QueryManager.prototype.getVariables = function (document, variables) {\n return __assign(__assign({}, this.transform(document).defaultVars), variables);\n };\n QueryManager.prototype.watchQuery = function (options) {\n options = __assign(__assign({}, options), { variables: this.getVariables(options.query, options.variables) });\n if (typeof options.notifyOnNetworkStatusChange === 'undefined') {\n options.notifyOnNetworkStatusChange = false;\n }\n var queryInfo = new QueryInfo(this);\n var observable = new ObservableQuery({\n queryManager: this,\n queryInfo: queryInfo,\n options: options,\n });\n this.queries.set(observable.queryId, queryInfo);\n queryInfo.init({\n document: observable.query,\n observableQuery: observable,\n variables: observable.variables,\n });\n return observable;\n };\n QueryManager.prototype.query = function (options, queryId) {\n var _this = this;\n if (queryId === void 0) { queryId = this.generateQueryId(); }\n __DEV__ ? invariant(options.query, 'query option is required. You must specify your GraphQL document ' +\n 'in the query option.') : invariant(options.query, 14);\n __DEV__ ? invariant(options.query.kind === 'Document', 'You must wrap the query string in a \"gql\" tag.') : invariant(options.query.kind === 'Document', 15);\n __DEV__ ? invariant(!options.returnPartialData, 'returnPartialData option only supported on watchQuery.') : invariant(!options.returnPartialData, 16);\n __DEV__ ? invariant(!options.pollInterval, 'pollInterval option only supported on watchQuery.') : invariant(!options.pollInterval, 17);\n return this.fetchQuery(queryId, options).finally(function () { return _this.stopQuery(queryId); });\n };\n QueryManager.prototype.generateQueryId = function () {\n return String(this.queryIdCounter++);\n };\n QueryManager.prototype.generateRequestId = function () {\n return this.requestIdCounter++;\n };\n QueryManager.prototype.generateMutationId = function () {\n return String(this.mutationIdCounter++);\n };\n QueryManager.prototype.stopQueryInStore = function (queryId) {\n this.stopQueryInStoreNoBroadcast(queryId);\n this.broadcastQueries();\n };\n QueryManager.prototype.stopQueryInStoreNoBroadcast = function (queryId) {\n var queryInfo = this.queries.get(queryId);\n if (queryInfo)\n queryInfo.stop();\n };\n QueryManager.prototype.clearStore = function (options) {\n if (options === void 0) { options = {\n discardWatches: true,\n }; }\n this.cancelPendingFetches(__DEV__ ? new InvariantError('Store reset while query was in flight (not completed in link chain)') : new InvariantError(18));\n this.queries.forEach(function (queryInfo) {\n if (queryInfo.observableQuery) {\n queryInfo.networkStatus = NetworkStatus.loading;\n }\n else {\n queryInfo.stop();\n }\n });\n if (this.mutationStore) {\n this.mutationStore = Object.create(null);\n }\n return this.cache.reset(options);\n };\n QueryManager.prototype.getObservableQueries = function (include) {\n var _this = this;\n if (include === void 0) { include = \"active\"; }\n var queries = new Map();\n var queryNamesAndDocs = new Map();\n var legacyQueryOptions = new Set();\n if (Array.isArray(include)) {\n include.forEach(function (desc) {\n if (typeof desc === \"string\") {\n queryNamesAndDocs.set(desc, false);\n }\n else if (isDocumentNode(desc)) {\n queryNamesAndDocs.set(_this.transform(desc).document, false);\n }\n else if (isNonNullObject(desc) && desc.query) {\n legacyQueryOptions.add(desc);\n }\n });\n }\n this.queries.forEach(function (_a, queryId) {\n var oq = _a.observableQuery, document = _a.document;\n if (oq) {\n if (include === \"all\") {\n queries.set(queryId, oq);\n return;\n }\n var queryName = oq.queryName, fetchPolicy = oq.options.fetchPolicy;\n if (fetchPolicy === \"standby\" ||\n (include === \"active\" && !oq.hasObservers())) {\n return;\n }\n if (include === \"active\" ||\n (queryName && queryNamesAndDocs.has(queryName)) ||\n (document && queryNamesAndDocs.has(document))) {\n queries.set(queryId, oq);\n if (queryName)\n queryNamesAndDocs.set(queryName, true);\n if (document)\n queryNamesAndDocs.set(document, true);\n }\n }\n });\n if (legacyQueryOptions.size) {\n legacyQueryOptions.forEach(function (options) {\n var queryId = makeUniqueId(\"legacyOneTimeQuery\");\n var queryInfo = _this.getQuery(queryId).init({\n document: options.query,\n variables: options.variables,\n });\n var oq = new ObservableQuery({\n queryManager: _this,\n queryInfo: queryInfo,\n options: __assign(__assign({}, options), { fetchPolicy: \"network-only\" }),\n });\n invariant(oq.queryId === queryId);\n queryInfo.setObservableQuery(oq);\n queries.set(queryId, oq);\n });\n }\n if (__DEV__ && queryNamesAndDocs.size) {\n queryNamesAndDocs.forEach(function (included, nameOrDoc) {\n if (!included) {\n __DEV__ && invariant.warn(\"Unknown query \".concat(typeof nameOrDoc === \"string\" ? \"named \" : \"\").concat(JSON.stringify(nameOrDoc, null, 2), \" requested in refetchQueries options.include array\"));\n }\n });\n }\n return queries;\n };\n QueryManager.prototype.reFetchObservableQueries = function (includeStandby) {\n var _this = this;\n if (includeStandby === void 0) { includeStandby = false; }\n var observableQueryPromises = [];\n this.getObservableQueries(includeStandby ? \"all\" : \"active\").forEach(function (observableQuery, queryId) {\n var fetchPolicy = observableQuery.options.fetchPolicy;\n observableQuery.resetLastResults();\n if (includeStandby ||\n (fetchPolicy !== \"standby\" &&\n fetchPolicy !== \"cache-only\")) {\n observableQueryPromises.push(observableQuery.refetch());\n }\n _this.getQuery(queryId).setDiff(null);\n });\n this.broadcastQueries();\n return Promise.all(observableQueryPromises);\n };\n QueryManager.prototype.setObservableQuery = function (observableQuery) {\n this.getQuery(observableQuery.queryId).setObservableQuery(observableQuery);\n };\n QueryManager.prototype.startGraphQLSubscription = function (_a) {\n var _this = this;\n var query = _a.query, fetchPolicy = _a.fetchPolicy, errorPolicy = _a.errorPolicy, variables = _a.variables, _b = _a.context, context = _b === void 0 ? {} : _b;\n query = this.transform(query).document;\n variables = this.getVariables(query, variables);\n var makeObservable = function (variables) {\n return _this.getObservableFromLink(query, context, variables).map(function (result) {\n if (fetchPolicy !== 'no-cache') {\n if (shouldWriteResult(result, errorPolicy)) {\n _this.cache.write({\n query: query,\n result: result.data,\n dataId: 'ROOT_SUBSCRIPTION',\n variables: variables,\n });\n }\n _this.broadcastQueries();\n }\n if (graphQLResultHasError(result)) {\n throw new ApolloError({\n graphQLErrors: result.errors,\n });\n }\n return result;\n });\n };\n if (this.transform(query).hasClientExports) {\n var observablePromise_1 = this.localState.addExportedVariables(query, variables, context).then(makeObservable);\n return new Observable(function (observer) {\n var sub = null;\n observablePromise_1.then(function (observable) { return sub = observable.subscribe(observer); }, observer.error);\n return function () { return sub && sub.unsubscribe(); };\n });\n }\n return makeObservable(variables);\n };\n QueryManager.prototype.stopQuery = function (queryId) {\n this.stopQueryNoBroadcast(queryId);\n this.broadcastQueries();\n };\n QueryManager.prototype.stopQueryNoBroadcast = function (queryId) {\n this.stopQueryInStoreNoBroadcast(queryId);\n this.removeQuery(queryId);\n };\n QueryManager.prototype.removeQuery = function (queryId) {\n this.fetchCancelFns.delete(queryId);\n if (this.queries.has(queryId)) {\n this.getQuery(queryId).stop();\n this.queries.delete(queryId);\n }\n };\n QueryManager.prototype.broadcastQueries = function () {\n if (this.onBroadcast)\n this.onBroadcast();\n this.queries.forEach(function (info) { return info.notify(); });\n };\n QueryManager.prototype.getLocalState = function () {\n return this.localState;\n };\n QueryManager.prototype.getObservableFromLink = function (query, context, variables, deduplication) {\n var _this = this;\n var _a;\n if (deduplication === void 0) { deduplication = (_a = context === null || context === void 0 ? void 0 : context.queryDeduplication) !== null && _a !== void 0 ? _a : this.queryDeduplication; }\n var observable;\n var serverQuery = this.transform(query).serverQuery;\n if (serverQuery) {\n var _b = this, inFlightLinkObservables_1 = _b.inFlightLinkObservables, link = _b.link;\n var operation = {\n query: serverQuery,\n variables: variables,\n operationName: getOperationName(serverQuery) || void 0,\n context: this.prepareContext(__assign(__assign({}, context), { forceFetch: !deduplication })),\n };\n context = operation.context;\n if (deduplication) {\n var byVariables_1 = inFlightLinkObservables_1.get(serverQuery) || new Map();\n inFlightLinkObservables_1.set(serverQuery, byVariables_1);\n var varJson_1 = canonicalStringify(variables);\n observable = byVariables_1.get(varJson_1);\n if (!observable) {\n var concast = new Concast([\n execute(link, operation)\n ]);\n byVariables_1.set(varJson_1, observable = concast);\n concast.cleanup(function () {\n if (byVariables_1.delete(varJson_1) &&\n byVariables_1.size < 1) {\n inFlightLinkObservables_1.delete(serverQuery);\n }\n });\n }\n }\n else {\n observable = new Concast([\n execute(link, operation)\n ]);\n }\n }\n else {\n observable = new Concast([\n Observable.of({ data: {} })\n ]);\n context = this.prepareContext(context);\n }\n var clientQuery = this.transform(query).clientQuery;\n if (clientQuery) {\n observable = asyncMap(observable, function (result) {\n return _this.localState.runResolvers({\n document: clientQuery,\n remoteResult: result,\n context: context,\n variables: variables,\n });\n });\n }\n return observable;\n };\n QueryManager.prototype.getResultsFromLink = function (queryInfo, cacheWriteBehavior, options) {\n var requestId = queryInfo.lastRequestId = this.generateRequestId();\n return asyncMap(this.getObservableFromLink(queryInfo.document, options.context, options.variables), function (result) {\n var hasErrors = isNonEmptyArray(result.errors);\n if (requestId >= queryInfo.lastRequestId) {\n if (hasErrors && options.errorPolicy === \"none\") {\n throw queryInfo.markError(new ApolloError({\n graphQLErrors: result.errors,\n }));\n }\n queryInfo.markResult(result, options, cacheWriteBehavior);\n queryInfo.markReady();\n }\n var aqr = {\n data: result.data,\n loading: false,\n networkStatus: NetworkStatus.ready,\n };\n if (hasErrors && options.errorPolicy !== \"ignore\") {\n aqr.errors = result.errors;\n aqr.networkStatus = NetworkStatus.error;\n }\n return aqr;\n }, function (networkError) {\n var error = isApolloError(networkError)\n ? networkError\n : new ApolloError({ networkError: networkError });\n if (requestId >= queryInfo.lastRequestId) {\n queryInfo.markError(error);\n }\n throw error;\n });\n };\n QueryManager.prototype.fetchQueryObservable = function (queryId, options, networkStatus) {\n var _this = this;\n if (networkStatus === void 0) { networkStatus = NetworkStatus.loading; }\n var query = this.transform(options.query).document;\n var variables = this.getVariables(query, options.variables);\n var queryInfo = this.getQuery(queryId);\n var defaults = this.defaultOptions.watchQuery;\n var _a = options.fetchPolicy, fetchPolicy = _a === void 0 ? defaults && defaults.fetchPolicy || \"cache-first\" : _a, _b = options.errorPolicy, errorPolicy = _b === void 0 ? defaults && defaults.errorPolicy || \"none\" : _b, _c = options.returnPartialData, returnPartialData = _c === void 0 ? false : _c, _d = options.notifyOnNetworkStatusChange, notifyOnNetworkStatusChange = _d === void 0 ? false : _d, _e = options.context, context = _e === void 0 ? {} : _e;\n var normalized = Object.assign({}, options, {\n query: query,\n variables: variables,\n fetchPolicy: fetchPolicy,\n errorPolicy: errorPolicy,\n returnPartialData: returnPartialData,\n notifyOnNetworkStatusChange: notifyOnNetworkStatusChange,\n context: context,\n });\n var fromVariables = function (variables) {\n normalized.variables = variables;\n var concastSources = _this.fetchQueryByPolicy(queryInfo, normalized, networkStatus);\n if (normalized.fetchPolicy !== \"standby\" &&\n concastSources.length > 0 &&\n queryInfo.observableQuery) {\n queryInfo.observableQuery[\"applyNextFetchPolicy\"](\"after-fetch\", options);\n }\n return concastSources;\n };\n var cleanupCancelFn = function () { return _this.fetchCancelFns.delete(queryId); };\n this.fetchCancelFns.set(queryId, function (reason) {\n cleanupCancelFn();\n setTimeout(function () { return concast.cancel(reason); });\n });\n var concast = new Concast(this.transform(normalized.query).hasClientExports\n ? this.localState.addExportedVariables(normalized.query, normalized.variables, normalized.context).then(fromVariables)\n : fromVariables(normalized.variables));\n concast.promise.then(cleanupCancelFn, cleanupCancelFn);\n return concast;\n };\n QueryManager.prototype.refetchQueries = function (_a) {\n var _this = this;\n var updateCache = _a.updateCache, include = _a.include, _b = _a.optimistic, optimistic = _b === void 0 ? false : _b, _c = _a.removeOptimistic, removeOptimistic = _c === void 0 ? optimistic ? makeUniqueId(\"refetchQueries\") : void 0 : _c, onQueryUpdated = _a.onQueryUpdated;\n var includedQueriesById = new Map();\n if (include) {\n this.getObservableQueries(include).forEach(function (oq, queryId) {\n includedQueriesById.set(queryId, {\n oq: oq,\n lastDiff: _this.getQuery(queryId).getDiff(),\n });\n });\n }\n var results = new Map;\n if (updateCache) {\n this.cache.batch({\n update: updateCache,\n optimistic: optimistic && removeOptimistic || false,\n removeOptimistic: removeOptimistic,\n onWatchUpdated: function (watch, diff, lastDiff) {\n var oq = watch.watcher instanceof QueryInfo &&\n watch.watcher.observableQuery;\n if (oq) {\n if (onQueryUpdated) {\n includedQueriesById.delete(oq.queryId);\n var result = onQueryUpdated(oq, diff, lastDiff);\n if (result === true) {\n result = oq.refetch();\n }\n if (result !== false) {\n results.set(oq, result);\n }\n return result;\n }\n if (onQueryUpdated !== null) {\n includedQueriesById.set(oq.queryId, { oq: oq, lastDiff: lastDiff, diff: diff });\n }\n }\n },\n });\n }\n if (includedQueriesById.size) {\n includedQueriesById.forEach(function (_a, queryId) {\n var oq = _a.oq, lastDiff = _a.lastDiff, diff = _a.diff;\n var result;\n if (onQueryUpdated) {\n if (!diff) {\n var info = oq[\"queryInfo\"];\n info.reset();\n diff = info.getDiff();\n }\n result = onQueryUpdated(oq, diff, lastDiff);\n }\n if (!onQueryUpdated || result === true) {\n result = oq.refetch();\n }\n if (result !== false) {\n results.set(oq, result);\n }\n if (queryId.indexOf(\"legacyOneTimeQuery\") >= 0) {\n _this.stopQueryNoBroadcast(queryId);\n }\n });\n }\n if (removeOptimistic) {\n this.cache.removeOptimistic(removeOptimistic);\n }\n return results;\n };\n QueryManager.prototype.fetchQueryByPolicy = function (queryInfo, _a, networkStatus) {\n var _this = this;\n var query = _a.query, variables = _a.variables, fetchPolicy = _a.fetchPolicy, refetchWritePolicy = _a.refetchWritePolicy, errorPolicy = _a.errorPolicy, returnPartialData = _a.returnPartialData, context = _a.context, notifyOnNetworkStatusChange = _a.notifyOnNetworkStatusChange;\n var oldNetworkStatus = queryInfo.networkStatus;\n queryInfo.init({\n document: this.transform(query).document,\n variables: variables,\n networkStatus: networkStatus,\n });\n var readCache = function () { return queryInfo.getDiff(variables); };\n var resultsFromCache = function (diff, networkStatus) {\n if (networkStatus === void 0) { networkStatus = queryInfo.networkStatus || NetworkStatus.loading; }\n var data = diff.result;\n if (__DEV__ &&\n !returnPartialData &&\n !equal(data, {})) {\n logMissingFieldErrors(diff.missing);\n }\n var fromData = function (data) { return Observable.of(__assign({ data: data, loading: isNetworkRequestInFlight(networkStatus), networkStatus: networkStatus }, (diff.complete ? null : { partial: true }))); };\n if (data && _this.transform(query).hasForcedResolvers) {\n return _this.localState.runResolvers({\n document: query,\n remoteResult: { data: data },\n context: context,\n variables: variables,\n onlyRunForcedResolvers: true,\n }).then(function (resolved) { return fromData(resolved.data || void 0); });\n }\n return fromData(data);\n };\n var cacheWriteBehavior = fetchPolicy === \"no-cache\" ? 0 :\n (networkStatus === NetworkStatus.refetch &&\n refetchWritePolicy !== \"merge\") ? 1\n : 2;\n var resultsFromLink = function () { return _this.getResultsFromLink(queryInfo, cacheWriteBehavior, {\n variables: variables,\n context: context,\n fetchPolicy: fetchPolicy,\n errorPolicy: errorPolicy,\n }); };\n var shouldNotify = notifyOnNetworkStatusChange &&\n typeof oldNetworkStatus === \"number\" &&\n oldNetworkStatus !== networkStatus &&\n isNetworkRequestInFlight(networkStatus);\n switch (fetchPolicy) {\n default:\n case \"cache-first\": {\n var diff = readCache();\n if (diff.complete) {\n return [\n resultsFromCache(diff, queryInfo.markReady()),\n ];\n }\n if (returnPartialData || shouldNotify) {\n return [\n resultsFromCache(diff),\n resultsFromLink(),\n ];\n }\n return [\n resultsFromLink(),\n ];\n }\n case \"cache-and-network\": {\n var diff = readCache();\n if (diff.complete || returnPartialData || shouldNotify) {\n return [\n resultsFromCache(diff),\n resultsFromLink(),\n ];\n }\n return [\n resultsFromLink(),\n ];\n }\n case \"cache-only\":\n return [\n resultsFromCache(readCache(), queryInfo.markReady()),\n ];\n case \"network-only\":\n if (shouldNotify) {\n return [\n resultsFromCache(readCache()),\n resultsFromLink(),\n ];\n }\n return [resultsFromLink()];\n case \"no-cache\":\n if (shouldNotify) {\n return [\n resultsFromCache(queryInfo.getDiff()),\n resultsFromLink(),\n ];\n }\n return [resultsFromLink()];\n case \"standby\":\n return [];\n }\n };\n QueryManager.prototype.getQuery = function (queryId) {\n if (queryId && !this.queries.has(queryId)) {\n this.queries.set(queryId, new QueryInfo(this, queryId));\n }\n return this.queries.get(queryId);\n };\n QueryManager.prototype.prepareContext = function (context) {\n if (context === void 0) { context = {}; }\n var newContext = this.localState.prepareContext(context);\n return __assign(__assign({}, newContext), { clientAwareness: this.clientAwareness });\n };\n return QueryManager;\n}());\nexport { QueryManager };\n//# sourceMappingURL=QueryManager.js.map","import { __assign } from \"tslib\";\nimport { invariant, InvariantError } from \"../utilities/globals/index.js\";\nimport { ApolloLink, execute } from \"../link/core/index.js\";\nimport { version } from \"../version.js\";\nimport { HttpLink } from \"../link/http/index.js\";\nimport { QueryManager } from \"./QueryManager.js\";\nimport { LocalState, } from \"./LocalState.js\";\nvar hasSuggestedDevtools = false;\nimport { mergeOptions } from \"../utilities/index.js\";\nexport { mergeOptions };\nvar ApolloClient = (function () {\n function ApolloClient(options) {\n var _this = this;\n this.resetStoreCallbacks = [];\n this.clearStoreCallbacks = [];\n var uri = options.uri, credentials = options.credentials, headers = options.headers, cache = options.cache, _a = options.ssrMode, ssrMode = _a === void 0 ? false : _a, _b = options.ssrForceFetchDelay, ssrForceFetchDelay = _b === void 0 ? 0 : _b, _c = options.connectToDevTools, connectToDevTools = _c === void 0 ? typeof window === 'object' &&\n !window.__APOLLO_CLIENT__ &&\n __DEV__ : _c, _d = options.queryDeduplication, queryDeduplication = _d === void 0 ? true : _d, defaultOptions = options.defaultOptions, _e = options.assumeImmutableResults, assumeImmutableResults = _e === void 0 ? false : _e, resolvers = options.resolvers, typeDefs = options.typeDefs, fragmentMatcher = options.fragmentMatcher, clientAwarenessName = options.name, clientAwarenessVersion = options.version;\n var link = options.link;\n if (!link) {\n link = uri\n ? new HttpLink({ uri: uri, credentials: credentials, headers: headers })\n : ApolloLink.empty();\n }\n if (!cache) {\n throw __DEV__ ? new InvariantError(\"To initialize Apollo Client, you must specify a 'cache' property \" +\n \"in the options object. \\n\" +\n \"For more information, please visit: https://go.apollo.dev/c/docs\") : new InvariantError(7);\n }\n this.link = link;\n this.cache = cache;\n this.disableNetworkFetches = ssrMode || ssrForceFetchDelay > 0;\n this.queryDeduplication = queryDeduplication;\n this.defaultOptions = defaultOptions || Object.create(null);\n this.typeDefs = typeDefs;\n if (ssrForceFetchDelay) {\n setTimeout(function () { return (_this.disableNetworkFetches = false); }, ssrForceFetchDelay);\n }\n this.watchQuery = this.watchQuery.bind(this);\n this.query = this.query.bind(this);\n this.mutate = this.mutate.bind(this);\n this.resetStore = this.resetStore.bind(this);\n this.reFetchObservableQueries = this.reFetchObservableQueries.bind(this);\n if (connectToDevTools && typeof window === 'object') {\n window.__APOLLO_CLIENT__ = this;\n }\n if (!hasSuggestedDevtools && __DEV__) {\n hasSuggestedDevtools = true;\n if (typeof window !== 'undefined' &&\n window.document &&\n window.top === window.self &&\n !window.__APOLLO_DEVTOOLS_GLOBAL_HOOK__) {\n var nav = window.navigator;\n var ua = nav && nav.userAgent;\n var url = void 0;\n if (typeof ua === \"string\") {\n if (ua.indexOf(\"Chrome/\") > -1) {\n url = \"https://chrome.google.com/webstore/detail/\" +\n \"apollo-client-developer-t/jdkknkkbebbapilgoeccciglkfbmbnfm\";\n }\n else if (ua.indexOf(\"Firefox/\") > -1) {\n url = \"https://addons.mozilla.org/en-US/firefox/addon/apollo-developer-tools/\";\n }\n }\n if (url) {\n __DEV__ && invariant.log(\"Download the Apollo DevTools for a better development \" +\n \"experience: \" + url);\n }\n }\n }\n this.version = version;\n this.localState = new LocalState({\n cache: cache,\n client: this,\n resolvers: resolvers,\n fragmentMatcher: fragmentMatcher,\n });\n this.queryManager = new QueryManager({\n cache: this.cache,\n link: this.link,\n defaultOptions: this.defaultOptions,\n queryDeduplication: queryDeduplication,\n ssrMode: ssrMode,\n clientAwareness: {\n name: clientAwarenessName,\n version: clientAwarenessVersion,\n },\n localState: this.localState,\n assumeImmutableResults: assumeImmutableResults,\n onBroadcast: connectToDevTools ? function () {\n if (_this.devToolsHookCb) {\n _this.devToolsHookCb({\n action: {},\n state: {\n queries: _this.queryManager.getQueryStore(),\n mutations: _this.queryManager.mutationStore || {},\n },\n dataWithOptimisticResults: _this.cache.extract(true),\n });\n }\n } : void 0,\n });\n }\n ApolloClient.prototype.stop = function () {\n this.queryManager.stop();\n };\n ApolloClient.prototype.watchQuery = function (options) {\n if (this.defaultOptions.watchQuery) {\n options = mergeOptions(this.defaultOptions.watchQuery, options);\n }\n if (this.disableNetworkFetches &&\n (options.fetchPolicy === 'network-only' ||\n options.fetchPolicy === 'cache-and-network')) {\n options = __assign(__assign({}, options), { fetchPolicy: 'cache-first' });\n }\n return this.queryManager.watchQuery(options);\n };\n ApolloClient.prototype.query = function (options) {\n if (this.defaultOptions.query) {\n options = mergeOptions(this.defaultOptions.query, options);\n }\n __DEV__ ? invariant(options.fetchPolicy !== 'cache-and-network', 'The cache-and-network fetchPolicy does not work with client.query, because ' +\n 'client.query can only return a single result. Please use client.watchQuery ' +\n 'to receive multiple results from the cache and the network, or consider ' +\n 'using a different fetchPolicy, such as cache-first or network-only.') : invariant(options.fetchPolicy !== 'cache-and-network', 8);\n if (this.disableNetworkFetches && options.fetchPolicy === 'network-only') {\n options = __assign(__assign({}, options), { fetchPolicy: 'cache-first' });\n }\n return this.queryManager.query(options);\n };\n ApolloClient.prototype.mutate = function (options) {\n if (this.defaultOptions.mutate) {\n options = mergeOptions(this.defaultOptions.mutate, options);\n }\n return this.queryManager.mutate(options);\n };\n ApolloClient.prototype.subscribe = function (options) {\n return this.queryManager.startGraphQLSubscription(options);\n };\n ApolloClient.prototype.readQuery = function (options, optimistic) {\n if (optimistic === void 0) { optimistic = false; }\n return this.cache.readQuery(options, optimistic);\n };\n ApolloClient.prototype.readFragment = function (options, optimistic) {\n if (optimistic === void 0) { optimistic = false; }\n return this.cache.readFragment(options, optimistic);\n };\n ApolloClient.prototype.writeQuery = function (options) {\n this.cache.writeQuery(options);\n this.queryManager.broadcastQueries();\n };\n ApolloClient.prototype.writeFragment = function (options) {\n this.cache.writeFragment(options);\n this.queryManager.broadcastQueries();\n };\n ApolloClient.prototype.__actionHookForDevTools = function (cb) {\n this.devToolsHookCb = cb;\n };\n ApolloClient.prototype.__requestRaw = function (payload) {\n return execute(this.link, payload);\n };\n ApolloClient.prototype.resetStore = function () {\n var _this = this;\n return Promise.resolve()\n .then(function () { return _this.queryManager.clearStore({\n discardWatches: false,\n }); })\n .then(function () { return Promise.all(_this.resetStoreCallbacks.map(function (fn) { return fn(); })); })\n .then(function () { return _this.reFetchObservableQueries(); });\n };\n ApolloClient.prototype.clearStore = function () {\n var _this = this;\n return Promise.resolve()\n .then(function () { return _this.queryManager.clearStore({\n discardWatches: true,\n }); })\n .then(function () { return Promise.all(_this.clearStoreCallbacks.map(function (fn) { return fn(); })); });\n };\n ApolloClient.prototype.onResetStore = function (cb) {\n var _this = this;\n this.resetStoreCallbacks.push(cb);\n return function () {\n _this.resetStoreCallbacks = _this.resetStoreCallbacks.filter(function (c) { return c !== cb; });\n };\n };\n ApolloClient.prototype.onClearStore = function (cb) {\n var _this = this;\n this.clearStoreCallbacks.push(cb);\n return function () {\n _this.clearStoreCallbacks = _this.clearStoreCallbacks.filter(function (c) { return c !== cb; });\n };\n };\n ApolloClient.prototype.reFetchObservableQueries = function (includeStandby) {\n return this.queryManager.reFetchObservableQueries(includeStandby);\n };\n ApolloClient.prototype.refetchQueries = function (options) {\n var map = this.queryManager.refetchQueries(options);\n var queries = [];\n var results = [];\n map.forEach(function (result, obsQuery) {\n queries.push(obsQuery);\n results.push(result);\n });\n var result = Promise.all(results);\n result.queries = queries;\n result.results = results;\n result.catch(function (error) {\n __DEV__ && invariant.debug(\"In client.refetchQueries, Promise.all promise rejected with error \".concat(error));\n });\n return result;\n };\n ApolloClient.prototype.getObservableQueries = function (include) {\n if (include === void 0) { include = \"active\"; }\n return this.queryManager.getObservableQueries(include);\n };\n ApolloClient.prototype.extract = function (optimistic) {\n return this.cache.extract(optimistic);\n };\n ApolloClient.prototype.restore = function (serializedState) {\n return this.cache.restore(serializedState);\n };\n ApolloClient.prototype.addResolvers = function (resolvers) {\n this.localState.addResolvers(resolvers);\n };\n ApolloClient.prototype.setResolvers = function (resolvers) {\n this.localState.setResolvers(resolvers);\n };\n ApolloClient.prototype.getResolvers = function () {\n return this.localState.getResolvers();\n };\n ApolloClient.prototype.setLocalStateFragmentMatcher = function (fragmentMatcher) {\n this.localState.setFragmentMatcher(fragmentMatcher);\n };\n ApolloClient.prototype.setLink = function (newLink) {\n this.link = this.queryManager.link = newLink;\n };\n return ApolloClient;\n}());\nexport { ApolloClient };\n//# sourceMappingURL=ApolloClient.js.map","export var version = '3.6.9';\n//# sourceMappingURL=version.js.map","export var NetworkStatus;\n(function (NetworkStatus) {\n NetworkStatus[NetworkStatus[\"loading\"] = 1] = \"loading\";\n NetworkStatus[NetworkStatus[\"setVariables\"] = 2] = \"setVariables\";\n NetworkStatus[NetworkStatus[\"fetchMore\"] = 3] = \"fetchMore\";\n NetworkStatus[NetworkStatus[\"refetch\"] = 4] = \"refetch\";\n NetworkStatus[NetworkStatus[\"poll\"] = 6] = \"poll\";\n NetworkStatus[NetworkStatus[\"ready\"] = 7] = \"ready\";\n NetworkStatus[NetworkStatus[\"error\"] = 8] = \"error\";\n})(NetworkStatus || (NetworkStatus = {}));\nexport function isNetworkRequestInFlight(networkStatus) {\n return networkStatus ? networkStatus < 7 : false;\n}\n//# sourceMappingURL=networkStatus.js.map","import { __extends } from \"tslib\";\nimport \"../utilities/globals/index.js\";\nimport { isNonEmptyArray } from \"../utilities/index.js\";\nexport function isApolloError(err) {\n return err.hasOwnProperty('graphQLErrors');\n}\nvar generateErrorMessage = function (err) {\n var message = '';\n if (isNonEmptyArray(err.graphQLErrors) || isNonEmptyArray(err.clientErrors)) {\n var errors = (err.graphQLErrors || [])\n .concat(err.clientErrors || []);\n errors.forEach(function (error) {\n var errorMessage = error\n ? error.message\n : 'Error message not found.';\n message += \"\".concat(errorMessage, \"\\n\");\n });\n }\n if (err.networkError) {\n message += \"\".concat(err.networkError.message, \"\\n\");\n }\n message = message.replace(/\\n$/, '');\n return message;\n};\nvar ApolloError = (function (_super) {\n __extends(ApolloError, _super);\n function ApolloError(_a) {\n var graphQLErrors = _a.graphQLErrors, clientErrors = _a.clientErrors, networkError = _a.networkError, errorMessage = _a.errorMessage, extraInfo = _a.extraInfo;\n var _this = _super.call(this, errorMessage) || this;\n _this.graphQLErrors = graphQLErrors || [];\n _this.clientErrors = clientErrors || [];\n _this.networkError = networkError || null;\n _this.message = errorMessage || generateErrorMessage(_this);\n _this.extraInfo = extraInfo;\n _this.__proto__ = ApolloError.prototype;\n return _this;\n }\n return ApolloError;\n}(Error));\nexport { ApolloError };\n//# sourceMappingURL=index.js.map","import { __extends } from \"tslib\";\nimport { InvariantError, invariant } from \"../../utilities/globals/index.js\";\nimport { Observable } from \"../../utilities/index.js\";\nimport { validateOperation, createOperation, transformOperation, } from \"../utils/index.js\";\nfunction passthrough(op, forward) {\n return (forward ? forward(op) : Observable.of());\n}\nfunction toLink(handler) {\n return typeof handler === 'function' ? new ApolloLink(handler) : handler;\n}\nfunction isTerminating(link) {\n return link.request.length <= 1;\n}\nvar LinkError = (function (_super) {\n __extends(LinkError, _super);\n function LinkError(message, link) {\n var _this = _super.call(this, message) || this;\n _this.link = link;\n return _this;\n }\n return LinkError;\n}(Error));\nvar ApolloLink = (function () {\n function ApolloLink(request) {\n if (request)\n this.request = request;\n }\n ApolloLink.empty = function () {\n return new ApolloLink(function () { return Observable.of(); });\n };\n ApolloLink.from = function (links) {\n if (links.length === 0)\n return ApolloLink.empty();\n return links.map(toLink).reduce(function (x, y) { return x.concat(y); });\n };\n ApolloLink.split = function (test, left, right) {\n var leftLink = toLink(left);\n var rightLink = toLink(right || new ApolloLink(passthrough));\n if (isTerminating(leftLink) && isTerminating(rightLink)) {\n return new ApolloLink(function (operation) {\n return test(operation)\n ? leftLink.request(operation) || Observable.of()\n : rightLink.request(operation) || Observable.of();\n });\n }\n else {\n return new ApolloLink(function (operation, forward) {\n return test(operation)\n ? leftLink.request(operation, forward) || Observable.of()\n : rightLink.request(operation, forward) || Observable.of();\n });\n }\n };\n ApolloLink.execute = function (link, operation) {\n return (link.request(createOperation(operation.context, transformOperation(validateOperation(operation)))) || Observable.of());\n };\n ApolloLink.concat = function (first, second) {\n var firstLink = toLink(first);\n if (isTerminating(firstLink)) {\n __DEV__ && invariant.warn(new LinkError(\"You are calling concat on a terminating link, which will have no effect\", firstLink));\n return firstLink;\n }\n var nextLink = toLink(second);\n if (isTerminating(nextLink)) {\n return new ApolloLink(function (operation) {\n return firstLink.request(operation, function (op) { return nextLink.request(op) || Observable.of(); }) || Observable.of();\n });\n }\n else {\n return new ApolloLink(function (operation, forward) {\n return (firstLink.request(operation, function (op) {\n return nextLink.request(op, forward) || Observable.of();\n }) || Observable.of());\n });\n }\n };\n ApolloLink.prototype.split = function (test, left, right) {\n return this.concat(ApolloLink.split(test, left, right || new ApolloLink(passthrough)));\n };\n ApolloLink.prototype.concat = function (next) {\n return ApolloLink.concat(this, next);\n };\n ApolloLink.prototype.request = function (operation, forward) {\n throw __DEV__ ? new InvariantError('request is not implemented') : new InvariantError(19);\n };\n ApolloLink.prototype.onError = function (error, observer) {\n if (observer && observer.error) {\n observer.error(error);\n return false;\n }\n throw error;\n };\n ApolloLink.prototype.setOnError = function (fn) {\n this.onError = fn;\n return this;\n };\n return ApolloLink;\n}());\nexport { ApolloLink };\n//# sourceMappingURL=ApolloLink.js.map","import { __assign } from \"tslib\";\nexport function createOperation(starting, operation) {\n var context = __assign({}, starting);\n var setContext = function (next) {\n if (typeof next === 'function') {\n context = __assign(__assign({}, context), next(context));\n }\n else {\n context = __assign(__assign({}, context), next);\n }\n };\n var getContext = function () { return (__assign({}, context)); };\n Object.defineProperty(operation, 'setContext', {\n enumerable: false,\n value: setContext,\n });\n Object.defineProperty(operation, 'getContext', {\n enumerable: false,\n value: getContext,\n });\n return operation;\n}\n//# sourceMappingURL=createOperation.js.map","import { getOperationName } from \"../../utilities/index.js\";\nexport function transformOperation(operation) {\n var transformedOperation = {\n variables: operation.variables || {},\n extensions: operation.extensions || {},\n operationName: operation.operationName,\n query: operation.query,\n };\n if (!transformedOperation.operationName) {\n transformedOperation.operationName =\n typeof transformedOperation.query !== 'string'\n ? getOperationName(transformedOperation.query) || undefined\n : '';\n }\n return transformedOperation;\n}\n//# sourceMappingURL=transformOperation.js.map","import { InvariantError } from \"../../utilities/globals/index.js\";\nexport function validateOperation(operation) {\n var OPERATION_FIELDS = [\n 'query',\n 'operationName',\n 'variables',\n 'extensions',\n 'context',\n ];\n for (var _i = 0, _a = Object.keys(operation); _i < _a.length; _i++) {\n var key = _a[_i];\n if (OPERATION_FIELDS.indexOf(key) < 0) {\n throw __DEV__ ? new InvariantError(\"illegal argument: \".concat(key)) : new InvariantError(24);\n }\n }\n return operation;\n}\n//# sourceMappingURL=validateOperation.js.map","import { __extends } from \"tslib\";\nimport { Observable } from \"../../utilities/index.js\";\nimport { ApolloLink } from \"../core/index.js\";\nexport function onError(errorHandler) {\n return new ApolloLink(function (operation, forward) {\n return new Observable(function (observer) {\n var sub;\n var retriedSub;\n var retriedResult;\n try {\n sub = forward(operation).subscribe({\n next: function (result) {\n if (result.errors) {\n retriedResult = errorHandler({\n graphQLErrors: result.errors,\n response: result,\n operation: operation,\n forward: forward,\n });\n if (retriedResult) {\n retriedSub = retriedResult.subscribe({\n next: observer.next.bind(observer),\n error: observer.error.bind(observer),\n complete: observer.complete.bind(observer),\n });\n return;\n }\n }\n observer.next(result);\n },\n error: function (networkError) {\n retriedResult = errorHandler({\n operation: operation,\n networkError: networkError,\n graphQLErrors: networkError &&\n networkError.result &&\n networkError.result.errors,\n forward: forward,\n });\n if (retriedResult) {\n retriedSub = retriedResult.subscribe({\n next: observer.next.bind(observer),\n error: observer.error.bind(observer),\n complete: observer.complete.bind(observer),\n });\n return;\n }\n observer.error(networkError);\n },\n complete: function () {\n if (!retriedResult) {\n observer.complete.bind(observer)();\n }\n },\n });\n }\n catch (e) {\n errorHandler({ networkError: e, operation: operation, forward: forward });\n observer.error(e);\n }\n return function () {\n if (sub)\n sub.unsubscribe();\n if (retriedSub)\n sub.unsubscribe();\n };\n });\n });\n}\nvar ErrorLink = (function (_super) {\n __extends(ErrorLink, _super);\n function ErrorLink(errorHandler) {\n var _this = _super.call(this) || this;\n _this.link = onError(errorHandler);\n return _this;\n }\n ErrorLink.prototype.request = function (operation, forward) {\n return this.link.request(operation, forward);\n };\n return ErrorLink;\n}(ApolloLink));\nexport { ErrorLink };\n//# sourceMappingURL=index.js.map","import { InvariantError } from \"../../utilities/globals/index.js\";\nexport var serializeFetchParameter = function (p, label) {\n var serialized;\n try {\n serialized = JSON.stringify(p);\n }\n catch (e) {\n var parseError = __DEV__ ? new InvariantError(\"Network request failed. \".concat(label, \" is not serializable: \").concat(e.message)) : new InvariantError(21);\n parseError.parseError = e;\n throw parseError;\n }\n return serialized;\n};\n//# sourceMappingURL=serializeFetchParameter.js.map","export var throwServerError = function (response, result, message) {\n var error = new Error(message);\n error.name = 'ServerError';\n error.response = response;\n error.statusCode = response.status;\n error.result = result;\n throw error;\n};\n//# sourceMappingURL=throwServerError.js.map","import { throwServerError } from \"../utils/index.js\";\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nexport function parseAndCheckHttpResponse(operations) {\n return function (response) { return response\n .text()\n .then(function (bodyText) {\n try {\n return JSON.parse(bodyText);\n }\n catch (err) {\n var parseError = err;\n parseError.name = 'ServerParseError';\n parseError.response = response;\n parseError.statusCode = response.status;\n parseError.bodyText = bodyText;\n throw parseError;\n }\n })\n .then(function (result) {\n if (response.status >= 300) {\n throwServerError(response, result, \"Response not successful: Received status code \".concat(response.status));\n }\n if (!Array.isArray(result) &&\n !hasOwnProperty.call(result, 'data') &&\n !hasOwnProperty.call(result, 'errors')) {\n throwServerError(response, result, \"Server response was missing for query '\".concat(Array.isArray(operations)\n ? operations.map(function (op) { return op.operationName; })\n : operations.operationName, \"'.\"));\n }\n return result;\n }); };\n}\n//# sourceMappingURL=parseAndCheckHttpResponse.js.map","import { InvariantError } from \"../../utilities/globals/index.js\";\nexport var checkFetcher = function (fetcher) {\n if (!fetcher && typeof fetch === 'undefined') {\n throw __DEV__ ? new InvariantError(\"\\n\\\"fetch\\\" has not been found globally and no fetcher has been configured. To fix this, install a fetch package (like https://www.npmjs.com/package/cross-fetch), instantiate the fetcher, and pass it into your HttpLink constructor. For example:\\n\\nimport fetch from 'cross-fetch';\\nimport { ApolloClient, HttpLink } from '@apollo/client';\\nconst client = new ApolloClient({\\n link: new HttpLink({ uri: '/graphql', fetch })\\n});\\n \") : new InvariantError(20);\n }\n};\n//# sourceMappingURL=checkFetcher.js.map","import { visit } from \"./visitor.mjs\";\nimport { printBlockString } from \"./blockString.mjs\";\n/**\n * Converts an AST into a string, using one set of reasonable\n * formatting rules.\n */\n\nexport function print(ast) {\n return visit(ast, {\n leave: printDocASTReducer\n });\n}\nvar MAX_LINE_LENGTH = 80; // TODO: provide better type coverage in future\n\nvar printDocASTReducer = {\n Name: function Name(node) {\n return node.value;\n },\n Variable: function Variable(node) {\n return '$' + node.name;\n },\n // Document\n Document: function Document(node) {\n return join(node.definitions, '\\n\\n') + '\\n';\n },\n OperationDefinition: function OperationDefinition(node) {\n var op = node.operation;\n var name = node.name;\n var varDefs = wrap('(', join(node.variableDefinitions, ', '), ')');\n var directives = join(node.directives, ' ');\n var selectionSet = node.selectionSet; // Anonymous queries with no directives or variable definitions can use\n // the query short form.\n\n return !name && !directives && !varDefs && op === 'query' ? selectionSet : join([op, join([name, varDefs]), directives, selectionSet], ' ');\n },\n VariableDefinition: function VariableDefinition(_ref) {\n var variable = _ref.variable,\n type = _ref.type,\n defaultValue = _ref.defaultValue,\n directives = _ref.directives;\n return variable + ': ' + type + wrap(' = ', defaultValue) + wrap(' ', join(directives, ' '));\n },\n SelectionSet: function SelectionSet(_ref2) {\n var selections = _ref2.selections;\n return block(selections);\n },\n Field: function Field(_ref3) {\n var alias = _ref3.alias,\n name = _ref3.name,\n args = _ref3.arguments,\n directives = _ref3.directives,\n selectionSet = _ref3.selectionSet;\n var prefix = wrap('', alias, ': ') + name;\n var argsLine = prefix + wrap('(', join(args, ', '), ')');\n\n if (argsLine.length > MAX_LINE_LENGTH) {\n argsLine = prefix + wrap('(\\n', indent(join(args, '\\n')), '\\n)');\n }\n\n return join([argsLine, join(directives, ' '), selectionSet], ' ');\n },\n Argument: function Argument(_ref4) {\n var name = _ref4.name,\n value = _ref4.value;\n return name + ': ' + value;\n },\n // Fragments\n FragmentSpread: function FragmentSpread(_ref5) {\n var name = _ref5.name,\n directives = _ref5.directives;\n return '...' + name + wrap(' ', join(directives, ' '));\n },\n InlineFragment: function InlineFragment(_ref6) {\n var typeCondition = _ref6.typeCondition,\n directives = _ref6.directives,\n selectionSet = _ref6.selectionSet;\n return join(['...', wrap('on ', typeCondition), join(directives, ' '), selectionSet], ' ');\n },\n FragmentDefinition: function FragmentDefinition(_ref7) {\n var name = _ref7.name,\n typeCondition = _ref7.typeCondition,\n variableDefinitions = _ref7.variableDefinitions,\n directives = _ref7.directives,\n selectionSet = _ref7.selectionSet;\n return (// Note: fragment variable definitions are experimental and may be changed\n // or removed in the future.\n \"fragment \".concat(name).concat(wrap('(', join(variableDefinitions, ', '), ')'), \" \") + \"on \".concat(typeCondition, \" \").concat(wrap('', join(directives, ' '), ' ')) + selectionSet\n );\n },\n // Value\n IntValue: function IntValue(_ref8) {\n var value = _ref8.value;\n return value;\n },\n FloatValue: function FloatValue(_ref9) {\n var value = _ref9.value;\n return value;\n },\n StringValue: function StringValue(_ref10, key) {\n var value = _ref10.value,\n isBlockString = _ref10.block;\n return isBlockString ? printBlockString(value, key === 'description' ? '' : ' ') : JSON.stringify(value);\n },\n BooleanValue: function BooleanValue(_ref11) {\n var value = _ref11.value;\n return value ? 'true' : 'false';\n },\n NullValue: function NullValue() {\n return 'null';\n },\n EnumValue: function EnumValue(_ref12) {\n var value = _ref12.value;\n return value;\n },\n ListValue: function ListValue(_ref13) {\n var values = _ref13.values;\n return '[' + join(values, ', ') + ']';\n },\n ObjectValue: function ObjectValue(_ref14) {\n var fields = _ref14.fields;\n return '{' + join(fields, ', ') + '}';\n },\n ObjectField: function ObjectField(_ref15) {\n var name = _ref15.name,\n value = _ref15.value;\n return name + ': ' + value;\n },\n // Directive\n Directive: function Directive(_ref16) {\n var name = _ref16.name,\n args = _ref16.arguments;\n return '@' + name + wrap('(', join(args, ', '), ')');\n },\n // Type\n NamedType: function NamedType(_ref17) {\n var name = _ref17.name;\n return name;\n },\n ListType: function ListType(_ref18) {\n var type = _ref18.type;\n return '[' + type + ']';\n },\n NonNullType: function NonNullType(_ref19) {\n var type = _ref19.type;\n return type + '!';\n },\n // Type System Definitions\n SchemaDefinition: addDescription(function (_ref20) {\n var directives = _ref20.directives,\n operationTypes = _ref20.operationTypes;\n return join(['schema', join(directives, ' '), block(operationTypes)], ' ');\n }),\n OperationTypeDefinition: function OperationTypeDefinition(_ref21) {\n var operation = _ref21.operation,\n type = _ref21.type;\n return operation + ': ' + type;\n },\n ScalarTypeDefinition: addDescription(function (_ref22) {\n var name = _ref22.name,\n directives = _ref22.directives;\n return join(['scalar', name, join(directives, ' ')], ' ');\n }),\n ObjectTypeDefinition: addDescription(function (_ref23) {\n var name = _ref23.name,\n interfaces = _ref23.interfaces,\n directives = _ref23.directives,\n fields = _ref23.fields;\n return join(['type', name, wrap('implements ', join(interfaces, ' & ')), join(directives, ' '), block(fields)], ' ');\n }),\n FieldDefinition: addDescription(function (_ref24) {\n var name = _ref24.name,\n args = _ref24.arguments,\n type = _ref24.type,\n directives = _ref24.directives;\n return name + (hasMultilineItems(args) ? wrap('(\\n', indent(join(args, '\\n')), '\\n)') : wrap('(', join(args, ', '), ')')) + ': ' + type + wrap(' ', join(directives, ' '));\n }),\n InputValueDefinition: addDescription(function (_ref25) {\n var name = _ref25.name,\n type = _ref25.type,\n defaultValue = _ref25.defaultValue,\n directives = _ref25.directives;\n return join([name + ': ' + type, wrap('= ', defaultValue), join(directives, ' ')], ' ');\n }),\n InterfaceTypeDefinition: addDescription(function (_ref26) {\n var name = _ref26.name,\n interfaces = _ref26.interfaces,\n directives = _ref26.directives,\n fields = _ref26.fields;\n return join(['interface', name, wrap('implements ', join(interfaces, ' & ')), join(directives, ' '), block(fields)], ' ');\n }),\n UnionTypeDefinition: addDescription(function (_ref27) {\n var name = _ref27.name,\n directives = _ref27.directives,\n types = _ref27.types;\n return join(['union', name, join(directives, ' '), types && types.length !== 0 ? '= ' + join(types, ' | ') : ''], ' ');\n }),\n EnumTypeDefinition: addDescription(function (_ref28) {\n var name = _ref28.name,\n directives = _ref28.directives,\n values = _ref28.values;\n return join(['enum', name, join(directives, ' '), block(values)], ' ');\n }),\n EnumValueDefinition: addDescription(function (_ref29) {\n var name = _ref29.name,\n directives = _ref29.directives;\n return join([name, join(directives, ' ')], ' ');\n }),\n InputObjectTypeDefinition: addDescription(function (_ref30) {\n var name = _ref30.name,\n directives = _ref30.directives,\n fields = _ref30.fields;\n return join(['input', name, join(directives, ' '), block(fields)], ' ');\n }),\n DirectiveDefinition: addDescription(function (_ref31) {\n var name = _ref31.name,\n args = _ref31.arguments,\n repeatable = _ref31.repeatable,\n locations = _ref31.locations;\n return 'directive @' + name + (hasMultilineItems(args) ? wrap('(\\n', indent(join(args, '\\n')), '\\n)') : wrap('(', join(args, ', '), ')')) + (repeatable ? ' repeatable' : '') + ' on ' + join(locations, ' | ');\n }),\n SchemaExtension: function SchemaExtension(_ref32) {\n var directives = _ref32.directives,\n operationTypes = _ref32.operationTypes;\n return join(['extend schema', join(directives, ' '), block(operationTypes)], ' ');\n },\n ScalarTypeExtension: function ScalarTypeExtension(_ref33) {\n var name = _ref33.name,\n directives = _ref33.directives;\n return join(['extend scalar', name, join(directives, ' ')], ' ');\n },\n ObjectTypeExtension: function ObjectTypeExtension(_ref34) {\n var name = _ref34.name,\n interfaces = _ref34.interfaces,\n directives = _ref34.directives,\n fields = _ref34.fields;\n return join(['extend type', name, wrap('implements ', join(interfaces, ' & ')), join(directives, ' '), block(fields)], ' ');\n },\n InterfaceTypeExtension: function InterfaceTypeExtension(_ref35) {\n var name = _ref35.name,\n interfaces = _ref35.interfaces,\n directives = _ref35.directives,\n fields = _ref35.fields;\n return join(['extend interface', name, wrap('implements ', join(interfaces, ' & ')), join(directives, ' '), block(fields)], ' ');\n },\n UnionTypeExtension: function UnionTypeExtension(_ref36) {\n var name = _ref36.name,\n directives = _ref36.directives,\n types = _ref36.types;\n return join(['extend union', name, join(directives, ' '), types && types.length !== 0 ? '= ' + join(types, ' | ') : ''], ' ');\n },\n EnumTypeExtension: function EnumTypeExtension(_ref37) {\n var name = _ref37.name,\n directives = _ref37.directives,\n values = _ref37.values;\n return join(['extend enum', name, join(directives, ' '), block(values)], ' ');\n },\n InputObjectTypeExtension: function InputObjectTypeExtension(_ref38) {\n var name = _ref38.name,\n directives = _ref38.directives,\n fields = _ref38.fields;\n return join(['extend input', name, join(directives, ' '), block(fields)], ' ');\n }\n};\n\nfunction addDescription(cb) {\n return function (node) {\n return join([node.description, cb(node)], '\\n');\n };\n}\n/**\n * Given maybeArray, print an empty string if it is null or empty, otherwise\n * print all items together separated by separator if provided\n */\n\n\nfunction join(maybeArray) {\n var _maybeArray$filter$jo;\n\n var separator = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';\n return (_maybeArray$filter$jo = maybeArray === null || maybeArray === void 0 ? void 0 : maybeArray.filter(function (x) {\n return x;\n }).join(separator)) !== null && _maybeArray$filter$jo !== void 0 ? _maybeArray$filter$jo : '';\n}\n/**\n * Given array, print each item on its own line, wrapped in an\n * indented \"{ }\" block.\n */\n\n\nfunction block(array) {\n return wrap('{\\n', indent(join(array, '\\n')), '\\n}');\n}\n/**\n * If maybeString is not null or empty, then wrap with start and end, otherwise print an empty string.\n */\n\n\nfunction wrap(start, maybeString) {\n var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';\n return maybeString != null && maybeString !== '' ? start + maybeString + end : '';\n}\n\nfunction indent(str) {\n return wrap(' ', str.replace(/\\n/g, '\\n '));\n}\n\nfunction isMultiline(str) {\n return str.indexOf('\\n') !== -1;\n}\n\nfunction hasMultilineItems(maybeArray) {\n return maybeArray != null && maybeArray.some(isMultiline);\n}\n","import { __assign, __spreadArray } from \"tslib\";\nimport { print } from 'graphql';\n;\nvar defaultHttpOptions = {\n includeQuery: true,\n includeExtensions: false,\n};\nvar defaultHeaders = {\n accept: '*/*',\n 'content-type': 'application/json',\n};\nvar defaultOptions = {\n method: 'POST',\n};\nexport var fallbackHttpConfig = {\n http: defaultHttpOptions,\n headers: defaultHeaders,\n options: defaultOptions,\n};\nexport var defaultPrinter = function (ast, printer) { return printer(ast); };\nexport function selectHttpOptionsAndBody(operation, fallbackConfig) {\n var configs = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n configs[_i - 2] = arguments[_i];\n }\n configs.unshift(fallbackConfig);\n return selectHttpOptionsAndBodyInternal.apply(void 0, __spreadArray([operation,\n defaultPrinter], configs, false));\n}\nexport function selectHttpOptionsAndBodyInternal(operation, printer) {\n var configs = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n configs[_i - 2] = arguments[_i];\n }\n var options = {};\n var http = {};\n configs.forEach(function (config) {\n options = __assign(__assign(__assign({}, options), config.options), { headers: __assign(__assign({}, options.headers), headersToLowerCase(config.headers)) });\n if (config.credentials) {\n options.credentials = config.credentials;\n }\n http = __assign(__assign({}, http), config.http);\n });\n var operationName = operation.operationName, extensions = operation.extensions, variables = operation.variables, query = operation.query;\n var body = { operationName: operationName, variables: variables };\n if (http.includeExtensions)\n body.extensions = extensions;\n if (http.includeQuery)\n body.query = printer(query, print);\n return {\n options: options,\n body: body,\n };\n}\n;\nfunction headersToLowerCase(headers) {\n if (headers) {\n var normalized_1 = Object.create(null);\n Object.keys(Object(headers)).forEach(function (name) {\n normalized_1[name.toLowerCase()] = headers[name];\n });\n return normalized_1;\n }\n return headers;\n}\n//# sourceMappingURL=selectHttpOptionsAndBody.js.map","import { Observable } from \"../../utilities/index.js\";\nexport function fromError(errorValue) {\n return new Observable(function (observer) {\n observer.error(errorValue);\n });\n}\n//# sourceMappingURL=fromError.js.map","import { __assign, __rest } from \"tslib\";\nimport \"../../utilities/globals/index.js\";\nimport { visit } from 'graphql';\nimport { ApolloLink } from \"../core/index.js\";\nimport { Observable } from \"../../utilities/index.js\";\nimport { serializeFetchParameter } from \"./serializeFetchParameter.js\";\nimport { selectURI } from \"./selectURI.js\";\nimport { parseAndCheckHttpResponse } from \"./parseAndCheckHttpResponse.js\";\nimport { checkFetcher } from \"./checkFetcher.js\";\nimport { selectHttpOptionsAndBodyInternal, defaultPrinter, fallbackHttpConfig } from \"./selectHttpOptionsAndBody.js\";\nimport { createSignalIfSupported } from \"./createSignalIfSupported.js\";\nimport { rewriteURIForGET } from \"./rewriteURIForGET.js\";\nimport { fromError } from \"../utils/index.js\";\nimport { maybe } from \"../../utilities/index.js\";\nvar backupFetch = maybe(function () { return fetch; });\nexport var createHttpLink = function (linkOptions) {\n if (linkOptions === void 0) { linkOptions = {}; }\n var _a = linkOptions.uri, uri = _a === void 0 ? '/graphql' : _a, preferredFetch = linkOptions.fetch, _b = linkOptions.print, print = _b === void 0 ? defaultPrinter : _b, includeExtensions = linkOptions.includeExtensions, useGETForQueries = linkOptions.useGETForQueries, _c = linkOptions.includeUnusedVariables, includeUnusedVariables = _c === void 0 ? false : _c, requestOptions = __rest(linkOptions, [\"uri\", \"fetch\", \"print\", \"includeExtensions\", \"useGETForQueries\", \"includeUnusedVariables\"]);\n if (__DEV__) {\n checkFetcher(preferredFetch || backupFetch);\n }\n var linkConfig = {\n http: { includeExtensions: includeExtensions },\n options: requestOptions.fetchOptions,\n credentials: requestOptions.credentials,\n headers: requestOptions.headers,\n };\n return new ApolloLink(function (operation) {\n var chosenURI = selectURI(operation, uri);\n var context = operation.getContext();\n var clientAwarenessHeaders = {};\n if (context.clientAwareness) {\n var _a = context.clientAwareness, name_1 = _a.name, version = _a.version;\n if (name_1) {\n clientAwarenessHeaders['apollographql-client-name'] = name_1;\n }\n if (version) {\n clientAwarenessHeaders['apollographql-client-version'] = version;\n }\n }\n var contextHeaders = __assign(__assign({}, clientAwarenessHeaders), context.headers);\n var contextConfig = {\n http: context.http,\n options: context.fetchOptions,\n credentials: context.credentials,\n headers: contextHeaders,\n };\n var _b = selectHttpOptionsAndBodyInternal(operation, print, fallbackHttpConfig, linkConfig, contextConfig), options = _b.options, body = _b.body;\n if (body.variables && !includeUnusedVariables) {\n var unusedNames_1 = new Set(Object.keys(body.variables));\n visit(operation.query, {\n Variable: function (node, _key, parent) {\n if (parent && parent.kind !== 'VariableDefinition') {\n unusedNames_1.delete(node.name.value);\n }\n },\n });\n if (unusedNames_1.size) {\n body.variables = __assign({}, body.variables);\n unusedNames_1.forEach(function (name) {\n delete body.variables[name];\n });\n }\n }\n var controller;\n if (!options.signal) {\n var _c = createSignalIfSupported(), _controller = _c.controller, signal = _c.signal;\n controller = _controller;\n if (controller)\n options.signal = signal;\n }\n var definitionIsMutation = function (d) {\n return d.kind === 'OperationDefinition' && d.operation === 'mutation';\n };\n if (useGETForQueries &&\n !operation.query.definitions.some(definitionIsMutation)) {\n options.method = 'GET';\n }\n if (options.method === 'GET') {\n var _d = rewriteURIForGET(chosenURI, body), newURI = _d.newURI, parseError = _d.parseError;\n if (parseError) {\n return fromError(parseError);\n }\n chosenURI = newURI;\n }\n else {\n try {\n options.body = serializeFetchParameter(body, 'Payload');\n }\n catch (parseError) {\n return fromError(parseError);\n }\n }\n return new Observable(function (observer) {\n var currentFetch = preferredFetch || maybe(function () { return fetch; }) || backupFetch;\n currentFetch(chosenURI, options)\n .then(function (response) {\n operation.setContext({ response: response });\n return response;\n })\n .then(parseAndCheckHttpResponse(operation))\n .then(function (result) {\n observer.next(result);\n observer.complete();\n return result;\n })\n .catch(function (err) {\n if (err.name === 'AbortError')\n return;\n if (err.result && err.result.errors && err.result.data) {\n observer.next(err.result);\n }\n observer.error(err);\n });\n return function () {\n if (controller)\n controller.abort();\n };\n });\n });\n};\n//# sourceMappingURL=createHttpLink.js.map","export var selectURI = function (operation, fallbackURI) {\n var context = operation.getContext();\n var contextURI = context.uri;\n if (contextURI) {\n return contextURI;\n }\n else if (typeof fallbackURI === 'function') {\n return fallbackURI(operation);\n }\n else {\n return fallbackURI || '/graphql';\n }\n};\n//# sourceMappingURL=selectURI.js.map","export var createSignalIfSupported = function () {\n if (typeof AbortController === 'undefined')\n return { controller: false, signal: false };\n var controller = new AbortController();\n var signal = controller.signal;\n return { controller: controller, signal: signal };\n};\n//# sourceMappingURL=createSignalIfSupported.js.map","import { serializeFetchParameter } from \"./serializeFetchParameter.js\";\nexport function rewriteURIForGET(chosenURI, body) {\n var queryParams = [];\n var addQueryParam = function (key, value) {\n queryParams.push(\"\".concat(key, \"=\").concat(encodeURIComponent(value)));\n };\n if ('query' in body) {\n addQueryParam('query', body.query);\n }\n if (body.operationName) {\n addQueryParam('operationName', body.operationName);\n }\n if (body.variables) {\n var serializedVariables = void 0;\n try {\n serializedVariables = serializeFetchParameter(body.variables, 'Variables map');\n }\n catch (parseError) {\n return { parseError: parseError };\n }\n addQueryParam('variables', serializedVariables);\n }\n if (body.extensions) {\n var serializedExtensions = void 0;\n try {\n serializedExtensions = serializeFetchParameter(body.extensions, 'Extensions map');\n }\n catch (parseError) {\n return { parseError: parseError };\n }\n addQueryParam('extensions', serializedExtensions);\n }\n var fragment = '', preFragment = chosenURI;\n var fragmentStart = chosenURI.indexOf('#');\n if (fragmentStart !== -1) {\n fragment = chosenURI.substr(fragmentStart);\n preFragment = chosenURI.substr(0, fragmentStart);\n }\n var queryParamsPrefix = preFragment.indexOf('?') === -1 ? '?' : '&';\n var newURI = preFragment + queryParamsPrefix + queryParams.join('&') + fragment;\n return { newURI: newURI };\n}\n//# sourceMappingURL=rewriteURIForGET.js.map","import * as React from 'react';\nimport { canUseSymbol } from \"../../utilities/index.js\";\nvar contextKey = canUseSymbol\n ? Symbol.for('__APOLLO_CONTEXT__')\n : '__APOLLO_CONTEXT__';\nexport function getApolloContext() {\n var context = React.createContext[contextKey];\n if (!context) {\n Object.defineProperty(React.createContext, contextKey, {\n value: context = React.createContext({}),\n enumerable: false,\n writable: false,\n configurable: true,\n });\n context.displayName = 'ApolloContext';\n }\n return context;\n}\nexport { getApolloContext as resetApolloContext };\n//# sourceMappingURL=ApolloContext.js.map","import { invariant } from \"../../utilities/globals/index.js\";\nimport * as React from 'react';\nimport { getApolloContext } from \"./ApolloContext.js\";\nexport var ApolloProvider = function (_a) {\n var client = _a.client, children = _a.children;\n var ApolloContext = getApolloContext();\n return (React.createElement(ApolloContext.Consumer, null, function (context) {\n if (context === void 0) { context = {}; }\n if (client && context.client !== client) {\n context = Object.assign({}, context, { client: client });\n }\n __DEV__ ? invariant(context.client, 'ApolloProvider was not passed a client instance. Make ' +\n 'sure you pass in your client via the \"client\" prop.') : invariant(context.client, 26);\n return (React.createElement(ApolloContext.Provider, { value: context }, children));\n }));\n};\n//# sourceMappingURL=ApolloProvider.js.map","import { invariant } from \"../../utilities/globals/index.js\";\nimport { useContext } from 'react';\nimport { getApolloContext } from \"../context/index.js\";\nexport function useApolloClient(override) {\n var context = useContext(getApolloContext());\n var client = override || context.client;\n __DEV__ ? invariant(!!client, 'Could not find \"client\" in the context or passed in as an option. ' +\n 'Wrap the root component in an , or pass an ApolloClient ' +\n 'instance in via options.') : invariant(!!client, 29);\n return client;\n}\n//# sourceMappingURL=useApolloClient.js.map","import { __assign } from \"tslib\";\nimport { useCallback, useMemo, useRef } from 'react';\nimport { mergeOptions } from \"../../utilities/index.js\";\nimport { useInternalState } from \"./useQuery.js\";\nimport { useApolloClient } from \"./useApolloClient.js\";\nvar EAGER_METHODS = [\n 'refetch',\n 'reobserve',\n 'fetchMore',\n 'updateQuery',\n 'startPolling',\n 'subscribeToMore',\n];\nexport function useLazyQuery(query, options) {\n var internalState = useInternalState(useApolloClient(options && options.client), query);\n var execOptionsRef = useRef();\n var merged = execOptionsRef.current\n ? mergeOptions(options, execOptionsRef.current)\n : options;\n var useQueryResult = internalState.useQuery(__assign(__assign({}, merged), { skip: !execOptionsRef.current }));\n var initialFetchPolicy = useQueryResult.observable.options.initialFetchPolicy ||\n internalState.getDefaultFetchPolicy();\n var result = Object.assign(useQueryResult, {\n called: !!execOptionsRef.current,\n });\n var eagerMethods = useMemo(function () {\n var eagerMethods = {};\n var _loop_1 = function (key) {\n var method = result[key];\n eagerMethods[key] = function () {\n if (!execOptionsRef.current) {\n execOptionsRef.current = Object.create(null);\n internalState.forceUpdate();\n }\n return method.apply(this, arguments);\n };\n };\n for (var _i = 0, EAGER_METHODS_1 = EAGER_METHODS; _i < EAGER_METHODS_1.length; _i++) {\n var key = EAGER_METHODS_1[_i];\n _loop_1(key);\n }\n return eagerMethods;\n }, []);\n Object.assign(result, eagerMethods);\n var execute = useCallback(function (executeOptions) {\n execOptionsRef.current = executeOptions ? __assign(__assign({}, executeOptions), { fetchPolicy: executeOptions.fetchPolicy || initialFetchPolicy }) : {\n fetchPolicy: initialFetchPolicy,\n };\n var promise = internalState\n .asyncUpdate()\n .then(function (queryResult) { return Object.assign(queryResult, eagerMethods); });\n promise.catch(function () { });\n return promise;\n }, []);\n return [execute, result];\n}\n//# sourceMappingURL=useLazyQuery.js.map","import { __assign } from \"tslib\";\nimport { useCallback, useEffect, useRef, useState } from 'react';\nimport { mergeOptions, } from \"../../core/index.js\";\nimport { equal } from '@wry/equality';\nimport { DocumentType, verifyDocumentType } from \"../parser/index.js\";\nimport { ApolloError } from \"../../errors/index.js\";\nimport { useApolloClient } from \"./useApolloClient.js\";\nexport function useMutation(mutation, options) {\n var client = useApolloClient(options === null || options === void 0 ? void 0 : options.client);\n verifyDocumentType(mutation, DocumentType.Mutation);\n var _a = useState({\n called: false,\n loading: false,\n client: client,\n }), result = _a[0], setResult = _a[1];\n var ref = useRef({\n result: result,\n mutationId: 0,\n isMounted: true,\n client: client,\n mutation: mutation,\n options: options,\n });\n {\n Object.assign(ref.current, { client: client, options: options, mutation: mutation });\n }\n var execute = useCallback(function (executeOptions) {\n if (executeOptions === void 0) { executeOptions = {}; }\n var _a = ref.current, client = _a.client, options = _a.options, mutation = _a.mutation;\n var baseOptions = __assign(__assign({}, options), { mutation: mutation });\n if (!ref.current.result.loading && !baseOptions.ignoreResults) {\n setResult(ref.current.result = {\n loading: true,\n error: void 0,\n data: void 0,\n called: true,\n client: client,\n });\n }\n var mutationId = ++ref.current.mutationId;\n var clientOptions = mergeOptions(baseOptions, executeOptions);\n return client.mutate(clientOptions).then(function (response) {\n var _a, _b, _c;\n var data = response.data, errors = response.errors;\n var error = errors && errors.length > 0\n ? new ApolloError({ graphQLErrors: errors })\n : void 0;\n if (mutationId === ref.current.mutationId &&\n !clientOptions.ignoreResults) {\n var result_1 = {\n called: true,\n loading: false,\n data: data,\n error: error,\n client: client,\n };\n if (ref.current.isMounted && !equal(ref.current.result, result_1)) {\n setResult(ref.current.result = result_1);\n }\n }\n (_b = (_a = ref.current.options) === null || _a === void 0 ? void 0 : _a.onCompleted) === null || _b === void 0 ? void 0 : _b.call(_a, response.data);\n (_c = executeOptions.onCompleted) === null || _c === void 0 ? void 0 : _c.call(executeOptions, response.data);\n return response;\n }).catch(function (error) {\n var _a, _b, _c, _d;\n if (mutationId === ref.current.mutationId &&\n ref.current.isMounted) {\n var result_2 = {\n loading: false,\n error: error,\n data: void 0,\n called: true,\n client: client,\n };\n if (!equal(ref.current.result, result_2)) {\n setResult(ref.current.result = result_2);\n }\n }\n if (((_a = ref.current.options) === null || _a === void 0 ? void 0 : _a.onError) || clientOptions.onError) {\n (_c = (_b = ref.current.options) === null || _b === void 0 ? void 0 : _b.onError) === null || _c === void 0 ? void 0 : _c.call(_b, error);\n (_d = executeOptions.onError) === null || _d === void 0 ? void 0 : _d.call(executeOptions, error);\n return { data: void 0, errors: error };\n }\n throw error;\n });\n }, []);\n var reset = useCallback(function () {\n setResult({ called: false, loading: false, client: client });\n }, []);\n useEffect(function () {\n ref.current.isMounted = true;\n return function () {\n ref.current.isMounted = false;\n };\n }, []);\n return [execute, __assign({ reset: reset }, result)];\n}\n//# sourceMappingURL=useMutation.js.map","import { invariant } from \"../../utilities/globals/index.js\";\nimport * as React from 'react';\nimport { canUseLayoutEffect } from \"../../utilities/index.js\";\nvar didWarnUncachedGetSnapshot = false;\nvar uSESKey = \"useSyncExternalStore\";\nvar realHook = React[uSESKey];\nexport var useSyncExternalStore = realHook || (function (subscribe, getSnapshot, getServerSnapshot) {\n var value = getSnapshot();\n if (__DEV__ &&\n !didWarnUncachedGetSnapshot &&\n value !== getSnapshot()) {\n didWarnUncachedGetSnapshot = true;\n __DEV__ && invariant.error('The result of getSnapshot should be cached to avoid an infinite loop');\n }\n var _a = React.useState({ inst: { value: value, getSnapshot: getSnapshot } }), inst = _a[0].inst, forceUpdate = _a[1];\n if (canUseLayoutEffect) {\n React.useLayoutEffect(function () {\n Object.assign(inst, { value: value, getSnapshot: getSnapshot });\n if (checkIfSnapshotChanged(inst)) {\n forceUpdate({ inst: inst });\n }\n }, [subscribe, value, getSnapshot]);\n }\n else {\n Object.assign(inst, { value: value, getSnapshot: getSnapshot });\n }\n React.useEffect(function () {\n if (checkIfSnapshotChanged(inst)) {\n forceUpdate({ inst: inst });\n }\n return subscribe(function handleStoreChange() {\n if (checkIfSnapshotChanged(inst)) {\n forceUpdate({ inst: inst });\n }\n });\n }, [subscribe]);\n return value;\n});\nfunction checkIfSnapshotChanged(_a) {\n var value = _a.value, getSnapshot = _a.getSnapshot;\n try {\n return value !== getSnapshot();\n }\n catch (_b) {\n return true;\n }\n}\n//# sourceMappingURL=useSyncExternalStore.js.map","import { __assign, __rest } from \"tslib\";\nimport { invariant } from \"../../utilities/globals/index.js\";\nimport { useCallback, useContext, useMemo, useRef, useState, } from 'react';\nimport { useSyncExternalStore } from \"./useSyncExternalStore.js\";\nimport { equal } from '@wry/equality';\nimport { mergeOptions } from \"../../core/index.js\";\nimport { getApolloContext } from \"../context/index.js\";\nimport { ApolloError } from \"../../errors/index.js\";\nimport { NetworkStatus, } from \"../../core/index.js\";\nimport { DocumentType, verifyDocumentType } from \"../parser/index.js\";\nimport { useApolloClient } from \"./useApolloClient.js\";\nimport { canUseWeakMap, canUseWeakSet, compact, isNonEmptyArray, maybeDeepFreeze } from \"../../utilities/index.js\";\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nexport function useQuery(query, options) {\n if (options === void 0) { options = Object.create(null); }\n return useInternalState(useApolloClient(options.client), query).useQuery(options);\n}\nexport function useInternalState(client, query) {\n var stateRef = useRef();\n if (!stateRef.current ||\n client !== stateRef.current.client ||\n query !== stateRef.current.query) {\n stateRef.current = new InternalState(client, query, stateRef.current);\n }\n var state = stateRef.current;\n var _a = useState(0), _tick = _a[0], setTick = _a[1];\n state.forceUpdate = function () {\n setTick(function (tick) { return tick + 1; });\n };\n return state;\n}\nvar InternalState = (function () {\n function InternalState(client, query, previous) {\n this.client = client;\n this.query = query;\n this.asyncResolveFns = new Set();\n this.optionsToIgnoreOnce = new (canUseWeakSet ? WeakSet : Set)();\n this.ssrDisabledResult = maybeDeepFreeze({\n loading: true,\n data: void 0,\n error: void 0,\n networkStatus: NetworkStatus.loading,\n });\n this.skipStandbyResult = maybeDeepFreeze({\n loading: false,\n data: void 0,\n error: void 0,\n networkStatus: NetworkStatus.ready,\n });\n this.toQueryResultCache = new (canUseWeakMap ? WeakMap : Map)();\n verifyDocumentType(query, DocumentType.Query);\n var previousResult = previous && previous.result;\n var previousData = previousResult && previousResult.data;\n if (previousData) {\n this.previousData = previousData;\n }\n }\n InternalState.prototype.forceUpdate = function () {\n __DEV__ && invariant.warn(\"Calling default no-op implementation of InternalState#forceUpdate\");\n };\n InternalState.prototype.asyncUpdate = function () {\n var _this = this;\n return new Promise(function (resolve) {\n _this.asyncResolveFns.add(resolve);\n _this.optionsToIgnoreOnce.add(_this.watchQueryOptions);\n _this.forceUpdate();\n });\n };\n InternalState.prototype.useQuery = function (options) {\n var _this = this;\n this.renderPromises = useContext(getApolloContext()).renderPromises;\n this.useOptions(options);\n var obsQuery = this.useObservableQuery();\n var result = useSyncExternalStore(useCallback(function () {\n if (_this.renderPromises) {\n return function () { };\n }\n var onNext = function () {\n var previousResult = _this.result;\n var result = obsQuery.getCurrentResult();\n if (previousResult &&\n previousResult.loading === result.loading &&\n previousResult.networkStatus === result.networkStatus &&\n equal(previousResult.data, result.data)) {\n return;\n }\n _this.setResult(result);\n };\n var onError = function (error) {\n var last = obsQuery[\"last\"];\n subscription.unsubscribe();\n try {\n obsQuery.resetLastResults();\n subscription = obsQuery.subscribe(onNext, onError);\n }\n finally {\n obsQuery[\"last\"] = last;\n }\n if (!hasOwnProperty.call(error, 'graphQLErrors')) {\n throw error;\n }\n var previousResult = _this.result;\n if (!previousResult ||\n (previousResult && previousResult.loading) ||\n !equal(error, previousResult.error)) {\n _this.setResult({\n data: (previousResult && previousResult.data),\n error: error,\n loading: false,\n networkStatus: NetworkStatus.error,\n });\n }\n };\n var subscription = obsQuery.subscribe(onNext, onError);\n return function () { return subscription.unsubscribe(); };\n }, [\n obsQuery,\n this.renderPromises,\n this.client.disableNetworkFetches,\n ]), function () { return _this.getCurrentResult(); }, function () { return _this.getCurrentResult(); });\n this.unsafeHandlePartialRefetch(result);\n var queryResult = this.toQueryResult(result);\n if (!queryResult.loading && this.asyncResolveFns.size) {\n this.asyncResolveFns.forEach(function (resolve) { return resolve(queryResult); });\n this.asyncResolveFns.clear();\n }\n return queryResult;\n };\n InternalState.prototype.useOptions = function (options) {\n var _a;\n var watchQueryOptions = this.createWatchQueryOptions(this.queryHookOptions = options);\n var currentWatchQueryOptions = this.watchQueryOptions;\n if (this.optionsToIgnoreOnce.has(currentWatchQueryOptions) ||\n !equal(watchQueryOptions, currentWatchQueryOptions)) {\n this.watchQueryOptions = watchQueryOptions;\n if (currentWatchQueryOptions && this.observable) {\n this.optionsToIgnoreOnce.delete(currentWatchQueryOptions);\n this.observable.reobserve(this.getObsQueryOptions());\n this.previousData = ((_a = this.result) === null || _a === void 0 ? void 0 : _a.data) || this.previousData;\n this.result = void 0;\n }\n }\n this.onCompleted = options.onCompleted || InternalState.prototype.onCompleted;\n this.onError = options.onError || InternalState.prototype.onError;\n if ((this.renderPromises || this.client.disableNetworkFetches) &&\n this.queryHookOptions.ssr === false &&\n !this.queryHookOptions.skip) {\n this.result = this.ssrDisabledResult;\n }\n else if (this.queryHookOptions.skip ||\n this.watchQueryOptions.fetchPolicy === 'standby') {\n this.result = this.skipStandbyResult;\n }\n else if (this.result === this.ssrDisabledResult ||\n this.result === this.skipStandbyResult) {\n this.result = void 0;\n }\n };\n InternalState.prototype.getObsQueryOptions = function () {\n var toMerge = [];\n var globalDefaults = this.client.defaultOptions.watchQuery;\n if (globalDefaults)\n toMerge.push(globalDefaults);\n if (this.queryHookOptions.defaultOptions) {\n toMerge.push(this.queryHookOptions.defaultOptions);\n }\n toMerge.push(compact(this.observable && this.observable.options, this.watchQueryOptions));\n return toMerge.reduce(mergeOptions);\n };\n InternalState.prototype.createWatchQueryOptions = function (_a) {\n var _b;\n if (_a === void 0) { _a = {}; }\n var skip = _a.skip, ssr = _a.ssr, onCompleted = _a.onCompleted, onError = _a.onError, displayName = _a.displayName, defaultOptions = _a.defaultOptions, otherOptions = __rest(_a, [\"skip\", \"ssr\", \"onCompleted\", \"onError\", \"displayName\", \"defaultOptions\"]);\n var watchQueryOptions = Object.assign(otherOptions, { query: this.query });\n if (this.renderPromises &&\n (watchQueryOptions.fetchPolicy === 'network-only' ||\n watchQueryOptions.fetchPolicy === 'cache-and-network')) {\n watchQueryOptions.fetchPolicy = 'cache-first';\n }\n if (!watchQueryOptions.variables) {\n watchQueryOptions.variables = {};\n }\n if (skip) {\n var _c = watchQueryOptions.fetchPolicy, fetchPolicy = _c === void 0 ? this.getDefaultFetchPolicy() : _c, _d = watchQueryOptions.initialFetchPolicy, initialFetchPolicy = _d === void 0 ? fetchPolicy : _d;\n Object.assign(watchQueryOptions, {\n initialFetchPolicy: initialFetchPolicy,\n fetchPolicy: 'standby',\n });\n }\n else if (!watchQueryOptions.fetchPolicy) {\n watchQueryOptions.fetchPolicy =\n ((_b = this.observable) === null || _b === void 0 ? void 0 : _b.options.initialFetchPolicy) ||\n this.getDefaultFetchPolicy();\n }\n return watchQueryOptions;\n };\n InternalState.prototype.getDefaultFetchPolicy = function () {\n var _a, _b;\n return (((_a = this.queryHookOptions.defaultOptions) === null || _a === void 0 ? void 0 : _a.fetchPolicy) ||\n ((_b = this.client.defaultOptions.watchQuery) === null || _b === void 0 ? void 0 : _b.fetchPolicy) ||\n \"cache-first\");\n };\n InternalState.prototype.onCompleted = function (data) { };\n InternalState.prototype.onError = function (error) { };\n InternalState.prototype.useObservableQuery = function () {\n var obsQuery = this.observable =\n this.renderPromises\n && this.renderPromises.getSSRObservable(this.watchQueryOptions)\n || this.observable\n || this.client.watchQuery(this.getObsQueryOptions());\n this.obsQueryFields = useMemo(function () { return ({\n refetch: obsQuery.refetch.bind(obsQuery),\n reobserve: obsQuery.reobserve.bind(obsQuery),\n fetchMore: obsQuery.fetchMore.bind(obsQuery),\n updateQuery: obsQuery.updateQuery.bind(obsQuery),\n startPolling: obsQuery.startPolling.bind(obsQuery),\n stopPolling: obsQuery.stopPolling.bind(obsQuery),\n subscribeToMore: obsQuery.subscribeToMore.bind(obsQuery),\n }); }, [obsQuery]);\n var ssrAllowed = !(this.queryHookOptions.ssr === false ||\n this.queryHookOptions.skip);\n if (this.renderPromises && ssrAllowed) {\n this.renderPromises.registerSSRObservable(obsQuery);\n if (obsQuery.getCurrentResult().loading) {\n this.renderPromises.addObservableQueryPromise(obsQuery);\n }\n }\n return obsQuery;\n };\n InternalState.prototype.setResult = function (nextResult) {\n var previousResult = this.result;\n if (previousResult && previousResult.data) {\n this.previousData = previousResult.data;\n }\n this.result = nextResult;\n this.forceUpdate();\n this.handleErrorOrCompleted(nextResult);\n };\n InternalState.prototype.handleErrorOrCompleted = function (result) {\n if (!result.loading) {\n if (result.error) {\n this.onError(result.error);\n }\n else if (result.data) {\n this.onCompleted(result.data);\n }\n }\n };\n InternalState.prototype.getCurrentResult = function () {\n if (!this.result) {\n this.handleErrorOrCompleted(this.result = this.observable.getCurrentResult());\n }\n return this.result;\n };\n InternalState.prototype.toQueryResult = function (result) {\n var queryResult = this.toQueryResultCache.get(result);\n if (queryResult)\n return queryResult;\n var data = result.data, partial = result.partial, resultWithoutPartial = __rest(result, [\"data\", \"partial\"]);\n this.toQueryResultCache.set(result, queryResult = __assign(__assign(__assign({ data: data }, resultWithoutPartial), this.obsQueryFields), { client: this.client, observable: this.observable, variables: this.observable.variables, called: !this.queryHookOptions.skip, previousData: this.previousData }));\n if (!queryResult.error && isNonEmptyArray(result.errors)) {\n queryResult.error = new ApolloError({ graphQLErrors: result.errors });\n }\n return queryResult;\n };\n InternalState.prototype.unsafeHandlePartialRefetch = function (result) {\n if (result.partial &&\n this.queryHookOptions.partialRefetch &&\n !result.loading &&\n (!result.data || Object.keys(result.data).length === 0) &&\n this.observable.options.fetchPolicy !== 'cache-only') {\n Object.assign(result, {\n loading: true,\n networkStatus: NetworkStatus.refetch,\n });\n this.observable.refetch();\n }\n };\n return InternalState;\n}());\n//# sourceMappingURL=useQuery.js.map","import { invariant } from \"../../utilities/globals/index.js\";\nexport var DocumentType;\n(function (DocumentType) {\n DocumentType[DocumentType[\"Query\"] = 0] = \"Query\";\n DocumentType[DocumentType[\"Mutation\"] = 1] = \"Mutation\";\n DocumentType[DocumentType[\"Subscription\"] = 2] = \"Subscription\";\n})(DocumentType || (DocumentType = {}));\nvar cache = new Map();\nexport function operationName(type) {\n var name;\n switch (type) {\n case DocumentType.Query:\n name = 'Query';\n break;\n case DocumentType.Mutation:\n name = 'Mutation';\n break;\n case DocumentType.Subscription:\n name = 'Subscription';\n break;\n }\n return name;\n}\nexport function parser(document) {\n var cached = cache.get(document);\n if (cached)\n return cached;\n var variables, type, name;\n __DEV__ ? invariant(!!document && !!document.kind, \"Argument of \".concat(document, \" passed to parser was not a valid GraphQL \") +\n \"DocumentNode. You may need to use 'graphql-tag' or another method \" +\n \"to convert your operation into a document\") : invariant(!!document && !!document.kind, 30);\n var fragments = [];\n var queries = [];\n var mutations = [];\n var subscriptions = [];\n for (var _i = 0, _a = document.definitions; _i < _a.length; _i++) {\n var x = _a[_i];\n if (x.kind === 'FragmentDefinition') {\n fragments.push(x);\n continue;\n }\n if (x.kind === 'OperationDefinition') {\n switch (x.operation) {\n case 'query':\n queries.push(x);\n break;\n case 'mutation':\n mutations.push(x);\n break;\n case 'subscription':\n subscriptions.push(x);\n break;\n }\n }\n }\n __DEV__ ? invariant(!fragments.length ||\n (queries.length || mutations.length || subscriptions.length), \"Passing only a fragment to 'graphql' is not yet supported. \" +\n \"You must include a query, subscription or mutation as well\") : invariant(!fragments.length ||\n (queries.length || mutations.length || subscriptions.length), 31);\n __DEV__ ? invariant(queries.length + mutations.length + subscriptions.length <= 1, \"react-apollo only supports a query, subscription, or a mutation per HOC. \" +\n \"\".concat(document, \" had \").concat(queries.length, \" queries, \").concat(subscriptions.length, \" \") +\n \"subscriptions and \".concat(mutations.length, \" mutations. \") +\n \"You can use 'compose' to join multiple operation types to a component\") : invariant(queries.length + mutations.length + subscriptions.length <= 1, 32);\n type = queries.length ? DocumentType.Query : DocumentType.Mutation;\n if (!queries.length && !mutations.length)\n type = DocumentType.Subscription;\n var definitions = queries.length\n ? queries\n : mutations.length\n ? mutations\n : subscriptions;\n __DEV__ ? invariant(definitions.length === 1, \"react-apollo only supports one definition per HOC. \".concat(document, \" had \") +\n \"\".concat(definitions.length, \" definitions. \") +\n \"You can use 'compose' to join multiple operation types to a component\") : invariant(definitions.length === 1, 33);\n var definition = definitions[0];\n variables = definition.variableDefinitions || [];\n if (definition.name && definition.name.kind === 'Name') {\n name = definition.name.value;\n }\n else {\n name = 'data';\n }\n var payload = { name: name, type: type, variables: variables };\n cache.set(document, payload);\n return payload;\n}\nexport function verifyDocumentType(document, type) {\n var operation = parser(document);\n var requiredOperationName = operationName(type);\n var usedOperationName = operationName(operation.type);\n __DEV__ ? invariant(operation.type === type, \"Running a \".concat(requiredOperationName, \" requires a graphql \") +\n \"\".concat(requiredOperationName, \", but a \").concat(usedOperationName, \" was used instead.\")) : invariant(operation.type === type, 34);\n}\n//# sourceMappingURL=index.js.map","export function isNonEmptyArray(value) {\n return Array.isArray(value) && value.length > 0;\n}\n//# sourceMappingURL=arrays.js.map","import { maybe } from \"../globals/index.js\";\nexport var canUseWeakMap = typeof WeakMap === 'function' &&\n maybe(function () { return navigator.product; }) !== 'ReactNative';\nexport var canUseWeakSet = typeof WeakSet === 'function';\nexport var canUseSymbol = typeof Symbol === 'function' &&\n typeof Symbol.for === 'function';\nexport var canUseDOM = typeof maybe(function () { return window.document.createElement; }) === \"function\";\nvar usingJSDOM = maybe(function () { return navigator.userAgent.indexOf(\"jsdom\") >= 0; }) || false;\nexport var canUseLayoutEffect = canUseDOM && !usingJSDOM;\n//# sourceMappingURL=canUse.js.map","var toString = Object.prototype.toString;\nexport function cloneDeep(value) {\n return cloneDeepHelper(value);\n}\nfunction cloneDeepHelper(val, seen) {\n switch (toString.call(val)) {\n case \"[object Array]\": {\n seen = seen || new Map;\n if (seen.has(val))\n return seen.get(val);\n var copy_1 = val.slice(0);\n seen.set(val, copy_1);\n copy_1.forEach(function (child, i) {\n copy_1[i] = cloneDeepHelper(child, seen);\n });\n return copy_1;\n }\n case \"[object Object]\": {\n seen = seen || new Map;\n if (seen.has(val))\n return seen.get(val);\n var copy_2 = Object.create(Object.getPrototypeOf(val));\n seen.set(val, copy_2);\n Object.keys(val).forEach(function (key) {\n copy_2[key] = cloneDeepHelper(val[key], seen);\n });\n return copy_2;\n }\n default:\n return val;\n }\n}\n//# sourceMappingURL=cloneDeep.js.map","export function compact() {\n var objects = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n objects[_i] = arguments[_i];\n }\n var result = Object.create(null);\n objects.forEach(function (obj) {\n if (!obj)\n return;\n Object.keys(obj).forEach(function (key) {\n var value = obj[key];\n if (value !== void 0) {\n result[key] = value;\n }\n });\n });\n return result;\n}\n//# sourceMappingURL=compact.js.map","var prefixCounts = new Map();\nexport function makeUniqueId(prefix) {\n var count = prefixCounts.get(prefix) || 1;\n prefixCounts.set(prefix, count + 1);\n return \"\".concat(prefix, \":\").concat(count, \":\").concat(Math.random().toString(36).slice(2));\n}\n//# sourceMappingURL=makeUniqueId.js.map","import \"../globals/index.js\";\nimport { isNonNullObject } from \"./objects.js\";\nfunction deepFreeze(value) {\n var workSet = new Set([value]);\n workSet.forEach(function (obj) {\n if (isNonNullObject(obj) && shallowFreeze(obj) === obj) {\n Object.getOwnPropertyNames(obj).forEach(function (name) {\n if (isNonNullObject(obj[name]))\n workSet.add(obj[name]);\n });\n }\n });\n return value;\n}\nfunction shallowFreeze(obj) {\n if (__DEV__ && !Object.isFrozen(obj)) {\n try {\n Object.freeze(obj);\n }\n catch (e) {\n if (e instanceof TypeError)\n return null;\n throw e;\n }\n }\n return obj;\n}\nexport function maybeDeepFreeze(obj) {\n if (__DEV__) {\n deepFreeze(obj);\n }\n return obj;\n}\n//# sourceMappingURL=maybeDeepFreeze.js.map","import { __assign, __spreadArray } from \"tslib\";\nimport { isNonNullObject } from \"./objects.js\";\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nexport function mergeDeep() {\n var sources = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n sources[_i] = arguments[_i];\n }\n return mergeDeepArray(sources);\n}\nexport function mergeDeepArray(sources) {\n var target = sources[0] || {};\n var count = sources.length;\n if (count > 1) {\n var merger = new DeepMerger();\n for (var i = 1; i < count; ++i) {\n target = merger.merge(target, sources[i]);\n }\n }\n return target;\n}\nvar defaultReconciler = function (target, source, property) {\n return this.merge(target[property], source[property]);\n};\nvar DeepMerger = (function () {\n function DeepMerger(reconciler) {\n if (reconciler === void 0) { reconciler = defaultReconciler; }\n this.reconciler = reconciler;\n this.isObject = isNonNullObject;\n this.pastCopies = new Set();\n }\n DeepMerger.prototype.merge = function (target, source) {\n var _this = this;\n var context = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n context[_i - 2] = arguments[_i];\n }\n if (isNonNullObject(source) && isNonNullObject(target)) {\n Object.keys(source).forEach(function (sourceKey) {\n if (hasOwnProperty.call(target, sourceKey)) {\n var targetValue = target[sourceKey];\n if (source[sourceKey] !== targetValue) {\n var result = _this.reconciler.apply(_this, __spreadArray([target, source, sourceKey], context, false));\n if (result !== targetValue) {\n target = _this.shallowCopyForMerge(target);\n target[sourceKey] = result;\n }\n }\n }\n else {\n target = _this.shallowCopyForMerge(target);\n target[sourceKey] = source[sourceKey];\n }\n });\n return target;\n }\n return source;\n };\n DeepMerger.prototype.shallowCopyForMerge = function (value) {\n if (isNonNullObject(value)) {\n if (!this.pastCopies.has(value)) {\n if (Array.isArray(value)) {\n value = value.slice(0);\n }\n else {\n value = __assign({ __proto__: Object.getPrototypeOf(value) }, value);\n }\n this.pastCopies.add(value);\n }\n }\n return value;\n };\n return DeepMerger;\n}());\nexport { DeepMerger };\n//# sourceMappingURL=mergeDeep.js.map","import { __assign } from \"tslib\";\nimport { compact } from \"./compact.js\";\nexport function mergeOptions(defaults, options) {\n return compact(defaults, options, options.variables && {\n variables: __assign(__assign({}, (defaults && defaults.variables)), options.variables),\n });\n}\n//# sourceMappingURL=mergeOptions.js.map","export function isNonNullObject(obj) {\n return obj !== null && typeof obj === 'object';\n}\n//# sourceMappingURL=objects.js.map","import { __extends } from \"tslib\";\nvar genericMessage = \"Invariant Violation\";\nvar _a = Object.setPrototypeOf, setPrototypeOf = _a === void 0 ? function (obj, proto) {\n obj.__proto__ = proto;\n return obj;\n} : _a;\nvar InvariantError = /** @class */ (function (_super) {\n __extends(InvariantError, _super);\n function InvariantError(message) {\n if (message === void 0) { message = genericMessage; }\n var _this = _super.call(this, typeof message === \"number\"\n ? genericMessage + \": \" + message + \" (see https://github.com/apollographql/invariant-packages)\"\n : message) || this;\n _this.framesToPop = 1;\n _this.name = genericMessage;\n setPrototypeOf(_this, InvariantError.prototype);\n return _this;\n }\n return InvariantError;\n}(Error));\nexport { InvariantError };\nexport function invariant(condition, message) {\n if (!condition) {\n throw new InvariantError(message);\n }\n}\nvar verbosityLevels = [\"debug\", \"log\", \"warn\", \"error\", \"silent\"];\nvar verbosityLevel = verbosityLevels.indexOf(\"log\");\nfunction wrapConsoleMethod(name) {\n return function () {\n if (verbosityLevels.indexOf(name) >= verbosityLevel) {\n // Default to console.log if this host environment happens not to provide\n // all the console.* methods we need.\n var method = console[name] || console.log;\n return method.apply(console, arguments);\n }\n };\n}\n(function (invariant) {\n invariant.debug = wrapConsoleMethod(\"debug\");\n invariant.log = wrapConsoleMethod(\"log\");\n invariant.warn = wrapConsoleMethod(\"warn\");\n invariant.error = wrapConsoleMethod(\"error\");\n})(invariant || (invariant = {}));\nexport function setVerbosity(level) {\n var old = verbosityLevels[verbosityLevel];\n verbosityLevel = Math.max(0, verbosityLevels.indexOf(level));\n return old;\n}\nexport default invariant;\n//# sourceMappingURL=invariant.js.map","export function maybe(thunk) {\n try {\n return thunk();\n }\n catch (_a) { }\n}\n//# sourceMappingURL=maybe.js.map","import { maybe } from \"./maybe.js\";\nexport default (maybe(function () { return globalThis; }) ||\n maybe(function () { return window; }) ||\n maybe(function () { return self; }) ||\n maybe(function () { return global; }) || maybe(function () { return maybe.constructor(\"return this\")(); }));\n//# sourceMappingURL=global.js.map","import global from \"./global.js\";\nimport { maybe } from \"./maybe.js\";\nvar __ = \"__\";\nvar GLOBAL_KEY = [__, __].join(\"DEV\");\nfunction getDEV() {\n try {\n return Boolean(__DEV__);\n }\n catch (_a) {\n Object.defineProperty(global, GLOBAL_KEY, {\n value: maybe(function () { return process.env.NODE_ENV; }) !== \"production\",\n enumerable: false,\n configurable: true,\n writable: true,\n });\n return global[GLOBAL_KEY];\n }\n}\nexport default getDEV();\n//# sourceMappingURL=DEV.js.map","function maybe(thunk) {\n try { return thunk() } catch (_) {}\n}\n\nvar safeGlobal = (\n maybe(function() { return globalThis }) ||\n maybe(function() { return window }) ||\n maybe(function() { return self }) ||\n maybe(function() { return global }) ||\n // We don't expect the Function constructor ever to be invoked at runtime, as\n // long as at least one of globalThis, window, self, or global is defined, so\n // we are under no obligation to make it easy for static analysis tools to\n // detect syntactic usage of the Function constructor. If you think you can\n // improve your static analysis to detect this obfuscation, think again. This\n // is an arms race you cannot win, at least not in JavaScript.\n maybe(function() { return maybe.constructor(\"return this\")() })\n);\n\nvar needToRemove = false;\n\nexport function install() {\n if (safeGlobal &&\n !maybe(function() { return process.env.NODE_ENV }) &&\n !maybe(function() { return process })) {\n Object.defineProperty(safeGlobal, \"process\", {\n value: {\n env: {\n // This default needs to be \"production\" instead of \"development\", to\n // avoid the problem https://github.com/graphql/graphql-js/pull/2894\n // will eventually solve, once merged and released.\n NODE_ENV: \"production\",\n },\n },\n // Let anyone else change global.process as they see fit, but hide it from\n // Object.keys(global) enumeration.\n configurable: true,\n enumerable: false,\n writable: true,\n });\n needToRemove = true;\n }\n}\n\n// Call install() at least once, when this module is imported.\ninstall();\n\nexport function remove() {\n if (needToRemove) {\n delete safeGlobal.process;\n needToRemove = false;\n }\n}\n","import { remove } from \"ts-invariant/process/index.js\";\nimport { Source } from 'graphql';\nexport function removeTemporaryGlobals() {\n return typeof Source === \"function\" ? remove() : remove();\n}\n//# sourceMappingURL=fix-graphql.js.map","import { invariant, InvariantError } from \"ts-invariant\";\nimport DEV from \"./DEV.js\";\nexport { DEV };\nexport function checkDEV() {\n __DEV__ ? invariant(\"boolean\" === typeof DEV, DEV) : invariant(\"boolean\" === typeof DEV, 36);\n}\nimport { removeTemporaryGlobals } from \"./fix-graphql.js\";\nremoveTemporaryGlobals();\nexport { maybe } from \"./maybe.js\";\nexport { default as global } from \"./global.js\";\nexport { invariant, InvariantError };\ncheckDEV();\n//# sourceMappingURL=index.js.map","import { invariant } from \"../globals/index.js\";\nimport { visit, } from 'graphql';\nexport function shouldInclude(_a, variables) {\n var directives = _a.directives;\n if (!directives || !directives.length) {\n return true;\n }\n return getInclusionDirectives(directives).every(function (_a) {\n var directive = _a.directive, ifArgument = _a.ifArgument;\n var evaledValue = false;\n if (ifArgument.value.kind === 'Variable') {\n evaledValue = variables && variables[ifArgument.value.name.value];\n __DEV__ ? invariant(evaledValue !== void 0, \"Invalid variable referenced in @\".concat(directive.name.value, \" directive.\")) : invariant(evaledValue !== void 0, 37);\n }\n else {\n evaledValue = ifArgument.value.value;\n }\n return directive.name.value === 'skip' ? !evaledValue : evaledValue;\n });\n}\nexport function getDirectiveNames(root) {\n var names = [];\n visit(root, {\n Directive: function (node) {\n names.push(node.name.value);\n },\n });\n return names;\n}\nexport function hasDirectives(names, root) {\n return getDirectiveNames(root).some(function (name) { return names.indexOf(name) > -1; });\n}\nexport function hasClientExports(document) {\n return (document &&\n hasDirectives(['client'], document) &&\n hasDirectives(['export'], document));\n}\nfunction isInclusionDirective(_a) {\n var value = _a.name.value;\n return value === 'skip' || value === 'include';\n}\nexport function getInclusionDirectives(directives) {\n var result = [];\n if (directives && directives.length) {\n directives.forEach(function (directive) {\n if (!isInclusionDirective(directive))\n return;\n var directiveArguments = directive.arguments;\n var directiveName = directive.name.value;\n __DEV__ ? invariant(directiveArguments && directiveArguments.length === 1, \"Incorrect number of arguments for the @\".concat(directiveName, \" directive.\")) : invariant(directiveArguments && directiveArguments.length === 1, 38);\n var ifArgument = directiveArguments[0];\n __DEV__ ? invariant(ifArgument.name && ifArgument.name.value === 'if', \"Invalid argument for the @\".concat(directiveName, \" directive.\")) : invariant(ifArgument.name && ifArgument.name.value === 'if', 39);\n var ifValue = ifArgument.value;\n __DEV__ ? invariant(ifValue &&\n (ifValue.kind === 'Variable' || ifValue.kind === 'BooleanValue'), \"Argument for the @\".concat(directiveName, \" directive must be a variable or a boolean value.\")) : invariant(ifValue &&\n (ifValue.kind === 'Variable' || ifValue.kind === 'BooleanValue'), 40);\n result.push({ directive: directive, ifArgument: ifArgument });\n });\n }\n return result;\n}\n//# sourceMappingURL=directives.js.map","import { __assign, __spreadArray } from \"tslib\";\nimport { invariant, InvariantError } from \"../globals/index.js\";\nexport function getFragmentQueryDocument(document, fragmentName) {\n var actualFragmentName = fragmentName;\n var fragments = [];\n document.definitions.forEach(function (definition) {\n if (definition.kind === 'OperationDefinition') {\n throw __DEV__ ? new InvariantError(\"Found a \".concat(definition.operation, \" operation\").concat(definition.name ? \" named '\".concat(definition.name.value, \"'\") : '', \". \") +\n 'No operations are allowed when using a fragment as a query. Only fragments are allowed.') : new InvariantError(41);\n }\n if (definition.kind === 'FragmentDefinition') {\n fragments.push(definition);\n }\n });\n if (typeof actualFragmentName === 'undefined') {\n __DEV__ ? invariant(fragments.length === 1, \"Found \".concat(fragments.length, \" fragments. `fragmentName` must be provided when there is not exactly 1 fragment.\")) : invariant(fragments.length === 1, 42);\n actualFragmentName = fragments[0].name.value;\n }\n var query = __assign(__assign({}, document), { definitions: __spreadArray([\n {\n kind: 'OperationDefinition',\n operation: 'query',\n selectionSet: {\n kind: 'SelectionSet',\n selections: [\n {\n kind: 'FragmentSpread',\n name: {\n kind: 'Name',\n value: actualFragmentName,\n },\n },\n ],\n },\n }\n ], document.definitions, true) });\n return query;\n}\nexport function createFragmentMap(fragments) {\n if (fragments === void 0) { fragments = []; }\n var symTable = {};\n fragments.forEach(function (fragment) {\n symTable[fragment.name.value] = fragment;\n });\n return symTable;\n}\nexport function getFragmentFromSelection(selection, fragmentMap) {\n switch (selection.kind) {\n case 'InlineFragment':\n return selection;\n case 'FragmentSpread': {\n var fragment = fragmentMap && fragmentMap[selection.name.value];\n __DEV__ ? invariant(fragment, \"No fragment named \".concat(selection.name.value, \".\")) : invariant(fragment, 43);\n return fragment;\n }\n default:\n return null;\n }\n}\n//# sourceMappingURL=fragments.js.map","import { invariant, InvariantError } from \"../globals/index.js\";\nimport { valueToObjectRepresentation } from \"./storeUtils.js\";\nexport function checkDocument(doc) {\n __DEV__ ? invariant(doc && doc.kind === 'Document', \"Expecting a parsed GraphQL document. Perhaps you need to wrap the query string in a \\\"gql\\\" tag? http://docs.apollostack.com/apollo-client/core.html#gql\") : invariant(doc && doc.kind === 'Document', 44);\n var operations = doc.definitions\n .filter(function (d) { return d.kind !== 'FragmentDefinition'; })\n .map(function (definition) {\n if (definition.kind !== 'OperationDefinition') {\n throw __DEV__ ? new InvariantError(\"Schema type definitions not allowed in queries. Found: \\\"\".concat(definition.kind, \"\\\"\")) : new InvariantError(45);\n }\n return definition;\n });\n __DEV__ ? invariant(operations.length <= 1, \"Ambiguous GraphQL document: contains \".concat(operations.length, \" operations\")) : invariant(operations.length <= 1, 46);\n return doc;\n}\nexport function getOperationDefinition(doc) {\n checkDocument(doc);\n return doc.definitions.filter(function (definition) { return definition.kind === 'OperationDefinition'; })[0];\n}\nexport function getOperationName(doc) {\n return (doc.definitions\n .filter(function (definition) {\n return definition.kind === 'OperationDefinition' && definition.name;\n })\n .map(function (x) { return x.name.value; })[0] || null);\n}\nexport function getFragmentDefinitions(doc) {\n return doc.definitions.filter(function (definition) { return definition.kind === 'FragmentDefinition'; });\n}\nexport function getQueryDefinition(doc) {\n var queryDef = getOperationDefinition(doc);\n __DEV__ ? invariant(queryDef && queryDef.operation === 'query', 'Must contain a query definition.') : invariant(queryDef && queryDef.operation === 'query', 47);\n return queryDef;\n}\nexport function getFragmentDefinition(doc) {\n __DEV__ ? invariant(doc.kind === 'Document', \"Expecting a parsed GraphQL document. Perhaps you need to wrap the query string in a \\\"gql\\\" tag? http://docs.apollostack.com/apollo-client/core.html#gql\") : invariant(doc.kind === 'Document', 48);\n __DEV__ ? invariant(doc.definitions.length <= 1, 'Fragment must have exactly one definition.') : invariant(doc.definitions.length <= 1, 49);\n var fragmentDef = doc.definitions[0];\n __DEV__ ? invariant(fragmentDef.kind === 'FragmentDefinition', 'Must be a fragment definition.') : invariant(fragmentDef.kind === 'FragmentDefinition', 50);\n return fragmentDef;\n}\nexport function getMainDefinition(queryDoc) {\n checkDocument(queryDoc);\n var fragmentDefinition;\n for (var _i = 0, _a = queryDoc.definitions; _i < _a.length; _i++) {\n var definition = _a[_i];\n if (definition.kind === 'OperationDefinition') {\n var operation = definition.operation;\n if (operation === 'query' ||\n operation === 'mutation' ||\n operation === 'subscription') {\n return definition;\n }\n }\n if (definition.kind === 'FragmentDefinition' && !fragmentDefinition) {\n fragmentDefinition = definition;\n }\n }\n if (fragmentDefinition) {\n return fragmentDefinition;\n }\n throw __DEV__ ? new InvariantError('Expected a parsed GraphQL query with a query, mutation, subscription, or a fragment.') : new InvariantError(51);\n}\nexport function getDefaultValues(definition) {\n var defaultValues = Object.create(null);\n var defs = definition && definition.variableDefinitions;\n if (defs && defs.length) {\n defs.forEach(function (def) {\n if (def.defaultValue) {\n valueToObjectRepresentation(defaultValues, def.variable.name, def.defaultValue);\n }\n });\n }\n return defaultValues;\n}\n//# sourceMappingURL=getFromAST.js.map","import { InvariantError } from \"../globals/index.js\";\nimport { isNonNullObject } from \"../common/objects.js\";\nimport { getFragmentFromSelection } from \"./fragments.js\";\nexport function makeReference(id) {\n return { __ref: String(id) };\n}\nexport function isReference(obj) {\n return Boolean(obj && typeof obj === 'object' && typeof obj.__ref === 'string');\n}\nexport function isDocumentNode(value) {\n return (isNonNullObject(value) &&\n value.kind === \"Document\" &&\n Array.isArray(value.definitions));\n}\nfunction isStringValue(value) {\n return value.kind === 'StringValue';\n}\nfunction isBooleanValue(value) {\n return value.kind === 'BooleanValue';\n}\nfunction isIntValue(value) {\n return value.kind === 'IntValue';\n}\nfunction isFloatValue(value) {\n return value.kind === 'FloatValue';\n}\nfunction isVariable(value) {\n return value.kind === 'Variable';\n}\nfunction isObjectValue(value) {\n return value.kind === 'ObjectValue';\n}\nfunction isListValue(value) {\n return value.kind === 'ListValue';\n}\nfunction isEnumValue(value) {\n return value.kind === 'EnumValue';\n}\nfunction isNullValue(value) {\n return value.kind === 'NullValue';\n}\nexport function valueToObjectRepresentation(argObj, name, value, variables) {\n if (isIntValue(value) || isFloatValue(value)) {\n argObj[name.value] = Number(value.value);\n }\n else if (isBooleanValue(value) || isStringValue(value)) {\n argObj[name.value] = value.value;\n }\n else if (isObjectValue(value)) {\n var nestedArgObj_1 = {};\n value.fields.map(function (obj) {\n return valueToObjectRepresentation(nestedArgObj_1, obj.name, obj.value, variables);\n });\n argObj[name.value] = nestedArgObj_1;\n }\n else if (isVariable(value)) {\n var variableValue = (variables || {})[value.name.value];\n argObj[name.value] = variableValue;\n }\n else if (isListValue(value)) {\n argObj[name.value] = value.values.map(function (listValue) {\n var nestedArgArrayObj = {};\n valueToObjectRepresentation(nestedArgArrayObj, name, listValue, variables);\n return nestedArgArrayObj[name.value];\n });\n }\n else if (isEnumValue(value)) {\n argObj[name.value] = value.value;\n }\n else if (isNullValue(value)) {\n argObj[name.value] = null;\n }\n else {\n throw __DEV__ ? new InvariantError(\"The inline argument \\\"\".concat(name.value, \"\\\" of kind \\\"\").concat(value.kind, \"\\\"\") +\n 'is not supported. Use variables instead of inline arguments to ' +\n 'overcome this limitation.') : new InvariantError(52);\n }\n}\nexport function storeKeyNameFromField(field, variables) {\n var directivesObj = null;\n if (field.directives) {\n directivesObj = {};\n field.directives.forEach(function (directive) {\n directivesObj[directive.name.value] = {};\n if (directive.arguments) {\n directive.arguments.forEach(function (_a) {\n var name = _a.name, value = _a.value;\n return valueToObjectRepresentation(directivesObj[directive.name.value], name, value, variables);\n });\n }\n });\n }\n var argObj = null;\n if (field.arguments && field.arguments.length) {\n argObj = {};\n field.arguments.forEach(function (_a) {\n var name = _a.name, value = _a.value;\n return valueToObjectRepresentation(argObj, name, value, variables);\n });\n }\n return getStoreKeyName(field.name.value, argObj, directivesObj);\n}\nvar KNOWN_DIRECTIVES = [\n 'connection',\n 'include',\n 'skip',\n 'client',\n 'rest',\n 'export',\n];\nexport var getStoreKeyName = Object.assign(function (fieldName, args, directives) {\n if (args &&\n directives &&\n directives['connection'] &&\n directives['connection']['key']) {\n if (directives['connection']['filter'] &&\n directives['connection']['filter'].length > 0) {\n var filterKeys = directives['connection']['filter']\n ? directives['connection']['filter']\n : [];\n filterKeys.sort();\n var filteredArgs_1 = {};\n filterKeys.forEach(function (key) {\n filteredArgs_1[key] = args[key];\n });\n return \"\".concat(directives['connection']['key'], \"(\").concat(stringify(filteredArgs_1), \")\");\n }\n else {\n return directives['connection']['key'];\n }\n }\n var completeFieldName = fieldName;\n if (args) {\n var stringifiedArgs = stringify(args);\n completeFieldName += \"(\".concat(stringifiedArgs, \")\");\n }\n if (directives) {\n Object.keys(directives).forEach(function (key) {\n if (KNOWN_DIRECTIVES.indexOf(key) !== -1)\n return;\n if (directives[key] && Object.keys(directives[key]).length) {\n completeFieldName += \"@\".concat(key, \"(\").concat(stringify(directives[key]), \")\");\n }\n else {\n completeFieldName += \"@\".concat(key);\n }\n });\n }\n return completeFieldName;\n}, {\n setStringify: function (s) {\n var previous = stringify;\n stringify = s;\n return previous;\n },\n});\nvar stringify = function defaultStringify(value) {\n return JSON.stringify(value, stringifyReplacer);\n};\nfunction stringifyReplacer(_key, value) {\n if (isNonNullObject(value) && !Array.isArray(value)) {\n value = Object.keys(value).sort().reduce(function (copy, key) {\n copy[key] = value[key];\n return copy;\n }, {});\n }\n return value;\n}\nexport function argumentsObjectFromField(field, variables) {\n if (field.arguments && field.arguments.length) {\n var argObj_1 = {};\n field.arguments.forEach(function (_a) {\n var name = _a.name, value = _a.value;\n return valueToObjectRepresentation(argObj_1, name, value, variables);\n });\n return argObj_1;\n }\n return null;\n}\nexport function resultKeyNameFromField(field) {\n return field.alias ? field.alias.value : field.name.value;\n}\nexport function getTypenameFromResult(result, selectionSet, fragmentMap) {\n if (typeof result.__typename === 'string') {\n return result.__typename;\n }\n for (var _i = 0, _a = selectionSet.selections; _i < _a.length; _i++) {\n var selection = _a[_i];\n if (isField(selection)) {\n if (selection.name.value === '__typename') {\n return result[resultKeyNameFromField(selection)];\n }\n }\n else {\n var typename = getTypenameFromResult(result, getFragmentFromSelection(selection, fragmentMap).selectionSet, fragmentMap);\n if (typeof typename === 'string') {\n return typename;\n }\n }\n }\n}\nexport function isField(selection) {\n return selection.kind === 'Field';\n}\nexport function isInlineFragment(selection) {\n return selection.kind === 'InlineFragment';\n}\n//# sourceMappingURL=storeUtils.js.map","export function filterInPlace(array, test, context) {\n var target = 0;\n array.forEach(function (elem, i) {\n if (test.call(this, elem, i, array)) {\n array[target++] = elem;\n }\n }, context);\n array.length = target;\n return array;\n}\n//# sourceMappingURL=filterInPlace.js.map","import { __assign, __spreadArray } from \"tslib\";\nimport { invariant } from \"../globals/index.js\";\nimport { visit, } from 'graphql';\nimport { checkDocument, getOperationDefinition, getFragmentDefinition, getFragmentDefinitions, getMainDefinition, } from \"./getFromAST.js\";\nimport { filterInPlace } from \"../common/filterInPlace.js\";\nimport { isField, isInlineFragment } from \"./storeUtils.js\";\nimport { createFragmentMap, } from \"./fragments.js\";\nvar TYPENAME_FIELD = {\n kind: 'Field',\n name: {\n kind: 'Name',\n value: '__typename',\n },\n};\nfunction isEmpty(op, fragments) {\n return op.selectionSet.selections.every(function (selection) {\n return selection.kind === 'FragmentSpread' &&\n isEmpty(fragments[selection.name.value], fragments);\n });\n}\nfunction nullIfDocIsEmpty(doc) {\n return isEmpty(getOperationDefinition(doc) || getFragmentDefinition(doc), createFragmentMap(getFragmentDefinitions(doc)))\n ? null\n : doc;\n}\nfunction getDirectiveMatcher(directives) {\n return function directiveMatcher(directive) {\n return directives.some(function (dir) {\n return (dir.name && dir.name === directive.name.value) ||\n (dir.test && dir.test(directive));\n });\n };\n}\nexport function removeDirectivesFromDocument(directives, doc) {\n var variablesInUse = Object.create(null);\n var variablesToRemove = [];\n var fragmentSpreadsInUse = Object.create(null);\n var fragmentSpreadsToRemove = [];\n var modifiedDoc = nullIfDocIsEmpty(visit(doc, {\n Variable: {\n enter: function (node, _key, parent) {\n if (parent.kind !== 'VariableDefinition') {\n variablesInUse[node.name.value] = true;\n }\n },\n },\n Field: {\n enter: function (node) {\n if (directives && node.directives) {\n var shouldRemoveField = directives.some(function (directive) { return directive.remove; });\n if (shouldRemoveField &&\n node.directives &&\n node.directives.some(getDirectiveMatcher(directives))) {\n if (node.arguments) {\n node.arguments.forEach(function (arg) {\n if (arg.value.kind === 'Variable') {\n variablesToRemove.push({\n name: arg.value.name.value,\n });\n }\n });\n }\n if (node.selectionSet) {\n getAllFragmentSpreadsFromSelectionSet(node.selectionSet).forEach(function (frag) {\n fragmentSpreadsToRemove.push({\n name: frag.name.value,\n });\n });\n }\n return null;\n }\n }\n },\n },\n FragmentSpread: {\n enter: function (node) {\n fragmentSpreadsInUse[node.name.value] = true;\n },\n },\n Directive: {\n enter: function (node) {\n if (getDirectiveMatcher(directives)(node)) {\n return null;\n }\n },\n },\n }));\n if (modifiedDoc &&\n filterInPlace(variablesToRemove, function (v) { return !!v.name && !variablesInUse[v.name]; }).length) {\n modifiedDoc = removeArgumentsFromDocument(variablesToRemove, modifiedDoc);\n }\n if (modifiedDoc &&\n filterInPlace(fragmentSpreadsToRemove, function (fs) { return !!fs.name && !fragmentSpreadsInUse[fs.name]; })\n .length) {\n modifiedDoc = removeFragmentSpreadFromDocument(fragmentSpreadsToRemove, modifiedDoc);\n }\n return modifiedDoc;\n}\nexport var addTypenameToDocument = Object.assign(function (doc) {\n return visit(doc, {\n SelectionSet: {\n enter: function (node, _key, parent) {\n if (parent &&\n parent.kind === 'OperationDefinition') {\n return;\n }\n var selections = node.selections;\n if (!selections) {\n return;\n }\n var skip = selections.some(function (selection) {\n return (isField(selection) &&\n (selection.name.value === '__typename' ||\n selection.name.value.lastIndexOf('__', 0) === 0));\n });\n if (skip) {\n return;\n }\n var field = parent;\n if (isField(field) &&\n field.directives &&\n field.directives.some(function (d) { return d.name.value === 'export'; })) {\n return;\n }\n return __assign(__assign({}, node), { selections: __spreadArray(__spreadArray([], selections, true), [TYPENAME_FIELD], false) });\n },\n },\n });\n}, {\n added: function (field) {\n return field === TYPENAME_FIELD;\n },\n});\nvar connectionRemoveConfig = {\n test: function (directive) {\n var willRemove = directive.name.value === 'connection';\n if (willRemove) {\n if (!directive.arguments ||\n !directive.arguments.some(function (arg) { return arg.name.value === 'key'; })) {\n __DEV__ && invariant.warn('Removing an @connection directive even though it does not have a key. ' +\n 'You may want to use the key parameter to specify a store key.');\n }\n }\n return willRemove;\n },\n};\nexport function removeConnectionDirectiveFromDocument(doc) {\n return removeDirectivesFromDocument([connectionRemoveConfig], checkDocument(doc));\n}\nfunction hasDirectivesInSelectionSet(directives, selectionSet, nestedCheck) {\n if (nestedCheck === void 0) { nestedCheck = true; }\n return (!!selectionSet &&\n selectionSet.selections &&\n selectionSet.selections.some(function (selection) {\n return hasDirectivesInSelection(directives, selection, nestedCheck);\n }));\n}\nfunction hasDirectivesInSelection(directives, selection, nestedCheck) {\n if (nestedCheck === void 0) { nestedCheck = true; }\n if (!isField(selection)) {\n return true;\n }\n if (!selection.directives) {\n return false;\n }\n return (selection.directives.some(getDirectiveMatcher(directives)) ||\n (nestedCheck &&\n hasDirectivesInSelectionSet(directives, selection.selectionSet, nestedCheck)));\n}\nfunction getArgumentMatcher(config) {\n return function argumentMatcher(argument) {\n return config.some(function (aConfig) {\n return argument.value &&\n argument.value.kind === 'Variable' &&\n argument.value.name &&\n (aConfig.name === argument.value.name.value ||\n (aConfig.test && aConfig.test(argument)));\n });\n };\n}\nexport function removeArgumentsFromDocument(config, doc) {\n var argMatcher = getArgumentMatcher(config);\n return nullIfDocIsEmpty(visit(doc, {\n OperationDefinition: {\n enter: function (node) {\n return __assign(__assign({}, node), { variableDefinitions: node.variableDefinitions ? node.variableDefinitions.filter(function (varDef) {\n return !config.some(function (arg) { return arg.name === varDef.variable.name.value; });\n }) : [] });\n },\n },\n Field: {\n enter: function (node) {\n var shouldRemoveField = config.some(function (argConfig) { return argConfig.remove; });\n if (shouldRemoveField) {\n var argMatchCount_1 = 0;\n if (node.arguments) {\n node.arguments.forEach(function (arg) {\n if (argMatcher(arg)) {\n argMatchCount_1 += 1;\n }\n });\n }\n if (argMatchCount_1 === 1) {\n return null;\n }\n }\n },\n },\n Argument: {\n enter: function (node) {\n if (argMatcher(node)) {\n return null;\n }\n },\n },\n }));\n}\nexport function removeFragmentSpreadFromDocument(config, doc) {\n function enter(node) {\n if (config.some(function (def) { return def.name === node.name.value; })) {\n return null;\n }\n }\n return nullIfDocIsEmpty(visit(doc, {\n FragmentSpread: { enter: enter },\n FragmentDefinition: { enter: enter },\n }));\n}\nfunction getAllFragmentSpreadsFromSelectionSet(selectionSet) {\n var allFragments = [];\n selectionSet.selections.forEach(function (selection) {\n if ((isField(selection) || isInlineFragment(selection)) &&\n selection.selectionSet) {\n getAllFragmentSpreadsFromSelectionSet(selection.selectionSet).forEach(function (frag) { return allFragments.push(frag); });\n }\n else if (selection.kind === 'FragmentSpread') {\n allFragments.push(selection);\n }\n });\n return allFragments;\n}\nexport function buildQueryFromSelectionSet(document) {\n var definition = getMainDefinition(document);\n var definitionOperation = definition.operation;\n if (definitionOperation === 'query') {\n return document;\n }\n var modifiedDoc = visit(document, {\n OperationDefinition: {\n enter: function (node) {\n return __assign(__assign({}, node), { operation: 'query' });\n },\n },\n });\n return modifiedDoc;\n}\nexport function removeClientSetsFromDocument(document) {\n checkDocument(document);\n var modifiedDoc = removeDirectivesFromDocument([\n {\n test: function (directive) { return directive.name.value === 'client'; },\n remove: true,\n },\n ], document);\n if (modifiedDoc) {\n modifiedDoc = visit(modifiedDoc, {\n FragmentDefinition: {\n enter: function (node) {\n if (node.selectionSet) {\n var isTypenameOnly = node.selectionSet.selections.every(function (selection) {\n return isField(selection) && selection.name.value === '__typename';\n });\n if (isTypenameOnly) {\n return null;\n }\n }\n },\n },\n });\n }\n return modifiedDoc;\n}\n//# sourceMappingURL=transform.js.map","export default function _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n\n for (var i = 0, arr2 = new Array(len); i < len; i++) {\n arr2[i] = arr[i];\n }\n\n return arr2;\n}","export default function _arrayWithHoles(arr) {\n if (Array.isArray(arr)) return arr;\n}","export default function _assertThisInitialized(self) {\n if (self === void 0) {\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n }\n\n return self;\n}","function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {\n try {\n var info = gen[key](arg);\n var value = info.value;\n } catch (error) {\n reject(error);\n return;\n }\n\n if (info.done) {\n resolve(value);\n } else {\n Promise.resolve(value).then(_next, _throw);\n }\n}\n\nexport default function _asyncToGenerator(fn) {\n return function () {\n var self = this,\n args = arguments;\n return new Promise(function (resolve, reject) {\n var gen = fn.apply(self, args);\n\n function _next(value) {\n asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"next\", value);\n }\n\n function _throw(err) {\n asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"throw\", err);\n }\n\n _next(undefined);\n });\n };\n}","export default function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}","function _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nexport default function _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n Object.defineProperty(Constructor, \"prototype\", {\n writable: false\n });\n return Constructor;\n}","export default function _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}","export default function _extends() {\n _extends = Object.assign ? Object.assign.bind() : function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n return _extends.apply(this, arguments);\n}","export default function _getPrototypeOf(o) {\n _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {\n return o.__proto__ || Object.getPrototypeOf(o);\n };\n return _getPrototypeOf(o);\n}","import setPrototypeOf from \"./setPrototypeOf.js\";\nexport default function _inherits(subClass, superClass) {\n if (typeof superClass !== \"function\" && superClass !== null) {\n throw new TypeError(\"Super expression must either be null or a function\");\n }\n\n subClass.prototype = Object.create(superClass && superClass.prototype, {\n constructor: {\n value: subClass,\n writable: true,\n configurable: true\n }\n });\n Object.defineProperty(subClass, \"prototype\", {\n writable: false\n });\n if (superClass) setPrototypeOf(subClass, superClass);\n}","import setPrototypeOf from \"./setPrototypeOf.js\";\nexport default function _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n setPrototypeOf(subClass, superClass);\n}","export default function _iterableToArray(iter) {\n if (typeof Symbol !== \"undefined\" && iter[Symbol.iterator] != null || iter[\"@@iterator\"] != null) return Array.from(iter);\n}","export default function _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}","import defineProperty from \"./defineProperty.js\";\n\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n enumerableOnly && (symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n })), keys.push.apply(keys, symbols);\n }\n\n return keys;\n}\n\nexport default function _objectSpread2(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = null != arguments[i] ? arguments[i] : {};\n i % 2 ? ownKeys(Object(source), !0).forEach(function (key) {\n defineProperty(target, key, source[key]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n\n return target;\n}","import objectWithoutPropertiesLoose from \"./objectWithoutPropertiesLoose.js\";\nexport default function _objectWithoutProperties(source, excluded) {\n if (source == null) return {};\n var target = objectWithoutPropertiesLoose(source, excluded);\n var key, i;\n\n if (Object.getOwnPropertySymbols) {\n var sourceSymbolKeys = Object.getOwnPropertySymbols(source);\n\n for (i = 0; i < sourceSymbolKeys.length; i++) {\n key = sourceSymbolKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;\n target[key] = source[key];\n }\n }\n\n return target;\n}","export default function _objectWithoutPropertiesLoose(source, excluded) {\n if (source == null) return {};\n var target = {};\n var sourceKeys = Object.keys(source);\n var key, i;\n\n for (i = 0; i < sourceKeys.length; i++) {\n key = sourceKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n target[key] = source[key];\n }\n\n return target;\n}","import _typeof from \"./typeof.js\";\nimport assertThisInitialized from \"./assertThisInitialized.js\";\nexport default function _possibleConstructorReturn(self, call) {\n if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) {\n return call;\n } else if (call !== void 0) {\n throw new TypeError(\"Derived constructors may only return object or undefined\");\n }\n\n return assertThisInitialized(self);\n}","import _typeof from \"./typeof.js\";\nexport default function _regeneratorRuntime() {\n \"use strict\";\n /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */\n\n _regeneratorRuntime = function _regeneratorRuntime() {\n return exports;\n };\n\n var exports = {},\n Op = Object.prototype,\n hasOwn = Op.hasOwnProperty,\n $Symbol = \"function\" == typeof Symbol ? Symbol : {},\n iteratorSymbol = $Symbol.iterator || \"@@iterator\",\n asyncIteratorSymbol = $Symbol.asyncIterator || \"@@asyncIterator\",\n toStringTagSymbol = $Symbol.toStringTag || \"@@toStringTag\";\n\n function define(obj, key, value) {\n return Object.defineProperty(obj, key, {\n value: value,\n enumerable: !0,\n configurable: !0,\n writable: !0\n }), obj[key];\n }\n\n try {\n define({}, \"\");\n } catch (err) {\n define = function define(obj, key, value) {\n return obj[key] = value;\n };\n }\n\n function wrap(innerFn, outerFn, self, tryLocsList) {\n var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator,\n generator = Object.create(protoGenerator.prototype),\n context = new Context(tryLocsList || []);\n return generator._invoke = function (innerFn, self, context) {\n var state = \"suspendedStart\";\n return function (method, arg) {\n if (\"executing\" === state) throw new Error(\"Generator is already running\");\n\n if (\"completed\" === state) {\n if (\"throw\" === method) throw arg;\n return doneResult();\n }\n\n for (context.method = method, context.arg = arg;;) {\n var delegate = context.delegate;\n\n if (delegate) {\n var delegateResult = maybeInvokeDelegate(delegate, context);\n\n if (delegateResult) {\n if (delegateResult === ContinueSentinel) continue;\n return delegateResult;\n }\n }\n\n if (\"next\" === context.method) context.sent = context._sent = context.arg;else if (\"throw\" === context.method) {\n if (\"suspendedStart\" === state) throw state = \"completed\", context.arg;\n context.dispatchException(context.arg);\n } else \"return\" === context.method && context.abrupt(\"return\", context.arg);\n state = \"executing\";\n var record = tryCatch(innerFn, self, context);\n\n if (\"normal\" === record.type) {\n if (state = context.done ? \"completed\" : \"suspendedYield\", record.arg === ContinueSentinel) continue;\n return {\n value: record.arg,\n done: context.done\n };\n }\n\n \"throw\" === record.type && (state = \"completed\", context.method = \"throw\", context.arg = record.arg);\n }\n };\n }(innerFn, self, context), generator;\n }\n\n function tryCatch(fn, obj, arg) {\n try {\n return {\n type: \"normal\",\n arg: fn.call(obj, arg)\n };\n } catch (err) {\n return {\n type: \"throw\",\n arg: err\n };\n }\n }\n\n exports.wrap = wrap;\n var ContinueSentinel = {};\n\n function Generator() {}\n\n function GeneratorFunction() {}\n\n function GeneratorFunctionPrototype() {}\n\n var IteratorPrototype = {};\n define(IteratorPrototype, iteratorSymbol, function () {\n return this;\n });\n var getProto = Object.getPrototypeOf,\n NativeIteratorPrototype = getProto && getProto(getProto(values([])));\n NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype);\n var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype);\n\n function defineIteratorMethods(prototype) {\n [\"next\", \"throw\", \"return\"].forEach(function (method) {\n define(prototype, method, function (arg) {\n return this._invoke(method, arg);\n });\n });\n }\n\n function AsyncIterator(generator, PromiseImpl) {\n function invoke(method, arg, resolve, reject) {\n var record = tryCatch(generator[method], generator, arg);\n\n if (\"throw\" !== record.type) {\n var result = record.arg,\n value = result.value;\n return value && \"object\" == _typeof(value) && hasOwn.call(value, \"__await\") ? PromiseImpl.resolve(value.__await).then(function (value) {\n invoke(\"next\", value, resolve, reject);\n }, function (err) {\n invoke(\"throw\", err, resolve, reject);\n }) : PromiseImpl.resolve(value).then(function (unwrapped) {\n result.value = unwrapped, resolve(result);\n }, function (error) {\n return invoke(\"throw\", error, resolve, reject);\n });\n }\n\n reject(record.arg);\n }\n\n var previousPromise;\n\n this._invoke = function (method, arg) {\n function callInvokeWithMethodAndArg() {\n return new PromiseImpl(function (resolve, reject) {\n invoke(method, arg, resolve, reject);\n });\n }\n\n return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();\n };\n }\n\n function maybeInvokeDelegate(delegate, context) {\n var method = delegate.iterator[context.method];\n\n if (undefined === method) {\n if (context.delegate = null, \"throw\" === context.method) {\n if (delegate.iterator[\"return\"] && (context.method = \"return\", context.arg = undefined, maybeInvokeDelegate(delegate, context), \"throw\" === context.method)) return ContinueSentinel;\n context.method = \"throw\", context.arg = new TypeError(\"The iterator does not provide a 'throw' method\");\n }\n\n return ContinueSentinel;\n }\n\n var record = tryCatch(method, delegate.iterator, context.arg);\n if (\"throw\" === record.type) return context.method = \"throw\", context.arg = record.arg, context.delegate = null, ContinueSentinel;\n var info = record.arg;\n return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, \"return\" !== context.method && (context.method = \"next\", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = \"throw\", context.arg = new TypeError(\"iterator result is not an object\"), context.delegate = null, ContinueSentinel);\n }\n\n function pushTryEntry(locs) {\n var entry = {\n tryLoc: locs[0]\n };\n 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry);\n }\n\n function resetTryEntry(entry) {\n var record = entry.completion || {};\n record.type = \"normal\", delete record.arg, entry.completion = record;\n }\n\n function Context(tryLocsList) {\n this.tryEntries = [{\n tryLoc: \"root\"\n }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0);\n }\n\n function values(iterable) {\n if (iterable) {\n var iteratorMethod = iterable[iteratorSymbol];\n if (iteratorMethod) return iteratorMethod.call(iterable);\n if (\"function\" == typeof iterable.next) return iterable;\n\n if (!isNaN(iterable.length)) {\n var i = -1,\n next = function next() {\n for (; ++i < iterable.length;) {\n if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next;\n }\n\n return next.value = undefined, next.done = !0, next;\n };\n\n return next.next = next;\n }\n }\n\n return {\n next: doneResult\n };\n }\n\n function doneResult() {\n return {\n value: undefined,\n done: !0\n };\n }\n\n return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, \"constructor\", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, \"constructor\", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, \"GeneratorFunction\"), exports.isGeneratorFunction = function (genFun) {\n var ctor = \"function\" == typeof genFun && genFun.constructor;\n return !!ctor && (ctor === GeneratorFunction || \"GeneratorFunction\" === (ctor.displayName || ctor.name));\n }, exports.mark = function (genFun) {\n return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, \"GeneratorFunction\")), genFun.prototype = Object.create(Gp), genFun;\n }, exports.awrap = function (arg) {\n return {\n __await: arg\n };\n }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () {\n return this;\n }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) {\n void 0 === PromiseImpl && (PromiseImpl = Promise);\n var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl);\n return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) {\n return result.done ? result.value : iter.next();\n });\n }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, \"Generator\"), define(Gp, iteratorSymbol, function () {\n return this;\n }), define(Gp, \"toString\", function () {\n return \"[object Generator]\";\n }), exports.keys = function (object) {\n var keys = [];\n\n for (var key in object) {\n keys.push(key);\n }\n\n return keys.reverse(), function next() {\n for (; keys.length;) {\n var key = keys.pop();\n if (key in object) return next.value = key, next.done = !1, next;\n }\n\n return next.done = !0, next;\n };\n }, exports.values = values, Context.prototype = {\n constructor: Context,\n reset: function reset(skipTempReset) {\n if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = \"next\", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) {\n \"t\" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined);\n }\n },\n stop: function stop() {\n this.done = !0;\n var rootRecord = this.tryEntries[0].completion;\n if (\"throw\" === rootRecord.type) throw rootRecord.arg;\n return this.rval;\n },\n dispatchException: function dispatchException(exception) {\n if (this.done) throw exception;\n var context = this;\n\n function handle(loc, caught) {\n return record.type = \"throw\", record.arg = exception, context.next = loc, caught && (context.method = \"next\", context.arg = undefined), !!caught;\n }\n\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i],\n record = entry.completion;\n if (\"root\" === entry.tryLoc) return handle(\"end\");\n\n if (entry.tryLoc <= this.prev) {\n var hasCatch = hasOwn.call(entry, \"catchLoc\"),\n hasFinally = hasOwn.call(entry, \"finallyLoc\");\n\n if (hasCatch && hasFinally) {\n if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);\n if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);\n } else if (hasCatch) {\n if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);\n } else {\n if (!hasFinally) throw new Error(\"try statement without catch or finally\");\n if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);\n }\n }\n }\n },\n abrupt: function abrupt(type, arg) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n\n if (entry.tryLoc <= this.prev && hasOwn.call(entry, \"finallyLoc\") && this.prev < entry.finallyLoc) {\n var finallyEntry = entry;\n break;\n }\n }\n\n finallyEntry && (\"break\" === type || \"continue\" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null);\n var record = finallyEntry ? finallyEntry.completion : {};\n return record.type = type, record.arg = arg, finallyEntry ? (this.method = \"next\", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record);\n },\n complete: function complete(record, afterLoc) {\n if (\"throw\" === record.type) throw record.arg;\n return \"break\" === record.type || \"continue\" === record.type ? this.next = record.arg : \"return\" === record.type ? (this.rval = this.arg = record.arg, this.method = \"return\", this.next = \"end\") : \"normal\" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel;\n },\n finish: function finish(finallyLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel;\n }\n },\n \"catch\": function _catch(tryLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n\n if (entry.tryLoc === tryLoc) {\n var record = entry.completion;\n\n if (\"throw\" === record.type) {\n var thrown = record.arg;\n resetTryEntry(entry);\n }\n\n return thrown;\n }\n }\n\n throw new Error(\"illegal catch attempt\");\n },\n delegateYield: function delegateYield(iterable, resultName, nextLoc) {\n return this.delegate = {\n iterator: values(iterable),\n resultName: resultName,\n nextLoc: nextLoc\n }, \"next\" === this.method && (this.arg = undefined), ContinueSentinel;\n }\n }, exports;\n}","export default function _setPrototypeOf(o, p) {\n _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {\n o.__proto__ = p;\n return o;\n };\n return _setPrototypeOf(o, p);\n}","import arrayWithHoles from \"./arrayWithHoles.js\";\nimport iterableToArrayLimit from \"./iterableToArrayLimit.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableRest from \"./nonIterableRest.js\";\nexport default function _slicedToArray(arr, i) {\n return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();\n}","export default function _iterableToArrayLimit(arr, i) {\n var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"];\n\n if (_i == null) return;\n var _arr = [];\n var _n = true;\n var _d = false;\n\n var _s, _e;\n\n try {\n for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n\n return _arr;\n}","export default function _taggedTemplateLiteral(strings, raw) {\n if (!raw) {\n raw = strings.slice(0);\n }\n\n return Object.freeze(Object.defineProperties(strings, {\n raw: {\n value: Object.freeze(raw)\n }\n }));\n}","import arrayWithoutHoles from \"./arrayWithoutHoles.js\";\nimport iterableToArray from \"./iterableToArray.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableSpread from \"./nonIterableSpread.js\";\nexport default function _toConsumableArray(arr) {\n return arrayWithoutHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableSpread();\n}","import arrayLikeToArray from \"./arrayLikeToArray.js\";\nexport default function _arrayWithoutHoles(arr) {\n if (Array.isArray(arr)) return arrayLikeToArray(arr);\n}","export default function _nonIterableSpread() {\n throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}","export default function _typeof(obj) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) {\n return typeof obj;\n } : function (obj) {\n return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n }, _typeof(obj);\n}","import arrayLikeToArray from \"./arrayLikeToArray.js\";\nexport default function _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);\n}","const pi = Math.PI,\n tau = 2 * pi,\n epsilon = 1e-6,\n tauEpsilon = tau - epsilon;\n\nfunction Path() {\n this._x0 = this._y0 = // start of current subpath\n this._x1 = this._y1 = null; // end of current subpath\n this._ = \"\";\n}\n\nfunction path() {\n return new Path;\n}\n\nPath.prototype = path.prototype = {\n constructor: Path,\n moveTo: function(x, y) {\n this._ += \"M\" + (this._x0 = this._x1 = +x) + \",\" + (this._y0 = this._y1 = +y);\n },\n closePath: function() {\n if (this._x1 !== null) {\n this._x1 = this._x0, this._y1 = this._y0;\n this._ += \"Z\";\n }\n },\n lineTo: function(x, y) {\n this._ += \"L\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n quadraticCurveTo: function(x1, y1, x, y) {\n this._ += \"Q\" + (+x1) + \",\" + (+y1) + \",\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n bezierCurveTo: function(x1, y1, x2, y2, x, y) {\n this._ += \"C\" + (+x1) + \",\" + (+y1) + \",\" + (+x2) + \",\" + (+y2) + \",\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n arcTo: function(x1, y1, x2, y2, r) {\n x1 = +x1, y1 = +y1, x2 = +x2, y2 = +y2, r = +r;\n var x0 = this._x1,\n y0 = this._y1,\n x21 = x2 - x1,\n y21 = y2 - y1,\n x01 = x0 - x1,\n y01 = y0 - y1,\n l01_2 = x01 * x01 + y01 * y01;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(\"negative radius: \" + r);\n\n // Is this path empty? Move to (x1,y1).\n if (this._x1 === null) {\n this._ += \"M\" + (this._x1 = x1) + \",\" + (this._y1 = y1);\n }\n\n // Or, is (x1,y1) coincident with (x0,y0)? Do nothing.\n else if (!(l01_2 > epsilon));\n\n // Or, are (x0,y0), (x1,y1) and (x2,y2) collinear?\n // Equivalently, is (x1,y1) coincident with (x2,y2)?\n // Or, is the radius zero? Line to (x1,y1).\n else if (!(Math.abs(y01 * x21 - y21 * x01) > epsilon) || !r) {\n this._ += \"L\" + (this._x1 = x1) + \",\" + (this._y1 = y1);\n }\n\n // Otherwise, draw an arc!\n else {\n var x20 = x2 - x0,\n y20 = y2 - y0,\n l21_2 = x21 * x21 + y21 * y21,\n l20_2 = x20 * x20 + y20 * y20,\n l21 = Math.sqrt(l21_2),\n l01 = Math.sqrt(l01_2),\n l = r * Math.tan((pi - Math.acos((l21_2 + l01_2 - l20_2) / (2 * l21 * l01))) / 2),\n t01 = l / l01,\n t21 = l / l21;\n\n // If the start tangent is not coincident with (x0,y0), line to.\n if (Math.abs(t01 - 1) > epsilon) {\n this._ += \"L\" + (x1 + t01 * x01) + \",\" + (y1 + t01 * y01);\n }\n\n this._ += \"A\" + r + \",\" + r + \",0,0,\" + (+(y01 * x20 > x01 * y20)) + \",\" + (this._x1 = x1 + t21 * x21) + \",\" + (this._y1 = y1 + t21 * y21);\n }\n },\n arc: function(x, y, r, a0, a1, ccw) {\n x = +x, y = +y, r = +r, ccw = !!ccw;\n var dx = r * Math.cos(a0),\n dy = r * Math.sin(a0),\n x0 = x + dx,\n y0 = y + dy,\n cw = 1 ^ ccw,\n da = ccw ? a0 - a1 : a1 - a0;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(\"negative radius: \" + r);\n\n // Is this path empty? Move to (x0,y0).\n if (this._x1 === null) {\n this._ += \"M\" + x0 + \",\" + y0;\n }\n\n // Or, is (x0,y0) not coincident with the previous point? Line to (x0,y0).\n else if (Math.abs(this._x1 - x0) > epsilon || Math.abs(this._y1 - y0) > epsilon) {\n this._ += \"L\" + x0 + \",\" + y0;\n }\n\n // Is this arc empty? We’re done.\n if (!r) return;\n\n // Does the angle go the wrong way? Flip the direction.\n if (da < 0) da = da % tau + tau;\n\n // Is this a complete circle? Draw two arcs to complete the circle.\n if (da > tauEpsilon) {\n this._ += \"A\" + r + \",\" + r + \",0,1,\" + cw + \",\" + (x - dx) + \",\" + (y - dy) + \"A\" + r + \",\" + r + \",0,1,\" + cw + \",\" + (this._x1 = x0) + \",\" + (this._y1 = y0);\n }\n\n // Is this arc non-empty? Draw an arc!\n else if (da > epsilon) {\n this._ += \"A\" + r + \",\" + r + \",0,\" + (+(da >= pi)) + \",\" + cw + \",\" + (this._x1 = x + r * Math.cos(a1)) + \",\" + (this._y1 = y + r * Math.sin(a1));\n }\n },\n rect: function(x, y, w, h) {\n this._ += \"M\" + (this._x0 = this._x1 = +x) + \",\" + (this._y0 = this._y1 = +y) + \"h\" + (+w) + \"v\" + (+h) + \"h\" + (-w) + \"Z\";\n },\n toString: function() {\n return this._;\n }\n};\n\nexport default path;\n","export default function range(start, stop, step) {\n start = +start, stop = +stop, step = (n = arguments.length) < 2 ? (stop = start, start = 0, 1) : n < 3 ? 1 : +step;\n\n var i = -1,\n n = Math.max(0, Math.ceil((stop - start) / step)) | 0,\n range = new Array(n);\n\n while (++i < n) {\n range[i] = start + i * step;\n }\n\n return range;\n}\n","import {range as sequence} from \"d3-array\";\nimport {initRange} from \"./init.js\";\nimport ordinal from \"./ordinal.js\";\n\nexport default function band() {\n var scale = ordinal().unknown(undefined),\n domain = scale.domain,\n ordinalRange = scale.range,\n r0 = 0,\n r1 = 1,\n step,\n bandwidth,\n round = false,\n paddingInner = 0,\n paddingOuter = 0,\n align = 0.5;\n\n delete scale.unknown;\n\n function rescale() {\n var n = domain().length,\n reverse = r1 < r0,\n start = reverse ? r1 : r0,\n stop = reverse ? r0 : r1;\n step = (stop - start) / Math.max(1, n - paddingInner + paddingOuter * 2);\n if (round) step = Math.floor(step);\n start += (stop - start - step * (n - paddingInner)) * align;\n bandwidth = step * (1 - paddingInner);\n if (round) start = Math.round(start), bandwidth = Math.round(bandwidth);\n var values = sequence(n).map(function(i) { return start + step * i; });\n return ordinalRange(reverse ? values.reverse() : values);\n }\n\n scale.domain = function(_) {\n return arguments.length ? (domain(_), rescale()) : domain();\n };\n\n scale.range = function(_) {\n return arguments.length ? ([r0, r1] = _, r0 = +r0, r1 = +r1, rescale()) : [r0, r1];\n };\n\n scale.rangeRound = function(_) {\n return [r0, r1] = _, r0 = +r0, r1 = +r1, round = true, rescale();\n };\n\n scale.bandwidth = function() {\n return bandwidth;\n };\n\n scale.step = function() {\n return step;\n };\n\n scale.round = function(_) {\n return arguments.length ? (round = !!_, rescale()) : round;\n };\n\n scale.padding = function(_) {\n return arguments.length ? (paddingInner = Math.min(1, paddingOuter = +_), rescale()) : paddingInner;\n };\n\n scale.paddingInner = function(_) {\n return arguments.length ? (paddingInner = Math.min(1, _), rescale()) : paddingInner;\n };\n\n scale.paddingOuter = function(_) {\n return arguments.length ? (paddingOuter = +_, rescale()) : paddingOuter;\n };\n\n scale.align = function(_) {\n return arguments.length ? (align = Math.max(0, Math.min(1, _)), rescale()) : align;\n };\n\n scale.copy = function() {\n return band(domain(), [r0, r1])\n .round(round)\n .paddingInner(paddingInner)\n .paddingOuter(paddingOuter)\n .align(align);\n };\n\n return initRange.apply(rescale(), arguments);\n}\n\nfunction pointish(scale) {\n var copy = scale.copy;\n\n scale.padding = scale.paddingOuter;\n delete scale.paddingInner;\n delete scale.paddingOuter;\n\n scale.copy = function() {\n return pointish(copy());\n };\n\n return scale;\n}\n\nexport function point() {\n return pointish(band.apply(null, arguments).paddingInner(1));\n}\n","export function initRange(domain, range) {\n switch (arguments.length) {\n case 0: break;\n case 1: this.range(domain); break;\n default: this.range(range).domain(domain); break;\n }\n return this;\n}\n\nexport function initInterpolator(domain, interpolator) {\n switch (arguments.length) {\n case 0: break;\n case 1: {\n if (typeof domain === \"function\") this.interpolator(domain);\n else this.range(domain);\n break;\n }\n default: {\n this.domain(domain);\n if (typeof interpolator === \"function\") this.interpolator(interpolator);\n else this.range(interpolator);\n break;\n }\n }\n return this;\n}\n","export class InternMap extends Map {\n constructor(entries, key = keyof) {\n super();\n Object.defineProperties(this, {_intern: {value: new Map()}, _key: {value: key}});\n if (entries != null) for (const [key, value] of entries) this.set(key, value);\n }\n get(key) {\n return super.get(intern_get(this, key));\n }\n has(key) {\n return super.has(intern_get(this, key));\n }\n set(key, value) {\n return super.set(intern_set(this, key), value);\n }\n delete(key) {\n return super.delete(intern_delete(this, key));\n }\n}\n\nexport class InternSet extends Set {\n constructor(values, key = keyof) {\n super();\n Object.defineProperties(this, {_intern: {value: new Map()}, _key: {value: key}});\n if (values != null) for (const value of values) this.add(value);\n }\n has(value) {\n return super.has(intern_get(this, value));\n }\n add(value) {\n return super.add(intern_set(this, value));\n }\n delete(value) {\n return super.delete(intern_delete(this, value));\n }\n}\n\nfunction intern_get({_intern, _key}, value) {\n const key = _key(value);\n return _intern.has(key) ? _intern.get(key) : value;\n}\n\nfunction intern_set({_intern, _key}, value) {\n const key = _key(value);\n if (_intern.has(key)) return _intern.get(key);\n _intern.set(key, value);\n return value;\n}\n\nfunction intern_delete({_intern, _key}, value) {\n const key = _key(value);\n if (_intern.has(key)) {\n value = _intern.get(key);\n _intern.delete(key);\n }\n return value;\n}\n\nfunction keyof(value) {\n return value !== null && typeof value === \"object\" ? value.valueOf() : value;\n}\n","import {InternMap} from \"d3-array\";\nimport {initRange} from \"./init.js\";\n\nexport const implicit = Symbol(\"implicit\");\n\nexport default function ordinal() {\n var index = new InternMap(),\n domain = [],\n range = [],\n unknown = implicit;\n\n function scale(d) {\n let i = index.get(d);\n if (i === undefined) {\n if (unknown !== implicit) return unknown;\n index.set(d, i = domain.push(d) - 1);\n }\n return range[i % range.length];\n }\n\n scale.domain = function(_) {\n if (!arguments.length) return domain.slice();\n domain = [], index = new InternMap();\n for (const value of _) {\n if (index.has(value)) continue;\n index.set(value, domain.push(value) - 1);\n }\n return scale;\n };\n\n scale.range = function(_) {\n return arguments.length ? (range = Array.from(_), scale) : range.slice();\n };\n\n scale.unknown = function(_) {\n return arguments.length ? (unknown = _, scale) : unknown;\n };\n\n scale.copy = function() {\n return ordinal(domain, range).unknown(unknown);\n };\n\n initRange.apply(scale, arguments);\n\n return scale;\n}\n","export var slice = Array.prototype.slice;\n\nexport default function(x) {\n return typeof x === \"object\" && \"length\" in x\n ? x // Array, TypedArray, NodeList, array-like\n : Array.from(x); // Map, Set, iterable, string, or anything else\n}\n","export default function(x) {\n return function constant() {\n return x;\n };\n}\n","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n/* eslint-disable flowtype/no-weak-types */\nimport nodejsCustomInspectSymbol from \"./nodejsCustomInspectSymbol.mjs\";\nvar MAX_ARRAY_LENGTH = 10;\nvar MAX_RECURSIVE_DEPTH = 2;\n/**\n * Used to print values in error messages.\n */\n\nexport default function inspect(value) {\n return formatValue(value, []);\n}\n\nfunction formatValue(value, seenValues) {\n switch (_typeof(value)) {\n case 'string':\n return JSON.stringify(value);\n\n case 'function':\n return value.name ? \"[function \".concat(value.name, \"]\") : '[function]';\n\n case 'object':\n if (value === null) {\n return 'null';\n }\n\n return formatObjectValue(value, seenValues);\n\n default:\n return String(value);\n }\n}\n\nfunction formatObjectValue(value, previouslySeenValues) {\n if (previouslySeenValues.indexOf(value) !== -1) {\n return '[Circular]';\n }\n\n var seenValues = [].concat(previouslySeenValues, [value]);\n var customInspectFn = getCustomFn(value);\n\n if (customInspectFn !== undefined) {\n var customValue = customInspectFn.call(value); // check for infinite recursion\n\n if (customValue !== value) {\n return typeof customValue === 'string' ? customValue : formatValue(customValue, seenValues);\n }\n } else if (Array.isArray(value)) {\n return formatArray(value, seenValues);\n }\n\n return formatObject(value, seenValues);\n}\n\nfunction formatObject(object, seenValues) {\n var keys = Object.keys(object);\n\n if (keys.length === 0) {\n return '{}';\n }\n\n if (seenValues.length > MAX_RECURSIVE_DEPTH) {\n return '[' + getObjectTag(object) + ']';\n }\n\n var properties = keys.map(function (key) {\n var value = formatValue(object[key], seenValues);\n return key + ': ' + value;\n });\n return '{ ' + properties.join(', ') + ' }';\n}\n\nfunction formatArray(array, seenValues) {\n if (array.length === 0) {\n return '[]';\n }\n\n if (seenValues.length > MAX_RECURSIVE_DEPTH) {\n return '[Array]';\n }\n\n var len = Math.min(MAX_ARRAY_LENGTH, array.length);\n var remaining = array.length - len;\n var items = [];\n\n for (var i = 0; i < len; ++i) {\n items.push(formatValue(array[i], seenValues));\n }\n\n if (remaining === 1) {\n items.push('... 1 more item');\n } else if (remaining > 1) {\n items.push(\"... \".concat(remaining, \" more items\"));\n }\n\n return '[' + items.join(', ') + ']';\n}\n\nfunction getCustomFn(object) {\n var customInspectFn = object[String(nodejsCustomInspectSymbol)];\n\n if (typeof customInspectFn === 'function') {\n return customInspectFn;\n }\n\n if (typeof object.inspect === 'function') {\n return object.inspect;\n }\n}\n\nfunction getObjectTag(object) {\n var tag = Object.prototype.toString.call(object).replace(/^\\[object /, '').replace(/]$/, '');\n\n if (tag === 'Object' && typeof object.constructor === 'function') {\n var name = object.constructor.name;\n\n if (typeof name === 'string' && name !== '') {\n return name;\n }\n }\n\n return tag;\n}\n","// istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')\nvar nodejsCustomInspectSymbol = typeof Symbol === 'function' && typeof Symbol.for === 'function' ? Symbol.for('nodejs.util.inspect.custom') : undefined;\nexport default nodejsCustomInspectSymbol;\n","import invariant from \"./invariant.mjs\";\nimport nodejsCustomInspectSymbol from \"./nodejsCustomInspectSymbol.mjs\";\n/**\n * The `defineInspect()` function defines `inspect()` prototype method as alias of `toJSON`\n */\n\nexport default function defineInspect(classObject) {\n var fn = classObject.prototype.toJSON;\n typeof fn === 'function' || invariant(0);\n classObject.prototype.inspect = fn; // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2317')\n\n if (nodejsCustomInspectSymbol) {\n classObject.prototype[nodejsCustomInspectSymbol] = fn;\n }\n}\n","export default function invariant(condition, message) {\n var booleanCondition = Boolean(condition); // istanbul ignore else (See transformation done in './resources/inlineInvariant.js')\n\n if (!booleanCondition) {\n throw new Error(message != null ? message : 'Unexpected invariant triggered.');\n }\n}\n","import defineInspect from \"../jsutils/defineInspect.mjs\";\n\n/**\n * Contains a range of UTF-8 character offsets and token references that\n * identify the region of the source from which the AST derived.\n */\nexport var Location = /*#__PURE__*/function () {\n /**\n * The character offset at which this Node begins.\n */\n\n /**\n * The character offset at which this Node ends.\n */\n\n /**\n * The Token at which this Node begins.\n */\n\n /**\n * The Token at which this Node ends.\n */\n\n /**\n * The Source document the AST represents.\n */\n function Location(startToken, endToken, source) {\n this.start = startToken.start;\n this.end = endToken.end;\n this.startToken = startToken;\n this.endToken = endToken;\n this.source = source;\n }\n\n var _proto = Location.prototype;\n\n _proto.toJSON = function toJSON() {\n return {\n start: this.start,\n end: this.end\n };\n };\n\n return Location;\n}(); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\ndefineInspect(Location);\n/**\n * Represents a range of characters represented by a lexical token\n * within a Source.\n */\n\nexport var Token = /*#__PURE__*/function () {\n /**\n * The kind of Token.\n */\n\n /**\n * The character offset at which this Node begins.\n */\n\n /**\n * The character offset at which this Node ends.\n */\n\n /**\n * The 1-indexed line number on which this Token appears.\n */\n\n /**\n * The 1-indexed column number at which this Token begins.\n */\n\n /**\n * For non-punctuation tokens, represents the interpreted value of the token.\n */\n\n /**\n * Tokens exist as nodes in a double-linked-list amongst all tokens\n * including ignored tokens. is always the first node and \n * the last.\n */\n function Token(kind, start, end, line, column, prev, value) {\n this.kind = kind;\n this.start = start;\n this.end = end;\n this.line = line;\n this.column = column;\n this.value = value;\n this.prev = prev;\n this.next = null;\n }\n\n var _proto2 = Token.prototype;\n\n _proto2.toJSON = function toJSON() {\n return {\n kind: this.kind,\n value: this.value,\n line: this.line,\n column: this.column\n };\n };\n\n return Token;\n}(); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\ndefineInspect(Token);\n/**\n * @internal\n */\n\nexport function isNode(maybeNode) {\n return maybeNode != null && typeof maybeNode.kind === 'string';\n}\n/**\n * The list of all possible AST node types.\n */\n","/**\n * Produces the value of a block string from its parsed raw value, similar to\n * CoffeeScript's block string, Python's docstring trim or Ruby's strip_heredoc.\n *\n * This implements the GraphQL spec's BlockStringValue() static algorithm.\n *\n * @internal\n */\nexport function dedentBlockStringValue(rawString) {\n // Expand a block string's raw value into independent lines.\n var lines = rawString.split(/\\r\\n|[\\n\\r]/g); // Remove common indentation from all lines but first.\n\n var commonIndent = getBlockStringIndentation(rawString);\n\n if (commonIndent !== 0) {\n for (var i = 1; i < lines.length; i++) {\n lines[i] = lines[i].slice(commonIndent);\n }\n } // Remove leading and trailing blank lines.\n\n\n var startLine = 0;\n\n while (startLine < lines.length && isBlank(lines[startLine])) {\n ++startLine;\n }\n\n var endLine = lines.length;\n\n while (endLine > startLine && isBlank(lines[endLine - 1])) {\n --endLine;\n } // Return a string of the lines joined with U+000A.\n\n\n return lines.slice(startLine, endLine).join('\\n');\n}\n\nfunction isBlank(str) {\n for (var i = 0; i < str.length; ++i) {\n if (str[i] !== ' ' && str[i] !== '\\t') {\n return false;\n }\n }\n\n return true;\n}\n/**\n * @internal\n */\n\n\nexport function getBlockStringIndentation(value) {\n var _commonIndent;\n\n var isFirstLine = true;\n var isEmptyLine = true;\n var indent = 0;\n var commonIndent = null;\n\n for (var i = 0; i < value.length; ++i) {\n switch (value.charCodeAt(i)) {\n case 13:\n // \\r\n if (value.charCodeAt(i + 1) === 10) {\n ++i; // skip \\r\\n as one symbol\n }\n\n // falls through\n\n case 10:\n // \\n\n isFirstLine = false;\n isEmptyLine = true;\n indent = 0;\n break;\n\n case 9: // \\t\n\n case 32:\n // \n ++indent;\n break;\n\n default:\n if (isEmptyLine && !isFirstLine && (commonIndent === null || indent < commonIndent)) {\n commonIndent = indent;\n }\n\n isEmptyLine = false;\n }\n }\n\n return (_commonIndent = commonIndent) !== null && _commonIndent !== void 0 ? _commonIndent : 0;\n}\n/**\n * Print a block string in the indented block form by adding a leading and\n * trailing blank line. However, if a block string starts with whitespace and is\n * a single-line, adding a leading blank line would strip that whitespace.\n *\n * @internal\n */\n\nexport function printBlockString(value) {\n var indentation = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';\n var preferMultipleLines = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n var isSingleLine = value.indexOf('\\n') === -1;\n var hasLeadingSpace = value[0] === ' ' || value[0] === '\\t';\n var hasTrailingQuote = value[value.length - 1] === '\"';\n var hasTrailingSlash = value[value.length - 1] === '\\\\';\n var printAsMultipleLines = !isSingleLine || hasTrailingQuote || hasTrailingSlash || preferMultipleLines;\n var result = ''; // Format a multi-line block quote to account for leading space.\n\n if (printAsMultipleLines && !(isSingleLine && hasLeadingSpace)) {\n result += '\\n' + indentation;\n }\n\n result += indentation ? value.replace(/\\n/g, '\\n' + indentation) : value;\n\n if (printAsMultipleLines) {\n result += '\\n';\n }\n\n return '\"\"\"' + result.replace(/\"\"\"/g, '\\\\\"\"\"') + '\"\"\"';\n}\n","export default function devAssert(condition, message) {\n var booleanCondition = Boolean(condition); // istanbul ignore else (See transformation done in './resources/inlineInvariant.js')\n\n if (!booleanCondition) {\n throw new Error(message);\n }\n}\n","function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nimport inspect from \"./inspect.mjs\";\n/**\n * A replacement for instanceof which includes an error warning when multi-realm\n * constructors are detected.\n */\n\n// See: https://expressjs.com/en/advanced/best-practice-performance.html#set-node_env-to-production\n// See: https://webpack.js.org/guides/production/\nexport default process.env.NODE_ENV === 'production' ? // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')\n// eslint-disable-next-line no-shadow\nfunction instanceOf(value, constructor) {\n return value instanceof constructor;\n} : // eslint-disable-next-line no-shadow\nfunction instanceOf(value, constructor) {\n if (value instanceof constructor) {\n return true;\n }\n\n if (_typeof(value) === 'object' && value !== null) {\n var _value$constructor;\n\n var className = constructor.prototype[Symbol.toStringTag];\n var valueClassName = // We still need to support constructor's name to detect conflicts with older versions of this library.\n Symbol.toStringTag in value ? value[Symbol.toStringTag] : (_value$constructor = value.constructor) === null || _value$constructor === void 0 ? void 0 : _value$constructor.name;\n\n if (className === valueClassName) {\n var stringifiedValue = inspect(value);\n throw new Error(\"Cannot use \".concat(className, \" \\\"\").concat(stringifiedValue, \"\\\" from another module or realm.\\n\\nEnsure that there is only one instance of \\\"graphql\\\" in the node_modules\\ndirectory. If different versions of \\\"graphql\\\" are the dependencies of other\\nrelied on modules, use \\\"resolutions\\\" to ensure only one version is installed.\\n\\nhttps://yarnpkg.com/en/docs/selective-version-resolutions\\n\\nDuplicate \\\"graphql\\\" modules cannot be used at the same time since different\\nversions may have different capabilities and behavior. The data from one\\nversion used in the function from another could produce confusing and\\nspurious results.\"));\n }\n }\n\n return false;\n};\n","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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nimport { SYMBOL_TO_STRING_TAG } from \"../polyfills/symbols.mjs\";\nimport inspect from \"../jsutils/inspect.mjs\";\nimport devAssert from \"../jsutils/devAssert.mjs\";\nimport instanceOf from \"../jsutils/instanceOf.mjs\";\n\n/**\n * A representation of source input to GraphQL. The `name` and `locationOffset` parameters are\n * optional, but they are useful for clients who store GraphQL documents in source files.\n * For example, if the GraphQL input starts at line 40 in a file named `Foo.graphql`, it might\n * be useful for `name` to be `\"Foo.graphql\"` and location to be `{ line: 40, column: 1 }`.\n * The `line` and `column` properties in `locationOffset` are 1-indexed.\n */\nexport var Source = /*#__PURE__*/function () {\n function Source(body) {\n var name = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'GraphQL request';\n var locationOffset = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {\n line: 1,\n column: 1\n };\n typeof body === 'string' || devAssert(0, \"Body must be a string. Received: \".concat(inspect(body), \".\"));\n this.body = body;\n this.name = name;\n this.locationOffset = locationOffset;\n this.locationOffset.line > 0 || devAssert(0, 'line in locationOffset is 1-indexed and must be positive.');\n this.locationOffset.column > 0 || devAssert(0, 'column in locationOffset is 1-indexed and must be positive.');\n } // $FlowFixMe[unsupported-syntax] Flow doesn't support computed properties yet\n\n\n _createClass(Source, [{\n key: SYMBOL_TO_STRING_TAG,\n get: function get() {\n return 'Source';\n }\n }]);\n\n return Source;\n}();\n/**\n * Test if the given value is a Source object.\n *\n * @internal\n */\n\n// eslint-disable-next-line no-redeclare\nexport function isSource(source) {\n return instanceOf(source, Source);\n}\n","import inspect from \"../jsutils/inspect.mjs\";\nimport { isNode } from \"./ast.mjs\";\n/**\n * A visitor is provided to visit, it contains the collection of\n * relevant functions to be called during the visitor's traversal.\n */\n\nexport var QueryDocumentKeys = {\n Name: [],\n Document: ['definitions'],\n OperationDefinition: ['name', 'variableDefinitions', 'directives', 'selectionSet'],\n VariableDefinition: ['variable', 'type', 'defaultValue', 'directives'],\n Variable: ['name'],\n SelectionSet: ['selections'],\n Field: ['alias', 'name', 'arguments', 'directives', 'selectionSet'],\n Argument: ['name', 'value'],\n FragmentSpread: ['name', 'directives'],\n InlineFragment: ['typeCondition', 'directives', 'selectionSet'],\n FragmentDefinition: ['name', // Note: fragment variable definitions are experimental and may be changed\n // or removed in the future.\n 'variableDefinitions', 'typeCondition', 'directives', 'selectionSet'],\n IntValue: [],\n FloatValue: [],\n StringValue: [],\n BooleanValue: [],\n NullValue: [],\n EnumValue: [],\n ListValue: ['values'],\n ObjectValue: ['fields'],\n ObjectField: ['name', 'value'],\n Directive: ['name', 'arguments'],\n NamedType: ['name'],\n ListType: ['type'],\n NonNullType: ['type'],\n SchemaDefinition: ['description', 'directives', 'operationTypes'],\n OperationTypeDefinition: ['type'],\n ScalarTypeDefinition: ['description', 'name', 'directives'],\n ObjectTypeDefinition: ['description', 'name', 'interfaces', 'directives', 'fields'],\n FieldDefinition: ['description', 'name', 'arguments', 'type', 'directives'],\n InputValueDefinition: ['description', 'name', 'type', 'defaultValue', 'directives'],\n InterfaceTypeDefinition: ['description', 'name', 'interfaces', 'directives', 'fields'],\n UnionTypeDefinition: ['description', 'name', 'directives', 'types'],\n EnumTypeDefinition: ['description', 'name', 'directives', 'values'],\n EnumValueDefinition: ['description', 'name', 'directives'],\n InputObjectTypeDefinition: ['description', 'name', 'directives', 'fields'],\n DirectiveDefinition: ['description', 'name', 'arguments', 'locations'],\n SchemaExtension: ['directives', 'operationTypes'],\n ScalarTypeExtension: ['name', 'directives'],\n ObjectTypeExtension: ['name', 'interfaces', 'directives', 'fields'],\n InterfaceTypeExtension: ['name', 'interfaces', 'directives', 'fields'],\n UnionTypeExtension: ['name', 'directives', 'types'],\n EnumTypeExtension: ['name', 'directives', 'values'],\n InputObjectTypeExtension: ['name', 'directives', 'fields']\n};\nexport var BREAK = Object.freeze({});\n/**\n * visit() will walk through an AST using a depth-first traversal, calling\n * the visitor's enter function at each node in the traversal, and calling the\n * leave function after visiting that node and all of its child nodes.\n *\n * By returning different values from the enter and leave functions, the\n * behavior of the visitor can be altered, including skipping over a sub-tree of\n * the AST (by returning false), editing the AST by returning a value or null\n * to remove the value, or to stop the whole traversal by returning BREAK.\n *\n * When using visit() to edit an AST, the original AST will not be modified, and\n * a new version of the AST with the changes applied will be returned from the\n * visit function.\n *\n * const editedAST = visit(ast, {\n * enter(node, key, parent, path, ancestors) {\n * // @return\n * // undefined: no action\n * // false: skip visiting this node\n * // visitor.BREAK: stop visiting altogether\n * // null: delete this node\n * // any value: replace this node with the returned value\n * },\n * leave(node, key, parent, path, ancestors) {\n * // @return\n * // undefined: no action\n * // false: no action\n * // visitor.BREAK: stop visiting altogether\n * // null: delete this node\n * // any value: replace this node with the returned value\n * }\n * });\n *\n * Alternatively to providing enter() and leave() functions, a visitor can\n * instead provide functions named the same as the kinds of AST nodes, or\n * enter/leave visitors at a named key, leading to four permutations of the\n * visitor API:\n *\n * 1) Named visitors triggered when entering a node of a specific kind.\n *\n * visit(ast, {\n * Kind(node) {\n * // enter the \"Kind\" node\n * }\n * })\n *\n * 2) Named visitors that trigger upon entering and leaving a node of\n * a specific kind.\n *\n * visit(ast, {\n * Kind: {\n * enter(node) {\n * // enter the \"Kind\" node\n * }\n * leave(node) {\n * // leave the \"Kind\" node\n * }\n * }\n * })\n *\n * 3) Generic visitors that trigger upon entering and leaving any node.\n *\n * visit(ast, {\n * enter(node) {\n * // enter any node\n * },\n * leave(node) {\n * // leave any node\n * }\n * })\n *\n * 4) Parallel visitors for entering and leaving nodes of a specific kind.\n *\n * visit(ast, {\n * enter: {\n * Kind(node) {\n * // enter the \"Kind\" node\n * }\n * },\n * leave: {\n * Kind(node) {\n * // leave the \"Kind\" node\n * }\n * }\n * })\n */\n\nexport function visit(root, visitor) {\n var visitorKeys = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : QueryDocumentKeys;\n\n /* eslint-disable no-undef-init */\n var stack = undefined;\n var inArray = Array.isArray(root);\n var keys = [root];\n var index = -1;\n var edits = [];\n var node = undefined;\n var key = undefined;\n var parent = undefined;\n var path = [];\n var ancestors = [];\n var newRoot = root;\n /* eslint-enable no-undef-init */\n\n do {\n index++;\n var isLeaving = index === keys.length;\n var isEdited = isLeaving && edits.length !== 0;\n\n if (isLeaving) {\n key = ancestors.length === 0 ? undefined : path[path.length - 1];\n node = parent;\n parent = ancestors.pop();\n\n if (isEdited) {\n if (inArray) {\n node = node.slice();\n } else {\n var clone = {};\n\n for (var _i2 = 0, _Object$keys2 = Object.keys(node); _i2 < _Object$keys2.length; _i2++) {\n var k = _Object$keys2[_i2];\n clone[k] = node[k];\n }\n\n node = clone;\n }\n\n var editOffset = 0;\n\n for (var ii = 0; ii < edits.length; ii++) {\n var editKey = edits[ii][0];\n var editValue = edits[ii][1];\n\n if (inArray) {\n editKey -= editOffset;\n }\n\n if (inArray && editValue === null) {\n node.splice(editKey, 1);\n editOffset++;\n } else {\n node[editKey] = editValue;\n }\n }\n }\n\n index = stack.index;\n keys = stack.keys;\n edits = stack.edits;\n inArray = stack.inArray;\n stack = stack.prev;\n } else {\n key = parent ? inArray ? index : keys[index] : undefined;\n node = parent ? parent[key] : newRoot;\n\n if (node === null || node === undefined) {\n continue;\n }\n\n if (parent) {\n path.push(key);\n }\n }\n\n var result = void 0;\n\n if (!Array.isArray(node)) {\n if (!isNode(node)) {\n throw new Error(\"Invalid AST Node: \".concat(inspect(node), \".\"));\n }\n\n var visitFn = getVisitFn(visitor, node.kind, isLeaving);\n\n if (visitFn) {\n result = visitFn.call(visitor, node, key, parent, path, ancestors);\n\n if (result === BREAK) {\n break;\n }\n\n if (result === false) {\n if (!isLeaving) {\n path.pop();\n continue;\n }\n } else if (result !== undefined) {\n edits.push([key, result]);\n\n if (!isLeaving) {\n if (isNode(result)) {\n node = result;\n } else {\n path.pop();\n continue;\n }\n }\n }\n }\n }\n\n if (result === undefined && isEdited) {\n edits.push([key, node]);\n }\n\n if (isLeaving) {\n path.pop();\n } else {\n var _visitorKeys$node$kin;\n\n stack = {\n inArray: inArray,\n index: index,\n keys: keys,\n edits: edits,\n prev: stack\n };\n inArray = Array.isArray(node);\n keys = inArray ? node : (_visitorKeys$node$kin = visitorKeys[node.kind]) !== null && _visitorKeys$node$kin !== void 0 ? _visitorKeys$node$kin : [];\n index = -1;\n edits = [];\n\n if (parent) {\n ancestors.push(parent);\n }\n\n parent = node;\n }\n } while (stack !== undefined);\n\n if (edits.length !== 0) {\n newRoot = edits[edits.length - 1][1];\n }\n\n return newRoot;\n}\n/**\n * Creates a new visitor instance which delegates to many visitors to run in\n * parallel. Each visitor will be visited for each node before moving on.\n *\n * If a prior visitor edits a node, no following visitors will see that node.\n */\n\nexport function visitInParallel(visitors) {\n var skipping = new Array(visitors.length);\n return {\n enter: function enter(node) {\n for (var i = 0; i < visitors.length; i++) {\n if (skipping[i] == null) {\n var fn = getVisitFn(visitors[i], node.kind,\n /* isLeaving */\n false);\n\n if (fn) {\n var result = fn.apply(visitors[i], arguments);\n\n if (result === false) {\n skipping[i] = node;\n } else if (result === BREAK) {\n skipping[i] = BREAK;\n } else if (result !== undefined) {\n return result;\n }\n }\n }\n }\n },\n leave: function leave(node) {\n for (var i = 0; i < visitors.length; i++) {\n if (skipping[i] == null) {\n var fn = getVisitFn(visitors[i], node.kind,\n /* isLeaving */\n true);\n\n if (fn) {\n var result = fn.apply(visitors[i], arguments);\n\n if (result === BREAK) {\n skipping[i] = BREAK;\n } else if (result !== undefined && result !== false) {\n return result;\n }\n }\n } else if (skipping[i] === node) {\n skipping[i] = null;\n }\n }\n }\n };\n}\n/**\n * Given a visitor instance, if it is leaving or not, and a node kind, return\n * the function the visitor runtime should call.\n */\n\nexport function getVisitFn(visitor, kind, isLeaving) {\n var kindVisitor = visitor[kind];\n\n if (kindVisitor) {\n if (!isLeaving && typeof kindVisitor === 'function') {\n // { Kind() {} }\n return kindVisitor;\n }\n\n var kindSpecificVisitor = isLeaving ? kindVisitor.leave : kindVisitor.enter;\n\n if (typeof kindSpecificVisitor === 'function') {\n // { Kind: { enter() {}, leave() {} } }\n return kindSpecificVisitor;\n }\n } else {\n var specificVisitor = isLeaving ? visitor.leave : visitor.enter;\n\n if (specificVisitor) {\n if (typeof specificVisitor === 'function') {\n // { enter() {}, leave() {} }\n return specificVisitor;\n }\n\n var specificKindVisitor = specificVisitor[kind];\n\n if (typeof specificKindVisitor === 'function') {\n // { enter: { Kind() {} }, leave: { Kind() {} } }\n return specificKindVisitor;\n }\n }\n }\n}\n","// In ES2015 (or a polyfilled) environment, this will be Symbol.iterator\n// istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')\nexport var SYMBOL_ITERATOR = typeof Symbol === 'function' && Symbol.iterator != null ? Symbol.iterator : '@@iterator'; // In ES2017 (or a polyfilled) environment, this will be Symbol.asyncIterator\n// istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')\n\nexport var SYMBOL_ASYNC_ITERATOR = typeof Symbol === 'function' && Symbol.asyncIterator != null ? Symbol.asyncIterator : '@@asyncIterator'; // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')\n\nexport var SYMBOL_TO_STRING_TAG = typeof Symbol === 'function' && Symbol.toStringTag != null ? Symbol.toStringTag : '@@toStringTag';\n","import _typeof from '@babel/runtime/helpers/esm/typeof';\nimport _classCallCheck from '@babel/runtime/helpers/esm/classCallCheck';\nimport _createClass from '@babel/runtime/helpers/esm/createClass';\nimport _assertThisInitialized from '@babel/runtime/helpers/esm/assertThisInitialized';\nimport _inherits from '@babel/runtime/helpers/esm/inherits';\nimport _possibleConstructorReturn from '@babel/runtime/helpers/esm/possibleConstructorReturn';\nimport _getPrototypeOf from '@babel/runtime/helpers/esm/getPrototypeOf';\nimport _defineProperty from '@babel/runtime/helpers/esm/defineProperty';\nimport _toArray from '@babel/runtime/helpers/esm/toArray';\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nvar consoleLogger = {\n type: 'logger',\n log: function log(args) {\n this.output('log', args);\n },\n warn: function warn(args) {\n this.output('warn', args);\n },\n error: function error(args) {\n this.output('error', args);\n },\n output: function output(type, args) {\n if (console && console[type]) console[type].apply(console, args);\n }\n};\n\nvar Logger = function () {\n function Logger(concreteLogger) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n _classCallCheck(this, Logger);\n\n this.init(concreteLogger, options);\n }\n\n _createClass(Logger, [{\n key: \"init\",\n value: function init(concreteLogger) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n this.prefix = options.prefix || 'i18next:';\n this.logger = concreteLogger || consoleLogger;\n this.options = options;\n this.debug = options.debug;\n }\n }, {\n key: \"setDebug\",\n value: function setDebug(bool) {\n this.debug = bool;\n }\n }, {\n key: \"log\",\n value: function log() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return this.forward(args, 'log', '', true);\n }\n }, {\n key: \"warn\",\n value: function warn() {\n for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n return this.forward(args, 'warn', '', true);\n }\n }, {\n key: \"error\",\n value: function error() {\n for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n args[_key3] = arguments[_key3];\n }\n\n return this.forward(args, 'error', '');\n }\n }, {\n key: \"deprecate\",\n value: function deprecate() {\n for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {\n args[_key4] = arguments[_key4];\n }\n\n return this.forward(args, 'warn', 'WARNING DEPRECATED: ', true);\n }\n }, {\n key: \"forward\",\n value: function forward(args, lvl, prefix, debugOnly) {\n if (debugOnly && !this.debug) return null;\n if (typeof args[0] === 'string') args[0] = \"\".concat(prefix).concat(this.prefix, \" \").concat(args[0]);\n return this.logger[lvl](args);\n }\n }, {\n key: \"create\",\n value: function create(moduleName) {\n return new Logger(this.logger, _objectSpread(_objectSpread({}, {\n prefix: \"\".concat(this.prefix, \":\").concat(moduleName, \":\")\n }), this.options));\n }\n }]);\n\n return Logger;\n}();\n\nvar baseLogger = new Logger();\n\nvar EventEmitter = function () {\n function EventEmitter() {\n _classCallCheck(this, EventEmitter);\n\n this.observers = {};\n }\n\n _createClass(EventEmitter, [{\n key: \"on\",\n value: function on(events, listener) {\n var _this = this;\n\n events.split(' ').forEach(function (event) {\n _this.observers[event] = _this.observers[event] || [];\n\n _this.observers[event].push(listener);\n });\n return this;\n }\n }, {\n key: \"off\",\n value: function off(event, listener) {\n if (!this.observers[event]) return;\n\n if (!listener) {\n delete this.observers[event];\n return;\n }\n\n this.observers[event] = this.observers[event].filter(function (l) {\n return l !== listener;\n });\n }\n }, {\n key: \"emit\",\n value: function emit(event) {\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n if (this.observers[event]) {\n var cloned = [].concat(this.observers[event]);\n cloned.forEach(function (observer) {\n observer.apply(void 0, args);\n });\n }\n\n if (this.observers['*']) {\n var _cloned = [].concat(this.observers['*']);\n\n _cloned.forEach(function (observer) {\n observer.apply(observer, [event].concat(args));\n });\n }\n }\n }]);\n\n return EventEmitter;\n}();\n\nfunction defer() {\n var res;\n var rej;\n var promise = new Promise(function (resolve, reject) {\n res = resolve;\n rej = reject;\n });\n promise.resolve = res;\n promise.reject = rej;\n return promise;\n}\nfunction makeString(object) {\n if (object == null) return '';\n return '' + object;\n}\nfunction copy(a, s, t) {\n a.forEach(function (m) {\n if (s[m]) t[m] = s[m];\n });\n}\n\nfunction getLastOfPath(object, path, Empty) {\n function cleanKey(key) {\n return key && key.indexOf('###') > -1 ? key.replace(/###/g, '.') : key;\n }\n\n function canNotTraverseDeeper() {\n return !object || typeof object === 'string';\n }\n\n var stack = typeof path !== 'string' ? [].concat(path) : path.split('.');\n\n while (stack.length > 1) {\n if (canNotTraverseDeeper()) return {};\n var key = cleanKey(stack.shift());\n if (!object[key] && Empty) object[key] = new Empty();\n\n if (Object.prototype.hasOwnProperty.call(object, key)) {\n object = object[key];\n } else {\n object = {};\n }\n }\n\n if (canNotTraverseDeeper()) return {};\n return {\n obj: object,\n k: cleanKey(stack.shift())\n };\n}\n\nfunction setPath(object, path, newValue) {\n var _getLastOfPath = getLastOfPath(object, path, Object),\n obj = _getLastOfPath.obj,\n k = _getLastOfPath.k;\n\n obj[k] = newValue;\n}\nfunction pushPath(object, path, newValue, concat) {\n var _getLastOfPath2 = getLastOfPath(object, path, Object),\n obj = _getLastOfPath2.obj,\n k = _getLastOfPath2.k;\n\n obj[k] = obj[k] || [];\n if (concat) obj[k] = obj[k].concat(newValue);\n if (!concat) obj[k].push(newValue);\n}\nfunction getPath(object, path) {\n var _getLastOfPath3 = getLastOfPath(object, path),\n obj = _getLastOfPath3.obj,\n k = _getLastOfPath3.k;\n\n if (!obj) return undefined;\n return obj[k];\n}\nfunction getPathWithDefaults(data, defaultData, key) {\n var value = getPath(data, key);\n\n if (value !== undefined) {\n return value;\n }\n\n return getPath(defaultData, key);\n}\nfunction deepExtend(target, source, overwrite) {\n for (var prop in source) {\n if (prop !== '__proto__' && prop !== 'constructor') {\n if (prop in target) {\n if (typeof target[prop] === 'string' || target[prop] instanceof String || typeof source[prop] === 'string' || source[prop] instanceof String) {\n if (overwrite) target[prop] = source[prop];\n } else {\n deepExtend(target[prop], source[prop], overwrite);\n }\n } else {\n target[prop] = source[prop];\n }\n }\n }\n\n return target;\n}\nfunction regexEscape(str) {\n return str.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g, '\\\\$&');\n}\nvar _entityMap = {\n '&': '&',\n '<': '<',\n '>': '>',\n '\"': '"',\n \"'\": ''',\n '/': '/'\n};\nfunction escape(data) {\n if (typeof data === 'string') {\n return data.replace(/[&<>\"'\\/]/g, function (s) {\n return _entityMap[s];\n });\n }\n\n return data;\n}\nvar isIE10 = typeof window !== 'undefined' && window.navigator && typeof window.navigator.userAgentData === 'undefined' && window.navigator.userAgent && window.navigator.userAgent.indexOf('MSIE') > -1;\nvar chars = [' ', ',', '?', '!', ';'];\nfunction looksLikeObjectPath(key, nsSeparator, keySeparator) {\n nsSeparator = nsSeparator || '';\n keySeparator = keySeparator || '';\n var possibleChars = chars.filter(function (c) {\n return nsSeparator.indexOf(c) < 0 && keySeparator.indexOf(c) < 0;\n });\n if (possibleChars.length === 0) return true;\n var r = new RegExp(\"(\".concat(possibleChars.map(function (c) {\n return c === '?' ? '\\\\?' : c;\n }).join('|'), \")\"));\n var matched = !r.test(key);\n\n if (!matched) {\n var ki = key.indexOf(keySeparator);\n\n if (ki > 0 && !r.test(key.substring(0, ki))) {\n matched = true;\n }\n }\n\n return matched;\n}\n\nfunction ownKeys$1(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$1(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$1(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction deepFind(obj, path) {\n var keySeparator = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '.';\n if (!obj) return undefined;\n if (obj[path]) return obj[path];\n var paths = path.split(keySeparator);\n var current = obj;\n\n for (var i = 0; i < paths.length; ++i) {\n if (!current) return undefined;\n\n if (typeof current[paths[i]] === 'string' && i + 1 < paths.length) {\n return undefined;\n }\n\n if (current[paths[i]] === undefined) {\n var j = 2;\n var p = paths.slice(i, i + j).join(keySeparator);\n var mix = current[p];\n\n while (mix === undefined && paths.length > i + j) {\n j++;\n p = paths.slice(i, i + j).join(keySeparator);\n mix = current[p];\n }\n\n if (mix === undefined) return undefined;\n if (mix === null) return null;\n\n if (path.endsWith(p)) {\n if (typeof mix === 'string') return mix;\n if (p && typeof mix[p] === 'string') return mix[p];\n }\n\n var joinedPath = paths.slice(i + j).join(keySeparator);\n if (joinedPath) return deepFind(mix, joinedPath, keySeparator);\n return undefined;\n }\n\n current = current[paths[i]];\n }\n\n return current;\n}\n\nvar ResourceStore = function (_EventEmitter) {\n _inherits(ResourceStore, _EventEmitter);\n\n var _super = _createSuper(ResourceStore);\n\n function ResourceStore(data) {\n var _this;\n\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {\n ns: ['translation'],\n defaultNS: 'translation'\n };\n\n _classCallCheck(this, ResourceStore);\n\n _this = _super.call(this);\n\n if (isIE10) {\n EventEmitter.call(_assertThisInitialized(_this));\n }\n\n _this.data = data || {};\n _this.options = options;\n\n if (_this.options.keySeparator === undefined) {\n _this.options.keySeparator = '.';\n }\n\n if (_this.options.ignoreJSONStructure === undefined) {\n _this.options.ignoreJSONStructure = true;\n }\n\n return _this;\n }\n\n _createClass(ResourceStore, [{\n key: \"addNamespaces\",\n value: function addNamespaces(ns) {\n if (this.options.ns.indexOf(ns) < 0) {\n this.options.ns.push(ns);\n }\n }\n }, {\n key: \"removeNamespaces\",\n value: function removeNamespaces(ns) {\n var index = this.options.ns.indexOf(ns);\n\n if (index > -1) {\n this.options.ns.splice(index, 1);\n }\n }\n }, {\n key: \"getResource\",\n value: function getResource(lng, ns, key) {\n var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};\n var keySeparator = options.keySeparator !== undefined ? options.keySeparator : this.options.keySeparator;\n var ignoreJSONStructure = options.ignoreJSONStructure !== undefined ? options.ignoreJSONStructure : this.options.ignoreJSONStructure;\n var path = [lng, ns];\n if (key && typeof key !== 'string') path = path.concat(key);\n if (key && typeof key === 'string') path = path.concat(keySeparator ? key.split(keySeparator) : key);\n\n if (lng.indexOf('.') > -1) {\n path = lng.split('.');\n }\n\n var result = getPath(this.data, path);\n if (result || !ignoreJSONStructure || typeof key !== 'string') return result;\n return deepFind(this.data && this.data[lng] && this.data[lng][ns], key, keySeparator);\n }\n }, {\n key: \"addResource\",\n value: function addResource(lng, ns, key, value) {\n var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {\n silent: false\n };\n var keySeparator = this.options.keySeparator;\n if (keySeparator === undefined) keySeparator = '.';\n var path = [lng, ns];\n if (key) path = path.concat(keySeparator ? key.split(keySeparator) : key);\n\n if (lng.indexOf('.') > -1) {\n path = lng.split('.');\n value = ns;\n ns = path[1];\n }\n\n this.addNamespaces(ns);\n setPath(this.data, path, value);\n if (!options.silent) this.emit('added', lng, ns, key, value);\n }\n }, {\n key: \"addResources\",\n value: function addResources(lng, ns, resources) {\n var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {\n silent: false\n };\n\n for (var m in resources) {\n if (typeof resources[m] === 'string' || Object.prototype.toString.apply(resources[m]) === '[object Array]') this.addResource(lng, ns, m, resources[m], {\n silent: true\n });\n }\n\n if (!options.silent) this.emit('added', lng, ns, resources);\n }\n }, {\n key: \"addResourceBundle\",\n value: function addResourceBundle(lng, ns, resources, deep, overwrite) {\n var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {\n silent: false\n };\n var path = [lng, ns];\n\n if (lng.indexOf('.') > -1) {\n path = lng.split('.');\n deep = resources;\n resources = ns;\n ns = path[1];\n }\n\n this.addNamespaces(ns);\n var pack = getPath(this.data, path) || {};\n\n if (deep) {\n deepExtend(pack, resources, overwrite);\n } else {\n pack = _objectSpread$1(_objectSpread$1({}, pack), resources);\n }\n\n setPath(this.data, path, pack);\n if (!options.silent) this.emit('added', lng, ns, resources);\n }\n }, {\n key: \"removeResourceBundle\",\n value: function removeResourceBundle(lng, ns) {\n if (this.hasResourceBundle(lng, ns)) {\n delete this.data[lng][ns];\n }\n\n this.removeNamespaces(ns);\n this.emit('removed', lng, ns);\n }\n }, {\n key: \"hasResourceBundle\",\n value: function hasResourceBundle(lng, ns) {\n return this.getResource(lng, ns) !== undefined;\n }\n }, {\n key: \"getResourceBundle\",\n value: function getResourceBundle(lng, ns) {\n if (!ns) ns = this.options.defaultNS;\n if (this.options.compatibilityAPI === 'v1') return _objectSpread$1(_objectSpread$1({}, {}), this.getResource(lng, ns));\n return this.getResource(lng, ns);\n }\n }, {\n key: \"getDataByLanguage\",\n value: function getDataByLanguage(lng) {\n return this.data[lng];\n }\n }, {\n key: \"hasLanguageSomeTranslations\",\n value: function hasLanguageSomeTranslations(lng) {\n var data = this.getDataByLanguage(lng);\n var n = data && Object.keys(data) || [];\n return !!n.find(function (v) {\n return data[v] && Object.keys(data[v]).length > 0;\n });\n }\n }, {\n key: \"toJSON\",\n value: function toJSON() {\n return this.data;\n }\n }]);\n\n return ResourceStore;\n}(EventEmitter);\n\nvar postProcessor = {\n processors: {},\n addPostProcessor: function addPostProcessor(module) {\n this.processors[module.name] = module;\n },\n handle: function handle(processors, value, key, options, translator) {\n var _this = this;\n\n processors.forEach(function (processor) {\n if (_this.processors[processor]) value = _this.processors[processor].process(value, key, options, translator);\n });\n return value;\n }\n};\n\nfunction ownKeys$2(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$2(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$2(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _createSuper$1(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _isNativeReflectConstruct$1() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\nvar checkedLoadedFor = {};\n\nvar Translator = function (_EventEmitter) {\n _inherits(Translator, _EventEmitter);\n\n var _super = _createSuper$1(Translator);\n\n function Translator(services) {\n var _this;\n\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n _classCallCheck(this, Translator);\n\n _this = _super.call(this);\n\n if (isIE10) {\n EventEmitter.call(_assertThisInitialized(_this));\n }\n\n copy(['resourceStore', 'languageUtils', 'pluralResolver', 'interpolator', 'backendConnector', 'i18nFormat', 'utils'], services, _assertThisInitialized(_this));\n _this.options = options;\n\n if (_this.options.keySeparator === undefined) {\n _this.options.keySeparator = '.';\n }\n\n _this.logger = baseLogger.create('translator');\n return _this;\n }\n\n _createClass(Translator, [{\n key: \"changeLanguage\",\n value: function changeLanguage(lng) {\n if (lng) this.language = lng;\n }\n }, {\n key: \"exists\",\n value: function exists(key) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {\n interpolation: {}\n };\n\n if (key === undefined || key === null) {\n return false;\n }\n\n var resolved = this.resolve(key, options);\n return resolved && resolved.res !== undefined;\n }\n }, {\n key: \"extractFromKey\",\n value: function extractFromKey(key, options) {\n var nsSeparator = options.nsSeparator !== undefined ? options.nsSeparator : this.options.nsSeparator;\n if (nsSeparator === undefined) nsSeparator = ':';\n var keySeparator = options.keySeparator !== undefined ? options.keySeparator : this.options.keySeparator;\n var namespaces = options.ns || this.options.defaultNS || [];\n var wouldCheckForNsInKey = nsSeparator && key.indexOf(nsSeparator) > -1;\n var seemsNaturalLanguage = !this.options.userDefinedKeySeparator && !options.keySeparator && !this.options.userDefinedNsSeparator && !options.nsSeparator && !looksLikeObjectPath(key, nsSeparator, keySeparator);\n\n if (wouldCheckForNsInKey && !seemsNaturalLanguage) {\n var m = key.match(this.interpolator.nestingRegexp);\n\n if (m && m.length > 0) {\n return {\n key: key,\n namespaces: namespaces\n };\n }\n\n var parts = key.split(nsSeparator);\n if (nsSeparator !== keySeparator || nsSeparator === keySeparator && this.options.ns.indexOf(parts[0]) > -1) namespaces = parts.shift();\n key = parts.join(keySeparator);\n }\n\n if (typeof namespaces === 'string') namespaces = [namespaces];\n return {\n key: key,\n namespaces: namespaces\n };\n }\n }, {\n key: \"translate\",\n value: function translate(keys, options, lastKey) {\n var _this2 = this;\n\n if (_typeof(options) !== 'object' && this.options.overloadTranslationOptionHandler) {\n options = this.options.overloadTranslationOptionHandler(arguments);\n }\n\n if (!options) options = {};\n if (keys === undefined || keys === null) return '';\n if (!Array.isArray(keys)) keys = [String(keys)];\n var returnDetails = options.returnDetails !== undefined ? options.returnDetails : this.options.returnDetails;\n var keySeparator = options.keySeparator !== undefined ? options.keySeparator : this.options.keySeparator;\n\n var _this$extractFromKey = this.extractFromKey(keys[keys.length - 1], options),\n key = _this$extractFromKey.key,\n namespaces = _this$extractFromKey.namespaces;\n\n var namespace = namespaces[namespaces.length - 1];\n var lng = options.lng || this.language;\n var appendNamespaceToCIMode = options.appendNamespaceToCIMode || this.options.appendNamespaceToCIMode;\n\n if (lng && lng.toLowerCase() === 'cimode') {\n if (appendNamespaceToCIMode) {\n var nsSeparator = options.nsSeparator || this.options.nsSeparator;\n\n if (returnDetails) {\n resolved.res = \"\".concat(namespace).concat(nsSeparator).concat(key);\n return resolved;\n }\n\n return \"\".concat(namespace).concat(nsSeparator).concat(key);\n }\n\n if (returnDetails) {\n resolved.res = key;\n return resolved;\n }\n\n return key;\n }\n\n var resolved = this.resolve(keys, options);\n var res = resolved && resolved.res;\n var resUsedKey = resolved && resolved.usedKey || key;\n var resExactUsedKey = resolved && resolved.exactUsedKey || key;\n var resType = Object.prototype.toString.apply(res);\n var noObject = ['[object Number]', '[object Function]', '[object RegExp]'];\n var joinArrays = options.joinArrays !== undefined ? options.joinArrays : this.options.joinArrays;\n var handleAsObjectInI18nFormat = !this.i18nFormat || this.i18nFormat.handleAsObject;\n var handleAsObject = typeof res !== 'string' && typeof res !== 'boolean' && typeof res !== 'number';\n\n if (handleAsObjectInI18nFormat && res && handleAsObject && noObject.indexOf(resType) < 0 && !(typeof joinArrays === 'string' && resType === '[object Array]')) {\n if (!options.returnObjects && !this.options.returnObjects) {\n if (!this.options.returnedObjectHandler) {\n this.logger.warn('accessing an object - but returnObjects options is not enabled!');\n }\n\n var r = this.options.returnedObjectHandler ? this.options.returnedObjectHandler(resUsedKey, res, _objectSpread$2(_objectSpread$2({}, options), {}, {\n ns: namespaces\n })) : \"key '\".concat(key, \" (\").concat(this.language, \")' returned an object instead of string.\");\n\n if (returnDetails) {\n resolved.res = r;\n return resolved;\n }\n\n return r;\n }\n\n if (keySeparator) {\n var resTypeIsArray = resType === '[object Array]';\n var copy = resTypeIsArray ? [] : {};\n var newKeyToUse = resTypeIsArray ? resExactUsedKey : resUsedKey;\n\n for (var m in res) {\n if (Object.prototype.hasOwnProperty.call(res, m)) {\n var deepKey = \"\".concat(newKeyToUse).concat(keySeparator).concat(m);\n copy[m] = this.translate(deepKey, _objectSpread$2(_objectSpread$2({}, options), {\n joinArrays: false,\n ns: namespaces\n }));\n if (copy[m] === deepKey) copy[m] = res[m];\n }\n }\n\n res = copy;\n }\n } else if (handleAsObjectInI18nFormat && typeof joinArrays === 'string' && resType === '[object Array]') {\n res = res.join(joinArrays);\n if (res) res = this.extendTranslation(res, keys, options, lastKey);\n } else {\n var usedDefault = false;\n var usedKey = false;\n var needsPluralHandling = options.count !== undefined && typeof options.count !== 'string';\n var hasDefaultValue = Translator.hasDefaultValue(options);\n var defaultValueSuffix = needsPluralHandling ? this.pluralResolver.getSuffix(lng, options.count, options) : '';\n var defaultValue = options[\"defaultValue\".concat(defaultValueSuffix)] || options.defaultValue;\n\n if (!this.isValidLookup(res) && hasDefaultValue) {\n usedDefault = true;\n res = defaultValue;\n }\n\n if (!this.isValidLookup(res)) {\n usedKey = true;\n res = key;\n }\n\n var missingKeyNoValueFallbackToKey = options.missingKeyNoValueFallbackToKey || this.options.missingKeyNoValueFallbackToKey;\n var resForMissing = missingKeyNoValueFallbackToKey && usedKey ? undefined : res;\n var updateMissing = hasDefaultValue && defaultValue !== res && this.options.updateMissing;\n\n if (usedKey || usedDefault || updateMissing) {\n this.logger.log(updateMissing ? 'updateKey' : 'missingKey', lng, namespace, key, updateMissing ? defaultValue : res);\n\n if (keySeparator) {\n var fk = this.resolve(key, _objectSpread$2(_objectSpread$2({}, options), {}, {\n keySeparator: false\n }));\n if (fk && fk.res) this.logger.warn('Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.');\n }\n\n var lngs = [];\n var fallbackLngs = this.languageUtils.getFallbackCodes(this.options.fallbackLng, options.lng || this.language);\n\n if (this.options.saveMissingTo === 'fallback' && fallbackLngs && fallbackLngs[0]) {\n for (var i = 0; i < fallbackLngs.length; i++) {\n lngs.push(fallbackLngs[i]);\n }\n } else if (this.options.saveMissingTo === 'all') {\n lngs = this.languageUtils.toResolveHierarchy(options.lng || this.language);\n } else {\n lngs.push(options.lng || this.language);\n }\n\n var send = function send(l, k, specificDefaultValue) {\n var defaultForMissing = hasDefaultValue && specificDefaultValue !== res ? specificDefaultValue : resForMissing;\n\n if (_this2.options.missingKeyHandler) {\n _this2.options.missingKeyHandler(l, namespace, k, defaultForMissing, updateMissing, options);\n } else if (_this2.backendConnector && _this2.backendConnector.saveMissing) {\n _this2.backendConnector.saveMissing(l, namespace, k, defaultForMissing, updateMissing, options);\n }\n\n _this2.emit('missingKey', l, namespace, k, res);\n };\n\n if (this.options.saveMissing) {\n if (this.options.saveMissingPlurals && needsPluralHandling) {\n lngs.forEach(function (language) {\n _this2.pluralResolver.getSuffixes(language, options).forEach(function (suffix) {\n send([language], key + suffix, options[\"defaultValue\".concat(suffix)] || defaultValue);\n });\n });\n } else {\n send(lngs, key, defaultValue);\n }\n }\n }\n\n res = this.extendTranslation(res, keys, options, resolved, lastKey);\n if (usedKey && res === key && this.options.appendNamespaceToMissingKey) res = \"\".concat(namespace, \":\").concat(key);\n\n if ((usedKey || usedDefault) && this.options.parseMissingKeyHandler) {\n if (this.options.compatibilityAPI !== 'v1') {\n res = this.options.parseMissingKeyHandler(this.options.appendNamespaceToMissingKey ? \"\".concat(namespace, \":\").concat(key) : key, usedDefault ? res : undefined);\n } else {\n res = this.options.parseMissingKeyHandler(res);\n }\n }\n }\n\n if (returnDetails) {\n resolved.res = res;\n return resolved;\n }\n\n return res;\n }\n }, {\n key: \"extendTranslation\",\n value: function extendTranslation(res, key, options, resolved, lastKey) {\n var _this3 = this;\n\n if (this.i18nFormat && this.i18nFormat.parse) {\n res = this.i18nFormat.parse(res, _objectSpread$2(_objectSpread$2({}, this.options.interpolation.defaultVariables), options), resolved.usedLng, resolved.usedNS, resolved.usedKey, {\n resolved: resolved\n });\n } else if (!options.skipInterpolation) {\n if (options.interpolation) this.interpolator.init(_objectSpread$2(_objectSpread$2({}, options), {\n interpolation: _objectSpread$2(_objectSpread$2({}, this.options.interpolation), options.interpolation)\n }));\n var skipOnVariables = typeof res === 'string' && (options && options.interpolation && options.interpolation.skipOnVariables !== undefined ? options.interpolation.skipOnVariables : this.options.interpolation.skipOnVariables);\n var nestBef;\n\n if (skipOnVariables) {\n var nb = res.match(this.interpolator.nestingRegexp);\n nestBef = nb && nb.length;\n }\n\n var data = options.replace && typeof options.replace !== 'string' ? options.replace : options;\n if (this.options.interpolation.defaultVariables) data = _objectSpread$2(_objectSpread$2({}, this.options.interpolation.defaultVariables), data);\n res = this.interpolator.interpolate(res, data, options.lng || this.language, options);\n\n if (skipOnVariables) {\n var na = res.match(this.interpolator.nestingRegexp);\n var nestAft = na && na.length;\n if (nestBef < nestAft) options.nest = false;\n }\n\n if (options.nest !== false) res = this.interpolator.nest(res, function () {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n if (lastKey && lastKey[0] === args[0] && !options.context) {\n _this3.logger.warn(\"It seems you are nesting recursively key: \".concat(args[0], \" in key: \").concat(key[0]));\n\n return null;\n }\n\n return _this3.translate.apply(_this3, args.concat([key]));\n }, options);\n if (options.interpolation) this.interpolator.reset();\n }\n\n var postProcess = options.postProcess || this.options.postProcess;\n var postProcessorNames = typeof postProcess === 'string' ? [postProcess] : postProcess;\n\n if (res !== undefined && res !== null && postProcessorNames && postProcessorNames.length && options.applyPostProcessor !== false) {\n res = postProcessor.handle(postProcessorNames, res, key, this.options && this.options.postProcessPassResolved ? _objectSpread$2({\n i18nResolved: resolved\n }, options) : options, this);\n }\n\n return res;\n }\n }, {\n key: \"resolve\",\n value: function resolve(keys) {\n var _this4 = this;\n\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var found;\n var usedKey;\n var exactUsedKey;\n var usedLng;\n var usedNS;\n if (typeof keys === 'string') keys = [keys];\n keys.forEach(function (k) {\n if (_this4.isValidLookup(found)) return;\n\n var extracted = _this4.extractFromKey(k, options);\n\n var key = extracted.key;\n usedKey = key;\n var namespaces = extracted.namespaces;\n if (_this4.options.fallbackNS) namespaces = namespaces.concat(_this4.options.fallbackNS);\n var needsPluralHandling = options.count !== undefined && typeof options.count !== 'string';\n\n var needsZeroSuffixLookup = needsPluralHandling && !options.ordinal && options.count === 0 && _this4.pluralResolver.shouldUseIntlApi();\n\n var needsContextHandling = options.context !== undefined && (typeof options.context === 'string' || typeof options.context === 'number') && options.context !== '';\n var codes = options.lngs ? options.lngs : _this4.languageUtils.toResolveHierarchy(options.lng || _this4.language, options.fallbackLng);\n namespaces.forEach(function (ns) {\n if (_this4.isValidLookup(found)) return;\n usedNS = ns;\n\n if (!checkedLoadedFor[\"\".concat(codes[0], \"-\").concat(ns)] && _this4.utils && _this4.utils.hasLoadedNamespace && !_this4.utils.hasLoadedNamespace(usedNS)) {\n checkedLoadedFor[\"\".concat(codes[0], \"-\").concat(ns)] = true;\n\n _this4.logger.warn(\"key \\\"\".concat(usedKey, \"\\\" for languages \\\"\").concat(codes.join(', '), \"\\\" won't get resolved as namespace \\\"\").concat(usedNS, \"\\\" was not yet loaded\"), 'This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!');\n }\n\n codes.forEach(function (code) {\n if (_this4.isValidLookup(found)) return;\n usedLng = code;\n var finalKeys = [key];\n\n if (_this4.i18nFormat && _this4.i18nFormat.addLookupKeys) {\n _this4.i18nFormat.addLookupKeys(finalKeys, key, code, ns, options);\n } else {\n var pluralSuffix;\n if (needsPluralHandling) pluralSuffix = _this4.pluralResolver.getSuffix(code, options.count, options);\n var zeroSuffix = \"\".concat(_this4.options.pluralSeparator, \"zero\");\n\n if (needsPluralHandling) {\n finalKeys.push(key + pluralSuffix);\n\n if (needsZeroSuffixLookup) {\n finalKeys.push(key + zeroSuffix);\n }\n }\n\n if (needsContextHandling) {\n var contextKey = \"\".concat(key).concat(_this4.options.contextSeparator).concat(options.context);\n finalKeys.push(contextKey);\n\n if (needsPluralHandling) {\n finalKeys.push(contextKey + pluralSuffix);\n\n if (needsZeroSuffixLookup) {\n finalKeys.push(contextKey + zeroSuffix);\n }\n }\n }\n }\n\n var possibleKey;\n\n while (possibleKey = finalKeys.pop()) {\n if (!_this4.isValidLookup(found)) {\n exactUsedKey = possibleKey;\n found = _this4.getResource(code, ns, possibleKey, options);\n }\n }\n });\n });\n });\n return {\n res: found,\n usedKey: usedKey,\n exactUsedKey: exactUsedKey,\n usedLng: usedLng,\n usedNS: usedNS\n };\n }\n }, {\n key: \"isValidLookup\",\n value: function isValidLookup(res) {\n return res !== undefined && !(!this.options.returnNull && res === null) && !(!this.options.returnEmptyString && res === '');\n }\n }, {\n key: \"getResource\",\n value: function getResource(code, ns, key) {\n var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};\n if (this.i18nFormat && this.i18nFormat.getResource) return this.i18nFormat.getResource(code, ns, key, options);\n return this.resourceStore.getResource(code, ns, key, options);\n }\n }], [{\n key: \"hasDefaultValue\",\n value: function hasDefaultValue(options) {\n var prefix = 'defaultValue';\n\n for (var option in options) {\n if (Object.prototype.hasOwnProperty.call(options, option) && prefix === option.substring(0, prefix.length) && undefined !== options[option]) {\n return true;\n }\n }\n\n return false;\n }\n }]);\n\n return Translator;\n}(EventEmitter);\n\nfunction capitalize(string) {\n return string.charAt(0).toUpperCase() + string.slice(1);\n}\n\nvar LanguageUtil = function () {\n function LanguageUtil(options) {\n _classCallCheck(this, LanguageUtil);\n\n this.options = options;\n this.supportedLngs = this.options.supportedLngs || false;\n this.logger = baseLogger.create('languageUtils');\n }\n\n _createClass(LanguageUtil, [{\n key: \"getScriptPartFromCode\",\n value: function getScriptPartFromCode(code) {\n if (!code || code.indexOf('-') < 0) return null;\n var p = code.split('-');\n if (p.length === 2) return null;\n p.pop();\n if (p[p.length - 1].toLowerCase() === 'x') return null;\n return this.formatLanguageCode(p.join('-'));\n }\n }, {\n key: \"getLanguagePartFromCode\",\n value: function getLanguagePartFromCode(code) {\n if (!code || code.indexOf('-') < 0) return code;\n var p = code.split('-');\n return this.formatLanguageCode(p[0]);\n }\n }, {\n key: \"formatLanguageCode\",\n value: function formatLanguageCode(code) {\n if (typeof code === 'string' && code.indexOf('-') > -1) {\n var specialCases = ['hans', 'hant', 'latn', 'cyrl', 'cans', 'mong', 'arab'];\n var p = code.split('-');\n\n if (this.options.lowerCaseLng) {\n p = p.map(function (part) {\n return part.toLowerCase();\n });\n } else if (p.length === 2) {\n p[0] = p[0].toLowerCase();\n p[1] = p[1].toUpperCase();\n if (specialCases.indexOf(p[1].toLowerCase()) > -1) p[1] = capitalize(p[1].toLowerCase());\n } else if (p.length === 3) {\n p[0] = p[0].toLowerCase();\n if (p[1].length === 2) p[1] = p[1].toUpperCase();\n if (p[0] !== 'sgn' && p[2].length === 2) p[2] = p[2].toUpperCase();\n if (specialCases.indexOf(p[1].toLowerCase()) > -1) p[1] = capitalize(p[1].toLowerCase());\n if (specialCases.indexOf(p[2].toLowerCase()) > -1) p[2] = capitalize(p[2].toLowerCase());\n }\n\n return p.join('-');\n }\n\n return this.options.cleanCode || this.options.lowerCaseLng ? code.toLowerCase() : code;\n }\n }, {\n key: \"isSupportedCode\",\n value: function isSupportedCode(code) {\n if (this.options.load === 'languageOnly' || this.options.nonExplicitSupportedLngs) {\n code = this.getLanguagePartFromCode(code);\n }\n\n return !this.supportedLngs || !this.supportedLngs.length || this.supportedLngs.indexOf(code) > -1;\n }\n }, {\n key: \"getBestMatchFromCodes\",\n value: function getBestMatchFromCodes(codes) {\n var _this = this;\n\n if (!codes) return null;\n var found;\n codes.forEach(function (code) {\n if (found) return;\n\n var cleanedLng = _this.formatLanguageCode(code);\n\n if (!_this.options.supportedLngs || _this.isSupportedCode(cleanedLng)) found = cleanedLng;\n });\n\n if (!found && this.options.supportedLngs) {\n codes.forEach(function (code) {\n if (found) return;\n\n var lngOnly = _this.getLanguagePartFromCode(code);\n\n if (_this.isSupportedCode(lngOnly)) return found = lngOnly;\n found = _this.options.supportedLngs.find(function (supportedLng) {\n if (supportedLng.indexOf(lngOnly) === 0) return supportedLng;\n });\n });\n }\n\n if (!found) found = this.getFallbackCodes(this.options.fallbackLng)[0];\n return found;\n }\n }, {\n key: \"getFallbackCodes\",\n value: function getFallbackCodes(fallbacks, code) {\n if (!fallbacks) return [];\n if (typeof fallbacks === 'function') fallbacks = fallbacks(code);\n if (typeof fallbacks === 'string') fallbacks = [fallbacks];\n if (Object.prototype.toString.apply(fallbacks) === '[object Array]') return fallbacks;\n if (!code) return fallbacks[\"default\"] || [];\n var found = fallbacks[code];\n if (!found) found = fallbacks[this.getScriptPartFromCode(code)];\n if (!found) found = fallbacks[this.formatLanguageCode(code)];\n if (!found) found = fallbacks[this.getLanguagePartFromCode(code)];\n if (!found) found = fallbacks[\"default\"];\n return found || [];\n }\n }, {\n key: \"toResolveHierarchy\",\n value: function toResolveHierarchy(code, fallbackCode) {\n var _this2 = this;\n\n var fallbackCodes = this.getFallbackCodes(fallbackCode || this.options.fallbackLng || [], code);\n var codes = [];\n\n var addCode = function addCode(c) {\n if (!c) return;\n\n if (_this2.isSupportedCode(c)) {\n codes.push(c);\n } else {\n _this2.logger.warn(\"rejecting language code not found in supportedLngs: \".concat(c));\n }\n };\n\n if (typeof code === 'string' && code.indexOf('-') > -1) {\n if (this.options.load !== 'languageOnly') addCode(this.formatLanguageCode(code));\n if (this.options.load !== 'languageOnly' && this.options.load !== 'currentOnly') addCode(this.getScriptPartFromCode(code));\n if (this.options.load !== 'currentOnly') addCode(this.getLanguagePartFromCode(code));\n } else if (typeof code === 'string') {\n addCode(this.formatLanguageCode(code));\n }\n\n fallbackCodes.forEach(function (fc) {\n if (codes.indexOf(fc) < 0) addCode(_this2.formatLanguageCode(fc));\n });\n return codes;\n }\n }]);\n\n return LanguageUtil;\n}();\n\nvar sets = [{\n lngs: ['ach', 'ak', 'am', 'arn', 'br', 'fil', 'gun', 'ln', 'mfe', 'mg', 'mi', 'oc', 'pt', 'pt-BR', 'tg', 'tl', 'ti', 'tr', 'uz', 'wa'],\n nr: [1, 2],\n fc: 1\n}, {\n lngs: ['af', 'an', 'ast', 'az', 'bg', 'bn', 'ca', 'da', 'de', 'dev', 'el', 'en', 'eo', 'es', 'et', 'eu', 'fi', 'fo', 'fur', 'fy', 'gl', 'gu', 'ha', 'hi', 'hu', 'hy', 'ia', 'it', 'kk', 'kn', 'ku', 'lb', 'mai', 'ml', 'mn', 'mr', 'nah', 'nap', 'nb', 'ne', 'nl', 'nn', 'no', 'nso', 'pa', 'pap', 'pms', 'ps', 'pt-PT', 'rm', 'sco', 'se', 'si', 'so', 'son', 'sq', 'sv', 'sw', 'ta', 'te', 'tk', 'ur', 'yo'],\n nr: [1, 2],\n fc: 2\n}, {\n lngs: ['ay', 'bo', 'cgg', 'fa', 'ht', 'id', 'ja', 'jbo', 'ka', 'km', 'ko', 'ky', 'lo', 'ms', 'sah', 'su', 'th', 'tt', 'ug', 'vi', 'wo', 'zh'],\n nr: [1],\n fc: 3\n}, {\n lngs: ['be', 'bs', 'cnr', 'dz', 'hr', 'ru', 'sr', 'uk'],\n nr: [1, 2, 5],\n fc: 4\n}, {\n lngs: ['ar'],\n nr: [0, 1, 2, 3, 11, 100],\n fc: 5\n}, {\n lngs: ['cs', 'sk'],\n nr: [1, 2, 5],\n fc: 6\n}, {\n lngs: ['csb', 'pl'],\n nr: [1, 2, 5],\n fc: 7\n}, {\n lngs: ['cy'],\n nr: [1, 2, 3, 8],\n fc: 8\n}, {\n lngs: ['fr'],\n nr: [1, 2],\n fc: 9\n}, {\n lngs: ['ga'],\n nr: [1, 2, 3, 7, 11],\n fc: 10\n}, {\n lngs: ['gd'],\n nr: [1, 2, 3, 20],\n fc: 11\n}, {\n lngs: ['is'],\n nr: [1, 2],\n fc: 12\n}, {\n lngs: ['jv'],\n nr: [0, 1],\n fc: 13\n}, {\n lngs: ['kw'],\n nr: [1, 2, 3, 4],\n fc: 14\n}, {\n lngs: ['lt'],\n nr: [1, 2, 10],\n fc: 15\n}, {\n lngs: ['lv'],\n nr: [1, 2, 0],\n fc: 16\n}, {\n lngs: ['mk'],\n nr: [1, 2],\n fc: 17\n}, {\n lngs: ['mnk'],\n nr: [0, 1, 2],\n fc: 18\n}, {\n lngs: ['mt'],\n nr: [1, 2, 11, 20],\n fc: 19\n}, {\n lngs: ['or'],\n nr: [2, 1],\n fc: 2\n}, {\n lngs: ['ro'],\n nr: [1, 2, 20],\n fc: 20\n}, {\n lngs: ['sl'],\n nr: [5, 1, 2, 3],\n fc: 21\n}, {\n lngs: ['he', 'iw'],\n nr: [1, 2, 20, 21],\n fc: 22\n}];\nvar _rulesPluralsTypes = {\n 1: function _(n) {\n return Number(n > 1);\n },\n 2: function _(n) {\n return Number(n != 1);\n },\n 3: function _(n) {\n return 0;\n },\n 4: function _(n) {\n return Number(n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);\n },\n 5: function _(n) {\n return Number(n == 0 ? 0 : n == 1 ? 1 : n == 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5);\n },\n 6: function _(n) {\n return Number(n == 1 ? 0 : n >= 2 && n <= 4 ? 1 : 2);\n },\n 7: function _(n) {\n return Number(n == 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);\n },\n 8: function _(n) {\n return Number(n == 1 ? 0 : n == 2 ? 1 : n != 8 && n != 11 ? 2 : 3);\n },\n 9: function _(n) {\n return Number(n >= 2);\n },\n 10: function _(n) {\n return Number(n == 1 ? 0 : n == 2 ? 1 : n < 7 ? 2 : n < 11 ? 3 : 4);\n },\n 11: function _(n) {\n return Number(n == 1 || n == 11 ? 0 : n == 2 || n == 12 ? 1 : n > 2 && n < 20 ? 2 : 3);\n },\n 12: function _(n) {\n return Number(n % 10 != 1 || n % 100 == 11);\n },\n 13: function _(n) {\n return Number(n !== 0);\n },\n 14: function _(n) {\n return Number(n == 1 ? 0 : n == 2 ? 1 : n == 3 ? 2 : 3);\n },\n 15: function _(n) {\n return Number(n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);\n },\n 16: function _(n) {\n return Number(n % 10 == 1 && n % 100 != 11 ? 0 : n !== 0 ? 1 : 2);\n },\n 17: function _(n) {\n return Number(n == 1 || n % 10 == 1 && n % 100 != 11 ? 0 : 1);\n },\n 18: function _(n) {\n return Number(n == 0 ? 0 : n == 1 ? 1 : 2);\n },\n 19: function _(n) {\n return Number(n == 1 ? 0 : n == 0 || n % 100 > 1 && n % 100 < 11 ? 1 : n % 100 > 10 && n % 100 < 20 ? 2 : 3);\n },\n 20: function _(n) {\n return Number(n == 1 ? 0 : n == 0 || n % 100 > 0 && n % 100 < 20 ? 1 : 2);\n },\n 21: function _(n) {\n return Number(n % 100 == 1 ? 1 : n % 100 == 2 ? 2 : n % 100 == 3 || n % 100 == 4 ? 3 : 0);\n },\n 22: function _(n) {\n return Number(n == 1 ? 0 : n == 2 ? 1 : (n < 0 || n > 10) && n % 10 == 0 ? 2 : 3);\n }\n};\nvar deprecatedJsonVersions = ['v1', 'v2', 'v3'];\nvar suffixesOrder = {\n zero: 0,\n one: 1,\n two: 2,\n few: 3,\n many: 4,\n other: 5\n};\n\nfunction createRules() {\n var rules = {};\n sets.forEach(function (set) {\n set.lngs.forEach(function (l) {\n rules[l] = {\n numbers: set.nr,\n plurals: _rulesPluralsTypes[set.fc]\n };\n });\n });\n return rules;\n}\n\nvar PluralResolver = function () {\n function PluralResolver(languageUtils) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n _classCallCheck(this, PluralResolver);\n\n this.languageUtils = languageUtils;\n this.options = options;\n this.logger = baseLogger.create('pluralResolver');\n\n if ((!this.options.compatibilityJSON || this.options.compatibilityJSON === 'v4') && (typeof Intl === 'undefined' || !Intl.PluralRules)) {\n this.options.compatibilityJSON = 'v3';\n this.logger.error('Your environment seems not to be Intl API compatible, use an Intl.PluralRules polyfill. Will fallback to the compatibilityJSON v3 format handling.');\n }\n\n this.rules = createRules();\n }\n\n _createClass(PluralResolver, [{\n key: \"addRule\",\n value: function addRule(lng, obj) {\n this.rules[lng] = obj;\n }\n }, {\n key: \"getRule\",\n value: function getRule(code) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n if (this.shouldUseIntlApi()) {\n try {\n return new Intl.PluralRules(code, {\n type: options.ordinal ? 'ordinal' : 'cardinal'\n });\n } catch (_unused) {\n return;\n }\n }\n\n return this.rules[code] || this.rules[this.languageUtils.getLanguagePartFromCode(code)];\n }\n }, {\n key: \"needsPlural\",\n value: function needsPlural(code) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var rule = this.getRule(code, options);\n\n if (this.shouldUseIntlApi()) {\n return rule && rule.resolvedOptions().pluralCategories.length > 1;\n }\n\n return rule && rule.numbers.length > 1;\n }\n }, {\n key: \"getPluralFormsOfKey\",\n value: function getPluralFormsOfKey(code, key) {\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n return this.getSuffixes(code, options).map(function (suffix) {\n return \"\".concat(key).concat(suffix);\n });\n }\n }, {\n key: \"getSuffixes\",\n value: function getSuffixes(code) {\n var _this = this;\n\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var rule = this.getRule(code, options);\n\n if (!rule) {\n return [];\n }\n\n if (this.shouldUseIntlApi()) {\n return rule.resolvedOptions().pluralCategories.sort(function (pluralCategory1, pluralCategory2) {\n return suffixesOrder[pluralCategory1] - suffixesOrder[pluralCategory2];\n }).map(function (pluralCategory) {\n return \"\".concat(_this.options.prepend).concat(pluralCategory);\n });\n }\n\n return rule.numbers.map(function (number) {\n return _this.getSuffix(code, number, options);\n });\n }\n }, {\n key: \"getSuffix\",\n value: function getSuffix(code, count) {\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n var rule = this.getRule(code, options);\n\n if (rule) {\n if (this.shouldUseIntlApi()) {\n return \"\".concat(this.options.prepend).concat(rule.select(count));\n }\n\n return this.getSuffixRetroCompatible(rule, count);\n }\n\n this.logger.warn(\"no plural rule found for: \".concat(code));\n return '';\n }\n }, {\n key: \"getSuffixRetroCompatible\",\n value: function getSuffixRetroCompatible(rule, count) {\n var _this2 = this;\n\n var idx = rule.noAbs ? rule.plurals(count) : rule.plurals(Math.abs(count));\n var suffix = rule.numbers[idx];\n\n if (this.options.simplifyPluralSuffix && rule.numbers.length === 2 && rule.numbers[0] === 1) {\n if (suffix === 2) {\n suffix = 'plural';\n } else if (suffix === 1) {\n suffix = '';\n }\n }\n\n var returnSuffix = function returnSuffix() {\n return _this2.options.prepend && suffix.toString() ? _this2.options.prepend + suffix.toString() : suffix.toString();\n };\n\n if (this.options.compatibilityJSON === 'v1') {\n if (suffix === 1) return '';\n if (typeof suffix === 'number') return \"_plural_\".concat(suffix.toString());\n return returnSuffix();\n } else if (this.options.compatibilityJSON === 'v2') {\n return returnSuffix();\n } else if (this.options.simplifyPluralSuffix && rule.numbers.length === 2 && rule.numbers[0] === 1) {\n return returnSuffix();\n }\n\n return this.options.prepend && idx.toString() ? this.options.prepend + idx.toString() : idx.toString();\n }\n }, {\n key: \"shouldUseIntlApi\",\n value: function shouldUseIntlApi() {\n return !deprecatedJsonVersions.includes(this.options.compatibilityJSON);\n }\n }]);\n\n return PluralResolver;\n}();\n\nfunction ownKeys$3(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$3(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$3(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nvar Interpolator = function () {\n function Interpolator() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n _classCallCheck(this, Interpolator);\n\n this.logger = baseLogger.create('interpolator');\n this.options = options;\n\n this.format = options.interpolation && options.interpolation.format || function (value) {\n return value;\n };\n\n this.init(options);\n }\n\n _createClass(Interpolator, [{\n key: \"init\",\n value: function init() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n if (!options.interpolation) options.interpolation = {\n escapeValue: true\n };\n var iOpts = options.interpolation;\n this.escape = iOpts.escape !== undefined ? iOpts.escape : escape;\n this.escapeValue = iOpts.escapeValue !== undefined ? iOpts.escapeValue : true;\n this.useRawValueToEscape = iOpts.useRawValueToEscape !== undefined ? iOpts.useRawValueToEscape : false;\n this.prefix = iOpts.prefix ? regexEscape(iOpts.prefix) : iOpts.prefixEscaped || '{{';\n this.suffix = iOpts.suffix ? regexEscape(iOpts.suffix) : iOpts.suffixEscaped || '}}';\n this.formatSeparator = iOpts.formatSeparator ? iOpts.formatSeparator : iOpts.formatSeparator || ',';\n this.unescapePrefix = iOpts.unescapeSuffix ? '' : iOpts.unescapePrefix || '-';\n this.unescapeSuffix = this.unescapePrefix ? '' : iOpts.unescapeSuffix || '';\n this.nestingPrefix = iOpts.nestingPrefix ? regexEscape(iOpts.nestingPrefix) : iOpts.nestingPrefixEscaped || regexEscape('$t(');\n this.nestingSuffix = iOpts.nestingSuffix ? regexEscape(iOpts.nestingSuffix) : iOpts.nestingSuffixEscaped || regexEscape(')');\n this.nestingOptionsSeparator = iOpts.nestingOptionsSeparator ? iOpts.nestingOptionsSeparator : iOpts.nestingOptionsSeparator || ',';\n this.maxReplaces = iOpts.maxReplaces ? iOpts.maxReplaces : 1000;\n this.alwaysFormat = iOpts.alwaysFormat !== undefined ? iOpts.alwaysFormat : false;\n this.resetRegExp();\n }\n }, {\n key: \"reset\",\n value: function reset() {\n if (this.options) this.init(this.options);\n }\n }, {\n key: \"resetRegExp\",\n value: function resetRegExp() {\n var regexpStr = \"\".concat(this.prefix, \"(.+?)\").concat(this.suffix);\n this.regexp = new RegExp(regexpStr, 'g');\n var regexpUnescapeStr = \"\".concat(this.prefix).concat(this.unescapePrefix, \"(.+?)\").concat(this.unescapeSuffix).concat(this.suffix);\n this.regexpUnescape = new RegExp(regexpUnescapeStr, 'g');\n var nestingRegexpStr = \"\".concat(this.nestingPrefix, \"(.+?)\").concat(this.nestingSuffix);\n this.nestingRegexp = new RegExp(nestingRegexpStr, 'g');\n }\n }, {\n key: \"interpolate\",\n value: function interpolate(str, data, lng, options) {\n var _this = this;\n\n var match;\n var value;\n var replaces;\n var defaultData = this.options && this.options.interpolation && this.options.interpolation.defaultVariables || {};\n\n function regexSafe(val) {\n return val.replace(/\\$/g, '$$$$');\n }\n\n var handleFormat = function handleFormat(key) {\n if (key.indexOf(_this.formatSeparator) < 0) {\n var path = getPathWithDefaults(data, defaultData, key);\n return _this.alwaysFormat ? _this.format(path, undefined, lng, _objectSpread$3(_objectSpread$3(_objectSpread$3({}, options), data), {}, {\n interpolationkey: key\n })) : path;\n }\n\n var p = key.split(_this.formatSeparator);\n var k = p.shift().trim();\n var f = p.join(_this.formatSeparator).trim();\n return _this.format(getPathWithDefaults(data, defaultData, k), f, lng, _objectSpread$3(_objectSpread$3(_objectSpread$3({}, options), data), {}, {\n interpolationkey: k\n }));\n };\n\n this.resetRegExp();\n var missingInterpolationHandler = options && options.missingInterpolationHandler || this.options.missingInterpolationHandler;\n var skipOnVariables = options && options.interpolation && options.interpolation.skipOnVariables !== undefined ? options.interpolation.skipOnVariables : this.options.interpolation.skipOnVariables;\n var todos = [{\n regex: this.regexpUnescape,\n safeValue: function safeValue(val) {\n return regexSafe(val);\n }\n }, {\n regex: this.regexp,\n safeValue: function safeValue(val) {\n return _this.escapeValue ? regexSafe(_this.escape(val)) : regexSafe(val);\n }\n }];\n todos.forEach(function (todo) {\n replaces = 0;\n\n while (match = todo.regex.exec(str)) {\n var matchedVar = match[1].trim();\n value = handleFormat(matchedVar);\n\n if (value === undefined) {\n if (typeof missingInterpolationHandler === 'function') {\n var temp = missingInterpolationHandler(str, match, options);\n value = typeof temp === 'string' ? temp : '';\n } else if (options && options.hasOwnProperty(matchedVar)) {\n value = '';\n } else if (skipOnVariables) {\n value = match[0];\n continue;\n } else {\n _this.logger.warn(\"missed to pass in variable \".concat(matchedVar, \" for interpolating \").concat(str));\n\n value = '';\n }\n } else if (typeof value !== 'string' && !_this.useRawValueToEscape) {\n value = makeString(value);\n }\n\n var safeValue = todo.safeValue(value);\n str = str.replace(match[0], safeValue);\n\n if (skipOnVariables) {\n todo.regex.lastIndex += value.length;\n todo.regex.lastIndex -= match[0].length;\n } else {\n todo.regex.lastIndex = 0;\n }\n\n replaces++;\n\n if (replaces >= _this.maxReplaces) {\n break;\n }\n }\n });\n return str;\n }\n }, {\n key: \"nest\",\n value: function nest(str, fc) {\n var _this2 = this;\n\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n var match;\n var value;\n\n var clonedOptions = _objectSpread$3({}, options);\n\n clonedOptions.applyPostProcessor = false;\n delete clonedOptions.defaultValue;\n\n function handleHasOptions(key, inheritedOptions) {\n var sep = this.nestingOptionsSeparator;\n if (key.indexOf(sep) < 0) return key;\n var c = key.split(new RegExp(\"\".concat(sep, \"[ ]*{\")));\n var optionsString = \"{\".concat(c[1]);\n key = c[0];\n optionsString = this.interpolate(optionsString, clonedOptions);\n optionsString = optionsString.replace(/'/g, '\"');\n\n try {\n clonedOptions = JSON.parse(optionsString);\n if (inheritedOptions) clonedOptions = _objectSpread$3(_objectSpread$3({}, inheritedOptions), clonedOptions);\n } catch (e) {\n this.logger.warn(\"failed parsing options string in nesting for key \".concat(key), e);\n return \"\".concat(key).concat(sep).concat(optionsString);\n }\n\n delete clonedOptions.defaultValue;\n return key;\n }\n\n while (match = this.nestingRegexp.exec(str)) {\n var formatters = [];\n var doReduce = false;\n\n if (match[0].indexOf(this.formatSeparator) !== -1 && !/{.*}/.test(match[1])) {\n var r = match[1].split(this.formatSeparator).map(function (elem) {\n return elem.trim();\n });\n match[1] = r.shift();\n formatters = r;\n doReduce = true;\n }\n\n value = fc(handleHasOptions.call(this, match[1].trim(), clonedOptions), clonedOptions);\n if (value && match[0] === str && typeof value !== 'string') return value;\n if (typeof value !== 'string') value = makeString(value);\n\n if (!value) {\n this.logger.warn(\"missed to resolve \".concat(match[1], \" for nesting \").concat(str));\n value = '';\n }\n\n if (doReduce) {\n value = formatters.reduce(function (v, f) {\n return _this2.format(v, f, options.lng, _objectSpread$3(_objectSpread$3({}, options), {}, {\n interpolationkey: match[1].trim()\n }));\n }, value.trim());\n }\n\n str = str.replace(match[0], value);\n this.regexp.lastIndex = 0;\n }\n\n return str;\n }\n }]);\n\n return Interpolator;\n}();\n\nfunction ownKeys$4(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread$4(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$4(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$4(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction parseFormatStr(formatStr) {\n var formatName = formatStr.toLowerCase().trim();\n var formatOptions = {};\n\n if (formatStr.indexOf('(') > -1) {\n var p = formatStr.split('(');\n formatName = p[0].toLowerCase().trim();\n var optStr = p[1].substring(0, p[1].length - 1);\n\n if (formatName === 'currency' && optStr.indexOf(':') < 0) {\n if (!formatOptions.currency) formatOptions.currency = optStr.trim();\n } else if (formatName === 'relativetime' && optStr.indexOf(':') < 0) {\n if (!formatOptions.range) formatOptions.range = optStr.trim();\n } else {\n var opts = optStr.split(';');\n opts.forEach(function (opt) {\n if (!opt) return;\n\n var _opt$split = opt.split(':'),\n _opt$split2 = _toArray(_opt$split),\n key = _opt$split2[0],\n rest = _opt$split2.slice(1);\n\n var val = rest.join(':').trim().replace(/^'+|'+$/g, '');\n if (!formatOptions[key.trim()]) formatOptions[key.trim()] = val;\n if (val === 'false') formatOptions[key.trim()] = false;\n if (val === 'true') formatOptions[key.trim()] = true;\n if (!isNaN(val)) formatOptions[key.trim()] = parseInt(val, 10);\n });\n }\n }\n\n return {\n formatName: formatName,\n formatOptions: formatOptions\n };\n}\n\nvar Formatter = function () {\n function Formatter() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n _classCallCheck(this, Formatter);\n\n this.logger = baseLogger.create('formatter');\n this.options = options;\n this.formats = {\n number: function number(val, lng, options) {\n return new Intl.NumberFormat(lng, options).format(val);\n },\n currency: function currency(val, lng, options) {\n return new Intl.NumberFormat(lng, _objectSpread$4(_objectSpread$4({}, options), {}, {\n style: 'currency'\n })).format(val);\n },\n datetime: function datetime(val, lng, options) {\n return new Intl.DateTimeFormat(lng, _objectSpread$4({}, options)).format(val);\n },\n relativetime: function relativetime(val, lng, options) {\n return new Intl.RelativeTimeFormat(lng, _objectSpread$4({}, options)).format(val, options.range || 'day');\n },\n list: function list(val, lng, options) {\n return new Intl.ListFormat(lng, _objectSpread$4({}, options)).format(val);\n }\n };\n this.init(options);\n }\n\n _createClass(Formatter, [{\n key: \"init\",\n value: function init(services) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {\n interpolation: {}\n };\n var iOpts = options.interpolation;\n this.formatSeparator = iOpts.formatSeparator ? iOpts.formatSeparator : iOpts.formatSeparator || ',';\n }\n }, {\n key: \"add\",\n value: function add(name, fc) {\n this.formats[name.toLowerCase().trim()] = fc;\n }\n }, {\n key: \"format\",\n value: function format(value, _format, lng, options) {\n var _this = this;\n\n var formats = _format.split(this.formatSeparator);\n\n var result = formats.reduce(function (mem, f) {\n var _parseFormatStr = parseFormatStr(f),\n formatName = _parseFormatStr.formatName,\n formatOptions = _parseFormatStr.formatOptions;\n\n if (_this.formats[formatName]) {\n var formatted = mem;\n\n try {\n var valOptions = options && options.formatParams && options.formatParams[options.interpolationkey] || {};\n var l = valOptions.locale || valOptions.lng || options.locale || options.lng || lng;\n formatted = _this.formats[formatName](mem, l, _objectSpread$4(_objectSpread$4(_objectSpread$4({}, formatOptions), options), valOptions));\n } catch (error) {\n _this.logger.warn(error);\n }\n\n return formatted;\n } else {\n _this.logger.warn(\"there was no format function for \".concat(formatName));\n }\n\n return mem;\n }, value);\n return result;\n }\n }]);\n\n return Formatter;\n}();\n\nfunction ownKeys$5(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread$5(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$5(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$5(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _createSuper$2(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$2(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _isNativeReflectConstruct$2() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction removePending(q, name) {\n if (q.pending[name] !== undefined) {\n delete q.pending[name];\n q.pendingCount--;\n }\n}\n\nvar Connector = function (_EventEmitter) {\n _inherits(Connector, _EventEmitter);\n\n var _super = _createSuper$2(Connector);\n\n function Connector(backend, store, services) {\n var _this;\n\n var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};\n\n _classCallCheck(this, Connector);\n\n _this = _super.call(this);\n\n if (isIE10) {\n EventEmitter.call(_assertThisInitialized(_this));\n }\n\n _this.backend = backend;\n _this.store = store;\n _this.services = services;\n _this.languageUtils = services.languageUtils;\n _this.options = options;\n _this.logger = baseLogger.create('backendConnector');\n _this.waitingReads = [];\n _this.maxParallelReads = options.maxParallelReads || 10;\n _this.readingCalls = 0;\n _this.maxRetries = options.maxRetries >= 0 ? options.maxRetries : 5;\n _this.retryTimeout = options.retryTimeout >= 1 ? options.retryTimeout : 350;\n _this.state = {};\n _this.queue = [];\n\n if (_this.backend && _this.backend.init) {\n _this.backend.init(services, options.backend, options);\n }\n\n return _this;\n }\n\n _createClass(Connector, [{\n key: \"queueLoad\",\n value: function queueLoad(languages, namespaces, options, callback) {\n var _this2 = this;\n\n var toLoad = {};\n var pending = {};\n var toLoadLanguages = {};\n var toLoadNamespaces = {};\n languages.forEach(function (lng) {\n var hasAllNamespaces = true;\n namespaces.forEach(function (ns) {\n var name = \"\".concat(lng, \"|\").concat(ns);\n\n if (!options.reload && _this2.store.hasResourceBundle(lng, ns)) {\n _this2.state[name] = 2;\n } else if (_this2.state[name] < 0) ; else if (_this2.state[name] === 1) {\n if (pending[name] === undefined) pending[name] = true;\n } else {\n _this2.state[name] = 1;\n hasAllNamespaces = false;\n if (pending[name] === undefined) pending[name] = true;\n if (toLoad[name] === undefined) toLoad[name] = true;\n if (toLoadNamespaces[ns] === undefined) toLoadNamespaces[ns] = true;\n }\n });\n if (!hasAllNamespaces) toLoadLanguages[lng] = true;\n });\n\n if (Object.keys(toLoad).length || Object.keys(pending).length) {\n this.queue.push({\n pending: pending,\n pendingCount: Object.keys(pending).length,\n loaded: {},\n errors: [],\n callback: callback\n });\n }\n\n return {\n toLoad: Object.keys(toLoad),\n pending: Object.keys(pending),\n toLoadLanguages: Object.keys(toLoadLanguages),\n toLoadNamespaces: Object.keys(toLoadNamespaces)\n };\n }\n }, {\n key: \"loaded\",\n value: function loaded(name, err, data) {\n var s = name.split('|');\n var lng = s[0];\n var ns = s[1];\n if (err) this.emit('failedLoading', lng, ns, err);\n\n if (data) {\n this.store.addResourceBundle(lng, ns, data);\n }\n\n this.state[name] = err ? -1 : 2;\n var loaded = {};\n this.queue.forEach(function (q) {\n pushPath(q.loaded, [lng], ns);\n removePending(q, name);\n if (err) q.errors.push(err);\n\n if (q.pendingCount === 0 && !q.done) {\n Object.keys(q.loaded).forEach(function (l) {\n if (!loaded[l]) loaded[l] = {};\n var loadedKeys = q.loaded[l];\n\n if (loadedKeys.length) {\n loadedKeys.forEach(function (ns) {\n if (loaded[l][ns] === undefined) loaded[l][ns] = true;\n });\n }\n });\n q.done = true;\n\n if (q.errors.length) {\n q.callback(q.errors);\n } else {\n q.callback();\n }\n }\n });\n this.emit('loaded', loaded);\n this.queue = this.queue.filter(function (q) {\n return !q.done;\n });\n }\n }, {\n key: \"read\",\n value: function read(lng, ns, fcName) {\n var _this3 = this;\n\n var tried = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 0;\n var wait = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : this.retryTimeout;\n var callback = arguments.length > 5 ? arguments[5] : undefined;\n if (!lng.length) return callback(null, {});\n\n if (this.readingCalls >= this.maxParallelReads) {\n this.waitingReads.push({\n lng: lng,\n ns: ns,\n fcName: fcName,\n tried: tried,\n wait: wait,\n callback: callback\n });\n return;\n }\n\n this.readingCalls++;\n return this.backend[fcName](lng, ns, function (err, data) {\n _this3.readingCalls--;\n\n if (_this3.waitingReads.length > 0) {\n var next = _this3.waitingReads.shift();\n\n _this3.read(next.lng, next.ns, next.fcName, next.tried, next.wait, next.callback);\n }\n\n if (err && data && tried < _this3.maxRetries) {\n setTimeout(function () {\n _this3.read.call(_this3, lng, ns, fcName, tried + 1, wait * 2, callback);\n }, wait);\n return;\n }\n\n callback(err, data);\n });\n }\n }, {\n key: \"prepareLoading\",\n value: function prepareLoading(languages, namespaces) {\n var _this4 = this;\n\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n var callback = arguments.length > 3 ? arguments[3] : undefined;\n\n if (!this.backend) {\n this.logger.warn('No backend was added via i18next.use. Will not load resources.');\n return callback && callback();\n }\n\n if (typeof languages === 'string') languages = this.languageUtils.toResolveHierarchy(languages);\n if (typeof namespaces === 'string') namespaces = [namespaces];\n var toLoad = this.queueLoad(languages, namespaces, options, callback);\n\n if (!toLoad.toLoad.length) {\n if (!toLoad.pending.length) callback();\n return null;\n }\n\n toLoad.toLoad.forEach(function (name) {\n _this4.loadOne(name);\n });\n }\n }, {\n key: \"load\",\n value: function load(languages, namespaces, callback) {\n this.prepareLoading(languages, namespaces, {}, callback);\n }\n }, {\n key: \"reload\",\n value: function reload(languages, namespaces, callback) {\n this.prepareLoading(languages, namespaces, {\n reload: true\n }, callback);\n }\n }, {\n key: \"loadOne\",\n value: function loadOne(name) {\n var _this5 = this;\n\n var prefix = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';\n var s = name.split('|');\n var lng = s[0];\n var ns = s[1];\n this.read(lng, ns, 'read', undefined, undefined, function (err, data) {\n if (err) _this5.logger.warn(\"\".concat(prefix, \"loading namespace \").concat(ns, \" for language \").concat(lng, \" failed\"), err);\n if (!err && data) _this5.logger.log(\"\".concat(prefix, \"loaded namespace \").concat(ns, \" for language \").concat(lng), data);\n\n _this5.loaded(name, err, data);\n });\n }\n }, {\n key: \"saveMissing\",\n value: function saveMissing(languages, namespace, key, fallbackValue, isUpdate) {\n var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {};\n\n if (this.services.utils && this.services.utils.hasLoadedNamespace && !this.services.utils.hasLoadedNamespace(namespace)) {\n this.logger.warn(\"did not save key \\\"\".concat(key, \"\\\" as the namespace \\\"\").concat(namespace, \"\\\" was not yet loaded\"), 'This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!');\n return;\n }\n\n if (key === undefined || key === null || key === '') return;\n\n if (this.backend && this.backend.create) {\n this.backend.create(languages, namespace, key, fallbackValue, null, _objectSpread$5(_objectSpread$5({}, options), {}, {\n isUpdate: isUpdate\n }));\n }\n\n if (!languages || !languages[0]) return;\n this.store.addResource(languages[0], namespace, key, fallbackValue);\n }\n }]);\n\n return Connector;\n}(EventEmitter);\n\nfunction get() {\n return {\n debug: false,\n initImmediate: true,\n ns: ['translation'],\n defaultNS: ['translation'],\n fallbackLng: ['dev'],\n fallbackNS: false,\n supportedLngs: false,\n nonExplicitSupportedLngs: false,\n load: 'all',\n preload: false,\n simplifyPluralSuffix: true,\n keySeparator: '.',\n nsSeparator: ':',\n pluralSeparator: '_',\n contextSeparator: '_',\n partialBundledLanguages: false,\n saveMissing: false,\n updateMissing: false,\n saveMissingTo: 'fallback',\n saveMissingPlurals: true,\n missingKeyHandler: false,\n missingInterpolationHandler: false,\n postProcess: false,\n postProcessPassResolved: false,\n returnNull: true,\n returnEmptyString: true,\n returnObjects: false,\n joinArrays: false,\n returnedObjectHandler: false,\n parseMissingKeyHandler: false,\n appendNamespaceToMissingKey: false,\n appendNamespaceToCIMode: false,\n overloadTranslationOptionHandler: function handle(args) {\n var ret = {};\n if (_typeof(args[1]) === 'object') ret = args[1];\n if (typeof args[1] === 'string') ret.defaultValue = args[1];\n if (typeof args[2] === 'string') ret.tDescription = args[2];\n\n if (_typeof(args[2]) === 'object' || _typeof(args[3]) === 'object') {\n var options = args[3] || args[2];\n Object.keys(options).forEach(function (key) {\n ret[key] = options[key];\n });\n }\n\n return ret;\n },\n interpolation: {\n escapeValue: true,\n format: function format(value, _format, lng, options) {\n return value;\n },\n prefix: '{{',\n suffix: '}}',\n formatSeparator: ',',\n unescapePrefix: '-',\n nestingPrefix: '$t(',\n nestingSuffix: ')',\n nestingOptionsSeparator: ',',\n maxReplaces: 1000,\n skipOnVariables: true\n }\n };\n}\nfunction transformOptions(options) {\n if (typeof options.ns === 'string') options.ns = [options.ns];\n if (typeof options.fallbackLng === 'string') options.fallbackLng = [options.fallbackLng];\n if (typeof options.fallbackNS === 'string') options.fallbackNS = [options.fallbackNS];\n\n if (options.supportedLngs && options.supportedLngs.indexOf('cimode') < 0) {\n options.supportedLngs = options.supportedLngs.concat(['cimode']);\n }\n\n return options;\n}\n\nfunction ownKeys$6(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread$6(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$6(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$6(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _createSuper$3(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$3(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _isNativeReflectConstruct$3() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction noop() {}\n\nfunction bindMemberFunctions(inst) {\n var mems = Object.getOwnPropertyNames(Object.getPrototypeOf(inst));\n mems.forEach(function (mem) {\n if (typeof inst[mem] === 'function') {\n inst[mem] = inst[mem].bind(inst);\n }\n });\n}\n\nvar I18n = function (_EventEmitter) {\n _inherits(I18n, _EventEmitter);\n\n var _super = _createSuper$3(I18n);\n\n function I18n() {\n var _this;\n\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n var callback = arguments.length > 1 ? arguments[1] : undefined;\n\n _classCallCheck(this, I18n);\n\n _this = _super.call(this);\n\n if (isIE10) {\n EventEmitter.call(_assertThisInitialized(_this));\n }\n\n _this.options = transformOptions(options);\n _this.services = {};\n _this.logger = baseLogger;\n _this.modules = {\n external: []\n };\n bindMemberFunctions(_assertThisInitialized(_this));\n\n if (callback && !_this.isInitialized && !options.isClone) {\n if (!_this.options.initImmediate) {\n _this.init(options, callback);\n\n return _possibleConstructorReturn(_this, _assertThisInitialized(_this));\n }\n\n setTimeout(function () {\n _this.init(options, callback);\n }, 0);\n }\n\n return _this;\n }\n\n _createClass(I18n, [{\n key: \"init\",\n value: function init() {\n var _this2 = this;\n\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n var callback = arguments.length > 1 ? arguments[1] : undefined;\n\n if (typeof options === 'function') {\n callback = options;\n options = {};\n }\n\n if (!options.defaultNS && options.defaultNS !== false && options.ns) {\n if (typeof options.ns === 'string') {\n options.defaultNS = options.ns;\n } else if (options.ns.indexOf('translation') < 0) {\n options.defaultNS = options.ns[0];\n }\n }\n\n var defOpts = get();\n this.options = _objectSpread$6(_objectSpread$6(_objectSpread$6({}, defOpts), this.options), transformOptions(options));\n\n if (this.options.compatibilityAPI !== 'v1') {\n this.options.interpolation = _objectSpread$6(_objectSpread$6({}, defOpts.interpolation), this.options.interpolation);\n }\n\n if (options.keySeparator !== undefined) {\n this.options.userDefinedKeySeparator = options.keySeparator;\n }\n\n if (options.nsSeparator !== undefined) {\n this.options.userDefinedNsSeparator = options.nsSeparator;\n }\n\n function createClassOnDemand(ClassOrObject) {\n if (!ClassOrObject) return null;\n if (typeof ClassOrObject === 'function') return new ClassOrObject();\n return ClassOrObject;\n }\n\n if (!this.options.isClone) {\n if (this.modules.logger) {\n baseLogger.init(createClassOnDemand(this.modules.logger), this.options);\n } else {\n baseLogger.init(null, this.options);\n }\n\n var formatter;\n\n if (this.modules.formatter) {\n formatter = this.modules.formatter;\n } else if (typeof Intl !== 'undefined') {\n formatter = Formatter;\n }\n\n var lu = new LanguageUtil(this.options);\n this.store = new ResourceStore(this.options.resources, this.options);\n var s = this.services;\n s.logger = baseLogger;\n s.resourceStore = this.store;\n s.languageUtils = lu;\n s.pluralResolver = new PluralResolver(lu, {\n prepend: this.options.pluralSeparator,\n compatibilityJSON: this.options.compatibilityJSON,\n simplifyPluralSuffix: this.options.simplifyPluralSuffix\n });\n\n if (formatter && (!this.options.interpolation.format || this.options.interpolation.format === defOpts.interpolation.format)) {\n s.formatter = createClassOnDemand(formatter);\n s.formatter.init(s, this.options);\n this.options.interpolation.format = s.formatter.format.bind(s.formatter);\n }\n\n s.interpolator = new Interpolator(this.options);\n s.utils = {\n hasLoadedNamespace: this.hasLoadedNamespace.bind(this)\n };\n s.backendConnector = new Connector(createClassOnDemand(this.modules.backend), s.resourceStore, s, this.options);\n s.backendConnector.on('*', function (event) {\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n _this2.emit.apply(_this2, [event].concat(args));\n });\n\n if (this.modules.languageDetector) {\n s.languageDetector = createClassOnDemand(this.modules.languageDetector);\n s.languageDetector.init(s, this.options.detection, this.options);\n }\n\n if (this.modules.i18nFormat) {\n s.i18nFormat = createClassOnDemand(this.modules.i18nFormat);\n if (s.i18nFormat.init) s.i18nFormat.init(this);\n }\n\n this.translator = new Translator(this.services, this.options);\n this.translator.on('*', function (event) {\n for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n args[_key2 - 1] = arguments[_key2];\n }\n\n _this2.emit.apply(_this2, [event].concat(args));\n });\n this.modules.external.forEach(function (m) {\n if (m.init) m.init(_this2);\n });\n }\n\n this.format = this.options.interpolation.format;\n if (!callback) callback = noop;\n\n if (this.options.fallbackLng && !this.services.languageDetector && !this.options.lng) {\n var codes = this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);\n if (codes.length > 0 && codes[0] !== 'dev') this.options.lng = codes[0];\n }\n\n if (!this.services.languageDetector && !this.options.lng) {\n this.logger.warn('init: no languageDetector is used and no lng is defined');\n }\n\n var storeApi = ['getResource', 'hasResourceBundle', 'getResourceBundle', 'getDataByLanguage'];\n storeApi.forEach(function (fcName) {\n _this2[fcName] = function () {\n var _this2$store;\n\n return (_this2$store = _this2.store)[fcName].apply(_this2$store, arguments);\n };\n });\n var storeApiChained = ['addResource', 'addResources', 'addResourceBundle', 'removeResourceBundle'];\n storeApiChained.forEach(function (fcName) {\n _this2[fcName] = function () {\n var _this2$store2;\n\n (_this2$store2 = _this2.store)[fcName].apply(_this2$store2, arguments);\n\n return _this2;\n };\n });\n var deferred = defer();\n\n var load = function load() {\n var finish = function finish(err, t) {\n if (_this2.isInitialized && !_this2.initializedStoreOnce) _this2.logger.warn('init: i18next is already initialized. You should call init just once!');\n _this2.isInitialized = true;\n if (!_this2.options.isClone) _this2.logger.log('initialized', _this2.options);\n\n _this2.emit('initialized', _this2.options);\n\n deferred.resolve(t);\n callback(err, t);\n };\n\n if (_this2.languages && _this2.options.compatibilityAPI !== 'v1' && !_this2.isInitialized) return finish(null, _this2.t.bind(_this2));\n\n _this2.changeLanguage(_this2.options.lng, finish);\n };\n\n if (this.options.resources || !this.options.initImmediate) {\n load();\n } else {\n setTimeout(load, 0);\n }\n\n return deferred;\n }\n }, {\n key: \"loadResources\",\n value: function loadResources(language) {\n var _this3 = this;\n\n var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : noop;\n var usedCallback = callback;\n var usedLng = typeof language === 'string' ? language : this.language;\n if (typeof language === 'function') usedCallback = language;\n\n if (!this.options.resources || this.options.partialBundledLanguages) {\n if (usedLng && usedLng.toLowerCase() === 'cimode') return usedCallback();\n var toLoad = [];\n\n var append = function append(lng) {\n if (!lng) return;\n\n var lngs = _this3.services.languageUtils.toResolveHierarchy(lng);\n\n lngs.forEach(function (l) {\n if (toLoad.indexOf(l) < 0) toLoad.push(l);\n });\n };\n\n if (!usedLng) {\n var fallbacks = this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);\n fallbacks.forEach(function (l) {\n return append(l);\n });\n } else {\n append(usedLng);\n }\n\n if (this.options.preload) {\n this.options.preload.forEach(function (l) {\n return append(l);\n });\n }\n\n this.services.backendConnector.load(toLoad, this.options.ns, function (e) {\n if (!e && !_this3.resolvedLanguage && _this3.language) _this3.setResolvedLanguage(_this3.language);\n usedCallback(e);\n });\n } else {\n usedCallback(null);\n }\n }\n }, {\n key: \"reloadResources\",\n value: function reloadResources(lngs, ns, callback) {\n var deferred = defer();\n if (!lngs) lngs = this.languages;\n if (!ns) ns = this.options.ns;\n if (!callback) callback = noop;\n this.services.backendConnector.reload(lngs, ns, function (err) {\n deferred.resolve();\n callback(err);\n });\n return deferred;\n }\n }, {\n key: \"use\",\n value: function use(module) {\n if (!module) throw new Error('You are passing an undefined module! Please check the object you are passing to i18next.use()');\n if (!module.type) throw new Error('You are passing a wrong module! Please check the object you are passing to i18next.use()');\n\n if (module.type === 'backend') {\n this.modules.backend = module;\n }\n\n if (module.type === 'logger' || module.log && module.warn && module.error) {\n this.modules.logger = module;\n }\n\n if (module.type === 'languageDetector') {\n this.modules.languageDetector = module;\n }\n\n if (module.type === 'i18nFormat') {\n this.modules.i18nFormat = module;\n }\n\n if (module.type === 'postProcessor') {\n postProcessor.addPostProcessor(module);\n }\n\n if (module.type === 'formatter') {\n this.modules.formatter = module;\n }\n\n if (module.type === '3rdParty') {\n this.modules.external.push(module);\n }\n\n return this;\n }\n }, {\n key: \"setResolvedLanguage\",\n value: function setResolvedLanguage(l) {\n if (!l || !this.languages) return;\n if (['cimode', 'dev'].indexOf(l) > -1) return;\n\n for (var li = 0; li < this.languages.length; li++) {\n var lngInLngs = this.languages[li];\n if (['cimode', 'dev'].indexOf(lngInLngs) > -1) continue;\n\n if (this.store.hasLanguageSomeTranslations(lngInLngs)) {\n this.resolvedLanguage = lngInLngs;\n break;\n }\n }\n }\n }, {\n key: \"changeLanguage\",\n value: function changeLanguage(lng, callback) {\n var _this4 = this;\n\n this.isLanguageChangingTo = lng;\n var deferred = defer();\n this.emit('languageChanging', lng);\n\n var setLngProps = function setLngProps(l) {\n _this4.language = l;\n _this4.languages = _this4.services.languageUtils.toResolveHierarchy(l);\n _this4.resolvedLanguage = undefined;\n\n _this4.setResolvedLanguage(l);\n };\n\n var done = function done(err, l) {\n if (l) {\n setLngProps(l);\n\n _this4.translator.changeLanguage(l);\n\n _this4.isLanguageChangingTo = undefined;\n\n _this4.emit('languageChanged', l);\n\n _this4.logger.log('languageChanged', l);\n } else {\n _this4.isLanguageChangingTo = undefined;\n }\n\n deferred.resolve(function () {\n return _this4.t.apply(_this4, arguments);\n });\n if (callback) callback(err, function () {\n return _this4.t.apply(_this4, arguments);\n });\n };\n\n var setLng = function setLng(lngs) {\n if (!lng && !lngs && _this4.services.languageDetector) lngs = [];\n var l = typeof lngs === 'string' ? lngs : _this4.services.languageUtils.getBestMatchFromCodes(lngs);\n\n if (l) {\n if (!_this4.language) {\n setLngProps(l);\n }\n\n if (!_this4.translator.language) _this4.translator.changeLanguage(l);\n if (_this4.services.languageDetector) _this4.services.languageDetector.cacheUserLanguage(l);\n }\n\n _this4.loadResources(l, function (err) {\n done(err, l);\n });\n };\n\n if (!lng && this.services.languageDetector && !this.services.languageDetector.async) {\n setLng(this.services.languageDetector.detect());\n } else if (!lng && this.services.languageDetector && this.services.languageDetector.async) {\n this.services.languageDetector.detect(setLng);\n } else {\n setLng(lng);\n }\n\n return deferred;\n }\n }, {\n key: \"getFixedT\",\n value: function getFixedT(lng, ns, keyPrefix) {\n var _this5 = this;\n\n var fixedT = function fixedT(key, opts) {\n var options;\n\n if (_typeof(opts) !== 'object') {\n for (var _len3 = arguments.length, rest = new Array(_len3 > 2 ? _len3 - 2 : 0), _key3 = 2; _key3 < _len3; _key3++) {\n rest[_key3 - 2] = arguments[_key3];\n }\n\n options = _this5.options.overloadTranslationOptionHandler([key, opts].concat(rest));\n } else {\n options = _objectSpread$6({}, opts);\n }\n\n options.lng = options.lng || fixedT.lng;\n options.lngs = options.lngs || fixedT.lngs;\n options.ns = options.ns || fixedT.ns;\n options.keyPrefix = options.keyPrefix || keyPrefix || fixedT.keyPrefix;\n var keySeparator = _this5.options.keySeparator || '.';\n var resultKey = options.keyPrefix ? \"\".concat(options.keyPrefix).concat(keySeparator).concat(key) : key;\n return _this5.t(resultKey, options);\n };\n\n if (typeof lng === 'string') {\n fixedT.lng = lng;\n } else {\n fixedT.lngs = lng;\n }\n\n fixedT.ns = ns;\n fixedT.keyPrefix = keyPrefix;\n return fixedT;\n }\n }, {\n key: \"t\",\n value: function t() {\n var _this$translator;\n\n return this.translator && (_this$translator = this.translator).translate.apply(_this$translator, arguments);\n }\n }, {\n key: \"exists\",\n value: function exists() {\n var _this$translator2;\n\n return this.translator && (_this$translator2 = this.translator).exists.apply(_this$translator2, arguments);\n }\n }, {\n key: \"setDefaultNamespace\",\n value: function setDefaultNamespace(ns) {\n this.options.defaultNS = ns;\n }\n }, {\n key: \"hasLoadedNamespace\",\n value: function hasLoadedNamespace(ns) {\n var _this6 = this;\n\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n if (!this.isInitialized) {\n this.logger.warn('hasLoadedNamespace: i18next was not initialized', this.languages);\n return false;\n }\n\n if (!this.languages || !this.languages.length) {\n this.logger.warn('hasLoadedNamespace: i18n.languages were undefined or empty', this.languages);\n return false;\n }\n\n var lng = this.resolvedLanguage || this.languages[0];\n var fallbackLng = this.options ? this.options.fallbackLng : false;\n var lastLng = this.languages[this.languages.length - 1];\n if (lng.toLowerCase() === 'cimode') return true;\n\n var loadNotPending = function loadNotPending(l, n) {\n var loadState = _this6.services.backendConnector.state[\"\".concat(l, \"|\").concat(n)];\n\n return loadState === -1 || loadState === 2;\n };\n\n if (options.precheck) {\n var preResult = options.precheck(this, loadNotPending);\n if (preResult !== undefined) return preResult;\n }\n\n if (this.hasResourceBundle(lng, ns)) return true;\n if (!this.services.backendConnector.backend || this.options.resources && !this.options.partialBundledLanguages) return true;\n if (loadNotPending(lng, ns) && (!fallbackLng || loadNotPending(lastLng, ns))) return true;\n return false;\n }\n }, {\n key: \"loadNamespaces\",\n value: function loadNamespaces(ns, callback) {\n var _this7 = this;\n\n var deferred = defer();\n\n if (!this.options.ns) {\n callback && callback();\n return Promise.resolve();\n }\n\n if (typeof ns === 'string') ns = [ns];\n ns.forEach(function (n) {\n if (_this7.options.ns.indexOf(n) < 0) _this7.options.ns.push(n);\n });\n this.loadResources(function (err) {\n deferred.resolve();\n if (callback) callback(err);\n });\n return deferred;\n }\n }, {\n key: \"loadLanguages\",\n value: function loadLanguages(lngs, callback) {\n var deferred = defer();\n if (typeof lngs === 'string') lngs = [lngs];\n var preloaded = this.options.preload || [];\n var newLngs = lngs.filter(function (lng) {\n return preloaded.indexOf(lng) < 0;\n });\n\n if (!newLngs.length) {\n if (callback) callback();\n return Promise.resolve();\n }\n\n this.options.preload = preloaded.concat(newLngs);\n this.loadResources(function (err) {\n deferred.resolve();\n if (callback) callback(err);\n });\n return deferred;\n }\n }, {\n key: \"dir\",\n value: function dir(lng) {\n if (!lng) lng = this.resolvedLanguage || (this.languages && this.languages.length > 0 ? this.languages[0] : this.language);\n if (!lng) return 'rtl';\n var rtlLngs = ['ar', 'shu', 'sqr', 'ssh', 'xaa', 'yhd', 'yud', 'aao', 'abh', 'abv', 'acm', 'acq', 'acw', 'acx', 'acy', 'adf', 'ads', 'aeb', 'aec', 'afb', 'ajp', 'apc', 'apd', 'arb', 'arq', 'ars', 'ary', 'arz', 'auz', 'avl', 'ayh', 'ayl', 'ayn', 'ayp', 'bbz', 'pga', 'he', 'iw', 'ps', 'pbt', 'pbu', 'pst', 'prp', 'prd', 'ug', 'ur', 'ydd', 'yds', 'yih', 'ji', 'yi', 'hbo', 'men', 'xmn', 'fa', 'jpr', 'peo', 'pes', 'prs', 'dv', 'sam', 'ckb'];\n return rtlLngs.indexOf(this.services.languageUtils.getLanguagePartFromCode(lng)) > -1 || lng.toLowerCase().indexOf('-arab') > 1 ? 'rtl' : 'ltr';\n }\n }, {\n key: \"cloneInstance\",\n value: function cloneInstance() {\n var _this8 = this;\n\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : noop;\n\n var mergedOptions = _objectSpread$6(_objectSpread$6(_objectSpread$6({}, this.options), options), {\n isClone: true\n });\n\n var clone = new I18n(mergedOptions);\n var membersToCopy = ['store', 'services', 'language'];\n membersToCopy.forEach(function (m) {\n clone[m] = _this8[m];\n });\n clone.services = _objectSpread$6({}, this.services);\n clone.services.utils = {\n hasLoadedNamespace: clone.hasLoadedNamespace.bind(clone)\n };\n clone.translator = new Translator(clone.services, clone.options);\n clone.translator.on('*', function (event) {\n for (var _len4 = arguments.length, args = new Array(_len4 > 1 ? _len4 - 1 : 0), _key4 = 1; _key4 < _len4; _key4++) {\n args[_key4 - 1] = arguments[_key4];\n }\n\n clone.emit.apply(clone, [event].concat(args));\n });\n clone.init(mergedOptions, callback);\n clone.translator.options = clone.options;\n clone.translator.backendConnector.services.utils = {\n hasLoadedNamespace: clone.hasLoadedNamespace.bind(clone)\n };\n return clone;\n }\n }, {\n key: \"toJSON\",\n value: function toJSON() {\n return {\n options: this.options,\n store: this.store,\n language: this.language,\n languages: this.languages,\n resolvedLanguage: this.resolvedLanguage\n };\n }\n }]);\n\n return I18n;\n}(EventEmitter);\n\n_defineProperty(I18n, \"createInstance\", function () {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n var callback = arguments.length > 1 ? arguments[1] : undefined;\n return new I18n(options, callback);\n});\n\nvar instance = I18n.createInstance();\ninstance.createInstance = I18n.createInstance;\n\nvar createInstance = instance.createInstance;\nvar init = instance.init;\nvar loadResources = instance.loadResources;\nvar reloadResources = instance.reloadResources;\nvar use = instance.use;\nvar changeLanguage = instance.changeLanguage;\nvar getFixedT = instance.getFixedT;\nvar t = instance.t;\nvar exists = instance.exists;\nvar setDefaultNamespace = instance.setDefaultNamespace;\nvar hasLoadedNamespace = instance.hasLoadedNamespace;\nvar loadNamespaces = instance.loadNamespaces;\nvar loadLanguages = instance.loadLanguages;\n\nexport default instance;\nexport { changeLanguage, createInstance, exists, getFixedT, hasLoadedNamespace, init, loadLanguages, loadNamespaces, loadResources, reloadResources, setDefaultNamespace, t, use };\n","import arrayWithHoles from \"./arrayWithHoles.js\";\nimport iterableToArray from \"./iterableToArray.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableRest from \"./nonIterableRest.js\";\nexport default function _toArray(arr) {\n return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest();\n}","function _createForOfIteratorHelperLoose(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (it) return (it = it.call(o)).next.bind(it); if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; return function () { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction _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); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\n// === Symbol Support ===\nvar hasSymbols = function () {\n return typeof Symbol === 'function';\n};\n\nvar hasSymbol = function (name) {\n return hasSymbols() && Boolean(Symbol[name]);\n};\n\nvar getSymbol = function (name) {\n return hasSymbol(name) ? Symbol[name] : '@@' + name;\n};\n\nif (hasSymbols() && !hasSymbol('observable')) {\n Symbol.observable = Symbol('observable');\n}\n\nvar SymbolIterator = getSymbol('iterator');\nvar SymbolObservable = getSymbol('observable');\nvar SymbolSpecies = getSymbol('species'); // === Abstract Operations ===\n\nfunction getMethod(obj, key) {\n var value = obj[key];\n if (value == null) return undefined;\n if (typeof value !== 'function') throw new TypeError(value + ' is not a function');\n return value;\n}\n\nfunction getSpecies(obj) {\n var ctor = obj.constructor;\n\n if (ctor !== undefined) {\n ctor = ctor[SymbolSpecies];\n\n if (ctor === null) {\n ctor = undefined;\n }\n }\n\n return ctor !== undefined ? ctor : Observable;\n}\n\nfunction isObservable(x) {\n return x instanceof Observable; // SPEC: Brand check\n}\n\nfunction hostReportError(e) {\n if (hostReportError.log) {\n hostReportError.log(e);\n } else {\n setTimeout(function () {\n throw e;\n });\n }\n}\n\nfunction enqueue(fn) {\n Promise.resolve().then(function () {\n try {\n fn();\n } catch (e) {\n hostReportError(e);\n }\n });\n}\n\nfunction cleanupSubscription(subscription) {\n var cleanup = subscription._cleanup;\n if (cleanup === undefined) return;\n subscription._cleanup = undefined;\n\n if (!cleanup) {\n return;\n }\n\n try {\n if (typeof cleanup === 'function') {\n cleanup();\n } else {\n var unsubscribe = getMethod(cleanup, 'unsubscribe');\n\n if (unsubscribe) {\n unsubscribe.call(cleanup);\n }\n }\n } catch (e) {\n hostReportError(e);\n }\n}\n\nfunction closeSubscription(subscription) {\n subscription._observer = undefined;\n subscription._queue = undefined;\n subscription._state = 'closed';\n}\n\nfunction flushSubscription(subscription) {\n var queue = subscription._queue;\n\n if (!queue) {\n return;\n }\n\n subscription._queue = undefined;\n subscription._state = 'ready';\n\n for (var i = 0; i < queue.length; ++i) {\n notifySubscription(subscription, queue[i].type, queue[i].value);\n if (subscription._state === 'closed') break;\n }\n}\n\nfunction notifySubscription(subscription, type, value) {\n subscription._state = 'running';\n var observer = subscription._observer;\n\n try {\n var m = getMethod(observer, type);\n\n switch (type) {\n case 'next':\n if (m) m.call(observer, value);\n break;\n\n case 'error':\n closeSubscription(subscription);\n if (m) m.call(observer, value);else throw value;\n break;\n\n case 'complete':\n closeSubscription(subscription);\n if (m) m.call(observer);\n break;\n }\n } catch (e) {\n hostReportError(e);\n }\n\n if (subscription._state === 'closed') cleanupSubscription(subscription);else if (subscription._state === 'running') subscription._state = 'ready';\n}\n\nfunction onNotify(subscription, type, value) {\n if (subscription._state === 'closed') return;\n\n if (subscription._state === 'buffering') {\n subscription._queue.push({\n type: type,\n value: value\n });\n\n return;\n }\n\n if (subscription._state !== 'ready') {\n subscription._state = 'buffering';\n subscription._queue = [{\n type: type,\n value: value\n }];\n enqueue(function () {\n return flushSubscription(subscription);\n });\n return;\n }\n\n notifySubscription(subscription, type, value);\n}\n\nvar Subscription = /*#__PURE__*/function () {\n function Subscription(observer, subscriber) {\n // ASSERT: observer is an object\n // ASSERT: subscriber is callable\n this._cleanup = undefined;\n this._observer = observer;\n this._queue = undefined;\n this._state = 'initializing';\n var subscriptionObserver = new SubscriptionObserver(this);\n\n try {\n this._cleanup = subscriber.call(undefined, subscriptionObserver);\n } catch (e) {\n subscriptionObserver.error(e);\n }\n\n if (this._state === 'initializing') this._state = 'ready';\n }\n\n var _proto = Subscription.prototype;\n\n _proto.unsubscribe = function unsubscribe() {\n if (this._state !== 'closed') {\n closeSubscription(this);\n cleanupSubscription(this);\n }\n };\n\n _createClass(Subscription, [{\n key: \"closed\",\n get: function () {\n return this._state === 'closed';\n }\n }]);\n\n return Subscription;\n}();\n\nvar SubscriptionObserver = /*#__PURE__*/function () {\n function SubscriptionObserver(subscription) {\n this._subscription = subscription;\n }\n\n var _proto2 = SubscriptionObserver.prototype;\n\n _proto2.next = function next(value) {\n onNotify(this._subscription, 'next', value);\n };\n\n _proto2.error = function error(value) {\n onNotify(this._subscription, 'error', value);\n };\n\n _proto2.complete = function complete() {\n onNotify(this._subscription, 'complete');\n };\n\n _createClass(SubscriptionObserver, [{\n key: \"closed\",\n get: function () {\n return this._subscription._state === 'closed';\n }\n }]);\n\n return SubscriptionObserver;\n}();\n\nvar Observable = /*#__PURE__*/function () {\n function Observable(subscriber) {\n if (!(this instanceof Observable)) throw new TypeError('Observable cannot be called as a function');\n if (typeof subscriber !== 'function') throw new TypeError('Observable initializer must be a function');\n this._subscriber = subscriber;\n }\n\n var _proto3 = Observable.prototype;\n\n _proto3.subscribe = function subscribe(observer) {\n if (typeof observer !== 'object' || observer === null) {\n observer = {\n next: observer,\n error: arguments[1],\n complete: arguments[2]\n };\n }\n\n return new Subscription(observer, this._subscriber);\n };\n\n _proto3.forEach = function forEach(fn) {\n var _this = this;\n\n return new Promise(function (resolve, reject) {\n if (typeof fn !== 'function') {\n reject(new TypeError(fn + ' is not a function'));\n return;\n }\n\n function done() {\n subscription.unsubscribe();\n resolve();\n }\n\n var subscription = _this.subscribe({\n next: function (value) {\n try {\n fn(value, done);\n } catch (e) {\n reject(e);\n subscription.unsubscribe();\n }\n },\n error: reject,\n complete: resolve\n });\n });\n };\n\n _proto3.map = function map(fn) {\n var _this2 = this;\n\n if (typeof fn !== 'function') throw new TypeError(fn + ' is not a function');\n var C = getSpecies(this);\n return new C(function (observer) {\n return _this2.subscribe({\n next: function (value) {\n try {\n value = fn(value);\n } catch (e) {\n return observer.error(e);\n }\n\n observer.next(value);\n },\n error: function (e) {\n observer.error(e);\n },\n complete: function () {\n observer.complete();\n }\n });\n });\n };\n\n _proto3.filter = function filter(fn) {\n var _this3 = this;\n\n if (typeof fn !== 'function') throw new TypeError(fn + ' is not a function');\n var C = getSpecies(this);\n return new C(function (observer) {\n return _this3.subscribe({\n next: function (value) {\n try {\n if (!fn(value)) return;\n } catch (e) {\n return observer.error(e);\n }\n\n observer.next(value);\n },\n error: function (e) {\n observer.error(e);\n },\n complete: function () {\n observer.complete();\n }\n });\n });\n };\n\n _proto3.reduce = function reduce(fn) {\n var _this4 = this;\n\n if (typeof fn !== 'function') throw new TypeError(fn + ' is not a function');\n var C = getSpecies(this);\n var hasSeed = arguments.length > 1;\n var hasValue = false;\n var seed = arguments[1];\n var acc = seed;\n return new C(function (observer) {\n return _this4.subscribe({\n next: function (value) {\n var first = !hasValue;\n hasValue = true;\n\n if (!first || hasSeed) {\n try {\n acc = fn(acc, value);\n } catch (e) {\n return observer.error(e);\n }\n } else {\n acc = value;\n }\n },\n error: function (e) {\n observer.error(e);\n },\n complete: function () {\n if (!hasValue && !hasSeed) return observer.error(new TypeError('Cannot reduce an empty sequence'));\n observer.next(acc);\n observer.complete();\n }\n });\n });\n };\n\n _proto3.concat = function concat() {\n var _this5 = this;\n\n for (var _len = arguments.length, sources = new Array(_len), _key = 0; _key < _len; _key++) {\n sources[_key] = arguments[_key];\n }\n\n var C = getSpecies(this);\n return new C(function (observer) {\n var subscription;\n var index = 0;\n\n function startNext(next) {\n subscription = next.subscribe({\n next: function (v) {\n observer.next(v);\n },\n error: function (e) {\n observer.error(e);\n },\n complete: function () {\n if (index === sources.length) {\n subscription = undefined;\n observer.complete();\n } else {\n startNext(C.from(sources[index++]));\n }\n }\n });\n }\n\n startNext(_this5);\n return function () {\n if (subscription) {\n subscription.unsubscribe();\n subscription = undefined;\n }\n };\n });\n };\n\n _proto3.flatMap = function flatMap(fn) {\n var _this6 = this;\n\n if (typeof fn !== 'function') throw new TypeError(fn + ' is not a function');\n var C = getSpecies(this);\n return new C(function (observer) {\n var subscriptions = [];\n\n var outer = _this6.subscribe({\n next: function (value) {\n if (fn) {\n try {\n value = fn(value);\n } catch (e) {\n return observer.error(e);\n }\n }\n\n var inner = C.from(value).subscribe({\n next: function (value) {\n observer.next(value);\n },\n error: function (e) {\n observer.error(e);\n },\n complete: function () {\n var i = subscriptions.indexOf(inner);\n if (i >= 0) subscriptions.splice(i, 1);\n completeIfDone();\n }\n });\n subscriptions.push(inner);\n },\n error: function (e) {\n observer.error(e);\n },\n complete: function () {\n completeIfDone();\n }\n });\n\n function completeIfDone() {\n if (outer.closed && subscriptions.length === 0) observer.complete();\n }\n\n return function () {\n subscriptions.forEach(function (s) {\n return s.unsubscribe();\n });\n outer.unsubscribe();\n };\n });\n };\n\n _proto3[SymbolObservable] = function () {\n return this;\n };\n\n Observable.from = function from(x) {\n var C = typeof this === 'function' ? this : Observable;\n if (x == null) throw new TypeError(x + ' is not an object');\n var method = getMethod(x, SymbolObservable);\n\n if (method) {\n var observable = method.call(x);\n if (Object(observable) !== observable) throw new TypeError(observable + ' is not an object');\n if (isObservable(observable) && observable.constructor === C) return observable;\n return new C(function (observer) {\n return observable.subscribe(observer);\n });\n }\n\n if (hasSymbol('iterator')) {\n method = getMethod(x, SymbolIterator);\n\n if (method) {\n return new C(function (observer) {\n enqueue(function () {\n if (observer.closed) return;\n\n for (var _iterator = _createForOfIteratorHelperLoose(method.call(x)), _step; !(_step = _iterator()).done;) {\n var item = _step.value;\n observer.next(item);\n if (observer.closed) return;\n }\n\n observer.complete();\n });\n });\n }\n }\n\n if (Array.isArray(x)) {\n return new C(function (observer) {\n enqueue(function () {\n if (observer.closed) return;\n\n for (var i = 0; i < x.length; ++i) {\n observer.next(x[i]);\n if (observer.closed) return;\n }\n\n observer.complete();\n });\n });\n }\n\n throw new TypeError(x + ' is not observable');\n };\n\n Observable.of = function of() {\n for (var _len2 = arguments.length, items = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n items[_key2] = arguments[_key2];\n }\n\n var C = typeof this === 'function' ? this : Observable;\n return new C(function (observer) {\n enqueue(function () {\n if (observer.closed) return;\n\n for (var i = 0; i < items.length; ++i) {\n observer.next(items[i]);\n if (observer.closed) return;\n }\n\n observer.complete();\n });\n });\n };\n\n _createClass(Observable, null, [{\n key: SymbolSpecies,\n get: function () {\n return this;\n }\n }]);\n\n return Observable;\n}();\n\nif (hasSymbols()) {\n Object.defineProperty(Observable, Symbol('extensions'), {\n value: {\n symbol: SymbolObservable,\n hostReportError: hostReportError\n },\n configurable: true\n });\n}\n\nexport { Observable };\n"],"names":["addMonths","dirtyDate","dirtyAmount","requiredArgs","arguments","date","toDate","amount","toInteger","isNaN","Date","NaN","dayOfMonth","getDate","endOfDesiredMonth","getTime","setMonth","getMonth","daysInMonth","setFullYear","getFullYear","addYears","endOfDay","setHours","endOfWeek","options","_ref","_ref2","_ref3","_options$weekStartsOn","_options$locale","_options$locale$optio","_defaultOptions$local","_defaultOptions$local2","defaultOptions","weekStartsOn","locale","RangeError","day","getDay","diff","setDate","endOfYear","year","startOfHour","setMinutes","target","object","TypeError","property","Object","prototype","hasOwnProperty","call","_defineProperty","obj","key","value","defineProperty","enumerable","configurable","writable","Setter","constructor","this","validate","_utcDate","_options","ValueSetter","validateValue","setValue","priority","subPriority","super","utcDate","set","flags","DateToSystemTimezoneSetter","timestampIsSet","convertedDate","getUTCFullYear","getUTCMonth","getUTCDate","getUTCHours","getUTCMinutes","getUTCSeconds","getUTCMilliseconds","Parser","run","dateString","token","match","result","parse","setter","rest","_value","numericPatterns","timezonePatterns","mapValue","parseFnResult","mapFn","parseNumericPattern","pattern","matchResult","parseInt","slice","length","parseTimezonePattern","sign","hours","minutes","seconds","parseAnyDigitsSigned","parseNDigits","n","RegExp","parseNDigitsSigned","dayPeriodEnumToHours","dayPeriod","normalizeTwoDigitYear","twoDigitYear","currentYear","isCommonEra","absCurrentYear","rangeEnd","Math","floor","isLeapYearIndex","DAYS_IN_MONTH","DAYS_IN_MONTH_LEAP_YEAR","setUTCDay","dirtyDay","currentDay","getUTCDay","remainder","dayIndex","setUTCDate","parsers","G","era","width","setUTCFullYear","setUTCHours","y","valueCallback","isTwoDigitYear","ordinalNumber","unit","_date","normalizedTwoDigitYear","Y","getUTCWeekYear","firstWeekContainsDate","startOfUTCWeek","R","_flags","firstWeekOfYear","startOfUTCISOWeek","u","Q","quarter","context","setUTCMonth","q","M","month","L","w","dirtyWeek","week","getUTCWeek","setUTCWeek","I","dirtyISOWeek","isoWeek","getUTCISOWeek","setUTCISOWeek","d","isLeapYear","D","E","e","wholeWeekDays","c","i","setUTCISODay","a","b","B","h","isPM","H","K","k","m","setUTCMinutes","s","setUTCSeconds","S","pow","setUTCMilliseconds","X","x","t","T","formattingTokensRegExp","longFormattingTokensRegExp","escapedStringRegExp","doubleQuoteRegExp","notWhitespaceRegExp","unescapedLatinCharacterRegExp","cleanEscapedString","input","replace","startOfMonth","endOfMonth","startOfYear","cleanDate","DateFnsUtils","_a","yearFormat","yearMonthFormat","dateTime12hFormat","dateTime24hFormat","time12hFormat","time24hFormat","dateFormat","addDays","count","isValid","getDiff","comparing","dateLeft","dateRight","differenceInMilliseconds","isAfter","isBefore","startOfDay","getHours","dirtyHours","dirtyMinutes","getSeconds","setSeconds","dirtySeconds","isSameDay","isSameMonth","dirtyDateLeft","dirtyDateRight","isSameYear","isSameHour","dateLeftStartOfHour","dateRightStartOfHour","getYear","setYear","dirtyYear","formatString","dirtyDateString","dirtyFormatString","dirtyReferenceDate","_ref4","_options$firstWeekCon","_options$locale2","_options$locale2$opti","_ref5","_ref6","_ref7","_options$locale3","_options$locale3$opti","_defaultOptions$local3","_defaultOptions$local4","String","defaultLocale","subFnOptions","setters","tokens","map","substring","firstCharacter","longFormatters","longFormatter","formatLong","join","usedTokens","_loop","_token","useAdditionalWeekYearTokens","useAdditionalDayOfYearTokens","parser","incompatibleTokens","Array","isArray","incompatibleToken","find","usedToken","includes","concat","fullToken","push","parseResult","v","indexOf","_ret","test","uniquePrioritySetters","sort","filter","index","array","setterArray","subMilliseconds","getTimezoneOffsetInMilliseconds","format","isEqual","isNull","isAfterDay","isBeforeDay","isBeforeYear","isAfterYear","formatNumber","numberToFormat","getMinutes","dirtyMonth","dateWithDesiredMonth","getDaysInMonth","min","getMeridiemText","ampm","getNextMonth","getPreviousMonth","getMonthArray","monthArray","prevMonth","mergeDateAndTime","time","getWeekdays","_this","now","dirtyInterval","_options$step","interval","startDate","start","endTime","end","dates","currentDate","step","Number","eachDayOfInterval","startOfWeek","getWeekArray","current","nestedWeeks","weekNumber","getYearRange","endDate","years","getCalendarHeaderText","getYearText","getDatePickerHeaderText","getDateTimePickerHeaderText","getMonthText","getDayText","getHourText","getMinuteText","getSecondText","faCalendarAlt","prefix","iconName","icon","faChartBar","faCommentAlt","faFileInvoice","faHome","_typeof","Symbol","iterator","_defineProperties","props","descriptor","_objectSpread","source","ownKeys","keys","getOwnPropertySymbols","sym","getOwnPropertyDescriptor","forEach","_slicedToArray","arr","_arrayWithHoles","_arr","_n","_d","_e","undefined","_s","_i","next","done","err","_iterableToArrayLimit","_nonIterableRest","noop","_WINDOW","_DOCUMENT","_PERFORMANCE","mark","measure","window","document","MutationObserver","performance","_ref$userAgent","navigator","userAgent","WINDOW","DOCUMENT","PERFORMANCE","IS_DOM","documentElement","head","addEventListener","createElement","DEFAULT_REPLACEMENT_CLASS","DATA_FA_I2SVG","oneToTen","oneToTwenty","DUOTONE_CLASSES","GROUP","SWAP_OPACITY","PRIMARY","SECONDARY","initial","FontAwesomeConfig","querySelector","attr","val","coerce","element","getAttribute","getAttrConfig","_config","familyPrefix","replacementClass","autoReplaceSvg","autoAddCss","autoA11y","searchPseudoElements","observeMutations","mutateApproach","keepOriginalSource","measurePerformance","showMissingIcons","config","styles","hooks","shims","namespace","functions","doScroll","readyState","listener","removeEventListener","fn","asyncTimer","PENDING","SETTLED","FULFILLED","REJECTED","NOOP","isNode","g","process","emit","asyncSetTimer","setImmediate","setTimeout","asyncQueue","asyncFlush","asyncCall","callback","arg","invokeCallback","subscriber","owner","settled","_state","_data","promise","then","reject","handleThenable","resolve","resolved","fulfill","reason","publishFulfillment","publishRejection","publish","_then","_handled","notifyRejectionHandled","P","resolver","rejectPromise","invokeResolver","onFulfillment","onRejection","fulfilled","rejected","catch","all","promises","results","remaining","race","meaninglessTransform","size","rotate","flipX","flipY","insertCss","css","style","setAttribute","innerHTML","headChildren","childNodes","beforeChild","child","tagName","toUpperCase","insertBefore","nextUniqueId","id","random","htmlEscape","str","joinStyles","reduce","acc","styleName","transformIsMeaningful","transform","transformForSvg","containerWidth","iconWidth","outer","innerTranslate","innerScale","innerRotate","inner","path","ALL_SPACE","height","fillBlack","abstract","force","attributes","fill","makeInlineSvgAbstract","params","_params$icons","icons","main","mask","symbol","title","maskId","titleId","extra","_params$watchable","watchable","found","isUploadedIcon","widthClass","ceil","attrClass","classes","content","children","role","uploadedIconWidthStyle","tag","args","explicitMaskId","mainWidth","mainPath","maskWidth","maskPath","trans","maskRect","maskInnerGroupChildrenMixin","maskInnerGroup","maskOuterGroup","clipId","maskTag","maskUnits","maskContentUnits","defs","makeIconMasking","styleString","makeIconStandard","asSymbol","offset","asIcon","noop$1","subject","initialValue","thisContext","func","bindInternal4","defineIcons","_params$skipHooks","skipHooks","normalized","addPack","build","lookup","reducer","o","ligatures","ligature","hasRegular","shim","oldName","iconFromMapping","mapping","toHtml","abstractNodes","_abstractNodes$attrib","_abstractNodes$childr","attributeName","trim","joinAttributes","parseTransformString","transformString","toLowerCase","split","parts","first","parseFloat","MissingIcon","error","name","message","stack","Error","create","FILL","ANIMATION_BASE","attributeType","repeatCount","dur","RING","OPACITY_ANIMATE","cx","cy","r","values","opacity","asFoundIcon","vectorData","class","dfp","drc","fp","rc","dPatt","customPropPatt","rPatt","Library","instance","Constructor","_classCallCheck","definitions","protoProps","staticProps","_len","_key","additions","_pullDefinitions","definition","_normalized$key","ensureCss","_cssInserted","apiObject","abstractCreator","get","container","html","findIconDefinition","iconLookup","_iconLookup$prefix","library","iconDefinition","_params$transform","_params$symbol","_params$mask","_params$maskId","_params$title","_params$titleId","_params$classes","_params$attributes","_params$styles","type","maybeIconDefinition","enumerableOnly","symbols","apply","_objectSpread2","getOwnPropertyDescriptors","defineProperties","_objectWithoutProperties","excluded","sourceKeys","_objectWithoutPropertiesLoose","sourceSymbolKeys","propertyIsEnumerable","arr2","iter","toString","from","camelize","string","chr","substr","styleToObject","pair","prop","startsWith","charAt","normalizeIconArgs","objectWithKey","FontAwesomeIcon","forwardedRef","iconArgs","maskArgs","className","_classes","spin","pulse","fixedWidth","inverse","border","listItem","flip","rotation","pull","swapOpacity","classList","renderedIcon","_console","console","log","extraProps","ref","defaultProps","convertCurry","displayName","propTypes","convert","mixins","attrs","_extraProps$style","existingStyle","bind","exports","_default","A100","A200","A400","A700","black","white","AppBar","_props$color","color","_props$position","position","other","square","component","elevation","root","theme","backgroundColorDefault","palette","grey","display","flexDirection","boxSizing","zIndex","appBar","flexShrink","positionFixed","top","left","right","positionAbsolute","positionSticky","positionStatic","positionRelative","colorDefault","backgroundColor","getContrastText","colorPrimary","primary","contrastText","colorSecondary","secondary","colorInherit","colorTransparent","Backdrop","_props$invisible","invisible","open","transitionDuration","_props$TransitionComp","TransitionComponent","in","timeout","alignItems","justifyContent","bottom","WebkitTapHighlightColor","BottomNavigationAction","label","onChange","onClick","selected","showLabel","iconOnly","focusRipple","event","wrapper","transition","transitions","duration","short","padding","minWidth","maxWidth","text","flex","paddingTop","fontFamily","typography","fontSize","pxToRem","transitionDelay","BottomNavigation","_props$component","Component","_props$showLabels","showLabels","childIndex","childValue","background","paper","omit","fields","output","componentCreator","filterProps","stylesOptions","classNamePrefix","stylesOrCreator","useStyles","makeStyles","StyledComponent","classNameProp","clone","ComponentProp","spread","FinalComponent","defaultTheme","styleFunction","styleFunctionSx","compose","borders","flexbox","grid","positions","shadows","sizing","spacing","useEnhancedEffect","_props$pulsate","pulsate","rippleX","rippleY","rippleSize","inProp","_props$onExited","onExited","_React$useState","leaving","setLeaving","rippleClassName","ripple","rippleVisible","ripplePulsate","rippleStyles","childClassName","childLeaving","childPulsate","handleExited","useEventCallback","timeoutId","clearTimeout","TouchRipple","_props$center","center","centerProp","ripples","setRipples","nextKey","rippleCallback","ignoringMouseDown","startTimer","startTimerCommit","startCommit","cb","oldRipples","_options$pulsate","_options$center","_options$fakeElement","fakeElement","rect","getBoundingClientRect","clientX","clientY","touches","round","sqrt","sizeX","max","abs","clientWidth","sizeY","clientHeight","stop","persist","TransitionGroup","exit","withStyles","overflow","pointerEvents","borderRadius","animation","easing","easeInOut","animationDuration","shorter","ButtonBase","action","buttonRefProp","buttonRef","_props$centerRipple","centerRipple","_props$disabled","disabled","_props$disableRipple","disableRipple","_props$disableTouchRi","disableTouchRipple","_props$focusRipple","focusVisibleClassName","onBlur","onFocus","onFocusVisible","onKeyDown","onKeyUp","onMouseDown","onMouseLeave","onMouseUp","onTouchEnd","onTouchMove","onTouchStart","onDragLeave","_props$tabIndex","tabIndex","TouchRippleProps","_props$type","rippleRef","focusVisible","setFocusVisible","_useIsFocusVisible","useIsFocusVisible","isFocusVisible","onBlurVisible","focusVisibleRef","useRippleHandler","rippleAction","eventCallback","skipRippleAction","focus","handleMouseDown","handleDragLeave","handleMouseUp","handleMouseLeave","preventDefault","handleTouchStart","handleTouchEnd","handleTouchMove","handleBlur","handleFocus","currentTarget","isNonNativeButton","button","href","keydownRef","handleKeyDown","handleKeyUp","defaultPrevented","buttonProps","handleUserRef","useForkRef","handleOwnRef","handleRef","_React$useState2","mountedState","setMountedState","enableTouchRipple","outline","margin","cursor","userSelect","verticalAlign","textDecoration","borderStyle","colorAdjust","Button","_props$disableElevati","disableElevation","_props$disableFocusRi","disableFocusRipple","endIconProp","endIcon","_props$fullWidth","fullWidth","_props$size","startIconProp","startIcon","_props$variant","variant","shape","hoverOpacity","textPrimary","textSecondary","outlined","disabledBackground","outlinedPrimary","outlinedSecondary","contained","boxShadow","containedPrimary","dark","containedSecondary","borderColor","textSizeSmall","textSizeLarge","outlinedSizeSmall","outlinedSizeLarge","containedSizeSmall","containedSizeLarge","sizeSmall","sizeLarge","marginRight","marginLeft","iconSizeSmall","iconSizeMedium","iconSizeLarge","CardContent","paddingBottom","MEDIA_COMPONENTS","CardMedia","image","src","isMediaComponent","composedStyle","backgroundImage","media","img","backgroundSize","backgroundRepeat","backgroundPosition","objectFit","Card","_props$raised","raised","SwitchBase","autoFocus","checkedProp","checked","checkedIcon","defaultChecked","disabledProp","inputProps","inputRef","readOnly","required","_useControlled","useControlled","controlled","default","Boolean","state","_useControlled2","setCheckedState","muiFormControl","useFormControl","hasLabelFor","IconButton","newChecked","createSvgIcon","defaultCheckedIcon","CheckBox","defaultIcon","CheckBoxOutlineBlank","defaultIndeterminateIcon","IndeterminateCheckBox","Checkbox","_props$checkedIcon","_props$icon","iconProp","_props$indeterminate","indeterminate","_props$indeterminateI","indeterminateIcon","indeterminateIconProp","capitalize","SIZE","CircularProgress","_props$disableShrink","disableShrink","_props$thickness","thickness","_props$value","circleStyle","rootStyle","rootProps","circumference","PI","strokeDasharray","toFixed","strokeDashoffset","determinate","static","svg","viewBox","circle","circleDisableShrink","circleDeterminate","circleIndeterminate","circleStatic","strokeWidth","stroke","transformOrigin","Collapse","collapsedHeight","_props$collapsedSize","collapsedSize","collapsedSizeProp","_props$disableStrictM","disableStrictModeCompat","onEnter","onEntered","onEntering","onExit","onExiting","_props$timeout","timer","wrapperRef","autoTransitionDuration","enableStrictModeCompat","unstable_strictMode","nodeRef","normalizedTransitionCallback","nodeOrAppearing","maybeAppearing","node","isAppearing","handleEnter","handleEntering","wrapperHeight","mode","duration2","getAutoHeightDuration","handleEntered","handleExit","handleExiting","addEndListener","nodeOrNext","maybeNext","childProps","entered","hidden","minHeight","wrapperInner","muiSupportAuto","visibility","Container","_props$disableGutters","disableGutters","_props$fixed","fixed","_props$maxWidth","paddingLeft","paddingRight","breakpoints","up","breakpoint","maxWidthXs","xs","maxWidthSm","sm","maxWidthMd","md","maxWidthLg","lg","maxWidthXl","xl","WebkitFontSmoothing","MozOsxFontSmoothing","body","body2","common","fontWeight","fontWeightBold","_props$children","DialogActions","_props$disableSpacing","disableSpacing","DialogContent","_props$dividers","dividers","WebkitOverflowScrolling","overflowY","borderTop","divider","borderBottom","DialogTitle","_props$disableTypogra","disableTypography","defaultTransitionDuration","enter","Dialog","BackdropProps","_props$disableBackdro","disableBackdropClick","_props$disableEscapeK","disableEscapeKeyDown","_props$fullScreen","fullScreen","onBackdropClick","onClose","onEscapeKeyDown","_props$PaperComponent","PaperComponent","_props$PaperProps","PaperProps","_props$scroll","scroll","_props$transitionDura","TransitionProps","ariaDescribedby","ariaLabelledby","mouseDownTarget","BackdropComponent","closeAfterTransition","appear","paperFullScreen","paperFullWidth","scrollPaper","scrollBody","overflowX","textAlign","paperScrollPaper","maxHeight","paperScrollBody","paperWidthFalse","paperWidthXs","down","paperWidthSm","paperWidthMd","paperWidthLg","paperWidthXl","Divider","_props$absolute","absolute","_props$flexItem","flexItem","_props$light","light","_props$orientation","orientation","_props$role","vertical","inset","middle","alignSelf","setTranslateValue","direction","fakeTransform","computedStyle","getComputedStyle","getPropertyValue","offsetX","offsetY","transformValues","innerWidth","innerHeight","getTranslateValue","webkitTransform","defaultTimeout","_props$direction","Transition","useTheme","childrenRef","handleRefIntermediary","transitionProps","webkitTransition","easeOut","sharp","updatePosition","handleResize","debounce","clear","oppositeDirection","isHorizontal","anchor","getAnchor","Drawer","_props$anchor","anchorProp","_props$elevation","_props$ModalProps","ModalProps","BackdropPropsProp","_props$open","SlideProps","mounted","drawer","Paper","docked","slidingDrawer","Modal","modal","paperAnchorLeft","paperAnchorRight","paperAnchorTop","paperAnchorBottom","paperAnchorDockedLeft","borderRight","paperAnchorDockedTop","paperAnchorDockedRight","borderLeft","paperAnchorDockedBottom","Fab","extended","sizeMedium","entering","Fade","foreignRef","FormControlLabel","control","_props$labelPlacement","labelPlacement","controlProps","labelPlacementStart","labelPlacementTop","labelPlacementBottom","FormControlContext","SPACINGS","GRID_SIZES","getOffset","div","Grid","_props$alignContent","alignContent","_props$alignItems","_props$container","_props$item","item","justify","_props$justifyContent","_props$lg","_props$md","_props$sm","_props$spacing","_props$wrap","wrap","_props$xl","_props$xs","_props$zeroMinWidth","zeroMinWidth","StyledGrid","flexWrap","themeSpacing","generateGutter","accumulator","globalStyles","flexBasis","flexGrow","generateGrid","_props$edge","edge","edgeStart","edgeEnd","active","shortest","ListItemIcon","alignItemsFlexStart","marginTop","ListItemText","_props$inset","primaryProp","primaryTypographyProps","secondaryProp","secondaryTypographyProps","dense","multiline","marginBottom","ListItem","_props$autoFocus","_props$button","childrenProp","componentProp","_props$ContainerCompo","ContainerComponent","_props$ContainerProps","ContainerProps","ContainerClassName","_props$dense","_props$divider","_props$selected","childContext","listItemRef","hasSecondaryAction","componentProps","gutters","secondaryAction","pop","backgroundClip","hover","ListSubheader","_props$disableSticky","disableSticky","sticky","lineHeight","listStyle","fontWeightMedium","List","_props$disablePadding","disablePadding","subheader","ListContext","_props$disablePortal","disablePortal","onRendered","mountNode","setMountNode","getContainer","setRef","ariaHidden","show","removeAttribute","getPaddingRight","ariaHiddenSiblings","currentNode","nodesToExclude","blacklist","blacklistTagNames","nodeType","findIndexOf","containerInfo","idx","some","handleContainer","fixedNodes","restoreStyle","restorePaddings","disableScrollLock","doc","ownerDocument","ownerWindow","scrollHeight","isOverflowing","scrollbarSize","getScrollbarSize","el","querySelectorAll","parent","parentElement","scrollContainer","nodeName","removeProperty","setProperty","ModalManager","modals","containers","modalIndex","modalRef","hiddenSiblingNodes","hiddenSiblings","getHiddenSiblings","containerIndex","restore","splice","nextTop","_props$disableAutoFoc","disableAutoFocus","_props$disableEnforce","disableEnforceFocus","_props$disableRestore","disableRestoreFocus","getDoc","isEnabled","ignoreNextEnforceFocus","sentinelStart","sentinelEnd","nodeToRestore","rootRef","prevOpenRef","activeElement","contains","hasAttribute","contain","hasFocus","loopFocus","keyCode","shiftKey","setInterval","clearInterval","defaultManager","inProps","getThemeProps","_props$BackdropCompon","_props$closeAfterTran","_props$disableScrollL","_props$hideBackdrop","hideBackdrop","_props$keepMounted","keepMounted","_props$manager","manager","exited","setExited","mountNodeRef","hasTransition","getHasTransition","getModal","handleMounted","mount","scrollTop","handleOpen","resolvedContainer","add","isTopModal","handlePortalRef","handleClose","remove","inlineStyle","createChainedFunction","stopPropagation","_props$square","rounded","elevations","shadow","getScale","Grow","autoTimeout","_getTransitionProps","delay","_getTransitionProps2","getOffsetTop","getOffsetLeft","horizontal","getTransformOriginValue","getAnchorEl","anchorEl","Popover","_props$anchorOrigin","anchorOrigin","anchorPosition","_props$anchorReferenc","anchorReference","containerProp","getContentAnchorEl","_props$marginThreshol","marginThreshold","_props$transformOrigi","transitionDurationProp","_props$TransitionProp","paperRef","getAnchorOffset","contentAnchorOffset","resolvedAnchorEl","anchorRect","anchorVertical","getContentAnchorOffset","contentAnchorEl","getScrollParent","offsetTop","getTransformOrigin","elemRect","getPositioningStyle","offsetWidth","offsetHeight","elemTransformOrigin","anchorOffset","containerWindow","heightThreshold","widthThreshold","_diff","_diff2","_diff3","setPositioningStyles","positioning","handlePaperRef","SvgIcon","_props$fontSize","htmlColor","titleAccess","_props$viewBox","focusable","muiName","colorAction","colorError","colorDisabled","fontSizeInherit","fontSizeSmall","fontSizeLarge","_props$defer","defer","_props$fallback","fallback","SwipeArea","anchorLeft","anchorRight","anchorTop","anchorBottom","nodeThatClaimedTheSwipe","calculateCurrentX","pageX","calculateCurrentY","getMaxTranslate","horizontalSwipe","paperInstance","getTranslate","currentTranslate","startLocation","maxTranslate","iOS","transitionDurationDefault","SwipeableDrawer","disableBackdropTransition","_props$disableDiscove","disableDiscovery","_props$disableSwipeTo","disableSwipeToOpen","_props$hysteresis","hysteresis","_props$minFlingVeloci","minFlingVelocity","ModalPropsProp","onOpen","SwipeAreaProps","_props$swipeAreaWidth","swipeAreaWidth","maybeSwiping","setMaybeSwiping","swipeInstance","isSwiping","swipeAreaRef","backdropRef","touchDetected","calculatedDurationRef","setPosition","translate","_options$mode","_options$changeTransi","changeTransition","anchorRtl","rtlTranslateMultiplier","drawerStyle","backdropStyle","handleBodyTouchEnd","changedTouches","startX","startY","translateRatio","velocity","handleBodyTouchMove","currentX","currentY","nativeHandler","domTreeShapes","axisProperties","goingForward","axis","scrollPosition","areNotAtStart","areNotAtEnd","findNativeHandler","rootNode","scrollWidth","getDomTreeShapes","dx","dy","cancelable","definitelySwiping","paperHit","lastTranslate","lastTime","handleBodyTouchStart","muiHandled","passive","handleBackdropRef","tablelvl2","defaultComponent","TableBody","TableCell","_props$align","align","paddingProp","scopeProp","scope","sizeProp","sortDirection","variantProp","table","isHeadCell","ariaSort","stickyHeader","footer","paddingCheckbox","paddingNone","alignLeft","alignCenter","alignRight","alignJustify","TableContainer","TableRow","_props$hover","selectedOpacity","Table","_props$padding","_props$stickyHeader","borderCollapse","borderSpacing","captionSide","TableContext","Tablelvl2Context","formControlState","states","getStyleValue","rows","rowsMax","rowsMinProp","rowsMin","maxRowsProp","maxRows","_props$minRows","minRows","minRowsProp","isControlled","shadowRef","renders","setState","syncHeight","inputShallow","placeholder","singleRowHeight","outerHeight","outerHeightStyle","prevState","hasValue","isFilled","SSR","defaultValue","InputBase","autoComplete","endAdornment","_props$inputComponent","inputComponent","_props$inputProps","inputPropsProp","inputRefProp","_props$multiline","renderSuffix","startAdornment","valueProp","handleInputRefWarning","handleInputPropsRefProp","handleInputRefProp","handleInputRef","focused","setFocused","fcs","onFilled","onEmpty","checkDirty","InputComponent","setAdornedStart","formControl","adornedStart","adornedEnd","marginDense","onAnimationStart","animationName","inputMultiline","hiddenLabel","inputHiddenLabel","inputAdornedStart","inputAdornedEnd","inputTypeSearch","inputMarginDense","placeholderHidden","placeholderVisible","body1","font","letterSpacing","resize","Input","disableUnderline","underline","bottomLineColor","borderBottomColor","borderBottomStyle","FilledInput","borderTopLeftRadius","borderTopRightRadius","WebkitBoxShadow","WebkitTextFillColor","caretColor","NotchedOutline","labelWidthProp","labelWidth","notched","legendLabelled","legendNotched","dangerouslySetInnerHTML","__html","legend","borderWidth","OutlinedInput","_props$labelWidth","notchedOutline","filled","FormLabel","asterisk","InputLabel","_props$disableAnimati","disableAnimation","shrinkProp","shrink","animated","FormControl","_props$error","visuallyFocused","_props$hiddenLabel","_props$margin","_props$required","initialAdornedStart","isMuiElement","initialFilled","setFilled","_React$useState3","_focused","registerEffect","marginNormal","FormHelperText","caption","nextItem","list","disableListWrap","firstChild","nextElementSibling","previousItem","lastChild","previousElementSibling","textCriteriaMatches","nextFocus","textCriteria","innerText","textContent","repeating","moveFocus","currentFocus","disabledItemsFocusable","traversalFunction","wrappedOnce","nextFocusDisabled","actions","_props$autoFocusItem","autoFocusItem","_props$disabledItemsF","_props$disableListWra","listRef","textCriteriaRef","previousKeyMatched","adjustStyleForScrollbar","containerElement","noExplicitWidth","activeItemIndex","items","newChildProps","criteria","lowerKey","currTime","keepFocusOnCurrent","RTL_ORIGIN","LTR_ORIGIN","Menu","disableAutoFocusItem","_props$MenuListProps","MenuListProps","onEnteringProp","PopoverClasses","menuListActionsRef","contentAnchorRef","areEqualValues","ariaLabel","autoWidth","displayEmpty","IconComponent","labelId","_props$MenuProps","MenuProps","multiple","openProp","renderValue","_props$SelectDisplayP","SelectDisplayProps","tabIndexProp","displayNode","setDisplayNode","isOpenControlled","menuMinWidthState","setMenuMinWidthState","openState","setOpenState","getElementById","handler","getSelection","isCollapsed","displaySingle","update","childrenArray","handleItemClick","newValue","itemIndex","displayMultiple","computeDisplay","menuMinWidth","buttonId","select","selectMenu","isEmpty","nativeInput","iconOpen","textOverflow","whiteSpace","iconFilled","iconOutlined","defaultInput","NativeSelect","_props$IconComponent","ArrowDropDown","_props$input","Select","_props$autoWidth","_props$displayEmpty","_props$multiple","_props$native","native","variantProps","standard","mergeClasses","baseClasses","newClasses","variantComponent","TextField","FormHelperTextProps","helperText","InputLabelProps","InputProps","_props$select","SelectProps","InputMore","_InputLabelProps$requ","displayRequired","helperTextId","inputLabelId","InputElement","htmlFor","Toolbar","regular","toolbar","defaultVariantMapping","h1","h2","h3","h4","h5","h6","subtitle1","subtitle2","Typography","_props$display","_props$gutterBottom","gutterBottom","_props$noWrap","noWrap","_props$paragraph","paragraph","_props$variantMapping","variantMapping","overline","srOnly","colorTextPrimary","colorTextSecondary","displayInline","displayBlock","clamp","decomposeColor","re","colors","hexToRgb","marker","recomposeColor","getContrastRatio","foreground","lumA","getLuminance","lumB","rgb","l","f","hslToRgb","fade","alpha","darken","coefficient","lighten","createBreakpoints","_breakpoints$values","_breakpoints$unit","_breakpoints$step","between","endIndex","upperbound","only","createMixins","_toolbar","warn","hint","disabledOpacity","focusOpacity","activatedOpacity","addLightOrDark","intent","shade","tonalOffset","tonalOffsetLight","tonalOffsetDark","createPalette","_palette$primary","_palette$secondary","_palette$error","_palette$warning","warning","_palette$info","info","_palette$success","success","green","_palette$type","_palette$contrastThre","contrastThreshold","_palette$tonalOffset","augmentColor","mainShade","lightShade","darkShade","JSON","stringify","types","deepmerge","roundWithDeprecationWarning","caseAllCaps","textTransform","defaultFontFamily","createTypography","_ref$fontFamily","_ref$fontSize","_ref$fontWeightLight","fontWeightLight","_ref$fontWeightRegula","fontWeightRegular","_ref$fontWeightMedium","_ref$fontWeightBold","_ref$htmlFontSize","htmlFontSize","allVariants","pxToRem2","coef","buildVariant","casing","variants","createShadow","createSpacing","spacingInput","mui","argument","createTheme","_options$breakpoints","breakpointsInput","_options$mixins","mixinsInput","_options$palette","paletteInput","_options$typography","typographyInput","muiTheme","overrides","easeIn","complex","enteringScreen","leavingScreen","formatMs","milliseconds","_options$duration","durationOption","_options$easing","easingOption","_options$delay","animatedProp","constant","_options$withTheme","withTheme","WithStyles","innerRef","more","mobileStepper","speedDial","snackbar","tooltip","reflow","getTransitionProps","_props$style","funcs","_len2","_key2","wait","debounced","that","later","scrollDiv","appendChild","removeChild","deprecatedPropType","validator","requirePropFactory","componentNameInError","unsupportedProp","propName","componentName","location","propFullName","useId","idOverride","defaultId","setDefaultId","muiNames","defaultView","defaultProp","valueState","refA","refB","refValue","hadKeyboardEvent","hadFocusVisibleRecently","hadFocusVisibleRecentlyTimeout","inputTypesWhitelist","search","url","tel","email","password","number","datetime","metaKey","altKey","ctrlKey","handlePointerDown","handleVisibilityChange","visibilityState","matches","isContentEditable","handleBlurVisible","p","for","$$typeof","rgbToHex","hex","emphasize","_utils","formatMuiErrorMessage","_interopRequireDefault","_objectWithoutProperties2","_extends2","_extends3","_defineProperty2","_createTheme","_indigo","_pink","_red","_orange","_blue","_green","_colorManipulator","_formatMuiErrorMessage","_common","_grey","_system","createUnarySpacing","createMuiTheme","_createBreakpoints","_createMixins","_createPalette","_createTypography","_shadows","_shape","_createSpacing","_transitions","_zIndex","_interopRequireWildcard","React","defaultIconMapping","SuccessOutlined","ReportProblemOutlined","ErrorOutline","InfoOutlined","Close","Alert","_props$closeText","closeText","_props$iconMapping","iconMapping","_props$severity","severity","getColor","getBackgroundColor","standardSuccess","standardInfo","standardWarning","standardError","outlinedSuccess","outlinedInfo","outlinedWarning","outlinedError","filledSuccess","filledInfo","filledWarning","filledError","TimelineConnector","TimelineContent","_React$useContext$ali","_React$useContext2$cl","contextClasses","TimelineDot","defaultGrey","outlinedGrey","defaultPrimary","defaultSecondary","TimelineItem","hasOppositeContent","oppositeContent","missingOppositeContent","alignAlternate","TimelineItemContext","TimelineOppositeContent","TimelineSeparator","Timeline","TimelineContext","arrayIncludes","itemOrItems","every","staticWrapperRoot","StaticWrapper","ModalDialog","onAccept","onDismiss","onClear","onSetToday","okLabel","cancelLabel","clearLabel","todayLabel","clearable","showTodayButton","wider","showTabs","dialogRoot","dialogRootWider","dialog","withAdditionalAction","ModalDialog$1","useIsomorphicEffect","useEffect","useLayoutEffect","runKeyHandler","keyHandlers","useKeyDown","keyHandlersRef","useRef","ModalWrapper","DialogProps","DateInputProps","Enter","Fragment","InlineWrapper","PopoverProps","VariantContext","createContext","Wrapper","getWrapperFromVariant","Provider","InputAdornment","_props$disablePointer","disablePointerEvents","positionEnd","positionStart","Rifm","_React$Component","_del","_handleChange","evt","stateValue","op","del","noOp","local","selectionStart","refuse","before","di","fv","_hKD","code","_hKU","getDerivedStateFromProps","_proto","render","componentWillUnmount","componentDidMount","componentDidUpdate","selectionEnd","daySelected","dayDisabled","Day","removeClass","CSSTransition","appliedClasses","maybeNode","_this$resolveArgument","resolveArguments","appearing","removeClasses","addClass","_this$resolveArgument2","_this$resolveArgument3","getClassNames","classNames","isStringClassNames","baseClassName","activeClassName","doneClassName","phase","_addClass","_this$appliedClasses$","base","_this$props","isYearOnlyView","views","isYearAndMonthViews","DayWrapper","onSelect","dayInCurrentMonth","handleClick","useCallback","onKeyPress","slideTransition","transitionContainer","willChange","slideEnterActive","slideExit","SlideTransition","transKey","slideDirection","_ref$className","transitionClasses","enterActive","exitActive","childFactory","cloneElement","mountOnEnter","unmountOnExit","useStyles$1","switchHeader","iconButton","daysHeader","dayLabel","CalendarHeader","currentMonth","onMonthChange","leftArrowIcon","rightArrowIcon","leftArrowButtonProps","rightArrowButtonProps","disablePrevMonth","disableNextMonth","utils","rtl","KeyDownListener","Calendar","_getPrototypeOf2","loadingQueue","pushToLoadingQueue","popFromLoadingQueue","handleChangeMonth","newMonth","returnVal","validateMinMaxDate","minDate","maxDate","disableFuture","disablePast","shouldDisablePrevMonth","_this$props2","firstEnabledMonth","shouldDisableNextMonth","_this$props3","lastEnabledMonth","shouldDisableDate","handleDaySelect","isFinish","_this$props4","moveToDay","_this$props5","ArrowUp","ArrowDown","ArrowLeft","ArrowRight","renderWeeks","_this$props6","renderDays","_this$props7","renderDay","selectedDate","currentMonthNumber","isDayInCurrentMonth","dayComponent","_this$props8","closestEnabledDate","today","forward","backward","findClosestEnabledDate","_this$state","_this$props9","allowKeyboardControl","loadingIndicator","loadingElement","progressContainer","nextProps","nextDate","lastDate","nextMonth","lastMonth","contextType","WithUtils","ClockType","Calendar$1","ClockType$1","ClockPointer","toAnimateTransform","previousType","getAngleStyle","isInner","angle","HOURS","hasSelected","pointer","animateTransform","thumb","noPoint","ClockPointer$1","getAngleValue","atan","atan2","deg","delta","distance","_getAngleValue","angleStep","_getAngleValue2","Clock","isMoving","setTime","handleMove","buttons","nativeEvent","which","SECONDS","MINUTES","minutesStep","isPointerInner","clock","squareMask","onMouseMove","pin","Clock$1","touchActions","clockNumber","clockNumberSelected","ClockNumber","transformStyle","useMemo","getHourNumbers","currentHours","hourNumbers","endHour","isSelected","hour","getMinutesNumbers","ClockView","onHourChange","onMinutesChange","onSecondsChange","viewProps","currentMeridiem","getMeridiem","updatedTimeWithMeridiem","meridiem","convertToMeridiem","minutesValue","updatedTime","secondsValue","memo","oneOfType","instanceOf","oneOf","datePickerDefaultProps","invalidDateMessage","minDateMessage","maxDateMessage","yearSelected","yearDisabled","Year","Year$1","forwardRef","YearSelection","onYearChange","animateYearScrolling","currentVariant","useContext","selectedYearRef","scrollIntoView","block","behavior","onYearSelect","newDate","yearNumber","useStyles$2","monthSelected","monthDisabled","Month","handleSelection","useStyles$3","MonthSelection","shouldDisableMonth","utilMinDate","utilMaxDate","isBeforeFirstEnabled","isAfterLastEnabled","onMonthSelect","monthNumber","monthText","getOrientation","screen","ownKeys$1","viewsMap","useStyles$4","containerLandscape","pickerView","pickerViewLandscape","Picker","disableToolbar","openTo","unparsedMinDate","unparsedMaxDate","ToolbarComponent","isLandscape","customOrientation","useState","setOrientation","eventHandler","useIsLandscape","_useViews","openView","setOpenView","handleChangeAndOpenNext","nextViewToOpen","useViews","_objectSpread$1","textColor","toolbarTxt","toolbarBtnSelected","ToolbarText","ToolbarButton","typographyClassName","toolbarBtn","ToolbarButton$1","toolbarLandscape","PickerToolbar","PureDateInput","inputValue","inputVariant","validationError","openPicker","_ref$TextFieldCompone","TextFieldComponent","PureDateInputProps","getDisplayDate","invalidLabel","emptyLabel","labelFunc","getComparisonMaxDate","strictCompareDates","getComparisonMinDate","KeyboardDateInput","KeyboardButtonProps","InputAdornmentProps","_ref$maskChar","maskChar","_ref$refuse","keyboardIcon","rifmFormatter","inputMask","numberMaskChar","makeMaskFromFormat","formatter","parsed","maskedDateFormatter","useDateValues","initialFocusedDate","nowRef","useValueToDate","getDefaultFormat","usePickerState","autoOk","_onChange","onError","_useOpenState","setIsOpenState","_useState","_useState2","isOpen","setIsOpen","newIsOpen","useOpenState","_useDateValues","pickerDate","setPickerDate","acceptDate","acceptedDate","wrapperProps","pickerProps","parsedValue","pickerState","useDebugValue","ownKeys$2","_objectSpread$2","makePickerWithState","useOptions","getCustomProps","DefaultToolbarComponent","dateRangeIcon","hideTabs","timeIcon","_props$ToolbarCompone","injectedProps","dateLandscape","DatePickerToolbar","isYearOnly","isYearAndMonth","getFormatByViews","DatePicker","KeyboardDatePicker","_props$format","displayDate","innerInputValue","setInnerInputValue","dateValue","_unused","parseInputString","handleKeyboardChange","_usePickerState","innerInputProps","MuiPickersContext","MuiPickersUtilsProvider","Utils","libInstance","useUtils","checkUtils","localTheme","outerTheme","mergeOuterLocalTheme","hasSymbol","plainObjectConstrurctor","cloneStyle","newStyle","createRule","decl","jss","declCopy","rule","plugins","onCreateRule","by","toCssValue","cssValue","getWhitespaceSymbols","linebreak","space","indentStr","indent","toCss","selector","_options$indent","fallbacks","Infinity","_getWhitespaceSymbols","_prop","_prop2","_value2","allowEmpty","escapeRegex","nativeEscape","CSS","escape","BaseStyleRule","isProcessed","sheet","Renderer","renderer","onChangeValue","isDefined","renderable","attached","StyleRule","_BaseStyleRule","scoped","generateId","selectorText","_proto2","applyTo","json","toJSON","opts","link","setSelector","replaceRule","pluginStyleRule","defaultToStringOptions","atRegExp","ConditionalRule","atMatch","at","query","rules","RuleList","getRule","addRule","onProcessRule","newRule","keyRegExp","pluginConditionalRule","defaultToStringOptions$1","nameRegExp","KeyframesRule","frames","nameMatch","keyRegExp$1","refRegExp","findReferencedKeyframe","keyframes","replaceRef","refKeyframe","pluginKeyframesRule","onProcessStyle","KeyframeRule","pluginKeyframeRule","FontFaceRule","keyRegExp$2","pluginFontFaceRule","ViewportRule","pluginViewportRule","SimpleRule","keysMap","pluginSimpleRule","defaultUpdateOptions","forceUpdateOptions","raw","counter","ruleOptions","_this$options","register","oldRule","oldIndex","nameOrSelector","unregister","data","updateOne","_this$options2","onUpdate","nextValue","_nextValue","_prevValue","StyleSheet","deployed","attach","deploy","detach","queue","insertRule","deleteRule","addRules","added","_this$rules","PluginsRegistry","internal","external","registry","onProcessSheet","processedValue","use","newPlugin","plugin","SheetsRegistry","reset","_temp","sheets","globalThis$1","globalThis","self","Function","ns","moduleId","createGenerateId","ruleCounter","jssId","minify","memoize","cssRule","attributeStyleMap","indexOfImportantFlag","cssValueWithoutImportantFlag","delete","getHead","findPrevNode","insertionPoint","findHigherSheet","parentNode","findHighestSheet","nextSibling","comment","nodeValue","findCommentNode","getNonce","_insertRule","appendRule","cssRules","getValidRuleInsertionIndex","maxIndex","DomRenderer","hasInsertedRules","meta","createStyle","nonce","nextNode","insertionPointElement","insertStyle","insertRules","nativeParent","latestNativeParent","_insertionIndex","refCssRule","ruleStr","insertionIndex","nativeRule","getRules","instanceCounter","Jss","version","setup","createStyleSheet","removeStyleSheet","createJss","hasCSSTOMSupport","getDynamicStyles","to","extracted","multiKeyStore","cache","key1","key2","subCache","Map","pseudoClasses","fnValuesNs","fnRuleNs","fnValues","styleRule","fnRule","atPrefix","GlobalContainerRule","GlobalPrefixedRule","separatorRegExp","addScope","handleNestedGlobalContainerRule","handlePrefixedGlobalRule","parentRegExp","getReplaceRef","replaceParentRefs","nestedProp","parentProp","parentSelectors","nestedSelectors","j","nested","getOptions","prevOptions","nestingLevel","isNested","isNestedConditional","uppercasePattern","msPattern","toHyphenLower","hName","convertCase","converted","hyphenatedProp","px","ms","percent","addCamelCasedVersion","regExp","newObj","units","motion","perspective","gap","iterate","innerProp","_innerProp","camelCasedOptions","js","vendor","browser","isTouch","jsCssMap","Moz","O","Webkit","appearence","noPrefill","supportedProperty","toUpper","pascalize","longhand","textOrientation","writingMode","breakPropsOld","inlineLogicalOld","newProp","unprefixed","prefixed","pascalized","scrollSnap","overscrollBehavior","propMap","order","flex2012","propMap$1","propKeys","prefixCss","flex2009","propertyDetectors","computed","key$1","el$1","cache$1","transitionProperties","transPropsRegExp","prefixTransitionCallback","p1","p2","prefixedValue","supportedValue","cacheKey","prefixStyle","changeProp","supportedProp","changeValue","supportedValue$1","atRule","supportedKeyframes","prop0","prop1","generateClassName","_options$disableGloba","disableGlobal","_options$productionPr","productionPrefix","_options$seed","seed","seedPrefix","getNextCounterId","styleSheet","createGenerateClassName","disableGeneration","sheetsCache","sheetsManager","sheetsRegistry","StylesContext","indexCounter","increment","getStylesCreator","themingEnabled","stylesWithOverrides","getClasses","cacheClasses","lastProp","lastJSS","generate","stylesCreator","sheetManager","refs","staticSheet","dynamicStyles","serverGenerateClassName","dynamicSheet","useSynchronousEffect","currentKey","classNamePrefixOption","_options$defaultTheme","stylesOptions2","shouldUpdate","nextClasses","ThemeContext","getBorder","themeKey","defaultBreakpoints","handleBreakpoints","propValue","styleFromPropValue","themeBreakpoints","_themeBreakpoints","newStyleFunction","displayPrint","cssProperty","displayRaw","justifyItems","justifySelf","gridGap","gridColumnGap","gridRowGap","gridColumn","gridRow","gridAutoFlow","gridAutoColumns","gridAutoRows","gridTemplateColumns","gridTemplateRows","gridTemplateAreas","gridArea","bgcolor","sizeWidth","sizeHeight","properties","directions","aliases","marginX","marginY","paddingX","paddingY","getCssProperties","_prop$split","_prop$split2","dir","spacingKeys","getStyleFromPropValue","cssProperties","transformer","transformed","getValue","merge","getPath","_options$cssProperty","themeMapping","propValueFinal","sx","fontStyle","isPlainObject","encodeURIComponent","chainPropTypes","propType1","propType2","elementAcceptingRef","isRequired","exactProp","fnNameMatchRegex","getFunctionName","getFunctionComponentName","getWrappedName","outerType","innerType","wrapperName","functionName","getDisplayName","ForwardRef","Memo","HTMLElementType","C","F","module","useCallbackRef","toFnRef","mergeRefs","useMounted","isMounted","usePrevious","_excluded","useButtonProps","rel","isTrivialHref","as","asProp","assign","dataAttr","dataProp","currentContext","MISSING_VALUE","idCounter","globalKey","host","Slot","context_1","slots","withValue","thisArg","__proto__","saved","noContext","fnToStr","previousComparisons","equal","check","full","suffix","fromIndex","aTag","previouslyCompared","aKeys","definedKeys","bKeys","keyCount","aIterator","entries","isMap","aKey","aValue","has","Uint8Array","len","byteLength","aCode","nativeCodeSuffix","isDefinedKey","bSet","Set","defaultMakeData","Trie","weakness","makeData","lookupArray","getChildTrie","isObjRef","weak","WeakMap","strong","hasOwn","argType","conversions","sourceUnit","targetUnit","precision","buildFormatLongFn","formats","long","medium","defaultWidth","dateTime","formatDistance","formatRelative","localize","getDefaultOptions","dateLongFormatter","timeLongFormatter","dateTimeFormat","datePattern","timePattern","UTC","getMilliseconds","getUTCISOWeekYear","fourthOfJanuaryOfNextYear","startOfNextYear","fourthOfJanuaryOfThisYear","startOfThisYear","startOfUTCISOWeekYear","fourthOfJanuary","MILLISECONDS_IN_WEEK","firstWeekOfNextYear","firstWeekOfThisYear","startOfUTCWeekYear","firstWeek","protectedDayOfYearTokens","protectedWeekYearTokens","isProtectedDayOfYearToken","isProtectedWeekYearToken","throwProtectedError","dirtyNumber","millisecondsInMinute","millisecondsInHour","millisecondsInSecond","MILLISECONDS_IN_DAY","addLeadingZeros","targetLength","signedYear","dayPeriodEnumValue","numberOfDigits","dayPeriodEnum","lightFormatters","signedWeekYear","weekYear","dayOfYear","timestamp","startOfYearTimestamp","difference","getUTCDayOfYear","dayOfWeek","localDayOfWeek","isoDayOfWeek","_localize","timezoneOffset","_originalDate","getTimezoneOffset","formatTimezoneWithOptionalMinutes","formatTimezone","formatTimezoneShort","z","originalDate","dirtyDelimiter","absOffset","delimiter","dirtyFormatStr","formatStr","formatterOptions","matched","monthIndex","lastDayOfMonth","getISODay","startOfISOWeek","getISOWeekYear","startOfISOWeekYear","getISOWeek","dirtyDateToCompare","dateToCompare","dirtyLeftDate","dirtyRightDate","dateLeftStartOfDay","dateRightStartOfDay","isDate","buildLocalizeFn","dirtyIndex","valuesArray","formattingValues","defaultFormattingWidth","_defaultWidth","_width","argumentCallback","buildMatchFn","matchPattern","matchPatterns","defaultMatchWidth","matchedString","parsePatterns","defaultParseWidth","findIndex","findKey","predicate","buildMatchPatternFn","parsePattern","formatDistanceLocale","lessThanXSeconds","one","xSeconds","halfAMinute","lessThanXMinutes","xMinutes","aboutXHours","xHours","xDays","aboutXWeeks","xWeeks","aboutXMonths","xMonths","aboutXYears","xYears","overXYears","almostXYears","tokenValue","addSuffix","comparison","formatRelativeLocale","lastWeek","yesterday","tomorrow","nextWeek","_baseDate","narrow","abbreviated","wide","am","pm","midnight","noon","morning","afternoon","evening","night","any","rem100","wordMapping","onlyNumeric","parseISO","_options$additionalDi","additionalDigits","dateStrings","splitDateString","parseYearResult","parseYear","parseDate","restDateString","parseTime","timezone","parseTimezone","patterns","dateTimeDelimiter","timeZoneDelimiter","dateRegex","timeRegex","timezoneRegex","timeString","exec","regex","captures","century","isWeekDate","parseDateUnit","_year","validateWeekDate","isoWeekYear","fourthOfJanuaryDay","dayOfISOWeekYear","daysInMonths","validateDate","validateDayOfYearDate","parseTimeUnit","validateTime","timezoneString","_hours","validateTimezone","startOfToday","addMilliseconds","argStr","globalScope","ONE","MAX_DIGITS","Decimal","rounding","toExpNeg","toExpPos","LN10","decimalError","invalidArgument","exponentOutOfRange","mathfloor","mathpow","isDecimal","BASE","MAX_SAFE_INTEGER","MAX_E","carry","xd","yd","Ctor","pr","reverse","unshift","checkInt32","digitsToString","ws","indexOfLastWord","getZeroString","absoluteValue","comparedTo","cmp","xdL","ydL","decimalPlaces","dp","dividedBy","divide","dividedToIntegerBy","idiv","equals","eq","exponent","getBase10Exponent","greaterThan","gt","greaterThanOrEqualTo","gte","isInteger","isint","isNegative","isneg","isPositive","ispos","isZero","lessThan","lt","lessThanOrEqualTo","lte","logarithm","wpr","ln","minus","sub","subtract","modulo","mod","times","naturalExponential","exp","naturalLogarithm","negated","neg","plus","sd","squareRoot","toExponential","mul","rL","shift","toDecimalPlaces","todp","rm","toint","toNumber","toPower","yIsInt","yn","truncate","toPrecision","toSignificantDigits","tosd","valueOf","multiplyInteger","temp","compare","aL","bL","prod","prodL","qd","rem","remL","rem0","xi","xL","yd0","yL","yz","denominator","sum","getLn10","zs","c0","numerator","x2","parseDecimal","charCodeAt","rd","doRound","xdi","xe","xLTy","isExp","ps","ROUND_UP","ROUND_DOWN","ROUND_CEIL","ROUND_FLOOR","ROUND_HALF_UP","ROUND_HALF_DOWN","ROUND_HALF_EVEN","ROUND_HALF_CEIL","ROUND_HALF_FLOOR","baseVal","hasClass","toArray","qsa","replaceClassName","origClass","classToRemove","Events","EE","once","addListener","emitter","_events","_eventsCount","clearEvent","EventEmitter","eventNames","events","names","listeners","handlers","ee","listenerCount","a1","a2","a3","a4","a5","removeListener","on","removeAllListeners","off","HAS_WEAKSET_SUPPORT","WeakSet","sameValueZeroEqual","isPromiseLike","isReactElement","getNewCacheFallback","getNewCache","createCircularEqualCreator","comparator","_comparator","isCacheableA","isCacheableB","hasA","hasB","areArraysEqual","areMapsEqual","isValueEqual","matchedIndices_1","hasMatch_1","matchIndex_1","bValue","bKey","OWNER","areObjectsEqual","keysA","reactElementA","reactElementB","areRegExpsEqual","global","ignoreCase","unicode","lastIndex","areSetsEqual","matchedIndices_2","hasMatch_2","matchIndex_2","HAS_MAP_SUPPORT","HAS_SET_SUPPORT","createComparator","createIsEqual","aShape","bShape","deepEqual","shallowEqual","circularDeepEqual","circularShallowEqual","createCustomEqual","factory","getLocation","lineRegexp","line","column","printLocation","printSourceLocation","sourceLocation","firstLineColumnOffset","locationOffset","whitespace","lineIndex","lineOffset","lineNum","columnOffset","columnNum","locationStr","lines","locationLine","subLineIndex","subLineColumnNum","subLines","printPrefixedLines","subLine","existingLines","padLen","_possibleConstructorReturn","_assertThisInitialized","ReferenceError","_wrapNativeSuper","Class","_cache","_construct","_getPrototypeOf","_setPrototypeOf","Parent","_isNativeReflectConstruct","Reflect","construct","sham","Proxy","setPrototypeOf","getPrototypeOf","GraphQLError","_Error","subClass","superClass","_inherits","Derived","hasNativeReflectConstruct","_super","Super","NewTarget","nodes","originalError","extensions","_nodeLocations","_nodeLocations2","_nodeLocations3","undefinedIfEmpty","nodeLocations","_i2","_this$nodes","loc","locations","pos","originalExtensions","captureStackTrace","_i4","_error$nodes2","_i6","_error$locations2","printError","syntaxError","description","Kind","freeze","NAME","OPERATION_DEFINITION","VARIABLE_DEFINITION","SELECTION_SET","FIELD","ARGUMENT","FRAGMENT_SPREAD","INLINE_FRAGMENT","FRAGMENT_DEFINITION","VARIABLE","INT","FLOAT","STRING","BOOLEAN","NULL","ENUM","LIST","OBJECT","OBJECT_FIELD","DIRECTIVE","NAMED_TYPE","LIST_TYPE","NON_NULL_TYPE","SCHEMA_DEFINITION","OPERATION_TYPE_DEFINITION","SCALAR_TYPE_DEFINITION","OBJECT_TYPE_DEFINITION","FIELD_DEFINITION","INPUT_VALUE_DEFINITION","INTERFACE_TYPE_DEFINITION","UNION_TYPE_DEFINITION","ENUM_TYPE_DEFINITION","ENUM_VALUE_DEFINITION","INPUT_OBJECT_TYPE_DEFINITION","DIRECTIVE_DEFINITION","SCHEMA_EXTENSION","SCALAR_TYPE_EXTENSION","OBJECT_TYPE_EXTENSION","INTERFACE_TYPE_EXTENSION","UNION_TYPE_EXTENSION","ENUM_TYPE_EXTENSION","INPUT_OBJECT_TYPE_EXTENSION","SOF","EOF","BANG","DOLLAR","AMP","PAREN_L","PAREN_R","SPREAD","COLON","EQUALS","AT","BRACKET_L","BRACKET_R","BRACE_L","PIPE","BRACE_R","BLOCK_STRING","COMMENT","DirectiveLocation","QUERY","MUTATION","SUBSCRIPTION","SCHEMA","SCALAR","ARGUMENT_DEFINITION","INTERFACE","UNION","ENUM_VALUE","INPUT_OBJECT","INPUT_FIELD_DEFINITION","Lexer","startOfFileToken","lastToken","lineStart","advance","lookahead","kind","_token$next","readToken","printCharCode","fromCharCode","lexer","prev","bodyLength","_line","_col","readComment","readBlockString","readString","readNumber","readName","unexpectedCharacterMessage","col","firstCode","isFloat","readDigits","isNameStart","chunkStart","charCode","uniCharCode","invalidSequence","rawValue","char2hex","sourceObj","_lexer","parseName","expectToken","parseDocument","many","parseDefinition","peek","parseOperationDefinition","parseFragmentDefinition","parseTypeSystemDefinition","parseTypeSystemExtension","peekDescription","unexpected","operation","variableDefinitions","directives","selectionSet","parseSelectionSet","parseOperationType","parseVariableDefinitions","parseDirectives","operationToken","optionalMany","parseVariableDefinition","variable","parseVariable","parseTypeReference","expectOptionalToken","parseValueLiteral","selections","parseSelection","parseFragment","parseField","alias","nameOrAlias","parseArguments","isConst","parseConstArgument","parseArgument","hasTypeCondition","expectOptionalKeyword","parseFragmentName","typeCondition","parseNamedType","_this$_options","expectKeyword","experimentalFragmentVariables","parseList","parseObject","parseStringLiteral","_this2","parseObjectField","parseDirective","keywordToken","parseSchemaDefinition","parseScalarTypeDefinition","parseObjectTypeDefinition","parseInterfaceTypeDefinition","parseUnionTypeDefinition","parseEnumTypeDefinition","parseInputObjectTypeDefinition","parseDirectiveDefinition","parseDescription","operationTypes","parseOperationTypeDefinition","interfaces","parseImplementsInterfaces","parseFieldsDefinition","_this$_options2","allowLegacySDLImplementsInterfaces","delimitedMany","_this$_options3","allowLegacySDLEmptyFields","parseFieldDefinition","parseArgumentDefs","parseInputValueDef","parseUnionMemberTypes","parseEnumValuesDefinition","parseEnumValueDefinition","parseInputFieldsDefinition","parseSchemaExtension","parseScalarTypeExtension","parseObjectTypeExtension","parseInterfaceTypeExtension","parseUnionTypeExtension","parseEnumTypeExtension","parseInputObjectTypeExtension","repeatable","parseDirectiveLocations","parseDirectiveLocation","startToken","_this$_options4","noLocation","getTokenKindDesc","getTokenDesc","atToken","openKind","parseFn","closeKind","delimiterKind","isPunctuatorTokenKind","docCache","fragmentSourceMap","printFragmentWarnings","normalize","processFragments","ast","seenKeys","fragmentDefinition","fragmentName","sourceKey","sourceKeySet","allowLegacyFragmentVariables","workSet","endToken","stripLoc","gql","literals","gql_1","extras","resetCaches","disableFragmentWarnings","enableExperimentalFragmentVariables","disableExperimentalFragmentVariables","isAbsolute","pathname","spliceOne","hasTrailingSlash","toParts","fromParts","isToAbs","isFromAbs","mustEndAbs","last","part","valueEqual","addLeadingSlash","stripLeadingSlash","stripBasename","hasBasename","stripTrailingSlash","createPath","hash","createLocation","currentLocation","hashIndex","searchIndex","parsePath","decodeURI","URIError","locationsAreEqual","createTransitionManager","prompt","setPrompt","nextPrompt","confirmTransitionTo","getUserConfirmation","appendListener","isActive","notifyListeners","canUseDOM","getConfirmation","confirm","PopStateEvent","HashChangeEvent","getHistoryState","history","createBrowserHistory","ua","globalHistory","canUseHistory","needsHashChangeListener","_props","_props$forceRefresh","forceRefresh","_props$getUserConfirm","_props$keyLength","keyLength","basename","getDOMLocation","historyState","_window$location","createKey","transitionManager","nextState","handlePopState","isExtraneousPopstateEvent","handlePop","handleHashChange","forceNextPop","ok","fromLocation","toLocation","toIndex","allKeys","go","revertPop","initialLocation","createHref","checkDOMListeners","isBlocked","pushState","prevIndex","nextKeys","replaceState","goBack","goForward","unblock","listen","unlisten","HashChangeEvent$1","HashPathCoders","hashbang","encodePath","decodePath","noslash","slash","stripHash","getHashPath","replaceHashPath","createHashHistory","_props$hashType","hashType","_HashPathCoders$hashT","ignorePath","encodedPath","prevLocation","allPaths","lastIndexOf","baseTag","pushHashPath","nextPaths","lowerBound","upperBound","createMemoryHistory","_props$initialEntries","initialEntries","_props$initialIndex","initialIndex","entry","nextIndex","nextEntries","canGo","reactIs","REACT_STATICS","childContextTypes","contextTypes","getDefaultProps","getDerivedStateFromError","KNOWN_STATICS","caller","callee","arity","MEMO_STATICS","TYPE_STATICS","getStatics","isMemo","getOwnPropertyNames","objectPrototype","hoistNonReactStatics","targetComponent","sourceComponent","inheritedComponent","targetStatics","sourceStatics","A","AsyncMode","ConcurrentMode","ContextConsumer","ContextProvider","Element","Lazy","Portal","Profiler","StrictMode","Suspense","isAsyncMode","isConcurrentMode","isContextConsumer","isContextProvider","isElement","isForwardRef","isFragment","isLazy","isPortal","isProfiler","isStrictMode","isSuspense","isValidElementType","typeOf","condition","argIndex","framesToPop","DataView","getNative","hashClear","hashDelete","hashGet","hashHas","hashSet","Hash","listCacheClear","listCacheDelete","listCacheGet","listCacheHas","listCacheSet","ListCache","mapCacheClear","mapCacheDelete","mapCacheGet","mapCacheHas","mapCacheSet","MapCache","Promise","setCacheAdd","setCacheHas","SetCache","__data__","stackClear","stackDelete","stackGet","stackHas","stackSet","Stack","resIndex","baseIndexOf","baseTimes","isArguments","isBuffer","isIndex","isTypedArray","inherited","isArr","isArg","isBuff","isType","skipIndexes","iteratee","baseForOwn","baseEach","createBaseEach","collection","isSymbol","fromRight","arrayPush","isFlattenable","baseFlatten","depth","isStrict","baseFor","createBaseFor","castPath","toKey","keysFunc","symbolsFunc","getRawTag","objectToString","symToStringTag","toStringTag","baseFindIndex","baseIsNaN","strictIndexOf","baseGetTag","isObjectLike","baseIsEqualDeep","baseIsEqual","bitmask","customizer","equalArrays","equalByTag","equalObjects","getTag","argsTag","arrayTag","objectTag","equalFunc","objIsArr","othIsArr","objTag","othTag","objIsObj","othIsObj","isSameTag","objIsWrapped","othIsWrapped","objUnwrapped","othUnwrapped","matchData","noCustomizer","objValue","srcValue","COMPARE_PARTIAL_FLAG","isFunction","isMasked","isObject","toSource","reIsHostCtor","funcProto","objectProto","funcToString","reIsNative","isLength","typedArrayTags","baseMatches","baseMatchesProperty","identity","isPrototype","nativeKeys","isArrayLike","baseIsMatch","getMatchData","matchesStrictComparable","hasIn","isKey","isStrictComparable","arrayMap","baseGet","baseIteratee","baseMap","baseSortBy","baseUnary","compareMultiple","iteratees","orders","nativeCeil","nativeMax","overRest","setToString","baseSetToString","comparer","symbolProto","symbolToString","baseToString","trimmedEndIndex","reTrimStart","arrayIncludesWith","cacheHas","createSet","setToArray","isCommon","seen","seenIndex","stringToPath","baseSlice","valIsDefined","valIsNull","valIsReflexive","valIsSymbol","othIsDefined","othIsNull","othIsReflexive","othIsSymbol","compareAscending","objCriteria","othCriteria","ordersLength","coreJsData","eachFunc","iterable","castSlice","hasUnicode","stringToArray","methodName","strSymbols","trailing","findIndexFunc","baseRange","isIterateeCall","toFinite","arraySome","isPartial","arrLength","othLength","arrStacked","othStacked","arrValue","othValue","compared","othIndex","mapToArray","symbolValueOf","byteOffset","buffer","stacked","getAllKeys","objProps","objLength","objStacked","skipCtor","objCtor","othCtor","freeGlobal","baseGetAllKeys","getSymbols","isKeyable","baseIsNative","nativeObjectToString","isOwn","unmasked","arrayFilter","stubArray","nativeGetSymbols","mapTag","promiseTag","setTag","weakMapTag","dataViewTag","dataViewCtorString","mapCtorString","promiseCtorString","setCtorString","weakMapCtorString","ArrayBuffer","ctorString","hasFunc","reHasUnicode","nativeCreate","spreadableSymbol","isConcatSpreadable","reIsUint","reIsDeepProp","reIsPlainProp","uid","maskSrcKey","IE_PROTO","assocIndexOf","getMapData","overArg","freeExports","freeModule","freeProcess","nodeUtil","require","binding","otherArgs","freeSelf","shortOut","nativeNow","lastCalled","stamp","pairs","LARGE_ARRAY_SIZE","asciiToArray","unicodeToArray","memoizeCapped","rePropName","reEscapeChar","quote","subString","reWhitespace","rsAstral","rsCombo","rsFitz","rsNonAstral","rsRegional","rsSurrPair","reOptMod","rsOptVar","rsSeq","rsSymbol","reUnicode","nativeMin","lastArgs","lastThis","maxWait","timerId","lastCallTime","lastInvokeTime","leading","maxing","invokeFunc","leadingEdge","timerExpired","shouldInvoke","timeSinceLastCall","trailingEdge","timeWaiting","remainingWait","isInvoking","cancel","flush","arrayEvery","baseEvery","guard","createFind","baseHasIn","hasPath","baseIsArguments","stubFalse","Buffer","isNumber","baseIsTypedArray","nodeIsTypedArray","arrayLikeKeys","baseKeys","baseAssignValue","baseExtremum","baseGt","memoized","Cache","baseLt","baseProperty","basePropertyDeep","range","createRange","baseSome","baseOrderBy","baseRest","sortBy","INFINITY","baseTrim","reIsBadHex","reIsBinary","reIsOctal","freeParseInt","isBinary","baseUniq","upperFirst","createCaseFirst","propIsEnumerable","toObject","test1","test2","test3","letter","shouldUseNative","defaultDispose","dispose","newest","oldest","getNode","older","newer","clean","parentEntrySlot","maybeUnsubscribe","entryOrDep","unsubscribe","emptySetPool","assert","optionalMessage","valueGet","Entry","parents","childValues","dirtyChildren","dirty","recomputing","deps","mightBeDirty","rememberParent","recompute","forgetChildren","recomputeNewValue","subscribe","setDirty","maybeSubscribe","reportClean","setClean","reallyRecompute","reportDirty","eachParent","forgetChild","forget","dependOn","dep","forgetDeps","reportDirtyChild","reportCleanChild","parentCount","parentWasClean","removeDirtyChild","dc","EntryMethods","depsByKey","depend","dep_1","entryMethodName","m_1","makeDefaultMakeCacheKeyFunction","keyTrie","caches","originalFunction","keyArgs","makeCacheKey","optimistic","dirtyKey","peekKey","forgetKey","getKey","isarray","pathToRegexp","compile","tokensToFunction","tokensToRegExp","PATH_REGEXP","res","defaultDelimiter","escaped","capture","group","modifier","partial","repeat","optional","escapeGroup","escapeString","encodeURIComponentPretty","encodeURI","encode","pretty","segment","attachKeys","sensitive","strict","route","endsWithDelimiter","groups","regexpToRegexp","arrayToRegexp","stringToRegexp","validators","allPropTypes","_createChainableTypeChecker2","_createChainableTypeChecker","__esModule","checkType","componentNameSafe","propFullNameSafe","chainedCheckType","ReactPropTypesSecret","emptyFunction","emptyFunctionWithReset","resetWarningCache","secret","getShim","ReactPropTypes","bigint","bool","arrayOf","elementType","objectOf","exact","checkPropTypes","PropTypes","bsPrefix","CardImg","CardHeader","contextValue","cardHeaderBsPrefix","CardHeaderContext","DivStyledAsH5","divWithClassName","DivStyledAsH6","CardBody","createWithBsPrefix","CardTitle","CardSubtitle","CardLink","CardText","CardFooter","CardImgOverlay","bg","Img","Title","Subtitle","Body","Link","Text","Header","Footer","ImgOverlay","Col","colProps","spans","minBreakpoint","brkPoint","span","infix","useCol","fluid","Feedback","FormCheckInput","isInvalid","controlId","FormCheckLabel","FormCheck","bsSwitchPrefix","inline","feedbackTooltip","feedback","feedbackType","innerFormContext","hasLabel","hasChildOfType","Label","htmlSize","plaintext","FormGroup","visuallyHidden","columnClass","FormRange","FormSelect","FormText","muted","Switch","FloatingLabel","validated","Form","Group","Control","Floating","FormFloating","Check","Range","optionsSupported","onceSupported","eventName","wrappedHandler","__once","onceHandler","recalc","useWillUnmount","valueRef","onUnmount","psuedoElement","rUpper","hyphenateStyleName","hyphenate","supportedTransforms","transforms","isTransform","cssText","emulateTransitionEnd","called","handle","bubbles","createEvent","initEvent","dispatchEvent","triggerEvent","transitionEnd","mult","removeEmulate","compareDocumentPosition","OPEN_DATA_ATTRIBUTE","handleContainerOverflow","isRTL","getScrollbarWidth","getBodyScrollbarWidth","getElement","setModalAttributes","_modal","removeModalAttributes","setContainerStyle","containerState","scrollBarWidth","removeContainerStyle","modalIdx","Context","useWindow","resolveContainerRef","useModalManager","provided","modalManager","getManager","backdrop","setDialogRef","setBackdropRef","keyboard","backdropTransition","enforceFocus","restoreFocus","restoreFocusOptions","renderDialog","renderBackdrop","providedManager","containerRef","onShow","onHide","onResolved","resolvedRef","earlyRef","nextRef","useWaitForDOMRef","prevShow","lastFocusRef","useImperativeHandle","handleShow","removeKeydownListenerRef","handleDocumentKeyDown","removeFocusListenerRef","handleEnforceFocus","currentActiveElement","handleHide","_lastFocusRef$current","handleBackdropClick","handleHidden","dialogProps","backdropElement","BackdropTransition","Manager","Selector","BootstrapModalManager","adjustAndStore","adjust","actual","dataset","marginProp","sharedManager","transitionEndListener","childRef","mergedRef","useMergedRefs","attachRef","componentOrElement","param","handleAddEndListener","status","innerProps","fadeStyles","triggerBrowserReflow","contentClassName","centered","fullscreen","scrollable","dialogClass","fullScreenClass","CloseButton","AbstractModalHeader","closeLabel","closeVariant","closeButton","ModalHeader","DivStyledAsH4","dialogAs","DialogTransition","dialogClassName","backdropClassName","propsManager","modalStyle","setStyle","animateStaticModal","setAnimateStaticModal","waitingForMouseUpRef","ignoreBackdropClickRef","removeStaticModalAnimationRef","setModalRef","modalContext","getModalManager","getSharedManager","updateDialogStyle","containerIsOverflowing","modalIsOverflowing","handleWindowResize","handleDialogMouseDown","handleStaticModalAnimation","handleStaticBackdropClick","backdropProps","baseModalStyle","ModalBody","ModalTitle","ModalFooter","TRANSITION_DURATION","BACKDROP_TRANSITION_DURATION","defaultKey","_toPropertyKey","prim","toPrimitive","_toPrimitive","useUncontrolled","fieldName","propsValue","handlerName","_useUncontrolledProp","wasPropRef","isProp","wasProp","useUncontrolledProp","NavContext","makeEventKey","eventKey","useNavItem","parentOnSelect","navContext","tabContext","contextControllerId","getControllerId","contextControlledId","getControlledId","activeKey","isPropagationStopped","NavItem","EVENT_KEY_ATTR","Nav","forceUpdate","useReducer","needsRefocusRef","listNode","getNextActiveTab","currentListNode","activeChild","handleSelect","nextActiveChild","Item","isReactNative","product","Anchor","NavLink","navItemProps","uncontrolledProps","initialBsPrefix","navbar","navbarScroll","navbarBsPrefix","isNavbar","navbarContext","NavbarContext","cardHeaderContext","Row","decoratedBsPrefix","sizePrefix","cols","DEFAULT_BREAKPOINTS","prefixes","Consumer","useBootstrapPrefix","defaultPrefix","useBootstrapBreakpoints","useBootstrapMinBreakpoint","useIsRTL","rHyphen","pascalCase","_","BsComponent","Tag","resolvedPrefix","aa","ba","ca","da","ea","fa","ha","ia","ja","ka","acceptsBooleans","attributeNamespace","mustUseProperty","propertyName","sanitizeURL","removeEmptyString","oa","pa","qa","ma","na","la","setAttributeNS","xlinkHref","ra","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","sa","ta","wa","xa","ya","za","Aa","Ba","Ca","Da","Ea","Fa","Ga","Ha","Ia","Ja","Ma","Ka","La","Na","Oa","Pa","prepareStackTrace","Qa","_render","Ra","_context","_payload","_init","Sa","Ta","Va","_valueTracker","stopTracking","Ua","Wa","Xa","Ya","_wrapperState","initialChecked","Za","$a","ab","bb","eb","Children","db","fb","defaultSelected","gb","hb","ib","jb","kb","lb","mb","nb","ob","namespaceURI","MSApp","execUnsafeLocalFunction","pb","qb","animationIterationCount","borderImageOutset","borderImageSlice","borderImageWidth","boxFlex","boxFlexGroup","boxOrdinalGroup","columnCount","columns","flexPositive","flexNegative","flexOrder","gridRowEnd","gridRowSpan","gridRowStart","gridColumnEnd","gridColumnSpan","gridColumnStart","lineClamp","orphans","tabSize","widows","zoom","fillOpacity","floodOpacity","stopOpacity","strokeMiterlimit","strokeOpacity","rb","sb","tb","ub","menuitem","area","br","embed","hr","keygen","track","wbr","vb","wb","is","xb","srcElement","correspondingUseElement","yb","zb","Ab","Bb","Cb","stateNode","Db","Eb","Fb","Gb","Hb","Ib","Jb","Kb","Lb","Mb","Ob","Pb","Qb","Rb","Sb","Tb","Ub","Vb","Wb","Xb","Zb","alternate","return","$b","memoizedState","dehydrated","ac","cc","sibling","bc","ec","fc","gc","hc","ic","jc","kc","lc","mc","nc","oc","pc","qc","blockedOn","domEventName","eventSystemFlags","targetContainers","sc","pointerId","tc","vc","wc","lanePriority","unstable_runWithPriority","hydrate","xc","yc","zc","Ac","Bc","unstable_scheduleCallback","unstable_NormalPriority","Cc","Dc","Ec","animationend","animationiteration","animationstart","transitionend","Fc","Gc","Hc","Ic","Jc","Kc","Lc","Mc","Nc","Oc","Pc","Qc","unstable_now","Rc","Uc","pendingLanes","expiredLanes","suspendedLanes","pingedLanes","Vc","entangledLanes","entanglements","Wc","Xc","Yc","Zc","$c","eventTimes","clz32","bd","cd","LN2","dd","unstable_UserBlockingPriority","ed","fd","gd","hd","uc","jd","kd","ld","nd","od","pd","_reactName","_targetInst","isDefaultPrevented","returnValue","cancelBubble","isPersistent","wd","eventPhase","timeStamp","isTrusted","td","ud","view","detail","vd","Ad","screenX","screenY","pageY","getModifierState","zd","relatedTarget","fromElement","toElement","movementX","movementY","Bd","Dd","dataTransfer","Fd","Hd","elapsedTime","pseudoElement","Id","clipboardData","Jd","Ld","Md","Esc","Spacebar","Left","Up","Right","Down","Del","Win","Apps","Scroll","MozPrintableKey","Nd","Od","Alt","Meta","Shift","Pd","Qd","Rd","Td","pressure","tangentialPressure","tiltX","tiltY","twist","pointerType","isPrimary","Vd","targetTouches","Xd","Yd","deltaX","wheelDeltaX","deltaY","wheelDeltaY","wheelDelta","deltaZ","deltaMode","Zd","$d","ae","be","documentMode","ce","de","fe","ge","he","ie","le","me","ne","oe","pe","qe","se","te","ue","ve","we","ye","ze","oninput","Ae","detachEvent","Be","Ce","attachEvent","De","Ee","Fe","He","Ie","Je","Ke","Le","Me","Ne","HTMLIFrameElement","contentWindow","Oe","contentEditable","Pe","Qe","Re","Se","Te","Ue","anchorNode","focusNode","focusOffset","Ve","We","Xe","Ye","Ze","Yb","$e","af","bf","cf","df","Nb","ef","ff","parentWindow","gf","hf","J","je","char","ke","jf","kf","lf","mf","nf","of","pf","qf","rf","sf","previousSibling","tf","vf","wf","xf","yf","zf","Af","Bf","Cf","N","Df","Ef","__reactInternalMemoizedUnmaskedChildContext","__reactInternalMemoizedMaskedChildContext","Ff","Gf","Hf","If","getChildContext","Jf","__reactInternalMemoizedMergedChildContext","Kf","Lf","Mf","Nf","Of","Pf","unstable_cancelCallback","Qf","unstable_shouldYield","Rf","unstable_requestPaint","Sf","Tf","unstable_getCurrentPriorityLevel","Uf","unstable_ImmediatePriority","Vf","Wf","Xf","unstable_LowPriority","Yf","unstable_IdlePriority","Zf","$f","ag","cg","dg","eg","fg","gg","hg","ig","jg","kg","ReactCurrentBatchConfig","mg","ng","og","pg","qg","rg","_currentValue","sg","childLanes","tg","dependencies","firstContext","lanes","ug","vg","observedBits","responders","wg","xg","updateQueue","baseState","firstBaseUpdate","lastBaseUpdate","shared","pending","effects","yg","zg","eventTime","lane","payload","Ag","Bg","Cg","Dg","Eg","Fg","Gg","Kg","_reactInternals","enqueueSetState","Hg","Ig","Jg","enqueueReplaceState","enqueueForceUpdate","Lg","shouldComponentUpdate","isPureReactComponent","Mg","updater","Ng","componentWillReceiveProps","UNSAFE_componentWillReceiveProps","Og","getSnapshotBeforeUpdate","UNSAFE_componentWillMount","componentWillMount","Pg","Qg","_owner","_stringRef","Rg","Sg","lastEffect","nextEffect","firstEffect","Tg","Ug","Vg","implementation","Wg","Xg","Yg","Zg","$g","ah","bh","ch","dh","eh","fh","gh","hh","ih","memoizedProps","revealOrder","jh","kh","lh","mh","nh","oh","pendingProps","ph","qh","rh","sh","th","uh","_workInProgressVersionPrimary","vh","ReactCurrentDispatcher","wh","xh","yh","zh","Ah","Bh","Ch","Dh","Eh","Fh","Gh","Hh","baseQueue","Ih","Jh","Kh","lastRenderedReducer","eagerReducer","eagerState","lastRenderedState","dispatch","Lh","Mh","_getVersion","_source","mutableReadLanes","Nh","U","getSnapshot","setSnapshot","Oh","Ph","Qh","Rh","destroy","Sh","Th","Uh","Vh","Wh","Xh","Yh","Zh","$h","ai","bi","ci","readContext","useDeferredValue","useTransition","useMutableSource","useOpaqueIdentifier","unstable_isNewReconciler","uf","ei","ReactCurrentOwner","fi","gi","hi","ii","ji","ki","li","mi","baseLanes","ni","oi","pi","UNSAFE_componentWillUpdate","componentWillUpdate","qi","ri","pendingContext","Bi","Di","Ei","si","retryLane","ti","unstable_avoidThisFallback","ui","unstable_expectedLoadTime","vi","wi","yi","zi","isBackwards","rendering","renderingStartTime","tail","tailMode","Ai","Fi","Gi","wasMultiple","onclick","createElementNS","createTextNode","V","Hi","Ii","W","Ji","Ki","Li","Mi","Ni","Oi","Pi","Qi","Ri","Si","componentDidCatch","Ti","componentStack","Ui","Vi","Wi","Xi","__reactInternalSnapshotBeforeUpdate","Yi","Zi","$i","aj","bj","onCommitFiberUnmount","cj","dj","ej","fj","gj","hj","_reactRootContainer","ij","jj","kj","lj","mj","nj","oj","pj","qj","rj","sj","tj","uj","vj","wj","ck","Z","xj","yj","zj","Aj","Bj","Cj","Dj","Ej","Fj","Gj","Hj","Ij","Jj","Sc","Kj","Lj","Mj","callbackNode","expirationTimes","callbackPriority","Tc","Nj","Oj","Pj","Qj","Rj","Sj","Tj","finishedWork","finishedLanes","Uj","timeoutHandle","Wj","Xj","pingCache","Yj","Zj","va","ak","bk","dk","rangeCount","focusedElem","selectionRange","ek","extend","setStart","removeAllRanges","addRange","setEnd","scrollLeft","onCommitFiberRoot","fk","gk","ik","isReactComponent","pendingChildren","jk","mutableSourceEagerHydrationData","kk","lk","mk","nk","qk","hydrationOptions","mutableSources","_internalRoot","rk","tk","sk","uk","hk","_calculateChangedBits","unstable_observedBits","unmount","form","Vj","vk","wk","findFiberByHostInstance","bundleType","rendererPackageName","xk","rendererConfig","overrideHookState","overrideHookStateDeletePath","overrideHookStateRenamePath","overrideProps","overridePropsDeletePath","overridePropsRenamePath","setSuspenseHandler","scheduleUpdate","currentDispatcherRef","findHostInstanceByFiber","findHostInstancesForRefresh","scheduleRefresh","scheduleRoot","setRefreshHandler","getCurrentFiber","__REACT_DEVTOOLS_GLOBAL_HOOK__","yk","isDisabled","supportsFiber","inject","createPortal","findDOMNode","flushSync","unmountComponentAtNode","unstable_batchedUpdates","unstable_createPortal","unstable_renderSubtreeIntoContainer","checkDCE","hasElementType","hasMap","hasSet","hasArrayBuffer","isView","it","_class","ATTRIBUTE_NAMES","TAG_NAMES","BODY","HEAD","HTML","LINK","META","NOSCRIPT","SCRIPT","STYLE","TITLE","TAG_PROPERTIES","REACT_TAG_MAP","accesskey","charset","contenteditable","contextmenu","itemprop","tabindex","HELMET_PROPS","HTML_TAG_MAP","SELF_CLOSING_TAGS","HELMET_ATTRIBUTE","classCallCheck","createClass","_extends","objectWithoutProperties","possibleConstructorReturn","encodeSpecialCharacters","getTitleFromPropsList","propsList","innermostTitle","getInnermostProperty","innermostTemplate","innermostDefaultTitle","getOnChangeClientState","getAttributesFromPropsList","tagType","tagAttrs","getBaseTagFromPropsList","primaryAttributes","innermostBaseTag","lowerCaseAttributeKey","getTagsFromPropsList","approvedSeenTags","approvedTags","instanceTags","instanceSeenTags","primaryAttributeKey","attributeKey","tagUnion","rafPolyfill","currentTime","cafPolyfill","requestAnimationFrame","webkitRequestAnimationFrame","mozRequestAnimationFrame","cancelAnimationFrame","webkitCancelAnimationFrame","mozCancelAnimationFrame","msg","_helmetCallback","commitTagChanges","newState","bodyAttributes","htmlAttributes","linkTags","metaTags","noscriptTags","onChangeClientState","scriptTags","styleTags","titleAttributes","updateAttributes","updateTitle","tagUpdates","updateTags","addedTags","removedTags","_tagUpdates$tagType","newTags","oldTags","flattenArray","possibleArray","elementTag","getElementsByTagName","helmetAttributeString","helmetAttributes","attributesToRemove","attributeKeys","attribute","indexToSave","tags","headElement","tagNodes","indexToDelete","newElement","existingTag","isEqualNode","generateElementAttributesAsString","convertElementAttributestoReactProps","initProps","getMethodsForTag","toComponent","_initProps","attributeString","flattenedTitle","generateTitleAsString","_mappedTag","mappedTag","mappedAttribute","generateTagsAsReactComponent","attributeHtml","tagContent","isSelfClosing","generateTagsAsString","mapStateOnServer","_ref$title","noscript","script","HelmetSideEffects","HelmetExport","HelmetWrapper","inherits","mapNestedChildrenToProps","nestedChildren","flattenArrayTypeChildren","_babelHelpers$extends","arrayTypeChildren","mapObjectTypeChildren","_babelHelpers$extends2","_babelHelpers$extends3","newProps","mapArrayTypeChildrenToProps","newFlattenedProps","arrayChildName","_babelHelpers$extends4","warnOnInvalidChildren","mapChildrenToProps","_child$props","initAttributes","convertReactPropstoHtmlAttributes","defaultTitle","titleTemplate","rewind","mappedState","renderStatic","matchHtmlEntity","htmlEntities","unescapeHtmlEntity","i18nInstance","bindI18n","bindI18nStore","transEmptyNodeValue","transSupportBasicHtmlNodes","transWrapTextNodes","transKeepBasicHtmlNodesFor","useSuspense","unescape","I18nContext","getDefaults","ReportNamespaces","usedNamespaces","namespaces","getI18n","initReactI18next","init","setDefaults","react","setI18n","alreadyWarned","warnOnce","loadNamespaces","i18n","isInitialized","initialized","oldI18nextHasLoadedNamespace","lng","languages","fallbackLng","lastLng","loadNotPending","loadState","services","backendConnector","backend","isLanguageChangingTo","hasResourceBundle","resources","partialBundledLanguages","hasLoadedNamespace","isNewerI18next","ignoreJSONStructure","precheck","ignore","useTranslation","i18nFromProps","i18nFromContext","defaultNSFromContext","defaultNS","reportNamespaces","notReadyT","retNotReady","ready","i18nOptions","keyPrefix","addUsedNamespaces","initializedStoreOnce","getT","getFixedT","nsMode","setT","joinedNS","previousJoinedNS","boundReset","store","isInitial","ret","getModuleId","prevProps","__reactInternalSnapshotFlag","__reactInternalSnapshot","polyfill","foundWillMountName","foundWillReceivePropsName","foundWillUpdateName","newApiName","maybeSnapshot","snapshot","__suppressDeprecationWarning","BrowserRouter","resolveToLocation","normalizeToLocation","forwardRefShim","LinkAnchor","navigate","_onClick","ex","isModifiedEvent","_ref2$component","isDuplicateNavigation","forwardRefShim$1","forwardRef$1","_ref$ariaCurrent","ariaCurrent","_ref$activeClassName","activeStyle","isActiveProp","locationProp","styleProp","escapedPath","classnames","joinClassnames","MAX_SIGNED_31_BIT_INT","commonjsGlobal","createEventEmitter","changedBits","calculateChangedBits","_Provider$childContex","_Consumer$contextType","contextProp","getUniqueId","_Component","oldValue","objectIs","_Component2","createNamedContext","historyContext","Router","_isMounted","_pendingLocation","staticContext","computeRootMatch","isExact","Lifecycle","onMount","cacheCount","generatePath","generator","compilePath","Redirect","computedMatch","_ref$push","method","cacheCount$1","matchPath","_options$exact","_options$strict","_options$sensitive","_compilePath","pathCache","regexp","compilePath$1","Route","context$1","isEmptyChildren","createURL","staticHandler","useHistory","useRouteMatch","React__default","reducePropsToState","handleStateChangeOnClient","WrappedComponent","mountedInstances","emitChange","SideEffect","_PureComponent","recordedState","PureComponent","setRafTimeout","_toArray","_iterableToArray","minLen","_arrayLikeToArray","_unsupportedIterableToArray","createAnimateManager","handleChange","shouldStop","_style","_styles","curr","restStyles","PREFIX_LIST","IN_LINE_PREFIX_LIST","IN_COMPATIBLE_PROPERTY","mapObject","translateStyle","isTransition","camelName","styleVal","generatePrefixStyle","getTransitionVal","_toConsumableArray","_arrayWithoutHoles","_nonIterableSpread","ACCURACY","cubicBezierFactor","c1","c2","multyTime","pre","cubicBezier","derivativeCubicBezier","newParams","configBezier","x1","y1","y2","_easing$1$split$0$spl","_easing$1$split$0$spl2","num","curveX","curveY","derCurveX","rangeValue","bezier","_t","evalT","derVal","isStepper","configSpring","_config$stiff","stiff","_config$damping","damping","_config$dt","dt","stepper","currX","destX","currV","newV","newX","begin","needContinue","calStepperVals","preVals","steps","nextStepVals","_easing2","preObj","nextObj","preTime","beginTime","interKeys","timingStyle","stepperStyle","cafId","currStyle","finalStyle","_createSuper","Animate","handleStyleChange","changeStyle","canBegin","runAnimation","shouldReAnimate","isTriggered","stopJSAnimation","_newState","unSubscribe","onAnimationEnd","startAnimation","configUpdate","configEasing","_this3","_steps$","initialStyle","_steps$$duration","initialTime","sequence","_nextItem$easing","nextProperties","preItem","runJSAnimation","propsTo","runStepAnimation","others","onAnimationReStart","stateStyle","cloneContainer","_container$props","_container$props$styl","isFinite","parseDurationOfSingleTransition","AnimateGroupChild","appearOptions","enterOptions","handleStyleActive","leaveOptions","parseTimeout","AnimateGroup","leave","_hasClass","desc","_removeClass","_react","_Transition","reflowAndAddClass","appearClassName","enterClassName","_this$getClassNames6","_reactDom","_TransitionGroup","ReplaceTransition","_args","handleLifecycle","_len3","_key3","_len4","_key4","_len5","_key5","_len6","_key6","_len7","_key7","originalArgs","_React$Children$toArr","second","EXITING","ENTERED","ENTERING","EXITED","UNMOUNTED","_reactLifecyclesCompat","initialStatus","parentGroup","transitionGroup","isMounting","appearStatus","nextCallback","updateStatus","nextStatus","cancelNextCallback","getTimeouts","mounting","performEnter","performExit","timeouts","enterTimeout","safeSetState","onTransitionEnd","setNextCallback","_this4","doesNotHaveTimeoutOrListener","_propTypes","_ChildMapping","firstRender","appeared","prevChildMapping","getInitialChildMapping","getNextChildMapping","currentChildMapping","getChildMapping","_CSSTransition","_ReplaceTransition","mergeChildMappings","getProp","nextChildMapping","isValidElement","hasPrev","hasNext","prevChild","isLeaving","mapper","getValueForKey","nextKeysPending","pendingKeys","prevKey","childMapping","pendingNextKey","classNamesShape","timeoutsShape","maybeNextCallback","TransitionGroupContext","forceReflow","Ts","$","_c","ga","Ge","Ci","cl","al","il","ll","ol","tl","nl","sl","ml","rl","fl","dl","hl","pl","kl","zl","ul","gl","Ml","vl","bl","wl","yl","Sl","Rl","Al","Bl","Cl","Hl","jl","Fl","Gl","Pl","El","Tl","Nl","Ll","Kl","Il","Ul","Vl","Dl","Ol","ql","Zl","Jl","_l","Wl","Yl","Xl","$l","Ql","co","ao","eo","io","lo","oo","no","so","mo","ro","fo","ho","po","ko","zo","uo","Mo","vo","bo","wo","xo","yo","So","Ro","Ao","Bo","Co","Ho","jo","Fo","Go","Po","Eo","To","No","Lo","Ko","Io","Uo","Vo","Do","Oo","qo","Zo","Jo","_o","Wo","Yo","Xo","$o","Qo","ct","et","ot","tt","nt","st","mt","rt","ft","ht","pt","kt","zt","ut","Mt","vt","bt","wt","xt","yt","St","Rt","At","Bt","Ct","Ht","jt","Ft","Gt","Pt","Et","Tt","Nt","Lt","Kt","It","Ut","Vt","Dt","Ot","qt","Zt","Jt","Wt","Yt","Xt","$t","Qt","cn","an","en","tn","nn","sn","mn","rn","dn","hn","pn","kn","zn","un","gn","Mn","vn","bn","wn","xn","Sn","Rn","An","Bn","Cn","Hn","jn","Fn","Gn","Pn","En","Tn","Nn","Ln","Kn","In","Un","Vn","Dn","On","qn","Zn","Jn","Wn","Yn","Xn","$n","Qn","cs","es","ls","os","ts","ss","rs","fs","ds","hs","ks","us","gs","Ms","vs","bs","ys","Ss","Rs","As","Bs","Cs","Hs","Fs","flag_AD","flag_AE","flag_AF","flag_AG","flag_AI","flag_AL","flag_AM","flag_AN","flag_AO","flag_AQ","flag_AR","flag_AS","flag_AT","flag_AU","flag_AW","flag_AX","flag_AZ","flag_BA","flag_BB","flag_BD","flag_BE","flag_BF","flag_BG","flag_BH","flag_BI","flag_BJ","flag_BL","flag_BM","flag_BN","flag_BO","flag_BQ","flag_BR","flag_BS","flag_BT","flag_BV","flag_BW","flag_BY","flag_BZ","flag_CA","flag_CC","flag_CD","flag_CF","flag_CG","flag_CH","flag_CI","flag_CK","flag_CL","flag_CM","flag_CN","flag_CO","flag_CR","flag_CU","flag_CV","flag_CW","flag_CX","flag_CY","flag_CZ","flag_DE","flag_DJ","flag_DK","flag_DM","flag_DO","flag_DZ","flag_EC","flag_EE","flag_EG","flag_EH","flag_ER","flag_ES","flag_ET","flag_EU","flag_FI","flag_FJ","flag_FK","flag_FM","flag_FO","flag_FR","flag_GA","flag_GB_ENG","flag_GB_NIR","flag_GB_SCT","flag_GB_WLS","flag_GB","flag_GD","flag_GE","flag_GF","flag_GG","flag_GH","flag_GI","flag_GL","flag_GM","flag_GN","flag_GP","flag_GQ","flag_GR","flag_GS","flag_GT","flag_GU","flag_GW","flag_GY","flag_HK","flag_HM","flag_HN","flag_HR","flag_HT","flag_HU","flag_ID","flag_IE","flag_IL","flag_IM","flag_IN","flag_IO","flag_IQ","flag_IR","flag_IS","flag_IT","flag_JE","flag_JM","flag_JO","flag_JP","flag_KE","flag_KG","flag_KH","flag_KI","flag_KM","flag_KN","flag_KP","flag_KR","flag_KW","flag_KY","flag_KZ","flag_LA","flag_LB","flag_LC","flag_LI","flag_LK","flag_LR","flag_LS","flag_LT","flag_LU","flag_LV","flag_LY","flag_MA","flag_MC","flag_MD","flag_ME","flag_MF","flag_MG","flag_MH","flag_MK","flag_ML","flag_MM","flag_MN","flag_MO","flag_MP","flag_MQ","flag_MR","flag_MS","flag_MT","flag_MU","flag_MV","flag_MW","flag_MX","flag_MY","flag_MZ","flag_NA","flag_NC","flag_NE","flag_NF","flag_NG","flag_NI","flag_NL","flag_NO","flag_NP","flag_NR","flag_NU","flag_NZ","flag_OM","flag_PA","flag_PE","flag_PF","flag_PG","flag_PH","flag_PK","flag_PL","flag_PM","flag_PN","flag_PR","flag_PS","flag_PT","flag_PW","flag_PY","flag_QA","flag_RE","flag_RO","flag_RS","flag_RU","flag_RW","flag_SA","flag_SB","flag_SC","flag_SD","flag_SE","flag_SG","flag_SH","flag_SI","flag_SJ","flag_SK","flag_SL","flag_SM","flag_SN","flag_SO","flag_SR","flag_SS","flag_ST","flag_SV","flag_SX","flag_SY","flag_SZ","flag_TC","flag_TD","flag_TF","flag_TG","flag_TH","flag_TJ","flag_TK","flag_TL","flag_TM","flag_TN","flag_TO","flag_TR","flag_TT","flag_TV","flag_TW","flag_TZ","flag_UA","flag_UG","flag_UM","flag_US","flag_UY","flag_UZ","flag_VA","flag_VC","flag_VE","flag_VG","flag_VI","flag_VN","flag_VU","flag_WF","flag_XK","flag_WS","flag_YE","flag_YT","flag_ZA","flag_ZM","flag_ZW","Gs","Ps","Es","cca2","ccn3","cca3","__self","__source","jsx","jsxs","_status","_result","IsSomeRendererActing","_currentValue2","_threadCount","createFactory","createRef","lazy","ErrorBar","layout","dataKey","dataPointFormatter","xAxis","yAxis","svgProps","errorBars","_dataPointFormatter","errorVal","lowBound","highBound","lineCoordinates","_errorVal","scale","yMid","yMin","yMax","xMin","xMax","_scale","xMid","_xMin","_xMax","_yMin","_yMax","Layer","coordinates","Cell","valueAccessor","LabelList","clockWise","textBreakAll","idProps","parentViewBox","parseLabelList","renderCallByParent","parentProps","ckeckPropsLabel","explicitChilren","implicitLabelList","Bar","isAnimationFinished","handleAnimationEnd","handleAnimationStart","animationId","prevAnimationId","curData","prevData","option","Rectangle","baseProps","renderRectangle","isAnimationActive","animationBegin","animationEasing","stepData","interpolatorX","interpolatorY","interpolatorWidth","interpolatorHeight","_interpolatorHeight","interpolator","renderRectanglesStatically","renderRectanglesWithAnimation","backgroundProps","errorBarItems","dataPoint","hide","layerClass","needClip","allowDataOverflow","clipPathId","clipPath","renderBackground","renderRectangles","renderErrorBar","xAxisId","yAxisId","legendType","minPointSize","Global","getComposedData","barPosition","bandSize","xAxisTicks","yAxisTicks","stackedData","dataStartIndex","displayedData","_item$props","numericAxis","stackedDomain","domain","baseValue","cells","rects","ticks","tooltipPayload","tooltipPosition","XAxis","allowDecimals","mirror","tickCount","reversed","allowDuplicatedCategory","point","bezierCurveTo","_x0","_x1","_y0","_y1","Basis","BasisClosed","BasisOpen","LinearClosed","Linear","slope3","h0","s0","s1","slope2","t0","t1","x0","y0","MonotoneX","MonotoneY","ReflectContext","Natural","controlPoints","Step","areaStart","areaEnd","_point","lineEnd","lineTo","closePath","moveTo","_x2","_x3","_x4","_y2","_y3","_y4","_t0","_x","_y","py","i0","i1","defined","curve","defined0","x0z","y0z","arealine","lineX0","lineY0","lineY1","lineX1","CURVE_FACTORIES","curveBasisClosed","curveBasisOpen","curveBasis","curveLinearClosed","curveLinear","curveMonotoneX","curveMonotoneY","curveNatural","curveStep","curveStepAfter","curveStepBefore","getX","getY","Curve","lineFunction","points","baseLine","connectNulls","curveFactory","getCurveFactory","formatPoints","formatBaseLine","areaPoints","pathRef","realPath","Cross","getTangentCircle","radius","isExternal","cornerRadius","cornerIsExternal","centerRadius","theta","asin","centerAngle","lineTangencyAngle","circleTangency","lineTangency","cos","getSectorPath","innerRadius","outerRadius","startAngle","endAngle","getDeltaAngle","tempEndAngle","outerStartPoint","outerEndPoint","innerStartPoint","innerEndPoint","Sector","forceCornerRadius","deltaRadius","cr","_getTangentCircle","soct","solt","sot","_getTangentCircle2","eoct","eolt","eot","outerArcAngle","_getTangentCircle3","sict","silt","sit","_getTangentCircle4","eict","eilt","eit","innerArcAngle","getSectorWithCorner","Dot","CartesianAxis","layerReference","restProps","viewBoxOld","restPropsOld","htmlLayer","tick","getElementsByClassName","tx","ty","tickSize","tickMargin","finalTickSize","tickCoord","coordinate","textAnchor","verticalAnchor","axisLine","needHeight","needWidth","tickLine","tickFormatter","finalTicks","getTicks","getTickTextAnchor","getTickVerticalAnchor","axisProps","customTickProps","tickLineProps","_this2$getTickLineCoo","getTickLineCoord","lineCoord","tickProps","visibleTicksCount","renderTickItem","ticksGenerator","noTicksProps","renderAxisLine","renderTicks","minTickGap","getNumberIntervalTicks","getTicksStart","getTicksEnd","preserveEnd","sizeKey","unitSize","tailContent","tailSize","tailGap","isShow","Brush","leaveTimer","travellerDragStartHandlers","handleDrag","isTravellerMoving","handleTravellerMove","isSlideMoving","handleSlideDrag","handleDragEnd","detachDragEndListener","handleLeaveWrapper","leaveTimeOut","handleEnterSlideOrTraveller","isTextActive","handleLeaveSlideOrTraveller","handleSlideDragStart","slideMoveStartX","attachDragEndListener","handleTravellerDragStart","endX","lineY","renderDefaultTraveller","travellerWidth","updateId","startIndex","prevUpdateId","prevTravellerWidth","prevX","prevWidth","scaleValues","createScale","minIndex","getIndexInRange","newIndex","getIndex","movingTravellerId","brushMoveStartX","_this$setState","_this$state2","prevValue","chartElement","compact","travellerX","traveller","travellerProps","onMouseEnter","renderTraveller","_this$state3","getTextOfTick","_this$props10","alwaysShowText","_this$state4","isPanoramic","renderPanorama","renderSlide","renderTravellerLayer","renderText","ifOverflowMatches","alwaysShow","ifOverflow","rectWithPoints","ScaleHelper","bandwidth","bandAware","_offset","_offset2","EPS","createLabeledScales","scales","coord","isInRange","ReferenceDot","isX","isY","getCoordinate","dotProps","renderDot","isFront","ReferenceLine","fixedX","fixedY","endPoints","isFixedX","isFixedY","isSegment","yCoord","xCoord","_orientation","_coord","_points","_points2","getEndPoints","_endPoints","_endPoints$","_endPoints$2","lineProps","renderLine","rectWithCoords","ReferenceArea","hasX1","hasX2","hasY1","hasY2","xValue1","xValue2","yValue1","yValue2","rangeMin","rangeMax","getRect","renderRect","detectReferenceElementsDomain","axisId","axisType","specifiedTicks","dots","elements","areas","idKey","valueKey","finalDomain","value1","value2","eventCenter","setMaxListeners","SYNC_EVENT","ORIENT_MAP","originCoordinate","isFinit","deferClear","clearImmediate","getDisplayedData","graphicalItems","dataEndIndex","itemsData","itemData","getTooltipContent","chartData","activeIndex","activeLabel","tooltipAxis","getTooltipData","rangeObj","rangeData","chartX","chartY","calculateTooltipPos","orderedTooltipTicks","tooltipTicks","activePayload","activeCoordinate","_angle","_radius","getActiveCoordinate","activeTooltipIndex","getAxisMap","_ref4$axisType","AxisComp","stackGroups","axisIdKey","axes","axisMap","stackOffset","isCategorical","duplicateDomain","categoricalDomain","duplicate","errorBarsDomain","hasStack","axisDomain","originalDomain","getAxisMapByAxes","Axis","getAxisMapByItems","createDefaultState","defaultShowTooltip","brushItem","isTooltipActive","getAxisNameByLayout","numericAxisName","cateAxisName","YAxis","BarChart","chartName","GraphicalChild","_ref6$defaultTooltipE","defaultTooltipEventType","_ref6$validateTooltip","validateTooltipEventTypes","axisComponents","legendContent","formatAxisMap","getFormatItems","currentState","barSize","barGap","barCategoryGap","globalMaxBarSize","maxBarSize","_getAxisNameByLayout","hasBar","hasGraphicalBarItem","sizeList","formattedItems","childMaxBarSize","numericAxisId","cateAxisId","axisObj","_objectSpread6","cateAxis","cateTicks","itemIsBar","_getBandSizeOfAxis","barBandSize","_objectSpread7","composedFn","updateStateOfAxisMapsOffsetAndStackGroups","_ref8","reverseStackOrder","_getAxisNameByLayout2","prevLegendBBox","_ref5$xAxisMap","xAxisMap","_ref5$yAxisMap","yAxisMap","legendItem","Legend","offsetH","offsetV","brushBottom","calculateOffset","legendBBox","cateAxisMap","ticksObj","tooltipAxisBandSize","formattedGraphicalItems","CategoricalChartWrapper","uniqueChartId","legendInstance","deferId","clearDeferId","handleLegendBBoxUpdate","box","handleReceiveSyncEvent","cId","chartId","syncId","applySyncEvent","handleBrushChange","_ref9","triggerSyncEvent","handleMouseEnter","mouse","getMouseInfo","_nextState","triggeredAfterMouseMove","handleItemMouseEnter","activeItem","handleItemMouseLeave","handleMouseMove","cancelThrottledTriggerAfterMouseMove","handleOuterEvent","_nextState2","verticalCoordinatesGenerator","_ref10","horizontalCoordinatesGenerator","_ref11","axesTicksGenerator","renderCursor","tooltipEventType","getTooltipEventType","cursorComp","getCursorRectangle","_this$getCursorPoints","getCursorPoints","cursorProps","payloadIndex","renderPolarAxis","axisOption","renderXAxis","renderAxis","renderYAxis","renderGrid","chartWidth","chartHeight","renderPolarGrid","_element$props","radialLines","polarAngles","polarRadius","radiusAxisMap","angleAxisMap","radiusAxis","angleAxis","renderLegend","legendWidth","otherProps","onBBoxUpdate","renderTooltip","tooltipItem","Tooltip","_this$state5","renderBrush","_this$state6","renderReferenceElement","_this$state7","_element$props2","renderActivePoints","_ref12","activePoint","basePoint","isRange","_item$item$props","activeDot","renderActiveDot","renderGraphicChild","filterFormatItem","_this$state8","_item$props2","_item$item$props2","hasActive","itemEvents","trigger","onCLick","graphicalItem","specifiedKey","renderCustomized","throttleDelay","eventType","containerOffset","inRange","_this$state9","xScale","yScale","xValue","invert","yValue","toolTipData","_this$state10","halfSize","_this$state11","_cx","_cy","innerPoint","outerPoint","_this$state12","tooltipEvents","_maxListeners","syncMethod","_this$state13","validateChartX","validateChartY","axisOptions","_this$state$offset","_ref13","_ref14","_ref15","_ref16","_this$state$xAxisMap","_this$state$xAxisMap$","_this$state$yAxisMap","_this$state$yAxisMap$","chartXY","itemDisplayName","activeBarItem","_activeBarItem","CartesianGrid","Line","Area","Radar","RadialBar","Scatter","Pie","Funnel","PolarGrid","PolarAngleAxis","PolarRadiusAxis","Customized","Surface","renderClipPath","parseEventsOfWrapper","defaultState","prevHeight","prevLayout","prevStackOffset","prevMargin","prevChildren","_defaultState","keepFromPrevState","updatesToState","newUpdateId","dot","generateCategoricalChart","ids","leftMirror","rightMirror","topMirror","bottomMirror","calculatedPadding","needSpace","_axis$padding","offsetKey","smallestDistanceBetweenValues","sortedValues","smallestDistanceInPercent","rangeWidth","halfBand","_parseScale","realScaleType","finalAxis","renderRadialLabel","labelProps","labelAngle","deltaAngle","startPoint","endPoint","dominantBaseline","_props$className","getLabel","isPolarLabel","isPolar","positionAttrs","midAngle","_polarToCartesian","_polarToCartesian2","getAttrsOfPolarLabel","verticalSign","verticalOffset","verticalEnd","verticalStart","horizontalSign","horizontalOffset","horizontalEnd","horizontalStart","_attrs2","_attrs3","sizeAttrs","getAttrsOfCartesianLabel","breakAll","parseViewBox","labelViewBox","parseLabel","checkPropsLabel","explicitChildren","implicitLabel","sin","tau","draw","arc","tan30","tan30_2","kr","kx","ky","sqrt3","symbolFactories","symbolCircle","symbolCross","symbolDiamond","symbolSquare","symbolStar","symbolTriangle","symbolWye","RADIAN","Symbols","sizeType","symbolFactory","getSymbolFactory","tan","calculateAreaSize","registerSymbol","DefaultLegendContent","inactiveColor","sixthSize","thirdSize","inactive","legendIcon","iconProps","iconSize","itemStyle","svgStyle","_classNames","finalFormatter","renderIcon","renderItems","defaultUniqBy","getUniqPayload","wrapperNode","boxWidth","boxHeight","updateBBox","hPos","vPos","getBBoxSnapshot","_box3","wrapperStyle","payloadUniqBy","outerStyle","getDefaultPosition","renderContent","BREAKING_SPACES","calculateWordWidths","words","wordsWithComputedWidth","word","spaceWidth","getWordsWithoutCalculate","getWordsByLines","needCalculate","scaleToFit","wordWidths","initialWordsWithComputedWith","lineWidth","shouldLimitLines","maxLines","calculate","currentLine","newLine","originalResult","trimmedResult","checkOverflow","tempText","doesOverflow","findLongestLine","iterations","_checkOverflow2","doesPrevOverflow","doesMiddleOverflow","calculateWordsByLines","prevScaleToFit","prevStyle","prevBreakAll","wordsByLines","capHeight","textProps","startDy","defaultFormatter","DefaultTooltipContent","separator","itemSorter","finalItemStyle","formatted","wrapperClassName","contentStyle","labelClassName","labelStyle","labelFormatter","finalLabelStyle","finalLabel","wrapperCN","labelCN","CLS_PREFIX","dismissed","dismissedAtCoordinate","tooltipDimension","viewBoxDimension","allowEscapeViewBox","restricted","unrestricted","blur","translateX","translateY","filterNull","finalPayload","hasPayload","useTranslate3d","cls","cursorStyle","svgView","getRectanglePath","maxRadius","ySign","xSign","newRadius","_newRadius","isInRectangle","minX","maxX","minY","maxY","totalLength","getTotalLength","isUpdateAnimationActive","currWidth","currHeight","currY","PLACE_HOLDER","isPlaceHolder","curry0","_curried","curryN","argsLength","restArgs","newArgs","curry","fns","firstFn","tailsFn","lastResult","rangeStep","getDigitCount","interpolateNumber","newA","uninterpolateNumber","uninterpolateTruncation","getValidInterval","validMin","validMax","getFormatStep","roughStep","correctionFactor","digitCount","digitCountValue","stepRatio","stepRatioScale","formatStep","getTickOfSingleValue","absVal","middleIndex","calculateStep","tickMin","tickMax","belowCount","upCount","scaleCount","getNiceTickValues","_getValidInterval","_getValidInterval2","cormin","cormax","_values","_calculateStep","getTickValuesFixedDomain","_getValidInterval3","_getValidInterval4","_getValidInterval5","_getValidInterval6","e10","e5","e2","tickIncrement","r0","r1","power","tickStep","step0","step1","ascending","descending","bisector","compare1","compare2","mid","zero","ascendingBisect","bisectRight","Color","darker","brighter","reI","reN","reP","reHex","reRgbInteger","reRgbPercent","reRgbaInteger","reRgbaPercent","reHslPercent","reHslaPercent","named","aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","greenyellow","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","teal","thistle","tomato","turquoise","violet","wheat","whitesmoke","yellow","yellowgreen","color_formatHex","formatHex","color_formatRgb","formatRgb","rgbn","Rgb","rgba","hsla","rgbConvert","rgb_formatHex","rgb_formatRgb","clampa","clampi","Hsl","hslConvert","clamph","clampt","hsl2rgb","m1","m2","basis","v0","v1","v2","v3","t2","t3","copy","channels","displayable","formatHex8","formatHsl","linear","gamma","nogamma","exponential","rgbGamma","rgbSpline","spline","genericArray","reA","reB","bm","bimap","interpolate","d0","d1","polymap","bisect","unknown","untransform","piecewise","rescale","rangeRound","continuous","prefixExponent","formatSpecifier","specifier","FormatSpecifier","comma","formatDecimalParts","toLocaleString","formatRounded","formatPrefix","grouping","thousands","currencyPrefix","currency","currencySuffix","decimal","numerals","formatNumerals","nan","newFormat","formatTypes","formatType","maybeSuffix","valuePrefix","valueSuffix","valueNegative","out","formatTrim","tickFormat","precisionPrefix","precisionRound","precisionFixed","linearish","nice","prestep","maxIter","transformLog","transformExp","transformLogn","transformExpn","pow10","reflect","loggish","logs","pows","log10","log2","logp","powp","transformSymlog","log1p","transformSymexp","expm1","symlogish","symlog","transformPow","transformSqrt","transformSquare","powish","unsquare","radial","squared","valueof","compareDefined","swap","quantile","Float64Array","value0","subarray","quantileSorted","thresholds","invertExtent","quantiles","quantize","threshold","durationSecond","durationMinute","durationHour","durationDay","durationWeek","durationMonth","durationYear","newInterval","floori","offseti","field","previous","millisecond","minute","weekday","sunday","monday","tuesday","wednesday","thursday","friday","saturday","utcMinute","utcHour","utcDay","utcWeekday","utcSunday","utcMonday","utcTuesday","utcWednesday","utcThursday","utcFriday","utcSaturday","utcMonth","utcYear","ticker","tickIntervals","tickInterval","utcTicks","utcTickInterval","timeTicks","timeTickInterval","localDate","timeFormat","utcFormat","pads","numberRe","percentRe","requoteRe","pad","requote","formatRe","formatLookup","parseWeekdayNumberSunday","parseWeekdayNumberMonday","parseWeekNumberSunday","parseWeekNumberISO","parseWeekNumberMonday","parseFullYear","parseZone","parseQuarter","parseMonthNumber","parseDayOfMonth","parseDayOfYear","parseHour24","parseMinutes","parseSeconds","parseMilliseconds","parseMicroseconds","parseLiteralPercent","parseUnixTimestamp","parseUnixTimestampSeconds","formatDayOfMonth","formatHour24","formatHour12","formatDayOfYear","formatMilliseconds","formatMicroseconds","formatMonthNumber","formatMinutes","formatSeconds","formatWeekdayNumberMonday","formatWeekNumberSunday","dISO","formatWeekNumberISO","formatWeekdayNumberSunday","formatWeekNumberMonday","formatYear","formatYearISO","formatFullYear","formatFullYearISO","formatZone","formatUTCDayOfMonth","formatUTCHour24","formatUTCHour12","formatUTCDayOfYear","formatUTCMilliseconds","formatUTCMicroseconds","formatUTCMonthNumber","formatUTCMinutes","formatUTCSeconds","formatUTCWeekdayNumberMonday","dow","formatUTCWeekNumberSunday","UTCdISO","formatUTCWeekNumberISO","formatUTCWeekdayNumberSunday","formatUTCWeekNumberMonday","formatUTCYear","formatUTCYearISO","formatUTCFullYear","formatUTCFullYearISO","formatUTCZone","formatLiteralPercent","formatUnixTimestamp","formatUnixTimestampSeconds","calendar","formatMillisecond","formatSecond","formatMinute","formatHour","formatDay","formatWeek","formatMonth","utcTime","k10","sequential","sequentialLog","sequentialSymlog","sequentialPow","sequentialSqrt","sequentialQuantile","k21","r2","diverging","divergingLog","divergingSymlog","divergingPow","divergingSqrt","series","locale_dateTime","locale_date","locale_time","locale_periods","periods","locale_weekdays","days","locale_shortWeekdays","shortDays","locale_months","months","locale_shortMonths","shortMonths","periodRe","periodLookup","weekdayRe","weekdayLookup","shortWeekdayRe","shortWeekdayLookup","monthRe","monthLookup","shortMonthRe","shortMonthLookup","utcFormats","parses","parseSpecifier","newParse","utcParse","formatLocale","stackValue","stackSeries","getValueByDataKey","getDomainOfDataByKey","filterNil","flattenData","calculateActiveTickIndex","_ticks$length","unsortedTicks","cur","after","sameDirectionCoord","diffInterval","curInRange","afterInRange","sameInterval","getMainColorOfGraphicItem","getLegendProps","legendData","sectors","iconType","getBarSizeList","globalSize","_ref5$stackGroups","numericAxisIds","sgs","stackIds","sLen","_sgs$stackIds$j","barItems","selfSize","cateId","stackList","getBarPosition","_ref6$sizeList","realBarGap","useFull","fullBarSize","newRes","originalSize","appendOffsetOfLegend","legendBox","legendProps","newOffset","getDomainOfErrorBars","errorBarChild","isErrorBarRelevantForAxis","entryValue","mainValue","errorDomain","prevErrorArr","errorValue","lowerValue","upperValue","parseErrorBarsOfAxis","domains","getDomainOfItemsWithSameAxis","isCategoricalAxis","getCoordinatesOfGrid","hasMin","hasMax","getTicksOfAxis","isGrid","isAll","offsetForBand","niceTicks","scaleContent","combineEventHandlers","defaultHandler","parentHandler","childHandler","customizedHandler","arg1","arg2","arg3","arg4","parseScale","chartType","checkDomainOfScale","findPositionOfBar","truncateByDomain","STACK_OFFSET_MAP","positive","negative","expand","none","silhouette","wiggle","s2","sij0","s3","getStackedData","stackItems","offsetType","dataKeys","oz","sz","getStackGroupsByAxisId","_items","_item$props3","stackId","childGroup","getTicksOfScale","scaleType","tickValues","calculateDomainOfTicks","_domain","getCateCoordinateOfBar","getBaseValueOfBar","getStackedDataOfItem","getDomainOfStackGroups","MIN_VALUE_REG","MAX_VALUE_REG","parseSpecifiedDomain","specifiedDomain","dataDomain","getBandSizeOfAxis","isBar","bandWidth","orderedTicks","parseDomainOfCategoryAxis","calculatedDomain","axisChild","getTooltipItem","_graphicalItem$props","tooltipType","stringCache","widthCache","SPAN_STYLE","STYLE_LIST","MEASUREMENT_SPAN_ID","getStyleString","getStringSize","measurementSpan","measurementSpanStyle","styleKey","pageYOffset","clientTop","pageXOffset","clientLeft","calculateChartCoordinate","mathSign","isPercent","isNumOrStr","uniqueId","getPercentValue","totalValue","getAnyElementOfObject","hasDuplicate","ary","numberA","numberB","findEntryInArray","specifiedValue","isSsr","radianToDegree","angleInRadian","polarToCartesian","getAngleOfPoint","anotherPoint","acos","reverseFormatAngleOfSetor","startCnt","endCnt","inRangeOfSector","sector","_getAngleOfPoint","_formatAngleOfSector","formatAngleOfSector","formatAngle","REACT_BROWSER_EVENT_MAP","click","mousedown","mouseup","mouseover","mousemove","mouseout","mouseenter","mouseleave","touchcancel","touchend","touchmove","touchstart","Comp","lastChildren","findAllByType","childType","findChildByType","validateWidthHeight","_el$props","SVG_TAGS","isSvgElement","isChildrenEqual","nextChildren","isSingleChildEqual","nextChild","renderByOrder","renderMap","record","getReactEventByType","parseChildIndex","SVGContainerPropKeys","SVGElementPropKeys","EventKeys","includeEvents","isSvg","adaptEventHandlers","newHandler","adaptEventsOfChild","originalHandler","getEventHandlerOfChild","_postcssValueParser2","_parser","_reducer2","_stringifier2","MATCH_CALC","walk","contents","reducedAst","_cssUnitConverter","_cssUnitConverter2","convertAbsoluteLength","_convert","_convert2","operator","convertMathExpression","_node","flipValue","isValueType","reduceAddSubExpression","reduceDivisionExpression","reduceMultiplicationExpression","reduceMathExpression","calc","_reducer","prec","JisonParserError","stacktrace","exception","ex2","rv","trace","yy","hasPartialLrUpgradeOnConflict","errorRecoveryTokenDiscardCount","symbols_","terminals_","TERROR","originalQuoteName","originalParseError","cleanupAfterParse","constructParseErrorInfo","yyMergeLocationInfo","__reentrant_call_depth","__error_infos","__error_recovery_infos","quoteName","id_str","getSymbolName","describeSymbol","terminal_descriptions_","collect_expected_token_set","do_not_describe","tokenset","state_descriptions_","productions_","bp","performAction","yystate","yysp","yyvstack","goto","defaultActions","bda","parseError","ExceptionClass","recoverable","sstack","vstack","sp","NO_ACTION","__lexer__","sharedState_yy","pre_parse","post_parse","pre_lex","post_lex","fastLex","yyGetSharedState","dst","shallow_copy_noclobber","resultValue","invoke_post_methods","do_not_nuke_errorinfos","cleanupAfterLex","expected","pei","errStr","yytext","token_id","yylineno","new_state","symbol_stack","state_stack","value_stack","stack_pointer","rec","yyrulelen","this_production","lex","yyval","_$","retval","setInput","canIUse","errSymbolDescr","showPosition","ntsymbol","JisonLexerError","ERROR","__currentRuleSet__","__decompressed","_backtrack","_input","_more","_signaled_error_token","conditionStack","yyleng","yylloc","constructLexErrorInfo","show_input_position","prettyPrintRange","pos_str","yyerror","lineno_msg","lexerErrorsAreRecoverable","extra_error_attributes","last_column","first_line","first_column","last_line","rule_re","conditions","spec","rule_ids","rule_regexes","rule_new_ids","__rule_regexes","__rule_count","editRemainingInput","cpsArg","slice_len","ch2","unput","pre_lines","backtrack_lexer","less","pastInput","maxSize","past","upcomingInput","maxPrefix","maxPostfix","deriveLocationInfo","preceding","following","context_loc","context_loc2","l0","l1","lineno_display_width","ws_prefix","nonempty_line_indexes","lno","errpfx","clip_start","MINIMUM_VISIBLE_NONEMPTY_LINE_COUNT","clip_end","intermediate_line","describeYYLLOC","display_range_too","l2","test_match","indexed_rule","backup","match_str","match_str_len","tempMatch","_currentRules","trackPosition","topState","regexes","pendingInput","activeCondition","conditionStackDepth","popState","stateStackSize","yyrulenumber","YY_START","simpleCaseActionClusters","inclusive","ValueParser","bubble","openParentheses","closeParentheses","singleQuote","doubleQuote","backslash","colon","star","escapePos","whitespacePos","balanced","sourceIndex","unclosed","stringifyNode","custom","buf","customResult","EXP","dotted","sciPos","containsNumber","MessageChannel","unstable_forceFrameRate","port2","port1","onmessage","postMessage","sortIndex","startTime","expirationTime","priorityLevel","unstable_Profiling","unstable_continueExecution","unstable_getFirstCallbackNode","unstable_next","unstable_pauseExecution","unstable_wrapCallback","objA","objB","compareContext","keysB","bHasOwnProperty","valueA","valueB","msGridRow","msGridRowSpan","msGridColumn","msGridColumnSpan","WebkitLineClamp","reactPropsRegex","styledComponentId","env","REACT_APP_SC_ATTR","SC_ATTR","SC_DISABLE_SPEEDY","REACT_APP_SC_DISABLE_SPEEDY","groupSizes","Uint32Array","indexOfGroup","clearGroup","getGroup","registerName","__webpack_nonce__","styleSheets","ownerNode","isServer","useCSSOMInjection","server","registerId","reconstructWithOptions","allocateGSInstance","hasNameForId","clearNames","clearRules","clearTag","staticRulesId","isStatic","componentId","baseHash","baseStyle","generateAndInjectStyles","stylisPlugins","disableCSSOMInjection","disableVendorPrefixes","getName","isCss","parentComponentId","shouldForwardProp","componentStyle","foldedComponentIds","$as","withComponent","_foldedDefaultProps","withConfig","createStyles","removeStyles","renderStyles","_emitSheetCSS","getStyleTags","sealed","getStyleElement","seal","collectStyles","interleaveWithNodeStream","invariant","extendStatics","__extends","__","__assign","__rest","__awaiter","_arguments","__generator","sent","trys","ops","verb","__spreadArray","pack","ar","_getRequireWildcardCache","nodeInterop","cacheBabelInterop","cacheNodeInterop","hasPropertyDescriptor","objectWithoutPropertiesLoose","defaultDataIdFromObject","__typename","_id","keyObject","defaultConfig","dataIdFromObject","addTypename","resultCaching","canonizeResults","normalizeConfig","shouldCanonizeResults","getTypenameFromStoreObject","objectOrReference","__ref","TypeOrFieldNameRegExp","fieldNameFromStoreName","storeFieldName","selectionSetMatchesResult","variables","storeValueIsStoreObject","makeProcessedFieldsMerger","ApolloCache","getFragmentDoc","batch","updateResult","optimisticId","performTransaction","recordOptimisticTransaction","transaction","transformDocument","identify","modify","transformForLink","readQuery","read","rootId","readFragment","fragment","writeQuery","write","dataId","writeFragment","updateQuery","updateFragment","MissingFieldError","DELETE","delModifier","INVALIDATE","EntityStore","policies","rootIds","getFieldValue","maybeDeepFreeze","canRead","objOrRef","toReference","objOrIdOrRef","mergeIntoStore","storeObject","rootTypenamesById","dependOnExistence","existing","incoming","__DEV__","merged","storeObjectReconciler","caching","fieldsToDirty_1","__exists","hasKeyArgs","changedFields_1","needToMerge_1","allDeleted_1","sharedDetails_1","isReference","readField","fieldNameOrOptions","fieldValue","storage","getStorage","typename","getStoreFieldName","evict","limit","evicted","extract","extraRootIds","getRootIdSet","__META","newData","rest_1","retain","release","findChildRefIds","idsToRemove","root_1","found_1","workSet_1","keyMaker","CacheGroup","resetCaching","canUse","makeDepKey","maybeDependOnExistenceOfEntity","entityId","supportsResultCaching","Root","_b","stump","Stump","storageTrie","addLayer","layerId","replay","removeLayer","ownStoreObject","parentStoreObject","fromParent","existingObject","incomingObject","existingValue","incomingValue","execSelectionSetKeyArgs","StoreReader","knownResults","canon","executeSelectionSet","peekArgs","admit","enclosingRef","execSelectionSetImpl","resultCacheMaxSize","varString","executeSubSelectedArray","execSubSelectedArrayImpl","resetCanon","diffQueryAgainstStore","returnPartialData","missing","execResult","fragmentMap","firstMissing","complete","isFresh","latest","isKnown","empty","objectsToMerge","missingMerger","handleMissing","resultName","rootIdsByTypename","selection","pass","fragmentMatches","finalResult","mergeDeep","frozen","childResult","assertSelectionSetForIdValue","tree","specifierInfoCache","lookupSpecifierInfo","keyFieldsFnFromSpecifier","keyFieldsFn","collectSpecifierPaths","schemaKeyPath","extractKeyPath","extractKey","keyArgsFnFromSpecifier","keyArgsFn","collected","keyPath","firstKey","firstChar","variableName","varKeyPath","directiveName_1","directiveArgs","extractor","merger","getSpecifierPaths","toMerge","paths","paths_1","currentPath_1","argsFromFieldSpecifier","nullKeyFieldsFn","simpleKeyArgsFn","mergeTrueFn","mergeObjects","mergeFalseFn","Policies","typePolicies","toBeAdded","supertypeMap","fuzzySubtypes","usingPossibleTypes","setRootTypename","possibleTypes","addPossibleTypes","addTypePolicies","partialContext","ROOT_QUERY","normalizeReadFieldOptions","policy","getTypePolicy","keyFn","specifierOrId","queryType","mutationType","subscriptionType","updateTypePolicy","keyFields","setMerge","getFieldPolicy","old","supertype","getSupertypeSet","subtype","policy_1","supertypes","inbox","createIfMissing","fieldPolicies","supertypeSet","typenameSupertypeSet","workQueue_1","maybeEnqueue_1","needToCheckFuzzySubtypes","checkingFuzzySubtypes","fuzzyString","fieldSpec","specifierOrString","readOptions","makeFieldFunctionOptions","getReadFunction","getMergeFunction","parentTypename","childTypename","runMergeFunction","makeMergeObjectsFunction","overwrite","readFieldArgs","undefId","argc","makeUniqueId","eType","iType","getContextFlavor","clientOnly","deferred","flavored","flavors","StoreWriter","reader","writeToStore","operationDefinition","written","incomingById","processSelectionSet","mergeTree","fieldNodeSet","entityRef","applied","applyMerges","fieldsWithSelectionSets_1","hasSelectionSet_1","childTree","hasMergeFunction_1","existingRef","incomingObj","getChild","parentType","typeDotName","warnings","childTypenames","warnAboutDataLoss","result_1","flattenFields","resultFieldKey","getChildMergeTree","processFieldValue","maybeRecycleChildMergeTree","dataRef","sets","previous_1","mergeMergeTrees","mergeTreeIsEmpty","cloneDeep","fieldMap","limitingTrie","flatten","inheritedContext","visitedNode","visited","if","getStorageArgs","e_1","i_1","getValue_1","eVal","iVal","aVal","emptyMergeTreePool","needToMergeMaps","remainingRightKeys_1","leftTree","InMemoryCache","watches","typenameDocumentCache","makeVar","txCount","rootStore","optimisticData","resetResultCache","resetResultIdentities","previousReader","storeReader","storeWriter","maybeBroadcastWatch","broadcastWatch","broadcast","broadcastWatches","watch","immediate","discardWatches","removeOptimistic","idToRemove","newOptimisticData","onWatchUpdated","perform","layer","alreadyDirty","lastDiff","fromOptimisticTransaction","stringifyCanon","stringifyCache","ObjectCanon","known","pool","passes","keysByJSON","shallowCopy","original","proto_1","array_1","sortedKeys","firstValueIndex_1","sorted","obj_1","canonicalStringify","resetCanonicalStringify","canonical","cacheSlot","cacheInfoMap","getCacheInfo","vars","forgetCache","recallCache","attachCache","oldListeners","onNextChange","execute","ApolloLink","HttpLink","createHttpLink","request","asyncMap","observable","catchFn","observer","activeCallbackCount","completed","promiseQueue","makeCallback","examiner","delegate","both","caught","graphQLResultHasError","errors","iterateObserversSafely","observers","observersWithMethod","obs","fixObservableSubclass","subclass","species","Concast","sources","addObserver","removeObserver","addCount","deliverLastMessage","nextOrError","quietly","cleanup","ObservableQuery","queryManager","queryInfo","subObserver","_subscription","_observer","defaultSubscriptionObserverErrorCallback","reobserve","tearDownQuery","subscriptions","isTornDown","watchQuery","fetchPolicy","defaultFetchPolicy","_f","initialFetchPolicy","queryId","generateQueryId","opDef","queryName","removeQuery","subscription","getCurrentResult","saveAsLastResult","getLastResult","networkStatus","loading","hasForcedResolvers","partialRefetch","logMissingFieldErrors","updateLastResult","isDifferentFromLastResult","newResult","getLast","variablesMustMatch","getLastError","resetLastResults","resetQueryStoreErrors","resetErrors","refetch","reobserveOptions","pollInterval","queryDef","resetLastWrite","fetchMore","fetchMoreOptions","combinedOptions","qid","originalNetworkStatus","notifyOnNetworkStatusChange","observe","updatedQuerySet","fetchQuery","fetchMoreResult","finally","reobserveCacheFirst","subscribeToMore","startGraphQLSubscription","subscriptionData","setOptions","newOptions","setVariables","broadcastQueries","startPolling","updatePolling","stopPolling","applyNextFetchPolicy","nextFetchPolicy","fetch","newNetworkStatus","setObservableQuery","fetchQueryObservable","ssrMode","pollingInfo","maybeFetch","poll","assumeImmutableResults","useDisposableConcast","oldVariables","oldFetchPolicy","mergedOptions","concast","reportResult","reportError","lastError","errorResult","graphQLErrors","hasObservers","stopQuery","obsQuery","LocalState","client","resolvers","fragmentMatcher","addResolvers","setFragmentMatcher","resolverGroup","setResolvers","getResolvers","runResolvers","remoteResult","onlyRunForcedResolvers","resolveDocument","localResult","getFragmentMatcher","clientQuery","serverQuery","prepareContext","getCacheKey","addExportedVariables","buildRootValueFromCache","exportedVariables","shouldForceResolvers","forceResolvers","Directive","rootValue","mainDefinition","fragments","definitionOperation","defaultOperationType","execContext","resolveSelectionSet","resultsToMerge","resolveField","fieldResult","fragmentResult","aliasedFieldName","aliasUsed","defaultResult","resultPromise","resolverType","resolverMap","directive","resolveSubSelectedArray","destructiveMethodCounts","wrapDestructiveCacheMethod","cancelNotifyTimeout","QueryInfo","lastRequestId","stopped","observableQuery","networkError","getDiffOptions","updateWatch","oq","updateLastDiff","setDiff","oldDiff","notifyTimeout","notify","oqListener","shouldNotify","watchOptions","watcher","lastWatch","lastWrite","shouldWrite","dmCount","markResult","cacheWriteBehavior","shouldWriteResult","errorPolicy","diffOptions","markReady","markError","ignoreErrors","writeWithErrors","QueryManager","queryDeduplication","onBroadcast","clientAwareness","localState","queries","fetchCancelFns","transformCache","queryIdCounter","requestIdCounter","mutationIdCounter","inFlightLinkObservables","mutationStore","_info","stopQueryNoBroadcast","cancelPendingFetches","mutate","mutation","optimisticResponse","updateQueries","refetchQueries","awaitRefetchQueries","updateWithProxyFn","onQueryUpdated","_g","keepRootFields","mutationId","mutationStoreValue","_h","generateMutationId","getVariables","hasClientExports","markMutationOptimistic","getObservableFromLink","storeResult","markMutationResult","cacheWrites","skipCache","updateQueries_1","currentQueryResult","nextQueryResult","mutationResult","queryVariables","results_1","updateCache","asQuery","include","getQueryStore","forLink","cacheEntry_1","defaultVars","def","generateRequestId","stopQueryInStore","stopQueryInStoreNoBroadcast","clearStore","getObservableQueries","queryNamesAndDocs","legacyQueryOptions","getQuery","included","nameOrDoc","reFetchObservableQueries","includeStandby","observableQueryPromises","makeObservable","observablePromise_1","getLocalState","deduplication","inFlightLinkObservables_1","operationName","forceFetch","byVariables_1","varJson_1","getResultsFromLink","requestId","hasErrors","aqr","defaults","fromVariables","concastSources","fetchQueryByPolicy","cleanupCancelFn","includedQueriesById","refetchWritePolicy","oldNetworkStatus","readCache","resultsFromCache","fromData","resultsFromLink","newContext","hasSuggestedDevtools","ApolloClient","resetStoreCallbacks","clearStoreCallbacks","uri","credentials","headers","ssrForceFetchDelay","connectToDevTools","__APOLLO_CLIENT__","typeDefs","clientAwarenessName","clientAwarenessVersion","disableNetworkFetches","resetStore","__APOLLO_DEVTOOLS_GLOBAL_HOOK__","nav","devToolsHookCb","mutations","dataWithOptimisticResults","mergeOptions","__actionHookForDevTools","__requestRaw","onResetStore","onClearStore","serializedState","setLocalStateFragmentMatcher","setLink","newLink","NetworkStatus","isNetworkRequestInFlight","isApolloError","ApolloError","clientErrors","errorMessage","extraInfo","passthrough","toLink","isTerminating","LinkError","links","leftLink","rightLink","starting","createOperation","transformedOperation","transformOperation","OPERATION_FIELDS","validateOperation","firstLink","nextLink","setOnError","errorHandler","retriedSub","retriedResult","response","ErrorLink","serializeFetchParameter","serialized","throwServerError","statusCode","print","printDocASTReducer","Name","Variable","Document","OperationDefinition","varDefs","VariableDefinition","SelectionSet","Field","argsLine","Argument","FragmentSpread","InlineFragment","FragmentDefinition","IntValue","FloatValue","StringValue","BooleanValue","NullValue","EnumValue","ListValue","ObjectValue","ObjectField","NamedType","_ref17","ListType","_ref18","NonNullType","_ref19","SchemaDefinition","addDescription","_ref20","OperationTypeDefinition","_ref21","ScalarTypeDefinition","_ref22","ObjectTypeDefinition","_ref23","FieldDefinition","_ref24","hasMultilineItems","InputValueDefinition","_ref25","InterfaceTypeDefinition","_ref26","UnionTypeDefinition","_ref27","EnumTypeDefinition","_ref28","EnumValueDefinition","_ref29","InputObjectTypeDefinition","_ref30","DirectiveDefinition","_ref31","SchemaExtension","_ref32","ScalarTypeExtension","_ref33","ObjectTypeExtension","_ref34","InterfaceTypeExtension","_ref35","UnionTypeExtension","_ref36","EnumTypeExtension","_ref37","InputObjectTypeExtension","_ref38","maybeArray","_maybeArray$filter$jo","maybeString","isMultiline","fallbackHttpConfig","http","includeQuery","includeExtensions","accept","defaultPrinter","printer","selectHttpOptionsAndBodyInternal","configs","headersToLowerCase","normalized_1","fromError","backupFetch","linkOptions","preferredFetch","useGETForQueries","includeUnusedVariables","requestOptions","fetcher","checkFetcher","linkConfig","fetchOptions","chosenURI","fallbackURI","getContext","selectURI","clientAwarenessHeaders","name_1","controller","contextHeaders","contextConfig","unusedNames_1","signal","AbortController","createSignalIfSupported","_controller","queryParams","addQueryParam","serializedVariables","serializedExtensions","preFragment","fragmentStart","queryParamsPrefix","newURI","rewriteURIForGET","operations","setContext","bodyText","abort","contextKey","getApolloContext","ApolloProvider","ApolloContext","useApolloClient","override","EAGER_METHODS","useLazyQuery","internalState","execOptionsRef","useQueryResult","useQuery","skip","getDefaultFetchPolicy","eagerMethods","_loop_1","EAGER_METHODS_1","executeOptions","asyncUpdate","queryResult","useMutation","setResult","baseOptions","ignoreResults","clientOptions","onCompleted","result_2","didWarnUncachedGetSnapshot","useSyncExternalStore","getServerSnapshot","inst","checkIfSnapshotChanged","useInternalState","stateRef","InternalState","setTick","asyncResolveFns","optionsToIgnoreOnce","ssrDisabledResult","skipStandbyResult","toQueryResultCache","previousResult","previousData","watchQueryOptions","renderPromises","useObservableQuery","onNext","unsafeHandlePartialRefetch","toQueryResult","createWatchQueryOptions","queryHookOptions","currentWatchQueryOptions","getObsQueryOptions","ssr","globalDefaults","otherOptions","getSSRObservable","obsQueryFields","ssrAllowed","registerSSRObservable","addObservableQueryPromise","nextResult","handleErrorOrCompleted","resultWithoutPartial","DocumentType","Query","Mutation","Subscription","verifyDocumentType","cached","requiredOperationName","usedOperationName","isNonEmptyArray","canUseWeakMap","canUseWeakSet","canUseSymbol","usingJSDOM","canUseLayoutEffect","cloneDeepHelper","copy_1","copy_2","objects","prefixCounts","deepFreeze","isFrozen","shallowFreeze","mergeDeepArray","DeepMerger","defaultReconciler","reconciler","pastCopies","targetValue","shallowCopyForMerge","isNonNullObject","genericMessage","proto","InvariantError","verbosityLevels","verbosityLevel","wrapConsoleMethod","debug","maybe","thunk","GLOBAL_KEY","safeGlobal","needToRemove","NODE_ENV","DEV","shouldInclude","isInclusionDirective","directiveArguments","directiveName","ifArgument","ifValue","getInclusionDirectives","evaledValue","hasDirectives","getDirectiveNames","getFragmentQueryDocument","actualFragmentName","createFragmentMap","symTable","getFragmentFromSelection","checkDocument","getOperationDefinition","getOperationName","getFragmentDefinitions","getQueryDefinition","getFragmentDefinition","fragmentDef","getMainDefinition","queryDoc","getDefaultValues","defaultValues","makeReference","isDocumentNode","valueToObjectRepresentation","argObj","isIntValue","isFloatValue","isBooleanValue","isStringValue","isObjectValue","nestedArgObj_1","isVariable","variableValue","isListValue","listValue","nestedArgArrayObj","isEnumValue","isNullValue","storeKeyNameFromField","directivesObj","getStoreKeyName","KNOWN_DIRECTIVES","filterKeys","filteredArgs_1","completeFieldName","stringifiedArgs","setStringify","stringifyReplacer","argumentsObjectFromField","argObj_1","resultKeyNameFromField","getTypenameFromResult","isField","isInlineFragment","filterInPlace","elem","TYPENAME_FIELD","nullIfDocIsEmpty","getDirectiveMatcher","removeDirectivesFromDocument","variablesInUse","variablesToRemove","fragmentSpreadsInUse","fragmentSpreadsToRemove","modifiedDoc","getAllFragmentSpreadsFromSelectionSet","frag","argMatcher","aConfig","getArgumentMatcher","varDef","argConfig","argMatchCount_1","removeArgumentsFromDocument","removeFragmentSpreadFromDocument","addTypenameToDocument","connectionRemoveConfig","willRemove","removeConnectionDirectiveFromDocument","allFragments","buildQueryFromSelectionSet","removeClientSetsFromDocument","asyncGeneratorStep","gen","_next","_throw","_asyncToGenerator","_createClass","_inheritsLoose","_regeneratorRuntime","Op","$Symbol","iteratorSymbol","asyncIteratorSymbol","asyncIterator","toStringTagSymbol","define","innerFn","outerFn","tryLocsList","protoGenerator","Generator","_invoke","doneResult","delegateResult","maybeInvokeDelegate","ContinueSentinel","_sent","dispatchException","abrupt","tryCatch","GeneratorFunction","GeneratorFunctionPrototype","IteratorPrototype","getProto","NativeIteratorPrototype","Gp","defineIteratorMethods","AsyncIterator","PromiseImpl","invoke","__await","unwrapped","previousPromise","callInvokeWithMethodAndArg","nextLoc","pushTryEntry","locs","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","resetTryEntry","completion","iteratorMethod","isGeneratorFunction","genFun","ctor","awrap","async","skipTempReset","rootRecord","rval","hasCatch","hasFinally","finallyEntry","finish","thrown","delegateYield","arrayWithHoles","unsupportedIterableToArray","nonIterableRest","_taggedTemplateLiteral","strings","arrayLikeToArray","iterableToArray","epsilon","tauEpsilon","Path","quadraticCurveTo","arcTo","x21","y21","x01","y01","l01_2","x20","y20","l21_2","l20_2","l21","l01","t01","t21","a0","ccw","cw","band","ordinal","ordinalRange","paddingInner","paddingOuter","pointish","initRange","initInterpolator","InternMap","keyof","_intern","intern_get","intern_set","intern_delete","InternSet","implicit","inspect","formatValue","seenValues","previouslySeenValues","customInspectFn","getCustomFn","customValue","formatArray","getObjectTag","formatObject","formatObjectValue","nodejsCustomInspectSymbol","defineInspect","classObject","Location","Token","dedentBlockStringValue","rawString","commonIndent","_commonIndent","isFirstLine","isEmptyLine","getBlockStringIndentation","startLine","isBlank","endLine","printBlockString","indentation","preferMultipleLines","isSingleLine","hasLeadingSpace","hasTrailingQuote","printAsMultipleLines","devAssert","Source","isSource","QueryDocumentKeys","BREAK","visit","visitor","visitorKeys","inArray","edits","ancestors","newRoot","isEdited","_Object$keys2","editOffset","editKey","editValue","_visitorKeys$node$kin","visitFn","getVisitFn","kindVisitor","kindSpecificVisitor","specificVisitor","specificKindVisitor","SYMBOL_TO_STRING_TAG","consoleLogger","Logger","concreteLogger","logger","lvl","debugOnly","moduleName","baseLogger","cloned","_cloned","rej","makeString","getLastOfPath","Empty","cleanKey","canNotTraverseDeeper","setPath","_getLastOfPath","_getLastOfPath3","getPathWithDefaults","defaultData","deepExtend","regexEscape","_entityMap","isIE10","userAgentData","chars","deepFind","keySeparator","mix","endsWith","joinedPath","ResourceStore","_EventEmitter","silent","addNamespaces","addResource","deep","removeNamespaces","getResource","compatibilityAPI","getDataByLanguage","postProcessor","processors","addPostProcessor","translator","processor","_createSuper$1","_isNativeReflectConstruct$1","checkedLoadedFor","Translator","language","interpolation","nsSeparator","wouldCheckForNsInKey","seemsNaturalLanguage","userDefinedKeySeparator","userDefinedNsSeparator","possibleChars","looksLikeObjectPath","nestingRegexp","lastKey","overloadTranslationOptionHandler","returnDetails","_this$extractFromKey","extractFromKey","appendNamespaceToCIMode","resUsedKey","usedKey","resExactUsedKey","exactUsedKey","resType","noObject","joinArrays","handleAsObjectInI18nFormat","i18nFormat","handleAsObject","returnObjects","returnedObjectHandler","resTypeIsArray","newKeyToUse","deepKey","extendTranslation","usedDefault","needsPluralHandling","hasDefaultValue","defaultValueSuffix","pluralResolver","getSuffix","isValidLookup","missingKeyNoValueFallbackToKey","resForMissing","updateMissing","lngs","fallbackLngs","languageUtils","getFallbackCodes","saveMissingTo","toResolveHierarchy","send","specificDefaultValue","defaultForMissing","missingKeyHandler","saveMissing","saveMissingPlurals","getSuffixes","appendNamespaceToMissingKey","parseMissingKeyHandler","defaultVariables","usedLng","usedNS","skipInterpolation","nestBef","skipOnVariables","nest","postProcess","postProcessorNames","applyPostProcessor","postProcessPassResolved","i18nResolved","fallbackNS","needsZeroSuffixLookup","shouldUseIntlApi","needsContextHandling","codes","possibleKey","finalKeys","addLookupKeys","pluralSuffix","zeroSuffix","pluralSeparator","contextSeparator","returnNull","returnEmptyString","resourceStore","LanguageUtil","supportedLngs","formatLanguageCode","specialCases","lowerCaseLng","cleanCode","load","nonExplicitSupportedLngs","getLanguagePartFromCode","cleanedLng","isSupportedCode","lngOnly","supportedLng","getScriptPartFromCode","fallbackCode","fallbackCodes","addCode","nr","_rulesPluralsTypes","deprecatedJsonVersions","suffixesOrder","two","few","createRules","numbers","plurals","PluralResolver","compatibilityJSON","Intl","PluralRules","resolvedOptions","pluralCategories","pluralCategory1","pluralCategory2","pluralCategory","prepend","getSuffixRetroCompatible","noAbs","simplifyPluralSuffix","returnSuffix","ownKeys$3","_objectSpread$3","Interpolator","escapeValue","iOpts","useRawValueToEscape","prefixEscaped","suffixEscaped","formatSeparator","unescapePrefix","unescapeSuffix","nestingPrefix","nestingPrefixEscaped","nestingSuffix","nestingSuffixEscaped","nestingOptionsSeparator","maxReplaces","alwaysFormat","resetRegExp","regexpStr","regexpUnescapeStr","regexpUnescape","nestingRegexpStr","replaces","regexSafe","handleFormat","interpolationkey","missingInterpolationHandler","safeValue","todo","matchedVar","clonedOptions","handleHasOptions","inheritedOptions","sep","optionsString","formatters","doReduce","ownKeys$4","_objectSpread$4","parseFormatStr","formatName","formatOptions","optStr","opt","_opt$split","_opt$split2","Formatter","NumberFormat","DateTimeFormat","relativetime","RelativeTimeFormat","ListFormat","_format","mem","_parseFormatStr","valOptions","formatParams","ownKeys$5","_objectSpread$5","_createSuper$2","_isNativeReflectConstruct$2","Connector","waitingReads","maxParallelReads","readingCalls","maxRetries","retryTimeout","toLoad","toLoadLanguages","toLoadNamespaces","hasAllNamespaces","reload","pendingCount","loaded","addResourceBundle","_getLastOfPath2","removePending","loadedKeys","fcName","tried","queueLoad","loadOne","prepareLoading","_this5","fallbackValue","isUpdate","initImmediate","preload","tDescription","transformOptions","ownKeys$6","_objectSpread$6","_createSuper$3","_isNativeReflectConstruct$3","bindMemberFunctions","I18n","modules","isClone","defOpts","createClassOnDemand","ClassOrObject","lu","languageDetector","detection","storeApi","_this2$store","storeApiChained","_this2$store2","changeLanguage","usedCallback","append","resolvedLanguage","setResolvedLanguage","lngInLngs","hasLanguageSomeTranslations","setLngProps","setLng","getBestMatchFromCodes","cacheUserLanguage","loadResources","detect","fixedT","resultKey","_this$translator","_this$translator2","exists","_this6","preResult","_this7","preloaded","newLngs","_this8","membersToCopy","createInstance","reloadResources","setDefaultNamespace","loadLanguages","_createForOfIteratorHelperLoose","allowArrayLike","hasSymbols","getSymbol","SymbolIterator","SymbolObservable","SymbolSpecies","getMethod","getSpecies","Observable","isObservable","hostReportError","enqueue","cleanupSubscription","_cleanup","closeSubscription","_queue","notifySubscription","onNotify","flushSubscription","subscriptionObserver","SubscriptionObserver","_subscriber","_proto3","hasSeed","startNext","flatMap","completeIfDone","closed","_step","_iterator"],"sourceRoot":""}