first commit
4
.browserslistrc
Normal file
@@ -0,0 +1,4 @@
|
||||
> 1%
|
||||
last 2 versions
|
||||
not dead
|
||||
not ie 11
|
||||
38
.editorconfig
Normal file
@@ -0,0 +1,38 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
# Unix-style newlines with a newline ending every file
|
||||
[*]
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
|
||||
# Matches multiple files with brace expansion notation
|
||||
# Set default charset
|
||||
[*.{js,py}]
|
||||
charset = utf-8
|
||||
|
||||
# 4 space indentation
|
||||
[*.py]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
# 2 space indentation
|
||||
[*.{vue,scss,ts}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
# Tab indentation (no size specified)
|
||||
[Makefile]
|
||||
indent_style = tab
|
||||
|
||||
# Indentation override for all JS under lib directory
|
||||
[lib/**.js]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
# Matches the exact files either package.json or .travis.yml
|
||||
[{package.json,.travis.yml}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
179
.eslintrc.cjs
Normal file
@@ -0,0 +1,179 @@
|
||||
module.exports = {
|
||||
env: {
|
||||
browser: true,
|
||||
es2021: true,
|
||||
},
|
||||
extends: [
|
||||
'@antfu/eslint-config-vue',
|
||||
'plugin:vue/vue3-recommended',
|
||||
'plugin:import/recommended',
|
||||
'plugin:import/typescript',
|
||||
'plugin:promise/recommended',
|
||||
'plugin:sonarjs/recommended',
|
||||
'plugin:@typescript-eslint/recommended',
|
||||
'plugin:case-police/recommended',
|
||||
'plugin:regexp/recommended',
|
||||
|
||||
// 'plugin:unicorn/recommended',
|
||||
],
|
||||
parser: 'vue-eslint-parser',
|
||||
parserOptions: {
|
||||
ecmaVersion: 13,
|
||||
parser: '@typescript-eslint/parser',
|
||||
sourceType: 'module',
|
||||
},
|
||||
plugins: [
|
||||
'vue',
|
||||
'@typescript-eslint',
|
||||
'regex',
|
||||
'regexp',
|
||||
],
|
||||
ignorePatterns: ['node_modules', 'dist', '*.d.ts', 'vendor', '*.json'],
|
||||
rules: {
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
|
||||
// indentation (Already present in TypeScript)
|
||||
'comma-spacing': ['error', { before: false, after: true }],
|
||||
'key-spacing': ['error', { afterColon: true }],
|
||||
'n/prefer-global/process': ['off'],
|
||||
'sonarjs/cognitive-complexity': ['off'],
|
||||
|
||||
'vue/first-attribute-linebreak': ['error', {
|
||||
singleline: 'beside',
|
||||
multiline: 'below',
|
||||
}],
|
||||
|
||||
'antfu/top-level-function': 'off',
|
||||
'@typescript-eslint/no-explicit-any': 'off',
|
||||
|
||||
// indentation (Already present in TypeScript)
|
||||
'indent': ['error', 2],
|
||||
|
||||
// Enforce trailing comma (Already present in TypeScript)
|
||||
'comma-dangle': ['error', 'always-multiline'],
|
||||
|
||||
// Enforce consistent spacing inside braces of object (Already present in TypeScript)
|
||||
'object-curly-spacing': ['error', 'always'],
|
||||
|
||||
// Enforce camelCase naming convention
|
||||
'camelcase': 'off',
|
||||
|
||||
// Disable max-len
|
||||
'max-len': 'off',
|
||||
|
||||
// we don't want it
|
||||
'semi': ['error', 'never'],
|
||||
|
||||
// add parens ony when required in arrow function
|
||||
'arrow-parens': ['error', 'as-needed'],
|
||||
|
||||
// add new line above comment
|
||||
'newline-before-return': 'error',
|
||||
|
||||
// add new line above comment
|
||||
'lines-around-comment': [
|
||||
'error',
|
||||
{
|
||||
beforeBlockComment: true,
|
||||
beforeLineComment: true,
|
||||
allowBlockStart: true,
|
||||
allowClassStart: true,
|
||||
allowObjectStart: true,
|
||||
allowArrayStart: true,
|
||||
},
|
||||
],
|
||||
|
||||
// Ignore _ as unused variable
|
||||
'@typescript-eslint/no-unused-vars': ['error', { varsIgnorePattern: '^_+$', argsIgnorePattern: '^_+$' }],
|
||||
|
||||
'array-element-newline': ['error', 'consistent'],
|
||||
'array-bracket-newline': ['error', 'consistent'],
|
||||
|
||||
'vue/multi-word-component-names': 'off',
|
||||
|
||||
'padding-line-between-statements': [
|
||||
'error',
|
||||
{ blankLine: 'always', prev: 'expression', next: 'const' },
|
||||
{ blankLine: 'always', prev: 'const', next: 'expression' },
|
||||
{ blankLine: 'always', prev: 'multiline-const', next: '*' },
|
||||
{ blankLine: 'always', prev: '*', next: 'multiline-const' },
|
||||
],
|
||||
|
||||
// Plugin: eslint-plugin-import
|
||||
'import/prefer-default-export': 'off',
|
||||
'import/newline-after-import': ['error', { count: 1 }],
|
||||
'no-restricted-imports': ['error', 'vuetify/components'],
|
||||
|
||||
// For omitting extension for ts files
|
||||
'import/extensions': [
|
||||
'error',
|
||||
'ignorePackages',
|
||||
{
|
||||
js: 'never',
|
||||
jsx: 'never',
|
||||
ts: 'never',
|
||||
tsx: 'never',
|
||||
},
|
||||
],
|
||||
|
||||
// Thanks: https://stackoverflow.com/a/63961972/10796681
|
||||
'no-shadow': 'off',
|
||||
'@typescript-eslint/no-shadow': ['error'],
|
||||
|
||||
'@typescript-eslint/consistent-type-imports': 'error',
|
||||
|
||||
// Plugin: eslint-plugin-promise
|
||||
'promise/always-return': 'off',
|
||||
'promise/catch-or-return': 'off',
|
||||
|
||||
// ESLint plugin vue
|
||||
'vue/block-tag-newline': 'error',
|
||||
'vue/component-api-style': 'error',
|
||||
'vue/component-name-in-template-casing': ['error', 'PascalCase', { registeredComponentsOnly: false, ignores: ['/^swiper-/'] }],
|
||||
'vue/custom-event-name-casing': ['error', 'camelCase', {
|
||||
ignores: [
|
||||
'/^(click):[a-z]+((\d)|([A-Z0-9][a-z0-9]+))*([A-Z])?/',
|
||||
],
|
||||
}],
|
||||
'vue/define-macros-order': 'error',
|
||||
'vue/html-comment-content-newline': 'error',
|
||||
'vue/html-comment-content-spacing': 'error',
|
||||
'vue/html-comment-indent': 'error',
|
||||
'vue/match-component-file-name': 'error',
|
||||
'vue/no-child-content': 'error',
|
||||
'vue/require-default-prop': 'off',
|
||||
|
||||
'vue/no-duplicate-attr-inheritance': 'error',
|
||||
'vue/no-empty-component-block': 'error',
|
||||
'vue/no-multiple-objects-in-class': 'error',
|
||||
'vue/no-reserved-component-names': 'error',
|
||||
'vue/no-template-target-blank': 'error',
|
||||
'vue/no-useless-mustaches': 'error',
|
||||
'vue/no-useless-v-bind': 'error',
|
||||
'vue/padding-line-between-blocks': 'error',
|
||||
'vue/prefer-separate-static-class': 'error',
|
||||
'vue/prefer-true-attribute-shorthand': 'off',
|
||||
'vue/v-on-function-call': 'error',
|
||||
'vue/no-restricted-class': ['error', '/^(p|m)(l|r)-/'],
|
||||
'vue/valid-v-slot': ['error', {
|
||||
allowModifiers: true,
|
||||
}],
|
||||
|
||||
// -- Extension Rules
|
||||
'vue/no-irregular-whitespace': 'error',
|
||||
'vue/template-curly-spacing': 'error',
|
||||
|
||||
// -- Sonarlint
|
||||
'sonarjs/no-duplicate-string': 'off',
|
||||
'sonarjs/no-nested-template-literals': 'off',
|
||||
'vue/no-v-html': 'off',
|
||||
'vue/no-v-text-v-html-on-component': 'off',
|
||||
},
|
||||
settings: {
|
||||
'import/resolver': {
|
||||
node: true,
|
||||
typescript: {},
|
||||
},
|
||||
},
|
||||
}
|
||||
22
.gitignore
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
.DS_Store
|
||||
node_modules
|
||||
/dist
|
||||
|
||||
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
46
.stylelintrc.json
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"extends": [
|
||||
"stylelint-config-standard-scss",
|
||||
"stylelint-config-idiomatic-order",
|
||||
"@stylistic/stylelint-config"
|
||||
],
|
||||
"plugins": [
|
||||
"stylelint-use-logical-spec",
|
||||
"@stylistic/stylelint-plugin"
|
||||
],
|
||||
"overrides": [
|
||||
{
|
||||
"files": [
|
||||
"**/*.scss"
|
||||
],
|
||||
"customSyntax": "postcss-scss"
|
||||
},
|
||||
{
|
||||
"files": [
|
||||
"**/*.vue"
|
||||
],
|
||||
"customSyntax": "postcss-html"
|
||||
}
|
||||
],
|
||||
"rules": {
|
||||
"@stylistic/max-line-length": [
|
||||
220,
|
||||
{
|
||||
"ignore": "comments"
|
||||
}
|
||||
],
|
||||
"@stylistic/indentation": 2,
|
||||
"liberty/use-logical-spec": true,
|
||||
"selector-class-pattern": null,
|
||||
"color-function-notation": null,
|
||||
"annotation-no-unknown": [
|
||||
true,
|
||||
{
|
||||
"ignoreAnnotations": [
|
||||
"default"
|
||||
]
|
||||
}
|
||||
],
|
||||
"media-feature-range-notation": null
|
||||
}
|
||||
}
|
||||
13
.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"dbaeumer.vscode-eslint",
|
||||
"editorconfig.editorconfig",
|
||||
"xabikos.javascriptsnippets",
|
||||
"stylelint.vscode-stylelint",
|
||||
"fabiospampinato.vscode-highlight",
|
||||
"github.vscode-pull-request-github",
|
||||
"vue.volar",
|
||||
"cipchk.cssrem",
|
||||
"dongido.sync-env"
|
||||
]
|
||||
}
|
||||
81
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
{
|
||||
"editor.formatOnSave": true,
|
||||
"files.insertFinalNewline": true,
|
||||
"javascript.updateImportsOnFileMove.enabled": "always",
|
||||
"[javascript]": {
|
||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
||||
},
|
||||
"[typescript]": {
|
||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
||||
"editor.autoClosingBrackets": "always"
|
||||
},
|
||||
"[markdown]": {
|
||||
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
|
||||
},
|
||||
// SCSS
|
||||
"[scss]": {
|
||||
"editor.defaultFormatter": "stylelint.vscode-stylelint"
|
||||
},
|
||||
// JSON
|
||||
"[json]": {
|
||||
"editor.defaultFormatter": "vscode.json-language-features"
|
||||
},
|
||||
"[jsonc]": {
|
||||
"editor.defaultFormatter": "vscode.json-language-features"
|
||||
},
|
||||
// Vue
|
||||
"[vue]": {
|
||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
||||
},
|
||||
// Extension: Volar
|
||||
"volar.preview.port": 3000,
|
||||
"volar.completion.preferredTagNameCase": "pascal",
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.eslint": "explicit",
|
||||
"source.fixAll.stylelint": "explicit",
|
||||
"source.organizeImports": "explicit"
|
||||
},
|
||||
"eslint.alwaysShowStatus": true,
|
||||
"eslint.format.enable": true,
|
||||
"eslint.packageManager": "yarn",
|
||||
// Extension: Stylelint
|
||||
"stylelint.packageManager": "yarn",
|
||||
"stylelint.validate": [
|
||||
"css",
|
||||
"scss",
|
||||
"vue"
|
||||
],
|
||||
// Extension: Spell Checker
|
||||
"cSpell.words": [
|
||||
"Composables",
|
||||
"Customizer",
|
||||
"flagpack",
|
||||
"psudo",
|
||||
"stylelint",
|
||||
"touchless",
|
||||
"triggerer",
|
||||
"vuetify",
|
||||
"nuxt"
|
||||
],
|
||||
// Extension: fabiospampinato.vscode-highlight
|
||||
"highlight.regexFlags": "gi",
|
||||
"highlight.regexes": {
|
||||
// We flaged this for enforcing logical CSS properties
|
||||
"(100vh|translate|margin:|padding:|margin-left|margin-right|rotate|text-align|border-top|border-right|border-bottom|border-left|float|background-position|transform|width|height|top|left|bottom|right|float|clear|(p|m)(l|r)-|border-(start|end)-(start|end)-radius)": [
|
||||
{
|
||||
// "rangeBehavior": 1,
|
||||
"borderWidth": "1px",
|
||||
"borderColor": "tomato",
|
||||
"borderStyle": "solid"
|
||||
}
|
||||
],
|
||||
"(overflow-x:|overflow-y:)": [
|
||||
{
|
||||
// "rangeBehavior": 1,
|
||||
"borderWidth": "1px",
|
||||
"borderColor": "green",
|
||||
"borderStyle": "solid"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
18
.vscode/vue-ts.code-snippets
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"Vue TS - DefineProps": {
|
||||
"prefix": "dprops",
|
||||
"body": [
|
||||
"defineProps<${1:Props}>()"
|
||||
],
|
||||
"description": "DefineProps in script setup"
|
||||
},
|
||||
"Vue TS - Props interface": {
|
||||
"prefix": "iprops",
|
||||
"body": [
|
||||
"interface Props {",
|
||||
" ${1}",
|
||||
"}"
|
||||
],
|
||||
"description": "Create props interface in script setup"
|
||||
}
|
||||
}
|
||||
49
.vscode/vue.code-snippets
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"script": {
|
||||
"prefix": "vue-sfc-ts",
|
||||
"body": [
|
||||
"<script lang=\"ts\" setup>",
|
||||
"",
|
||||
"</script>",
|
||||
"",
|
||||
"<template>",
|
||||
" ",
|
||||
"</template>",
|
||||
"",
|
||||
"<style lang=\"scss\">",
|
||||
"",
|
||||
"</style>",
|
||||
""
|
||||
],
|
||||
"description": "Vue SFC Typescript"
|
||||
},
|
||||
"template": {
|
||||
"scope": "vue",
|
||||
"prefix": "template",
|
||||
"body": [
|
||||
"<template>",
|
||||
" $1",
|
||||
"</template>"
|
||||
],
|
||||
"description": "Create <template> block"
|
||||
},
|
||||
"Script setup + TS": {
|
||||
"prefix": "script-setup-ts",
|
||||
"body": [
|
||||
"<script setup lang=\"ts\">",
|
||||
"${1}",
|
||||
"</script>"
|
||||
],
|
||||
"description": "Script setup + TS"
|
||||
},
|
||||
"style": {
|
||||
"scope": "vue",
|
||||
"prefix": "style",
|
||||
"body": [
|
||||
"<style lang=\"scss\">",
|
||||
"$1",
|
||||
"</style>"
|
||||
],
|
||||
"description": "Create <style> block"
|
||||
},
|
||||
}
|
||||
47
README.md
Normal file
@@ -0,0 +1,47 @@
|
||||
# default
|
||||
|
||||
## Project setup
|
||||
|
||||
https://prime-dash-admin-tempate.netlify.app/
|
||||
|
||||
```
|
||||
# yarn
|
||||
yarn
|
||||
|
||||
# npm
|
||||
npm install
|
||||
|
||||
# pnpm
|
||||
pnpm install
|
||||
```
|
||||
|
||||
### Compiles and hot-reloads for development
|
||||
|
||||
```
|
||||
# yarn
|
||||
yarn dev
|
||||
|
||||
# npm
|
||||
npm run dev
|
||||
|
||||
# pnpm
|
||||
pnpm dev
|
||||
```
|
||||
|
||||
### Compiles and minifies for production
|
||||
|
||||
```
|
||||
# yarn
|
||||
yarn build
|
||||
|
||||
# npm
|
||||
npm run build
|
||||
|
||||
# pnpm
|
||||
pnpm build
|
||||
```
|
||||
|
||||
### Customize configuration
|
||||
|
||||
See [Configuration Reference](https://vitejs.dev/config/).
|
||||
"# vue-learning-project"
|
||||
16
appConfig.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { config } from '@/composable/useConfig'
|
||||
|
||||
// default settings
|
||||
export const appConfig = config({
|
||||
title: ref('PrimeDash'),
|
||||
theme: ref('system'),
|
||||
navigationMenu: ref('vertical'), // horizontal or vertical
|
||||
isBoxLayout: ref(true),
|
||||
isVerticalMenuMini: ref(false),
|
||||
defaultLocale: ref('en'), // en | fr | ar
|
||||
isRtl: ref(false),
|
||||
isSemiDark: ref(false),
|
||||
skins: ref('modern'), // classic | modern | decent | bordered
|
||||
isNavbarFixed: ref(true),
|
||||
routeTransition: ref('slide-x-transition'), // choose `none` to disable the route transition
|
||||
})
|
||||
145
auto-imports.d.ts
vendored
Normal file
@@ -0,0 +1,145 @@
|
||||
/* eslint-disable */
|
||||
/* prettier-ignore */
|
||||
// @ts-nocheck
|
||||
// noinspection JSUnusedGlobalSymbols
|
||||
// Generated by unplugin-auto-import
|
||||
// biome-ignore lint: disable
|
||||
export {}
|
||||
declare global {
|
||||
const EffectScope: typeof import('vue')['EffectScope']
|
||||
const computed: typeof import('vue')['computed']
|
||||
const createApp: typeof import('vue')['createApp']
|
||||
const customRef: typeof import('vue')['customRef']
|
||||
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
|
||||
const defineComponent: typeof import('vue')['defineComponent']
|
||||
const effectScope: typeof import('vue')['effectScope']
|
||||
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
||||
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
||||
const h: typeof import('vue')['h']
|
||||
const inject: typeof import('vue')['inject']
|
||||
const isProxy: typeof import('vue')['isProxy']
|
||||
const isReactive: typeof import('vue')['isReactive']
|
||||
const isReadonly: typeof import('vue')['isReadonly']
|
||||
const isRef: typeof import('vue')['isRef']
|
||||
const markRaw: typeof import('vue')['markRaw']
|
||||
const nextTick: typeof import('vue')['nextTick']
|
||||
const onActivated: typeof import('vue')['onActivated']
|
||||
const onBeforeMount: typeof import('vue')['onBeforeMount']
|
||||
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
|
||||
const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']
|
||||
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
|
||||
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
|
||||
const onDeactivated: typeof import('vue')['onDeactivated']
|
||||
const onErrorCaptured: typeof import('vue')['onErrorCaptured']
|
||||
const onMounted: typeof import('vue')['onMounted']
|
||||
const onRenderTracked: typeof import('vue')['onRenderTracked']
|
||||
const onRenderTriggered: typeof import('vue')['onRenderTriggered']
|
||||
const onScopeDispose: typeof import('vue')['onScopeDispose']
|
||||
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
|
||||
const onUnmounted: typeof import('vue')['onUnmounted']
|
||||
const onUpdated: typeof import('vue')['onUpdated']
|
||||
const onWatcherCleanup: typeof import('vue')['onWatcherCleanup']
|
||||
const provide: typeof import('vue')['provide']
|
||||
const reactive: typeof import('vue')['reactive']
|
||||
const readonly: typeof import('vue')['readonly']
|
||||
const ref: typeof import('vue')['ref']
|
||||
const resolveComponent: typeof import('vue')['resolveComponent']
|
||||
const shallowReactive: typeof import('vue')['shallowReactive']
|
||||
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
||||
const shallowRef: typeof import('vue')['shallowRef']
|
||||
const toRaw: typeof import('vue')['toRaw']
|
||||
const toRef: typeof import('vue')['toRef']
|
||||
const toRefs: typeof import('vue')['toRefs']
|
||||
const toValue: typeof import('vue')['toValue']
|
||||
const triggerRef: typeof import('vue')['triggerRef']
|
||||
const unref: typeof import('vue')['unref']
|
||||
const useAttrs: typeof import('vue')['useAttrs']
|
||||
const useCssModule: typeof import('vue')['useCssModule']
|
||||
const useCssVars: typeof import('vue')['useCssVars']
|
||||
const useId: typeof import('vue')['useId']
|
||||
const useLink: typeof import('vue-router')['useLink']
|
||||
const useModel: typeof import('vue')['useModel']
|
||||
const useRoute: typeof import('vue-router')['useRoute']
|
||||
const useRouter: typeof import('vue-router')['useRouter']
|
||||
const useSlots: typeof import('vue')['useSlots']
|
||||
const useTemplateRef: typeof import('vue')['useTemplateRef']
|
||||
const watch: typeof import('vue')['watch']
|
||||
const watchEffect: typeof import('vue')['watchEffect']
|
||||
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
||||
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
||||
}
|
||||
// for type re-export
|
||||
declare global {
|
||||
// @ts-ignore
|
||||
export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
|
||||
import('vue')
|
||||
}
|
||||
|
||||
// for vue template auto import
|
||||
import { UnwrapRef } from 'vue'
|
||||
declare module 'vue' {
|
||||
interface GlobalComponents {}
|
||||
interface ComponentCustomProperties {
|
||||
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
|
||||
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|
||||
readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
|
||||
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
|
||||
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
||||
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
||||
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
||||
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
||||
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
||||
readonly h: UnwrapRef<typeof import('vue')['h']>
|
||||
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
||||
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
|
||||
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
||||
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
||||
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
||||
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
|
||||
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
|
||||
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
|
||||
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
|
||||
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
|
||||
readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
|
||||
readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
|
||||
readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
|
||||
readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
|
||||
readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
|
||||
readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
|
||||
readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
|
||||
readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
|
||||
readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
|
||||
readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
|
||||
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
|
||||
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
|
||||
readonly onWatcherCleanup: UnwrapRef<typeof import('vue')['onWatcherCleanup']>
|
||||
readonly provide: UnwrapRef<typeof import('vue')['provide']>
|
||||
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
|
||||
readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
|
||||
readonly ref: UnwrapRef<typeof import('vue')['ref']>
|
||||
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
||||
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
||||
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
||||
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
||||
readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
|
||||
readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
|
||||
readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
|
||||
readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
|
||||
readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
|
||||
readonly unref: UnwrapRef<typeof import('vue')['unref']>
|
||||
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
|
||||
readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
|
||||
readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
|
||||
readonly useId: UnwrapRef<typeof import('vue')['useId']>
|
||||
readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
|
||||
readonly useModel: UnwrapRef<typeof import('vue')['useModel']>
|
||||
readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
|
||||
readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
|
||||
readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
|
||||
readonly useTemplateRef: UnwrapRef<typeof import('vue')['useTemplateRef']>
|
||||
readonly watch: UnwrapRef<typeof import('vue')['watch']>
|
||||
readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
|
||||
readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
|
||||
readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
|
||||
}
|
||||
}
|
||||
35
index.html
Normal file
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>PrimeDash - Dashboard admin template</title>
|
||||
<link rel="stylesheet" type="text/css" href="/loader.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app">
|
||||
<div id="loading-bg">
|
||||
<div class="loading">
|
||||
<div class="effect-1 effects"></div>
|
||||
<div class="effect-2 effects"></div>
|
||||
<div class="effect-3 effects"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
<script>
|
||||
const loaderColor = localStorage.getItem('loader-bg') || '#FFFFFF'
|
||||
const primaryColor = localStorage.getItem('app-preset') || '#0D9394'
|
||||
|
||||
if (loaderColor)
|
||||
document.documentElement.style.setProperty('--loader-bg', loaderColor)
|
||||
|
||||
if (primaryColor)
|
||||
document.documentElement.style.setProperty('--loader-color', primaryColor)
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
12418
package-lock.json
generated
Normal file
90
package.json
Normal file
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"name": "prime-dash",
|
||||
"version": "1.0.0",
|
||||
"private": "true",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite --host",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview",
|
||||
"lint": "eslint . -c .eslintrc.cjs --fix --ext .ts,.js,.vue,.tsx,.jsx"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fullcalendar/core": "^6.1.13",
|
||||
"@fullcalendar/daygrid": "^6.1.13",
|
||||
"@fullcalendar/interaction": "^6.1.13",
|
||||
"@fullcalendar/timegrid": "^6.1.13",
|
||||
"@fullcalendar/vue3": "^6.1.13",
|
||||
"@mdi/font": "7.4.47",
|
||||
"@types/webfontloader": "^1.6.38",
|
||||
"@videojs-player/vue": "^1.0.0",
|
||||
"@vuepic/vue-datepicker": "^9.0.3",
|
||||
"@vueup/vue-quill": "^1.2.0",
|
||||
"@vueuse/core": "^11.1.0",
|
||||
"@vueuse/integrations": "^11.1.0",
|
||||
"@yeger/vue-masonry-wall": "^5.0.15",
|
||||
"apexcharts": "3.53.0",
|
||||
"axios": "^1.7.7",
|
||||
"axios-mock-adapter": "^2.0.0",
|
||||
"chart.js": "^4.4.4",
|
||||
"cleave.js": "^1.6.0",
|
||||
"or": "^0.2.0",
|
||||
"pinia": "^2.2.2",
|
||||
"postcss-scss": "^4.0.9",
|
||||
"prismjs": "^1.29.0",
|
||||
"roboto-fontface": "^0.10.0",
|
||||
"sass": "1.78.0",
|
||||
"sortablejs": "^1.15.3",
|
||||
"swiper": "^11.1.14",
|
||||
"video.js": "^8.17.4",
|
||||
"vue": "3.5.10",
|
||||
"vue-chartjs": "^5.3.1",
|
||||
"vue-i18n": "^10.0.3",
|
||||
"vue-prism-component": "^2.0.0",
|
||||
"vue-router": "4.4.5",
|
||||
"vue3-apexcharts": "^1.6.0",
|
||||
"vue3-perfect-scrollbar": "^1.6.1",
|
||||
"vue3-toastify": "^0.2.3",
|
||||
"vuetify": "^3.7.2",
|
||||
"webfontloader": "^1.6.28"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antfu/eslint-config-vue": "^0.43.1",
|
||||
"@stylistic/stylelint-config": "^2.0.0",
|
||||
"@stylistic/stylelint-plugin": "^3.1.0",
|
||||
"@types/node": "^22.7.4",
|
||||
"@typescript-eslint/eslint-plugin": "^7.6.0",
|
||||
"@typescript-eslint/parser": "^7.6.0",
|
||||
"@vitejs/plugin-vue": "^5.1.4",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-config-airbnb-base": "^15.0.0",
|
||||
"eslint-import-resolver-typescript": "^3.6.1",
|
||||
"eslint-plugin-case-police": "^0.6.1",
|
||||
"eslint-plugin-import": "^2.29.1",
|
||||
"eslint-plugin-promise": "^6.1.1",
|
||||
"eslint-plugin-regex": "^1.10.0",
|
||||
"eslint-plugin-regexp": "^2.5.0",
|
||||
"eslint-plugin-sonarjs": "^0.24.0",
|
||||
"eslint-plugin-unicorn": "^51.0.1",
|
||||
"eslint-plugin-vue": "^9.24.1",
|
||||
"postcss-html": "^1.7.0",
|
||||
"stylelint": "16.9.0",
|
||||
"stylelint-config-idiomatic-order": "10.0.0",
|
||||
"stylelint-config-standard-scss": "13.1.0",
|
||||
"stylelint-use-logical-spec": "5.0.1",
|
||||
"typescript": "5.6.2",
|
||||
"unplugin-auto-import": "^0.18.3",
|
||||
"vite": "^5.4.8",
|
||||
"vite-plugin-vue-devtools": "^7.4.6",
|
||||
"vite-plugin-vuetify": "^2.0.4",
|
||||
"vue-tsc": "^2.1.6"
|
||||
},
|
||||
"resolutions": {
|
||||
"postcss": "8",
|
||||
"@types/video.js": "^7"
|
||||
},
|
||||
"overrides": {
|
||||
"postcss": "^8",
|
||||
"@types/video.js": "^7"
|
||||
}
|
||||
}
|
||||
7756
pnpm-lock.yaml
generated
Normal file
BIN
public/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
79
public/loader.css
Normal file
@@ -0,0 +1,79 @@
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
html {
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
#loading-bg {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: var(--loader-bg, #fff);
|
||||
block-size: 100%;
|
||||
gap: 1rem 0;
|
||||
inline-size: 100%;
|
||||
}
|
||||
|
||||
.loading {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
border: 3px solid transparent;
|
||||
border-radius: 50%;
|
||||
block-size: 55px;
|
||||
inline-size: 55px;
|
||||
}
|
||||
|
||||
.loading .effect-1,
|
||||
.loading .effect-2,
|
||||
.loading .effect-3 {
|
||||
position: absolute;
|
||||
box-sizing: border-box;
|
||||
border: 3px solid transparent;
|
||||
border-radius: 50%;
|
||||
block-size: 100%;
|
||||
border-inline-start: 3px solid var(--loader-color, #eee);
|
||||
inline-size: 100%;
|
||||
}
|
||||
|
||||
.loading .effect-1 {
|
||||
animation: rotate 1s ease infinite;
|
||||
}
|
||||
|
||||
.loading .effect-2 {
|
||||
animation: rotate-opacity 1s ease infinite 0.1s;
|
||||
}
|
||||
|
||||
.loading .effect-3 {
|
||||
animation: rotate-opacity 1s ease infinite 0.2s;
|
||||
}
|
||||
|
||||
.loading .effects {
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
@keyframes rotate {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(1turn);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotate-opacity {
|
||||
0% {
|
||||
opacity: 0.1;
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: rotate(1turn);
|
||||
}
|
||||
}
|
||||
14
shims.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
declare module '*.vue' {
|
||||
import type { DefineComponent } from 'vue'
|
||||
|
||||
const component: DefineComponent<{}, {}, any>
|
||||
export default component
|
||||
}
|
||||
|
||||
declare module 'vue-prism-component' {
|
||||
import { ComponentOptions } from 'vue'
|
||||
const component: ComponentOptions
|
||||
export default component
|
||||
}
|
||||
declare module 'vue-shepherd';
|
||||
declare module '@videojs-player/vue';
|
||||
43
src/App.vue
Normal file
@@ -0,0 +1,43 @@
|
||||
<script setup lang="ts">
|
||||
import { useRouter } from 'vue-router'
|
||||
import { useAppConfig } from '@/composable/useAppConfig'
|
||||
import Blank from '@/layouts/Blank.vue'
|
||||
import Default from '@/layouts/Default.vue'
|
||||
import { appConfig } from '@appConfig'
|
||||
|
||||
const route = useRouter()
|
||||
const { initLoadingTheme, rootClasses } = useAppConfig()
|
||||
|
||||
const resolveLayoutVariant = computed(() => {
|
||||
if (route.currentRoute.value.meta.layout === 'content')
|
||||
return Default
|
||||
|
||||
if (route.currentRoute.value.meta.layout === 'blank')
|
||||
return Blank
|
||||
|
||||
return false
|
||||
})
|
||||
|
||||
// set rtl through @appConfig.ts
|
||||
const setAppRtl = computed(() => {
|
||||
if (appConfig.isRtl.value)
|
||||
return { rtl: true }
|
||||
else
|
||||
return {}
|
||||
})
|
||||
|
||||
const classes = rootClasses()
|
||||
|
||||
initLoadingTheme()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<VLocaleProvider v-bind="setAppRtl">
|
||||
<VApp :class="classes">
|
||||
<Component
|
||||
:is="resolveLayoutVariant"
|
||||
v-if="resolveLayoutVariant"
|
||||
/>
|
||||
</VApp>
|
||||
</VLocaleProvider>
|
||||
</template>
|
||||
BIN
src/assets/avatars/avatar-1.png
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
src/assets/avatars/avatar-10.png
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
src/assets/avatars/avatar-11.png
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
src/assets/avatars/avatar-12.png
Normal file
|
After Width: | Height: | Size: 112 KiB |
BIN
src/assets/avatars/avatar-13.png
Normal file
|
After Width: | Height: | Size: 130 KiB |
BIN
src/assets/avatars/avatar-14.png
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
src/assets/avatars/avatar-15.png
Normal file
|
After Width: | Height: | Size: 101 KiB |
BIN
src/assets/avatars/avatar-16.png
Normal file
|
After Width: | Height: | Size: 135 KiB |
BIN
src/assets/avatars/avatar-17.png
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
src/assets/avatars/avatar-18.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
src/assets/avatars/avatar-19.png
Normal file
|
After Width: | Height: | Size: 92 KiB |
BIN
src/assets/avatars/avatar-2.png
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
src/assets/avatars/avatar-20.png
Normal file
|
After Width: | Height: | Size: 143 KiB |
BIN
src/assets/avatars/avatar-3.png
Normal file
|
After Width: | Height: | Size: 81 KiB |
BIN
src/assets/avatars/avatar-4.png
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
src/assets/avatars/avatar-5.png
Normal file
|
After Width: | Height: | Size: 150 KiB |
BIN
src/assets/avatars/avatar-6.png
Normal file
|
After Width: | Height: | Size: 118 KiB |
BIN
src/assets/avatars/avatar-7.png
Normal file
|
After Width: | Height: | Size: 136 KiB |
BIN
src/assets/avatars/avatar-8.png
Normal file
|
After Width: | Height: | Size: 138 KiB |
BIN
src/assets/avatars/avatar-9.png
Normal file
|
After Width: | Height: | Size: 136 KiB |
BIN
src/assets/icons/facebook.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
src/assets/icons/google.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
src/assets/icons/linkedin.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
src/assets/icons/notion.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
src/assets/icons/reddit.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
src/assets/icons/twitter.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
292
src/assets/illustration/forgot-password-cover-dark.svg
Normal file
@@ -0,0 +1,292 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
|
||||
<g id="Background_Complete">
|
||||
<g>
|
||||
<rect y="382.398" style="fill:#2b3044;" width="500" height="0.25"/>
|
||||
<rect x="290.208" y="389.208" style="fill:#2b3044;" width="25.459" height="0.25"/>
|
||||
<rect x="395.111" y="394.619" style="fill:#2b3044;" width="60.333" height="0.25"/>
|
||||
<rect x="222.459" y="389.333" style="fill:#2b3044;" width="62.333" height="0.25"/>
|
||||
<rect x="169" y="396.814" style="fill:#2b3044;" width="13.041" height="0.25"/>
|
||||
<rect x="194.708" y="396.814" style="fill:#2b3044;" width="59.376" height="0.25"/>
|
||||
<rect x="52.459" y="392.592" style="fill:#2b3044;" width="38.454" height="0.25"/>
|
||||
<path style="fill:#2b3044;" d="M237.014,337.8H43.915c-3.147,0-5.708-2.561-5.708-5.708V60.66c0-3.147,2.561-5.708,5.708-5.708
|
||||
h193.099c3.146,0,5.707,2.561,5.707,5.708v271.432C242.721,335.239,240.16,337.8,237.014,337.8z M43.915,55.203
|
||||
c-3.01,0-5.458,2.448-5.458,5.458v271.432c0,3.01,2.448,5.458,5.458,5.458h193.099c3.009,0,5.457-2.448,5.457-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.457-5.458H43.915z"/>
|
||||
<path style="fill:#2b3044;" d="M453.31,337.8H260.212c-3.147,0-5.707-2.561-5.707-5.708V60.66c0-3.147,2.561-5.708,5.707-5.708
|
||||
H453.31c3.148,0,5.708,2.561,5.708,5.708v271.432C459.019,335.239,456.458,337.8,453.31,337.8z M260.212,55.203
|
||||
c-3.009,0-5.457,2.448-5.457,5.458v271.432c0,3.01,2.448,5.458,5.457,5.458H453.31c3.01,0,5.458-2.448,5.458-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.458-5.458H260.212z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#2b3044;" points="195.962,295.667 129.561,295.667 125.53,249.167 191.931,249.167 "/>
|
||||
<polygon style="fill:#2b3044;" points="199.401,295.667 133.001,295.667 128.97,249.167 195.37,249.167 "/>
|
||||
<polygon style="fill:#2b3044;" points="142.077,285.681 139.863,259.152 186.293,259.152 188.506,285.681 "/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="203.099" y="295.667" style="fill:#2b3044;" width="7.791" height="86.73"/>
|
||||
<rect x="207.938" y="295.667" style="fill:#2b3044;" width="5.411" height="86.73"/>
|
||||
|
||||
<rect x="137.939" y="295.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 351.2875 600.9061)" style="fill:#2b3044;" width="75.409" height="9.573"/>
|
||||
<rect x="132.814" y="305.239" style="fill:#2b3044;" width="7.791" height="77.157"/>
|
||||
<rect x="137.653" y="305.239" style="fill:#2b3044;" width="5.411" height="77.157"/>
|
||||
<rect x="77.357" y="305.239" style="fill:#2b3044;" width="7.791" height="77.157"/>
|
||||
<rect x="82.196" y="305.239" style="fill:#2b3044;" width="5.411" height="77.157"/>
|
||||
<rect x="153.796" y="305.239" style="fill:#2b3044;" width="7.791" height="77.157"/>
|
||||
<rect x="158.635" y="305.239" style="fill:#2b3044;" width="5.411" height="77.157"/>
|
||||
<rect x="77.357" y="295.667" style="fill:#2b3044;" width="60.582" height="9.573"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<rect x="129.508" y="79.414" style="fill:#2b3044;" width="234.33" height="130.456"/>
|
||||
<rect x="130.691" y="79.414" style="fill:#2b3044;" width="246.015" height="130.456"/>
|
||||
|
||||
<rect x="192.49" y="25.653" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 398.3402 -109.0576)" style="fill:#1e1e2d;" width="122.417" height="237.976"/>
|
||||
<polygon style="fill:#2b3044;" points="231.066,205.85 275.996,83.433 201.846,83.433 156.916,205.85 "/>
|
||||
<polygon style="fill:#2b3044;" points="302.441,205.85 347.37,83.433 291.434,83.433 246.505,205.85 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<rect x="418.192" y="257.803" style="fill:#2b3044;" width="19.919" height="124.595"/>
|
||||
<polygon style="fill:#2b3044;" points="432.874,382.398 438.111,382.398 438.111,372.805 427.382,372.805 "/>
|
||||
<rect x="234.535" y="257.803" style="fill:#2b3044;" width="19.919" height="124.595"/>
|
||||
<rect x="249.883" y="257.803" style="fill:#2b3044;" width="188.228" height="122.007"/>
|
||||
<path style="fill:#2b3044;" d="M434.548,297.169H253.446v-34.458h181.102V297.169z M254.446,296.169h179.102v-32.458H254.446
|
||||
V296.169z"/>
|
||||
<path style="fill:#2b3044;" d="M402.667,279.441H288.845c-5.286,0-10.375-4.264-13.96-11.698l-0.346-0.717h142.435l-0.346,0.717
|
||||
C413.043,275.177,407.954,279.441,402.667,279.441z M276.141,268.026c3.384,6.631,7.984,10.415,12.704,10.415h113.822
|
||||
c4.72,0,9.321-3.784,12.705-10.415H276.141z"/>
|
||||
<polygon style="fill:#2b3044;" points="255.121,382.398 249.883,382.398 249.883,372.805 260.612,372.805 "/>
|
||||
<path style="fill:#2b3044;" d="M434.548,336.036H253.446v-34.458h181.102V336.036z M254.446,335.036h179.102v-32.458H254.446
|
||||
V335.036z"/>
|
||||
<path style="fill:#2b3044;" d="M402.667,318.307H288.845c-5.286,0-10.375-4.264-13.96-11.698l-0.346-0.717h142.435l-0.346,0.717
|
||||
C413.043,314.044,407.954,318.307,402.667,318.307z M276.141,306.892c3.384,6.631,7.984,10.415,12.704,10.415h113.822
|
||||
c4.721,0,9.321-3.784,12.705-10.415H276.141z"/>
|
||||
<path style="fill:#2b3044;" d="M434.548,374.902H253.446v-34.459h181.102V374.902z M254.446,373.902h179.102v-32.459H254.446
|
||||
V373.902z"/>
|
||||
<path style="fill:#2b3044;" d="M402.667,357.173H288.845c-5.286,0-10.375-4.264-13.96-11.698l-0.346-0.717h142.435l-0.346,0.717
|
||||
C413.043,352.91,407.954,357.173,402.667,357.173z M276.141,345.758c3.384,6.631,7.984,10.415,12.704,10.415h113.822
|
||||
c4.721,0,9.321-3.784,12.705-10.415H276.141z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#2b3044;" points="120.983,274.283 120.983,276.701 119.435,276.701 118.157,295.667 99.322,295.667
|
||||
98.045,276.701 96.497,276.701 96.497,274.283 "/>
|
||||
<path style="fill:#2b3044;" d="M114.784,227.211c-1.548-11.297-16.795-14.524-36.142-14.938
|
||||
c-18.411-0.393-24.308-6.908-24.308-6.908s0.058,26.379,26.587,35.93C106.112,250.364,116.335,238.528,114.784,227.211z"/>
|
||||
<path style="fill:#2b3044;" d="M105.379,252.824c0.323-4.647,7.742-13.186,25.587-9.304c12.904,2.807,17.701-3.882,17.701-3.882
|
||||
s-1.195,18.879-20.601,24.555C109.638,269.583,104.81,260.996,105.379,252.824z"/>
|
||||
<path style="fill:#2b3044;" d="M109.45,281.404c0.195,0,0.389-0.083,0.526-0.244c1.294-1.529,0.235-5.19-1.229-10.258
|
||||
c-1.88-6.504-4.219-14.597-2.238-20.475c1.118-3.318,2.502-6.243,3.839-9.073c2.801-5.924,5.22-11.04,3.202-16.383
|
||||
c-0.134-0.356-0.531-0.535-0.887-0.401c-0.355,0.134-0.535,0.531-0.401,0.887c1.811,4.796-0.382,9.435-3.159,15.308
|
||||
c-1.292,2.731-2.755,5.827-3.899,9.221c-2.119,6.286,0.287,14.609,2.22,21.297c1.14,3.944,2.318,8.021,1.501,8.987
|
||||
c-0.245,0.29-0.209,0.724,0.081,0.97C109.135,281.35,109.293,281.404,109.45,281.404z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Background_Simple" style="display:none;">
|
||||
<g style="display:inline;">
|
||||
<path style="fill:#0d9394;" d="M401.846,174.319c-6.792,54.216-54.298,108.35-106.533,143.215
|
||||
C160.271,408.349,29.8,254.244,62.722,198.895c24.713-56.144,101.785-40.721,134.573-62.792
|
||||
C381.586,11.179,408.24,128.945,401.846,174.319z"/>
|
||||
<path style="opacity:0.9;fill:#FFFFFF;" d="M401.846,174.319c-6.792,54.216-54.298,108.35-106.533,143.215
|
||||
C160.271,408.349,29.8,254.244,62.722,198.895c24.713-56.144,101.785-40.721,134.573-62.792
|
||||
C381.586,11.179,408.24,128.945,401.846,174.319z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shadow_1_">
|
||||
<ellipse id="_x3C_Path_x3E__191_" style="fill:#2b3044;" cx="250" cy="416.238" rx="193.889" ry="11.323"/>
|
||||
</g>
|
||||
<g id="Login">
|
||||
<g>
|
||||
<polygon style="fill:#0d9394;" points="249.96,361.048 107.96,361.048 100.188,132.681 242.188,132.681 "/>
|
||||
<g>
|
||||
<polygon style="fill:#0d9394;" points="257.047,353.961 115.047,353.961 107.274,125.594 249.274,125.594 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="257.047,353.961 115.047,353.961 107.274,125.594 249.274,125.594 "/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<ellipse transform="matrix(0.7011 -0.7131 0.7131 0.7011 -82.3091 185.8367)" style="fill:#0d9394;" cx="180.503" cy="191.093" rx="39.269" ry="40.629"/>
|
||||
<path style="fill:#FFFFFF;" d="M213.469,191.089c0.194,5.693-1.068,11.038-3.449,15.703
|
||||
c-5.211,10.275-15.862,17.263-28.395,17.263c-12.532,0-23.659-6.988-29.57-17.263c-2.698-4.664-4.324-10.009-4.518-15.703
|
||||
c-0.62-18.21,13.635-32.966,31.844-32.966C197.59,158.123,212.849,172.879,213.469,191.089z"/>
|
||||
<path style="opacity:0.6;fill:#0d9394;" d="M210.019,206.792c-5.211,10.275-15.862,17.263-28.395,17.263
|
||||
c-12.532,0-23.659-6.988-29.57-17.263c8.111-5.544,17.96-8.781,28.683-8.781C191.462,198.011,201.531,201.247,210.019,206.792z"
|
||||
/>
|
||||
|
||||
<ellipse transform="matrix(0.7011 -0.7131 0.7131 0.7011 -74.3786 182.1882)" style="opacity:0.6;fill:#0d9394;" cx="180.119" cy="179.811" rx="14.437" ry="14.937"/>
|
||||
</g>
|
||||
<polygon style="fill:#FFFFFF;" points="228.524,271.261 137.94,271.261 137.327,253.261 227.912,253.261 "/>
|
||||
<polygon style="fill:#FFFFFF;" points="229.62,303.434 139.035,303.434 138.422,285.434 229.007,285.434 "/>
|
||||
<path style="fill:#0d9394;" d="M194.658,287.908l-21.829,2.968c-0.897,0.122-1.487,0.939-1.317,1.807l2.866,14.628
|
||||
c0.171,0.874,1.042,1.486,1.939,1.365l21.829-2.968c0.897-0.122,1.488-0.933,1.317-1.807l-2.866-14.628
|
||||
C196.427,288.404,195.555,287.786,194.658,287.908z M188.386,302.727l-3.952,0.538l-0.398-4.721
|
||||
c-0.841-0.371-1.45-1.117-1.622-1.996c-0.28-1.43,0.686-2.755,2.153-2.955c1.462-0.199,2.883,0.802,3.164,2.232
|
||||
c0.172,0.879-0.121,1.747-0.776,2.322L188.386,302.727z"/>
|
||||
<path style="fill:#0d9394;" d="M192.504,287.124L192.504,287.124c-0.798,0.108-1.568-0.434-1.72-1.211l-0.281-1.432
|
||||
c-0.772-3.941-4.54-6.916-8.619-6.561c-4.36,0.38-7.283,4.23-6.467,8.394l0.322,1.645c0.152,0.777-0.371,1.495-1.169,1.603l0,0
|
||||
c-0.798,0.108-1.568-0.434-1.72-1.211l-0.273-1.396c-1.076-5.492,2.381-10.772,7.974-11.745c5.88-1.024,11.678,2.942,12.799,8.665
|
||||
l0.322,1.645C193.824,286.297,193.301,287.015,192.504,287.124z"/>
|
||||
<polygon style="fill:#0d9394;" points="214.667,328.639 155.703,328.639 155.305,316.922 214.268,316.922 "/>
|
||||
<path style="fill:#263238;" d="M186.218,262.261c0.062,1.818-1.362,3.292-3.18,3.292s-3.342-1.474-3.404-3.292
|
||||
c-0.062-1.818,1.362-3.292,3.18-3.292S186.156,260.443,186.218,262.261z"/>
|
||||
<path style="fill:#263238;" d="M172.045,262.261c0.062,1.818-1.362,3.292-3.18,3.292c-1.818,0-3.342-1.474-3.404-3.292
|
||||
c-0.062-1.818,1.362-3.292,3.18-3.292S171.983,260.443,172.045,262.261z"/>
|
||||
<path style="fill:#263238;" d="M157.872,262.261c0.062,1.818-1.362,3.292-3.18,3.292c-1.818,0-3.342-1.474-3.404-3.292
|
||||
c-0.062-1.818,1.362-3.292,3.18-3.292C156.286,258.969,157.81,260.443,157.872,262.261z"/>
|
||||
<path style="fill:#263238;" d="M200.391,262.261c0.062,1.818-1.362,3.292-3.18,3.292s-3.342-1.474-3.404-3.292
|
||||
c-0.062-1.818,1.362-3.292,3.18-3.292C198.805,258.969,200.329,260.443,200.391,262.261z"/>
|
||||
<path style="fill:#263238;" d="M214.564,262.261c0.062,1.818-1.362,3.292-3.18,3.292c-1.818,0-3.342-1.474-3.404-3.292
|
||||
c-0.062-1.818,1.362-3.292,3.18-3.292S214.503,260.443,214.564,262.261z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Character_1_">
|
||||
<g>
|
||||
<path style="fill:#FF8B7B;" d="M333.91,174.281c1.333,2.135,2.435,4.184,3.579,6.311c1.139,2.106,2.169,4.273,3.18,6.456
|
||||
c1.989,4.383,3.769,8.905,5.099,13.731c0.178,0.592,0.314,1.22,0.462,1.835l0.219,0.925l0.109,0.462l0.13,0.762
|
||||
c0.286,2.032,0.035,3.689-0.312,5.151c-0.717,2.914-1.873,5.238-3.112,7.456c-2.529,4.391-5.481,8.131-8.886,11.673l-4.211-3.188
|
||||
c2.076-3.94,4.128-8.068,5.637-12.037c0.731-1.974,1.346-3.983,1.526-5.632c0.087-0.811,0.029-1.508-0.083-1.767l-0.395-1.222
|
||||
c-0.164-0.502-0.31-1.001-0.508-1.507c-1.441-4.035-3.274-8.088-5.269-12.084c-1.967-3.981-4.147-8.034-6.293-11.817
|
||||
L333.91,174.281z"/>
|
||||
<path style="fill:#FF8B7B;" d="M331.236,224.425l-4.591,2.437l5.278,6.18c0,0,3.295-2.229,3.444-5.633L331.236,224.425z"/>
|
||||
<polygon style="fill:#FF8B7B;" points="320.466,230.673 326.122,235.16 331.923,233.043 326.644,226.863 "/>
|
||||
<path style="fill:#263238;" d="M301.151,141.564c-0.113,0.556-0.499,0.947-0.863,0.873c-0.363-0.074-0.566-0.584-0.453-1.14
|
||||
c0.113-0.556,0.499-0.947,0.863-0.873C301.061,140.498,301.264,141.009,301.151,141.564z"/>
|
||||
<path style="fill:#FF5652;" d="M300.703,142.522c0,0-1.916,2.95-3.622,4.215c0.797,1.118,2.555,1.038,2.555,1.038L300.703,142.522
|
||||
z"/>
|
||||
<path style="fill:#FF8B7B;" d="M298.901,162.138l0.043-6.554l8.68,1.049c0,0-0.149,5.636-4.996,7.293L298.901,162.138z"/>
|
||||
<polygon style="fill:#FF8B7B;" points="301.396,150.864 307.508,152.62 307.625,156.633 298.944,155.584 "/>
|
||||
<path style="opacity:0.2;" d="M307.51,152.62l-6.11-1.76l-1.19,2.28c0.15,3.87,2.51,7.05,5.64,8.48c1.7-2.23,1.77-4.99,1.77-4.99
|
||||
L307.51,152.62z"/>
|
||||
<path style="fill:#263238;" d="M303.814,138.891c0.081,0,0.162-0.029,0.226-0.089c0.135-0.125,0.143-0.336,0.018-0.471
|
||||
c-1.251-1.354-2.769-1.113-2.835-1.102c-0.181,0.031-0.303,0.203-0.272,0.384c0.031,0.181,0.205,0.302,0.383,0.273l0,0
|
||||
c0.05-0.008,1.237-0.182,2.235,0.898C303.635,138.855,303.724,138.891,303.814,138.891z"/>
|
||||
<path style="fill:#FF8B7B;" d="M316.591,151.683c-1.009,5.146-1.618,12.275,1.982,15.709c0,0-1.407,5.22-10.968,5.22
|
||||
c-10.514,0-5.058-4.581-5.058-4.581c4.37-1.356,4.332-6.334,3.332-10.333L316.591,151.683z"/>
|
||||
<path style="fill:#0d9394;" d="M320.542,170.833c0.936-1.326,0.899-5.515-0.101-6.254c-1.614-1.193-8.517-1.467-17.816,0.671
|
||||
c1.001,4.058-1.143,6.185-1.143,6.185L320.542,170.833z"/>
|
||||
<path style="fill:#0d9394;" d="M351.795,408.237c-0.706,0.153-1.411,0.193-1.751-0.096c-0.143-0.122-0.286-0.354-0.161-0.774
|
||||
c0.066-0.221,0.21-0.386,0.429-0.49c0.95-0.453,3.132,0.436,3.225,0.474c0.061,0.025,0.101,0.083,0.103,0.149
|
||||
c0.002,0.066-0.035,0.126-0.094,0.155C353.212,407.816,352.504,408.084,351.795,408.237z M350.651,407.113
|
||||
c-0.072,0.016-0.137,0.037-0.195,0.065c-0.132,0.063-0.215,0.156-0.253,0.284c-0.089,0.3,0.022,0.394,0.059,0.425
|
||||
c0.378,0.322,1.783,0.025,2.772-0.371C352.362,407.28,351.276,406.978,350.651,407.113z"/>
|
||||
<path style="fill:#0d9394;" d="M353.509,407.668c-0.027,0.006-0.055,0.005-0.082-0.003c-0.795-0.232-2.496-1.441-2.517-2.238
|
||||
c-0.004-0.145,0.047-0.407,0.426-0.539c0.246-0.086,0.494-0.066,0.738,0.059c0.94,0.48,1.534,2.428,1.559,2.511
|
||||
c0.018,0.059,0.002,0.122-0.041,0.165C353.568,407.646,353.54,407.661,353.509,407.668z M351.518,405.182
|
||||
c-0.024,0.005-0.049,0.012-0.073,0.02c-0.206,0.072-0.203,0.173-0.202,0.216c0.012,0.472,1.135,1.42,1.958,1.804
|
||||
c-0.206-0.562-0.676-1.671-1.278-1.978C351.785,405.173,351.652,405.153,351.518,405.182z"/>
|
||||
<path style="fill:#0d9394;" d="M299.865,409.417c-0.903,0-1.775-0.124-2.067-0.53c-0.102-0.142-0.183-0.384,0.014-0.728
|
||||
c0.11-0.193,0.288-0.324,0.528-0.39c1.171-0.318,3.629,1.082,3.733,1.142c0.06,0.035,0.092,0.103,0.081,0.171
|
||||
s-0.064,0.123-0.132,0.137C301.573,409.309,300.706,409.417,299.865,409.417z M298.749,408.053c-0.117,0-0.226,0.012-0.322,0.038
|
||||
c-0.154,0.042-0.26,0.118-0.326,0.233c-0.118,0.207-0.075,0.31-0.032,0.368c0.327,0.455,2.105,0.465,3.413,0.28
|
||||
C300.829,408.638,299.571,408.053,298.749,408.053z"/>
|
||||
<path style="fill:#0d9394;" d="M301.989,409.223c-0.023,0-0.046-0.005-0.068-0.015c-0.849-0.381-2.531-1.902-2.402-2.698
|
||||
c0.03-0.187,0.163-0.419,0.62-0.466c0.342-0.035,0.651,0.062,0.924,0.286c0.895,0.735,1.084,2.629,1.092,2.71
|
||||
c0.006,0.059-0.021,0.117-0.069,0.151C302.058,409.212,302.023,409.223,301.989,409.223z M300.273,406.371
|
||||
c-0.033,0-0.066,0.002-0.1,0.005c-0.3,0.03-0.319,0.148-0.325,0.187c-0.077,0.477,1.065,1.673,1.932,2.193
|
||||
c-0.09-0.553-0.341-1.687-0.928-2.169C300.675,406.443,300.484,406.371,300.273,406.371z"/>
|
||||
<polygon style="fill:#FF8B7B;" points="309.724,409.056 302.69,409.056 301.99,392.768 309.023,392.768 "/>
|
||||
<polygon style="fill:#FF8B7B;" points="361.349,405.8 354.475,407.288 347.573,392.117 354.447,390.628 "/>
|
||||
<path style="fill:#263238;" d="M353.814,406.598l7.723-1.672c0.281-0.061,0.567,0.082,0.687,0.343l2.681,5.817
|
||||
c0.278,0.603-0.09,1.311-0.742,1.44c-2.706,0.537-4.05,0.663-7.447,1.398c-2.09,0.452-6.807,1.602-9.692,2.226
|
||||
c-2.822,0.611-3.88-2.147-2.755-2.661c5.046-2.305,7.154-4.335,8.52-6.227C353.036,406.921,353.403,406.687,353.814,406.598z"/>
|
||||
<path style="fill:#263238;" d="M302.736,408.242h7.681c0.288,0,0.536,0.2,0.599,0.48l1.389,6.252
|
||||
c0.144,0.648-0.348,1.262-1.012,1.251c-2.771-0.047-6.775-0.21-10.257-0.21c-4.072,0-7.589,0.222-12.365,0.222
|
||||
c-2.888,0-3.689-2.919-2.48-3.184c5.503-1.204,9.995-1.333,14.75-4.264C301.559,408.471,302.129,408.242,302.736,408.242z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M331.167,168.982c6.592,1.511,12.028,18.341,12.028,18.341l-13.238,10.09
|
||||
c0,0-4.859-4.581-7.021-12.999C320.669,175.593,324.426,167.437,331.167,168.982z"/>
|
||||
<path style="opacity:0.4;" d="M331.167,168.982c6.592,1.511,12.028,18.341,12.028,18.341l-13.238,10.09
|
||||
c0,0-4.859-4.581-7.021-12.999C320.669,175.593,324.426,167.437,331.167,168.982z"/>
|
||||
</g>
|
||||
<path style="fill:#FF8B7B;" d="M296.502,189.067c-1.645,1.775-3.285,3.354-4.984,4.979c-0.843,0.808-1.705,1.6-2.586,2.377
|
||||
l-1.328,1.163l-0.334,0.289c-0.162,0.139-0.359,0.304-0.57,0.465c-0.44,0.325-0.922,0.704-1.932,1.141
|
||||
c-0.535,0.206-1.223,0.479-2.432,0.503c-0.575,0.009-1.355-0.091-2.1-0.373c-0.761-0.282-1.497-0.77-2.001-1.272
|
||||
c-1.046-1.051-1.362-1.973-1.568-2.59c-0.191-0.636-0.246-1.09-0.285-1.487c-0.063-0.776-0.023-1.301,0.02-1.787
|
||||
c0.047-0.48,0.113-0.895,0.186-1.287c0.294-1.542,0.71-2.786,1.161-4.032c0.457-1.233,0.963-2.417,1.554-3.614
|
||||
c0.635-1.274,1.248-2.198,1.859-3.263c2.471-4.13,5.371-7.902,8.452-11.457c3.148-3.531,6.452-6.759,10.251-9.717l3.681,3.787
|
||||
c-2.586,3.459-5.128,7.166-7.477,10.822c-2.347,3.683-4.524,7.433-6.398,11.246c-0.432,0.942-0.965,1.974-1.265,2.762
|
||||
c-0.351,0.861-0.673,1.786-0.938,2.697c-0.262,0.9-0.473,1.838-0.568,2.526c-0.022,0.166-0.033,0.311-0.033,0.395
|
||||
c-0.003,0.077,0.017,0.12,0.007-0.093c-0.01-0.116-0.021-0.289-0.129-0.655c-0.122-0.348-0.312-1.007-1.154-1.859
|
||||
c-0.406-0.399-1.016-0.817-1.648-1.043c-0.611-0.239-1.25-0.309-1.684-0.307c-0.925,0.021-1.338,0.21-1.612,0.308
|
||||
c-0.49,0.212-0.5,0.269-0.495,0.247l0.384-0.35l1.201-1.1l2.391-2.239c1.582-1.491,3.174-3.081,4.677-4.557L296.502,189.067z"/>
|
||||
<path style="opacity:0.2;" d="M325.517,181.358c3.581,3.543,4.749,9.996,5.027,15.606l-0.584,0.45c0,0-4.864-4.586-7.028-13.002
|
||||
c-0.134-0.526-0.249-1.053-0.345-1.57L325.517,181.358z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M289.508,176.035c-1.438,7.599-2.338,23.203,1.837,54.105h37.621
|
||||
c0.259-5.775-3.37-33.947,2.201-61.158c0,0-6.449-1.294-12.594-1.59c-4.807-0.232-11.767-0.385-15.993,0.001
|
||||
c-1.764,0.161-3.495,0.416-5.038,0.689C293.474,168.801,290.276,171.976,289.508,176.035z"/>
|
||||
<path style="opacity:0.4;" d="M289.508,176.035c-1.438,7.599-2.338,23.203,1.837,54.105h37.621
|
||||
c0.259-5.775-3.37-33.947,2.201-61.158c0,0-6.449-1.294-12.594-1.59c-4.807-0.232-11.767-0.385-15.993,0.001
|
||||
c-1.764,0.161-3.495,0.416-5.038,0.689C293.474,168.801,290.276,171.976,289.508,176.035z"/>
|
||||
</g>
|
||||
<path style="opacity:0.2;" d="M295.265,187.266l-6.798-1.628c-0.211,4.117-0.23,9.22,0.077,15.53
|
||||
C291.675,197.606,295.667,192.053,295.265,187.266z"/>
|
||||
<g>
|
||||
<polygon style="opacity:0.2;" points="301.991,392.772 302.351,401.168 309.388,401.168 309.028,392.772 "/>
|
||||
<polygon style="opacity:0.2;" points="354.451,390.632 347.573,392.121 351.134,399.941 358.012,398.452 "/>
|
||||
</g>
|
||||
<path style="fill:#FF8B7B;" d="M319.934,144.155c-1.807,6.743-2.522,10.781-6.683,13.585c-6.259,4.217-14.051-0.623-14.295-7.77
|
||||
c-0.219-6.433,2.773-16.379,10.008-17.738C316.093,130.894,321.741,137.412,319.934,144.155z"/>
|
||||
<path style="fill:#263238;" d="M304.147,144.414c-0.334-0.904-1.892-7.872-0.43-9.681c1.463-1.809,18.111-0.508,20.573,1.915
|
||||
c4.084,4.019,1.251,7.606-3.22,12.234c-3.363,3.48-3.492,7.403-5.188,7.978c-2.972,1.009-7.581,0.061-8.505-3.112
|
||||
C306.453,150.576,304.147,144.414,304.147,144.414z"/>
|
||||
<path style="fill:#263238;" d="M322.274,128.722c-5.885-2.506-16.917,0.266-22.875-1.17c-0.213,3.085,1.649,8.032,7.606,9.362
|
||||
c0,0,8.457,1.649,15,1.383C328.548,138.031,327.271,130.85,322.274,128.722z"/>
|
||||
<path style="fill:#263238;" d="M323.194,136.861c0,0,3.639,0.41,6.222-1.194C330.521,138.326,324.472,139.056,323.194,136.861z"/>
|
||||
<path style="fill:#FF8B7B;" d="M307.354,144.691c-0.109,1.825-0.956,3.542-1.976,4.666c-1.533,1.689-3.133,0.638-3.405-1.42
|
||||
c-0.245-1.852,0.258-4.963,2.133-5.894C305.953,141.124,307.478,142.604,307.354,144.691z"/>
|
||||
<path style="fill:#0d9394;" d="M304.69,230.14c0,0,7.982,53.753,12.365,73.891c4.799,22.053,30.531,95.014,30.531,95.014
|
||||
l12.591-2.726c0,0-17.993-59.458-22.021-90.289c-3.094-23.682-9.19-75.89-9.19-75.89H304.69z"/>
|
||||
<path style="fill:#263238;" d="M344.571,394.842c-0.054,0.012,2.347,4.553,2.347,4.553l14.166-3.067l-1.194-4.259L344.571,394.842
|
||||
z"/>
|
||||
<path style="opacity:0.3;" d="M309.735,249.292c9.23,1.81,8.253,36.23,7.143,53.933c-2.662-12.514-6.558-36.594-9.22-53.684
|
||||
C308.27,249.235,308.96,249.139,309.735,249.292z"/>
|
||||
<path style="fill:#0d9394;" d="M291.345,230.14c0,0-0.969,52.59-0.204,74.039c0.796,22.311,8.589,95.363,8.589,95.363h11.915
|
||||
c0,0,0.437-71.748,0.967-93.66c0.578-23.887,3.462-75.742,3.462-75.742H291.345z"/>
|
||||
<path style="fill:#263238;" d="M297.437,394.796c-0.055,0,0.672,4.947,0.672,4.947h14.494l0.392-4.415L297.437,394.796z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M304.252,178.342c3.373,9.089-16.442,19.795-16.442,19.795l-8.578-11.028
|
||||
c0,0,5.723-11.39,12.746-16.525C300.653,164.241,301.684,171.423,304.252,178.342z"/>
|
||||
<path style="opacity:0.4;" d="M304.252,178.342c3.373,9.089-16.442,19.795-16.442,19.795l-8.578-11.028
|
||||
c0,0,5.723-11.39,12.746-16.525C300.653,164.241,301.684,171.423,304.252,178.342z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Thinking">
|
||||
<g>
|
||||
<ellipse style="fill:#0d9394;" cx="381.875" cy="86.333" rx="36.087" ry="23"/>
|
||||
<path style="fill:#FFFFFF;" d="M368.846,97.91c-2.005,0-3.962-0.6-5.662-1.759c-2.28-1.554-3.795-3.91-4.266-6.634
|
||||
c-0.898-5.207,2.56-10.395,7.709-11.565l0,0c4.24-0.961,8.546,0.846,10.823,4.517l23.167-4.781
|
||||
c1.877-0.387,3.784,0.732,4.246,2.497c0.245,0.938,0.1,1.907-0.41,2.729c-0.511,0.822-1.313,1.381-2.26,1.577l-0.608,0.126
|
||||
c-0.182,0.037-0.33,0.147-0.418,0.309c-0.088,0.16-0.101,0.349-0.035,0.519l0.408,1.062c0.277,0.719,0.019,1.528-0.616,1.923
|
||||
c-0.494,0.308-0.83,0.836-0.897,1.414c-0.082,0.708-0.555,1.253-1.204,1.387l-0.477,0.098c-0.647,0.132-1.297-0.178-1.654-0.796
|
||||
c-0.418-0.722-1.248-1.094-2.068-0.924c-0.823,0.17-1.442,0.841-1.542,1.67c-0.085,0.709-0.558,1.253-1.205,1.386l-0.467,0.096
|
||||
c-0.641,0.133-1.297-0.179-1.654-0.796c-0.293-0.504-0.813-0.856-1.392-0.942c-0.739-0.11-1.298-0.75-1.329-1.522l-0.046-1.137
|
||||
c-0.007-0.185-0.091-0.349-0.236-0.462c-0.145-0.114-0.319-0.155-0.507-0.119l-7.382,1.524c-0.626,4.183-3.779,7.532-7.951,8.393
|
||||
C370.224,97.839,369.532,97.91,368.846,97.91z M366.848,78.927c-4.639,1.054-7.754,5.729-6.943,10.42
|
||||
c0.423,2.455,1.788,4.577,3.843,5.978s4.527,1.896,6.964,1.393c3.865-0.798,6.762-3.968,7.206-7.888l0.041-0.36l8.085-1.669
|
||||
c0.467-0.097,0.95,0.017,1.325,0.311c0.375,0.293,0.6,0.734,0.62,1.21l0.046,1.137c0.011,0.288,0.216,0.535,0.476,0.573
|
||||
c0.891,0.133,1.659,0.654,2.11,1.43c0.11,0.19,0.319,0.373,0.588,0.318l0.467-0.096c0.265-0.055,0.388-0.307,0.414-0.525
|
||||
c0.149-1.256,1.087-2.273,2.333-2.53c1.242-0.256,2.501,0.308,3.135,1.402c0.11,0.19,0.318,0.375,0.587,0.318l0.478-0.098
|
||||
c0.265-0.055,0.387-0.306,0.411-0.523c0.104-0.892,0.602-1.674,1.364-2.147c0.224-0.139,0.313-0.446,0.21-0.714l-0.408-1.063
|
||||
c-0.171-0.445-0.138-0.939,0.091-1.357c0.229-0.417,0.627-0.712,1.094-0.808l0.608-0.126c0.676-0.139,1.248-0.539,1.612-1.124
|
||||
c0.364-0.586,0.468-1.278,0.293-1.948c-0.33-1.258-1.713-2.054-3.078-1.77l-23.869,4.926l-0.18-0.314
|
||||
C374.768,79.784,370.786,78.032,366.848,78.927L366.848,78.927z M368.859,94.213c-1.238,0-2.449-0.36-3.508-1.056
|
||||
c-1.43-0.941-2.407-2.381-2.752-4.056c-0.347-1.678-0.02-3.389,0.921-4.817c0.94-1.427,2.381-2.403,4.057-2.749
|
||||
c1.678-0.347,3.389-0.021,4.816,0.918c1.427,0.938,2.403,2.38,2.749,4.059c0.347,1.675,0.02,3.385-0.918,4.813
|
||||
c-0.939,1.43-2.381,2.408-4.06,2.754l0,0C369.73,94.169,369.293,94.213,368.859,94.213z M368.889,82.4
|
||||
c-0.369,0-0.74,0.038-1.11,0.114c-1.414,0.292-2.63,1.116-3.423,2.32c-0.793,1.205-1.069,2.648-0.777,4.065
|
||||
c0.292,1.413,1.116,2.628,2.323,3.422c1.206,0.793,2.649,1.07,4.063,0.778l0,0c1.416-0.292,2.632-1.118,3.425-2.324
|
||||
c0.792-1.205,1.067-2.647,0.775-4.062c-0.293-1.417-1.116-2.634-2.32-3.426C370.954,82.704,369.933,82.4,368.889,82.4z"/>
|
||||
<ellipse style="opacity:0.6;fill:#0d9394;" cx="352.495" cy="115.258" rx="11.861" ry="7.56"/>
|
||||
<ellipse style="opacity:0.3;fill:#0d9394;" cx="333.629" cy="122.817" rx="4.869" ry="3.103"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 24 KiB |
292
src/assets/illustration/forgot-password-cover.svg
Normal file
@@ -0,0 +1,292 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
|
||||
<g id="Background_Complete">
|
||||
<g>
|
||||
<rect y="382.398" style="fill:#EBEBEB;" width="500" height="0.25"/>
|
||||
<rect x="290.208" y="389.208" style="fill:#EBEBEB;" width="25.459" height="0.25"/>
|
||||
<rect x="395.111" y="394.619" style="fill:#EBEBEB;" width="60.333" height="0.25"/>
|
||||
<rect x="222.459" y="389.333" style="fill:#EBEBEB;" width="62.333" height="0.25"/>
|
||||
<rect x="169" y="396.814" style="fill:#EBEBEB;" width="13.041" height="0.25"/>
|
||||
<rect x="194.708" y="396.814" style="fill:#EBEBEB;" width="59.376" height="0.25"/>
|
||||
<rect x="52.459" y="392.592" style="fill:#EBEBEB;" width="38.454" height="0.25"/>
|
||||
<path style="fill:#EBEBEB;" d="M237.014,337.8H43.915c-3.147,0-5.708-2.561-5.708-5.708V60.66c0-3.147,2.561-5.708,5.708-5.708
|
||||
h193.099c3.146,0,5.707,2.561,5.707,5.708v271.432C242.721,335.239,240.16,337.8,237.014,337.8z M43.915,55.203
|
||||
c-3.01,0-5.458,2.448-5.458,5.458v271.432c0,3.01,2.448,5.458,5.458,5.458h193.099c3.009,0,5.457-2.448,5.457-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.457-5.458H43.915z"/>
|
||||
<path style="fill:#EBEBEB;" d="M453.31,337.8H260.212c-3.147,0-5.707-2.561-5.707-5.708V60.66c0-3.147,2.561-5.708,5.707-5.708
|
||||
H453.31c3.148,0,5.708,2.561,5.708,5.708v271.432C459.019,335.239,456.458,337.8,453.31,337.8z M260.212,55.203
|
||||
c-3.009,0-5.457,2.448-5.457,5.458v271.432c0,3.01,2.448,5.458,5.457,5.458H453.31c3.01,0,5.458-2.448,5.458-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.458-5.458H260.212z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#E6E6E6;" points="195.962,295.667 129.561,295.667 125.53,249.167 191.931,249.167 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="199.401,295.667 133.001,295.667 128.97,249.167 195.37,249.167 "/>
|
||||
<polygon style="fill:#FFFFFF;" points="142.077,285.681 139.863,259.152 186.293,259.152 188.506,285.681 "/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="203.099" y="295.667" style="fill:#E6E6E6;" width="7.791" height="86.73"/>
|
||||
<rect x="207.938" y="295.667" style="fill:#F0F0F0;" width="5.411" height="86.73"/>
|
||||
|
||||
<rect x="137.939" y="295.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 351.2875 600.9061)" style="fill:#F0F0F0;" width="75.409" height="9.573"/>
|
||||
<rect x="132.814" y="305.239" style="fill:#E6E6E6;" width="7.791" height="77.157"/>
|
||||
<rect x="137.653" y="305.239" style="fill:#F0F0F0;" width="5.411" height="77.157"/>
|
||||
<rect x="77.357" y="305.239" style="fill:#E6E6E6;" width="7.791" height="77.157"/>
|
||||
<rect x="82.196" y="305.239" style="fill:#F0F0F0;" width="5.411" height="77.157"/>
|
||||
<rect x="153.796" y="305.239" style="fill:#E6E6E6;" width="7.791" height="77.157"/>
|
||||
<rect x="158.635" y="305.239" style="fill:#F0F0F0;" width="5.411" height="77.157"/>
|
||||
<rect x="77.357" y="295.667" style="fill:#E6E6E6;" width="60.582" height="9.573"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<rect x="129.508" y="79.414" style="fill:#E0E0E0;" width="234.33" height="130.456"/>
|
||||
<rect x="130.691" y="79.414" style="fill:#F5F5F5;" width="246.015" height="130.456"/>
|
||||
|
||||
<rect x="192.49" y="25.653" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 398.3402 -109.0576)" style="fill:#FFFFFF;" width="122.417" height="237.976"/>
|
||||
<polygon style="fill:#F5F5F5;" points="231.066,205.85 275.996,83.433 201.846,83.433 156.916,205.85 "/>
|
||||
<polygon style="fill:#F5F5F5;" points="302.441,205.85 347.37,83.433 291.434,83.433 246.505,205.85 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<rect x="418.192" y="257.803" style="fill:#E6E6E6;" width="19.919" height="124.595"/>
|
||||
<polygon style="fill:#FAFAFA;" points="432.874,382.398 438.111,382.398 438.111,372.805 427.382,372.805 "/>
|
||||
<rect x="234.535" y="257.803" style="fill:#E6E6E6;" width="19.919" height="124.595"/>
|
||||
<rect x="249.883" y="257.803" style="fill:#FAFAFA;" width="188.228" height="122.007"/>
|
||||
<path style="fill:#E6E6E6;" d="M434.548,297.169H253.446v-34.458h181.102V297.169z M254.446,296.169h179.102v-32.458H254.446
|
||||
V296.169z"/>
|
||||
<path style="fill:#E6E6E6;" d="M402.667,279.441H288.845c-5.286,0-10.375-4.264-13.96-11.698l-0.346-0.717h142.435l-0.346,0.717
|
||||
C413.043,275.177,407.954,279.441,402.667,279.441z M276.141,268.026c3.384,6.631,7.984,10.415,12.704,10.415h113.822
|
||||
c4.72,0,9.321-3.784,12.705-10.415H276.141z"/>
|
||||
<polygon style="fill:#FAFAFA;" points="255.121,382.398 249.883,382.398 249.883,372.805 260.612,372.805 "/>
|
||||
<path style="fill:#E6E6E6;" d="M434.548,336.036H253.446v-34.458h181.102V336.036z M254.446,335.036h179.102v-32.458H254.446
|
||||
V335.036z"/>
|
||||
<path style="fill:#E6E6E6;" d="M402.667,318.307H288.845c-5.286,0-10.375-4.264-13.96-11.698l-0.346-0.717h142.435l-0.346,0.717
|
||||
C413.043,314.044,407.954,318.307,402.667,318.307z M276.141,306.892c3.384,6.631,7.984,10.415,12.704,10.415h113.822
|
||||
c4.721,0,9.321-3.784,12.705-10.415H276.141z"/>
|
||||
<path style="fill:#E6E6E6;" d="M434.548,374.902H253.446v-34.459h181.102V374.902z M254.446,373.902h179.102v-32.459H254.446
|
||||
V373.902z"/>
|
||||
<path style="fill:#E6E6E6;" d="M402.667,357.173H288.845c-5.286,0-10.375-4.264-13.96-11.698l-0.346-0.717h142.435l-0.346,0.717
|
||||
C413.043,352.91,407.954,357.173,402.667,357.173z M276.141,345.758c3.384,6.631,7.984,10.415,12.704,10.415h113.822
|
||||
c4.721,0,9.321-3.784,12.705-10.415H276.141z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#E6E6E6;" points="120.983,274.283 120.983,276.701 119.435,276.701 118.157,295.667 99.322,295.667
|
||||
98.045,276.701 96.497,276.701 96.497,274.283 "/>
|
||||
<path style="fill:#E6E6E6;" d="M114.784,227.211c-1.548-11.297-16.795-14.524-36.142-14.938
|
||||
c-18.411-0.393-24.308-6.908-24.308-6.908s0.058,26.379,26.587,35.93C106.112,250.364,116.335,238.528,114.784,227.211z"/>
|
||||
<path style="fill:#E6E6E6;" d="M105.379,252.824c0.323-4.647,7.742-13.186,25.587-9.304c12.904,2.807,17.701-3.882,17.701-3.882
|
||||
s-1.195,18.879-20.601,24.555C109.638,269.583,104.81,260.996,105.379,252.824z"/>
|
||||
<path style="fill:#E6E6E6;" d="M109.45,281.404c0.195,0,0.389-0.083,0.526-0.244c1.294-1.529,0.235-5.19-1.229-10.258
|
||||
c-1.88-6.504-4.219-14.597-2.238-20.475c1.118-3.318,2.502-6.243,3.839-9.073c2.801-5.924,5.22-11.04,3.202-16.383
|
||||
c-0.134-0.356-0.531-0.535-0.887-0.401c-0.355,0.134-0.535,0.531-0.401,0.887c1.811,4.796-0.382,9.435-3.159,15.308
|
||||
c-1.292,2.731-2.755,5.827-3.899,9.221c-2.119,6.286,0.287,14.609,2.22,21.297c1.14,3.944,2.318,8.021,1.501,8.987
|
||||
c-0.245,0.29-0.209,0.724,0.081,0.97C109.135,281.35,109.293,281.404,109.45,281.404z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Background_Simple" style="display:none;">
|
||||
<g style="display:inline;">
|
||||
<path style="fill:#0d9394;" d="M401.846,174.319c-6.792,54.216-54.298,108.35-106.533,143.215
|
||||
C160.271,408.349,29.8,254.244,62.722,198.895c24.713-56.144,101.785-40.721,134.573-62.792
|
||||
C381.586,11.179,408.24,128.945,401.846,174.319z"/>
|
||||
<path style="opacity:0.9;fill:#FFFFFF;" d="M401.846,174.319c-6.792,54.216-54.298,108.35-106.533,143.215
|
||||
C160.271,408.349,29.8,254.244,62.722,198.895c24.713-56.144,101.785-40.721,134.573-62.792
|
||||
C381.586,11.179,408.24,128.945,401.846,174.319z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shadow_1_">
|
||||
<ellipse id="_x3C_Path_x3E__191_" style="fill:#F5F5F5;" cx="250" cy="416.238" rx="193.889" ry="11.323"/>
|
||||
</g>
|
||||
<g id="Login">
|
||||
<g>
|
||||
<polygon style="fill:#0d9394;" points="249.96,361.048 107.96,361.048 100.188,132.681 242.188,132.681 "/>
|
||||
<g>
|
||||
<polygon style="fill:#0d9394;" points="257.047,353.961 115.047,353.961 107.274,125.594 249.274,125.594 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="257.047,353.961 115.047,353.961 107.274,125.594 249.274,125.594 "/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<ellipse transform="matrix(0.7011 -0.7131 0.7131 0.7011 -82.3091 185.8367)" style="fill:#0d9394;" cx="180.503" cy="191.093" rx="39.269" ry="40.629"/>
|
||||
<path style="fill:#FFFFFF;" d="M213.469,191.089c0.194,5.693-1.068,11.038-3.449,15.703
|
||||
c-5.211,10.275-15.862,17.263-28.395,17.263c-12.532,0-23.659-6.988-29.57-17.263c-2.698-4.664-4.324-10.009-4.518-15.703
|
||||
c-0.62-18.21,13.635-32.966,31.844-32.966C197.59,158.123,212.849,172.879,213.469,191.089z"/>
|
||||
<path style="opacity:0.6;fill:#0d9394;" d="M210.019,206.792c-5.211,10.275-15.862,17.263-28.395,17.263
|
||||
c-12.532,0-23.659-6.988-29.57-17.263c8.111-5.544,17.96-8.781,28.683-8.781C191.462,198.011,201.531,201.247,210.019,206.792z"
|
||||
/>
|
||||
|
||||
<ellipse transform="matrix(0.7011 -0.7131 0.7131 0.7011 -74.3786 182.1882)" style="opacity:0.6;fill:#0d9394;" cx="180.119" cy="179.811" rx="14.437" ry="14.937"/>
|
||||
</g>
|
||||
<polygon style="fill:#FFFFFF;" points="228.524,271.261 137.94,271.261 137.327,253.261 227.912,253.261 "/>
|
||||
<polygon style="fill:#FFFFFF;" points="229.62,303.434 139.035,303.434 138.422,285.434 229.007,285.434 "/>
|
||||
<path style="fill:#0d9394;" d="M194.658,287.908l-21.829,2.968c-0.897,0.122-1.487,0.939-1.317,1.807l2.866,14.628
|
||||
c0.171,0.874,1.042,1.486,1.939,1.365l21.829-2.968c0.897-0.122,1.488-0.933,1.317-1.807l-2.866-14.628
|
||||
C196.427,288.404,195.555,287.786,194.658,287.908z M188.386,302.727l-3.952,0.538l-0.398-4.721
|
||||
c-0.841-0.371-1.45-1.117-1.622-1.996c-0.28-1.43,0.686-2.755,2.153-2.955c1.462-0.199,2.883,0.802,3.164,2.232
|
||||
c0.172,0.879-0.121,1.747-0.776,2.322L188.386,302.727z"/>
|
||||
<path style="fill:#0d9394;" d="M192.504,287.124L192.504,287.124c-0.798,0.108-1.568-0.434-1.72-1.211l-0.281-1.432
|
||||
c-0.772-3.941-4.54-6.916-8.619-6.561c-4.36,0.38-7.283,4.23-6.467,8.394l0.322,1.645c0.152,0.777-0.371,1.495-1.169,1.603l0,0
|
||||
c-0.798,0.108-1.568-0.434-1.72-1.211l-0.273-1.396c-1.076-5.492,2.381-10.772,7.974-11.745c5.88-1.024,11.678,2.942,12.799,8.665
|
||||
l0.322,1.645C193.824,286.297,193.301,287.015,192.504,287.124z"/>
|
||||
<polygon style="fill:#0d9394;" points="214.667,328.639 155.703,328.639 155.305,316.922 214.268,316.922 "/>
|
||||
<path style="fill:#263238;" d="M186.218,262.261c0.062,1.818-1.362,3.292-3.18,3.292s-3.342-1.474-3.404-3.292
|
||||
c-0.062-1.818,1.362-3.292,3.18-3.292S186.156,260.443,186.218,262.261z"/>
|
||||
<path style="fill:#263238;" d="M172.045,262.261c0.062,1.818-1.362,3.292-3.18,3.292c-1.818,0-3.342-1.474-3.404-3.292
|
||||
c-0.062-1.818,1.362-3.292,3.18-3.292S171.983,260.443,172.045,262.261z"/>
|
||||
<path style="fill:#263238;" d="M157.872,262.261c0.062,1.818-1.362,3.292-3.18,3.292c-1.818,0-3.342-1.474-3.404-3.292
|
||||
c-0.062-1.818,1.362-3.292,3.18-3.292C156.286,258.969,157.81,260.443,157.872,262.261z"/>
|
||||
<path style="fill:#263238;" d="M200.391,262.261c0.062,1.818-1.362,3.292-3.18,3.292s-3.342-1.474-3.404-3.292
|
||||
c-0.062-1.818,1.362-3.292,3.18-3.292C198.805,258.969,200.329,260.443,200.391,262.261z"/>
|
||||
<path style="fill:#263238;" d="M214.564,262.261c0.062,1.818-1.362,3.292-3.18,3.292c-1.818,0-3.342-1.474-3.404-3.292
|
||||
c-0.062-1.818,1.362-3.292,3.18-3.292S214.503,260.443,214.564,262.261z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Character_1_">
|
||||
<g>
|
||||
<path style="fill:#FF8B7B;" d="M333.91,174.281c1.333,2.135,2.435,4.184,3.579,6.311c1.139,2.106,2.169,4.273,3.18,6.456
|
||||
c1.989,4.383,3.769,8.905,5.099,13.731c0.178,0.592,0.314,1.22,0.462,1.835l0.219,0.925l0.109,0.462l0.13,0.762
|
||||
c0.286,2.032,0.035,3.689-0.312,5.151c-0.717,2.914-1.873,5.238-3.112,7.456c-2.529,4.391-5.481,8.131-8.886,11.673l-4.211-3.188
|
||||
c2.076-3.94,4.128-8.068,5.637-12.037c0.731-1.974,1.346-3.983,1.526-5.632c0.087-0.811,0.029-1.508-0.083-1.767l-0.395-1.222
|
||||
c-0.164-0.502-0.31-1.001-0.508-1.507c-1.441-4.035-3.274-8.088-5.269-12.084c-1.967-3.981-4.147-8.034-6.293-11.817
|
||||
L333.91,174.281z"/>
|
||||
<path style="fill:#FF8B7B;" d="M331.236,224.425l-4.591,2.437l5.278,6.18c0,0,3.295-2.229,3.444-5.633L331.236,224.425z"/>
|
||||
<polygon style="fill:#FF8B7B;" points="320.466,230.673 326.122,235.16 331.923,233.043 326.644,226.863 "/>
|
||||
<path style="fill:#263238;" d="M301.151,141.564c-0.113,0.556-0.499,0.947-0.863,0.873c-0.363-0.074-0.566-0.584-0.453-1.14
|
||||
c0.113-0.556,0.499-0.947,0.863-0.873C301.061,140.498,301.264,141.009,301.151,141.564z"/>
|
||||
<path style="fill:#FF5652;" d="M300.703,142.522c0,0-1.916,2.95-3.622,4.215c0.797,1.118,2.555,1.038,2.555,1.038L300.703,142.522
|
||||
z"/>
|
||||
<path style="fill:#FF8B7B;" d="M298.901,162.138l0.043-6.554l8.68,1.049c0,0-0.149,5.636-4.996,7.293L298.901,162.138z"/>
|
||||
<polygon style="fill:#FF8B7B;" points="301.396,150.864 307.508,152.62 307.625,156.633 298.944,155.584 "/>
|
||||
<path style="opacity:0.2;" d="M307.51,152.62l-6.11-1.76l-1.19,2.28c0.15,3.87,2.51,7.05,5.64,8.48c1.7-2.23,1.77-4.99,1.77-4.99
|
||||
L307.51,152.62z"/>
|
||||
<path style="fill:#263238;" d="M303.814,138.891c0.081,0,0.162-0.029,0.226-0.089c0.135-0.125,0.143-0.336,0.018-0.471
|
||||
c-1.251-1.354-2.769-1.113-2.835-1.102c-0.181,0.031-0.303,0.203-0.272,0.384c0.031,0.181,0.205,0.302,0.383,0.273l0,0
|
||||
c0.05-0.008,1.237-0.182,2.235,0.898C303.635,138.855,303.724,138.891,303.814,138.891z"/>
|
||||
<path style="fill:#FF8B7B;" d="M316.591,151.683c-1.009,5.146-1.618,12.275,1.982,15.709c0,0-1.407,5.22-10.968,5.22
|
||||
c-10.514,0-5.058-4.581-5.058-4.581c4.37-1.356,4.332-6.334,3.332-10.333L316.591,151.683z"/>
|
||||
<path style="fill:#0d9394;" d="M320.542,170.833c0.936-1.326,0.899-5.515-0.101-6.254c-1.614-1.193-8.517-1.467-17.816,0.671
|
||||
c1.001,4.058-1.143,6.185-1.143,6.185L320.542,170.833z"/>
|
||||
<path style="fill:#0d9394;" d="M351.795,408.237c-0.706,0.153-1.411,0.193-1.751-0.096c-0.143-0.122-0.286-0.354-0.161-0.774
|
||||
c0.066-0.221,0.21-0.386,0.429-0.49c0.95-0.453,3.132,0.436,3.225,0.474c0.061,0.025,0.101,0.083,0.103,0.149
|
||||
c0.002,0.066-0.035,0.126-0.094,0.155C353.212,407.816,352.504,408.084,351.795,408.237z M350.651,407.113
|
||||
c-0.072,0.016-0.137,0.037-0.195,0.065c-0.132,0.063-0.215,0.156-0.253,0.284c-0.089,0.3,0.022,0.394,0.059,0.425
|
||||
c0.378,0.322,1.783,0.025,2.772-0.371C352.362,407.28,351.276,406.978,350.651,407.113z"/>
|
||||
<path style="fill:#0d9394;" d="M353.509,407.668c-0.027,0.006-0.055,0.005-0.082-0.003c-0.795-0.232-2.496-1.441-2.517-2.238
|
||||
c-0.004-0.145,0.047-0.407,0.426-0.539c0.246-0.086,0.494-0.066,0.738,0.059c0.94,0.48,1.534,2.428,1.559,2.511
|
||||
c0.018,0.059,0.002,0.122-0.041,0.165C353.568,407.646,353.54,407.661,353.509,407.668z M351.518,405.182
|
||||
c-0.024,0.005-0.049,0.012-0.073,0.02c-0.206,0.072-0.203,0.173-0.202,0.216c0.012,0.472,1.135,1.42,1.958,1.804
|
||||
c-0.206-0.562-0.676-1.671-1.278-1.978C351.785,405.173,351.652,405.153,351.518,405.182z"/>
|
||||
<path style="fill:#0d9394;" d="M299.865,409.417c-0.903,0-1.775-0.124-2.067-0.53c-0.102-0.142-0.183-0.384,0.014-0.728
|
||||
c0.11-0.193,0.288-0.324,0.528-0.39c1.171-0.318,3.629,1.082,3.733,1.142c0.06,0.035,0.092,0.103,0.081,0.171
|
||||
s-0.064,0.123-0.132,0.137C301.573,409.309,300.706,409.417,299.865,409.417z M298.749,408.053c-0.117,0-0.226,0.012-0.322,0.038
|
||||
c-0.154,0.042-0.26,0.118-0.326,0.233c-0.118,0.207-0.075,0.31-0.032,0.368c0.327,0.455,2.105,0.465,3.413,0.28
|
||||
C300.829,408.638,299.571,408.053,298.749,408.053z"/>
|
||||
<path style="fill:#0d9394;" d="M301.989,409.223c-0.023,0-0.046-0.005-0.068-0.015c-0.849-0.381-2.531-1.902-2.402-2.698
|
||||
c0.03-0.187,0.163-0.419,0.62-0.466c0.342-0.035,0.651,0.062,0.924,0.286c0.895,0.735,1.084,2.629,1.092,2.71
|
||||
c0.006,0.059-0.021,0.117-0.069,0.151C302.058,409.212,302.023,409.223,301.989,409.223z M300.273,406.371
|
||||
c-0.033,0-0.066,0.002-0.1,0.005c-0.3,0.03-0.319,0.148-0.325,0.187c-0.077,0.477,1.065,1.673,1.932,2.193
|
||||
c-0.09-0.553-0.341-1.687-0.928-2.169C300.675,406.443,300.484,406.371,300.273,406.371z"/>
|
||||
<polygon style="fill:#FF8B7B;" points="309.724,409.056 302.69,409.056 301.99,392.768 309.023,392.768 "/>
|
||||
<polygon style="fill:#FF8B7B;" points="361.349,405.8 354.475,407.288 347.573,392.117 354.447,390.628 "/>
|
||||
<path style="fill:#263238;" d="M353.814,406.598l7.723-1.672c0.281-0.061,0.567,0.082,0.687,0.343l2.681,5.817
|
||||
c0.278,0.603-0.09,1.311-0.742,1.44c-2.706,0.537-4.05,0.663-7.447,1.398c-2.09,0.452-6.807,1.602-9.692,2.226
|
||||
c-2.822,0.611-3.88-2.147-2.755-2.661c5.046-2.305,7.154-4.335,8.52-6.227C353.036,406.921,353.403,406.687,353.814,406.598z"/>
|
||||
<path style="fill:#263238;" d="M302.736,408.242h7.681c0.288,0,0.536,0.2,0.599,0.48l1.389,6.252
|
||||
c0.144,0.648-0.348,1.262-1.012,1.251c-2.771-0.047-6.775-0.21-10.257-0.21c-4.072,0-7.589,0.222-12.365,0.222
|
||||
c-2.888,0-3.689-2.919-2.48-3.184c5.503-1.204,9.995-1.333,14.75-4.264C301.559,408.471,302.129,408.242,302.736,408.242z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M331.167,168.982c6.592,1.511,12.028,18.341,12.028,18.341l-13.238,10.09
|
||||
c0,0-4.859-4.581-7.021-12.999C320.669,175.593,324.426,167.437,331.167,168.982z"/>
|
||||
<path style="opacity:0.4;" d="M331.167,168.982c6.592,1.511,12.028,18.341,12.028,18.341l-13.238,10.09
|
||||
c0,0-4.859-4.581-7.021-12.999C320.669,175.593,324.426,167.437,331.167,168.982z"/>
|
||||
</g>
|
||||
<path style="fill:#FF8B7B;" d="M296.502,189.067c-1.645,1.775-3.285,3.354-4.984,4.979c-0.843,0.808-1.705,1.6-2.586,2.377
|
||||
l-1.328,1.163l-0.334,0.289c-0.162,0.139-0.359,0.304-0.57,0.465c-0.44,0.325-0.922,0.704-1.932,1.141
|
||||
c-0.535,0.206-1.223,0.479-2.432,0.503c-0.575,0.009-1.355-0.091-2.1-0.373c-0.761-0.282-1.497-0.77-2.001-1.272
|
||||
c-1.046-1.051-1.362-1.973-1.568-2.59c-0.191-0.636-0.246-1.09-0.285-1.487c-0.063-0.776-0.023-1.301,0.02-1.787
|
||||
c0.047-0.48,0.113-0.895,0.186-1.287c0.294-1.542,0.71-2.786,1.161-4.032c0.457-1.233,0.963-2.417,1.554-3.614
|
||||
c0.635-1.274,1.248-2.198,1.859-3.263c2.471-4.13,5.371-7.902,8.452-11.457c3.148-3.531,6.452-6.759,10.251-9.717l3.681,3.787
|
||||
c-2.586,3.459-5.128,7.166-7.477,10.822c-2.347,3.683-4.524,7.433-6.398,11.246c-0.432,0.942-0.965,1.974-1.265,2.762
|
||||
c-0.351,0.861-0.673,1.786-0.938,2.697c-0.262,0.9-0.473,1.838-0.568,2.526c-0.022,0.166-0.033,0.311-0.033,0.395
|
||||
c-0.003,0.077,0.017,0.12,0.007-0.093c-0.01-0.116-0.021-0.289-0.129-0.655c-0.122-0.348-0.312-1.007-1.154-1.859
|
||||
c-0.406-0.399-1.016-0.817-1.648-1.043c-0.611-0.239-1.25-0.309-1.684-0.307c-0.925,0.021-1.338,0.21-1.612,0.308
|
||||
c-0.49,0.212-0.5,0.269-0.495,0.247l0.384-0.35l1.201-1.1l2.391-2.239c1.582-1.491,3.174-3.081,4.677-4.557L296.502,189.067z"/>
|
||||
<path style="opacity:0.2;" d="M325.517,181.358c3.581,3.543,4.749,9.996,5.027,15.606l-0.584,0.45c0,0-4.864-4.586-7.028-13.002
|
||||
c-0.134-0.526-0.249-1.053-0.345-1.57L325.517,181.358z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M289.508,176.035c-1.438,7.599-2.338,23.203,1.837,54.105h37.621
|
||||
c0.259-5.775-3.37-33.947,2.201-61.158c0,0-6.449-1.294-12.594-1.59c-4.807-0.232-11.767-0.385-15.993,0.001
|
||||
c-1.764,0.161-3.495,0.416-5.038,0.689C293.474,168.801,290.276,171.976,289.508,176.035z"/>
|
||||
<path style="opacity:0.4;" d="M289.508,176.035c-1.438,7.599-2.338,23.203,1.837,54.105h37.621
|
||||
c0.259-5.775-3.37-33.947,2.201-61.158c0,0-6.449-1.294-12.594-1.59c-4.807-0.232-11.767-0.385-15.993,0.001
|
||||
c-1.764,0.161-3.495,0.416-5.038,0.689C293.474,168.801,290.276,171.976,289.508,176.035z"/>
|
||||
</g>
|
||||
<path style="opacity:0.2;" d="M295.265,187.266l-6.798-1.628c-0.211,4.117-0.23,9.22,0.077,15.53
|
||||
C291.675,197.606,295.667,192.053,295.265,187.266z"/>
|
||||
<g>
|
||||
<polygon style="opacity:0.2;" points="301.991,392.772 302.351,401.168 309.388,401.168 309.028,392.772 "/>
|
||||
<polygon style="opacity:0.2;" points="354.451,390.632 347.573,392.121 351.134,399.941 358.012,398.452 "/>
|
||||
</g>
|
||||
<path style="fill:#FF8B7B;" d="M319.934,144.155c-1.807,6.743-2.522,10.781-6.683,13.585c-6.259,4.217-14.051-0.623-14.295-7.77
|
||||
c-0.219-6.433,2.773-16.379,10.008-17.738C316.093,130.894,321.741,137.412,319.934,144.155z"/>
|
||||
<path style="fill:#263238;" d="M304.147,144.414c-0.334-0.904-1.892-7.872-0.43-9.681c1.463-1.809,18.111-0.508,20.573,1.915
|
||||
c4.084,4.019,1.251,7.606-3.22,12.234c-3.363,3.48-3.492,7.403-5.188,7.978c-2.972,1.009-7.581,0.061-8.505-3.112
|
||||
C306.453,150.576,304.147,144.414,304.147,144.414z"/>
|
||||
<path style="fill:#263238;" d="M322.274,128.722c-5.885-2.506-16.917,0.266-22.875-1.17c-0.213,3.085,1.649,8.032,7.606,9.362
|
||||
c0,0,8.457,1.649,15,1.383C328.548,138.031,327.271,130.85,322.274,128.722z"/>
|
||||
<path style="fill:#263238;" d="M323.194,136.861c0,0,3.639,0.41,6.222-1.194C330.521,138.326,324.472,139.056,323.194,136.861z"/>
|
||||
<path style="fill:#FF8B7B;" d="M307.354,144.691c-0.109,1.825-0.956,3.542-1.976,4.666c-1.533,1.689-3.133,0.638-3.405-1.42
|
||||
c-0.245-1.852,0.258-4.963,2.133-5.894C305.953,141.124,307.478,142.604,307.354,144.691z"/>
|
||||
<path style="fill:#0d9394;" d="M304.69,230.14c0,0,7.982,53.753,12.365,73.891c4.799,22.053,30.531,95.014,30.531,95.014
|
||||
l12.591-2.726c0,0-17.993-59.458-22.021-90.289c-3.094-23.682-9.19-75.89-9.19-75.89H304.69z"/>
|
||||
<path style="fill:#263238;" d="M344.571,394.842c-0.054,0.012,2.347,4.553,2.347,4.553l14.166-3.067l-1.194-4.259L344.571,394.842
|
||||
z"/>
|
||||
<path style="opacity:0.3;" d="M309.735,249.292c9.23,1.81,8.253,36.23,7.143,53.933c-2.662-12.514-6.558-36.594-9.22-53.684
|
||||
C308.27,249.235,308.96,249.139,309.735,249.292z"/>
|
||||
<path style="fill:#0d9394;" d="M291.345,230.14c0,0-0.969,52.59-0.204,74.039c0.796,22.311,8.589,95.363,8.589,95.363h11.915
|
||||
c0,0,0.437-71.748,0.967-93.66c0.578-23.887,3.462-75.742,3.462-75.742H291.345z"/>
|
||||
<path style="fill:#263238;" d="M297.437,394.796c-0.055,0,0.672,4.947,0.672,4.947h14.494l0.392-4.415L297.437,394.796z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M304.252,178.342c3.373,9.089-16.442,19.795-16.442,19.795l-8.578-11.028
|
||||
c0,0,5.723-11.39,12.746-16.525C300.653,164.241,301.684,171.423,304.252,178.342z"/>
|
||||
<path style="opacity:0.4;" d="M304.252,178.342c3.373,9.089-16.442,19.795-16.442,19.795l-8.578-11.028
|
||||
c0,0,5.723-11.39,12.746-16.525C300.653,164.241,301.684,171.423,304.252,178.342z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Thinking">
|
||||
<g>
|
||||
<ellipse style="fill:#0d9394;" cx="381.875" cy="86.333" rx="36.087" ry="23"/>
|
||||
<path style="fill:#FFFFFF;" d="M368.846,97.91c-2.005,0-3.962-0.6-5.662-1.759c-2.28-1.554-3.795-3.91-4.266-6.634
|
||||
c-0.898-5.207,2.56-10.395,7.709-11.565l0,0c4.24-0.961,8.546,0.846,10.823,4.517l23.167-4.781
|
||||
c1.877-0.387,3.784,0.732,4.246,2.497c0.245,0.938,0.1,1.907-0.41,2.729c-0.511,0.822-1.313,1.381-2.26,1.577l-0.608,0.126
|
||||
c-0.182,0.037-0.33,0.147-0.418,0.309c-0.088,0.16-0.101,0.349-0.035,0.519l0.408,1.062c0.277,0.719,0.019,1.528-0.616,1.923
|
||||
c-0.494,0.308-0.83,0.836-0.897,1.414c-0.082,0.708-0.555,1.253-1.204,1.387l-0.477,0.098c-0.647,0.132-1.297-0.178-1.654-0.796
|
||||
c-0.418-0.722-1.248-1.094-2.068-0.924c-0.823,0.17-1.442,0.841-1.542,1.67c-0.085,0.709-0.558,1.253-1.205,1.386l-0.467,0.096
|
||||
c-0.641,0.133-1.297-0.179-1.654-0.796c-0.293-0.504-0.813-0.856-1.392-0.942c-0.739-0.11-1.298-0.75-1.329-1.522l-0.046-1.137
|
||||
c-0.007-0.185-0.091-0.349-0.236-0.462c-0.145-0.114-0.319-0.155-0.507-0.119l-7.382,1.524c-0.626,4.183-3.779,7.532-7.951,8.393
|
||||
C370.224,97.839,369.532,97.91,368.846,97.91z M366.848,78.927c-4.639,1.054-7.754,5.729-6.943,10.42
|
||||
c0.423,2.455,1.788,4.577,3.843,5.978s4.527,1.896,6.964,1.393c3.865-0.798,6.762-3.968,7.206-7.888l0.041-0.36l8.085-1.669
|
||||
c0.467-0.097,0.95,0.017,1.325,0.311c0.375,0.293,0.6,0.734,0.62,1.21l0.046,1.137c0.011,0.288,0.216,0.535,0.476,0.573
|
||||
c0.891,0.133,1.659,0.654,2.11,1.43c0.11,0.19,0.319,0.373,0.588,0.318l0.467-0.096c0.265-0.055,0.388-0.307,0.414-0.525
|
||||
c0.149-1.256,1.087-2.273,2.333-2.53c1.242-0.256,2.501,0.308,3.135,1.402c0.11,0.19,0.318,0.375,0.587,0.318l0.478-0.098
|
||||
c0.265-0.055,0.387-0.306,0.411-0.523c0.104-0.892,0.602-1.674,1.364-2.147c0.224-0.139,0.313-0.446,0.21-0.714l-0.408-1.063
|
||||
c-0.171-0.445-0.138-0.939,0.091-1.357c0.229-0.417,0.627-0.712,1.094-0.808l0.608-0.126c0.676-0.139,1.248-0.539,1.612-1.124
|
||||
c0.364-0.586,0.468-1.278,0.293-1.948c-0.33-1.258-1.713-2.054-3.078-1.77l-23.869,4.926l-0.18-0.314
|
||||
C374.768,79.784,370.786,78.032,366.848,78.927L366.848,78.927z M368.859,94.213c-1.238,0-2.449-0.36-3.508-1.056
|
||||
c-1.43-0.941-2.407-2.381-2.752-4.056c-0.347-1.678-0.02-3.389,0.921-4.817c0.94-1.427,2.381-2.403,4.057-2.749
|
||||
c1.678-0.347,3.389-0.021,4.816,0.918c1.427,0.938,2.403,2.38,2.749,4.059c0.347,1.675,0.02,3.385-0.918,4.813
|
||||
c-0.939,1.43-2.381,2.408-4.06,2.754l0,0C369.73,94.169,369.293,94.213,368.859,94.213z M368.889,82.4
|
||||
c-0.369,0-0.74,0.038-1.11,0.114c-1.414,0.292-2.63,1.116-3.423,2.32c-0.793,1.205-1.069,2.648-0.777,4.065
|
||||
c0.292,1.413,1.116,2.628,2.323,3.422c1.206,0.793,2.649,1.07,4.063,0.778l0,0c1.416-0.292,2.632-1.118,3.425-2.324
|
||||
c0.792-1.205,1.067-2.647,0.775-4.062c-0.293-1.417-1.116-2.634-2.32-3.426C370.954,82.704,369.933,82.4,368.889,82.4z"/>
|
||||
<ellipse style="opacity:0.6;fill:#0d9394;" cx="352.495" cy="115.258" rx="11.861" ry="7.56"/>
|
||||
<ellipse style="opacity:0.3;fill:#0d9394;" cx="333.629" cy="122.817" rx="4.869" ry="3.103"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 24 KiB |
742
src/assets/illustration/login-cover-dark.svg
Normal file
@@ -0,0 +1,742 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
|
||||
<g id="Background_Complete">
|
||||
<g>
|
||||
<rect y="382.398" style="fill:#2b3044;" width="500" height="0.25"/>
|
||||
<rect x="416.779" y="398.494" style="fill:#2b3044;" width="33.122" height="0.25"/>
|
||||
<rect x="322.527" y="401.208" style="fill:#2b3044;" width="8.693" height="0.25"/>
|
||||
<rect x="396.586" y="389.208" style="fill:#2b3044;" width="19.192" height="0.25"/>
|
||||
<rect x="52.459" y="390.888" style="fill:#2b3044;" width="43.193" height="0.25"/>
|
||||
<rect x="104.556" y="390.888" style="fill:#2b3044;" width="6.333" height="0.25"/>
|
||||
<rect x="131.471" y="395.111" style="fill:#2b3044;" width="93.676" height="0.25"/>
|
||||
<path style="fill:#2b3044;" d="M237.014,337.8H43.915c-3.147,0-5.708-2.561-5.708-5.708V60.66c0-3.147,2.561-5.708,5.708-5.708
|
||||
h193.099c3.146,0,5.707,2.561,5.707,5.708v271.432C242.721,335.239,240.16,337.8,237.014,337.8z M43.915,55.203
|
||||
c-3.01,0-5.458,2.448-5.458,5.458v271.432c0,3.01,2.448,5.458,5.458,5.458h193.099c3.009,0,5.457-2.448,5.457-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.457-5.458H43.915z"/>
|
||||
<path style="fill:#2b3044;" d="M453.31,337.8H260.212c-3.147,0-5.707-2.561-5.707-5.708V60.66c0-3.147,2.561-5.708,5.707-5.708
|
||||
H453.31c3.148,0,5.708,2.561,5.708,5.708v271.432C459.019,335.239,456.458,337.8,453.31,337.8z M260.212,55.203
|
||||
c-3.009,0-5.457,2.448-5.457,5.458v271.432c0,3.01,2.448,5.458,5.457,5.458H453.31c3.01,0,5.458-2.448,5.458-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.458-5.458H260.212z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M81.559,365.34c-0.237-2.857,0.152-6.559,3.487-7.659c5.652-1.864,9.005-6.241,8.816-11.192
|
||||
c-0.189-4.951,5.76-9.768,10.222-5.129c4.462,4.64,3.867-3.568,9.817-5.562c5.949-1.995,10.992,2.844,9.363,7.267
|
||||
c-1.629,4.422,4.242,7.185,11.272,3.424c7.03-3.761,14.764,3.081,13.277,8.435c-1.487,5.355-0.27,5.95,4.178,4.165
|
||||
c3.594-1.442,9.476,1.584,10.132,6.251H81.559z"/>
|
||||
<path style="fill:#2b3044;" d="M362.071,365.34c-0.275-2.263-0.153-5.564,2.653-6.49c4.388-1.447,6.99-4.845,6.844-8.688
|
||||
c-0.147-3.843,4.472-7.583,7.936-3.981c3.464,3.602,3.002-2.77,7.621-4.318c4.618-1.548,8.533,2.208,7.269,5.641
|
||||
c-1.265,3.433,3.293,5.577,8.75,2.658c5.457-2.919,11.461,2.392,10.307,6.548c-1.155,4.157-0.209,4.619,3.244,3.233
|
||||
c2.927-1.174,7.79,1.472,7.893,5.397H362.071z"/>
|
||||
<path style="fill:#2b3044;" d="M390.823,365.34H288.112c-1.445-4.82,2.292-10.601,6.361-11.415c5-1,10.026-9.798,10.263-15.399
|
||||
c0.237-5.601,9.237-22.829,23.237-12.19c14,10.639,9.745,1.567,19.873-1.422c10.127-2.989,16.516,5.611,12.072,12.061
|
||||
c0,0,10.174-2.55,14.365,6.95c4.191,9.5,0,15.4,0,15.4S387.142,358.951,390.823,365.34z"/>
|
||||
<path style="fill:#2b3044;" d="M204.253,95.769c0-2.668-2.163-4.83-4.83-4.83c-0.482,0-0.947,0.073-1.387,0.204
|
||||
c0.07-0.484,0.108-0.979,0.108-1.483c0-5.649-4.58-10.229-10.229-10.229c-0.644,0-1.273,0.062-1.884,0.176
|
||||
c-1.572-2.573-4.398-4.296-7.634-4.296c-4.898,0-8.871,3.935-8.943,8.816c-0.05-0.001-0.099-0.007-0.149-0.007
|
||||
c-4.551,0-8.24,3.689-8.24,8.24c0,4.551,3.689,8.24,8.24,8.24h30.261l-0.006-0.007C202.163,100.52,204.253,98.391,204.253,95.769z
|
||||
"/>
|
||||
<path style="fill:#2b3044;" d="M383.485,124.249c0-2.668-2.163-4.83-4.83-4.83c-0.482,0-0.947,0.073-1.387,0.204
|
||||
c0.07-0.484,0.108-0.979,0.108-1.483c0-5.649-4.58-10.229-10.229-10.229c-0.644,0-1.273,0.062-1.884,0.176
|
||||
c-1.572-2.573-4.398-4.296-7.634-4.296c-4.898,0-8.871,3.935-8.943,8.816c-0.05-0.001-0.099-0.007-0.149-0.007
|
||||
c-4.551,0-8.24,3.689-8.24,8.24c0,4.551,3.689,8.24,8.24,8.24h30.261l-0.006-0.007C381.395,129,383.485,126.871,383.485,124.249z"
|
||||
/>
|
||||
<path style="fill:#2b3044;" d="M273.867,110.24c0-1.659-1.345-3.003-3.003-3.003c-0.3,0-0.589,0.045-0.862,0.127
|
||||
c0.044-0.301,0.067-0.609,0.067-0.922c0-3.512-2.847-6.359-6.359-6.359c-0.4,0-0.792,0.039-1.172,0.109
|
||||
c-0.977-1.6-2.734-2.671-4.746-2.671c-3.045,0-5.515,2.447-5.56,5.481c-0.031,0-0.061-0.005-0.093-0.005
|
||||
c-2.829,0-5.123,2.294-5.123,5.123s2.294,5.123,5.123,5.123h18.813l-0.004-0.004C272.568,113.194,273.867,111.87,273.867,110.24z"
|
||||
/>
|
||||
<path style="fill:#2b3044;" d="M430.743,104.372c0-1.659-1.345-3.003-3.003-3.003c-0.3,0-0.589,0.045-0.862,0.127
|
||||
c0.044-0.301,0.067-0.609,0.067-0.922c0-3.512-2.847-6.359-6.359-6.359c-0.4,0-0.792,0.039-1.172,0.109
|
||||
c-0.977-1.6-2.734-2.671-4.746-2.671c-3.045,0-5.515,2.447-5.56,5.481c-0.031,0-0.061-0.005-0.093-0.005
|
||||
c-2.829,0-5.123,2.294-5.123,5.123s2.294,5.123,5.123,5.123h18.813l-0.004-0.004C429.444,107.326,430.743,106.003,430.743,104.372
|
||||
z"/>
|
||||
<path style="fill:#2b3044;" d="M104.923,122.522c0-1.659-1.345-3.003-3.003-3.003c-0.3,0-0.589,0.045-0.862,0.127
|
||||
c0.044-0.301,0.067-0.609,0.067-0.922c0-3.512-2.847-6.36-6.359-6.36c-0.4,0-0.792,0.039-1.172,0.11
|
||||
c-0.977-1.6-2.734-2.671-4.746-2.671c-3.045,0-5.515,2.447-5.56,5.481c-0.031-0.001-0.061-0.005-0.093-0.005
|
||||
c-2.829,0-5.123,2.294-5.123,5.123s2.294,5.123,5.123,5.123h18.813l-0.004-0.004C103.624,125.475,104.923,124.152,104.923,122.522
|
||||
z"/>
|
||||
<g>
|
||||
<path style="fill:#1e1e2d;" d="M380.748,208.154c0.152-0.551,0.243-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.949c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.452-3.401
|
||||
c-0.45-1.879-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.56-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.775,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.643,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.939-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.385
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.162c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.316,0.446,0.547,0.581c0.217,0.127,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C378.613,211.237,380.152,210.317,380.748,208.154z"/>
|
||||
<path style="fill:#1e1e2d;" d="M350.477,204.883c0.152-0.551,0.243-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.455
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484s1.75-2.157,1.452-3.401
|
||||
c-0.45-1.878-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.248,0.152-2.01,1.56-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.791,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.776,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.902,1.904,1.721c0.363,1.023-0.682,1.94-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.386
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.162c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.315,0.446,0.547,0.581c0.217,0.127,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.777,0.889,4.795,1.838C348.342,207.966,349.881,207.046,350.477,204.883z"/>
|
||||
<path style="fill:#1e1e2d;" d="M347.56,185.606c0.152-0.551,0.243-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.949c-0.813-0.988-0.152-2.475,0.635-3.484s1.75-2.157,1.452-3.401
|
||||
c-0.45-1.878-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.775,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.902,1.904,1.721c0.363,1.023-0.682,1.939-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.386
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.154,0.133,0.373,0.153,0.577,0.163c2.628,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.316,0.446,0.547,0.581c0.217,0.126,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C345.425,188.689,346.964,187.769,347.56,185.606z"/>
|
||||
<path style="fill:#1e1e2d;" d="M327.619,195.208c0.152-0.551,0.242-1.182,0.284-1.877c0.231-3.895,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.452-3.401
|
||||
c-0.45-1.879-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.776,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.94-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.385
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.162c2.628,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.315,0.446,0.547,0.581c0.217,0.127,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.777,0.889,4.795,1.838C325.484,198.29,327.023,197.371,327.619,195.208z"/>
|
||||
<path style="fill:#1e1e2d;" d="M307.466,190.773c0.152-0.551,0.242-1.182,0.284-1.878c0.231-3.895,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.452-3.401
|
||||
c-0.45-1.878-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.942-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.776,3.559s-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.94-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.395,1.596-0.805,4.469,1.107,5.385
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.154,0.133,0.373,0.153,0.577,0.162c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.316,0.446,0.548,0.581c0.217,0.126,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C305.331,193.855,306.87,192.936,307.466,190.773z"/>
|
||||
<path style="fill:#1e1e2d;" d="M307.203,212.331c0.12-0.434,0.191-0.931,0.223-1.478c0.182-3.066,3.11-2.581,5.6-2.997
|
||||
c1.946-0.325-3.206-5.24,0.717-6.826c0.729-0.295,1.521-0.628,1.893-1.32c0.493-0.915-0.006-2.12-0.854-2.72
|
||||
c-0.849-0.6-1.939-0.727-2.979-0.747c-0.64-0.778-0.119-1.949,0.5-2.743c0.619-0.795,1.378-1.699,1.143-2.678
|
||||
c-0.354-1.479-2.422-1.532-3.915-1.245c-0.552-0.894-0.541-2.011-0.809-3.027c-0.268-1.016-1.076-2.082-2.118-1.955
|
||||
c-0.982,0.12-1.583,1.229-2.546,1.456c-1.119,0.264-2.087-0.726-2.965-1.468c-0.877-0.742-2.412-1.205-3.016-0.228
|
||||
c-0.362,0.585-0.145,1.401-0.521,1.977c-0.652,0.999-2.197,0.379-3.157-0.329c-0.96-0.708-2.488-1.35-3.163-0.367
|
||||
c-0.207,0.301-0.252,0.681-0.372,1.026c-0.454,1.31-1.87,1.963-2.973,2.803c-1.103,0.84-1.977,2.511-1.043,3.536
|
||||
c0.461,0.506,1.27,0.711,1.499,1.355c0.286,0.805-0.537,1.527-1.188,2.081c-1.084,0.922-1.28,3.681,0.153,4.435
|
||||
c0.602,0.317,1.484,0.414,1.632,1.078c0.132,0.593-0.47,1.055-0.87,1.513c-1.099,1.257-0.634,3.519,0.872,4.241
|
||||
c0.344,0.165,0.767,0.3,0.894,0.66c0.091,0.257-0.008,0.538-0.082,0.801c-0.14,0.498-0.187,1.021-0.138,1.536
|
||||
c0.017,0.176,0.053,0.367,0.187,0.482c0.122,0.104,0.294,0.121,0.454,0.128c2.07,0.092,3.068-0.64,4.331,1.161
|
||||
c0.121,0.173,0.248,0.351,0.431,0.458c0.171,0.099,0.374,0.126,0.571,0.142c1.423,0.117,2.353-0.771,3.653-0.936
|
||||
c1.804-0.23,2.186,0.7,3.775,1.447C305.522,214.758,306.734,214.034,307.203,212.331z"/>
|
||||
<path style="fill:#1e1e2d;" d="M295.911,204.883c0.152-0.551,0.242-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.455
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.451-3.401
|
||||
c-0.45-1.878-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.56-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.776,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.902,1.904,1.721c0.363,1.023-0.682,1.94-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.395,1.596-0.805,4.469,1.107,5.386
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.178,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.154,0.133,0.373,0.153,0.577,0.162c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.315,0.446,0.547,0.581c0.217,0.127,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C293.776,207.966,295.314,207.046,295.911,204.883z"/>
|
||||
<path style="fill:#1e1e2d;" d="M327.619,171.495c0.152-0.551,0.242-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484s1.75-2.157,1.452-3.401
|
||||
c-0.45-1.879-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.942-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.776,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.94-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.385
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.223,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.163c2.628,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.315,0.446,0.547,0.581c0.217,0.126,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.777,0.889,4.795,1.838C325.484,174.578,327.023,173.658,327.619,171.495z"/>
|
||||
<path style="fill:#1e1e2d;" d="M353.509,172.819c0.152-0.551,0.243-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.455
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.452-3.401
|
||||
c-0.45-1.878-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.921-3.765-1.864c-1.114-0.942-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.663-2.375,2.492-3.775,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.939-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.47,1.107,5.386
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.223,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.163c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.316,0.446,0.547,0.581c0.217,0.126,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C351.374,175.902,352.913,174.982,353.509,172.819z"/>
|
||||
<path style="fill:#1e1e2d;" d="M369.235,183.414c0.152-0.551,0.243-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.949c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.452-3.401
|
||||
c-0.45-1.879-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.775,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.939-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.386
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.223,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.162c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.315,0.446,0.547,0.581c0.217,0.126,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C367.1,186.497,368.639,185.577,369.235,183.414z"/>
|
||||
<path style="fill:#2b3044;" d="M364.467,196.805c0,0-6.577,9.298-8.845,12.246c-2.268,2.948-13.607,21.317-15.15,33.467
|
||||
c-0.165,1.297-0.327,2.413-0.485,3.389c4.877,32.193,4.112,91.091,3.94,101.175h-15.452c-0.142-11.37-1.455-115.31-1.94-118.484
|
||||
c-0.512-3.357-6.972-16.146-16.95-21.4c-9.978-5.254-18.601-22.64-18.601-22.64h3.18c0,0,5.896,10.659,14.287,16.555
|
||||
c1.219,0.856,2.48,1.569,3.775,2.238c-0.301-9.605,3.337-18.793,3.337-18.793l1.717,1.587
|
||||
c-2.318,9.493-2.013,15.573-1.312,19.066c2.816,1.411,5.738,3.045,8.676,5.806c8.704-11.318,13.598-37.202,13.598-37.202
|
||||
l2.229,1.217c0,0-0.724,7.03-2.878,15.875c-1.631,6.699-6.43,19.313-8.663,25.04c2.219,3.082,4.423,7.067,6.575,12.342
|
||||
c0.244-0.375,0.519-0.717,0.84-1.007c5.67-5.126,16.328-29.345,16.328-29.345c2.578-5.63-1.361-20.41-1.361-20.41h2.975
|
||||
l1.333,12.926l7.484-8.164l1.361,1.134l-7.937,10.205l-4.082,12.93l10.659-11.796L364.467,196.805z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#1e1e2d;" d="M83.655,242.833c-0.117-0.423-0.186-0.907-0.218-1.441c-0.178-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.698-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.651
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.623-0.758,0.116-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.359-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.949c0.261-0.99,1.048-2.029,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.927c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.424-1.315,3.082-0.357
|
||||
c0.201,0.293,0.246,0.663,0.362,0.999c0.442,1.277,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.692-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.404-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.135,1.496
|
||||
c-0.016,0.172-0.052,0.357-0.182,0.47c-0.119,0.102-0.286,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.22,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.556,0.139c-1.386,0.114-2.293-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C85.294,245.198,84.113,244.493,83.655,242.833z"/>
|
||||
<path style="fill:#1e1e2d;" d="M106.881,240.323c-0.117-0.423-0.186-0.907-0.218-1.441c-0.177-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.698-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.65
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.117-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.949c0.261-0.99,1.048-2.029,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.481,1.418c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.351-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.927c0.635,0.973,2.141,0.369,3.076-0.321s2.424-1.315,3.082-0.357
|
||||
c0.201,0.294,0.246,0.663,0.362,0.999c0.442,1.277,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.497
|
||||
c-0.016,0.171-0.051,0.357-0.182,0.47c-0.119,0.102-0.287,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.22,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.556,0.139c-1.386,0.114-2.293-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C108.52,242.689,107.339,241.983,106.881,240.323z"/>
|
||||
<path style="fill:#1e1e2d;" d="M109.119,225.532c-0.117-0.423-0.186-0.907-0.218-1.441c-0.178-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.699-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.651
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.116-1.899-0.487-2.673c-0.604-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.95c0.261-0.99,1.048-2.028,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.418c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.142,1.365,0.508,1.926c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.425-1.315,3.083-0.357
|
||||
c0.201,0.293,0.246,0.663,0.362,0.999c0.442,1.276,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.496
|
||||
c-0.016,0.172-0.051,0.357-0.182,0.47c-0.118,0.102-0.286,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.293-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C110.758,227.897,109.577,227.192,109.119,225.532z"/>
|
||||
<path style="fill:#1e1e2d;" d="M124.419,232.9c-0.116-0.423-0.186-0.907-0.218-1.441c-0.177-2.988-3.03-2.514-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.699-6.651c-0.71-0.287-1.482-0.612-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.651
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.117-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.95c0.261-0.99,1.048-2.028,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.926c0.635,0.973,2.141,0.369,3.076-0.321s2.424-1.315,3.082-0.357
|
||||
c0.202,0.294,0.246,0.663,0.362,1c0.442,1.276,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.617,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.497
|
||||
c-0.016,0.171-0.051,0.357-0.182,0.47c-0.119,0.102-0.286,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.292-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C126.058,235.265,124.877,234.559,124.419,232.9z"/>
|
||||
<path style="fill:#1e1e2d;" d="M139.882,229.497c-0.117-0.423-0.186-0.907-0.218-1.441c-0.178-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.699-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.651
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.623-0.758,0.116-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.359-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.95c0.261-0.99,1.048-2.028,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.926c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.425-1.315,3.082-0.357
|
||||
c0.202,0.293,0.246,0.663,0.362,0.999c0.442,1.276,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.849,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.872,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.497
|
||||
c-0.016,0.172-0.051,0.357-0.182,0.47c-0.119,0.102-0.286,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.292-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C141.52,231.862,140.34,231.156,139.882,229.497z"/>
|
||||
<path style="fill:#1e1e2d;" d="M140.084,246.037c-0.092-0.333-0.146-0.714-0.171-1.134c-0.14-2.353-2.386-1.98-4.297-2.299
|
||||
c-1.493-0.249,2.46-4.021-0.55-5.237c-0.559-0.226-1.167-0.481-1.452-1.012c-0.378-0.702,0.004-1.626,0.656-2.087
|
||||
c0.651-0.461,1.488-0.558,2.285-0.573c0.491-0.597,0.092-1.495-0.383-2.105c-0.475-0.61-1.057-1.303-0.877-2.055
|
||||
c0.272-1.135,1.858-1.176,3.004-0.955c0.423-0.686,0.415-1.543,0.621-2.323c0.205-0.779,0.825-1.597,1.625-1.5
|
||||
c0.754,0.092,1.214,0.943,1.953,1.117c0.858,0.202,1.601-0.557,2.275-1.126c0.673-0.569,1.851-0.925,2.314-0.175
|
||||
c0.278,0.449,0.111,1.075,0.4,1.517c0.5,0.766,1.686,0.291,2.422-0.253c0.736-0.543,1.909-1.035,2.427-0.281
|
||||
c0.159,0.231,0.194,0.522,0.285,0.787c0.348,1.005,1.435,1.506,2.281,2.15c0.846,0.645,1.517,1.927,0.801,2.713
|
||||
c-0.353,0.388-0.975,0.545-1.15,1.04c-0.219,0.618,0.412,1.172,0.912,1.597c0.832,0.707,0.982,2.824-0.117,3.403
|
||||
c-0.462,0.243-1.139,0.318-1.252,0.827c-0.101,0.455,0.361,0.81,0.668,1.161c0.843,0.964,0.486,2.7-0.669,3.253
|
||||
c-0.264,0.127-0.588,0.23-0.686,0.506c-0.07,0.197,0.006,0.413,0.063,0.615c0.107,0.382,0.143,0.783,0.106,1.178
|
||||
c-0.013,0.135-0.041,0.281-0.143,0.37c-0.093,0.08-0.226,0.093-0.349,0.098c-1.588,0.071-2.354-0.491-3.323,0.891
|
||||
c-0.093,0.133-0.191,0.27-0.331,0.351c-0.131,0.077-0.287,0.097-0.438,0.109c-1.092,0.09-1.805-0.591-2.803-0.718
|
||||
c-1.384-0.176-1.677,0.537-2.897,1.11C141.374,247.9,140.444,247.344,140.084,246.037z"/>
|
||||
<path style="fill:#1e1e2d;" d="M148.748,240.323c-0.117-0.423-0.186-0.907-0.218-1.441c-0.178-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.698-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.65
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.623-0.758,0.117-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.359-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.949s1.048-2.029,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.418c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.927c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.424-1.315,3.082-0.357
|
||||
c0.202,0.294,0.246,0.663,0.362,0.999c0.442,1.277,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.617,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.872,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.135,1.497
|
||||
c-0.016,0.171-0.051,0.357-0.182,0.47c-0.119,0.102-0.287,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.292-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C150.387,242.689,149.206,241.983,148.748,240.323z"/>
|
||||
<path style="fill:#1e1e2d;" d="M124.419,214.706c-0.116-0.423-0.186-0.907-0.218-1.441c-0.177-2.988-3.03-2.514-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.699-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.651
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.117-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.95c0.261-0.99,1.048-2.028,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.926c0.635,0.973,2.141,0.369,3.076-0.321s2.424-1.315,3.082-0.357
|
||||
c0.202,0.293,0.246,0.663,0.362,1c0.442,1.276,1.822,1.912,2.897,2.731s1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.617,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.496
|
||||
c-0.016,0.172-0.051,0.357-0.182,0.47c-0.119,0.102-0.286,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.292-0.751-3.559-0.913
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C126.058,217.071,124.877,216.365,124.419,214.706z"/>
|
||||
<path style="fill:#1e1e2d;" d="M104.555,215.721c-0.117-0.423-0.186-0.907-0.218-1.441c-0.177-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.698-6.651c-0.71-0.287-1.482-0.612-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.65
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.117-1.899-0.487-2.673c-0.604-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.949c0.261-0.99,1.048-2.029,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.926c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.424-1.315,3.082-0.357
|
||||
c0.201,0.294,0.246,0.663,0.362,0.999c0.442,1.277,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.692-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.497
|
||||
c-0.016,0.171-0.051,0.357-0.182,0.47c-0.119,0.102-0.287,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.556,0.139c-1.386,0.114-2.293-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C106.193,218.087,105.012,217.381,104.555,215.721z"/>
|
||||
<path style="fill:#1e1e2d;" d="M92.489,223.85c-0.117-0.423-0.186-0.907-0.218-1.44c-0.178-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.699-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.65
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.117-1.899-0.487-2.673c-0.604-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.95c0.261-0.99,1.048-2.028,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.142,1.365,0.508,1.927c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.425-1.315,3.082-0.357
|
||||
c0.201,0.294,0.246,0.663,0.362,1c0.442,1.276,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.692-1.461,1.321c-0.279,0.785,0.524,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.781c0.136,0.485,0.182,0.995,0.134,1.496
|
||||
c-0.016,0.171-0.051,0.357-0.182,0.47c-0.118,0.102-0.286,0.118-0.443,0.124c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.343-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.292-0.751-3.559-0.913
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C94.127,226.216,92.946,225.51,92.489,223.85z"/>
|
||||
<path style="fill:#2b3044;" d="M96.147,234.125c0,0,5.046,7.134,6.786,9.396c1.74,2.262,10.44,16.356,11.624,25.678
|
||||
c0.126,0.995,0.251,1.851,0.372,2.6c-3.742,24.701-3.155,69.892-3.023,77.629h11.856c0.109-8.724,1.117-88.474,1.488-90.909
|
||||
c0.393-2.576,5.349-12.388,13.005-16.419c7.656-4.031,14.272-17.371,14.272-17.371h-2.44c0,0-4.524,8.178-10.962,12.702
|
||||
c-0.935,0.657-1.903,1.204-2.897,1.717c0.231-7.37-2.56-14.419-2.56-14.419l-1.317,1.218c1.779,7.284,1.545,11.949,1.006,14.629
|
||||
c-2.161,1.083-4.402,2.336-6.657,4.455c-6.678-8.684-10.433-28.544-10.433-28.544l-1.71,0.934c0,0,0.556,5.394,2.208,12.18
|
||||
c1.251,5.14,4.933,14.818,6.647,19.212c-1.703,2.365-3.394,5.422-5.045,9.469c-0.187-0.288-0.398-0.55-0.644-0.772
|
||||
c-4.35-3.933-12.528-22.515-12.528-22.515c-1.978-4.32,1.044-15.66,1.044-15.66h-2.283l-1.023,9.918l-5.742-6.264l-1.044,0.87
|
||||
l6.09,7.83l3.132,9.92l-8.178-9.05L96.147,234.125z"/>
|
||||
</g>
|
||||
<path style="fill:#2b3044;" d="M66.203,363.4h367.594c4.371,0,7.915,3.544,7.915,7.915v11.922H58.288v-11.922
|
||||
C58.288,366.943,61.832,363.4,66.203,363.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Background_Simple" style="display:none;">
|
||||
<g style="display:inline;">
|
||||
<path style="fill:#0d9394;" d="M298.673,208.3c-69.138-19.558-94.993-169.434-196.032-88.754
|
||||
c-71.682,57.238-26.09,198.982,64.387,183.401c54.764-9.431,46.287-10.534,93.03,16.798
|
||||
c47.369,27.698,99.366,41.872,149.229-5.927c25.804-24.736,35.438-85.537,9.825-117.3
|
||||
C387.079,156.794,340.909,220.249,298.673,208.3z"/>
|
||||
<path style="opacity:0.9;fill:#2b3044;" d="M298.673,208.3c-69.138-19.558-94.993-169.434-196.032-88.754
|
||||
c-71.682,57.238-26.09,198.982,64.387,183.401c54.764-9.431,46.287-10.534,93.03,16.798
|
||||
c47.369,27.698,99.366,41.872,149.229-5.927c25.804-24.736,35.438-85.537,9.825-117.3
|
||||
C387.079,156.794,340.909,220.249,298.673,208.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shadow_1_">
|
||||
<ellipse id="_x3C_Path_x3E__359_" style="fill:#2b3044;" cx="250" cy="416.238" rx="193.889" ry="11.323"/>
|
||||
</g>
|
||||
<g id="Plant">
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M105.42,391.158c0,0-1.388-10.175-7.895-11.288c-6.506-1.113-4.545-6.033-6.24-7.937
|
||||
c-1.695-1.904-6.122,3.714-2.33,9.156c3.793,5.443,0.692,3.732,2.33,8.793C92.923,394.943,106.015,399.591,105.42,391.158z"/>
|
||||
<path style="opacity:0.2;fill:#2b3044;enable-background:new ;" d="M105.42,391.158c0,0-1.388-10.175-7.895-11.288
|
||||
c-6.506-1.113-4.545-6.033-6.24-7.937c-1.695-1.904-6.122,3.714-2.33,9.156c3.793,5.443,0.692,3.732,2.33,8.793
|
||||
C92.923,394.943,106.015,399.591,105.42,391.158z"/>
|
||||
|
||||
<path style="fill:none;stroke:#263238;stroke-width:0.9024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="
|
||||
M105.149,397.764c0,0-4.987-10.364-2.369-27.279c2.618-16.915,12.451-23.48,3.904-42.092
|
||||
c-8.547-18.613-18.314-31.884-13.429-45.091"/>
|
||||
<path style="fill:#263238;" d="M101.393,395.73c0,0-4.206-6.338,1.865-9.596c6.07-3.258,7.286-0.635,11.042-2.978
|
||||
c3.756-2.343,6.601-8.021,7.242-4.388c0.64,3.632-3.697,5.705-2.163,7.366C120.912,387.796,109.169,398.587,101.393,395.73z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M91.472,288.595c0,0-4.098-12.454,5.22-12.715C106.011,275.619,95.74,287.267,91.472,288.595z"/>
|
||||
<path style="fill:#263238;" d="M99.566,298.169c0,0,2.777-11.324,9.392-8.936C115.572,291.622,106.159,298.378,99.566,298.169z"
|
||||
/>
|
||||
<path style="fill:#263238;" d="M88.345,299.151c0,0,0.997-9.037-6.022-9.216C75.305,289.755,78.429,297.691,88.345,299.151z"/>
|
||||
<path style="fill:#263238;" d="M93.015,317.585c0,0-9.42-8.397-12.807-2.148S87.313,322.988,93.015,317.585z"/>
|
||||
<path style="fill:#263238;" d="M109.68,316.095c0,0,1.771-13.947,9.38-9.572C126.67,310.897,116.309,317.489,109.68,316.095z"/>
|
||||
<path style="fill:#263238;" d="M116.375,336.063c0,0-5.616-14.092,4.82-12.504C131.632,325.146,123.743,332.643,116.375,336.063z
|
||||
"/>
|
||||
<path style="fill:#263238;" d="M100.36,341.091c0,0-8.816-10.385-15.552-7.092C78.071,337.293,83.577,347.617,100.36,341.091z"/>
|
||||
<path style="fill:#263238;" d="M108.36,364.1c0,0,7.51-16.676,14.188-11.056C129.225,358.665,118.288,367.067,108.36,364.1z"/>
|
||||
<path style="fill:#263238;" d="M97.446,363.124c0,0,1.984-12.936-5.451-11.896C84.561,352.268,86.513,360.182,97.446,363.124z"/>
|
||||
<g style="opacity:0.2;enable-background:new ;">
|
||||
<path style="fill:#FFFFFF;" d="M91.472,288.595c0,0-4.098-12.454,5.22-12.715C106.011,275.619,95.74,287.267,91.472,288.595z"/>
|
||||
<path style="fill:#FFFFFF;" d="M99.566,298.169c0,0,2.777-11.324,9.392-8.936C115.572,291.622,106.159,298.378,99.566,298.169z"
|
||||
/>
|
||||
<path style="fill:#FFFFFF;" d="M88.345,299.151c0,0,0.997-9.037-6.022-9.216C75.305,289.755,78.429,297.691,88.345,299.151z"/>
|
||||
<path style="fill:#FFFFFF;" d="M93.015,317.585c0,0-9.42-8.397-12.807-2.148S87.313,322.988,93.015,317.585z"/>
|
||||
<path style="fill:#FFFFFF;" d="M109.68,316.095c0,0,1.771-13.947,9.38-9.572C126.67,310.897,116.309,317.489,109.68,316.095z"/>
|
||||
<path style="fill:#FFFFFF;" d="M116.375,336.063c0,0-5.616-14.092,4.82-12.504C131.632,325.146,123.743,332.643,116.375,336.063
|
||||
z"/>
|
||||
<path style="fill:#FFFFFF;" d="M100.36,341.091c0,0-8.816-10.385-15.552-7.092C78.071,337.293,83.577,347.617,100.36,341.091z"
|
||||
/>
|
||||
<path style="fill:#FFFFFF;" d="M108.36,364.1c0,0,7.51-16.676,14.188-11.056C129.225,358.665,118.288,367.067,108.36,364.1z"/>
|
||||
<path style="fill:#FFFFFF;" d="M97.446,363.124c0,0,1.984-12.936-5.451-11.896C84.561,352.268,86.513,360.182,97.446,363.124z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<path style="fill:none;stroke:#263238;stroke-width:0.9024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="
|
||||
M86.009,296.188c0,0,4.009,5.957,9.494,9.028c0,0,3.628-7,6.458-8.697"/>
|
||||
|
||||
<path style="fill:none;stroke:#263238;stroke-width:0.9024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="
|
||||
M85.782,316.75c0,0,10.194-0.329,18.263,5.771c0,0,4.48-7.594,10.358-11.055"/>
|
||||
|
||||
<path style="fill:none;stroke:#263238;stroke-width:0.9024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="
|
||||
M119.449,329.39c0,0-4.376,11.517-9.964,15.999c0,0-11.58-6.713-20.084-6.881"/>
|
||||
|
||||
<path style="fill:none;stroke:#263238;stroke-width:0.9024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="
|
||||
M92.856,355.424c0,0,5.722,11.169,9.99,13.61c0,0,3.989-5.626,12.619-8.217"/>
|
||||
<path style="fill:#263238;" d="M102.039,394.218c0,0-3.606-5.74-7.679-6.557c-4.073-0.817-5.828-5.508-7.331-2.687
|
||||
C85.525,387.796,89.67,397.15,102.039,394.218z"/>
|
||||
<g>
|
||||
<polygon style="fill:#0d9394;" points="83.323,416.749 122.701,416.749 125.336,392.46 80.688,392.46 "/>
|
||||
<polygon style="fill:#0d9394;" points="79.769,397.062 126.256,397.062 126.85,391.915 79.174,391.915 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="79.769,397.062 126.256,397.062 126.85,391.915 79.174,391.915 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Lamp">
|
||||
<g>
|
||||
<polygon style="fill:#263238;" points="428.898,154.064 425.478,186.913 408.358,186.913 404.938,154.064 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="428.898,154.064 425.478,186.913 408.358,186.913 404.938,154.064 "/>
|
||||
<rect x="413.733" y="179.849" style="fill:#263238;" width="6.371" height="236.9"/>
|
||||
<rect x="413.733" y="179.849" style="opacity:0.3;fill:#FFFFFF;" width="6.371" height="236.9"/>
|
||||
<polygon style="fill:#0d9394;" points="423.677,184.909 410.16,184.909 407.16,156.061 426.677,156.061 "/>
|
||||
<polygon style="opacity:0.4;fill:#FFFFFF;enable-background:new ;" points="423.677,184.909 410.16,184.909 407.16,156.061
|
||||
426.677,156.061 "/>
|
||||
<polygon style="fill:#263238;" points="415.141,185.36 414.218,185.36 413.218,155.061 414.141,155.061 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="415.141,185.36 414.218,185.36 413.218,155.061 414.141,155.061 "/>
|
||||
<polygon style="opacity:0.2;fill:#FFFFFF;" points="428.898,154.064 425.478,186.913 414.718,186.913 413.428,154.064 "/>
|
||||
<path style="fill:#263238;" d="M416.919,143.503c0,0-10.154,10.022-17.934,10.022l2.414,1.582h15.52h15.52l2.414-1.582
|
||||
C427.073,153.525,416.919,143.503,416.919,143.503z"/>
|
||||
<path style="opacity:0.4;fill:#FFFFFF;" d="M434.848,153.524l-2.41,1.58h-31.04l-2.41-1.58c7.78,0,17.93-10.02,17.93-10.02
|
||||
S427.068,153.524,434.848,153.524z"/>
|
||||
<path style="opacity:0.2;fill:#FFFFFF;" d="M434.848,153.524l-2.41,1.58h-20.16c-0.61-0.99-1.04-1.71-1.04-1.71
|
||||
c5.41-2.51,5.68-9.89,5.68-9.89S427.068,153.524,434.848,153.524z"/>
|
||||
<path style="fill:#263238;" d="M422.387,412.366h-10.936c-1.366,0-2.473,1.107-2.473,2.473v1.911h15.881v-1.911
|
||||
C424.859,413.473,423.752,412.366,422.387,412.366z"/>
|
||||
<path style="opacity:0.5;fill:#FFFFFF;" d="M422.387,412.366h-10.936c-1.366,0-2.473,1.107-2.473,2.473v1.911h15.881v-1.911
|
||||
C424.859,413.473,423.752,412.366,422.387,412.366z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Interface">
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M240.014,316.12H109.433c-4.324,0-7.83-3.505-7.83-7.83V125.374c0-4.324,3.506-7.83,7.83-7.83
|
||||
h130.581c4.324,0,7.83,3.506,7.83,7.83V308.29C247.844,312.615,244.338,316.12,240.014,316.12z"/>
|
||||
<path style="opacity:0.6;fill:#FFFFFF;enable-background:new ;" d="M240.014,316.12H109.433c-4.324,0-7.83-3.505-7.83-7.83
|
||||
V125.374c0-4.324,3.506-7.83,7.83-7.83h130.581c4.324,0,7.83,3.506,7.83,7.83V308.29
|
||||
C247.844,312.615,244.338,316.12,240.014,316.12z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M194.363,170.79c0,6.11-2.79,11.57-7.17,15.18c-3.39,2.78-7.73,4.46-12.47,4.46
|
||||
c-4.73,0-9.07-1.67-12.46-4.46c-4.38-3.6-7.18-9.06-7.18-15.18c0-10.84,8.8-19.63,19.64-19.63
|
||||
C185.573,151.16,194.363,159.95,194.363,170.79z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M194.363,170.79c0,6.11-2.79,11.57-7.17,15.18c-3.39,2.78-7.73,4.46-12.47,4.46
|
||||
c-4.73,0-9.07-1.67-12.46-4.46c-4.38-3.6-7.18-9.06-7.18-15.18c0-10.84,8.8-19.63,19.64-19.63
|
||||
C185.573,151.16,194.363,159.95,194.363,170.79z"/>
|
||||
<g>
|
||||
<circle style="fill:#FFFFFF;" cx="174.724" cy="168.945" r="7.033"/>
|
||||
<path style="fill:#FFFFFF;" d="M187.193,185.97c-3.39,2.78-7.73,4.46-12.47,4.46c-4.73,0-9.07-1.67-12.46-4.46
|
||||
c1.84-5.39,5.63-9.37,10.18-10.38c0.74-0.16,1.5-0.25,2.28-0.25c0.78,0,1.54,0.09,2.28,0.25
|
||||
C181.563,176.6,185.343,180.58,187.193,185.97z"/>
|
||||
</g>
|
||||
</g>
|
||||
<text transform="matrix(1 0 0 1 162.1393 247.8185)" style="opacity:0.5; font-family:'Montserrat-Regular'; font-size:4px;">Sign up now</text>
|
||||
<path style="fill:#0d9394;" d="M214.285,269.93h-79.125c-4.514,0-8.174-3.659-8.174-8.174v0c0-4.514,3.66-8.174,8.174-8.174
|
||||
h79.125c4.514,0,8.174,3.66,8.174,8.174v0C222.459,266.271,218.8,269.93,214.285,269.93z"/>
|
||||
<g style="opacity:0.5;">
|
||||
<text transform="matrix(1 0 0 1 156.731 280.8609)" style="font-family:'Montserrat-Regular'; font-size:4px;">Forgot Password?</text>
|
||||
</g>
|
||||
<text transform="matrix(1 0 0 1 163.207 264.2962)" style="fill:#FFFFFF; font-family:'Montserrat-Medium'; font-size:8px;">Login</text>
|
||||
<path style="fill:#FFFFFF;" d="M214.285,214.726h-79.125c-4.514,0-8.174-3.66-8.174-8.174v0c0-4.514,3.66-8.174,8.174-8.174
|
||||
h79.125c4.514,0,8.174,3.66,8.174,8.174v0C222.459,211.066,218.8,214.726,214.285,214.726z"/>
|
||||
<path style="fill:#FFFFFF;" d="M214.285,237.91h-79.125c-4.514,0-8.174-3.66-8.174-8.174v0c0-4.514,3.66-8.174,8.174-8.174h79.125
|
||||
c4.514,0,8.174,3.66,8.174,8.174v0C222.459,234.25,218.8,237.91,214.285,237.91z"/>
|
||||
<g style="opacity:0.5;">
|
||||
<text transform="matrix(1 0 0 1 137.4617 208.0222)" style="font-family:'Montserrat-Regular'; font-size:5px;">Name@mail.com</text>
|
||||
</g>
|
||||
<text transform="matrix(1 0 0 1 137.4617 234.1825)" style="opacity:0.5; font-family:'Montserrat-Regular'; font-size:7px;">*******</text>
|
||||
<path style="opacity:0.2;" d="M205.658,202.713v7.678h10.878v-7.678H205.658z M214.761,203.55l-3.663,2.496l-3.664-2.496H214.761z
|
||||
M206.495,209.554v-5.632l4.602,3.136l4.602-3.136v5.632H206.495z"/>
|
||||
<g style="opacity:0.2;">
|
||||
<g>
|
||||
<path d="M213.667,228.464v-0.933c0-1.174-0.955-2.129-2.129-2.129h-1.159c-1.174,0-2.129,0.955-2.129,2.129v0.933H206.5v6.382
|
||||
h9.195v-6.382H213.667z M209.088,227.53c0-0.713,0.579-1.292,1.292-1.292h1.159c0.713,0,1.292,0.579,1.292,1.292v0.933h-3.743
|
||||
V227.53z M214.858,234.008h-7.522V229.3h7.522V234.008z"/>
|
||||
<path d="M210.856,231.91v0.758h0.483v-0.758c0.138-0.083,0.235-0.228,0.235-0.401c0-0.263-0.213-0.476-0.476-0.476
|
||||
c-0.263,0-0.476,0.213-0.476,0.476C210.622,231.682,210.718,231.827,210.856,231.91z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Speech_bubble">
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M351.658,145.652H322.93c-4.886,0-8.846,3.961-8.846,8.846V179.5c0,4.885,3.961,8.846,8.846,8.846
|
||||
h11.362l3.002,7.894l3.002-7.894h11.363c4.885,0,8.846-3.96,8.846-8.846v-25.002
|
||||
C360.504,149.613,356.544,145.652,351.658,145.652z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M351.658,145.652H322.93c-4.886,0-8.846,3.961-8.846,8.846V179.5
|
||||
c0,4.885,3.961,8.846,8.846,8.846h11.362l3.002,7.894l3.002-7.894h11.363c4.885,0,8.846-3.96,8.846-8.846v-25.002
|
||||
C360.504,149.613,356.544,145.652,351.658,145.652z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g style="enable-background:new ;">
|
||||
|
||||
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -19.2188 287.3842)" style="fill:#0d9394;" cx="337.294" cy="166.891" rx="14.258" ry="14.258"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M335.797,173.26c-0.385,0-0.75-0.169-0.999-0.462l-5.594-6.591
|
||||
c-0.468-0.552-0.4-1.378,0.151-1.847c0.551-0.467,1.378-0.401,1.847,0.151l4.595,5.414l7.588-8.94
|
||||
c0.469-0.553,1.296-0.619,1.847-0.151c0.552,0.468,0.62,1.295,0.151,1.847l-8.587,10.118
|
||||
C336.547,173.091,336.182,173.26,335.797,173.26z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Character">
|
||||
<g>
|
||||
<polygon style="fill:#263238;" points="390.688,416.749 397.291,416.749 383.792,340.555 377.188,340.555 "/>
|
||||
<polygon style="fill:#263238;" points="245.532,416.749 252.136,416.749 238.637,340.555 232.033,340.555 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="390.688,416.749 397.291,416.749 383.792,340.555 377.188,340.555 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="245.532,416.749 252.136,416.749 238.637,340.555 232.033,340.555 "/>
|
||||
|
||||
<rect x="188.086" y="378.652" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 575.326 763.9917)" style="fill:#263238;" width="199.153" height="6.688"/>
|
||||
|
||||
<rect x="188.086" y="378.652" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 575.326 763.9917)" style="opacity:0.5;fill:#FFFFFF;" width="199.153" height="6.688"/>
|
||||
<polygon style="fill:#263238;" points="329.793,416.749 323.19,416.749 336.689,340.555 343.293,340.555 "/>
|
||||
<polygon style="fill:#263238;" points="184.639,416.749 178.035,416.749 191.534,340.555 198.138,340.555 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="329.793,416.749 323.19,416.749 336.689,340.555 343.293,340.555 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="184.639,416.749 178.035,416.749 191.534,340.555 198.138,340.555 "/>
|
||||
<polygon style="fill:#263238;" points="244.521,337.594 251.092,337.594 262.092,276.444 255.52,276.444 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="244.521,337.594 251.092,337.594 262.092,276.444 255.52,276.444 "/>
|
||||
<polygon style="fill:#263238;" points="375.006,337.594 381.578,337.594 392.577,276.444 386.006,276.444 "/>
|
||||
<polygon style="fill:#263238;" points="309.763,337.594 316.335,337.594 327.335,276.444 320.763,276.444 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="375.006,337.594 381.578,337.594 392.577,276.444 386.006,276.444 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="309.763,337.594 316.335,337.594 327.335,276.444 320.763,276.444 "/>
|
||||
<polygon style="fill:#263238;" points="233.171,280.621 405.741,280.621 407.8,269.176 235.23,269.176 "/>
|
||||
<polygon style="fill:#263238;" points="229.447,301.323 402.018,301.323 404.076,289.878 231.506,289.878 "/>
|
||||
<polygon style="fill:#263238;" points="225.723,322.025 398.294,322.025 400.353,310.58 227.782,310.58 "/>
|
||||
|
||||
<rect x="176.655" y="335.792" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 573.2399 679.5005)" style="fill:#263238;" width="219.929" height="7.917"/>
|
||||
<polygon style="opacity:0.5;fill:#FFFFFF;" points="233.171,280.621 405.741,280.621 407.8,269.176 235.23,269.176 "/>
|
||||
<polygon style="opacity:0.5;fill:#FFFFFF;" points="229.447,301.323 402.018,301.323 404.076,289.878 231.506,289.878 "/>
|
||||
<polygon style="opacity:0.5;fill:#FFFFFF;" points="225.723,322.025 398.294,322.025 400.353,310.58 227.782,310.58 "/>
|
||||
|
||||
<rect x="176.655" y="335.792" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 573.2399 679.5005)" style="opacity:0.5;fill:#FFFFFF;" width="219.929" height="7.917"/>
|
||||
|
||||
<rect x="176.655" y="335.792" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 519.2418 679.5005)" style="opacity:0.2;fill:#FFFFFF;" width="165.931" height="7.917"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E9B376;" d="M325.585,254.205c-2.804,3.101-5.662,5.955-8.784,8.74c-1.563,1.382-3.168,2.742-4.935,4.044
|
||||
c-0.883,0.654-1.805,1.299-2.837,1.934c-0.522,0.313-1.076,0.623-1.708,0.93c-0.642,0.303-1.344,0.618-2.374,0.876
|
||||
c-0.541,0.121-1.165,0.243-2.06,0.208c-0.234-0.014-0.501-0.042-0.705-0.075l-0.364-0.081c-0.239-0.057-0.491-0.117-0.713-0.184
|
||||
c-0.831-0.274-1.543-0.596-2.135-0.925c-1.204-0.67-2.153-1.381-3.053-2.098c-1.786-1.428-3.271-2.954-4.715-4.488
|
||||
c-2.847-3.107-5.322-6.337-7.608-9.822c-0.755-1.152-0.434-2.697,0.717-3.453c0.948-0.622,2.164-0.514,2.985,0.186l0.054,0.047
|
||||
c2.975,2.54,6.009,5.124,9.016,7.471c1.492,1.18,3.031,2.284,4.488,3.2c0.724,0.447,1.454,0.834,2.039,1.061
|
||||
c0.297,0.13,0.52,0.172,0.643,0.195c0.019-0.003,0.013-0.018,0.018-0.019l0.002-0.001c-0.08-0.018-0.222-0.038-0.332-0.041
|
||||
c-0.395-0.021-0.522,0.014-0.579,0.014c-0.064-0.005,0.153-0.099,0.397-0.258c0.254-0.159,0.557-0.365,0.873-0.598
|
||||
c0.641-0.461,1.328-1.009,2.013-1.595c1.369-1.182,2.764-2.472,4.138-3.804c2.741-2.659,5.517-5.49,8.175-8.233l0.051-0.053
|
||||
c1.919-1.981,5.082-2.031,7.062-0.111C327.293,249.146,327.377,252.218,325.585,254.205z"/>
|
||||
</g>
|
||||
<path style="fill:#0d9394;" d="M323.046,245.249v14.33c0,0-3.03,2.52-6.75,5.3c-1.86,1.39-3.89,2.84-5.79,4.07
|
||||
c-2.89,1.88-5.49,3.26-6.81,3.18c-3.94-0.24-12.49-6.35-12.49-6.35l5.62-9.36c0,0,6.46,3.95,6.87,4.22
|
||||
C304.106,260.899,317.655,245.339,323.046,245.249z"/>
|
||||
<path style="opacity:0.2;" d="M316.296,264.879c-1.86,1.39-3.89,2.84-5.79,4.07c0.45-8.22,4.32-11.38,4.32-11.38
|
||||
C316.026,259.869,316.415,262.439,316.296,264.879z"/>
|
||||
<path style="fill:#263238;" d="M328.515,207.567c-6.9,5.631-6.089,21.83,1.668,32.461c0,0,16.559,1.388,25.756-2.73
|
||||
c9.197-4.118-0.969-30.348-10.691-32.413C335.525,202.82,328.515,207.567,328.515,207.567z"/>
|
||||
<path style="fill:#263238;" d="M328.916,224.404c-2.527-4.365-5.04-16.13,5.478-19.765c13.129-4.539,19.015,3.833,20.149,12.132
|
||||
c1.134,8.298-3.542,14.573-12.219,13.949C333.646,230.095,330.665,227.423,328.916,224.404z"/>
|
||||
<path style="fill:#263238;" d="M314.824,257.572c-1.285,6.066,0.966,20.367,1.336,31.145l30.918,3.564
|
||||
c0.008-3.383,0.634-8.285,2.648-16.072c1.16-4.562,2.812-10.116,5.082-16.935c0.334-1.014,0.681-2.047,1.047-3.116
|
||||
c1.628-4.764-1.18-9.572-6.035-10.332c-1.295-0.206-2.676-0.388-4.086-0.525c-5.506-0.562-10.031-0.98-14.951-0.794
|
||||
c-1.632,0.054-3.328,0.176-4.955,0.312C319.978,245.311,316.023,251.887,314.824,257.572z"/>
|
||||
<g>
|
||||
<path style="fill:#EBB376;" d="M345.575,228.409c-1.557,4.741-3.624,13.469-0.668,16.844c0,0-4.52-0.926-14.51,4.541
|
||||
c-2.587-4.166-0.438-5.336-0.438-5.336c5.527-0.99,5.897-4.962,5.44-8.734L345.575,228.409z"/>
|
||||
<path style="opacity:0.2;" d="M341.426,231.394l-6.023,4.327c0.111,0.893,0.171,1.796,0.122,2.668
|
||||
c2.087-0.186,5.189-2.277,5.68-4.402C341.45,232.926,341.536,231.9,341.426,231.394z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFB573;" d="M347.639,217.338c0.107,7.913,0.32,11.26-3.355,15.601c-5.528,6.53-15.271,4.93-17.739-2.792
|
||||
c-2.222-6.95-2.023-18.723,5.452-22.435C339.362,204.055,347.533,209.426,347.639,217.338z"/>
|
||||
<path style="fill:#263238;" d="M340.93,209.938c-2.194,2.749,2.805,11.41,6.739,12.886
|
||||
C355.322,220.301,347.478,201.733,340.93,209.938z"/>
|
||||
<path style="fill:#263238;" d="M331.561,206.252c-2.91,1.28-5.641,6.749-5.997,8.792c4.326,0.325,15.472-4.677,15.472-4.677
|
||||
s7.856,1.447,3.63-2.102C340.44,204.716,331.561,206.252,331.561,206.252z"/>
|
||||
<path style="fill:#263238;" d="M334.481,220.558c0.048,0.641-0.253,1.187-0.672,1.218c-0.419,0.031-0.798-0.463-0.846-1.104
|
||||
c-0.048-0.641,0.253-1.187,0.672-1.218C334.054,219.422,334.433,219.917,334.481,220.558z"/>
|
||||
<path style="fill:#263238;" d="M327.232,221.101c0.048,0.641-0.253,1.187-0.672,1.218c-0.419,0.031-0.798-0.463-0.846-1.104
|
||||
c-0.048-0.641,0.253-1.187,0.672-1.218C326.805,219.966,327.184,220.46,327.232,221.101z"/>
|
||||
<path style="fill:#263238;" d="M326.574,220.019L325,219.69C325,219.69,325.88,220.834,326.574,220.019z"/>
|
||||
<path style="fill:#ED893E;" d="M330.306,221.902c0,0-0.881,2.843-1.98,4.265c0.906,0.727,2.319,0.258,2.319,0.258
|
||||
L330.306,221.902z"/>
|
||||
<path style="fill:#263238;" d="M334.331,228.674c-0.292,0.068-0.605,0.117-0.94,0.142c-0.104,0.008-0.195-0.07-0.202-0.174
|
||||
c-0.008-0.104,0.079-0.195,0.174-0.202c2.823-0.212,3.982-2.276,3.993-2.296c0.05-0.091,0.164-0.125,0.257-0.074
|
||||
c0.091,0.05,0.125,0.165,0.074,0.257C337.642,226.407,336.667,228.133,334.331,228.674z"/>
|
||||
<path style="fill:#FFB573;" d="M350.315,224.401c-0.445,1.579-1.578,2.805-2.764,3.445c-1.785,0.963-3.122-0.526-2.999-2.444
|
||||
c0.111-1.726,1.173-4.307,3.144-4.479C349.637,220.753,350.823,222.595,350.315,224.401z"/>
|
||||
<path style="fill:#263238;" d="M338.033,218.676c-0.155,0.036-0.322-0.029-0.409-0.173c-0.903-1.496-3.146-1.674-3.168-1.675
|
||||
c-0.208-0.015-0.365-0.196-0.35-0.404c0.014-0.208,0.194-0.365,0.404-0.35c0.108,0.008,2.658,0.211,3.761,2.038
|
||||
c0.108,0.179,0.05,0.411-0.128,0.519C338.108,218.653,338.071,218.668,338.033,218.676z"/>
|
||||
<path style="fill:#263238;" d="M325.556,217.729c-0.126,0.029-0.263-0.007-0.359-0.107c-0.144-0.151-0.139-0.39,0.011-0.534
|
||||
c1.508-1.445,3.212-1.07,3.283-1.053c0.203,0.047,0.33,0.251,0.282,0.454c-0.047,0.202-0.249,0.329-0.452,0.283l0,0
|
||||
c-0.056-0.012-1.386-0.292-2.591,0.862C325.681,217.682,325.62,217.714,325.556,217.729z"/>
|
||||
<path style="fill:#263238;" d="M333.823,219.475l-1.574-0.329C332.249,219.147,333.13,220.291,333.823,219.475z"/>
|
||||
</g>
|
||||
<path style="fill:#EBB376;" d="M305.721,248.688l0.749,2.343c0.282,0.881,0.972,1.572,1.853,1.854l4.117,1.319
|
||||
c1.646,0.527,3.445,0.225,4.828-0.812l0.856-0.642c-0.977-3.971-4.958-7.542-4.958-7.542l-1.022-1.144
|
||||
c-0.911-1.018-2.38-1.136-3.376-0.269l-2.293,1.995C305.683,246.479,305.383,247.632,305.721,248.688z"/>
|
||||
<path style="fill:#EBB376;" d="M278.035,250.834l0.749,2.343c0.282,0.881,0.972,1.572,1.853,1.854l4.117,1.319
|
||||
c1.646,0.527,3.445,0.225,4.828-0.812l0.856-0.642c-0.977-3.971-4.958-7.542-4.958-7.542l-1.022-1.144
|
||||
c-0.91-1.018-2.38-1.136-3.376-0.269l-2.293,1.995C277.997,248.625,277.697,249.778,278.035,250.834z"/>
|
||||
<path style="opacity:0.2;" d="M337.801,263.394c1.988,5.859,7.065,10.23,11.924,12.815c1.16-4.562,2.812-10.116,5.082-16.935
|
||||
c-3.048-4.265-7.321-7.294-12.754-6.475C342.053,252.799,335.787,257.459,337.801,263.394z"/>
|
||||
<g>
|
||||
<path style="fill:#EBB376;" d="M228.07,379.655l5.218,2.107c0,0,44.357-66.906,48.462-64.392
|
||||
c14.87,9.109,45.439,25.389,59.907,15.531c14.466-9.849,5.88-35.85,5.88-35.85s-28.135-9.875-31.611-3.77
|
||||
c-0.675,1.18-1.63,3.57-2.391,5.625c-0.727,1.935-1.286,3.569-1.286,3.569s-0.009-0.002-0.017-0.013
|
||||
c-0.851-0.404-28.431-13.67-41.419-8.206C257.618,299.816,228.07,379.655,228.07,379.655z"/>
|
||||
</g>
|
||||
<path style="fill:#EBB376;" d="M324.248,336.472c0,0-13.952,0.912-33.061-5.581c0,0-4.711,53.281-7.873,82.196l-6.409-0.902
|
||||
c0,0-10.888-78.933-8.734-88.556c2.154-9.624,13.801-10.255,13.801-10.255S304.271,329.736,324.248,336.472z"/>
|
||||
<path style="fill:#0d9394;" d="M324.248,336.472c-0.311-0.062-13.952,0.509-27.904-3.449l1.815-7.58
|
||||
C305.193,330.073,314.984,332.899,324.248,336.472z"/>
|
||||
<path style="opacity:0.4;fill:#FFFFFF;" d="M324.248,336.472c-0.311-0.062-13.952,0.509-27.904-3.449l1.815-7.58
|
||||
C305.193,330.073,314.984,332.899,324.248,336.472z"/>
|
||||
<polygon style="fill:#0d9394;" points="296.981,324.654 295.308,333.09 297.854,333.957 299.81,326.509 "/>
|
||||
<polygon style="opacity:0.6;fill:#FFFFFF;enable-background:new ;" points="296.981,324.654 295.308,333.09 297.854,333.957
|
||||
299.81,326.509 "/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M270.486,357.185c-1.008-20.968-1.441-31.84,2.008-36.177
|
||||
c3.449-4.336,8.85-5.118,8.85-5.118c4.476,11.35,24.025,18.435,24.536,18.624c0.009,0.002,0.009,0.002,0.009,0.002
|
||||
c7.294,1.515,18.094,1.904,18.358,1.956c-11.065-2.285-19.056-6.399-26.09-11.03c-9.73-6.411-16.188-12.065-16.188-12.065
|
||||
s-11.647,0.632-13.801,10.255c-0.878,3.934,0.425,19.46,2.263,36.445C270.508,359.003,270.523,358.035,270.486,357.185z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M222.856,375.26c-0.097-0.199-0.14-0.524,0.199-0.943c0.165-0.203,0.393-0.319,0.678-0.344
|
||||
c0.538-0.049,1.239,0.253,1.884,0.631c-0.49-0.647-0.865-1.332-0.696-1.764c0.111-0.281,0.392-0.426,0.837-0.43
|
||||
c0.417-0.005,0.77,0.146,1.048,0.449c0.876,0.95,0.689,3.12,0.68,3.222c-0.003,0.035-0.014,0.07-0.034,0.102
|
||||
c-0.01,0.017-0.023,0.032-0.037,0.046c-0.022,0.021-0.047,0.037-0.074,0.048l-0.001,0l-0.001,0
|
||||
c-0.025,0.01-0.053,0.016-0.082,0.016c-0.384,0.005-1.689,0.003-2.789-0.216C223.715,375.928,223.058,375.678,222.856,375.26z
|
||||
M223.774,374.436c-0.157,0.014-0.274,0.071-0.358,0.174c-0.225,0.277-0.163,0.405-0.143,0.447
|
||||
c0.234,0.484,1.904,0.719,3.313,0.764C225.783,375.208,224.505,374.369,223.774,374.436z M225.762,372.875
|
||||
c-0.133,0.001-0.363,0.021-0.408,0.136c-0.146,0.37,0.711,1.519,1.689,2.516c0.003-0.665-0.072-1.802-0.579-2.353
|
||||
c-0.138-0.15-0.299-0.243-0.488-0.28C225.909,372.88,225.837,372.874,225.762,372.875z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M270.651,407.62c-0.172-0.138-0.351-0.413-0.225-0.937c0.062-0.254,0.217-0.456,0.464-0.602
|
||||
c0.464-0.274,1.226-0.302,1.972-0.24c-0.72-0.374-1.354-0.831-1.386-1.293c-0.021-0.301,0.171-0.553,0.571-0.748
|
||||
c0.374-0.183,0.758-0.197,1.139-0.045c1.2,0.482,1.964,2.525,1.998,2.617c0.013,0.034,0.018,0.071,0.013,0.108v0.001v0
|
||||
c-0.002,0.017-0.006,0.034-0.012,0.05l0,0c0,0,0,0,0,0.001c-0.011,0.031-0.029,0.06-0.052,0.082
|
||||
c-0.016,0.017-0.035,0.031-0.056,0.043c0,0,0,0,0,0l0,0c-0.003,0.001-0.006,0.003-0.008,0.004
|
||||
c-0.467,0.229-2.438,1.16-3.667,1.16C271.092,407.823,270.83,407.764,270.651,407.62z M271.126,406.482
|
||||
c-0.136,0.08-0.217,0.182-0.248,0.31c-0.084,0.347,0.027,0.436,0.063,0.465c0.418,0.335,2.028-0.169,3.32-0.733
|
||||
C273.271,406.316,271.757,406.108,271.126,406.482z M272.25,404.218c-0.12,0.058-0.319,0.175-0.311,0.298
|
||||
c0.028,0.396,1.295,1.066,2.606,1.546c-0.282-0.602-0.839-1.597-1.533-1.875c-0.117-0.047-0.233-0.07-0.348-0.07
|
||||
C272.527,404.116,272.39,404.15,272.25,404.218z"/>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M236.58,379.509c0.285-0.658-7.952-3.838-7.952-3.838s-7.232,2.737-12.533,1.657
|
||||
c-5.301-1.08-3.952,3.022,1.393,5.487c5.345,2.465,9.424,4.346,13.222,6.097C234.507,390.663,233.625,386.333,236.58,379.509z"/>
|
||||
<path style="fill:#263238;" d="M284.87,405.56c-0.025-0.717-8.83-0.049-8.83-0.049s-5.355,5.579-10.606,6.881
|
||||
c-5.251,1.302-2.27,4.426,3.615,4.356c5.885-0.071,10.377-0.125,14.559-0.175C287.789,416.523,285.133,412.992,284.87,405.56z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M347.535,297.05c0,0-28.135-9.875-31.611-3.77c-0.675,1.18-1.63,3.57-2.391,5.625
|
||||
c-0.727,1.935-1.286,3.569-1.286,3.569s-0.009-0.002-0.017-0.013c-0.034-0.016-2.307-1.059-2.307-1.059l-9.428,28.132
|
||||
c14.985,8.312,36.175,9.278,44.852,3.366C359.814,323.052,347.535,297.05,347.535,297.05z"/>
|
||||
</g>
|
||||
<g style="opacity:0.4;">
|
||||
<path style="fill:#FFFFFF;" d="M347.535,297.05c0,0-28.135-9.875-31.611-3.77c-0.675,1.18-1.63,3.57-2.391,5.625
|
||||
c-0.727,1.935-1.286,3.569-1.286,3.569s-0.009-0.002-0.017-0.013c-0.034-0.016-2.307-1.059-2.307-1.059l-9.428,28.132
|
||||
c14.985,8.312,36.175,9.278,44.852,3.366C359.814,323.052,347.535,297.05,347.535,297.05z"/>
|
||||
</g>
|
||||
<path style="opacity:0.3;enable-background:new ;" d="M312.247,302.474l16.235,6.888c0,0-8.334-7.027-14.949-10.457
|
||||
C312.807,300.84,312.247,302.474,312.247,302.474z"/>
|
||||
<g>
|
||||
<polygon style="fill:#0d9394;" points="315.524,294.054 316.092,287.109 347.536,291.288 347.952,297.992 "/>
|
||||
<polygon style="opacity:0.4;fill:#FFFFFF;" points="315.524,294.054 316.092,287.109 347.536,291.288 347.952,297.992 "/>
|
||||
<g>
|
||||
<polygon style="fill:#263238;" points="316.155,287.789 317.796,288.029 317.286,293.439 315.926,293.279 "/>
|
||||
<polygon style="fill:#263238;" points="319.356,288.249 337.086,290.829 336.626,295.749 318.856,293.629 "/>
|
||||
<polygon style="fill:#263238;" points="347.536,297.049 338.195,295.939 338.646,291.059 338.655,291.059 347.086,292.279
|
||||
"/>
|
||||
<polygon style="opacity:0.2;enable-background:new ;" points="316.155,287.789 317.796,288.029 317.286,293.439
|
||||
315.926,293.279 "/>
|
||||
<polygon style="opacity:0.2;enable-background:new ;" points="319.356,288.249 337.086,290.829 336.626,295.749
|
||||
318.856,293.629 "/>
|
||||
<polygon style="opacity:0.2;enable-background:new ;" points="347.536,297.049 338.195,295.939 338.646,291.059
|
||||
338.655,291.059 347.086,292.279 "/>
|
||||
</g>
|
||||
<path style="fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="M323.575,294.284
|
||||
l5.05,0.669c0.513,0.068,0.984-0.293,1.052-0.806l0.448-3.381c0.068-0.513-0.293-0.984-0.806-1.052l-5.05-0.669
|
||||
c-0.513-0.068-0.984,0.293-1.052,0.806l-0.448,3.381C322.701,293.746,323.062,294.216,323.575,294.284z"/>
|
||||
|
||||
<line style="fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="327.2" y1="291.999" x2="328.98" y2="292.281"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#0d9394;" points="308.576,299.458 311.198,300.841 302.308,331.058 298.576,330.318 "/>
|
||||
<polygon style="opacity:0.6;fill:#FFFFFF;enable-background:new ;" points="308.576,299.458 311.198,300.841 302.308,331.058
|
||||
298.576,330.318 "/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M306.479,268.949h-22.032c-0.849,0-1.597-0.691-1.671-1.544l-3.067-29.241
|
||||
c-0.074-0.853,0.555-1.544,1.404-1.544h22.032c0.849,0,1.597,0.691,1.671,1.544l3.068,29.241
|
||||
C307.956,268.258,307.328,268.949,306.479,268.949z"/>
|
||||
<path style="opacity:0.6;fill:#FFFFFF;" d="M306.479,268.949h-22.032c-0.849,0-1.597-0.691-1.671-1.544l-3.067-29.241
|
||||
c-0.074-0.853,0.555-1.544,1.404-1.544h22.032c0.849,0,1.597,0.691,1.671,1.544l3.068,29.241
|
||||
C307.956,268.258,307.328,268.949,306.479,268.949z"/>
|
||||
<path style="opacity:0.2;fill:#FFFFFF;" d="M305.558,268.949h-21.111c-0.849,0-1.597-0.691-1.671-1.544l-3.067-29.241
|
||||
c-0.074-0.853,0.555-1.544,1.404-1.544h21.111c0.849,0,1.597,0.691,1.671,1.544l3.068,29.241
|
||||
C307.035,268.258,306.407,268.949,305.558,268.949z"/>
|
||||
<path style="fill:#263238;" d="M292.712,250.394c-1.314,0-2.287,1.07-2.173,2.391c0.114,1.32,1.272,2.391,2.587,2.391
|
||||
s2.287-1.07,2.173-2.391C293.984,252.785,292.826,251.714,292.712,250.394z"/>
|
||||
<path style="opacity:0.3;" d="M297.48,238.942h-11.637c-0.568,0-1.11-0.348-1.366-0.879l-0.697-1.443h15.361l-0.448,1.443
|
||||
C298.53,238.594,298.048,238.942,297.48,238.942z"/>
|
||||
</g>
|
||||
<path style="fill:#0d9394;" d="M353.655,305.869h-4.09c0,0-5.11-15.34-8.09-28.34c-0.89-3.83-1.58-7.46-1.91-10.43
|
||||
c-0.49-4.41,0.06-8.33,0.99-11.58c1.84-6.39,5.18-10.22,5.18-10.22l-0.83-0.05c7.74-0.08,11.92,2.6,12.44,7.42
|
||||
c0.53,4.81-8.04,33.42-8.44,37.24C348.516,293.739,353.655,305.869,353.655,305.869z"/>
|
||||
<path style="fill:#0d9394;" d="M327.237,244.708c0,0-8.184,12.898-10.376,18.385c-2.193,5.487-0.935,21.176-0.935,21.176
|
||||
s-4.19-18.885-1.493-28.248C317.128,246.659,321.785,244.735,327.237,244.708z"/>
|
||||
<g>
|
||||
<path style="fill:#E9B376;" d="M355.285,256.335c-2.5,3.748-5.11,7.115-8.253,10.414c-1.58,1.639-3.246,3.231-5.357,4.734
|
||||
c-1.071,0.745-2.225,1.499-3.863,2.098c-0.825,0.291-1.8,0.555-3.017,0.592c-0.624,0.004-1.278-0.036-1.981-0.217
|
||||
c-0.324-0.072-0.733-0.22-0.992-0.323l-0.522-0.241c-1.37-0.656-2.442-1.395-3.422-2.163c-0.978-0.767-1.854-1.555-2.678-2.358
|
||||
c-1.65-1.607-3.094-3.287-4.466-4.992c-2.734-3.43-5.081-6.981-7.216-10.781c-0.673-1.199-0.248-2.716,0.951-3.389
|
||||
c1.008-0.566,2.242-0.355,3.009,0.44l0.052,0.055c2.826,2.929,5.765,5.874,8.695,8.595c1.467,1.361,2.969,2.657,4.463,3.807
|
||||
c1.46,1.145,3.073,2.151,4.199,2.554l0.197,0.07c-0.012-0.02-0.176-0.07-0.243-0.094c-0.195-0.048-0.321-0.078-0.424-0.077
|
||||
c-0.171-0.017-0.123-0.023,0.025-0.109c0.31-0.17,0.926-0.569,1.526-1.072c1.229-1.019,2.534-2.395,3.792-3.821
|
||||
c2.496-2.877,4.989-6.16,7.235-9.293l0.078-0.109c1.607-2.241,4.727-2.755,6.968-1.148
|
||||
C356.233,251.079,356.767,254.106,355.285,256.335z"/>
|
||||
</g>
|
||||
<path style="opacity:0.2;" d="M354.195,260.039c0,0-7.2,12.28-12.72,17.49c-0.89-3.83-1.58-7.46-1.91-10.43
|
||||
c-0.49-4.41,0.06-8.33,0.99-11.58c2.29-1.88,4.55-3.75,5.7-4.7C349.095,248.449,354.195,260.039,354.195,260.039z"/>
|
||||
<path style="fill:#0d9394;" d="M354.711,248.675c3.768,2.031,2.627,7.478-2.313,13.94c-4.94,6.461-13.88,15.188-18.575,13.594
|
||||
s-10.01-7.837-10.01-7.837l3.424-9.68c0,0,6.736,5.11,8.138,4.846c1.402-0.264,8.256-9.134,10.236-11.886
|
||||
C347.59,248.9,350.623,246.472,354.711,248.675z"/>
|
||||
<path style="fill:#FFB573;" d="M284.434,249.246l-0.143,1.919c-0.077,1.026-0.854,1.863-1.872,2.014l-2.608,0.387l0.616-7.041
|
||||
l2.179,0.387C283.726,247.102,284.518,248.113,284.434,249.246z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 67 KiB |
742
src/assets/illustration/login-cover.svg
Normal file
@@ -0,0 +1,742 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
|
||||
<g id="Background_Complete">
|
||||
<g>
|
||||
<rect y="382.398" style="fill:#EBEBEB;" width="500" height="0.25"/>
|
||||
<rect x="416.779" y="398.494" style="fill:#EBEBEB;" width="33.122" height="0.25"/>
|
||||
<rect x="322.527" y="401.208" style="fill:#EBEBEB;" width="8.693" height="0.25"/>
|
||||
<rect x="396.586" y="389.208" style="fill:#EBEBEB;" width="19.192" height="0.25"/>
|
||||
<rect x="52.459" y="390.888" style="fill:#EBEBEB;" width="43.193" height="0.25"/>
|
||||
<rect x="104.556" y="390.888" style="fill:#EBEBEB;" width="6.333" height="0.25"/>
|
||||
<rect x="131.471" y="395.111" style="fill:#EBEBEB;" width="93.676" height="0.25"/>
|
||||
<path style="fill:#EBEBEB;" d="M237.014,337.8H43.915c-3.147,0-5.708-2.561-5.708-5.708V60.66c0-3.147,2.561-5.708,5.708-5.708
|
||||
h193.099c3.146,0,5.707,2.561,5.707,5.708v271.432C242.721,335.239,240.16,337.8,237.014,337.8z M43.915,55.203
|
||||
c-3.01,0-5.458,2.448-5.458,5.458v271.432c0,3.01,2.448,5.458,5.458,5.458h193.099c3.009,0,5.457-2.448,5.457-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.457-5.458H43.915z"/>
|
||||
<path style="fill:#EBEBEB;" d="M453.31,337.8H260.212c-3.147,0-5.707-2.561-5.707-5.708V60.66c0-3.147,2.561-5.708,5.707-5.708
|
||||
H453.31c3.148,0,5.708,2.561,5.708,5.708v271.432C459.019,335.239,456.458,337.8,453.31,337.8z M260.212,55.203
|
||||
c-3.009,0-5.457,2.448-5.457,5.458v271.432c0,3.01,2.448,5.458,5.457,5.458H453.31c3.01,0,5.458-2.448,5.458-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.458-5.458H260.212z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E0E0E0;" d="M81.559,365.34c-0.237-2.857,0.152-6.559,3.487-7.659c5.652-1.864,9.005-6.241,8.816-11.192
|
||||
c-0.189-4.951,5.76-9.768,10.222-5.129c4.462,4.64,3.867-3.568,9.817-5.562c5.949-1.995,10.992,2.844,9.363,7.267
|
||||
c-1.629,4.422,4.242,7.185,11.272,3.424c7.03-3.761,14.764,3.081,13.277,8.435c-1.487,5.355-0.27,5.95,4.178,4.165
|
||||
c3.594-1.442,9.476,1.584,10.132,6.251H81.559z"/>
|
||||
<path style="fill:#E0E0E0;" d="M362.071,365.34c-0.275-2.263-0.153-5.564,2.653-6.49c4.388-1.447,6.99-4.845,6.844-8.688
|
||||
c-0.147-3.843,4.472-7.583,7.936-3.981c3.464,3.602,3.002-2.77,7.621-4.318c4.618-1.548,8.533,2.208,7.269,5.641
|
||||
c-1.265,3.433,3.293,5.577,8.75,2.658c5.457-2.919,11.461,2.392,10.307,6.548c-1.155,4.157-0.209,4.619,3.244,3.233
|
||||
c2.927-1.174,7.79,1.472,7.893,5.397H362.071z"/>
|
||||
<path style="fill:#E0E0E0;" d="M390.823,365.34H288.112c-1.445-4.82,2.292-10.601,6.361-11.415c5-1,10.026-9.798,10.263-15.399
|
||||
c0.237-5.601,9.237-22.829,23.237-12.19c14,10.639,9.745,1.567,19.873-1.422c10.127-2.989,16.516,5.611,12.072,12.061
|
||||
c0,0,10.174-2.55,14.365,6.95c4.191,9.5,0,15.4,0,15.4S387.142,358.951,390.823,365.34z"/>
|
||||
<path style="fill:#F5F5F5;" d="M204.253,95.769c0-2.668-2.163-4.83-4.83-4.83c-0.482,0-0.947,0.073-1.387,0.204
|
||||
c0.07-0.484,0.108-0.979,0.108-1.483c0-5.649-4.58-10.229-10.229-10.229c-0.644,0-1.273,0.062-1.884,0.176
|
||||
c-1.572-2.573-4.398-4.296-7.634-4.296c-4.898,0-8.871,3.935-8.943,8.816c-0.05-0.001-0.099-0.007-0.149-0.007
|
||||
c-4.551,0-8.24,3.689-8.24,8.24c0,4.551,3.689,8.24,8.24,8.24h30.261l-0.006-0.007C202.163,100.52,204.253,98.391,204.253,95.769z
|
||||
"/>
|
||||
<path style="fill:#F5F5F5;" d="M383.485,124.249c0-2.668-2.163-4.83-4.83-4.83c-0.482,0-0.947,0.073-1.387,0.204
|
||||
c0.07-0.484,0.108-0.979,0.108-1.483c0-5.649-4.58-10.229-10.229-10.229c-0.644,0-1.273,0.062-1.884,0.176
|
||||
c-1.572-2.573-4.398-4.296-7.634-4.296c-4.898,0-8.871,3.935-8.943,8.816c-0.05-0.001-0.099-0.007-0.149-0.007
|
||||
c-4.551,0-8.24,3.689-8.24,8.24c0,4.551,3.689,8.24,8.24,8.24h30.261l-0.006-0.007C381.395,129,383.485,126.871,383.485,124.249z"
|
||||
/>
|
||||
<path style="fill:#F5F5F5;" d="M273.867,110.24c0-1.659-1.345-3.003-3.003-3.003c-0.3,0-0.589,0.045-0.862,0.127
|
||||
c0.044-0.301,0.067-0.609,0.067-0.922c0-3.512-2.847-6.359-6.359-6.359c-0.4,0-0.792,0.039-1.172,0.109
|
||||
c-0.977-1.6-2.734-2.671-4.746-2.671c-3.045,0-5.515,2.447-5.56,5.481c-0.031,0-0.061-0.005-0.093-0.005
|
||||
c-2.829,0-5.123,2.294-5.123,5.123s2.294,5.123,5.123,5.123h18.813l-0.004-0.004C272.568,113.194,273.867,111.87,273.867,110.24z"
|
||||
/>
|
||||
<path style="fill:#F5F5F5;" d="M430.743,104.372c0-1.659-1.345-3.003-3.003-3.003c-0.3,0-0.589,0.045-0.862,0.127
|
||||
c0.044-0.301,0.067-0.609,0.067-0.922c0-3.512-2.847-6.359-6.359-6.359c-0.4,0-0.792,0.039-1.172,0.109
|
||||
c-0.977-1.6-2.734-2.671-4.746-2.671c-3.045,0-5.515,2.447-5.56,5.481c-0.031,0-0.061-0.005-0.093-0.005
|
||||
c-2.829,0-5.123,2.294-5.123,5.123s2.294,5.123,5.123,5.123h18.813l-0.004-0.004C429.444,107.326,430.743,106.003,430.743,104.372
|
||||
z"/>
|
||||
<path style="fill:#F5F5F5;" d="M104.923,122.522c0-1.659-1.345-3.003-3.003-3.003c-0.3,0-0.589,0.045-0.862,0.127
|
||||
c0.044-0.301,0.067-0.609,0.067-0.922c0-3.512-2.847-6.36-6.359-6.36c-0.4,0-0.792,0.039-1.172,0.11
|
||||
c-0.977-1.6-2.734-2.671-4.746-2.671c-3.045,0-5.515,2.447-5.56,5.481c-0.031-0.001-0.061-0.005-0.093-0.005
|
||||
c-2.829,0-5.123,2.294-5.123,5.123s2.294,5.123,5.123,5.123h18.813l-0.004-0.004C103.624,125.475,104.923,124.152,104.923,122.522
|
||||
z"/>
|
||||
<g>
|
||||
<path style="fill:#EBEBEB;" d="M380.748,208.154c0.152-0.551,0.243-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.949c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.452-3.401
|
||||
c-0.45-1.879-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.56-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.775,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.643,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.939-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.385
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.162c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.316,0.446,0.547,0.581c0.217,0.127,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C378.613,211.237,380.152,210.317,380.748,208.154z"/>
|
||||
<path style="fill:#EBEBEB;" d="M350.477,204.883c0.152-0.551,0.243-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.455
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484s1.75-2.157,1.452-3.401
|
||||
c-0.45-1.878-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.248,0.152-2.01,1.56-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.791,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.776,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.902,1.904,1.721c0.363,1.023-0.682,1.94-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.386
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.162c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.315,0.446,0.547,0.581c0.217,0.127,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.777,0.889,4.795,1.838C348.342,207.966,349.881,207.046,350.477,204.883z"/>
|
||||
<path style="fill:#EBEBEB;" d="M347.56,185.606c0.152-0.551,0.243-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.949c-0.813-0.988-0.152-2.475,0.635-3.484s1.75-2.157,1.452-3.401
|
||||
c-0.45-1.878-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.775,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.902,1.904,1.721c0.363,1.023-0.682,1.939-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.386
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.154,0.133,0.373,0.153,0.577,0.163c2.628,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.316,0.446,0.547,0.581c0.217,0.126,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C345.425,188.689,346.964,187.769,347.56,185.606z"/>
|
||||
<path style="fill:#EBEBEB;" d="M327.619,195.208c0.152-0.551,0.242-1.182,0.284-1.877c0.231-3.895,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.452-3.401
|
||||
c-0.45-1.879-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.776,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.94-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.385
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.162c2.628,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.315,0.446,0.547,0.581c0.217,0.127,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.777,0.889,4.795,1.838C325.484,198.29,327.023,197.371,327.619,195.208z"/>
|
||||
<path style="fill:#EBEBEB;" d="M307.466,190.773c0.152-0.551,0.242-1.182,0.284-1.878c0.231-3.895,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.452-3.401
|
||||
c-0.45-1.878-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.942-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.776,3.559s-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.94-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.395,1.596-0.805,4.469,1.107,5.385
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.154,0.133,0.373,0.153,0.577,0.162c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.316,0.446,0.548,0.581c0.217,0.126,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C305.331,193.855,306.87,192.936,307.466,190.773z"/>
|
||||
<path style="fill:#EBEBEB;" d="M307.203,212.331c0.12-0.434,0.191-0.931,0.223-1.478c0.182-3.066,3.11-2.581,5.6-2.997
|
||||
c1.946-0.325-3.206-5.24,0.717-6.826c0.729-0.295,1.521-0.628,1.893-1.32c0.493-0.915-0.006-2.12-0.854-2.72
|
||||
c-0.849-0.6-1.939-0.727-2.979-0.747c-0.64-0.778-0.119-1.949,0.5-2.743c0.619-0.795,1.378-1.699,1.143-2.678
|
||||
c-0.354-1.479-2.422-1.532-3.915-1.245c-0.552-0.894-0.541-2.011-0.809-3.027c-0.268-1.016-1.076-2.082-2.118-1.955
|
||||
c-0.982,0.12-1.583,1.229-2.546,1.456c-1.119,0.264-2.087-0.726-2.965-1.468c-0.877-0.742-2.412-1.205-3.016-0.228
|
||||
c-0.362,0.585-0.145,1.401-0.521,1.977c-0.652,0.999-2.197,0.379-3.157-0.329c-0.96-0.708-2.488-1.35-3.163-0.367
|
||||
c-0.207,0.301-0.252,0.681-0.372,1.026c-0.454,1.31-1.87,1.963-2.973,2.803c-1.103,0.84-1.977,2.511-1.043,3.536
|
||||
c0.461,0.506,1.27,0.711,1.499,1.355c0.286,0.805-0.537,1.527-1.188,2.081c-1.084,0.922-1.28,3.681,0.153,4.435
|
||||
c0.602,0.317,1.484,0.414,1.632,1.078c0.132,0.593-0.47,1.055-0.87,1.513c-1.099,1.257-0.634,3.519,0.872,4.241
|
||||
c0.344,0.165,0.767,0.3,0.894,0.66c0.091,0.257-0.008,0.538-0.082,0.801c-0.14,0.498-0.187,1.021-0.138,1.536
|
||||
c0.017,0.176,0.053,0.367,0.187,0.482c0.122,0.104,0.294,0.121,0.454,0.128c2.07,0.092,3.068-0.64,4.331,1.161
|
||||
c0.121,0.173,0.248,0.351,0.431,0.458c0.171,0.099,0.374,0.126,0.571,0.142c1.423,0.117,2.353-0.771,3.653-0.936
|
||||
c1.804-0.23,2.186,0.7,3.775,1.447C305.522,214.758,306.734,214.034,307.203,212.331z"/>
|
||||
<path style="fill:#EBEBEB;" d="M295.911,204.883c0.152-0.551,0.242-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.455
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.451-3.401
|
||||
c-0.45-1.878-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.56-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.776,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.902,1.904,1.721c0.363,1.023-0.682,1.94-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.395,1.596-0.805,4.469,1.107,5.386
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.178,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.224,0.067,0.466,0.237,0.612c0.154,0.133,0.373,0.153,0.577,0.162c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.315,0.446,0.547,0.581c0.217,0.127,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C293.776,207.966,295.314,207.046,295.911,204.883z"/>
|
||||
<path style="fill:#EBEBEB;" d="M327.619,171.495c0.152-0.551,0.242-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484s1.75-2.157,1.452-3.401
|
||||
c-0.45-1.879-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.942-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.776,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.94-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.385
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.223,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.163c2.628,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.315,0.446,0.547,0.581c0.217,0.126,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.777,0.889,4.795,1.838C325.484,174.578,327.023,173.658,327.619,171.495z"/>
|
||||
<path style="fill:#EBEBEB;" d="M353.509,172.819c0.152-0.551,0.243-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.455
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.948c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.452-3.401
|
||||
c-0.45-1.878-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.921-3.765-1.864c-1.114-0.942-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.663-2.375,2.492-3.775,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.939-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.47,1.107,5.386
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.223,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.163c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.316,0.446,0.547,0.581c0.217,0.126,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C351.374,175.902,352.913,174.982,353.509,172.819z"/>
|
||||
<path style="fill:#EBEBEB;" d="M369.235,183.414c0.152-0.551,0.243-1.182,0.284-1.878c0.231-3.894,3.949-3.277,7.112-3.806
|
||||
c2.471-0.413-4.072-6.655,0.91-8.669c0.925-0.374,1.931-0.797,2.404-1.676c0.626-1.162-0.007-2.692-1.085-3.454
|
||||
c-1.078-0.762-2.463-0.924-3.783-0.949c-0.813-0.988-0.152-2.475,0.635-3.484c0.786-1.009,1.75-2.157,1.452-3.401
|
||||
c-0.45-1.879-3.075-1.946-4.972-1.581c-0.701-1.135-0.687-2.554-1.027-3.844c-0.34-1.29-1.366-2.644-2.69-2.482
|
||||
c-1.247,0.152-2.01,1.561-3.233,1.849c-1.421,0.335-2.651-0.922-3.765-1.864c-1.114-0.943-3.063-1.531-3.831-0.289
|
||||
c-0.46,0.743-0.184,1.779-0.662,2.511c-0.828,1.268-2.79,0.481-4.009-0.418c-1.219-0.899-3.16-1.714-4.017-0.465
|
||||
c-0.263,0.382-0.32,0.864-0.472,1.303c-0.577,1.664-2.375,2.492-3.775,3.559c-1.401,1.067-2.51,3.189-1.325,4.491
|
||||
c0.585,0.642,1.613,0.903,1.904,1.721c0.363,1.023-0.682,1.939-1.509,2.643c-1.377,1.171-1.626,4.675,0.194,5.633
|
||||
c0.764,0.402,1.885,0.526,2.072,1.369c0.168,0.754-0.597,1.34-1.105,1.921c-1.396,1.596-0.805,4.469,1.107,5.386
|
||||
c0.437,0.209,0.974,0.381,1.136,0.838c0.116,0.327-0.011,0.683-0.104,1.017c-0.177,0.632-0.237,1.297-0.175,1.95
|
||||
c0.021,0.223,0.067,0.466,0.237,0.612c0.155,0.133,0.373,0.153,0.577,0.162c2.629,0.117,3.896-0.813,5.501,1.474
|
||||
c0.154,0.22,0.315,0.446,0.547,0.581c0.217,0.126,0.475,0.16,0.725,0.181c1.807,0.149,2.988-0.979,4.639-1.189
|
||||
c2.291-0.292,2.776,0.889,4.795,1.838C367.1,186.497,368.639,185.577,369.235,183.414z"/>
|
||||
<path style="fill:#E6E6E6;" d="M364.467,196.805c0,0-6.577,9.298-8.845,12.246c-2.268,2.948-13.607,21.317-15.15,33.467
|
||||
c-0.165,1.297-0.327,2.413-0.485,3.389c4.877,32.193,4.112,91.091,3.94,101.175h-15.452c-0.142-11.37-1.455-115.31-1.94-118.484
|
||||
c-0.512-3.357-6.972-16.146-16.95-21.4c-9.978-5.254-18.601-22.64-18.601-22.64h3.18c0,0,5.896,10.659,14.287,16.555
|
||||
c1.219,0.856,2.48,1.569,3.775,2.238c-0.301-9.605,3.337-18.793,3.337-18.793l1.717,1.587
|
||||
c-2.318,9.493-2.013,15.573-1.312,19.066c2.816,1.411,5.738,3.045,8.676,5.806c8.704-11.318,13.598-37.202,13.598-37.202
|
||||
l2.229,1.217c0,0-0.724,7.03-2.878,15.875c-1.631,6.699-6.43,19.313-8.663,25.04c2.219,3.082,4.423,7.067,6.575,12.342
|
||||
c0.244-0.375,0.519-0.717,0.84-1.007c5.67-5.126,16.328-29.345,16.328-29.345c2.578-5.63-1.361-20.41-1.361-20.41h2.975
|
||||
l1.333,12.926l7.484-8.164l1.361,1.134l-7.937,10.205l-4.082,12.93l10.659-11.796L364.467,196.805z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#EBEBEB;" d="M83.655,242.833c-0.117-0.423-0.186-0.907-0.218-1.441c-0.178-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.698-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.651
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.623-0.758,0.116-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.359-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.949c0.261-0.99,1.048-2.029,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.927c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.424-1.315,3.082-0.357
|
||||
c0.201,0.293,0.246,0.663,0.362,0.999c0.442,1.277,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.692-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.404-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.135,1.496
|
||||
c-0.016,0.172-0.052,0.357-0.182,0.47c-0.119,0.102-0.286,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.22,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.556,0.139c-1.386,0.114-2.293-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C85.294,245.198,84.113,244.493,83.655,242.833z"/>
|
||||
<path style="fill:#EBEBEB;" d="M106.881,240.323c-0.117-0.423-0.186-0.907-0.218-1.441c-0.177-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.698-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.65
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.117-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.949c0.261-0.99,1.048-2.029,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.481,1.418c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.351-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.927c0.635,0.973,2.141,0.369,3.076-0.321s2.424-1.315,3.082-0.357
|
||||
c0.201,0.294,0.246,0.663,0.362,0.999c0.442,1.277,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.497
|
||||
c-0.016,0.171-0.051,0.357-0.182,0.47c-0.119,0.102-0.287,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.22,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.556,0.139c-1.386,0.114-2.293-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C108.52,242.689,107.339,241.983,106.881,240.323z"/>
|
||||
<path style="fill:#EBEBEB;" d="M109.119,225.532c-0.117-0.423-0.186-0.907-0.218-1.441c-0.178-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.699-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.651
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.116-1.899-0.487-2.673c-0.604-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.95c0.261-0.99,1.048-2.028,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.418c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.142,1.365,0.508,1.926c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.425-1.315,3.083-0.357
|
||||
c0.201,0.293,0.246,0.663,0.362,0.999c0.442,1.276,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.496
|
||||
c-0.016,0.172-0.051,0.357-0.182,0.47c-0.118,0.102-0.286,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.293-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C110.758,227.897,109.577,227.192,109.119,225.532z"/>
|
||||
<path style="fill:#EBEBEB;" d="M124.419,232.9c-0.116-0.423-0.186-0.907-0.218-1.441c-0.177-2.988-3.03-2.514-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.699-6.651c-0.71-0.287-1.482-0.612-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.651
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.117-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.95c0.261-0.99,1.048-2.028,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.926c0.635,0.973,2.141,0.369,3.076-0.321s2.424-1.315,3.082-0.357
|
||||
c0.202,0.294,0.246,0.663,0.362,1c0.442,1.276,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.617,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.497
|
||||
c-0.016,0.171-0.051,0.357-0.182,0.47c-0.119,0.102-0.286,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.292-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C126.058,235.265,124.877,234.559,124.419,232.9z"/>
|
||||
<path style="fill:#EBEBEB;" d="M139.882,229.497c-0.117-0.423-0.186-0.907-0.218-1.441c-0.178-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.699-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.651
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.623-0.758,0.116-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.359-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.95c0.261-0.99,1.048-2.028,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.926c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.425-1.315,3.082-0.357
|
||||
c0.202,0.293,0.246,0.663,0.362,0.999c0.442,1.276,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.849,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.872,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.497
|
||||
c-0.016,0.172-0.051,0.357-0.182,0.47c-0.119,0.102-0.286,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.292-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C141.52,231.862,140.34,231.156,139.882,229.497z"/>
|
||||
<path style="fill:#EBEBEB;" d="M140.084,246.037c-0.092-0.333-0.146-0.714-0.171-1.134c-0.14-2.353-2.386-1.98-4.297-2.299
|
||||
c-1.493-0.249,2.46-4.021-0.55-5.237c-0.559-0.226-1.167-0.481-1.452-1.012c-0.378-0.702,0.004-1.626,0.656-2.087
|
||||
c0.651-0.461,1.488-0.558,2.285-0.573c0.491-0.597,0.092-1.495-0.383-2.105c-0.475-0.61-1.057-1.303-0.877-2.055
|
||||
c0.272-1.135,1.858-1.176,3.004-0.955c0.423-0.686,0.415-1.543,0.621-2.323c0.205-0.779,0.825-1.597,1.625-1.5
|
||||
c0.754,0.092,1.214,0.943,1.953,1.117c0.858,0.202,1.601-0.557,2.275-1.126c0.673-0.569,1.851-0.925,2.314-0.175
|
||||
c0.278,0.449,0.111,1.075,0.4,1.517c0.5,0.766,1.686,0.291,2.422-0.253c0.736-0.543,1.909-1.035,2.427-0.281
|
||||
c0.159,0.231,0.194,0.522,0.285,0.787c0.348,1.005,1.435,1.506,2.281,2.15c0.846,0.645,1.517,1.927,0.801,2.713
|
||||
c-0.353,0.388-0.975,0.545-1.15,1.04c-0.219,0.618,0.412,1.172,0.912,1.597c0.832,0.707,0.982,2.824-0.117,3.403
|
||||
c-0.462,0.243-1.139,0.318-1.252,0.827c-0.101,0.455,0.361,0.81,0.668,1.161c0.843,0.964,0.486,2.7-0.669,3.253
|
||||
c-0.264,0.127-0.588,0.23-0.686,0.506c-0.07,0.197,0.006,0.413,0.063,0.615c0.107,0.382,0.143,0.783,0.106,1.178
|
||||
c-0.013,0.135-0.041,0.281-0.143,0.37c-0.093,0.08-0.226,0.093-0.349,0.098c-1.588,0.071-2.354-0.491-3.323,0.891
|
||||
c-0.093,0.133-0.191,0.27-0.331,0.351c-0.131,0.077-0.287,0.097-0.438,0.109c-1.092,0.09-1.805-0.591-2.803-0.718
|
||||
c-1.384-0.176-1.677,0.537-2.897,1.11C141.374,247.9,140.444,247.344,140.084,246.037z"/>
|
||||
<path style="fill:#EBEBEB;" d="M148.748,240.323c-0.117-0.423-0.186-0.907-0.218-1.441c-0.178-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.698-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.65
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.623-0.758,0.117-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.359-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.949s1.048-2.029,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.418c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.927c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.424-1.315,3.082-0.357
|
||||
c0.202,0.294,0.246,0.663,0.362,0.999c0.442,1.277,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.617,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.872,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.135,1.497
|
||||
c-0.016,0.171-0.051,0.357-0.182,0.47c-0.119,0.102-0.287,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.292-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C150.387,242.689,149.206,241.983,148.748,240.323z"/>
|
||||
<path style="fill:#EBEBEB;" d="M124.419,214.706c-0.116-0.423-0.186-0.907-0.218-1.441c-0.177-2.988-3.03-2.514-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.699-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.651
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.117-1.899-0.487-2.673c-0.603-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.95c0.261-0.99,1.048-2.028,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.926c0.635,0.973,2.141,0.369,3.076-0.321s2.424-1.315,3.082-0.357
|
||||
c0.202,0.293,0.246,0.663,0.362,1c0.442,1.276,1.822,1.912,2.897,2.731s1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.693-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.617,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.496
|
||||
c-0.016,0.172-0.051,0.357-0.182,0.47c-0.119,0.102-0.286,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.292-0.751-3.559-0.913
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C126.058,217.071,124.877,216.365,124.419,214.706z"/>
|
||||
<path style="fill:#EBEBEB;" d="M104.555,215.721c-0.117-0.423-0.186-0.907-0.218-1.441c-0.177-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.698-6.651c-0.71-0.287-1.482-0.612-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.65
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.117-1.899-0.487-2.673c-0.604-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.949c0.261-0.99,1.048-2.029,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.141,1.365,0.508,1.926c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.424-1.315,3.082-0.357
|
||||
c0.201,0.294,0.246,0.663,0.362,0.999c0.442,1.277,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.692-1.461,1.321c-0.279,0.785,0.523,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.78c0.136,0.485,0.182,0.995,0.134,1.497
|
||||
c-0.016,0.171-0.051,0.357-0.182,0.47c-0.119,0.102-0.287,0.118-0.443,0.125c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.342-0.42,0.446c-0.167,0.097-0.364,0.123-0.556,0.139c-1.386,0.114-2.293-0.751-3.559-0.912
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C106.193,218.087,105.012,217.381,104.555,215.721z"/>
|
||||
<path style="fill:#EBEBEB;" d="M92.489,223.85c-0.117-0.423-0.186-0.907-0.218-1.44c-0.178-2.988-3.03-2.515-5.457-2.92
|
||||
c-1.896-0.317,3.124-5.106-0.699-6.651c-0.71-0.287-1.482-0.611-1.845-1.286c-0.48-0.892,0.006-2.066,0.833-2.65
|
||||
c0.827-0.585,1.89-0.709,2.902-0.728c0.624-0.758,0.117-1.899-0.487-2.673c-0.604-0.774-1.342-1.655-1.114-2.609
|
||||
c0.345-1.441,2.36-1.493,3.815-1.213c0.538-0.871,0.527-1.96,0.788-2.95c0.261-0.99,1.048-2.028,2.064-1.905
|
||||
c0.957,0.117,1.542,1.197,2.48,1.419c1.09,0.257,2.034-0.707,2.889-1.43c0.855-0.723,2.35-1.174,2.939-0.222
|
||||
c0.353,0.57,0.142,1.365,0.508,1.927c0.635,0.973,2.141,0.369,3.076-0.321c0.935-0.69,2.425-1.315,3.082-0.357
|
||||
c0.201,0.294,0.246,0.663,0.362,1c0.442,1.276,1.822,1.912,2.897,2.731c1.075,0.819,1.926,2.447,1.017,3.446
|
||||
c-0.449,0.493-1.238,0.692-1.461,1.321c-0.279,0.785,0.524,1.488,1.158,2.028c1.056,0.898,1.248,3.587-0.149,4.322
|
||||
c-0.586,0.309-1.446,0.403-1.59,1.05c-0.129,0.578,0.458,1.028,0.848,1.474c1.071,1.225,0.618,3.429-0.85,4.132
|
||||
c-0.335,0.161-0.747,0.292-0.871,0.643c-0.089,0.251,0.008,0.524,0.08,0.781c0.136,0.485,0.182,0.995,0.134,1.496
|
||||
c-0.016,0.171-0.051,0.357-0.182,0.47c-0.118,0.102-0.286,0.118-0.443,0.124c-2.017,0.09-2.99-0.624-4.221,1.131
|
||||
c-0.118,0.169-0.242,0.343-0.42,0.446c-0.167,0.097-0.364,0.123-0.557,0.139c-1.386,0.114-2.292-0.751-3.559-0.913
|
||||
c-1.758-0.224-2.13,0.682-3.679,1.41C94.127,226.216,92.946,225.51,92.489,223.85z"/>
|
||||
<path style="fill:#E6E6E6;" d="M96.147,234.125c0,0,5.046,7.134,6.786,9.396c1.74,2.262,10.44,16.356,11.624,25.678
|
||||
c0.126,0.995,0.251,1.851,0.372,2.6c-3.742,24.701-3.155,69.892-3.023,77.629h11.856c0.109-8.724,1.117-88.474,1.488-90.909
|
||||
c0.393-2.576,5.349-12.388,13.005-16.419c7.656-4.031,14.272-17.371,14.272-17.371h-2.44c0,0-4.524,8.178-10.962,12.702
|
||||
c-0.935,0.657-1.903,1.204-2.897,1.717c0.231-7.37-2.56-14.419-2.56-14.419l-1.317,1.218c1.779,7.284,1.545,11.949,1.006,14.629
|
||||
c-2.161,1.083-4.402,2.336-6.657,4.455c-6.678-8.684-10.433-28.544-10.433-28.544l-1.71,0.934c0,0,0.556,5.394,2.208,12.18
|
||||
c1.251,5.14,4.933,14.818,6.647,19.212c-1.703,2.365-3.394,5.422-5.045,9.469c-0.187-0.288-0.398-0.55-0.644-0.772
|
||||
c-4.35-3.933-12.528-22.515-12.528-22.515c-1.978-4.32,1.044-15.66,1.044-15.66h-2.283l-1.023,9.918l-5.742-6.264l-1.044,0.87
|
||||
l6.09,7.83l3.132,9.92l-8.178-9.05L96.147,234.125z"/>
|
||||
</g>
|
||||
<path style="fill:#E0E0E0;" d="M66.203,363.4h367.594c4.371,0,7.915,3.544,7.915,7.915v11.922H58.288v-11.922
|
||||
C58.288,366.943,61.832,363.4,66.203,363.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Background_Simple" style="display:none;">
|
||||
<g style="display:inline;">
|
||||
<path style="fill:#0d9394;" d="M298.673,208.3c-69.138-19.558-94.993-169.434-196.032-88.754
|
||||
c-71.682,57.238-26.09,198.982,64.387,183.401c54.764-9.431,46.287-10.534,93.03,16.798
|
||||
c47.369,27.698,99.366,41.872,149.229-5.927c25.804-24.736,35.438-85.537,9.825-117.3
|
||||
C387.079,156.794,340.909,220.249,298.673,208.3z"/>
|
||||
<path style="opacity:0.9;fill:#FFFFFF;" d="M298.673,208.3c-69.138-19.558-94.993-169.434-196.032-88.754
|
||||
c-71.682,57.238-26.09,198.982,64.387,183.401c54.764-9.431,46.287-10.534,93.03,16.798
|
||||
c47.369,27.698,99.366,41.872,149.229-5.927c25.804-24.736,35.438-85.537,9.825-117.3
|
||||
C387.079,156.794,340.909,220.249,298.673,208.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shadow_1_">
|
||||
<ellipse id="_x3C_Path_x3E__359_" style="fill:#F5F5F5;" cx="250" cy="416.238" rx="193.889" ry="11.323"/>
|
||||
</g>
|
||||
<g id="Plant">
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M105.42,391.158c0,0-1.388-10.175-7.895-11.288c-6.506-1.113-4.545-6.033-6.24-7.937
|
||||
c-1.695-1.904-6.122,3.714-2.33,9.156c3.793,5.443,0.692,3.732,2.33,8.793C92.923,394.943,106.015,399.591,105.42,391.158z"/>
|
||||
<path style="opacity:0.2;fill:#FFFFFF;enable-background:new ;" d="M105.42,391.158c0,0-1.388-10.175-7.895-11.288
|
||||
c-6.506-1.113-4.545-6.033-6.24-7.937c-1.695-1.904-6.122,3.714-2.33,9.156c3.793,5.443,0.692,3.732,2.33,8.793
|
||||
C92.923,394.943,106.015,399.591,105.42,391.158z"/>
|
||||
|
||||
<path style="fill:none;stroke:#263238;stroke-width:0.9024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="
|
||||
M105.149,397.764c0,0-4.987-10.364-2.369-27.279c2.618-16.915,12.451-23.48,3.904-42.092
|
||||
c-8.547-18.613-18.314-31.884-13.429-45.091"/>
|
||||
<path style="fill:#263238;" d="M101.393,395.73c0,0-4.206-6.338,1.865-9.596c6.07-3.258,7.286-0.635,11.042-2.978
|
||||
c3.756-2.343,6.601-8.021,7.242-4.388c0.64,3.632-3.697,5.705-2.163,7.366C120.912,387.796,109.169,398.587,101.393,395.73z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M91.472,288.595c0,0-4.098-12.454,5.22-12.715C106.011,275.619,95.74,287.267,91.472,288.595z"/>
|
||||
<path style="fill:#263238;" d="M99.566,298.169c0,0,2.777-11.324,9.392-8.936C115.572,291.622,106.159,298.378,99.566,298.169z"
|
||||
/>
|
||||
<path style="fill:#263238;" d="M88.345,299.151c0,0,0.997-9.037-6.022-9.216C75.305,289.755,78.429,297.691,88.345,299.151z"/>
|
||||
<path style="fill:#263238;" d="M93.015,317.585c0,0-9.42-8.397-12.807-2.148S87.313,322.988,93.015,317.585z"/>
|
||||
<path style="fill:#263238;" d="M109.68,316.095c0,0,1.771-13.947,9.38-9.572C126.67,310.897,116.309,317.489,109.68,316.095z"/>
|
||||
<path style="fill:#263238;" d="M116.375,336.063c0,0-5.616-14.092,4.82-12.504C131.632,325.146,123.743,332.643,116.375,336.063z
|
||||
"/>
|
||||
<path style="fill:#263238;" d="M100.36,341.091c0,0-8.816-10.385-15.552-7.092C78.071,337.293,83.577,347.617,100.36,341.091z"/>
|
||||
<path style="fill:#263238;" d="M108.36,364.1c0,0,7.51-16.676,14.188-11.056C129.225,358.665,118.288,367.067,108.36,364.1z"/>
|
||||
<path style="fill:#263238;" d="M97.446,363.124c0,0,1.984-12.936-5.451-11.896C84.561,352.268,86.513,360.182,97.446,363.124z"/>
|
||||
<g style="opacity:0.2;enable-background:new ;">
|
||||
<path style="fill:#FFFFFF;" d="M91.472,288.595c0,0-4.098-12.454,5.22-12.715C106.011,275.619,95.74,287.267,91.472,288.595z"/>
|
||||
<path style="fill:#FFFFFF;" d="M99.566,298.169c0,0,2.777-11.324,9.392-8.936C115.572,291.622,106.159,298.378,99.566,298.169z"
|
||||
/>
|
||||
<path style="fill:#FFFFFF;" d="M88.345,299.151c0,0,0.997-9.037-6.022-9.216C75.305,289.755,78.429,297.691,88.345,299.151z"/>
|
||||
<path style="fill:#FFFFFF;" d="M93.015,317.585c0,0-9.42-8.397-12.807-2.148S87.313,322.988,93.015,317.585z"/>
|
||||
<path style="fill:#FFFFFF;" d="M109.68,316.095c0,0,1.771-13.947,9.38-9.572C126.67,310.897,116.309,317.489,109.68,316.095z"/>
|
||||
<path style="fill:#FFFFFF;" d="M116.375,336.063c0,0-5.616-14.092,4.82-12.504C131.632,325.146,123.743,332.643,116.375,336.063
|
||||
z"/>
|
||||
<path style="fill:#FFFFFF;" d="M100.36,341.091c0,0-8.816-10.385-15.552-7.092C78.071,337.293,83.577,347.617,100.36,341.091z"
|
||||
/>
|
||||
<path style="fill:#FFFFFF;" d="M108.36,364.1c0,0,7.51-16.676,14.188-11.056C129.225,358.665,118.288,367.067,108.36,364.1z"/>
|
||||
<path style="fill:#FFFFFF;" d="M97.446,363.124c0,0,1.984-12.936-5.451-11.896C84.561,352.268,86.513,360.182,97.446,363.124z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<path style="fill:none;stroke:#263238;stroke-width:0.9024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="
|
||||
M86.009,296.188c0,0,4.009,5.957,9.494,9.028c0,0,3.628-7,6.458-8.697"/>
|
||||
|
||||
<path style="fill:none;stroke:#263238;stroke-width:0.9024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="
|
||||
M85.782,316.75c0,0,10.194-0.329,18.263,5.771c0,0,4.48-7.594,10.358-11.055"/>
|
||||
|
||||
<path style="fill:none;stroke:#263238;stroke-width:0.9024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="
|
||||
M119.449,329.39c0,0-4.376,11.517-9.964,15.999c0,0-11.58-6.713-20.084-6.881"/>
|
||||
|
||||
<path style="fill:none;stroke:#263238;stroke-width:0.9024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="
|
||||
M92.856,355.424c0,0,5.722,11.169,9.99,13.61c0,0,3.989-5.626,12.619-8.217"/>
|
||||
<path style="fill:#263238;" d="M102.039,394.218c0,0-3.606-5.74-7.679-6.557c-4.073-0.817-5.828-5.508-7.331-2.687
|
||||
C85.525,387.796,89.67,397.15,102.039,394.218z"/>
|
||||
<g>
|
||||
<polygon style="fill:#0d9394;" points="83.323,416.749 122.701,416.749 125.336,392.46 80.688,392.46 "/>
|
||||
<polygon style="fill:#0d9394;" points="79.769,397.062 126.256,397.062 126.85,391.915 79.174,391.915 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="79.769,397.062 126.256,397.062 126.85,391.915 79.174,391.915 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Lamp">
|
||||
<g>
|
||||
<polygon style="fill:#263238;" points="428.898,154.064 425.478,186.913 408.358,186.913 404.938,154.064 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="428.898,154.064 425.478,186.913 408.358,186.913 404.938,154.064 "/>
|
||||
<rect x="413.733" y="179.849" style="fill:#263238;" width="6.371" height="236.9"/>
|
||||
<rect x="413.733" y="179.849" style="opacity:0.3;fill:#FFFFFF;" width="6.371" height="236.9"/>
|
||||
<polygon style="fill:#0d9394;" points="423.677,184.909 410.16,184.909 407.16,156.061 426.677,156.061 "/>
|
||||
<polygon style="opacity:0.4;fill:#FFFFFF;enable-background:new ;" points="423.677,184.909 410.16,184.909 407.16,156.061
|
||||
426.677,156.061 "/>
|
||||
<polygon style="fill:#263238;" points="415.141,185.36 414.218,185.36 413.218,155.061 414.141,155.061 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="415.141,185.36 414.218,185.36 413.218,155.061 414.141,155.061 "/>
|
||||
<polygon style="opacity:0.2;fill:#FFFFFF;" points="428.898,154.064 425.478,186.913 414.718,186.913 413.428,154.064 "/>
|
||||
<path style="fill:#263238;" d="M416.919,143.503c0,0-10.154,10.022-17.934,10.022l2.414,1.582h15.52h15.52l2.414-1.582
|
||||
C427.073,153.525,416.919,143.503,416.919,143.503z"/>
|
||||
<path style="opacity:0.4;fill:#FFFFFF;" d="M434.848,153.524l-2.41,1.58h-31.04l-2.41-1.58c7.78,0,17.93-10.02,17.93-10.02
|
||||
S427.068,153.524,434.848,153.524z"/>
|
||||
<path style="opacity:0.2;fill:#FFFFFF;" d="M434.848,153.524l-2.41,1.58h-20.16c-0.61-0.99-1.04-1.71-1.04-1.71
|
||||
c5.41-2.51,5.68-9.89,5.68-9.89S427.068,153.524,434.848,153.524z"/>
|
||||
<path style="fill:#263238;" d="M422.387,412.366h-10.936c-1.366,0-2.473,1.107-2.473,2.473v1.911h15.881v-1.911
|
||||
C424.859,413.473,423.752,412.366,422.387,412.366z"/>
|
||||
<path style="opacity:0.5;fill:#FFFFFF;" d="M422.387,412.366h-10.936c-1.366,0-2.473,1.107-2.473,2.473v1.911h15.881v-1.911
|
||||
C424.859,413.473,423.752,412.366,422.387,412.366z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Interface">
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M240.014,316.12H109.433c-4.324,0-7.83-3.505-7.83-7.83V125.374c0-4.324,3.506-7.83,7.83-7.83
|
||||
h130.581c4.324,0,7.83,3.506,7.83,7.83V308.29C247.844,312.615,244.338,316.12,240.014,316.12z"/>
|
||||
<path style="opacity:0.6;fill:#FFFFFF;enable-background:new ;" d="M240.014,316.12H109.433c-4.324,0-7.83-3.505-7.83-7.83
|
||||
V125.374c0-4.324,3.506-7.83,7.83-7.83h130.581c4.324,0,7.83,3.506,7.83,7.83V308.29
|
||||
C247.844,312.615,244.338,316.12,240.014,316.12z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M194.363,170.79c0,6.11-2.79,11.57-7.17,15.18c-3.39,2.78-7.73,4.46-12.47,4.46
|
||||
c-4.73,0-9.07-1.67-12.46-4.46c-4.38-3.6-7.18-9.06-7.18-15.18c0-10.84,8.8-19.63,19.64-19.63
|
||||
C185.573,151.16,194.363,159.95,194.363,170.79z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M194.363,170.79c0,6.11-2.79,11.57-7.17,15.18c-3.39,2.78-7.73,4.46-12.47,4.46
|
||||
c-4.73,0-9.07-1.67-12.46-4.46c-4.38-3.6-7.18-9.06-7.18-15.18c0-10.84,8.8-19.63,19.64-19.63
|
||||
C185.573,151.16,194.363,159.95,194.363,170.79z"/>
|
||||
<g>
|
||||
<circle style="fill:#FFFFFF;" cx="174.724" cy="168.945" r="7.033"/>
|
||||
<path style="fill:#FFFFFF;" d="M187.193,185.97c-3.39,2.78-7.73,4.46-12.47,4.46c-4.73,0-9.07-1.67-12.46-4.46
|
||||
c1.84-5.39,5.63-9.37,10.18-10.38c0.74-0.16,1.5-0.25,2.28-0.25c0.78,0,1.54,0.09,2.28,0.25
|
||||
C181.563,176.6,185.343,180.58,187.193,185.97z"/>
|
||||
</g>
|
||||
</g>
|
||||
<text transform="matrix(1 0 0 1 162.1393 247.8185)" style="opacity:0.5; font-family:'Montserrat-Regular'; font-size:4px;">Sign up now</text>
|
||||
<path style="fill:#0d9394;" d="M214.285,269.93h-79.125c-4.514,0-8.174-3.659-8.174-8.174v0c0-4.514,3.66-8.174,8.174-8.174
|
||||
h79.125c4.514,0,8.174,3.66,8.174,8.174v0C222.459,266.271,218.8,269.93,214.285,269.93z"/>
|
||||
<g style="opacity:0.5;">
|
||||
<text transform="matrix(1 0 0 1 156.731 280.8609)" style="font-family:'Montserrat-Regular'; font-size:4px;">Forgot Password?</text>
|
||||
</g>
|
||||
<text transform="matrix(1 0 0 1 163.207 264.2962)" style="fill:#FFFFFF; font-family:'Montserrat-Medium'; font-size:8px;">Login</text>
|
||||
<path style="fill:#FFFFFF;" d="M214.285,214.726h-79.125c-4.514,0-8.174-3.66-8.174-8.174v0c0-4.514,3.66-8.174,8.174-8.174
|
||||
h79.125c4.514,0,8.174,3.66,8.174,8.174v0C222.459,211.066,218.8,214.726,214.285,214.726z"/>
|
||||
<path style="fill:#FFFFFF;" d="M214.285,237.91h-79.125c-4.514,0-8.174-3.66-8.174-8.174v0c0-4.514,3.66-8.174,8.174-8.174h79.125
|
||||
c4.514,0,8.174,3.66,8.174,8.174v0C222.459,234.25,218.8,237.91,214.285,237.91z"/>
|
||||
<g style="opacity:0.5;">
|
||||
<text transform="matrix(1 0 0 1 137.4617 208.0222)" style="font-family:'Montserrat-Regular'; font-size:5px;">Name@mail.com</text>
|
||||
</g>
|
||||
<text transform="matrix(1 0 0 1 137.4617 234.1825)" style="opacity:0.5; font-family:'Montserrat-Regular'; font-size:7px;">*******</text>
|
||||
<path style="opacity:0.2;" d="M205.658,202.713v7.678h10.878v-7.678H205.658z M214.761,203.55l-3.663,2.496l-3.664-2.496H214.761z
|
||||
M206.495,209.554v-5.632l4.602,3.136l4.602-3.136v5.632H206.495z"/>
|
||||
<g style="opacity:0.2;">
|
||||
<g>
|
||||
<path d="M213.667,228.464v-0.933c0-1.174-0.955-2.129-2.129-2.129h-1.159c-1.174,0-2.129,0.955-2.129,2.129v0.933H206.5v6.382
|
||||
h9.195v-6.382H213.667z M209.088,227.53c0-0.713,0.579-1.292,1.292-1.292h1.159c0.713,0,1.292,0.579,1.292,1.292v0.933h-3.743
|
||||
V227.53z M214.858,234.008h-7.522V229.3h7.522V234.008z"/>
|
||||
<path d="M210.856,231.91v0.758h0.483v-0.758c0.138-0.083,0.235-0.228,0.235-0.401c0-0.263-0.213-0.476-0.476-0.476
|
||||
c-0.263,0-0.476,0.213-0.476,0.476C210.622,231.682,210.718,231.827,210.856,231.91z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Speech_bubble">
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M351.658,145.652H322.93c-4.886,0-8.846,3.961-8.846,8.846V179.5c0,4.885,3.961,8.846,8.846,8.846
|
||||
h11.362l3.002,7.894l3.002-7.894h11.363c4.885,0,8.846-3.96,8.846-8.846v-25.002
|
||||
C360.504,149.613,356.544,145.652,351.658,145.652z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M351.658,145.652H322.93c-4.886,0-8.846,3.961-8.846,8.846V179.5
|
||||
c0,4.885,3.961,8.846,8.846,8.846h11.362l3.002,7.894l3.002-7.894h11.363c4.885,0,8.846-3.96,8.846-8.846v-25.002
|
||||
C360.504,149.613,356.544,145.652,351.658,145.652z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g style="enable-background:new ;">
|
||||
|
||||
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -19.2188 287.3842)" style="fill:#0d9394;" cx="337.294" cy="166.891" rx="14.258" ry="14.258"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M335.797,173.26c-0.385,0-0.75-0.169-0.999-0.462l-5.594-6.591
|
||||
c-0.468-0.552-0.4-1.378,0.151-1.847c0.551-0.467,1.378-0.401,1.847,0.151l4.595,5.414l7.588-8.94
|
||||
c0.469-0.553,1.296-0.619,1.847-0.151c0.552,0.468,0.62,1.295,0.151,1.847l-8.587,10.118
|
||||
C336.547,173.091,336.182,173.26,335.797,173.26z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Character">
|
||||
<g>
|
||||
<polygon style="fill:#263238;" points="390.688,416.749 397.291,416.749 383.792,340.555 377.188,340.555 "/>
|
||||
<polygon style="fill:#263238;" points="245.532,416.749 252.136,416.749 238.637,340.555 232.033,340.555 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="390.688,416.749 397.291,416.749 383.792,340.555 377.188,340.555 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="245.532,416.749 252.136,416.749 238.637,340.555 232.033,340.555 "/>
|
||||
|
||||
<rect x="188.086" y="378.652" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 575.326 763.9917)" style="fill:#263238;" width="199.153" height="6.688"/>
|
||||
|
||||
<rect x="188.086" y="378.652" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 575.326 763.9917)" style="opacity:0.5;fill:#FFFFFF;" width="199.153" height="6.688"/>
|
||||
<polygon style="fill:#263238;" points="329.793,416.749 323.19,416.749 336.689,340.555 343.293,340.555 "/>
|
||||
<polygon style="fill:#263238;" points="184.639,416.749 178.035,416.749 191.534,340.555 198.138,340.555 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="329.793,416.749 323.19,416.749 336.689,340.555 343.293,340.555 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="184.639,416.749 178.035,416.749 191.534,340.555 198.138,340.555 "/>
|
||||
<polygon style="fill:#263238;" points="244.521,337.594 251.092,337.594 262.092,276.444 255.52,276.444 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="244.521,337.594 251.092,337.594 262.092,276.444 255.52,276.444 "/>
|
||||
<polygon style="fill:#263238;" points="375.006,337.594 381.578,337.594 392.577,276.444 386.006,276.444 "/>
|
||||
<polygon style="fill:#263238;" points="309.763,337.594 316.335,337.594 327.335,276.444 320.763,276.444 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="375.006,337.594 381.578,337.594 392.577,276.444 386.006,276.444 "/>
|
||||
<polygon style="opacity:0.3;fill:#FFFFFF;" points="309.763,337.594 316.335,337.594 327.335,276.444 320.763,276.444 "/>
|
||||
<polygon style="fill:#263238;" points="233.171,280.621 405.741,280.621 407.8,269.176 235.23,269.176 "/>
|
||||
<polygon style="fill:#263238;" points="229.447,301.323 402.018,301.323 404.076,289.878 231.506,289.878 "/>
|
||||
<polygon style="fill:#263238;" points="225.723,322.025 398.294,322.025 400.353,310.58 227.782,310.58 "/>
|
||||
|
||||
<rect x="176.655" y="335.792" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 573.2399 679.5005)" style="fill:#263238;" width="219.929" height="7.917"/>
|
||||
<polygon style="opacity:0.5;fill:#FFFFFF;" points="233.171,280.621 405.741,280.621 407.8,269.176 235.23,269.176 "/>
|
||||
<polygon style="opacity:0.5;fill:#FFFFFF;" points="229.447,301.323 402.018,301.323 404.076,289.878 231.506,289.878 "/>
|
||||
<polygon style="opacity:0.5;fill:#FFFFFF;" points="225.723,322.025 398.294,322.025 400.353,310.58 227.782,310.58 "/>
|
||||
|
||||
<rect x="176.655" y="335.792" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 573.2399 679.5005)" style="opacity:0.5;fill:#FFFFFF;" width="219.929" height="7.917"/>
|
||||
|
||||
<rect x="176.655" y="335.792" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 519.2418 679.5005)" style="opacity:0.2;fill:#FFFFFF;" width="165.931" height="7.917"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E9B376;" d="M325.585,254.205c-2.804,3.101-5.662,5.955-8.784,8.74c-1.563,1.382-3.168,2.742-4.935,4.044
|
||||
c-0.883,0.654-1.805,1.299-2.837,1.934c-0.522,0.313-1.076,0.623-1.708,0.93c-0.642,0.303-1.344,0.618-2.374,0.876
|
||||
c-0.541,0.121-1.165,0.243-2.06,0.208c-0.234-0.014-0.501-0.042-0.705-0.075l-0.364-0.081c-0.239-0.057-0.491-0.117-0.713-0.184
|
||||
c-0.831-0.274-1.543-0.596-2.135-0.925c-1.204-0.67-2.153-1.381-3.053-2.098c-1.786-1.428-3.271-2.954-4.715-4.488
|
||||
c-2.847-3.107-5.322-6.337-7.608-9.822c-0.755-1.152-0.434-2.697,0.717-3.453c0.948-0.622,2.164-0.514,2.985,0.186l0.054,0.047
|
||||
c2.975,2.54,6.009,5.124,9.016,7.471c1.492,1.18,3.031,2.284,4.488,3.2c0.724,0.447,1.454,0.834,2.039,1.061
|
||||
c0.297,0.13,0.52,0.172,0.643,0.195c0.019-0.003,0.013-0.018,0.018-0.019l0.002-0.001c-0.08-0.018-0.222-0.038-0.332-0.041
|
||||
c-0.395-0.021-0.522,0.014-0.579,0.014c-0.064-0.005,0.153-0.099,0.397-0.258c0.254-0.159,0.557-0.365,0.873-0.598
|
||||
c0.641-0.461,1.328-1.009,2.013-1.595c1.369-1.182,2.764-2.472,4.138-3.804c2.741-2.659,5.517-5.49,8.175-8.233l0.051-0.053
|
||||
c1.919-1.981,5.082-2.031,7.062-0.111C327.293,249.146,327.377,252.218,325.585,254.205z"/>
|
||||
</g>
|
||||
<path style="fill:#0d9394;" d="M323.046,245.249v14.33c0,0-3.03,2.52-6.75,5.3c-1.86,1.39-3.89,2.84-5.79,4.07
|
||||
c-2.89,1.88-5.49,3.26-6.81,3.18c-3.94-0.24-12.49-6.35-12.49-6.35l5.62-9.36c0,0,6.46,3.95,6.87,4.22
|
||||
C304.106,260.899,317.655,245.339,323.046,245.249z"/>
|
||||
<path style="opacity:0.2;" d="M316.296,264.879c-1.86,1.39-3.89,2.84-5.79,4.07c0.45-8.22,4.32-11.38,4.32-11.38
|
||||
C316.026,259.869,316.415,262.439,316.296,264.879z"/>
|
||||
<path style="fill:#263238;" d="M328.515,207.567c-6.9,5.631-6.089,21.83,1.668,32.461c0,0,16.559,1.388,25.756-2.73
|
||||
c9.197-4.118-0.969-30.348-10.691-32.413C335.525,202.82,328.515,207.567,328.515,207.567z"/>
|
||||
<path style="fill:#263238;" d="M328.916,224.404c-2.527-4.365-5.04-16.13,5.478-19.765c13.129-4.539,19.015,3.833,20.149,12.132
|
||||
c1.134,8.298-3.542,14.573-12.219,13.949C333.646,230.095,330.665,227.423,328.916,224.404z"/>
|
||||
<path style="fill:#263238;" d="M314.824,257.572c-1.285,6.066,0.966,20.367,1.336,31.145l30.918,3.564
|
||||
c0.008-3.383,0.634-8.285,2.648-16.072c1.16-4.562,2.812-10.116,5.082-16.935c0.334-1.014,0.681-2.047,1.047-3.116
|
||||
c1.628-4.764-1.18-9.572-6.035-10.332c-1.295-0.206-2.676-0.388-4.086-0.525c-5.506-0.562-10.031-0.98-14.951-0.794
|
||||
c-1.632,0.054-3.328,0.176-4.955,0.312C319.978,245.311,316.023,251.887,314.824,257.572z"/>
|
||||
<g>
|
||||
<path style="fill:#EBB376;" d="M345.575,228.409c-1.557,4.741-3.624,13.469-0.668,16.844c0,0-4.52-0.926-14.51,4.541
|
||||
c-2.587-4.166-0.438-5.336-0.438-5.336c5.527-0.99,5.897-4.962,5.44-8.734L345.575,228.409z"/>
|
||||
<path style="opacity:0.2;" d="M341.426,231.394l-6.023,4.327c0.111,0.893,0.171,1.796,0.122,2.668
|
||||
c2.087-0.186,5.189-2.277,5.68-4.402C341.45,232.926,341.536,231.9,341.426,231.394z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFB573;" d="M347.639,217.338c0.107,7.913,0.32,11.26-3.355,15.601c-5.528,6.53-15.271,4.93-17.739-2.792
|
||||
c-2.222-6.95-2.023-18.723,5.452-22.435C339.362,204.055,347.533,209.426,347.639,217.338z"/>
|
||||
<path style="fill:#263238;" d="M340.93,209.938c-2.194,2.749,2.805,11.41,6.739,12.886
|
||||
C355.322,220.301,347.478,201.733,340.93,209.938z"/>
|
||||
<path style="fill:#263238;" d="M331.561,206.252c-2.91,1.28-5.641,6.749-5.997,8.792c4.326,0.325,15.472-4.677,15.472-4.677
|
||||
s7.856,1.447,3.63-2.102C340.44,204.716,331.561,206.252,331.561,206.252z"/>
|
||||
<path style="fill:#263238;" d="M334.481,220.558c0.048,0.641-0.253,1.187-0.672,1.218c-0.419,0.031-0.798-0.463-0.846-1.104
|
||||
c-0.048-0.641,0.253-1.187,0.672-1.218C334.054,219.422,334.433,219.917,334.481,220.558z"/>
|
||||
<path style="fill:#263238;" d="M327.232,221.101c0.048,0.641-0.253,1.187-0.672,1.218c-0.419,0.031-0.798-0.463-0.846-1.104
|
||||
c-0.048-0.641,0.253-1.187,0.672-1.218C326.805,219.966,327.184,220.46,327.232,221.101z"/>
|
||||
<path style="fill:#263238;" d="M326.574,220.019L325,219.69C325,219.69,325.88,220.834,326.574,220.019z"/>
|
||||
<path style="fill:#ED893E;" d="M330.306,221.902c0,0-0.881,2.843-1.98,4.265c0.906,0.727,2.319,0.258,2.319,0.258
|
||||
L330.306,221.902z"/>
|
||||
<path style="fill:#263238;" d="M334.331,228.674c-0.292,0.068-0.605,0.117-0.94,0.142c-0.104,0.008-0.195-0.07-0.202-0.174
|
||||
c-0.008-0.104,0.079-0.195,0.174-0.202c2.823-0.212,3.982-2.276,3.993-2.296c0.05-0.091,0.164-0.125,0.257-0.074
|
||||
c0.091,0.05,0.125,0.165,0.074,0.257C337.642,226.407,336.667,228.133,334.331,228.674z"/>
|
||||
<path style="fill:#FFB573;" d="M350.315,224.401c-0.445,1.579-1.578,2.805-2.764,3.445c-1.785,0.963-3.122-0.526-2.999-2.444
|
||||
c0.111-1.726,1.173-4.307,3.144-4.479C349.637,220.753,350.823,222.595,350.315,224.401z"/>
|
||||
<path style="fill:#263238;" d="M338.033,218.676c-0.155,0.036-0.322-0.029-0.409-0.173c-0.903-1.496-3.146-1.674-3.168-1.675
|
||||
c-0.208-0.015-0.365-0.196-0.35-0.404c0.014-0.208,0.194-0.365,0.404-0.35c0.108,0.008,2.658,0.211,3.761,2.038
|
||||
c0.108,0.179,0.05,0.411-0.128,0.519C338.108,218.653,338.071,218.668,338.033,218.676z"/>
|
||||
<path style="fill:#263238;" d="M325.556,217.729c-0.126,0.029-0.263-0.007-0.359-0.107c-0.144-0.151-0.139-0.39,0.011-0.534
|
||||
c1.508-1.445,3.212-1.07,3.283-1.053c0.203,0.047,0.33,0.251,0.282,0.454c-0.047,0.202-0.249,0.329-0.452,0.283l0,0
|
||||
c-0.056-0.012-1.386-0.292-2.591,0.862C325.681,217.682,325.62,217.714,325.556,217.729z"/>
|
||||
<path style="fill:#263238;" d="M333.823,219.475l-1.574-0.329C332.249,219.147,333.13,220.291,333.823,219.475z"/>
|
||||
</g>
|
||||
<path style="fill:#EBB376;" d="M305.721,248.688l0.749,2.343c0.282,0.881,0.972,1.572,1.853,1.854l4.117,1.319
|
||||
c1.646,0.527,3.445,0.225,4.828-0.812l0.856-0.642c-0.977-3.971-4.958-7.542-4.958-7.542l-1.022-1.144
|
||||
c-0.911-1.018-2.38-1.136-3.376-0.269l-2.293,1.995C305.683,246.479,305.383,247.632,305.721,248.688z"/>
|
||||
<path style="fill:#EBB376;" d="M278.035,250.834l0.749,2.343c0.282,0.881,0.972,1.572,1.853,1.854l4.117,1.319
|
||||
c1.646,0.527,3.445,0.225,4.828-0.812l0.856-0.642c-0.977-3.971-4.958-7.542-4.958-7.542l-1.022-1.144
|
||||
c-0.91-1.018-2.38-1.136-3.376-0.269l-2.293,1.995C277.997,248.625,277.697,249.778,278.035,250.834z"/>
|
||||
<path style="opacity:0.2;" d="M337.801,263.394c1.988,5.859,7.065,10.23,11.924,12.815c1.16-4.562,2.812-10.116,5.082-16.935
|
||||
c-3.048-4.265-7.321-7.294-12.754-6.475C342.053,252.799,335.787,257.459,337.801,263.394z"/>
|
||||
<g>
|
||||
<path style="fill:#EBB376;" d="M228.07,379.655l5.218,2.107c0,0,44.357-66.906,48.462-64.392
|
||||
c14.87,9.109,45.439,25.389,59.907,15.531c14.466-9.849,5.88-35.85,5.88-35.85s-28.135-9.875-31.611-3.77
|
||||
c-0.675,1.18-1.63,3.57-2.391,5.625c-0.727,1.935-1.286,3.569-1.286,3.569s-0.009-0.002-0.017-0.013
|
||||
c-0.851-0.404-28.431-13.67-41.419-8.206C257.618,299.816,228.07,379.655,228.07,379.655z"/>
|
||||
</g>
|
||||
<path style="fill:#EBB376;" d="M324.248,336.472c0,0-13.952,0.912-33.061-5.581c0,0-4.711,53.281-7.873,82.196l-6.409-0.902
|
||||
c0,0-10.888-78.933-8.734-88.556c2.154-9.624,13.801-10.255,13.801-10.255S304.271,329.736,324.248,336.472z"/>
|
||||
<path style="fill:#0d9394;" d="M324.248,336.472c-0.311-0.062-13.952,0.509-27.904-3.449l1.815-7.58
|
||||
C305.193,330.073,314.984,332.899,324.248,336.472z"/>
|
||||
<path style="opacity:0.4;fill:#FFFFFF;" d="M324.248,336.472c-0.311-0.062-13.952,0.509-27.904-3.449l1.815-7.58
|
||||
C305.193,330.073,314.984,332.899,324.248,336.472z"/>
|
||||
<polygon style="fill:#0d9394;" points="296.981,324.654 295.308,333.09 297.854,333.957 299.81,326.509 "/>
|
||||
<polygon style="opacity:0.6;fill:#FFFFFF;enable-background:new ;" points="296.981,324.654 295.308,333.09 297.854,333.957
|
||||
299.81,326.509 "/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M270.486,357.185c-1.008-20.968-1.441-31.84,2.008-36.177
|
||||
c3.449-4.336,8.85-5.118,8.85-5.118c4.476,11.35,24.025,18.435,24.536,18.624c0.009,0.002,0.009,0.002,0.009,0.002
|
||||
c7.294,1.515,18.094,1.904,18.358,1.956c-11.065-2.285-19.056-6.399-26.09-11.03c-9.73-6.411-16.188-12.065-16.188-12.065
|
||||
s-11.647,0.632-13.801,10.255c-0.878,3.934,0.425,19.46,2.263,36.445C270.508,359.003,270.523,358.035,270.486,357.185z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M222.856,375.26c-0.097-0.199-0.14-0.524,0.199-0.943c0.165-0.203,0.393-0.319,0.678-0.344
|
||||
c0.538-0.049,1.239,0.253,1.884,0.631c-0.49-0.647-0.865-1.332-0.696-1.764c0.111-0.281,0.392-0.426,0.837-0.43
|
||||
c0.417-0.005,0.77,0.146,1.048,0.449c0.876,0.95,0.689,3.12,0.68,3.222c-0.003,0.035-0.014,0.07-0.034,0.102
|
||||
c-0.01,0.017-0.023,0.032-0.037,0.046c-0.022,0.021-0.047,0.037-0.074,0.048l-0.001,0l-0.001,0
|
||||
c-0.025,0.01-0.053,0.016-0.082,0.016c-0.384,0.005-1.689,0.003-2.789-0.216C223.715,375.928,223.058,375.678,222.856,375.26z
|
||||
M223.774,374.436c-0.157,0.014-0.274,0.071-0.358,0.174c-0.225,0.277-0.163,0.405-0.143,0.447
|
||||
c0.234,0.484,1.904,0.719,3.313,0.764C225.783,375.208,224.505,374.369,223.774,374.436z M225.762,372.875
|
||||
c-0.133,0.001-0.363,0.021-0.408,0.136c-0.146,0.37,0.711,1.519,1.689,2.516c0.003-0.665-0.072-1.802-0.579-2.353
|
||||
c-0.138-0.15-0.299-0.243-0.488-0.28C225.909,372.88,225.837,372.874,225.762,372.875z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M270.651,407.62c-0.172-0.138-0.351-0.413-0.225-0.937c0.062-0.254,0.217-0.456,0.464-0.602
|
||||
c0.464-0.274,1.226-0.302,1.972-0.24c-0.72-0.374-1.354-0.831-1.386-1.293c-0.021-0.301,0.171-0.553,0.571-0.748
|
||||
c0.374-0.183,0.758-0.197,1.139-0.045c1.2,0.482,1.964,2.525,1.998,2.617c0.013,0.034,0.018,0.071,0.013,0.108v0.001v0
|
||||
c-0.002,0.017-0.006,0.034-0.012,0.05l0,0c0,0,0,0,0,0.001c-0.011,0.031-0.029,0.06-0.052,0.082
|
||||
c-0.016,0.017-0.035,0.031-0.056,0.043c0,0,0,0,0,0l0,0c-0.003,0.001-0.006,0.003-0.008,0.004
|
||||
c-0.467,0.229-2.438,1.16-3.667,1.16C271.092,407.823,270.83,407.764,270.651,407.62z M271.126,406.482
|
||||
c-0.136,0.08-0.217,0.182-0.248,0.31c-0.084,0.347,0.027,0.436,0.063,0.465c0.418,0.335,2.028-0.169,3.32-0.733
|
||||
C273.271,406.316,271.757,406.108,271.126,406.482z M272.25,404.218c-0.12,0.058-0.319,0.175-0.311,0.298
|
||||
c0.028,0.396,1.295,1.066,2.606,1.546c-0.282-0.602-0.839-1.597-1.533-1.875c-0.117-0.047-0.233-0.07-0.348-0.07
|
||||
C272.527,404.116,272.39,404.15,272.25,404.218z"/>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M236.58,379.509c0.285-0.658-7.952-3.838-7.952-3.838s-7.232,2.737-12.533,1.657
|
||||
c-5.301-1.08-3.952,3.022,1.393,5.487c5.345,2.465,9.424,4.346,13.222,6.097C234.507,390.663,233.625,386.333,236.58,379.509z"/>
|
||||
<path style="fill:#263238;" d="M284.87,405.56c-0.025-0.717-8.83-0.049-8.83-0.049s-5.355,5.579-10.606,6.881
|
||||
c-5.251,1.302-2.27,4.426,3.615,4.356c5.885-0.071,10.377-0.125,14.559-0.175C287.789,416.523,285.133,412.992,284.87,405.56z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M347.535,297.05c0,0-28.135-9.875-31.611-3.77c-0.675,1.18-1.63,3.57-2.391,5.625
|
||||
c-0.727,1.935-1.286,3.569-1.286,3.569s-0.009-0.002-0.017-0.013c-0.034-0.016-2.307-1.059-2.307-1.059l-9.428,28.132
|
||||
c14.985,8.312,36.175,9.278,44.852,3.366C359.814,323.052,347.535,297.05,347.535,297.05z"/>
|
||||
</g>
|
||||
<g style="opacity:0.4;">
|
||||
<path style="fill:#FFFFFF;" d="M347.535,297.05c0,0-28.135-9.875-31.611-3.77c-0.675,1.18-1.63,3.57-2.391,5.625
|
||||
c-0.727,1.935-1.286,3.569-1.286,3.569s-0.009-0.002-0.017-0.013c-0.034-0.016-2.307-1.059-2.307-1.059l-9.428,28.132
|
||||
c14.985,8.312,36.175,9.278,44.852,3.366C359.814,323.052,347.535,297.05,347.535,297.05z"/>
|
||||
</g>
|
||||
<path style="opacity:0.3;enable-background:new ;" d="M312.247,302.474l16.235,6.888c0,0-8.334-7.027-14.949-10.457
|
||||
C312.807,300.84,312.247,302.474,312.247,302.474z"/>
|
||||
<g>
|
||||
<polygon style="fill:#0d9394;" points="315.524,294.054 316.092,287.109 347.536,291.288 347.952,297.992 "/>
|
||||
<polygon style="opacity:0.4;fill:#FFFFFF;" points="315.524,294.054 316.092,287.109 347.536,291.288 347.952,297.992 "/>
|
||||
<g>
|
||||
<polygon style="fill:#263238;" points="316.155,287.789 317.796,288.029 317.286,293.439 315.926,293.279 "/>
|
||||
<polygon style="fill:#263238;" points="319.356,288.249 337.086,290.829 336.626,295.749 318.856,293.629 "/>
|
||||
<polygon style="fill:#263238;" points="347.536,297.049 338.195,295.939 338.646,291.059 338.655,291.059 347.086,292.279
|
||||
"/>
|
||||
<polygon style="opacity:0.2;enable-background:new ;" points="316.155,287.789 317.796,288.029 317.286,293.439
|
||||
315.926,293.279 "/>
|
||||
<polygon style="opacity:0.2;enable-background:new ;" points="319.356,288.249 337.086,290.829 336.626,295.749
|
||||
318.856,293.629 "/>
|
||||
<polygon style="opacity:0.2;enable-background:new ;" points="347.536,297.049 338.195,295.939 338.646,291.059
|
||||
338.655,291.059 347.086,292.279 "/>
|
||||
</g>
|
||||
<path style="fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" d="M323.575,294.284
|
||||
l5.05,0.669c0.513,0.068,0.984-0.293,1.052-0.806l0.448-3.381c0.068-0.513-0.293-0.984-0.806-1.052l-5.05-0.669
|
||||
c-0.513-0.068-0.984,0.293-1.052,0.806l-0.448,3.381C322.701,293.746,323.062,294.216,323.575,294.284z"/>
|
||||
|
||||
<line style="fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" x1="327.2" y1="291.999" x2="328.98" y2="292.281"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#0d9394;" points="308.576,299.458 311.198,300.841 302.308,331.058 298.576,330.318 "/>
|
||||
<polygon style="opacity:0.6;fill:#FFFFFF;enable-background:new ;" points="308.576,299.458 311.198,300.841 302.308,331.058
|
||||
298.576,330.318 "/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M306.479,268.949h-22.032c-0.849,0-1.597-0.691-1.671-1.544l-3.067-29.241
|
||||
c-0.074-0.853,0.555-1.544,1.404-1.544h22.032c0.849,0,1.597,0.691,1.671,1.544l3.068,29.241
|
||||
C307.956,268.258,307.328,268.949,306.479,268.949z"/>
|
||||
<path style="opacity:0.6;fill:#FFFFFF;" d="M306.479,268.949h-22.032c-0.849,0-1.597-0.691-1.671-1.544l-3.067-29.241
|
||||
c-0.074-0.853,0.555-1.544,1.404-1.544h22.032c0.849,0,1.597,0.691,1.671,1.544l3.068,29.241
|
||||
C307.956,268.258,307.328,268.949,306.479,268.949z"/>
|
||||
<path style="opacity:0.2;fill:#FFFFFF;" d="M305.558,268.949h-21.111c-0.849,0-1.597-0.691-1.671-1.544l-3.067-29.241
|
||||
c-0.074-0.853,0.555-1.544,1.404-1.544h21.111c0.849,0,1.597,0.691,1.671,1.544l3.068,29.241
|
||||
C307.035,268.258,306.407,268.949,305.558,268.949z"/>
|
||||
<path style="fill:#263238;" d="M292.712,250.394c-1.314,0-2.287,1.07-2.173,2.391c0.114,1.32,1.272,2.391,2.587,2.391
|
||||
s2.287-1.07,2.173-2.391C293.984,252.785,292.826,251.714,292.712,250.394z"/>
|
||||
<path style="opacity:0.3;" d="M297.48,238.942h-11.637c-0.568,0-1.11-0.348-1.366-0.879l-0.697-1.443h15.361l-0.448,1.443
|
||||
C298.53,238.594,298.048,238.942,297.48,238.942z"/>
|
||||
</g>
|
||||
<path style="fill:#0d9394;" d="M353.655,305.869h-4.09c0,0-5.11-15.34-8.09-28.34c-0.89-3.83-1.58-7.46-1.91-10.43
|
||||
c-0.49-4.41,0.06-8.33,0.99-11.58c1.84-6.39,5.18-10.22,5.18-10.22l-0.83-0.05c7.74-0.08,11.92,2.6,12.44,7.42
|
||||
c0.53,4.81-8.04,33.42-8.44,37.24C348.516,293.739,353.655,305.869,353.655,305.869z"/>
|
||||
<path style="fill:#0d9394;" d="M327.237,244.708c0,0-8.184,12.898-10.376,18.385c-2.193,5.487-0.935,21.176-0.935,21.176
|
||||
s-4.19-18.885-1.493-28.248C317.128,246.659,321.785,244.735,327.237,244.708z"/>
|
||||
<g>
|
||||
<path style="fill:#E9B376;" d="M355.285,256.335c-2.5,3.748-5.11,7.115-8.253,10.414c-1.58,1.639-3.246,3.231-5.357,4.734
|
||||
c-1.071,0.745-2.225,1.499-3.863,2.098c-0.825,0.291-1.8,0.555-3.017,0.592c-0.624,0.004-1.278-0.036-1.981-0.217
|
||||
c-0.324-0.072-0.733-0.22-0.992-0.323l-0.522-0.241c-1.37-0.656-2.442-1.395-3.422-2.163c-0.978-0.767-1.854-1.555-2.678-2.358
|
||||
c-1.65-1.607-3.094-3.287-4.466-4.992c-2.734-3.43-5.081-6.981-7.216-10.781c-0.673-1.199-0.248-2.716,0.951-3.389
|
||||
c1.008-0.566,2.242-0.355,3.009,0.44l0.052,0.055c2.826,2.929,5.765,5.874,8.695,8.595c1.467,1.361,2.969,2.657,4.463,3.807
|
||||
c1.46,1.145,3.073,2.151,4.199,2.554l0.197,0.07c-0.012-0.02-0.176-0.07-0.243-0.094c-0.195-0.048-0.321-0.078-0.424-0.077
|
||||
c-0.171-0.017-0.123-0.023,0.025-0.109c0.31-0.17,0.926-0.569,1.526-1.072c1.229-1.019,2.534-2.395,3.792-3.821
|
||||
c2.496-2.877,4.989-6.16,7.235-9.293l0.078-0.109c1.607-2.241,4.727-2.755,6.968-1.148
|
||||
C356.233,251.079,356.767,254.106,355.285,256.335z"/>
|
||||
</g>
|
||||
<path style="opacity:0.2;" d="M354.195,260.039c0,0-7.2,12.28-12.72,17.49c-0.89-3.83-1.58-7.46-1.91-10.43
|
||||
c-0.49-4.41,0.06-8.33,0.99-11.58c2.29-1.88,4.55-3.75,5.7-4.7C349.095,248.449,354.195,260.039,354.195,260.039z"/>
|
||||
<path style="fill:#0d9394;" d="M354.711,248.675c3.768,2.031,2.627,7.478-2.313,13.94c-4.94,6.461-13.88,15.188-18.575,13.594
|
||||
s-10.01-7.837-10.01-7.837l3.424-9.68c0,0,6.736,5.11,8.138,4.846c1.402-0.264,8.256-9.134,10.236-11.886
|
||||
C347.59,248.9,350.623,246.472,354.711,248.675z"/>
|
||||
<path style="fill:#FFB573;" d="M284.434,249.246l-0.143,1.919c-0.077,1.026-0.854,1.863-1.872,2.014l-2.608,0.387l0.616-7.041
|
||||
l2.179,0.387C283.726,247.102,284.518,248.113,284.434,249.246z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 67 KiB |
655
src/assets/illustration/register-cover-dark.svg
Normal file
@@ -0,0 +1,655 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
|
||||
<g id="Background_Complete">
|
||||
<g>
|
||||
<rect y="382.398" style="fill:#2b3044;" width="500" height="0.25"/>
|
||||
<rect x="416.779" y="398.494" style="fill:#2b3044;" width="33.122" height="0.25"/>
|
||||
<rect x="322.527" y="401.208" style="fill:#2b3044;" width="8.693" height="0.25"/>
|
||||
<rect x="396.586" y="389.208" style="fill:#2b3044;" width="19.192" height="0.25"/>
|
||||
<rect x="52.459" y="390.888" style="fill:#2b3044;" width="43.193" height="0.25"/>
|
||||
<rect x="104.556" y="390.888" style="fill:#2b3044;" width="6.333" height="0.25"/>
|
||||
<rect x="131.471" y="395.111" style="fill:#2b3044;" width="93.676" height="0.25"/>
|
||||
<path style="fill:#2b3044;" d="M237.014,337.8H43.915c-3.147,0-5.708-2.561-5.708-5.708V60.66c0-3.147,2.561-5.708,5.708-5.708
|
||||
h193.099c3.146,0,5.707,2.561,5.707,5.708v271.432C242.721,335.239,240.16,337.8,237.014,337.8z M43.915,55.203
|
||||
c-3.01,0-5.458,2.448-5.458,5.458v271.432c0,3.01,2.448,5.458,5.458,5.458h193.099c3.009,0,5.457-2.448,5.457-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.457-5.458H43.915z"/>
|
||||
<path style="fill:#2b3044;" d="M453.31,337.8H260.212c-3.147,0-5.707-2.561-5.707-5.708V60.66c0-3.147,2.561-5.708,5.707-5.708
|
||||
H453.31c3.148,0,5.708,2.561,5.708,5.708v271.432C459.019,335.239,456.458,337.8,453.31,337.8z M260.212,55.203
|
||||
c-3.009,0-5.457,2.448-5.457,5.458v271.432c0,3.01,2.448,5.458,5.457,5.458H453.31c3.01,0,5.458-2.448,5.458-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.458-5.458H260.212z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<rect x="100.355" y="173.877" style="fill:#2b3044;" width="141.985" height="208.169"/>
|
||||
<g>
|
||||
<rect x="105.374" y="180.43" style="fill:#2b3044;" width="131.947" height="38.447"/>
|
||||
<rect x="105.374" y="186.654" style="fill:#1e1e2d;" width="7.495" height="32.223"/>
|
||||
<rect x="141.617" y="186.654" style="fill:#1e1e2d;" width="7.496" height="32.223"/>
|
||||
|
||||
<rect x="185.553" y="186.252" transform="matrix(0.9855 -0.1698 0.1698 0.9855 -31.6201 35.0923)" style="fill:#1e1e2d;" width="7.496" height="32.223"/>
|
||||
<rect x="114.661" y="190.9" style="fill:#1e1e2d;" width="7.495" height="27.976"/>
|
||||
<rect x="131.89" y="190.9" style="fill:#1e1e2d;" width="7.495" height="27.976"/>
|
||||
<rect x="175.376" y="190.9" style="fill:#1e1e2d;" width="7.495" height="27.976"/>
|
||||
|
||||
<rect x="154.586" y="190.42" transform="matrix(0.9762 -0.2169 0.2169 0.9762 -40.5694 39.2118)" style="fill:#1e1e2d;" width="7.496" height="27.976"/>
|
||||
<rect x="124.891" y="185.054" style="fill:#1e1e2d;" width="3.748" height="33.822"/>
|
||||
<rect x="169.474" y="185.054" style="fill:#1e1e2d;" width="3.748" height="33.822"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<rect x="105.374" y="224.964" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 342.6952 488.3752)" style="fill:#2b3044;" width="131.947" height="38.447"/>
|
||||
|
||||
<rect x="229.826" y="231.188" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 467.1472 494.5993)" style="fill:#1e1e2d;" width="7.495" height="32.222"/>
|
||||
|
||||
<rect x="193.582" y="231.188" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 394.6603 494.5993)" style="fill:#1e1e2d;" width="7.496" height="32.222"/>
|
||||
|
||||
<rect x="149.646" y="230.786" transform="matrix(-0.9855 -0.1698 0.1698 -0.9855 262.6272 516.2596)" style="fill:#1e1e2d;" width="7.495" height="32.223"/>
|
||||
|
||||
<rect x="220.538" y="235.435" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 448.5722 498.8456)" style="fill:#1e1e2d;" width="7.496" height="27.976"/>
|
||||
|
||||
<rect x="203.31" y="235.435" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 414.1154 498.8456)" style="fill:#1e1e2d;" width="7.496" height="27.976"/>
|
||||
|
||||
<rect x="159.824" y="235.435" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 327.1429 498.8456)" style="fill:#1e1e2d;" width="7.496" height="27.976"/>
|
||||
|
||||
<rect x="180.614" y="234.955" transform="matrix(-0.9762 -0.2169 0.2169 -0.9762 310.3411 531.9466)" style="fill:#1e1e2d;" width="7.495" height="27.976"/>
|
||||
|
||||
<rect x="214.057" y="229.589" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 431.8616 492.9995)" style="fill:#1e1e2d;" width="3.748" height="33.822"/>
|
||||
|
||||
<rect x="169.474" y="229.589" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 342.6953 492.9995)" style="fill:#1e1e2d;" width="3.748" height="33.822"/>
|
||||
<rect x="105.374" y="231.188" style="fill:#1e1e2d;" width="7.495" height="32.222"/>
|
||||
<rect x="114.661" y="235.435" style="fill:#1e1e2d;" width="7.495" height="27.976"/>
|
||||
<rect x="131.89" y="235.435" style="fill:#1e1e2d;" width="7.495" height="27.976"/>
|
||||
<rect x="124.891" y="229.589" style="fill:#1e1e2d;" width="3.748" height="33.822"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="105.374" y="269.499" style="fill:#2b3044;" width="131.947" height="38.447"/>
|
||||
<g>
|
||||
<rect x="181.107" y="275.723" style="fill:#1e1e2d;" width="7.496" height="32.223"/>
|
||||
|
||||
<rect x="225.043" y="275.32" transform="matrix(0.9855 -0.1698 0.1698 0.9855 -46.1743 43.0936)" style="fill:#1e1e2d;" width="7.496" height="32.223"/>
|
||||
<rect x="154.151" y="279.969" style="fill:#1e1e2d;" width="7.496" height="27.976"/>
|
||||
<rect x="171.38" y="279.969" style="fill:#1e1e2d;" width="7.495" height="27.976"/>
|
||||
<rect x="214.866" y="279.969" style="fill:#1e1e2d;" width="7.496" height="27.976"/>
|
||||
|
||||
<rect x="194.076" y="279.489" transform="matrix(0.9762 -0.2169 0.2169 0.9762 -58.9471 49.8958)" style="fill:#1e1e2d;" width="7.495" height="27.976"/>
|
||||
<rect x="164.381" y="274.123" style="fill:#1e1e2d;" width="3.748" height="33.822"/>
|
||||
<rect x="208.964" y="274.123" style="fill:#1e1e2d;" width="3.748" height="33.822"/>
|
||||
|
||||
<rect x="138.81" y="275.32" transform="matrix(0.9855 -0.1698 0.1698 0.9855 -47.4278 28.4477)" style="fill:#1e1e2d;" width="7.496" height="32.223"/>
|
||||
<rect x="128.633" y="279.969" style="fill:#1e1e2d;" width="7.496" height="27.976"/>
|
||||
|
||||
<rect x="107.842" y="279.489" transform="matrix(0.9762 -0.2169 0.2169 0.9762 -61.0001 31.1914)" style="fill:#1e1e2d;" width="7.495" height="27.976"/>
|
||||
<rect x="122.73" y="274.123" style="fill:#1e1e2d;" width="3.748" height="33.822"/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<rect x="75.86" y="173.877" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 176.2151 556.469)" style="fill:#2b3044;" width="24.495" height="208.715"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M325.437,377.144h-20.812l10.941-89.107c0.463-3.772,3.896-6.83,7.668-6.83h7.152h83.657
|
||||
l-13.312,95.937H325.437z"/>
|
||||
<path style="fill:#2b3044;" d="M391.443,377.144h20.812l10.941-89.107c0.463-3.772-2.219-6.83-5.991-6.83h-7.152
|
||||
c-3.772,0-7.205,3.058-7.668,6.83L391.443,377.144z"/>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M383.776,377.039l3.771-43.099c0.168-1.925,1.656-3.472,3.573-3.717l1.551-0.198
|
||||
c2.571-0.328,4.566-2.404,4.792-4.986l0.688-7.858c0.282-3.221-2.257-5.991-5.49-5.991h34.781c3.233,0,5.772,2.77,5.49,5.991
|
||||
l-0.688,7.858c-0.226,2.582-2.221,4.658-4.792,4.986l-1.551,0.198c-1.917,0.245-3.404,1.792-3.572,3.717l-3.771,43.099
|
||||
c-0.275,3.142-2.906,5.553-6.06,5.553h-34.781C380.87,382.592,383.501,380.181,383.776,377.039z"/>
|
||||
</g>
|
||||
<path style="fill:#2b3044;" d="M288.061,323.15c-0.592-6.768-6.259-11.961-13.053-11.961h16.829h13.45
|
||||
c6.794,0,12.461,5.193,13.053,11.961l2.989,34.165h-30.28L288.061,323.15z"/>
|
||||
<path style="fill:#2b3044;" d="M261.557,311.189h13.45c6.794,0,12.461,5.193,13.053,11.961l2.989,34.164h72.117l2.989-34.165
|
||||
c0.592-6.768,6.259-11.961,13.053-11.961h13.45c3.233,0,5.772,2.77,5.49,5.991l-0.688,7.858
|
||||
c-0.226,2.582-2.221,4.658-4.792,4.986l-1.551,0.198c-1.917,0.245-3.404,1.792-3.573,3.717l-3.771,43.099
|
||||
c-0.275,3.142-2.906,5.553-6.06,5.553H276.501c-3.154,0-5.785-2.411-6.06-5.553l-3.771-43.099
|
||||
c-0.168-1.925-1.656-3.472-3.572-3.717l-1.551-0.198c-2.571-0.328-4.566-2.404-4.792-4.986l-0.688-7.858
|
||||
C255.785,313.96,258.324,311.189,261.557,311.189z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M102.159,163.477c0,0-1.108-7.303,4.219-11.986c5.326-4.683,4.858-7.468,3.336-7.831
|
||||
c-1.522-0.363-2.927,4.319-5.268,5.607c0,0-0.074-6.673,2.304-9.131c2.378-2.458,3.626-8.791,1.363-8.903
|
||||
c-2.263-0.111-2.497,3.762-2.965,6.508c-0.468,2.746-2.99,6.609-2.99,6.609s-0.492-5.971-2.029-8.429
|
||||
c-1.537-2.458,2.561-8.078,0.98-10.536c-1.58-2.458-4.39,2.224-4.156,7.492c0.234,5.268,3.746,10.887,2.927,16.389
|
||||
c0,0-1.549-3.863-2.94-4.214c-1.391-0.351-2.796-2.906-3.732-3.853c-0.937-0.947-2.107,2.331,0,5.375
|
||||
c2.107,3.044,7.492,11.187,6.673,17.768L102.159,163.477z"/>
|
||||
<path style="fill:#2b3044;" d="M105.343,160.155l1.744,10.946c0.539,3.38-2.073,6.441-5.496,6.441h-1.861
|
||||
c-3.423,0-6.035-3.061-5.496-6.441l1.744-10.946H105.343z"/>
|
||||
|
||||
<rect x="210.056" y="152.042" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 425.5436 327.4352)" style="fill:#1e1e2d;" width="5.432" height="23.351"/>
|
||||
|
||||
<rect x="183.79" y="152.042" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 373.013 327.4352)" style="fill:#1e1e2d;" width="5.432" height="23.351"/>
|
||||
|
||||
<rect x="151.95" y="151.75" transform="matrix(-0.9855 -0.1698 0.1698 -0.9855 279.3288 350.7467)" style="fill:#1e1e2d;" width="5.432" height="23.351"/>
|
||||
|
||||
<rect x="203.325" y="155.119" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 412.0824 330.5125)" style="fill:#1e1e2d;" width="5.432" height="20.274"/>
|
||||
|
||||
<rect x="190.84" y="155.119" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 387.1118 330.5125)" style="fill:#1e1e2d;" width="5.432" height="20.274"/>
|
||||
|
||||
<rect x="159.326" y="155.119" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 324.0838 330.5125)" style="fill:#1e1e2d;" width="5.432" height="20.274"/>
|
||||
|
||||
<rect x="174.393" y="154.771" transform="matrix(-0.9762 -0.2169 0.2169 -0.9762 314.2313 364.3063)" style="fill:#1e1e2d;" width="5.432" height="20.274"/>
|
||||
|
||||
<rect x="198.628" y="150.883" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 399.9725 326.2759)" style="fill:#1e1e2d;" width="2.716" height="24.511"/>
|
||||
|
||||
<rect x="166.319" y="150.883" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 335.3545 326.2759)" style="fill:#1e1e2d;" width="2.716" height="24.511"/>
|
||||
<g>
|
||||
<rect x="120.479" y="156.859" style="fill:#1e1e2d;" width="26.467" height="18.272"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="215.558" y="164.343" style="fill:#1e1e2d;" width="22.173" height="13.642"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="221.46" y="152.352" style="fill:#1e1e2d;" width="11.087" height="13.641"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="391.443" y="134.303" style="fill:#2b3044;" width="26.37" height="109.885"/>
|
||||
|
||||
<rect x="316.366" y="134.303" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 731.3485 378.7801)" style="fill:#2b3044;" width="98.617" height="110.175"/>
|
||||
|
||||
<rect x="313.185" y="134.303" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 728.6906 378.7801)" style="fill:#2b3044;" width="102.32" height="110.175"/>
|
||||
|
||||
<rect x="317.556" y="137.817" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 728.8553 377.2321)" style="fill:#2b3044;" width="93.744" height="101.599"/>
|
||||
|
||||
<rect x="317.556" y="137.817" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 636.8504 377.2321)" style="fill:#2b3044;" width="1.739" height="101.599"/>
|
||||
|
||||
<rect x="363.902" y="165.977" transform="matrix(6.123234e-17 -1 1 6.123234e-17 153.0254 577.519)" style="fill:#2b3044;" width="2.74" height="92.541"/>
|
||||
|
||||
<rect x="317.556" y="206.277" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 730.3249 417.1543)" style="fill:#2b3044;" width="95.214" height="4.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Background_Simple" style="display:none;">
|
||||
<g style="display:inline;">
|
||||
<path style="fill:#0d9394;" d="M89.369,124.198c27.919-59.449,127.059-51.062,165.317-9.255
|
||||
c38.258,41.806,50.696,68.599,85.208,52.983c34.512-15.616,78.518-11.44,81.043,38.164s-37.913,108.263-102.09,125.615
|
||||
c-64.177,17.352-64.161,78.759-149.1,66.368c-46.31-6.756-47.365-56.86-40.825-98.301
|
||||
C135.462,258.331,56.991,193.141,89.369,124.198z"/>
|
||||
<path style="opacity:0.9;fill:#2b3044;" d="M89.369,124.198c27.919-59.449,127.059-51.062,165.317-9.255
|
||||
c38.258,41.806,50.696,68.599,85.208,52.983c34.512-15.616,78.518-11.44,81.043,38.164s-37.913,108.263-102.09,125.615
|
||||
c-64.177,17.352-64.161,78.759-149.1,66.368c-46.31-6.756-47.365-56.86-40.825-98.301
|
||||
C135.462,258.331,56.991,193.141,89.369,124.198z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shadow_1_">
|
||||
<ellipse id="_x3C_Path_x3E__359_" style="fill:#2b3044;" cx="250" cy="416.238" rx="193.889" ry="11.323"/>
|
||||
</g>
|
||||
<g id="Interface">
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M321.955,378.128H143.035c-4.04,0-7.316-3.275-7.316-7.316V160.14c0-4.04,3.275-7.316,7.316-7.316
|
||||
h178.919c4.04,0,7.316,3.275,7.316,7.316v210.672C329.271,374.852,325.995,378.128,321.955,378.128z"/>
|
||||
<path style="opacity:0.6;fill:#FFFFFF;enable-background:new ;" d="M321.955,378.128H143.035c-4.04,0-7.316-3.275-7.316-7.316
|
||||
V160.14c0-4.04,3.275-7.316,7.316-7.316h178.919c4.04,0,7.316,3.275,7.316,7.316v210.672
|
||||
C329.271,374.852,325.995,378.128,321.955,378.128z"/>
|
||||
<g>
|
||||
<rect x="167.077" y="256.147" style="fill:#FFFFFF;" width="130.837" height="22.403"/>
|
||||
<g style="opacity:0.4;">
|
||||
<path style="fill:#263238;" d="M178.776,269.528v0.587h-4.54v-6.42h4.402v0.587h-3.723v2.284h3.32v0.577h-3.32v2.385H178.776z"
|
||||
/>
|
||||
<path style="fill:#263238;" d="M179.694,267.346h2.403v0.568h-2.403V267.346z"/>
|
||||
<path style="fill:#263238;" d="M191.515,267.318v2.797h-0.651v-2.733c0-1.018-0.514-1.54-1.385-1.54
|
||||
c-0.99,0-1.614,0.642-1.614,1.742v2.531h-0.651v-2.733c0-1.018-0.514-1.54-1.394-1.54c-0.981,0-1.614,0.642-1.614,1.742v2.531
|
||||
h-0.651v-4.824h0.624v0.881c0.339-0.578,0.963-0.917,1.77-0.917c0.798,0,1.421,0.339,1.715,1.018
|
||||
c0.349-0.623,1.037-1.018,1.908-1.018C190.745,265.255,191.515,265.934,191.515,267.318z"/>
|
||||
<path style="fill:#263238;" d="M196.926,267.125v2.99h-0.624v-0.752c-0.293,0.495-0.862,0.798-1.66,0.798
|
||||
c-1.091,0-1.761-0.569-1.761-1.403c0-0.743,0.477-1.366,1.862-1.366h1.531v-0.294c0-0.825-0.468-1.274-1.366-1.274
|
||||
c-0.624,0-1.211,0.22-1.605,0.568l-0.293-0.486c0.486-0.412,1.201-0.65,1.962-0.65
|
||||
C196.22,265.255,196.926,265.878,196.926,267.125z M196.275,268.666v-0.789h-1.513c-0.936,0-1.238,0.367-1.238,0.862
|
||||
c0,0.56,0.449,0.908,1.22,0.908C195.477,269.647,196.018,269.299,196.275,268.666z"/>
|
||||
<path style="fill:#263238;" d="M198.55,263.769c0-0.247,0.211-0.458,0.477-0.458c0.266,0,0.477,0.202,0.477,0.449
|
||||
c0,0.266-0.202,0.477-0.477,0.477C198.761,264.236,198.55,264.025,198.55,263.769z M198.696,265.291h0.651v4.824h-0.651V265.291
|
||||
z"/>
|
||||
<path style="fill:#263238;" d="M201.163,263.31h0.651v6.805h-0.651V263.31z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="167.077" y="286.75" style="fill:#FFFFFF;" width="130.837" height="22.403"/>
|
||||
<g style="opacity:0.4;">
|
||||
<path style="fill:#263238;" d="M179.263,296.533c0,1.367-0.99,2.192-2.623,2.192h-1.724v2.026h-0.679v-6.419h2.403
|
||||
C178.273,294.333,179.263,295.158,179.263,296.533z M178.584,296.533c0-1.026-0.678-1.613-1.962-1.613h-1.706v3.209h1.706
|
||||
C177.906,298.129,178.584,297.542,178.584,296.533z"/>
|
||||
<path style="fill:#263238;" d="M184.188,297.763v2.989h-0.624V300c-0.294,0.495-0.862,0.798-1.66,0.798
|
||||
c-1.091,0-1.761-0.568-1.761-1.403c0-0.742,0.477-1.366,1.862-1.366h1.531v-0.294c0-0.825-0.468-1.274-1.366-1.274
|
||||
c-0.623,0-1.21,0.221-1.605,0.568l-0.293-0.485c0.486-0.413,1.201-0.651,1.962-0.651
|
||||
C183.481,295.892,184.188,296.516,184.188,297.763z M183.537,299.303v-0.788h-1.513c-0.936,0-1.238,0.366-1.238,0.861
|
||||
c0,0.559,0.449,0.908,1.22,0.908C182.739,300.284,183.28,299.935,183.537,299.303z"/>
|
||||
<path style="fill:#263238;" d="M185.289,300.202l0.293-0.514c0.385,0.303,1.037,0.541,1.715,0.541
|
||||
c0.917,0,1.293-0.313,1.293-0.789c0-1.256-3.127-0.266-3.127-2.173c0-0.789,0.679-1.376,1.908-1.376
|
||||
c0.623,0,1.302,0.174,1.706,0.449l-0.284,0.523c-0.422-0.293-0.926-0.412-1.421-0.412c-0.872,0-1.256,0.339-1.256,0.798
|
||||
c0,1.302,3.127,0.32,3.127,2.173c0,0.835-0.733,1.376-1.99,1.376C186.454,300.798,185.683,300.541,185.289,300.202z"/>
|
||||
<path style="fill:#263238;" d="M189.773,300.202l0.294-0.514c0.385,0.303,1.037,0.541,1.715,0.541
|
||||
c0.917,0,1.294-0.313,1.294-0.789c0-1.256-3.127-0.266-3.127-2.173c0-0.789,0.679-1.376,1.908-1.376
|
||||
c0.624,0,1.302,0.174,1.706,0.449l-0.284,0.523c-0.422-0.293-0.926-0.412-1.421-0.412c-0.872,0-1.256,0.339-1.256,0.798
|
||||
c0,1.302,3.127,0.32,3.127,2.173c0,0.835-0.733,1.376-1.99,1.376C190.938,300.798,190.167,300.541,189.773,300.202z"/>
|
||||
<path style="fill:#263238;" d="M201.915,295.929l-1.825,4.823h-0.614l-1.523-3.952l-1.522,3.952h-0.614l-1.816-4.823h0.623
|
||||
l1.513,4.099l1.55-4.099h0.56l1.54,4.099l1.532-4.099H201.915z"/>
|
||||
<path style="fill:#263238;" d="M202.273,298.34c0-1.431,1.045-2.448,2.458-2.448c1.413,0,2.449,1.018,2.449,2.448
|
||||
c0,1.431-1.036,2.458-2.449,2.458C203.319,300.798,202.273,299.771,202.273,298.34z M206.52,298.34
|
||||
c0-1.128-0.761-1.88-1.788-1.88c-1.027,0-1.797,0.752-1.797,1.88c0,1.128,0.771,1.88,1.797,1.88
|
||||
C205.758,300.22,206.52,299.468,206.52,298.34z"/>
|
||||
<path style="fill:#263238;" d="M210.94,295.892v0.633c-0.055,0-0.11-0.009-0.156-0.009c-1.009,0-1.623,0.642-1.623,1.778v2.458
|
||||
h-0.651v-4.823h0.624v0.944C209.436,296.23,210.051,295.892,210.94,295.892z"/>
|
||||
<path style="fill:#263238;" d="M216.47,293.947v6.805h-0.624v-0.954c-0.394,0.651-1.063,1-1.861,1c-1.376,0-2.403-1-2.403-2.458
|
||||
c0-1.458,1.027-2.448,2.403-2.448c0.77,0,1.431,0.33,1.834,0.954v-2.898H216.47z M215.829,298.34c0-1.128-0.77-1.88-1.789-1.88
|
||||
c-1.027,0-1.797,0.752-1.797,1.88c0,1.128,0.77,1.88,1.797,1.88C215.058,300.22,215.829,299.468,215.829,298.34z"/>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="167.077" y="332.003" style="opacity:0.2;" width="130.837" height="22.403"/>
|
||||
<g style="opacity:0.5;">
|
||||
<path d="M198.896,321.707h-2.136l-0.46,1.024h-0.422l1.753-3.835h0.4l1.753,3.835h-0.427L198.896,321.707z M198.749,321.378
|
||||
l-0.92-2.06l-0.92,2.06H198.749z"/>
|
||||
<path d="M200.34,318.667h0.389v4.064h-0.389V318.667z"/>
|
||||
<path d="M203.266,319.828v0.378c-0.033,0-0.066-0.006-0.093-0.006c-0.603,0-0.97,0.384-0.97,1.064v1.468h-0.389v-2.882h0.372
|
||||
v0.564C202.368,320.031,202.734,319.828,203.266,319.828z"/>
|
||||
<path d="M206.45,321.411h-2.41c0.044,0.603,0.504,1.003,1.134,1.003c0.351,0,0.663-0.126,0.882-0.378l0.219,0.252
|
||||
c-0.257,0.307-0.657,0.471-1.112,0.471c-0.898,0-1.512-0.613-1.512-1.468c0-0.854,0.597-1.463,1.408-1.463
|
||||
c0.811,0,1.397,0.597,1.397,1.463C206.456,321.323,206.45,321.367,206.45,321.411z M204.04,321.121h2.043
|
||||
c-0.049-0.564-0.46-0.959-1.024-0.959C204.5,320.162,204.089,320.557,204.04,321.121z"/>
|
||||
<path d="M209.345,320.945v1.786h-0.372v-0.449c-0.175,0.296-0.515,0.477-0.992,0.477c-0.652,0-1.052-0.34-1.052-0.838
|
||||
c0-0.444,0.285-0.816,1.112-0.816h0.915v-0.175c0-0.493-0.279-0.762-0.816-0.762c-0.373,0-0.723,0.131-0.959,0.34l-0.175-0.291
|
||||
c0.29-0.246,0.718-0.389,1.172-0.389C208.923,319.828,209.345,320.2,209.345,320.945z M208.956,321.866v-0.472h-0.904
|
||||
c-0.559,0-0.74,0.22-0.74,0.516c0,0.334,0.269,0.542,0.729,0.542C208.479,322.452,208.802,322.244,208.956,321.866z"/>
|
||||
<path d="M213.044,318.667v4.064h-0.372v-0.569c-0.236,0.389-0.636,0.597-1.112,0.597c-0.821,0-1.435-0.597-1.435-1.468
|
||||
c0-0.871,0.614-1.463,1.435-1.463c0.46,0,0.854,0.197,1.096,0.569v-1.73H213.044z M212.661,321.291
|
||||
c0-0.674-0.46-1.123-1.068-1.123c-0.614,0-1.074,0.449-1.074,1.123c0,0.674,0.46,1.123,1.074,1.123
|
||||
C212.201,322.414,212.661,321.965,212.661,321.291z"/>
|
||||
<path d="M216.553,319.85l-1.44,3.227c-0.241,0.564-0.548,0.745-0.959,0.745c-0.268,0-0.526-0.087-0.701-0.263l0.181-0.29
|
||||
c0.142,0.143,0.317,0.219,0.526,0.219c0.257,0,0.433-0.12,0.597-0.482l0.126-0.279l-1.288-2.876H214l1.085,2.449l1.084-2.449
|
||||
H216.553z"/>
|
||||
<path d="M220.714,320.945v1.786h-0.373v-0.449c-0.175,0.296-0.515,0.477-0.992,0.477c-0.652,0-1.052-0.34-1.052-0.838
|
||||
c0-0.444,0.285-0.816,1.112-0.816h0.915v-0.175c0-0.493-0.279-0.762-0.816-0.762c-0.373,0-0.723,0.131-0.958,0.34l-0.175-0.291
|
||||
c0.29-0.246,0.718-0.389,1.172-0.389C220.292,319.828,220.714,320.2,220.714,320.945z M220.325,321.866v-0.472h-0.904
|
||||
c-0.559,0-0.74,0.22-0.74,0.516c0,0.334,0.269,0.542,0.729,0.542C219.848,322.452,220.171,322.244,220.325,321.866z"/>
|
||||
<path d="M227.964,321.06v1.671h-0.389v-1.633c0-0.607-0.307-0.92-0.827-0.92c-0.592,0-0.964,0.384-0.964,1.041v1.512h-0.389
|
||||
v-1.633c0-0.607-0.307-0.92-0.833-0.92c-0.586,0-0.964,0.384-0.964,1.041v1.512h-0.389v-2.882h0.372v0.526
|
||||
c0.203-0.345,0.575-0.548,1.057-0.548c0.477,0,0.849,0.203,1.024,0.608c0.208-0.373,0.619-0.608,1.139-0.608
|
||||
C227.504,319.828,227.964,320.233,227.964,321.06z"/>
|
||||
<path d="M231.545,321.411h-2.41c0.043,0.603,0.504,1.003,1.134,1.003c0.35,0,0.663-0.126,0.882-0.378l0.219,0.252
|
||||
c-0.257,0.307-0.657,0.471-1.112,0.471c-0.898,0-1.512-0.613-1.512-1.468c0-0.854,0.597-1.463,1.408-1.463
|
||||
c0.811,0,1.397,0.597,1.397,1.463C231.55,321.323,231.545,321.367,231.545,321.411z M229.135,321.121h2.043
|
||||
c-0.049-0.564-0.46-0.959-1.024-0.959C229.595,320.162,229.184,320.557,229.135,321.121z"/>
|
||||
<path d="M237.102,321.06v1.671h-0.389v-1.633c0-0.607-0.307-0.92-0.827-0.92c-0.592,0-0.964,0.384-0.964,1.041v1.512h-0.389
|
||||
v-1.633c0-0.607-0.307-0.92-0.833-0.92c-0.586,0-0.964,0.384-0.964,1.041v1.512h-0.389v-2.882h0.372v0.526
|
||||
c0.203-0.345,0.575-0.548,1.057-0.548c0.477,0,0.849,0.203,1.024,0.608c0.208-0.373,0.619-0.608,1.139-0.608
|
||||
C236.642,319.828,237.102,320.233,237.102,321.06z"/>
|
||||
<path d="M241.083,321.291c0,0.871-0.613,1.468-1.435,1.468c-0.477,0-0.877-0.208-1.112-0.597v0.569h-0.372v-4.064h0.389v1.73
|
||||
c0.241-0.372,0.636-0.569,1.096-0.569C240.469,319.828,241.083,320.42,241.083,321.291z M240.694,321.291
|
||||
c0-0.674-0.466-1.123-1.074-1.123c-0.614,0-1.074,0.449-1.074,1.123c0,0.674,0.46,1.123,1.074,1.123
|
||||
C240.228,322.414,240.694,321.965,240.694,321.291z"/>
|
||||
<path d="M244.389,321.411h-2.41c0.044,0.603,0.504,1.003,1.134,1.003c0.351,0,0.663-0.126,0.882-0.378l0.219,0.252
|
||||
c-0.257,0.307-0.657,0.471-1.112,0.471c-0.898,0-1.512-0.613-1.512-1.468c0-0.854,0.597-1.463,1.408-1.463
|
||||
c0.811,0,1.397,0.597,1.397,1.463C244.394,321.323,244.389,321.367,244.389,321.411z M241.979,321.121h2.043
|
||||
c-0.049-0.564-0.46-0.959-1.024-0.959C242.439,320.162,242.028,320.557,241.979,321.121z"/>
|
||||
<path d="M246.642,319.828v0.378c-0.033,0-0.066-0.006-0.093-0.006c-0.602,0-0.97,0.384-0.97,1.064v1.468h-0.389v-2.882h0.373
|
||||
v0.564C245.744,320.031,246.11,319.828,246.642,319.828z"/>
|
||||
<path d="M249.163,319.878c0-0.395-0.323-0.669-0.882-0.669c-0.465,0-0.805,0.153-1.046,0.444l-0.29-0.22
|
||||
c0.296-0.361,0.751-0.569,1.364-0.569c0.767,0,1.26,0.367,1.26,0.953c0,0.936-1.002,0.98-1.002,1.764h-0.406
|
||||
C248.161,320.677,249.163,320.595,249.163,319.878z M248.079,322.474c0-0.158,0.126-0.279,0.285-0.279
|
||||
c0.165,0,0.29,0.121,0.29,0.279c0,0.153-0.126,0.285-0.29,0.285C248.205,322.759,248.079,322.627,248.079,322.474z"/>
|
||||
<path d="M251.872,318.897h0.888v3.112h1.922v0.723h-2.81V318.897z"/>
|
||||
<path d="M254.882,321.258c0-0.888,0.685-1.518,1.622-1.518c0.937,0,1.616,0.63,1.616,1.518c0,0.888-0.679,1.518-1.616,1.518
|
||||
C255.566,322.775,254.882,322.146,254.882,321.258z M257.254,321.258c0-0.51-0.323-0.816-0.751-0.816
|
||||
c-0.427,0-0.756,0.307-0.756,0.816c0,0.51,0.329,0.816,0.756,0.816C256.931,322.074,257.254,321.768,257.254,321.258z"/>
|
||||
<path d="M261.732,319.784v2.454c0,1.096-0.591,1.6-1.654,1.6c-0.559,0-1.101-0.137-1.446-0.405l0.34-0.613
|
||||
c0.252,0.202,0.663,0.334,1.04,0.334c0.603,0,0.866-0.274,0.866-0.806v-0.126c-0.225,0.247-0.548,0.367-0.931,0.367
|
||||
c-0.816,0-1.474-0.564-1.474-1.424c0-0.86,0.657-1.425,1.474-1.425c0.411,0,0.751,0.138,0.975,0.422v-0.378H261.732z
|
||||
M260.888,321.165c0-0.433-0.323-0.724-0.772-0.724c-0.449,0-0.778,0.291-0.778,0.724c0,0.433,0.329,0.723,0.778,0.723
|
||||
C260.565,321.888,260.888,321.598,260.888,321.165z"/>
|
||||
<path d="M263.976,318.897c0-0.268,0.213-0.477,0.531-0.477c0.318,0,0.531,0.197,0.531,0.461c0,0.284-0.213,0.492-0.531,0.492
|
||||
C264.19,319.373,263.976,319.165,263.976,318.897z M264.08,319.784h0.854v2.947h-0.854V319.784z"/>
|
||||
<path d="M268.743,321.044v1.688h-0.854v-1.556c0-0.477-0.219-0.695-0.597-0.695c-0.411,0-0.706,0.252-0.706,0.794v1.457h-0.854
|
||||
v-2.947h0.816v0.346c0.23-0.252,0.575-0.39,0.975-0.39C268.217,319.74,268.743,320.146,268.743,321.044z"/>
|
||||
</g>
|
||||
<rect x="167.077" y="330.632" style="fill:#0d9394;" width="130.837" height="22.403"/>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M215.602,345.314l-1.654-2.355c-0.154,0.011-0.318,0.021-0.482,0.021h-1.895v2.334h-1.096v-7.669
|
||||
h2.991c1.994,0,3.199,1.008,3.199,2.673c0,1.184-0.613,2.038-1.687,2.422l1.818,2.574H215.602z M215.569,340.317
|
||||
c0-1.096-0.734-1.72-2.136-1.72h-1.862v3.451h1.862C214.835,342.049,215.569,341.413,215.569,340.317z"/>
|
||||
<path style="fill:#FFFFFF;" d="M223.518,342.761h-4.711c0.132,1.019,0.953,1.698,2.104,1.698c0.679,0,1.249-0.231,1.676-0.701
|
||||
l0.581,0.679c-0.526,0.614-1.326,0.942-2.29,0.942c-1.874,0-3.123-1.237-3.123-2.969c0-1.72,1.238-2.958,2.915-2.958
|
||||
c1.676,0,2.87,1.205,2.87,2.991C223.539,342.53,223.528,342.662,223.518,342.761z M218.806,342.005h3.725
|
||||
c-0.109-0.976-0.844-1.665-1.862-1.665C219.661,340.34,218.916,341.019,218.806,342.005z"/>
|
||||
<path style="fill:#FFFFFF;" d="M230.556,339.507v5.018c0,2.049-1.041,2.98-3.013,2.98c-1.063,0-2.136-0.296-2.771-0.866
|
||||
l0.504-0.811c0.537,0.46,1.38,0.756,2.235,0.756c1.37,0,1.994-0.635,1.994-1.95v-0.46c-0.504,0.603-1.26,0.898-2.093,0.898
|
||||
c-1.676,0-2.947-1.14-2.947-2.815c0-1.676,1.271-2.805,2.947-2.805c0.866,0,1.654,0.317,2.147,0.953v-0.898H230.556z
|
||||
M229.525,342.257c0-1.129-0.833-1.885-1.994-1.885c-1.172,0-2.005,0.756-2.005,1.885c0,1.117,0.833,1.896,2.005,1.896
|
||||
C228.693,344.152,229.525,343.374,229.525,342.257z"/>
|
||||
<path style="fill:#FFFFFF;" d="M232.379,337.71c0-0.383,0.307-0.69,0.712-0.69c0.405,0,0.712,0.296,0.712,0.669
|
||||
c0,0.395-0.296,0.701-0.712,0.701C232.686,338.39,232.379,338.094,232.379,337.71z M232.565,339.507h1.052v5.807h-1.052V339.507z
|
||||
"/>
|
||||
<path style="fill:#FFFFFF;" d="M234.891,344.7l0.438-0.833c0.493,0.351,1.282,0.603,2.038,0.603c0.975,0,1.381-0.296,1.381-0.789
|
||||
c0-1.304-3.67-0.175-3.67-2.486c0-1.041,0.931-1.742,2.421-1.742c0.756,0,1.61,0.197,2.114,0.525l-0.449,0.833
|
||||
c-0.526-0.34-1.107-0.46-1.676-0.46c-0.92,0-1.37,0.34-1.37,0.8c0,1.369,3.682,0.252,3.682,2.509c0,1.052-0.964,1.72-2.509,1.72
|
||||
C236.326,345.379,235.373,345.083,234.891,344.7z"/>
|
||||
<path style="fill:#FFFFFF;" d="M244.381,344.974c-0.318,0.274-0.8,0.405-1.271,0.405c-1.172,0-1.84-0.647-1.84-1.818v-3.188
|
||||
h-0.986v-0.865h0.986v-1.271h1.052v1.271h1.665v0.865h-1.665v3.145c0,0.625,0.329,0.976,0.909,0.976
|
||||
c0.307,0,0.602-0.099,0.822-0.274L244.381,344.974z"/>
|
||||
<path style="fill:#FFFFFF;" d="M250.685,342.761h-4.712c0.132,1.019,0.953,1.698,2.104,1.698c0.679,0,1.249-0.231,1.676-0.701
|
||||
l0.581,0.679c-0.526,0.614-1.326,0.942-2.29,0.942c-1.874,0-3.122-1.237-3.122-2.969c0-1.72,1.238-2.958,2.915-2.958
|
||||
c1.676,0,2.87,1.205,2.87,2.991C250.706,342.53,250.695,342.662,250.685,342.761z M245.973,342.005h3.725
|
||||
c-0.109-0.976-0.844-1.665-1.862-1.665C246.828,340.34,246.083,341.019,245.973,342.005z"/>
|
||||
<path style="fill:#FFFFFF;" d="M255.29,339.452v1.019c-0.087-0.011-0.164-0.011-0.241-0.011c-1.128,0-1.83,0.69-1.83,1.961v2.893
|
||||
h-1.052v-5.807h1.008v0.976C253.548,339.803,254.271,339.452,255.29,339.452z"/>
|
||||
</g>
|
||||
<g style="opacity:0.6;">
|
||||
<path style="fill:#263238;" d="M209.593,177.608l0.444-0.936c0.624,0.564,1.691,0.972,2.771,0.972
|
||||
c1.451,0,2.075-0.564,2.075-1.295c0-2.051-5.085-0.755-5.085-3.874c0-1.295,1.007-2.398,3.214-2.398
|
||||
c0.983,0,2.003,0.264,2.699,0.744l-0.396,0.96c-0.731-0.468-1.559-0.684-2.303-0.684c-1.427,0-2.038,0.6-2.038,1.331
|
||||
c0,2.051,5.085,0.768,5.085,3.85c0,1.283-1.031,2.387-3.25,2.387C211.524,178.664,210.265,178.232,209.593,177.608z"/>
|
||||
<path style="fill:#263238;" d="M217.441,170.245c0-0.42,0.335-0.756,0.779-0.756c0.444,0,0.78,0.324,0.78,0.732
|
||||
c0,0.432-0.324,0.768-0.78,0.768C217.776,170.988,217.441,170.664,217.441,170.245z M217.645,172.211h1.151v6.357h-1.151V172.211
|
||||
z"/>
|
||||
<path style="fill:#263238;" d="M227.073,172.211v5.493c0,2.243-1.139,3.263-3.298,3.263c-1.164,0-2.339-0.324-3.035-0.948
|
||||
l0.552-0.888c0.588,0.504,1.511,0.828,2.447,0.828c1.499,0,2.183-0.695,2.183-2.135v-0.504c-0.551,0.66-1.379,0.984-2.291,0.984
|
||||
c-1.835,0-3.226-1.248-3.226-3.083c0-1.835,1.391-3.07,3.226-3.07c0.947,0,1.811,0.348,2.351,1.043v-0.983H227.073z
|
||||
M225.946,175.222c0-1.235-0.911-2.063-2.183-2.063c-1.283,0-2.195,0.828-2.195,2.063c0,1.223,0.912,2.075,2.195,2.075
|
||||
C225.035,177.296,225.946,176.445,225.946,175.222z"/>
|
||||
<path style="fill:#263238;" d="M235.305,174.91v3.658h-1.151v-3.526c0-1.248-0.623-1.859-1.715-1.859
|
||||
c-1.224,0-2.015,0.732-2.015,2.111v3.274h-1.151v-6.357h1.104v0.96c0.468-0.647,1.283-1.02,2.29-1.02
|
||||
C234.214,172.151,235.305,173.039,235.305,174.91z"/>
|
||||
<path style="fill:#263238;" d="M246.597,172.211v6.357h-1.091v-0.96c-0.468,0.66-1.259,1.031-2.159,1.031
|
||||
c-1.643,0-2.735-0.899-2.735-2.771v-3.658h1.151v3.526c0,1.248,0.624,1.871,1.715,1.871c1.199,0,1.967-0.744,1.967-2.111v-3.286
|
||||
H246.597z"/>
|
||||
<path style="fill:#263238;" d="M255.381,175.39c0,1.955-1.355,3.25-3.214,3.25c-0.899,0-1.691-0.348-2.219-1.031v3.286h-1.151
|
||||
v-8.683h1.104v1.007c0.516-0.708,1.331-1.067,2.267-1.067C254.025,172.151,255.381,173.447,255.381,175.39z M254.217,175.39
|
||||
c0-1.343-0.923-2.231-2.146-2.231c-1.211,0-2.135,0.888-2.135,2.231c0,1.355,0.923,2.243,2.135,2.243
|
||||
C253.294,177.632,254.217,176.745,254.217,175.39z"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="167.077" y="225.544" style="fill:#FFFFFF;" width="130.837" height="22.403"/>
|
||||
<g style="opacity:0.4;">
|
||||
<path style="fill:#263238;" d="M174.237,233.093h0.679v5.832h3.595v0.587h-4.273V233.093z"/>
|
||||
<path style="fill:#263238;" d="M183.16,236.523v2.989h-0.624v-0.752c-0.293,0.495-0.862,0.798-1.66,0.798
|
||||
c-1.091,0-1.761-0.568-1.761-1.403c0-0.742,0.477-1.366,1.862-1.366h1.531v-0.293c0-0.825-0.468-1.275-1.366-1.275
|
||||
c-0.624,0-1.211,0.221-1.605,0.569l-0.294-0.486c0.486-0.413,1.201-0.651,1.962-0.651
|
||||
C182.454,234.651,183.16,235.275,183.16,236.523z M182.509,238.064v-0.789h-1.513c-0.936,0-1.238,0.367-1.238,0.862
|
||||
c0,0.559,0.449,0.907,1.22,0.907C181.711,239.044,182.252,238.695,182.509,238.064z"/>
|
||||
<path style="fill:#263238;" d="M184.261,238.962l0.294-0.514c0.385,0.303,1.037,0.541,1.715,0.541
|
||||
c0.917,0,1.294-0.312,1.294-0.789c0-1.256-3.127-0.266-3.127-2.173c0-0.789,0.679-1.376,1.908-1.376
|
||||
c0.623,0,1.302,0.175,1.705,0.449l-0.284,0.523c-0.422-0.294-0.926-0.413-1.421-0.413c-0.872,0-1.256,0.339-1.256,0.798
|
||||
c0,1.302,3.127,0.321,3.127,2.174c0,0.834-0.733,1.375-1.99,1.375C185.426,239.558,184.655,239.301,184.261,238.962z"/>
|
||||
<path style="fill:#263238;" d="M191.956,239.219c-0.257,0.229-0.642,0.339-1.018,0.339c-0.908,0-1.412-0.514-1.412-1.403v-2.916
|
||||
h-0.862v-0.55h0.862v-1.055h0.651v1.055h1.467v0.55h-1.467v2.88c0,0.568,0.293,0.88,0.834,0.88c0.266,0,0.532-0.082,0.715-0.247
|
||||
L191.956,239.219z"/>
|
||||
<path style="fill:#263238;" d="M201.044,233.093v6.419h-0.56l-4.126-5.209v5.209h-0.679v-6.419h0.56l4.136,5.209v-5.209H201.044
|
||||
z"/>
|
||||
<path style="fill:#263238;" d="M206.638,236.523v2.989h-0.623v-0.752c-0.294,0.495-0.862,0.798-1.66,0.798
|
||||
c-1.091,0-1.761-0.568-1.761-1.403c0-0.742,0.477-1.366,1.862-1.366h1.531v-0.293c0-0.825-0.468-1.275-1.366-1.275
|
||||
c-0.624,0-1.21,0.221-1.605,0.569l-0.293-0.486c0.486-0.413,1.201-0.651,1.962-0.651
|
||||
C205.932,234.651,206.638,235.275,206.638,236.523z M205.987,238.064v-0.789h-1.513c-0.936,0-1.238,0.367-1.238,0.862
|
||||
c0,0.559,0.449,0.907,1.22,0.907C205.189,239.044,205.73,238.695,205.987,238.064z"/>
|
||||
<path style="fill:#263238;" d="M216.368,236.715v2.797h-0.651v-2.732c0-1.019-0.514-1.541-1.385-1.541
|
||||
c-0.99,0-1.614,0.643-1.614,1.742v2.531h-0.651v-2.732c0-1.019-0.514-1.541-1.394-1.541c-0.981,0-1.614,0.643-1.614,1.742v2.531
|
||||
h-0.651v-4.823h0.623v0.88c0.339-0.577,0.963-0.917,1.77-0.917c0.798,0,1.421,0.34,1.715,1.019
|
||||
c0.349-0.624,1.037-1.019,1.908-1.019C215.598,234.651,216.368,235.33,216.368,236.715z"/>
|
||||
<path style="fill:#263238;" d="M222.357,237.302h-4.035c0.074,1.009,0.844,1.679,1.898,1.679c0.587,0,1.11-0.211,1.477-0.633
|
||||
l0.367,0.422c-0.431,0.513-1.101,0.788-1.861,0.788c-1.504,0-2.531-1.027-2.531-2.457c0-1.431,0.999-2.449,2.357-2.449
|
||||
c1.357,0,2.338,1,2.338,2.449C222.367,237.155,222.357,237.229,222.357,237.302z M218.322,236.815h3.421
|
||||
c-0.083-0.944-0.77-1.604-1.715-1.604C219.093,235.211,218.405,235.871,218.322,236.815z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="167.077" y="194.941" style="fill:#FFFFFF;" width="130.837" height="22.403"/>
|
||||
<g style="opacity:0.4;">
|
||||
<path style="fill:#263238;" d="M174.915,203.076v2.522h3.32v0.587h-3.32v2.724h-0.679v-6.419h4.402v0.587H174.915z"/>
|
||||
<path style="fill:#263238;" d="M179.667,202.563c0-0.248,0.211-0.458,0.477-0.458c0.266,0,0.477,0.202,0.477,0.45
|
||||
c0,0.266-0.202,0.477-0.477,0.477C179.877,203.03,179.667,202.819,179.667,202.563z M179.813,204.085h0.651v4.824h-0.651
|
||||
V204.085z"/>
|
||||
<path style="fill:#263238;" d="M184.71,204.048v0.633c-0.055,0-0.11-0.009-0.156-0.009c-1.009,0-1.623,0.642-1.623,1.779v2.458
|
||||
h-0.651v-4.824h0.624v0.945C183.206,204.388,183.821,204.048,184.71,204.048z"/>
|
||||
<path style="fill:#263238;" d="M185.251,208.358l0.293-0.514c0.385,0.303,1.037,0.541,1.715,0.541
|
||||
c0.917,0,1.293-0.311,1.293-0.788c0-1.256-3.127-0.266-3.127-2.173c0-0.788,0.679-1.376,1.908-1.376
|
||||
c0.624,0,1.302,0.174,1.706,0.449l-0.284,0.523c-0.422-0.293-0.926-0.413-1.421-0.413c-0.872,0-1.256,0.339-1.256,0.798
|
||||
c0,1.302,3.127,0.321,3.127,2.173c0,0.835-0.733,1.376-1.99,1.376C186.417,208.955,185.646,208.698,185.251,208.358z"/>
|
||||
<path style="fill:#263238;" d="M192.946,208.615c-0.257,0.229-0.642,0.339-1.018,0.339c-0.908,0-1.412-0.514-1.412-1.403v-2.916
|
||||
h-0.862v-0.55h0.862v-1.055h0.651v1.055h1.467v0.55h-1.467v2.879c0,0.569,0.294,0.88,0.835,0.88
|
||||
c0.266,0,0.532-0.083,0.715-0.247L192.946,208.615z"/>
|
||||
<path style="fill:#263238;" d="M202.034,202.489v6.419h-0.56l-4.126-5.209v5.209h-0.679v-6.419h0.56l4.136,5.209v-5.209H202.034
|
||||
z"/>
|
||||
<path style="fill:#263238;" d="M207.629,205.919v2.99h-0.624v-0.752c-0.294,0.495-0.862,0.798-1.66,0.798
|
||||
c-1.091,0-1.761-0.569-1.761-1.403c0-0.743,0.477-1.366,1.862-1.366h1.531v-0.294c0-0.825-0.468-1.275-1.366-1.275
|
||||
c-0.624,0-1.211,0.22-1.605,0.569l-0.293-0.486c0.486-0.413,1.201-0.651,1.962-0.651
|
||||
C206.922,204.048,207.629,204.672,207.629,205.919z M206.977,207.46v-0.789h-1.513c-0.936,0-1.238,0.367-1.238,0.862
|
||||
c0,0.559,0.449,0.908,1.22,0.908C206.18,208.441,206.721,208.092,206.977,207.46z"/>
|
||||
<path style="fill:#263238;" d="M217.358,206.112v2.797h-0.651v-2.733c0-1.018-0.514-1.54-1.385-1.54
|
||||
c-0.99,0-1.614,0.642-1.614,1.742v2.531h-0.651v-2.733c0-1.018-0.514-1.54-1.394-1.54c-0.981,0-1.614,0.642-1.614,1.742v2.531
|
||||
h-0.651v-4.824h0.624v0.88c0.339-0.578,0.963-0.917,1.77-0.917c0.798,0,1.421,0.339,1.715,1.018
|
||||
c0.349-0.624,1.037-1.018,1.908-1.018C216.588,204.048,217.358,204.727,217.358,206.112z"/>
|
||||
<path style="fill:#263238;" d="M223.348,206.699h-4.035c0.074,1.009,0.844,1.678,1.898,1.678c0.587,0,1.11-0.211,1.477-0.633
|
||||
l0.367,0.422c-0.431,0.513-1.101,0.789-1.861,0.789c-1.504,0-2.531-1.027-2.531-2.458c0-1.431,0.999-2.449,2.357-2.449
|
||||
c1.357,0,2.338,1,2.338,2.449C223.357,206.552,223.348,206.625,223.348,206.699z M219.313,206.212h3.421
|
||||
c-0.083-0.944-0.77-1.605-1.715-1.605C220.083,204.608,219.395,205.268,219.313,206.212z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Plant">
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M136.442,345.55c0,0-6.62-5.519-12.296,0
|
||||
c-5.676,5.519-6.772,39.711-6.772,39.711"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M116.904,391.863
|
||||
c0,0,3.902-40.126-10.79-56.989"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M118.302,387.634
|
||||
c0,0-3.005-45.68,8.014-55.815"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M116.904,387.634
|
||||
c0,0-0.256-30.185-8.445-34.878c-8.189-4.692-12.363,10.612-12.363,10.612"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M120.139,387.634
|
||||
c0,0-1.336-23.173,5.009-31.455c6.344-8.282,13.023,3.548,13.023,3.548"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M117.928,390.738
|
||||
c0,0,4.103-54.194-2.687-63.377"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M101.447,357.154c0,0,4.083,1.505,2.869,5.059c-1.214,3.554-14.125,9.402-14.125,9.402
|
||||
s-5.407-4.956-0.441-13.017C94.716,350.538,101.337,354.611,101.447,357.154z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M101.447,357.154c0,0,4.083,1.505,2.869,5.059
|
||||
c-1.214,3.554-14.125,9.402-14.125,9.402s-5.407-4.956-0.441-13.017C94.716,350.538,101.337,354.611,101.447,357.154z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M119.197,350.389c0,0-4.348-0.182-4.595,3.565c-0.247,3.747,9.419,14.114,9.419,14.114
|
||||
s6.898-2.494,5.416-11.845C127.956,346.873,120.278,348.084,119.197,350.389z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M119.197,350.389c0,0-4.348-0.182-4.595,3.565
|
||||
c-0.247,3.747,9.419,14.114,9.419,14.114s6.898-2.494,5.416-11.845C127.956,346.873,120.278,348.084,119.197,350.389z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M122.878,332.452c0,0-2.899-0.311-2.665-2.077c0.233-1.766,11.269-6.31,17.779,1.038
|
||||
c0,0-4.169,7.161-10.195,7.255C121.771,338.762,122.878,332.452,122.878,332.452z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M122.878,332.452c0,0-2.899-0.311-2.665-2.077
|
||||
c0.233-1.766,11.269-6.31,17.779,1.038c0,0-4.169,7.161-10.195,7.255C121.771,338.762,122.878,332.452,122.878,332.452z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M117.477,328.164c0,0,2.625,1.269,3.36-0.353c0.736-1.622-6.226-11.315-15.638-8.522
|
||||
c0,0-0.249,8.283,4.816,11.549C115.079,334.105,117.477,328.164,117.477,328.164z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M117.477,328.164c0,0,2.625,1.269,3.36-0.353
|
||||
c0.736-1.622-6.226-11.315-15.638-8.522c0,0-0.249,8.283,4.816,11.549C115.079,334.105,117.477,328.164,117.477,328.164z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M131.201,355.725c0,0-2.001-1.615,0.158-2.404c2.159-0.788,12.753-0.564,12.863,9.93
|
||||
c0,0-12.338,2.05-13.866-1.947C128.83,357.307,131.201,355.725,131.201,355.725z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M131.201,355.725c0,0-2.001-1.615,0.158-2.404
|
||||
c2.159-0.788,12.753-0.564,12.863,9.93c0,0-12.338,2.05-13.866-1.947C128.83,357.307,131.201,355.725,131.201,355.725z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M106.041,332.189c0,0,2.001-1.615-0.158-2.404c-2.159-0.789-12.753-0.565-12.863,9.929
|
||||
c0,0,12.338,2.051,13.866-1.947C108.412,333.771,106.041,332.189,106.041,332.189z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M106.041,332.189c0,0,2.001-1.615-0.158-2.404
|
||||
c-2.159-0.789-12.753-0.565-12.863,9.929c0,0,12.338,2.051,13.866-1.947C108.412,333.771,106.041,332.189,106.041,332.189z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M112.564,340.642c0,0,0.176-1.964-1.409-1.194c-1.585,0.77-7.108,6.728-1.383,12.382
|
||||
c0,0,7.706-5.707,6.317-8.679C114.699,340.178,112.564,340.642,112.564,340.642z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M112.564,340.642c0,0,0.176-1.964-1.409-1.194
|
||||
c-1.585,0.77-7.108,6.728-1.383,12.382c0,0,7.706-5.707,6.317-8.679C114.699,340.178,112.564,340.642,112.564,340.642z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M132.99,343.441c0,0-1.196-1.567,0.556-1.761c1.751-0.194,9.601,1.901,7.773,9.736
|
||||
c0,0-9.563-0.719-9.972-3.974C130.936,344.187,132.99,343.441,132.99,343.441z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M132.99,343.441c0,0-1.196-1.567,0.556-1.761
|
||||
c1.751-0.194,9.601,1.901,7.773,9.736c0,0-9.563-0.719-9.972-3.974C130.936,344.187,132.99,343.441,132.99,343.441z"/>
|
||||
</g>
|
||||
<polygon style="fill:#263238;" points="102.16,416.723 133.075,416.723 137.184,386.661 98.051,386.661 "/>
|
||||
<polygon style="opacity:0.2;fill:#FFFFFF;enable-background:new ;" points="102.16,416.723 133.075,416.723 137.184,386.661
|
||||
98.051,386.661 "/>
|
||||
<path style="fill:#263238;" d="M141.059,384.224v2.856c0,1.911-1.549,3.461-3.461,3.461H97.25c-1.911,0-3.461-1.549-3.461-3.461
|
||||
v-2.856H141.059z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Speech_bubble">
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M398.621,99.306h-28.728c-4.886,0-8.846,3.961-8.846,8.846v25.002
|
||||
c0,4.885,3.961,8.846,8.846,8.846h8.388l-2.028,7.894L384.23,142h14.391c4.885,0,8.846-3.96,8.846-8.846v-25.002
|
||||
C407.467,103.267,403.507,99.306,398.621,99.306z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M398.621,99.306h-28.728c-4.886,0-8.846,3.961-8.846,8.846v25.002
|
||||
c0,4.885,3.961,8.846,8.846,8.846h8.388l-2.028,7.894L384.23,142h14.391c4.885,0,8.846-3.96,8.846-8.846v-25.002
|
||||
C407.467,103.267,403.507,99.306,398.621,99.306z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g style="enable-background:new ;">
|
||||
|
||||
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 27.3078 307.0175)" style="fill:#0d9394;" cx="384.257" cy="120.545" rx="14.258" ry="14.258"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M382.76,126.914c-0.385,0-0.75-0.169-0.999-0.462l-5.594-6.591
|
||||
c-0.468-0.552-0.4-1.378,0.151-1.847c0.551-0.467,1.378-0.401,1.847,0.151l4.595,5.414l7.588-8.94
|
||||
c0.469-0.553,1.296-0.619,1.847-0.151c0.552,0.468,0.62,1.295,0.151,1.847l-8.587,10.118
|
||||
C383.51,126.745,383.145,126.914,382.76,126.914z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Character">
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M393.644,253.557c0,0-17.415-2.192-43.791,5.039c0,0-4.246-47.138-3.74-53.613
|
||||
s40.723-4.579,40.723-4.579s1.038,18.866,3.626,30.249C393.05,242.035,394.97,251.368,393.644,253.557z"/>
|
||||
<path style="opacity:0.2;" d="M393.644,253.557c0,0-17.415-2.192-43.791,5.039c0,0-4.246-47.138-3.74-53.613
|
||||
s40.723-4.579,40.723-4.579s1.038,18.866,3.626,30.249C393.05,242.035,394.97,251.368,393.644,253.557z"/>
|
||||
</g>
|
||||
<polygon style="fill:#E4897B;" points="337.128,409.621 344.228,411.631 345.918,400.581 346.828,394.671 339.728,392.661
|
||||
338.518,400.581 "/>
|
||||
<polygon style="fill:#E4897B;" points="377.948,410.201 385.268,411.171 385.338,400.581 385.388,394.001 378.058,393.041
|
||||
378.008,400.581 "/>
|
||||
<polygon style="opacity:0.2;" points="378.058,393.041 378.008,400.581 385.338,400.581 385.388,394.001 "/>
|
||||
<polygon style="opacity:0.2;" points="338.518,400.581 345.918,400.581 346.828,394.671 339.728,392.661 "/>
|
||||
<g>
|
||||
<path style="fill:#E4897B;" d="M305.608,208.81l-7.048-2.083l1.287,8.049c0,0,6.4,1.479,7.023-1.851L305.608,208.81z"/>
|
||||
<polygon style="fill:#E4897B;" points="291.525,208.596 294.981,215.141 299.847,214.775 298.56,206.727 "/>
|
||||
</g>
|
||||
<polygon style="fill:#E4897B;" points="315.34,210.867 303.765,208.276 302.713,213.898 313.222,216.461 "/>
|
||||
<path style="fill:#0d9394;" d="M350.373,205.794c0,0-0.25,0.3-0.68,0.81c-1.46,1.71-5.03,5.84-8.69,9.4
|
||||
c-3,2.9-6.04,5.43-8.02,5.94c-5.67,1.46-26.28-4.61-26.28-4.61l2.13-8.36c0,0,19.2,2.55,20.69,2.55
|
||||
c1.13,0,12.81-16.92,15.64-18.31L350.373,205.794z"/>
|
||||
<path style="opacity:0.2;" d="M349.693,206.604c-1.46,1.71-5.03,5.84-8.69,9.4c0.74-5.86,2.89-11.24,5.72-14.64
|
||||
c0.3-0.36,0.6-0.66,0.9-0.88L349.693,206.604z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M337.215,408.513l8.063-0.217c0.302-0.008,0.571,0.194,0.647,0.485l1.694,6.493
|
||||
c0.176,0.673-0.318,1.329-1.015,1.336c-2.91,0.029-7.119-0.027-10.775,0.071c-4.275,0.115-6.992-0.095-12.005,0.04
|
||||
c-3.031,0.082-3.982-2.946-2.723-3.256c5.731-1.413,9.477-1.134,14.358-4.332C335.988,408.786,336.578,408.53,337.215,408.513z"
|
||||
/>
|
||||
<path style="fill:#0d9394;" d="M336.525,409.548c-0.007,0.003-0.015,0.005-0.023,0.007c-1.18,0.268-3.286,0.615-4.122-0.077
|
||||
c-0.252-0.209-0.372-0.49-0.358-0.838c0.009-0.207,0.103-0.37,0.272-0.471c0.882-0.53,3.901,0.897,4.242,1.06
|
||||
c0.067,0.032,0.107,0.103,0.099,0.176C336.629,409.47,336.585,409.525,336.525,409.548z M332.538,408.439
|
||||
c-0.023,0.009-0.044,0.018-0.063,0.029c-0.069,0.041-0.1,0.097-0.104,0.189c-0.009,0.236,0.066,0.417,0.231,0.554
|
||||
c0.469,0.388,1.686,0.426,3.307,0.112C334.719,408.799,333.088,408.232,332.538,408.439z"/>
|
||||
<path style="fill:#0d9394;" d="M336.525,409.548c-0.041,0.016-0.087,0.016-0.129-0.002c-0.905-0.374-2.728-1.916-2.623-2.75
|
||||
c0.025-0.196,0.155-0.441,0.634-0.504c0.356-0.046,0.685,0.046,0.981,0.272c0.967,0.742,1.237,2.716,1.248,2.8
|
||||
c0.008,0.062-0.017,0.122-0.067,0.16C336.555,409.534,336.54,409.542,336.525,409.548z M334.277,406.678
|
||||
c-0.143,0.054-0.153,0.133-0.157,0.164c-0.063,0.501,1.182,1.717,2.111,2.237c-0.116-0.576-0.421-1.753-1.056-2.24
|
||||
c-0.221-0.17-0.457-0.236-0.721-0.202C334.38,406.647,334.322,406.661,334.277,406.678z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M378.241,408.513l8.063-0.217c0.302-0.008,0.571,0.194,0.647,0.485l1.694,6.493
|
||||
c0.176,0.673-0.318,1.329-1.015,1.336c-2.91,0.029-7.119-0.027-10.775,0.071c-4.275,0.115-6.992-0.095-12.005,0.04
|
||||
c-3.031,0.082-3.982-2.946-2.723-3.256c5.731-1.413,9.477-1.134,14.358-4.332C377.013,408.786,377.604,408.53,378.241,408.513z"
|
||||
/>
|
||||
<path style="fill:#0d9394;" d="M377.551,409.548c-0.007,0.003-0.015,0.005-0.023,0.007c-1.181,0.268-3.286,0.615-4.122-0.077
|
||||
c-0.252-0.209-0.372-0.49-0.358-0.838c0.009-0.207,0.103-0.37,0.272-0.471c0.882-0.53,3.901,0.897,4.242,1.06
|
||||
c0.067,0.032,0.107,0.103,0.099,0.176C377.655,409.47,377.611,409.525,377.551,409.548z M373.564,408.439
|
||||
c-0.023,0.009-0.044,0.018-0.063,0.029c-0.069,0.041-0.1,0.097-0.103,0.189c-0.009,0.236,0.066,0.417,0.231,0.554
|
||||
c0.469,0.388,1.686,0.426,3.307,0.112C375.745,408.799,374.114,408.232,373.564,408.439z"/>
|
||||
<path style="fill:#0d9394;" d="M377.551,409.548c-0.041,0.016-0.087,0.016-0.129-0.002c-0.905-0.374-2.728-1.916-2.623-2.75
|
||||
c0.025-0.196,0.155-0.441,0.634-0.504c0.356-0.046,0.686,0.046,0.981,0.272c0.967,0.742,1.237,2.716,1.248,2.8
|
||||
c0.008,0.062-0.017,0.122-0.067,0.16C377.581,409.534,377.566,409.542,377.551,409.548z M375.303,406.678
|
||||
c-0.143,0.054-0.153,0.133-0.157,0.164c-0.063,0.501,1.182,1.717,2.111,2.237c-0.116-0.576-0.421-1.753-1.056-2.24
|
||||
c-0.221-0.17-0.457-0.236-0.72-0.202C375.405,406.647,375.348,406.661,375.303,406.678z"/>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M393.049,249.257c3.878,16.816-2.777,149.065-2.777,149.065h-12.862l-5.499-110.215
|
||||
l-20.255,110.215l-13.746-1.001c8.986-85.377,16.93-136.35,16.93-136.35l-0.019-6.441L393.049,249.257z"/>
|
||||
<path style="opacity:0.4;fill:#FFFFFF;" d="M337.908,397.321l13.75,1l15.94-86.76l4.31-23.45l5.5,110.21h12.86
|
||||
c0,0,6.66-132.25,2.78-149.06l-38.23,5.27l0.02,6.44C354.838,260.971,346.898,311.941,337.908,397.321z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M386.121,186.99c-0.465,8.236-0.112,16.451,0.612,24.101c0.533,5.596,1.278,10.887,2.068,15.661
|
||||
c1.849,11.191,3.949,19.578,4.248,22.505c-5.602,0.775-26.715,3.689-38.228,5.273c-13.94-38.978-8.69-61.665-8.69-61.665
|
||||
s3.986-1.703,8.768-3c0.629-0.175,1.273-0.333,1.929-0.484c4.245-0.984,11.337-1.802,16.253-2.243
|
||||
c1.034-0.092,2.085-0.158,3.111-0.206C381.414,186.694,386.121,186.99,386.121,186.99z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E4897B;" d="M365.659,169.45c0.28,5.354,0.849,15.392,5.297,17.937c0,0-2.769,5.275-8.76,5.811
|
||||
c-4.531,0.406-4.23-4.063-4.23-4.063c2.621-1.959,1.992-5.268-0.003-8.999L365.659,169.45z"/>
|
||||
<path style="opacity:0.2;" d="M362.523,173.809l-4.556,6.321c0.476,0.882,0.901,1.791,1.201,2.701
|
||||
c2.107-0.842,4.509-3.956,4.167-6.291C363.165,175.375,362.842,174.294,362.523,173.809z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M346.161,158.685c-0.874,2.775-0.395,8.477,3.483,6.623S347.663,153.915,346.161,158.685z"/>
|
||||
<path style="fill:#E4897B;" d="M366.159,162.435c0.426,7.133,1.04,11.29-2.105,15.327c-4.73,6.072-13.893,3.807-16.449-3.075
|
||||
c-2.301-6.195-2.611-16.819,3.998-20.415C358.115,150.729,365.733,155.302,366.159,162.435z"/>
|
||||
<path style="fill:#263238;" d="M361.158,158.557v-7.969c0,0,8.482-0.63,8.105,3.711c4.698,2.33,2.477,9.639-3.833,13.223
|
||||
c-3.458-2.768-3.063-9.434-3.063-9.434C361.994,158.253,361.584,158.408,361.158,158.557z"/>
|
||||
<path style="fill:#E4897B;" d="M369.61,168.005c-0.344,1.892-1.535,3.441-2.854,4.309c-1.985,1.306-3.721-0.299-3.792-2.554
|
||||
c-0.064-2.03,0.892-5.155,3.184-5.557C368.405,163.808,370.004,165.842,369.61,168.005z"/>
|
||||
<path style="fill:#263238;" d="M355.626,165.619c0.07,0.577-0.179,1.079-0.557,1.121c-0.378,0.042-0.741-0.391-0.812-0.968
|
||||
c-0.07-0.577,0.179-1.079,0.557-1.121C355.192,164.609,355.556,165.042,355.626,165.619z"/>
|
||||
<path style="fill:#263238;" d="M349.089,166.349c0.07,0.577-0.179,1.079-0.557,1.121c-0.378,0.042-0.741-0.391-0.812-0.968
|
||||
c-0.07-0.577,0.179-1.079,0.557-1.121C348.655,165.339,349.018,165.772,349.089,166.349z"/>
|
||||
<path style="fill:#DE5753;" d="M351.202,166.404c0,0-0.958,3.354-2.23,5.073c1.119,0.788,2.805,0.157,2.805,0.157
|
||||
L351.202,166.404z"/>
|
||||
<path style="fill:#263238;" d="M355.145,173.494c-0.233,0.059-0.482,0.104-0.747,0.134c-0.094,0.01-0.179-0.057-0.19-0.15
|
||||
c-0.012-0.094,0.058-0.178,0.149-0.188c2.54-0.287,3.508-2.185,3.518-2.204c0.041-0.084,0.145-0.117,0.229-0.076
|
||||
c0.085,0.042,0.12,0.145,0.078,0.229C358.144,171.315,357.309,172.953,355.145,173.494z"/>
|
||||
<path style="fill:#263238;" d="M357.385,163.288c-0.115,0.029-0.243-0.003-0.332-0.096c-1.061-1.102-2.301-0.89-2.314-0.888
|
||||
c-0.186,0.034-0.365-0.089-0.401-0.273c-0.036-0.185,0.087-0.363,0.271-0.397c0.065-0.012,1.62-0.279,2.936,1.089
|
||||
c0.131,0.137,0.128,0.352-0.008,0.482C357.493,163.247,357.44,163.274,357.385,163.288z"/>
|
||||
<path style="fill:#263238;" d="M345.999,164.421c-0.063,0.016-0.131,0.014-0.197-0.009c-0.179-0.063-0.274-0.258-0.212-0.435
|
||||
c0.617-1.781,2.142-2.154,2.208-2.18c0.183-0.044,0.369,0.069,0.415,0.251c0.046,0.182-0.064,0.365-0.246,0.411
|
||||
c-0.064,0.013-1.236,0.316-1.731,1.745C346.198,164.316,346.106,164.394,345.999,164.421z"/>
|
||||
<path style="fill:#263238;" d="M364.924,161.517c0,0-4.972-1.823-7.283-4.724c0,0-4.538,1.187-5.468,3.033
|
||||
c0,0-1.574-1.319-0.395-3.033c0,0-3.396,0.717-4.07,3.033c0,0-1.695-0.581-1.594-3.033c0,0-1.514,0.57-1.992,3.033
|
||||
c0,0-3.756-7.813,8.633-10.055c0,0-0.978-0.412-2.902-0.495c0,0,8.642-3.487,15.499-0.293
|
||||
C372.21,152.178,370.957,158.31,364.924,161.517z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M396.003,255.984l-11.99,1.6c0,0-4.95-34.59-7.13-45.76v-23.86l6.27-1.65l4.83,1.65
|
||||
c1.16,3.87,2.18,8.95,3.07,14.6c0.59,3.74,1.12,7.74,1.59,11.79c0.65,5.52,1.19,11.14,1.65,16.4c0.72,8.49,1.2,16.01,1.46,20.59
|
||||
C395.923,254.264,396.003,255.984,396.003,255.984z"/>
|
||||
<path style="fill:#0d9394;" d="M376.884,211.821c0,0,0.996-16.828,6.271-25.51c0,0-0.132-2.484-1.187-2.88
|
||||
c-1.055-0.396-5.084,1.978-5.084,1.978s-2.512-1.714-3.065-0.923S371.931,190.629,376.884,211.821z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M376.884,211.821c0,0,0.996-16.828,6.271-25.51c0,0-0.132-2.484-1.187-2.88
|
||||
c-1.055-0.396-5.084,1.978-5.084,1.978s-2.512-1.714-3.065-0.923S371.931,190.629,376.884,211.821z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M349.598,260.615l1.37,0.99c0,0-1.98-11.154-1.18-39.354c0.04-1.36,0.09-2.67,0.14-3.92
|
||||
c1.02-23.86,4.72-28.2,4.96-28.46l-3.46,1.18l-6.27,2.16C343.308,213.571,349.598,260.615,349.598,260.615z"/>
|
||||
<path style="fill:#0d9394;" d="M350.141,214.226c0,0-3.463-16.354-2.433-21.992c1.029-5.638,4.722-3.133,4.722-3.133
|
||||
s3.393-2.738,4.4,0.279C356.829,189.381,352.173,192.661,350.141,214.226z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M350.141,214.226c0,0-3.463-16.354-2.433-21.992c1.029-5.638,4.722-3.133,4.722-3.133
|
||||
s3.393-2.738,4.4,0.279C356.829,189.381,352.173,192.661,350.141,214.226z"/>
|
||||
</g>
|
||||
<path style="opacity:0.2;" d="M392.643,214.354c-5.12-2.87-5.8-10.36-5.8-10.36c0.31-0.12,2.21-0.77,4.21-1.43
|
||||
C391.643,206.304,392.173,210.304,392.643,214.354z"/>
|
||||
<path style="opacity:0.2;" d="M367.598,311.561l4.31-23.45l-0.83-12.41C371.078,275.701,365.168,297.221,367.598,311.561z"/>
|
||||
<path style="opacity:0.2;" d="M395.753,251.344c-3.22-0.22-6.01-0.43-6.01-0.43l-0.61-13.09c0,0,1.04-0.87,3.37-0.62
|
||||
c0,0,1.05-2.56,1.79-6.45C395.013,239.244,395.493,246.764,395.753,251.344z"/>
|
||||
<g>
|
||||
<polygon style="fill:#E4897B;" points="396.852,230.741 390.582,240.809 395.541,243.66 401.432,234.588 "/>
|
||||
<path style="fill:#0d9394;" d="M387.733,187.838c4.222,0.464,22.156,25.081,22.947,32.503
|
||||
c0.791,7.421-10.535,20.231-10.535,20.231l-7.569-4.453c0,0,7.686-11.81,8.082-14.962s-14.047-16.074-14.047-16.074
|
||||
s-1.577-3.796-1.777-9.26C384.633,190.359,387.733,187.838,387.733,187.838z"/>
|
||||
<path style="fill:#0d9394;" d="M389.128,237.826c0,0,6.455,1.385,9.048,5.439c0,0-2.694,8.45-4.622,9.37
|
||||
c-1.927,0.92-6.716,0.92-6.716,0.92S386.531,244.156,389.128,237.826z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 52 KiB |
655
src/assets/illustration/register-cover.svg
Normal file
@@ -0,0 +1,655 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
|
||||
<g id="Background_Complete">
|
||||
<g>
|
||||
<rect y="382.398" style="fill:#EBEBEB;" width="500" height="0.25"/>
|
||||
<rect x="416.779" y="398.494" style="fill:#EBEBEB;" width="33.122" height="0.25"/>
|
||||
<rect x="322.527" y="401.208" style="fill:#EBEBEB;" width="8.693" height="0.25"/>
|
||||
<rect x="396.586" y="389.208" style="fill:#EBEBEB;" width="19.192" height="0.25"/>
|
||||
<rect x="52.459" y="390.888" style="fill:#EBEBEB;" width="43.193" height="0.25"/>
|
||||
<rect x="104.556" y="390.888" style="fill:#EBEBEB;" width="6.333" height="0.25"/>
|
||||
<rect x="131.471" y="395.111" style="fill:#EBEBEB;" width="93.676" height="0.25"/>
|
||||
<path style="fill:#EBEBEB;" d="M237.014,337.8H43.915c-3.147,0-5.708-2.561-5.708-5.708V60.66c0-3.147,2.561-5.708,5.708-5.708
|
||||
h193.099c3.146,0,5.707,2.561,5.707,5.708v271.432C242.721,335.239,240.16,337.8,237.014,337.8z M43.915,55.203
|
||||
c-3.01,0-5.458,2.448-5.458,5.458v271.432c0,3.01,2.448,5.458,5.458,5.458h193.099c3.009,0,5.457-2.448,5.457-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.457-5.458H43.915z"/>
|
||||
<path style="fill:#EBEBEB;" d="M453.31,337.8H260.212c-3.147,0-5.707-2.561-5.707-5.708V60.66c0-3.147,2.561-5.708,5.707-5.708
|
||||
H453.31c3.148,0,5.708,2.561,5.708,5.708v271.432C459.019,335.239,456.458,337.8,453.31,337.8z M260.212,55.203
|
||||
c-3.009,0-5.457,2.448-5.457,5.458v271.432c0,3.01,2.448,5.458,5.457,5.458H453.31c3.01,0,5.458-2.448,5.458-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.458-5.458H260.212z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<rect x="100.355" y="173.877" style="fill:#F0F0F0;" width="141.985" height="208.169"/>
|
||||
<g>
|
||||
<rect x="105.374" y="180.43" style="fill:#E0E0E0;" width="131.947" height="38.447"/>
|
||||
<rect x="105.374" y="186.654" style="fill:#EBEBEB;" width="7.495" height="32.223"/>
|
||||
<rect x="141.617" y="186.654" style="fill:#EBEBEB;" width="7.496" height="32.223"/>
|
||||
|
||||
<rect x="185.553" y="186.252" transform="matrix(0.9855 -0.1698 0.1698 0.9855 -31.6201 35.0923)" style="fill:#EBEBEB;" width="7.496" height="32.223"/>
|
||||
<rect x="114.661" y="190.9" style="fill:#EBEBEB;" width="7.495" height="27.976"/>
|
||||
<rect x="131.89" y="190.9" style="fill:#EBEBEB;" width="7.495" height="27.976"/>
|
||||
<rect x="175.376" y="190.9" style="fill:#EBEBEB;" width="7.495" height="27.976"/>
|
||||
|
||||
<rect x="154.586" y="190.42" transform="matrix(0.9762 -0.2169 0.2169 0.9762 -40.5694 39.2118)" style="fill:#EBEBEB;" width="7.496" height="27.976"/>
|
||||
<rect x="124.891" y="185.054" style="fill:#EBEBEB;" width="3.748" height="33.822"/>
|
||||
<rect x="169.474" y="185.054" style="fill:#EBEBEB;" width="3.748" height="33.822"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<rect x="105.374" y="224.964" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 342.6952 488.3752)" style="fill:#E0E0E0;" width="131.947" height="38.447"/>
|
||||
|
||||
<rect x="229.826" y="231.188" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 467.1472 494.5993)" style="fill:#EBEBEB;" width="7.495" height="32.222"/>
|
||||
|
||||
<rect x="193.582" y="231.188" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 394.6603 494.5993)" style="fill:#EBEBEB;" width="7.496" height="32.222"/>
|
||||
|
||||
<rect x="149.646" y="230.786" transform="matrix(-0.9855 -0.1698 0.1698 -0.9855 262.6272 516.2596)" style="fill:#EBEBEB;" width="7.495" height="32.223"/>
|
||||
|
||||
<rect x="220.538" y="235.435" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 448.5722 498.8456)" style="fill:#EBEBEB;" width="7.496" height="27.976"/>
|
||||
|
||||
<rect x="203.31" y="235.435" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 414.1154 498.8456)" style="fill:#EBEBEB;" width="7.496" height="27.976"/>
|
||||
|
||||
<rect x="159.824" y="235.435" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 327.1429 498.8456)" style="fill:#EBEBEB;" width="7.496" height="27.976"/>
|
||||
|
||||
<rect x="180.614" y="234.955" transform="matrix(-0.9762 -0.2169 0.2169 -0.9762 310.3411 531.9466)" style="fill:#EBEBEB;" width="7.495" height="27.976"/>
|
||||
|
||||
<rect x="214.057" y="229.589" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 431.8616 492.9995)" style="fill:#EBEBEB;" width="3.748" height="33.822"/>
|
||||
|
||||
<rect x="169.474" y="229.589" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 342.6953 492.9995)" style="fill:#EBEBEB;" width="3.748" height="33.822"/>
|
||||
<rect x="105.374" y="231.188" style="fill:#EBEBEB;" width="7.495" height="32.222"/>
|
||||
<rect x="114.661" y="235.435" style="fill:#EBEBEB;" width="7.495" height="27.976"/>
|
||||
<rect x="131.89" y="235.435" style="fill:#EBEBEB;" width="7.495" height="27.976"/>
|
||||
<rect x="124.891" y="229.589" style="fill:#EBEBEB;" width="3.748" height="33.822"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="105.374" y="269.499" style="fill:#E0E0E0;" width="131.947" height="38.447"/>
|
||||
<g>
|
||||
<rect x="181.107" y="275.723" style="fill:#EBEBEB;" width="7.496" height="32.223"/>
|
||||
|
||||
<rect x="225.043" y="275.32" transform="matrix(0.9855 -0.1698 0.1698 0.9855 -46.1743 43.0936)" style="fill:#EBEBEB;" width="7.496" height="32.223"/>
|
||||
<rect x="154.151" y="279.969" style="fill:#EBEBEB;" width="7.496" height="27.976"/>
|
||||
<rect x="171.38" y="279.969" style="fill:#EBEBEB;" width="7.495" height="27.976"/>
|
||||
<rect x="214.866" y="279.969" style="fill:#EBEBEB;" width="7.496" height="27.976"/>
|
||||
|
||||
<rect x="194.076" y="279.489" transform="matrix(0.9762 -0.2169 0.2169 0.9762 -58.9471 49.8958)" style="fill:#EBEBEB;" width="7.495" height="27.976"/>
|
||||
<rect x="164.381" y="274.123" style="fill:#EBEBEB;" width="3.748" height="33.822"/>
|
||||
<rect x="208.964" y="274.123" style="fill:#EBEBEB;" width="3.748" height="33.822"/>
|
||||
|
||||
<rect x="138.81" y="275.32" transform="matrix(0.9855 -0.1698 0.1698 0.9855 -47.4278 28.4477)" style="fill:#EBEBEB;" width="7.496" height="32.223"/>
|
||||
<rect x="128.633" y="279.969" style="fill:#EBEBEB;" width="7.496" height="27.976"/>
|
||||
|
||||
<rect x="107.842" y="279.489" transform="matrix(0.9762 -0.2169 0.2169 0.9762 -61.0001 31.1914)" style="fill:#EBEBEB;" width="7.495" height="27.976"/>
|
||||
<rect x="122.73" y="274.123" style="fill:#EBEBEB;" width="3.748" height="33.822"/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<rect x="75.86" y="173.877" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 176.2151 556.469)" style="fill:#E0E0E0;" width="24.495" height="208.715"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#F5F5F5;" d="M325.437,377.144h-20.812l10.941-89.107c0.463-3.772,3.896-6.83,7.668-6.83h7.152h83.657
|
||||
l-13.312,95.937H325.437z"/>
|
||||
<path style="fill:#F0F0F0;" d="M391.443,377.144h20.812l10.941-89.107c0.463-3.772-2.219-6.83-5.991-6.83h-7.152
|
||||
c-3.772,0-7.205,3.058-7.668,6.83L391.443,377.144z"/>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M383.776,377.039l3.771-43.099c0.168-1.925,1.656-3.472,3.573-3.717l1.551-0.198
|
||||
c2.571-0.328,4.566-2.404,4.792-4.986l0.688-7.858c0.282-3.221-2.257-5.991-5.49-5.991h34.781c3.233,0,5.772,2.77,5.49,5.991
|
||||
l-0.688,7.858c-0.226,2.582-2.221,4.658-4.792,4.986l-1.551,0.198c-1.917,0.245-3.404,1.792-3.572,3.717l-3.771,43.099
|
||||
c-0.275,3.142-2.906,5.553-6.06,5.553h-34.781C380.87,382.592,383.501,380.181,383.776,377.039z"/>
|
||||
</g>
|
||||
<path style="fill:#E6E6E6;" d="M288.061,323.15c-0.592-6.768-6.259-11.961-13.053-11.961h16.829h13.45
|
||||
c6.794,0,12.461,5.193,13.053,11.961l2.989,34.165h-30.28L288.061,323.15z"/>
|
||||
<path style="fill:#F0F0F0;" d="M261.557,311.189h13.45c6.794,0,12.461,5.193,13.053,11.961l2.989,34.164h72.117l2.989-34.165
|
||||
c0.592-6.768,6.259-11.961,13.053-11.961h13.45c3.233,0,5.772,2.77,5.49,5.991l-0.688,7.858
|
||||
c-0.226,2.582-2.221,4.658-4.792,4.986l-1.551,0.198c-1.917,0.245-3.404,1.792-3.573,3.717l-3.771,43.099
|
||||
c-0.275,3.142-2.906,5.553-6.06,5.553H276.501c-3.154,0-5.785-2.411-6.06-5.553l-3.771-43.099
|
||||
c-0.168-1.925-1.656-3.472-3.572-3.717l-1.551-0.198c-2.571-0.328-4.566-2.404-4.792-4.986l-0.688-7.858
|
||||
C255.785,313.96,258.324,311.189,261.557,311.189z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M102.159,163.477c0,0-1.108-7.303,4.219-11.986c5.326-4.683,4.858-7.468,3.336-7.831
|
||||
c-1.522-0.363-2.927,4.319-5.268,5.607c0,0-0.074-6.673,2.304-9.131c2.378-2.458,3.626-8.791,1.363-8.903
|
||||
c-2.263-0.111-2.497,3.762-2.965,6.508c-0.468,2.746-2.99,6.609-2.99,6.609s-0.492-5.971-2.029-8.429
|
||||
c-1.537-2.458,2.561-8.078,0.98-10.536c-1.58-2.458-4.39,2.224-4.156,7.492c0.234,5.268,3.746,10.887,2.927,16.389
|
||||
c0,0-1.549-3.863-2.94-4.214c-1.391-0.351-2.796-2.906-3.732-3.853c-0.937-0.947-2.107,2.331,0,5.375
|
||||
c2.107,3.044,7.492,11.187,6.673,17.768L102.159,163.477z"/>
|
||||
<path style="fill:#E6E6E6;" d="M105.343,160.155l1.744,10.946c0.539,3.38-2.073,6.441-5.496,6.441h-1.861
|
||||
c-3.423,0-6.035-3.061-5.496-6.441l1.744-10.946H105.343z"/>
|
||||
|
||||
<rect x="210.056" y="152.042" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 425.5436 327.4352)" style="fill:#EBEBEB;" width="5.432" height="23.351"/>
|
||||
|
||||
<rect x="183.79" y="152.042" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 373.013 327.4352)" style="fill:#EBEBEB;" width="5.432" height="23.351"/>
|
||||
|
||||
<rect x="151.95" y="151.75" transform="matrix(-0.9855 -0.1698 0.1698 -0.9855 279.3288 350.7467)" style="fill:#EBEBEB;" width="5.432" height="23.351"/>
|
||||
|
||||
<rect x="203.325" y="155.119" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 412.0824 330.5125)" style="fill:#EBEBEB;" width="5.432" height="20.274"/>
|
||||
|
||||
<rect x="190.84" y="155.119" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 387.1118 330.5125)" style="fill:#EBEBEB;" width="5.432" height="20.274"/>
|
||||
|
||||
<rect x="159.326" y="155.119" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 324.0838 330.5125)" style="fill:#EBEBEB;" width="5.432" height="20.274"/>
|
||||
|
||||
<rect x="174.393" y="154.771" transform="matrix(-0.9762 -0.2169 0.2169 -0.9762 314.2313 364.3063)" style="fill:#EBEBEB;" width="5.432" height="20.274"/>
|
||||
|
||||
<rect x="198.628" y="150.883" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 399.9725 326.2759)" style="fill:#EBEBEB;" width="2.716" height="24.511"/>
|
||||
|
||||
<rect x="166.319" y="150.883" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 335.3545 326.2759)" style="fill:#EBEBEB;" width="2.716" height="24.511"/>
|
||||
<g>
|
||||
<rect x="120.479" y="156.859" style="fill:#EBEBEB;" width="26.467" height="18.272"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="215.558" y="164.343" style="fill:#EBEBEB;" width="22.173" height="13.642"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="221.46" y="152.352" style="fill:#EBEBEB;" width="11.087" height="13.641"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="391.443" y="134.303" style="fill:#E0E0E0;" width="26.37" height="109.885"/>
|
||||
|
||||
<rect x="316.366" y="134.303" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 731.3485 378.7801)" style="fill:#E0E0E0;" width="98.617" height="110.175"/>
|
||||
|
||||
<rect x="313.185" y="134.303" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 728.6906 378.7801)" style="fill:#F0F0F0;" width="102.32" height="110.175"/>
|
||||
|
||||
<rect x="317.556" y="137.817" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 728.8553 377.2321)" style="fill:#FFFFFF;" width="93.744" height="101.599"/>
|
||||
|
||||
<rect x="317.556" y="137.817" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 636.8504 377.2321)" style="fill:#E0E0E0;" width="1.739" height="101.599"/>
|
||||
|
||||
<rect x="363.902" y="165.977" transform="matrix(6.123234e-17 -1 1 6.123234e-17 153.0254 577.519)" style="fill:#E0E0E0;" width="2.74" height="92.541"/>
|
||||
|
||||
<rect x="317.556" y="206.277" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 730.3249 417.1543)" style="fill:#F0F0F0;" width="95.214" height="4.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Background_Simple" style="display:none;">
|
||||
<g style="display:inline;">
|
||||
<path style="fill:#0d9394;" d="M89.369,124.198c27.919-59.449,127.059-51.062,165.317-9.255
|
||||
c38.258,41.806,50.696,68.599,85.208,52.983c34.512-15.616,78.518-11.44,81.043,38.164s-37.913,108.263-102.09,125.615
|
||||
c-64.177,17.352-64.161,78.759-149.1,66.368c-46.31-6.756-47.365-56.86-40.825-98.301
|
||||
C135.462,258.331,56.991,193.141,89.369,124.198z"/>
|
||||
<path style="opacity:0.9;fill:#FFFFFF;" d="M89.369,124.198c27.919-59.449,127.059-51.062,165.317-9.255
|
||||
c38.258,41.806,50.696,68.599,85.208,52.983c34.512-15.616,78.518-11.44,81.043,38.164s-37.913,108.263-102.09,125.615
|
||||
c-64.177,17.352-64.161,78.759-149.1,66.368c-46.31-6.756-47.365-56.86-40.825-98.301
|
||||
C135.462,258.331,56.991,193.141,89.369,124.198z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shadow_1_">
|
||||
<ellipse id="_x3C_Path_x3E__359_" style="fill:#F5F5F5;" cx="250" cy="416.238" rx="193.889" ry="11.323"/>
|
||||
</g>
|
||||
<g id="Interface">
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M321.955,378.128H143.035c-4.04,0-7.316-3.275-7.316-7.316V160.14c0-4.04,3.275-7.316,7.316-7.316
|
||||
h178.919c4.04,0,7.316,3.275,7.316,7.316v210.672C329.271,374.852,325.995,378.128,321.955,378.128z"/>
|
||||
<path style="opacity:0.6;fill:#FFFFFF;enable-background:new ;" d="M321.955,378.128H143.035c-4.04,0-7.316-3.275-7.316-7.316
|
||||
V160.14c0-4.04,3.275-7.316,7.316-7.316h178.919c4.04,0,7.316,3.275,7.316,7.316v210.672
|
||||
C329.271,374.852,325.995,378.128,321.955,378.128z"/>
|
||||
<g>
|
||||
<rect x="167.077" y="256.147" style="fill:#FFFFFF;" width="130.837" height="22.403"/>
|
||||
<g style="opacity:0.4;">
|
||||
<path style="fill:#263238;" d="M178.776,269.528v0.587h-4.54v-6.42h4.402v0.587h-3.723v2.284h3.32v0.577h-3.32v2.385H178.776z"
|
||||
/>
|
||||
<path style="fill:#263238;" d="M179.694,267.346h2.403v0.568h-2.403V267.346z"/>
|
||||
<path style="fill:#263238;" d="M191.515,267.318v2.797h-0.651v-2.733c0-1.018-0.514-1.54-1.385-1.54
|
||||
c-0.99,0-1.614,0.642-1.614,1.742v2.531h-0.651v-2.733c0-1.018-0.514-1.54-1.394-1.54c-0.981,0-1.614,0.642-1.614,1.742v2.531
|
||||
h-0.651v-4.824h0.624v0.881c0.339-0.578,0.963-0.917,1.77-0.917c0.798,0,1.421,0.339,1.715,1.018
|
||||
c0.349-0.623,1.037-1.018,1.908-1.018C190.745,265.255,191.515,265.934,191.515,267.318z"/>
|
||||
<path style="fill:#263238;" d="M196.926,267.125v2.99h-0.624v-0.752c-0.293,0.495-0.862,0.798-1.66,0.798
|
||||
c-1.091,0-1.761-0.569-1.761-1.403c0-0.743,0.477-1.366,1.862-1.366h1.531v-0.294c0-0.825-0.468-1.274-1.366-1.274
|
||||
c-0.624,0-1.211,0.22-1.605,0.568l-0.293-0.486c0.486-0.412,1.201-0.65,1.962-0.65
|
||||
C196.22,265.255,196.926,265.878,196.926,267.125z M196.275,268.666v-0.789h-1.513c-0.936,0-1.238,0.367-1.238,0.862
|
||||
c0,0.56,0.449,0.908,1.22,0.908C195.477,269.647,196.018,269.299,196.275,268.666z"/>
|
||||
<path style="fill:#263238;" d="M198.55,263.769c0-0.247,0.211-0.458,0.477-0.458c0.266,0,0.477,0.202,0.477,0.449
|
||||
c0,0.266-0.202,0.477-0.477,0.477C198.761,264.236,198.55,264.025,198.55,263.769z M198.696,265.291h0.651v4.824h-0.651V265.291
|
||||
z"/>
|
||||
<path style="fill:#263238;" d="M201.163,263.31h0.651v6.805h-0.651V263.31z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="167.077" y="286.75" style="fill:#FFFFFF;" width="130.837" height="22.403"/>
|
||||
<g style="opacity:0.4;">
|
||||
<path style="fill:#263238;" d="M179.263,296.533c0,1.367-0.99,2.192-2.623,2.192h-1.724v2.026h-0.679v-6.419h2.403
|
||||
C178.273,294.333,179.263,295.158,179.263,296.533z M178.584,296.533c0-1.026-0.678-1.613-1.962-1.613h-1.706v3.209h1.706
|
||||
C177.906,298.129,178.584,297.542,178.584,296.533z"/>
|
||||
<path style="fill:#263238;" d="M184.188,297.763v2.989h-0.624V300c-0.294,0.495-0.862,0.798-1.66,0.798
|
||||
c-1.091,0-1.761-0.568-1.761-1.403c0-0.742,0.477-1.366,1.862-1.366h1.531v-0.294c0-0.825-0.468-1.274-1.366-1.274
|
||||
c-0.623,0-1.21,0.221-1.605,0.568l-0.293-0.485c0.486-0.413,1.201-0.651,1.962-0.651
|
||||
C183.481,295.892,184.188,296.516,184.188,297.763z M183.537,299.303v-0.788h-1.513c-0.936,0-1.238,0.366-1.238,0.861
|
||||
c0,0.559,0.449,0.908,1.22,0.908C182.739,300.284,183.28,299.935,183.537,299.303z"/>
|
||||
<path style="fill:#263238;" d="M185.289,300.202l0.293-0.514c0.385,0.303,1.037,0.541,1.715,0.541
|
||||
c0.917,0,1.293-0.313,1.293-0.789c0-1.256-3.127-0.266-3.127-2.173c0-0.789,0.679-1.376,1.908-1.376
|
||||
c0.623,0,1.302,0.174,1.706,0.449l-0.284,0.523c-0.422-0.293-0.926-0.412-1.421-0.412c-0.872,0-1.256,0.339-1.256,0.798
|
||||
c0,1.302,3.127,0.32,3.127,2.173c0,0.835-0.733,1.376-1.99,1.376C186.454,300.798,185.683,300.541,185.289,300.202z"/>
|
||||
<path style="fill:#263238;" d="M189.773,300.202l0.294-0.514c0.385,0.303,1.037,0.541,1.715,0.541
|
||||
c0.917,0,1.294-0.313,1.294-0.789c0-1.256-3.127-0.266-3.127-2.173c0-0.789,0.679-1.376,1.908-1.376
|
||||
c0.624,0,1.302,0.174,1.706,0.449l-0.284,0.523c-0.422-0.293-0.926-0.412-1.421-0.412c-0.872,0-1.256,0.339-1.256,0.798
|
||||
c0,1.302,3.127,0.32,3.127,2.173c0,0.835-0.733,1.376-1.99,1.376C190.938,300.798,190.167,300.541,189.773,300.202z"/>
|
||||
<path style="fill:#263238;" d="M201.915,295.929l-1.825,4.823h-0.614l-1.523-3.952l-1.522,3.952h-0.614l-1.816-4.823h0.623
|
||||
l1.513,4.099l1.55-4.099h0.56l1.54,4.099l1.532-4.099H201.915z"/>
|
||||
<path style="fill:#263238;" d="M202.273,298.34c0-1.431,1.045-2.448,2.458-2.448c1.413,0,2.449,1.018,2.449,2.448
|
||||
c0,1.431-1.036,2.458-2.449,2.458C203.319,300.798,202.273,299.771,202.273,298.34z M206.52,298.34
|
||||
c0-1.128-0.761-1.88-1.788-1.88c-1.027,0-1.797,0.752-1.797,1.88c0,1.128,0.771,1.88,1.797,1.88
|
||||
C205.758,300.22,206.52,299.468,206.52,298.34z"/>
|
||||
<path style="fill:#263238;" d="M210.94,295.892v0.633c-0.055,0-0.11-0.009-0.156-0.009c-1.009,0-1.623,0.642-1.623,1.778v2.458
|
||||
h-0.651v-4.823h0.624v0.944C209.436,296.23,210.051,295.892,210.94,295.892z"/>
|
||||
<path style="fill:#263238;" d="M216.47,293.947v6.805h-0.624v-0.954c-0.394,0.651-1.063,1-1.861,1c-1.376,0-2.403-1-2.403-2.458
|
||||
c0-1.458,1.027-2.448,2.403-2.448c0.77,0,1.431,0.33,1.834,0.954v-2.898H216.47z M215.829,298.34c0-1.128-0.77-1.88-1.789-1.88
|
||||
c-1.027,0-1.797,0.752-1.797,1.88c0,1.128,0.77,1.88,1.797,1.88C215.058,300.22,215.829,299.468,215.829,298.34z"/>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="167.077" y="332.003" style="opacity:0.2;" width="130.837" height="22.403"/>
|
||||
<g style="opacity:0.5;">
|
||||
<path d="M198.896,321.707h-2.136l-0.46,1.024h-0.422l1.753-3.835h0.4l1.753,3.835h-0.427L198.896,321.707z M198.749,321.378
|
||||
l-0.92-2.06l-0.92,2.06H198.749z"/>
|
||||
<path d="M200.34,318.667h0.389v4.064h-0.389V318.667z"/>
|
||||
<path d="M203.266,319.828v0.378c-0.033,0-0.066-0.006-0.093-0.006c-0.603,0-0.97,0.384-0.97,1.064v1.468h-0.389v-2.882h0.372
|
||||
v0.564C202.368,320.031,202.734,319.828,203.266,319.828z"/>
|
||||
<path d="M206.45,321.411h-2.41c0.044,0.603,0.504,1.003,1.134,1.003c0.351,0,0.663-0.126,0.882-0.378l0.219,0.252
|
||||
c-0.257,0.307-0.657,0.471-1.112,0.471c-0.898,0-1.512-0.613-1.512-1.468c0-0.854,0.597-1.463,1.408-1.463
|
||||
c0.811,0,1.397,0.597,1.397,1.463C206.456,321.323,206.45,321.367,206.45,321.411z M204.04,321.121h2.043
|
||||
c-0.049-0.564-0.46-0.959-1.024-0.959C204.5,320.162,204.089,320.557,204.04,321.121z"/>
|
||||
<path d="M209.345,320.945v1.786h-0.372v-0.449c-0.175,0.296-0.515,0.477-0.992,0.477c-0.652,0-1.052-0.34-1.052-0.838
|
||||
c0-0.444,0.285-0.816,1.112-0.816h0.915v-0.175c0-0.493-0.279-0.762-0.816-0.762c-0.373,0-0.723,0.131-0.959,0.34l-0.175-0.291
|
||||
c0.29-0.246,0.718-0.389,1.172-0.389C208.923,319.828,209.345,320.2,209.345,320.945z M208.956,321.866v-0.472h-0.904
|
||||
c-0.559,0-0.74,0.22-0.74,0.516c0,0.334,0.269,0.542,0.729,0.542C208.479,322.452,208.802,322.244,208.956,321.866z"/>
|
||||
<path d="M213.044,318.667v4.064h-0.372v-0.569c-0.236,0.389-0.636,0.597-1.112,0.597c-0.821,0-1.435-0.597-1.435-1.468
|
||||
c0-0.871,0.614-1.463,1.435-1.463c0.46,0,0.854,0.197,1.096,0.569v-1.73H213.044z M212.661,321.291
|
||||
c0-0.674-0.46-1.123-1.068-1.123c-0.614,0-1.074,0.449-1.074,1.123c0,0.674,0.46,1.123,1.074,1.123
|
||||
C212.201,322.414,212.661,321.965,212.661,321.291z"/>
|
||||
<path d="M216.553,319.85l-1.44,3.227c-0.241,0.564-0.548,0.745-0.959,0.745c-0.268,0-0.526-0.087-0.701-0.263l0.181-0.29
|
||||
c0.142,0.143,0.317,0.219,0.526,0.219c0.257,0,0.433-0.12,0.597-0.482l0.126-0.279l-1.288-2.876H214l1.085,2.449l1.084-2.449
|
||||
H216.553z"/>
|
||||
<path d="M220.714,320.945v1.786h-0.373v-0.449c-0.175,0.296-0.515,0.477-0.992,0.477c-0.652,0-1.052-0.34-1.052-0.838
|
||||
c0-0.444,0.285-0.816,1.112-0.816h0.915v-0.175c0-0.493-0.279-0.762-0.816-0.762c-0.373,0-0.723,0.131-0.958,0.34l-0.175-0.291
|
||||
c0.29-0.246,0.718-0.389,1.172-0.389C220.292,319.828,220.714,320.2,220.714,320.945z M220.325,321.866v-0.472h-0.904
|
||||
c-0.559,0-0.74,0.22-0.74,0.516c0,0.334,0.269,0.542,0.729,0.542C219.848,322.452,220.171,322.244,220.325,321.866z"/>
|
||||
<path d="M227.964,321.06v1.671h-0.389v-1.633c0-0.607-0.307-0.92-0.827-0.92c-0.592,0-0.964,0.384-0.964,1.041v1.512h-0.389
|
||||
v-1.633c0-0.607-0.307-0.92-0.833-0.92c-0.586,0-0.964,0.384-0.964,1.041v1.512h-0.389v-2.882h0.372v0.526
|
||||
c0.203-0.345,0.575-0.548,1.057-0.548c0.477,0,0.849,0.203,1.024,0.608c0.208-0.373,0.619-0.608,1.139-0.608
|
||||
C227.504,319.828,227.964,320.233,227.964,321.06z"/>
|
||||
<path d="M231.545,321.411h-2.41c0.043,0.603,0.504,1.003,1.134,1.003c0.35,0,0.663-0.126,0.882-0.378l0.219,0.252
|
||||
c-0.257,0.307-0.657,0.471-1.112,0.471c-0.898,0-1.512-0.613-1.512-1.468c0-0.854,0.597-1.463,1.408-1.463
|
||||
c0.811,0,1.397,0.597,1.397,1.463C231.55,321.323,231.545,321.367,231.545,321.411z M229.135,321.121h2.043
|
||||
c-0.049-0.564-0.46-0.959-1.024-0.959C229.595,320.162,229.184,320.557,229.135,321.121z"/>
|
||||
<path d="M237.102,321.06v1.671h-0.389v-1.633c0-0.607-0.307-0.92-0.827-0.92c-0.592,0-0.964,0.384-0.964,1.041v1.512h-0.389
|
||||
v-1.633c0-0.607-0.307-0.92-0.833-0.92c-0.586,0-0.964,0.384-0.964,1.041v1.512h-0.389v-2.882h0.372v0.526
|
||||
c0.203-0.345,0.575-0.548,1.057-0.548c0.477,0,0.849,0.203,1.024,0.608c0.208-0.373,0.619-0.608,1.139-0.608
|
||||
C236.642,319.828,237.102,320.233,237.102,321.06z"/>
|
||||
<path d="M241.083,321.291c0,0.871-0.613,1.468-1.435,1.468c-0.477,0-0.877-0.208-1.112-0.597v0.569h-0.372v-4.064h0.389v1.73
|
||||
c0.241-0.372,0.636-0.569,1.096-0.569C240.469,319.828,241.083,320.42,241.083,321.291z M240.694,321.291
|
||||
c0-0.674-0.466-1.123-1.074-1.123c-0.614,0-1.074,0.449-1.074,1.123c0,0.674,0.46,1.123,1.074,1.123
|
||||
C240.228,322.414,240.694,321.965,240.694,321.291z"/>
|
||||
<path d="M244.389,321.411h-2.41c0.044,0.603,0.504,1.003,1.134,1.003c0.351,0,0.663-0.126,0.882-0.378l0.219,0.252
|
||||
c-0.257,0.307-0.657,0.471-1.112,0.471c-0.898,0-1.512-0.613-1.512-1.468c0-0.854,0.597-1.463,1.408-1.463
|
||||
c0.811,0,1.397,0.597,1.397,1.463C244.394,321.323,244.389,321.367,244.389,321.411z M241.979,321.121h2.043
|
||||
c-0.049-0.564-0.46-0.959-1.024-0.959C242.439,320.162,242.028,320.557,241.979,321.121z"/>
|
||||
<path d="M246.642,319.828v0.378c-0.033,0-0.066-0.006-0.093-0.006c-0.602,0-0.97,0.384-0.97,1.064v1.468h-0.389v-2.882h0.373
|
||||
v0.564C245.744,320.031,246.11,319.828,246.642,319.828z"/>
|
||||
<path d="M249.163,319.878c0-0.395-0.323-0.669-0.882-0.669c-0.465,0-0.805,0.153-1.046,0.444l-0.29-0.22
|
||||
c0.296-0.361,0.751-0.569,1.364-0.569c0.767,0,1.26,0.367,1.26,0.953c0,0.936-1.002,0.98-1.002,1.764h-0.406
|
||||
C248.161,320.677,249.163,320.595,249.163,319.878z M248.079,322.474c0-0.158,0.126-0.279,0.285-0.279
|
||||
c0.165,0,0.29,0.121,0.29,0.279c0,0.153-0.126,0.285-0.29,0.285C248.205,322.759,248.079,322.627,248.079,322.474z"/>
|
||||
<path d="M251.872,318.897h0.888v3.112h1.922v0.723h-2.81V318.897z"/>
|
||||
<path d="M254.882,321.258c0-0.888,0.685-1.518,1.622-1.518c0.937,0,1.616,0.63,1.616,1.518c0,0.888-0.679,1.518-1.616,1.518
|
||||
C255.566,322.775,254.882,322.146,254.882,321.258z M257.254,321.258c0-0.51-0.323-0.816-0.751-0.816
|
||||
c-0.427,0-0.756,0.307-0.756,0.816c0,0.51,0.329,0.816,0.756,0.816C256.931,322.074,257.254,321.768,257.254,321.258z"/>
|
||||
<path d="M261.732,319.784v2.454c0,1.096-0.591,1.6-1.654,1.6c-0.559,0-1.101-0.137-1.446-0.405l0.34-0.613
|
||||
c0.252,0.202,0.663,0.334,1.04,0.334c0.603,0,0.866-0.274,0.866-0.806v-0.126c-0.225,0.247-0.548,0.367-0.931,0.367
|
||||
c-0.816,0-1.474-0.564-1.474-1.424c0-0.86,0.657-1.425,1.474-1.425c0.411,0,0.751,0.138,0.975,0.422v-0.378H261.732z
|
||||
M260.888,321.165c0-0.433-0.323-0.724-0.772-0.724c-0.449,0-0.778,0.291-0.778,0.724c0,0.433,0.329,0.723,0.778,0.723
|
||||
C260.565,321.888,260.888,321.598,260.888,321.165z"/>
|
||||
<path d="M263.976,318.897c0-0.268,0.213-0.477,0.531-0.477c0.318,0,0.531,0.197,0.531,0.461c0,0.284-0.213,0.492-0.531,0.492
|
||||
C264.19,319.373,263.976,319.165,263.976,318.897z M264.08,319.784h0.854v2.947h-0.854V319.784z"/>
|
||||
<path d="M268.743,321.044v1.688h-0.854v-1.556c0-0.477-0.219-0.695-0.597-0.695c-0.411,0-0.706,0.252-0.706,0.794v1.457h-0.854
|
||||
v-2.947h0.816v0.346c0.23-0.252,0.575-0.39,0.975-0.39C268.217,319.74,268.743,320.146,268.743,321.044z"/>
|
||||
</g>
|
||||
<rect x="167.077" y="330.632" style="fill:#0d9394;" width="130.837" height="22.403"/>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M215.602,345.314l-1.654-2.355c-0.154,0.011-0.318,0.021-0.482,0.021h-1.895v2.334h-1.096v-7.669
|
||||
h2.991c1.994,0,3.199,1.008,3.199,2.673c0,1.184-0.613,2.038-1.687,2.422l1.818,2.574H215.602z M215.569,340.317
|
||||
c0-1.096-0.734-1.72-2.136-1.72h-1.862v3.451h1.862C214.835,342.049,215.569,341.413,215.569,340.317z"/>
|
||||
<path style="fill:#FFFFFF;" d="M223.518,342.761h-4.711c0.132,1.019,0.953,1.698,2.104,1.698c0.679,0,1.249-0.231,1.676-0.701
|
||||
l0.581,0.679c-0.526,0.614-1.326,0.942-2.29,0.942c-1.874,0-3.123-1.237-3.123-2.969c0-1.72,1.238-2.958,2.915-2.958
|
||||
c1.676,0,2.87,1.205,2.87,2.991C223.539,342.53,223.528,342.662,223.518,342.761z M218.806,342.005h3.725
|
||||
c-0.109-0.976-0.844-1.665-1.862-1.665C219.661,340.34,218.916,341.019,218.806,342.005z"/>
|
||||
<path style="fill:#FFFFFF;" d="M230.556,339.507v5.018c0,2.049-1.041,2.98-3.013,2.98c-1.063,0-2.136-0.296-2.771-0.866
|
||||
l0.504-0.811c0.537,0.46,1.38,0.756,2.235,0.756c1.37,0,1.994-0.635,1.994-1.95v-0.46c-0.504,0.603-1.26,0.898-2.093,0.898
|
||||
c-1.676,0-2.947-1.14-2.947-2.815c0-1.676,1.271-2.805,2.947-2.805c0.866,0,1.654,0.317,2.147,0.953v-0.898H230.556z
|
||||
M229.525,342.257c0-1.129-0.833-1.885-1.994-1.885c-1.172,0-2.005,0.756-2.005,1.885c0,1.117,0.833,1.896,2.005,1.896
|
||||
C228.693,344.152,229.525,343.374,229.525,342.257z"/>
|
||||
<path style="fill:#FFFFFF;" d="M232.379,337.71c0-0.383,0.307-0.69,0.712-0.69c0.405,0,0.712,0.296,0.712,0.669
|
||||
c0,0.395-0.296,0.701-0.712,0.701C232.686,338.39,232.379,338.094,232.379,337.71z M232.565,339.507h1.052v5.807h-1.052V339.507z
|
||||
"/>
|
||||
<path style="fill:#FFFFFF;" d="M234.891,344.7l0.438-0.833c0.493,0.351,1.282,0.603,2.038,0.603c0.975,0,1.381-0.296,1.381-0.789
|
||||
c0-1.304-3.67-0.175-3.67-2.486c0-1.041,0.931-1.742,2.421-1.742c0.756,0,1.61,0.197,2.114,0.525l-0.449,0.833
|
||||
c-0.526-0.34-1.107-0.46-1.676-0.46c-0.92,0-1.37,0.34-1.37,0.8c0,1.369,3.682,0.252,3.682,2.509c0,1.052-0.964,1.72-2.509,1.72
|
||||
C236.326,345.379,235.373,345.083,234.891,344.7z"/>
|
||||
<path style="fill:#FFFFFF;" d="M244.381,344.974c-0.318,0.274-0.8,0.405-1.271,0.405c-1.172,0-1.84-0.647-1.84-1.818v-3.188
|
||||
h-0.986v-0.865h0.986v-1.271h1.052v1.271h1.665v0.865h-1.665v3.145c0,0.625,0.329,0.976,0.909,0.976
|
||||
c0.307,0,0.602-0.099,0.822-0.274L244.381,344.974z"/>
|
||||
<path style="fill:#FFFFFF;" d="M250.685,342.761h-4.712c0.132,1.019,0.953,1.698,2.104,1.698c0.679,0,1.249-0.231,1.676-0.701
|
||||
l0.581,0.679c-0.526,0.614-1.326,0.942-2.29,0.942c-1.874,0-3.122-1.237-3.122-2.969c0-1.72,1.238-2.958,2.915-2.958
|
||||
c1.676,0,2.87,1.205,2.87,2.991C250.706,342.53,250.695,342.662,250.685,342.761z M245.973,342.005h3.725
|
||||
c-0.109-0.976-0.844-1.665-1.862-1.665C246.828,340.34,246.083,341.019,245.973,342.005z"/>
|
||||
<path style="fill:#FFFFFF;" d="M255.29,339.452v1.019c-0.087-0.011-0.164-0.011-0.241-0.011c-1.128,0-1.83,0.69-1.83,1.961v2.893
|
||||
h-1.052v-5.807h1.008v0.976C253.548,339.803,254.271,339.452,255.29,339.452z"/>
|
||||
</g>
|
||||
<g style="opacity:0.6;">
|
||||
<path style="fill:#263238;" d="M209.593,177.608l0.444-0.936c0.624,0.564,1.691,0.972,2.771,0.972
|
||||
c1.451,0,2.075-0.564,2.075-1.295c0-2.051-5.085-0.755-5.085-3.874c0-1.295,1.007-2.398,3.214-2.398
|
||||
c0.983,0,2.003,0.264,2.699,0.744l-0.396,0.96c-0.731-0.468-1.559-0.684-2.303-0.684c-1.427,0-2.038,0.6-2.038,1.331
|
||||
c0,2.051,5.085,0.768,5.085,3.85c0,1.283-1.031,2.387-3.25,2.387C211.524,178.664,210.265,178.232,209.593,177.608z"/>
|
||||
<path style="fill:#263238;" d="M217.441,170.245c0-0.42,0.335-0.756,0.779-0.756c0.444,0,0.78,0.324,0.78,0.732
|
||||
c0,0.432-0.324,0.768-0.78,0.768C217.776,170.988,217.441,170.664,217.441,170.245z M217.645,172.211h1.151v6.357h-1.151V172.211
|
||||
z"/>
|
||||
<path style="fill:#263238;" d="M227.073,172.211v5.493c0,2.243-1.139,3.263-3.298,3.263c-1.164,0-2.339-0.324-3.035-0.948
|
||||
l0.552-0.888c0.588,0.504,1.511,0.828,2.447,0.828c1.499,0,2.183-0.695,2.183-2.135v-0.504c-0.551,0.66-1.379,0.984-2.291,0.984
|
||||
c-1.835,0-3.226-1.248-3.226-3.083c0-1.835,1.391-3.07,3.226-3.07c0.947,0,1.811,0.348,2.351,1.043v-0.983H227.073z
|
||||
M225.946,175.222c0-1.235-0.911-2.063-2.183-2.063c-1.283,0-2.195,0.828-2.195,2.063c0,1.223,0.912,2.075,2.195,2.075
|
||||
C225.035,177.296,225.946,176.445,225.946,175.222z"/>
|
||||
<path style="fill:#263238;" d="M235.305,174.91v3.658h-1.151v-3.526c0-1.248-0.623-1.859-1.715-1.859
|
||||
c-1.224,0-2.015,0.732-2.015,2.111v3.274h-1.151v-6.357h1.104v0.96c0.468-0.647,1.283-1.02,2.29-1.02
|
||||
C234.214,172.151,235.305,173.039,235.305,174.91z"/>
|
||||
<path style="fill:#263238;" d="M246.597,172.211v6.357h-1.091v-0.96c-0.468,0.66-1.259,1.031-2.159,1.031
|
||||
c-1.643,0-2.735-0.899-2.735-2.771v-3.658h1.151v3.526c0,1.248,0.624,1.871,1.715,1.871c1.199,0,1.967-0.744,1.967-2.111v-3.286
|
||||
H246.597z"/>
|
||||
<path style="fill:#263238;" d="M255.381,175.39c0,1.955-1.355,3.25-3.214,3.25c-0.899,0-1.691-0.348-2.219-1.031v3.286h-1.151
|
||||
v-8.683h1.104v1.007c0.516-0.708,1.331-1.067,2.267-1.067C254.025,172.151,255.381,173.447,255.381,175.39z M254.217,175.39
|
||||
c0-1.343-0.923-2.231-2.146-2.231c-1.211,0-2.135,0.888-2.135,2.231c0,1.355,0.923,2.243,2.135,2.243
|
||||
C253.294,177.632,254.217,176.745,254.217,175.39z"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="167.077" y="225.544" style="fill:#FFFFFF;" width="130.837" height="22.403"/>
|
||||
<g style="opacity:0.4;">
|
||||
<path style="fill:#263238;" d="M174.237,233.093h0.679v5.832h3.595v0.587h-4.273V233.093z"/>
|
||||
<path style="fill:#263238;" d="M183.16,236.523v2.989h-0.624v-0.752c-0.293,0.495-0.862,0.798-1.66,0.798
|
||||
c-1.091,0-1.761-0.568-1.761-1.403c0-0.742,0.477-1.366,1.862-1.366h1.531v-0.293c0-0.825-0.468-1.275-1.366-1.275
|
||||
c-0.624,0-1.211,0.221-1.605,0.569l-0.294-0.486c0.486-0.413,1.201-0.651,1.962-0.651
|
||||
C182.454,234.651,183.16,235.275,183.16,236.523z M182.509,238.064v-0.789h-1.513c-0.936,0-1.238,0.367-1.238,0.862
|
||||
c0,0.559,0.449,0.907,1.22,0.907C181.711,239.044,182.252,238.695,182.509,238.064z"/>
|
||||
<path style="fill:#263238;" d="M184.261,238.962l0.294-0.514c0.385,0.303,1.037,0.541,1.715,0.541
|
||||
c0.917,0,1.294-0.312,1.294-0.789c0-1.256-3.127-0.266-3.127-2.173c0-0.789,0.679-1.376,1.908-1.376
|
||||
c0.623,0,1.302,0.175,1.705,0.449l-0.284,0.523c-0.422-0.294-0.926-0.413-1.421-0.413c-0.872,0-1.256,0.339-1.256,0.798
|
||||
c0,1.302,3.127,0.321,3.127,2.174c0,0.834-0.733,1.375-1.99,1.375C185.426,239.558,184.655,239.301,184.261,238.962z"/>
|
||||
<path style="fill:#263238;" d="M191.956,239.219c-0.257,0.229-0.642,0.339-1.018,0.339c-0.908,0-1.412-0.514-1.412-1.403v-2.916
|
||||
h-0.862v-0.55h0.862v-1.055h0.651v1.055h1.467v0.55h-1.467v2.88c0,0.568,0.293,0.88,0.834,0.88c0.266,0,0.532-0.082,0.715-0.247
|
||||
L191.956,239.219z"/>
|
||||
<path style="fill:#263238;" d="M201.044,233.093v6.419h-0.56l-4.126-5.209v5.209h-0.679v-6.419h0.56l4.136,5.209v-5.209H201.044
|
||||
z"/>
|
||||
<path style="fill:#263238;" d="M206.638,236.523v2.989h-0.623v-0.752c-0.294,0.495-0.862,0.798-1.66,0.798
|
||||
c-1.091,0-1.761-0.568-1.761-1.403c0-0.742,0.477-1.366,1.862-1.366h1.531v-0.293c0-0.825-0.468-1.275-1.366-1.275
|
||||
c-0.624,0-1.21,0.221-1.605,0.569l-0.293-0.486c0.486-0.413,1.201-0.651,1.962-0.651
|
||||
C205.932,234.651,206.638,235.275,206.638,236.523z M205.987,238.064v-0.789h-1.513c-0.936,0-1.238,0.367-1.238,0.862
|
||||
c0,0.559,0.449,0.907,1.22,0.907C205.189,239.044,205.73,238.695,205.987,238.064z"/>
|
||||
<path style="fill:#263238;" d="M216.368,236.715v2.797h-0.651v-2.732c0-1.019-0.514-1.541-1.385-1.541
|
||||
c-0.99,0-1.614,0.643-1.614,1.742v2.531h-0.651v-2.732c0-1.019-0.514-1.541-1.394-1.541c-0.981,0-1.614,0.643-1.614,1.742v2.531
|
||||
h-0.651v-4.823h0.623v0.88c0.339-0.577,0.963-0.917,1.77-0.917c0.798,0,1.421,0.34,1.715,1.019
|
||||
c0.349-0.624,1.037-1.019,1.908-1.019C215.598,234.651,216.368,235.33,216.368,236.715z"/>
|
||||
<path style="fill:#263238;" d="M222.357,237.302h-4.035c0.074,1.009,0.844,1.679,1.898,1.679c0.587,0,1.11-0.211,1.477-0.633
|
||||
l0.367,0.422c-0.431,0.513-1.101,0.788-1.861,0.788c-1.504,0-2.531-1.027-2.531-2.457c0-1.431,0.999-2.449,2.357-2.449
|
||||
c1.357,0,2.338,1,2.338,2.449C222.367,237.155,222.357,237.229,222.357,237.302z M218.322,236.815h3.421
|
||||
c-0.083-0.944-0.77-1.604-1.715-1.604C219.093,235.211,218.405,235.871,218.322,236.815z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="167.077" y="194.941" style="fill:#FFFFFF;" width="130.837" height="22.403"/>
|
||||
<g style="opacity:0.4;">
|
||||
<path style="fill:#263238;" d="M174.915,203.076v2.522h3.32v0.587h-3.32v2.724h-0.679v-6.419h4.402v0.587H174.915z"/>
|
||||
<path style="fill:#263238;" d="M179.667,202.563c0-0.248,0.211-0.458,0.477-0.458c0.266,0,0.477,0.202,0.477,0.45
|
||||
c0,0.266-0.202,0.477-0.477,0.477C179.877,203.03,179.667,202.819,179.667,202.563z M179.813,204.085h0.651v4.824h-0.651
|
||||
V204.085z"/>
|
||||
<path style="fill:#263238;" d="M184.71,204.048v0.633c-0.055,0-0.11-0.009-0.156-0.009c-1.009,0-1.623,0.642-1.623,1.779v2.458
|
||||
h-0.651v-4.824h0.624v0.945C183.206,204.388,183.821,204.048,184.71,204.048z"/>
|
||||
<path style="fill:#263238;" d="M185.251,208.358l0.293-0.514c0.385,0.303,1.037,0.541,1.715,0.541
|
||||
c0.917,0,1.293-0.311,1.293-0.788c0-1.256-3.127-0.266-3.127-2.173c0-0.788,0.679-1.376,1.908-1.376
|
||||
c0.624,0,1.302,0.174,1.706,0.449l-0.284,0.523c-0.422-0.293-0.926-0.413-1.421-0.413c-0.872,0-1.256,0.339-1.256,0.798
|
||||
c0,1.302,3.127,0.321,3.127,2.173c0,0.835-0.733,1.376-1.99,1.376C186.417,208.955,185.646,208.698,185.251,208.358z"/>
|
||||
<path style="fill:#263238;" d="M192.946,208.615c-0.257,0.229-0.642,0.339-1.018,0.339c-0.908,0-1.412-0.514-1.412-1.403v-2.916
|
||||
h-0.862v-0.55h0.862v-1.055h0.651v1.055h1.467v0.55h-1.467v2.879c0,0.569,0.294,0.88,0.835,0.88
|
||||
c0.266,0,0.532-0.083,0.715-0.247L192.946,208.615z"/>
|
||||
<path style="fill:#263238;" d="M202.034,202.489v6.419h-0.56l-4.126-5.209v5.209h-0.679v-6.419h0.56l4.136,5.209v-5.209H202.034
|
||||
z"/>
|
||||
<path style="fill:#263238;" d="M207.629,205.919v2.99h-0.624v-0.752c-0.294,0.495-0.862,0.798-1.66,0.798
|
||||
c-1.091,0-1.761-0.569-1.761-1.403c0-0.743,0.477-1.366,1.862-1.366h1.531v-0.294c0-0.825-0.468-1.275-1.366-1.275
|
||||
c-0.624,0-1.211,0.22-1.605,0.569l-0.293-0.486c0.486-0.413,1.201-0.651,1.962-0.651
|
||||
C206.922,204.048,207.629,204.672,207.629,205.919z M206.977,207.46v-0.789h-1.513c-0.936,0-1.238,0.367-1.238,0.862
|
||||
c0,0.559,0.449,0.908,1.22,0.908C206.18,208.441,206.721,208.092,206.977,207.46z"/>
|
||||
<path style="fill:#263238;" d="M217.358,206.112v2.797h-0.651v-2.733c0-1.018-0.514-1.54-1.385-1.54
|
||||
c-0.99,0-1.614,0.642-1.614,1.742v2.531h-0.651v-2.733c0-1.018-0.514-1.54-1.394-1.54c-0.981,0-1.614,0.642-1.614,1.742v2.531
|
||||
h-0.651v-4.824h0.624v0.88c0.339-0.578,0.963-0.917,1.77-0.917c0.798,0,1.421,0.339,1.715,1.018
|
||||
c0.349-0.624,1.037-1.018,1.908-1.018C216.588,204.048,217.358,204.727,217.358,206.112z"/>
|
||||
<path style="fill:#263238;" d="M223.348,206.699h-4.035c0.074,1.009,0.844,1.678,1.898,1.678c0.587,0,1.11-0.211,1.477-0.633
|
||||
l0.367,0.422c-0.431,0.513-1.101,0.789-1.861,0.789c-1.504,0-2.531-1.027-2.531-2.458c0-1.431,0.999-2.449,2.357-2.449
|
||||
c1.357,0,2.338,1,2.338,2.449C223.357,206.552,223.348,206.625,223.348,206.699z M219.313,206.212h3.421
|
||||
c-0.083-0.944-0.77-1.605-1.715-1.605C220.083,204.608,219.395,205.268,219.313,206.212z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Plant">
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M136.442,345.55c0,0-6.62-5.519-12.296,0
|
||||
c-5.676,5.519-6.772,39.711-6.772,39.711"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M116.904,391.863
|
||||
c0,0,3.902-40.126-10.79-56.989"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M118.302,387.634
|
||||
c0,0-3.005-45.68,8.014-55.815"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M116.904,387.634
|
||||
c0,0-0.256-30.185-8.445-34.878c-8.189-4.692-12.363,10.612-12.363,10.612"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M120.139,387.634
|
||||
c0,0-1.336-23.173,5.009-31.455c6.344-8.282,13.023,3.548,13.023,3.548"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:0.9446;stroke-miterlimit:10;" d="M117.928,390.738
|
||||
c0,0,4.103-54.194-2.687-63.377"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M101.447,357.154c0,0,4.083,1.505,2.869,5.059c-1.214,3.554-14.125,9.402-14.125,9.402
|
||||
s-5.407-4.956-0.441-13.017C94.716,350.538,101.337,354.611,101.447,357.154z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M101.447,357.154c0,0,4.083,1.505,2.869,5.059
|
||||
c-1.214,3.554-14.125,9.402-14.125,9.402s-5.407-4.956-0.441-13.017C94.716,350.538,101.337,354.611,101.447,357.154z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M119.197,350.389c0,0-4.348-0.182-4.595,3.565c-0.247,3.747,9.419,14.114,9.419,14.114
|
||||
s6.898-2.494,5.416-11.845C127.956,346.873,120.278,348.084,119.197,350.389z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M119.197,350.389c0,0-4.348-0.182-4.595,3.565
|
||||
c-0.247,3.747,9.419,14.114,9.419,14.114s6.898-2.494,5.416-11.845C127.956,346.873,120.278,348.084,119.197,350.389z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M122.878,332.452c0,0-2.899-0.311-2.665-2.077c0.233-1.766,11.269-6.31,17.779,1.038
|
||||
c0,0-4.169,7.161-10.195,7.255C121.771,338.762,122.878,332.452,122.878,332.452z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M122.878,332.452c0,0-2.899-0.311-2.665-2.077
|
||||
c0.233-1.766,11.269-6.31,17.779,1.038c0,0-4.169,7.161-10.195,7.255C121.771,338.762,122.878,332.452,122.878,332.452z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M117.477,328.164c0,0,2.625,1.269,3.36-0.353c0.736-1.622-6.226-11.315-15.638-8.522
|
||||
c0,0-0.249,8.283,4.816,11.549C115.079,334.105,117.477,328.164,117.477,328.164z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M117.477,328.164c0,0,2.625,1.269,3.36-0.353
|
||||
c0.736-1.622-6.226-11.315-15.638-8.522c0,0-0.249,8.283,4.816,11.549C115.079,334.105,117.477,328.164,117.477,328.164z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M131.201,355.725c0,0-2.001-1.615,0.158-2.404c2.159-0.788,12.753-0.564,12.863,9.93
|
||||
c0,0-12.338,2.05-13.866-1.947C128.83,357.307,131.201,355.725,131.201,355.725z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M131.201,355.725c0,0-2.001-1.615,0.158-2.404
|
||||
c2.159-0.788,12.753-0.564,12.863,9.93c0,0-12.338,2.05-13.866-1.947C128.83,357.307,131.201,355.725,131.201,355.725z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M106.041,332.189c0,0,2.001-1.615-0.158-2.404c-2.159-0.789-12.753-0.565-12.863,9.929
|
||||
c0,0,12.338,2.051,13.866-1.947C108.412,333.771,106.041,332.189,106.041,332.189z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M106.041,332.189c0,0,2.001-1.615-0.158-2.404
|
||||
c-2.159-0.789-12.753-0.565-12.863,9.929c0,0,12.338,2.051,13.866-1.947C108.412,333.771,106.041,332.189,106.041,332.189z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M112.564,340.642c0,0,0.176-1.964-1.409-1.194c-1.585,0.77-7.108,6.728-1.383,12.382
|
||||
c0,0,7.706-5.707,6.317-8.679C114.699,340.178,112.564,340.642,112.564,340.642z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M112.564,340.642c0,0,0.176-1.964-1.409-1.194
|
||||
c-1.585,0.77-7.108,6.728-1.383,12.382c0,0,7.706-5.707,6.317-8.679C114.699,340.178,112.564,340.642,112.564,340.642z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M132.99,343.441c0,0-1.196-1.567,0.556-1.761c1.751-0.194,9.601,1.901,7.773,9.736
|
||||
c0,0-9.563-0.719-9.972-3.974C130.936,344.187,132.99,343.441,132.99,343.441z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M132.99,343.441c0,0-1.196-1.567,0.556-1.761
|
||||
c1.751-0.194,9.601,1.901,7.773,9.736c0,0-9.563-0.719-9.972-3.974C130.936,344.187,132.99,343.441,132.99,343.441z"/>
|
||||
</g>
|
||||
<polygon style="fill:#263238;" points="102.16,416.723 133.075,416.723 137.184,386.661 98.051,386.661 "/>
|
||||
<polygon style="opacity:0.2;fill:#FFFFFF;enable-background:new ;" points="102.16,416.723 133.075,416.723 137.184,386.661
|
||||
98.051,386.661 "/>
|
||||
<path style="fill:#263238;" d="M141.059,384.224v2.856c0,1.911-1.549,3.461-3.461,3.461H97.25c-1.911,0-3.461-1.549-3.461-3.461
|
||||
v-2.856H141.059z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Speech_bubble">
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M398.621,99.306h-28.728c-4.886,0-8.846,3.961-8.846,8.846v25.002
|
||||
c0,4.885,3.961,8.846,8.846,8.846h8.388l-2.028,7.894L384.23,142h14.391c4.885,0,8.846-3.96,8.846-8.846v-25.002
|
||||
C407.467,103.267,403.507,99.306,398.621,99.306z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M398.621,99.306h-28.728c-4.886,0-8.846,3.961-8.846,8.846v25.002
|
||||
c0,4.885,3.961,8.846,8.846,8.846h8.388l-2.028,7.894L384.23,142h14.391c4.885,0,8.846-3.96,8.846-8.846v-25.002
|
||||
C407.467,103.267,403.507,99.306,398.621,99.306z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g style="enable-background:new ;">
|
||||
|
||||
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 27.3078 307.0175)" style="fill:#0d9394;" cx="384.257" cy="120.545" rx="14.258" ry="14.258"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M382.76,126.914c-0.385,0-0.75-0.169-0.999-0.462l-5.594-6.591
|
||||
c-0.468-0.552-0.4-1.378,0.151-1.847c0.551-0.467,1.378-0.401,1.847,0.151l4.595,5.414l7.588-8.94
|
||||
c0.469-0.553,1.296-0.619,1.847-0.151c0.552,0.468,0.62,1.295,0.151,1.847l-8.587,10.118
|
||||
C383.51,126.745,383.145,126.914,382.76,126.914z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Character">
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M393.644,253.557c0,0-17.415-2.192-43.791,5.039c0,0-4.246-47.138-3.74-53.613
|
||||
s40.723-4.579,40.723-4.579s1.038,18.866,3.626,30.249C393.05,242.035,394.97,251.368,393.644,253.557z"/>
|
||||
<path style="opacity:0.2;" d="M393.644,253.557c0,0-17.415-2.192-43.791,5.039c0,0-4.246-47.138-3.74-53.613
|
||||
s40.723-4.579,40.723-4.579s1.038,18.866,3.626,30.249C393.05,242.035,394.97,251.368,393.644,253.557z"/>
|
||||
</g>
|
||||
<polygon style="fill:#E4897B;" points="337.128,409.621 344.228,411.631 345.918,400.581 346.828,394.671 339.728,392.661
|
||||
338.518,400.581 "/>
|
||||
<polygon style="fill:#E4897B;" points="377.948,410.201 385.268,411.171 385.338,400.581 385.388,394.001 378.058,393.041
|
||||
378.008,400.581 "/>
|
||||
<polygon style="opacity:0.2;" points="378.058,393.041 378.008,400.581 385.338,400.581 385.388,394.001 "/>
|
||||
<polygon style="opacity:0.2;" points="338.518,400.581 345.918,400.581 346.828,394.671 339.728,392.661 "/>
|
||||
<g>
|
||||
<path style="fill:#E4897B;" d="M305.608,208.81l-7.048-2.083l1.287,8.049c0,0,6.4,1.479,7.023-1.851L305.608,208.81z"/>
|
||||
<polygon style="fill:#E4897B;" points="291.525,208.596 294.981,215.141 299.847,214.775 298.56,206.727 "/>
|
||||
</g>
|
||||
<polygon style="fill:#E4897B;" points="315.34,210.867 303.765,208.276 302.713,213.898 313.222,216.461 "/>
|
||||
<path style="fill:#0d9394;" d="M350.373,205.794c0,0-0.25,0.3-0.68,0.81c-1.46,1.71-5.03,5.84-8.69,9.4
|
||||
c-3,2.9-6.04,5.43-8.02,5.94c-5.67,1.46-26.28-4.61-26.28-4.61l2.13-8.36c0,0,19.2,2.55,20.69,2.55
|
||||
c1.13,0,12.81-16.92,15.64-18.31L350.373,205.794z"/>
|
||||
<path style="opacity:0.2;" d="M349.693,206.604c-1.46,1.71-5.03,5.84-8.69,9.4c0.74-5.86,2.89-11.24,5.72-14.64
|
||||
c0.3-0.36,0.6-0.66,0.9-0.88L349.693,206.604z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M337.215,408.513l8.063-0.217c0.302-0.008,0.571,0.194,0.647,0.485l1.694,6.493
|
||||
c0.176,0.673-0.318,1.329-1.015,1.336c-2.91,0.029-7.119-0.027-10.775,0.071c-4.275,0.115-6.992-0.095-12.005,0.04
|
||||
c-3.031,0.082-3.982-2.946-2.723-3.256c5.731-1.413,9.477-1.134,14.358-4.332C335.988,408.786,336.578,408.53,337.215,408.513z"
|
||||
/>
|
||||
<path style="fill:#0d9394;" d="M336.525,409.548c-0.007,0.003-0.015,0.005-0.023,0.007c-1.18,0.268-3.286,0.615-4.122-0.077
|
||||
c-0.252-0.209-0.372-0.49-0.358-0.838c0.009-0.207,0.103-0.37,0.272-0.471c0.882-0.53,3.901,0.897,4.242,1.06
|
||||
c0.067,0.032,0.107,0.103,0.099,0.176C336.629,409.47,336.585,409.525,336.525,409.548z M332.538,408.439
|
||||
c-0.023,0.009-0.044,0.018-0.063,0.029c-0.069,0.041-0.1,0.097-0.104,0.189c-0.009,0.236,0.066,0.417,0.231,0.554
|
||||
c0.469,0.388,1.686,0.426,3.307,0.112C334.719,408.799,333.088,408.232,332.538,408.439z"/>
|
||||
<path style="fill:#0d9394;" d="M336.525,409.548c-0.041,0.016-0.087,0.016-0.129-0.002c-0.905-0.374-2.728-1.916-2.623-2.75
|
||||
c0.025-0.196,0.155-0.441,0.634-0.504c0.356-0.046,0.685,0.046,0.981,0.272c0.967,0.742,1.237,2.716,1.248,2.8
|
||||
c0.008,0.062-0.017,0.122-0.067,0.16C336.555,409.534,336.54,409.542,336.525,409.548z M334.277,406.678
|
||||
c-0.143,0.054-0.153,0.133-0.157,0.164c-0.063,0.501,1.182,1.717,2.111,2.237c-0.116-0.576-0.421-1.753-1.056-2.24
|
||||
c-0.221-0.17-0.457-0.236-0.721-0.202C334.38,406.647,334.322,406.661,334.277,406.678z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M378.241,408.513l8.063-0.217c0.302-0.008,0.571,0.194,0.647,0.485l1.694,6.493
|
||||
c0.176,0.673-0.318,1.329-1.015,1.336c-2.91,0.029-7.119-0.027-10.775,0.071c-4.275,0.115-6.992-0.095-12.005,0.04
|
||||
c-3.031,0.082-3.982-2.946-2.723-3.256c5.731-1.413,9.477-1.134,14.358-4.332C377.013,408.786,377.604,408.53,378.241,408.513z"
|
||||
/>
|
||||
<path style="fill:#0d9394;" d="M377.551,409.548c-0.007,0.003-0.015,0.005-0.023,0.007c-1.181,0.268-3.286,0.615-4.122-0.077
|
||||
c-0.252-0.209-0.372-0.49-0.358-0.838c0.009-0.207,0.103-0.37,0.272-0.471c0.882-0.53,3.901,0.897,4.242,1.06
|
||||
c0.067,0.032,0.107,0.103,0.099,0.176C377.655,409.47,377.611,409.525,377.551,409.548z M373.564,408.439
|
||||
c-0.023,0.009-0.044,0.018-0.063,0.029c-0.069,0.041-0.1,0.097-0.103,0.189c-0.009,0.236,0.066,0.417,0.231,0.554
|
||||
c0.469,0.388,1.686,0.426,3.307,0.112C375.745,408.799,374.114,408.232,373.564,408.439z"/>
|
||||
<path style="fill:#0d9394;" d="M377.551,409.548c-0.041,0.016-0.087,0.016-0.129-0.002c-0.905-0.374-2.728-1.916-2.623-2.75
|
||||
c0.025-0.196,0.155-0.441,0.634-0.504c0.356-0.046,0.686,0.046,0.981,0.272c0.967,0.742,1.237,2.716,1.248,2.8
|
||||
c0.008,0.062-0.017,0.122-0.067,0.16C377.581,409.534,377.566,409.542,377.551,409.548z M375.303,406.678
|
||||
c-0.143,0.054-0.153,0.133-0.157,0.164c-0.063,0.501,1.182,1.717,2.111,2.237c-0.116-0.576-0.421-1.753-1.056-2.24
|
||||
c-0.221-0.17-0.457-0.236-0.72-0.202C375.405,406.647,375.348,406.661,375.303,406.678z"/>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M393.049,249.257c3.878,16.816-2.777,149.065-2.777,149.065h-12.862l-5.499-110.215
|
||||
l-20.255,110.215l-13.746-1.001c8.986-85.377,16.93-136.35,16.93-136.35l-0.019-6.441L393.049,249.257z"/>
|
||||
<path style="opacity:0.4;fill:#FFFFFF;" d="M337.908,397.321l13.75,1l15.94-86.76l4.31-23.45l5.5,110.21h12.86
|
||||
c0,0,6.66-132.25,2.78-149.06l-38.23,5.27l0.02,6.44C354.838,260.971,346.898,311.941,337.908,397.321z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M386.121,186.99c-0.465,8.236-0.112,16.451,0.612,24.101c0.533,5.596,1.278,10.887,2.068,15.661
|
||||
c1.849,11.191,3.949,19.578,4.248,22.505c-5.602,0.775-26.715,3.689-38.228,5.273c-13.94-38.978-8.69-61.665-8.69-61.665
|
||||
s3.986-1.703,8.768-3c0.629-0.175,1.273-0.333,1.929-0.484c4.245-0.984,11.337-1.802,16.253-2.243
|
||||
c1.034-0.092,2.085-0.158,3.111-0.206C381.414,186.694,386.121,186.99,386.121,186.99z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E4897B;" d="M365.659,169.45c0.28,5.354,0.849,15.392,5.297,17.937c0,0-2.769,5.275-8.76,5.811
|
||||
c-4.531,0.406-4.23-4.063-4.23-4.063c2.621-1.959,1.992-5.268-0.003-8.999L365.659,169.45z"/>
|
||||
<path style="opacity:0.2;" d="M362.523,173.809l-4.556,6.321c0.476,0.882,0.901,1.791,1.201,2.701
|
||||
c2.107-0.842,4.509-3.956,4.167-6.291C363.165,175.375,362.842,174.294,362.523,173.809z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M346.161,158.685c-0.874,2.775-0.395,8.477,3.483,6.623S347.663,153.915,346.161,158.685z"/>
|
||||
<path style="fill:#E4897B;" d="M366.159,162.435c0.426,7.133,1.04,11.29-2.105,15.327c-4.73,6.072-13.893,3.807-16.449-3.075
|
||||
c-2.301-6.195-2.611-16.819,3.998-20.415C358.115,150.729,365.733,155.302,366.159,162.435z"/>
|
||||
<path style="fill:#263238;" d="M361.158,158.557v-7.969c0,0,8.482-0.63,8.105,3.711c4.698,2.33,2.477,9.639-3.833,13.223
|
||||
c-3.458-2.768-3.063-9.434-3.063-9.434C361.994,158.253,361.584,158.408,361.158,158.557z"/>
|
||||
<path style="fill:#E4897B;" d="M369.61,168.005c-0.344,1.892-1.535,3.441-2.854,4.309c-1.985,1.306-3.721-0.299-3.792-2.554
|
||||
c-0.064-2.03,0.892-5.155,3.184-5.557C368.405,163.808,370.004,165.842,369.61,168.005z"/>
|
||||
<path style="fill:#263238;" d="M355.626,165.619c0.07,0.577-0.179,1.079-0.557,1.121c-0.378,0.042-0.741-0.391-0.812-0.968
|
||||
c-0.07-0.577,0.179-1.079,0.557-1.121C355.192,164.609,355.556,165.042,355.626,165.619z"/>
|
||||
<path style="fill:#263238;" d="M349.089,166.349c0.07,0.577-0.179,1.079-0.557,1.121c-0.378,0.042-0.741-0.391-0.812-0.968
|
||||
c-0.07-0.577,0.179-1.079,0.557-1.121C348.655,165.339,349.018,165.772,349.089,166.349z"/>
|
||||
<path style="fill:#DE5753;" d="M351.202,166.404c0,0-0.958,3.354-2.23,5.073c1.119,0.788,2.805,0.157,2.805,0.157
|
||||
L351.202,166.404z"/>
|
||||
<path style="fill:#263238;" d="M355.145,173.494c-0.233,0.059-0.482,0.104-0.747,0.134c-0.094,0.01-0.179-0.057-0.19-0.15
|
||||
c-0.012-0.094,0.058-0.178,0.149-0.188c2.54-0.287,3.508-2.185,3.518-2.204c0.041-0.084,0.145-0.117,0.229-0.076
|
||||
c0.085,0.042,0.12,0.145,0.078,0.229C358.144,171.315,357.309,172.953,355.145,173.494z"/>
|
||||
<path style="fill:#263238;" d="M357.385,163.288c-0.115,0.029-0.243-0.003-0.332-0.096c-1.061-1.102-2.301-0.89-2.314-0.888
|
||||
c-0.186,0.034-0.365-0.089-0.401-0.273c-0.036-0.185,0.087-0.363,0.271-0.397c0.065-0.012,1.62-0.279,2.936,1.089
|
||||
c0.131,0.137,0.128,0.352-0.008,0.482C357.493,163.247,357.44,163.274,357.385,163.288z"/>
|
||||
<path style="fill:#263238;" d="M345.999,164.421c-0.063,0.016-0.131,0.014-0.197-0.009c-0.179-0.063-0.274-0.258-0.212-0.435
|
||||
c0.617-1.781,2.142-2.154,2.208-2.18c0.183-0.044,0.369,0.069,0.415,0.251c0.046,0.182-0.064,0.365-0.246,0.411
|
||||
c-0.064,0.013-1.236,0.316-1.731,1.745C346.198,164.316,346.106,164.394,345.999,164.421z"/>
|
||||
<path style="fill:#263238;" d="M364.924,161.517c0,0-4.972-1.823-7.283-4.724c0,0-4.538,1.187-5.468,3.033
|
||||
c0,0-1.574-1.319-0.395-3.033c0,0-3.396,0.717-4.07,3.033c0,0-1.695-0.581-1.594-3.033c0,0-1.514,0.57-1.992,3.033
|
||||
c0,0-3.756-7.813,8.633-10.055c0,0-0.978-0.412-2.902-0.495c0,0,8.642-3.487,15.499-0.293
|
||||
C372.21,152.178,370.957,158.31,364.924,161.517z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M396.003,255.984l-11.99,1.6c0,0-4.95-34.59-7.13-45.76v-23.86l6.27-1.65l4.83,1.65
|
||||
c1.16,3.87,2.18,8.95,3.07,14.6c0.59,3.74,1.12,7.74,1.59,11.79c0.65,5.52,1.19,11.14,1.65,16.4c0.72,8.49,1.2,16.01,1.46,20.59
|
||||
C395.923,254.264,396.003,255.984,396.003,255.984z"/>
|
||||
<path style="fill:#0d9394;" d="M376.884,211.821c0,0,0.996-16.828,6.271-25.51c0,0-0.132-2.484-1.187-2.88
|
||||
c-1.055-0.396-5.084,1.978-5.084,1.978s-2.512-1.714-3.065-0.923S371.931,190.629,376.884,211.821z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M376.884,211.821c0,0,0.996-16.828,6.271-25.51c0,0-0.132-2.484-1.187-2.88
|
||||
c-1.055-0.396-5.084,1.978-5.084,1.978s-2.512-1.714-3.065-0.923S371.931,190.629,376.884,211.821z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M349.598,260.615l1.37,0.99c0,0-1.98-11.154-1.18-39.354c0.04-1.36,0.09-2.67,0.14-3.92
|
||||
c1.02-23.86,4.72-28.2,4.96-28.46l-3.46,1.18l-6.27,2.16C343.308,213.571,349.598,260.615,349.598,260.615z"/>
|
||||
<path style="fill:#0d9394;" d="M350.141,214.226c0,0-3.463-16.354-2.433-21.992c1.029-5.638,4.722-3.133,4.722-3.133
|
||||
s3.393-2.738,4.4,0.279C356.829,189.381,352.173,192.661,350.141,214.226z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M350.141,214.226c0,0-3.463-16.354-2.433-21.992c1.029-5.638,4.722-3.133,4.722-3.133
|
||||
s3.393-2.738,4.4,0.279C356.829,189.381,352.173,192.661,350.141,214.226z"/>
|
||||
</g>
|
||||
<path style="opacity:0.2;" d="M392.643,214.354c-5.12-2.87-5.8-10.36-5.8-10.36c0.31-0.12,2.21-0.77,4.21-1.43
|
||||
C391.643,206.304,392.173,210.304,392.643,214.354z"/>
|
||||
<path style="opacity:0.2;" d="M367.598,311.561l4.31-23.45l-0.83-12.41C371.078,275.701,365.168,297.221,367.598,311.561z"/>
|
||||
<path style="opacity:0.2;" d="M395.753,251.344c-3.22-0.22-6.01-0.43-6.01-0.43l-0.61-13.09c0,0,1.04-0.87,3.37-0.62
|
||||
c0,0,1.05-2.56,1.79-6.45C395.013,239.244,395.493,246.764,395.753,251.344z"/>
|
||||
<g>
|
||||
<polygon style="fill:#E4897B;" points="396.852,230.741 390.582,240.809 395.541,243.66 401.432,234.588 "/>
|
||||
<path style="fill:#0d9394;" d="M387.733,187.838c4.222,0.464,22.156,25.081,22.947,32.503
|
||||
c0.791,7.421-10.535,20.231-10.535,20.231l-7.569-4.453c0,0,7.686-11.81,8.082-14.962s-14.047-16.074-14.047-16.074
|
||||
s-1.577-3.796-1.777-9.26C384.633,190.359,387.733,187.838,387.733,187.838z"/>
|
||||
<path style="fill:#0d9394;" d="M389.128,237.826c0,0,6.455,1.385,9.048,5.439c0,0-2.694,8.45-4.622,9.37
|
||||
c-1.927,0.92-6.716,0.92-6.716,0.92S386.531,244.156,389.128,237.826z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 52 KiB |
970
src/assets/illustration/reset-password-cover-dark.svg
Normal file
@@ -0,0 +1,970 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
|
||||
<g id="Background_Complete">
|
||||
<rect x="416.779" y="398.494" style="fill:#2b3044;" width="33.122" height="0.25"/>
|
||||
<rect x="322.527" y="401.208" style="fill:#2b3044;" width="8.693" height="0.25"/>
|
||||
<rect x="396.586" y="389.208" style="fill:#2b3044;" width="19.192" height="0.25"/>
|
||||
<rect x="52.459" y="390.888" style="fill:#2b3044;" width="43.193" height="0.25"/>
|
||||
<rect x="104.556" y="390.888" style="fill:#2b3044;" width="6.333" height="0.25"/>
|
||||
<rect x="131.471" y="395.111" style="fill:#2b3044;" width="93.676" height="0.25"/>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M238.401,337.8H45.302c-3.147,0-5.708-2.561-5.708-5.708V60.66c0-3.147,2.561-5.708,5.708-5.708
|
||||
h193.099c3.146,0,5.707,2.561,5.707,5.708v271.432C244.108,335.239,241.547,337.8,238.401,337.8z M45.302,55.203
|
||||
c-3.01,0-5.458,2.448-5.458,5.458v271.432c0,3.01,2.448,5.458,5.458,5.458h193.099c3.009,0,5.457-2.448,5.457-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.457-5.458H45.302z"/>
|
||||
<path style="fill:#2b3044;" d="M454.698,337.8H261.599c-3.146,0-5.707-2.561-5.707-5.708V60.66c0-3.147,2.561-5.708,5.707-5.708
|
||||
h193.099c3.148,0,5.708,2.561,5.708,5.708v271.432C460.406,335.239,457.845,337.8,454.698,337.8z M261.599,55.203
|
||||
c-3.009,0-5.457,2.448-5.457,5.458v271.432c0,3.01,2.448,5.458,5.457,5.458h193.099c3.01,0,5.458-2.448,5.458-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.458-5.458H261.599z"/>
|
||||
</g>
|
||||
<rect y="382.398" style="fill:#2b3044;" width="500" height="0.25"/>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<rect x="350.073" y="249.948" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 795.3231 626.5402)" style="fill:#2b3044;" width="95.177" height="126.645"/>
|
||||
|
||||
<rect x="331.917" y="249.948" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 681.9898 626.5402)" style="fill:#2b3044;" width="18.156" height="126.645"/>
|
||||
|
||||
<rect x="356.25" y="259.345" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 794.8336 549.4448)" style="fill:#2b3044;" width="82.333" height="30.755"/>
|
||||
<path style="fill:#2b3044;" d="M408.153,259.345l-0.36,4.1c-0.119,1.352-1.251,2.39-2.609,2.39h-15.536
|
||||
c-1.357,0-2.49-1.037-2.609-2.39l-0.36-4.1H408.153z"/>
|
||||
|
||||
<rect x="356.25" y="293.459" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 794.8336 617.674)" style="fill:#2b3044;" width="82.333" height="30.755"/>
|
||||
<path style="fill:#2b3044;" d="M408.153,293.459l-0.36,4.1c-0.119,1.352-1.251,2.39-2.609,2.39h-15.536
|
||||
c-1.357,0-2.49-1.038-2.609-2.39l-0.36-4.1H408.153z"/>
|
||||
|
||||
<rect x="356.25" y="327.574" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 794.8336 685.9032)" style="fill:#2b3044;" width="82.333" height="30.755"/>
|
||||
<path style="fill:#2b3044;" d="M408.153,327.574l-0.36,4.1c-0.119,1.352-1.251,2.39-2.609,2.39h-15.536
|
||||
c-1.357,0-2.49-1.038-2.609-2.39l-0.36-4.1H408.153z"/>
|
||||
<polygon style="fill:#2b3044;" points="356.25,382.915 437.583,382.915 438.583,376.582 356.25,376.582 "/>
|
||||
<polygon style="fill:#2b3044;" points="339.25,382.915 356.25,382.915 356.25,376.582 338.25,376.582 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#2b3044;" points="394.482,250.084 426.982,250.084 423.376,208.868 390.876,208.868 "/>
|
||||
<polygon style="fill:#2b3044;" points="394.482,250.084 392.93,250.084 389.324,208.868 390.876,208.868 "/>
|
||||
<polygon style="fill:#2b3044;" points="397.427,245.882 423.3,245.882 420.43,213.07 394.557,213.07 "/>
|
||||
<polygon style="fill:#2b3044;" points="399.321,243.181 420.934,243.181 418.536,215.771 396.923,215.771 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#2b3044;" points="385.35,250.084 387.582,224.573 355.229,224.573 352.997,250.084 "/>
|
||||
<polygon style="fill:#2b3044;" points="385.35,250.084 387.582,224.573 389.324,224.573 387.092,250.084 "/>
|
||||
<polygon style="fill:#2b3044;" points="382.279,247.483 384.056,227.174 358.3,227.174 356.523,247.483 "/>
|
||||
<polygon style="fill:#2b3044;" points="380.305,245.811 381.789,228.846 360.274,228.846 358.789,245.811 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M310.644,365.77c0,6.76-1.061,11.133-2.848,13.938c-1.344,2.111-3.756,3.297-6.259,3.297h-9.788
|
||||
c-2.502,0-4.914-1.187-6.259-3.297c-1.787-2.806-2.848-7.178-2.848-13.938c0-9.805,4.275-17.655,5.671-23.923
|
||||
c0.503-2.257-1.171-9.174-1.171-9.174h19c0,0-1.674,6.918-1.171,9.174C306.369,348.115,310.644,355.965,310.644,365.77z"/>
|
||||
<path style="fill:#2b3044;" d="M343,326.087c0-8.513-13.346-4.979-16.71-18.186c-1.275-5.005,9.58-16.332,9.58-16.332h-33.845
|
||||
c0,0,10.855,11.327,9.58,16.332c-3.364,13.207-16.71,9.673-16.71,18.186c0,9.376,18.827,28.903,19.734,50.882
|
||||
c0.081,1.965-3.541,6.037-3.541,6.037h15.718c0,0-3.622-4.072-3.541-6.037C324.173,354.99,343,335.463,343,326.087z"/>
|
||||
<path style="fill:#2b3044;" d="M332.771,348.21c1.967-4.138-2.1-18.205-2.1-18.205h14.667c0,0-4.068,14.068-2.101,18.205
|
||||
c1.389,2.921,4.548,4.786,4.548,8.242v20.772c0,5.379-4.401,5.781-9.781,5.781s-9.781-0.401-9.781-5.781v-20.772
|
||||
C328.223,352.996,331.382,351.131,332.771,348.21z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M165.152,225.528c-8.426-3.649-13.234-11.349-10.715-17.165
|
||||
c2.518-5.816,11.424-7.579,19.85-3.931c8.428,3.649,13.235,11.35,10.717,17.166
|
||||
C182.485,227.414,173.58,229.177,165.152,225.528z M171.86,210.037c-3.949-1.71-8.121-0.883-9.301,1.842
|
||||
c-1.18,2.725,1.072,6.333,5.021,8.043c3.949,1.71,8.122,0.884,9.302-1.841C178.062,215.356,175.808,211.747,171.86,210.037z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M175.066,210.36l-4.004-1.734l24.197-55.935c0.479-1.106,1.763-1.615,2.869-1.136l0,0
|
||||
c1.105,0.479,1.614,1.762,1.135,2.868L175.066,210.36z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#2b3044;" points="201.117,159.831 193.434,156.474 195.167,152.47 202.851,155.827 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#2b3044;" points="197.33,164.308 191.828,161.918 193.562,157.914 199.063,160.304 "/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<rect x="191.366" y="165.542" transform="matrix(0.3974 -0.9177 0.9177 0.3974 -38.3573 279.3987)" style="fill:#2b3044;" width="4.363" height="6.723"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M176.623,204.389l-2.2-0.952c-1.096-0.475-1.6-1.748-1.125-2.844l0.015-0.034
|
||||
c0.475-1.096,1.748-1.6,2.844-1.125l2.2,0.952c1.096,0.475,1.6,1.748,1.125,2.844l-0.015,0.034
|
||||
C178.992,204.359,177.719,204.863,176.623,204.389z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M348.469,185.16c6.676,4.448,8.399,13.635,3.838,20.48c-4.56,6.844-13.703,8.794-20.379,4.346
|
||||
c-6.677-4.449-8.399-13.637-3.839-20.481C332.65,182.66,341.792,180.712,348.469,185.16z M336.324,203.389
|
||||
c3.129,2.084,7.412,1.171,9.549-2.036c2.137-3.207,1.33-7.512-1.799-9.596c-3.129-2.085-7.413-1.172-9.55,2.035
|
||||
C332.388,196.999,333.195,201.305,336.324,203.389z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M334.707,201.614l4.139,2.758l-29.614,45.32c-0.761,1.143-2.306,1.453-3.449,0.691h0
|
||||
c-1.143-0.761-1.452-2.305-0.691-3.447L334.707,201.614z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M305.278,237.054l8.71,5.85l-4.348,6.526l-8.727-5.861c-1.253-0.841-1.589-2.538-0.753-3.794
|
||||
l1.31-1.965C302.312,236.547,304.019,236.209,305.278,237.054z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M227.537,98.556l-4.597,11.908c-0.414,1.073-1.62,1.607-2.693,1.193
|
||||
c-1.073-0.414-1.607-1.62-1.193-2.694l4.597-11.908c1.485-3.845-0.435-8.184-4.281-9.669l-4.26-1.645
|
||||
c-3.845-1.485-8.183,0.438-9.667,4.284l-1.877,4.862l-3.886-1.5l1.877-4.862c2.312-5.99,9.067-8.981,15.054-6.67l4.26,1.645
|
||||
C226.857,85.812,229.849,92.566,227.537,98.556z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M226.81,100.432c-0.306-0.395-0.722-0.717-1.221-0.91l-23.201-8.957
|
||||
c-0.517-0.2-1.061-0.241-1.566-0.139c-0.927,0.182-1.748,0.823-2.113,1.768l-8.957,23.201
|
||||
c-0.567,1.468,0.161,3.112,1.63,3.679l23.201,8.957c1.468,0.567,3.112-0.161,3.679-1.63l8.957-23.201
|
||||
C227.591,102.238,227.406,101.195,226.81,100.432z M209.194,118.36l-7.358-2.841l3.89-6.791
|
||||
c-0.49-0.985-0.58-2.167-0.152-3.277c0.812-2.102,3.174-3.154,5.277-2.342c2.102,0.812,3.151,3.18,2.34,5.282
|
||||
c-0.428,1.11-1.289,1.924-2.32,2.323L209.194,118.36z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<rect x="69.158" y="269.824" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 323.4438 639.2804)" style="fill:#2b3044;" width="185.129" height="99.632"/>
|
||||
|
||||
<rect x="239.445" y="373.593" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 490.5247 755.9769)" style="fill:#2b3044;" width="11.635" height="8.791"/>
|
||||
|
||||
<rect x="55.025" y="262.412" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 121.6854 644.7964)" style="fill:#2b3044;" width="11.635" height="119.972"/>
|
||||
<path style="fill:#2b3044;" d="M66.521,262.412v119.972h6.205v-6.723H251.08v6.723h6.206V262.412h-3.103h-3.103H72.727h-3.103
|
||||
H66.521z M72.727,273.272h86.074v41.669H72.727V273.272z M251.08,364.802h-86.074v-91.53h86.074V364.802z M72.727,364.802
|
||||
v-43.656h86.074v43.656H72.727z"/>
|
||||
|
||||
<rect x="165.006" y="277.754" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 410.2685 642.5555)" style="fill:#2b3044;" width="80.256" height="87.048"/>
|
||||
<path style="fill:#2b3044;" d="M168.64,318.669c0,2.059,1.669,3.729,3.729,3.729c2.059,0,3.729-1.669,3.729-3.729
|
||||
s-1.669-3.729-3.729-3.729C170.31,314.941,168.64,316.61,168.64,318.669z"/>
|
||||
<path style="fill:#2b3044;" d="M172.369,322.398c1.504,0,2.792-0.895,3.381-2.177c0.218,0.474,0.347,0.996,0.347,1.551
|
||||
c0,2.059-1.669,3.729-3.729,3.729c-2.059,0-3.729-1.669-3.729-3.729c0-0.555,0.13-1.078,0.347-1.551
|
||||
C169.577,321.503,170.865,322.398,172.369,322.398z"/>
|
||||
<polygon style="fill:#2b3044;" points="214.137,364.802 194.99,364.802 185.841,277.754 204.988,277.754 "/>
|
||||
<polygon style="fill:#2b3044;" points="190.086,364.802 186.275,364.802 177.126,277.754 180.937,277.754 "/>
|
||||
|
||||
<rect x="139.402" y="277.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 286.3894 592.5673)" style="fill:#2b3044;" width="7.584" height="37.232"/>
|
||||
|
||||
<rect x="107.956" y="277.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 223.496 592.5673)" style="fill:#2b3044;" width="7.584" height="37.232"/>
|
||||
|
||||
<rect x="131.818" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 271.2205 595.1838)" style="fill:#2b3044;" width="7.584" height="34.616"/>
|
||||
|
||||
<rect x="115.54" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 238.6649 595.1838)" style="fill:#2b3044;" width="7.584" height="34.616"/>
|
||||
|
||||
<rect x="123.125" y="277.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 251.1505 592.5673)" style="fill:#2b3044;" width="4.901" height="37.232"/>
|
||||
|
||||
<rect x="128.026" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 259.8438 595.1838)" style="fill:#2b3044;" width="3.792" height="34.616"/>
|
||||
|
||||
<rect x="100.371" y="277.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 208.3272 592.5673)" style="fill:#2b3044;" width="7.584" height="37.232"/>
|
||||
|
||||
<rect x="92.787" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 193.1584 595.1838)" style="fill:#2b3044;" width="7.584" height="34.616"/>
|
||||
|
||||
<rect x="76.509" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 160.6028 595.1838)" style="fill:#2b3044;" width="7.584" height="34.616"/>
|
||||
|
||||
<rect x="84.094" y="277.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 173.0884 592.5673)" style="fill:#2b3044;" width="4.901" height="37.232"/>
|
||||
|
||||
<rect x="88.995" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 181.7818 595.1838)" style="fill:#2b3044;" width="3.792" height="34.616"/>
|
||||
|
||||
<rect x="72.717" y="278.549" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 149.2262 593.4492)" style="fill:#2b3044;" width="3.792" height="36.351"/>
|
||||
<rect x="72.717" y="327.569" style="fill:#2b3044;" width="7.584" height="37.232"/>
|
||||
<rect x="104.164" y="327.569" style="fill:#2b3044;" width="7.584" height="37.232"/>
|
||||
<rect x="80.301" y="330.186" style="fill:#2b3044;" width="7.584" height="34.616"/>
|
||||
<rect x="96.579" y="330.186" style="fill:#2b3044;" width="7.584" height="34.616"/>
|
||||
<rect x="91.678" y="327.569" style="fill:#2b3044;" width="4.901" height="37.232"/>
|
||||
<rect x="87.886" y="330.186" style="fill:#2b3044;" width="3.792" height="34.616"/>
|
||||
<rect x="111.748" y="327.569" style="fill:#2b3044;" width="7.584" height="37.232"/>
|
||||
<rect x="119.332" y="330.186" style="fill:#2b3044;" width="7.584" height="34.616"/>
|
||||
<rect x="135.61" y="330.186" style="fill:#2b3044;" width="7.584" height="34.616"/>
|
||||
<rect x="130.709" y="327.569" style="fill:#2b3044;" width="4.901" height="37.232"/>
|
||||
<rect x="146.987" y="327.569" style="fill:#2b3044;" width="4.901" height="37.232"/>
|
||||
<rect x="126.917" y="330.186" style="fill:#2b3044;" width="3.792" height="34.616"/>
|
||||
<rect x="143.195" y="328.451" style="fill:#2b3044;" width="3.792" height="36.351"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M81.18,198.288c0,0-1.273,0.586-1.855,1.77c-0.582,1.184,1.223,3.37,1.223,3.37
|
||||
s1.515,1.055,3.021,0.371c1.506-0.684,1.506-0.684,1.506-0.684s-2.575-4.468-3.825-4.513L81.18,198.288z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M87.628,198.253c0.184,2.119-1.13,4.793-3.022,4.957c-1.892,0.164-3.646-2.243-3.83-4.363
|
||||
c-0.184-2.119,1.344-2.326,3.236-2.49C85.903,196.193,87.444,196.134,87.628,198.253z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M82.085,197.629c0,0,1.446,1.152,4.425,0.479C86.51,198.108,81.811,201.243,82.085,197.629z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M83.36,197.208c0,0,1.668-0.29,1.692,0.406c0,0,1.415-0.079,1.219-0.671
|
||||
C86.076,196.351,83.36,197.208,83.36,197.208z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M82.085,197.629c0,0,1.446,1.152,4.425,0.479C86.51,198.108,81.811,201.243,82.085,197.629z"
|
||||
/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M83.36,197.208c0,0,1.668-0.29,1.692,0.406c0,0,1.415-0.079,1.219-0.671
|
||||
C86.076,196.351,83.36,197.208,83.36,197.208z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M81.429,203.88c0.602,0.976,1.83,1.478,2.968,1.342c1.139-0.136,2.164-0.847,2.821-1.787
|
||||
c0.657-0.94,0.97-2.089,1.043-3.233c0.019-0.296,0.042-1.037-0.348-1.152c-0.358-0.105-0.579,0.396-0.745,0.629
|
||||
c-0.477,0.672-0.983,1.301-1.59,1.862c-0.589,0.543-1.24,1.019-1.937,1.413C83.445,203.064,81.535,204.052,81.429,203.88z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M89.547,199.648c0.358,0.859,0.228,1.904-0.331,2.648c-0.367,0.489-0.887,0.838-1.411,1.154
|
||||
c-0.364,0.22-0.833,0.428-1.19,0.197c-0.385-0.249-0.35-0.815-0.262-1.265c0.136-0.693,0.291-1.383,0.465-2.068
|
||||
c0.143-0.562,0.229-1.502,0.558-1.979c0.31-0.449,0.749-0.183,1.217,0.143C89.01,198.769,89.351,199.176,89.547,199.648z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M81.913,202.706c-0.731-0.031-1.422-0.526-1.688-1.207c-0.196-0.504-0.193-1.783,0.46-1.945
|
||||
C80.974,200.689,81.224,201.721,81.913,202.706z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M86.844,202.655c0.69-0.197,1.264-0.761,1.474-1.447c0.116-0.379-0.031-2.316-0.606-1.502
|
||||
c-0.188,0.266-0.153,1.116-0.251,1.46C87.314,201.683,87.107,202.185,86.844,202.655z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M84.202,203.851c0.534,0.454,1.387,0.476,1.943,0.05c-0.073,0.375-1.253,0.688-1.619,0.795
|
||||
c-0.953,0.28-1.452-0.139-2.377-0.525C82.149,204.171,83.614,204.394,84.202,203.851z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#2b3044;" points="82.547,242.801 82.637,213.949 84.117,205.175 84.679,205.27 83.206,214.004
|
||||
83.102,243.349 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M83.148,213.803l-0.452,0.347c-0.453-0.59-0.861-1.36-1.333-2.252
|
||||
c-0.73-1.378-1.558-2.941-2.815-4.323l0.422-0.383c1.305,1.436,2.151,3.032,2.897,4.44
|
||||
C82.326,212.501,82.724,213.251,83.148,213.803z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M83.496,209.933c0.768-0.202,1.456-0.691,1.899-1.35c0.503-0.748,0.678-1.663,0.842-2.549
|
||||
c-0.996,0.298-2.066-0.186-3.098-0.067c-0.823,0.095-1.59,0.596-2.006,1.313c-0.539,0.928-0.758,1.981-0.282,2.406
|
||||
C81.243,210.035,82.469,210.203,83.496,209.933z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M79.662,207.941c-0.92,0.583-2.103,0.731-3.138,0.393c-1.035-0.337-1.337-1.893-1.738-2.906
|
||||
c0.939-0.193,3.324-0.058,3.864-0.004c0.54,0.054,1.088,0.298,1.379,0.756c0.29,0.458,0.237,1.146-0.203,1.463
|
||||
C79.796,207.625,79.662,207.941,79.662,207.941z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M74.929,209.626c0.633-0.766,2.193-1.321,3.17-1.143c0.977,0.178,1.811,0.851,2.161,1.65
|
||||
c-0.258,0.62-0.95,0.971-1.62,1.019c-0.67,0.048-1.331-0.15-1.974-0.346c-0.642-0.196-1.303-0.395-1.973-0.347
|
||||
L74.929,209.626z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M94.177,204.666c0,0,1.044,0.935,1.252,2.237c0.208,1.303-2.16,2.862-2.16,2.862
|
||||
s-1.759,0.563-2.997-0.533c-1.238-1.097-1.238-1.097-1.238-1.097s3.775-3.514,4.982-3.189L94.177,204.666z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M88.024,202.737c-0.799,1.972-0.329,4.913,1.432,5.626c1.76,0.713,4.145-1.072,4.943-3.044
|
||||
c0.799-1.971-0.601-2.618-2.361-3.331C90.278,201.275,88.823,200.765,88.024,202.737z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M93.506,203.77c0,0-1.721,0.676-4.371-0.843C89.135,202.927,92.704,207.304,93.506,203.77z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M92.41,202.992c0,0-1.508-0.768-1.737-0.11c0,0-1.329-0.491-0.968-1
|
||||
C90.067,201.375,92.41,202.992,92.41,202.992z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M93.506,203.77c0,0-1.721,0.676-4.371-0.843C89.135,202.927,92.704,207.304,93.506,203.77z"
|
||||
/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M92.41,202.992c0,0-1.508-0.768-1.737-0.11c0,0-1.329-0.491-0.968-1
|
||||
C90.067,201.375,92.41,202.992,92.41,202.992z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M92.294,209.937c-0.862,0.756-2.183,0.875-3.232,0.41c-1.048-0.465-1.819-1.446-2.171-2.538
|
||||
c-0.352-1.091-0.313-2.282-0.046-3.397c0.069-0.289,0.265-1.004,0.672-0.998c0.374,0.005,0.437,0.548,0.527,0.82
|
||||
c0.259,0.783,0.557,1.532,0.973,2.247c0.403,0.692,0.886,1.338,1.436,1.92C90.608,208.565,92.142,210.071,92.294,209.937z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M85.78,203.505c-0.595,0.716-0.777,1.753-0.462,2.629c0.207,0.575,0.602,1.062,1.009,1.518
|
||||
c0.284,0.317,0.671,0.654,1.08,0.538c0.442-0.125,0.575-0.676,0.622-1.132c0.074-0.703,0.129-1.407,0.164-2.113
|
||||
c0.029-0.579,0.223-1.503,0.048-2.055c-0.164-0.52-0.662-0.395-1.205-0.221C86.551,202.823,86.106,203.112,85.78,203.505z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M92.178,208.673c0.708,0.185,1.513-0.084,1.968-0.658c0.336-0.424,0.708-1.647,0.132-1.994
|
||||
C93.667,207.021,93.125,207.934,92.178,208.673z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M87.479,207.174c-0.602-0.391-0.985-1.099-0.984-1.817c0-0.396,0.711-2.205,1.021-1.258
|
||||
c0.101,0.309-0.182,1.112-0.19,1.469C87.315,206.107,87.366,206.648,87.479,207.174z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M89.652,209.094c-0.643,0.277-1.465,0.047-1.872-0.523c-0.041,0.379,0.995,1.026,1.314,1.236
|
||||
c0.829,0.548,1.428,0.294,2.426,0.197C91.521,210.004,90.055,209.786,89.652,209.094z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#2b3044;" points="81.727,238.493 82.086,237.311 82.571,235.719 83.132,233.861 87.618,219.09
|
||||
88.179,214.851 88.677,211.09 88.78,210.309 89.059,210.345 89.063,210.349 89.346,210.385 89.338,210.453 89.238,211.189
|
||||
88.709,215.209 88.275,218.485 88.179,219.205 88.144,219.321 83.129,235.819 82.563,237.67 82.304,238.529 81.946,239.704
|
||||
"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M87.734,218.917l0.33,0.465c0.606-0.431,1.223-1.047,1.936-1.76
|
||||
c1.103-1.103,2.354-2.352,3.962-3.305l-0.29-0.49c-1.67,0.988-2.947,2.265-4.074,3.392
|
||||
C88.902,217.913,88.302,218.514,87.734,218.917z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M88.539,215.115c-0.674-0.419-1.188-1.089-1.419-1.848c-0.261-0.863-0.159-1.789-0.055-2.684
|
||||
c0.865,0.577,2.029,0.43,2.981,0.847c0.759,0.332,1.344,1.037,1.531,1.844c0.242,1.046,0.142,2.116-0.438,2.383
|
||||
C90.663,215.875,89.441,215.675,88.539,215.115z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M92.79,214.339c0.709,0.827,1.795,1.317,2.884,1.299c1.089-0.018,1.835-1.417,2.516-2.267
|
||||
c-0.841-0.46-3.16-1.033-3.692-1.14c-0.532-0.107-1.128-0.035-1.54,0.317c-0.412,0.353-0.563,1.026-0.236,1.458
|
||||
C92.754,213.997,92.79,214.339,92.79,214.339z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M96.818,217.341c-0.38-0.918-1.707-1.908-2.694-2.025c-0.986-0.117-1.981,0.281-2.55,0.942
|
||||
c0.065,0.669,0.623,1.207,1.249,1.45c0.626,0.243,1.316,0.248,1.988,0.249c0.672,0.001,1.361,0.006,1.988,0.248
|
||||
L96.818,217.341z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M73.923,203.513c0,0-1.147,0.806-1.507,2.075c-0.36,1.269,1.809,3.096,1.809,3.096
|
||||
s1.68,0.766,3.038-0.178c1.358-0.944,1.358-0.944,1.358-0.944s-3.336-3.933-4.573-3.752L73.923,203.513z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M80.26,202.32c0.561,2.052-0.251,4.918-2.083,5.419c-1.832,0.501-3.99-1.552-4.551-3.604
|
||||
c-0.562-2.052,0.904-2.529,2.736-3.031S79.698,200.268,80.26,202.32z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M74.695,202.702c0,0,1.63,0.873,4.44-0.324C79.135,202.378,75.075,206.306,74.695,202.702z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M75.874,202.058c0,0,1.588-0.585,1.737,0.095c0,0,1.378-0.332,1.079-0.879
|
||||
C78.391,200.728,75.874,202.058,75.874,202.058z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M74.695,202.702c0,0,1.63,0.873,4.44-0.324C79.135,202.378,75.075,206.306,74.695,202.702z"
|
||||
/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M75.874,202.058c0,0,1.588-0.585,1.737,0.095c0,0,1.378-0.332,1.079-0.879
|
||||
C78.391,200.728,75.874,202.058,75.874,202.058z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M75.173,208.969c0.768,0.852,2.065,1.125,3.161,0.787c1.096-0.338,1.976-1.222,2.454-2.265
|
||||
c0.477-1.043,0.579-2.229,0.445-3.368c-0.035-0.295-0.145-1.028-0.55-1.07c-0.371-0.039-0.498,0.493-0.62,0.753
|
||||
c-0.349,0.747-0.733,1.456-1.23,2.117c-0.482,0.64-1.037,1.225-1.652,1.738C77.009,207.804,75.309,209.119,75.173,208.969z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M82.399,203.347c0.507,0.781,0.566,1.832,0.15,2.665c-0.273,0.547-0.722,0.984-1.181,1.388
|
||||
c-0.319,0.281-0.743,0.571-1.136,0.408c-0.424-0.176-0.491-0.739-0.485-1.198c0.009-0.706,0.038-1.413,0.086-2.118
|
||||
c0.039-0.578-0.045-1.519,0.193-2.047c0.224-0.497,0.704-0.314,1.223-0.078C81.713,202.579,82.121,202.918,82.399,203.347z"
|
||||
/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M75.438,207.727c-0.725,0.101-1.493-0.262-1.877-0.884c-0.284-0.461-0.51-1.719,0.103-1.996
|
||||
C74.152,205.912,74.583,206.882,75.438,207.727z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M80.28,206.791c0.644-0.318,1.107-0.975,1.19-1.689c0.046-0.394-0.447-2.273-0.867-1.369
|
||||
c-0.137,0.296,0.05,1.126,0.016,1.482C80.568,205.751,80.454,206.281,80.28,206.791z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#2b3044;" d="M77.896,208.442c0.606,0.35,1.45,0.219,1.92-0.3c-0.004,0.381-1.109,0.902-1.45,1.073
|
||||
c-0.887,0.447-1.453,0.124-2.433-0.09C75.934,209.126,77.415,209.082,77.896,208.442z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#2b3044;" points="83.265,247.056 78.171,218.657 78.049,209.76 78.619,209.752 78.74,218.609
|
||||
83.91,247.495 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M78.646,218.422l-0.383,0.423c-0.552-0.499-1.091-1.183-1.716-1.976
|
||||
c-0.966-1.225-2.061-2.613-3.546-3.747l0.346-0.453c1.542,1.178,2.661,2.596,3.648,3.847
|
||||
C77.604,217.288,78.13,217.955,78.646,218.422z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M78.294,214.552c0.719-0.337,1.308-0.942,1.626-1.669c0.361-0.826,0.368-1.757,0.37-2.659
|
||||
c-0.926,0.472-2.066,0.188-3.06,0.49c-0.793,0.241-1.457,0.872-1.737,1.652c-0.363,1.01-0.39,2.085,0.155,2.418
|
||||
C76.095,215.058,77.332,215.003,78.294,214.552z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M74.164,213.282c-0.801,0.738-1.938,1.096-3.017,0.951c-1.079-0.146-1.656-1.622-2.232-2.547
|
||||
c0.889-0.358,3.26-0.654,3.801-0.698c0.541-0.044,1.124,0.097,1.492,0.496c0.368,0.399,0.439,1.085,0.063,1.476
|
||||
C74.24,212.946,74.164,213.282,74.164,213.282z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M69.811,215.79c0.485-0.867,1.92-1.694,2.913-1.694c0.993-0.001,1.934,0.511,2.422,1.235
|
||||
c-0.143,0.656-0.761,1.125-1.411,1.293c-0.651,0.168-1.336,0.092-2.003,0.014c-0.667-0.078-1.353-0.154-2.004,0.013
|
||||
L69.811,215.79z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#2b3044;" d="M85.355,229.633h-5.979c-0.448-0.009-0.848,0.279-0.982,0.707
|
||||
c-0.491,1.551-1.536,5.63-1.536,12.055c0,7.059,1.841,16.429,2.42,19.197c0.097,0.466,0.506,0.801,0.982,0.805h4.163
|
||||
c0.476-0.004,0.885-0.339,0.982-0.805c0.579-2.768,2.42-12.139,2.42-19.197c0-6.425-1.046-10.504-1.536-12.055
|
||||
C86.158,229.93,85.784,229.647,85.355,229.633z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Background_Simple" style="display:none;">
|
||||
<g style="display:inline;">
|
||||
<path style="fill:#0d9394;" d="M88.424,236.439c14.509-3.186,29.737,0.536,44.093,5.21c14.356,4.673,28.69,10.367,43.601,11.223
|
||||
c33.89,1.946,63.75-21.265,86.126-47.277c22.377-26.012,40.993-56.34,68.478-76.308c12.081-8.777,27.016-15.491,41.568-11.688
|
||||
c11.246,2.939,20.369,11.667,28.252,20.702c14.367,16.466,26.478,35.079,35.823,55.053c7.9,16.885,13.794,36.936,6.535,53.681
|
||||
c-6.544,15.095-21.922,23.27-36.473,29.787c-100.891,45.188-211.741,62.412-321.941,72.07c-4.414,0.387-9.104,0.708-13.099-1.448
|
||||
c-5.566-3.004-8.1-9.832-9.789-16.123C52.886,298.871,47.521,245.421,88.424,236.439z"/>
|
||||
<path style="opacity:0.9;fill:#FFFFFF;" d="M88.424,236.439c14.509-3.186,29.737,0.536,44.093,5.21
|
||||
c14.356,4.673,28.69,10.367,43.601,11.223c33.89,1.946,63.75-21.265,86.126-47.277c22.377-26.012,40.993-56.34,68.478-76.308
|
||||
c12.081-8.777,27.016-15.491,41.568-11.688c11.246,2.939,20.369,11.667,28.252,20.702c14.367,16.466,26.478,35.079,35.823,55.053
|
||||
c7.9,16.885,13.794,36.936,6.535,53.681c-6.544,15.095-21.922,23.27-36.473,29.787c-100.891,45.188-211.741,62.412-321.941,72.07
|
||||
c-4.414,0.387-9.104,0.708-13.099-1.448c-5.566-3.004-8.1-9.832-9.789-16.123C52.886,298.871,47.521,245.421,88.424,236.439z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shadow">
|
||||
<ellipse id="_x3C_Path_x3E__359_" style="fill:#2b3044;" cx="250" cy="415.693" rx="193.889" ry="11.323"/>
|
||||
</g>
|
||||
<g id="Plant">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M120.783,376.773c-0.34-0.022-0.605-0.31-0.597-0.654c0.74-29.39,2.256-77.602,2.335-77.866
|
||||
c0.101-0.338,0.457-0.522,0.794-0.43c0.337,0.101,0.531,0.456,0.432,0.794c-0.019,0.065-1.55,48.444-2.283,77.535
|
||||
c-0.008,0.352-0.302,0.631-0.655,0.623C120.8,376.774,120.792,376.773,120.783,376.773z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M116.833,278.631c0.246,2.264,2.956,10.111,5.22,9.865c2.263-0.246,3.223-8.493,2.977-10.757
|
||||
c-0.246-2.263-2.281-3.899-4.544-3.653C118.222,274.333,116.587,276.368,116.833,278.631z"/>
|
||||
<path style="fill:#0d9394;" d="M127.819,303.385c-0.246-2.264-2.956-10.111-5.22-9.865c-2.264,0.246-3.224,8.493-2.978,10.757
|
||||
c0.246,2.263,2.281,3.899,4.544,3.653C126.43,307.684,128.066,305.65,127.819,303.385z"/>
|
||||
<path style="fill:#0d9394;" d="M109.949,296.502c2.264-0.246,10.111-2.956,9.865-5.22c-0.246-2.263-8.493-3.223-10.756-2.977
|
||||
c-2.264,0.246-3.899,2.281-3.653,4.544C105.651,295.113,107.685,296.748,109.949,296.502z"/>
|
||||
<path style="fill:#0d9394;" d="M134.703,285.515c-2.264,0.246-10.111,2.956-9.865,5.22c0.247,2.264,8.493,3.224,10.757,2.977
|
||||
c2.264-0.246,3.899-2.281,3.653-4.544C139.002,286.905,136.966,285.269,134.703,285.515z"/>
|
||||
<path style="fill:#0d9394;" d="M109.689,286.141c1.775,1.427,9.24,5.06,10.667,3.285c1.427-1.775-3.726-8.285-5.5-9.712
|
||||
c-1.775-1.426-4.37-1.144-5.797,0.631C107.633,282.119,107.915,284.714,109.689,286.141z"/>
|
||||
<path style="fill:#0d9394;" d="M134.962,295.876c-1.775-1.427-9.24-5.059-10.667-3.284c-1.426,1.774,3.726,8.284,5.501,9.711
|
||||
c1.775,1.426,4.37,1.144,5.796-0.63C137.02,299.898,136.737,297.302,134.962,295.876z"/>
|
||||
<path style="fill:#0d9394;" d="M117.459,303.645c1.426-1.775,5.059-9.24,3.284-10.667c-1.775-1.427-8.284,3.726-9.711,5.501
|
||||
c-1.427,1.775-1.144,4.37,0.631,5.796C113.437,305.702,116.032,305.42,117.459,303.645z"/>
|
||||
<path style="fill:#0d9394;" d="M127.194,278.372c-1.426,1.775-5.059,9.24-3.284,10.667c1.775,1.426,8.285-3.726,9.711-5.501
|
||||
c1.427-1.775,1.144-4.37-0.631-5.796C131.216,276.315,128.62,276.598,127.194,278.372z"/>
|
||||
</g>
|
||||
<g style="opacity:0.6;enable-background:new ;">
|
||||
<path style="fill:#FFFFFF;" d="M116.833,278.631c0.246,2.264,2.956,10.111,5.22,9.865c2.263-0.246,3.223-8.493,2.977-10.757
|
||||
c-0.246-2.263-2.281-3.899-4.544-3.653C118.222,274.333,116.587,276.368,116.833,278.631z"/>
|
||||
<path style="fill:#FFFFFF;" d="M127.819,303.385c-0.246-2.264-2.956-10.111-5.22-9.865c-2.264,0.246-3.224,8.493-2.978,10.757
|
||||
c0.246,2.263,2.281,3.899,4.544,3.653C126.43,307.684,128.066,305.65,127.819,303.385z"/>
|
||||
<path style="fill:#FFFFFF;" d="M109.949,296.502c2.264-0.246,10.111-2.956,9.865-5.22c-0.246-2.263-8.493-3.223-10.756-2.977
|
||||
c-2.264,0.246-3.899,2.281-3.653,4.544C105.651,295.113,107.685,296.748,109.949,296.502z"/>
|
||||
<path style="fill:#FFFFFF;" d="M134.703,285.515c-2.264,0.246-10.111,2.956-9.865,5.22c0.247,2.264,8.493,3.224,10.757,2.977
|
||||
c2.264-0.246,3.899-2.281,3.653-4.544C139.002,286.905,136.966,285.269,134.703,285.515z"/>
|
||||
<path style="fill:#FFFFFF;" d="M109.689,286.141c1.775,1.427,9.24,5.06,10.667,3.285c1.427-1.775-3.726-8.285-5.5-9.712
|
||||
c-1.775-1.426-4.37-1.144-5.797,0.631C107.633,282.119,107.915,284.714,109.689,286.141z"/>
|
||||
<path style="fill:#FFFFFF;" d="M134.962,295.876c-1.775-1.427-9.24-5.059-10.667-3.284c-1.426,1.774,3.726,8.284,5.501,9.711
|
||||
c1.775,1.426,4.37,1.144,5.796-0.63C137.02,299.898,136.737,297.302,134.962,295.876z"/>
|
||||
<path style="fill:#FFFFFF;" d="M117.459,303.645c1.426-1.775,5.059-9.24,3.284-10.667c-1.775-1.427-8.284,3.726-9.711,5.501
|
||||
c-1.427,1.775-1.144,4.37,0.631,5.796C113.437,305.702,116.032,305.42,117.459,303.645z"/>
|
||||
<path style="fill:#FFFFFF;" d="M127.194,278.372c-1.426,1.775-5.059,9.24-3.284,10.667c1.775,1.426,8.285-3.726,9.711-5.501
|
||||
c1.427-1.775,1.144-4.37-0.631-5.796C131.216,276.315,128.62,276.598,127.194,278.372z"/>
|
||||
</g>
|
||||
<path style="fill:#0d9394;" d="M117.472,291.536c0.291,2.681,2.701,4.618,5.382,4.326c2.681-0.291,4.618-2.701,4.326-5.382
|
||||
c-0.292-2.681-2.702-4.618-5.382-4.326C119.117,286.446,117.181,288.855,117.472,291.536z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M117.952,355.238c-5.634,0.124-15.274-5.081-19.067-10.161c-3.849-5.155,6.945-1.981,5.826-6.034
|
||||
c-1.12-4.053-14.408-1.016-16.879-6.819c-2.471-5.803,7.127-4.495,6.737-7.464c-0.389-2.969-10.327-2.336-13.536-8.503
|
||||
c-3.209-6.167,5.544-2.733,4.164-5.288c-1.38-2.556-12.37-13.297-7.79-15.556c4.579-2.259,14.885,8.931,18.33,10.174
|
||||
c3.445,1.242,4.227-6.511,8.716-2.817c4.489,3.695,1.185,19.906,6.463,22.028c3.931,1.581,2.239-5.833,6.765-3.974
|
||||
C125.605,324.078,120.24,355.188,117.952,355.238z"/>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FFFFFF;" d="M117.952,355.238c-5.634,0.124-15.274-5.081-19.067-10.161
|
||||
c-3.849-5.155,6.945-1.981,5.826-6.034c-1.12-4.053-14.408-1.016-16.879-6.819c-2.471-5.803,7.127-4.495,6.737-7.464
|
||||
c-0.389-2.969-10.327-2.336-13.536-8.503c-3.209-6.167,5.544-2.733,4.164-5.288c-1.38-2.556-12.37-13.297-7.79-15.556
|
||||
c4.579-2.259,14.885,8.931,18.33,10.174c3.445,1.242,4.227-6.511,8.716-2.817c4.489,3.695,1.185,19.906,6.463,22.028
|
||||
c3.931,1.581,2.239-5.833,6.765-3.974C125.605,324.078,120.24,355.188,117.952,355.238z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M126.049,348.089c0.094,0.158-0.749,0.957,2.033,1.072c6.851,0.282,18.964-0.18,23.513-6.409
|
||||
c6.495-8.893-8.485-8.077-7.028-12.981c1.457-4.904,17.549-0.899,20.69-7.9c3.141-7.001-8.563-5.634-8.021-9.236
|
||||
c0.543-3.602,12.823,1.065,16.87-6.361c4.047-7.426-6.68-3.453-4.942-6.53c1.738-3.076,15.356-15.885,9.839-18.74
|
||||
c-5.517-2.855-18.314,10.516-22.534,11.947c-4.22,1.43-5.196-11.684-10.743-7.295c-5.547,4.389-1.907,24.185-8.376,26.643
|
||||
c-4.819,1.831-2.19-5.264-8.136-4.992C121.136,307.678,118.48,335.436,126.049,348.089z"/>
|
||||
</g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M126.049,348.089c0.094,0.158-0.749,0.957,2.033,1.072c6.851,0.282,18.964-0.18,23.513-6.409
|
||||
c6.495-8.893-8.485-8.077-7.028-12.981c1.457-4.904,17.549-0.899,20.69-7.9c3.141-7.001-8.563-5.634-8.021-9.236
|
||||
c0.543-3.602,12.823,1.065,16.87-6.361c4.047-7.426-6.68-3.453-4.942-6.53c1.738-3.076,15.356-15.885,9.839-18.74
|
||||
c-5.517-2.855-18.314,10.516-22.534,11.947c-4.22,1.43-5.196-11.684-10.743-7.295c-5.547,4.389-1.907,24.185-8.376,26.643
|
||||
c-4.819,1.831-2.19-5.264-8.136-4.992C121.136,307.678,118.48,335.436,126.049,348.089z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M120.915,372.332c-0.012-0.001-0.024-0.002-0.037-0.003
|
||||
c-0.244-0.029-0.418-0.251-0.388-0.496c5.623-46.016,32.13-64.72,32.396-64.903c0.203-0.138,0.48-0.088,0.619,0.115
|
||||
c0.139,0.202,0.088,0.48-0.115,0.619c-0.264,0.181-26.445,18.683-32.016,64.277
|
||||
C121.346,372.173,121.145,372.341,120.915,372.332z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M146.855,313.323c-0.181-0.007-0.347-0.126-0.406-0.307
|
||||
c-0.076-0.234,0.052-0.485,0.286-0.561c0.165-0.054,4.112-1.302,10.579,0.071c0.241,0.051,0.395,0.288,0.344,0.528
|
||||
c-0.051,0.241-0.288,0.396-0.528,0.344c-6.215-1.318-10.081-0.107-10.119-0.095
|
||||
C146.959,313.318,146.906,313.325,146.855,313.323z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M141.955,318.912c-0.236-0.01-0.424-0.202-0.427-0.441
|
||||
c-0.137-13.917,7.919-24.79,8.001-24.898c0.147-0.196,0.427-0.236,0.624-0.088c0.197,0.148,0.236,0.427,0.089,0.624
|
||||
c-0.08,0.106-7.956,10.749-7.822,24.354c0.002,0.246-0.195,0.447-0.441,0.45
|
||||
C141.971,318.913,141.963,318.912,141.955,318.912z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M134.061,330.691c-0.112-0.005-0.223-0.051-0.306-0.14
|
||||
c-0.169-0.178-0.161-0.46,0.018-0.63c0.06-0.056,6.024-5.57,13.834-2.772c0.231,0.083,0.352,0.338,0.269,0.57
|
||||
c-0.083,0.231-0.338,0.353-0.57,0.269c-7.301-2.619-12.866,2.528-12.921,2.581
|
||||
C134.295,330.655,134.177,330.695,134.061,330.691z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M129.935,338.908c-0.166-0.007-0.322-0.107-0.391-0.27
|
||||
c-0.125-0.292-3.046-7.289-1.436-17.258c0.04-0.242,0.259-0.412,0.511-0.368c0.243,0.039,0.408,0.267,0.369,0.51
|
||||
c-1.566,9.7,1.346,16.697,1.376,16.766c0.096,0.226-0.009,0.488-0.235,0.584
|
||||
C130.065,338.899,129.999,338.91,129.935,338.908z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M121.094,388.769c-0.231-0.009-0.419-0.197-0.426-0.431l-0.578-12.188
|
||||
c-1.705-40.525-29.503-68.088-29.784-68.361c-0.176-0.172-0.18-0.454-0.008-0.63c0.173-0.176,0.454-0.179,0.63-0.008
|
||||
c0.283,0.276,28.331,28.074,30.052,68.967l0.578,12.193c0.008,0.246-0.185,0.451-0.431,0.46
|
||||
C121.116,388.77,121.105,388.769,121.094,388.769z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M101.771,323.012c-0.024-0.001-0.049-0.004-0.073-0.009c-0.039-0.008-0.087-0.027-0.13-0.05
|
||||
l-0.144-0.058c-3.639-1.512-7.705-2.296-11.447-2.214c-0.25,0.012-0.45-0.189-0.455-0.436
|
||||
c-0.006-0.246,0.189-0.449,0.435-0.455c3.864-0.083,8.058,0.724,11.809,2.282l0.148,0.061
|
||||
c0.027,0.01,0.052,0.022,0.076,0.036c0.175,0.089,0.276,0.287,0.234,0.488C102.179,322.875,101.984,323.021,101.771,323.012
|
||||
z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M105.702,328.231c-0.007,0-0.015-0.001-0.022-0.002c-0.245-0.021-0.426-0.239-0.404-0.483
|
||||
c1.076-11.961-5.118-21.802-5.181-21.9c-0.132-0.207-0.072-0.483,0.135-0.615c0.209-0.132,0.483-0.072,0.615,0.135
|
||||
c0.064,0.1,6.423,10.187,5.318,22.46C106.142,328.064,105.938,328.241,105.702,328.231z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M109.758,335.16c-0.108-0.004-0.216-0.049-0.298-0.131
|
||||
c-0.045-0.046-4.559-4.501-11.165-2.741c-0.239,0.065-0.482-0.079-0.545-0.316c-0.063-0.238,0.078-0.482,0.316-0.545
|
||||
c7.121-1.9,11.832,2.776,12.028,2.976c0.173,0.175,0.171,0.456-0.004,0.63C109.998,335.122,109.878,335.165,109.758,335.16z
|
||||
"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M114.907,346.58c-0.064-0.003-0.128-0.019-0.188-0.05c-0.218-0.114-0.302-0.383-0.188-0.601
|
||||
c0.031-0.06,3.09-6.039,2.393-14.665c-0.02-0.245,0.162-0.46,0.408-0.479c0.247-0.03,0.46,0.162,0.48,0.408
|
||||
c0.72,8.896-2.36,14.898-2.491,15.15C115.238,346.499,115.074,346.586,114.907,346.58z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M146.157,390.688c0,14.214-6.393,25.742-25.754,25.742c-18.478,0-25.754-11.528-25.754-25.742
|
||||
c0-5.361,1.647-10.348,4.45-14.471h42.608C144.51,380.34,146.157,385.327,146.157,390.688z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M146.157,390.688c0,14.214-6.393,25.742-25.754,25.742
|
||||
c-18.478,0-25.754-11.528-25.754-25.742c0-5.361,1.647-10.348,4.45-14.471h42.608
|
||||
C144.51,380.34,146.157,385.327,146.157,390.688z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Character">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#E8BFBF;" points="294.101,403.863 304.061,402.409 301.546,379.108 291.585,380.562 "/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M311.719,402.758c0.865-0.064,1.683-0.419,2.32-1.008c0.272-0.343,0.358-0.798,0.23-1.216
|
||||
c-0.057-0.262-0.246-0.476-0.5-0.564c-1.331-0.475-4.974,2.209-5.381,2.512c-0.079,0.064-0.113,0.167-0.088,0.265
|
||||
c0.034,0.094,0.123,0.157,0.223,0.158C309.59,402.953,310.66,402.904,311.719,402.758z M313.12,400.422
|
||||
c0.15-0.037,0.307-0.032,0.454,0.012c0.105,0.033,0.183,0.12,0.206,0.228c0.082,0.276,0.027,0.575-0.148,0.804
|
||||
c-0.512,0.638-2.138,0.998-4.406,0.997c1.181-0.904,2.508-1.599,3.924-2.056L313.12,400.422z"/>
|
||||
<path style="fill:#0d9394;" d="M308.578,402.916l0.082-0.038c1.105-0.728,3.098-3.265,2.724-4.361
|
||||
c-0.115-0.245-0.323-0.559-0.991-0.522c-0.483,0.008-0.941,0.222-1.258,0.587c-1.079,1.238-0.865,3.966-0.862,4.077
|
||||
c-0.003,0.084,0.034,0.164,0.1,0.215C308.431,402.92,308.507,402.935,308.578,402.916z M310.253,398.496l0.133-0.062
|
||||
c0.44-0.018,0.491,0.145,0.505,0.2c0.235,0.663-1.086,2.612-2.186,3.512c-0.102-1.147,0.165-2.297,0.76-3.283
|
||||
c0.213-0.222,0.501-0.357,0.808-0.377L310.253,398.496z"/>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M303.043,398.284l-8.833,2.105c-0.398,0.082-0.669,0.452-0.626,0.856l0.285,12.781
|
||||
c0.123,0.896,0.949,1.522,1.844,1.399c0.062-0.009,0.124-0.021,0.184-0.036c3.826-0.953,5.632-1.603,10.497-2.725
|
||||
c2.981-0.686,12.428-1.398,16.298-3.122c3.869-1.723,2.362-5.645,0.597-5.275c-5.676,1.221-12.969-1.209-17.112-4.908
|
||||
C305.615,399.084,303.649,398.127,303.043,398.284z"/>
|
||||
<polygon style="opacity:0.2;" points="301.546,379.108 302.842,391.118 292.883,392.583 291.576,380.575 "/>
|
||||
<path style="fill:#0d9394;" d="M306.866,386.175l-18.429,3.441c0,0-8.949-12.776-10.638-21.849
|
||||
c-1.758-9.447,0.121-41.609,0-42.036c-5.213-17.597-19.375-63.201-26.214-79.981c-3.787-9.3-6.445-15.561-6.445-15.561
|
||||
l1.915-0.43l15.043-6.162l10.962,2.066c0,0,33.313,67.362,36.805,92.703C312.471,337.287,306.866,386.175,306.866,386.175z"
|
||||
/>
|
||||
<path style="opacity:0.3;fill:#FFFFFF;" d="M306.866,386.175l-18.429,3.441c0,0-8.949-12.776-10.638-21.849
|
||||
c-1.758-9.447,0.121-41.609,0-42.036c-5.213-17.597-19.375-63.201-26.214-79.981c-3.787-9.3-6.445-15.561-6.445-15.561
|
||||
l1.915-0.43l15.043-6.162l10.962,2.066c0,0,33.313,67.362,36.805,92.703C312.471,337.287,306.866,386.175,306.866,386.175z"
|
||||
/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M273.458,310.491c-5.213-17.597-15.727-44.292-22.567-61.073
|
||||
l-4.531-15.99l-0.871-3.076l1.586,2.906l17.854,39.546C272.807,287.946,273.578,310.918,273.458,310.491z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#E8BFBF;" points="192.572,398.376 201.449,402.116 210.923,381.789 202.046,378.049 "/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M207.233,406.371c0.704,0.44,1.536,0.628,2.361,0.533c0.404-0.111,0.727-0.414,0.865-0.809
|
||||
c0.105-0.235,0.079-0.507-0.067-0.718c-0.759-1.119-5.089-1.105-5.574-1.102c-0.097,0.005-0.182,0.065-0.218,0.155
|
||||
c-0.027,0.092,0.006,0.191,0.083,0.248C205.479,405.319,206.333,405.886,207.233,406.371z M209.635,405.359
|
||||
c0.136,0.056,0.255,0.148,0.344,0.266c0.062,0.085,0.074,0.197,0.03,0.292c-0.093,0.26-0.304,0.459-0.569,0.537
|
||||
c-0.756,0.203-2.215-0.438-3.965-1.72c1.423-0.03,2.841,0.183,4.192,0.63L209.635,405.359z"/>
|
||||
<path style="fill:#0d9394;" d="M204.719,404.718l0.085,0.017c1.265,0.063,4.237-0.77,4.568-1.828
|
||||
c0.05-0.254,0.066-0.615-0.47-0.963c-0.378-0.267-0.852-0.361-1.303-0.258c-1.533,0.346-2.91,2.574-2.971,2.661
|
||||
c-0.05,0.063-0.066,0.146-0.044,0.223C204.602,404.638,204.653,404.692,204.719,404.718z M208.51,402.252l0.138,0.027
|
||||
c0.35,0.235,0.298,0.389,0.277,0.44c-0.194,0.645-2.315,1.403-3.673,1.476c0.57-0.943,1.425-1.68,2.442-2.105
|
||||
c0.29-0.051,0.589,0.008,0.837,0.166L208.51,402.252z"/>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M203.063,398.013l-8.01-3.367c-0.353-0.161-0.772-0.029-0.967,0.307l-7.003,10.029
|
||||
c-0.411,0.761-0.128,1.711,0.633,2.123c0.053,0.029,0.107,0.054,0.163,0.076c3.493,1.426,5.254,1.945,9.645,3.829
|
||||
c2.69,1.155,10.387,5.945,14.348,6.801c3.961,0.857,5.015-3.024,3.442-3.736c-5.073-2.266-9.331-8.264-10.439-13.461
|
||||
C204.596,400.085,203.619,398.235,203.063,398.013z"/>
|
||||
<polygon style="opacity:0.2;" points="211.311,382.028 206.175,392.384 197.387,388.44 202.514,378.08 "/>
|
||||
<path style="fill:#0d9394;" d="M213.16,393.314l-17.68-9.425c0,0-3.39-12.587,0-20.616
|
||||
c6.524-15.452,23.497-38.171,23.612-38.599c4.529-17.786,12.474-66.492,15.187-84.409c1.507-9.928,2.392-12.07,2.392-12.07
|
||||
l1.865,0.611l27.053,0.054c0,0,5.104,40.967-14.456,104.397c-4.867,15.782-13.02,28.904-26.435,46.655
|
||||
C219.603,386.652,213.16,393.314,213.16,393.314z"/>
|
||||
<path style="opacity:0.3;fill:#FFFFFF;" d="M213.16,393.314l-17.68-9.425c0,0-3.39-12.587,0-20.616
|
||||
c6.524-15.452,23.497-38.171,23.612-38.599c4.529-17.786,12.474-66.492,15.187-84.409c1.507-9.928,2.392-12.07,2.392-12.07
|
||||
l1.865,0.611l27.053,0.054c0,0,5.104,40.967-14.456,104.397c-4.867,15.782-13.02,28.904-26.435,46.655
|
||||
C219.603,386.652,213.16,393.314,213.16,393.314z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E8BFBF;" d="M289.556,195.386c0.198-3.038,2.213-6.951,3.951-8.76c0.558-0.578,2.667-1.458,3.862-2.236
|
||||
c5.874-3.854,17.63-8.661,17.63-8.661l3.628,3.163c0,0-7.161,6.922-11.421,10.241c-0.837,0.652-1.807,1.444-2.829,2.281
|
||||
c-1.852,1.546-10.575,7.299-12.24,8.741L289.556,195.386z"/>
|
||||
<path style="fill:#E8BFBF;" d="M325.342,173.94l-6.71,4.958l-3.765-2.772c0,0,1.536-1.957,3.115-3.473
|
||||
c0.693-0.666,1.067-1.583,1.076-2.544c0.013-1.478,0.236-3.193,1.039-4.451c0.02-0.029,0.03-0.059,0.049-0.079
|
||||
c1.455-2.192,4.856-1.533,5.544,1.003l0.969,3.577C327.04,171.571,326.518,173.072,325.342,173.94z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M291.702,196.727l-1.769,1.622c-0.551-0.442-1.425-1.15-2.526-2.064
|
||||
c-8.62-7.156-30.23-24.514-21.615-29.468c7.384-4.246,15.226,8.748,19.138,12.65c0.796,0.806,2.978,3.322,4.738,6.478
|
||||
C291.505,189.256,292.872,193.267,291.702,196.727z"/>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M289.663,184.391c-3.059,2.236-5.671,5.082-7.636,8.321c1.417,4.697,4.986,8.784,9.487,10.736
|
||||
c2.466-5.723,3.615-11.876,3.126-18.089C293.079,185.023,291.223,184.727,289.663,184.391z"/>
|
||||
<path style="fill:#263238;" d="M242.208,165.805c-3.084,0.991-6.614,0.198-8.593,2.762c-1.979,2.564-2.574,5.948-2.571,9.187
|
||||
c0.004,4.505,1.034,8.938,2.059,13.324c1.242,5.319,2.484,10.637,3.726,15.956c0.849,3.636-0.044,20.542,0.862,20.825
|
||||
c0,0,28.269-0.554,35.357-1.547c0,0,0.616-17.379,1.185-23.298c0.126-1.313,2.12-6.889,2.354-8.29
|
||||
c1.104-6.602-1.06-11.258-3.346-17.55c0,0-5.006-10.079-7.45-10.354C261.44,166.329,250.801,163.044,242.208,165.805z"/>
|
||||
<path style="fill:#263238;" d="M241.018,174.145c-0.1-0.587-5.117-10.722-9.925-3.638c-6.693,9.86-7.144,22.24-7.144,22.24
|
||||
s-4.113,12.038-1.247,14.667c2.866,2.629,5.957,4.321,7.96,2.83c2.002-1.491,3.301-4.47,3.301-4.47
|
||||
S242.776,184.46,241.018,174.145z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M240.695,162.046c-2.111,1.647-1.833,5.464,0.494,6.787
|
||||
c-0.585,2.044,0.099,4.396,1.689,5.808c1.59,1.412,4.006,1.813,5.967,0.99c-0.848,1.519,0.108,3.524,1.571,4.464
|
||||
c1.463,0.94,3.271,1.111,4.994,1.342c1.724,0.231,3.545,0.602,4.796,1.81c1.782-2.564,3.563-5.127,5.345-7.691
|
||||
c0.694-0.998,1.413-2.069,1.467-3.283c0.054-1.215-0.87-2.554-2.082-2.465c1.233-1.285,1.258-3.538,0.054-4.85
|
||||
c-1.204-1.312-3.451-1.48-4.836-0.362c0.248-1.027-0.354-2.118-1.221-2.722c-0.868-0.604-1.948-0.81-3-0.913
|
||||
L240.695,162.046z"/>
|
||||
</g>
|
||||
<path style="fill:#E8BFBF;" d="M243.902,148.995c1.391,5.103,3.079,14.512-0.296,18.231c0,0,9.548,3.823,16.334,11.495
|
||||
c3.158-3.068,2.83-6.515,1.863-9.036c-0.75-1.953-2.361-3.403-4.287-4.221c-3.716-1.579-3.748-5.238-3.13-8.745
|
||||
L243.902,148.995z"/>
|
||||
<g>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M245.982,157.685l3.511,0.953c1.504,0.408,3.076,0.501,4.617,0.274
|
||||
l0,0c-0.014,0.756-0.15,2.362,0.326,3.209c-2.016,0.973-5.427,0.305-6.934-1.471
|
||||
C246.878,159.957,246.322,158.554,245.982,157.685z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E8BFBF;" d="M237.087,144.651c3.717,7.844,5.123,11.241,10.845,13.738
|
||||
c8.621,3.774,17.416-2.527,16.113-11.323c-1.171-7.911-7.056-19.411-16.206-19.452
|
||||
c-6.538-0.064-11.891,5.183-11.955,11.722C235.867,141.176,236.278,142.996,237.087,144.651z"/>
|
||||
<path style="fill:#263238;" d="M241.171,129.671c-2.708-1.265-6.074-0.233-8.329,1.751
|
||||
c-2.295,2.019-3.692,4.843-5.031,7.59c-0.728,1.493-1.463,3.006-1.8,4.633c-0.337,1.627-0.24,3.406,0.62,4.828
|
||||
c0.842,1.394,2.41,2.309,4.031,2.404c0.932,0.054,2.023,0.728,2.325,1.612c0.28,0.821,0.147,1.71,0.016,2.563
|
||||
c-0.127,0.826-0.248,1.688,0.011,2.481c0.432,1.32,1.844,2.121,3.226,2.255c1.382,0.134,2.755-0.266,4.086-0.662
|
||||
c0.844-0.251,1.693-0.106,2.349,0.482c0.164,0.147,0.298,0.323,0.4,0.517c0.414,0.787,1.613,0.663,1.958-0.157
|
||||
c1.21-2.875-0.551-7.472-3.174-10.98c-1.392-1.862-1.316-1.387-1.863-3.647c-0.455-1.88,0.234-3.842,1.076-5.584
|
||||
c1.124-2.323,2.568-4.589,2.122-7.362C243.005,131.222,242.247,130.173,241.171,129.671z"/>
|
||||
<path style="fill:#E8BFBF;" d="M237.322,152.675c1.233,1.312,2.936,2.081,4.736,2.138
|
||||
c2.388,0.052,2.994-2.226,1.841-4.169c-1.041-1.752-3.537-3.882-5.699-3.036
|
||||
C236.038,148.455,235.818,151.04,237.322,152.675z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M252.033,143.255c0.276,0.687,0.822,1.05,1.254,0.873
|
||||
c0.432-0.177,0.538-0.829,0.299-1.495c-0.24-0.666-0.82-1.043-1.254-0.873
|
||||
C251.899,141.929,251.775,142.602,252.033,143.255z"/>
|
||||
<path style="fill:#263238;" d="M259.352,140.105c0.269,0.689,0.822,1.05,1.247,0.875
|
||||
c0.425-0.175,0.538-0.829,0.299-1.495s-0.82-1.043-1.247-0.875C259.225,138.777,259.086,139.453,259.352,140.105z"/>
|
||||
<path style="fill:#263238;" d="M259.463,138.728l1.39-1.088C260.852,137.64,260.552,139.189,259.463,138.728z"/>
|
||||
<path style="fill:#ED847E;" d="M257.452,141.574c1.699,1.677,2.978,1.984,4.818,3.136
|
||||
c-0.053,1.634-1.591,2.009-1.591,2.009L257.452,141.574z"/>
|
||||
<path style="fill:#263238;" d="M259.903,149.921c0.317-0.119,0.624-0.264,0.918-0.434
|
||||
c0.096-0.051,0.132-0.171,0.081-0.266c-0.002-0.003-0.004-0.006-0.005-0.01c-0.057-0.095-0.177-0.132-0.278-0.085
|
||||
c-1.551,0.901-3.44,1.001-5.077,0.268c-0.102-0.054-0.229-0.016-0.284,0.087c-0.055,0.102-0.016,0.23,0.087,0.284
|
||||
C256.781,150.425,258.423,150.481,259.903,149.921z"/>
|
||||
<path style="fill:#263238;" d="M251.76,137.81c-0.01,0.187-0.139,0.347-0.32,0.397c-1.918,0.569-2.769,3.003-2.773,3.023
|
||||
c-0.076,0.226-0.32,0.348-0.546,0.272c-0.226-0.076-0.348-0.32-0.273-0.546c0.074-0.092,1.003-2.884,3.34-3.582
|
||||
c0.228-0.064,0.466,0.065,0.536,0.292C251.748,137.71,251.76,137.76,251.76,137.81z"/>
|
||||
<path style="fill:#263238;" d="M260.609,136.633c-0.16,0.098-0.364,0.083-0.508-0.037
|
||||
c-1.561-1.252-4.046-0.564-4.064-0.556c-0.229,0.067-0.469-0.065-0.535-0.294c-0.067-0.229,0.065-0.469,0.294-0.535
|
||||
c0.118,0.008,2.941-0.82,4.847,0.704c0.183,0.151,0.212,0.42,0.066,0.607
|
||||
C260.684,136.566,260.65,136.604,260.609,136.633z"/>
|
||||
<path style="fill:#263238;" d="M252.158,141.875l1.391-1.081C253.549,140.794,253.234,142.34,252.158,141.875z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M241.768,128.361c-2.184,0.175-4.257,1.418-5.442,3.261c-0.795,1.237-1.075,3.117,0.101,4
|
||||
c0.55,0.413,1.275,0.488,1.961,0.548c3.044,0.267,6.796-2.084,6.796-2.084c-1.173-4.97,9.254-8.816,14.394-1.117
|
||||
c1.51,2.262,1.102,3.905,3.613,4.95c1.182,0.492,2.74,0.356,3.497,1.389c1.256,1.713-1.158,4.614,0.375,6.085
|
||||
c1.049,1.006,3.427,0.622,3.573,2.068c0.069,0.68-0.376,1.664,0.278,1.863c0.362,0.11,0.695-0.221,0.929-0.518
|
||||
c0.565-0.718,1.147-1.469,1.341-2.361c0.194-0.893-0.124-1.968-0.955-2.346c-0.639-0.291-2.328,0.034-2.213,0.726
|
||||
c0.138,0.833-0.577-3.255-0.257-4.8c0.279-1.345,1.564-2.511,1.174-3.829c-0.415-1.406-2.086-1.967-3.535-2.182
|
||||
c-1.45-0.215-3.095-0.391-3.986-1.555c-0.995-1.3-0.543-3.157-0.862-4.763c-0.407-2.042-2.11-3.633-4.021-4.461
|
||||
C252.732,120.72,243.764,121.077,241.768,128.361z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M258.235,155.044l-19.995,10.045c-6.574,3.302-9.548,11.067-6.862,17.917l9.643,24.593
|
||||
c2.686,6.849,10.148,10.53,17.217,8.491l21.502-6.201c8.058-2.323,12.371-11.068,9.31-18.875L277.9,162.577
|
||||
C274.839,154.771,265.728,151.28,258.235,155.044z M254.931,197.28c-4.458,1.745-9.49-0.454-11.238-4.911
|
||||
c-1.748-4.457,0.451-9.485,4.909-11.23c4.458-1.745,9.488,0.453,11.236,4.91
|
||||
C261.586,190.506,259.389,195.535,254.931,197.28z"/>
|
||||
<path style="fill:#0d9394;" d="M258.235,155.044l-19.995,10.045c-6.574,3.302-9.548,11.067-6.862,17.917l9.643,24.593
|
||||
c2.686,6.849,10.148,10.53,17.217,8.491l21.502-6.201c8.058-2.323,12.371-11.068,9.31-18.875L277.9,162.577
|
||||
C274.839,154.771,265.728,151.28,258.235,155.044z M254.931,197.28c-4.458,1.745-9.49-0.454-11.238-4.911
|
||||
c-1.748-4.457,0.451-9.485,4.909-11.23c4.458-1.745,9.488,0.453,11.236,4.91
|
||||
C261.586,190.506,259.389,195.535,254.931,197.28z"/>
|
||||
<path style="opacity:0.1;fill:#FFFFFF;" d="M289.054,191.018l-11.156-28.436c-3.057-7.814-12.169-11.304-19.659-7.539
|
||||
l-5.809,2.919l-3.902,1.956l-10.281,5.17c-6.576,3.303-9.554,11.068-6.871,17.919l9.643,24.593
|
||||
c2.693,6.851,10.154,10.527,17.221,8.493l21.507-6.202c1.759-0.511,3.342-1.327,4.708-2.379
|
||||
c1.062-0.806,1.986-1.75,2.762-2.801C290.037,200.916,290.922,195.795,289.054,191.018z M254.926,197.279
|
||||
c-4.453,1.75-9.486-0.452-11.235-4.915c-1.75-4.453,0.452-9.485,4.915-11.225c4.452-1.75,9.485,0.452,11.235,4.905
|
||||
C261.581,190.507,259.389,195.53,254.926,197.279z"/>
|
||||
<path style="fill:#0d9394;" d="M258.442,156.915l-18.753,9.42c-6.165,3.097-8.954,10.38-6.435,16.805l9.044,23.064
|
||||
c2.519,6.424,9.517,9.876,16.148,7.965l20.166-5.816c7.557-2.179,11.603-10.38,8.732-17.702l-10.458-26.671
|
||||
C274.015,156.659,265.469,153.384,258.442,156.915z M243.693,192.369c-1.748-4.457,0.451-9.485,4.909-11.23
|
||||
c4.458-1.745,9.488,0.453,11.236,4.91c1.748,4.457-0.449,9.486-4.907,11.231
|
||||
C250.473,199.025,245.441,196.826,243.693,192.369z"/>
|
||||
<path style="opacity:0.1;fill:#0d9394;" d="M258.442,156.915l-18.753,9.42c-6.165,3.097-8.954,10.38-6.435,16.805
|
||||
l9.044,23.064c2.519,6.424,9.517,9.876,16.148,7.965l20.166-5.816c7.557-2.179,11.603-10.38,8.732-17.702l-10.458-26.671
|
||||
C274.015,156.659,265.469,153.384,258.442,156.915z M243.693,192.369c-1.748-4.457,0.451-9.485,4.909-11.23
|
||||
c4.458-1.745,9.488,0.453,11.236,4.91c1.748,4.457-0.449,9.486-4.907,11.231
|
||||
C250.473,199.025,245.441,196.826,243.693,192.369z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M351.618,148.021l-0.573,1.047l-0.318,0.581l-0.905,1.653l0.379,4.231
|
||||
c0.016,0.181-0.005,0.36-0.058,0.525c-0.121,0.366-0.399,0.671-0.773,0.818l-7.904,3.094
|
||||
c-0.373,0.146-0.783,0.113-1.121-0.076c-0.109-0.06-0.21-0.135-0.3-0.228l-4.467-4.543l-0.012-0.013l-6.354,2.487
|
||||
l0.921,2.348l-6.354,2.487l1.516,3.867l-4.678,1.831c-0.383,0.15-0.806,0.124-1.161-0.061
|
||||
c-0.117-0.058-0.225-0.136-0.323-0.227l-2.696-2.536l-6.354,2.487l1.516,3.867l-6.681,2.615l1.523,3.883
|
||||
c0.249,0.634-0.064,1.35-0.698,1.598l-18.297,7.163l-7.94-20.248l66.185-25.908l1.035,0.531l3.356,1.723
|
||||
C351.911,143.956,352.606,146.219,351.618,148.021z"/>
|
||||
</g>
|
||||
<g style="opacity:0.1;">
|
||||
<path style="fill:#FFFFFF;" d="M351.618,148.021l-0.573,1.047l-0.318,0.581l-0.905,1.653l0.379,4.231
|
||||
c0.016,0.181-0.005,0.36-0.058,0.525c-0.121,0.366-0.399,0.671-0.773,0.818l-7.904,3.094
|
||||
c-0.373,0.146-0.783,0.113-1.121-0.076c-0.109-0.06-0.21-0.135-0.3-0.228l-4.467-4.543l-0.012-0.013l-6.354,2.487
|
||||
l0.921,2.348l-6.354,2.487l1.516,3.867l-4.678,1.831c-0.383,0.15-0.806,0.124-1.161-0.061
|
||||
c-0.117-0.058-0.225-0.136-0.323-0.227l-2.696-2.536l-6.354,2.487l1.516,3.867l-6.681,2.615l1.523,3.883
|
||||
c0.249,0.634-0.064,1.35-0.698,1.598l-18.297,7.163l-7.94-20.248l66.185-25.908l1.035,0.531l3.356,1.723
|
||||
C351.911,143.956,352.606,146.219,351.618,148.021z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path style="fill:#0d9394;" d="M351.358,145.716l-70.761,27.699l-2.062-5.197l67.467-26.41l3.356,1.723
|
||||
C350.636,144.187,351.37,144.796,351.358,145.716z"/>
|
||||
<path style="opacity:0.1;" d="M351.358,145.716l-70.761,27.699l-2.062-5.197l67.467-26.41l3.356,1.723
|
||||
C350.636,144.187,351.37,144.796,351.358,145.716z"/>
|
||||
<path style="fill:#0d9394;" d="M349.961,149.618l-0.685,1.538c-0.011,0.025-0.016,0.053-0.013,0.08l0.383,4.189
|
||||
c0.014,0.153,0.001,0.305-0.035,0.448c-0.012,0.049-0.05,0.088-0.097,0.107l-8.593,3.382
|
||||
c-0.046,0.018-0.099,0.016-0.142-0.011c-0.083-0.052-0.162-0.115-0.232-0.187l-4.915-4.938
|
||||
c-0.045-0.046-0.113-0.06-0.173-0.036l-6.976,2.746c-0.083,0.033-0.124,0.126-0.091,0.209l0.83,2.105
|
||||
c0.033,0.083-0.008,0.176-0.091,0.209l-5.949,2.342c-0.083,0.033-0.123,0.126-0.091,0.209l1.433,3.634
|
||||
c0.033,0.083-0.008,0.176-0.091,0.209l-4.365,1.718c-0.044,0.018-0.095,0.016-0.137-0.008
|
||||
c-0.092-0.053-0.178-0.117-0.257-0.191l-3.191-2.941c-0.046-0.042-0.111-0.054-0.168-0.031l-6.93,2.728
|
||||
c-0.083,0.033-0.124,0.126-0.091,0.209l1.468,3.724c0.033,0.083-0.008,0.176-0.091,0.209l-26.608,10.471
|
||||
c-0.083,0.033-0.176-0.008-0.209-0.09l-2.655-6.665c-0.033-0.083,0.008-0.177,0.091-0.21l69.336-27.29
|
||||
c0.135-0.053,0.266,0.085,0.206,0.217L349.961,149.618z"/>
|
||||
<path style="opacity:0.1;" d="M349.961,149.618l-0.685,1.538c-0.011,0.025-0.016,0.053-0.013,0.08l0.383,4.189
|
||||
c0.014,0.153,0.001,0.305-0.035,0.448c-0.012,0.049-0.05,0.088-0.097,0.107l-8.593,3.382
|
||||
c-0.046,0.018-0.099,0.016-0.142-0.011c-0.083-0.052-0.162-0.115-0.232-0.187l-4.915-4.938
|
||||
c-0.045-0.046-0.113-0.06-0.173-0.036l-6.976,2.746c-0.083,0.033-0.124,0.126-0.091,0.209l0.83,2.105
|
||||
c0.033,0.083-0.008,0.176-0.091,0.209l-5.949,2.342c-0.083,0.033-0.123,0.126-0.091,0.209l1.433,3.634
|
||||
c0.033,0.083-0.008,0.176-0.091,0.209l-4.365,1.718c-0.044,0.018-0.095,0.016-0.137-0.008
|
||||
c-0.092-0.053-0.178-0.117-0.257-0.191l-3.191-2.941c-0.046-0.042-0.111-0.054-0.168-0.031l-6.93,2.728
|
||||
c-0.083,0.033-0.124,0.126-0.091,0.209l1.468,3.724c0.033,0.083-0.008,0.176-0.091,0.209l-26.608,10.471
|
||||
c-0.083,0.033-0.176-0.008-0.209-0.09l-2.655-6.665c-0.033-0.083,0.008-0.177,0.091-0.21l69.336-27.29
|
||||
c0.135-0.053,0.266,0.085,0.206,0.217L349.961,149.618z"/>
|
||||
<line style="opacity:0.1;fill:#0d9394;" x1="310.673" y1="171.268" x2="284.065" y2="181.739"/>
|
||||
</g>
|
||||
<path style="opacity:0.3;fill:#FFFFFF;" d="M248.073,178.976c-5.592,2.189-8.349,8.496-6.157,14.088
|
||||
c2.193,5.592,8.504,8.349,14.096,6.16c5.593-2.189,8.349-8.496,6.157-14.088
|
||||
C259.976,179.544,253.666,176.787,248.073,178.976z M254.931,197.28c-4.458,1.745-9.49-0.454-11.238-4.911
|
||||
c-1.748-4.457,0.451-9.485,4.909-11.23c4.458-1.745,9.488,0.453,11.236,4.91
|
||||
C261.586,190.506,259.389,195.535,254.931,197.28z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="opacity:0.1;fill:#FFFFFF;" d="M287.213,204.701c-0.777,1.052-1.701,1.995-2.762,2.801l-35.926-47.594
|
||||
l-0.029-0.039c0,0,3.165-1.592,3.882-2.064c0,0.039,0.02,0.089,0.049,0.147
|
||||
C253.999,161.323,282.239,197.987,287.213,204.701z"/>
|
||||
<path style="opacity:0.1;fill:#FFFFFF;" d="M282.023,209.006c-0.226,0.108-10.694,3.293-10.694,3.293l-11.667-15.452
|
||||
c3.017-2.959,4.148-7.539,2.506-11.717c-2.192-5.593-8.502-8.355-14.095-6.163c-0.492,0.187-0.954,0.413-1.396,0.668
|
||||
l-10.321-13.673c0,0,9.073-4.325,10.075-4.954C246.696,162.926,282.023,208.603,282.023,209.006z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M239.188,133.941c-1.169,1.39-1.646,3.336-1.252,5.109c0.394,1.773,1.648,3.334,3.296,4.1
|
||||
c0.854,0.397,1.794,0.587,2.638,1.003c0.845,0.416,1.628,1.149,1.718,2.086c0.099,1.035-0.664,2.002-0.592,3.039
|
||||
c0.066,0.95,0.809,1.704,1.559,2.291c0.75,0.587,1.588,1.141,2.001,1.999c0.413,0.858,0.145,2.129-0.774,2.379
|
||||
c-0.194,0.297-0.268,1.005-0.021,1.26c0.247,0.254,0.675,0.308,0.977,0.122c1.411-0.868,2.38-2.505,2.391-4.162
|
||||
c0.011-1.657-1.029-3.274-2.541-3.952c-0.272-0.551-0.061-1.25,0.167-1.821c0.458-1.145,0.915-2.29,1.373-3.435
|
||||
c0.18-0.45,0.02-1.269-0.287-1.643c-0.307-0.374-0.77-0.578-1.215-0.769l-2.948-1.264c-1.113-0.477-4.415-4.903-0.495-6.195
|
||||
c-0.512-1.137-1.397-1.494-2.624-1.718S239.991,132.986,239.188,133.941z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M244.538,129.18c-0.098,1.164-0.196,2.327-0.294,3.491c0.977-1.604,2.787-4.713,2.725-4.592
|
||||
C246.201,128.496,245.307,128.762,244.538,129.18z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M245.861,131.092c1.366-1.263,2.731-2.526,4.097-3.788c-1.054-0.395-2.33-0.101-3.105,0.716
|
||||
C246.876,127.934,246.244,129.874,245.861,131.092z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M237.533,225.7c-5.334,6.618-3.559,11.694-10.92,23.411c9.284,6.882,19.463,8.022,32.117,7.039
|
||||
c1.495-2.649,2.251-5.414,3.747-8.064c2.145,2.661,3.867,4.898,6.011,7.559c6.63-1.039,14.507-2.902,19.75-6.281
|
||||
c-4.63-5.31-7.505-11.943-10.47-17.798c-1.39-2.745-0.808-3.901-4.496-7.501c-11.748,0.542-23.399,0.829-35.147,1.371
|
||||
C238.436,225.453,237.223,225.684,237.533,225.7z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M238.995,224.594l-0.736,3.089c-0.107,0.243,0.18,0.473,0.575,0.451l32.383-1.433
|
||||
c0.31,0.005,0.557-0.179,0.57-0.367l0.172-3.07c0.003-0.206-0.266-0.38-0.605-0.357l-31.818,1.405
|
||||
C239.318,224.302,239.112,224.41,238.995,224.594z"/>
|
||||
<path style="fill:#0d9394;" d="M238.995,224.594l-0.736,3.089c-0.107,0.243,0.18,0.473,0.575,0.451l32.383-1.433
|
||||
c0.31,0.005,0.557-0.179,0.57-0.367l0.172-3.07c0.003-0.206-0.266-0.38-0.605-0.357l-31.818,1.405
|
||||
C239.318,224.302,239.112,224.41,238.995,224.594z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M246.127,228.138l-0.94,0.041c-0.179-0.003-0.328-0.08-0.316-0.193l0.253-3.99
|
||||
c0.002-0.113,0.163-0.214,0.351-0.22l0.941-0.051c0.179,0.003,0.328,0.081,0.316,0.203l-0.253,3.98
|
||||
C246.468,228.021,246.306,228.132,246.127,228.138z"/>
|
||||
<path style="fill:#263238;" d="M269.508,227.13l-0.94,0.041c-0.179-0.003-0.328-0.081-0.316-0.193l0.253-3.981
|
||||
c0.002-0.122,0.163-0.223,0.342-0.229l0.94-0.041c0.179,0.003,0.328,0.081,0.316,0.193l-0.253,3.98
|
||||
C269.848,227.023,269.696,227.124,269.508,227.13z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E8BFBF;" d="M250.309,208.719c0.061,0.295,2.576,4.296,4.547,4.019c0.016-0.002,0.033-0.005,0.049-0.007
|
||||
c0.575-0.081,1.148,0.152,1.502,0.612c0.792,1.031,1.27,1.622,1.805,2.299c0.868,1.099,2.375,1.451,3.645,0.861
|
||||
c0.376-0.175,0.748-0.367,1.118-0.563c1.221-0.648,1.844-2.047,1.512-3.389c-0.364-1.471-0.93-2.892-1.682-4.207
|
||||
c-0.257-0.45-0.552-0.904-0.999-1.164c-0.447-0.261-4.786-1.572-6.471-1.519C253.58,205.716,251.915,208.013,250.309,208.719z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E8BFBF;" d="M255.378,205.529c0,0-26.582-8.049-32.316-2.69c-3.371,3.151-1.779,6.126,0.105,8.044
|
||||
c1.402,1.427,4.456,1.076,6.454,0.983l20.939-2.054L255.378,205.529z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M240.103,201.852c-0.144-1.439-1.258-2.634-2.552-3.279c-1.294-0.645-2.76-0.836-4.194-1.018
|
||||
c-3.34-0.423-6.68-0.847-10.02-1.27c-1.696,2.145-2.916,5.091-2.863,7.825c0.053,2.734,1.082,5.439,2.859,7.517
|
||||
c1.598-3.09,3.706-6.271,6.827-7.806C233.282,202.287,236.68,201.232,240.103,201.852z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path style="opacity:0.1;fill:#FFFFFF;" d="M233.25,153.3c-0.03-0.06-0.03-0.09,0-0.1C233.46,153.14,233.43,153.18,233.25,153.3z"
|
||||
/>
|
||||
</g>
|
||||
<g id="Speech_Bubble">
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M299.289,110.264l7.406,13.732l30.218-25.66c0.266-0.226-0.042-0.635-0.333-0.443l-28.328,18.698
|
||||
l-4.367-8.517L299.289,110.264z"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:1.3;stroke-miterlimit:10;" d="M346.965,110.328
|
||||
c0,12.238-12.847,22.155-28.692,22.155c-6.084,0-11.717-1.455-16.356-3.961l-16.846,7.323l10.634-11.845
|
||||
c-3.833-3.755-6.124-8.502-6.124-13.673c0-12.238,12.847-22.155,28.692-22.155C334.118,88.173,346.965,98.091,346.965,110.328z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 64 KiB |
970
src/assets/illustration/reset-password-cover.svg
Normal file
@@ -0,0 +1,970 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
|
||||
<g id="Background_Complete">
|
||||
<rect x="416.779" y="398.494" style="fill:#EBEBEB;" width="33.122" height="0.25"/>
|
||||
<rect x="322.527" y="401.208" style="fill:#EBEBEB;" width="8.693" height="0.25"/>
|
||||
<rect x="396.586" y="389.208" style="fill:#EBEBEB;" width="19.192" height="0.25"/>
|
||||
<rect x="52.459" y="390.888" style="fill:#EBEBEB;" width="43.193" height="0.25"/>
|
||||
<rect x="104.556" y="390.888" style="fill:#EBEBEB;" width="6.333" height="0.25"/>
|
||||
<rect x="131.471" y="395.111" style="fill:#EBEBEB;" width="93.676" height="0.25"/>
|
||||
<g>
|
||||
<path style="fill:#EBEBEB;" d="M238.401,337.8H45.302c-3.147,0-5.708-2.561-5.708-5.708V60.66c0-3.147,2.561-5.708,5.708-5.708
|
||||
h193.099c3.146,0,5.707,2.561,5.707,5.708v271.432C244.108,335.239,241.547,337.8,238.401,337.8z M45.302,55.203
|
||||
c-3.01,0-5.458,2.448-5.458,5.458v271.432c0,3.01,2.448,5.458,5.458,5.458h193.099c3.009,0,5.457-2.448,5.457-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.457-5.458H45.302z"/>
|
||||
<path style="fill:#EBEBEB;" d="M454.698,337.8H261.599c-3.146,0-5.707-2.561-5.707-5.708V60.66c0-3.147,2.561-5.708,5.707-5.708
|
||||
h193.099c3.148,0,5.708,2.561,5.708,5.708v271.432C460.406,335.239,457.845,337.8,454.698,337.8z M261.599,55.203
|
||||
c-3.009,0-5.457,2.448-5.457,5.458v271.432c0,3.01,2.448,5.458,5.457,5.458h193.099c3.01,0,5.458-2.448,5.458-5.458V60.66
|
||||
c0-3.009-2.448-5.458-5.458-5.458H261.599z"/>
|
||||
</g>
|
||||
<rect y="382.398" style="fill:#EBEBEB;" width="500" height="0.25"/>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<rect x="350.073" y="249.948" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 795.3231 626.5402)" style="fill:#F5F5F5;" width="95.177" height="126.645"/>
|
||||
|
||||
<rect x="331.917" y="249.948" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 681.9898 626.5402)" style="fill:#E6E6E6;" width="18.156" height="126.645"/>
|
||||
|
||||
<rect x="356.25" y="259.345" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 794.8336 549.4448)" style="fill:#FAFAFA;" width="82.333" height="30.755"/>
|
||||
<path style="fill:#EBEBEB;" d="M408.153,259.345l-0.36,4.1c-0.119,1.352-1.251,2.39-2.609,2.39h-15.536
|
||||
c-1.357,0-2.49-1.037-2.609-2.39l-0.36-4.1H408.153z"/>
|
||||
|
||||
<rect x="356.25" y="293.459" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 794.8336 617.674)" style="fill:#FAFAFA;" width="82.333" height="30.755"/>
|
||||
<path style="fill:#EBEBEB;" d="M408.153,293.459l-0.36,4.1c-0.119,1.352-1.251,2.39-2.609,2.39h-15.536
|
||||
c-1.357,0-2.49-1.038-2.609-2.39l-0.36-4.1H408.153z"/>
|
||||
|
||||
<rect x="356.25" y="327.574" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 794.8336 685.9032)" style="fill:#FAFAFA;" width="82.333" height="30.755"/>
|
||||
<path style="fill:#EBEBEB;" d="M408.153,327.574l-0.36,4.1c-0.119,1.352-1.251,2.39-2.609,2.39h-15.536
|
||||
c-1.357,0-2.49-1.038-2.609-2.39l-0.36-4.1H408.153z"/>
|
||||
<polygon style="fill:#E6E6E6;" points="356.25,382.915 437.583,382.915 438.583,376.582 356.25,376.582 "/>
|
||||
<polygon style="fill:#E0E0E0;" points="339.25,382.915 356.25,382.915 356.25,376.582 338.25,376.582 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#FAFAFA;" points="394.482,250.084 426.982,250.084 423.376,208.868 390.876,208.868 "/>
|
||||
<polygon style="fill:#EBEBEB;" points="394.482,250.084 392.93,250.084 389.324,208.868 390.876,208.868 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="397.427,245.882 423.3,245.882 420.43,213.07 394.557,213.07 "/>
|
||||
<polygon style="fill:#E6E6E6;" points="399.321,243.181 420.934,243.181 418.536,215.771 396.923,215.771 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#F0F0F0;" points="385.35,250.084 387.582,224.573 355.229,224.573 352.997,250.084 "/>
|
||||
<polygon style="fill:#E0E0E0;" points="385.35,250.084 387.582,224.573 389.324,224.573 387.092,250.084 "/>
|
||||
<polygon style="fill:#EBEBEB;" points="382.279,247.483 384.056,227.174 358.3,227.174 356.523,247.483 "/>
|
||||
<polygon style="fill:#F5F5F5;" points="380.305,245.811 381.789,228.846 360.274,228.846 358.789,245.811 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#EBEBEB;" d="M310.644,365.77c0,6.76-1.061,11.133-2.848,13.938c-1.344,2.111-3.756,3.297-6.259,3.297h-9.788
|
||||
c-2.502,0-4.914-1.187-6.259-3.297c-1.787-2.806-2.848-7.178-2.848-13.938c0-9.805,4.275-17.655,5.671-23.923
|
||||
c0.503-2.257-1.171-9.174-1.171-9.174h19c0,0-1.674,6.918-1.171,9.174C306.369,348.115,310.644,355.965,310.644,365.77z"/>
|
||||
<path style="fill:#F5F5F5;" d="M343,326.087c0-8.513-13.346-4.979-16.71-18.186c-1.275-5.005,9.58-16.332,9.58-16.332h-33.845
|
||||
c0,0,10.855,11.327,9.58,16.332c-3.364,13.207-16.71,9.673-16.71,18.186c0,9.376,18.827,28.903,19.734,50.882
|
||||
c0.081,1.965-3.541,6.037-3.541,6.037h15.718c0,0-3.622-4.072-3.541-6.037C324.173,354.99,343,335.463,343,326.087z"/>
|
||||
<path style="fill:#F0F0F0;" d="M332.771,348.21c1.967-4.138-2.1-18.205-2.1-18.205h14.667c0,0-4.068,14.068-2.101,18.205
|
||||
c1.389,2.921,4.548,4.786,4.548,8.242v20.772c0,5.379-4.401,5.781-9.781,5.781s-9.781-0.401-9.781-5.781v-20.772
|
||||
C328.223,352.996,331.382,351.131,332.771,348.21z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M165.152,225.528c-8.426-3.649-13.234-11.349-10.715-17.165
|
||||
c2.518-5.816,11.424-7.579,19.85-3.931c8.428,3.649,13.235,11.35,10.717,17.166
|
||||
C182.485,227.414,173.58,229.177,165.152,225.528z M171.86,210.037c-3.949-1.71-8.121-0.883-9.301,1.842
|
||||
c-1.18,2.725,1.072,6.333,5.021,8.043c3.949,1.71,8.122,0.884,9.302-1.841C178.062,215.356,175.808,211.747,171.86,210.037z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M175.066,210.36l-4.004-1.734l24.197-55.935c0.479-1.106,1.763-1.615,2.869-1.136l0,0
|
||||
c1.105,0.479,1.614,1.762,1.135,2.868L175.066,210.36z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#E6E6E6;" points="201.117,159.831 193.434,156.474 195.167,152.47 202.851,155.827 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#E6E6E6;" points="197.33,164.308 191.828,161.918 193.562,157.914 199.063,160.304 "/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<rect x="191.366" y="165.542" transform="matrix(0.3974 -0.9177 0.9177 0.3974 -38.3573 279.3987)" style="fill:#E6E6E6;" width="4.363" height="6.723"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M176.623,204.389l-2.2-0.952c-1.096-0.475-1.6-1.748-1.125-2.844l0.015-0.034
|
||||
c0.475-1.096,1.748-1.6,2.844-1.125l2.2,0.952c1.096,0.475,1.6,1.748,1.125,2.844l-0.015,0.034
|
||||
C178.992,204.359,177.719,204.863,176.623,204.389z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M348.469,185.16c6.676,4.448,8.399,13.635,3.838,20.48c-4.56,6.844-13.703,8.794-20.379,4.346
|
||||
c-6.677-4.449-8.399-13.637-3.839-20.481C332.65,182.66,341.792,180.712,348.469,185.16z M336.324,203.389
|
||||
c3.129,2.084,7.412,1.171,9.549-2.036c2.137-3.207,1.33-7.512-1.799-9.596c-3.129-2.085-7.413-1.172-9.55,2.035
|
||||
C332.388,196.999,333.195,201.305,336.324,203.389z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M334.707,201.614l4.139,2.758l-29.614,45.32c-0.761,1.143-2.306,1.453-3.449,0.691h0
|
||||
c-1.143-0.761-1.452-2.305-0.691-3.447L334.707,201.614z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M305.278,237.054l8.71,5.85l-4.348,6.526l-8.727-5.861c-1.253-0.841-1.589-2.538-0.753-3.794
|
||||
l1.31-1.965C302.312,236.547,304.019,236.209,305.278,237.054z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#F0F0F0;" d="M227.537,98.556l-4.597,11.908c-0.414,1.073-1.62,1.607-2.693,1.193
|
||||
c-1.073-0.414-1.607-1.62-1.193-2.694l4.597-11.908c1.485-3.845-0.435-8.184-4.281-9.669l-4.26-1.645
|
||||
c-3.845-1.485-8.183,0.438-9.667,4.284l-1.877,4.862l-3.886-1.5l1.877-4.862c2.312-5.99,9.067-8.981,15.054-6.67l4.26,1.645
|
||||
C226.857,85.812,229.849,92.566,227.537,98.556z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M226.81,100.432c-0.306-0.395-0.722-0.717-1.221-0.91l-23.201-8.957
|
||||
c-0.517-0.2-1.061-0.241-1.566-0.139c-0.927,0.182-1.748,0.823-2.113,1.768l-8.957,23.201
|
||||
c-0.567,1.468,0.161,3.112,1.63,3.679l23.201,8.957c1.468,0.567,3.112-0.161,3.679-1.63l8.957-23.201
|
||||
C227.591,102.238,227.406,101.195,226.81,100.432z M209.194,118.36l-7.358-2.841l3.89-6.791
|
||||
c-0.49-0.985-0.58-2.167-0.152-3.277c0.812-2.102,3.174-3.154,5.277-2.342c2.102,0.812,3.151,3.18,2.34,5.282
|
||||
c-0.428,1.11-1.289,1.924-2.32,2.323L209.194,118.36z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<rect x="69.158" y="269.824" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 323.4438 639.2804)" style="fill:#E6E6E6;" width="185.129" height="99.632"/>
|
||||
|
||||
<rect x="239.445" y="373.593" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 490.5247 755.9769)" style="fill:#E6E6E6;" width="11.635" height="8.791"/>
|
||||
|
||||
<rect x="55.025" y="262.412" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 121.6854 644.7964)" style="fill:#E6E6E6;" width="11.635" height="119.972"/>
|
||||
<path style="fill:#F0F0F0;" d="M66.521,262.412v119.972h6.205v-6.723H251.08v6.723h6.206V262.412h-3.103h-3.103H72.727h-3.103
|
||||
H66.521z M72.727,273.272h86.074v41.669H72.727V273.272z M251.08,364.802h-86.074v-91.53h86.074V364.802z M72.727,364.802
|
||||
v-43.656h86.074v43.656H72.727z"/>
|
||||
|
||||
<rect x="165.006" y="277.754" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 410.2685 642.5555)" style="fill:#F5F5F5;" width="80.256" height="87.048"/>
|
||||
<path style="fill:#FAFAFA;" d="M168.64,318.669c0,2.059,1.669,3.729,3.729,3.729c2.059,0,3.729-1.669,3.729-3.729
|
||||
s-1.669-3.729-3.729-3.729C170.31,314.941,168.64,316.61,168.64,318.669z"/>
|
||||
<path style="fill:#E0E0E0;" d="M172.369,322.398c1.504,0,2.792-0.895,3.381-2.177c0.218,0.474,0.347,0.996,0.347,1.551
|
||||
c0,2.059-1.669,3.729-3.729,3.729c-2.059,0-3.729-1.669-3.729-3.729c0-0.555,0.13-1.078,0.347-1.551
|
||||
C169.577,321.503,170.865,322.398,172.369,322.398z"/>
|
||||
<polygon style="fill:#FAFAFA;" points="214.137,364.802 194.99,364.802 185.841,277.754 204.988,277.754 "/>
|
||||
<polygon style="fill:#FAFAFA;" points="190.086,364.802 186.275,364.802 177.126,277.754 180.937,277.754 "/>
|
||||
|
||||
<rect x="139.402" y="277.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 286.3894 592.5673)" style="fill:#FAFAFA;" width="7.584" height="37.232"/>
|
||||
|
||||
<rect x="107.956" y="277.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 223.496 592.5673)" style="fill:#F5F5F5;" width="7.584" height="37.232"/>
|
||||
|
||||
<rect x="131.818" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 271.2205 595.1838)" style="fill:#F5F5F5;" width="7.584" height="34.616"/>
|
||||
|
||||
<rect x="115.54" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 238.6649 595.1838)" style="fill:#FAFAFA;" width="7.584" height="34.616"/>
|
||||
|
||||
<rect x="123.125" y="277.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 251.1505 592.5673)" style="fill:#EBEBEB;" width="4.901" height="37.232"/>
|
||||
|
||||
<rect x="128.026" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 259.8438 595.1838)" style="fill:#FAFAFA;" width="3.792" height="34.616"/>
|
||||
|
||||
<rect x="100.371" y="277.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 208.3272 592.5673)" style="fill:#EBEBEB;" width="7.584" height="37.232"/>
|
||||
|
||||
<rect x="92.787" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 193.1584 595.1838)" style="fill:#E6E6E6;" width="7.584" height="34.616"/>
|
||||
|
||||
<rect x="76.509" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 160.6028 595.1838)" style="fill:#E6E6E6;" width="7.584" height="34.616"/>
|
||||
|
||||
<rect x="84.094" y="277.667" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 173.0884 592.5673)" style="fill:#FAFAFA;" width="4.901" height="37.232"/>
|
||||
|
||||
<rect x="88.995" y="280.284" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 181.7818 595.1838)" style="fill:#EBEBEB;" width="3.792" height="34.616"/>
|
||||
|
||||
<rect x="72.717" y="278.549" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 149.2262 593.4492)" style="fill:#EBEBEB;" width="3.792" height="36.351"/>
|
||||
<rect x="72.717" y="327.569" style="fill:#EBEBEB;" width="7.584" height="37.232"/>
|
||||
<rect x="104.164" y="327.569" style="fill:#FAFAFA;" width="7.584" height="37.232"/>
|
||||
<rect x="80.301" y="330.186" style="fill:#FAFAFA;" width="7.584" height="34.616"/>
|
||||
<rect x="96.579" y="330.186" style="fill:#EBEBEB;" width="7.584" height="34.616"/>
|
||||
<rect x="91.678" y="327.569" style="fill:#FAFAFA;" width="4.901" height="37.232"/>
|
||||
<rect x="87.886" y="330.186" style="fill:#F5F5F5;" width="3.792" height="34.616"/>
|
||||
<rect x="111.748" y="327.569" style="fill:#EBEBEB;" width="7.584" height="37.232"/>
|
||||
<rect x="119.332" y="330.186" style="fill:#F5F5F5;" width="7.584" height="34.616"/>
|
||||
<rect x="135.61" y="330.186" style="fill:#E6E6E6;" width="7.584" height="34.616"/>
|
||||
<rect x="130.709" y="327.569" style="fill:#FAFAFA;" width="4.901" height="37.232"/>
|
||||
<rect x="146.987" y="327.569" style="fill:#FAFAFA;" width="4.901" height="37.232"/>
|
||||
<rect x="126.917" y="330.186" style="fill:#EBEBEB;" width="3.792" height="34.616"/>
|
||||
<rect x="143.195" y="328.451" style="fill:#EBEBEB;" width="3.792" height="36.351"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M81.18,198.288c0,0-1.273,0.586-1.855,1.77c-0.582,1.184,1.223,3.37,1.223,3.37
|
||||
s1.515,1.055,3.021,0.371c1.506-0.684,1.506-0.684,1.506-0.684s-2.575-4.468-3.825-4.513L81.18,198.288z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M87.628,198.253c0.184,2.119-1.13,4.793-3.022,4.957c-1.892,0.164-3.646-2.243-3.83-4.363
|
||||
c-0.184-2.119,1.344-2.326,3.236-2.49C85.903,196.193,87.444,196.134,87.628,198.253z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M82.085,197.629c0,0,1.446,1.152,4.425,0.479C86.51,198.108,81.811,201.243,82.085,197.629z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M83.36,197.208c0,0,1.668-0.29,1.692,0.406c0,0,1.415-0.079,1.219-0.671
|
||||
C86.076,196.351,83.36,197.208,83.36,197.208z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M82.085,197.629c0,0,1.446,1.152,4.425,0.479C86.51,198.108,81.811,201.243,82.085,197.629z"
|
||||
/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M83.36,197.208c0,0,1.668-0.29,1.692,0.406c0,0,1.415-0.079,1.219-0.671
|
||||
C86.076,196.351,83.36,197.208,83.36,197.208z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M81.429,203.88c0.602,0.976,1.83,1.478,2.968,1.342c1.139-0.136,2.164-0.847,2.821-1.787
|
||||
c0.657-0.94,0.97-2.089,1.043-3.233c0.019-0.296,0.042-1.037-0.348-1.152c-0.358-0.105-0.579,0.396-0.745,0.629
|
||||
c-0.477,0.672-0.983,1.301-1.59,1.862c-0.589,0.543-1.24,1.019-1.937,1.413C83.445,203.064,81.535,204.052,81.429,203.88z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M89.547,199.648c0.358,0.859,0.228,1.904-0.331,2.648c-0.367,0.489-0.887,0.838-1.411,1.154
|
||||
c-0.364,0.22-0.833,0.428-1.19,0.197c-0.385-0.249-0.35-0.815-0.262-1.265c0.136-0.693,0.291-1.383,0.465-2.068
|
||||
c0.143-0.562,0.229-1.502,0.558-1.979c0.31-0.449,0.749-0.183,1.217,0.143C89.01,198.769,89.351,199.176,89.547,199.648z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M81.913,202.706c-0.731-0.031-1.422-0.526-1.688-1.207c-0.196-0.504-0.193-1.783,0.46-1.945
|
||||
C80.974,200.689,81.224,201.721,81.913,202.706z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M86.844,202.655c0.69-0.197,1.264-0.761,1.474-1.447c0.116-0.379-0.031-2.316-0.606-1.502
|
||||
c-0.188,0.266-0.153,1.116-0.251,1.46C87.314,201.683,87.107,202.185,86.844,202.655z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M84.202,203.851c0.534,0.454,1.387,0.476,1.943,0.05c-0.073,0.375-1.253,0.688-1.619,0.795
|
||||
c-0.953,0.28-1.452-0.139-2.377-0.525C82.149,204.171,83.614,204.394,84.202,203.851z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#E0E0E0;" points="82.547,242.801 82.637,213.949 84.117,205.175 84.679,205.27 83.206,214.004
|
||||
83.102,243.349 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E0E0E0;" d="M83.148,213.803l-0.452,0.347c-0.453-0.59-0.861-1.36-1.333-2.252
|
||||
c-0.73-1.378-1.558-2.941-2.815-4.323l0.422-0.383c1.305,1.436,2.151,3.032,2.897,4.44
|
||||
C82.326,212.501,82.724,213.251,83.148,213.803z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M83.496,209.933c0.768-0.202,1.456-0.691,1.899-1.35c0.503-0.748,0.678-1.663,0.842-2.549
|
||||
c-0.996,0.298-2.066-0.186-3.098-0.067c-0.823,0.095-1.59,0.596-2.006,1.313c-0.539,0.928-0.758,1.981-0.282,2.406
|
||||
C81.243,210.035,82.469,210.203,83.496,209.933z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M79.662,207.941c-0.92,0.583-2.103,0.731-3.138,0.393c-1.035-0.337-1.337-1.893-1.738-2.906
|
||||
c0.939-0.193,3.324-0.058,3.864-0.004c0.54,0.054,1.088,0.298,1.379,0.756c0.29,0.458,0.237,1.146-0.203,1.463
|
||||
C79.796,207.625,79.662,207.941,79.662,207.941z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M74.929,209.626c0.633-0.766,2.193-1.321,3.17-1.143c0.977,0.178,1.811,0.851,2.161,1.65
|
||||
c-0.258,0.62-0.95,0.971-1.62,1.019c-0.67,0.048-1.331-0.15-1.974-0.346c-0.642-0.196-1.303-0.395-1.973-0.347
|
||||
L74.929,209.626z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M94.177,204.666c0,0,1.044,0.935,1.252,2.237c0.208,1.303-2.16,2.862-2.16,2.862
|
||||
s-1.759,0.563-2.997-0.533c-1.238-1.097-1.238-1.097-1.238-1.097s3.775-3.514,4.982-3.189L94.177,204.666z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M88.024,202.737c-0.799,1.972-0.329,4.913,1.432,5.626c1.76,0.713,4.145-1.072,4.943-3.044
|
||||
c0.799-1.971-0.601-2.618-2.361-3.331C90.278,201.275,88.823,200.765,88.024,202.737z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M93.506,203.77c0,0-1.721,0.676-4.371-0.843C89.135,202.927,92.704,207.304,93.506,203.77z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M92.41,202.992c0,0-1.508-0.768-1.737-0.11c0,0-1.329-0.491-0.968-1
|
||||
C90.067,201.375,92.41,202.992,92.41,202.992z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M93.506,203.77c0,0-1.721,0.676-4.371-0.843C89.135,202.927,92.704,207.304,93.506,203.77z"
|
||||
/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M92.41,202.992c0,0-1.508-0.768-1.737-0.11c0,0-1.329-0.491-0.968-1
|
||||
C90.067,201.375,92.41,202.992,92.41,202.992z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M92.294,209.937c-0.862,0.756-2.183,0.875-3.232,0.41c-1.048-0.465-1.819-1.446-2.171-2.538
|
||||
c-0.352-1.091-0.313-2.282-0.046-3.397c0.069-0.289,0.265-1.004,0.672-0.998c0.374,0.005,0.437,0.548,0.527,0.82
|
||||
c0.259,0.783,0.557,1.532,0.973,2.247c0.403,0.692,0.886,1.338,1.436,1.92C90.608,208.565,92.142,210.071,92.294,209.937z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M85.78,203.505c-0.595,0.716-0.777,1.753-0.462,2.629c0.207,0.575,0.602,1.062,1.009,1.518
|
||||
c0.284,0.317,0.671,0.654,1.08,0.538c0.442-0.125,0.575-0.676,0.622-1.132c0.074-0.703,0.129-1.407,0.164-2.113
|
||||
c0.029-0.579,0.223-1.503,0.048-2.055c-0.164-0.52-0.662-0.395-1.205-0.221C86.551,202.823,86.106,203.112,85.78,203.505z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M92.178,208.673c0.708,0.185,1.513-0.084,1.968-0.658c0.336-0.424,0.708-1.647,0.132-1.994
|
||||
C93.667,207.021,93.125,207.934,92.178,208.673z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M87.479,207.174c-0.602-0.391-0.985-1.099-0.984-1.817c0-0.396,0.711-2.205,1.021-1.258
|
||||
c0.101,0.309-0.182,1.112-0.19,1.469C87.315,206.107,87.366,206.648,87.479,207.174z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M89.652,209.094c-0.643,0.277-1.465,0.047-1.872-0.523c-0.041,0.379,0.995,1.026,1.314,1.236
|
||||
c0.829,0.548,1.428,0.294,2.426,0.197C91.521,210.004,90.055,209.786,89.652,209.094z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#E0E0E0;" points="81.727,238.493 82.086,237.311 82.571,235.719 83.132,233.861 87.618,219.09
|
||||
88.179,214.851 88.677,211.09 88.78,210.309 89.059,210.345 89.063,210.349 89.346,210.385 89.338,210.453 89.238,211.189
|
||||
88.709,215.209 88.275,218.485 88.179,219.205 88.144,219.321 83.129,235.819 82.563,237.67 82.304,238.529 81.946,239.704
|
||||
"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E0E0E0;" d="M87.734,218.917l0.33,0.465c0.606-0.431,1.223-1.047,1.936-1.76
|
||||
c1.103-1.103,2.354-2.352,3.962-3.305l-0.29-0.49c-1.67,0.988-2.947,2.265-4.074,3.392
|
||||
C88.902,217.913,88.302,218.514,87.734,218.917z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M88.539,215.115c-0.674-0.419-1.188-1.089-1.419-1.848c-0.261-0.863-0.159-1.789-0.055-2.684
|
||||
c0.865,0.577,2.029,0.43,2.981,0.847c0.759,0.332,1.344,1.037,1.531,1.844c0.242,1.046,0.142,2.116-0.438,2.383
|
||||
C90.663,215.875,89.441,215.675,88.539,215.115z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M92.79,214.339c0.709,0.827,1.795,1.317,2.884,1.299c1.089-0.018,1.835-1.417,2.516-2.267
|
||||
c-0.841-0.46-3.16-1.033-3.692-1.14c-0.532-0.107-1.128-0.035-1.54,0.317c-0.412,0.353-0.563,1.026-0.236,1.458
|
||||
C92.754,213.997,92.79,214.339,92.79,214.339z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M96.818,217.341c-0.38-0.918-1.707-1.908-2.694-2.025c-0.986-0.117-1.981,0.281-2.55,0.942
|
||||
c0.065,0.669,0.623,1.207,1.249,1.45c0.626,0.243,1.316,0.248,1.988,0.249c0.672,0.001,1.361,0.006,1.988,0.248
|
||||
L96.818,217.341z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M73.923,203.513c0,0-1.147,0.806-1.507,2.075c-0.36,1.269,1.809,3.096,1.809,3.096
|
||||
s1.68,0.766,3.038-0.178c1.358-0.944,1.358-0.944,1.358-0.944s-3.336-3.933-4.573-3.752L73.923,203.513z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M80.26,202.32c0.561,2.052-0.251,4.918-2.083,5.419c-1.832,0.501-3.99-1.552-4.551-3.604
|
||||
c-0.562-2.052,0.904-2.529,2.736-3.031S79.698,200.268,80.26,202.32z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M74.695,202.702c0,0,1.63,0.873,4.44-0.324C79.135,202.378,75.075,206.306,74.695,202.702z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M75.874,202.058c0,0,1.588-0.585,1.737,0.095c0,0,1.378-0.332,1.079-0.879
|
||||
C78.391,200.728,75.874,202.058,75.874,202.058z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M74.695,202.702c0,0,1.63,0.873,4.44-0.324C79.135,202.378,75.075,206.306,74.695,202.702z"
|
||||
/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M75.874,202.058c0,0,1.588-0.585,1.737,0.095c0,0,1.378-0.332,1.079-0.879
|
||||
C78.391,200.728,75.874,202.058,75.874,202.058z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M75.173,208.969c0.768,0.852,2.065,1.125,3.161,0.787c1.096-0.338,1.976-1.222,2.454-2.265
|
||||
c0.477-1.043,0.579-2.229,0.445-3.368c-0.035-0.295-0.145-1.028-0.55-1.07c-0.371-0.039-0.498,0.493-0.62,0.753
|
||||
c-0.349,0.747-0.733,1.456-1.23,2.117c-0.482,0.64-1.037,1.225-1.652,1.738C77.009,207.804,75.309,209.119,75.173,208.969z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M82.399,203.347c0.507,0.781,0.566,1.832,0.15,2.665c-0.273,0.547-0.722,0.984-1.181,1.388
|
||||
c-0.319,0.281-0.743,0.571-1.136,0.408c-0.424-0.176-0.491-0.739-0.485-1.198c0.009-0.706,0.038-1.413,0.086-2.118
|
||||
c0.039-0.578-0.045-1.519,0.193-2.047c0.224-0.497,0.704-0.314,1.223-0.078C81.713,202.579,82.121,202.918,82.399,203.347z"
|
||||
/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M75.438,207.727c-0.725,0.101-1.493-0.262-1.877-0.884c-0.284-0.461-0.51-1.719,0.103-1.996
|
||||
C74.152,205.912,74.583,206.882,75.438,207.727z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M80.28,206.791c0.644-0.318,1.107-0.975,1.19-1.689c0.046-0.394-0.447-2.273-0.867-1.369
|
||||
c-0.137,0.296,0.05,1.126,0.016,1.482C80.568,205.751,80.454,206.281,80.28,206.791z"/>
|
||||
</g>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FAFAFA;" d="M77.896,208.442c0.606,0.35,1.45,0.219,1.92-0.3c-0.004,0.381-1.109,0.902-1.45,1.073
|
||||
c-0.887,0.447-1.453,0.124-2.433-0.09C75.934,209.126,77.415,209.082,77.896,208.442z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#E0E0E0;" points="83.265,247.056 78.171,218.657 78.049,209.76 78.619,209.752 78.74,218.609
|
||||
83.91,247.495 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E0E0E0;" d="M78.646,218.422l-0.383,0.423c-0.552-0.499-1.091-1.183-1.716-1.976
|
||||
c-0.966-1.225-2.061-2.613-3.546-3.747l0.346-0.453c1.542,1.178,2.661,2.596,3.648,3.847
|
||||
C77.604,217.288,78.13,217.955,78.646,218.422z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M78.294,214.552c0.719-0.337,1.308-0.942,1.626-1.669c0.361-0.826,0.368-1.757,0.37-2.659
|
||||
c-0.926,0.472-2.066,0.188-3.06,0.49c-0.793,0.241-1.457,0.872-1.737,1.652c-0.363,1.01-0.39,2.085,0.155,2.418
|
||||
C76.095,215.058,77.332,215.003,78.294,214.552z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M74.164,213.282c-0.801,0.738-1.938,1.096-3.017,0.951c-1.079-0.146-1.656-1.622-2.232-2.547
|
||||
c0.889-0.358,3.26-0.654,3.801-0.698c0.541-0.044,1.124,0.097,1.492,0.496c0.368,0.399,0.439,1.085,0.063,1.476
|
||||
C74.24,212.946,74.164,213.282,74.164,213.282z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E6E6E6;" d="M69.811,215.79c0.485-0.867,1.92-1.694,2.913-1.694c0.993-0.001,1.934,0.511,2.422,1.235
|
||||
c-0.143,0.656-0.761,1.125-1.411,1.293c-0.651,0.168-1.336,0.092-2.003,0.014c-0.667-0.078-1.353-0.154-2.004,0.013
|
||||
L69.811,215.79z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#F0F0F0;" d="M85.355,229.633h-5.979c-0.448-0.009-0.848,0.279-0.982,0.707
|
||||
c-0.491,1.551-1.536,5.63-1.536,12.055c0,7.059,1.841,16.429,2.42,19.197c0.097,0.466,0.506,0.801,0.982,0.805h4.163
|
||||
c0.476-0.004,0.885-0.339,0.982-0.805c0.579-2.768,2.42-12.139,2.42-19.197c0-6.425-1.046-10.504-1.536-12.055
|
||||
C86.158,229.93,85.784,229.647,85.355,229.633z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Background_Simple" style="display:none;">
|
||||
<g style="display:inline;">
|
||||
<path style="fill:#0d9394;" d="M88.424,236.439c14.509-3.186,29.737,0.536,44.093,5.21c14.356,4.673,28.69,10.367,43.601,11.223
|
||||
c33.89,1.946,63.75-21.265,86.126-47.277c22.377-26.012,40.993-56.34,68.478-76.308c12.081-8.777,27.016-15.491,41.568-11.688
|
||||
c11.246,2.939,20.369,11.667,28.252,20.702c14.367,16.466,26.478,35.079,35.823,55.053c7.9,16.885,13.794,36.936,6.535,53.681
|
||||
c-6.544,15.095-21.922,23.27-36.473,29.787c-100.891,45.188-211.741,62.412-321.941,72.07c-4.414,0.387-9.104,0.708-13.099-1.448
|
||||
c-5.566-3.004-8.1-9.832-9.789-16.123C52.886,298.871,47.521,245.421,88.424,236.439z"/>
|
||||
<path style="opacity:0.9;fill:#FFFFFF;" d="M88.424,236.439c14.509-3.186,29.737,0.536,44.093,5.21
|
||||
c14.356,4.673,28.69,10.367,43.601,11.223c33.89,1.946,63.75-21.265,86.126-47.277c22.377-26.012,40.993-56.34,68.478-76.308
|
||||
c12.081-8.777,27.016-15.491,41.568-11.688c11.246,2.939,20.369,11.667,28.252,20.702c14.367,16.466,26.478,35.079,35.823,55.053
|
||||
c7.9,16.885,13.794,36.936,6.535,53.681c-6.544,15.095-21.922,23.27-36.473,29.787c-100.891,45.188-211.741,62.412-321.941,72.07
|
||||
c-4.414,0.387-9.104,0.708-13.099-1.448c-5.566-3.004-8.1-9.832-9.789-16.123C52.886,298.871,47.521,245.421,88.424,236.439z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shadow">
|
||||
<ellipse id="_x3C_Path_x3E__359_" style="fill:#F5F5F5;" cx="250" cy="415.693" rx="193.889" ry="11.323"/>
|
||||
</g>
|
||||
<g id="Plant">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M120.783,376.773c-0.34-0.022-0.605-0.31-0.597-0.654c0.74-29.39,2.256-77.602,2.335-77.866
|
||||
c0.101-0.338,0.457-0.522,0.794-0.43c0.337,0.101,0.531,0.456,0.432,0.794c-0.019,0.065-1.55,48.444-2.283,77.535
|
||||
c-0.008,0.352-0.302,0.631-0.655,0.623C120.8,376.774,120.792,376.773,120.783,376.773z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M116.833,278.631c0.246,2.264,2.956,10.111,5.22,9.865c2.263-0.246,3.223-8.493,2.977-10.757
|
||||
c-0.246-2.263-2.281-3.899-4.544-3.653C118.222,274.333,116.587,276.368,116.833,278.631z"/>
|
||||
<path style="fill:#0d9394;" d="M127.819,303.385c-0.246-2.264-2.956-10.111-5.22-9.865c-2.264,0.246-3.224,8.493-2.978,10.757
|
||||
c0.246,2.263,2.281,3.899,4.544,3.653C126.43,307.684,128.066,305.65,127.819,303.385z"/>
|
||||
<path style="fill:#0d9394;" d="M109.949,296.502c2.264-0.246,10.111-2.956,9.865-5.22c-0.246-2.263-8.493-3.223-10.756-2.977
|
||||
c-2.264,0.246-3.899,2.281-3.653,4.544C105.651,295.113,107.685,296.748,109.949,296.502z"/>
|
||||
<path style="fill:#0d9394;" d="M134.703,285.515c-2.264,0.246-10.111,2.956-9.865,5.22c0.247,2.264,8.493,3.224,10.757,2.977
|
||||
c2.264-0.246,3.899-2.281,3.653-4.544C139.002,286.905,136.966,285.269,134.703,285.515z"/>
|
||||
<path style="fill:#0d9394;" d="M109.689,286.141c1.775,1.427,9.24,5.06,10.667,3.285c1.427-1.775-3.726-8.285-5.5-9.712
|
||||
c-1.775-1.426-4.37-1.144-5.797,0.631C107.633,282.119,107.915,284.714,109.689,286.141z"/>
|
||||
<path style="fill:#0d9394;" d="M134.962,295.876c-1.775-1.427-9.24-5.059-10.667-3.284c-1.426,1.774,3.726,8.284,5.501,9.711
|
||||
c1.775,1.426,4.37,1.144,5.796-0.63C137.02,299.898,136.737,297.302,134.962,295.876z"/>
|
||||
<path style="fill:#0d9394;" d="M117.459,303.645c1.426-1.775,5.059-9.24,3.284-10.667c-1.775-1.427-8.284,3.726-9.711,5.501
|
||||
c-1.427,1.775-1.144,4.37,0.631,5.796C113.437,305.702,116.032,305.42,117.459,303.645z"/>
|
||||
<path style="fill:#0d9394;" d="M127.194,278.372c-1.426,1.775-5.059,9.24-3.284,10.667c1.775,1.426,8.285-3.726,9.711-5.501
|
||||
c1.427-1.775,1.144-4.37-0.631-5.796C131.216,276.315,128.62,276.598,127.194,278.372z"/>
|
||||
</g>
|
||||
<g style="opacity:0.6;enable-background:new ;">
|
||||
<path style="fill:#FFFFFF;" d="M116.833,278.631c0.246,2.264,2.956,10.111,5.22,9.865c2.263-0.246,3.223-8.493,2.977-10.757
|
||||
c-0.246-2.263-2.281-3.899-4.544-3.653C118.222,274.333,116.587,276.368,116.833,278.631z"/>
|
||||
<path style="fill:#FFFFFF;" d="M127.819,303.385c-0.246-2.264-2.956-10.111-5.22-9.865c-2.264,0.246-3.224,8.493-2.978,10.757
|
||||
c0.246,2.263,2.281,3.899,4.544,3.653C126.43,307.684,128.066,305.65,127.819,303.385z"/>
|
||||
<path style="fill:#FFFFFF;" d="M109.949,296.502c2.264-0.246,10.111-2.956,9.865-5.22c-0.246-2.263-8.493-3.223-10.756-2.977
|
||||
c-2.264,0.246-3.899,2.281-3.653,4.544C105.651,295.113,107.685,296.748,109.949,296.502z"/>
|
||||
<path style="fill:#FFFFFF;" d="M134.703,285.515c-2.264,0.246-10.111,2.956-9.865,5.22c0.247,2.264,8.493,3.224,10.757,2.977
|
||||
c2.264-0.246,3.899-2.281,3.653-4.544C139.002,286.905,136.966,285.269,134.703,285.515z"/>
|
||||
<path style="fill:#FFFFFF;" d="M109.689,286.141c1.775,1.427,9.24,5.06,10.667,3.285c1.427-1.775-3.726-8.285-5.5-9.712
|
||||
c-1.775-1.426-4.37-1.144-5.797,0.631C107.633,282.119,107.915,284.714,109.689,286.141z"/>
|
||||
<path style="fill:#FFFFFF;" d="M134.962,295.876c-1.775-1.427-9.24-5.059-10.667-3.284c-1.426,1.774,3.726,8.284,5.501,9.711
|
||||
c1.775,1.426,4.37,1.144,5.796-0.63C137.02,299.898,136.737,297.302,134.962,295.876z"/>
|
||||
<path style="fill:#FFFFFF;" d="M117.459,303.645c1.426-1.775,5.059-9.24,3.284-10.667c-1.775-1.427-8.284,3.726-9.711,5.501
|
||||
c-1.427,1.775-1.144,4.37,0.631,5.796C113.437,305.702,116.032,305.42,117.459,303.645z"/>
|
||||
<path style="fill:#FFFFFF;" d="M127.194,278.372c-1.426,1.775-5.059,9.24-3.284,10.667c1.775,1.426,8.285-3.726,9.711-5.501
|
||||
c1.427-1.775,1.144-4.37-0.631-5.796C131.216,276.315,128.62,276.598,127.194,278.372z"/>
|
||||
</g>
|
||||
<path style="fill:#0d9394;" d="M117.472,291.536c0.291,2.681,2.701,4.618,5.382,4.326c2.681-0.291,4.618-2.701,4.326-5.382
|
||||
c-0.292-2.681-2.702-4.618-5.382-4.326C119.117,286.446,117.181,288.855,117.472,291.536z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M117.952,355.238c-5.634,0.124-15.274-5.081-19.067-10.161c-3.849-5.155,6.945-1.981,5.826-6.034
|
||||
c-1.12-4.053-14.408-1.016-16.879-6.819c-2.471-5.803,7.127-4.495,6.737-7.464c-0.389-2.969-10.327-2.336-13.536-8.503
|
||||
c-3.209-6.167,5.544-2.733,4.164-5.288c-1.38-2.556-12.37-13.297-7.79-15.556c4.579-2.259,14.885,8.931,18.33,10.174
|
||||
c3.445,1.242,4.227-6.511,8.716-2.817c4.489,3.695,1.185,19.906,6.463,22.028c3.931,1.581,2.239-5.833,6.765-3.974
|
||||
C125.605,324.078,120.24,355.188,117.952,355.238z"/>
|
||||
<g style="opacity:0.2;">
|
||||
<path style="fill:#FFFFFF;" d="M117.952,355.238c-5.634,0.124-15.274-5.081-19.067-10.161
|
||||
c-3.849-5.155,6.945-1.981,5.826-6.034c-1.12-4.053-14.408-1.016-16.879-6.819c-2.471-5.803,7.127-4.495,6.737-7.464
|
||||
c-0.389-2.969-10.327-2.336-13.536-8.503c-3.209-6.167,5.544-2.733,4.164-5.288c-1.38-2.556-12.37-13.297-7.79-15.556
|
||||
c4.579-2.259,14.885,8.931,18.33,10.174c3.445,1.242,4.227-6.511,8.716-2.817c4.489,3.695,1.185,19.906,6.463,22.028
|
||||
c3.931,1.581,2.239-5.833,6.765-3.974C125.605,324.078,120.24,355.188,117.952,355.238z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M126.049,348.089c0.094,0.158-0.749,0.957,2.033,1.072c6.851,0.282,18.964-0.18,23.513-6.409
|
||||
c6.495-8.893-8.485-8.077-7.028-12.981c1.457-4.904,17.549-0.899,20.69-7.9c3.141-7.001-8.563-5.634-8.021-9.236
|
||||
c0.543-3.602,12.823,1.065,16.87-6.361c4.047-7.426-6.68-3.453-4.942-6.53c1.738-3.076,15.356-15.885,9.839-18.74
|
||||
c-5.517-2.855-18.314,10.516-22.534,11.947c-4.22,1.43-5.196-11.684-10.743-7.295c-5.547,4.389-1.907,24.185-8.376,26.643
|
||||
c-4.819,1.831-2.19-5.264-8.136-4.992C121.136,307.678,118.48,335.436,126.049,348.089z"/>
|
||||
</g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M126.049,348.089c0.094,0.158-0.749,0.957,2.033,1.072c6.851,0.282,18.964-0.18,23.513-6.409
|
||||
c6.495-8.893-8.485-8.077-7.028-12.981c1.457-4.904,17.549-0.899,20.69-7.9c3.141-7.001-8.563-5.634-8.021-9.236
|
||||
c0.543-3.602,12.823,1.065,16.87-6.361c4.047-7.426-6.68-3.453-4.942-6.53c1.738-3.076,15.356-15.885,9.839-18.74
|
||||
c-5.517-2.855-18.314,10.516-22.534,11.947c-4.22,1.43-5.196-11.684-10.743-7.295c-5.547,4.389-1.907,24.185-8.376,26.643
|
||||
c-4.819,1.831-2.19-5.264-8.136-4.992C121.136,307.678,118.48,335.436,126.049,348.089z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M120.915,372.332c-0.012-0.001-0.024-0.002-0.037-0.003
|
||||
c-0.244-0.029-0.418-0.251-0.388-0.496c5.623-46.016,32.13-64.72,32.396-64.903c0.203-0.138,0.48-0.088,0.619,0.115
|
||||
c0.139,0.202,0.088,0.48-0.115,0.619c-0.264,0.181-26.445,18.683-32.016,64.277
|
||||
C121.346,372.173,121.145,372.341,120.915,372.332z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M146.855,313.323c-0.181-0.007-0.347-0.126-0.406-0.307
|
||||
c-0.076-0.234,0.052-0.485,0.286-0.561c0.165-0.054,4.112-1.302,10.579,0.071c0.241,0.051,0.395,0.288,0.344,0.528
|
||||
c-0.051,0.241-0.288,0.396-0.528,0.344c-6.215-1.318-10.081-0.107-10.119-0.095
|
||||
C146.959,313.318,146.906,313.325,146.855,313.323z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M141.955,318.912c-0.236-0.01-0.424-0.202-0.427-0.441
|
||||
c-0.137-13.917,7.919-24.79,8.001-24.898c0.147-0.196,0.427-0.236,0.624-0.088c0.197,0.148,0.236,0.427,0.089,0.624
|
||||
c-0.08,0.106-7.956,10.749-7.822,24.354c0.002,0.246-0.195,0.447-0.441,0.45
|
||||
C141.971,318.913,141.963,318.912,141.955,318.912z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M134.061,330.691c-0.112-0.005-0.223-0.051-0.306-0.14
|
||||
c-0.169-0.178-0.161-0.46,0.018-0.63c0.06-0.056,6.024-5.57,13.834-2.772c0.231,0.083,0.352,0.338,0.269,0.57
|
||||
c-0.083,0.231-0.338,0.353-0.57,0.269c-7.301-2.619-12.866,2.528-12.921,2.581
|
||||
C134.295,330.655,134.177,330.695,134.061,330.691z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M129.935,338.908c-0.166-0.007-0.322-0.107-0.391-0.27
|
||||
c-0.125-0.292-3.046-7.289-1.436-17.258c0.04-0.242,0.259-0.412,0.511-0.368c0.243,0.039,0.408,0.267,0.369,0.51
|
||||
c-1.566,9.7,1.346,16.697,1.376,16.766c0.096,0.226-0.009,0.488-0.235,0.584
|
||||
C130.065,338.899,129.999,338.91,129.935,338.908z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M121.094,388.769c-0.231-0.009-0.419-0.197-0.426-0.431l-0.578-12.188
|
||||
c-1.705-40.525-29.503-68.088-29.784-68.361c-0.176-0.172-0.18-0.454-0.008-0.63c0.173-0.176,0.454-0.179,0.63-0.008
|
||||
c0.283,0.276,28.331,28.074,30.052,68.967l0.578,12.193c0.008,0.246-0.185,0.451-0.431,0.46
|
||||
C121.116,388.77,121.105,388.769,121.094,388.769z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M101.771,323.012c-0.024-0.001-0.049-0.004-0.073-0.009c-0.039-0.008-0.087-0.027-0.13-0.05
|
||||
l-0.144-0.058c-3.639-1.512-7.705-2.296-11.447-2.214c-0.25,0.012-0.45-0.189-0.455-0.436
|
||||
c-0.006-0.246,0.189-0.449,0.435-0.455c3.864-0.083,8.058,0.724,11.809,2.282l0.148,0.061
|
||||
c0.027,0.01,0.052,0.022,0.076,0.036c0.175,0.089,0.276,0.287,0.234,0.488C102.179,322.875,101.984,323.021,101.771,323.012
|
||||
z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M105.702,328.231c-0.007,0-0.015-0.001-0.022-0.002c-0.245-0.021-0.426-0.239-0.404-0.483
|
||||
c1.076-11.961-5.118-21.802-5.181-21.9c-0.132-0.207-0.072-0.483,0.135-0.615c0.209-0.132,0.483-0.072,0.615,0.135
|
||||
c0.064,0.1,6.423,10.187,5.318,22.46C106.142,328.064,105.938,328.241,105.702,328.231z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M109.758,335.16c-0.108-0.004-0.216-0.049-0.298-0.131
|
||||
c-0.045-0.046-4.559-4.501-11.165-2.741c-0.239,0.065-0.482-0.079-0.545-0.316c-0.063-0.238,0.078-0.482,0.316-0.545
|
||||
c7.121-1.9,11.832,2.776,12.028,2.976c0.173,0.175,0.171,0.456-0.004,0.63C109.998,335.122,109.878,335.165,109.758,335.16z
|
||||
"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M114.907,346.58c-0.064-0.003-0.128-0.019-0.188-0.05c-0.218-0.114-0.302-0.383-0.188-0.601
|
||||
c0.031-0.06,3.09-6.039,2.393-14.665c-0.02-0.245,0.162-0.46,0.408-0.479c0.247-0.03,0.46,0.162,0.48,0.408
|
||||
c0.72,8.896-2.36,14.898-2.491,15.15C115.238,346.499,115.074,346.586,114.907,346.58z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M146.157,390.688c0,14.214-6.393,25.742-25.754,25.742c-18.478,0-25.754-11.528-25.754-25.742
|
||||
c0-5.361,1.647-10.348,4.45-14.471h42.608C144.51,380.34,146.157,385.327,146.157,390.688z"/>
|
||||
<path style="opacity:0.7;fill:#FFFFFF;" d="M146.157,390.688c0,14.214-6.393,25.742-25.754,25.742
|
||||
c-18.478,0-25.754-11.528-25.754-25.742c0-5.361,1.647-10.348,4.45-14.471h42.608
|
||||
C144.51,380.34,146.157,385.327,146.157,390.688z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Character">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon style="fill:#E8BFBF;" points="294.101,403.863 304.061,402.409 301.546,379.108 291.585,380.562 "/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M311.719,402.758c0.865-0.064,1.683-0.419,2.32-1.008c0.272-0.343,0.358-0.798,0.23-1.216
|
||||
c-0.057-0.262-0.246-0.476-0.5-0.564c-1.331-0.475-4.974,2.209-5.381,2.512c-0.079,0.064-0.113,0.167-0.088,0.265
|
||||
c0.034,0.094,0.123,0.157,0.223,0.158C309.59,402.953,310.66,402.904,311.719,402.758z M313.12,400.422
|
||||
c0.15-0.037,0.307-0.032,0.454,0.012c0.105,0.033,0.183,0.12,0.206,0.228c0.082,0.276,0.027,0.575-0.148,0.804
|
||||
c-0.512,0.638-2.138,0.998-4.406,0.997c1.181-0.904,2.508-1.599,3.924-2.056L313.12,400.422z"/>
|
||||
<path style="fill:#0d9394;" d="M308.578,402.916l0.082-0.038c1.105-0.728,3.098-3.265,2.724-4.361
|
||||
c-0.115-0.245-0.323-0.559-0.991-0.522c-0.483,0.008-0.941,0.222-1.258,0.587c-1.079,1.238-0.865,3.966-0.862,4.077
|
||||
c-0.003,0.084,0.034,0.164,0.1,0.215C308.431,402.92,308.507,402.935,308.578,402.916z M310.253,398.496l0.133-0.062
|
||||
c0.44-0.018,0.491,0.145,0.505,0.2c0.235,0.663-1.086,2.612-2.186,3.512c-0.102-1.147,0.165-2.297,0.76-3.283
|
||||
c0.213-0.222,0.501-0.357,0.808-0.377L310.253,398.496z"/>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M303.043,398.284l-8.833,2.105c-0.398,0.082-0.669,0.452-0.626,0.856l0.285,12.781
|
||||
c0.123,0.896,0.949,1.522,1.844,1.399c0.062-0.009,0.124-0.021,0.184-0.036c3.826-0.953,5.632-1.603,10.497-2.725
|
||||
c2.981-0.686,12.428-1.398,16.298-3.122c3.869-1.723,2.362-5.645,0.597-5.275c-5.676,1.221-12.969-1.209-17.112-4.908
|
||||
C305.615,399.084,303.649,398.127,303.043,398.284z"/>
|
||||
<polygon style="opacity:0.2;" points="301.546,379.108 302.842,391.118 292.883,392.583 291.576,380.575 "/>
|
||||
<path style="fill:#0d9394;" d="M306.866,386.175l-18.429,3.441c0,0-8.949-12.776-10.638-21.849
|
||||
c-1.758-9.447,0.121-41.609,0-42.036c-5.213-17.597-19.375-63.201-26.214-79.981c-3.787-9.3-6.445-15.561-6.445-15.561
|
||||
l1.915-0.43l15.043-6.162l10.962,2.066c0,0,33.313,67.362,36.805,92.703C312.471,337.287,306.866,386.175,306.866,386.175z"
|
||||
/>
|
||||
<path style="opacity:0.3;fill:#FFFFFF;" d="M306.866,386.175l-18.429,3.441c0,0-8.949-12.776-10.638-21.849
|
||||
c-1.758-9.447,0.121-41.609,0-42.036c-5.213-17.597-19.375-63.201-26.214-79.981c-3.787-9.3-6.445-15.561-6.445-15.561
|
||||
l1.915-0.43l15.043-6.162l10.962,2.066c0,0,33.313,67.362,36.805,92.703C312.471,337.287,306.866,386.175,306.866,386.175z"
|
||||
/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M273.458,310.491c-5.213-17.597-15.727-44.292-22.567-61.073
|
||||
l-4.531-15.99l-0.871-3.076l1.586,2.906l17.854,39.546C272.807,287.946,273.578,310.918,273.458,310.491z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#E8BFBF;" points="192.572,398.376 201.449,402.116 210.923,381.789 202.046,378.049 "/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M207.233,406.371c0.704,0.44,1.536,0.628,2.361,0.533c0.404-0.111,0.727-0.414,0.865-0.809
|
||||
c0.105-0.235,0.079-0.507-0.067-0.718c-0.759-1.119-5.089-1.105-5.574-1.102c-0.097,0.005-0.182,0.065-0.218,0.155
|
||||
c-0.027,0.092,0.006,0.191,0.083,0.248C205.479,405.319,206.333,405.886,207.233,406.371z M209.635,405.359
|
||||
c0.136,0.056,0.255,0.148,0.344,0.266c0.062,0.085,0.074,0.197,0.03,0.292c-0.093,0.26-0.304,0.459-0.569,0.537
|
||||
c-0.756,0.203-2.215-0.438-3.965-1.72c1.423-0.03,2.841,0.183,4.192,0.63L209.635,405.359z"/>
|
||||
<path style="fill:#0d9394;" d="M204.719,404.718l0.085,0.017c1.265,0.063,4.237-0.77,4.568-1.828
|
||||
c0.05-0.254,0.066-0.615-0.47-0.963c-0.378-0.267-0.852-0.361-1.303-0.258c-1.533,0.346-2.91,2.574-2.971,2.661
|
||||
c-0.05,0.063-0.066,0.146-0.044,0.223C204.602,404.638,204.653,404.692,204.719,404.718z M208.51,402.252l0.138,0.027
|
||||
c0.35,0.235,0.298,0.389,0.277,0.44c-0.194,0.645-2.315,1.403-3.673,1.476c0.57-0.943,1.425-1.68,2.442-2.105
|
||||
c0.29-0.051,0.589,0.008,0.837,0.166L208.51,402.252z"/>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M203.063,398.013l-8.01-3.367c-0.353-0.161-0.772-0.029-0.967,0.307l-7.003,10.029
|
||||
c-0.411,0.761-0.128,1.711,0.633,2.123c0.053,0.029,0.107,0.054,0.163,0.076c3.493,1.426,5.254,1.945,9.645,3.829
|
||||
c2.69,1.155,10.387,5.945,14.348,6.801c3.961,0.857,5.015-3.024,3.442-3.736c-5.073-2.266-9.331-8.264-10.439-13.461
|
||||
C204.596,400.085,203.619,398.235,203.063,398.013z"/>
|
||||
<polygon style="opacity:0.2;" points="211.311,382.028 206.175,392.384 197.387,388.44 202.514,378.08 "/>
|
||||
<path style="fill:#0d9394;" d="M213.16,393.314l-17.68-9.425c0,0-3.39-12.587,0-20.616
|
||||
c6.524-15.452,23.497-38.171,23.612-38.599c4.529-17.786,12.474-66.492,15.187-84.409c1.507-9.928,2.392-12.07,2.392-12.07
|
||||
l1.865,0.611l27.053,0.054c0,0,5.104,40.967-14.456,104.397c-4.867,15.782-13.02,28.904-26.435,46.655
|
||||
C219.603,386.652,213.16,393.314,213.16,393.314z"/>
|
||||
<path style="opacity:0.3;fill:#FFFFFF;" d="M213.16,393.314l-17.68-9.425c0,0-3.39-12.587,0-20.616
|
||||
c6.524-15.452,23.497-38.171,23.612-38.599c4.529-17.786,12.474-66.492,15.187-84.409c1.507-9.928,2.392-12.07,2.392-12.07
|
||||
l1.865,0.611l27.053,0.054c0,0,5.104,40.967-14.456,104.397c-4.867,15.782-13.02,28.904-26.435,46.655
|
||||
C219.603,386.652,213.16,393.314,213.16,393.314z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E8BFBF;" d="M289.556,195.386c0.198-3.038,2.213-6.951,3.951-8.76c0.558-0.578,2.667-1.458,3.862-2.236
|
||||
c5.874-3.854,17.63-8.661,17.63-8.661l3.628,3.163c0,0-7.161,6.922-11.421,10.241c-0.837,0.652-1.807,1.444-2.829,2.281
|
||||
c-1.852,1.546-10.575,7.299-12.24,8.741L289.556,195.386z"/>
|
||||
<path style="fill:#E8BFBF;" d="M325.342,173.94l-6.71,4.958l-3.765-2.772c0,0,1.536-1.957,3.115-3.473
|
||||
c0.693-0.666,1.067-1.583,1.076-2.544c0.013-1.478,0.236-3.193,1.039-4.451c0.02-0.029,0.03-0.059,0.049-0.079
|
||||
c1.455-2.192,4.856-1.533,5.544,1.003l0.969,3.577C327.04,171.571,326.518,173.072,325.342,173.94z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M291.702,196.727l-1.769,1.622c-0.551-0.442-1.425-1.15-2.526-2.064
|
||||
c-8.62-7.156-30.23-24.514-21.615-29.468c7.384-4.246,15.226,8.748,19.138,12.65c0.796,0.806,2.978,3.322,4.738,6.478
|
||||
C291.505,189.256,292.872,193.267,291.702,196.727z"/>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M289.663,184.391c-3.059,2.236-5.671,5.082-7.636,8.321c1.417,4.697,4.986,8.784,9.487,10.736
|
||||
c2.466-5.723,3.615-11.876,3.126-18.089C293.079,185.023,291.223,184.727,289.663,184.391z"/>
|
||||
<path style="fill:#263238;" d="M242.208,165.805c-3.084,0.991-6.614,0.198-8.593,2.762c-1.979,2.564-2.574,5.948-2.571,9.187
|
||||
c0.004,4.505,1.034,8.938,2.059,13.324c1.242,5.319,2.484,10.637,3.726,15.956c0.849,3.636-0.044,20.542,0.862,20.825
|
||||
c0,0,28.269-0.554,35.357-1.547c0,0,0.616-17.379,1.185-23.298c0.126-1.313,2.12-6.889,2.354-8.29
|
||||
c1.104-6.602-1.06-11.258-3.346-17.55c0,0-5.006-10.079-7.45-10.354C261.44,166.329,250.801,163.044,242.208,165.805z"/>
|
||||
<path style="fill:#263238;" d="M241.018,174.145c-0.1-0.587-5.117-10.722-9.925-3.638c-6.693,9.86-7.144,22.24-7.144,22.24
|
||||
s-4.113,12.038-1.247,14.667c2.866,2.629,5.957,4.321,7.96,2.83c2.002-1.491,3.301-4.47,3.301-4.47
|
||||
S242.776,184.46,241.018,174.145z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M240.695,162.046c-2.111,1.647-1.833,5.464,0.494,6.787
|
||||
c-0.585,2.044,0.099,4.396,1.689,5.808c1.59,1.412,4.006,1.813,5.967,0.99c-0.848,1.519,0.108,3.524,1.571,4.464
|
||||
c1.463,0.94,3.271,1.111,4.994,1.342c1.724,0.231,3.545,0.602,4.796,1.81c1.782-2.564,3.563-5.127,5.345-7.691
|
||||
c0.694-0.998,1.413-2.069,1.467-3.283c0.054-1.215-0.87-2.554-2.082-2.465c1.233-1.285,1.258-3.538,0.054-4.85
|
||||
c-1.204-1.312-3.451-1.48-4.836-0.362c0.248-1.027-0.354-2.118-1.221-2.722c-0.868-0.604-1.948-0.81-3-0.913
|
||||
L240.695,162.046z"/>
|
||||
</g>
|
||||
<path style="fill:#E8BFBF;" d="M243.902,148.995c1.391,5.103,3.079,14.512-0.296,18.231c0,0,9.548,3.823,16.334,11.495
|
||||
c3.158-3.068,2.83-6.515,1.863-9.036c-0.75-1.953-2.361-3.403-4.287-4.221c-3.716-1.579-3.748-5.238-3.13-8.745
|
||||
L243.902,148.995z"/>
|
||||
<g>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M245.982,157.685l3.511,0.953c1.504,0.408,3.076,0.501,4.617,0.274
|
||||
l0,0c-0.014,0.756-0.15,2.362,0.326,3.209c-2.016,0.973-5.427,0.305-6.934-1.471
|
||||
C246.878,159.957,246.322,158.554,245.982,157.685z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E8BFBF;" d="M237.087,144.651c3.717,7.844,5.123,11.241,10.845,13.738
|
||||
c8.621,3.774,17.416-2.527,16.113-11.323c-1.171-7.911-7.056-19.411-16.206-19.452
|
||||
c-6.538-0.064-11.891,5.183-11.955,11.722C235.867,141.176,236.278,142.996,237.087,144.651z"/>
|
||||
<path style="fill:#263238;" d="M241.171,129.671c-2.708-1.265-6.074-0.233-8.329,1.751
|
||||
c-2.295,2.019-3.692,4.843-5.031,7.59c-0.728,1.493-1.463,3.006-1.8,4.633c-0.337,1.627-0.24,3.406,0.62,4.828
|
||||
c0.842,1.394,2.41,2.309,4.031,2.404c0.932,0.054,2.023,0.728,2.325,1.612c0.28,0.821,0.147,1.71,0.016,2.563
|
||||
c-0.127,0.826-0.248,1.688,0.011,2.481c0.432,1.32,1.844,2.121,3.226,2.255c1.382,0.134,2.755-0.266,4.086-0.662
|
||||
c0.844-0.251,1.693-0.106,2.349,0.482c0.164,0.147,0.298,0.323,0.4,0.517c0.414,0.787,1.613,0.663,1.958-0.157
|
||||
c1.21-2.875-0.551-7.472-3.174-10.98c-1.392-1.862-1.316-1.387-1.863-3.647c-0.455-1.88,0.234-3.842,1.076-5.584
|
||||
c1.124-2.323,2.568-4.589,2.122-7.362C243.005,131.222,242.247,130.173,241.171,129.671z"/>
|
||||
<path style="fill:#E8BFBF;" d="M237.322,152.675c1.233,1.312,2.936,2.081,4.736,2.138
|
||||
c2.388,0.052,2.994-2.226,1.841-4.169c-1.041-1.752-3.537-3.882-5.699-3.036
|
||||
C236.038,148.455,235.818,151.04,237.322,152.675z"/>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M252.033,143.255c0.276,0.687,0.822,1.05,1.254,0.873
|
||||
c0.432-0.177,0.538-0.829,0.299-1.495c-0.24-0.666-0.82-1.043-1.254-0.873
|
||||
C251.899,141.929,251.775,142.602,252.033,143.255z"/>
|
||||
<path style="fill:#263238;" d="M259.352,140.105c0.269,0.689,0.822,1.05,1.247,0.875
|
||||
c0.425-0.175,0.538-0.829,0.299-1.495s-0.82-1.043-1.247-0.875C259.225,138.777,259.086,139.453,259.352,140.105z"/>
|
||||
<path style="fill:#263238;" d="M259.463,138.728l1.39-1.088C260.852,137.64,260.552,139.189,259.463,138.728z"/>
|
||||
<path style="fill:#ED847E;" d="M257.452,141.574c1.699,1.677,2.978,1.984,4.818,3.136
|
||||
c-0.053,1.634-1.591,2.009-1.591,2.009L257.452,141.574z"/>
|
||||
<path style="fill:#263238;" d="M259.903,149.921c0.317-0.119,0.624-0.264,0.918-0.434
|
||||
c0.096-0.051,0.132-0.171,0.081-0.266c-0.002-0.003-0.004-0.006-0.005-0.01c-0.057-0.095-0.177-0.132-0.278-0.085
|
||||
c-1.551,0.901-3.44,1.001-5.077,0.268c-0.102-0.054-0.229-0.016-0.284,0.087c-0.055,0.102-0.016,0.23,0.087,0.284
|
||||
C256.781,150.425,258.423,150.481,259.903,149.921z"/>
|
||||
<path style="fill:#263238;" d="M251.76,137.81c-0.01,0.187-0.139,0.347-0.32,0.397c-1.918,0.569-2.769,3.003-2.773,3.023
|
||||
c-0.076,0.226-0.32,0.348-0.546,0.272c-0.226-0.076-0.348-0.32-0.273-0.546c0.074-0.092,1.003-2.884,3.34-3.582
|
||||
c0.228-0.064,0.466,0.065,0.536,0.292C251.748,137.71,251.76,137.76,251.76,137.81z"/>
|
||||
<path style="fill:#263238;" d="M260.609,136.633c-0.16,0.098-0.364,0.083-0.508-0.037
|
||||
c-1.561-1.252-4.046-0.564-4.064-0.556c-0.229,0.067-0.469-0.065-0.535-0.294c-0.067-0.229,0.065-0.469,0.294-0.535
|
||||
c0.118,0.008,2.941-0.82,4.847,0.704c0.183,0.151,0.212,0.42,0.066,0.607
|
||||
C260.684,136.566,260.65,136.604,260.609,136.633z"/>
|
||||
<path style="fill:#263238;" d="M252.158,141.875l1.391-1.081C253.549,140.794,253.234,142.34,252.158,141.875z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M241.768,128.361c-2.184,0.175-4.257,1.418-5.442,3.261c-0.795,1.237-1.075,3.117,0.101,4
|
||||
c0.55,0.413,1.275,0.488,1.961,0.548c3.044,0.267,6.796-2.084,6.796-2.084c-1.173-4.97,9.254-8.816,14.394-1.117
|
||||
c1.51,2.262,1.102,3.905,3.613,4.95c1.182,0.492,2.74,0.356,3.497,1.389c1.256,1.713-1.158,4.614,0.375,6.085
|
||||
c1.049,1.006,3.427,0.622,3.573,2.068c0.069,0.68-0.376,1.664,0.278,1.863c0.362,0.11,0.695-0.221,0.929-0.518
|
||||
c0.565-0.718,1.147-1.469,1.341-2.361c0.194-0.893-0.124-1.968-0.955-2.346c-0.639-0.291-2.328,0.034-2.213,0.726
|
||||
c0.138,0.833-0.577-3.255-0.257-4.8c0.279-1.345,1.564-2.511,1.174-3.829c-0.415-1.406-2.086-1.967-3.535-2.182
|
||||
c-1.45-0.215-3.095-0.391-3.986-1.555c-0.995-1.3-0.543-3.157-0.862-4.763c-0.407-2.042-2.11-3.633-4.021-4.461
|
||||
C252.732,120.72,243.764,121.077,241.768,128.361z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M258.235,155.044l-19.995,10.045c-6.574,3.302-9.548,11.067-6.862,17.917l9.643,24.593
|
||||
c2.686,6.849,10.148,10.53,17.217,8.491l21.502-6.201c8.058-2.323,12.371-11.068,9.31-18.875L277.9,162.577
|
||||
C274.839,154.771,265.728,151.28,258.235,155.044z M254.931,197.28c-4.458,1.745-9.49-0.454-11.238-4.911
|
||||
c-1.748-4.457,0.451-9.485,4.909-11.23c4.458-1.745,9.488,0.453,11.236,4.91
|
||||
C261.586,190.506,259.389,195.535,254.931,197.28z"/>
|
||||
<path style="fill:#0d9394;" d="M258.235,155.044l-19.995,10.045c-6.574,3.302-9.548,11.067-6.862,17.917l9.643,24.593
|
||||
c2.686,6.849,10.148,10.53,17.217,8.491l21.502-6.201c8.058-2.323,12.371-11.068,9.31-18.875L277.9,162.577
|
||||
C274.839,154.771,265.728,151.28,258.235,155.044z M254.931,197.28c-4.458,1.745-9.49-0.454-11.238-4.911
|
||||
c-1.748-4.457,0.451-9.485,4.909-11.23c4.458-1.745,9.488,0.453,11.236,4.91
|
||||
C261.586,190.506,259.389,195.535,254.931,197.28z"/>
|
||||
<path style="opacity:0.1;fill:#FFFFFF;" d="M289.054,191.018l-11.156-28.436c-3.057-7.814-12.169-11.304-19.659-7.539
|
||||
l-5.809,2.919l-3.902,1.956l-10.281,5.17c-6.576,3.303-9.554,11.068-6.871,17.919l9.643,24.593
|
||||
c2.693,6.851,10.154,10.527,17.221,8.493l21.507-6.202c1.759-0.511,3.342-1.327,4.708-2.379
|
||||
c1.062-0.806,1.986-1.75,2.762-2.801C290.037,200.916,290.922,195.795,289.054,191.018z M254.926,197.279
|
||||
c-4.453,1.75-9.486-0.452-11.235-4.915c-1.75-4.453,0.452-9.485,4.915-11.225c4.452-1.75,9.485,0.452,11.235,4.905
|
||||
C261.581,190.507,259.389,195.53,254.926,197.279z"/>
|
||||
<path style="fill:#0d9394;" d="M258.442,156.915l-18.753,9.42c-6.165,3.097-8.954,10.38-6.435,16.805l9.044,23.064
|
||||
c2.519,6.424,9.517,9.876,16.148,7.965l20.166-5.816c7.557-2.179,11.603-10.38,8.732-17.702l-10.458-26.671
|
||||
C274.015,156.659,265.469,153.384,258.442,156.915z M243.693,192.369c-1.748-4.457,0.451-9.485,4.909-11.23
|
||||
c4.458-1.745,9.488,0.453,11.236,4.91c1.748,4.457-0.449,9.486-4.907,11.231
|
||||
C250.473,199.025,245.441,196.826,243.693,192.369z"/>
|
||||
<path style="opacity:0.1;fill:#0d9394;" d="M258.442,156.915l-18.753,9.42c-6.165,3.097-8.954,10.38-6.435,16.805
|
||||
l9.044,23.064c2.519,6.424,9.517,9.876,16.148,7.965l20.166-5.816c7.557-2.179,11.603-10.38,8.732-17.702l-10.458-26.671
|
||||
C274.015,156.659,265.469,153.384,258.442,156.915z M243.693,192.369c-1.748-4.457,0.451-9.485,4.909-11.23
|
||||
c4.458-1.745,9.488,0.453,11.236,4.91c1.748,4.457-0.449,9.486-4.907,11.231
|
||||
C250.473,199.025,245.441,196.826,243.693,192.369z"/>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M351.618,148.021l-0.573,1.047l-0.318,0.581l-0.905,1.653l0.379,4.231
|
||||
c0.016,0.181-0.005,0.36-0.058,0.525c-0.121,0.366-0.399,0.671-0.773,0.818l-7.904,3.094
|
||||
c-0.373,0.146-0.783,0.113-1.121-0.076c-0.109-0.06-0.21-0.135-0.3-0.228l-4.467-4.543l-0.012-0.013l-6.354,2.487
|
||||
l0.921,2.348l-6.354,2.487l1.516,3.867l-4.678,1.831c-0.383,0.15-0.806,0.124-1.161-0.061
|
||||
c-0.117-0.058-0.225-0.136-0.323-0.227l-2.696-2.536l-6.354,2.487l1.516,3.867l-6.681,2.615l1.523,3.883
|
||||
c0.249,0.634-0.064,1.35-0.698,1.598l-18.297,7.163l-7.94-20.248l66.185-25.908l1.035,0.531l3.356,1.723
|
||||
C351.911,143.956,352.606,146.219,351.618,148.021z"/>
|
||||
</g>
|
||||
<g style="opacity:0.1;">
|
||||
<path style="fill:#FFFFFF;" d="M351.618,148.021l-0.573,1.047l-0.318,0.581l-0.905,1.653l0.379,4.231
|
||||
c0.016,0.181-0.005,0.36-0.058,0.525c-0.121,0.366-0.399,0.671-0.773,0.818l-7.904,3.094
|
||||
c-0.373,0.146-0.783,0.113-1.121-0.076c-0.109-0.06-0.21-0.135-0.3-0.228l-4.467-4.543l-0.012-0.013l-6.354,2.487
|
||||
l0.921,2.348l-6.354,2.487l1.516,3.867l-4.678,1.831c-0.383,0.15-0.806,0.124-1.161-0.061
|
||||
c-0.117-0.058-0.225-0.136-0.323-0.227l-2.696-2.536l-6.354,2.487l1.516,3.867l-6.681,2.615l1.523,3.883
|
||||
c0.249,0.634-0.064,1.35-0.698,1.598l-18.297,7.163l-7.94-20.248l66.185-25.908l1.035,0.531l3.356,1.723
|
||||
C351.911,143.956,352.606,146.219,351.618,148.021z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path style="fill:#0d9394;" d="M351.358,145.716l-70.761,27.699l-2.062-5.197l67.467-26.41l3.356,1.723
|
||||
C350.636,144.187,351.37,144.796,351.358,145.716z"/>
|
||||
<path style="opacity:0.1;" d="M351.358,145.716l-70.761,27.699l-2.062-5.197l67.467-26.41l3.356,1.723
|
||||
C350.636,144.187,351.37,144.796,351.358,145.716z"/>
|
||||
<path style="fill:#0d9394;" d="M349.961,149.618l-0.685,1.538c-0.011,0.025-0.016,0.053-0.013,0.08l0.383,4.189
|
||||
c0.014,0.153,0.001,0.305-0.035,0.448c-0.012,0.049-0.05,0.088-0.097,0.107l-8.593,3.382
|
||||
c-0.046,0.018-0.099,0.016-0.142-0.011c-0.083-0.052-0.162-0.115-0.232-0.187l-4.915-4.938
|
||||
c-0.045-0.046-0.113-0.06-0.173-0.036l-6.976,2.746c-0.083,0.033-0.124,0.126-0.091,0.209l0.83,2.105
|
||||
c0.033,0.083-0.008,0.176-0.091,0.209l-5.949,2.342c-0.083,0.033-0.123,0.126-0.091,0.209l1.433,3.634
|
||||
c0.033,0.083-0.008,0.176-0.091,0.209l-4.365,1.718c-0.044,0.018-0.095,0.016-0.137-0.008
|
||||
c-0.092-0.053-0.178-0.117-0.257-0.191l-3.191-2.941c-0.046-0.042-0.111-0.054-0.168-0.031l-6.93,2.728
|
||||
c-0.083,0.033-0.124,0.126-0.091,0.209l1.468,3.724c0.033,0.083-0.008,0.176-0.091,0.209l-26.608,10.471
|
||||
c-0.083,0.033-0.176-0.008-0.209-0.09l-2.655-6.665c-0.033-0.083,0.008-0.177,0.091-0.21l69.336-27.29
|
||||
c0.135-0.053,0.266,0.085,0.206,0.217L349.961,149.618z"/>
|
||||
<path style="opacity:0.1;" d="M349.961,149.618l-0.685,1.538c-0.011,0.025-0.016,0.053-0.013,0.08l0.383,4.189
|
||||
c0.014,0.153,0.001,0.305-0.035,0.448c-0.012,0.049-0.05,0.088-0.097,0.107l-8.593,3.382
|
||||
c-0.046,0.018-0.099,0.016-0.142-0.011c-0.083-0.052-0.162-0.115-0.232-0.187l-4.915-4.938
|
||||
c-0.045-0.046-0.113-0.06-0.173-0.036l-6.976,2.746c-0.083,0.033-0.124,0.126-0.091,0.209l0.83,2.105
|
||||
c0.033,0.083-0.008,0.176-0.091,0.209l-5.949,2.342c-0.083,0.033-0.123,0.126-0.091,0.209l1.433,3.634
|
||||
c0.033,0.083-0.008,0.176-0.091,0.209l-4.365,1.718c-0.044,0.018-0.095,0.016-0.137-0.008
|
||||
c-0.092-0.053-0.178-0.117-0.257-0.191l-3.191-2.941c-0.046-0.042-0.111-0.054-0.168-0.031l-6.93,2.728
|
||||
c-0.083,0.033-0.124,0.126-0.091,0.209l1.468,3.724c0.033,0.083-0.008,0.176-0.091,0.209l-26.608,10.471
|
||||
c-0.083,0.033-0.176-0.008-0.209-0.09l-2.655-6.665c-0.033-0.083,0.008-0.177,0.091-0.21l69.336-27.29
|
||||
c0.135-0.053,0.266,0.085,0.206,0.217L349.961,149.618z"/>
|
||||
<line style="opacity:0.1;fill:#0d9394;" x1="310.673" y1="171.268" x2="284.065" y2="181.739"/>
|
||||
</g>
|
||||
<path style="opacity:0.3;fill:#FFFFFF;" d="M248.073,178.976c-5.592,2.189-8.349,8.496-6.157,14.088
|
||||
c2.193,5.592,8.504,8.349,14.096,6.16c5.593-2.189,8.349-8.496,6.157-14.088
|
||||
C259.976,179.544,253.666,176.787,248.073,178.976z M254.931,197.28c-4.458,1.745-9.49-0.454-11.238-4.911
|
||||
c-1.748-4.457,0.451-9.485,4.909-11.23c4.458-1.745,9.488,0.453,11.236,4.91
|
||||
C261.586,190.506,259.389,195.535,254.931,197.28z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="opacity:0.1;fill:#FFFFFF;" d="M287.213,204.701c-0.777,1.052-1.701,1.995-2.762,2.801l-35.926-47.594
|
||||
l-0.029-0.039c0,0,3.165-1.592,3.882-2.064c0,0.039,0.02,0.089,0.049,0.147
|
||||
C253.999,161.323,282.239,197.987,287.213,204.701z"/>
|
||||
<path style="opacity:0.1;fill:#FFFFFF;" d="M282.023,209.006c-0.226,0.108-10.694,3.293-10.694,3.293l-11.667-15.452
|
||||
c3.017-2.959,4.148-7.539,2.506-11.717c-2.192-5.593-8.502-8.355-14.095-6.163c-0.492,0.187-0.954,0.413-1.396,0.668
|
||||
l-10.321-13.673c0,0,9.073-4.325,10.075-4.954C246.696,162.926,282.023,208.603,282.023,209.006z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M239.188,133.941c-1.169,1.39-1.646,3.336-1.252,5.109c0.394,1.773,1.648,3.334,3.296,4.1
|
||||
c0.854,0.397,1.794,0.587,2.638,1.003c0.845,0.416,1.628,1.149,1.718,2.086c0.099,1.035-0.664,2.002-0.592,3.039
|
||||
c0.066,0.95,0.809,1.704,1.559,2.291c0.75,0.587,1.588,1.141,2.001,1.999c0.413,0.858,0.145,2.129-0.774,2.379
|
||||
c-0.194,0.297-0.268,1.005-0.021,1.26c0.247,0.254,0.675,0.308,0.977,0.122c1.411-0.868,2.38-2.505,2.391-4.162
|
||||
c0.011-1.657-1.029-3.274-2.541-3.952c-0.272-0.551-0.061-1.25,0.167-1.821c0.458-1.145,0.915-2.29,1.373-3.435
|
||||
c0.18-0.45,0.02-1.269-0.287-1.643c-0.307-0.374-0.77-0.578-1.215-0.769l-2.948-1.264c-1.113-0.477-4.415-4.903-0.495-6.195
|
||||
c-0.512-1.137-1.397-1.494-2.624-1.718S239.991,132.986,239.188,133.941z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M244.538,129.18c-0.098,1.164-0.196,2.327-0.294,3.491c0.977-1.604,2.787-4.713,2.725-4.592
|
||||
C246.201,128.496,245.307,128.762,244.538,129.18z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M245.861,131.092c1.366-1.263,2.731-2.526,4.097-3.788c-1.054-0.395-2.33-0.101-3.105,0.716
|
||||
C246.876,127.934,246.244,129.874,245.861,131.092z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M237.533,225.7c-5.334,6.618-3.559,11.694-10.92,23.411c9.284,6.882,19.463,8.022,32.117,7.039
|
||||
c1.495-2.649,2.251-5.414,3.747-8.064c2.145,2.661,3.867,4.898,6.011,7.559c6.63-1.039,14.507-2.902,19.75-6.281
|
||||
c-4.63-5.31-7.505-11.943-10.47-17.798c-1.39-2.745-0.808-3.901-4.496-7.501c-11.748,0.542-23.399,0.829-35.147,1.371
|
||||
C238.436,225.453,237.223,225.684,237.533,225.7z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M238.995,224.594l-0.736,3.089c-0.107,0.243,0.18,0.473,0.575,0.451l32.383-1.433
|
||||
c0.31,0.005,0.557-0.179,0.57-0.367l0.172-3.07c0.003-0.206-0.266-0.38-0.605-0.357l-31.818,1.405
|
||||
C239.318,224.302,239.112,224.41,238.995,224.594z"/>
|
||||
<path style="fill:#0d9394;" d="M238.995,224.594l-0.736,3.089c-0.107,0.243,0.18,0.473,0.575,0.451l32.383-1.433
|
||||
c0.31,0.005,0.557-0.179,0.57-0.367l0.172-3.07c0.003-0.206-0.266-0.38-0.605-0.357l-31.818,1.405
|
||||
C239.318,224.302,239.112,224.41,238.995,224.594z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#263238;" d="M246.127,228.138l-0.94,0.041c-0.179-0.003-0.328-0.08-0.316-0.193l0.253-3.99
|
||||
c0.002-0.113,0.163-0.214,0.351-0.22l0.941-0.051c0.179,0.003,0.328,0.081,0.316,0.203l-0.253,3.98
|
||||
C246.468,228.021,246.306,228.132,246.127,228.138z"/>
|
||||
<path style="fill:#263238;" d="M269.508,227.13l-0.94,0.041c-0.179-0.003-0.328-0.081-0.316-0.193l0.253-3.981
|
||||
c0.002-0.122,0.163-0.223,0.342-0.229l0.94-0.041c0.179,0.003,0.328,0.081,0.316,0.193l-0.253,3.98
|
||||
C269.848,227.023,269.696,227.124,269.508,227.13z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#E8BFBF;" d="M250.309,208.719c0.061,0.295,2.576,4.296,4.547,4.019c0.016-0.002,0.033-0.005,0.049-0.007
|
||||
c0.575-0.081,1.148,0.152,1.502,0.612c0.792,1.031,1.27,1.622,1.805,2.299c0.868,1.099,2.375,1.451,3.645,0.861
|
||||
c0.376-0.175,0.748-0.367,1.118-0.563c1.221-0.648,1.844-2.047,1.512-3.389c-0.364-1.471-0.93-2.892-1.682-4.207
|
||||
c-0.257-0.45-0.552-0.904-0.999-1.164c-0.447-0.261-4.786-1.572-6.471-1.519C253.58,205.716,251.915,208.013,250.309,208.719z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#E8BFBF;" d="M255.378,205.529c0,0-26.582-8.049-32.316-2.69c-3.371,3.151-1.779,6.126,0.105,8.044
|
||||
c1.402,1.427,4.456,1.076,6.454,0.983l20.939-2.054L255.378,205.529z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path style="fill:#263238;" d="M240.103,201.852c-0.144-1.439-1.258-2.634-2.552-3.279c-1.294-0.645-2.76-0.836-4.194-1.018
|
||||
c-3.34-0.423-6.68-0.847-10.02-1.27c-1.696,2.145-2.916,5.091-2.863,7.825c0.053,2.734,1.082,5.439,2.859,7.517
|
||||
c1.598-3.09,3.706-6.271,6.827-7.806C233.282,202.287,236.68,201.232,240.103,201.852z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path style="opacity:0.1;fill:#FFFFFF;" d="M233.25,153.3c-0.03-0.06-0.03-0.09,0-0.1C233.46,153.14,233.43,153.18,233.25,153.3z"
|
||||
/>
|
||||
</g>
|
||||
<g id="Speech_Bubble">
|
||||
<g>
|
||||
<path style="fill:#0d9394;" d="M299.289,110.264l7.406,13.732l30.218-25.66c0.266-0.226-0.042-0.635-0.333-0.443l-28.328,18.698
|
||||
l-4.367-8.517L299.289,110.264z"/>
|
||||
<path style="fill:none;stroke:#0d9394;stroke-width:1.3;stroke-miterlimit:10;" d="M346.965,110.328
|
||||
c0,12.238-12.847,22.155-28.692,22.155c-6.084,0-11.717-1.455-16.356-3.961l-16.846,7.323l10.634-11.845
|
||||
c-3.833-3.755-6.124-8.502-6.124-13.673c0-12.238,12.847-22.155,28.692-22.155C334.118,88.173,346.965,98.091,346.965,110.328z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 64 KiB |
BIN
src/assets/logo.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
15
src/assets/logo.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="398.000000pt" height="380.000000pt" viewBox="0 0 398.000000 380.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
<g transform="translate(0.000000,380.000000) scale(0.100000,-0.100000)"
|
||||
fill="currentColor" stroke="none">
|
||||
<path d="M323 2953 c3 -411 6 -489 21 -553 51 -219 144 -400 290 -565 49 -55
|
||||
534 -465 550 -465 3 0 6 266 6 590 l0 591 543 -3 c528 -3 544 -4 607 -25 190
|
||||
-65 336 -210 408 -405 24 -67 26 -86 27 -228 0 -144 -2 -160 -27 -228 -37
|
||||
-101 -82 -173 -155 -245 -113 -113 -247 -174 -402 -184 l-86 -5 -61 93 c-89
|
||||
136 -166 214 -416 419 -123 101 -231 190 -240 198 -17 14 -18 -24 -18 -787 l0
|
||||
-802 518 4 c515 4 517 4 622 29 293 72 521 199 725 403 212 210 352 469 416
|
||||
763 27 126 37 418 19 559 -73 581 -467 1066 -1014 1248 -220 73 -137 68 -1294
|
||||
72 l-1043 4 4 -478z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 836 B |
BIN
src/assets/masonry/bird-with-bright-orange-feathers.jpg
Normal file
|
After Width: | Height: | Size: 109 KiB |
BIN
src/assets/masonry/books.jpg
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
src/assets/masonry/girl-field-flowers.jpg
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
src/assets/masonry/leaf-with-rain-drops-it.jpg
Normal file
|
After Width: | Height: | Size: 149 KiB |
BIN
src/assets/masonry/red-barn-sits-field-corn.jpg
Normal file
|
After Width: | Height: | Size: 257 KiB |
BIN
src/assets/masonry/top-mountain-view.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
src/assets/masonry/woman-meditating.jpg
Normal file
|
After Width: | Height: | Size: 133 KiB |
BIN
src/assets/masonry/yellow-sunflower.jpg
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
src/assets/pages/academy-banner.jpg
Normal file
|
After Width: | Height: | Size: 232 KiB |
BIN
src/assets/pages/app-development.jpg
Normal file
|
After Width: | Height: | Size: 136 KiB |
39
src/assets/pages/auth-bg-dark.svg
Normal file
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="1440px" height="820px" viewBox="0 0 1440 820" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
|
||||
<title>Group</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="-8.43013734%" y1="-17.6243013%" x2="50%" y2="50%" id="linearGradient-1">
|
||||
<stop stop-color="#ffffff" stop-opacity="0.01" offset="0%"></stop>
|
||||
<stop stop-color="#ffffff" stop-opacity="0.02" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="0%" x2="66.8719014%" y2="87.9838784%" id="linearGradient-2">
|
||||
<stop stop-color="#ffffff" stop-opacity="0.01" offset="0%"></stop>
|
||||
<stop stop-color="#ffffff" stop-opacity="0.04" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="59.4260833%" y1="44.3123794%" x2="75.0463678%" y2="65.2398003%" id="linearGradient-3">
|
||||
<stop stop-color="#ffffff" stop-opacity="0.02" offset="0%"></stop>
|
||||
<stop stop-color="#ffffff" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="77.6224786%" y1="34.4188974%" x2="61.2142769%" y2="56.4009385%" id="linearGradient-4">
|
||||
<stop stop-color="#ffffff" stop-opacity="0.05" offset="0%"></stop>
|
||||
<stop stop-color="#ffffff" stop-opacity="0.01" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="-1.34707908%" y1="42.8813389%" x2="87.1825875%" y2="100%" id="linearGradient-5">
|
||||
<stop stop-color="#ffffff" stop-opacity="0.02" offset="0%"></stop>
|
||||
<stop stop-color="#ffffff" stop-opacity="0.03" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Signin" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Username-FILLED-Copy">
|
||||
<g id="Group">
|
||||
<polygon id="Path-5" fill="url(#linearGradient-1)" points="1.84741111e-13 474 473 2.13162821e-14 1.84741111e-13 2.13162821e-14"></polygon>
|
||||
<polygon id="Path-4" fill="url(#linearGradient-2)" points="1385 820 1347 515 1440 515 1440 820"></polygon>
|
||||
<polygon id="Path-3" fill="url(#linearGradient-3)" points="1440 25 0 635 0 647 429 820 1440 820"></polygon>
|
||||
<polygon id="Path" fill="url(#linearGradient-4)" points="1440 696 0 310 0 141 185 0 1440 0"></polygon>
|
||||
<polygon id="Path-2" fill="url(#linearGradient-5)" points="796.210203 820 0.210203261 820 0.210203261 0 177.210203 0"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
39
src/assets/pages/auth-bg-light.svg
Normal file
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="1440px" height="820px" viewBox="0 0 1440 820" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
|
||||
<title>Group</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="-8.43013734%" y1="-17.6243013%" x2="50%" y2="50%" id="linearGradient-1">
|
||||
<stop stop-color="#000000" stop-opacity="0.01" offset="0%"></stop>
|
||||
<stop stop-color="#000000" stop-opacity="0.02" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="0%" x2="66.8719014%" y2="87.9838784%" id="linearGradient-2">
|
||||
<stop stop-color="#000000" stop-opacity="0.01" offset="0%"></stop>
|
||||
<stop stop-color="#000000" stop-opacity="0.04" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="59.4260833%" y1="44.3123794%" x2="75.0463678%" y2="65.2398003%" id="linearGradient-3">
|
||||
<stop stop-color="#000000" stop-opacity="0.02" offset="0%"></stop>
|
||||
<stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="77.6224786%" y1="34.4188974%" x2="61.2142769%" y2="56.4009385%" id="linearGradient-4">
|
||||
<stop stop-color="#000000" stop-opacity="0.05" offset="0%"></stop>
|
||||
<stop stop-color="#000000" stop-opacity="0.01" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="-1.34707908%" y1="42.8813389%" x2="87.1825875%" y2="100%" id="linearGradient-5">
|
||||
<stop stop-color="#000000" stop-opacity="0.02" offset="0%"></stop>
|
||||
<stop stop-color="#000000" stop-opacity="0.03" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Signin" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Username-FILLED-Copy">
|
||||
<g id="Group">
|
||||
<polygon id="Path-5" fill="url(#linearGradient-1)" points="1.84741111e-13 474 473 2.13162821e-14 1.84741111e-13 2.13162821e-14"></polygon>
|
||||
<polygon id="Path-4" fill="url(#linearGradient-2)" points="1385 820 1347 515 1440 515 1440 820"></polygon>
|
||||
<polygon id="Path-3" fill="url(#linearGradient-3)" points="1440 25 0 635 0 647 429 820 1440 820"></polygon>
|
||||
<polygon id="Path" fill="url(#linearGradient-4)" points="1440 696 0 310 0 141 185 0 1440 0"></polygon>
|
||||
<polygon id="Path-2" fill="url(#linearGradient-5)" points="796.210203 820 0.210203261 820 0.210203261 0 177.210203 0"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/assets/pages/book-pen.png
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
src/assets/pages/brownie.jpg
Normal file
|
After Width: | Height: | Size: 300 KiB |
BIN
src/assets/pages/bruschetta.jpg
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
src/assets/pages/cactus.png
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
src/assets/pages/caesar-salad.jpg
Normal file
|
After Width: | Height: | Size: 392 KiB |
BIN
src/assets/pages/certificate-min.png
Normal file
|
After Width: | Height: | Size: 306 KiB |
BIN
src/assets/pages/cheese-burger.jpg
Normal file
|
After Width: | Height: | Size: 506 KiB |
BIN
src/assets/pages/cheesecake.jpg
Normal file
|
After Width: | Height: | Size: 942 KiB |
BIN
src/assets/pages/cheesy-fries.jpg
Normal file
|
After Width: | Height: | Size: 931 KiB |
BIN
src/assets/pages/chicken-wings.jpg
Normal file
|
After Width: | Height: | Size: 646 KiB |
BIN
src/assets/pages/coffee.jpg
Normal file
|
After Width: | Height: | Size: 863 KiB |
BIN
src/assets/pages/cookies.jpg
Normal file
|
After Width: | Height: | Size: 244 KiB |
BIN
src/assets/pages/cover.jpg
Normal file
|
After Width: | Height: | Size: 591 KiB |
BIN
src/assets/pages/cup-pen.png
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
src/assets/pages/data-analysis.jpg
Normal file
|
After Width: | Height: | Size: 149 KiB |
BIN
src/assets/pages/data-privacy.jpg
Normal file
|
After Width: | Height: | Size: 201 KiB |
BIN
src/assets/pages/design-course.jpg
Normal file
|
After Width: | Height: | Size: 121 KiB |
BIN
src/assets/pages/docks.jpg
Normal file
|
After Width: | Height: | Size: 133 KiB |
BIN
src/assets/pages/error-message-404.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
src/assets/pages/ethical-hacking-course.jpg
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
BIN
src/assets/pages/fruit-salad.jpg
Normal file
|
After Width: | Height: | Size: 569 KiB |
BIN
src/assets/pages/girl-acting-cool.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
src/assets/pages/girl-checking-time-her-watch.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
src/assets/pages/girl-forgot-something.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
src/assets/pages/girl-holding-tablet-device.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
src/assets/pages/girl-sitting-airport.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
src/assets/pages/girl-with-gear-wheels.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
src/assets/pages/gradient-bg.jpg
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
src/assets/pages/graphic-basic.jpg
Normal file
|
After Width: | Height: | Size: 169 KiB |
BIN
src/assets/pages/hotel.jpg
Normal file
|
After Width: | Height: | Size: 214 KiB |
BIN
src/assets/pages/iced-tea.jpg
Normal file
|
After Width: | Height: | Size: 384 KiB |