1 Commits

Author SHA1 Message Date
7605e46a7c updated deps
Some checks failed
CSGOWTF/csgowtf/pipeline/head There was a failure building this commit
2022-11-11 14:11:19 +01:00
563 changed files with 121838 additions and 129324 deletions

3
.browserslistrc Normal file
View File

@@ -0,0 +1,3 @@
> 1%
last 2 versions
not dead

10
.editorconfig Normal file
View File

@@ -0,0 +1,10 @@
root = true
[*]
end_of_line = lf
insert_final_newline = true
[*.{js,json,yml}]
charset = utf-8
indent_style = space
indent_size = 2

View File

@@ -1,80 +0,0 @@
# CS2.WTF Environment Configuration
# Copy this file to .env for local development
# DO NOT commit .env to version control
# ============================================
# API Configuration
# ============================================
# Backend API Base URL
# Development: Vite proxy forwards /api to this URL (default: http://localhost:8000)
# Production: Set to your actual backend URL (e.g., https://api.csgow.tf)
# Note: In development, the frontend uses /api and Vite proxies to this URL
VITE_API_BASE_URL=http://localhost:8000
# API request timeout in milliseconds
# Default: 10000 (10 seconds)
VITE_API_TIMEOUT=10000
# ============================================
# Feature Flags
# ============================================
# Enable live match updates (polling/WebSocket)
# Default: false
VITE_ENABLE_LIVE_MATCHES=false
# Enable analytics tracking
# Default: true (respects user consent)
VITE_ENABLE_ANALYTICS=true
# Enable debug mode (verbose logging, dev tools)
# Default: false
VITE_DEBUG_MODE=false
# ============================================
# Analytics & Tracking (Optional)
# ============================================
# Plausible Analytics
# Only required if analytics is enabled
# VITE_PLAUSIBLE_DOMAIN=cs2.wtf
# VITE_PLAUSIBLE_API_HOST=https://plausible.io
# Umami Analytics (alternative)
# VITE_UMAMI_WEBSITE_ID=your-website-id
# VITE_UMAMI_SRC=https://analytics.example.com/script.js
# ============================================
# Experimental Features
# ============================================
# Enable WebGL-based heatmaps (high performance)
# Default: false (use Canvas fallback)
# VITE_ENABLE_WEBGL_HEATMAPS=false
# Enable MSW API mocking in development
# Useful for frontend development without backend
# Default: false
# VITE_ENABLE_MSW_MOCKING=false
# ============================================
# Build Configuration
# ============================================
# App version (auto-populated from package.json)
# VITE_APP_VERSION=2.0.0
# Build timestamp (auto-populated during build)
# VITE_BUILD_TIMESTAMP=2024-11-04T12:00:00Z
# ============================================
# SSR/Deployment (Advanced)
# ============================================
# Public base URL for the application
# Used for canonical URLs, sitemaps, etc.
# PUBLIC_BASE_URL=https://cs2.wtf
# Origin whitelist for CORS (if handling API in same domain)
# PUBLIC_CORS_ORIGINS=https://cs2.wtf,https://www.cs2.wtf

17
.eslintrc.js Normal file
View File

@@ -0,0 +1,17 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended'
],
parserOptions: {
parser: '@babel/eslint-parser'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
}
}

304
.gitignore vendored
View File

@@ -1,52 +1,286 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
# Created by https://www.toptal.com/developers/gitignore/api/webstorm+all,yarn,windows,linux,node,vuejs
# Edit at https://www.toptal.com/developers/gitignore?templates=webstorm+all,yarn,windows,linux,node,vuejs
### Linux ###
*~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*
# .nfs files are created when an open file is removed but is still being accessed
.nfs*
### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
.pnpm-debug.log*
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Build artifacts
dist
dist-ssr
*.local
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Test coverage
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Playwright
/test-results/
/playwright-report/
/playwright/.cache/
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
.env.test
.env.production
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
### Node Patch ###
# Serverless Webpack directories
.webpack/
### Vuejs ###
# Recommended template: Node.gitignore
dist/
npm-debug.log
yarn-error.log
### WebStorm+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
# AWS User-specific
.idea/**/aws.xml
# Generated files
.idea/**/contentModel.xml
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
cmake-build-*/
# Mongo Explorer plugin
.idea/**/mongoSettings.xml
# File-based project format
*.iws
# IntelliJ
out/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Cursive Clojure plugin
.idea/replstate.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Editor-based Rest Client
.idea/httpRequests
# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser
### WebStorm+all Patch ###
# Ignores the whole .idea folder and all .iml files
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
.idea/
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
*.iml
modules.xml
.idea/misc.xml
*.ipr
# Sonarlint plugin
.idea/sonarlint
### Windows ###
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
# Dump file
*.stackdump
# Folder config file
[Dd]esktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp
# Windows shortcuts
*.lnk
### yarn ###
# https://yarnpkg.com/advanced/qa#which-files-should-be-gitignored
.yarn/*
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
# if you are NOT using Zero-installs, then:
# comment the following lines
#!.yarn/cache
# and uncomment the following lines
.pnp.*
# End of https://www.toptal.com/developers/gitignore/api/webstorm+all,yarn,windows,linux,node,vuejs
# Vercel
.vercel
# Temporary files
.tmp
tmp
*.tmp

View File

@@ -1,4 +0,0 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
npx lint-staged

1
.nvmrc
View File

@@ -1 +0,0 @@
20.11.0

View File

@@ -1,30 +0,0 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock
# Build artifacts
dist/
.vercel/
.netlify/
.output/
# Generated files
src-tauri/target/
**/.svelte-kit/
# IDE
.vscode/
.idea/
# Logs
*.log

View File

@@ -1,17 +0,0 @@
{
"useTabs": true,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"semi": true,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}

View File

@@ -1,6 +0,0 @@
node_modules/
build/
.svelte-kit/
dist/
**/*.js
**/*.ts

View File

@@ -1,13 +0,0 @@
module.exports = {
extends: ['stylelint-config-standard'],
rules: {
'at-rule-no-unknown': [
true,
{
ignoreAtRules: ['tailwind', 'apply', 'variants', 'responsive', 'screen', 'layer']
}
],
'selector-class-pattern': null,
'custom-property-pattern': null
}
};

View File

@@ -1 +0,0 @@
nodejs 20.11.0

View File

@@ -1,100 +0,0 @@
pipeline:
install:
image: node:20
commands:
- npm ci
pull: true
lint:
image: node:20
commands:
- npm run lint
depends_on:
- install
pull: true
type-check:
image: node:20
commands:
- npm run check
depends_on:
- install
pull: true
test:
image: node:20
commands:
- npm run test
depends_on:
- install
pull: true
build:
image: node:20
commands:
- npm run build
environment:
- VITE_API_BASE_URL=https://api.csgow.tf
secrets:
- vite_plausible_domain
- vite_sentry_dsn
depends_on:
- lint
- type-check
- test
pull: true
# E2E tests (optional - can be resource intensive)
# test-e2e:
# image: mcr.microsoft.com/playwright:v1.40.0-jammy
# commands:
# - npm run test:e2e
# depends_on:
# - build
deploy:
image: cschlosser/drone-ftps
settings:
hostname:
from_secret: ftp_host
src_dir: '/build/'
clean_dir: true
secrets: [ftp_username, ftp_password]
when:
branch: master
event: [push, tag]
status: success
deploy-dev:
image: cschlosser/drone-ftps
settings:
hostname:
from_secret: ftp_host
src_dir: '/build/'
clean_dir: true
secrets:
- source: ftp_username_dev
target: ftp_username
- source: ftp_password_dev
target: ftp_password
when:
branch: dev
event: [push, tag]
status: success
deploy-cs2:
image: cschlosser/drone-ftps
settings:
hostname:
from_secret: ftp_host_cs2
src_dir: '/build/'
clean_dir: true
secrets:
- source: ftp_username_cs2
target: ftp_username
- source: ftp_password_cs2
target: ftp_password
when:
branch: cs2-port
event: [push]
status: success

File diff suppressed because one or more lines are too long

631
.yarn/releases/yarn-3.0.2.cjs vendored Executable file

File diff suppressed because one or more lines are too long

7
.yarnrc.yml Normal file
View File

@@ -0,0 +1,7 @@
nodeLinker: node-modules
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
yarnPath: .yarn/releases/yarn-3.0.2.cjs

63
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,63 @@
pipeline {
agent any
options {
buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '5', daysToKeepStr: '', numToKeepStr: ''))
}
environment {
FTP_HOST = credentials('csgowtf-deploy-host')
LFTP_PASSWORD = credentials('csgowtf-deploy-password')
API_HOST = credentials('csgowtf-api-host')
TRACK_HOST = credentials('csgowtf-track-host')
TRACK_ID = credentials('csgowtf-track-id')
TRACK_DOMAINS = credentials('csgowtf-track-domains')
TRACK = credentials('csgowtf-track')
}
stages {
stage('Prepare') {
steps {
writeFile file: '.env.production', text: 'VUE_APP_API_URL=$API_HOST\nVUE_APP_TRACK_URL=$TRACK_HOST\nVUE_APP_TRACK_ID=$TRACK_ID\nVUE_APP_TRACK_DOMAINS=$TRACK_DOMAINS\nVUE_APP_TRACKING=$TRACK'
}
}
stage('Install Dependencies') {
steps {
sh 'yarn install'
}
}
stage('Build') {
steps {
sh 'yarn build'
archiveArtifacts artifacts: '**/dist/**', excludes: '**/node_modules/**'
}
}
stage('Deploy') {
when {
branch 'master'
expression {
currentBuild.result == null || currentBuild.result == 'SUCCESS'
}
}
environment {
FTP_USERNAME = credentials('csgowtf-deploy-user')
}
steps {
sh 'lftp -u $FTP_USERNAME --env-password -e \'mirror --reverse --verbose --delete --recursion=always dist/ /\' $FTP_HOST'
}
}
stage('Deploy Dev') {
when {
branch 'dev'
expression {
currentBuild.result == null || currentBuild.result == 'SUCCESS'
}
}
environment {
FTP_USERNAME = credentials('csgowtf-deploy-user-dev')
}
steps {
sh 'lftp -u $FTP_USERNAME --env-password -e \'mirror --reverse --verbose --delete --recursion=always dist/ /\' $FTP_HOST'
}
}
}
}

327
README.md
View File

@@ -1,314 +1,27 @@
# CS2.WTF
# CSGOW.TF
[![SvelteKit](https://img.shields.io/badge/SvelteKit-5.0-FF3E00?style=flat-square&logo=svelte)](https://kit.svelte.dev/)
[![TypeScript](https://img.shields.io/badge/TypeScript-5.3-3178C6?style=flat-square&logo=typescript)](https://www.typescriptlang.org/)
[![Tailwind CSS](https://img.shields.io/badge/Tailwind-3.4-06B6D4?style=flat-square&logo=tailwindcss)](https://tailwindcss.com/)
[![Vue3](https://img.shields.io/badge/created%20with-Vue3-%2342b883?style=flat-square)](https://vuejs.org/)
[![Go](https://img.shields.io/badge/created%20with-Go-%2379d4fd?style=flat-square)](https://go.dev/)
[![GPL3](https://img.shields.io/badge/licence-GPL3-%23007ec6?style=flat-square)](https://git.harting.dev/CSGOWTF/csgowtf/src/branch/master/LICENSE)
[![Liberapay](https://img.shields.io/badge/donate%20on-LiberaPay-%23f6c915?style=flat-square)](https://liberapay.com/CSGOWTF/)
[![status-badge](https://ci.somegit.dev/api/badges/CSGOWTF/csgowtf/status.svg?branch=cs2-port)](https://ci.somegit.dev/CSGOWTF/csgowtf)
[![Liberapay patrons](https://img.shields.io/liberapay/patrons/csgowtf?style=flat-square)](https://liberapay.com/CSGOWTF/)
[![Website](https://img.shields.io/website?down_message=down&label=csgow.tf&style=flat-square&up_message=up&url=https%3A%2F%2Fcsgow.tf)](https://csgow.tf/)
<!--[![Typescript](https://img.shields.io/badge/created%20with-typescript-%233178c6?style=flat-square)](https://www.typescriptlang.org/)-->
**Statistics for CS2 matchmaking matches** - A complete rewrite of CSGOW.TF with modern web technologies.
### Statistics for CS:GO matchmaking matches.
---
## 🚀 Quick Start
### Prerequisites
- **Node.js** ≥ 18.0.0 (v20.11.0 recommended - see `.nvmrc`)
- **npm** or **yarn**
### Installation
```bash
# Clone the repository
git clone https://somegit.dev/CSGOWTF/csgowtf.git
cd csgowtf
# Switch to the cs2-port branch
git checkout cs2-port
# Install dependencies
npm install
# Copy environment variables
cp .env.example .env
# Start development server
npm run dev
```
The app will be available at `http://localhost:5173`
---
## 📦 Tech Stack
### Core Framework
- **SvelteKit 2.0** - Full-stack framework with SSR/SSG
- **Svelte 5** - Reactive UI framework
- **TypeScript 5.3** - Type safety (strict mode)
- **Vite 5** - Build tool and dev server
### Styling
- **Tailwind CSS 3.4** - Utility-first CSS framework
- **DaisyUI 4.0** - Component library with CS2 custom themes
- **PostCSS** - CSS processing
### Data & State
- **Axios** - HTTP client for API requests
- **Zod** - Runtime type validation and parsing
- **Svelte Stores** - State management
### Testing
- **Vitest** - Unit and component testing
- **Playwright** - End-to-end testing
- **Testing Library** - Component testing utilities
- **MSW** - API mocking
### Code Quality
- **ESLint** - Linting (TypeScript + Svelte)
- **Prettier** - Code formatting
- **Stylelint** - CSS linting
- **Husky** - Git hooks
- **lint-staged** - Pre-commit linting
---
## 🛠️ Development
### Available Scripts
```bash
# Development
npm run dev # Start dev server
npm run dev -- --host # Expose to network
# Type Checking
npm run check # Run type check
npm run check:watch # Type check in watch mode
# Linting & Formatting
npm run lint # Run ESLint + Prettier check
npm run lint:fix # Auto-fix linting issues
npm run format # Format code with Prettier
# Testing
npm run test # Run unit tests
npm run test:watch # Run tests in watch mode
npm run test:coverage # Generate coverage report
npm run test:e2e # Run E2E tests (headless)
npm run test:e2e:ui # Run E2E tests with UI
npm run test:e2e:debug # Debug E2E tests
# Building
npm run build # Build for production
npm run preview # Preview production build
```
### Project Structure
```
csgowtf/
├── src/
│ ├── lib/
│ │ ├── api/ # API client & endpoints
│ │ ├── components/ # Reusable Svelte components
│ │ │ ├── layout/ # Header, Footer, Nav
│ │ │ ├── ui/ # Base UI components
│ │ │ ├── charts/ # Data visualization
│ │ │ ├── match/ # Match-specific components
│ │ │ └── player/ # Player-specific components
│ │ ├── stores/ # Svelte stores (state)
│ │ ├── types/ # TypeScript types
│ │ ├── utils/ # Helper functions
│ │ └── i18n/ # Internationalization
│ ├── routes/ # SvelteKit routes (pages)
│ ├── mocks/ # MSW mock handlers
│ ├── tests/ # Test setup
│ ├── app.html # HTML shell
│ └── app.css # Global styles
├── tests/
│ ├── unit/ # Unit tests
│ ├── integration/ # Integration tests
│ └── e2e/ # E2E tests
├── docs/ # Documentation
│ ├── API.md # Backend API reference
│ └── TODO.md # Project roadmap
├── public/ # Static assets
└── static/ # Additional static files
```
---
## 🎨 Features
### Current (Phase 1 - ✅ Complete)
- ✅ SvelteKit project scaffolded with TypeScript strict mode
- ✅ Tailwind CSS + DaisyUI with CS2-themed color palette
- ✅ Complete development tooling (ESLint, Prettier, Husky)
- ✅ Testing infrastructure (Vitest + Playwright)
- ✅ CI/CD pipeline (Woodpecker)
- ✅ Backend API documented
### Planned (See `docs/TODO.md` for details)
- 🏠 Homepage with featured matches
- 📊 Match listing with advanced filters
- 👤 Player profiles with stats & charts
- 🎮 Match detail pages (overview, economy, flashes, damage, chat)
- 🌍 Multi-language support (i18n)
- 🌙 Dark/Light theme toggle (default: dark)
- 📱 Mobile-responsive design
- ♿ WCAG 2.1 AA accessibility
- 🎯 CS2-specific features (MR12, Premier rating, volumetric smokes)
---
## 🔗 Backend
This frontend connects to the [csgowtfd](https://somegit.dev/CSGOWTF/csgowtfd) backend.
- **Language**: Go
- **Framework**: Gin
- **Database**: PostgreSQL
- **Cache**: Redis
- **API Docs**: See `docs/API.md`
Default API endpoint: `http://localhost:8000`
---
## 🧪 Testing
### Unit & Component Tests
```bash
# Run all tests
npm run test
# Watch mode for TDD
npm run test:watch
# Generate coverage report
npm run test:coverage
```
### End-to-End Tests
```bash
# Run E2E tests (headless)
npm run test:e2e
# Run with Playwright UI
npm run test:e2e:ui
# Debug mode
npm run test:e2e:debug
```
---
## 🚢 Deployment
### Build for Production
```bash
npm run build
```
The built app will be in the `build/` directory, ready to be deployed to any Node.js hosting platform.
### Environment Variables
See `.env.example` for all available configuration options:
- `VITE_API_BASE_URL` - Backend API URL
- `VITE_API_TIMEOUT` - API request timeout
- `VITE_ENABLE_LIVE_MATCHES` - Feature flag for live matches
- `VITE_ENABLE_ANALYTICS` - Feature flag for analytics
### CI/CD
Woodpecker CI automatically builds and deploys:
- **`master`** branch → Production
- **`dev`** branch → Development/Staging
- **`cs2-port`** branch → CS2 Preview (during rewrite)
---
## 🤝 Contributing
We welcome contributions! Please follow these guidelines:
### Before You Start
- Check existing issues or create one describing your feature/fix
- Comment on the issue to avoid duplicate work
- Fork the repository and create a feature branch
### Code Standards
- Follow TypeScript strict mode (no `any` types)
- Write tests for new features
- Follow existing code style (enforced by ESLint/Prettier)
- Keep components under 300 lines
- Write meaningful commit messages (Conventional Commits)
### Pull Request Process
1. Create a feature branch: `feature/your-feature-name`
2. Make your changes and commit with clear messages
3. Run linting and tests: `npm run lint && npm run test`
4. Push to your fork and create a PR to the `cs2-port` branch
5. Ensure CI passes and address review feedback
### Git Workflow
- Branch naming: `feature/`, `fix/`, `refactor/`, `docs/`
- Commit messages: `feat:`, `fix:`, `docs:`, `test:`, `refactor:`
- Only one feature/fix per PR
- Squash commits before merging
---
## 📚 Documentation
- **API Reference**: [`docs/API.md`](docs/API.md) - Complete backend API documentation
- **Project Roadmap**: [`docs/TODO.md`](docs/TODO.md) - Detailed implementation plan
- **SvelteKit Docs**: [kit.svelte.dev](https://kit.svelte.dev/)
- **Tailwind CSS**: [tailwindcss.com](https://tailwindcss.com/)
- **DaisyUI**: [daisyui.com](https://daisyui.com/)
---
## 📄 License
[GPL-3.0](LICENSE) © CSGOW.TF Team
---
## 💖 Support
If you find this project helpful, consider supporting us:
[![Liberapay](https://img.shields.io/badge/donate%20on-LiberaPay-%23f6c915?style=for-the-badge)](https://liberapay.com/CSGOWTF/)
---
## 🔗 Links
- **Website**: [csgow.tf](https://csgow.tf) (legacy CS:GO version)
- **Backend**: [csgowtfd](https://somegit.dev/CSGOWTF/csgowtfd)
- **Issues**: [Report a bug](https://somegit.dev/CSGOWTF/csgowtf/issues)
---
**Status**: 🚧 **Phase 1 Complete** - Active rewrite for CS2 support
## Backend
This is the frontend to the [csgowtfd](https://git.harting.dev/CSGOWTF/csgowtfd) backend.
## Tips on how to contribute
- If you are implementing or fixing an issue, please comment on the issue so work is not duplicated.
- If you want to implement a new feature, create an issue first describing the issue, so we know about it.
- Don't commit unnecessary changes to the codebase or debugging code.
- Write meaningful commits or squash them.
- Please try to follow the code style of the rest of the codebase.
- Only make pull requests to the dev branch.
- Only implement one feature per pull request to keep it easy to understand.
- Expect comments or questions on your pull request from the project maintainers. We try to keep the code as consistent and maintainable as possible.
- Each pull request should come from a new branch in your fork, it should have a meaningful name.

1154
TODO.md

File diff suppressed because it is too large Load Diff

5
babel.config.js Normal file
View File

@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,393 +0,0 @@
# API Proxying with SvelteKit Server Routes
This document explains how API requests are proxied to the backend using SvelteKit server routes.
## Why Use Server Routes?
The CS2.WTF frontend uses **SvelteKit server routes** to proxy API requests to the backend. This approach provides several benefits:
-**Works in all environments**: Development, preview, and production
-**No CORS issues**: Requests are server-side
-**Single code path**: Same behavior everywhere
-**Flexible backend switching**: Change one environment variable
-**Future-proof**: Can add caching, rate limiting, auth later
-**Better security**: Backend URL not exposed to client
## Architecture
### Request Flow
```
Browser → /api/matches → SvelteKit Server Route → Backend → Response
```
**Detailed Flow**:
```
1. Browser: GET http://localhost:5173/api/matches?limit=20
2. SvelteKit: Routes to src/routes/api/[...path]/+server.ts
3. Server Handler: Reads VITE_API_BASE_URL environment variable
4. Backend Call: GET https://api.csgow.tf/matches?limit=20
5. Backend: Returns JSON response
6. Server Handler: Forwards response to browser
7. Browser: Receives response (no CORS issues!)
```
**SSR (Server-Side Rendering) Flow**:
```
1. Page Load: +page.ts calls api.matches.getMatches()
2. API Client: Detects import.meta.env.SSR === true
3. Direct Call: GET https://api.csgow.tf/matches?limit=20
4. Backend: Returns JSON response
5. SSR: Renders page with data
```
**Note**: SSR bypasses the SvelteKit route and calls the backend directly because relative URLs (`/api`) don't work during server-side rendering.
### Key Components
**1. SvelteKit Server Route** (`src/routes/api/[...path]/+server.ts`)
- Catch-all route that matches `/api/*`
- Forwards requests to backend
- Supports GET, POST, DELETE methods
- Handles errors gracefully
**2. API Client** (`src/lib/api/client.ts`)
- Browser: Uses `/api` base URL (routes to SvelteKit)
- SSR: Uses `VITE_API_BASE_URL` directly (bypasses SvelteKit route)
- Automatically detects environment with `import.meta.env.SSR`
**3. Environment Variable** (`.env`)
- `VITE_API_BASE_URL` controls which backend to use
- Switch between local and production easily
## Configuration
### Environment Variables
**`.env`**:
```env
# Production API (default)
VITE_API_BASE_URL=https://api.csgow.tf
# Local backend (for development)
# VITE_API_BASE_URL=http://localhost:8000
```
**Switching Backends**:
```bash
# Use production API
echo "VITE_API_BASE_URL=https://api.csgow.tf" > .env
npm run dev
# Use local backend
echo "VITE_API_BASE_URL=http://localhost:8000" > .env
npm run dev
```
### Server Route Implementation
**File**: `src/routes/api/[...path]/+server.ts`
```typescript
import { error, json } from '@sveltejs/kit';
import type { RequestHandler } from './$types';
const API_BASE_URL = import.meta.env.VITE_API_BASE_URL || 'https://api.csgow.tf';
export const GET: RequestHandler = async ({ params, url }) => {
const path = params.path; // e.g., "matches"
const queryString = url.search; // e.g., "?limit=20"
const backendUrl = `${API_BASE_URL}/${path}${queryString}`;
try {
const response = await fetch(backendUrl);
const data = await response.json();
return json(data);
} catch (err) {
throw error(503, 'Unable to connect to backend');
}
};
```
### API Client Configuration
**File**: `src/lib/api/client.ts`
```typescript
// Simple, single configuration
const API_BASE_URL = '/api';
// Always routes to SvelteKit server routes
// No environment detection needed
```
## Testing the Setup
### 1. Check Environment Variable
```bash
cat .env
# Should show:
VITE_API_BASE_URL=https://api.csgow.tf
# or
VITE_API_BASE_URL=http://localhost:8000
```
### 2. Start Development Server
```bash
npm run dev
# Server starts on http://localhost:5173
```
### 3. Check Network Requests
Open DevTools → Network tab:
- ✅ Requests go to `/api/matches`, `/api/player/123`, etc.
- ✅ Status should be `200 OK`
- ✅ No CORS errors in console
### 4. Test Both Backends
**Test Production API**:
```bash
# Set production API
echo "VITE_API_BASE_URL=https://api.csgow.tf" > .env
# Start dev server
npm run dev
# Visit http://localhost:5173/matches
# Should load matches from production API
```
**Test Local Backend**:
```bash
# Start local backend first
cd ../csgowtfd
go run main.go
# In another terminal, set local API
echo "VITE_API_BASE_URL=http://localhost:8000" > .env
# Start dev server
npm run dev
# Visit http://localhost:5173/matches
# Should load matches from local backend
```
## Common Issues
### Issue 1: 503 Service Unavailable
**Symptom**: API requests return 503 error
**Possible Causes**:
1. Backend is not running
2. Wrong `VITE_API_BASE_URL` in `.env`
3. Network connectivity issues
**Fix**:
```bash
# Check .env file
cat .env
# If using local backend, make sure it's running
curl http://localhost:8000/matches
# If using production API, check connectivity
curl https://api.csgow.tf/matches
# Restart dev server after changing .env
npm run dev
```
### Issue 2: 404 Not Found
**Symptom**: `/api/*` routes return 404
**Cause**: SvelteKit server route file missing or not loaded
**Fix**:
```bash
# Check file exists
ls src/routes/api/[...path]/+server.ts
# If missing, create it
mkdir -p src/routes/api/'[...path]'
# Then create +server.ts file
# Restart dev server
npm run dev
```
### Issue 3: Environment Variable Not Loading
**Symptom**: Server route uses wrong backend URL
**Cause**: Changes to `.env` require server restart
**Fix**:
```bash
# Stop dev server (Ctrl+C)
# Update .env
echo "VITE_API_BASE_URL=http://localhost:8000" > .env
# Start dev server again
npm run dev
```
### Issue 4: CORS Errors Still Appearing
**Symptom**: Browser console shows CORS errors
**Cause**: API client is not using `/api` prefix
**Fix**:
Check `src/lib/api/client.ts`:
```typescript
// Should be:
const API_BASE_URL = '/api';
// Not:
const API_BASE_URL = 'https://api.csgow.tf'; // ❌ Wrong
```
## How It Works Compared to Vite Proxy
### Old Approach (Vite Proxy)
```
Development:
Browser → /api → Vite Proxy → Backend
Production:
Browser → Backend (direct, different code path)
```
**Problems**:
- Two different code paths (dev vs prod)
- Proxy only works in development
- SSR has to bypass proxy
- Complex configuration
### New Approach (SvelteKit Server Routes)
```
All Environments:
Browser → /api → SvelteKit Route → Backend
```
**Benefits**:
- Single code path
- Works in dev, preview, and production
- Consistent behavior everywhere
- Simpler configuration
## Adding Features
### Add Request Caching
**File**: `src/routes/api/[...path]/+server.ts`
```typescript
const cache = new Map<string, { data: any; expires: number }>();
export const GET: RequestHandler = async ({ params, url }) => {
const cacheKey = `${params.path}${url.search}`;
// Check cache
const cached = cache.get(cacheKey);
if (cached && Date.now() < cached.expires) {
return json(cached.data);
}
// Fetch from backend
const data = await fetch(`${API_BASE_URL}/${params.path}${url.search}`).then((r) => r.json());
// Cache for 5 minutes
cache.set(cacheKey, {
data,
expires: Date.now() + 5 * 60 * 1000
});
return json(data);
};
```
### Add Rate Limiting
```typescript
import { rateLimit } from '$lib/server/rateLimit';
export const GET: RequestHandler = async ({ request, params, url }) => {
// Check rate limit
await rateLimit(request);
// Continue with normal flow...
};
```
### Add Authentication
```typescript
export const GET: RequestHandler = async ({ request, params, url }) => {
// Get auth token from cookie
const token = request.headers.get('cookie')?.includes('auth_token');
// Forward to backend with auth
const response = await fetch(backendUrl, {
headers: {
Authorization: `Bearer ${token}`
}
});
// ...
};
```
## Summary
| Feature | Vite Proxy | SvelteKit Routes |
| --------------------- | ---------- | ---------------- |
| Works in dev | ✅ | ✅ |
| Works in production | ❌ | ✅ |
| Single code path | ❌ | ✅ |
| Can add caching | ❌ | ✅ |
| Can add rate limiting | ❌ | ✅ |
| Can add auth | ❌ | ✅ |
| SSR compatible | ❌ | ✅ |
**SvelteKit server routes provide a production-ready, maintainable solution for API proxying that works in all environments.**

View File

@@ -1,587 +0,0 @@
# CS2.WTF Design System
A modern, tactical design language inspired by Counter-Strike 2's in-game aesthetics.
---
## 🎨 Design Philosophy
### Core Principles
1. **Tactical & Data-Dense**: Inspired by CS2's HUD - information at a glance
2. **Dark-First**: Gaming-optimized dark theme as default
3. **Team Identity**: Leverage T-side (orange) and CT-side (blue) throughout
4. **Performance**: Smooth animations, no bloat
5. **Accessible**: WCAG 2.1 AA compliant
### Visual Language
- **Sharp Corners**: Minimal border radius (2-4px) for tactical feel
- **Neon Accents**: Subtle glows on interactive elements
- **Grid-Based**: 8px base unit for consistent spacing
- **Monospace Numbers**: Stats feel more tactical
- **Depth Through Layers**: Elevated cards with subtle shadows
---
## 🎨 Color Palette
### Brand Colors
```css
/* Primary (CT Blue) */
--ct-blue: #5e98d9;
--ct-blue-light: #7eaee5;
--ct-blue-dark: #4a7ab3;
/* Secondary (T Orange) */
--t-orange: #d4a74a;
--t-orange-light: #e5c674;
--t-orange-dark: #b38a3a;
/* Accent (Success Green) */
--accent-green: #36d399;
```
### Base Colors (Dark Theme)
```css
/* Backgrounds */
--bg-primary: #0f172a; /* Slate 900 - Main background */
--bg-secondary: #1e293b; /* Slate 800 - Card background */
--bg-tertiary: #334155; /* Slate 700 - Hover states */
/* Text */
--text-primary: #e2e8f0; /* Slate 200 - Main text */
--text-secondary: #94a3b8; /* Slate 400 - Muted text */
--text-tertiary: #64748b; /* Slate 500 - Disabled text */
/* Borders */
--border-default: #334155; /* Slate 700 */
--border-accent: #475569; /* Slate 600 - Hover */
```
### Semantic Colors
```css
/* Status */
--success: #36d399; /* Win, positive stats */
--warning: #fbbd23; /* Neutral, info */
--error: #f87272; /* Loss, negative stats */
--info: #3abff8; /* Information, CT-related */
```
---
## 📐 Typography
### Font Families
**Primary (UI Text):**
```css
font-family:
'Inter',
system-ui,
-apple-system,
sans-serif;
```
**Monospace (Stats & Numbers):**
```css
font-family: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
```
### Type Scale
```css
/* Display */
--text-6xl: 3.75rem; /* 60px - Hero headings */
--text-5xl: 3rem; /* 48px - Page titles */
--text-4xl: 2.25rem; /* 36px - Section headers */
/* Headings */
--text-3xl: 1.875rem; /* 30px - Card titles */
--text-2xl: 1.5rem; /* 24px - Subsection headers */
--text-xl: 1.25rem; /* 20px - Large body */
/* Body */
--text-lg: 1.125rem; /* 18px - Prominent text */
--text-base: 1rem; /* 16px - Default body */
--text-sm: 0.875rem; /* 14px - Small text */
--text-xs: 0.75rem; /* 12px - Captions */
```
### Font Weights
```css
--font-normal: 400;
--font-medium: 500;
--font-semibold: 600;
--font-bold: 700;
```
---
## 🏗️ Layout
### Spacing System (8px Grid)
```css
--space-1: 0.25rem; /* 4px */
--space-2: 0.5rem; /* 8px */
--space-3: 0.75rem; /* 12px */
--space-4: 1rem; /* 16px */
--space-6: 1.5rem; /* 24px */
--space-8: 2rem; /* 32px */
--space-12: 3rem; /* 48px */
--space-16: 4rem; /* 64px */
--space-24: 6rem; /* 96px */
```
### Container Widths
```css
--container-sm: 640px; /* Mobile landscape */
--container-md: 768px; /* Tablet */
--container-lg: 1024px; /* Desktop */
--container-xl: 1280px; /* Large desktop */
--container-2xl: 1536px; /* Extra large */
```
### Breakpoints
```css
/* Mobile first approach */
sm: 640px /* Tablet */
md: 768px /* Small desktop */
lg: 1024px /* Desktop */
xl: 1280px /* Large desktop */
2xl: 1536px /* Extra large */
```
---
## 🎭 Components
### Cards
**Default Card:**
```css
background: var(--bg-secondary);
border: 1px solid var(--border-default);
border-radius: 4px;
padding: 1.5rem;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
```
**Elevated Card:**
```css
box-shadow:
0 10px 15px -3px rgb(0 0 0 / 0.2),
0 4px 6px -4px rgb(0 0 0 / 0.1);
```
**Interactive Card (Hover):**
```css
transition: all 0.2s ease;
&:hover {
border-color: var(--ct-blue);
box-shadow: 0 0 0 2px rgb(94 152 217 / 0.2);
transform: translateY(-2px);
}
```
### Buttons
**Primary (CT Blue):**
```css
background: var(--ct-blue);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 4px;
font-weight: 600;
transition: all 0.2s;
&:hover {
background: var(--ct-blue-dark);
box-shadow: 0 0 20px rgb(94 152 217 / 0.3);
}
```
**Secondary (T Orange):**
```css
background: var(--t-orange);
color: white;
/* Similar styling */
```
**Ghost:**
```css
background: transparent;
border: 1px solid var(--border-default);
color: var(--text-primary);
&:hover {
background: var(--bg-tertiary);
border-color: var(--ct-blue);
}
```
### Badges
**Team Badge:**
```css
/* T-Side */
background: rgb(212 167 74 / 0.1);
color: var(--t-orange-light);
border: 1px solid var(--t-orange-dark);
/* CT-Side */
background: rgb(94 152 217 / 0.1);
color: var(--ct-blue-light);
border: 1px solid var(--ct-blue-dark);
```
**Status Badge:**
```css
/* Win */
background: rgb(54 211 153 / 0.1);
color: var(--success);
/* Loss */
background: rgb(248 114 114 / 0.1);
color: var(--error);
```
---
## 🌊 Animations
### Transitions
```css
/* Standard */
transition: all 0.2s ease;
/* Slow */
transition: all 0.3s ease;
/* Fast */
transition: all 0.15s ease;
```
### Keyframes
**Fade In:**
```css
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
```
**Pulse (Live Indicator):**
```css
@keyframes pulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
```
**Glow:**
```css
@keyframes glow {
0%,
100% {
box-shadow: 0 0 10px rgb(94 152 217 / 0.3);
}
50% {
box-shadow: 0 0 20px rgb(94 152 217 / 0.5);
}
}
```
---
## 🎯 Iconography
**Icon Library:** Lucide Icons (clean, modern, consistent)
**Icon Sizes:**
```css
--icon-xs: 16px;
--icon-sm: 20px;
--icon-md: 24px;
--icon-lg: 32px;
--icon-xl: 48px;
```
**Icon Colors:**
- Default: `text-slate-400`
- Active: `text-primary` or `text-secondary`
- Success: `text-success`
- Error: `text-error`
---
## 📊 Data Visualization
### Chart Colors
**Team Performance:**
- T-Side: `#d4a74a`
- CT-Side: `#5e98d9`
**Heatmaps:**
- Low: `#334155` (Slate 700)
- Medium: `#f59e0b` (Amber 500)
- High: `#ef4444` (Red 500)
**Line Charts:**
- Primary line: `#5e98d9`
- Secondary line: `#d4a74a`
- Grid: `rgb(51 65 85 / 0.3)`
### Tables
**Header:**
```css
background: var(--bg-primary);
font-weight: 600;
text-transform: uppercase;
font-size: 0.75rem;
letter-spacing: 0.05em;
color: var(--text-secondary);
```
**Row:**
```css
border-bottom: 1px solid var(--border-default);
&:hover {
background: var(--bg-tertiary);
}
```
**Stats (Numbers):**
```css
font-family: var(--font-mono);
font-variant-numeric: tabular-nums;
```
---
## ♿ Accessibility
### Focus States
```css
&:focus-visible {
outline: 2px solid var(--ct-blue);
outline-offset: 2px;
}
```
### Color Contrast
- Text on dark bg: Minimum 4.5:1 (WCAG AA)
- Large text: Minimum 3:1
- UI components: Minimum 3:1
### Motion
```css
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}
```
---
## 🎮 CS2-Specific Elements
### Rank Display
- Show Premier rating (0-30,000) with color coding
- Bronze: `#cd7f32`
- Silver: `#c0c0c0`
- Gold: `#ffd700`
- Legend: `#9b59b6`
### Map Thumbnails
- 16:9 aspect ratio
- Slight overlay gradient (bottom to top)
- Map name in bottom-left corner
### Weapon Icons
- Monochrome with subtle glow
- Size: 32x32px default
- Color: Match rarity (Consumer White, Mil-Spec Blue, etc.)
### Kill Feed
```css
.kill-feed-item {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.25rem 0.5rem;
background: rgb(15 23 42 / 0.9);
border-left: 2px solid var(--t-orange);
}
```
---
## 📱 Responsive Design
### Mobile (< 768px)
- Stack layouts vertically
- Reduce padding/spacing by 25%
- Hide secondary information
- Larger tap targets (min 44x44px)
- Bottom navigation for main actions
### Tablet (768px - 1024px)
- Two-column layouts
- Collapsible sidebar
- Touch-optimized interactions
### Desktop (> 1024px)
- Three-column layouts where appropriate
- Hover states and tooltips
- Keyboard shortcuts
- Dense data tables
---
## 🎨 Example Compositions
### Hero Section (Homepage)
```
┌─────────────────────────────────────────┐
│ │
│ CS2.WTF (Large Logo) │
│ Statistics for CS2 Matches │
│ │
│ [Search Match] [Browse Players] │
│ │
│ Featured Matches (Carousel) ────> │
│ │
└─────────────────────────────────────────┘
```
### Match Card
```
┌─────────────────────────────────────┐
│ de_inferno 13 - 10 LIVE │
│ ─────────────────────────────────── │
│ 👤 Player1 24K 18D ⭐⭐⭐ │
│ 👤 Player2 21K 20D ⭐⭐ │
│ ... │
│ ─────────────────────────────────── │
│ 📅 2 hours ago ⏱️ 42:33 │
└─────────────────────────────────────┘
```
### Stats Table
```
┌──────────────────────────────────────────────┐
│ PLAYER K D A HS% ADR RATING │
├──────────────────────────────────────────────┤
│ 👤 Player1 24 18 6 50% 98 1.32 🥇 │
│ 👤 Player2 21 20 8 48% 87 1.12 │
│ 👤 Player3 19 22 5 44% 82 0.98 │
└──────────────────────────────────────────────┘
```
---
## 🚀 Performance Guidelines
- Lazy load images and charts
- Use CSS transforms for animations (GPU-accelerated)
- Debounce search inputs (300ms)
- Virtual scrolling for large tables (> 100 rows)
- Optimize bundle size (< 200KB initial)
---
## 📝 Naming Conventions
### CSS Classes
```css
/* Component */
.match-card {
}
/* Element */
.match-card__header {
}
/* Modifier */
.match-card--featured {
}
/* State */
.match-card.is-active {
}
```
### Tailwind Utilities
Prefer utility classes for spacing, colors, and common patterns:
```html
<div class="rounded-lg bg-base-200 p-6 shadow-lg"></div>
```
---
**Last Updated**: 2025-11-04
**Status**: Active Development

View File

@@ -1,480 +0,0 @@
# CS2.WTF Feature Implementation Status
**Last Updated:** 2025-11-12
**Branch:** cs2-port
**Status:** In Progress (~70% Complete)
## Overview
This document tracks the implementation status of missing features from the original CS:GO WTF frontend that need to be ported to the new CS2.WTF SvelteKit application.
---
## Phase 1: Critical Features (HIGH PRIORITY)
### ✅ 1. Player Tracking System
**Status:** COMPLETED
- ✅ Added `tracked` field to Player type
- ✅ Updated player schema validation
- ✅ Updated API transformer to pass through `tracked` field
- ✅ Created `TrackPlayerModal.svelte` component
- Auth code input
- Optional share code input
- Track/Untrack functionality
- Help text with instructions
- Loading states and error handling
- ✅ Integrated modal into player profile page
- ✅ Added tracking status indicator button
- ✅ Connected to API endpoints: `POST /player/:id/track` and `DELETE /player/:id/track`
**Files Modified:**
- `src/lib/types/Player.ts`
- `src/lib/schemas/player.schema.ts`
- `src/lib/api/transformers.ts`
- `src/routes/player/[id]/+page.svelte`
**Files Created:**
- `src/lib/components/player/TrackPlayerModal.svelte`
---
### ✅ 2. Match Share Code Parsing
**Status:** COMPLETED
- ✅ Created `ShareCodeInput.svelte` component
- Share code input with validation
- Submit button with loading state
- Parse status feedback (parsing/success/error)
- Auto-redirect to match page on success
- Help text with instructions
- ✅ Added component to matches page
- ✅ Connected to API endpoint: `GET /match/parse/:sharecode`
- ✅ Share code format validation
**Files Created:**
- `src/lib/components/match/ShareCodeInput.svelte`
**Files Modified:**
- `src/routes/matches/+page.svelte`
---
### ✅ 3. VAC/Game Ban Status Display (Player Profile)
**Status:** COMPLETED
- ✅ Added VAC ban badge with count and date
- ✅ Added Game ban badge with count and date
- ✅ Styled with error/warning colors
- ✅ Displays on player profile header
- ✅ Shows ban dates when available
**Files Modified:**
- `src/routes/player/[id]/+page.svelte`
---
### 🔄 4. VAC Status Column on Match Scoreboard
**Status:** NOT STARTED
**TODO:**
- Add VAC status indicator column to scoreboard in `src/routes/match/[id]/+page.svelte`
- Add VAC status indicator to details tab table
- Style with red warning icon for players with VAC bans
- Tooltip with ban date on hover
**Files to Modify:**
- `src/routes/match/[id]/+page.svelte`
- `src/routes/match/[id]/details/+page.svelte`
---
### 🔄 5. Weapons Statistics Tab
**Status:** NOT STARTED
**Requires:**
- New tab on match detail page
- Component to display weapon statistics
- Hitgroup visualization (similar to old HitgroupPuppet.vue)
- Weapon breakdown table with kills, damage, hits per weapon
- API endpoint already exists: `GET /match/:id/weapons`
- API method already exists: `matchesAPI.getMatchWeapons()`
**TODO:**
- Create `src/routes/match/[id]/weapons/+page.svelte`
- Create `src/routes/match/[id]/weapons/+page.ts` (load function)
- Create `src/lib/components/match/WeaponStats.svelte`
- Create `src/lib/components/match/HitgroupVisualization.svelte`
- Update match layout tabs to include weapons tab
**Estimated Effort:** 8-16 hours
---
### 🔄 6. Recently Visited Players (Home Page)
**Status:** NOT STARTED
**Requires:**
- localStorage tracking of visited player profiles
- Display on home page as cards
- Delete/clear functionality
- Limit to last 6-10 players
**TODO:**
- Create utility functions for localStorage management
- Create `src/lib/components/player/RecentlyVisitedPlayers.svelte`
- Add to home page (`src/routes/+page.svelte`)
- Track player visits in player profile page
- Add to preferences store
**Estimated Effort:** 4-6 hours
---
## Phase 2: Important Features (MEDIUM-HIGH PRIORITY)
### 🔄 7. Complete Scoreboard Columns
**Status:** NOT STARTED
**Missing Columns:**
- Player avatars (Steam avatar images)
- Color indicators (in-game player colors)
- In-game score column
- MVP stars column
- K/D ratio column (separate from K/D difference)
- Multi-kill indicators on scoreboard (currently only in Details tab)
**TODO:**
- Update `src/routes/match/[id]/+page.svelte` scoreboard table
- Add avatar column with Steam profile images
- Add color-coded player indicators
- Add Score, MVP, K/D ratio columns
- Move multi-kill indicators to scoreboard or add as tooltips
**Estimated Effort:** 6-8 hours
---
### 🔄 8. Sitemap Generation
**Status:** NOT STARTED
**Requires:**
- Dynamic sitemap generation based on players and matches
- XML sitemap endpoint
- Sitemap index for pagination
- robots.txt configuration
**TODO:**
- Create `src/routes/sitemap.xml/+server.ts`
- Create `src/routes/sitemap/[id]/+server.ts`
- Implement sitemap generation logic
- Add robots.txt to static folder
- Connect to backend sitemap endpoints if they exist
**Estimated Effort:** 6-8 hours
---
### 🔄 9. Team Average Rank Badges (Match Header)
**Status:** NOT STARTED
**Requires:**
- Calculate average Premier rating per team
- Display in match header/layout
- Show tier badges for each team
- Rank change indicators
**TODO:**
- Add calculation logic in `src/routes/match/[id]/+layout.svelte`
- Create component for team rank display
- Style with tier colors
**Estimated Effort:** 3-4 hours
---
### 🔄 10. Chat Message Translation
**Status:** NOT STARTED
**Requires:**
- Translation API integration (Google Translate, DeepL, or similar)
- Translate button on each chat message
- Language detection
- Cache translations
**TODO:**
- Choose translation API provider
- Add API key configuration
- Create translation service in `src/lib/services/translation.ts`
- Update `src/routes/match/[id]/chat/+page.svelte`
- Add translate button to chat messages
- Handle loading and error states
**Estimated Effort:** 8-12 hours
---
## Phase 3: Polish & Nice-to-Have (MEDIUM-LOW PRIORITY)
### 🔄 11. Steam Profile Links
**Status:** NOT STARTED
**TODO:**
- Add Steam profile link to player name on player profile page
- Add links to scoreboard player names
- Support for vanity URLs
- Open in new tab
**Files to Modify:**
- `src/routes/player/[id]/+page.svelte`
- `src/routes/match/[id]/+page.svelte`
- `src/routes/match/[id]/details/+page.svelte`
**Estimated Effort:** 2-3 hours
---
### 🔄 12. Win/Loss/Tie Statistics
**Status:** NOT STARTED
**TODO:**
- Display total wins, losses, ties on player profile
- Calculate win rate from these totals
- Add to player stats cards section
**Files to Modify:**
- `src/routes/player/[id]/+page.svelte`
**Estimated Effort:** 1-2 hours
---
### 🔄 13. Privacy Policy Page
**Status:** NOT STARTED
**TODO:**
- Create `src/routes/privacy-policy/+page.svelte`
- Write privacy policy content
- Add GDPR compliance information
- Link from footer
**Estimated Effort:** 2-4 hours
---
### 🔄 14. Player Color Indicators (Scoreboard)
**Status:** NOT STARTED
**TODO:**
- Display in-game player colors on scoreboard
- Color-code player rows or names
- Match CS2 color scheme (green/yellow/purple/blue/orange)
**Files to Modify:**
- `src/routes/match/[id]/+page.svelte`
**Estimated Effort:** 1-2 hours
---
### 🔄 15. Additional Utility Statistics
**Status:** NOT STARTED
**Missing Stats:**
- Self-flash statistics
- Smoke grenade usage
- Decoy grenade usage
- Team flash statistics
**TODO:**
- Display in match details or player profile
- Add to utility effectiveness section
**Estimated Effort:** 2-3 hours
---
## Feature Parity Comparison
### What's BETTER in Current Implementation ✨
- Modern SvelteKit architecture with TypeScript
- Superior filtering and search functionality
- Data export (CSV/JSON)
- Better data visualizations (Chart.js)
- Premier rating system (CS2-specific)
- Dark/light theme toggle
- Infinite scroll
- Better responsive design
### What's Currently Missing ⚠️
- Weapon statistics page (high impact)
- Complete scoreboard columns (medium impact)
- Recently visited players (medium impact)
- Sitemap/SEO (medium impact)
- Chat translation (low-medium impact)
- Various polish features (low impact)
---
## Estimated Remaining Effort
### By Priority
| Priority | Tasks Remaining | Est. Hours | Status |
| ------------------- | --------------- | --------------- | ---------------- |
| Phase 1 (Critical) | 3 | 16-30 hours | 50% Complete |
| Phase 2 (Important) | 4 | 23-36 hours | 0% Complete |
| Phase 3 (Polish) | 5 | 8-14 hours | 0% Complete |
| **TOTAL** | **12** | **47-80 hours** | **25% Complete** |
### Overall Project Status
- **Completed:** 3 critical features
- **In Progress:** API cleanup and optimization
- **Remaining:** 12 features across 3 phases
- **Estimated Completion:** 2-3 weeks of full-time development
---
## Next Steps
### Immediate (This Session)
1. ✅ Player tracking UI - DONE
2. ✅ Share code parsing UI - DONE
3. ✅ VAC/ban status display (profile) - DONE
4. ⏭️ VAC status on scoreboard - NEXT
5. ⏭️ Weapons statistics tab - NEXT
6. ⏭️ Recently visited players - NEXT
### Short Term (Next Session)
- Complete remaining Phase 1 features
- Start Phase 2 features (scoreboard completion, sitemap)
### Medium Term
- Complete Phase 2 features
- Begin Phase 3 polish features
### Long Term
- Full feature parity with old frontend
- Additional CS2-specific features
- Performance optimizations
---
## Testing Checklist
### Completed Features
- [x] Player tracking modal opens and closes
- [x] Player tracking modal validates auth code input
- [x] Track/untrack API calls work
- [x] Tracking status updates after track/untrack
- [x] Share code input validates format
- [x] Share code parsing submits to API
- [x] Parse status feedback displays correctly
- [x] Redirect to match page after successful parse
- [x] VAC/ban badges display on player profile
- [x] VAC/ban dates show when available
### TODO Testing
- [ ] VAC status displays on scoreboard
- [ ] Weapons tab loads and displays data
- [ ] Hitgroup visualization renders correctly
- [ ] Recently visited players tracked correctly
- [ ] Recently visited players display on home page
- [ ] All Phase 2 and 3 features
---
## Known Issues
### Current
- None
### Potential
- Translation API rate limiting (once implemented)
- Sitemap generation performance with large datasets
- Weapons tab may need pagination for long matches
---
## Notes
### Architecture Decisions
- Using SvelteKit server routes for API proxying (no CORS issues)
- Transformers pattern for legacy API format conversion
- Component-based approach for reusability
- TypeScript + Zod for type safety
### API Endpoints Used
-`POST /player/:id/track`
-`DELETE /player/:id/track`
-`GET /match/parse/:sharecode`
- ⏭️ `GET /match/:id/weapons` (available but not used yet)
- ⏭️ `GET /player/:id/meta` (available but not optimized yet)
---
## Contributors
- Initial Analysis: Claude (Anthropic AI)
- Implementation: In Progress
- Testing: Pending
---
**For questions or updates, refer to the main project README.md**

View File

@@ -1,335 +0,0 @@
# Local Development Setup
This guide will help you set up the CS2.WTF frontend for local development.
## Prerequisites
- **Node.js**: v18.x or v20.x (check with `node --version`)
- **npm**: v9.x or higher (comes with Node.js)
- **Backend API**: Either local csgowtfd service OR access to production API
## Quick Start
### 1. Install Dependencies
```bash
npm install
```
### 2. Environment Configuration
The `.env` file already exists in the project. You can use it as-is or modify it:
**Option A: Use Production API** (Recommended for frontend development)
```env
# Use the live production API - no local backend needed
VITE_API_BASE_URL=https://api.csgow.tf
VITE_API_TIMEOUT=10000
VITE_DEBUG_MODE=true
VITE_ENABLE_ANALYTICS=false
```
**Option B: Use Local Backend** (For full-stack development)
```env
# Use local backend (requires csgowtfd running on port 8000)
VITE_API_BASE_URL=http://localhost:8000
VITE_API_TIMEOUT=10000
VITE_DEBUG_MODE=true
VITE_ENABLE_ANALYTICS=false
```
### 3. Start the Development Server
```bash
npm run dev
```
The frontend will be available at `http://localhost:5173`
You should see output like:
```
VITE v5.x.x ready in xxx ms
➜ Local: http://localhost:5173/
➜ Network: use --host to expose
```
### 4. (Optional) Start Local Backend
Only needed if using `VITE_API_BASE_URL=http://localhost:8000`:
```bash
# In the csgowtfd repository
cd ../csgowtfd
go run cmd/csgowtfd/main.go
```
Or use Docker:
```bash
docker-compose up csgowtfd
```
## How SvelteKit API Routes Work
All API requests go through **SvelteKit server routes** which proxy to the backend. This works consistently in all environments.
### Request Flow (All Environments)
```
1. Browser makes request to: http://localhost:5173/api/matches
2. SvelteKit routes to: src/routes/api/[...path]/+server.ts
3. Server handler reads VITE_API_BASE_URL environment variable
4. Server fetches from backend: ${VITE_API_BASE_URL}/matches
5. Backend responds
6. Server handler forwards response to browser
```
### Benefits
-**No CORS errors** - All requests are server-side
-**Works in all environments** - Dev, preview, and production
-**Single code path** - Same behavior everywhere
-**Easy backend switching** - Change one environment variable
-**Future-proof** - Can add caching, rate limiting, auth later
-**Backend URL not exposed** - Hidden from client
### Switching Between Backends
Simply update `.env` and restart the dev server:
```bash
# Use production API
echo "VITE_API_BASE_URL=https://api.csgow.tf" > .env
npm run dev
# Use local backend
echo "VITE_API_BASE_URL=http://localhost:8000" > .env
npm run dev
```
### Development vs Production
| Mode | Request Flow | Backend URL From |
| -------------------------------- | ---------------------------------------------- | ------------------------------ |
| **Development** (`npm run dev`) | Browser → `/api/*` → SvelteKit Route → Backend | `.env``VITE_API_BASE_URL` |
| **Production** (`npm run build`) | Browser → `/api/*` → SvelteKit Route → Backend | Build-time `VITE_API_BASE_URL` |
**Note**: The flow is identical in both modes - this is the key advantage over the old Vite proxy approach.
## Troubleshooting
### No Data Showing / Network Errors
**Problem**: Frontend loads but shows no matches, players show "Failed to load" errors.
**Solutions**:
1. **Check what backend you're using**:
```bash
# Look at your .env file
cat .env | grep VITE_API_BASE_URL
```
2. **If using production API** (`https://api.csgow.tf`):
```bash
# Test if production API is accessible
curl https://api.csgow.tf/matches?limit=1
```
Should return JSON data. If not, production API may be down.
3. **If using local backend** (`http://localhost:8000`):
```bash
# Test if local backend is running
curl http://localhost:8000/matches?limit=1
```
If you get "Connection refused", start the backend service.
4. **Check browser console**:
- Open DevTools → Console tab
- Look for `[API Route]` error messages from the server route handler
- Network tab should show requests to `/api/*` (not external URLs)
- Check if requests return 503 (backend unreachable) or 500 (server error)
5. **Check server logs**:
- Look at the terminal running `npm run dev`
- Server route errors will appear with `[API Route] Error fetching...`
- This will show you the exact backend URL being requested
6. **Restart dev server**:
```bash
# Stop dev server (Ctrl+C)
npm run dev
```
### CORS Errors (Should Never Happen)
CORS errors should be impossible with SvelteKit server routes since all requests are server-side.
**If you somehow see CORS errors:**
- This means the API client is bypassing the `/api` routes
- Check that `src/lib/api/client.ts` has `API_BASE_URL = '/api'`
- Verify `src/routes/api/[...path]/+server.ts` exists
- Clear cache and restart:
```bash
rm -rf .svelte-kit
npm run dev
```
### Port Already in Use
If port 5173 is already in use:
```bash
# Vite will automatically try the next available port
npm run dev
# Or specify a custom port
npm run dev -- --port 3000
```
### Backend Connection Issues
If the backend is on a different host/port, update `.env`:
```env
# Custom backend location
VITE_API_BASE_URL=http://192.168.1.100:8080
```
Then restart the dev server.
## Development Workflow
### 1. Make Changes
Edit files in `src/`. The dev server has hot module replacement (HMR):
- Component changes reload instantly
- Route changes reload the page
- Store changes reload affected components
### 2. Type Checking
Run TypeScript type checking:
```bash
npm run check # Check once
npm run check:watch # Watch mode
```
### 3. Linting
```bash
npm run lint # Check for issues
npm run lint:fix # Auto-fix issues
npm run format # Run Prettier
```
### 4. Testing
```bash
# Unit tests
npm run test # Run once
npm run test:watch # Watch mode
npm run test:coverage # Generate coverage report
# E2E tests
npm run test:e2e # Headless
npm run test:e2e:ui # Playwright UI
```
## API Endpoints
The backend provides these endpoints (see `docs/API.md` for full details):
- `GET /matches` - List all matches
- `GET /match/:id` - Get match details
- `GET /match/:id/rounds` - Get round economy data
- `GET /match/:id/weapons` - Get weapon statistics
- `GET /match/:id/chat` - Get chat messages
- `GET /player/:id` - Get player profile
### How Requests Work
**All Environments** (dev, preview, production):
```
Frontend code: api.matches.getMatches()
API Client: GET /api/matches
SvelteKit Route: src/routes/api/[...path]/+server.ts
Server Handler: GET ${VITE_API_BASE_URL}/matches
Response: ← Data returned to frontend
```
The request flow is identical in all environments. The only difference is which backend URL `VITE_API_BASE_URL` points to:
- Development: Usually `https://api.csgow.tf` (production API)
- Local full-stack: `http://localhost:8000` (local backend)
- Production: `https://api.csgow.tf` (or custom backend URL)
## Mock Data (Alternative: No Backend)
If you want to develop without any backend (local or production), enable MSW mocking:
1. Update `.env`:
```env
VITE_ENABLE_MSW_MOCKING=true
```
2. Restart dev server
The app will use mock data from `src/mocks/handlers/`.
**Note**: Mock data is limited and may not reflect all features. **Production API is recommended** for most development work.
## Building for Production
```bash
# Build
npm run build
# Preview production build locally
npm run preview
```
The preview server runs on `http://localhost:4173` and uses the production API configuration.
## Environment Variables Reference
| Variable | Default | Description |
| -------------------------- | ----------------------- | ---------------------------- |
| `VITE_API_BASE_URL` | `http://localhost:8000` | Backend API base URL |
| `VITE_API_TIMEOUT` | `10000` | Request timeout (ms) |
| `VITE_ENABLE_LIVE_MATCHES` | `false` | Enable live match polling |
| `VITE_ENABLE_ANALYTICS` | `false` | Enable analytics tracking |
| `VITE_DEBUG_MODE` | `false` | Enable debug logging |
| `VITE_ENABLE_MSW_MOCKING` | `false` | Use mock data instead of API |
## Getting Help
- **Frontend Issues**: Check browser console for errors
- **API Issues**: Check backend logs and proxy output in terminal
- **Type Errors**: Run `npm run check` for detailed messages
- **Build Issues**: Delete `.svelte-kit/` and `node_modules/`, then `npm install`
## Next Steps
- Read `TODO.md` for current development status
- Check `docs/DESIGN.md` for design system documentation
- Review `docs/API.md` for complete API reference
- See `README.md` for project overview

View File

@@ -1,460 +0,0 @@
# Matches API Endpoint Documentation
This document provides detailed information about the matches API endpoints used by CS2.WTF to retrieve match data from the backend CSGOWTFD service.
## Overview
The matches API provides access to Counter-Strike 2 match data including match listings, detailed match statistics, and related match information such as weapons, rounds, and chat data.
## Base URL
All endpoints are relative to the API base URL: `https://api.csgow.tf`
During development, requests are proxied through `/api` to avoid CORS issues.
## Authentication
No authentication is required for read operations. All match data is publicly accessible.
## Rate Limiting
The API does not currently enforce rate limiting, but clients should implement reasonable request throttling to avoid overwhelming the service.
## Endpoints
### 1. Get Matches List
Retrieves a paginated list of matches.
**Endpoint**: `GET /matches`
**Alternative**: `GET /matches/next/:time`
**Parameters**:
- `time` (path, optional): Unix timestamp for pagination (use with `/matches/next/:time`)
- Query parameters:
- `limit` (optional): Number of matches to return (default: 50, max: 100)
- `map` (optional): Filter by map name (e.g., `de_inferno`)
- `player_id` (optional): Filter by player Steam ID
**Response** (200 OK):
**IMPORTANT**: This endpoint returns a **plain array**, not an object with properties.
```json
[
{
"match_id": "3589487716842078322",
"map": "de_inferno",
"date": 1730487900,
"score": [13, 10],
"duration": 2456,
"match_result": 1,
"max_rounds": 24,
"parsed": true,
"vac": false,
"game_ban": false
}
]
```
**Field Descriptions**:
- `match_id`: Unique match identifier (uint64 as string)
- `map`: Map name (can be empty string if not parsed)
- `date`: Unix timestamp (seconds since epoch)
- `score`: Array with two elements `[team_a_score, team_b_score]`
- `duration`: Match duration in seconds
- `match_result`: 0 = tie, 1 = team_a win, 2 = team_b win
- `max_rounds`: Maximum rounds (24 for MR12, 30 for MR15)
- `parsed`: Whether the demo has been parsed
- `vac`: Whether any player has a VAC ban
- `game_ban`: Whether any player has a game ban
**Pagination**:
- The API returns a plain array of matches, sorted by date (newest first)
- To get the next page, use the `date` field from the **last match** in the array
- Request `/matches/next/{timestamp}` where `{timestamp}` is the Unix timestamp
- Continue until the response returns fewer matches than your `limit` parameter
- Example: If you request `limit=20` and get back 15 matches, you've reached the end
### 2. Get Match Details
Retrieves detailed information about a specific match including player statistics.
**Endpoint**: `GET /match/{match_id}`
**Parameters**:
- `match_id` (path): The unique match identifier (uint64 as string)
**Response** (200 OK):
```json
{
"match_id": "3589487716842078322",
"share_code": "CSGO-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX",
"map": "de_inferno",
"date": "2024-11-01T18:45:00Z",
"score_team_a": 13,
"score_team_b": 10,
"duration": 2456,
"match_result": 1,
"max_rounds": 24,
"demo_parsed": true,
"vac_present": false,
"gameban_present": false,
"tick_rate": 64.0, // Optional: not always provided by API
"players": [
{
"id": "765611980123456",
"name": "Player1",
"avatar": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg",
"team_id": 2,
"kills": 24,
"deaths": 18,
"assists": 6,
"headshot": 12,
"mvp": 3,
"score": 56,
"kast": 78, // Optional: not always provided by API
"rank_old": 18500,
"rank_new": 18650,
"dmg_enemy": 2450,
"dmg_team": 120,
"flash_assists": 4,
"flash_duration_enemy": 15.6,
"flash_total_enemy": 8,
"ud_he": 450,
"ud_flames": 230,
"ud_flash": 5,
"ud_smoke": 3,
"avg_ping": 25.5,
"color": "yellow"
}
]
}
```
### 3. Get Match Weapons
Retrieves weapon statistics for all players in a match.
**Endpoint**: `GET /match/{match_id}/weapons`
**Parameters**:
- `match_id` (path): The unique match identifier
**Response** (200 OK):
```json
{
"match_id": 3589487716842078322,
"weapons": [
{
"player_id": 765611980123456,
"weapon_stats": [
{
"eq_type": 17,
"weapon_name": "AK-47",
"kills": 12,
"damage": 1450,
"hits": 48,
"hit_groups": {
"head": 8,
"chest": 25,
"stomach": 8,
"left_arm": 3,
"right_arm": 2,
"left_leg": 1,
"right_leg": 1
},
"headshot_pct": 16.7
}
]
}
]
}
```
### 4. Get Match Rounds
Retrieves round-by-round statistics for a match.
**Endpoint**: `GET /match/{match_id}/rounds`
**Parameters**:
- `match_id` (path): The unique match identifier
**Response** (200 OK):
```json
{
"match_id": 3589487716842078322,
"rounds": [
{
"round": 1,
"winner": 2,
"win_reason": "elimination",
"players": [
{
"round": 1,
"player_id": 765611980123456,
"bank": 800,
"equipment": 650,
"spent": 650,
"kills_in_round": 2,
"damage_in_round": 120
}
]
}
]
}
```
### 5. Get Match Chat
Retrieves chat messages from a match.
**Endpoint**: `GET /match/{match_id}/chat`
**Parameters**:
- `match_id` (path): The unique match identifier
**Response** (200 OK):
```json
{
"match_id": 3589487716842078322,
"messages": [
{
"player_id": 765611980123456,
"player_name": "Player1",
"message": "nice shot!",
"tick": 15840,
"round": 8,
"all_chat": true,
"timestamp": "2024-11-01T19:12:34Z"
}
]
}
```
### 6. Parse Match from Share Code
Initiates parsing of a match from a CS:GO/CS2 share code.
**Endpoint**: `GET /match/parse/{sharecode}`
**Parameters**:
- `sharecode` (path): The CS:GO/CS2 match share code
**Response** (200 OK):
```json
{
"match_id": "3589487716842078322",
"status": "parsing",
"message": "Demo download and parsing initiated",
"estimated_time": 120
}
```
## Data Models
### Match
```typescript
interface Match {
match_id: string; // Unique match identifier (uint64 as string)
share_code?: string; // CS:GO/CS2 share code (optional)
map: string; // Map name (e.g., "de_inferno")
date: string; // Match date and time (ISO 8601)
score_team_a: number; // Final score for team A
score_team_b: number; // Final score for team B
duration: number; // Match duration in seconds
match_result: number; // Match result: 0 = tie, 1 = team_a win, 2 = team_b win
max_rounds: number; // Maximum rounds (24 for MR12, 30 for MR15)
demo_parsed: boolean; // Whether the demo has been successfully parsed
vac_present: boolean; // Whether any player has a VAC ban
gameban_present: boolean; // Whether any player has a game ban
tick_rate?: number; // Server tick rate (64 or 128) - optional, not always provided by API
players?: MatchPlayer[]; // Array of player statistics (optional)
}
```
### MatchPlayer
```typescript
interface MatchPlayer {
id: string; // Player Steam ID (uint64 as string)
name: string; // Player display name
avatar: string; // Steam avatar URL
team_id: number; // Team ID: 2 = T side, 3 = CT side
kills: number; // Kills
deaths: number; // Deaths
assists: number; // Assists
headshot: number; // Headshot kills
mvp: number; // MVP stars earned
score: number; // In-game score
kast?: number; // KAST percentage (0-100) - optional, not always provided by API
rank_old?: number; // Premier rating before match (0-30000)
rank_new?: number; // Premier rating after match (0-30000)
dmg_enemy?: number; // Damage to enemies
dmg_team?: number; // Damage to teammates
flash_assists?: number; // Flash assist count
flash_duration_enemy?: number; // Total enemy blind time
flash_total_enemy?: number; // Enemies flashed count
ud_he?: number; // HE grenade damage
ud_flames?: number; // Molotov/Incendiary damage
ud_flash?: number; // Flash grenades used
ud_smoke?: number; // Smoke grenades used
avg_ping?: number; // Average ping
color?: string; // Player color
}
```
### MatchListItem
```typescript
interface MatchListItem {
match_id: string; // Unique match identifier (uint64 as string)
map: string; // Map name
date: string; // Match date and time (ISO 8601)
score_team_a: number; // Final score for team A
score_team_b: number; // Final score for team B
duration: number; // Match duration in seconds
demo_parsed: boolean; // Whether the demo has been successfully parsed
player_count?: number; // Number of players in the match - optional, not provided by API
}
```
## Error Handling
All API errors follow a consistent format:
```json
{
"error": "Error message",
"code": 404,
"details": {
"match_id": "3589487716842078322"
}
}
```
### Common HTTP Status Codes
- `200 OK`: Request successful
- `400 Bad Request`: Invalid parameters
- `404 Not Found`: Resource not found
- `500 Internal Server Error`: Server error
## Implementation Notes
### Pagination
The matches API implements cursor-based pagination using timestamps:
1. Initial request to `/matches` returns a plain array of matches (sorted newest first)
2. Extract the `date` field from the **last match** in the array
3. Request `/matches/next/{timestamp}` to get older matches
4. Continue until the response returns fewer matches than your `limit` parameter
5. The API does **not** provide `has_more` or `next_page_time` fields - you must calculate these yourself
### Data Transformation
The frontend application transforms legacy API responses to a modern schema-validated format:
- Unix timestamps are converted to ISO strings
- Avatar hashes are converted to full URLs (if provided)
- Team IDs are normalized (1/2 → 2/3 if needed)
- Score arrays `[team_a, team_b]` are split into separate fields
- Field names are mapped: `parsed``demo_parsed`, `vac``vac_present`, `game_ban``gameban_present`
- Missing fields are provided with defaults (e.g., `tick_rate: 64`)
### Steam ID Handling
All Steam IDs and Match IDs are handled as strings to preserve uint64 precision. Never convert these to numbers as it causes precision loss.
## Examples
### Fetching Matches with Pagination
```javascript
// Initial request - API returns a plain array
const matches = await fetch('/api/matches?limit=20').then((r) => r.json());
// matches is an array: [{ match_id, map, date, ... }, ...]
console.log(`Loaded ${matches.length} matches`);
// Get the timestamp of the last match for pagination
if (matches.length > 0) {
const lastMatch = matches[matches.length - 1];
const lastTimestamp = lastMatch.date; // Unix timestamp
// Fetch next page using the timestamp
const moreMatches = await fetch(`/api/matches/next/${lastTimestamp}?limit=20`).then((r) =>
r.json()
);
console.log(`Loaded ${moreMatches.length} more matches`);
// Check if we've reached the end
if (moreMatches.length < 20) {
console.log('Reached the end of matches');
}
}
```
### Complete Pagination Loop
```javascript
async function loadAllMatches(limit = 50) {
let allMatches = [];
let hasMore = true;
let lastTimestamp = null;
while (hasMore) {
// Build URL based on whether we have a timestamp
const url = lastTimestamp
? `/api/matches/next/${lastTimestamp}?limit=${limit}`
: `/api/matches?limit=${limit}`;
// Fetch matches
const matches = await fetch(url).then((r) => r.json());
// Add to collection
allMatches.push(...matches);
// Check if there are more
if (matches.length < limit) {
hasMore = false;
} else {
// Get timestamp of last match for next iteration
lastTimestamp = matches[matches.length - 1].date;
}
}
return allMatches;
}
```
### Filtering Matches by Map
```javascript
const response = await fetch('/api/matches?map=de_inferno&limit=20');
const data = await response.json();
```
### Filtering Matches by Player
```javascript
const response = await fetch('/api/matches?player_id=765611980123456&limit=20');
const data = await response.json();
```

View File

@@ -1,54 +0,0 @@
import js from '@eslint/js';
import ts from 'typescript-eslint';
import svelte from 'eslint-plugin-svelte';
import prettier from 'eslint-config-prettier';
import globals from 'globals';
/** @type {import('eslint').Linter.FlatConfig[]} */
export default [
js.configs.recommended,
...ts.configs.recommended,
...svelte.configs['flat/recommended'],
prettier,
...svelte.configs['flat/prettier'],
{
languageOptions: {
globals: {
...globals.browser,
...globals.node
}
}
},
{
files: ['**/*.svelte'],
languageOptions: {
parserOptions: {
parser: ts.parser
}
}
},
{
ignores: [
'build/',
'.svelte-kit/',
'dist/',
'node_modules/',
'**/*.cjs',
'*.config.js',
'*.config.ts'
]
},
{
rules: {
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_'
}
],
'@typescript-eslint/no-explicit-any': 'error',
'svelte/no-at-html-tags': 'warn'
}
}
];

9106
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,79 +1,46 @@
{
"name": "cs2wtf",
"version": "2.0.0",
"description": "Statistics for CS2 matchmaking matches",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint --fix .",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"prepare": "husky"
},
"dependencies": {
"@sveltejs/kit": "^2.0.0",
"axios": "^1.6.0",
"chart.js": "^4.5.1",
"svelte": "^5.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-node": "^5.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/svelte": "^5.0.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^1.0.0",
"autoprefixer": "^10.4.0",
"daisyui": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.0",
"globals": "^15.0.0",
"husky": "^9.0.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.0.0",
"lucide-svelte": "^0.400.0",
"msw": "^2.0.0",
"postcss": "^8.4.0",
"prettier": "^3.2.0",
"prettier-plugin-svelte": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.0",
"stylelint": "^16.0.0",
"stylelint-config-standard": "^36.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^3.4.0",
"tslib": "^2.6.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.0.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"lint-staged": {
"*.{js,ts,svelte}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0"
}
"name": "csgowtf",
"version": "1.0.8",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --mode production",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@fontsource/open-sans": "^4.5.13",
"@fontsource/orbitron": "^4.5.10",
"@popperjs/core": "^2.11.6",
"axios": "^1.1.3",
"bootstrap": "^5.2.2",
"core-js": "^3.26.0",
"dotenv-webpack": "^8.0.1",
"echarts": "^5.4.0",
"fork-awesome": "^1.2.0",
"http-status-codes": "^2.2.0",
"iso-639-1": "^2.1.15",
"jquery": "^3.6.1",
"luxon": "^3.1.0",
"string-sanitizer": "^2.0.2",
"vue": "^3.2.45",
"vue-matomo": "^4.2.0",
"vue-router": "^4.1.6",
"vue3-cookies": "^1.0.6",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-vuex": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/compiler-sfc": "^3.2.45",
"eslint": "^8.27.0",
"eslint-plugin-vue": "^9.7.0",
"sass": "^1.56.1",
"sass-loader": "^13.2.0"
},
"packageManager": "yarn@3.0.2"
}

View File

@@ -1,36 +0,0 @@
import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
port: 4173,
reuseExistingServer: !process.env.CI
},
testDir: 'tests/e2e',
testMatch: /(.+\.)?(test|spec)\.[jt]s/,
use: {
baseURL: 'http://localhost:4173',
screenshot: 'only-on-failure',
trace: 'retain-on-failure'
},
projects: [
{
name: 'chromium',
use: { browserName: 'chromium' }
},
{
name: 'firefox',
use: { browserName: 'firefox' }
},
{
name: 'webkit',
use: { browserName: 'webkit' }
}
],
reporter: process.env.CI ? 'github' : 'html',
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined
};
export default config;

View File

@@ -1,6 +0,0 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {}
}
};

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

Before

Width:  |  Height:  |  Size: 504 B

After

Width:  |  Height:  |  Size: 504 B

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

Before

Width:  |  Height:  |  Size: 9.5 KiB

After

Width:  |  Height:  |  Size: 9.5 KiB

View File

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@@ -1,209 +1,209 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g>
<path fill="#B6BAAE" d="M31.237,15.23L16.748,0.737c-0.224-0.224-0.521-0.347-0.836-0.347S15.3,0.514,15.076,0.737L0.587,15.23
c-0.223,0.224-0.346,0.52-0.346,0.836c0,0.317,0.123,0.613,0.346,0.837l14.489,14.493c0.224,0.224,0.521,0.347,0.836,0.347
s0.612-0.123,0.836-0.347l14.489-14.493C31.698,16.441,31.698,15.692,31.237,15.23z M30.701,16.591L16.43,30.861
c-0.138,0.138-0.322,0.215-0.518,0.215c-0.196,0-0.379-0.077-0.518-0.215L1.123,16.591c-0.138-0.139-0.214-0.322-0.214-0.519
s0.076-0.38,0.214-0.518L15.395,1.283c0.138-0.139,0.322-0.214,0.518-0.214c0.195,0,0.379,0.075,0.518,0.214l14.271,14.271
C30.986,15.84,30.986,16.305,30.701,16.591z"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E8E8E8" d="M30.214,16.715L16.516,30.411c-0.355,0.356-0.932,0.356-1.287,0
L1.532,16.715c-0.356-0.356-0.356-0.932,0-1.287L15.229,1.731c0.355-0.355,0.932-0.355,1.287,0l13.698,13.697
C30.568,15.783,30.568,16.359,30.214,16.715z"/>
<path fill="#F2F2F2" d="M15.873,30.726c-0.256,0-0.497-0.1-0.678-0.281L1.498,16.75c-0.182-0.182-0.281-0.423-0.281-0.679
c0-0.255,0.1-0.496,0.281-0.675L15.195,1.697c0.181-0.181,0.421-0.281,0.677-0.281s0.497,0.1,0.677,0.281l13.697,13.698
c0.18,0.18,0.279,0.42,0.279,0.675c0.001,0.256-0.099,0.498-0.279,0.679L16.55,30.445C16.369,30.626,16.128,30.726,15.873,30.726z
M15.873,1.513c-0.23,0-0.447,0.089-0.61,0.252L1.566,15.462c-0.163,0.163-0.252,0.377-0.252,0.608c0,0.231,0.089,0.448,0.252,0.611
l13.697,13.696c0.163,0.163,0.379,0.253,0.61,0.253s0.447-0.09,0.61-0.253L30.18,16.682c0.162-0.163,0.251-0.38,0.251-0.611
c0-0.23-0.09-0.445-0.251-0.608L16.482,1.765C16.319,1.603,16.103,1.513,15.873,1.513z"/>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9BCB3C" d="M15.894,28.65c-0.185,0-0.359-0.072-0.489-0.203L3.476,16.518
c-0.131-0.13-0.203-0.304-0.203-0.489c0-0.186,0.072-0.359,0.203-0.489l0.987-0.987l3.196,0.027l-1.38,1.38
c-0.039,0.039-0.039,0.103,0,0.142l9.526,9.525c0.02,0.02,0.045,0.029,0.071,0.029s0.051-0.01,0.071-0.029l9.525-9.525
c0.039-0.039,0.039-0.103,0-0.142l-1.377-1.378h3.304l0.913,0.958c0.132,0.13,0.203,0.304,0.203,0.489
c0,0.185-0.071,0.358-0.202,0.489L16.383,28.447C16.253,28.578,16.079,28.65,15.894,28.65z M9.268,9.747l6.137-6.137
c0.13-0.13,0.304-0.202,0.489-0.202s0.359,0.072,0.489,0.202l6.136,6.135h-3.304l-3.27-3.31c-0.02-0.02-0.045-0.029-0.071-0.029
s-0.051,0.01-0.071,0.029l-3.34,3.339L9.268,9.747z"/>
<path fill="#D4E6AA" d="M15.894,3.508c0.158,0,0.307,0.061,0.418,0.173l5.965,5.964h-2.979l-3.282-3.281
c-0.039-0.039-0.09-0.059-0.142-0.059s-0.103,0.02-0.142,0.059l-3.282,3.281h-2.94l5.963-5.964
C15.587,3.569,15.736,3.508,15.894,3.508 M27.314,14.682l0.927,0.929c0.111,0.111,0.173,0.26,0.173,0.418
c0,0.158-0.062,0.307-0.174,0.418L16.313,28.376c-0.112,0.112-0.26,0.173-0.418,0.173s-0.307-0.062-0.418-0.174L3.546,16.447
c-0.112-0.111-0.173-0.26-0.173-0.418c0-0.159,0.062-0.307,0.174-0.419l0.928-0.928h2.94l-1.207,1.207
c-0.078,0.078-0.078,0.205,0,0.283l9.526,9.525c0.039,0.039,0.09,0.059,0.142,0.059s0.103-0.02,0.142-0.059l9.525-9.525
c0.078-0.078,0.078-0.205,0-0.283l-1.207-1.207H27.314 M15.894,3.308c-0.203,0-0.406,0.077-0.56,0.231L9.029,9.845h3.506
l3.34-3.339l3.341,3.339h3.545L16.454,3.54C16.3,3.385,16.097,3.308,15.894,3.308L15.894,3.308z M27.397,14.482h-3.545l1.548,1.549
l-9.525,9.525l-9.526-9.525l1.548-1.549H4.392l-0.986,0.987c-0.31,0.308-0.31,0.812,0,1.12l11.929,11.929
c0.154,0.155,0.357,0.232,0.56,0.232s0.406-0.078,0.56-0.232l11.928-11.929c0.31-0.308,0.31-0.812,0-1.12L27.397,14.482
L27.397,14.482z"/>
</g>
<g>
<polygon fill="#1D1D22" points="14.863,24.168 15.283,24.587 15.283,17.732 14.863,17.732 "/>
<polygon fill="#1D1D22" points="17.729,23.339 17.881,23.19 17.881,17.714 17.729,17.714 "/>
<polygon fill="#1D1D22" points="18.046,23.024 18.467,22.604 18.467,17.732 18.046,17.732 "/>
<polygon fill="#1D1D22" points="12.166,21.471 12.315,21.621 12.315,17.714 12.166,17.714 "/>
<polygon fill="#1D1D22" points="10.399,19.704 10.819,20.125 10.819,17.714 10.399,17.714 "/>
<polygon fill="#1D1D22" points="11.089,20.394 11.51,20.815 11.51,17.714 11.089,17.714 "/>
<polygon fill="#1D1D22" points="11.745,21.05 11.895,21.2 11.895,17.714 11.745,17.714 "/>
<polygon fill="#1D1D22" points="8.717,18.022 9.138,18.443 9.138,17.714 8.717,17.714 "/>
<polygon fill="#1D1D22" points="12.526,21.832 12.676,21.981 12.676,17.714 12.526,17.714 "/>
<polygon fill="#1D1D22" points="13.642,22.947 14.062,23.367 14.062,17.714 13.642,17.714 "/>
<polygon fill="#1D1D22" points="14.263,23.567 14.682,23.987 14.682,17.714 14.263,17.714 "/>
<polygon fill="#1D1D22" points="9.463,18.769 9.613,18.918 9.613,17.714 9.463,17.714 "/>
<polygon fill="#1D1D22" points="20.092,20.978 20.243,20.827 20.243,17.714 20.092,17.714 "/>
<polygon fill="#1D1D22" points="22.739,18.331 23.16,17.91 23.16,17.732 22.739,17.732 "/>
<polygon fill="#1D1D22" points="20.412,20.657 20.562,20.507 20.562,17.714 20.412,17.714 "/>
<polygon fill="#1D1D22" points="20.728,20.341 21.147,19.922 21.147,17.732 20.728,17.732 "/>
<polygon fill="#1D1D22" points="22.344,18.726 22.494,18.576 22.494,17.714 22.344,17.714 "/>
<polygon fill="#1D1D22" points="18.686,22.385 19.106,21.964 19.106,17.732 18.686,17.732 "/>
<polygon fill="#1D1D22" points="21.628,19.442 22.048,19.021 22.048,17.732 21.628,17.732 "/>
<path fill="#1D1D22" d="M9.045,13.056c0.117-0.112,0.174-0.243,0.174-0.397c0-0.113-0.036-0.216-0.106-0.311
c-0.071-0.095-0.178-0.159-0.32-0.192c0.246-0.076,0.37-0.227,0.37-0.454c0-0.112-0.029-0.208-0.084-0.285
c-0.056-0.079-0.126-0.138-0.213-0.18c-0.086-0.042-0.215-0.064-0.386-0.064H7.524v2.049h0.955
C8.74,13.223,8.929,13.167,9.045,13.056z M8.003,11.536h0.329c0.1,0,0.167,0.005,0.201,0.013c0.034,0.01,0.065,0.034,0.094,0.071
s0.042,0.083,0.042,0.134c0,0.048-0.016,0.098-0.051,0.15c-0.035,0.053-0.119,0.08-0.252,0.08H8.003V11.536z M8.003,12.843V12.35
h0.389c0.116,0,0.199,0.024,0.25,0.072c0.05,0.048,0.074,0.105,0.074,0.171c0,0.08-0.026,0.141-0.078,0.186
c-0.052,0.043-0.141,0.065-0.267,0.065H8.003z"/>
<path fill="#1D1D22" d="M10.424,12.801h0.663l0.126,0.422h0.516l-0.641-2.049h-0.556l-0.657,2.049h0.421L10.424,12.801z
M10.759,11.704l0.214,0.718h-0.434L10.759,11.704z"/>
<path fill="#1D1D22" d="M13.811,12.988c0.03,0.079,0.053,0.157,0.069,0.234h0.219v-1.096h-0.842v0.383h0.386
c0,0.123-0.034,0.212-0.101,0.269c-0.068,0.055-0.145,0.083-0.231,0.083c-0.133,0-0.236-0.055-0.308-0.167
c-0.072-0.111-0.108-0.271-0.108-0.482c0-0.218,0.034-0.386,0.1-0.503c0.067-0.117,0.165-0.177,0.295-0.177
c0.198,0,0.316,0.124,0.353,0.373l0.456-0.061c-0.031-0.212-0.116-0.383-0.256-0.511c-0.14-0.129-0.324-0.193-0.553-0.193
c-0.272,0-0.487,0.1-0.646,0.298c-0.158,0.198-0.237,0.459-0.237,0.786c0,0.303,0.074,0.549,0.223,0.741
c0.148,0.192,0.356,0.287,0.624,0.287C13.479,13.254,13.665,13.166,13.811,12.988z"/>
<path fill="#1D1D22" d="M15.817,11.534c0.199,0,0.316,0.124,0.354,0.373l0.456-0.061c-0.03-0.212-0.116-0.383-0.256-0.511
c-0.141-0.129-0.325-0.193-0.553-0.193c-0.271,0-0.487,0.1-0.646,0.298c-0.158,0.198-0.238,0.459-0.238,0.786
c0,0.303,0.074,0.549,0.224,0.741c0.148,0.192,0.356,0.287,0.623,0.287c0.227,0,0.413-0.088,0.559-0.266
c0.03,0.079,0.053,0.157,0.068,0.234h0.219v-1.096h-0.842v0.383h0.386c0,0.123-0.034,0.212-0.101,0.269
c-0.068,0.055-0.145,0.083-0.231,0.083c-0.133,0-0.235-0.055-0.308-0.167c-0.072-0.111-0.108-0.271-0.108-0.482
c0-0.218,0.033-0.386,0.099-0.503C15.589,11.594,15.688,11.534,15.817,11.534z"/>
<path fill="#1D1D22" d="M17.902,12.801h0.663l0.125,0.422h0.516l-0.64-2.049H18.01l-0.656,2.049h0.421L17.902,12.801z
M18.236,11.704l0.215,0.718h-0.434L18.236,11.704z"/>
<path fill="#1D1D22" d="M20.768,11.534c0.198,0,0.315,0.124,0.353,0.373l0.456-0.061c-0.03-0.212-0.116-0.383-0.257-0.511
c-0.14-0.129-0.323-0.193-0.552-0.193c-0.273,0-0.487,0.1-0.647,0.298c-0.157,0.198-0.237,0.459-0.237,0.786
c0,0.303,0.074,0.549,0.224,0.741c0.147,0.192,0.355,0.287,0.624,0.287c0.227,0,0.412-0.088,0.559-0.266
c0.029,0.079,0.053,0.157,0.067,0.234h0.22v-1.096h-0.843v0.383h0.387c0,0.123-0.034,0.212-0.102,0.269
c-0.067,0.055-0.145,0.083-0.229,0.083c-0.134,0-0.236-0.055-0.309-0.167c-0.072-0.111-0.107-0.271-0.107-0.482
c0-0.218,0.033-0.386,0.099-0.503C20.539,11.594,20.637,11.534,20.768,11.534z"/>
<polygon fill="#1D1D22" points="23.971,11.564 23.971,11.173 22.509,11.173 22.509,13.223 23.971,13.223 23.971,12.818
22.997,12.818 22.997,12.37 23.763,12.37 23.763,11.985 22.997,11.985 22.997,11.564 "/>
<polygon fill="#1D1D22" points="8.356,15.184 8.467,14.984 8.578,15.184 8.728,15.184 8.557,14.889 8.707,14.633 8.587,14.633
8.493,14.8 8.404,14.633 8.253,14.633 8.405,14.891 8.234,15.184 "/>
<polygon fill="#1D1D22" points="9.353,14.633 9.232,14.633 9.138,14.8 9.048,14.633 8.898,14.633 9.049,14.891 8.879,15.184
9.001,15.184 9.112,14.984 9.223,15.184 9.372,15.184 9.202,14.889 "/>
<polygon fill="#1D1D22" points="9.998,14.633 9.877,14.633 9.783,14.8 9.694,14.633 9.543,14.633 9.694,14.891 9.523,15.184
9.646,15.184 9.757,14.984 9.868,15.184 10.018,15.184 9.847,14.889 "/>
<polygon fill="#1D1D22" points="10.292,15.184 10.402,14.984 10.512,15.184 10.663,15.184 10.492,14.889 10.642,14.633
10.522,14.633 10.428,14.8 10.339,14.633 10.188,14.633 10.34,14.891 10.169,15.184 "/>
<polygon fill="#1D1D22" points="10.936,15.184 11.047,14.984 11.157,15.184 11.308,15.184 11.137,14.889 11.288,14.633
11.167,14.633 11.073,14.8 10.983,14.633 10.833,14.633 10.984,14.891 10.814,15.184 "/>
<polygon fill="#1D1D22" points="11.933,14.633 11.812,14.633 11.718,14.8 11.629,14.633 11.479,14.633 11.63,14.891 11.459,15.184
11.581,15.184 11.692,14.984 11.803,15.184 11.952,15.184 11.781,14.889 "/>
<polygon fill="#1D1D22" points="12.226,15.184 12.337,14.984 12.447,15.184 12.598,15.184 12.427,14.889 12.578,14.633
12.457,14.633 12.363,14.8 12.274,14.633 12.123,14.633 12.274,14.891 12.104,15.184 "/>
<polygon fill="#1D1D22" points="13.223,14.633 13.102,14.633 13.008,14.8 12.918,14.633 12.769,14.633 12.92,14.891 12.749,15.184
12.872,15.184 12.981,14.984 13.093,15.184 13.242,15.184 13.072,14.889 "/>
<polygon fill="#1D1D22" points="13.516,15.184 13.627,14.984 13.738,15.184 13.887,15.184 13.717,14.889 13.868,14.633
13.747,14.633 13.653,14.8 13.563,14.633 13.413,14.633 13.565,14.891 13.394,15.184 "/>
<polygon fill="#1D1D22" points="14.21,14.891 14.039,15.184 14.161,15.184 14.272,14.984 14.383,15.184 14.532,15.184
14.362,14.889 14.512,14.633 14.392,14.633 14.298,14.8 14.209,14.633 14.059,14.633 "/>
<polygon fill="#1D1D22" points="14.807,15.184 14.917,14.984 15.028,15.184 15.177,15.184 15.007,14.889 15.158,14.633
15.037,14.633 14.943,14.8 14.854,14.633 14.704,14.633 14.855,14.891 14.684,15.184 "/>
<polygon fill="#1D1D22" points="8.557,15.683 8.707,15.426 8.587,15.426 8.493,15.593 8.404,15.426 8.253,15.426 8.405,15.684
8.234,15.978 8.356,15.978 8.467,15.777 8.578,15.978 8.728,15.978 "/>
<polygon fill="#1D1D22" points="9.353,15.426 9.232,15.426 9.138,15.593 9.048,15.426 8.898,15.426 9.049,15.684 8.879,15.978
9.001,15.978 9.112,15.777 9.223,15.978 9.372,15.978 9.202,15.683 "/>
<polygon fill="#1D1D22" points="9.998,15.426 9.877,15.426 9.783,15.593 9.694,15.426 9.543,15.426 9.694,15.684 9.523,15.978
9.646,15.978 9.757,15.777 9.868,15.978 10.018,15.978 9.847,15.683 "/>
<polygon fill="#1D1D22" points="10.512,15.978 10.663,15.978 10.492,15.683 10.642,15.426 10.522,15.426 10.428,15.593
10.339,15.426 10.188,15.426 10.34,15.684 10.169,15.978 10.292,15.978 10.402,15.777 "/>
<polygon fill="#1D1D22" points="11.308,15.978 11.137,15.683 11.288,15.426 11.167,15.426 11.073,15.593 10.983,15.426
10.833,15.426 10.984,15.684 10.814,15.978 10.936,15.978 11.047,15.777 11.157,15.978 "/>
<polygon fill="#1D1D22" points="11.933,15.426 11.812,15.426 11.718,15.593 11.629,15.426 11.479,15.426 11.63,15.684
11.459,15.978 11.581,15.978 11.692,15.777 11.803,15.978 11.952,15.978 11.781,15.683 "/>
<polygon fill="#1D1D22" points="12.427,15.683 12.578,15.426 12.457,15.426 12.363,15.593 12.274,15.426 12.123,15.426
12.274,15.684 12.104,15.978 12.226,15.978 12.337,15.777 12.447,15.978 12.598,15.978 "/>
<polygon fill="#1D1D22" points="13.223,15.426 13.102,15.426 13.008,15.593 12.918,15.426 12.769,15.426 12.92,15.684
12.749,15.978 12.872,15.978 12.981,15.777 13.093,15.978 13.242,15.978 13.072,15.683 "/>
<polygon fill="#1D1D22" points="13.887,15.978 13.717,15.683 13.868,15.426 13.747,15.426 13.653,15.593 13.563,15.426
13.413,15.426 13.565,15.684 13.394,15.978 13.516,15.978 13.627,15.777 13.738,15.978 "/>
<polygon fill="#1D1D22" points="14.383,15.978 14.532,15.978 14.362,15.683 14.512,15.426 14.392,15.426 14.298,15.593
14.209,15.426 14.059,15.426 14.21,15.684 14.039,15.978 14.161,15.978 14.272,15.777 "/>
<polygon fill="#1D1D22" points="15.028,15.978 15.177,15.978 15.007,15.683 15.158,15.426 15.037,15.426 14.943,15.593
14.854,15.426 14.704,15.426 14.855,15.684 14.684,15.978 14.807,15.978 14.917,15.777 "/>
<path fill="#1D1D22" d="M16.867,14.841h0.292c-0.06,0.076-0.108,0.162-0.144,0.258c-0.037,0.097-0.057,0.191-0.059,0.284h0.124
c0-0.06,0.01-0.127,0.03-0.201c0.018-0.076,0.047-0.148,0.086-0.214c0.036-0.066,0.073-0.117,0.109-0.153v-0.094h-0.439V14.841z"/>
<path fill="#1D1D22" d="M17.873,15.023c0.063-0.036,0.096-0.083,0.096-0.141c0-0.041-0.016-0.079-0.048-0.112
c-0.037-0.041-0.089-0.06-0.15-0.06c-0.038,0-0.07,0.007-0.102,0.02c-0.029,0.015-0.053,0.034-0.068,0.059
c-0.018,0.023-0.029,0.056-0.038,0.097l0.118,0.02c0.004-0.029,0.014-0.052,0.029-0.065c0.015-0.016,0.034-0.024,0.057-0.024
c0.021,0,0.039,0.007,0.052,0.02c0.014,0.013,0.021,0.031,0.021,0.056s-0.01,0.046-0.028,0.063
c-0.017,0.016-0.044,0.024-0.079,0.023l-0.014,0.105c0.023-0.007,0.042-0.01,0.06-0.01c0.024,0,0.045,0.01,0.063,0.028
c0.017,0.019,0.026,0.045,0.026,0.078c0,0.035-0.01,0.061-0.028,0.082c-0.019,0.02-0.04,0.03-0.066,0.03s-0.047-0.009-0.063-0.024
c-0.018-0.017-0.028-0.042-0.032-0.074l-0.125,0.016c0.007,0.057,0.029,0.102,0.069,0.137c0.041,0.035,0.091,0.052,0.152,0.052
c0.063,0,0.116-0.021,0.16-0.062c0.043-0.042,0.063-0.091,0.063-0.15c0-0.041-0.012-0.076-0.033-0.104
C17.942,15.05,17.91,15.031,17.873,15.023z"/>
<path fill="#1D1D22" d="M18.708,15.135h-0.082V14.71h-0.109l-0.291,0.426v0.113h0.273v0.134h0.127V15.25h0.082V15.135z
M18.499,15.135h-0.153l0.153-0.229V15.135z"/>
<path fill="#1D1D22" d="M18.938,14.841h0.293c-0.06,0.076-0.109,0.162-0.146,0.258c-0.036,0.097-0.055,0.191-0.057,0.284h0.125
c-0.002-0.06,0.009-0.127,0.028-0.201c0.02-0.076,0.048-0.148,0.085-0.214c0.038-0.066,0.075-0.117,0.111-0.153v-0.094h-0.44
V14.841z"/>
<path fill="#1D1D22" d="M19.955,15.022c0.028-0.013,0.053-0.031,0.068-0.056c0.017-0.025,0.024-0.053,0.024-0.083
c0-0.05-0.017-0.091-0.053-0.124c-0.036-0.034-0.085-0.049-0.148-0.049c-0.065,0-0.114,0.015-0.15,0.049
c-0.033,0.033-0.052,0.074-0.052,0.124c0,0.029,0.007,0.056,0.023,0.081c0.015,0.024,0.038,0.044,0.071,0.059
c-0.038,0.016-0.067,0.04-0.084,0.069c-0.02,0.03-0.028,0.063-0.028,0.101c0,0.066,0.024,0.117,0.073,0.156
c0.04,0.031,0.09,0.048,0.152,0.048c0.065,0,0.118-0.019,0.158-0.058c0.038-0.04,0.059-0.089,0.059-0.151
c0-0.038-0.011-0.071-0.029-0.1C20.021,15.058,19.992,15.037,19.955,15.022z M19.788,14.834c0.016-0.015,0.034-0.023,0.059-0.023
s0.043,0.008,0.059,0.023c0.015,0.013,0.021,0.034,0.021,0.058c0,0.025-0.007,0.045-0.021,0.06
c-0.016,0.015-0.034,0.023-0.059,0.023s-0.044-0.008-0.059-0.023c-0.015-0.014-0.021-0.034-0.021-0.059
C19.768,14.868,19.773,14.849,19.788,14.834z M19.916,15.265c-0.018,0.019-0.04,0.027-0.066,0.027c-0.027,0-0.05-0.008-0.068-0.029
c-0.017-0.02-0.026-0.047-0.026-0.083c0-0.026,0.008-0.049,0.022-0.071c0.016-0.022,0.039-0.033,0.07-0.033
c0.026,0,0.05,0.009,0.068,0.028c0.018,0.02,0.026,0.045,0.026,0.076C19.942,15.217,19.934,15.245,19.916,15.265z"/>
<path fill="#1D1D22" d="M20.492,15.096c-0.071,0.065-0.119,0.119-0.144,0.16c-0.026,0.041-0.04,0.083-0.046,0.128h0.452v-0.119
h-0.256c0.007-0.011,0.017-0.025,0.027-0.035c0.01-0.013,0.035-0.038,0.076-0.076c0.04-0.037,0.068-0.066,0.085-0.085
c0.023-0.03,0.04-0.059,0.051-0.086c0.011-0.027,0.017-0.055,0.017-0.085c0-0.054-0.02-0.097-0.057-0.133
c-0.038-0.036-0.091-0.053-0.156-0.053c-0.061,0-0.111,0.015-0.152,0.045c-0.039,0.032-0.064,0.083-0.071,0.154l0.13,0.012
c0.002-0.039,0.011-0.065,0.025-0.081c0.017-0.017,0.038-0.025,0.064-0.025c0.027,0,0.049,0.008,0.064,0.024
c0.016,0.016,0.024,0.037,0.024,0.065c0,0.026-0.01,0.053-0.028,0.079C20.586,15.004,20.55,15.04,20.492,15.096z"/>
<path fill="#1D1D22" d="M21.011,14.841h0.293c-0.062,0.076-0.108,0.162-0.146,0.258c-0.035,0.097-0.054,0.191-0.056,0.284h0.124
c0-0.06,0.009-0.127,0.027-0.201c0.021-0.076,0.05-0.148,0.087-0.214c0.038-0.066,0.075-0.117,0.111-0.153v-0.094h-0.44V14.841z"/>
<path fill="#1D1D22" d="M22.027,15.022c0.029-0.013,0.052-0.031,0.067-0.056c0.017-0.025,0.024-0.053,0.024-0.083
c0-0.05-0.018-0.091-0.052-0.124c-0.036-0.034-0.085-0.049-0.149-0.049c-0.065,0-0.114,0.015-0.15,0.049
c-0.034,0.033-0.052,0.074-0.052,0.124c0,0.029,0.009,0.056,0.023,0.081s0.039,0.044,0.072,0.059
c-0.039,0.016-0.067,0.04-0.084,0.069c-0.02,0.03-0.028,0.063-0.028,0.101c0,0.066,0.024,0.117,0.072,0.156
c0.04,0.031,0.092,0.048,0.152,0.048c0.066,0,0.118-0.019,0.158-0.058c0.039-0.04,0.06-0.089,0.06-0.151
c0-0.038-0.01-0.071-0.03-0.1C22.093,15.058,22.065,15.037,22.027,15.022z M21.86,14.834c0.015-0.015,0.034-0.023,0.059-0.023
c0.023,0,0.044,0.008,0.058,0.023C21.991,14.848,22,14.868,22,14.892c0,0.025-0.009,0.045-0.023,0.06
c-0.015,0.015-0.034,0.023-0.059,0.023c-0.023,0-0.043-0.008-0.058-0.023c-0.016-0.014-0.023-0.034-0.023-0.059
C21.837,14.868,21.845,14.849,21.86,14.834z M21.988,15.265c-0.019,0.019-0.04,0.027-0.066,0.027c-0.027,0-0.051-0.008-0.068-0.029
c-0.019-0.02-0.026-0.047-0.026-0.083c0-0.026,0.007-0.049,0.021-0.071c0.017-0.022,0.04-0.033,0.071-0.033
c0.026,0,0.05,0.009,0.067,0.028c0.017,0.02,0.026,0.045,0.026,0.076C22.014,15.217,22.004,15.245,21.988,15.265z"/>
<path fill="#1D1D22" d="M22.831,15.05c0-0.122-0.022-0.208-0.066-0.261c-0.043-0.053-0.1-0.078-0.168-0.078
c-0.063,0-0.113,0.02-0.154,0.062c-0.04,0.041-0.061,0.097-0.061,0.165c0,0.065,0.02,0.119,0.057,0.159
c0.04,0.04,0.084,0.061,0.138,0.061c0.048,0,0.089-0.019,0.12-0.056c-0.005,0.077-0.015,0.129-0.034,0.152
c-0.019,0.024-0.041,0.037-0.068,0.037c-0.021,0-0.039-0.007-0.05-0.018c-0.014-0.012-0.022-0.032-0.024-0.057l-0.125,0.015
c0.01,0.054,0.03,0.095,0.063,0.125c0.032,0.027,0.074,0.041,0.128,0.041c0.072,0,0.132-0.026,0.177-0.082
C22.807,15.26,22.831,15.171,22.831,15.05z M22.66,15.033c-0.017,0.02-0.038,0.03-0.062,0.03c-0.026,0-0.047-0.011-0.065-0.031
c-0.018-0.02-0.024-0.051-0.024-0.095c0-0.043,0.007-0.074,0.022-0.093c0.017-0.018,0.036-0.028,0.06-0.028
c0.024,0,0.047,0.011,0.066,0.035c0.02,0.022,0.028,0.054,0.028,0.095C22.686,14.985,22.678,15.015,22.66,15.033z"/>
<path fill="#1D1D22" d="M23.459,14.71h-0.107l-0.292,0.426v0.113h0.275v0.134h0.124V15.25h0.084v-0.115h-0.084V14.71z
M23.335,15.135h-0.154l0.154-0.229V15.135z"/>
</g>
<g>
<path fill="#1D1D22" d="M22.194,16.201v0.753c0,0.176,0.145,0.321,0.321,0.321h0.87c0.178,0,0.322-0.145,0.322-0.321v-0.753
c0-0.176-0.145-0.32-0.322-0.32h-0.87C22.339,15.88,22.194,16.024,22.194,16.201z M23.408,16.141v0.876h-0.913v-0.876H23.408z"/>
<rect x="19.897" y="16.697" fill="#1D1D22" width="0.232" height="0.234"/>
<path fill="#1D1D22" d="M17.838,16.188v-0.017c-0.021-0.165-0.161-0.294-0.333-0.294h-0.848c-0.185,0-0.334,0.149-0.334,0.335
v0.725c0,0.185,0.149,0.334,0.334,0.334h0.848c0.175,0,0.317-0.13,0.334-0.299v-0.018h-1.145v-0.767H17.838z"/>
<path fill="#1D1D22" d="M21.92,16.15c-0.023-0.154-0.157-0.27-0.316-0.27h-0.931c-0.179,0-0.32,0.144-0.32,0.32v0.753
c0,0.176,0.142,0.321,0.32,0.321h0.931c0.166,0,0.304-0.123,0.318-0.285v-0.529h-1.031c0.003,0.027,0.017,0.077,0.068,0.142
c0.067,0.084,0.171,0.092,0.2,0.092h0.466V17h-0.977v-0.85H21.92z"/>
<path fill="#1D1D22" d="M18.102,16.971c0.018,0.17,0.159,0.301,0.333,0.301h0.89c0.187,0,0.337-0.149,0.337-0.334v-0.217
c-0.017-0.169-0.159-0.301-0.333-0.301h-0.889v-0.241h1.193c-0.018-0.169-0.16-0.301-0.333-0.301h-0.865
c-0.185,0-0.335,0.149-0.335,0.334v0.208c0.018,0.171,0.16,0.302,0.333,0.302l0.889-0.001v0.25H18.102z"/>
<rect x="19.897" y="16.219" fill="#1D1D22" width="0.232" height="0.233"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g>
<path fill="#B6BAAE" d="M31.237,15.23L16.748,0.737c-0.224-0.224-0.521-0.347-0.836-0.347S15.3,0.514,15.076,0.737L0.587,15.23
c-0.223,0.224-0.346,0.52-0.346,0.836c0,0.317,0.123,0.613,0.346,0.837l14.489,14.493c0.224,0.224,0.521,0.347,0.836,0.347
s0.612-0.123,0.836-0.347l14.489-14.493C31.698,16.441,31.698,15.692,31.237,15.23z M30.701,16.591L16.43,30.861
c-0.138,0.138-0.322,0.215-0.518,0.215c-0.196,0-0.379-0.077-0.518-0.215L1.123,16.591c-0.138-0.139-0.214-0.322-0.214-0.519
s0.076-0.38,0.214-0.518L15.395,1.283c0.138-0.139,0.322-0.214,0.518-0.214c0.195,0,0.379,0.075,0.518,0.214l14.271,14.271
C30.986,15.84,30.986,16.305,30.701,16.591z"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E8E8E8" d="M30.214,16.715L16.516,30.411c-0.355,0.356-0.932,0.356-1.287,0
L1.532,16.715c-0.356-0.356-0.356-0.932,0-1.287L15.229,1.731c0.355-0.355,0.932-0.355,1.287,0l13.698,13.697
C30.568,15.783,30.568,16.359,30.214,16.715z"/>
<path fill="#F2F2F2" d="M15.873,30.726c-0.256,0-0.497-0.1-0.678-0.281L1.498,16.75c-0.182-0.182-0.281-0.423-0.281-0.679
c0-0.255,0.1-0.496,0.281-0.675L15.195,1.697c0.181-0.181,0.421-0.281,0.677-0.281s0.497,0.1,0.677,0.281l13.697,13.698
c0.18,0.18,0.279,0.42,0.279,0.675c0.001,0.256-0.099,0.498-0.279,0.679L16.55,30.445C16.369,30.626,16.128,30.726,15.873,30.726z
M15.873,1.513c-0.23,0-0.447,0.089-0.61,0.252L1.566,15.462c-0.163,0.163-0.252,0.377-0.252,0.608c0,0.231,0.089,0.448,0.252,0.611
l13.697,13.696c0.163,0.163,0.379,0.253,0.61,0.253s0.447-0.09,0.61-0.253L30.18,16.682c0.162-0.163,0.251-0.38,0.251-0.611
c0-0.23-0.09-0.445-0.251-0.608L16.482,1.765C16.319,1.603,16.103,1.513,15.873,1.513z"/>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9BCB3C" d="M15.894,28.65c-0.185,0-0.359-0.072-0.489-0.203L3.476,16.518
c-0.131-0.13-0.203-0.304-0.203-0.489c0-0.186,0.072-0.359,0.203-0.489l0.987-0.987l3.196,0.027l-1.38,1.38
c-0.039,0.039-0.039,0.103,0,0.142l9.526,9.525c0.02,0.02,0.045,0.029,0.071,0.029s0.051-0.01,0.071-0.029l9.525-9.525
c0.039-0.039,0.039-0.103,0-0.142l-1.377-1.378h3.304l0.913,0.958c0.132,0.13,0.203,0.304,0.203,0.489
c0,0.185-0.071,0.358-0.202,0.489L16.383,28.447C16.253,28.578,16.079,28.65,15.894,28.65z M9.268,9.747l6.137-6.137
c0.13-0.13,0.304-0.202,0.489-0.202s0.359,0.072,0.489,0.202l6.136,6.135h-3.304l-3.27-3.31c-0.02-0.02-0.045-0.029-0.071-0.029
s-0.051,0.01-0.071,0.029l-3.34,3.339L9.268,9.747z"/>
<path fill="#D4E6AA" d="M15.894,3.508c0.158,0,0.307,0.061,0.418,0.173l5.965,5.964h-2.979l-3.282-3.281
c-0.039-0.039-0.09-0.059-0.142-0.059s-0.103,0.02-0.142,0.059l-3.282,3.281h-2.94l5.963-5.964
C15.587,3.569,15.736,3.508,15.894,3.508 M27.314,14.682l0.927,0.929c0.111,0.111,0.173,0.26,0.173,0.418
c0,0.158-0.062,0.307-0.174,0.418L16.313,28.376c-0.112,0.112-0.26,0.173-0.418,0.173s-0.307-0.062-0.418-0.174L3.546,16.447
c-0.112-0.111-0.173-0.26-0.173-0.418c0-0.159,0.062-0.307,0.174-0.419l0.928-0.928h2.94l-1.207,1.207
c-0.078,0.078-0.078,0.205,0,0.283l9.526,9.525c0.039,0.039,0.09,0.059,0.142,0.059s0.103-0.02,0.142-0.059l9.525-9.525
c0.078-0.078,0.078-0.205,0-0.283l-1.207-1.207H27.314 M15.894,3.308c-0.203,0-0.406,0.077-0.56,0.231L9.029,9.845h3.506
l3.34-3.339l3.341,3.339h3.545L16.454,3.54C16.3,3.385,16.097,3.308,15.894,3.308L15.894,3.308z M27.397,14.482h-3.545l1.548,1.549
l-9.525,9.525l-9.526-9.525l1.548-1.549H4.392l-0.986,0.987c-0.31,0.308-0.31,0.812,0,1.12l11.929,11.929
c0.154,0.155,0.357,0.232,0.56,0.232s0.406-0.078,0.56-0.232l11.928-11.929c0.31-0.308,0.31-0.812,0-1.12L27.397,14.482
L27.397,14.482z"/>
</g>
<g>
<polygon fill="#1D1D22" points="14.863,24.168 15.283,24.587 15.283,17.732 14.863,17.732 "/>
<polygon fill="#1D1D22" points="17.729,23.339 17.881,23.19 17.881,17.714 17.729,17.714 "/>
<polygon fill="#1D1D22" points="18.046,23.024 18.467,22.604 18.467,17.732 18.046,17.732 "/>
<polygon fill="#1D1D22" points="12.166,21.471 12.315,21.621 12.315,17.714 12.166,17.714 "/>
<polygon fill="#1D1D22" points="10.399,19.704 10.819,20.125 10.819,17.714 10.399,17.714 "/>
<polygon fill="#1D1D22" points="11.089,20.394 11.51,20.815 11.51,17.714 11.089,17.714 "/>
<polygon fill="#1D1D22" points="11.745,21.05 11.895,21.2 11.895,17.714 11.745,17.714 "/>
<polygon fill="#1D1D22" points="8.717,18.022 9.138,18.443 9.138,17.714 8.717,17.714 "/>
<polygon fill="#1D1D22" points="12.526,21.832 12.676,21.981 12.676,17.714 12.526,17.714 "/>
<polygon fill="#1D1D22" points="13.642,22.947 14.062,23.367 14.062,17.714 13.642,17.714 "/>
<polygon fill="#1D1D22" points="14.263,23.567 14.682,23.987 14.682,17.714 14.263,17.714 "/>
<polygon fill="#1D1D22" points="9.463,18.769 9.613,18.918 9.613,17.714 9.463,17.714 "/>
<polygon fill="#1D1D22" points="20.092,20.978 20.243,20.827 20.243,17.714 20.092,17.714 "/>
<polygon fill="#1D1D22" points="22.739,18.331 23.16,17.91 23.16,17.732 22.739,17.732 "/>
<polygon fill="#1D1D22" points="20.412,20.657 20.562,20.507 20.562,17.714 20.412,17.714 "/>
<polygon fill="#1D1D22" points="20.728,20.341 21.147,19.922 21.147,17.732 20.728,17.732 "/>
<polygon fill="#1D1D22" points="22.344,18.726 22.494,18.576 22.494,17.714 22.344,17.714 "/>
<polygon fill="#1D1D22" points="18.686,22.385 19.106,21.964 19.106,17.732 18.686,17.732 "/>
<polygon fill="#1D1D22" points="21.628,19.442 22.048,19.021 22.048,17.732 21.628,17.732 "/>
<path fill="#1D1D22" d="M9.045,13.056c0.117-0.112,0.174-0.243,0.174-0.397c0-0.113-0.036-0.216-0.106-0.311
c-0.071-0.095-0.178-0.159-0.32-0.192c0.246-0.076,0.37-0.227,0.37-0.454c0-0.112-0.029-0.208-0.084-0.285
c-0.056-0.079-0.126-0.138-0.213-0.18c-0.086-0.042-0.215-0.064-0.386-0.064H7.524v2.049h0.955
C8.74,13.223,8.929,13.167,9.045,13.056z M8.003,11.536h0.329c0.1,0,0.167,0.005,0.201,0.013c0.034,0.01,0.065,0.034,0.094,0.071
s0.042,0.083,0.042,0.134c0,0.048-0.016,0.098-0.051,0.15c-0.035,0.053-0.119,0.08-0.252,0.08H8.003V11.536z M8.003,12.843V12.35
h0.389c0.116,0,0.199,0.024,0.25,0.072c0.05,0.048,0.074,0.105,0.074,0.171c0,0.08-0.026,0.141-0.078,0.186
c-0.052,0.043-0.141,0.065-0.267,0.065H8.003z"/>
<path fill="#1D1D22" d="M10.424,12.801h0.663l0.126,0.422h0.516l-0.641-2.049h-0.556l-0.657,2.049h0.421L10.424,12.801z
M10.759,11.704l0.214,0.718h-0.434L10.759,11.704z"/>
<path fill="#1D1D22" d="M13.811,12.988c0.03,0.079,0.053,0.157,0.069,0.234h0.219v-1.096h-0.842v0.383h0.386
c0,0.123-0.034,0.212-0.101,0.269c-0.068,0.055-0.145,0.083-0.231,0.083c-0.133,0-0.236-0.055-0.308-0.167
c-0.072-0.111-0.108-0.271-0.108-0.482c0-0.218,0.034-0.386,0.1-0.503c0.067-0.117,0.165-0.177,0.295-0.177
c0.198,0,0.316,0.124,0.353,0.373l0.456-0.061c-0.031-0.212-0.116-0.383-0.256-0.511c-0.14-0.129-0.324-0.193-0.553-0.193
c-0.272,0-0.487,0.1-0.646,0.298c-0.158,0.198-0.237,0.459-0.237,0.786c0,0.303,0.074,0.549,0.223,0.741
c0.148,0.192,0.356,0.287,0.624,0.287C13.479,13.254,13.665,13.166,13.811,12.988z"/>
<path fill="#1D1D22" d="M15.817,11.534c0.199,0,0.316,0.124,0.354,0.373l0.456-0.061c-0.03-0.212-0.116-0.383-0.256-0.511
c-0.141-0.129-0.325-0.193-0.553-0.193c-0.271,0-0.487,0.1-0.646,0.298c-0.158,0.198-0.238,0.459-0.238,0.786
c0,0.303,0.074,0.549,0.224,0.741c0.148,0.192,0.356,0.287,0.623,0.287c0.227,0,0.413-0.088,0.559-0.266
c0.03,0.079,0.053,0.157,0.068,0.234h0.219v-1.096h-0.842v0.383h0.386c0,0.123-0.034,0.212-0.101,0.269
c-0.068,0.055-0.145,0.083-0.231,0.083c-0.133,0-0.235-0.055-0.308-0.167c-0.072-0.111-0.108-0.271-0.108-0.482
c0-0.218,0.033-0.386,0.099-0.503C15.589,11.594,15.688,11.534,15.817,11.534z"/>
<path fill="#1D1D22" d="M17.902,12.801h0.663l0.125,0.422h0.516l-0.64-2.049H18.01l-0.656,2.049h0.421L17.902,12.801z
M18.236,11.704l0.215,0.718h-0.434L18.236,11.704z"/>
<path fill="#1D1D22" d="M20.768,11.534c0.198,0,0.315,0.124,0.353,0.373l0.456-0.061c-0.03-0.212-0.116-0.383-0.257-0.511
c-0.14-0.129-0.323-0.193-0.552-0.193c-0.273,0-0.487,0.1-0.647,0.298c-0.157,0.198-0.237,0.459-0.237,0.786
c0,0.303,0.074,0.549,0.224,0.741c0.147,0.192,0.355,0.287,0.624,0.287c0.227,0,0.412-0.088,0.559-0.266
c0.029,0.079,0.053,0.157,0.067,0.234h0.22v-1.096h-0.843v0.383h0.387c0,0.123-0.034,0.212-0.102,0.269
c-0.067,0.055-0.145,0.083-0.229,0.083c-0.134,0-0.236-0.055-0.309-0.167c-0.072-0.111-0.107-0.271-0.107-0.482
c0-0.218,0.033-0.386,0.099-0.503C20.539,11.594,20.637,11.534,20.768,11.534z"/>
<polygon fill="#1D1D22" points="23.971,11.564 23.971,11.173 22.509,11.173 22.509,13.223 23.971,13.223 23.971,12.818
22.997,12.818 22.997,12.37 23.763,12.37 23.763,11.985 22.997,11.985 22.997,11.564 "/>
<polygon fill="#1D1D22" points="8.356,15.184 8.467,14.984 8.578,15.184 8.728,15.184 8.557,14.889 8.707,14.633 8.587,14.633
8.493,14.8 8.404,14.633 8.253,14.633 8.405,14.891 8.234,15.184 "/>
<polygon fill="#1D1D22" points="9.353,14.633 9.232,14.633 9.138,14.8 9.048,14.633 8.898,14.633 9.049,14.891 8.879,15.184
9.001,15.184 9.112,14.984 9.223,15.184 9.372,15.184 9.202,14.889 "/>
<polygon fill="#1D1D22" points="9.998,14.633 9.877,14.633 9.783,14.8 9.694,14.633 9.543,14.633 9.694,14.891 9.523,15.184
9.646,15.184 9.757,14.984 9.868,15.184 10.018,15.184 9.847,14.889 "/>
<polygon fill="#1D1D22" points="10.292,15.184 10.402,14.984 10.512,15.184 10.663,15.184 10.492,14.889 10.642,14.633
10.522,14.633 10.428,14.8 10.339,14.633 10.188,14.633 10.34,14.891 10.169,15.184 "/>
<polygon fill="#1D1D22" points="10.936,15.184 11.047,14.984 11.157,15.184 11.308,15.184 11.137,14.889 11.288,14.633
11.167,14.633 11.073,14.8 10.983,14.633 10.833,14.633 10.984,14.891 10.814,15.184 "/>
<polygon fill="#1D1D22" points="11.933,14.633 11.812,14.633 11.718,14.8 11.629,14.633 11.479,14.633 11.63,14.891 11.459,15.184
11.581,15.184 11.692,14.984 11.803,15.184 11.952,15.184 11.781,14.889 "/>
<polygon fill="#1D1D22" points="12.226,15.184 12.337,14.984 12.447,15.184 12.598,15.184 12.427,14.889 12.578,14.633
12.457,14.633 12.363,14.8 12.274,14.633 12.123,14.633 12.274,14.891 12.104,15.184 "/>
<polygon fill="#1D1D22" points="13.223,14.633 13.102,14.633 13.008,14.8 12.918,14.633 12.769,14.633 12.92,14.891 12.749,15.184
12.872,15.184 12.981,14.984 13.093,15.184 13.242,15.184 13.072,14.889 "/>
<polygon fill="#1D1D22" points="13.516,15.184 13.627,14.984 13.738,15.184 13.887,15.184 13.717,14.889 13.868,14.633
13.747,14.633 13.653,14.8 13.563,14.633 13.413,14.633 13.565,14.891 13.394,15.184 "/>
<polygon fill="#1D1D22" points="14.21,14.891 14.039,15.184 14.161,15.184 14.272,14.984 14.383,15.184 14.532,15.184
14.362,14.889 14.512,14.633 14.392,14.633 14.298,14.8 14.209,14.633 14.059,14.633 "/>
<polygon fill="#1D1D22" points="14.807,15.184 14.917,14.984 15.028,15.184 15.177,15.184 15.007,14.889 15.158,14.633
15.037,14.633 14.943,14.8 14.854,14.633 14.704,14.633 14.855,14.891 14.684,15.184 "/>
<polygon fill="#1D1D22" points="8.557,15.683 8.707,15.426 8.587,15.426 8.493,15.593 8.404,15.426 8.253,15.426 8.405,15.684
8.234,15.978 8.356,15.978 8.467,15.777 8.578,15.978 8.728,15.978 "/>
<polygon fill="#1D1D22" points="9.353,15.426 9.232,15.426 9.138,15.593 9.048,15.426 8.898,15.426 9.049,15.684 8.879,15.978
9.001,15.978 9.112,15.777 9.223,15.978 9.372,15.978 9.202,15.683 "/>
<polygon fill="#1D1D22" points="9.998,15.426 9.877,15.426 9.783,15.593 9.694,15.426 9.543,15.426 9.694,15.684 9.523,15.978
9.646,15.978 9.757,15.777 9.868,15.978 10.018,15.978 9.847,15.683 "/>
<polygon fill="#1D1D22" points="10.512,15.978 10.663,15.978 10.492,15.683 10.642,15.426 10.522,15.426 10.428,15.593
10.339,15.426 10.188,15.426 10.34,15.684 10.169,15.978 10.292,15.978 10.402,15.777 "/>
<polygon fill="#1D1D22" points="11.308,15.978 11.137,15.683 11.288,15.426 11.167,15.426 11.073,15.593 10.983,15.426
10.833,15.426 10.984,15.684 10.814,15.978 10.936,15.978 11.047,15.777 11.157,15.978 "/>
<polygon fill="#1D1D22" points="11.933,15.426 11.812,15.426 11.718,15.593 11.629,15.426 11.479,15.426 11.63,15.684
11.459,15.978 11.581,15.978 11.692,15.777 11.803,15.978 11.952,15.978 11.781,15.683 "/>
<polygon fill="#1D1D22" points="12.427,15.683 12.578,15.426 12.457,15.426 12.363,15.593 12.274,15.426 12.123,15.426
12.274,15.684 12.104,15.978 12.226,15.978 12.337,15.777 12.447,15.978 12.598,15.978 "/>
<polygon fill="#1D1D22" points="13.223,15.426 13.102,15.426 13.008,15.593 12.918,15.426 12.769,15.426 12.92,15.684
12.749,15.978 12.872,15.978 12.981,15.777 13.093,15.978 13.242,15.978 13.072,15.683 "/>
<polygon fill="#1D1D22" points="13.887,15.978 13.717,15.683 13.868,15.426 13.747,15.426 13.653,15.593 13.563,15.426
13.413,15.426 13.565,15.684 13.394,15.978 13.516,15.978 13.627,15.777 13.738,15.978 "/>
<polygon fill="#1D1D22" points="14.383,15.978 14.532,15.978 14.362,15.683 14.512,15.426 14.392,15.426 14.298,15.593
14.209,15.426 14.059,15.426 14.21,15.684 14.039,15.978 14.161,15.978 14.272,15.777 "/>
<polygon fill="#1D1D22" points="15.028,15.978 15.177,15.978 15.007,15.683 15.158,15.426 15.037,15.426 14.943,15.593
14.854,15.426 14.704,15.426 14.855,15.684 14.684,15.978 14.807,15.978 14.917,15.777 "/>
<path fill="#1D1D22" d="M16.867,14.841h0.292c-0.06,0.076-0.108,0.162-0.144,0.258c-0.037,0.097-0.057,0.191-0.059,0.284h0.124
c0-0.06,0.01-0.127,0.03-0.201c0.018-0.076,0.047-0.148,0.086-0.214c0.036-0.066,0.073-0.117,0.109-0.153v-0.094h-0.439V14.841z"/>
<path fill="#1D1D22" d="M17.873,15.023c0.063-0.036,0.096-0.083,0.096-0.141c0-0.041-0.016-0.079-0.048-0.112
c-0.037-0.041-0.089-0.06-0.15-0.06c-0.038,0-0.07,0.007-0.102,0.02c-0.029,0.015-0.053,0.034-0.068,0.059
c-0.018,0.023-0.029,0.056-0.038,0.097l0.118,0.02c0.004-0.029,0.014-0.052,0.029-0.065c0.015-0.016,0.034-0.024,0.057-0.024
c0.021,0,0.039,0.007,0.052,0.02c0.014,0.013,0.021,0.031,0.021,0.056s-0.01,0.046-0.028,0.063
c-0.017,0.016-0.044,0.024-0.079,0.023l-0.014,0.105c0.023-0.007,0.042-0.01,0.06-0.01c0.024,0,0.045,0.01,0.063,0.028
c0.017,0.019,0.026,0.045,0.026,0.078c0,0.035-0.01,0.061-0.028,0.082c-0.019,0.02-0.04,0.03-0.066,0.03s-0.047-0.009-0.063-0.024
c-0.018-0.017-0.028-0.042-0.032-0.074l-0.125,0.016c0.007,0.057,0.029,0.102,0.069,0.137c0.041,0.035,0.091,0.052,0.152,0.052
c0.063,0,0.116-0.021,0.16-0.062c0.043-0.042,0.063-0.091,0.063-0.15c0-0.041-0.012-0.076-0.033-0.104
C17.942,15.05,17.91,15.031,17.873,15.023z"/>
<path fill="#1D1D22" d="M18.708,15.135h-0.082V14.71h-0.109l-0.291,0.426v0.113h0.273v0.134h0.127V15.25h0.082V15.135z
M18.499,15.135h-0.153l0.153-0.229V15.135z"/>
<path fill="#1D1D22" d="M18.938,14.841h0.293c-0.06,0.076-0.109,0.162-0.146,0.258c-0.036,0.097-0.055,0.191-0.057,0.284h0.125
c-0.002-0.06,0.009-0.127,0.028-0.201c0.02-0.076,0.048-0.148,0.085-0.214c0.038-0.066,0.075-0.117,0.111-0.153v-0.094h-0.44
V14.841z"/>
<path fill="#1D1D22" d="M19.955,15.022c0.028-0.013,0.053-0.031,0.068-0.056c0.017-0.025,0.024-0.053,0.024-0.083
c0-0.05-0.017-0.091-0.053-0.124c-0.036-0.034-0.085-0.049-0.148-0.049c-0.065,0-0.114,0.015-0.15,0.049
c-0.033,0.033-0.052,0.074-0.052,0.124c0,0.029,0.007,0.056,0.023,0.081c0.015,0.024,0.038,0.044,0.071,0.059
c-0.038,0.016-0.067,0.04-0.084,0.069c-0.02,0.03-0.028,0.063-0.028,0.101c0,0.066,0.024,0.117,0.073,0.156
c0.04,0.031,0.09,0.048,0.152,0.048c0.065,0,0.118-0.019,0.158-0.058c0.038-0.04,0.059-0.089,0.059-0.151
c0-0.038-0.011-0.071-0.029-0.1C20.021,15.058,19.992,15.037,19.955,15.022z M19.788,14.834c0.016-0.015,0.034-0.023,0.059-0.023
s0.043,0.008,0.059,0.023c0.015,0.013,0.021,0.034,0.021,0.058c0,0.025-0.007,0.045-0.021,0.06
c-0.016,0.015-0.034,0.023-0.059,0.023s-0.044-0.008-0.059-0.023c-0.015-0.014-0.021-0.034-0.021-0.059
C19.768,14.868,19.773,14.849,19.788,14.834z M19.916,15.265c-0.018,0.019-0.04,0.027-0.066,0.027c-0.027,0-0.05-0.008-0.068-0.029
c-0.017-0.02-0.026-0.047-0.026-0.083c0-0.026,0.008-0.049,0.022-0.071c0.016-0.022,0.039-0.033,0.07-0.033
c0.026,0,0.05,0.009,0.068,0.028c0.018,0.02,0.026,0.045,0.026,0.076C19.942,15.217,19.934,15.245,19.916,15.265z"/>
<path fill="#1D1D22" d="M20.492,15.096c-0.071,0.065-0.119,0.119-0.144,0.16c-0.026,0.041-0.04,0.083-0.046,0.128h0.452v-0.119
h-0.256c0.007-0.011,0.017-0.025,0.027-0.035c0.01-0.013,0.035-0.038,0.076-0.076c0.04-0.037,0.068-0.066,0.085-0.085
c0.023-0.03,0.04-0.059,0.051-0.086c0.011-0.027,0.017-0.055,0.017-0.085c0-0.054-0.02-0.097-0.057-0.133
c-0.038-0.036-0.091-0.053-0.156-0.053c-0.061,0-0.111,0.015-0.152,0.045c-0.039,0.032-0.064,0.083-0.071,0.154l0.13,0.012
c0.002-0.039,0.011-0.065,0.025-0.081c0.017-0.017,0.038-0.025,0.064-0.025c0.027,0,0.049,0.008,0.064,0.024
c0.016,0.016,0.024,0.037,0.024,0.065c0,0.026-0.01,0.053-0.028,0.079C20.586,15.004,20.55,15.04,20.492,15.096z"/>
<path fill="#1D1D22" d="M21.011,14.841h0.293c-0.062,0.076-0.108,0.162-0.146,0.258c-0.035,0.097-0.054,0.191-0.056,0.284h0.124
c0-0.06,0.009-0.127,0.027-0.201c0.021-0.076,0.05-0.148,0.087-0.214c0.038-0.066,0.075-0.117,0.111-0.153v-0.094h-0.44V14.841z"/>
<path fill="#1D1D22" d="M22.027,15.022c0.029-0.013,0.052-0.031,0.067-0.056c0.017-0.025,0.024-0.053,0.024-0.083
c0-0.05-0.018-0.091-0.052-0.124c-0.036-0.034-0.085-0.049-0.149-0.049c-0.065,0-0.114,0.015-0.15,0.049
c-0.034,0.033-0.052,0.074-0.052,0.124c0,0.029,0.009,0.056,0.023,0.081s0.039,0.044,0.072,0.059
c-0.039,0.016-0.067,0.04-0.084,0.069c-0.02,0.03-0.028,0.063-0.028,0.101c0,0.066,0.024,0.117,0.072,0.156
c0.04,0.031,0.092,0.048,0.152,0.048c0.066,0,0.118-0.019,0.158-0.058c0.039-0.04,0.06-0.089,0.06-0.151
c0-0.038-0.01-0.071-0.03-0.1C22.093,15.058,22.065,15.037,22.027,15.022z M21.86,14.834c0.015-0.015,0.034-0.023,0.059-0.023
c0.023,0,0.044,0.008,0.058,0.023C21.991,14.848,22,14.868,22,14.892c0,0.025-0.009,0.045-0.023,0.06
c-0.015,0.015-0.034,0.023-0.059,0.023c-0.023,0-0.043-0.008-0.058-0.023c-0.016-0.014-0.023-0.034-0.023-0.059
C21.837,14.868,21.845,14.849,21.86,14.834z M21.988,15.265c-0.019,0.019-0.04,0.027-0.066,0.027c-0.027,0-0.051-0.008-0.068-0.029
c-0.019-0.02-0.026-0.047-0.026-0.083c0-0.026,0.007-0.049,0.021-0.071c0.017-0.022,0.04-0.033,0.071-0.033
c0.026,0,0.05,0.009,0.067,0.028c0.017,0.02,0.026,0.045,0.026,0.076C22.014,15.217,22.004,15.245,21.988,15.265z"/>
<path fill="#1D1D22" d="M22.831,15.05c0-0.122-0.022-0.208-0.066-0.261c-0.043-0.053-0.1-0.078-0.168-0.078
c-0.063,0-0.113,0.02-0.154,0.062c-0.04,0.041-0.061,0.097-0.061,0.165c0,0.065,0.02,0.119,0.057,0.159
c0.04,0.04,0.084,0.061,0.138,0.061c0.048,0,0.089-0.019,0.12-0.056c-0.005,0.077-0.015,0.129-0.034,0.152
c-0.019,0.024-0.041,0.037-0.068,0.037c-0.021,0-0.039-0.007-0.05-0.018c-0.014-0.012-0.022-0.032-0.024-0.057l-0.125,0.015
c0.01,0.054,0.03,0.095,0.063,0.125c0.032,0.027,0.074,0.041,0.128,0.041c0.072,0,0.132-0.026,0.177-0.082
C22.807,15.26,22.831,15.171,22.831,15.05z M22.66,15.033c-0.017,0.02-0.038,0.03-0.062,0.03c-0.026,0-0.047-0.011-0.065-0.031
c-0.018-0.02-0.024-0.051-0.024-0.095c0-0.043,0.007-0.074,0.022-0.093c0.017-0.018,0.036-0.028,0.06-0.028
c0.024,0,0.047,0.011,0.066,0.035c0.02,0.022,0.028,0.054,0.028,0.095C22.686,14.985,22.678,15.015,22.66,15.033z"/>
<path fill="#1D1D22" d="M23.459,14.71h-0.107l-0.292,0.426v0.113h0.275v0.134h0.124V15.25h0.084v-0.115h-0.084V14.71z
M23.335,15.135h-0.154l0.154-0.229V15.135z"/>
</g>
<g>
<path fill="#1D1D22" d="M22.194,16.201v0.753c0,0.176,0.145,0.321,0.321,0.321h0.87c0.178,0,0.322-0.145,0.322-0.321v-0.753
c0-0.176-0.145-0.32-0.322-0.32h-0.87C22.339,15.88,22.194,16.024,22.194,16.201z M23.408,16.141v0.876h-0.913v-0.876H23.408z"/>
<rect x="19.897" y="16.697" fill="#1D1D22" width="0.232" height="0.234"/>
<path fill="#1D1D22" d="M17.838,16.188v-0.017c-0.021-0.165-0.161-0.294-0.333-0.294h-0.848c-0.185,0-0.334,0.149-0.334,0.335
v0.725c0,0.185,0.149,0.334,0.334,0.334h0.848c0.175,0,0.317-0.13,0.334-0.299v-0.018h-1.145v-0.767H17.838z"/>
<path fill="#1D1D22" d="M21.92,16.15c-0.023-0.154-0.157-0.27-0.316-0.27h-0.931c-0.179,0-0.32,0.144-0.32,0.32v0.753
c0,0.176,0.142,0.321,0.32,0.321h0.931c0.166,0,0.304-0.123,0.318-0.285v-0.529h-1.031c0.003,0.027,0.017,0.077,0.068,0.142
c0.067,0.084,0.171,0.092,0.2,0.092h0.466V17h-0.977v-0.85H21.92z"/>
<path fill="#1D1D22" d="M18.102,16.971c0.018,0.17,0.159,0.301,0.333,0.301h0.89c0.187,0,0.337-0.149,0.337-0.334v-0.217
c-0.017-0.169-0.159-0.301-0.333-0.301h-0.889v-0.241h1.193c-0.018-0.169-0.16-0.301-0.333-0.301h-0.865
c-0.185,0-0.335,0.149-0.335,0.334v0.208c0.018,0.171,0.16,0.302,0.333,0.302l0.889-0.001v0.25H18.102z"/>
<rect x="19.897" y="16.219" fill="#1D1D22" width="0.232" height="0.233"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 52 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 71 KiB

View File

@@ -1,305 +1,305 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16" y1="3.8982" x2="16" y2="26.4613">
<stop offset="0" style="stop-color:#B2C9CC"/>
<stop offset="0.2185" style="stop-color:#8FA1A3"/>
<stop offset="0.4362" style="stop-color:#738182"/>
<stop offset="0.6435" style="stop-color:#5E6A6A"/>
<stop offset="0.8362" style="stop-color:#525C5C"/>
<stop offset="1" style="stop-color:#4E5757"/>
</linearGradient>
<circle fill="url(#SVGID_1_)" cx="16" cy="15.8" r="14.1"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="15.6121" y1="12.8788" x2="15.6121" y2="30.5654">
<stop offset="0" style="stop-color:#B6CCD1"/>
<stop offset="1.855779e-02" style="stop-color:#B3C8CD"/>
<stop offset="0.2369" style="stop-color:#8FA0A3"/>
<stop offset="0.4494" style="stop-color:#738082"/>
<stop offset="0.6519" style="stop-color:#5E696A"/>
<stop offset="0.8401" style="stop-color:#525C5C"/>
<stop offset="1" style="stop-color:#4E5757"/>
</linearGradient>
<path fill="url(#SVGID_2_)" d="M1,17.6c0.3-0.2,0.6-0.5,0.9-0.9c1.6-2,2.9-4.2,3.7-5.4c0.3,1.5,3.4,6.8,6.8,7.9
c4.8,1.6,7.1,0,8.4-1.3c3.3-3.2,4.3-6.7,5.4-8.2c1.2,1.5,1.6,3.6,3,4.8c0.4,0.3,1,1,1.4,1.2c-0.1,5.2-1.6,15.1-13.8,15.1
S-1,19.3,1,17.6z"/>
<rect x="13.2" y="9.7" fill="#6D6460" width="0.4" height="3.2"/>
<path fill="#DE9537" d="M22,8.9l-0.2,0.1C21.9,9,22,9,22,8.9z"/>
<g>
<polygon fill="#DDDBD4" points="22.5,28.5 22.5,28.5 24.9,27.4 26.9,25 28.9,22.4 30.1,17.7 1.9,17.7 2.4,20.6 4.4,24.6 8.5,28.4
12,30.1 18.3,30.2 "/>
<rect x="13.2" y="9" fill="#725835" width="5.4" height="3.2"/>
<rect x="18.3" y="9" fill="#6D6460" width="0.4" height="3.2"/>
<rect x="15.8" y="9" fill="#6D6460" width="0.4" height="3.2"/>
<polygon fill="#A03C2E" points="10,17.7 21.9,17.7 21.7,14.2 10.2,14.2 "/>
<polygon fill="#DDDBD4" points="10.3,12 10.2,13.9 21.7,13.9 21.6,12 "/>
<polygon fill="#EDE9DD" points="21.4,11.7 16,11.7 10.5,11.7 9.6,12.5 16,12.5 22.3,12.5 "/>
<path fill="#966626" d="M23.5,8l-0.3-0.5L22,8.3c-0.1,0-0.1,0.1-0.2,0.1C19.6,9.5,16,9.3,16,9.3c-3.5,0-5.9-0.9-5.9-0.9L8.7,7.6
L8.5,8l1.3,0.8C9.7,9.1,9.6,9.3,9.6,9.3s1.2,0.6,3.6,0.8c0,0,1,0.1,2.7,0.1s2.7-0.1,2.7-0.1c2.5-0.3,3.6-0.8,3.6-0.8s0-0.2-0.1-0.5
L23.5,8z"/>
<path fill="#DE9537" d="M21.8,8.4c-2,0.7-3.4-1-3.9-1.4c-0.4-0.4-0.9-1-1.4-1.3h-0.3c0.1,0,0.1-0.1,0.1-0.2V5
c0-0.1-0.1-0.2-0.2-0.2l0,0c0,0,0,0,0,0v0c0,0,0-0.1,0-0.1h0.1h0.3c0,0,0.1,0,0.1-0.1l0-0.1c0,0,0-0.1-0.1-0.1h-0.5c0,0,0,0,0,0v0
c0,0,0,0,0,0l0,0c0.1,0,0.1-0.1,0.1-0.2V3.7c0-0.1-0.1-0.2-0.2-0.2h0c0,0,0,0,0,0v0c0,0,0,0,0,0h0.3c0,0,0,0,0-0.1l0-0.1
c0,0,0-0.1-0.1-0.1h-0.1h-0.1c0,0,0,0,0,0v0c0,0,0,0,0,0l0,0c0.1,0-0.2-0.9-0.2-0.9c0,0,0,0,0,0c0,0-0.3,0.9-0.2,0.9l0,0
c0,0,0,0,0,0v0c0,0,0,0,0,0h-0.1h-0.1c0,0-0.1,0-0.1,0.1l0,0.1c0,0,0,0.1,0,0.1h0.3c0,0,0,0,0,0v0c0,0,0,0,0,0h0
c-0.1,0-0.2,0.1-0.2,0.2v0.4c0,0.1,0.1,0.1,0.1,0.2l0,0c0,0,0,0,0,0v0c0,0,0,0,0,0h-0.5c0,0-0.1,0-0.1,0.1l0,0.1c0,0,0,0.1,0.1,0.1
h0.3h0.1c0,0,0,0,0,0.1v0c0,0,0,0,0,0l0,0c-0.1,0-0.2,0.1-0.2,0.2v0.5c0,0.1,0.1,0.2,0.1,0.2h-0.3c-0.5,0.3-1,1-1.4,1.3
c-0.5,0.5-1.9,2.1-3.9,1.4c0,0,2.3,0.9,5.9,0.9C16,9.3,19.6,9.5,21.8,8.4z"/>
<rect x="17.5" y="14.7" fill="#6D6460" width="2" height="2"/>
<g>
<rect x="17.7" y="14.9" fill="#9DA5A5" width="1.5" height="1.5"/>
</g>
<g>
<rect x="17.5" y="16.7" fill="#D6D6D6" width="2" height="0.2"/>
</g>
<path fill="#D6D6D6" d="M18.7,10.1c-1.8,0.2-3.6,0.2-5.4,0v0.6c1.8,0.2,3.6,0.2,5.4,0V10.1z"/>
<g>
<polygon fill="#D6D6D6" points="21.7,14.4 10.2,14.5 10.2,13.9 21.7,13.9 "/>
</g>
<g>
<polygon fill="#D6D6D6" points="30.1,18.5 1.8,18.6 1.8,18 30,18 "/>
</g>
<g>
<polygon fill="#D6D6D6" points="21.7,13 10.2,13.1 10.2,12.5 21.7,12.5 "/>
</g>
<rect x="12.4" y="14.7" fill="#6D6460" width="2" height="2"/>
<g>
<rect x="12.7" y="14.9" fill="#9DA5A5" width="1.5" height="1.5"/>
</g>
<g>
<rect x="12.5" y="16.7" fill="#D6D6D6" width="2" height="0.2"/>
</g>
</g>
<polygon fill="#A03C2E" points="20.1,30.9 16.6,31.5 10.8,30.4 7.4,28.9 6.2,27.1 26.9,27.1 22.5,29.8 "/>
<rect x="12.6" y="28.1" fill="#6D6460" width="2" height="2"/>
<rect x="17.2" y="28.1" fill="#6D6460" width="2" height="2"/>
<polygon fill="#6D6460" points="22.7,30.1 21.9,30.1 21.9,28.1 23.9,28.1 23.9,29.3 "/>
<polygon fill="#6D6460" points="10.6,30.1 9.1,30.1 8.6,29.5 8.6,28.1 10.6,28.1 "/>
<g>
<rect x="17.3" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
</g>
<g>
<rect x="12.8" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
</g>
<g>
<polygon fill="#9DA5A5" points="22.1,28.2 23.8,28.2 23.8,29.4 23.4,29.9 22.1,29.9 "/>
</g>
<g>
<rect x="8.7" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
</g>
<g>
<path fill="#626666" d="M30.7,17.5c-2.2-0.8-3.8-1.9-3.9-1.9l-0.1,0l-0.1,0c0,0-5,3.2-10.3,3.2c-3.7,0-7.4-1.5-9.6-2.4
c-0.8-0.3-1.2-0.5-1.5-0.6v0h0c-0.2,0-0.3,0-0.3,0C4.7,16,3.1,16.5,1.7,17c-0.8,0.3-1,0.6,0.1,0.2c1.3-0.5,2.8-1,3.2-1.2l0.3,0
c0.3,0.1,0.8,0.3,1.4,0.5c2.2,0.9,5.9,2.4,9.7,2.4c4.8,0,9.2-2.5,10.2-3.1l0.3,0c0.6,0.4,1.9,1.2,3.8,1.9
C30.9,17.6,30.9,17.6,30.7,17.5z"/>
<path fill="#626666" d="M9,17.5c-0.1-0.2-0.2-0.3-0.4-0.4C8.5,17.1,8.3,17,8.1,17c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0
c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.2,0-0.3,0c0-0.1,0.1-0.2,0-0.3
c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2,0-0.2,0L6.1,16C5.9,16,5.9,16,5.8,16l-0.1,0.1l0,0.1c-0.1,0.3-0.2,0.5-0.3,0.7c0,0,0,0,0,0
c0,0,0-0.2-0.2-0.5c-0.2-0.3-0.2-0.4-0.3-0.4l-0.2,0h0c-0.1,0-0.5,0.3-0.6,0.3l-0.1,0.1l0,0l0,0.1c0,0,0.2,0.3,0.2,0.4
c0.1,0.1,0.1,0.3,0.2,0.4c0,0,0,0.1,0,0.3c0,0.1,0,0.1,0,0.2c0,0-0.1,0-0.2-0.1c-0.2-0.1-0.2-0.2-0.2-0.2c0-0.1-0.1-0.2-0.2-0.3
c0,0-0.2-0.3-0.2-0.3l-0.2-0.1H3.3c-0.1,0-0.6,0.3-0.6,0.3L2.6,17c0,0,0,0-0.1,0l-0.1,0C2.2,17,2.1,17.1,2,17.3c0,0,0,0,0,0.1
c0-0.1-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2l0,0.2l0,0.1c0.1,0.2,0.3,0.4,0.4,0.8l0.4,1l0.1,0.1
H2l0.1,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.3-0.1l0.1-0.1l0-0.1c0,0-0.1-0.3-0.2-0.4l-0.2-0.6c0-0.1,0-0.2,0-0.2
c0,0,0,0,0.2-0.1L2.8,18c0.1,0,0.2-0.2,0.1-0.3l0-0.1C3,17.9,3.1,18,3.1,18c0,0,0.2,0.1,0.6,0.3c0.3,0.1,0.4,0.2,0.4,0.3
c0,0.1-0.1,0.2-0.4,0.3L3.7,19l0.1,0.1c0,0,0,0.1,0.2,0.2l0.3,0.2c0,0,0.1,0,0.2-0.1c0.6-0.3,0.6-0.4,0.6-0.4c0,0,0-0.1,0.1-0.6
l0-0.2c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0l0.1-0.1l0.6-1.2c0,0,0,0,0.2,0l0.2,0.1c0,0,0,0.1,0,0.2l-0.2,0.5
c0,0.1-0.3,0.6-0.3,0.6c0,0.1,0,0.1,0,0.2l0,0.1l0.8,0.3L7,19l0.3-0.7c0.1-0.3,0.2-0.4,0.2-0.5c0,0,0.1-0.1,0.1-0.1l0.2,0
c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.3-0.2,0.5c0,0.1-0.3,0.6-0.3,0.6c-0.1,0.2,0,0.3,0,0.3c0,0,0.1,0.1,0.3,0.2
c0.2,0.1,0.3,0.1,0.3,0.1l0.1,0l0.1-0.1l0.4-0.9c0-0.1,0.3-0.6,0.3-0.7C9.1,17.9,9.1,17.7,9,17.5z"/>
<path fill="#626666" d="M11.4,18.4c-0.2-0.3-0.4-0.5-0.8-0.6c-0.1,0-0.3-0.1-0.4-0.1c-0.2,0-0.4,0.1-0.6,0.2
C9.3,18,9.1,18.3,9,18.7c-0.1,0.4-0.1,0.7,0.1,1c0.2,0.3,0.4,0.5,0.8,0.6c0.1,0,0.3,0.1,0.4,0.1c0.2,0,0.4-0.1,0.6-0.1
c0.3-0.2,0.5-0.4,0.6-0.8C11.6,19,11.5,18.7,11.4,18.4z M10.4,19.3c0,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.1-0.1-0.2-0.2
c0-0.1,0-0.2,0-0.3c0-0.1,0.1-0.2,0.1-0.2c0,0,0.1,0,0.1,0l0.1,0c0.1,0,0.1,0.1,0.2,0.1c0,0.1,0,0.2,0,0.3
C10.5,19.2,10.5,19.3,10.4,19.3z"/>
<path fill="#626666" d="M13.5,18.4l-0.1,0c-0.1,0-0.3,0-0.4,0.1c0,0-0.1,0-0.1,0c0-0.1,0-0.2-0.2-0.3c-0.1,0-0.2,0-0.4,0
c-0.2,0-0.3,0-0.4,0l-0.1,0.1l0,0.1c0,0.2,0,0.5,0,0.9l-0.2,1.1l0,0.2l0.1,0c0.1,0,0.2,0,0.4,0.1c0.2,0,0.3,0,0.3,0
c0.1,0,0.2-0.1,0.2-0.2l0.2-1.2c0,0,0,0,0.1-0.1c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c0.1,0,0.2,0,0.1,0.2L13,20c0,0.1-0.1,0.6-0.1,0.6
c0,0.1,0,0.2,0.1,0.2c0,0,0.2,0,0.4,0.1c0.2,0,0.3,0,0.3,0h0l0.2-0.1l0.3-1.7c0-0.2,0-0.4-0.2-0.6C13.9,18.5,13.7,18.4,13.5,18.4z"
/>
<path fill="#626666" d="M17,18.8L17,18.8c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3-0.1-0.3-0.1c-0.1,0-0.1,0.1-0.2,0.1
c-0.1-0.1-0.3-0.2-0.6-0.2c-0.4,0-0.7,0.1-0.9,0.4c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.3,0.1,0.6,0.3,0.9c0.2,0.3,0.5,0.4,0.8,0.4h0
c0.2,0,0.3-0.1,0.5-0.2c0,0.1,0.1,0.2,0.2,0.2l0.2,0c0.2,0,0.3,0,0.4,0c0.1,0,0.2-0.1,0.2-0.2c0-0.1,0-0.3,0-0.5c0-0.2,0-0.4,0-0.5
c0-0.3,0-0.6,0.1-0.9L17,18.8z M15.8,20.1c-0.1,0.1-0.1,0.1-0.2,0.1h0c-0.1,0-0.2,0-0.2-0.1c-0.1-0.1-0.1-0.1-0.1-0.2
c0-0.1,0-0.2,0.1-0.2c0.1-0.1,0.1-0.1,0.2-0.1h0c0.1,0,0.2,0,0.2,0.1c0.1,0.1,0.1,0.1,0.1,0.2C15.9,19.9,15.9,20,15.8,20.1z"/>
<path fill="#626666" d="M18.3,19.4c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0-0.1,0-0.1c0,0,0.1,0,0.3-0.1l0.1,0l0-0.1l0.1-0.1l0,0
c0,0,0-0.1-0.2-0.3c-0.2-0.2-0.2-0.3-0.3-0.3h0c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.4,0.4-0.3,0.7c0,0.1,0.1,0.3,0.2,0.4
c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.1,0.1c0,0,0,0.1-0.1,0.1l-0.3,0.1l-0.1,0.1l0,0.1c0,0,0,0.1,0.2,0.3
c0.2,0.2,0.2,0.3,0.3,0.3h0c0.2,0,0.3-0.1,0.5-0.2c0.2-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0-0.2,0-0.3
c0-0.2-0.1-0.3-0.2-0.4C18.5,19.6,18.5,19.5,18.3,19.4z"/>
<path fill="#626666" d="M22.9,19.2c-0.1-0.1-0.2-0.2-0.2-0.2c0.1,0,0.1,0,0.1,0c0.1,0,0.2-0.2,0.1-0.4c-0.1-0.3-0.3-0.6-0.6-0.7
c-0.2-0.1-0.4-0.2-0.6-0.2c-0.1,0-0.2,0-0.3,0c-0.4,0.1-0.6,0.3-0.8,0.6c-0.1,0.2-0.1,0.4-0.1,0.6l-0.1-0.1h-0.1
c-0.1,0-0.4,0.1-0.4,0.1c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.1-0.2-0.1c0,0-0.4,0-0.4,0l-0.2,0c0,0-0.1,0-0.1,0
l-0.1,0l0,0c0,0.1,0,0.1,0,0.4L19,19c0,0.1,0,0.2,0,0.2h0c-0.2,0-0.2,0.1-0.2,0.2l0.1,0.3l0,0.2c0,0.1,0.1,0.1,0.2,0.1l0.1,0
c0,0.1,0,0.2,0.1,0.4c0,0.2,0.1,0.4,0.1,0.5c0.1,0.3,0.3,0.5,0.6,0.5c0.1,0,0.2,0,0.2,0c0.3,0,0.5-0.1,0.7-0.3C20.9,21,21,21,21,21
l0-0.1l0,0c0,0,0-0.1,0-0.2c0-0.1,0-0.2,0-0.2l-0.1-0.1h-0.1c0,0-0.1,0-0.2,0.1c-0.1,0-0.1,0-0.1,0l-0.1,0c0,0,0-0.1-0.1-0.2l0-0.2
l0-0.1l0.4-0.1l0.2-0.1l-0.1-0.3c0.1,0.3,0.3,0.6,0.6,0.7c0.2,0.1,0.4,0.1,0.6,0.1c0.1,0,0.3,0,0.4-0.1c0.4-0.1,0.7-0.3,0.8-0.6
l0-0.1l0,0C23.1,19.5,23.1,19.4,22.9,19.2z M21.5,18.7c0-0.1,0.1-0.1,0.1-0.1l0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0.1,0.1,0.1
c0,0,0,0,0,0c-0.2,0.1-0.4,0.2-0.4,0.2C21.5,18.8,21.5,18.7,21.5,18.7z M22.4,19.2c-0.1,0.1-0.2,0.2-0.3,0.2c0,0-0.1,0-0.2,0
c0,0-0.1,0-0.1,0c0,0,0,0,0,0C22.1,19.3,22.4,19.2,22.4,19.2L22.4,19.2z"/>
<path fill="#626666" d="M30.7,17.5c-0.1-0.2-0.2-0.3-0.4-0.4C30.1,17.1,30,17,29.8,17c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0
c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.2,0-0.3,0c0-0.1,0.1-0.2,0-0.3
c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2,0-0.2,0L27.7,16c-0.1,0-0.2-0.1-0.2-0.1l-0.1,0.1l0,0.1c-0.1,0.3-0.2,0.5-0.3,0.7
c0-0.1-0.1-0.2-0.2-0.5c-0.2-0.3-0.2-0.4-0.3-0.4l-0.2,0h0c-0.1,0-0.5,0.3-0.6,0.3l-0.1,0.1l0,0l0,0.1c0,0,0.1,0.1,0.1,0.2
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.3,0.2,0.4c0,0,0,0.1,0,0.3c0,0.1,0,0.1,0,0.2c0,0-0.1,0-0.2-0.1c-0.2-0.1-0.2-0.2-0.2-0.2
c0-0.1-0.1-0.2-0.2-0.3c0,0-0.2-0.3-0.2-0.3l-0.2-0.1H25c-0.1,0-0.6,0.3-0.6,0.3c-0.1,0-0.1,0.1-0.1,0.1l0,0c0,0,0-0.1-0.1-0.1
l-0.1,0l0,0c-0.1,0.1-0.3,0.2-0.4,0.3c0,0,0,0,0,0.1c0-0.1-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2
l0,0.2l0,0.1c0.1,0.2,0.3,0.4,0.4,0.8l0.2,0.4l0.1,0.2l0.2,0.4l0.1,0.1h0.1l0.1,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.3-0.1
l0.1-0.1c0,0-0.2-0.4-0.2-0.5l-0.2-0.6c0-0.1,0-0.2,0-0.2c0,0,0,0,0.2-0.1l0.2-0.1c0.1,0,0.2-0.2,0.1-0.3l0-0.1
c0.1,0.3,0.2,0.3,0.2,0.4c0,0,0.2,0.1,0.6,0.3c0.3,0.1,0.4,0.2,0.4,0.2c0,0,0,0,0,0c0,0,0,0.1,0,0.1c-0.1,0.1-0.2,0.2-0.3,0.3
L25.3,19l0.1,0.1c0,0,0,0.1,0.2,0.1l0.4,0.3c0,0,0.1,0,0.2-0.1c0.6-0.3,0.6-0.4,0.6-0.4c0,0,0-0.1,0.1-0.6l0-0.2
c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0l0.1-0.1l0.6-1.2c0,0,0,0,0.2,0l0.2,0.1c0,0,0,0.1,0,0.2l-0.2,0.5
c0,0.1-0.3,0.6-0.3,0.6c0,0.1,0,0.1,0,0.2l0,0.1l0.8,0.3l0.1,0c0,0,0.3-0.6,0.3-0.7c0.1-0.3,0.2-0.4,0.2-0.5c0,0,0.1-0.1,0.1-0.1
l0.2,0c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.3-0.2,0.5c0,0.1-0.3,0.6-0.3,0.6c-0.1,0.2,0,0.3,0,0.3c0,0,0.1,0.1,0.3,0.2
c0.2,0.1,0.3,0.1,0.3,0.1l0.1,0l0.1-0.1l0.4-0.9l0.3-0.7C30.8,17.9,30.8,17.7,30.7,17.5z"/>
<path fill="#B2838D" d="M8.2,19.5c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3C7.9,18.3,8,18.2,8,18c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3C7,18.7,7,18.8,7,18.9c0,0-0.1,0.1-0.1,0l-0.6-0.3
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3C6.4,18.1,6.5,18,6.5,18c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3c0.1,0.2,0.1,0.3,0,0.5c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
c0,0.1-0.1,0.2-0.2,0.4C8.3,19.3,8.3,19.4,8.2,19.5z"/>
<path fill="#5A8E55" d="M11.4,19.3c-0.1,0.3-0.3,0.6-0.5,0.7c-0.3,0.1-0.6,0.2-0.9,0.1c-0.3-0.1-0.6-0.3-0.7-0.5
C9.1,19.3,9,19,9.1,18.7c0.1-0.3,0.3-0.6,0.5-0.7c0.3-0.2,0.6-0.2,0.9-0.1c0.3,0.1,0.6,0.3,0.7,0.5C11.4,18.7,11.5,19,11.4,19.3z
M10.6,19.1c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.2,0.2-0.2,0.3c0,0.1,0,0.2,0,0.3
c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.3-0.1C10.5,19.3,10.6,19.2,10.6,19.1z"/>
<path fill="#4F80B2" d="M13.8,20.8C13.8,20.9,13.8,20.9,13.8,20.8c-0.1,0.1-0.2,0-0.4,0c-0.2,0-0.3-0.1-0.4-0.1S13,20.7,13,20.7
c0-0.1,0-0.2,0.1-0.3c0-0.1,0-0.3,0.1-0.3c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.2,0-0.3-0.2-0.4c-0.1,0-0.1,0-0.2,0
c-0.1,0-0.1,0.1-0.2,0.2l-0.2,1.2c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.3-0.1c0,0-0.1,0-0.1-0.1
c0-0.1,0-0.3,0.1-0.5c0-0.2,0.1-0.4,0.1-0.5c0.1-0.4,0.1-0.7,0-0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.4,0c0.2,0,0.4,0,0.4,0
c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0.1,0,0.3-0.1c0.2-0.1,0.4-0.1,0.5-0.1c0.2,0,0.3,0.1,0.5,0.2c0.1,0.1,0.2,0.3,0.1,0.5
L14,19.9c0,0.1,0,0.2-0.1,0.4C13.9,20.6,13.8,20.7,13.8,20.8z"/>
<path fill="#CCC381" d="M16.8,19.8c0,0.1,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.7,0c0,0,0,0-0.1-0.1
c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c-0.2,0.2-0.4,0.3-0.6,0.2c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.8
c0.2-0.2,0.5-0.3,0.8-0.3c0.2,0,0.4,0.1,0.6,0.3c0,0,0,0,0,0c0,0,0,0,0-0.1c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.3,0.1
c0.2,0,0.3,0.1,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0C16.8,19.2,16.8,19.5,16.8,19.8z M16,19.8c0-0.1,0-0.2-0.1-0.3
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.3,0.1
c0.1,0,0.2,0,0.3-0.1C16,20.1,16,20,16,19.8z"/>
<path fill="#5A8E55" d="M18.6,19C18.6,19,18.6,19,18.6,19C18.5,19,18.5,19,18.4,19c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.1,0.1-0.1,0.2
c0,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.2-0.1,0.2
c-0.1,0.1-0.2,0.2-0.4,0.3C18,20.9,17.8,21,17.7,21c0,0-0.1-0.1-0.2-0.2c-0.1-0.2-0.2-0.3-0.2-0.3c0,0,0,0,0,0
c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0-0.1-0.1-0.1-0.1-0.2c-0.2-0.1-0.2-0.2-0.2-0.2c-0.1-0.1-0.1-0.2-0.1-0.3
c0-0.2,0.1-0.4,0.3-0.6c0.2-0.2,0.4-0.3,0.6-0.3c0,0,0.1,0.1,0.2,0.2C18.5,18.8,18.6,18.9,18.6,19z"/>
<path fill="#B2838D" d="M20.8,20.4c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3
c-0.4,0.1-0.7-0.1-0.7-0.4c0-0.1,0-0.2-0.1-0.4c0-0.2-0.1-0.4-0.1-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0.1-0.1c0.1,0,0.1,0,0.1-0.1
c0-0.1,0-0.1,0-0.3c0-0.2-0.1-0.3-0.1-0.3c0-0.2,0-0.3,0-0.3c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.4,0c0,0,0.1,0,0.1,0
c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0.1,0,0.2
c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1-0.1,0.1c0,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0l-0.2,0c0,0,0,0,0,0.1
c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.3,0.1c0,0,0.1,0,0.2-0.1
C20.7,20.4,20.7,20.4,20.8,20.4C20.8,20.4,20.8,20.4,20.8,20.4z"/>
<path fill="#4F80B2" d="M22.9,18.6c0,0.1,0,0.2-0.1,0.3c0,0-0.2,0.1-0.4,0.2c-0.2,0.1-0.4,0.2-0.8,0.3c0,0.1,0.1,0.1,0.2,0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.3-0.1,0.4-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0,0.1
c-0.1,0.2-0.4,0.4-0.8,0.5c-0.3,0.1-0.7,0.1-0.9-0.1c-0.3-0.1-0.5-0.4-0.6-0.7c-0.1-0.3-0.1-0.6,0.1-0.9c0.1-0.3,0.4-0.5,0.7-0.6
c0.3-0.1,0.6,0,0.8,0.1C22.6,18.1,22.8,18.3,22.9,18.6z M22,18.7c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.1-0.3,0
c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0.1,0C21.6,18.9,21.8,18.9,22,18.7C22,18.7,22,18.7,22,18.7z"/>
<path fill="#CCC381" d="M24.5,17.7c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
c0,0,0,0.1,0.1,0.2C24.5,17.7,24.5,17.7,24.5,17.7z"/>
<path fill="#B2838D" d="M26.7,16.4c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6c-0.1,0.4-0.1,0.6-0.1,0.6
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3c0-0.2,0-0.3,0-0.3
c-0.1-0.1-0.1-0.3-0.2-0.4c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2
c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0C26.5,16,26.6,16.1,26.7,16.4z"/>
<path fill="#5A8E55" d="M29.9,19.5c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.1,0.2-0.1,0.3c0,0-0.1,0.1-0.1,0l-0.6-0.3
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2s-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3c0.1,0.2,0.1,0.3,0,0.5c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
c0,0.1-0.1,0.2-0.2,0.4C30,19.3,29.9,19.4,29.9,19.5z"/>
<path fill="#C4BCB1" d="M2.8,17.7c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
c0,0,0,0.1,0.1,0.2C2.8,17.7,2.8,17.7,2.8,17.7z"/>
<path fill="#CCC381" d="M5,16.4c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6C5,18.8,5,19,5,19.1
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3c0-0.2,0-0.3,0-0.3
c-0.1-0.1-0.1-0.3-0.2-0.4c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2C4.5,16,4.6,16,4.6,15.9
c0,0,0.1,0,0.1,0C4.8,16,4.9,16.1,5,16.4z"/>
</g>
<g>
<g>
<path fill="#586689" d="M8.2,23.6c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3C7.9,22.4,8,22.3,8,22.1c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3C7,22.8,7,22.9,7,23c0,0-0.1,0.1-0.1,0l-0.6-0.3
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3C9,21.8,9,22,8.9,22.2c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
c0,0.1-0.1,0.2-0.2,0.4C8.3,23.4,8.3,23.5,8.2,23.6z"/>
<path fill="#586689" d="M11.4,23.4c-0.1,0.3-0.3,0.6-0.5,0.7c-0.3,0.1-0.6,0.2-0.9,0.1c-0.3-0.1-0.6-0.3-0.7-0.5
c-0.1-0.3-0.2-0.6-0.1-0.9c0.1-0.3,0.3-0.6,0.5-0.7c0.3-0.2,0.6-0.2,0.9-0.1c0.3,0.1,0.6,0.3,0.7,0.5
C11.4,22.8,11.5,23.1,11.4,23.4z M10.6,23.2c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0-0.3,0.1
C10,22.8,9.9,22.9,9.9,23c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.3-0.1C10.5,23.4,10.6,23.3,10.6,23.2z"/>
<path fill="#586689" d="M13.8,24.9C13.8,24.9,13.8,25,13.8,24.9c-0.1,0.1-0.2,0-0.4,0c-0.2,0-0.3-0.1-0.4-0.1c0,0-0.1-0.1-0.1-0.1
c0-0.1,0-0.2,0.1-0.3c0-0.1,0-0.3,0.1-0.3c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.2,0-0.3-0.2-0.4c-0.1,0-0.1,0-0.2,0
c-0.1,0-0.1,0.1-0.2,0.2l-0.2,1.2c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.3-0.1c0,0-0.1,0-0.1-0.1
c0-0.1,0-0.3,0.1-0.5c0-0.2,0.1-0.4,0.1-0.5c0.1-0.4,0.1-0.7,0-0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.4,0c0.2,0,0.4,0,0.4,0
c0,0,0,0.1,0,0.2s0,0.2,0,0.2c0,0,0.1,0,0.3-0.1c0.2-0.1,0.4-0.1,0.5-0.1c0.2,0,0.3,0.1,0.5,0.2c0.1,0.1,0.2,0.3,0.1,0.5L14,24
c0,0.1,0,0.2-0.1,0.4C13.9,24.7,13.8,24.8,13.8,24.9z"/>
<path fill="#586689" d="M16.8,23.9c0,0.1,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.7,0c0,0,0,0-0.1-0.1
c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c-0.2,0.2-0.4,0.3-0.6,0.2c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.8
c0.2-0.2,0.5-0.3,0.8-0.3c0.2,0,0.4,0.1,0.6,0.3c0,0,0,0,0,0c0,0,0,0,0-0.1c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.3,0.1
c0.2,0,0.3,0.1,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0C16.8,23.3,16.8,23.6,16.8,23.9z M16,23.9c0-0.1,0-0.2-0.1-0.3
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.3,0.1
c0.1,0,0.2,0,0.3-0.1C16,24.2,16,24.1,16,23.9z"/>
<path fill="#586689" d="M18.6,23.1C18.6,23.1,18.6,23.1,18.6,23.1c-0.1,0.1-0.1,0.1-0.2,0.1c-0.1,0-0.2,0-0.2,0.1
c-0.1,0.1-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.2,0,0.3
c0,0.1-0.1,0.2-0.1,0.2c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.4,0.1c0,0-0.1-0.1-0.2-0.2c-0.1-0.2-0.2-0.3-0.2-0.3
c0,0,0,0,0,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0-0.1-0.1-0.1-0.1-0.2c-0.2-0.1-0.2-0.2-0.2-0.2
c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.2,0.1-0.4,0.3-0.6c0.2-0.2,0.4-0.3,0.6-0.3c0,0,0.1,0.1,0.2,0.2C18.5,22.9,18.6,23,18.6,23.1z"/>
<path fill="#586689" d="M20.8,24.5c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3
c-0.4,0.1-0.7-0.1-0.7-0.4c0-0.1,0-0.2-0.1-0.4c0-0.2-0.1-0.4-0.1-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0.1-0.1c0.1,0,0.1,0,0.1-0.1
c0-0.1,0-0.1,0-0.3c0-0.2-0.1-0.3-0.1-0.3c0-0.2,0-0.3,0-0.3c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.4,0
c0,0,0.1,0,0.1,0c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0
c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1-0.1,0.1c0,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0
l-0.2,0c0,0,0,0,0,0.1c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.3,0.1c0,0,0.1,0,0.2-0.1
C20.7,24.5,20.7,24.5,20.8,24.5C20.8,24.5,20.8,24.5,20.8,24.5z"/>
<path fill="#586689" d="M22.9,22.7c0,0.1,0,0.2-0.1,0.3c0,0-0.2,0.1-0.4,0.2c-0.2,0.1-0.4,0.2-0.8,0.3c0,0.1,0.1,0.1,0.2,0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.3-0.1,0.4-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0,0.1
c-0.1,0.2-0.4,0.4-0.8,0.5c-0.3,0.1-0.7,0.1-0.9-0.1c-0.3-0.1-0.5-0.4-0.6-0.7c-0.1-0.3-0.1-0.6,0.1-0.9c0.1-0.3,0.4-0.5,0.7-0.6
c0.3-0.1,0.6,0,0.8,0.1C22.6,22.2,22.8,22.4,22.9,22.7z M22,22.8c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.1-0.3,0
c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0.1,0C21.6,23,21.8,23,22,22.8C22,22.8,22,22.8,22,22.8z"/>
<path fill="#586689" d="M24.5,21.8c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
c0,0,0,0.1,0.1,0.2C24.5,21.8,24.5,21.8,24.5,21.8z"/>
<path fill="#586689" d="M26.7,20.5c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6c-0.1,0.4-0.1,0.6-0.1,0.6
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3
c0-0.2,0-0.3,0-0.3C26,21,26,20.9,25.9,20.8c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2
c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0C26.5,20.1,26.6,20.2,26.7,20.5z"/>
</g>
</g>
<path fill="#A03C2E" d="M16,0.3C7.3,0.3,0.2,7.3,0.2,16s7,15.7,15.7,15.7s15.7-7,15.7-15.7S24.7,0.3,16,0.3z M16,30
C8.2,30,2,23.7,2,16C2,8.3,8.2,2,16,2s14,6.3,14,14C29.9,23.7,23.7,30,16,30z"/>
<path fill="#682721" d="M16,0.9C7.6,0.9,0.9,7.7,0.9,16S7.6,31.1,16,31.1S31.1,24.3,31.1,16S24.3,0.9,16,0.9z M16,30.7
C7.9,30.7,1.3,24.1,1.3,16C1.3,7.9,7.9,1.3,16,1.3S30.6,7.9,30.6,16C30.6,24.1,24.1,30.7,16,30.7z"/>
<path fill="#682721" d="M16,0.2C7.3,0.2,0.2,7.3,0.2,16S7.3,31.8,16,31.8S31.7,24.7,31.7,16S24.7,0.2,16,0.2z M16,31.3
C7.5,31.3,0.6,24.5,0.6,16C0.6,7.5,7.5,0.7,16,0.7S31.3,7.5,31.3,16C31.3,24.5,24.4,31.3,16,31.3z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16" y1="3.8982" x2="16" y2="26.4613">
<stop offset="0" style="stop-color:#B2C9CC"/>
<stop offset="0.2185" style="stop-color:#8FA1A3"/>
<stop offset="0.4362" style="stop-color:#738182"/>
<stop offset="0.6435" style="stop-color:#5E6A6A"/>
<stop offset="0.8362" style="stop-color:#525C5C"/>
<stop offset="1" style="stop-color:#4E5757"/>
</linearGradient>
<circle fill="url(#SVGID_1_)" cx="16" cy="15.8" r="14.1"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="15.6121" y1="12.8788" x2="15.6121" y2="30.5654">
<stop offset="0" style="stop-color:#B6CCD1"/>
<stop offset="1.855779e-02" style="stop-color:#B3C8CD"/>
<stop offset="0.2369" style="stop-color:#8FA0A3"/>
<stop offset="0.4494" style="stop-color:#738082"/>
<stop offset="0.6519" style="stop-color:#5E696A"/>
<stop offset="0.8401" style="stop-color:#525C5C"/>
<stop offset="1" style="stop-color:#4E5757"/>
</linearGradient>
<path fill="url(#SVGID_2_)" d="M1,17.6c0.3-0.2,0.6-0.5,0.9-0.9c1.6-2,2.9-4.2,3.7-5.4c0.3,1.5,3.4,6.8,6.8,7.9
c4.8,1.6,7.1,0,8.4-1.3c3.3-3.2,4.3-6.7,5.4-8.2c1.2,1.5,1.6,3.6,3,4.8c0.4,0.3,1,1,1.4,1.2c-0.1,5.2-1.6,15.1-13.8,15.1
S-1,19.3,1,17.6z"/>
<rect x="13.2" y="9.7" fill="#6D6460" width="0.4" height="3.2"/>
<path fill="#DE9537" d="M22,8.9l-0.2,0.1C21.9,9,22,9,22,8.9z"/>
<g>
<polygon fill="#DDDBD4" points="22.5,28.5 22.5,28.5 24.9,27.4 26.9,25 28.9,22.4 30.1,17.7 1.9,17.7 2.4,20.6 4.4,24.6 8.5,28.4
12,30.1 18.3,30.2 "/>
<rect x="13.2" y="9" fill="#725835" width="5.4" height="3.2"/>
<rect x="18.3" y="9" fill="#6D6460" width="0.4" height="3.2"/>
<rect x="15.8" y="9" fill="#6D6460" width="0.4" height="3.2"/>
<polygon fill="#A03C2E" points="10,17.7 21.9,17.7 21.7,14.2 10.2,14.2 "/>
<polygon fill="#DDDBD4" points="10.3,12 10.2,13.9 21.7,13.9 21.6,12 "/>
<polygon fill="#EDE9DD" points="21.4,11.7 16,11.7 10.5,11.7 9.6,12.5 16,12.5 22.3,12.5 "/>
<path fill="#966626" d="M23.5,8l-0.3-0.5L22,8.3c-0.1,0-0.1,0.1-0.2,0.1C19.6,9.5,16,9.3,16,9.3c-3.5,0-5.9-0.9-5.9-0.9L8.7,7.6
L8.5,8l1.3,0.8C9.7,9.1,9.6,9.3,9.6,9.3s1.2,0.6,3.6,0.8c0,0,1,0.1,2.7,0.1s2.7-0.1,2.7-0.1c2.5-0.3,3.6-0.8,3.6-0.8s0-0.2-0.1-0.5
L23.5,8z"/>
<path fill="#DE9537" d="M21.8,8.4c-2,0.7-3.4-1-3.9-1.4c-0.4-0.4-0.9-1-1.4-1.3h-0.3c0.1,0,0.1-0.1,0.1-0.2V5
c0-0.1-0.1-0.2-0.2-0.2l0,0c0,0,0,0,0,0v0c0,0,0-0.1,0-0.1h0.1h0.3c0,0,0.1,0,0.1-0.1l0-0.1c0,0,0-0.1-0.1-0.1h-0.5c0,0,0,0,0,0v0
c0,0,0,0,0,0l0,0c0.1,0,0.1-0.1,0.1-0.2V3.7c0-0.1-0.1-0.2-0.2-0.2h0c0,0,0,0,0,0v0c0,0,0,0,0,0h0.3c0,0,0,0,0-0.1l0-0.1
c0,0,0-0.1-0.1-0.1h-0.1h-0.1c0,0,0,0,0,0v0c0,0,0,0,0,0l0,0c0.1,0-0.2-0.9-0.2-0.9c0,0,0,0,0,0c0,0-0.3,0.9-0.2,0.9l0,0
c0,0,0,0,0,0v0c0,0,0,0,0,0h-0.1h-0.1c0,0-0.1,0-0.1,0.1l0,0.1c0,0,0,0.1,0,0.1h0.3c0,0,0,0,0,0v0c0,0,0,0,0,0h0
c-0.1,0-0.2,0.1-0.2,0.2v0.4c0,0.1,0.1,0.1,0.1,0.2l0,0c0,0,0,0,0,0v0c0,0,0,0,0,0h-0.5c0,0-0.1,0-0.1,0.1l0,0.1c0,0,0,0.1,0.1,0.1
h0.3h0.1c0,0,0,0,0,0.1v0c0,0,0,0,0,0l0,0c-0.1,0-0.2,0.1-0.2,0.2v0.5c0,0.1,0.1,0.2,0.1,0.2h-0.3c-0.5,0.3-1,1-1.4,1.3
c-0.5,0.5-1.9,2.1-3.9,1.4c0,0,2.3,0.9,5.9,0.9C16,9.3,19.6,9.5,21.8,8.4z"/>
<rect x="17.5" y="14.7" fill="#6D6460" width="2" height="2"/>
<g>
<rect x="17.7" y="14.9" fill="#9DA5A5" width="1.5" height="1.5"/>
</g>
<g>
<rect x="17.5" y="16.7" fill="#D6D6D6" width="2" height="0.2"/>
</g>
<path fill="#D6D6D6" d="M18.7,10.1c-1.8,0.2-3.6,0.2-5.4,0v0.6c1.8,0.2,3.6,0.2,5.4,0V10.1z"/>
<g>
<polygon fill="#D6D6D6" points="21.7,14.4 10.2,14.5 10.2,13.9 21.7,13.9 "/>
</g>
<g>
<polygon fill="#D6D6D6" points="30.1,18.5 1.8,18.6 1.8,18 30,18 "/>
</g>
<g>
<polygon fill="#D6D6D6" points="21.7,13 10.2,13.1 10.2,12.5 21.7,12.5 "/>
</g>
<rect x="12.4" y="14.7" fill="#6D6460" width="2" height="2"/>
<g>
<rect x="12.7" y="14.9" fill="#9DA5A5" width="1.5" height="1.5"/>
</g>
<g>
<rect x="12.5" y="16.7" fill="#D6D6D6" width="2" height="0.2"/>
</g>
</g>
<polygon fill="#A03C2E" points="20.1,30.9 16.6,31.5 10.8,30.4 7.4,28.9 6.2,27.1 26.9,27.1 22.5,29.8 "/>
<rect x="12.6" y="28.1" fill="#6D6460" width="2" height="2"/>
<rect x="17.2" y="28.1" fill="#6D6460" width="2" height="2"/>
<polygon fill="#6D6460" points="22.7,30.1 21.9,30.1 21.9,28.1 23.9,28.1 23.9,29.3 "/>
<polygon fill="#6D6460" points="10.6,30.1 9.1,30.1 8.6,29.5 8.6,28.1 10.6,28.1 "/>
<g>
<rect x="17.3" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
</g>
<g>
<rect x="12.8" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
</g>
<g>
<polygon fill="#9DA5A5" points="22.1,28.2 23.8,28.2 23.8,29.4 23.4,29.9 22.1,29.9 "/>
</g>
<g>
<rect x="8.7" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
</g>
<g>
<path fill="#626666" d="M30.7,17.5c-2.2-0.8-3.8-1.9-3.9-1.9l-0.1,0l-0.1,0c0,0-5,3.2-10.3,3.2c-3.7,0-7.4-1.5-9.6-2.4
c-0.8-0.3-1.2-0.5-1.5-0.6v0h0c-0.2,0-0.3,0-0.3,0C4.7,16,3.1,16.5,1.7,17c-0.8,0.3-1,0.6,0.1,0.2c1.3-0.5,2.8-1,3.2-1.2l0.3,0
c0.3,0.1,0.8,0.3,1.4,0.5c2.2,0.9,5.9,2.4,9.7,2.4c4.8,0,9.2-2.5,10.2-3.1l0.3,0c0.6,0.4,1.9,1.2,3.8,1.9
C30.9,17.6,30.9,17.6,30.7,17.5z"/>
<path fill="#626666" d="M9,17.5c-0.1-0.2-0.2-0.3-0.4-0.4C8.5,17.1,8.3,17,8.1,17c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0
c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.2,0-0.3,0c0-0.1,0.1-0.2,0-0.3
c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2,0-0.2,0L6.1,16C5.9,16,5.9,16,5.8,16l-0.1,0.1l0,0.1c-0.1,0.3-0.2,0.5-0.3,0.7c0,0,0,0,0,0
c0,0,0-0.2-0.2-0.5c-0.2-0.3-0.2-0.4-0.3-0.4l-0.2,0h0c-0.1,0-0.5,0.3-0.6,0.3l-0.1,0.1l0,0l0,0.1c0,0,0.2,0.3,0.2,0.4
c0.1,0.1,0.1,0.3,0.2,0.4c0,0,0,0.1,0,0.3c0,0.1,0,0.1,0,0.2c0,0-0.1,0-0.2-0.1c-0.2-0.1-0.2-0.2-0.2-0.2c0-0.1-0.1-0.2-0.2-0.3
c0,0-0.2-0.3-0.2-0.3l-0.2-0.1H3.3c-0.1,0-0.6,0.3-0.6,0.3L2.6,17c0,0,0,0-0.1,0l-0.1,0C2.2,17,2.1,17.1,2,17.3c0,0,0,0,0,0.1
c0-0.1-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2l0,0.2l0,0.1c0.1,0.2,0.3,0.4,0.4,0.8l0.4,1l0.1,0.1
H2l0.1,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.3-0.1l0.1-0.1l0-0.1c0,0-0.1-0.3-0.2-0.4l-0.2-0.6c0-0.1,0-0.2,0-0.2
c0,0,0,0,0.2-0.1L2.8,18c0.1,0,0.2-0.2,0.1-0.3l0-0.1C3,17.9,3.1,18,3.1,18c0,0,0.2,0.1,0.6,0.3c0.3,0.1,0.4,0.2,0.4,0.3
c0,0.1-0.1,0.2-0.4,0.3L3.7,19l0.1,0.1c0,0,0,0.1,0.2,0.2l0.3,0.2c0,0,0.1,0,0.2-0.1c0.6-0.3,0.6-0.4,0.6-0.4c0,0,0-0.1,0.1-0.6
l0-0.2c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0l0.1-0.1l0.6-1.2c0,0,0,0,0.2,0l0.2,0.1c0,0,0,0.1,0,0.2l-0.2,0.5
c0,0.1-0.3,0.6-0.3,0.6c0,0.1,0,0.1,0,0.2l0,0.1l0.8,0.3L7,19l0.3-0.7c0.1-0.3,0.2-0.4,0.2-0.5c0,0,0.1-0.1,0.1-0.1l0.2,0
c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.3-0.2,0.5c0,0.1-0.3,0.6-0.3,0.6c-0.1,0.2,0,0.3,0,0.3c0,0,0.1,0.1,0.3,0.2
c0.2,0.1,0.3,0.1,0.3,0.1l0.1,0l0.1-0.1l0.4-0.9c0-0.1,0.3-0.6,0.3-0.7C9.1,17.9,9.1,17.7,9,17.5z"/>
<path fill="#626666" d="M11.4,18.4c-0.2-0.3-0.4-0.5-0.8-0.6c-0.1,0-0.3-0.1-0.4-0.1c-0.2,0-0.4,0.1-0.6,0.2
C9.3,18,9.1,18.3,9,18.7c-0.1,0.4-0.1,0.7,0.1,1c0.2,0.3,0.4,0.5,0.8,0.6c0.1,0,0.3,0.1,0.4,0.1c0.2,0,0.4-0.1,0.6-0.1
c0.3-0.2,0.5-0.4,0.6-0.8C11.6,19,11.5,18.7,11.4,18.4z M10.4,19.3c0,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.1-0.1-0.2-0.2
c0-0.1,0-0.2,0-0.3c0-0.1,0.1-0.2,0.1-0.2c0,0,0.1,0,0.1,0l0.1,0c0.1,0,0.1,0.1,0.2,0.1c0,0.1,0,0.2,0,0.3
C10.5,19.2,10.5,19.3,10.4,19.3z"/>
<path fill="#626666" d="M13.5,18.4l-0.1,0c-0.1,0-0.3,0-0.4,0.1c0,0-0.1,0-0.1,0c0-0.1,0-0.2-0.2-0.3c-0.1,0-0.2,0-0.4,0
c-0.2,0-0.3,0-0.4,0l-0.1,0.1l0,0.1c0,0.2,0,0.5,0,0.9l-0.2,1.1l0,0.2l0.1,0c0.1,0,0.2,0,0.4,0.1c0.2,0,0.3,0,0.3,0
c0.1,0,0.2-0.1,0.2-0.2l0.2-1.2c0,0,0,0,0.1-0.1c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c0.1,0,0.2,0,0.1,0.2L13,20c0,0.1-0.1,0.6-0.1,0.6
c0,0.1,0,0.2,0.1,0.2c0,0,0.2,0,0.4,0.1c0.2,0,0.3,0,0.3,0h0l0.2-0.1l0.3-1.7c0-0.2,0-0.4-0.2-0.6C13.9,18.5,13.7,18.4,13.5,18.4z"
/>
<path fill="#626666" d="M17,18.8L17,18.8c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3-0.1-0.3-0.1c-0.1,0-0.1,0.1-0.2,0.1
c-0.1-0.1-0.3-0.2-0.6-0.2c-0.4,0-0.7,0.1-0.9,0.4c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.3,0.1,0.6,0.3,0.9c0.2,0.3,0.5,0.4,0.8,0.4h0
c0.2,0,0.3-0.1,0.5-0.2c0,0.1,0.1,0.2,0.2,0.2l0.2,0c0.2,0,0.3,0,0.4,0c0.1,0,0.2-0.1,0.2-0.2c0-0.1,0-0.3,0-0.5c0-0.2,0-0.4,0-0.5
c0-0.3,0-0.6,0.1-0.9L17,18.8z M15.8,20.1c-0.1,0.1-0.1,0.1-0.2,0.1h0c-0.1,0-0.2,0-0.2-0.1c-0.1-0.1-0.1-0.1-0.1-0.2
c0-0.1,0-0.2,0.1-0.2c0.1-0.1,0.1-0.1,0.2-0.1h0c0.1,0,0.2,0,0.2,0.1c0.1,0.1,0.1,0.1,0.1,0.2C15.9,19.9,15.9,20,15.8,20.1z"/>
<path fill="#626666" d="M18.3,19.4c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0-0.1,0-0.1c0,0,0.1,0,0.3-0.1l0.1,0l0-0.1l0.1-0.1l0,0
c0,0,0-0.1-0.2-0.3c-0.2-0.2-0.2-0.3-0.3-0.3h0c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.4,0.4-0.3,0.7c0,0.1,0.1,0.3,0.2,0.4
c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.1,0.1c0,0,0,0.1-0.1,0.1l-0.3,0.1l-0.1,0.1l0,0.1c0,0,0,0.1,0.2,0.3
c0.2,0.2,0.2,0.3,0.3,0.3h0c0.2,0,0.3-0.1,0.5-0.2c0.2-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0-0.2,0-0.3
c0-0.2-0.1-0.3-0.2-0.4C18.5,19.6,18.5,19.5,18.3,19.4z"/>
<path fill="#626666" d="M22.9,19.2c-0.1-0.1-0.2-0.2-0.2-0.2c0.1,0,0.1,0,0.1,0c0.1,0,0.2-0.2,0.1-0.4c-0.1-0.3-0.3-0.6-0.6-0.7
c-0.2-0.1-0.4-0.2-0.6-0.2c-0.1,0-0.2,0-0.3,0c-0.4,0.1-0.6,0.3-0.8,0.6c-0.1,0.2-0.1,0.4-0.1,0.6l-0.1-0.1h-0.1
c-0.1,0-0.4,0.1-0.4,0.1c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.1-0.2-0.1c0,0-0.4,0-0.4,0l-0.2,0c0,0-0.1,0-0.1,0
l-0.1,0l0,0c0,0.1,0,0.1,0,0.4L19,19c0,0.1,0,0.2,0,0.2h0c-0.2,0-0.2,0.1-0.2,0.2l0.1,0.3l0,0.2c0,0.1,0.1,0.1,0.2,0.1l0.1,0
c0,0.1,0,0.2,0.1,0.4c0,0.2,0.1,0.4,0.1,0.5c0.1,0.3,0.3,0.5,0.6,0.5c0.1,0,0.2,0,0.2,0c0.3,0,0.5-0.1,0.7-0.3C20.9,21,21,21,21,21
l0-0.1l0,0c0,0,0-0.1,0-0.2c0-0.1,0-0.2,0-0.2l-0.1-0.1h-0.1c0,0-0.1,0-0.2,0.1c-0.1,0-0.1,0-0.1,0l-0.1,0c0,0,0-0.1-0.1-0.2l0-0.2
l0-0.1l0.4-0.1l0.2-0.1l-0.1-0.3c0.1,0.3,0.3,0.6,0.6,0.7c0.2,0.1,0.4,0.1,0.6,0.1c0.1,0,0.3,0,0.4-0.1c0.4-0.1,0.7-0.3,0.8-0.6
l0-0.1l0,0C23.1,19.5,23.1,19.4,22.9,19.2z M21.5,18.7c0-0.1,0.1-0.1,0.1-0.1l0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0.1,0.1,0.1
c0,0,0,0,0,0c-0.2,0.1-0.4,0.2-0.4,0.2C21.5,18.8,21.5,18.7,21.5,18.7z M22.4,19.2c-0.1,0.1-0.2,0.2-0.3,0.2c0,0-0.1,0-0.2,0
c0,0-0.1,0-0.1,0c0,0,0,0,0,0C22.1,19.3,22.4,19.2,22.4,19.2L22.4,19.2z"/>
<path fill="#626666" d="M30.7,17.5c-0.1-0.2-0.2-0.3-0.4-0.4C30.1,17.1,30,17,29.8,17c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0
c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.2,0-0.3,0c0-0.1,0.1-0.2,0-0.3
c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2,0-0.2,0L27.7,16c-0.1,0-0.2-0.1-0.2-0.1l-0.1,0.1l0,0.1c-0.1,0.3-0.2,0.5-0.3,0.7
c0-0.1-0.1-0.2-0.2-0.5c-0.2-0.3-0.2-0.4-0.3-0.4l-0.2,0h0c-0.1,0-0.5,0.3-0.6,0.3l-0.1,0.1l0,0l0,0.1c0,0,0.1,0.1,0.1,0.2
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.3,0.2,0.4c0,0,0,0.1,0,0.3c0,0.1,0,0.1,0,0.2c0,0-0.1,0-0.2-0.1c-0.2-0.1-0.2-0.2-0.2-0.2
c0-0.1-0.1-0.2-0.2-0.3c0,0-0.2-0.3-0.2-0.3l-0.2-0.1H25c-0.1,0-0.6,0.3-0.6,0.3c-0.1,0-0.1,0.1-0.1,0.1l0,0c0,0,0-0.1-0.1-0.1
l-0.1,0l0,0c-0.1,0.1-0.3,0.2-0.4,0.3c0,0,0,0,0,0.1c0-0.1-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2
l0,0.2l0,0.1c0.1,0.2,0.3,0.4,0.4,0.8l0.2,0.4l0.1,0.2l0.2,0.4l0.1,0.1h0.1l0.1,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.3-0.1
l0.1-0.1c0,0-0.2-0.4-0.2-0.5l-0.2-0.6c0-0.1,0-0.2,0-0.2c0,0,0,0,0.2-0.1l0.2-0.1c0.1,0,0.2-0.2,0.1-0.3l0-0.1
c0.1,0.3,0.2,0.3,0.2,0.4c0,0,0.2,0.1,0.6,0.3c0.3,0.1,0.4,0.2,0.4,0.2c0,0,0,0,0,0c0,0,0,0.1,0,0.1c-0.1,0.1-0.2,0.2-0.3,0.3
L25.3,19l0.1,0.1c0,0,0,0.1,0.2,0.1l0.4,0.3c0,0,0.1,0,0.2-0.1c0.6-0.3,0.6-0.4,0.6-0.4c0,0,0-0.1,0.1-0.6l0-0.2
c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0l0.1-0.1l0.6-1.2c0,0,0,0,0.2,0l0.2,0.1c0,0,0,0.1,0,0.2l-0.2,0.5
c0,0.1-0.3,0.6-0.3,0.6c0,0.1,0,0.1,0,0.2l0,0.1l0.8,0.3l0.1,0c0,0,0.3-0.6,0.3-0.7c0.1-0.3,0.2-0.4,0.2-0.5c0,0,0.1-0.1,0.1-0.1
l0.2,0c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.3-0.2,0.5c0,0.1-0.3,0.6-0.3,0.6c-0.1,0.2,0,0.3,0,0.3c0,0,0.1,0.1,0.3,0.2
c0.2,0.1,0.3,0.1,0.3,0.1l0.1,0l0.1-0.1l0.4-0.9l0.3-0.7C30.8,17.9,30.8,17.7,30.7,17.5z"/>
<path fill="#B2838D" d="M8.2,19.5c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3C7.9,18.3,8,18.2,8,18c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3C7,18.7,7,18.8,7,18.9c0,0-0.1,0.1-0.1,0l-0.6-0.3
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3C6.4,18.1,6.5,18,6.5,18c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3c0.1,0.2,0.1,0.3,0,0.5c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
c0,0.1-0.1,0.2-0.2,0.4C8.3,19.3,8.3,19.4,8.2,19.5z"/>
<path fill="#5A8E55" d="M11.4,19.3c-0.1,0.3-0.3,0.6-0.5,0.7c-0.3,0.1-0.6,0.2-0.9,0.1c-0.3-0.1-0.6-0.3-0.7-0.5
C9.1,19.3,9,19,9.1,18.7c0.1-0.3,0.3-0.6,0.5-0.7c0.3-0.2,0.6-0.2,0.9-0.1c0.3,0.1,0.6,0.3,0.7,0.5C11.4,18.7,11.5,19,11.4,19.3z
M10.6,19.1c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.2,0.2-0.2,0.3c0,0.1,0,0.2,0,0.3
c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.3-0.1C10.5,19.3,10.6,19.2,10.6,19.1z"/>
<path fill="#4F80B2" d="M13.8,20.8C13.8,20.9,13.8,20.9,13.8,20.8c-0.1,0.1-0.2,0-0.4,0c-0.2,0-0.3-0.1-0.4-0.1S13,20.7,13,20.7
c0-0.1,0-0.2,0.1-0.3c0-0.1,0-0.3,0.1-0.3c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.2,0-0.3-0.2-0.4c-0.1,0-0.1,0-0.2,0
c-0.1,0-0.1,0.1-0.2,0.2l-0.2,1.2c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.3-0.1c0,0-0.1,0-0.1-0.1
c0-0.1,0-0.3,0.1-0.5c0-0.2,0.1-0.4,0.1-0.5c0.1-0.4,0.1-0.7,0-0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.4,0c0.2,0,0.4,0,0.4,0
c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0.1,0,0.3-0.1c0.2-0.1,0.4-0.1,0.5-0.1c0.2,0,0.3,0.1,0.5,0.2c0.1,0.1,0.2,0.3,0.1,0.5
L14,19.9c0,0.1,0,0.2-0.1,0.4C13.9,20.6,13.8,20.7,13.8,20.8z"/>
<path fill="#CCC381" d="M16.8,19.8c0,0.1,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.7,0c0,0,0,0-0.1-0.1
c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c-0.2,0.2-0.4,0.3-0.6,0.2c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.8
c0.2-0.2,0.5-0.3,0.8-0.3c0.2,0,0.4,0.1,0.6,0.3c0,0,0,0,0,0c0,0,0,0,0-0.1c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.3,0.1
c0.2,0,0.3,0.1,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0C16.8,19.2,16.8,19.5,16.8,19.8z M16,19.8c0-0.1,0-0.2-0.1-0.3
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.3,0.1
c0.1,0,0.2,0,0.3-0.1C16,20.1,16,20,16,19.8z"/>
<path fill="#5A8E55" d="M18.6,19C18.6,19,18.6,19,18.6,19C18.5,19,18.5,19,18.4,19c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.1,0.1-0.1,0.2
c0,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.2-0.1,0.2
c-0.1,0.1-0.2,0.2-0.4,0.3C18,20.9,17.8,21,17.7,21c0,0-0.1-0.1-0.2-0.2c-0.1-0.2-0.2-0.3-0.2-0.3c0,0,0,0,0,0
c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0-0.1-0.1-0.1-0.1-0.2c-0.2-0.1-0.2-0.2-0.2-0.2c-0.1-0.1-0.1-0.2-0.1-0.3
c0-0.2,0.1-0.4,0.3-0.6c0.2-0.2,0.4-0.3,0.6-0.3c0,0,0.1,0.1,0.2,0.2C18.5,18.8,18.6,18.9,18.6,19z"/>
<path fill="#B2838D" d="M20.8,20.4c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3
c-0.4,0.1-0.7-0.1-0.7-0.4c0-0.1,0-0.2-0.1-0.4c0-0.2-0.1-0.4-0.1-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0.1-0.1c0.1,0,0.1,0,0.1-0.1
c0-0.1,0-0.1,0-0.3c0-0.2-0.1-0.3-0.1-0.3c0-0.2,0-0.3,0-0.3c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.4,0c0,0,0.1,0,0.1,0
c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0.1,0,0.2
c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1-0.1,0.1c0,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0l-0.2,0c0,0,0,0,0,0.1
c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.3,0.1c0,0,0.1,0,0.2-0.1
C20.7,20.4,20.7,20.4,20.8,20.4C20.8,20.4,20.8,20.4,20.8,20.4z"/>
<path fill="#4F80B2" d="M22.9,18.6c0,0.1,0,0.2-0.1,0.3c0,0-0.2,0.1-0.4,0.2c-0.2,0.1-0.4,0.2-0.8,0.3c0,0.1,0.1,0.1,0.2,0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.3-0.1,0.4-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0,0.1
c-0.1,0.2-0.4,0.4-0.8,0.5c-0.3,0.1-0.7,0.1-0.9-0.1c-0.3-0.1-0.5-0.4-0.6-0.7c-0.1-0.3-0.1-0.6,0.1-0.9c0.1-0.3,0.4-0.5,0.7-0.6
c0.3-0.1,0.6,0,0.8,0.1C22.6,18.1,22.8,18.3,22.9,18.6z M22,18.7c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.1-0.3,0
c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0.1,0C21.6,18.9,21.8,18.9,22,18.7C22,18.7,22,18.7,22,18.7z"/>
<path fill="#CCC381" d="M24.5,17.7c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
c0,0,0,0.1,0.1,0.2C24.5,17.7,24.5,17.7,24.5,17.7z"/>
<path fill="#B2838D" d="M26.7,16.4c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6c-0.1,0.4-0.1,0.6-0.1,0.6
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3c0-0.2,0-0.3,0-0.3
c-0.1-0.1-0.1-0.3-0.2-0.4c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2
c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0C26.5,16,26.6,16.1,26.7,16.4z"/>
<path fill="#5A8E55" d="M29.9,19.5c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.1,0.2-0.1,0.3c0,0-0.1,0.1-0.1,0l-0.6-0.3
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2s-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3c0.1,0.2,0.1,0.3,0,0.5c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
c0,0.1-0.1,0.2-0.2,0.4C30,19.3,29.9,19.4,29.9,19.5z"/>
<path fill="#C4BCB1" d="M2.8,17.7c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
c0,0,0,0.1,0.1,0.2C2.8,17.7,2.8,17.7,2.8,17.7z"/>
<path fill="#CCC381" d="M5,16.4c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6C5,18.8,5,19,5,19.1
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3c0-0.2,0-0.3,0-0.3
c-0.1-0.1-0.1-0.3-0.2-0.4c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2C4.5,16,4.6,16,4.6,15.9
c0,0,0.1,0,0.1,0C4.8,16,4.9,16.1,5,16.4z"/>
</g>
<g>
<g>
<path fill="#586689" d="M8.2,23.6c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3C7.9,22.4,8,22.3,8,22.1c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3C7,22.8,7,22.9,7,23c0,0-0.1,0.1-0.1,0l-0.6-0.3
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3C9,21.8,9,22,8.9,22.2c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
c0,0.1-0.1,0.2-0.2,0.4C8.3,23.4,8.3,23.5,8.2,23.6z"/>
<path fill="#586689" d="M11.4,23.4c-0.1,0.3-0.3,0.6-0.5,0.7c-0.3,0.1-0.6,0.2-0.9,0.1c-0.3-0.1-0.6-0.3-0.7-0.5
c-0.1-0.3-0.2-0.6-0.1-0.9c0.1-0.3,0.3-0.6,0.5-0.7c0.3-0.2,0.6-0.2,0.9-0.1c0.3,0.1,0.6,0.3,0.7,0.5
C11.4,22.8,11.5,23.1,11.4,23.4z M10.6,23.2c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0-0.3,0.1
C10,22.8,9.9,22.9,9.9,23c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.3-0.1C10.5,23.4,10.6,23.3,10.6,23.2z"/>
<path fill="#586689" d="M13.8,24.9C13.8,24.9,13.8,25,13.8,24.9c-0.1,0.1-0.2,0-0.4,0c-0.2,0-0.3-0.1-0.4-0.1c0,0-0.1-0.1-0.1-0.1
c0-0.1,0-0.2,0.1-0.3c0-0.1,0-0.3,0.1-0.3c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.2,0-0.3-0.2-0.4c-0.1,0-0.1,0-0.2,0
c-0.1,0-0.1,0.1-0.2,0.2l-0.2,1.2c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.3-0.1c0,0-0.1,0-0.1-0.1
c0-0.1,0-0.3,0.1-0.5c0-0.2,0.1-0.4,0.1-0.5c0.1-0.4,0.1-0.7,0-0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.4,0c0.2,0,0.4,0,0.4,0
c0,0,0,0.1,0,0.2s0,0.2,0,0.2c0,0,0.1,0,0.3-0.1c0.2-0.1,0.4-0.1,0.5-0.1c0.2,0,0.3,0.1,0.5,0.2c0.1,0.1,0.2,0.3,0.1,0.5L14,24
c0,0.1,0,0.2-0.1,0.4C13.9,24.7,13.8,24.8,13.8,24.9z"/>
<path fill="#586689" d="M16.8,23.9c0,0.1,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.7,0c0,0,0,0-0.1-0.1
c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c-0.2,0.2-0.4,0.3-0.6,0.2c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.8
c0.2-0.2,0.5-0.3,0.8-0.3c0.2,0,0.4,0.1,0.6,0.3c0,0,0,0,0,0c0,0,0,0,0-0.1c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.3,0.1
c0.2,0,0.3,0.1,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0C16.8,23.3,16.8,23.6,16.8,23.9z M16,23.9c0-0.1,0-0.2-0.1-0.3
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.3,0.1
c0.1,0,0.2,0,0.3-0.1C16,24.2,16,24.1,16,23.9z"/>
<path fill="#586689" d="M18.6,23.1C18.6,23.1,18.6,23.1,18.6,23.1c-0.1,0.1-0.1,0.1-0.2,0.1c-0.1,0-0.2,0-0.2,0.1
c-0.1,0.1-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.2,0,0.3
c0,0.1-0.1,0.2-0.1,0.2c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.4,0.1c0,0-0.1-0.1-0.2-0.2c-0.1-0.2-0.2-0.3-0.2-0.3
c0,0,0,0,0,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0-0.1-0.1-0.1-0.1-0.2c-0.2-0.1-0.2-0.2-0.2-0.2
c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.2,0.1-0.4,0.3-0.6c0.2-0.2,0.4-0.3,0.6-0.3c0,0,0.1,0.1,0.2,0.2C18.5,22.9,18.6,23,18.6,23.1z"/>
<path fill="#586689" d="M20.8,24.5c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3
c-0.4,0.1-0.7-0.1-0.7-0.4c0-0.1,0-0.2-0.1-0.4c0-0.2-0.1-0.4-0.1-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0.1-0.1c0.1,0,0.1,0,0.1-0.1
c0-0.1,0-0.1,0-0.3c0-0.2-0.1-0.3-0.1-0.3c0-0.2,0-0.3,0-0.3c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.4,0
c0,0,0.1,0,0.1,0c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0
c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1-0.1,0.1c0,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0
l-0.2,0c0,0,0,0,0,0.1c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.3,0.1c0,0,0.1,0,0.2-0.1
C20.7,24.5,20.7,24.5,20.8,24.5C20.8,24.5,20.8,24.5,20.8,24.5z"/>
<path fill="#586689" d="M22.9,22.7c0,0.1,0,0.2-0.1,0.3c0,0-0.2,0.1-0.4,0.2c-0.2,0.1-0.4,0.2-0.8,0.3c0,0.1,0.1,0.1,0.2,0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.3-0.1,0.4-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0,0.1
c-0.1,0.2-0.4,0.4-0.8,0.5c-0.3,0.1-0.7,0.1-0.9-0.1c-0.3-0.1-0.5-0.4-0.6-0.7c-0.1-0.3-0.1-0.6,0.1-0.9c0.1-0.3,0.4-0.5,0.7-0.6
c0.3-0.1,0.6,0,0.8,0.1C22.6,22.2,22.8,22.4,22.9,22.7z M22,22.8c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.1-0.3,0
c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0.1,0C21.6,23,21.8,23,22,22.8C22,22.8,22,22.8,22,22.8z"/>
<path fill="#586689" d="M24.5,21.8c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
c0,0,0,0.1,0.1,0.2C24.5,21.8,24.5,21.8,24.5,21.8z"/>
<path fill="#586689" d="M26.7,20.5c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6c-0.1,0.4-0.1,0.6-0.1,0.6
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3
c0-0.2,0-0.3,0-0.3C26,21,26,20.9,25.9,20.8c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2
c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0C26.5,20.1,26.6,20.2,26.7,20.5z"/>
</g>
</g>
<path fill="#A03C2E" d="M16,0.3C7.3,0.3,0.2,7.3,0.2,16s7,15.7,15.7,15.7s15.7-7,15.7-15.7S24.7,0.3,16,0.3z M16,30
C8.2,30,2,23.7,2,16C2,8.3,8.2,2,16,2s14,6.3,14,14C29.9,23.7,23.7,30,16,30z"/>
<path fill="#682721" d="M16,0.9C7.6,0.9,0.9,7.7,0.9,16S7.6,31.1,16,31.1S31.1,24.3,31.1,16S24.3,0.9,16,0.9z M16,30.7
C7.9,30.7,1.3,24.1,1.3,16C1.3,7.9,7.9,1.3,16,1.3S30.6,7.9,30.6,16C30.6,24.1,24.1,30.7,16,30.7z"/>
<path fill="#682721" d="M16,0.2C7.3,0.2,0.2,7.3,0.2,16S7.3,31.8,16,31.8S31.7,24.7,31.7,16S24.7,0.2,16,0.2z M16,31.3
C7.5,31.3,0.6,24.5,0.6,16C0.6,7.5,7.5,0.7,16,0.7S31.3,7.5,31.3,16C31.3,24.5,24.4,31.3,16,31.3z"/>
</svg>

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

@@ -1,299 +1,299 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<path fill="#4D4846" d="M4.237,30.16l-0.001-1.773L4.237,30.16c-0.632,0-1.224-0.246-1.669-0.693
c-0.444-0.446-0.688-1.039-0.686-1.669V3.964c0-1.298,1.056-2.354,2.354-2.354l23.841,0c0.631,0,1.224,0.246,1.669,0.692
c0.444,0.446,0.688,1.039,0.686,1.669v23.835c0,1.298-1.056,2.354-2.354,2.354H4.237z"/>
<path fill="#231D13" d="M3.941,29.273v-0.029c-0.28-0.057-0.539-0.195-0.745-0.402c-0.276-0.278-0.429-0.648-0.427-1.041V3.964
c0-0.81,0.657-1.468,1.467-1.468l23.841,0c0.394,0,0.764,0.153,1.041,0.432c0.276,0.278,0.429,0.647,0.427,1.041v23.837
c0,0.81-0.657,1.468-1.467,1.468H3.941z"/>
<path fill="#EEE8D8" d="M4.237,28.978l-0.001-0.591L4.237,28.978c-0.315,0-0.609-0.122-0.832-0.345
c-0.221-0.222-0.343-0.518-0.341-0.831V3.964c0-0.646,0.525-1.172,1.172-1.172l23.841,0c0.313,0,0.609,0.122,0.832,0.345
c0.221,0.222,0.343,0.518,0.342,0.831v23.838c0,0.646-0.526,1.172-1.173,1.172H4.237z"/>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.1577" y1="3.2583" x2="16.1577" y2="28.5112">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.2701" style="stop-color:#B0A289"/>
<stop offset="0.4539" style="stop-color:#AB9F86"/>
<stop offset="0.612" style="stop-color:#A39B81"/>
<stop offset="0.7556" style="stop-color:#999579"/>
<stop offset="0.8881" style="stop-color:#8A8B6E"/>
<stop offset="1" style="stop-color:#797E61"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M28.196,3.258c0.325,0,0.589,0.263,0.588,0.588v24.077c0,0.325-0.263,0.587-0.587,0.587H4.118
c-0.324,0.001-0.589-0.262-0.587-0.588V3.846c0-0.326,0.262-0.588,0.587-0.587L28.196,3.258z"/>
<g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="5.8398" y1="28.5112" x2="5.8398" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="5.741" y="3.259" fill="url(#SVGID_2_)" width="0.197" height="25.252"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="8.105" y1="28.5112" x2="8.105" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="8.007" y="3.259" fill="url(#SVGID_3_)" width="0.196" height="25.252"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="12.7832" y1="28.5112" x2="12.7832" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="12.685" y="3.259" fill="url(#SVGID_4_)" width="0.197" height="25.252"/>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="18.249" y1="28.5112" x2="18.249" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="18.15" y="3.259" fill="url(#SVGID_5_)" width="0.197" height="25.252"/>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="19.481" y1="28.5112" x2="19.481" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="19.383" y="3.259" fill="url(#SVGID_6_)" width="0.196" height="25.252"/>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="23.9121" y1="28.5112" x2="23.9121" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="23.813" y="3.259" fill="url(#SVGID_7_)" width="0.197" height="25.252"/>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="26.7686" y1="28.5112" x2="26.7686" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="26.67" y="3.259" fill="url(#SVGID_8_)" width="0.197" height="25.252"/>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="27.5195" y1="28.5112" x2="27.5195" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="27.421" y="3.259" fill="url(#SVGID_9_)" width="0.197" height="25.252"/>
</g>
<g>
<path fill="#B5AFA0" d="M22.065,24.303c-0.554,0-0.955,0.352-0.955,0.836c0,0.293,0.123,0.542,0.395,0.791
c-0.035-0.012-0.071-0.018-0.106-0.018c-0.115,0-0.314,0.074-0.333,0.354c-0.003,0.049-0.014,0.228-0.014,0.392
c0,0.067,0,0.27,0.233,0.372c0.155,0.068,0.32,0.099,0.534,0.099c0.241,0,0.441-0.053,0.613-0.164
c0.258-0.169,0.404-0.44,0.404-0.747c0-0.36-0.172-0.607-0.393-0.807c0.033,0,0.329-0.018,0.329-0.385
c0-0.147,0.005-0.229,0.008-0.276l0-0.009l0.002-0.056c0-0.135-0.086-0.288-0.28-0.328C22.429,24.337,22.281,24.303,22.065,24.303
L22.065,24.303z M21.858,26.392c-0.097,0-0.108-0.039-0.119-0.072c-0.008-0.027-0.013-0.056-0.013-0.064
c0-0.069-0.017-0.128-0.044-0.178l0.092,0.072c0.164,0.128,0.164,0.178,0.164,0.218C21.936,26.375,21.912,26.392,21.858,26.392
L21.858,26.392z"/>
<path fill="#B5AFA0" d="M19.213,24.303c-0.044,0-0.269,0.014-0.328,0.291v0c0,0-0.066,0.294-0.066,0.39
c0,0.227,0.164,0.345,0.325,0.345h0.232l0.074-0.213c0.016-0.001,0.035-0.002,0.06-0.003l0.112-0.003v0.855
c0,0.19,0,0.372-0.006,0.49c-0.163,0.052-0.238,0.181-0.238,0.305c0,0.163,0.122,0.328,0.356,0.328
c0.068,0,0.157-0.002,0.234-0.005l0.124-0.003l0.126,0.003c0.089,0.002,0.203,0.005,0.319,0.005c0.229,0,0.354-0.169,0.354-0.328
c0-0.148-0.108-0.304-0.309-0.321c-0.006-0.127-0.006-0.297-0.006-0.474v-0.856l0.052,0.001c0.026,0,0.047,0.002,0.064,0.004
c0.058,0.192,0.214,0.243,0.311,0.243c0.141,0,0.302-0.098,0.325-0.314c0.001-0.068,0.004-0.137,0.006-0.202l0.003-0.158
c0-0.284-0.211-0.359-0.322-0.359c-0.041,0-0.074,0.007-0.116,0.016c-0.041,0.006-0.089,0.013-0.156,0.013h-1.124
c-0.084,0-0.18-0.005-0.253-0.013C19.338,24.327,19.285,24.303,19.213,24.303L19.213,24.303z"/>
<path fill="#B5AFA0" d="M17.826,24.303c-0.966,0-1.472,0.71-1.472,1.412c0,0.702,0.496,1.413,1.443,1.413
c0.854,0,1.475-0.615,1.475-1.463C19.272,24.85,18.691,24.303,17.826,24.303L17.826,24.303z M17.917,26.386
c-0.421,0-0.571-0.409-0.571-0.759c0-0.588,0.29-0.588,0.398-0.588c0.317,0,0.531,0.293,0.531,0.73
C18.275,26.051,18.213,26.386,17.917,26.386L17.917,26.386z"/>
<path fill="#B5AFA0" d="M15.193,24.303c-0.966,0-1.472,0.71-1.472,1.412c0,0.702,0.496,1.413,1.443,1.413
c0.854,0,1.475-0.615,1.475-1.463C16.64,24.85,16.059,24.303,15.193,24.303L15.193,24.303z M15.284,26.386
c-0.421,0-0.571-0.409-0.571-0.759c0-0.588,0.29-0.588,0.398-0.588c0.317,0,0.531,0.293,0.531,0.73
C15.643,26.051,15.58,26.386,15.284,26.386L15.284,26.386z"/>
<path fill="#B5AFA0" d="M13.611,24.343c-0.064,0-0.151,0.002-0.228,0.005l-0.129,0.003l-0.13-0.003
c-0.084-0.002-0.186-0.005-0.279-0.005c-0.225,0-0.328,0.141-0.353,0.264c-0.025-0.123-0.128-0.264-0.353-0.264
c-0.065,0-0.153,0.002-0.23,0.005l-0.127,0.003l-0.13-0.003c-0.084-0.002-0.186-0.005-0.279-0.005
c-0.264,0-0.359,0.194-0.359,0.325c0,0.143,0.1,0.294,0.286,0.321c0.001,0.084,0.001,0.212,0.001,0.477v0.5
c0,0.19,0,0.373-0.006,0.49c-0.163,0.052-0.238,0.181-0.238,0.305c0,0.163,0.122,0.328,0.356,0.328
c0.067,0,0.156-0.002,0.233-0.005l0.125-0.003l0.126,0.003c0.089,0.002,0.201,0.005,0.316,0.005c0.177,0,0.292-0.099,0.336-0.216
c0.044,0.119,0.159,0.216,0.34,0.216c0.065,0,0.153-0.002,0.229-0.005l0.125-0.003l0.128,0.003
c0.089,0.002,0.201,0.005,0.315,0.005c0.231,0,0.356-0.169,0.356-0.328c0-0.147-0.108-0.304-0.309-0.321
c-0.006-0.127-0.006-0.297-0.006-0.474v-0.5c0-0.282,0-0.408,0.001-0.488c0.165-0.048,0.243-0.18,0.243-0.31
C13.971,24.537,13.875,24.343,13.611,24.343L13.611,24.343z M12.255,24.978c0.137-0.041,0.214-0.138,0.236-0.245
c0.024,0.123,0.119,0.233,0.279,0.256c0.001,0.057,0.001,0.133,0.002,0.256h-0.519C12.254,25.11,12.254,25.033,12.255,24.978
L12.255,24.978z M12.254,25.998h0.519c0,0.179,0,0.347-0.006,0.457c-0.114,0.036-0.185,0.111-0.217,0.195
c-0.04-0.107-0.138-0.199-0.289-0.211C12.254,26.32,12.254,26.163,12.254,25.998L12.254,25.998z"/>
<path fill="#B5AFA0" d="M10.452,24.303c-0.554,0-0.955,0.352-0.955,0.836c0,0.293,0.123,0.542,0.395,0.791
c-0.035-0.012-0.071-0.018-0.106-0.018c-0.115,0-0.314,0.074-0.333,0.354c-0.003,0.049-0.014,0.228-0.014,0.392
c0,0.067,0,0.27,0.233,0.372c0.155,0.068,0.32,0.099,0.534,0.099c0.241,0,0.441-0.053,0.613-0.164
c0.258-0.169,0.404-0.44,0.404-0.747c0-0.36-0.172-0.607-0.393-0.807c0.033,0,0.329-0.018,0.329-0.385
c0-0.147,0.005-0.229,0.008-0.276l0-0.009l0.002-0.056c0-0.135-0.086-0.288-0.28-0.328C10.815,24.337,10.667,24.303,10.452,24.303
L10.452,24.303z M10.245,26.392c-0.097,0-0.108-0.039-0.119-0.072c-0.008-0.027-0.013-0.056-0.013-0.064
c0-0.069-0.017-0.128-0.044-0.178l0.092,0.072c0.164,0.128,0.164,0.178,0.164,0.218C10.323,26.375,10.299,26.392,10.245,26.392
L10.245,26.392z"/>
</g>
<g>
<path fill="#EEE8D8" d="M16.152,16.337c-0.093,0-0.181-0.036-0.247-0.102l-2.101-2.1c-0.064-0.065-0.102-0.153-0.102-0.247
c0-0.093,0.037-0.181,0.103-0.247l2.1-2.1c0.066-0.066,0.154-0.102,0.247-0.102s0.181,0.036,0.246,0.102l2.101,2.1
c0.066,0.066,0.103,0.154,0.103,0.247c0,0.094-0.036,0.182-0.104,0.248l-2.1,2.1C16.333,16.301,16.245,16.337,16.152,16.337z"/>
<path fill="none" d="M18.305,13.939l-2.101,2.101c-0.029,0.028-0.075,0.028-0.104,0l-2.1-2.101c-0.028-0.028-0.028-0.074,0-0.103
l2.1-2.1c0.028-0.028,0.074-0.028,0.104,0l2.101,2.1C18.332,13.865,18.332,13.911,18.305,13.939z"/>
<path fill="#B5AFA0" d="M7.621,13.089l0.038-0.311c0.486-3.856,3.52-6.881,7.377-7.355l0.31-0.038v1.91L15.11,7.33
c-2.835,0.419-5.114,2.691-5.544,5.524l-0.035,0.235H7.621z"/>
<path fill="#4D4846" d="M15.07,7.056v-1.36c-3.72,0.458-6.669,3.399-7.137,7.116h1.359C9.743,9.842,12.097,7.496,15.07,7.056z"/>
<path fill="#B5AFA0" d="M22.635,13.088l-0.036-0.234c-0.424-2.796-2.58-5.004-5.367-5.494l-0.228-0.041V5.4l0.316,0.046
c3.756,0.548,6.711,3.563,7.186,7.332l0.039,0.311H22.635z"/>
<path fill="#4D4846" d="M17.28,5.72v1.368c2.886,0.508,5.151,2.816,5.591,5.725h1.361C23.771,9.157,20.912,6.25,17.28,5.72z"/>
<path fill="#B5AFA0" d="M16.957,20.384l0.23-0.039c2.77-0.468,4.938-2.643,5.396-5.414l0.038-0.231h1.916l-0.043,0.314
c-0.514,3.74-3.483,6.718-7.223,7.242L16.957,22.3V20.384z"/>
<path fill="#4D4846" d="M17.233,20.617v1.366c3.624-0.509,6.488-3.379,6.986-7.007h-1.364
C22.38,17.856,20.111,20.131,17.233,20.617z"/>
<path fill="#B5AFA0" d="M15.036,22.274c-3.813-0.469-6.841-3.455-7.364-7.26L7.629,14.7h1.916l0.037,0.231
c0.468,2.832,2.69,5.017,5.528,5.436l0.235,0.035v1.911L15.036,22.274z"/>
<path fill="#4D4846" d="M9.311,14.976H7.945c0.504,3.673,3.436,6.571,7.125,7.025v-1.36C12.127,20.205,9.794,17.903,9.311,14.976z"
/>
<path fill="#B5AFA0" d="M10.455,13.089l0.067-0.331c0.45-2.229,2.258-4,4.499-4.405l0.324-0.058v1.767l-0.097,0.083
c-1.173,0.997-2.067,1.956-2.884,2.854l-0.082,0.091H10.455z"/>
<path fill="#4D4846" d="M15.07,9.934V8.625c-2.146,0.388-3.847,2.057-4.277,4.188h1.368C13.069,11.812,13.935,10.897,15.07,9.934z"
/>
<path fill="#B5AFA0" d="M19.735,13.089l-0.04-0.147c-0.24-0.277-1.706-1.866-2.601-2.667l-0.091-0.083V8.337l0.34,0.083
c2.112,0.508,3.754,2.211,4.185,4.338l0.067,0.331L19.735,13.089z"/>
<path fill="#4D4846" d="M17.28,8.688v1.38c1,0.898,2.659,2.714,2.666,2.745h1.312C20.847,10.782,19.283,9.17,17.28,8.688z"/>
<path fill="#B5AFA0" d="M15.021,19.4c-2.259-0.408-4.021-2.123-4.491-4.367L10.461,14.7h1.792l0.082,0.087
c0.84,0.895,3.011,2.917,3.011,2.917v1.756L15.021,19.4z"/>
<path fill="#4D4846" d="M12.134,14.976h-1.333c0.442,2.114,2.135,3.767,4.27,4.152v-1.302
C15.036,17.818,13.053,15.955,12.134,14.976z"/>
<path fill="#B5AFA0" d="M16.957,17.628c0,0,2.515-2.518,2.727-2.776l0.043-0.153h1.863l-0.07,0.333
c-0.445,2.128-2.103,3.822-4.224,4.313l-0.339,0.078V17.628z"/>
<path fill="#4D4846" d="M17.233,17.756v1.32c2.015-0.466,3.591-2.071,4.017-4.101h-1.313C19.92,15.035,17.26,17.748,17.233,17.756z
"/>
<path fill="#B5AFA0" d="M16.152,16.337c-0.093,0-0.181-0.036-0.247-0.102l-2.101-2.1c-0.064-0.065-0.102-0.153-0.102-0.247
c0-0.093,0.037-0.181,0.103-0.247l2.1-2.1c0.066-0.066,0.154-0.102,0.247-0.102s0.181,0.036,0.246,0.102l2.101,2.1
c0.066,0.066,0.103,0.154,0.103,0.247c0,0.094-0.036,0.182-0.104,0.248l-2.1,2.1C16.333,16.301,16.245,16.337,16.152,16.337z"/>
<path fill="#4D4846" d="M16.204,11.736c-0.029-0.028-0.075-0.028-0.104,0l-2.1,2.1c-0.028,0.029-0.028,0.074,0,0.103l2.1,2.101
c0.028,0.028,0.074,0.028,0.104,0l2.101-2.101c0.027-0.028,0.027-0.074,0-0.103L16.204,11.736z"/>
</g>
<g>
<g>
<path fill="#231D13" d="M9.791,26.754c-0.046-0.02-0.054-0.034-0.054-0.097c0-0.156,0.011-0.326,0.014-0.372
c0.003-0.043,0.012-0.074,0.034-0.074c0.025,0,0.028,0.026,0.028,0.048c0,0.037,0.012,0.097,0.025,0.145
c0.063,0.21,0.23,0.287,0.406,0.287c0.255,0,0.38-0.173,0.38-0.324c0-0.139-0.042-0.27-0.278-0.454l-0.13-0.102
c-0.313-0.244-0.42-0.443-0.42-0.673c0-0.312,0.261-0.536,0.655-0.536c0.185,0,0.304,0.028,0.377,0.048
c0.026,0.005,0.04,0.014,0.04,0.034c0,0.037-0.011,0.12-0.011,0.341c0,0.063-0.009,0.085-0.031,0.085
c-0.021,0-0.029-0.017-0.029-0.051c0-0.026-0.014-0.114-0.073-0.188c-0.043-0.054-0.125-0.139-0.31-0.139
c-0.21,0-0.338,0.122-0.338,0.292c0,0.13,0.065,0.23,0.301,0.409l0.08,0.06c0.343,0.258,0.465,0.454,0.465,0.724
c0,0.165-0.063,0.36-0.267,0.494c-0.142,0.091-0.301,0.116-0.451,0.116C10.041,26.828,9.913,26.808,9.791,26.754z"/>
</g>
<g>
<path fill="#231D13" d="M13.056,25.545c0.008,0,0.017-0.006,0.017-0.02v-0.06c0-0.432,0-0.511-0.006-0.602
c-0.006-0.097-0.028-0.142-0.122-0.162c-0.022-0.005-0.07-0.008-0.11-0.008c-0.031,0-0.049-0.006-0.049-0.026
c0-0.02,0.021-0.025,0.06-0.025c0.153,0,0.332,0.009,0.409,0.009c0.068,0,0.247-0.009,0.357-0.009c0.04,0,0.06,0.006,0.06,0.025
c0,0.02-0.017,0.026-0.051,0.026c-0.022,0-0.049,0.003-0.082,0.008c-0.077,0.014-0.1,0.063-0.105,0.162
c-0.006,0.091-0.006,0.17-0.006,0.602v0.5c0,0.261,0,0.485,0.015,0.607c0.009,0.079,0.025,0.142,0.11,0.153
c0.04,0.005,0.103,0.011,0.145,0.011c0.031,0,0.046,0.008,0.046,0.022c0,0.02-0.022,0.028-0.057,0.028
c-0.185,0-0.363-0.008-0.443-0.008c-0.065,0-0.244,0.008-0.354,0.008c-0.04,0-0.06-0.008-0.06-0.028
c0-0.014,0.012-0.022,0.046-0.022c0.042,0,0.076-0.006,0.102-0.011c0.057-0.012,0.071-0.074,0.082-0.156
c0.015-0.119,0.015-0.343,0.015-0.604v-0.25c0-0.011-0.009-0.017-0.017-0.017h-1.085c-0.008,0-0.017,0.003-0.017,0.017v0.25
c0,0.261,0,0.485,0.014,0.607c0.009,0.079,0.026,0.142,0.111,0.153c0.039,0.005,0.102,0.011,0.145,0.011
c0.031,0,0.045,0.008,0.045,0.022c0,0.02-0.022,0.028-0.057,0.028c-0.185,0-0.363-0.008-0.442-0.008
c-0.065,0-0.244,0.008-0.357,0.008c-0.037,0-0.057-0.008-0.057-0.028c0-0.014,0.011-0.022,0.045-0.022
c0.043,0,0.077-0.006,0.103-0.011c0.057-0.012,0.07-0.074,0.082-0.156c0.015-0.119,0.015-0.343,0.015-0.604v-0.5
c0-0.432,0-0.511-0.006-0.602c-0.006-0.097-0.028-0.142-0.122-0.162c-0.022-0.005-0.071-0.008-0.111-0.008
c-0.03,0-0.048-0.006-0.048-0.026c0-0.02,0.02-0.025,0.06-0.025c0.153,0,0.332,0.009,0.409,0.009c0.067,0,0.246-0.009,0.357-0.009
c0.04,0,0.06,0.006,0.06,0.025c0,0.02-0.018,0.026-0.051,0.026c-0.023,0-0.049,0.003-0.083,0.008
c-0.076,0.014-0.099,0.063-0.104,0.162c-0.006,0.091-0.006,0.17-0.006,0.602v0.06c0,0.014,0.009,0.02,0.017,0.02H13.056z"/>
</g>
<g>
<path fill="#231D13" d="M14.021,25.715c0-0.485,0.32-1.112,1.172-1.112c0.707,0,1.146,0.412,1.146,1.062s-0.454,1.164-1.175,1.164
C14.351,26.828,14.021,26.218,14.021,25.715z M15.942,25.77c0-0.636-0.366-1.03-0.831-1.03c-0.326,0-0.698,0.182-0.698,0.888
c0,0.59,0.326,1.059,0.871,1.059C15.483,26.686,15.942,26.59,15.942,25.77z"/>
</g>
<g>
<path fill="#231D13" d="M16.654,25.715c0-0.485,0.32-1.112,1.172-1.112c0.707,0,1.146,0.412,1.146,1.062s-0.454,1.164-1.175,1.164
C16.983,26.828,16.654,26.218,16.654,25.715z M18.575,25.77c0-0.636-0.366-1.03-0.831-1.03c-0.326,0-0.698,0.182-0.698,0.888
c0,0.59,0.326,1.059,0.871,1.059C18.116,26.686,18.575,26.59,18.575,25.77z"/>
</g>
<g>
<path fill="#231D13" d="M19.922,24.802l-0.423,0.011c-0.164,0.006-0.232,0.02-0.275,0.083c-0.028,0.042-0.042,0.076-0.048,0.099
c-0.006,0.022-0.015,0.034-0.031,0.034c-0.021,0-0.025-0.014-0.025-0.045c0-0.045,0.054-0.304,0.06-0.327
c0.008-0.037,0.017-0.054,0.034-0.054c0.022,0,0.051,0.028,0.122,0.034c0.082,0.008,0.189,0.014,0.283,0.014h1.124
c0.091,0,0.153-0.009,0.196-0.014c0.042-0.009,0.064-0.014,0.076-0.014c0.02,0,0.022,0.017,0.022,0.06
c0,0.06-0.008,0.255-0.008,0.329c-0.003,0.028-0.009,0.045-0.026,0.045c-0.022,0-0.028-0.014-0.031-0.057l-0.002-0.031
c-0.006-0.074-0.083-0.153-0.335-0.159l-0.358-0.008v1.164c0,0.261,0,0.485,0.015,0.607c0.009,0.079,0.025,0.142,0.11,0.153
c0.04,0.005,0.103,0.011,0.146,0.011c0.03,0,0.045,0.008,0.045,0.022c0,0.02-0.022,0.028-0.054,0.028
c-0.188,0-0.366-0.008-0.445-0.008c-0.065,0-0.244,0.008-0.358,0.008c-0.036,0-0.057-0.008-0.057-0.028
c0-0.014,0.012-0.022,0.046-0.022c0.042,0,0.076-0.006,0.102-0.011c0.057-0.012,0.074-0.074,0.083-0.156
c0.014-0.119,0.014-0.343,0.014-0.604V24.802z"/>
</g>
<g>
<path fill="#231D13" d="M21.404,26.754c-0.046-0.02-0.054-0.034-0.054-0.097c0-0.156,0.011-0.326,0.014-0.372
c0.003-0.043,0.012-0.074,0.034-0.074c0.025,0,0.028,0.026,0.028,0.048c0,0.037,0.012,0.097,0.025,0.145
c0.063,0.21,0.23,0.287,0.406,0.287c0.255,0,0.38-0.173,0.38-0.324c0-0.139-0.042-0.27-0.278-0.454l-0.13-0.102
c-0.313-0.244-0.42-0.443-0.42-0.673c0-0.312,0.261-0.536,0.655-0.536c0.185,0,0.304,0.028,0.377,0.048
c0.026,0.005,0.04,0.014,0.04,0.034c0,0.037-0.011,0.12-0.011,0.341c0,0.063-0.009,0.085-0.031,0.085
c-0.021,0-0.029-0.017-0.029-0.051c0-0.026-0.014-0.114-0.073-0.188c-0.043-0.054-0.125-0.139-0.31-0.139
c-0.21,0-0.338,0.122-0.338,0.292c0,0.13,0.065,0.23,0.301,0.409l0.08,0.06c0.343,0.258,0.465,0.454,0.465,0.724
c0,0.165-0.063,0.36-0.267,0.494c-0.142,0.091-0.301,0.116-0.451,0.116C21.654,26.828,21.526,26.808,21.404,26.754z"/>
</g>
</g>
<g>
<path fill="#231D13" d="M9.328,9.176c-0.446,0.645-0.803,1.356-1.052,2.117h1.433c0.316-0.789,0.773-1.505,1.342-2.117H9.328z"/>
<path fill="#231D13" d="M15.07,5.696c-1.945,0.24-3.679,1.159-4.959,2.513h2.055c0.849-0.59,1.836-0.995,2.904-1.153V5.696z"/>
<path fill="#231D13" d="M17.28,5.72v1.368c0.997,0.176,1.92,0.566,2.719,1.122h2.056C20.815,6.898,19.15,5.993,17.28,5.72z"/>
<path fill="#231D13" d="M21.112,9.176c0.569,0.612,1.028,1.328,1.346,2.117h1.432c-0.249-0.761-0.604-1.473-1.052-2.117H21.112z"/>
<path fill="#231D13" d="M17.233,21.983c1.613-0.227,3.076-0.922,4.247-1.944h-2.429c-0.567,0.272-1.178,0.47-1.818,0.578V21.983z"
/>
<path fill="#231D13" d="M22.56,16.127c-0.274,0.78-0.686,1.495-1.204,2.117h1.666c0.412-0.65,0.735-1.361,0.954-2.117H22.56z"/>
<path fill="#231D13" d="M15.07,20.64c-0.691-0.102-1.35-0.309-1.957-0.601h-2.427c1.204,1.05,2.716,1.756,4.384,1.961V20.64z"/>
<path fill="#231D13" d="M8.191,16.126c0.217,0.756,0.541,1.468,0.953,2.118h1.666c-0.519-0.622-0.93-1.337-1.205-2.118H8.191z"/>
<path fill="#231D13" d="M15.07,9.176h-1.571c-0.902,0.485-1.649,1.222-2.146,2.117h2.244c0.453-0.452,0.932-0.9,1.473-1.36V9.176z"
/>
<path fill="#231D13" d="M18.549,9.176H17.28v0.892c0.367,0.33,0.822,0.783,1.252,1.226h2.163
C20.198,10.398,19.452,9.662,18.549,9.176z"/>
<path fill="#231D13" d="M13.274,16.127l-2.091,0c0.397,0.853,1.015,1.582,1.776,2.118h2.11v-0.418
C15.048,17.821,14.144,16.977,13.274,16.127z"/>
<path fill="#231D13" d="M20.865,16.127h-2.024c-0.743,0.763-1.593,1.625-1.607,1.629v0.488h1.855
C19.852,17.708,20.468,16.979,20.865,16.127z"/>
</g>
<g>
<path fill="#231D13" d="M15.07,5.943V5.696c-3.72,0.458-6.669,3.399-7.137,7.116h0.3C8.769,9.282,11.546,6.496,15.07,5.943z"/>
<path fill="#231D13" d="M20.343,8.479c1.327,1.054,2.264,2.58,2.528,4.333h0.218C22.764,11.031,21.758,9.495,20.343,8.479z"/>
<path fill="#231D13" d="M17.546,5.923c1.316,0.192,2.526,0.705,3.563,1.444c-1.093-0.849-2.396-1.438-3.828-1.647v1.368
c0.091,0.016,0.176,0.049,0.266,0.069V5.923z"/>
<path fill="#231D13" d="M23.121,15.179h1.054c0.011-0.069,0.035-0.133,0.045-0.203h-1.364c-0.476,2.881-2.744,5.156-5.622,5.641
v1.366c0.091-0.013,0.176-0.044,0.266-0.06V20.82C20.377,20.334,22.646,18.06,23.121,15.179z"/>
<path fill="#231D13" d="M8.211,15.179h1.15c-0.014-0.069-0.039-0.133-0.051-0.203H7.945c0.316,2.304,1.588,4.301,3.401,5.583
C9.677,19.274,8.511,17.367,8.211,15.179z"/>
<path fill="#231D13" d="M15.07,20.64c-1.068-0.158-2.053-0.568-2.9-1.159c0.836,0.645,1.822,1.096,2.9,1.3V20.64z"/>
<path fill="#231D13" d="M15.07,8.897V8.625c-2.146,0.388-3.847,2.057-4.277,4.188h0.323C11.59,10.871,13.121,9.355,15.07,8.897z"/>
<path fill="#231D13" d="M17.546,10.271v-1.38c0.687,0.166,1.316,0.472,1.871,0.874c-0.614-0.507-1.338-0.885-2.137-1.077v1.38"/>
<path fill="#231D13" d="M11.066,15.179h1.263c-0.065-0.068-0.138-0.142-0.195-0.203h-1.333c0.284,1.357,1.087,2.519,2.188,3.283
C12.027,17.498,11.326,16.423,11.066,15.179z"/>
<path fill="#231D13" d="M20.202,15.179h0.989c0.018-0.068,0.044-0.133,0.059-0.203h-1.313c-0.017,0.059-2.677,2.772-2.703,2.781
v1.32c0.091-0.021,0.177-0.057,0.266-0.082v-1.035"/>
<path fill="#231D13" d="M14.267,14.04l2.1-2.1c0.011-0.011,0.026,0.002,0.041,0l-0.203-0.203c-0.029-0.028-0.075-0.028-0.104,0
l-2.1,2.1c-0.028,0.029-0.028,0.074,0,0.103l2.1,2.101c0.017,0.017,0.04,0.003,0.063,0l-1.896-1.897
C14.238,14.114,14.238,14.068,14.267,14.04z"/>
<path fill="#231D13" d="M19.417,9.765"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<path fill="#4D4846" d="M4.237,30.16l-0.001-1.773L4.237,30.16c-0.632,0-1.224-0.246-1.669-0.693
c-0.444-0.446-0.688-1.039-0.686-1.669V3.964c0-1.298,1.056-2.354,2.354-2.354l23.841,0c0.631,0,1.224,0.246,1.669,0.692
c0.444,0.446,0.688,1.039,0.686,1.669v23.835c0,1.298-1.056,2.354-2.354,2.354H4.237z"/>
<path fill="#231D13" d="M3.941,29.273v-0.029c-0.28-0.057-0.539-0.195-0.745-0.402c-0.276-0.278-0.429-0.648-0.427-1.041V3.964
c0-0.81,0.657-1.468,1.467-1.468l23.841,0c0.394,0,0.764,0.153,1.041,0.432c0.276,0.278,0.429,0.647,0.427,1.041v23.837
c0,0.81-0.657,1.468-1.467,1.468H3.941z"/>
<path fill="#EEE8D8" d="M4.237,28.978l-0.001-0.591L4.237,28.978c-0.315,0-0.609-0.122-0.832-0.345
c-0.221-0.222-0.343-0.518-0.341-0.831V3.964c0-0.646,0.525-1.172,1.172-1.172l23.841,0c0.313,0,0.609,0.122,0.832,0.345
c0.221,0.222,0.343,0.518,0.342,0.831v23.838c0,0.646-0.526,1.172-1.173,1.172H4.237z"/>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.1577" y1="3.2583" x2="16.1577" y2="28.5112">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.2701" style="stop-color:#B0A289"/>
<stop offset="0.4539" style="stop-color:#AB9F86"/>
<stop offset="0.612" style="stop-color:#A39B81"/>
<stop offset="0.7556" style="stop-color:#999579"/>
<stop offset="0.8881" style="stop-color:#8A8B6E"/>
<stop offset="1" style="stop-color:#797E61"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M28.196,3.258c0.325,0,0.589,0.263,0.588,0.588v24.077c0,0.325-0.263,0.587-0.587,0.587H4.118
c-0.324,0.001-0.589-0.262-0.587-0.588V3.846c0-0.326,0.262-0.588,0.587-0.587L28.196,3.258z"/>
<g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="5.8398" y1="28.5112" x2="5.8398" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="5.741" y="3.259" fill="url(#SVGID_2_)" width="0.197" height="25.252"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="8.105" y1="28.5112" x2="8.105" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="8.007" y="3.259" fill="url(#SVGID_3_)" width="0.196" height="25.252"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="12.7832" y1="28.5112" x2="12.7832" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="12.685" y="3.259" fill="url(#SVGID_4_)" width="0.197" height="25.252"/>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="18.249" y1="28.5112" x2="18.249" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="18.15" y="3.259" fill="url(#SVGID_5_)" width="0.197" height="25.252"/>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="19.481" y1="28.5112" x2="19.481" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="19.383" y="3.259" fill="url(#SVGID_6_)" width="0.196" height="25.252"/>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="23.9121" y1="28.5112" x2="23.9121" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="23.813" y="3.259" fill="url(#SVGID_7_)" width="0.197" height="25.252"/>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="26.7686" y1="28.5112" x2="26.7686" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="26.67" y="3.259" fill="url(#SVGID_8_)" width="0.197" height="25.252"/>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="27.5195" y1="28.5112" x2="27.5195" y2="3.2588">
<stop offset="0" style="stop-color:#B2A38B"/>
<stop offset="0.1227" style="stop-color:#ADA087"/>
<stop offset="0.295" style="stop-color:#A49A81"/>
<stop offset="0.4965" style="stop-color:#948F75"/>
<stop offset="0.7203" style="stop-color:#7D7C63"/>
<stop offset="0.9598" style="stop-color:#5F634C"/>
<stop offset="1" style="stop-color:#5A5E47"/>
</linearGradient>
<rect x="27.421" y="3.259" fill="url(#SVGID_9_)" width="0.197" height="25.252"/>
</g>
<g>
<path fill="#B5AFA0" d="M22.065,24.303c-0.554,0-0.955,0.352-0.955,0.836c0,0.293,0.123,0.542,0.395,0.791
c-0.035-0.012-0.071-0.018-0.106-0.018c-0.115,0-0.314,0.074-0.333,0.354c-0.003,0.049-0.014,0.228-0.014,0.392
c0,0.067,0,0.27,0.233,0.372c0.155,0.068,0.32,0.099,0.534,0.099c0.241,0,0.441-0.053,0.613-0.164
c0.258-0.169,0.404-0.44,0.404-0.747c0-0.36-0.172-0.607-0.393-0.807c0.033,0,0.329-0.018,0.329-0.385
c0-0.147,0.005-0.229,0.008-0.276l0-0.009l0.002-0.056c0-0.135-0.086-0.288-0.28-0.328C22.429,24.337,22.281,24.303,22.065,24.303
L22.065,24.303z M21.858,26.392c-0.097,0-0.108-0.039-0.119-0.072c-0.008-0.027-0.013-0.056-0.013-0.064
c0-0.069-0.017-0.128-0.044-0.178l0.092,0.072c0.164,0.128,0.164,0.178,0.164,0.218C21.936,26.375,21.912,26.392,21.858,26.392
L21.858,26.392z"/>
<path fill="#B5AFA0" d="M19.213,24.303c-0.044,0-0.269,0.014-0.328,0.291v0c0,0-0.066,0.294-0.066,0.39
c0,0.227,0.164,0.345,0.325,0.345h0.232l0.074-0.213c0.016-0.001,0.035-0.002,0.06-0.003l0.112-0.003v0.855
c0,0.19,0,0.372-0.006,0.49c-0.163,0.052-0.238,0.181-0.238,0.305c0,0.163,0.122,0.328,0.356,0.328
c0.068,0,0.157-0.002,0.234-0.005l0.124-0.003l0.126,0.003c0.089,0.002,0.203,0.005,0.319,0.005c0.229,0,0.354-0.169,0.354-0.328
c0-0.148-0.108-0.304-0.309-0.321c-0.006-0.127-0.006-0.297-0.006-0.474v-0.856l0.052,0.001c0.026,0,0.047,0.002,0.064,0.004
c0.058,0.192,0.214,0.243,0.311,0.243c0.141,0,0.302-0.098,0.325-0.314c0.001-0.068,0.004-0.137,0.006-0.202l0.003-0.158
c0-0.284-0.211-0.359-0.322-0.359c-0.041,0-0.074,0.007-0.116,0.016c-0.041,0.006-0.089,0.013-0.156,0.013h-1.124
c-0.084,0-0.18-0.005-0.253-0.013C19.338,24.327,19.285,24.303,19.213,24.303L19.213,24.303z"/>
<path fill="#B5AFA0" d="M17.826,24.303c-0.966,0-1.472,0.71-1.472,1.412c0,0.702,0.496,1.413,1.443,1.413
c0.854,0,1.475-0.615,1.475-1.463C19.272,24.85,18.691,24.303,17.826,24.303L17.826,24.303z M17.917,26.386
c-0.421,0-0.571-0.409-0.571-0.759c0-0.588,0.29-0.588,0.398-0.588c0.317,0,0.531,0.293,0.531,0.73
C18.275,26.051,18.213,26.386,17.917,26.386L17.917,26.386z"/>
<path fill="#B5AFA0" d="M15.193,24.303c-0.966,0-1.472,0.71-1.472,1.412c0,0.702,0.496,1.413,1.443,1.413
c0.854,0,1.475-0.615,1.475-1.463C16.64,24.85,16.059,24.303,15.193,24.303L15.193,24.303z M15.284,26.386
c-0.421,0-0.571-0.409-0.571-0.759c0-0.588,0.29-0.588,0.398-0.588c0.317,0,0.531,0.293,0.531,0.73
C15.643,26.051,15.58,26.386,15.284,26.386L15.284,26.386z"/>
<path fill="#B5AFA0" d="M13.611,24.343c-0.064,0-0.151,0.002-0.228,0.005l-0.129,0.003l-0.13-0.003
c-0.084-0.002-0.186-0.005-0.279-0.005c-0.225,0-0.328,0.141-0.353,0.264c-0.025-0.123-0.128-0.264-0.353-0.264
c-0.065,0-0.153,0.002-0.23,0.005l-0.127,0.003l-0.13-0.003c-0.084-0.002-0.186-0.005-0.279-0.005
c-0.264,0-0.359,0.194-0.359,0.325c0,0.143,0.1,0.294,0.286,0.321c0.001,0.084,0.001,0.212,0.001,0.477v0.5
c0,0.19,0,0.373-0.006,0.49c-0.163,0.052-0.238,0.181-0.238,0.305c0,0.163,0.122,0.328,0.356,0.328
c0.067,0,0.156-0.002,0.233-0.005l0.125-0.003l0.126,0.003c0.089,0.002,0.201,0.005,0.316,0.005c0.177,0,0.292-0.099,0.336-0.216
c0.044,0.119,0.159,0.216,0.34,0.216c0.065,0,0.153-0.002,0.229-0.005l0.125-0.003l0.128,0.003
c0.089,0.002,0.201,0.005,0.315,0.005c0.231,0,0.356-0.169,0.356-0.328c0-0.147-0.108-0.304-0.309-0.321
c-0.006-0.127-0.006-0.297-0.006-0.474v-0.5c0-0.282,0-0.408,0.001-0.488c0.165-0.048,0.243-0.18,0.243-0.31
C13.971,24.537,13.875,24.343,13.611,24.343L13.611,24.343z M12.255,24.978c0.137-0.041,0.214-0.138,0.236-0.245
c0.024,0.123,0.119,0.233,0.279,0.256c0.001,0.057,0.001,0.133,0.002,0.256h-0.519C12.254,25.11,12.254,25.033,12.255,24.978
L12.255,24.978z M12.254,25.998h0.519c0,0.179,0,0.347-0.006,0.457c-0.114,0.036-0.185,0.111-0.217,0.195
c-0.04-0.107-0.138-0.199-0.289-0.211C12.254,26.32,12.254,26.163,12.254,25.998L12.254,25.998z"/>
<path fill="#B5AFA0" d="M10.452,24.303c-0.554,0-0.955,0.352-0.955,0.836c0,0.293,0.123,0.542,0.395,0.791
c-0.035-0.012-0.071-0.018-0.106-0.018c-0.115,0-0.314,0.074-0.333,0.354c-0.003,0.049-0.014,0.228-0.014,0.392
c0,0.067,0,0.27,0.233,0.372c0.155,0.068,0.32,0.099,0.534,0.099c0.241,0,0.441-0.053,0.613-0.164
c0.258-0.169,0.404-0.44,0.404-0.747c0-0.36-0.172-0.607-0.393-0.807c0.033,0,0.329-0.018,0.329-0.385
c0-0.147,0.005-0.229,0.008-0.276l0-0.009l0.002-0.056c0-0.135-0.086-0.288-0.28-0.328C10.815,24.337,10.667,24.303,10.452,24.303
L10.452,24.303z M10.245,26.392c-0.097,0-0.108-0.039-0.119-0.072c-0.008-0.027-0.013-0.056-0.013-0.064
c0-0.069-0.017-0.128-0.044-0.178l0.092,0.072c0.164,0.128,0.164,0.178,0.164,0.218C10.323,26.375,10.299,26.392,10.245,26.392
L10.245,26.392z"/>
</g>
<g>
<path fill="#EEE8D8" d="M16.152,16.337c-0.093,0-0.181-0.036-0.247-0.102l-2.101-2.1c-0.064-0.065-0.102-0.153-0.102-0.247
c0-0.093,0.037-0.181,0.103-0.247l2.1-2.1c0.066-0.066,0.154-0.102,0.247-0.102s0.181,0.036,0.246,0.102l2.101,2.1
c0.066,0.066,0.103,0.154,0.103,0.247c0,0.094-0.036,0.182-0.104,0.248l-2.1,2.1C16.333,16.301,16.245,16.337,16.152,16.337z"/>
<path fill="none" d="M18.305,13.939l-2.101,2.101c-0.029,0.028-0.075,0.028-0.104,0l-2.1-2.101c-0.028-0.028-0.028-0.074,0-0.103
l2.1-2.1c0.028-0.028,0.074-0.028,0.104,0l2.101,2.1C18.332,13.865,18.332,13.911,18.305,13.939z"/>
<path fill="#B5AFA0" d="M7.621,13.089l0.038-0.311c0.486-3.856,3.52-6.881,7.377-7.355l0.31-0.038v1.91L15.11,7.33
c-2.835,0.419-5.114,2.691-5.544,5.524l-0.035,0.235H7.621z"/>
<path fill="#4D4846" d="M15.07,7.056v-1.36c-3.72,0.458-6.669,3.399-7.137,7.116h1.359C9.743,9.842,12.097,7.496,15.07,7.056z"/>
<path fill="#B5AFA0" d="M22.635,13.088l-0.036-0.234c-0.424-2.796-2.58-5.004-5.367-5.494l-0.228-0.041V5.4l0.316,0.046
c3.756,0.548,6.711,3.563,7.186,7.332l0.039,0.311H22.635z"/>
<path fill="#4D4846" d="M17.28,5.72v1.368c2.886,0.508,5.151,2.816,5.591,5.725h1.361C23.771,9.157,20.912,6.25,17.28,5.72z"/>
<path fill="#B5AFA0" d="M16.957,20.384l0.23-0.039c2.77-0.468,4.938-2.643,5.396-5.414l0.038-0.231h1.916l-0.043,0.314
c-0.514,3.74-3.483,6.718-7.223,7.242L16.957,22.3V20.384z"/>
<path fill="#4D4846" d="M17.233,20.617v1.366c3.624-0.509,6.488-3.379,6.986-7.007h-1.364
C22.38,17.856,20.111,20.131,17.233,20.617z"/>
<path fill="#B5AFA0" d="M15.036,22.274c-3.813-0.469-6.841-3.455-7.364-7.26L7.629,14.7h1.916l0.037,0.231
c0.468,2.832,2.69,5.017,5.528,5.436l0.235,0.035v1.911L15.036,22.274z"/>
<path fill="#4D4846" d="M9.311,14.976H7.945c0.504,3.673,3.436,6.571,7.125,7.025v-1.36C12.127,20.205,9.794,17.903,9.311,14.976z"
/>
<path fill="#B5AFA0" d="M10.455,13.089l0.067-0.331c0.45-2.229,2.258-4,4.499-4.405l0.324-0.058v1.767l-0.097,0.083
c-1.173,0.997-2.067,1.956-2.884,2.854l-0.082,0.091H10.455z"/>
<path fill="#4D4846" d="M15.07,9.934V8.625c-2.146,0.388-3.847,2.057-4.277,4.188h1.368C13.069,11.812,13.935,10.897,15.07,9.934z"
/>
<path fill="#B5AFA0" d="M19.735,13.089l-0.04-0.147c-0.24-0.277-1.706-1.866-2.601-2.667l-0.091-0.083V8.337l0.34,0.083
c2.112,0.508,3.754,2.211,4.185,4.338l0.067,0.331L19.735,13.089z"/>
<path fill="#4D4846" d="M17.28,8.688v1.38c1,0.898,2.659,2.714,2.666,2.745h1.312C20.847,10.782,19.283,9.17,17.28,8.688z"/>
<path fill="#B5AFA0" d="M15.021,19.4c-2.259-0.408-4.021-2.123-4.491-4.367L10.461,14.7h1.792l0.082,0.087
c0.84,0.895,3.011,2.917,3.011,2.917v1.756L15.021,19.4z"/>
<path fill="#4D4846" d="M12.134,14.976h-1.333c0.442,2.114,2.135,3.767,4.27,4.152v-1.302
C15.036,17.818,13.053,15.955,12.134,14.976z"/>
<path fill="#B5AFA0" d="M16.957,17.628c0,0,2.515-2.518,2.727-2.776l0.043-0.153h1.863l-0.07,0.333
c-0.445,2.128-2.103,3.822-4.224,4.313l-0.339,0.078V17.628z"/>
<path fill="#4D4846" d="M17.233,17.756v1.32c2.015-0.466,3.591-2.071,4.017-4.101h-1.313C19.92,15.035,17.26,17.748,17.233,17.756z
"/>
<path fill="#B5AFA0" d="M16.152,16.337c-0.093,0-0.181-0.036-0.247-0.102l-2.101-2.1c-0.064-0.065-0.102-0.153-0.102-0.247
c0-0.093,0.037-0.181,0.103-0.247l2.1-2.1c0.066-0.066,0.154-0.102,0.247-0.102s0.181,0.036,0.246,0.102l2.101,2.1
c0.066,0.066,0.103,0.154,0.103,0.247c0,0.094-0.036,0.182-0.104,0.248l-2.1,2.1C16.333,16.301,16.245,16.337,16.152,16.337z"/>
<path fill="#4D4846" d="M16.204,11.736c-0.029-0.028-0.075-0.028-0.104,0l-2.1,2.1c-0.028,0.029-0.028,0.074,0,0.103l2.1,2.101
c0.028,0.028,0.074,0.028,0.104,0l2.101-2.101c0.027-0.028,0.027-0.074,0-0.103L16.204,11.736z"/>
</g>
<g>
<g>
<path fill="#231D13" d="M9.791,26.754c-0.046-0.02-0.054-0.034-0.054-0.097c0-0.156,0.011-0.326,0.014-0.372
c0.003-0.043,0.012-0.074,0.034-0.074c0.025,0,0.028,0.026,0.028,0.048c0,0.037,0.012,0.097,0.025,0.145
c0.063,0.21,0.23,0.287,0.406,0.287c0.255,0,0.38-0.173,0.38-0.324c0-0.139-0.042-0.27-0.278-0.454l-0.13-0.102
c-0.313-0.244-0.42-0.443-0.42-0.673c0-0.312,0.261-0.536,0.655-0.536c0.185,0,0.304,0.028,0.377,0.048
c0.026,0.005,0.04,0.014,0.04,0.034c0,0.037-0.011,0.12-0.011,0.341c0,0.063-0.009,0.085-0.031,0.085
c-0.021,0-0.029-0.017-0.029-0.051c0-0.026-0.014-0.114-0.073-0.188c-0.043-0.054-0.125-0.139-0.31-0.139
c-0.21,0-0.338,0.122-0.338,0.292c0,0.13,0.065,0.23,0.301,0.409l0.08,0.06c0.343,0.258,0.465,0.454,0.465,0.724
c0,0.165-0.063,0.36-0.267,0.494c-0.142,0.091-0.301,0.116-0.451,0.116C10.041,26.828,9.913,26.808,9.791,26.754z"/>
</g>
<g>
<path fill="#231D13" d="M13.056,25.545c0.008,0,0.017-0.006,0.017-0.02v-0.06c0-0.432,0-0.511-0.006-0.602
c-0.006-0.097-0.028-0.142-0.122-0.162c-0.022-0.005-0.07-0.008-0.11-0.008c-0.031,0-0.049-0.006-0.049-0.026
c0-0.02,0.021-0.025,0.06-0.025c0.153,0,0.332,0.009,0.409,0.009c0.068,0,0.247-0.009,0.357-0.009c0.04,0,0.06,0.006,0.06,0.025
c0,0.02-0.017,0.026-0.051,0.026c-0.022,0-0.049,0.003-0.082,0.008c-0.077,0.014-0.1,0.063-0.105,0.162
c-0.006,0.091-0.006,0.17-0.006,0.602v0.5c0,0.261,0,0.485,0.015,0.607c0.009,0.079,0.025,0.142,0.11,0.153
c0.04,0.005,0.103,0.011,0.145,0.011c0.031,0,0.046,0.008,0.046,0.022c0,0.02-0.022,0.028-0.057,0.028
c-0.185,0-0.363-0.008-0.443-0.008c-0.065,0-0.244,0.008-0.354,0.008c-0.04,0-0.06-0.008-0.06-0.028
c0-0.014,0.012-0.022,0.046-0.022c0.042,0,0.076-0.006,0.102-0.011c0.057-0.012,0.071-0.074,0.082-0.156
c0.015-0.119,0.015-0.343,0.015-0.604v-0.25c0-0.011-0.009-0.017-0.017-0.017h-1.085c-0.008,0-0.017,0.003-0.017,0.017v0.25
c0,0.261,0,0.485,0.014,0.607c0.009,0.079,0.026,0.142,0.111,0.153c0.039,0.005,0.102,0.011,0.145,0.011
c0.031,0,0.045,0.008,0.045,0.022c0,0.02-0.022,0.028-0.057,0.028c-0.185,0-0.363-0.008-0.442-0.008
c-0.065,0-0.244,0.008-0.357,0.008c-0.037,0-0.057-0.008-0.057-0.028c0-0.014,0.011-0.022,0.045-0.022
c0.043,0,0.077-0.006,0.103-0.011c0.057-0.012,0.07-0.074,0.082-0.156c0.015-0.119,0.015-0.343,0.015-0.604v-0.5
c0-0.432,0-0.511-0.006-0.602c-0.006-0.097-0.028-0.142-0.122-0.162c-0.022-0.005-0.071-0.008-0.111-0.008
c-0.03,0-0.048-0.006-0.048-0.026c0-0.02,0.02-0.025,0.06-0.025c0.153,0,0.332,0.009,0.409,0.009c0.067,0,0.246-0.009,0.357-0.009
c0.04,0,0.06,0.006,0.06,0.025c0,0.02-0.018,0.026-0.051,0.026c-0.023,0-0.049,0.003-0.083,0.008
c-0.076,0.014-0.099,0.063-0.104,0.162c-0.006,0.091-0.006,0.17-0.006,0.602v0.06c0,0.014,0.009,0.02,0.017,0.02H13.056z"/>
</g>
<g>
<path fill="#231D13" d="M14.021,25.715c0-0.485,0.32-1.112,1.172-1.112c0.707,0,1.146,0.412,1.146,1.062s-0.454,1.164-1.175,1.164
C14.351,26.828,14.021,26.218,14.021,25.715z M15.942,25.77c0-0.636-0.366-1.03-0.831-1.03c-0.326,0-0.698,0.182-0.698,0.888
c0,0.59,0.326,1.059,0.871,1.059C15.483,26.686,15.942,26.59,15.942,25.77z"/>
</g>
<g>
<path fill="#231D13" d="M16.654,25.715c0-0.485,0.32-1.112,1.172-1.112c0.707,0,1.146,0.412,1.146,1.062s-0.454,1.164-1.175,1.164
C16.983,26.828,16.654,26.218,16.654,25.715z M18.575,25.77c0-0.636-0.366-1.03-0.831-1.03c-0.326,0-0.698,0.182-0.698,0.888
c0,0.59,0.326,1.059,0.871,1.059C18.116,26.686,18.575,26.59,18.575,25.77z"/>
</g>
<g>
<path fill="#231D13" d="M19.922,24.802l-0.423,0.011c-0.164,0.006-0.232,0.02-0.275,0.083c-0.028,0.042-0.042,0.076-0.048,0.099
c-0.006,0.022-0.015,0.034-0.031,0.034c-0.021,0-0.025-0.014-0.025-0.045c0-0.045,0.054-0.304,0.06-0.327
c0.008-0.037,0.017-0.054,0.034-0.054c0.022,0,0.051,0.028,0.122,0.034c0.082,0.008,0.189,0.014,0.283,0.014h1.124
c0.091,0,0.153-0.009,0.196-0.014c0.042-0.009,0.064-0.014,0.076-0.014c0.02,0,0.022,0.017,0.022,0.06
c0,0.06-0.008,0.255-0.008,0.329c-0.003,0.028-0.009,0.045-0.026,0.045c-0.022,0-0.028-0.014-0.031-0.057l-0.002-0.031
c-0.006-0.074-0.083-0.153-0.335-0.159l-0.358-0.008v1.164c0,0.261,0,0.485,0.015,0.607c0.009,0.079,0.025,0.142,0.11,0.153
c0.04,0.005,0.103,0.011,0.146,0.011c0.03,0,0.045,0.008,0.045,0.022c0,0.02-0.022,0.028-0.054,0.028
c-0.188,0-0.366-0.008-0.445-0.008c-0.065,0-0.244,0.008-0.358,0.008c-0.036,0-0.057-0.008-0.057-0.028
c0-0.014,0.012-0.022,0.046-0.022c0.042,0,0.076-0.006,0.102-0.011c0.057-0.012,0.074-0.074,0.083-0.156
c0.014-0.119,0.014-0.343,0.014-0.604V24.802z"/>
</g>
<g>
<path fill="#231D13" d="M21.404,26.754c-0.046-0.02-0.054-0.034-0.054-0.097c0-0.156,0.011-0.326,0.014-0.372
c0.003-0.043,0.012-0.074,0.034-0.074c0.025,0,0.028,0.026,0.028,0.048c0,0.037,0.012,0.097,0.025,0.145
c0.063,0.21,0.23,0.287,0.406,0.287c0.255,0,0.38-0.173,0.38-0.324c0-0.139-0.042-0.27-0.278-0.454l-0.13-0.102
c-0.313-0.244-0.42-0.443-0.42-0.673c0-0.312,0.261-0.536,0.655-0.536c0.185,0,0.304,0.028,0.377,0.048
c0.026,0.005,0.04,0.014,0.04,0.034c0,0.037-0.011,0.12-0.011,0.341c0,0.063-0.009,0.085-0.031,0.085
c-0.021,0-0.029-0.017-0.029-0.051c0-0.026-0.014-0.114-0.073-0.188c-0.043-0.054-0.125-0.139-0.31-0.139
c-0.21,0-0.338,0.122-0.338,0.292c0,0.13,0.065,0.23,0.301,0.409l0.08,0.06c0.343,0.258,0.465,0.454,0.465,0.724
c0,0.165-0.063,0.36-0.267,0.494c-0.142,0.091-0.301,0.116-0.451,0.116C21.654,26.828,21.526,26.808,21.404,26.754z"/>
</g>
</g>
<g>
<path fill="#231D13" d="M9.328,9.176c-0.446,0.645-0.803,1.356-1.052,2.117h1.433c0.316-0.789,0.773-1.505,1.342-2.117H9.328z"/>
<path fill="#231D13" d="M15.07,5.696c-1.945,0.24-3.679,1.159-4.959,2.513h2.055c0.849-0.59,1.836-0.995,2.904-1.153V5.696z"/>
<path fill="#231D13" d="M17.28,5.72v1.368c0.997,0.176,1.92,0.566,2.719,1.122h2.056C20.815,6.898,19.15,5.993,17.28,5.72z"/>
<path fill="#231D13" d="M21.112,9.176c0.569,0.612,1.028,1.328,1.346,2.117h1.432c-0.249-0.761-0.604-1.473-1.052-2.117H21.112z"/>
<path fill="#231D13" d="M17.233,21.983c1.613-0.227,3.076-0.922,4.247-1.944h-2.429c-0.567,0.272-1.178,0.47-1.818,0.578V21.983z"
/>
<path fill="#231D13" d="M22.56,16.127c-0.274,0.78-0.686,1.495-1.204,2.117h1.666c0.412-0.65,0.735-1.361,0.954-2.117H22.56z"/>
<path fill="#231D13" d="M15.07,20.64c-0.691-0.102-1.35-0.309-1.957-0.601h-2.427c1.204,1.05,2.716,1.756,4.384,1.961V20.64z"/>
<path fill="#231D13" d="M8.191,16.126c0.217,0.756,0.541,1.468,0.953,2.118h1.666c-0.519-0.622-0.93-1.337-1.205-2.118H8.191z"/>
<path fill="#231D13" d="M15.07,9.176h-1.571c-0.902,0.485-1.649,1.222-2.146,2.117h2.244c0.453-0.452,0.932-0.9,1.473-1.36V9.176z"
/>
<path fill="#231D13" d="M18.549,9.176H17.28v0.892c0.367,0.33,0.822,0.783,1.252,1.226h2.163
C20.198,10.398,19.452,9.662,18.549,9.176z"/>
<path fill="#231D13" d="M13.274,16.127l-2.091,0c0.397,0.853,1.015,1.582,1.776,2.118h2.11v-0.418
C15.048,17.821,14.144,16.977,13.274,16.127z"/>
<path fill="#231D13" d="M20.865,16.127h-2.024c-0.743,0.763-1.593,1.625-1.607,1.629v0.488h1.855
C19.852,17.708,20.468,16.979,20.865,16.127z"/>
</g>
<g>
<path fill="#231D13" d="M15.07,5.943V5.696c-3.72,0.458-6.669,3.399-7.137,7.116h0.3C8.769,9.282,11.546,6.496,15.07,5.943z"/>
<path fill="#231D13" d="M20.343,8.479c1.327,1.054,2.264,2.58,2.528,4.333h0.218C22.764,11.031,21.758,9.495,20.343,8.479z"/>
<path fill="#231D13" d="M17.546,5.923c1.316,0.192,2.526,0.705,3.563,1.444c-1.093-0.849-2.396-1.438-3.828-1.647v1.368
c0.091,0.016,0.176,0.049,0.266,0.069V5.923z"/>
<path fill="#231D13" d="M23.121,15.179h1.054c0.011-0.069,0.035-0.133,0.045-0.203h-1.364c-0.476,2.881-2.744,5.156-5.622,5.641
v1.366c0.091-0.013,0.176-0.044,0.266-0.06V20.82C20.377,20.334,22.646,18.06,23.121,15.179z"/>
<path fill="#231D13" d="M8.211,15.179h1.15c-0.014-0.069-0.039-0.133-0.051-0.203H7.945c0.316,2.304,1.588,4.301,3.401,5.583
C9.677,19.274,8.511,17.367,8.211,15.179z"/>
<path fill="#231D13" d="M15.07,20.64c-1.068-0.158-2.053-0.568-2.9-1.159c0.836,0.645,1.822,1.096,2.9,1.3V20.64z"/>
<path fill="#231D13" d="M15.07,8.897V8.625c-2.146,0.388-3.847,2.057-4.277,4.188h0.323C11.59,10.871,13.121,9.355,15.07,8.897z"/>
<path fill="#231D13" d="M17.546,10.271v-1.38c0.687,0.166,1.316,0.472,1.871,0.874c-0.614-0.507-1.338-0.885-2.137-1.077v1.38"/>
<path fill="#231D13" d="M11.066,15.179h1.263c-0.065-0.068-0.138-0.142-0.195-0.203h-1.333c0.284,1.357,1.087,2.519,2.188,3.283
C12.027,17.498,11.326,16.423,11.066,15.179z"/>
<path fill="#231D13" d="M20.202,15.179h0.989c0.018-0.068,0.044-0.133,0.059-0.203h-1.313c-0.017,0.059-2.677,2.772-2.703,2.781
v1.32c0.091-0.021,0.177-0.057,0.266-0.082v-1.035"/>
<path fill="#231D13" d="M14.267,14.04l2.1-2.1c0.011-0.011,0.026,0.002,0.041,0l-0.203-0.203c-0.029-0.028-0.075-0.028-0.104,0
l-2.1,2.1c-0.028,0.029-0.028,0.074,0,0.103l2.1,2.101c0.017,0.017,0.04,0.003,0.063,0l-1.896-1.897
C14.238,14.114,14.238,14.068,14.267,14.04z"/>
<path fill="#231D13" d="M19.417,9.765"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -1,240 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="292.903" y1="-1174.2194" x2="319.124" y2="-1174.2194" gradientTransform="matrix(1 0 0 -1 -290 -1158.2194)">
<stop offset="0" style="stop-color:#302E2E"/>
<stop offset="0.1262" style="stop-color:#2B2929"/>
<stop offset="0.4685" style="stop-color:#1C1C1C"/>
<stop offset="0.771" style="stop-color:#10100F"/>
<stop offset="1" style="stop-color:#030303"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="29.097,16 16,29.097 2.903,16 16,2.903 "/>
<radialGradient id="SVGID_2_" cx="-3838.7021" cy="-693.1246" r="11.5047" gradientTransform="matrix(-0.0607 -0.9982 -2.2198 0.1351 -1754.624 -3729.8008)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#999999"/>
<stop offset="0.3646" style="stop-color:#878787"/>
<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<path fill="url(#SVGID_2_)" d="M16.361,16.361c1.806,0.09,2.529-0.271,4.606,0c2.529,0.271,3.342,1.174,3.974,0.542
c0.09-0.09,0.181-0.271,0.361-0.452c0.09-0.181,0.09-0.271,0.09-0.452c0-0.271-0.09-0.542-0.271-0.723l-8.4-8.4
C16.542,6.697,16.271,6.607,16,6.607s-0.542,0.09-0.723,0.271l-8.4,8.4c-0.18,0.18-0.27,0.451-0.27,0.722
c0,0.271,0.09,0.542,0.361,0.813c0.632,0.542,1.355,0.723,2.258,0.452C11.665,16.632,13.742,16.271,16.361,16.361z"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="306.0364" y1="-1170.2096" x2="306.0081" y2="-1185.4795" gradientTransform="matrix(1 0 0 -1 -290 -1158.2194)">
<stop offset="0" style="stop-color:#000000"/>
<stop offset="1" style="stop-color:#404A44"/>
</linearGradient>
<path fill="url(#SVGID_3_)" d="M6.697,16.903l8.4,8.4c0.542,0.542,1.355,0.542,1.897,0l8.4-8.4c0.361-0.361,0.09-0.903,0.09-0.903
c0,0.271-0.09,0.542-0.271,0.723l-8.4,8.4c-0.181,0.181-0.452,0.271-0.723,0.271s-0.542-0.09-0.723-0.271l-8.4-8.4
c-0.18-0.181-0.27-0.452-0.27-0.723C6.607,16,6.245,16.542,6.697,16.903z"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="303.0059" y1="2005.6226" x2="308.4788" y2="2022.9065" gradientTransform="matrix(1 0 0 1 -290 -1998.89)">
<stop offset="0.0196" style="stop-color:#675A5A"/>
<stop offset="0.5439" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_4_)" d="M15.006,6.516c0.542-0.542,1.355-0.542,1.897,0l8.58,8.58c0.542,0.542,0.542,1.355,0,1.897
l-8.58,8.58c-0.542,0.542-1.355,0.542-1.897,0l-8.58-8.58c-0.542-0.542-0.542-1.355,0-1.897L15.006,6.516z"/>
<radialGradient id="SVGID_5_" cx="298.6385" cy="1997.7714" r="31.3367" gradientTransform="matrix(1 0 0 1 -290 -1998.89)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#B2CAD4"/>
<stop offset="0.2238" style="stop-color:#B5CAD2"/>
<stop offset="0.3874" style="stop-color:#BECBCB"/>
<stop offset="0.5316" style="stop-color:#CECDC0"/>
<stop offset="0.5447" style="stop-color:#D0CDBF"/>
<stop offset="0.7058" style="stop-color:#D1CABC"/>
<stop offset="0.8243" style="stop-color:#D2C1B3"/>
<stop offset="0.9288" style="stop-color:#D5B1A3"/>
<stop offset="1" style="stop-color:#D8A193"/>
</radialGradient>
<path fill="url(#SVGID_5_)" d="M15.097,6.878c0.542-0.542,1.355-0.542,1.806,0l8.219,8.219c0.542,0.542,0.542,1.355,0,1.806
l-8.219,8.219c-0.542,0.542-1.355,0.542-1.806,0l-8.219-8.219c-0.542-0.542-0.542-1.355,0-1.806L15.097,6.878z"/>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="305.9771" y1="2016.2919" x2="306.1612" y2="2004.2383" gradientTransform="matrix(1 0 0 1 -290 -1998.89)">
<stop offset="0.0098" style="stop-color:#F7FDFF;stop-opacity:0.4"/>
<stop offset="0.7258" style="stop-color:#B7B3B3;stop-opacity:0.7"/>
</linearGradient>
<path fill="url(#SVGID_6_)" d="M16.361,16.271c1.716,0.09,2.529-0.271,4.516,0c2.439,0.271,3.252,1.084,3.884,0.542
c0.09-0.09,0.181-0.271,0.361-0.452c0.09-0.181,0.09-0.271,0.09-0.452c0-0.271-0.09-0.542-0.271-0.723l-8.219-8.219
c-0.18-0.18-0.451-0.27-0.722-0.27s-0.542,0.09-0.723,0.271l-8.219,8.219c-0.181,0.181-0.271,0.452-0.271,0.723
c0,0.271,0.09,0.542,0.361,0.813c0.542,0.542,1.355,0.632,2.168,0.452C11.755,16.542,13.742,16.181,16.361,16.271z"/>
<radialGradient id="SVGID_7_" cx="313.709" cy="2032.4696" r="37.5603" gradientTransform="matrix(1 0 0 1 -290 -1998.89)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#612A2A"/>
<stop offset="0.2109" style="stop-color:#948A87"/>
<stop offset="0.2122" style="stop-color:#948A87"/>
<stop offset="0.3051" style="stop-color:#A9A4A2"/>
<stop offset="0.3998" style="stop-color:#B8B6B5"/>
<stop offset="0.4972" style="stop-color:#C1C0C0"/>
<stop offset="0.6006" style="stop-color:#C4C4C4"/>
<stop offset="1" style="stop-color:#ABAAA9"/>
</radialGradient>
<path fill="url(#SVGID_7_)" d="M16,29.909c-0.452,0-0.903-0.181-1.264-0.542L2.542,17.174c-0.723-0.723-0.723-1.897,0-2.619
L14.736,2.542C15.097,2.181,15.548,2,16,2s0.903,0.181,1.264,0.542l12.103,12.103c0.361,0.361,0.542,0.813,0.542,1.264
c0,0.452-0.181,0.903-0.542,1.264L17.264,29.367C16.903,29.729,16.452,29.909,16,29.909z M16,6.155
c-0.361,0-0.723,0.181-0.994,0.452l-8.4,8.4c-0.27,0.27-0.451,0.632-0.451,0.993c0,0.361,0.181,0.723,0.452,0.994l8.4,8.4
c0.271,0.271,0.632,0.452,0.994,0.452c0.361,0,0.723-0.181,0.994-0.452l8.4-8.4c0.271-0.271,0.452-0.632,0.452-0.994
c0-0.361-0.181-0.723-0.452-0.994l-8.4-8.4C16.723,6.245,16.361,6.155,16,6.155z"/>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="10.7792" y1="807.737" x2="21.1214" y2="843.9145" gradientTransform="matrix(1 0 0 1 0 -810)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_8_)" d="M29.819,14.555L17.445,2.181C17.084,1.82,16.542,1.549,16,1.549s-1.084,0.181-1.445,0.632
L2.181,14.555C1.82,14.916,1.549,15.458,1.549,16c0,0.542,0.181,1.084,0.632,1.445l12.374,12.374
c0.361,0.361,0.903,0.632,1.445,0.632c0.542,0,1.084-0.181,1.445-0.632l12.374-12.374c0.361-0.361,0.632-0.903,0.632-1.445
C30.451,15.458,30.271,14.916,29.819,14.555z M29.458,17.355l-5.329,5.329v-1.987l-1.445,3.342l-5.329,5.329
c-0.361,0.361-0.813,0.542-1.264,0.542c-0.452,0-0.994-0.181-1.264-0.542l-5.419-5.239h2.168l-3.613-1.535l-5.329-5.329
C2.271,16.903,2.091,16.452,2.091,16c0-0.452,0.181-0.994,0.542-1.264l5.51-5.51v2.258L9.678,7.6l5.058-5.058
C15.097,2.181,15.548,2,16,2s0.994,0.181,1.264,0.542l5.329,5.329h-1.897l3.252,1.355l5.51,5.51C29.819,15.097,30,15.548,30,16
C29.909,16.542,29.729,16.994,29.458,17.355z"/>
<rect x="31.886" y="15.647" opacity="0.01" enable-background="new " width="0.114" height="0.353"/>
<rect y="15.647" opacity="0.01" enable-background="new " width="0.114" height="0.353"/>
<g>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="14.0231" y1="26.2306" x2="16.9333" y2="17.8188" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_9_)" d="M15.157,11.49c0.44,0,0.812,0.303,0.826,0.314c0.109,0.085,0.518,0.377,1.042,0.377
c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305c-0.003,0.003-0.386,0.316-0.829,0.316c-0.44,0-0.812-0.303-0.826-0.314
c-0.109-0.085-0.518-0.377-1.042-0.377c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305C14.331,11.803,14.714,11.49,15.157,11.49z"/>
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="13.7429" y1="26.1337" x2="16.6531" y2="17.7218" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_10_)" d="M17.024,12.687c-0.44,0-0.812-0.303-0.826-0.314c-0.109-0.085-0.518-0.377-1.042-0.377
c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305c0.003-0.003,0.386-0.316,0.829-0.316c0.44,0,0.812,0.303,0.826,0.314
c0.109,0.085,0.518,0.377,1.042,0.377c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305C17.849,12.374,17.467,12.687,17.024,12.687z"
/>
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="13.463" y1="26.0369" x2="16.3732" y2="17.625" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_11_)" d="M17.024,13.593c-0.44,0-0.812-0.303-0.826-0.314c-0.109-0.085-0.518-0.377-1.042-0.377
c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305c0.003-0.003,0.386-0.316,0.829-0.316c0.44,0,0.812,0.303,0.826,0.314
c0.109,0.085,0.518,0.377,1.042,0.377c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305C17.849,13.28,17.467,13.593,17.024,13.593z"/>
</g>
<g>
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="9.887" y1="20.8985" x2="10.4514" y2="13.0569" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_12_)" d="M10.399,17.361l-0.221-0.134c-0.139-0.085-0.237-0.168-0.296-0.25s-0.088-0.176-0.088-0.283
c0-0.16,0.056-0.29,0.167-0.39c0.111-0.1,0.255-0.149,0.433-0.149c0.17,0,0.325,0.047,0.467,0.143v0.33
c-0.146-0.141-0.304-0.211-0.473-0.211c-0.095,0-0.173,0.022-0.234,0.066s-0.092,0.1-0.092,0.168c0,0.061,0.022,0.118,0.067,0.171
c0.045,0.054,0.118,0.108,0.217,0.167l0.222,0.132c0.248,0.148,0.372,0.337,0.372,0.565c0,0.163-0.055,0.295-0.164,0.396
c-0.109,0.103-0.251,0.153-0.425,0.153c-0.201,0-0.383-0.062-0.548-0.186v-0.368c0.157,0.199,0.339,0.299,0.545,0.299
c0.091,0,0.167-0.025,0.228-0.076s0.091-0.114,0.091-0.19C10.667,17.59,10.578,17.472,10.399,17.361z"/>
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="10.9574" y1="20.9755" x2="11.5217" y2="13.1339" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_13_)" d="M11.264,16.181h0.291v2.032h-0.291V16.181z"/>
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="12.2643" y1="21.0695" x2="12.8286" y2="13.2279" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_14_)" d="M12.014,18.213v-2.032h0.509c0.206,0,0.369,0.051,0.489,0.153s0.181,0.239,0.181,0.413
c0,0.118-0.03,0.221-0.089,0.307s-0.144,0.15-0.254,0.193c0.065,0.043,0.128,0.101,0.19,0.175c0.062,0.073,0.149,0.202,0.262,0.386
c0.071,0.115,0.127,0.202,0.17,0.26l0.107,0.146h-0.346l-0.088-0.134c-0.003-0.005-0.009-0.013-0.018-0.024l-0.057-0.08
l-0.09-0.148l-0.097-0.159c-0.06-0.083-0.115-0.149-0.165-0.199c-0.05-0.049-0.095-0.085-0.136-0.106
c-0.04-0.021-0.108-0.032-0.203-0.032h-0.076v0.884h-0.289V18.213z M12.392,16.428h-0.087v0.641h0.111
c0.147,0,0.248-0.012,0.303-0.037c0.055-0.025,0.097-0.063,0.128-0.114c0.03-0.051,0.045-0.109,0.045-0.174
c0-0.064-0.017-0.122-0.051-0.174c-0.034-0.052-0.082-0.088-0.143-0.11S12.535,16.428,12.392,16.428z"/>
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="14.1579" y1="21.2058" x2="14.7223" y2="13.3642" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_15_)" d="M14.622,16.152c0.314,0,0.575,0.099,0.784,0.298s0.313,0.448,0.313,0.748
c0,0.299-0.105,0.547-0.316,0.743c-0.21,0.196-0.477,0.295-0.797,0.295c-0.306,0-0.562-0.099-0.765-0.295
c-0.204-0.196-0.306-0.442-0.306-0.737c0-0.304,0.103-0.555,0.308-0.754S14.308,16.152,14.622,16.152z M14.633,16.428
c-0.232,0-0.423,0.073-0.573,0.218c-0.149,0.146-0.224,0.331-0.224,0.558c0,0.219,0.075,0.401,0.225,0.546
c0.15,0.146,0.338,0.219,0.563,0.219c0.227,0,0.416-0.074,0.567-0.223c0.152-0.148,0.228-0.333,0.228-0.554
c0-0.216-0.076-0.396-0.228-0.543C15.041,16.502,14.854,16.428,14.633,16.428z"/>
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="16.4523" y1="21.3709" x2="17.0166" y2="13.5293" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_16_)" d="M17.828,17.742v0.319c-0.213,0.116-0.459,0.175-0.738,0.175c-0.228,0-0.42-0.046-0.578-0.137
c-0.158-0.091-0.283-0.217-0.375-0.377c-0.092-0.16-0.138-0.333-0.138-0.519c0-0.297,0.105-0.545,0.316-0.747
c0.21-0.202,0.471-0.302,0.781-0.302c0.213,0,0.45,0.056,0.711,0.167v0.313c-0.237-0.136-0.47-0.204-0.696-0.204
c-0.234,0-0.427,0.073-0.581,0.22c-0.153,0.147-0.23,0.331-0.23,0.552c0,0.223,0.076,0.406,0.227,0.549
c0.151,0.144,0.344,0.216,0.581,0.216C17.354,17.968,17.594,17.892,17.828,17.742z"/>
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="18.5498" y1="21.5219" x2="19.1142" y2="13.6803" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_17_)" d="M19.937,17.742v0.319c-0.213,0.116-0.459,0.175-0.738,0.175c-0.228,0-0.42-0.046-0.577-0.137
c-0.158-0.091-0.283-0.217-0.376-0.377c-0.092-0.16-0.138-0.333-0.138-0.519c0-0.297,0.105-0.545,0.316-0.747
s0.471-0.302,0.78-0.302c0.213,0,0.45,0.056,0.711,0.167v0.313c-0.237-0.136-0.47-0.204-0.696-0.204
c-0.233,0-0.426,0.073-0.58,0.22c-0.153,0.147-0.23,0.331-0.23,0.552c0,0.223,0.076,0.406,0.227,0.549
c0.151,0.144,0.345,0.216,0.581,0.216C19.462,17.968,19.702,17.892,19.937,17.742z"/>
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="20.7932" y1="21.6833" x2="21.3575" y2="13.8418" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_18_)" d="M21.292,16.152c0.314,0,0.575,0.099,0.784,0.298s0.313,0.448,0.313,0.748
c0,0.299-0.105,0.547-0.316,0.743s-0.477,0.295-0.797,0.295c-0.307,0-0.562-0.099-0.766-0.295s-0.306-0.442-0.306-0.737
c0-0.304,0.103-0.555,0.308-0.754C20.719,16.251,20.979,16.152,21.292,16.152z M21.304,16.428c-0.232,0-0.424,0.073-0.573,0.218
c-0.149,0.146-0.225,0.331-0.225,0.558c0,0.219,0.075,0.401,0.226,0.546c0.15,0.146,0.338,0.219,0.563,0.219
c0.227,0,0.416-0.074,0.567-0.223s0.228-0.333,0.228-0.554c0-0.216-0.076-0.396-0.228-0.543S21.524,16.428,21.304,16.428z"/>
</g>
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="17.8348" y1="39.2776" x2="13.8546" y2="-11.2175">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.15" style="stop-color:#E3CBCB"/>
<stop offset="0.2442" style="stop-color:#DBC3C3"/>
<stop offset="0.323" style="stop-color:#CCB6B6"/>
<stop offset="0.3933" style="stop-color:#B7A3A3"/>
<stop offset="0.4574" style="stop-color:#9D8B8B"/>
<stop offset="0.5013" style="stop-color:#867676"/>
<stop offset="0.8106" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_19_)" d="M16,29.999c-0.557,0-1.146-0.255-1.573-0.683L2.684,17.572C2.251,17.229,2,16.663,2,16
c0-0.557,0.255-1.145,0.684-1.573L14.428,2.683C14.771,2.251,15.337,2,16,2c0.557,0,1.145,0.255,1.573,0.683l11.744,11.745
C29.749,14.77,30,15.336,30,16c0,0.557-0.255,1.145-0.683,1.572L17.573,29.316C17.229,29.749,16.663,29.999,16,29.999z
M15.036,29.152c0.217,0.284,0.638,0.458,1.055,0.458c0.386,0,0.76-0.161,1.053-0.454l5.287-5.288l1.998-4.621v2.713l4.817-4.816
c0.212-0.289,0.376-0.701,0.458-1.193c-0.004-0.336-0.165-0.709-0.458-1.001L23.778,9.48l-4.582-1.909h2.672l-4.816-4.817
C16.838,2.473,16.417,2.3,16,2.3c-0.385,0-0.759,0.162-1.052,0.455L9.935,7.768l-2.091,5.291V9.95l-4.999,4.998
C2.564,15.162,2.391,15.583,2.391,16c0,0.386,0.162,0.76,0.455,1.053l5.288,5.288l4.916,2.088H10.15L15.036,29.152z"/>
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="10.7792" y1="807.737" x2="21.1214" y2="843.9145" gradientTransform="matrix(1 0 0 1 0 -810)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_20_)" d="M29.819,14.555L17.445,2.181C17.084,1.82,16.542,1.549,16,1.549s-1.084,0.181-1.445,0.632
L2.181,14.555C1.82,14.916,1.549,15.458,1.549,16c0,0.542,0.181,1.084,0.632,1.445l12.374,12.374
c0.361,0.361,0.903,0.632,1.445,0.632c0.542,0,1.084-0.181,1.445-0.632l12.374-12.374c0.361-0.361,0.632-0.903,0.632-1.445
C30.451,15.458,30.271,14.916,29.819,14.555z M29.458,17.355l-5.329,5.329v-1.987l-1.445,3.342l-5.329,5.329
c-0.361,0.361-0.813,0.542-1.264,0.542c-0.452,0-0.994-0.181-1.264-0.542l-5.419-5.239h2.168l-3.613-1.535l-5.329-5.329
C2.271,16.903,2.091,16.452,2.091,16c0-0.452,0.181-0.994,0.542-1.264l5.51-5.51v2.258L9.678,7.6l5.058-5.058
C15.097,2.181,15.548,2,16,2s0.994,0.181,1.264,0.542l5.329,5.329h-1.897l3.252,1.355l5.51,5.51C29.819,15.097,30,15.548,30,16
C29.909,16.542,29.729,16.994,29.458,17.355z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="292.903" y1="-1174.2194" x2="319.124" y2="-1174.2194" gradientTransform="matrix(1 0 0 -1 -290 -1158.2194)">
<stop offset="0" style="stop-color:#302E2E"/>
<stop offset="0.1262" style="stop-color:#2B2929"/>
<stop offset="0.4685" style="stop-color:#1C1C1C"/>
<stop offset="0.771" style="stop-color:#10100F"/>
<stop offset="1" style="stop-color:#030303"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="29.097,16 16,29.097 2.903,16 16,2.903 "/>
<radialGradient id="SVGID_2_" cx="-3838.7021" cy="-693.1246" r="11.5047" gradientTransform="matrix(-0.0607 -0.9982 -2.2198 0.1351 -1754.624 -3729.8008)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#999999"/>
<stop offset="0.3646" style="stop-color:#878787"/>
<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<path fill="url(#SVGID_2_)" d="M16.361,16.361c1.806,0.09,2.529-0.271,4.606,0c2.529,0.271,3.342,1.174,3.974,0.542
c0.09-0.09,0.181-0.271,0.361-0.452c0.09-0.181,0.09-0.271,0.09-0.452c0-0.271-0.09-0.542-0.271-0.723l-8.4-8.4
C16.542,6.697,16.271,6.607,16,6.607s-0.542,0.09-0.723,0.271l-8.4,8.4c-0.18,0.18-0.27,0.451-0.27,0.722
c0,0.271,0.09,0.542,0.361,0.813c0.632,0.542,1.355,0.723,2.258,0.452C11.665,16.632,13.742,16.271,16.361,16.361z"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="306.0364" y1="-1170.2096" x2="306.0081" y2="-1185.4795" gradientTransform="matrix(1 0 0 -1 -290 -1158.2194)">
<stop offset="0" style="stop-color:#000000"/>
<stop offset="1" style="stop-color:#404A44"/>
</linearGradient>
<path fill="url(#SVGID_3_)" d="M6.697,16.903l8.4,8.4c0.542,0.542,1.355,0.542,1.897,0l8.4-8.4c0.361-0.361,0.09-0.903,0.09-0.903
c0,0.271-0.09,0.542-0.271,0.723l-8.4,8.4c-0.181,0.181-0.452,0.271-0.723,0.271s-0.542-0.09-0.723-0.271l-8.4-8.4
c-0.18-0.181-0.27-0.452-0.27-0.723C6.607,16,6.245,16.542,6.697,16.903z"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="303.0059" y1="2005.6226" x2="308.4788" y2="2022.9065" gradientTransform="matrix(1 0 0 1 -290 -1998.89)">
<stop offset="0.0196" style="stop-color:#675A5A"/>
<stop offset="0.5439" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_4_)" d="M15.006,6.516c0.542-0.542,1.355-0.542,1.897,0l8.58,8.58c0.542,0.542,0.542,1.355,0,1.897
l-8.58,8.58c-0.542,0.542-1.355,0.542-1.897,0l-8.58-8.58c-0.542-0.542-0.542-1.355,0-1.897L15.006,6.516z"/>
<radialGradient id="SVGID_5_" cx="298.6385" cy="1997.7714" r="31.3367" gradientTransform="matrix(1 0 0 1 -290 -1998.89)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#B2CAD4"/>
<stop offset="0.2238" style="stop-color:#B5CAD2"/>
<stop offset="0.3874" style="stop-color:#BECBCB"/>
<stop offset="0.5316" style="stop-color:#CECDC0"/>
<stop offset="0.5447" style="stop-color:#D0CDBF"/>
<stop offset="0.7058" style="stop-color:#D1CABC"/>
<stop offset="0.8243" style="stop-color:#D2C1B3"/>
<stop offset="0.9288" style="stop-color:#D5B1A3"/>
<stop offset="1" style="stop-color:#D8A193"/>
</radialGradient>
<path fill="url(#SVGID_5_)" d="M15.097,6.878c0.542-0.542,1.355-0.542,1.806,0l8.219,8.219c0.542,0.542,0.542,1.355,0,1.806
l-8.219,8.219c-0.542,0.542-1.355,0.542-1.806,0l-8.219-8.219c-0.542-0.542-0.542-1.355,0-1.806L15.097,6.878z"/>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="305.9771" y1="2016.2919" x2="306.1612" y2="2004.2383" gradientTransform="matrix(1 0 0 1 -290 -1998.89)">
<stop offset="0.0098" style="stop-color:#F7FDFF;stop-opacity:0.4"/>
<stop offset="0.7258" style="stop-color:#B7B3B3;stop-opacity:0.7"/>
</linearGradient>
<path fill="url(#SVGID_6_)" d="M16.361,16.271c1.716,0.09,2.529-0.271,4.516,0c2.439,0.271,3.252,1.084,3.884,0.542
c0.09-0.09,0.181-0.271,0.361-0.452c0.09-0.181,0.09-0.271,0.09-0.452c0-0.271-0.09-0.542-0.271-0.723l-8.219-8.219
c-0.18-0.18-0.451-0.27-0.722-0.27s-0.542,0.09-0.723,0.271l-8.219,8.219c-0.181,0.181-0.271,0.452-0.271,0.723
c0,0.271,0.09,0.542,0.361,0.813c0.542,0.542,1.355,0.632,2.168,0.452C11.755,16.542,13.742,16.181,16.361,16.271z"/>
<radialGradient id="SVGID_7_" cx="313.709" cy="2032.4696" r="37.5603" gradientTransform="matrix(1 0 0 1 -290 -1998.89)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#612A2A"/>
<stop offset="0.2109" style="stop-color:#948A87"/>
<stop offset="0.2122" style="stop-color:#948A87"/>
<stop offset="0.3051" style="stop-color:#A9A4A2"/>
<stop offset="0.3998" style="stop-color:#B8B6B5"/>
<stop offset="0.4972" style="stop-color:#C1C0C0"/>
<stop offset="0.6006" style="stop-color:#C4C4C4"/>
<stop offset="1" style="stop-color:#ABAAA9"/>
</radialGradient>
<path fill="url(#SVGID_7_)" d="M16,29.909c-0.452,0-0.903-0.181-1.264-0.542L2.542,17.174c-0.723-0.723-0.723-1.897,0-2.619
L14.736,2.542C15.097,2.181,15.548,2,16,2s0.903,0.181,1.264,0.542l12.103,12.103c0.361,0.361,0.542,0.813,0.542,1.264
c0,0.452-0.181,0.903-0.542,1.264L17.264,29.367C16.903,29.729,16.452,29.909,16,29.909z M16,6.155
c-0.361,0-0.723,0.181-0.994,0.452l-8.4,8.4c-0.27,0.27-0.451,0.632-0.451,0.993c0,0.361,0.181,0.723,0.452,0.994l8.4,8.4
c0.271,0.271,0.632,0.452,0.994,0.452c0.361,0,0.723-0.181,0.994-0.452l8.4-8.4c0.271-0.271,0.452-0.632,0.452-0.994
c0-0.361-0.181-0.723-0.452-0.994l-8.4-8.4C16.723,6.245,16.361,6.155,16,6.155z"/>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="10.7792" y1="807.737" x2="21.1214" y2="843.9145" gradientTransform="matrix(1 0 0 1 0 -810)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_8_)" d="M29.819,14.555L17.445,2.181C17.084,1.82,16.542,1.549,16,1.549s-1.084,0.181-1.445,0.632
L2.181,14.555C1.82,14.916,1.549,15.458,1.549,16c0,0.542,0.181,1.084,0.632,1.445l12.374,12.374
c0.361,0.361,0.903,0.632,1.445,0.632c0.542,0,1.084-0.181,1.445-0.632l12.374-12.374c0.361-0.361,0.632-0.903,0.632-1.445
C30.451,15.458,30.271,14.916,29.819,14.555z M29.458,17.355l-5.329,5.329v-1.987l-1.445,3.342l-5.329,5.329
c-0.361,0.361-0.813,0.542-1.264,0.542c-0.452,0-0.994-0.181-1.264-0.542l-5.419-5.239h2.168l-3.613-1.535l-5.329-5.329
C2.271,16.903,2.091,16.452,2.091,16c0-0.452,0.181-0.994,0.542-1.264l5.51-5.51v2.258L9.678,7.6l5.058-5.058
C15.097,2.181,15.548,2,16,2s0.994,0.181,1.264,0.542l5.329,5.329h-1.897l3.252,1.355l5.51,5.51C29.819,15.097,30,15.548,30,16
C29.909,16.542,29.729,16.994,29.458,17.355z"/>
<rect x="31.886" y="15.647" opacity="0.01" enable-background="new " width="0.114" height="0.353"/>
<rect y="15.647" opacity="0.01" enable-background="new " width="0.114" height="0.353"/>
<g>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="14.0231" y1="26.2306" x2="16.9333" y2="17.8188" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_9_)" d="M15.157,11.49c0.44,0,0.812,0.303,0.826,0.314c0.109,0.085,0.518,0.377,1.042,0.377
c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305c-0.003,0.003-0.386,0.316-0.829,0.316c-0.44,0-0.812-0.303-0.826-0.314
c-0.109-0.085-0.518-0.377-1.042-0.377c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305C14.331,11.803,14.714,11.49,15.157,11.49z"/>
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="13.7429" y1="26.1337" x2="16.6531" y2="17.7218" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_10_)" d="M17.024,12.687c-0.44,0-0.812-0.303-0.826-0.314c-0.109-0.085-0.518-0.377-1.042-0.377
c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305c0.003-0.003,0.386-0.316,0.829-0.316c0.44,0,0.812,0.303,0.826,0.314
c0.109,0.085,0.518,0.377,1.042,0.377c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305C17.849,12.374,17.467,12.687,17.024,12.687z"
/>
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="13.463" y1="26.0369" x2="16.3732" y2="17.625" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_11_)" d="M17.024,13.593c-0.44,0-0.812-0.303-0.826-0.314c-0.109-0.085-0.518-0.377-1.042-0.377
c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305c0.003-0.003,0.386-0.316,0.829-0.316c0.44,0,0.812,0.303,0.826,0.314
c0.109,0.085,0.518,0.377,1.042,0.377c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305C17.849,13.28,17.467,13.593,17.024,13.593z"/>
</g>
<g>
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="9.887" y1="20.8985" x2="10.4514" y2="13.0569" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_12_)" d="M10.399,17.361l-0.221-0.134c-0.139-0.085-0.237-0.168-0.296-0.25s-0.088-0.176-0.088-0.283
c0-0.16,0.056-0.29,0.167-0.39c0.111-0.1,0.255-0.149,0.433-0.149c0.17,0,0.325,0.047,0.467,0.143v0.33
c-0.146-0.141-0.304-0.211-0.473-0.211c-0.095,0-0.173,0.022-0.234,0.066s-0.092,0.1-0.092,0.168c0,0.061,0.022,0.118,0.067,0.171
c0.045,0.054,0.118,0.108,0.217,0.167l0.222,0.132c0.248,0.148,0.372,0.337,0.372,0.565c0,0.163-0.055,0.295-0.164,0.396
c-0.109,0.103-0.251,0.153-0.425,0.153c-0.201,0-0.383-0.062-0.548-0.186v-0.368c0.157,0.199,0.339,0.299,0.545,0.299
c0.091,0,0.167-0.025,0.228-0.076s0.091-0.114,0.091-0.19C10.667,17.59,10.578,17.472,10.399,17.361z"/>
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="10.9574" y1="20.9755" x2="11.5217" y2="13.1339" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_13_)" d="M11.264,16.181h0.291v2.032h-0.291V16.181z"/>
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="12.2643" y1="21.0695" x2="12.8286" y2="13.2279" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_14_)" d="M12.014,18.213v-2.032h0.509c0.206,0,0.369,0.051,0.489,0.153s0.181,0.239,0.181,0.413
c0,0.118-0.03,0.221-0.089,0.307s-0.144,0.15-0.254,0.193c0.065,0.043,0.128,0.101,0.19,0.175c0.062,0.073,0.149,0.202,0.262,0.386
c0.071,0.115,0.127,0.202,0.17,0.26l0.107,0.146h-0.346l-0.088-0.134c-0.003-0.005-0.009-0.013-0.018-0.024l-0.057-0.08
l-0.09-0.148l-0.097-0.159c-0.06-0.083-0.115-0.149-0.165-0.199c-0.05-0.049-0.095-0.085-0.136-0.106
c-0.04-0.021-0.108-0.032-0.203-0.032h-0.076v0.884h-0.289V18.213z M12.392,16.428h-0.087v0.641h0.111
c0.147,0,0.248-0.012,0.303-0.037c0.055-0.025,0.097-0.063,0.128-0.114c0.03-0.051,0.045-0.109,0.045-0.174
c0-0.064-0.017-0.122-0.051-0.174c-0.034-0.052-0.082-0.088-0.143-0.11S12.535,16.428,12.392,16.428z"/>
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="14.1579" y1="21.2058" x2="14.7223" y2="13.3642" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_15_)" d="M14.622,16.152c0.314,0,0.575,0.099,0.784,0.298s0.313,0.448,0.313,0.748
c0,0.299-0.105,0.547-0.316,0.743c-0.21,0.196-0.477,0.295-0.797,0.295c-0.306,0-0.562-0.099-0.765-0.295
c-0.204-0.196-0.306-0.442-0.306-0.737c0-0.304,0.103-0.555,0.308-0.754S14.308,16.152,14.622,16.152z M14.633,16.428
c-0.232,0-0.423,0.073-0.573,0.218c-0.149,0.146-0.224,0.331-0.224,0.558c0,0.219,0.075,0.401,0.225,0.546
c0.15,0.146,0.338,0.219,0.563,0.219c0.227,0,0.416-0.074,0.567-0.223c0.152-0.148,0.228-0.333,0.228-0.554
c0-0.216-0.076-0.396-0.228-0.543C15.041,16.502,14.854,16.428,14.633,16.428z"/>
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="16.4523" y1="21.3709" x2="17.0166" y2="13.5293" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_16_)" d="M17.828,17.742v0.319c-0.213,0.116-0.459,0.175-0.738,0.175c-0.228,0-0.42-0.046-0.578-0.137
c-0.158-0.091-0.283-0.217-0.375-0.377c-0.092-0.16-0.138-0.333-0.138-0.519c0-0.297,0.105-0.545,0.316-0.747
c0.21-0.202,0.471-0.302,0.781-0.302c0.213,0,0.45,0.056,0.711,0.167v0.313c-0.237-0.136-0.47-0.204-0.696-0.204
c-0.234,0-0.427,0.073-0.581,0.22c-0.153,0.147-0.23,0.331-0.23,0.552c0,0.223,0.076,0.406,0.227,0.549
c0.151,0.144,0.344,0.216,0.581,0.216C17.354,17.968,17.594,17.892,17.828,17.742z"/>
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="18.5498" y1="21.5219" x2="19.1142" y2="13.6803" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_17_)" d="M19.937,17.742v0.319c-0.213,0.116-0.459,0.175-0.738,0.175c-0.228,0-0.42-0.046-0.577-0.137
c-0.158-0.091-0.283-0.217-0.376-0.377c-0.092-0.16-0.138-0.333-0.138-0.519c0-0.297,0.105-0.545,0.316-0.747
s0.471-0.302,0.78-0.302c0.213,0,0.45,0.056,0.711,0.167v0.313c-0.237-0.136-0.47-0.204-0.696-0.204
c-0.233,0-0.426,0.073-0.58,0.22c-0.153,0.147-0.23,0.331-0.23,0.552c0,0.223,0.076,0.406,0.227,0.549
c0.151,0.144,0.345,0.216,0.581,0.216C19.462,17.968,19.702,17.892,19.937,17.742z"/>
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="20.7932" y1="21.6833" x2="21.3575" y2="13.8418" gradientTransform="matrix(1 0 0 -1 0 31.89)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_18_)" d="M21.292,16.152c0.314,0,0.575,0.099,0.784,0.298s0.313,0.448,0.313,0.748
c0,0.299-0.105,0.547-0.316,0.743s-0.477,0.295-0.797,0.295c-0.307,0-0.562-0.099-0.766-0.295s-0.306-0.442-0.306-0.737
c0-0.304,0.103-0.555,0.308-0.754C20.719,16.251,20.979,16.152,21.292,16.152z M21.304,16.428c-0.232,0-0.424,0.073-0.573,0.218
c-0.149,0.146-0.225,0.331-0.225,0.558c0,0.219,0.075,0.401,0.226,0.546c0.15,0.146,0.338,0.219,0.563,0.219
c0.227,0,0.416-0.074,0.567-0.223s0.228-0.333,0.228-0.554c0-0.216-0.076-0.396-0.228-0.543S21.524,16.428,21.304,16.428z"/>
</g>
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="17.8348" y1="39.2776" x2="13.8546" y2="-11.2175">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.15" style="stop-color:#E3CBCB"/>
<stop offset="0.2442" style="stop-color:#DBC3C3"/>
<stop offset="0.323" style="stop-color:#CCB6B6"/>
<stop offset="0.3933" style="stop-color:#B7A3A3"/>
<stop offset="0.4574" style="stop-color:#9D8B8B"/>
<stop offset="0.5013" style="stop-color:#867676"/>
<stop offset="0.8106" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_19_)" d="M16,29.999c-0.557,0-1.146-0.255-1.573-0.683L2.684,17.572C2.251,17.229,2,16.663,2,16
c0-0.557,0.255-1.145,0.684-1.573L14.428,2.683C14.771,2.251,15.337,2,16,2c0.557,0,1.145,0.255,1.573,0.683l11.744,11.745
C29.749,14.77,30,15.336,30,16c0,0.557-0.255,1.145-0.683,1.572L17.573,29.316C17.229,29.749,16.663,29.999,16,29.999z
M15.036,29.152c0.217,0.284,0.638,0.458,1.055,0.458c0.386,0,0.76-0.161,1.053-0.454l5.287-5.288l1.998-4.621v2.713l4.817-4.816
c0.212-0.289,0.376-0.701,0.458-1.193c-0.004-0.336-0.165-0.709-0.458-1.001L23.778,9.48l-4.582-1.909h2.672l-4.816-4.817
C16.838,2.473,16.417,2.3,16,2.3c-0.385,0-0.759,0.162-1.052,0.455L9.935,7.768l-2.091,5.291V9.95l-4.999,4.998
C2.564,15.162,2.391,15.583,2.391,16c0,0.386,0.162,0.76,0.455,1.053l5.288,5.288l4.916,2.088H10.15L15.036,29.152z"/>
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="10.7792" y1="807.737" x2="21.1214" y2="843.9145" gradientTransform="matrix(1 0 0 1 0 -810)">
<stop offset="0" style="stop-color:#E6CDCD"/>
<stop offset="0.4738" style="stop-color:#867676"/>
<stop offset="0.8284" style="stop-color:#443A3A"/>
<stop offset="0.9944" style="stop-color:#2B2323"/>
</linearGradient>
<path fill="url(#SVGID_20_)" d="M29.819,14.555L17.445,2.181C17.084,1.82,16.542,1.549,16,1.549s-1.084,0.181-1.445,0.632
L2.181,14.555C1.82,14.916,1.549,15.458,1.549,16c0,0.542,0.181,1.084,0.632,1.445l12.374,12.374
c0.361,0.361,0.903,0.632,1.445,0.632c0.542,0,1.084-0.181,1.445-0.632l12.374-12.374c0.361-0.361,0.632-0.903,0.632-1.445
C30.451,15.458,30.271,14.916,29.819,14.555z M29.458,17.355l-5.329,5.329v-1.987l-1.445,3.342l-5.329,5.329
c-0.361,0.361-0.813,0.542-1.264,0.542c-0.452,0-0.994-0.181-1.264-0.542l-5.419-5.239h2.168l-3.613-1.535l-5.329-5.329
C2.271,16.903,2.091,16.452,2.091,16c0-0.452,0.181-0.994,0.542-1.264l5.51-5.51v2.258L9.678,7.6l5.058-5.058
C15.097,2.181,15.548,2,16,2s0.994,0.181,1.264,0.542l5.329,5.329h-1.897l3.252,1.355l5.51,5.51C29.819,15.097,30,15.548,30,16
C29.909,16.542,29.729,16.994,29.458,17.355z"/>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -1,265 +1,265 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g>
<path fill="#282525" d="M15.514,31.541c-3.655-1.191-8.36-5.684-10.651-10.008s-3.205-9.796-3.361-10.75
C1.362,9.928,1.029,5.738,1.029,5.149c0-0.588,0.149-0.96,0.847-1.393C2.236,3.533,5.162,2.075,8.1,1.354
c2.938-0.72,7.967-0.72,7.967-0.72l0.091,0.003c0,0,5.029,0,7.966,0.72c2.938,0.721,5.863,2.179,6.225,2.402
c0.696,0.433,0.846,0.805,0.846,1.393s-0.333,4.778-0.474,5.634c-0.155,0.954-1.069,6.426-3.36,10.75s-7.066,8.855-10.65,10.006
C16.258,31.689,15.966,31.689,15.514,31.541z"/>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="20.6953" y1="23.6855" x2="15.786" y2="11.4275">
<stop offset="0" style="stop-color:#000000"/>
<stop offset="0.1638" style="stop-color:#030303"/>
<stop offset="0.2944" style="stop-color:#0D0D0D"/>
<stop offset="0.4136" style="stop-color:#1E1E1E"/>
<stop offset="0.526" style="stop-color:#363636"/>
<stop offset="0.6338" style="stop-color:#545454"/>
<stop offset="0.7379" style="stop-color:#7A7A7A"/>
<stop offset="0.8391" style="stop-color:#A7A7A7"/>
<stop offset="0.9356" style="stop-color:#D9D9D9"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path opacity="0.35" fill="url(#SVGID_1_)" d="M15.928,30.643c-0.011-0.002-0.053-0.008-0.146-0.039
c-3.331-1.086-7.834-5.357-10.042-9.521c-2.037-3.848-2.978-8.664-3.288-10.555c-0.136-0.826,1.066,1.648,3.656,1.472
c2.589-0.178,2.255-0.48,5.095-1.177c2.691-0.66-0.375-1.951,0-1.952l2.703-0.373l1.428,2.607c0.049,0,2.433-2.118,5.218-1.435
c2.839,0.696,3.595-0.359,4.468-0.167c1.39,0.307,1.923,1.75,2.68,1.788c0.759,0.037,1.831-1.586,1.695-0.761
c-0.31,1.892-1.251,6.708-3.289,10.552c-2.179,4.115-6.773,8.475-10.034,9.521C15.98,30.635,15.94,30.641,15.928,30.643z"/>
</g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="20.4844" y1="3.8057" x2="25.1602" y2="3.8057">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_2_)" d="M20.484,1.849c1.662,1.21,3.143,2.288,4.419,3.914c0.628-1.088-0.013-2.432-0.661-3.372L20.484,1.849
z"/>
<path fill="#282525" d="M25.263,16.123c-0.003,0.149-0.006,0.299-0.009,0.447c-0.047,0.121-0.114,0.229-0.175,0.335
c-0.091-0.018-0.396-0.174-0.468-0.139c-0.004,0.008-0.01,0.016-0.016,0.024c-0.006,0.002-0.013,0.006-0.017,0.008
c-0.013,0.025,0.016,0.035,0.017,0.041c0.016,0.087-0.007,0.274,0.009,0.359c-0.006,0.007-0.012,0.016-0.019,0.025
c-0.052,0.002-0.072-0.015-0.124-0.034c-0.016,0.003-0.034,0.006-0.049,0.009c-0.077,0.242-0.205,0.766-0.543,0.676
c-0.211-0.057-0.384-0.242-0.584-0.309c0-0.006,0-0.012,0-0.018c0.125-0.058,0.191-0.18,0.311-0.228
c-0.035-0.076-0.198-0.113-0.285-0.163c-0.222-0.131-0.444-0.261-0.667-0.392c-0.695-0.469-1.223-1.057-1.566-1.868
c-0.075-0.174-0.302-0.564-0.233-0.791c0.133-0.447,0.592-0.07,0.94-0.163c0.241-0.064,0.411-0.109,0.691-0.156
c0.27-0.042,0.826,0.103,1.026,0.163c0.099,0.02,0.195,0.039,0.292,0.057c0.15,0.068,0.216,0.279,0.317,0.401
c0.119,0.139,0.401,0.208,0.617,0.218c0-0.005,0-0.01,0-0.015c-0.29-0.149-0.121-0.349-0.226-0.58
c-0.054-0.116-0.19-0.198-0.191-0.358c0.441-0.153,1.388,0.477,1.533,0.84c0.062,0.153,0.019,0.313-0.05,0.448
c-0.007,0.009-0.011,0.018-0.017,0.025c0.29-0.068,0.918-0.477,0.792-0.873c-0.072-0.227-0.285-0.442-0.408-0.636
c-0.088-0.136-0.17-0.348-0.3-0.44c0.02-0.041,0.058-0.049,0.108-0.058c0.008-0.024,0.017-0.048,0.024-0.073
c-0.142-0.079-0.282-0.267-0.383-0.391c-0.308-0.289-0.612-0.577-0.918-0.864c-0.189-0.128-0.377-0.256-0.567-0.384
c-0.252-0.181-0.482-0.403-0.758-0.563c-0.124-0.062-0.25-0.126-0.375-0.188c-0.092-0.044-0.2-0.038-0.283-0.106
c-0.293-0.241-0.518-0.549-0.759-0.84c-0.197-0.236-0.315-0.534-0.467-0.791c-0.385-0.65-0.666-1.373-0.958-2.063
c-0.152-0.354-0.371-0.748-0.593-1.052c-0.204-0.281-0.32-0.628-0.509-0.914c0.026-0.033-0.091-0.164-0.108-0.196
c-0.111-0.206-0.223-0.413-0.334-0.619c-0.458-0.862-0.96-1.74-1.56-2.496C17.059,0.98,16.913,2.38,16.457,2
c-0.15-0.125-0.323-0.268-0.442-0.423c-0.081-0.058-0.162-0.114-0.242-0.172c-0.137-0.124-5.469,0.381-6.812,0.59
C7.965,2.15,6.677,2.851,7.639,3.255c0.331,0.139,0.632,0.167,0.917,0.318c0,0.03,0,0.059,0,0.089
C8.434,3.749,8.335,3.864,8.222,3.956c0.027,0.713,0.533,1.151,1.009,1.418c0.113,0.06,0.228,0.12,0.342,0.18
C9.575,5.57,9.578,5.586,9.581,5.603c0.106,0.148,0.241,0.314,0.367,0.449c0.081,0.087,0.264,0.194,0.309,0.302
c0,0.055,0,0.109,0,0.164c0.066,0.223,0.124,0.417,0.25,0.628c0.31,0.516,0.879,0.813,1.442,1.06
c0.117,0.052,0.288,0.059,0.425,0.123c0.204,0.095,0.386,0.117,0.583,0.195c0.076,0.03,0.209,0.096,0.317,0.106
c-0.028,0.046-0.124,0.019-0.192,0.007c-0.269-0.045-0.496,0.035-0.717,0.098c0.037,0.256,0.515,0.602,0.701,0.75
c0.384,0.309,0.83,0.567,1.268,0.824c0.172,0.084,0.344,0.168,0.516,0.253c0.175,0.104,0.382,0.175,0.56,0.285
c0.079,0.049,0.157,0.113,0.259,0.139c0.002,0.006,0.005,0.011,0.008,0.017c-0.02,0.011-0.039,0.021-0.058,0.033
c-0.083-0.003-0.167-0.006-0.251-0.008c-0.263-0.042-0.458-0.136-0.7-0.229c-0.07-0.022-0.139-0.043-0.208-0.065
c-0.158-0.099-0.321-0.117-0.492-0.196c-0.146-0.067-0.306-0.161-0.483-0.196c-0.293-0.056-0.578,0.121-0.768,0.196
c-0.161,0.064-0.348,0.082-0.516,0.123c-0.363,0.089-0.798,0.253-1.109,0.481c-0.611,0.446-0.853,0.97-1.092,1.664
c-0.054,0.158-0.202,0.756,0.009,0.815c0.088,0.069,0.542,0.004,0.674,0.042c0.201,0.057,0.462-0.015,0.734,0.033
c0.355,0.061,0.694-0.014,1.059,0.024c0.191,0.003,0.384,0.005,0.575,0.007c0.114-0.004,0.229-0.009,0.342-0.015
c0.271,0.029,0.928-0.125,1.018-0.081c0.37-0.025,1.328-0.104,1.492,0.081c0.072,0.083,0.071,0.27,0.101,0.35
c0.063,0.135,0.127,0.267,0.19,0.4c0.204,0.371,0.556,0.643,0.784,0.996c0.196,0.303,0.301,0.67,0.417,1.003
c0.054,0.153,0.021,0.291,0.059,0.448c0.094,0.403,0.188,0.717,0.324,1.069c0.04,0.104,0.091,0.423,0.176,0.464
c0.003-0.145,0.115-0.262,0.158-0.399c0.009-0.007,0.018-0.012,0.025-0.017c0.037,0.039,0.028,0.095,0.05,0.171
c0.057,0.194,0.125,0.392,0.199,0.587c0.032,0.081,0.032,0.172,0.06,0.229c0.079,0.163,0.235,0.303,0.392,0.391
c0.054,0.024,0.105,0.049,0.16,0.073c0.027,0.006,0.06,0.012,0.091,0.017c-0.1-0.216-0.137-0.285-0.091-0.546
c0.021-0.012,0.043-0.021,0.065-0.033c0.003,0,0.006,0,0.008,0c0,0.408,0.374,0.86,0.584,1.125c0.069,0.134,0.139,0.267,0.208,0.399
c-0.059,0.039-0.118,0.076-0.176,0.115c-0.111,0.081-0.276,0.334-0.282,0.505c0.16,0.183,0.558,0.6,0.841,0.578
c0.178-0.013,0.398,0.049,0.483-0.039c-0.28-0.052-0.766-0.298-0.825-0.588c-0.058-0.089,0.236-0.299,0.316-0.335
c0.29-0.125,0.596-0.352,0.86-0.383c0.075-0.009,0.229-0.102,0.3-0.065c0.117,0.06,0.197,0.446,0.192,0.588
c0.007,0.005,0.017,0.01,0.024,0.015c0.113-0.129,0.147-0.533,0.051-0.717c0.061-0.051,0.193-0.043,0.249-0.073
c0.053,0.067,0.104,0.136,0.158,0.205c0.13,0.183,0.184,0.444,0.176,0.667c0.024-0.01,0.009,0.001,0.024-0.016
c0.135-0.101,0.025-0.863-0.084-0.92c0-0.012,0-0.024,0-0.033c0.166-0.047,0.292-0.196,0.4-0.302c0.012,0,0.022,0,0.033,0
c0.059,0.062,0.116,0.124,0.176,0.187c0.13,0.139,0.389,0.553,0.409,0.774c0.01,0,0.021,0,0.032,0
c0.024-0.528,0.054-0.991-0.3-1.346c-0.101-0.101-0.251-0.153-0.359-0.228c-0.019,0.003-0.037,0.005-0.058,0.009
c-0.152,0.247-0.264,0.472-0.55,0.586c-0.123-0.107-0.227-0.278-0.4-0.335c-0.016,0.012-0.014,0.008-0.025,0.025
c-0.036,0.035-0.031,0.118-0.065,0.18c-0.048,0.057-0.097,0.114-0.143,0.171c-0.006,0-0.012,0-0.017,0
c-0.045-0.036-0.075-0.09-0.142-0.081c-0.012,0.002-0.5,0.354-0.525,0.393c-0.186-0.05-0.522-0.666-0.551-0.851
c0.063,0.014,0.227,0.087,0.259,0.124c0.025,0.003,0.05,0.006,0.075,0.007c-0.008-0.074-0.045-0.096-0.066-0.146
c-0.095-0.216-0.179-0.506-0.101-0.76c0.009-0.001,0.017-0.004,0.025-0.007c0.212,0.298,0.709,0.726,1.135,0.799
c-0.059-0.227-0.157-0.368-0.067-0.653c0.128-0.023,0.289,0.119,0.533,0.124c0.002-0.007,0.006-0.013,0.009-0.018
c-0.085-0.176-0.141-0.358-0.018-0.521c0.482,0.026,1.199,0.295,1.318,0.717c0.008,0,0.016,0,0.024,0
c-0.015-0.2-0.032-0.422-0.05-0.619c0.167,0.014,0.475,0.433,0.649,0.531c0.023,0.159-0.123,0.64-0.032,0.782
c0.055,0.091,0.219,0.084,0.333,0.122c0.402,0.133,0.844,0.027,1.075-0.245c-0.006-0.006-0.012-0.01-0.017-0.016
c-0.347,0.149-1.192,0.066-1.025-0.498c0.116-0.391,0.26-0.762,0.617-1.019c0.045-0.041,0.088-0.083,0.134-0.122
c0.064-0.015,0.282,0.191,0.316,0.235c0.05,0.065,0.131,0.14,0.149,0.229c0.106-0.075-0.181-0.628-0.283-0.685
c-0.003-0.009-0.006-0.016-0.009-0.024c0.08-0.037,0.115-0.102,0.176-0.155c0.225,0.066,0.593,0.397,0.667,0.611
c0.008,0.005,0.017,0.011,0.025,0.017c-0.011-0.251-0.301-0.738-0.508-0.808c0.011-0.165,0.146-0.275,0.14-0.472
c0.003-0.005,0.006-0.007,0.009-0.01c0.276,0.039,0.521,0.236,0.708,0.376c0.063,0.045,0.103,0.121,0.176,0.154
c0.023,0.022,0.045,0.044,0.066,0.065c0.003-0.002,0.006-0.006,0.009-0.008C26.432,16.669,25.903,16.11,25.263,16.123z"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="1.4673" y1="12.2451" x2="24.4434" y2="12.2451">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_3_)" d="M21.74,16.237c-0.008,0.312-0.014,0.628-0.02,0.935c-0.096,0.254-0.234,0.479-0.357,0.699
c-0.182-0.035-0.807-0.359-0.951-0.287c-0.01,0.01-0.021,0.031-0.033,0.049c-0.012,0.002-0.023,0.012-0.033,0.018
c-0.027,0.049,0.031,0.076,0.033,0.082c0.033,0.182-0.012,0.576,0.018,0.748c-0.012,0.02-0.021,0.035-0.035,0.055
c-0.109,0.006-0.148-0.025-0.256-0.07l-0.102,0.016c-0.152,0.508-0.416,1.6-1.107,1.414c-0.426-0.115-0.781-0.506-1.188-0.646
v-0.035c0.256-0.119,0.387-0.371,0.629-0.475c-0.066-0.16-0.404-0.23-0.576-0.34c-0.455-0.273-0.91-0.543-1.364-0.814
c-1.418-0.979-2.492-2.208-3.196-3.897c-0.153-0.367-1.164-1.681-1.026-2.153c0.969,0.125,1.758,0.356,2.472,0.162
c0.491-0.133,0.838-0.227,1.414-0.322c0.544-0.091,1.681,0.212,2.091,0.34c0.195,0.039,0.396,0.08,0.596,0.119
c0.305,0.141,0.436,0.581,0.646,0.833c0.238,0.293,0.818,0.436,1.258,0.46v-0.035c-0.596-0.312-0.246-0.728-0.459-1.207
c-0.111-0.244-0.391-0.415-0.393-0.749c0.902-0.318,2.832,0.995,3.131,1.752c0.123,0.319,0.035,0.654-0.104,0.936
c-0.016,0.018-0.02,0.033-0.035,0.05c0.592-0.14,1.873-0.994,1.617-1.819c-0.146-0.473-0.58-0.922-0.834-1.327
c-0.18-0.285-0.346-0.724-0.611-0.918c0.037-0.084,0.119-0.102,0.219-0.119c0.02-0.051,0.039-0.102,0.051-0.153
c-0.291-0.164-0.572-0.556-0.783-0.816c-0.48-0.464-0.961-0.93-1.444-1.394c-0.062-0.1-0.135-0.194-0.233-0.268
c-0.472-0.357-0.847-1.135-1.268-1.534c-0.419-0.398-1.214-0.867-1.214-0.867s0.198,0.294,0.42,0.571
c0.09,0.113,0.197,0.333,0.293,0.553c-0.362-0.295-0.724-0.598-1.128-0.838c-0.252-0.13-0.508-0.261-0.764-0.391
c-0.184-0.092-0.408-0.079-0.58-0.221c-0.332-0.282-0.623-0.609-0.901-0.948h0.278c-0.449-0.85-0.926-1.7-1.439-2.515
c-1.728,0.071-4.2,0.244-5.942,0.671C5.591,2.262,2.665,3.72,2.305,3.943C1.689,4.325,1.51,4.669,1.475,5.147
c0.053,0.03,0.111,0.054,0.163,0.086c0.16,0.102,0.321,0.235,0.527,0.29c0.004,0.011,0.011,0.022,0.017,0.034
c-0.04,0.022-0.08,0.045-0.118,0.068C1.892,5.62,1.722,5.614,1.553,5.609C1.521,5.604,1.498,5.591,1.467,5.585
c0.05,1.074,0.336,4.605,0.464,5.384c0,0.004,0.002,0.013,0.003,0.018c0.333,0.033,2.04,0.973,2.144,1.093
c0.146,0.175,0.146,0.561,0.203,0.732c0.131,0.277,1.618,1.473,1.75,1.75c0.414,0.772-1.198,0.282-1.198,0.282
s1.818,1.607,2.013,2.195c0.041,0.123-1.202-0.223-1.162-0.104c0.044,0.129,0.05,0.25,0.058,0.373l0.196,0.035
c0,0,2.756,2.012,2.868,2.123c0.09,0.092,1.949,1.609,2.68,2.207c-0.042-0.266-0.043-0.537,0.033-0.795
c0.015-0.004,0.034-0.01,0.051-0.014c0.434,0.621,1.447,1.512,2.311,1.666c-0.117-0.473-0.317-0.771-0.136-1.363
c0.262-0.047,0.592,0.248,1.091,0.256c0.004-0.012,0.009-0.021,0.015-0.035c-0.171-0.363-0.285-0.744-0.031-1.084
c0.982,0.053,2.446,0.611,2.686,1.494h0.051c-0.033-0.418-0.066-0.883-0.102-1.291c0.338,0.025,0.967,0.9,1.324,1.104
c0.049,0.336-0.25,1.336-0.066,1.637c0.113,0.189,0.449,0.174,0.682,0.25c0.82,0.281,1.719,0.061,2.189-0.51
c-0.01-0.01-0.018-0.02-0.033-0.033c-0.703,0.314-2.43,0.139-2.09-1.037c0.236-0.813,0.531-1.586,1.258-2.127
c0.09-0.084,0.182-0.168,0.273-0.252c0.133-0.027,0.576,0.398,0.645,0.49c0.104,0.135,0.268,0.293,0.307,0.479
c0.217-0.154-0.371-1.311-0.58-1.432c-0.004-0.014-0.008-0.031-0.016-0.049c0.166-0.076,0.234-0.209,0.355-0.324
c0.459,0.143,1.213,0.83,1.363,1.275c0.018,0.012,0.031,0.021,0.051,0.035c-0.023-0.521-0.613-1.541-1.037-1.688
c0.025-0.342,0.301-0.57,0.289-0.982c0.004-0.006,0.012-0.014,0.018-0.02c0.561,0.082,1.063,0.494,1.443,0.785
c0.127,0.094,0.211,0.254,0.359,0.322c0.045,0.045,0.09,0.09,0.137,0.137c0.004-0.008,0.01-0.012,0.016-0.014
C24.121,17.377,23.045,16.209,21.74,16.237z M21.777,10.059c0,0-0.334,0.296-0.682,0.093c-0.273-0.159-0.486-1.172-0.486-1.172
l-0.012-0.294c0,0,0.199,0.293,0.375,0.536c0.242,0.344,0.377,0.505,0.484,0.607C21.621,9.975,21.777,10.059,21.777,10.059z"/>
<g>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="21.4482" y1="19.2559" x2="12.1449" y2="2.554">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_4_)" d="M16.116,31.229c-0.13,0-0.272-0.025-0.461-0.086c-3.473-1.133-8.139-5.529-10.402-9.801
c-2.06-3.89-3.006-8.726-3.318-10.624C1.792,9.854,1.467,5.684,1.467,5.151c0-0.433,0.063-0.677,0.645-1.038
C2.344,3.97,5.217,2.499,8.208,1.765c2.799-0.686,7.643-0.708,7.848-0.708l0.097,0.003h0.005c0.049,0,5.005,0.008,7.859,0.708
c2.989,0.733,5.863,2.205,6.095,2.348c0.582,0.361,0.645,0.605,0.645,1.038c0,0.533-0.324,4.704-0.467,5.568
c-0.313,1.898-1.258,6.735-3.318,10.624c-1.093,2.063-2.78,4.223-4.756,6.084s-3.979,3.181-5.644,3.715
C16.384,31.204,16.244,31.229,16.116,31.229z M16.05,1.441c-0.195,0-4.993,0.021-7.744,0.696C5.365,2.858,2.554,4.296,2.328,4.436
C1.865,4.723,1.865,4.849,1.865,5.151c0,0.527,0.321,4.653,0.462,5.508c0.309,1.88,1.246,6.668,3.28,10.509
c2.222,4.195,6.787,8.507,10.174,9.61c0.146,0.049,0.249,0.068,0.334,0.068c0.083,0,0.186-0.02,0.33-0.066
c1.608-0.517,3.558-1.804,5.49-3.625c1.945-1.833,3.607-3.958,4.682-5.984c2.033-3.84,2.97-8.628,3.279-10.509
c0.141-0.855,0.463-4.981,0.463-5.508c0-0.302,0-0.428-0.463-0.715c-0.228-0.141-3.039-1.578-5.979-2.3
c-2.805-0.687-7.711-0.696-7.76-0.696L16.05,1.441z"/>
<path fill="#282525" d="M16.055,1.057l0.098,0.003h0.005c0.049,0,5.005,0.008,7.859,0.708c2.989,0.733,5.863,2.205,6.095,2.348
c0.582,0.361,0.645,0.605,0.645,1.038c0,0.533-0.324,4.704-0.467,5.568c-0.313,1.898-1.258,6.735-3.318,10.624
c-1.093,2.063-2.78,4.223-4.756,6.084s-3.979,3.181-5.644,3.715c-0.187,0.06-0.327,0.085-0.456,0.085
c-0.13,0-0.272-0.025-0.461-0.086c-3.473-1.133-8.139-5.529-10.402-9.801c-2.06-3.89-3.006-8.726-3.318-10.624
C1.792,9.854,1.467,5.684,1.467,5.151c0-0.433,0.063-0.677,0.645-1.038C2.344,3.97,5.217,2.499,8.208,1.765
C11.007,1.079,15.851,1.058,16.055,1.057 M16.116,30.847c0.083,0,0.186-0.02,0.33-0.066c1.608-0.517,3.558-1.804,5.49-3.625
c1.945-1.833,3.607-3.958,4.682-5.984c2.033-3.84,2.97-8.628,3.279-10.509c0.141-0.855,0.463-4.981,0.463-5.508
c0-0.302,0-0.428-0.463-0.715c-0.228-0.141-3.039-1.578-5.979-2.3c-2.805-0.687-7.711-0.696-7.76-0.696L16.05,1.441
c-0.195,0-4.993,0.021-7.744,0.696C5.365,2.858,2.554,4.296,2.328,4.436C1.865,4.723,1.865,4.849,1.865,5.151
c0,0.527,0.321,4.653,0.462,5.508c0.309,1.88,1.246,6.668,3.28,10.509c2.222,4.195,6.787,8.507,10.174,9.61
C15.928,30.827,16.03,30.847,16.116,30.847 M16.061,0.739h-0.005c-0.206,0-5.086,0.021-7.923,0.717
c-3.029,0.743-5.951,2.24-6.187,2.387C1.272,4.26,1.148,4.611,1.148,5.151c0,0.538,0.329,4.748,0.472,5.62
c0.314,1.914,1.269,6.789,3.352,10.721c2.295,4.336,7.043,8.8,10.583,9.953c0.221,0.072,0.395,0.105,0.56,0.105
c0.163,0,0.334-0.031,0.552-0.102c1.71-0.549,3.757-1.894,5.765-3.787c2-1.885,3.712-4.075,4.819-6.167
c2.082-3.931,3.037-8.807,3.351-10.721c0.144-0.871,0.473-5.081,0.473-5.619c0-0.54-0.123-0.891-0.796-1.308
c-0.236-0.146-3.16-1.645-6.188-2.387c-2.889-0.708-7.884-0.717-7.934-0.717h-0.003l-0.089-0.003H16.061L16.061,0.739z
M16.116,30.529c-0.048,0-0.127-0.019-0.235-0.054c-3.321-1.081-7.803-5.324-9.992-9.456c-2.012-3.8-2.941-8.547-3.247-10.412
C2.502,9.76,2.183,5.673,2.183,5.151c0-0.116,0.001-0.178,0.019-0.209c0.02-0.037,0.086-0.107,0.293-0.235
c0.223-0.138,2.984-1.548,5.886-2.26c2.684-0.659,7.399-0.686,7.664-0.687l0.103,0.003h0.005h0.005
c0.048,0,4.917,0.008,7.684,0.687c2.901,0.711,5.664,2.123,5.887,2.261c0.207,0.128,0.273,0.198,0.294,0.234
c0.018,0.032,0.019,0.094,0.019,0.21c0,0.522-0.319,4.609-0.458,5.457c-0.307,1.865-1.235,6.613-3.247,10.412
c-1.057,1.995-2.697,4.092-4.617,5.901c-1.898,1.789-3.806,3.051-5.371,3.554C16.24,30.513,16.164,30.529,16.116,30.529
L16.116,30.529z"/>
</g>
<g>
<g>
<path fill="#282525" d="M23.386,30.365c-4.477-1.824-9.65-1.919-14.563,0.091c-0.701-1.597-1.4-3.194-2.1-4.791
c6.301-2.618,13.004-2.466,18.785-0.063C24.909,27.113,24.024,28.887,23.386,30.365z"/>
</g>
<g>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="17.0723" y1="33.1914" x2="15.6923" y2="22.6429">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_5_)" d="M7.194,25.856l0.183-0.072c2.853-1.111,5.832-1.675,8.853-1.675c2.843,0,5.63,0.5,8.289,1.486
l0.044,0.017l0.462,0.192l-1.788,4.108l-0.047-0.019l-0.005,0.01c-2.203-0.852-4.53-1.282-6.916-1.282
c-2.414,0-4.799,0.441-7.093,1.313l-0.167,0.063L7.194,25.856z M16.231,24.486c-2.88,0-5.726,0.521-8.456,1.549l-0.079,0.029
l1.515,3.455l0.07-0.025c2.263-0.828,4.613-1.248,6.986-1.248c2.265,0,4.485,0.383,6.598,1.14l0.071,0.024l1.502-3.441
l-0.079-0.03C21.753,24.975,19.019,24.486,16.231,24.486z"/>
<g>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.4873" y1="33.9238" x2="10.1073" y2="23.3755">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_6_)" d="M10.108,28.419c-0.076-0.224-0.141-0.399-0.196-0.532c0.135,0.021,0.251,0.029,0.351,0.024
c0.1-0.004,0.184-0.017,0.255-0.035c0.093-0.024,0.164-0.059,0.211-0.101c0.047-0.043,0.064-0.09,0.05-0.144
c-0.005-0.018-0.013-0.035-0.022-0.05c-0.01-0.015-0.025-0.031-0.046-0.048c-0.02-0.017-0.048-0.034-0.083-0.051l-0.373-0.18
c-0.086-0.042-0.148-0.07-0.184-0.091c-0.07-0.039-0.129-0.078-0.172-0.116c-0.045-0.039-0.08-0.08-0.108-0.124
c-0.028-0.046-0.049-0.096-0.063-0.149c-0.018-0.064-0.024-0.132-0.018-0.201c0.006-0.068,0.024-0.135,0.056-0.202
c0.031-0.066,0.079-0.13,0.145-0.191c0.065-0.06,0.139-0.107,0.221-0.146c0.083-0.037,0.17-0.069,0.262-0.094
c0.181-0.048,0.382-0.081,0.606-0.096c0.022,0.072,0.045,0.138,0.066,0.198c0.021,0.06,0.06,0.165,0.117,0.314
c-0.109-0.014-0.206-0.017-0.291-0.01c-0.085,0.006-0.157,0.017-0.216,0.034c-0.083,0.022-0.148,0.057-0.195,0.103
c-0.046,0.046-0.063,0.091-0.051,0.137c0.006,0.022,0.016,0.041,0.03,0.06c0.014,0.018,0.036,0.038,0.067,0.058
c0.031,0.021,0.07,0.043,0.117,0.064c0.047,0.023,0.121,0.055,0.22,0.097l0.141,0.06c0.042,0.02,0.087,0.042,0.137,0.072
c0.05,0.026,0.095,0.057,0.134,0.088c0.039,0.03,0.071,0.061,0.095,0.088c0.023,0.028,0.044,0.058,0.061,0.087
c0.016,0.031,0.029,0.065,0.039,0.103c0.026,0.097,0.028,0.193,0.006,0.293c-0.022,0.1-0.068,0.189-0.137,0.268
c-0.07,0.08-0.152,0.143-0.247,0.192c-0.095,0.051-0.198,0.09-0.311,0.121C10.61,28.365,10.385,28.398,10.108,28.419z"/>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="13.5469" y1="33.6533" x2="12.167" y2="23.1061">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_7_)" d="M12.41,27.889c-0.038-0.539-0.105-1.127-0.204-1.766l-0.692,0.137l-0.023-0.183
c-0.012-0.097-0.027-0.204-0.045-0.319c0.31-0.052,0.67-0.113,1.083-0.184l0.403-0.07l0.393-0.067l0.212-0.039l0.018,0.162
c0.01,0.087,0.02,0.157,0.028,0.214c0.007,0.057,0.013,0.1,0.019,0.128c-0.235,0.027-0.429,0.056-0.58,0.082l-0.114,0.018
c0.017,0.197,0.035,0.376,0.054,0.541c0.029,0.236,0.058,0.465,0.09,0.688c0.031,0.221,0.059,0.399,0.082,0.535
c-0.179,0.028-0.294,0.047-0.347,0.056C12.738,27.829,12.613,27.853,12.41,27.889z"/>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="15.8555" y1="33.3516" x2="14.4756" y2="22.8043">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_8_)" d="M13.979,27.627c0.009-0.195,0.014-0.372,0.016-0.528c0.002-0.156,0.001-0.337-0.003-0.543
c-0.004-0.206-0.011-0.423-0.021-0.65c-0.01-0.229-0.02-0.41-0.028-0.545c0.138-0.006,0.249-0.011,0.335-0.017
c0.088-0.006,0.195-0.015,0.322-0.028c0.126-0.014,0.25-0.024,0.371-0.032c0.14-0.008,0.267-0.01,0.378-0.006
c0.083,0.002,0.159,0.013,0.229,0.032c0.069,0.021,0.128,0.047,0.176,0.078c0.049,0.032,0.09,0.068,0.124,0.11
c0.034,0.04,0.061,0.089,0.082,0.146c0.02,0.056,0.033,0.117,0.037,0.185c0.005,0.074,0,0.144-0.015,0.209
c-0.014,0.065-0.04,0.128-0.076,0.188c-0.037,0.06-0.084,0.112-0.143,0.157c-0.059,0.046-0.142,0.093-0.249,0.144l0.1,0.204
c0.028,0.058,0.057,0.115,0.089,0.174l0.253,0.472c0.011,0.02,0.032,0.06,0.061,0.12c-0.181,0.01-0.304,0.017-0.367,0.021
c-0.079,0.004-0.209,0.015-0.391,0.028c-0.021-0.057-0.06-0.16-0.116-0.313c-0.023-0.064-0.042-0.113-0.058-0.148
c-0.032-0.076-0.078-0.184-0.138-0.32l-0.201-0.458c0.061,0.007,0.119,0.009,0.177,0.005c0.08-0.005,0.152-0.021,0.217-0.051
c0.064-0.029,0.111-0.069,0.142-0.121c0.029-0.054,0.043-0.108,0.04-0.164c-0.003-0.049-0.019-0.089-0.047-0.123
c-0.028-0.033-0.068-0.059-0.124-0.072c-0.056-0.015-0.141-0.019-0.255-0.012c-0.038,0.003-0.078,0.007-0.12,0.012
c-0.041,0.004-0.089,0.009-0.144,0.014c0,0.227,0.006,0.504,0.016,0.828c0.009,0.328,0.023,0.647,0.04,0.961
c-0.185,0.011-0.305,0.016-0.359,0.02C14.262,27.605,14.146,27.614,13.979,27.627z"/>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="17.6396" y1="33.1211" x2="16.2589" y2="22.567">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_9_)" d="M16.317,27.516c0.083-0.888,0.127-1.569,0.137-2.05l0.003-0.214
c0.194,0.007,0.323,0.011,0.389,0.012c0.029,0.002,0.148,0.002,0.356,0.004c-0.025,0.249-0.046,0.484-0.063,0.706
c-0.021,0.309-0.039,0.599-0.051,0.867s-0.021,0.498-0.023,0.689l-0.34-0.012C16.658,27.519,16.523,27.518,16.317,27.516z"/>
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="19.5723" y1="32.8643" x2="18.1927" y2="22.3194">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_10_)" d="M17.421,27.518c0.044-0.203,0.078-0.372,0.102-0.507c0.043-0.238,0.098-0.563,0.162-0.979
c0.045-0.289,0.075-0.492,0.088-0.61l0.017-0.142c0.182,0.021,0.309,0.037,0.378,0.045c0.046,0.005,0.164,0.017,0.355,0.036
l-0.214,1.223l-0.152,1.015l-0.357-0.043C17.748,27.551,17.623,27.538,17.421,27.518z M18.379,26.42l0.424-0.461l0.346-0.385
l0.108-0.133c0.204,0.025,0.342,0.042,0.414,0.05c0.021,0.003,0.151,0.017,0.395,0.04l-0.792,0.802l-0.15,0.161l0.101,0.208
l0.578,1.079l-0.405-0.049c-0.088-0.01-0.237-0.025-0.447-0.046C18.838,27.403,18.646,26.981,18.379,26.42z"/>
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="21.8867" y1="32.5654" x2="20.5061" y2="22.0126">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_11_)" d="M19.938,27.822c0.092-0.273,0.165-0.501,0.22-0.686c0.056-0.186,0.127-0.431,0.21-0.739
c0.084-0.308,0.139-0.512,0.161-0.613l0.032-0.144c0.254,0.062,0.561,0.134,0.921,0.218c0.333,0.076,0.627,0.143,0.883,0.199
l-0.016,0.053c-0.005,0.013-0.019,0.059-0.041,0.139l-0.051,0.173c-0.011,0.037-0.02,0.075-0.029,0.113
c-0.206-0.056-0.379-0.1-0.521-0.134c-0.155-0.035-0.259-0.06-0.313-0.071c-0.055-0.013-0.141-0.029-0.256-0.051l-0.105,0.365
c0.126,0.034,0.273,0.069,0.442,0.108c0.062,0.015,0.223,0.047,0.485,0.1c-0.043,0.137-0.092,0.299-0.146,0.485
c-0.186-0.044-0.328-0.078-0.429-0.102c-0.148-0.033-0.316-0.069-0.502-0.104l-0.109,0.389l0.186,0.043
c0.055,0.013,0.17,0.037,0.343,0.074l0.335,0.069c0.051,0.011,0.135,0.024,0.252,0.044c-0.049,0.156-0.099,0.319-0.146,0.488
c-0.264-0.063-0.551-0.131-0.864-0.204l-0.712-0.163L19.938,27.822z"/>
</g>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g>
<path fill="#282525" d="M15.514,31.541c-3.655-1.191-8.36-5.684-10.651-10.008s-3.205-9.796-3.361-10.75
C1.362,9.928,1.029,5.738,1.029,5.149c0-0.588,0.149-0.96,0.847-1.393C2.236,3.533,5.162,2.075,8.1,1.354
c2.938-0.72,7.967-0.72,7.967-0.72l0.091,0.003c0,0,5.029,0,7.966,0.72c2.938,0.721,5.863,2.179,6.225,2.402
c0.696,0.433,0.846,0.805,0.846,1.393s-0.333,4.778-0.474,5.634c-0.155,0.954-1.069,6.426-3.36,10.75s-7.066,8.855-10.65,10.006
C16.258,31.689,15.966,31.689,15.514,31.541z"/>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="20.6953" y1="23.6855" x2="15.786" y2="11.4275">
<stop offset="0" style="stop-color:#000000"/>
<stop offset="0.1638" style="stop-color:#030303"/>
<stop offset="0.2944" style="stop-color:#0D0D0D"/>
<stop offset="0.4136" style="stop-color:#1E1E1E"/>
<stop offset="0.526" style="stop-color:#363636"/>
<stop offset="0.6338" style="stop-color:#545454"/>
<stop offset="0.7379" style="stop-color:#7A7A7A"/>
<stop offset="0.8391" style="stop-color:#A7A7A7"/>
<stop offset="0.9356" style="stop-color:#D9D9D9"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path opacity="0.35" fill="url(#SVGID_1_)" d="M15.928,30.643c-0.011-0.002-0.053-0.008-0.146-0.039
c-3.331-1.086-7.834-5.357-10.042-9.521c-2.037-3.848-2.978-8.664-3.288-10.555c-0.136-0.826,1.066,1.648,3.656,1.472
c2.589-0.178,2.255-0.48,5.095-1.177c2.691-0.66-0.375-1.951,0-1.952l2.703-0.373l1.428,2.607c0.049,0,2.433-2.118,5.218-1.435
c2.839,0.696,3.595-0.359,4.468-0.167c1.39,0.307,1.923,1.75,2.68,1.788c0.759,0.037,1.831-1.586,1.695-0.761
c-0.31,1.892-1.251,6.708-3.289,10.552c-2.179,4.115-6.773,8.475-10.034,9.521C15.98,30.635,15.94,30.641,15.928,30.643z"/>
</g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="20.4844" y1="3.8057" x2="25.1602" y2="3.8057">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_2_)" d="M20.484,1.849c1.662,1.21,3.143,2.288,4.419,3.914c0.628-1.088-0.013-2.432-0.661-3.372L20.484,1.849
z"/>
<path fill="#282525" d="M25.263,16.123c-0.003,0.149-0.006,0.299-0.009,0.447c-0.047,0.121-0.114,0.229-0.175,0.335
c-0.091-0.018-0.396-0.174-0.468-0.139c-0.004,0.008-0.01,0.016-0.016,0.024c-0.006,0.002-0.013,0.006-0.017,0.008
c-0.013,0.025,0.016,0.035,0.017,0.041c0.016,0.087-0.007,0.274,0.009,0.359c-0.006,0.007-0.012,0.016-0.019,0.025
c-0.052,0.002-0.072-0.015-0.124-0.034c-0.016,0.003-0.034,0.006-0.049,0.009c-0.077,0.242-0.205,0.766-0.543,0.676
c-0.211-0.057-0.384-0.242-0.584-0.309c0-0.006,0-0.012,0-0.018c0.125-0.058,0.191-0.18,0.311-0.228
c-0.035-0.076-0.198-0.113-0.285-0.163c-0.222-0.131-0.444-0.261-0.667-0.392c-0.695-0.469-1.223-1.057-1.566-1.868
c-0.075-0.174-0.302-0.564-0.233-0.791c0.133-0.447,0.592-0.07,0.94-0.163c0.241-0.064,0.411-0.109,0.691-0.156
c0.27-0.042,0.826,0.103,1.026,0.163c0.099,0.02,0.195,0.039,0.292,0.057c0.15,0.068,0.216,0.279,0.317,0.401
c0.119,0.139,0.401,0.208,0.617,0.218c0-0.005,0-0.01,0-0.015c-0.29-0.149-0.121-0.349-0.226-0.58
c-0.054-0.116-0.19-0.198-0.191-0.358c0.441-0.153,1.388,0.477,1.533,0.84c0.062,0.153,0.019,0.313-0.05,0.448
c-0.007,0.009-0.011,0.018-0.017,0.025c0.29-0.068,0.918-0.477,0.792-0.873c-0.072-0.227-0.285-0.442-0.408-0.636
c-0.088-0.136-0.17-0.348-0.3-0.44c0.02-0.041,0.058-0.049,0.108-0.058c0.008-0.024,0.017-0.048,0.024-0.073
c-0.142-0.079-0.282-0.267-0.383-0.391c-0.308-0.289-0.612-0.577-0.918-0.864c-0.189-0.128-0.377-0.256-0.567-0.384
c-0.252-0.181-0.482-0.403-0.758-0.563c-0.124-0.062-0.25-0.126-0.375-0.188c-0.092-0.044-0.2-0.038-0.283-0.106
c-0.293-0.241-0.518-0.549-0.759-0.84c-0.197-0.236-0.315-0.534-0.467-0.791c-0.385-0.65-0.666-1.373-0.958-2.063
c-0.152-0.354-0.371-0.748-0.593-1.052c-0.204-0.281-0.32-0.628-0.509-0.914c0.026-0.033-0.091-0.164-0.108-0.196
c-0.111-0.206-0.223-0.413-0.334-0.619c-0.458-0.862-0.96-1.74-1.56-2.496C17.059,0.98,16.913,2.38,16.457,2
c-0.15-0.125-0.323-0.268-0.442-0.423c-0.081-0.058-0.162-0.114-0.242-0.172c-0.137-0.124-5.469,0.381-6.812,0.59
C7.965,2.15,6.677,2.851,7.639,3.255c0.331,0.139,0.632,0.167,0.917,0.318c0,0.03,0,0.059,0,0.089
C8.434,3.749,8.335,3.864,8.222,3.956c0.027,0.713,0.533,1.151,1.009,1.418c0.113,0.06,0.228,0.12,0.342,0.18
C9.575,5.57,9.578,5.586,9.581,5.603c0.106,0.148,0.241,0.314,0.367,0.449c0.081,0.087,0.264,0.194,0.309,0.302
c0,0.055,0,0.109,0,0.164c0.066,0.223,0.124,0.417,0.25,0.628c0.31,0.516,0.879,0.813,1.442,1.06
c0.117,0.052,0.288,0.059,0.425,0.123c0.204,0.095,0.386,0.117,0.583,0.195c0.076,0.03,0.209,0.096,0.317,0.106
c-0.028,0.046-0.124,0.019-0.192,0.007c-0.269-0.045-0.496,0.035-0.717,0.098c0.037,0.256,0.515,0.602,0.701,0.75
c0.384,0.309,0.83,0.567,1.268,0.824c0.172,0.084,0.344,0.168,0.516,0.253c0.175,0.104,0.382,0.175,0.56,0.285
c0.079,0.049,0.157,0.113,0.259,0.139c0.002,0.006,0.005,0.011,0.008,0.017c-0.02,0.011-0.039,0.021-0.058,0.033
c-0.083-0.003-0.167-0.006-0.251-0.008c-0.263-0.042-0.458-0.136-0.7-0.229c-0.07-0.022-0.139-0.043-0.208-0.065
c-0.158-0.099-0.321-0.117-0.492-0.196c-0.146-0.067-0.306-0.161-0.483-0.196c-0.293-0.056-0.578,0.121-0.768,0.196
c-0.161,0.064-0.348,0.082-0.516,0.123c-0.363,0.089-0.798,0.253-1.109,0.481c-0.611,0.446-0.853,0.97-1.092,1.664
c-0.054,0.158-0.202,0.756,0.009,0.815c0.088,0.069,0.542,0.004,0.674,0.042c0.201,0.057,0.462-0.015,0.734,0.033
c0.355,0.061,0.694-0.014,1.059,0.024c0.191,0.003,0.384,0.005,0.575,0.007c0.114-0.004,0.229-0.009,0.342-0.015
c0.271,0.029,0.928-0.125,1.018-0.081c0.37-0.025,1.328-0.104,1.492,0.081c0.072,0.083,0.071,0.27,0.101,0.35
c0.063,0.135,0.127,0.267,0.19,0.4c0.204,0.371,0.556,0.643,0.784,0.996c0.196,0.303,0.301,0.67,0.417,1.003
c0.054,0.153,0.021,0.291,0.059,0.448c0.094,0.403,0.188,0.717,0.324,1.069c0.04,0.104,0.091,0.423,0.176,0.464
c0.003-0.145,0.115-0.262,0.158-0.399c0.009-0.007,0.018-0.012,0.025-0.017c0.037,0.039,0.028,0.095,0.05,0.171
c0.057,0.194,0.125,0.392,0.199,0.587c0.032,0.081,0.032,0.172,0.06,0.229c0.079,0.163,0.235,0.303,0.392,0.391
c0.054,0.024,0.105,0.049,0.16,0.073c0.027,0.006,0.06,0.012,0.091,0.017c-0.1-0.216-0.137-0.285-0.091-0.546
c0.021-0.012,0.043-0.021,0.065-0.033c0.003,0,0.006,0,0.008,0c0,0.408,0.374,0.86,0.584,1.125c0.069,0.134,0.139,0.267,0.208,0.399
c-0.059,0.039-0.118,0.076-0.176,0.115c-0.111,0.081-0.276,0.334-0.282,0.505c0.16,0.183,0.558,0.6,0.841,0.578
c0.178-0.013,0.398,0.049,0.483-0.039c-0.28-0.052-0.766-0.298-0.825-0.588c-0.058-0.089,0.236-0.299,0.316-0.335
c0.29-0.125,0.596-0.352,0.86-0.383c0.075-0.009,0.229-0.102,0.3-0.065c0.117,0.06,0.197,0.446,0.192,0.588
c0.007,0.005,0.017,0.01,0.024,0.015c0.113-0.129,0.147-0.533,0.051-0.717c0.061-0.051,0.193-0.043,0.249-0.073
c0.053,0.067,0.104,0.136,0.158,0.205c0.13,0.183,0.184,0.444,0.176,0.667c0.024-0.01,0.009,0.001,0.024-0.016
c0.135-0.101,0.025-0.863-0.084-0.92c0-0.012,0-0.024,0-0.033c0.166-0.047,0.292-0.196,0.4-0.302c0.012,0,0.022,0,0.033,0
c0.059,0.062,0.116,0.124,0.176,0.187c0.13,0.139,0.389,0.553,0.409,0.774c0.01,0,0.021,0,0.032,0
c0.024-0.528,0.054-0.991-0.3-1.346c-0.101-0.101-0.251-0.153-0.359-0.228c-0.019,0.003-0.037,0.005-0.058,0.009
c-0.152,0.247-0.264,0.472-0.55,0.586c-0.123-0.107-0.227-0.278-0.4-0.335c-0.016,0.012-0.014,0.008-0.025,0.025
c-0.036,0.035-0.031,0.118-0.065,0.18c-0.048,0.057-0.097,0.114-0.143,0.171c-0.006,0-0.012,0-0.017,0
c-0.045-0.036-0.075-0.09-0.142-0.081c-0.012,0.002-0.5,0.354-0.525,0.393c-0.186-0.05-0.522-0.666-0.551-0.851
c0.063,0.014,0.227,0.087,0.259,0.124c0.025,0.003,0.05,0.006,0.075,0.007c-0.008-0.074-0.045-0.096-0.066-0.146
c-0.095-0.216-0.179-0.506-0.101-0.76c0.009-0.001,0.017-0.004,0.025-0.007c0.212,0.298,0.709,0.726,1.135,0.799
c-0.059-0.227-0.157-0.368-0.067-0.653c0.128-0.023,0.289,0.119,0.533,0.124c0.002-0.007,0.006-0.013,0.009-0.018
c-0.085-0.176-0.141-0.358-0.018-0.521c0.482,0.026,1.199,0.295,1.318,0.717c0.008,0,0.016,0,0.024,0
c-0.015-0.2-0.032-0.422-0.05-0.619c0.167,0.014,0.475,0.433,0.649,0.531c0.023,0.159-0.123,0.64-0.032,0.782
c0.055,0.091,0.219,0.084,0.333,0.122c0.402,0.133,0.844,0.027,1.075-0.245c-0.006-0.006-0.012-0.01-0.017-0.016
c-0.347,0.149-1.192,0.066-1.025-0.498c0.116-0.391,0.26-0.762,0.617-1.019c0.045-0.041,0.088-0.083,0.134-0.122
c0.064-0.015,0.282,0.191,0.316,0.235c0.05,0.065,0.131,0.14,0.149,0.229c0.106-0.075-0.181-0.628-0.283-0.685
c-0.003-0.009-0.006-0.016-0.009-0.024c0.08-0.037,0.115-0.102,0.176-0.155c0.225,0.066,0.593,0.397,0.667,0.611
c0.008,0.005,0.017,0.011,0.025,0.017c-0.011-0.251-0.301-0.738-0.508-0.808c0.011-0.165,0.146-0.275,0.14-0.472
c0.003-0.005,0.006-0.007,0.009-0.01c0.276,0.039,0.521,0.236,0.708,0.376c0.063,0.045,0.103,0.121,0.176,0.154
c0.023,0.022,0.045,0.044,0.066,0.065c0.003-0.002,0.006-0.006,0.009-0.008C26.432,16.669,25.903,16.11,25.263,16.123z"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="1.4673" y1="12.2451" x2="24.4434" y2="12.2451">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_3_)" d="M21.74,16.237c-0.008,0.312-0.014,0.628-0.02,0.935c-0.096,0.254-0.234,0.479-0.357,0.699
c-0.182-0.035-0.807-0.359-0.951-0.287c-0.01,0.01-0.021,0.031-0.033,0.049c-0.012,0.002-0.023,0.012-0.033,0.018
c-0.027,0.049,0.031,0.076,0.033,0.082c0.033,0.182-0.012,0.576,0.018,0.748c-0.012,0.02-0.021,0.035-0.035,0.055
c-0.109,0.006-0.148-0.025-0.256-0.07l-0.102,0.016c-0.152,0.508-0.416,1.6-1.107,1.414c-0.426-0.115-0.781-0.506-1.188-0.646
v-0.035c0.256-0.119,0.387-0.371,0.629-0.475c-0.066-0.16-0.404-0.23-0.576-0.34c-0.455-0.273-0.91-0.543-1.364-0.814
c-1.418-0.979-2.492-2.208-3.196-3.897c-0.153-0.367-1.164-1.681-1.026-2.153c0.969,0.125,1.758,0.356,2.472,0.162
c0.491-0.133,0.838-0.227,1.414-0.322c0.544-0.091,1.681,0.212,2.091,0.34c0.195,0.039,0.396,0.08,0.596,0.119
c0.305,0.141,0.436,0.581,0.646,0.833c0.238,0.293,0.818,0.436,1.258,0.46v-0.035c-0.596-0.312-0.246-0.728-0.459-1.207
c-0.111-0.244-0.391-0.415-0.393-0.749c0.902-0.318,2.832,0.995,3.131,1.752c0.123,0.319,0.035,0.654-0.104,0.936
c-0.016,0.018-0.02,0.033-0.035,0.05c0.592-0.14,1.873-0.994,1.617-1.819c-0.146-0.473-0.58-0.922-0.834-1.327
c-0.18-0.285-0.346-0.724-0.611-0.918c0.037-0.084,0.119-0.102,0.219-0.119c0.02-0.051,0.039-0.102,0.051-0.153
c-0.291-0.164-0.572-0.556-0.783-0.816c-0.48-0.464-0.961-0.93-1.444-1.394c-0.062-0.1-0.135-0.194-0.233-0.268
c-0.472-0.357-0.847-1.135-1.268-1.534c-0.419-0.398-1.214-0.867-1.214-0.867s0.198,0.294,0.42,0.571
c0.09,0.113,0.197,0.333,0.293,0.553c-0.362-0.295-0.724-0.598-1.128-0.838c-0.252-0.13-0.508-0.261-0.764-0.391
c-0.184-0.092-0.408-0.079-0.58-0.221c-0.332-0.282-0.623-0.609-0.901-0.948h0.278c-0.449-0.85-0.926-1.7-1.439-2.515
c-1.728,0.071-4.2,0.244-5.942,0.671C5.591,2.262,2.665,3.72,2.305,3.943C1.689,4.325,1.51,4.669,1.475,5.147
c0.053,0.03,0.111,0.054,0.163,0.086c0.16,0.102,0.321,0.235,0.527,0.29c0.004,0.011,0.011,0.022,0.017,0.034
c-0.04,0.022-0.08,0.045-0.118,0.068C1.892,5.62,1.722,5.614,1.553,5.609C1.521,5.604,1.498,5.591,1.467,5.585
c0.05,1.074,0.336,4.605,0.464,5.384c0,0.004,0.002,0.013,0.003,0.018c0.333,0.033,2.04,0.973,2.144,1.093
c0.146,0.175,0.146,0.561,0.203,0.732c0.131,0.277,1.618,1.473,1.75,1.75c0.414,0.772-1.198,0.282-1.198,0.282
s1.818,1.607,2.013,2.195c0.041,0.123-1.202-0.223-1.162-0.104c0.044,0.129,0.05,0.25,0.058,0.373l0.196,0.035
c0,0,2.756,2.012,2.868,2.123c0.09,0.092,1.949,1.609,2.68,2.207c-0.042-0.266-0.043-0.537,0.033-0.795
c0.015-0.004,0.034-0.01,0.051-0.014c0.434,0.621,1.447,1.512,2.311,1.666c-0.117-0.473-0.317-0.771-0.136-1.363
c0.262-0.047,0.592,0.248,1.091,0.256c0.004-0.012,0.009-0.021,0.015-0.035c-0.171-0.363-0.285-0.744-0.031-1.084
c0.982,0.053,2.446,0.611,2.686,1.494h0.051c-0.033-0.418-0.066-0.883-0.102-1.291c0.338,0.025,0.967,0.9,1.324,1.104
c0.049,0.336-0.25,1.336-0.066,1.637c0.113,0.189,0.449,0.174,0.682,0.25c0.82,0.281,1.719,0.061,2.189-0.51
c-0.01-0.01-0.018-0.02-0.033-0.033c-0.703,0.314-2.43,0.139-2.09-1.037c0.236-0.813,0.531-1.586,1.258-2.127
c0.09-0.084,0.182-0.168,0.273-0.252c0.133-0.027,0.576,0.398,0.645,0.49c0.104,0.135,0.268,0.293,0.307,0.479
c0.217-0.154-0.371-1.311-0.58-1.432c-0.004-0.014-0.008-0.031-0.016-0.049c0.166-0.076,0.234-0.209,0.355-0.324
c0.459,0.143,1.213,0.83,1.363,1.275c0.018,0.012,0.031,0.021,0.051,0.035c-0.023-0.521-0.613-1.541-1.037-1.688
c0.025-0.342,0.301-0.57,0.289-0.982c0.004-0.006,0.012-0.014,0.018-0.02c0.561,0.082,1.063,0.494,1.443,0.785
c0.127,0.094,0.211,0.254,0.359,0.322c0.045,0.045,0.09,0.09,0.137,0.137c0.004-0.008,0.01-0.012,0.016-0.014
C24.121,17.377,23.045,16.209,21.74,16.237z M21.777,10.059c0,0-0.334,0.296-0.682,0.093c-0.273-0.159-0.486-1.172-0.486-1.172
l-0.012-0.294c0,0,0.199,0.293,0.375,0.536c0.242,0.344,0.377,0.505,0.484,0.607C21.621,9.975,21.777,10.059,21.777,10.059z"/>
<g>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="21.4482" y1="19.2559" x2="12.1449" y2="2.554">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_4_)" d="M16.116,31.229c-0.13,0-0.272-0.025-0.461-0.086c-3.473-1.133-8.139-5.529-10.402-9.801
c-2.06-3.89-3.006-8.726-3.318-10.624C1.792,9.854,1.467,5.684,1.467,5.151c0-0.433,0.063-0.677,0.645-1.038
C2.344,3.97,5.217,2.499,8.208,1.765c2.799-0.686,7.643-0.708,7.848-0.708l0.097,0.003h0.005c0.049,0,5.005,0.008,7.859,0.708
c2.989,0.733,5.863,2.205,6.095,2.348c0.582,0.361,0.645,0.605,0.645,1.038c0,0.533-0.324,4.704-0.467,5.568
c-0.313,1.898-1.258,6.735-3.318,10.624c-1.093,2.063-2.78,4.223-4.756,6.084s-3.979,3.181-5.644,3.715
C16.384,31.204,16.244,31.229,16.116,31.229z M16.05,1.441c-0.195,0-4.993,0.021-7.744,0.696C5.365,2.858,2.554,4.296,2.328,4.436
C1.865,4.723,1.865,4.849,1.865,5.151c0,0.527,0.321,4.653,0.462,5.508c0.309,1.88,1.246,6.668,3.28,10.509
c2.222,4.195,6.787,8.507,10.174,9.61c0.146,0.049,0.249,0.068,0.334,0.068c0.083,0,0.186-0.02,0.33-0.066
c1.608-0.517,3.558-1.804,5.49-3.625c1.945-1.833,3.607-3.958,4.682-5.984c2.033-3.84,2.97-8.628,3.279-10.509
c0.141-0.855,0.463-4.981,0.463-5.508c0-0.302,0-0.428-0.463-0.715c-0.228-0.141-3.039-1.578-5.979-2.3
c-2.805-0.687-7.711-0.696-7.76-0.696L16.05,1.441z"/>
<path fill="#282525" d="M16.055,1.057l0.098,0.003h0.005c0.049,0,5.005,0.008,7.859,0.708c2.989,0.733,5.863,2.205,6.095,2.348
c0.582,0.361,0.645,0.605,0.645,1.038c0,0.533-0.324,4.704-0.467,5.568c-0.313,1.898-1.258,6.735-3.318,10.624
c-1.093,2.063-2.78,4.223-4.756,6.084s-3.979,3.181-5.644,3.715c-0.187,0.06-0.327,0.085-0.456,0.085
c-0.13,0-0.272-0.025-0.461-0.086c-3.473-1.133-8.139-5.529-10.402-9.801c-2.06-3.89-3.006-8.726-3.318-10.624
C1.792,9.854,1.467,5.684,1.467,5.151c0-0.433,0.063-0.677,0.645-1.038C2.344,3.97,5.217,2.499,8.208,1.765
C11.007,1.079,15.851,1.058,16.055,1.057 M16.116,30.847c0.083,0,0.186-0.02,0.33-0.066c1.608-0.517,3.558-1.804,5.49-3.625
c1.945-1.833,3.607-3.958,4.682-5.984c2.033-3.84,2.97-8.628,3.279-10.509c0.141-0.855,0.463-4.981,0.463-5.508
c0-0.302,0-0.428-0.463-0.715c-0.228-0.141-3.039-1.578-5.979-2.3c-2.805-0.687-7.711-0.696-7.76-0.696L16.05,1.441
c-0.195,0-4.993,0.021-7.744,0.696C5.365,2.858,2.554,4.296,2.328,4.436C1.865,4.723,1.865,4.849,1.865,5.151
c0,0.527,0.321,4.653,0.462,5.508c0.309,1.88,1.246,6.668,3.28,10.509c2.222,4.195,6.787,8.507,10.174,9.61
C15.928,30.827,16.03,30.847,16.116,30.847 M16.061,0.739h-0.005c-0.206,0-5.086,0.021-7.923,0.717
c-3.029,0.743-5.951,2.24-6.187,2.387C1.272,4.26,1.148,4.611,1.148,5.151c0,0.538,0.329,4.748,0.472,5.62
c0.314,1.914,1.269,6.789,3.352,10.721c2.295,4.336,7.043,8.8,10.583,9.953c0.221,0.072,0.395,0.105,0.56,0.105
c0.163,0,0.334-0.031,0.552-0.102c1.71-0.549,3.757-1.894,5.765-3.787c2-1.885,3.712-4.075,4.819-6.167
c2.082-3.931,3.037-8.807,3.351-10.721c0.144-0.871,0.473-5.081,0.473-5.619c0-0.54-0.123-0.891-0.796-1.308
c-0.236-0.146-3.16-1.645-6.188-2.387c-2.889-0.708-7.884-0.717-7.934-0.717h-0.003l-0.089-0.003H16.061L16.061,0.739z
M16.116,30.529c-0.048,0-0.127-0.019-0.235-0.054c-3.321-1.081-7.803-5.324-9.992-9.456c-2.012-3.8-2.941-8.547-3.247-10.412
C2.502,9.76,2.183,5.673,2.183,5.151c0-0.116,0.001-0.178,0.019-0.209c0.02-0.037,0.086-0.107,0.293-0.235
c0.223-0.138,2.984-1.548,5.886-2.26c2.684-0.659,7.399-0.686,7.664-0.687l0.103,0.003h0.005h0.005
c0.048,0,4.917,0.008,7.684,0.687c2.901,0.711,5.664,2.123,5.887,2.261c0.207,0.128,0.273,0.198,0.294,0.234
c0.018,0.032,0.019,0.094,0.019,0.21c0,0.522-0.319,4.609-0.458,5.457c-0.307,1.865-1.235,6.613-3.247,10.412
c-1.057,1.995-2.697,4.092-4.617,5.901c-1.898,1.789-3.806,3.051-5.371,3.554C16.24,30.513,16.164,30.529,16.116,30.529
L16.116,30.529z"/>
</g>
<g>
<g>
<path fill="#282525" d="M23.386,30.365c-4.477-1.824-9.65-1.919-14.563,0.091c-0.701-1.597-1.4-3.194-2.1-4.791
c6.301-2.618,13.004-2.466,18.785-0.063C24.909,27.113,24.024,28.887,23.386,30.365z"/>
</g>
<g>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="17.0723" y1="33.1914" x2="15.6923" y2="22.6429">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_5_)" d="M7.194,25.856l0.183-0.072c2.853-1.111,5.832-1.675,8.853-1.675c2.843,0,5.63,0.5,8.289,1.486
l0.044,0.017l0.462,0.192l-1.788,4.108l-0.047-0.019l-0.005,0.01c-2.203-0.852-4.53-1.282-6.916-1.282
c-2.414,0-4.799,0.441-7.093,1.313l-0.167,0.063L7.194,25.856z M16.231,24.486c-2.88,0-5.726,0.521-8.456,1.549l-0.079,0.029
l1.515,3.455l0.07-0.025c2.263-0.828,4.613-1.248,6.986-1.248c2.265,0,4.485,0.383,6.598,1.14l0.071,0.024l1.502-3.441
l-0.079-0.03C21.753,24.975,19.019,24.486,16.231,24.486z"/>
<g>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.4873" y1="33.9238" x2="10.1073" y2="23.3755">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_6_)" d="M10.108,28.419c-0.076-0.224-0.141-0.399-0.196-0.532c0.135,0.021,0.251,0.029,0.351,0.024
c0.1-0.004,0.184-0.017,0.255-0.035c0.093-0.024,0.164-0.059,0.211-0.101c0.047-0.043,0.064-0.09,0.05-0.144
c-0.005-0.018-0.013-0.035-0.022-0.05c-0.01-0.015-0.025-0.031-0.046-0.048c-0.02-0.017-0.048-0.034-0.083-0.051l-0.373-0.18
c-0.086-0.042-0.148-0.07-0.184-0.091c-0.07-0.039-0.129-0.078-0.172-0.116c-0.045-0.039-0.08-0.08-0.108-0.124
c-0.028-0.046-0.049-0.096-0.063-0.149c-0.018-0.064-0.024-0.132-0.018-0.201c0.006-0.068,0.024-0.135,0.056-0.202
c0.031-0.066,0.079-0.13,0.145-0.191c0.065-0.06,0.139-0.107,0.221-0.146c0.083-0.037,0.17-0.069,0.262-0.094
c0.181-0.048,0.382-0.081,0.606-0.096c0.022,0.072,0.045,0.138,0.066,0.198c0.021,0.06,0.06,0.165,0.117,0.314
c-0.109-0.014-0.206-0.017-0.291-0.01c-0.085,0.006-0.157,0.017-0.216,0.034c-0.083,0.022-0.148,0.057-0.195,0.103
c-0.046,0.046-0.063,0.091-0.051,0.137c0.006,0.022,0.016,0.041,0.03,0.06c0.014,0.018,0.036,0.038,0.067,0.058
c0.031,0.021,0.07,0.043,0.117,0.064c0.047,0.023,0.121,0.055,0.22,0.097l0.141,0.06c0.042,0.02,0.087,0.042,0.137,0.072
c0.05,0.026,0.095,0.057,0.134,0.088c0.039,0.03,0.071,0.061,0.095,0.088c0.023,0.028,0.044,0.058,0.061,0.087
c0.016,0.031,0.029,0.065,0.039,0.103c0.026,0.097,0.028,0.193,0.006,0.293c-0.022,0.1-0.068,0.189-0.137,0.268
c-0.07,0.08-0.152,0.143-0.247,0.192c-0.095,0.051-0.198,0.09-0.311,0.121C10.61,28.365,10.385,28.398,10.108,28.419z"/>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="13.5469" y1="33.6533" x2="12.167" y2="23.1061">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_7_)" d="M12.41,27.889c-0.038-0.539-0.105-1.127-0.204-1.766l-0.692,0.137l-0.023-0.183
c-0.012-0.097-0.027-0.204-0.045-0.319c0.31-0.052,0.67-0.113,1.083-0.184l0.403-0.07l0.393-0.067l0.212-0.039l0.018,0.162
c0.01,0.087,0.02,0.157,0.028,0.214c0.007,0.057,0.013,0.1,0.019,0.128c-0.235,0.027-0.429,0.056-0.58,0.082l-0.114,0.018
c0.017,0.197,0.035,0.376,0.054,0.541c0.029,0.236,0.058,0.465,0.09,0.688c0.031,0.221,0.059,0.399,0.082,0.535
c-0.179,0.028-0.294,0.047-0.347,0.056C12.738,27.829,12.613,27.853,12.41,27.889z"/>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="15.8555" y1="33.3516" x2="14.4756" y2="22.8043">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_8_)" d="M13.979,27.627c0.009-0.195,0.014-0.372,0.016-0.528c0.002-0.156,0.001-0.337-0.003-0.543
c-0.004-0.206-0.011-0.423-0.021-0.65c-0.01-0.229-0.02-0.41-0.028-0.545c0.138-0.006,0.249-0.011,0.335-0.017
c0.088-0.006,0.195-0.015,0.322-0.028c0.126-0.014,0.25-0.024,0.371-0.032c0.14-0.008,0.267-0.01,0.378-0.006
c0.083,0.002,0.159,0.013,0.229,0.032c0.069,0.021,0.128,0.047,0.176,0.078c0.049,0.032,0.09,0.068,0.124,0.11
c0.034,0.04,0.061,0.089,0.082,0.146c0.02,0.056,0.033,0.117,0.037,0.185c0.005,0.074,0,0.144-0.015,0.209
c-0.014,0.065-0.04,0.128-0.076,0.188c-0.037,0.06-0.084,0.112-0.143,0.157c-0.059,0.046-0.142,0.093-0.249,0.144l0.1,0.204
c0.028,0.058,0.057,0.115,0.089,0.174l0.253,0.472c0.011,0.02,0.032,0.06,0.061,0.12c-0.181,0.01-0.304,0.017-0.367,0.021
c-0.079,0.004-0.209,0.015-0.391,0.028c-0.021-0.057-0.06-0.16-0.116-0.313c-0.023-0.064-0.042-0.113-0.058-0.148
c-0.032-0.076-0.078-0.184-0.138-0.32l-0.201-0.458c0.061,0.007,0.119,0.009,0.177,0.005c0.08-0.005,0.152-0.021,0.217-0.051
c0.064-0.029,0.111-0.069,0.142-0.121c0.029-0.054,0.043-0.108,0.04-0.164c-0.003-0.049-0.019-0.089-0.047-0.123
c-0.028-0.033-0.068-0.059-0.124-0.072c-0.056-0.015-0.141-0.019-0.255-0.012c-0.038,0.003-0.078,0.007-0.12,0.012
c-0.041,0.004-0.089,0.009-0.144,0.014c0,0.227,0.006,0.504,0.016,0.828c0.009,0.328,0.023,0.647,0.04,0.961
c-0.185,0.011-0.305,0.016-0.359,0.02C14.262,27.605,14.146,27.614,13.979,27.627z"/>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="17.6396" y1="33.1211" x2="16.2589" y2="22.567">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_9_)" d="M16.317,27.516c0.083-0.888,0.127-1.569,0.137-2.05l0.003-0.214
c0.194,0.007,0.323,0.011,0.389,0.012c0.029,0.002,0.148,0.002,0.356,0.004c-0.025,0.249-0.046,0.484-0.063,0.706
c-0.021,0.309-0.039,0.599-0.051,0.867s-0.021,0.498-0.023,0.689l-0.34-0.012C16.658,27.519,16.523,27.518,16.317,27.516z"/>
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="19.5723" y1="32.8643" x2="18.1927" y2="22.3194">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_10_)" d="M17.421,27.518c0.044-0.203,0.078-0.372,0.102-0.507c0.043-0.238,0.098-0.563,0.162-0.979
c0.045-0.289,0.075-0.492,0.088-0.61l0.017-0.142c0.182,0.021,0.309,0.037,0.378,0.045c0.046,0.005,0.164,0.017,0.355,0.036
l-0.214,1.223l-0.152,1.015l-0.357-0.043C17.748,27.551,17.623,27.538,17.421,27.518z M18.379,26.42l0.424-0.461l0.346-0.385
l0.108-0.133c0.204,0.025,0.342,0.042,0.414,0.05c0.021,0.003,0.151,0.017,0.395,0.04l-0.792,0.802l-0.15,0.161l0.101,0.208
l0.578,1.079l-0.405-0.049c-0.088-0.01-0.237-0.025-0.447-0.046C18.838,27.403,18.646,26.981,18.379,26.42z"/>
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="21.8867" y1="32.5654" x2="20.5061" y2="22.0126">
<stop offset="0" style="stop-color:#AEB0A8"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path fill="url(#SVGID_11_)" d="M19.938,27.822c0.092-0.273,0.165-0.501,0.22-0.686c0.056-0.186,0.127-0.431,0.21-0.739
c0.084-0.308,0.139-0.512,0.161-0.613l0.032-0.144c0.254,0.062,0.561,0.134,0.921,0.218c0.333,0.076,0.627,0.143,0.883,0.199
l-0.016,0.053c-0.005,0.013-0.019,0.059-0.041,0.139l-0.051,0.173c-0.011,0.037-0.02,0.075-0.029,0.113
c-0.206-0.056-0.379-0.1-0.521-0.134c-0.155-0.035-0.259-0.06-0.313-0.071c-0.055-0.013-0.141-0.029-0.256-0.051l-0.105,0.365
c0.126,0.034,0.273,0.069,0.442,0.108c0.062,0.015,0.223,0.047,0.485,0.1c-0.043,0.137-0.092,0.299-0.146,0.485
c-0.186-0.044-0.328-0.078-0.429-0.102c-0.148-0.033-0.316-0.069-0.502-0.104l-0.109,0.389l0.186,0.043
c0.055,0.013,0.17,0.037,0.343,0.074l0.335,0.069c0.051,0.011,0.135,0.024,0.252,0.044c-0.049,0.156-0.099,0.319-0.146,0.488
c-0.264-0.063-0.551-0.131-0.864-0.204l-0.712-0.163L19.938,27.822z"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 214 KiB

After

Width:  |  Height:  |  Size: 216 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 210 KiB

After

Width:  |  Height:  |  Size: 212 KiB

View File

@@ -1,312 +1,312 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_37_copy_6">
<g>
<rect x="1.434" y="4.102" fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" width="29.43" height="21.078"/>
</g>
</g>
<g id="Shape_37_copy_7">
<g>
<rect x="1.857" y="4.426" fill-rule="evenodd" clip-rule="evenodd" fill="#722429" width="28.6" height="20.192"/>
</g>
</g>
<g id="Shape_37_copy_5_2_">
<g>
<rect x="2.537" y="4.938" fill-rule="evenodd" clip-rule="evenodd" fill="#E8E5BC" width="27.416" height="19.048"/>
</g>
</g>
<g id="Shape_37_copy_8">
<g>
<rect x="3.199" y="5.51" fill-rule="evenodd" clip-rule="evenodd" fill="#2F151C" width="26.213" height="17.942"/>
</g>
</g>
<g id="Shape_37_copy_9">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#878577" points="3.199,5.51 3.199,23.452 29.412,5.51 "/>
</g>
</g>
<g id="Shape_38">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M16.258,7.948c-6.71,0-12.035,2.579-12.035,5.76
c0,3.181,5.325,5.759,12.035,5.759c6.708,0,12.034-2.579,12.034-5.759C28.292,10.527,22.966,7.948,16.258,7.948z"/>
</g>
</g>
<g id="Shape_38_copy">
<g>
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" cx="16.258" cy="13.708" rx="11.525" ry="5.266"/>
</g>
</g>
<g id="Shape_38_copy_2">
<g>
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#99654B" cx="16.249" cy="13.708" rx="11.119" ry="5.036"/>
</g>
</g>
<g id="Shape_38_copy_3">
<g>
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#722429" cx="16.225" cy="13.708" rx="10.635" ry="4.771"/>
</g>
</g>
<g opacity="0.3">
<g id="PARKER_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M10.131,11.784c-0.129-0.052-0.316-0.078-0.56-0.078H8.48v2.771
h0.659v-1.029h0.457c0.198,0,0.343-0.012,0.436-0.037c0.092-0.024,0.188-0.074,0.287-0.148c0.099-0.075,0.176-0.177,0.229-0.307
c0.054-0.13,0.082-0.263,0.082-0.4c0-0.194-0.05-0.359-0.151-0.493C10.375,11.929,10.26,11.835,10.131,11.784z M9.878,12.832
c-0.065,0.074-0.178,0.111-0.339,0.111H9.116v-0.734h0.42c0.147,0,0.257,0.033,0.331,0.099c0.072,0.066,0.108,0.156,0.108,0.268
C9.976,12.672,9.943,12.758,9.878,12.832z M11.558,11.706l-0.889,2.771h0.569l0.174-0.571h0.896l0.17,0.571h0.696l-0.867-2.771
H11.558z M11.567,13.395l0.296-0.973l0.292,0.973H11.567z M16.017,12.535c0-0.17-0.044-0.325-0.133-0.464
c-0.09-0.139-0.202-0.235-0.339-0.287c-0.136-0.052-0.316-0.078-0.541-0.078h-1.217v2.771h0.654v-1.099h0.464l0.426,1.099h0.717
l-0.512-1.225C15.855,13.106,16.017,12.868,16.017,12.535z M15.279,12.756c-0.047,0.063-0.099,0.103-0.158,0.122
c-0.059,0.018-0.153,0.027-0.284,0.027H14.44v-0.706h0.383c0.148,0,0.25,0.007,0.304,0.021c0.055,0.015,0.105,0.052,0.152,0.113
c0.045,0.061,0.068,0.13,0.068,0.207C15.347,12.621,15.324,12.693,15.279,12.756z M18.957,11.706h-0.622l-0.868,1.301v-1.301
h-0.637v2.771h0.637v-0.636l0.389-0.568l0.552,1.204h0.715l-0.832-1.782L18.957,11.706z M19.762,14.477h1.979v-0.548h-1.319
v-0.605h1.037v-0.521h-1.037v-0.568h1.319v-0.528h-1.979V14.477z M24.193,13.251c0.322-0.145,0.481-0.384,0.481-0.717
c0-0.17-0.045-0.325-0.134-0.464s-0.202-0.235-0.338-0.287c-0.137-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654v-1.099
h0.464l0.425,1.099h0.717L24.193,13.251z M23.936,12.756c-0.046,0.063-0.098,0.103-0.158,0.122
c-0.058,0.018-0.153,0.027-0.283,0.027h-0.397v-0.706h0.383c0.149,0,0.25,0.007,0.304,0.021c0.054,0.015,0.105,0.052,0.151,0.113
c0.046,0.061,0.068,0.13,0.068,0.207C24.004,12.621,23.981,12.693,23.936,12.756z"/>
</g>
</g>
<g id="BUILDING_MATERIALS_INC._2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M9.863,15.583c0.107-0.033,0.16-0.101,0.16-0.203
c0-0.058-0.021-0.109-0.064-0.152c-0.044-0.044-0.11-0.066-0.2-0.066H9.403v0.901h0.356c0.099,0,0.173-0.024,0.221-0.072
c0.049-0.048,0.072-0.107,0.072-0.178c0-0.052-0.016-0.1-0.045-0.142C9.975,15.629,9.927,15.601,9.863,15.583z M9.511,15.254
h0.225c0.058,0,0.102,0.013,0.131,0.038c0.03,0.026,0.045,0.059,0.045,0.1c0,0.042-0.014,0.078-0.041,0.109
c-0.028,0.031-0.083,0.046-0.163,0.046H9.511V15.254z M9.89,15.92c-0.032,0.029-0.077,0.043-0.137,0.043H9.511v-0.33h0.225
c0.052,0,0.091,0.007,0.119,0.022c0.026,0.015,0.046,0.037,0.061,0.063c0.015,0.028,0.022,0.058,0.022,0.089
C9.938,15.855,9.921,15.892,9.89,15.92z M10.719,15.75c0,0.082-0.017,0.141-0.053,0.178c-0.037,0.036-0.089,0.055-0.158,0.055
c-0.037,0-0.071-0.007-0.104-0.021s-0.058-0.035-0.074-0.063c-0.016-0.028-0.024-0.078-0.024-0.148v-0.588h-0.112v0.588
c0,0.115,0.024,0.199,0.075,0.252c0.051,0.053,0.127,0.079,0.231,0.079c0.094,0,0.169-0.026,0.228-0.077
c0.058-0.051,0.086-0.136,0.086-0.254v-0.588h-0.094V15.75z M11.012,16.063h0.113v-0.901h-0.113V16.063z M11.452,15.162h-0.115
v0.901h0.532v-0.099h-0.417V15.162z M12.287,15.162h-0.302v0.901h0.339c0.106,0,0.194-0.044,0.264-0.131
c0.068-0.087,0.103-0.194,0.103-0.322c0-0.125-0.036-0.231-0.107-0.318C12.512,15.205,12.414,15.162,12.287,15.162z
M12.501,15.867c-0.051,0.067-0.124,0.101-0.221,0.101h-0.183v-0.711h0.183c0.101,0,0.176,0.036,0.224,0.107
c0.047,0.071,0.072,0.15,0.072,0.239C12.576,15.711,12.55,15.8,12.501,15.867z M12.845,16.063h0.112v-0.901h-0.112V16.063z
M13.744,15.768c0,0.019,0,0.041,0.001,0.065l0.002,0.063l-0.435-0.734h-0.143v0.901h0.092v-0.669c0-0.015,0-0.034-0.002-0.057
l-0.001-0.06l0.466,0.786h0.11v-0.901h-0.09V15.768z M14.373,15.703h0.223c0.001,0.019,0.001,0.036,0.001,0.049
c0,0.074-0.021,0.132-0.063,0.174c-0.043,0.042-0.096,0.063-0.159,0.063c-0.082,0-0.146-0.033-0.193-0.098
c-0.047-0.066-0.071-0.157-0.071-0.274c0-0.109,0.021-0.198,0.063-0.271c0.042-0.071,0.108-0.107,0.198-0.107
c0.049,0,0.095,0.015,0.138,0.045c0.042,0.03,0.07,0.079,0.086,0.146l0.106-0.026c-0.05-0.174-0.159-0.261-0.325-0.261
c-0.12,0-0.214,0.045-0.285,0.136c-0.07,0.091-0.105,0.206-0.105,0.342c0,0.128,0.034,0.236,0.099,0.325
c0.065,0.09,0.159,0.134,0.277,0.134c0.11,0,0.193-0.039,0.249-0.118l0.03,0.113h0.069v-0.467h-0.338V15.703z M15.669,15.883
l-0.272-0.721h-0.167v0.901h0.097v-0.787l0.295,0.787h0.077l0.292-0.787v0.787H16.1v-0.901h-0.166L15.669,15.883z M16.496,15.162
l-0.294,0.901h0.095l0.081-0.264h0.335l0.09,0.264h0.115l-0.294-0.901H16.496z M16.409,15.715l0.139-0.433l0.14,0.433H16.409z
M16.922,15.261h0.258v0.802h0.112v-0.802h0.258v-0.099h-0.629V15.261z M17.777,15.639h0.363v-0.091h-0.363v-0.287h0.458v-0.099
h-0.571v0.901h0.582v-0.099h-0.469V15.639z M18.991,15.551c0.025-0.044,0.04-0.09,0.04-0.138c0-0.062-0.024-0.12-0.07-0.172
c-0.046-0.053-0.119-0.08-0.214-0.08h-0.355v0.901h0.106v-0.391h0.257l0.166,0.391h0.12l-0.178-0.417
C18.921,15.627,18.965,15.595,18.991,15.551z M18.732,15.581h-0.236v-0.32h0.249c0.05,0,0.09,0.014,0.122,0.04
c0.034,0.026,0.05,0.063,0.05,0.111c0,0.047-0.016,0.087-0.046,0.12C18.84,15.564,18.794,15.581,18.732,15.581z M19.206,16.063
h0.112v-0.901h-0.112V16.063z M19.713,15.162l-0.292,0.901h0.094l0.082-0.264h0.333l0.091,0.264h0.115l-0.293-0.901H19.713z
M19.627,15.715l0.139-0.433l0.14,0.433H19.627z M20.355,15.162H20.24v0.901h0.532v-0.099h-0.417V15.162z M21.26,15.56
l-0.168-0.039c-0.098-0.023-0.146-0.068-0.146-0.135c0-0.048,0.019-0.085,0.058-0.11c0.038-0.026,0.083-0.04,0.131-0.04
c0.049,0,0.097,0.014,0.14,0.041c0.044,0.027,0.072,0.067,0.084,0.12l0.103-0.031c-0.053-0.148-0.16-0.222-0.324-0.222
c-0.089,0-0.161,0.022-0.219,0.067c-0.056,0.044-0.084,0.104-0.084,0.18c0,0.045,0.011,0.086,0.031,0.121
c0.021,0.035,0.045,0.061,0.076,0.078c0.03,0.017,0.067,0.031,0.114,0.043l0.181,0.044c0.036,0.009,0.067,0.025,0.094,0.048
c0.028,0.023,0.042,0.054,0.042,0.092c0,0.051-0.018,0.091-0.055,0.122c-0.035,0.03-0.089,0.045-0.161,0.045
c-0.137,0-0.225-0.062-0.266-0.185l-0.101,0.023c0.06,0.172,0.183,0.257,0.37,0.257c0.104,0,0.187-0.026,0.245-0.077
c0.058-0.052,0.086-0.117,0.086-0.195C21.49,15.68,21.414,15.597,21.26,15.56z M21.969,16.063h0.112v-0.901h-0.112V16.063z
M22.868,15.768c0,0.019,0,0.041,0.002,0.065l0,0.063l-0.435-0.734h-0.142v0.901h0.092v-0.669c0-0.015-0.001-0.034-0.002-0.057
l-0.002-0.06l0.466,0.786h0.109v-0.901h-0.089V15.768z M23.485,15.239c0.106,0,0.181,0.072,0.219,0.215l0.107-0.021
c-0.049-0.193-0.156-0.29-0.326-0.29c-0.114,0-0.204,0.042-0.271,0.126c-0.069,0.084-0.103,0.196-0.103,0.334
c0,0.135,0.033,0.248,0.097,0.339c0.066,0.092,0.156,0.138,0.27,0.138c0.172,0,0.285-0.099,0.333-0.298l-0.103-0.023
c-0.038,0.15-0.114,0.226-0.229,0.226c-0.075,0-0.133-0.034-0.179-0.1c-0.044-0.067-0.067-0.155-0.067-0.266
c0-0.121,0.021-0.214,0.066-0.281C23.343,15.272,23.405,15.239,23.485,15.239z M23.919,15.915v0.148h0.148v-0.148H23.919z"/>
</g>
</g>
<g id="Shape_39_copy_3_6_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M17.86,17.147c-0.065,0-0.091,0.05-0.094,0.064
c-0.004,0.015-0.002,0.019,0.012,0.025c0.029,0.008,0.082,0.039,0.082,0.108c0,0.093-0.075,0.117-0.131,0.117
c-0.102,0-0.202-0.096-0.254-0.164c-0.071-0.093-0.146-0.222-0.26-0.222h-0.003c-0.059,0-0.109,0.026-0.134,0.059
c0.054,0.103,0.165,0.219,0.215,0.265c0.047,0.04,0.128,0.131,0.279,0.162v0.01h-0.041c-0.069,0-0.174-0.021-0.296-0.111
c-0.133-0.101-0.223-0.258-0.286-0.339c-0.098-0.125-0.191-0.178-0.311-0.178c-0.183,0-0.403,0.15-0.403,0.361
c0,0.146,0.123,0.26,0.247,0.26c0.041,0,0.083-0.013,0.124-0.042c0.011-0.006,0.011-0.017-0.007-0.017
c-0.075,0-0.24-0.095-0.24-0.277c0-0.114,0.063-0.217,0.23-0.217c0.165,0,0.249,0.12,0.317,0.222
c-0.032,0.017-0.064,0.05-0.064,0.116c0,0.077,0.04,0.148,0.146,0.227c0.127,0.083,0.27,0.121,0.417,0.121
c0.139,0,0.33-0.053,0.399-0.165c0.019-0.027,0.03-0.036,0.052-0.058c0.038-0.035,0.118-0.118,0.118-0.204
C17.975,17.209,17.931,17.147,17.86,17.147z"/>
</g>
</g>
<g id="Shape_39_copy_3_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M16.437,17.075c-0.041,0-0.082,0.014-0.125,0.042
c-0.01,0.006-0.01,0.018,0.007,0.018c0.076,0,0.24,0.094,0.24,0.277c0,0.114-0.063,0.216-0.23,0.216
c-0.165,0-0.248-0.12-0.316-0.221c0.032-0.018,0.063-0.05,0.063-0.115c0-0.078-0.038-0.149-0.146-0.228
c-0.125-0.083-0.268-0.12-0.416-0.12c-0.141,0-0.33,0.053-0.398,0.164c-0.019,0.027-0.03,0.036-0.054,0.058
c-0.036,0.035-0.118,0.118-0.118,0.205c0,0.06,0.044,0.121,0.115,0.121c0.064,0,0.09-0.05,0.092-0.064
c0.004-0.015,0.002-0.019-0.011-0.026c-0.029-0.007-0.082-0.039-0.082-0.107c0-0.093,0.075-0.118,0.133-0.118
c0.101,0,0.2,0.097,0.252,0.164c0.072,0.093,0.147,0.222,0.262,0.222h0.002c0.058,0,0.108-0.027,0.133-0.06
c-0.054-0.102-0.164-0.218-0.215-0.265c-0.047-0.04-0.127-0.131-0.278-0.162v-0.009h0.04c0.069,0,0.174,0.021,0.297,0.112
c0.132,0.1,0.222,0.258,0.286,0.338c0.097,0.125,0.191,0.178,0.311,0.178c0.184,0,0.402-0.15,0.402-0.361
C16.683,17.189,16.561,17.075,16.437,17.075z"/>
</g>
</g>
</g>
<g>
<g id="PARKER">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M9.802,11.469c-0.129-0.052-0.316-0.078-0.56-0.078H8.15v2.771
H8.81v-1.029h0.457c0.199,0,0.343-0.012,0.436-0.037c0.092-0.025,0.188-0.074,0.287-0.148c0.099-0.075,0.176-0.177,0.229-0.307
c0.053-0.13,0.081-0.263,0.081-0.4c0-0.194-0.05-0.359-0.151-0.493C10.045,11.614,9.931,11.521,9.802,11.469z M9.549,12.518
c-0.065,0.074-0.178,0.111-0.339,0.111H8.787v-0.734h0.42c0.147,0,0.258,0.033,0.331,0.099c0.072,0.066,0.108,0.155,0.108,0.268
C9.646,12.358,9.613,12.443,9.549,12.518z M11.228,11.391l-0.889,2.771h0.569l0.174-0.571h0.896l0.17,0.571h0.696l-0.867-2.771
H11.228z M11.237,13.08l0.297-0.973l0.291,0.973H11.237z M15.687,12.22c0-0.17-0.044-0.325-0.133-0.464
c-0.09-0.139-0.202-0.235-0.338-0.287c-0.137-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654v-1.099h0.464l0.426,1.099h0.717
l-0.512-1.226C15.526,12.792,15.687,12.553,15.687,12.22z M14.949,12.441c-0.047,0.063-0.099,0.103-0.158,0.122
c-0.059,0.018-0.153,0.027-0.283,0.027h-0.397v-0.706h0.383c0.149,0,0.25,0.007,0.304,0.021c0.054,0.015,0.104,0.052,0.151,0.113
c0.045,0.061,0.068,0.13,0.068,0.207C15.018,12.307,14.994,12.378,14.949,12.441z M18.628,11.391h-0.622l-0.869,1.301v-1.301
h-0.637v2.771h0.637v-0.636l0.389-0.568l0.552,1.204h0.715l-0.832-1.782L18.628,11.391z M19.433,14.162h1.979v-0.548h-1.319
v-0.605h1.037v-0.522h-1.037v-0.568h1.319v-0.528h-1.979V14.162z M23.863,12.937c0.322-0.145,0.481-0.383,0.481-0.716
c0-0.17-0.045-0.325-0.134-0.464c-0.089-0.139-0.202-0.235-0.338-0.287c-0.136-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654
v-1.099h0.464l0.425,1.099h0.717L23.863,12.937z M23.606,12.441c-0.046,0.063-0.098,0.103-0.158,0.122
c-0.058,0.018-0.153,0.027-0.283,0.027h-0.396v-0.706h0.383c0.148,0,0.25,0.007,0.304,0.021c0.055,0.015,0.105,0.052,0.151,0.113
s0.068,0.13,0.068,0.207C23.674,12.307,23.652,12.378,23.606,12.441z"/>
</g>
</g>
<g id="BUILDING_MATERIALS_INC.">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M9.534,15.269c0.107-0.033,0.16-0.101,0.16-0.203
c0-0.058-0.021-0.109-0.064-0.152c-0.044-0.044-0.11-0.066-0.2-0.066H9.073v0.901h0.356c0.099,0,0.173-0.024,0.221-0.072
c0.049-0.048,0.072-0.107,0.072-0.178c0-0.052-0.016-0.1-0.046-0.142C9.646,15.315,9.598,15.286,9.534,15.269z M9.182,14.939
h0.225c0.058,0,0.102,0.012,0.131,0.038c0.03,0.026,0.045,0.059,0.045,0.1c0,0.042-0.014,0.078-0.041,0.109
c-0.028,0.031-0.083,0.046-0.163,0.046H9.182V14.939z M9.56,15.606c-0.032,0.029-0.077,0.043-0.137,0.043H9.182v-0.33h0.225
c0.052,0,0.092,0.007,0.119,0.022c0.026,0.015,0.046,0.037,0.061,0.063c0.015,0.028,0.022,0.058,0.022,0.089
C9.609,15.541,9.592,15.578,9.56,15.606z M10.389,15.436c0,0.082-0.017,0.141-0.053,0.178c-0.037,0.036-0.089,0.055-0.158,0.055
c-0.036,0-0.071-0.007-0.104-0.021S10.016,15.613,10,15.584c-0.016-0.028-0.024-0.078-0.024-0.148v-0.588H9.863v0.588
c0,0.115,0.024,0.199,0.075,0.252c0.05,0.053,0.127,0.079,0.231,0.079c0.094,0,0.169-0.026,0.228-0.077
c0.058-0.052,0.086-0.136,0.086-0.254v-0.588h-0.094V15.436z M10.682,15.749h0.113v-0.901h-0.113V15.749z M11.122,14.847h-0.115
v0.901h0.532v-0.099h-0.417V14.847z M11.957,14.847h-0.302v0.901h0.339c0.106,0,0.195-0.044,0.264-0.131
c0.068-0.087,0.103-0.194,0.103-0.322c0-0.125-0.036-0.231-0.106-0.318C12.183,14.891,12.084,14.847,11.957,14.847z
M12.171,15.552c-0.05,0.067-0.124,0.101-0.221,0.101h-0.184v-0.711h0.184c0.101,0,0.176,0.036,0.224,0.107
c0.048,0.071,0.072,0.15,0.072,0.239C12.246,15.397,12.22,15.485,12.171,15.552z M12.516,15.749h0.112v-0.901h-0.112V15.749z
M13.415,15.454c0,0.019,0,0.041,0,0.065l0.002,0.063l-0.435-0.734H12.84v0.901h0.092v-0.669c0-0.016,0-0.034-0.002-0.057
l-0.002-0.06l0.466,0.786h0.111v-0.901h-0.09V15.454z M14.043,15.389h0.223c0.001,0.019,0.001,0.035,0.001,0.049
c0,0.074-0.021,0.132-0.063,0.174c-0.043,0.042-0.096,0.063-0.159,0.063c-0.082,0-0.146-0.033-0.193-0.098
c-0.048-0.066-0.071-0.157-0.071-0.274c0-0.109,0.021-0.198,0.063-0.271c0.042-0.071,0.108-0.107,0.198-0.107
c0.049,0,0.095,0.015,0.139,0.045c0.041,0.03,0.07,0.079,0.086,0.146l0.107-0.026c-0.051-0.174-0.159-0.261-0.325-0.261
c-0.12,0-0.214,0.045-0.284,0.136c-0.07,0.091-0.106,0.206-0.106,0.342c0,0.127,0.034,0.236,0.099,0.325
c0.065,0.09,0.159,0.134,0.277,0.134c0.11,0,0.192-0.039,0.249-0.118l0.03,0.113h0.069v-0.467h-0.339V15.389z M15.34,15.568
l-0.272-0.721H14.9v0.901h0.096v-0.787l0.296,0.787h0.077l0.292-0.787v0.787h0.109v-0.901h-0.166L15.34,15.568z M16.166,14.847
l-0.294,0.901h0.096l0.081-0.264h0.335l0.09,0.264h0.115l-0.295-0.901H16.166z M16.08,15.4l0.139-0.433l0.139,0.433H16.08z
M16.593,14.946h0.258v0.802h0.112v-0.802h0.258v-0.099h-0.629V14.946z M17.447,15.324h0.363v-0.092h-0.363v-0.286h0.458v-0.099
h-0.571v0.901h0.583v-0.099h-0.469V15.324z M18.661,15.237c0.025-0.044,0.04-0.09,0.04-0.138c0-0.062-0.024-0.12-0.07-0.172
c-0.046-0.053-0.119-0.08-0.214-0.08h-0.354v0.901h0.105v-0.391h0.258l0.166,0.391h0.12l-0.178-0.417
C18.592,15.312,18.635,15.281,18.661,15.237z M18.403,15.267h-0.236v-0.32h0.249c0.051,0,0.09,0.014,0.122,0.04
c0.034,0.026,0.05,0.063,0.05,0.111c0,0.047-0.016,0.087-0.046,0.12C18.511,15.25,18.465,15.267,18.403,15.267z M18.876,15.749
h0.112v-0.901h-0.112V15.749z M19.384,14.847l-0.292,0.901h0.095l0.082-0.264h0.333l0.091,0.264h0.115l-0.294-0.901H19.384z
M19.298,15.4l0.14-0.433l0.139,0.433H19.298z M20.026,14.847h-0.115v0.901h0.531v-0.099h-0.417V14.847z M20.93,15.246
l-0.168-0.039c-0.098-0.023-0.146-0.068-0.146-0.135c0-0.048,0.019-0.085,0.058-0.11c0.037-0.026,0.082-0.04,0.131-0.04
c0.05,0,0.097,0.014,0.141,0.041c0.044,0.027,0.072,0.067,0.084,0.12l0.103-0.031c-0.052-0.148-0.16-0.222-0.324-0.222
c-0.089,0-0.161,0.022-0.219,0.067c-0.056,0.044-0.084,0.104-0.084,0.18c0,0.045,0.011,0.086,0.031,0.122
c0.021,0.035,0.046,0.061,0.076,0.078s0.067,0.031,0.114,0.043l0.181,0.044c0.037,0.009,0.067,0.025,0.095,0.048
c0.028,0.023,0.041,0.054,0.041,0.092c0,0.051-0.018,0.091-0.054,0.122c-0.036,0.03-0.089,0.045-0.161,0.045
c-0.137,0-0.225-0.061-0.266-0.184L20.46,15.51c0.06,0.172,0.182,0.257,0.37,0.257c0.104,0,0.186-0.026,0.244-0.077
c0.058-0.052,0.086-0.117,0.086-0.195C21.16,15.366,21.084,15.283,20.93,15.246z M21.64,15.749h0.112v-0.901H21.64V15.749z
M22.538,15.454c0,0.019,0,0.041,0.002,0.065l0.001,0.063l-0.436-0.734h-0.142v0.901h0.092v-0.669
c0-0.016-0.001-0.034-0.002-0.057l-0.002-0.06l0.466,0.786h0.109v-0.901h-0.089V15.454z M23.156,14.925
c0.107,0,0.181,0.071,0.219,0.215l0.106-0.021c-0.049-0.193-0.156-0.29-0.326-0.29c-0.114,0-0.204,0.042-0.271,0.126
c-0.069,0.084-0.103,0.196-0.103,0.334c0,0.135,0.033,0.248,0.098,0.339c0.065,0.092,0.155,0.138,0.27,0.138
c0.172,0,0.284-0.099,0.333-0.298l-0.103-0.023c-0.037,0.15-0.114,0.225-0.228,0.225c-0.075,0-0.133-0.033-0.179-0.1
c-0.044-0.066-0.067-0.155-0.067-0.265c0-0.121,0.021-0.214,0.066-0.281C23.014,14.958,23.075,14.925,23.156,14.925z
M23.59,15.601v0.148h0.148v-0.148H23.59z"/>
</g>
</g>
<g id="Shape_39_copy_3">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M17.531,16.833c-0.064,0-0.091,0.05-0.094,0.064
c-0.003,0.015-0.002,0.019,0.012,0.025c0.029,0.008,0.082,0.039,0.082,0.108c0,0.093-0.075,0.117-0.131,0.117
c-0.102,0-0.202-0.096-0.254-0.164c-0.071-0.093-0.146-0.222-0.26-0.222h-0.003c-0.059,0-0.109,0.026-0.134,0.059
c0.055,0.103,0.165,0.219,0.215,0.265c0.047,0.04,0.128,0.131,0.279,0.161v0.01h-0.041c-0.069,0-0.174-0.021-0.296-0.112
c-0.133-0.101-0.223-0.258-0.285-0.338c-0.099-0.125-0.192-0.178-0.311-0.178c-0.182,0-0.403,0.15-0.403,0.361
c0,0.146,0.123,0.26,0.247,0.26c0.042,0,0.083-0.013,0.124-0.042c0.011-0.006,0.011-0.017-0.007-0.017
c-0.075,0-0.24-0.095-0.24-0.277c0-0.114,0.064-0.217,0.23-0.217c0.165,0,0.249,0.12,0.317,0.222
c-0.032,0.017-0.065,0.05-0.065,0.115c0,0.078,0.04,0.149,0.146,0.228c0.127,0.083,0.27,0.121,0.417,0.121
c0.139,0,0.33-0.053,0.399-0.165c0.019-0.027,0.03-0.036,0.052-0.058c0.038-0.035,0.118-0.118,0.118-0.205
C17.645,16.895,17.602,16.833,17.531,16.833z"/>
</g>
</g>
<g id="Shape_39_copy_3_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M16.107,16.761c-0.041,0-0.081,0.014-0.125,0.042
c-0.01,0.006-0.01,0.018,0.008,0.018c0.076,0,0.239,0.094,0.239,0.277c0,0.114-0.063,0.216-0.23,0.216
c-0.165,0-0.248-0.12-0.316-0.221c0.032-0.018,0.063-0.05,0.063-0.116c0-0.077-0.038-0.148-0.146-0.228
c-0.125-0.083-0.268-0.12-0.416-0.12c-0.14,0-0.329,0.053-0.398,0.164c-0.019,0.027-0.03,0.036-0.053,0.058
c-0.037,0.035-0.118,0.118-0.118,0.205c0,0.06,0.044,0.122,0.115,0.122c0.063,0,0.09-0.05,0.092-0.064
c0.003-0.015,0.001-0.019-0.011-0.026c-0.029-0.007-0.083-0.039-0.083-0.107c0-0.093,0.075-0.118,0.133-0.118
c0.101,0,0.2,0.097,0.253,0.164c0.072,0.093,0.147,0.222,0.262,0.222h0.002c0.058,0,0.108-0.027,0.133-0.06
c-0.054-0.102-0.164-0.218-0.215-0.265c-0.047-0.04-0.127-0.131-0.278-0.162v-0.01h0.041c0.069,0,0.174,0.022,0.296,0.112
c0.132,0.101,0.222,0.258,0.286,0.339c0.097,0.125,0.191,0.178,0.311,0.178c0.184,0,0.403-0.15,0.403-0.361
C16.354,16.875,16.231,16.761,16.107,16.761z"/>
</g>
</g>
</g>
<g id="Shape_37_copy_10">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M3.741,21.821v0.104c0.566,2.134,1.112,4.204,1.641,6.347
c6.986-2.134,14.646-2.159,21.659,0c0.528-2.144,1.074-4.318,1.641-6.452C20.546,19.487,11.801,19.458,3.741,21.821z"/>
</g>
</g>
<g id="Shape_37_copy_10_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FBF0D7" d="M4.414,22.131l0,0.087c0.525,1.795,0.948,3.621,1.438,5.424
c6.626-1.795,14.059-1.899,20.69-0.083c0.511-1.804,0.944-3.633,1.491-5.428C20.34,20.167,12.058,20.143,4.414,22.131z"/>
</g>
</g>
<g id="Shape_37_copy_11">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" d="M4.867,22.371c0.427,1.562,0.844,3.152,1.25,4.772
c6.582-1.771,13.607-1.771,20.19,0c0.405-1.62,0.821-3.211,1.249-4.772C20.15,20.5,12.273,20.5,4.867,22.371z"/>
</g>
</g>
<g id="ASSAULT">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#722429" d="M7.033,22.661c0.053,1.111,0.119,2.221,0.197,3.329
c0.32-0.062,0.643-0.122,0.965-0.177L8.137,25.22c0.114-0.02,0.228-0.039,0.34-0.057c0.054,0.191,0.106,0.383,0.159,0.576
c0.319-0.052,0.638-0.102,0.958-0.147C9.24,24.529,8.871,23.47,8.49,22.414C8.004,22.489,7.518,22.572,7.033,22.661z
M8.014,24.646c-0.03-0.292-0.057-0.757-0.074-1.396c0.153,0.533,0.287,0.98,0.405,1.34C8.234,24.608,8.125,24.627,8.014,24.646z
M11.848,23.769c-0.129-0.134-0.423-0.295-0.89-0.473c-0.163-0.062-0.265-0.118-0.305-0.169c-0.042-0.051-0.069-0.132-0.083-0.241
c-0.012-0.085-0.005-0.15,0.021-0.196c0.026-0.045,0.068-0.071,0.13-0.078c0.056-0.006,0.097,0.005,0.124,0.034
c0.028,0.028,0.048,0.099,0.063,0.213c0.01,0.081,0.02,0.162,0.03,0.243c0.307-0.033,0.614-0.064,0.922-0.091
c-0.004-0.043-0.008-0.087-0.012-0.13c-0.027-0.261-0.076-0.443-0.146-0.547c-0.071-0.103-0.203-0.182-0.396-0.235
c-0.194-0.054-0.424-0.066-0.688-0.037c-0.242,0.027-0.443,0.084-0.604,0.171c-0.161,0.086-0.271,0.193-0.33,0.318
c-0.059,0.126-0.068,0.314-0.031,0.564c0.027,0.173,0.074,0.313,0.145,0.417c0.068,0.104,0.146,0.184,0.234,0.237
s0.264,0.134,0.524,0.246c0.261,0.111,0.424,0.194,0.492,0.246c0.067,0.053,0.112,0.176,0.134,0.37
c0.012,0.088,0.004,0.155-0.021,0.203s-0.07,0.076-0.133,0.083c-0.064,0.007-0.11-0.006-0.14-0.039
c-0.03-0.032-0.052-0.109-0.067-0.232c-0.018-0.133-0.034-0.266-0.052-0.399c-0.3,0.034-0.599,0.071-0.897,0.111
c0.01,0.071,0.021,0.143,0.031,0.214c0.037,0.245,0.094,0.43,0.169,0.556s0.208,0.22,0.397,0.285
c0.191,0.064,0.411,0.082,0.662,0.054c0.23-0.025,0.427-0.083,0.592-0.175c0.164-0.092,0.273-0.195,0.322-0.312
c0.05-0.116,0.064-0.292,0.04-0.526C12.053,24.133,11.975,23.904,11.848,23.769z M13.812,23.071
c-0.158-0.071-0.257-0.133-0.292-0.187c-0.039-0.054-0.062-0.136-0.069-0.246c-0.005-0.085,0.007-0.15,0.034-0.194
c0.029-0.043,0.074-0.067,0.135-0.07c0.055-0.003,0.097,0.011,0.122,0.041s0.042,0.102,0.048,0.216
c0.005,0.082,0.01,0.163,0.014,0.245c0.31-0.016,0.618-0.028,0.926-0.038c-0.001-0.043-0.003-0.087-0.004-0.13
c-0.01-0.263-0.045-0.448-0.109-0.555c-0.065-0.107-0.191-0.194-0.381-0.258s-0.418-0.09-0.684-0.076
c-0.242,0.013-0.447,0.059-0.612,0.136c-0.166,0.077-0.282,0.177-0.349,0.299c-0.066,0.122-0.088,0.309-0.066,0.561
c0.014,0.175,0.053,0.316,0.115,0.425c0.063,0.108,0.135,0.191,0.219,0.25c0.085,0.058,0.254,0.149,0.507,0.275
c0.252,0.125,0.409,0.217,0.475,0.274c0.063,0.057,0.101,0.182,0.11,0.376c0.006,0.088-0.007,0.155-0.035,0.202
c-0.029,0.046-0.074,0.071-0.139,0.074c-0.063,0.003-0.107-0.012-0.135-0.045c-0.027-0.034-0.045-0.113-0.053-0.236
c-0.01-0.134-0.018-0.268-0.025-0.401c-0.301,0.017-0.602,0.037-0.902,0.059c0.006,0.072,0.012,0.144,0.018,0.215
c0.021,0.247,0.064,0.436,0.133,0.565c0.066,0.13,0.193,0.231,0.379,0.307c0.186,0.075,0.403,0.105,0.655,0.092
c0.23-0.012,0.431-0.058,0.601-0.141c0.17-0.082,0.285-0.179,0.342-0.292s0.082-0.288,0.074-0.522
c-0.011-0.323-0.074-0.556-0.193-0.698C14.549,23.453,14.266,23.275,13.812,23.071z M15.76,21.816
c-0.16,1.102-0.309,2.205-0.442,3.308c0.326-0.007,0.652-0.01,0.978-0.01l0.059-0.593c0.113,0,0.229,0,0.342,0.001
c0.016,0.198,0.031,0.396,0.046,0.593c0.323,0.003,0.646,0.009,0.968,0.019c-0.145-1.105-0.303-2.209-0.476-3.313
C16.742,21.813,16.251,21.811,15.76,21.816z M16.34,23.936c0.027-0.292,0.09-0.754,0.195-1.386
c0.048,0.55,0.095,1.013,0.141,1.387C16.564,23.936,16.452,23.936,16.34,23.936z M19.481,24.349
c-0.013,0.164-0.028,0.268-0.05,0.311c-0.02,0.042-0.061,0.063-0.121,0.059c-0.053-0.004-0.087-0.025-0.102-0.066
c-0.014-0.042-0.018-0.134-0.008-0.277c0.055-0.824,0.11-1.647,0.166-2.47c-0.34-0.02-0.68-0.037-1.02-0.05
c-0.028,0.65-0.058,1.301-0.086,1.951c-0.018,0.372-0.021,0.616-0.012,0.733c0.012,0.116,0.055,0.229,0.133,0.337
c0.078,0.108,0.198,0.198,0.361,0.272c0.162,0.073,0.352,0.117,0.567,0.13c0.196,0.013,0.368-0.003,0.517-0.047
s0.271-0.116,0.371-0.214c0.099-0.099,0.162-0.198,0.189-0.297c0.027-0.1,0.055-0.273,0.078-0.523
c0.07-0.732,0.141-1.464,0.211-2.196c-0.34-0.029-0.679-0.055-1.018-0.077C19.601,22.731,19.541,23.54,19.481,24.349z
M22.457,22.182c-0.338-0.041-0.676-0.078-1.015-0.112c-0.124,1.094-0.248,2.188-0.372,3.282c0.506,0.051,1.01,0.11,1.514,0.176
c0.033-0.218,0.065-0.436,0.098-0.654c-0.193-0.026-0.387-0.05-0.58-0.074C22.221,23.928,22.338,23.055,22.457,22.182z
M23.516,22.321l-0.105,0.653c0.197,0.028,0.393,0.057,0.59,0.087c-0.15,0.869-0.301,1.737-0.453,2.605
c0.313,0.048,0.625,0.099,0.938,0.154c0.169-0.865,0.34-1.731,0.51-2.596c0.196,0.034,0.393,0.07,0.588,0.107
c0.047-0.216,0.092-0.432,0.137-0.648C24.986,22.546,24.252,22.426,23.516,22.321z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_37_copy_6">
<g>
<rect x="1.434" y="4.102" fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" width="29.43" height="21.078"/>
</g>
</g>
<g id="Shape_37_copy_7">
<g>
<rect x="1.857" y="4.426" fill-rule="evenodd" clip-rule="evenodd" fill="#722429" width="28.6" height="20.192"/>
</g>
</g>
<g id="Shape_37_copy_5_2_">
<g>
<rect x="2.537" y="4.938" fill-rule="evenodd" clip-rule="evenodd" fill="#E8E5BC" width="27.416" height="19.048"/>
</g>
</g>
<g id="Shape_37_copy_8">
<g>
<rect x="3.199" y="5.51" fill-rule="evenodd" clip-rule="evenodd" fill="#2F151C" width="26.213" height="17.942"/>
</g>
</g>
<g id="Shape_37_copy_9">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#878577" points="3.199,5.51 3.199,23.452 29.412,5.51 "/>
</g>
</g>
<g id="Shape_38">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M16.258,7.948c-6.71,0-12.035,2.579-12.035,5.76
c0,3.181,5.325,5.759,12.035,5.759c6.708,0,12.034-2.579,12.034-5.759C28.292,10.527,22.966,7.948,16.258,7.948z"/>
</g>
</g>
<g id="Shape_38_copy">
<g>
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" cx="16.258" cy="13.708" rx="11.525" ry="5.266"/>
</g>
</g>
<g id="Shape_38_copy_2">
<g>
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#99654B" cx="16.249" cy="13.708" rx="11.119" ry="5.036"/>
</g>
</g>
<g id="Shape_38_copy_3">
<g>
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#722429" cx="16.225" cy="13.708" rx="10.635" ry="4.771"/>
</g>
</g>
<g opacity="0.3">
<g id="PARKER_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M10.131,11.784c-0.129-0.052-0.316-0.078-0.56-0.078H8.48v2.771
h0.659v-1.029h0.457c0.198,0,0.343-0.012,0.436-0.037c0.092-0.024,0.188-0.074,0.287-0.148c0.099-0.075,0.176-0.177,0.229-0.307
c0.054-0.13,0.082-0.263,0.082-0.4c0-0.194-0.05-0.359-0.151-0.493C10.375,11.929,10.26,11.835,10.131,11.784z M9.878,12.832
c-0.065,0.074-0.178,0.111-0.339,0.111H9.116v-0.734h0.42c0.147,0,0.257,0.033,0.331,0.099c0.072,0.066,0.108,0.156,0.108,0.268
C9.976,12.672,9.943,12.758,9.878,12.832z M11.558,11.706l-0.889,2.771h0.569l0.174-0.571h0.896l0.17,0.571h0.696l-0.867-2.771
H11.558z M11.567,13.395l0.296-0.973l0.292,0.973H11.567z M16.017,12.535c0-0.17-0.044-0.325-0.133-0.464
c-0.09-0.139-0.202-0.235-0.339-0.287c-0.136-0.052-0.316-0.078-0.541-0.078h-1.217v2.771h0.654v-1.099h0.464l0.426,1.099h0.717
l-0.512-1.225C15.855,13.106,16.017,12.868,16.017,12.535z M15.279,12.756c-0.047,0.063-0.099,0.103-0.158,0.122
c-0.059,0.018-0.153,0.027-0.284,0.027H14.44v-0.706h0.383c0.148,0,0.25,0.007,0.304,0.021c0.055,0.015,0.105,0.052,0.152,0.113
c0.045,0.061,0.068,0.13,0.068,0.207C15.347,12.621,15.324,12.693,15.279,12.756z M18.957,11.706h-0.622l-0.868,1.301v-1.301
h-0.637v2.771h0.637v-0.636l0.389-0.568l0.552,1.204h0.715l-0.832-1.782L18.957,11.706z M19.762,14.477h1.979v-0.548h-1.319
v-0.605h1.037v-0.521h-1.037v-0.568h1.319v-0.528h-1.979V14.477z M24.193,13.251c0.322-0.145,0.481-0.384,0.481-0.717
c0-0.17-0.045-0.325-0.134-0.464s-0.202-0.235-0.338-0.287c-0.137-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654v-1.099
h0.464l0.425,1.099h0.717L24.193,13.251z M23.936,12.756c-0.046,0.063-0.098,0.103-0.158,0.122
c-0.058,0.018-0.153,0.027-0.283,0.027h-0.397v-0.706h0.383c0.149,0,0.25,0.007,0.304,0.021c0.054,0.015,0.105,0.052,0.151,0.113
c0.046,0.061,0.068,0.13,0.068,0.207C24.004,12.621,23.981,12.693,23.936,12.756z"/>
</g>
</g>
<g id="BUILDING_MATERIALS_INC._2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M9.863,15.583c0.107-0.033,0.16-0.101,0.16-0.203
c0-0.058-0.021-0.109-0.064-0.152c-0.044-0.044-0.11-0.066-0.2-0.066H9.403v0.901h0.356c0.099,0,0.173-0.024,0.221-0.072
c0.049-0.048,0.072-0.107,0.072-0.178c0-0.052-0.016-0.1-0.045-0.142C9.975,15.629,9.927,15.601,9.863,15.583z M9.511,15.254
h0.225c0.058,0,0.102,0.013,0.131,0.038c0.03,0.026,0.045,0.059,0.045,0.1c0,0.042-0.014,0.078-0.041,0.109
c-0.028,0.031-0.083,0.046-0.163,0.046H9.511V15.254z M9.89,15.92c-0.032,0.029-0.077,0.043-0.137,0.043H9.511v-0.33h0.225
c0.052,0,0.091,0.007,0.119,0.022c0.026,0.015,0.046,0.037,0.061,0.063c0.015,0.028,0.022,0.058,0.022,0.089
C9.938,15.855,9.921,15.892,9.89,15.92z M10.719,15.75c0,0.082-0.017,0.141-0.053,0.178c-0.037,0.036-0.089,0.055-0.158,0.055
c-0.037,0-0.071-0.007-0.104-0.021s-0.058-0.035-0.074-0.063c-0.016-0.028-0.024-0.078-0.024-0.148v-0.588h-0.112v0.588
c0,0.115,0.024,0.199,0.075,0.252c0.051,0.053,0.127,0.079,0.231,0.079c0.094,0,0.169-0.026,0.228-0.077
c0.058-0.051,0.086-0.136,0.086-0.254v-0.588h-0.094V15.75z M11.012,16.063h0.113v-0.901h-0.113V16.063z M11.452,15.162h-0.115
v0.901h0.532v-0.099h-0.417V15.162z M12.287,15.162h-0.302v0.901h0.339c0.106,0,0.194-0.044,0.264-0.131
c0.068-0.087,0.103-0.194,0.103-0.322c0-0.125-0.036-0.231-0.107-0.318C12.512,15.205,12.414,15.162,12.287,15.162z
M12.501,15.867c-0.051,0.067-0.124,0.101-0.221,0.101h-0.183v-0.711h0.183c0.101,0,0.176,0.036,0.224,0.107
c0.047,0.071,0.072,0.15,0.072,0.239C12.576,15.711,12.55,15.8,12.501,15.867z M12.845,16.063h0.112v-0.901h-0.112V16.063z
M13.744,15.768c0,0.019,0,0.041,0.001,0.065l0.002,0.063l-0.435-0.734h-0.143v0.901h0.092v-0.669c0-0.015,0-0.034-0.002-0.057
l-0.001-0.06l0.466,0.786h0.11v-0.901h-0.09V15.768z M14.373,15.703h0.223c0.001,0.019,0.001,0.036,0.001,0.049
c0,0.074-0.021,0.132-0.063,0.174c-0.043,0.042-0.096,0.063-0.159,0.063c-0.082,0-0.146-0.033-0.193-0.098
c-0.047-0.066-0.071-0.157-0.071-0.274c0-0.109,0.021-0.198,0.063-0.271c0.042-0.071,0.108-0.107,0.198-0.107
c0.049,0,0.095,0.015,0.138,0.045c0.042,0.03,0.07,0.079,0.086,0.146l0.106-0.026c-0.05-0.174-0.159-0.261-0.325-0.261
c-0.12,0-0.214,0.045-0.285,0.136c-0.07,0.091-0.105,0.206-0.105,0.342c0,0.128,0.034,0.236,0.099,0.325
c0.065,0.09,0.159,0.134,0.277,0.134c0.11,0,0.193-0.039,0.249-0.118l0.03,0.113h0.069v-0.467h-0.338V15.703z M15.669,15.883
l-0.272-0.721h-0.167v0.901h0.097v-0.787l0.295,0.787h0.077l0.292-0.787v0.787H16.1v-0.901h-0.166L15.669,15.883z M16.496,15.162
l-0.294,0.901h0.095l0.081-0.264h0.335l0.09,0.264h0.115l-0.294-0.901H16.496z M16.409,15.715l0.139-0.433l0.14,0.433H16.409z
M16.922,15.261h0.258v0.802h0.112v-0.802h0.258v-0.099h-0.629V15.261z M17.777,15.639h0.363v-0.091h-0.363v-0.287h0.458v-0.099
h-0.571v0.901h0.582v-0.099h-0.469V15.639z M18.991,15.551c0.025-0.044,0.04-0.09,0.04-0.138c0-0.062-0.024-0.12-0.07-0.172
c-0.046-0.053-0.119-0.08-0.214-0.08h-0.355v0.901h0.106v-0.391h0.257l0.166,0.391h0.12l-0.178-0.417
C18.921,15.627,18.965,15.595,18.991,15.551z M18.732,15.581h-0.236v-0.32h0.249c0.05,0,0.09,0.014,0.122,0.04
c0.034,0.026,0.05,0.063,0.05,0.111c0,0.047-0.016,0.087-0.046,0.12C18.84,15.564,18.794,15.581,18.732,15.581z M19.206,16.063
h0.112v-0.901h-0.112V16.063z M19.713,15.162l-0.292,0.901h0.094l0.082-0.264h0.333l0.091,0.264h0.115l-0.293-0.901H19.713z
M19.627,15.715l0.139-0.433l0.14,0.433H19.627z M20.355,15.162H20.24v0.901h0.532v-0.099h-0.417V15.162z M21.26,15.56
l-0.168-0.039c-0.098-0.023-0.146-0.068-0.146-0.135c0-0.048,0.019-0.085,0.058-0.11c0.038-0.026,0.083-0.04,0.131-0.04
c0.049,0,0.097,0.014,0.14,0.041c0.044,0.027,0.072,0.067,0.084,0.12l0.103-0.031c-0.053-0.148-0.16-0.222-0.324-0.222
c-0.089,0-0.161,0.022-0.219,0.067c-0.056,0.044-0.084,0.104-0.084,0.18c0,0.045,0.011,0.086,0.031,0.121
c0.021,0.035,0.045,0.061,0.076,0.078c0.03,0.017,0.067,0.031,0.114,0.043l0.181,0.044c0.036,0.009,0.067,0.025,0.094,0.048
c0.028,0.023,0.042,0.054,0.042,0.092c0,0.051-0.018,0.091-0.055,0.122c-0.035,0.03-0.089,0.045-0.161,0.045
c-0.137,0-0.225-0.062-0.266-0.185l-0.101,0.023c0.06,0.172,0.183,0.257,0.37,0.257c0.104,0,0.187-0.026,0.245-0.077
c0.058-0.052,0.086-0.117,0.086-0.195C21.49,15.68,21.414,15.597,21.26,15.56z M21.969,16.063h0.112v-0.901h-0.112V16.063z
M22.868,15.768c0,0.019,0,0.041,0.002,0.065l0,0.063l-0.435-0.734h-0.142v0.901h0.092v-0.669c0-0.015-0.001-0.034-0.002-0.057
l-0.002-0.06l0.466,0.786h0.109v-0.901h-0.089V15.768z M23.485,15.239c0.106,0,0.181,0.072,0.219,0.215l0.107-0.021
c-0.049-0.193-0.156-0.29-0.326-0.29c-0.114,0-0.204,0.042-0.271,0.126c-0.069,0.084-0.103,0.196-0.103,0.334
c0,0.135,0.033,0.248,0.097,0.339c0.066,0.092,0.156,0.138,0.27,0.138c0.172,0,0.285-0.099,0.333-0.298l-0.103-0.023
c-0.038,0.15-0.114,0.226-0.229,0.226c-0.075,0-0.133-0.034-0.179-0.1c-0.044-0.067-0.067-0.155-0.067-0.266
c0-0.121,0.021-0.214,0.066-0.281C23.343,15.272,23.405,15.239,23.485,15.239z M23.919,15.915v0.148h0.148v-0.148H23.919z"/>
</g>
</g>
<g id="Shape_39_copy_3_6_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M17.86,17.147c-0.065,0-0.091,0.05-0.094,0.064
c-0.004,0.015-0.002,0.019,0.012,0.025c0.029,0.008,0.082,0.039,0.082,0.108c0,0.093-0.075,0.117-0.131,0.117
c-0.102,0-0.202-0.096-0.254-0.164c-0.071-0.093-0.146-0.222-0.26-0.222h-0.003c-0.059,0-0.109,0.026-0.134,0.059
c0.054,0.103,0.165,0.219,0.215,0.265c0.047,0.04,0.128,0.131,0.279,0.162v0.01h-0.041c-0.069,0-0.174-0.021-0.296-0.111
c-0.133-0.101-0.223-0.258-0.286-0.339c-0.098-0.125-0.191-0.178-0.311-0.178c-0.183,0-0.403,0.15-0.403,0.361
c0,0.146,0.123,0.26,0.247,0.26c0.041,0,0.083-0.013,0.124-0.042c0.011-0.006,0.011-0.017-0.007-0.017
c-0.075,0-0.24-0.095-0.24-0.277c0-0.114,0.063-0.217,0.23-0.217c0.165,0,0.249,0.12,0.317,0.222
c-0.032,0.017-0.064,0.05-0.064,0.116c0,0.077,0.04,0.148,0.146,0.227c0.127,0.083,0.27,0.121,0.417,0.121
c0.139,0,0.33-0.053,0.399-0.165c0.019-0.027,0.03-0.036,0.052-0.058c0.038-0.035,0.118-0.118,0.118-0.204
C17.975,17.209,17.931,17.147,17.86,17.147z"/>
</g>
</g>
<g id="Shape_39_copy_3_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M16.437,17.075c-0.041,0-0.082,0.014-0.125,0.042
c-0.01,0.006-0.01,0.018,0.007,0.018c0.076,0,0.24,0.094,0.24,0.277c0,0.114-0.063,0.216-0.23,0.216
c-0.165,0-0.248-0.12-0.316-0.221c0.032-0.018,0.063-0.05,0.063-0.115c0-0.078-0.038-0.149-0.146-0.228
c-0.125-0.083-0.268-0.12-0.416-0.12c-0.141,0-0.33,0.053-0.398,0.164c-0.019,0.027-0.03,0.036-0.054,0.058
c-0.036,0.035-0.118,0.118-0.118,0.205c0,0.06,0.044,0.121,0.115,0.121c0.064,0,0.09-0.05,0.092-0.064
c0.004-0.015,0.002-0.019-0.011-0.026c-0.029-0.007-0.082-0.039-0.082-0.107c0-0.093,0.075-0.118,0.133-0.118
c0.101,0,0.2,0.097,0.252,0.164c0.072,0.093,0.147,0.222,0.262,0.222h0.002c0.058,0,0.108-0.027,0.133-0.06
c-0.054-0.102-0.164-0.218-0.215-0.265c-0.047-0.04-0.127-0.131-0.278-0.162v-0.009h0.04c0.069,0,0.174,0.021,0.297,0.112
c0.132,0.1,0.222,0.258,0.286,0.338c0.097,0.125,0.191,0.178,0.311,0.178c0.184,0,0.402-0.15,0.402-0.361
C16.683,17.189,16.561,17.075,16.437,17.075z"/>
</g>
</g>
</g>
<g>
<g id="PARKER">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M9.802,11.469c-0.129-0.052-0.316-0.078-0.56-0.078H8.15v2.771
H8.81v-1.029h0.457c0.199,0,0.343-0.012,0.436-0.037c0.092-0.025,0.188-0.074,0.287-0.148c0.099-0.075,0.176-0.177,0.229-0.307
c0.053-0.13,0.081-0.263,0.081-0.4c0-0.194-0.05-0.359-0.151-0.493C10.045,11.614,9.931,11.521,9.802,11.469z M9.549,12.518
c-0.065,0.074-0.178,0.111-0.339,0.111H8.787v-0.734h0.42c0.147,0,0.258,0.033,0.331,0.099c0.072,0.066,0.108,0.155,0.108,0.268
C9.646,12.358,9.613,12.443,9.549,12.518z M11.228,11.391l-0.889,2.771h0.569l0.174-0.571h0.896l0.17,0.571h0.696l-0.867-2.771
H11.228z M11.237,13.08l0.297-0.973l0.291,0.973H11.237z M15.687,12.22c0-0.17-0.044-0.325-0.133-0.464
c-0.09-0.139-0.202-0.235-0.338-0.287c-0.137-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654v-1.099h0.464l0.426,1.099h0.717
l-0.512-1.226C15.526,12.792,15.687,12.553,15.687,12.22z M14.949,12.441c-0.047,0.063-0.099,0.103-0.158,0.122
c-0.059,0.018-0.153,0.027-0.283,0.027h-0.397v-0.706h0.383c0.149,0,0.25,0.007,0.304,0.021c0.054,0.015,0.104,0.052,0.151,0.113
c0.045,0.061,0.068,0.13,0.068,0.207C15.018,12.307,14.994,12.378,14.949,12.441z M18.628,11.391h-0.622l-0.869,1.301v-1.301
h-0.637v2.771h0.637v-0.636l0.389-0.568l0.552,1.204h0.715l-0.832-1.782L18.628,11.391z M19.433,14.162h1.979v-0.548h-1.319
v-0.605h1.037v-0.522h-1.037v-0.568h1.319v-0.528h-1.979V14.162z M23.863,12.937c0.322-0.145,0.481-0.383,0.481-0.716
c0-0.17-0.045-0.325-0.134-0.464c-0.089-0.139-0.202-0.235-0.338-0.287c-0.136-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654
v-1.099h0.464l0.425,1.099h0.717L23.863,12.937z M23.606,12.441c-0.046,0.063-0.098,0.103-0.158,0.122
c-0.058,0.018-0.153,0.027-0.283,0.027h-0.396v-0.706h0.383c0.148,0,0.25,0.007,0.304,0.021c0.055,0.015,0.105,0.052,0.151,0.113
s0.068,0.13,0.068,0.207C23.674,12.307,23.652,12.378,23.606,12.441z"/>
</g>
</g>
<g id="BUILDING_MATERIALS_INC.">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M9.534,15.269c0.107-0.033,0.16-0.101,0.16-0.203
c0-0.058-0.021-0.109-0.064-0.152c-0.044-0.044-0.11-0.066-0.2-0.066H9.073v0.901h0.356c0.099,0,0.173-0.024,0.221-0.072
c0.049-0.048,0.072-0.107,0.072-0.178c0-0.052-0.016-0.1-0.046-0.142C9.646,15.315,9.598,15.286,9.534,15.269z M9.182,14.939
h0.225c0.058,0,0.102,0.012,0.131,0.038c0.03,0.026,0.045,0.059,0.045,0.1c0,0.042-0.014,0.078-0.041,0.109
c-0.028,0.031-0.083,0.046-0.163,0.046H9.182V14.939z M9.56,15.606c-0.032,0.029-0.077,0.043-0.137,0.043H9.182v-0.33h0.225
c0.052,0,0.092,0.007,0.119,0.022c0.026,0.015,0.046,0.037,0.061,0.063c0.015,0.028,0.022,0.058,0.022,0.089
C9.609,15.541,9.592,15.578,9.56,15.606z M10.389,15.436c0,0.082-0.017,0.141-0.053,0.178c-0.037,0.036-0.089,0.055-0.158,0.055
c-0.036,0-0.071-0.007-0.104-0.021S10.016,15.613,10,15.584c-0.016-0.028-0.024-0.078-0.024-0.148v-0.588H9.863v0.588
c0,0.115,0.024,0.199,0.075,0.252c0.05,0.053,0.127,0.079,0.231,0.079c0.094,0,0.169-0.026,0.228-0.077
c0.058-0.052,0.086-0.136,0.086-0.254v-0.588h-0.094V15.436z M10.682,15.749h0.113v-0.901h-0.113V15.749z M11.122,14.847h-0.115
v0.901h0.532v-0.099h-0.417V14.847z M11.957,14.847h-0.302v0.901h0.339c0.106,0,0.195-0.044,0.264-0.131
c0.068-0.087,0.103-0.194,0.103-0.322c0-0.125-0.036-0.231-0.106-0.318C12.183,14.891,12.084,14.847,11.957,14.847z
M12.171,15.552c-0.05,0.067-0.124,0.101-0.221,0.101h-0.184v-0.711h0.184c0.101,0,0.176,0.036,0.224,0.107
c0.048,0.071,0.072,0.15,0.072,0.239C12.246,15.397,12.22,15.485,12.171,15.552z M12.516,15.749h0.112v-0.901h-0.112V15.749z
M13.415,15.454c0,0.019,0,0.041,0,0.065l0.002,0.063l-0.435-0.734H12.84v0.901h0.092v-0.669c0-0.016,0-0.034-0.002-0.057
l-0.002-0.06l0.466,0.786h0.111v-0.901h-0.09V15.454z M14.043,15.389h0.223c0.001,0.019,0.001,0.035,0.001,0.049
c0,0.074-0.021,0.132-0.063,0.174c-0.043,0.042-0.096,0.063-0.159,0.063c-0.082,0-0.146-0.033-0.193-0.098
c-0.048-0.066-0.071-0.157-0.071-0.274c0-0.109,0.021-0.198,0.063-0.271c0.042-0.071,0.108-0.107,0.198-0.107
c0.049,0,0.095,0.015,0.139,0.045c0.041,0.03,0.07,0.079,0.086,0.146l0.107-0.026c-0.051-0.174-0.159-0.261-0.325-0.261
c-0.12,0-0.214,0.045-0.284,0.136c-0.07,0.091-0.106,0.206-0.106,0.342c0,0.127,0.034,0.236,0.099,0.325
c0.065,0.09,0.159,0.134,0.277,0.134c0.11,0,0.192-0.039,0.249-0.118l0.03,0.113h0.069v-0.467h-0.339V15.389z M15.34,15.568
l-0.272-0.721H14.9v0.901h0.096v-0.787l0.296,0.787h0.077l0.292-0.787v0.787h0.109v-0.901h-0.166L15.34,15.568z M16.166,14.847
l-0.294,0.901h0.096l0.081-0.264h0.335l0.09,0.264h0.115l-0.295-0.901H16.166z M16.08,15.4l0.139-0.433l0.139,0.433H16.08z
M16.593,14.946h0.258v0.802h0.112v-0.802h0.258v-0.099h-0.629V14.946z M17.447,15.324h0.363v-0.092h-0.363v-0.286h0.458v-0.099
h-0.571v0.901h0.583v-0.099h-0.469V15.324z M18.661,15.237c0.025-0.044,0.04-0.09,0.04-0.138c0-0.062-0.024-0.12-0.07-0.172
c-0.046-0.053-0.119-0.08-0.214-0.08h-0.354v0.901h0.105v-0.391h0.258l0.166,0.391h0.12l-0.178-0.417
C18.592,15.312,18.635,15.281,18.661,15.237z M18.403,15.267h-0.236v-0.32h0.249c0.051,0,0.09,0.014,0.122,0.04
c0.034,0.026,0.05,0.063,0.05,0.111c0,0.047-0.016,0.087-0.046,0.12C18.511,15.25,18.465,15.267,18.403,15.267z M18.876,15.749
h0.112v-0.901h-0.112V15.749z M19.384,14.847l-0.292,0.901h0.095l0.082-0.264h0.333l0.091,0.264h0.115l-0.294-0.901H19.384z
M19.298,15.4l0.14-0.433l0.139,0.433H19.298z M20.026,14.847h-0.115v0.901h0.531v-0.099h-0.417V14.847z M20.93,15.246
l-0.168-0.039c-0.098-0.023-0.146-0.068-0.146-0.135c0-0.048,0.019-0.085,0.058-0.11c0.037-0.026,0.082-0.04,0.131-0.04
c0.05,0,0.097,0.014,0.141,0.041c0.044,0.027,0.072,0.067,0.084,0.12l0.103-0.031c-0.052-0.148-0.16-0.222-0.324-0.222
c-0.089,0-0.161,0.022-0.219,0.067c-0.056,0.044-0.084,0.104-0.084,0.18c0,0.045,0.011,0.086,0.031,0.122
c0.021,0.035,0.046,0.061,0.076,0.078s0.067,0.031,0.114,0.043l0.181,0.044c0.037,0.009,0.067,0.025,0.095,0.048
c0.028,0.023,0.041,0.054,0.041,0.092c0,0.051-0.018,0.091-0.054,0.122c-0.036,0.03-0.089,0.045-0.161,0.045
c-0.137,0-0.225-0.061-0.266-0.184L20.46,15.51c0.06,0.172,0.182,0.257,0.37,0.257c0.104,0,0.186-0.026,0.244-0.077
c0.058-0.052,0.086-0.117,0.086-0.195C21.16,15.366,21.084,15.283,20.93,15.246z M21.64,15.749h0.112v-0.901H21.64V15.749z
M22.538,15.454c0,0.019,0,0.041,0.002,0.065l0.001,0.063l-0.436-0.734h-0.142v0.901h0.092v-0.669
c0-0.016-0.001-0.034-0.002-0.057l-0.002-0.06l0.466,0.786h0.109v-0.901h-0.089V15.454z M23.156,14.925
c0.107,0,0.181,0.071,0.219,0.215l0.106-0.021c-0.049-0.193-0.156-0.29-0.326-0.29c-0.114,0-0.204,0.042-0.271,0.126
c-0.069,0.084-0.103,0.196-0.103,0.334c0,0.135,0.033,0.248,0.098,0.339c0.065,0.092,0.155,0.138,0.27,0.138
c0.172,0,0.284-0.099,0.333-0.298l-0.103-0.023c-0.037,0.15-0.114,0.225-0.228,0.225c-0.075,0-0.133-0.033-0.179-0.1
c-0.044-0.066-0.067-0.155-0.067-0.265c0-0.121,0.021-0.214,0.066-0.281C23.014,14.958,23.075,14.925,23.156,14.925z
M23.59,15.601v0.148h0.148v-0.148H23.59z"/>
</g>
</g>
<g id="Shape_39_copy_3">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M17.531,16.833c-0.064,0-0.091,0.05-0.094,0.064
c-0.003,0.015-0.002,0.019,0.012,0.025c0.029,0.008,0.082,0.039,0.082,0.108c0,0.093-0.075,0.117-0.131,0.117
c-0.102,0-0.202-0.096-0.254-0.164c-0.071-0.093-0.146-0.222-0.26-0.222h-0.003c-0.059,0-0.109,0.026-0.134,0.059
c0.055,0.103,0.165,0.219,0.215,0.265c0.047,0.04,0.128,0.131,0.279,0.161v0.01h-0.041c-0.069,0-0.174-0.021-0.296-0.112
c-0.133-0.101-0.223-0.258-0.285-0.338c-0.099-0.125-0.192-0.178-0.311-0.178c-0.182,0-0.403,0.15-0.403,0.361
c0,0.146,0.123,0.26,0.247,0.26c0.042,0,0.083-0.013,0.124-0.042c0.011-0.006,0.011-0.017-0.007-0.017
c-0.075,0-0.24-0.095-0.24-0.277c0-0.114,0.064-0.217,0.23-0.217c0.165,0,0.249,0.12,0.317,0.222
c-0.032,0.017-0.065,0.05-0.065,0.115c0,0.078,0.04,0.149,0.146,0.228c0.127,0.083,0.27,0.121,0.417,0.121
c0.139,0,0.33-0.053,0.399-0.165c0.019-0.027,0.03-0.036,0.052-0.058c0.038-0.035,0.118-0.118,0.118-0.205
C17.645,16.895,17.602,16.833,17.531,16.833z"/>
</g>
</g>
<g id="Shape_39_copy_3_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M16.107,16.761c-0.041,0-0.081,0.014-0.125,0.042
c-0.01,0.006-0.01,0.018,0.008,0.018c0.076,0,0.239,0.094,0.239,0.277c0,0.114-0.063,0.216-0.23,0.216
c-0.165,0-0.248-0.12-0.316-0.221c0.032-0.018,0.063-0.05,0.063-0.116c0-0.077-0.038-0.148-0.146-0.228
c-0.125-0.083-0.268-0.12-0.416-0.12c-0.14,0-0.329,0.053-0.398,0.164c-0.019,0.027-0.03,0.036-0.053,0.058
c-0.037,0.035-0.118,0.118-0.118,0.205c0,0.06,0.044,0.122,0.115,0.122c0.063,0,0.09-0.05,0.092-0.064
c0.003-0.015,0.001-0.019-0.011-0.026c-0.029-0.007-0.083-0.039-0.083-0.107c0-0.093,0.075-0.118,0.133-0.118
c0.101,0,0.2,0.097,0.253,0.164c0.072,0.093,0.147,0.222,0.262,0.222h0.002c0.058,0,0.108-0.027,0.133-0.06
c-0.054-0.102-0.164-0.218-0.215-0.265c-0.047-0.04-0.127-0.131-0.278-0.162v-0.01h0.041c0.069,0,0.174,0.022,0.296,0.112
c0.132,0.101,0.222,0.258,0.286,0.339c0.097,0.125,0.191,0.178,0.311,0.178c0.184,0,0.403-0.15,0.403-0.361
C16.354,16.875,16.231,16.761,16.107,16.761z"/>
</g>
</g>
</g>
<g id="Shape_37_copy_10">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M3.741,21.821v0.104c0.566,2.134,1.112,4.204,1.641,6.347
c6.986-2.134,14.646-2.159,21.659,0c0.528-2.144,1.074-4.318,1.641-6.452C20.546,19.487,11.801,19.458,3.741,21.821z"/>
</g>
</g>
<g id="Shape_37_copy_10_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FBF0D7" d="M4.414,22.131l0,0.087c0.525,1.795,0.948,3.621,1.438,5.424
c6.626-1.795,14.059-1.899,20.69-0.083c0.511-1.804,0.944-3.633,1.491-5.428C20.34,20.167,12.058,20.143,4.414,22.131z"/>
</g>
</g>
<g id="Shape_37_copy_11">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" d="M4.867,22.371c0.427,1.562,0.844,3.152,1.25,4.772
c6.582-1.771,13.607-1.771,20.19,0c0.405-1.62,0.821-3.211,1.249-4.772C20.15,20.5,12.273,20.5,4.867,22.371z"/>
</g>
</g>
<g id="ASSAULT">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#722429" d="M7.033,22.661c0.053,1.111,0.119,2.221,0.197,3.329
c0.32-0.062,0.643-0.122,0.965-0.177L8.137,25.22c0.114-0.02,0.228-0.039,0.34-0.057c0.054,0.191,0.106,0.383,0.159,0.576
c0.319-0.052,0.638-0.102,0.958-0.147C9.24,24.529,8.871,23.47,8.49,22.414C8.004,22.489,7.518,22.572,7.033,22.661z
M8.014,24.646c-0.03-0.292-0.057-0.757-0.074-1.396c0.153,0.533,0.287,0.98,0.405,1.34C8.234,24.608,8.125,24.627,8.014,24.646z
M11.848,23.769c-0.129-0.134-0.423-0.295-0.89-0.473c-0.163-0.062-0.265-0.118-0.305-0.169c-0.042-0.051-0.069-0.132-0.083-0.241
c-0.012-0.085-0.005-0.15,0.021-0.196c0.026-0.045,0.068-0.071,0.13-0.078c0.056-0.006,0.097,0.005,0.124,0.034
c0.028,0.028,0.048,0.099,0.063,0.213c0.01,0.081,0.02,0.162,0.03,0.243c0.307-0.033,0.614-0.064,0.922-0.091
c-0.004-0.043-0.008-0.087-0.012-0.13c-0.027-0.261-0.076-0.443-0.146-0.547c-0.071-0.103-0.203-0.182-0.396-0.235
c-0.194-0.054-0.424-0.066-0.688-0.037c-0.242,0.027-0.443,0.084-0.604,0.171c-0.161,0.086-0.271,0.193-0.33,0.318
c-0.059,0.126-0.068,0.314-0.031,0.564c0.027,0.173,0.074,0.313,0.145,0.417c0.068,0.104,0.146,0.184,0.234,0.237
s0.264,0.134,0.524,0.246c0.261,0.111,0.424,0.194,0.492,0.246c0.067,0.053,0.112,0.176,0.134,0.37
c0.012,0.088,0.004,0.155-0.021,0.203s-0.07,0.076-0.133,0.083c-0.064,0.007-0.11-0.006-0.14-0.039
c-0.03-0.032-0.052-0.109-0.067-0.232c-0.018-0.133-0.034-0.266-0.052-0.399c-0.3,0.034-0.599,0.071-0.897,0.111
c0.01,0.071,0.021,0.143,0.031,0.214c0.037,0.245,0.094,0.43,0.169,0.556s0.208,0.22,0.397,0.285
c0.191,0.064,0.411,0.082,0.662,0.054c0.23-0.025,0.427-0.083,0.592-0.175c0.164-0.092,0.273-0.195,0.322-0.312
c0.05-0.116,0.064-0.292,0.04-0.526C12.053,24.133,11.975,23.904,11.848,23.769z M13.812,23.071
c-0.158-0.071-0.257-0.133-0.292-0.187c-0.039-0.054-0.062-0.136-0.069-0.246c-0.005-0.085,0.007-0.15,0.034-0.194
c0.029-0.043,0.074-0.067,0.135-0.07c0.055-0.003,0.097,0.011,0.122,0.041s0.042,0.102,0.048,0.216
c0.005,0.082,0.01,0.163,0.014,0.245c0.31-0.016,0.618-0.028,0.926-0.038c-0.001-0.043-0.003-0.087-0.004-0.13
c-0.01-0.263-0.045-0.448-0.109-0.555c-0.065-0.107-0.191-0.194-0.381-0.258s-0.418-0.09-0.684-0.076
c-0.242,0.013-0.447,0.059-0.612,0.136c-0.166,0.077-0.282,0.177-0.349,0.299c-0.066,0.122-0.088,0.309-0.066,0.561
c0.014,0.175,0.053,0.316,0.115,0.425c0.063,0.108,0.135,0.191,0.219,0.25c0.085,0.058,0.254,0.149,0.507,0.275
c0.252,0.125,0.409,0.217,0.475,0.274c0.063,0.057,0.101,0.182,0.11,0.376c0.006,0.088-0.007,0.155-0.035,0.202
c-0.029,0.046-0.074,0.071-0.139,0.074c-0.063,0.003-0.107-0.012-0.135-0.045c-0.027-0.034-0.045-0.113-0.053-0.236
c-0.01-0.134-0.018-0.268-0.025-0.401c-0.301,0.017-0.602,0.037-0.902,0.059c0.006,0.072,0.012,0.144,0.018,0.215
c0.021,0.247,0.064,0.436,0.133,0.565c0.066,0.13,0.193,0.231,0.379,0.307c0.186,0.075,0.403,0.105,0.655,0.092
c0.23-0.012,0.431-0.058,0.601-0.141c0.17-0.082,0.285-0.179,0.342-0.292s0.082-0.288,0.074-0.522
c-0.011-0.323-0.074-0.556-0.193-0.698C14.549,23.453,14.266,23.275,13.812,23.071z M15.76,21.816
c-0.16,1.102-0.309,2.205-0.442,3.308c0.326-0.007,0.652-0.01,0.978-0.01l0.059-0.593c0.113,0,0.229,0,0.342,0.001
c0.016,0.198,0.031,0.396,0.046,0.593c0.323,0.003,0.646,0.009,0.968,0.019c-0.145-1.105-0.303-2.209-0.476-3.313
C16.742,21.813,16.251,21.811,15.76,21.816z M16.34,23.936c0.027-0.292,0.09-0.754,0.195-1.386
c0.048,0.55,0.095,1.013,0.141,1.387C16.564,23.936,16.452,23.936,16.34,23.936z M19.481,24.349
c-0.013,0.164-0.028,0.268-0.05,0.311c-0.02,0.042-0.061,0.063-0.121,0.059c-0.053-0.004-0.087-0.025-0.102-0.066
c-0.014-0.042-0.018-0.134-0.008-0.277c0.055-0.824,0.11-1.647,0.166-2.47c-0.34-0.02-0.68-0.037-1.02-0.05
c-0.028,0.65-0.058,1.301-0.086,1.951c-0.018,0.372-0.021,0.616-0.012,0.733c0.012,0.116,0.055,0.229,0.133,0.337
c0.078,0.108,0.198,0.198,0.361,0.272c0.162,0.073,0.352,0.117,0.567,0.13c0.196,0.013,0.368-0.003,0.517-0.047
s0.271-0.116,0.371-0.214c0.099-0.099,0.162-0.198,0.189-0.297c0.027-0.1,0.055-0.273,0.078-0.523
c0.07-0.732,0.141-1.464,0.211-2.196c-0.34-0.029-0.679-0.055-1.018-0.077C19.601,22.731,19.541,23.54,19.481,24.349z
M22.457,22.182c-0.338-0.041-0.676-0.078-1.015-0.112c-0.124,1.094-0.248,2.188-0.372,3.282c0.506,0.051,1.01,0.11,1.514,0.176
c0.033-0.218,0.065-0.436,0.098-0.654c-0.193-0.026-0.387-0.05-0.58-0.074C22.221,23.928,22.338,23.055,22.457,22.182z
M23.516,22.321l-0.105,0.653c0.197,0.028,0.393,0.057,0.59,0.087c-0.15,0.869-0.301,1.737-0.453,2.605
c0.313,0.048,0.625,0.099,0.938,0.154c0.169-0.865,0.34-1.731,0.51-2.596c0.196,0.034,0.393,0.07,0.588,0.107
c0.047-0.216,0.092-0.432,0.137-0.648C24.986,22.546,24.252,22.426,23.516,22.321z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 26 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 212 KiB

After

Width:  |  Height:  |  Size: 214 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 217 KiB

After

Width:  |  Height:  |  Size: 219 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 214 KiB

After

Width:  |  Height:  |  Size: 216 KiB

View File

@@ -1,337 +1,337 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_1_copy_11">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B7E4F3" d="M24.301,3.451c0-0.21,0.016-0.418,0.045-0.622
c-2.285-0.262-5.189-0.505-8.087-0.505c-2.799,0-5.593,0.231-7.817,0.486c0.032,0.21,0.048,0.423,0.048,0.641
c0,2.339-1.883,5.392-4.394,5.863c-0.218,18.099,9.518,20.474,12.248,21.57c2.79-1.112,12.473-3.473,12.249-21.591
C26.133,8.789,24.301,5.759,24.301,3.451z"/>
</g>
</g>
<g id="Shape_49">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8ED7F0" d="M25.977,11.356c0,0-1.965-0.625-4.014-0.362
c1.383-1.472,1.979-3.224,1.979-3.224S21.83,7.986,20.07,9.135c0.703-1.968,0.502-3.922,0.502-3.922s-1.883,1.121-2.967,2.986
c-0.176-2.158-1.252-3.934-1.252-3.934s-1.048,1.593-1.318,3.566c-1.019-1.715-2.508-2.787-2.508-2.787s-0.339,1.893,0.195,3.832
C11.09,7.691,9.264,7.289,9.264,7.289s0.442,1.906,1.721,3.497c-2.009-0.437-3.907-0.063-3.907-0.063s1.193,1.606,3.043,2.561
c-1.043,0.217-1.98,0.617-2.655,0.96c-0.67,0.34,4.028,4.094,4.028,4.094l10.246,0.061c0,0,4.326-3.195,3.654-3.629
c-0.666-0.43-1.588-0.935-2.613-1.242C24.693,12.741,25.977,11.356,25.977,11.356z"/>
</g>
</g>
<g id="Shape_1_copy_16">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546265" d="M25.064,2.685c0-0.223,0.016-0.442,0.049-0.658
c-2.504-0.277-5.766-0.535-8.861-0.535c-2.99,0-6.131,0.245-8.569,0.514c0.035,0.222,0.053,0.449,0.053,0.679
c0,2.476-1.697,5.706-4.355,6.205C3.152,28.042,13.454,30.556,16.343,31.716c2.954-1.176,13.2-3.675,12.961-22.848
C26.701,8.334,25.064,5.127,25.064,2.685z M16.343,30.557C13.713,29.5,4.246,27.123,4.456,9.689
c2.815-1.091,4.486-4.294,4.64-6.726c2.143-0.246,4.47-0.4,7.166-0.4c2.792,0,5.233,0.201,7.434,0.453
c0.041,1.635,1.449,5.509,4.563,6.673C28.475,27.141,19.031,29.486,16.343,30.557z"/>
</g>
</g>
<g id="Shape_1_copy_17">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M24.178,3.492c0-0.21,0.016-0.417,0.045-0.62
c-2.25-0.261-5.109-0.504-7.962-0.504c-2.757,0-5.508,0.23-7.698,0.484c0.031,0.209,0.047,0.423,0.047,0.64
c0,2.332-1.973,5.375-4.476,5.845c-0.217,18.043,9.488,20.411,12.21,21.504c2.782-1.108,12.434-3.462,12.209-21.524
C26.102,8.813,24.178,5.792,24.178,3.492z M16.343,29.748C13.866,28.753,4.948,26.514,5.145,10.09
C7.797,9.063,9.498,6.045,9.64,3.754c1.982-0.231,4.118-0.376,6.627-0.376c2.598,0,4.838,0.188,6.875,0.426
c0.039,1.541,1.49,5.189,4.424,6.287C27.77,26.53,18.875,28.739,16.343,29.748z"/>
</g>
</g>
<g id="Shape_1_copy_18">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M24.336,3.248c0-0.213-0.033-0.424-0.004-0.63
c-2.281-0.266-5.133-0.514-8.075-0.514c-2.843,0-5.583,0.235-7.803,0.493c0.032,0.213-0.001,0.431-0.001,0.651
c0,2.376-1.997,5.475-4.547,5.954c-0.221,18.377,9.665,20.79,12.437,21.903c2.833-1.129,12.665-3.526,12.436-21.923
C26.283,8.668,24.336,5.591,24.336,3.248z M16.343,29.992C13.82,28.979,4.736,26.697,4.937,9.969
c2.702-1.047,4.38-4.12,4.526-6.454c2.034-0.235,4.243-0.384,6.802-0.384c2.651,0,4.967,0.192,7.055,0.434
c0.041,1.569,1.467,5.286,4.455,6.403C27.982,26.714,18.922,28.964,16.343,29.992z"/>
</g>
</g>
<g id="Shape_34_copy_2">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8D917E" d="M8.557,17.673c0.099,0.448,0.238,1.016,0.414,1.576
c0.356,1.135,0.885,2.236,0.885,2.236H23.32c0,0,0.59-1.083,0.941-2.208c0.174-0.556,0.297-1.122,0.379-1.572L8.557,17.673z"/>
</g>
</g>
<g id="Shape_1_copy_14_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8B5A0" d="M20.621,21.167l-8.446,0.034c0,0-4.904,0.537-3.575,2.596
c0.276,0.428,0.562,0.823,0.854,1.188c2.553,3.192,5.573,3.951,6.889,4.479c1.524-0.607,5.12-1.479,7.809-5.789
C25.658,21.262,20.621,21.167,20.621,21.167z"/>
</g>
</g>
<g id="Shape_1_copy_15">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" d="M5.51,12.764c0.436,5.998,1.993,9.782,3.944,12.221
c1.49-2.05,2.721-3.783,2.721-3.783s0.035-6.002,0.002-6.014C8.556,13.895,5.51,12.764,5.51,12.764z M20.629,15.471
c-0.039,0.014-0.008,5.696-0.008,5.696s1.004,1.587,2.531,3.919c1.945-2.419,3.49-6.206,3.986-12.276
C27.139,12.81,21.289,15.239,20.629,15.471z"/>
</g>
</g>
<g id="Shape_31_copy_2">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#242424" points="19.725,12.614 19.953,11.828 19.301,11.323 18.381,8.32
14.339,8.313 13.482,11.259 12.822,11.775 13.082,12.633 12.544,14.485 13.484,14.512 19.283,14.348 20.297,14.485 "/>
</g>
</g>
<g id="Shape_28_copy_8">
<g>
<rect x="14.702" y="9.106" fill-rule="evenodd" clip-rule="evenodd" fill="#C0B391" width="3.367" height="17.031"/>
</g>
</g>
<g id="Shape_28_copy_8_1_">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" points="13.339,13.905 13.339,21.058 14.734,26.137
14.734,9.106 "/>
</g>
</g>
<g id="Shape_28_copy_8_2_">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" points="18.014,9.106 18.014,26.137 19.408,21.165
19.408,13.601 "/>
</g>
</g>
<g id="Shape_29_copy_4">
<g>
<rect x="15.944" y="16.968" fill-rule="evenodd" clip-rule="evenodd" fill="#30281F" width="1.021" height="1.902"/>
</g>
</g>
<g id="Shape_32_copy_7">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#30281F" d="M17.215,12.494c-0.02-0.383-0.354-0.688-0.763-0.688
c-0.409,0-0.743,0.305-0.763,0.688h-0.001v1.744h1.527V12.494L17.215,12.494z"/>
</g>
</g>
<g id="Color_Fill_2">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M23.623,13.172c-0.063-0.016-0.125-0.014-0.186,0
c-0.094-1.051-0.307-3.618-0.307-3.618s-0.016-0.167-0.133-0.165c-0.098,0.002-0.117,0.119-0.117,0.119L22.5,12.709
c-0.102-0.023-0.205-0.02-0.299,0.026c-0.285,0.143-0.16,0.58-0.008,0.971c0.135,0.353,0.365,0.987,0.807,0.895
c-0.043,0.234-0.068,0.497,0.078,0.54c0.594,0.17,0.697-0.608,0.762-1.023C23.902,13.703,23.932,13.25,23.623,13.172z
M22.975,13.571c-0.006-0.167,0.047-0.354-0.018-0.514c-0.043-0.11-0.127-0.206-0.283-0.276c0.08-0.74,0.297-3.04,0.297-3.04
l0.047-0.004l0.238,3.491C23.1,13.306,23.027,13.441,22.975,13.571z"/>
</g>
</g>
<g id="Color_Fill_1_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M16.255,10.097c4.065-0.024,8.12-0.564,9.967-0.906
c0.336-0.062,0.641-0.119,0.92-0.173l-0.195-0.129c-0.225,0.04-0.465,0.084-0.725,0.132c-1.848,0.342-5.902,0.882-9.967,0.906
C11.354,9.955,6.443,9.417,5.441,9.277c-0.007,0.074,0.003,0.146,0,0.171C6.443,9.588,11.354,10.126,16.255,10.097z M28.016,9.594
c-0.48,0.102-1.111,0.243-1.893,0.426c-1.83,0.43-5.871,1.491-9.936,1.516c-4.901,0.029-9.786-1.119-10.781-1.304
c-0.274-0.051-0.506-0.09-0.698-0.12c-0.002,0.04-0.016,0.098-0.019,0.148c0.193,0.043,0.43,0.091,0.709,0.143
c0.995,0.185,5.888,1.334,10.789,1.305c4.065-0.024,8.114-1.086,9.944-1.516c0.863-0.202,1.541-0.37,2.035-0.498L28.016,9.594z"/>
</g>
</g>
<g id="Color_Fill_1_copy_7">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546265" d="M6.853,26.454c0.001,0.009,0.005,0.028,0.011,0.058
C6.859,26.493,6.856,26.473,6.853,26.454z M26.006,26.19c0-0.021-0.002-0.042-0.006-0.063c0-0.011-0.002-0.021-0.004-0.032
c-0.002-0.01-0.004-0.021-0.006-0.031c-0.006-0.021-0.012-0.041-0.018-0.061c-0.125-0.344-0.428-0.469-0.773-0.484
c-0.346-0.014-0.736,0.083-1.043,0.19c-0.209,0.074-0.447,0.096-0.6,0.24c-0.033,0.029-0.039,0.061-0.055,0.111
c0.023,0.051,0.045,0.103,0.068,0.154c0.107,0.016,0.264-0.106,0.377-0.152c0.422-0.169,1.676-0.514,1.822,0.084
c0.117,0.537-0.697,0.694-1.189,0.632c-0.279-0.034-1.162-0.271-2.518-0.487c-1.355-0.217-3.162-0.425-5.344-0.416
c-0.067,0-0.136,0-0.203,0c-0.069,0-0.136,0.001-0.203,0.002c-0.135,0.002-0.268,0.005-0.401,0.009
c-0.265,0.007-0.526,0.017-0.783,0.029c-0.513,0.025-1.008,0.061-1.483,0.102c-0.949,0.083-1.816,0.19-2.562,0.297
c-1.495,0.21-2.508,0.435-2.719,0.461c-0.503,0.07-1.146-0.163-1.26-0.585c-0.071-0.262,0.146-0.302,0.373-0.36
c0.626-0.158,1.281,0.267,1.778,0.396c0.054-0.111,0.083-0.15,0.043-0.277c-0.458-0.213-0.978-0.391-1.592-0.443
c-0.408-0.024-0.618,0-0.818,0.431c-0.01,0.021-0.019,0.043-0.026,0.065c-0.003,0.011-0.006,0.022-0.009,0.033
s-0.006,0.023-0.008,0.034c-0.004,0.023-0.008,0.047-0.01,0.07c-0.001,0.012-0.002,0.024-0.003,0.036
c0,0.012-0.001,0.024-0.001,0.036c-0.001,0.078,0.007,0.159,0.021,0.24c-0.017-0.13,0.4,1.525,0.691,2.823
c0.117,0.257,0.393,0.453,0.636,0.558c0.032,0.014,0.074,0.022,0.126,0.027c0.053,0.003,0.115,0.003,0.187-0.001
c0.144-0.01,0.327-0.035,0.546-0.07c0.439-0.072,1.023-0.187,1.73-0.308c1.417-0.242,3.317-0.509,5.58-0.507
c2.258,0.001,4.165,0.27,5.592,0.516c0.713,0.123,1.303,0.241,1.746,0.317c0.221,0.038,0.406,0.065,0.553,0.078
c0.072,0.006,0.135,0.008,0.189,0.006c0.025-0.001,0.049-0.003,0.07-0.006c0.012-0.001,0.021-0.003,0.029-0.006
c0.006-0.001,0.01-0.002,0.014-0.004c0.002,0,0.002-0.001,0.004-0.001c0,0,0.002,0,0.002,0c0,0,0.002,0,0.002,0
c0.002-0.001,0.004-0.001,0.006-0.002c0.299-0.109,0.582-0.297,0.725-0.593c0.084-0.175,0.135-0.396,0.188-0.619
c0.309-1.388,0.51-2.205,0.496-2.146c0.021-0.086,0.037-0.173,0.041-0.259C26.008,26.232,26.008,26.211,26.006,26.19z"/>
<path fill="#010101" d="M7.528,25.501c0.055,0,0.115,0.002,0.178,0.006c0.614,0.052,1.134,0.23,1.592,0.443
c0.04,0.126,0.011,0.166-0.043,0.277c-0.421-0.11-0.955-0.432-1.489-0.432c-0.096,0-0.193,0.011-0.289,0.035
c-0.227,0.058-0.444,0.098-0.373,0.36c0.101,0.372,0.612,0.597,1.076,0.597c0.063,0,0.124-0.004,0.184-0.012
c0.211-0.026,1.224-0.251,2.719-0.461c0.746-0.107,1.613-0.213,2.562-0.297c0.475-0.041,0.97-0.076,1.483-0.102
c0.257-0.012,0.518-0.022,0.783-0.029c0.133-0.003,0.267-0.007,0.401-0.009c0.067,0,0.134-0.001,0.203-0.002
c0.067,0,0.136,0,0.203,0c0.045,0,0.089,0,0.133,0c2.122,0,3.883,0.205,5.211,0.417c1.355,0.216,2.238,0.453,2.518,0.487
c0.068,0.009,0.141,0.013,0.215,0.013c0.48,0,1.076-0.181,0.975-0.645c-0.063-0.253-0.324-0.337-0.635-0.337
c-0.424,0-0.945,0.156-1.188,0.253c-0.105,0.043-0.252,0.153-0.357,0.153c-0.008,0-0.014,0-0.02-0.001
c-0.023-0.051-0.045-0.103-0.068-0.154c0.016-0.051,0.021-0.082,0.055-0.111c0.152-0.144,0.391-0.166,0.6-0.24
c0.287-0.1,0.646-0.191,0.975-0.191c0.023,0,0.047,0,0.068,0.001c0.346,0.015,0.648,0.14,0.773,0.484
c0.006,0.02,0.012,0.041,0.018,0.061c0.002,0.01,0.004,0.021,0.006,0.031C25.998,26.106,26,26.116,26,26.127
c0.004,0.021,0.006,0.042,0.006,0.063c0.002,0.021,0.002,0.042,0,0.064c-0.004,0.086-0.02,0.173-0.041,0.259
c0-0.002,0-0.003,0-0.003s-0.199,0.809-0.496,2.149c-0.053,0.223-0.104,0.444-0.188,0.619c-0.143,0.296-0.426,0.483-0.725,0.593
c-0.002,0.001-0.004,0.001-0.006,0.002c0,0-0.002,0-0.002,0c0,0-0.002,0-0.002,0c-0.002,0-0.002,0-0.004,0.001
c-0.004,0.001-0.008,0.003-0.014,0.004c-0.008,0.002-0.018,0.004-0.029,0.006c-0.021,0.003-0.045,0.005-0.07,0.006
c-0.014,0-0.027,0.001-0.043,0.001c-0.043,0-0.092-0.002-0.146-0.007c-0.146-0.012-0.332-0.04-0.553-0.078
c-0.443-0.076-1.033-0.194-1.746-0.317c-1.428-0.247-3.334-0.515-5.592-0.516c-0.007,0-0.014,0-0.021,0
c-2.253,0-4.146,0.266-5.559,0.507c-0.708,0.121-1.292,0.236-1.73,0.308c-0.219,0.036-0.402,0.061-0.546,0.07
c-0.041,0.002-0.078,0.004-0.112,0.004c-0.026,0-0.051-0.001-0.075-0.002c-0.052-0.004-0.094-0.013-0.126-0.027
c-0.243-0.104-0.519-0.301-0.636-0.558c-0.28-1.25-0.677-2.83-0.691-2.83c0,0,0,0.002,0,0.007
c-0.014-0.081-0.023-0.162-0.021-0.24c0-0.012,0-0.024,0.001-0.036c0.001-0.012,0.001-0.024,0.003-0.036
c0.002-0.023,0.005-0.047,0.01-0.07c0.002-0.011,0.005-0.023,0.008-0.034s0.006-0.022,0.009-0.033
c0.007-0.022,0.016-0.044,0.026-0.065C7.057,25.575,7.232,25.501,7.528,25.501 M6.853,26.454c0.003,0.02,0.007,0.039,0.011,0.058
C6.857,26.482,6.854,26.463,6.853,26.454 M7.528,25.264L7.528,25.264c-0.354,0-0.635,0.098-0.857,0.575
c-0.013,0.03-0.025,0.061-0.036,0.093c-0.004,0.015-0.009,0.031-0.013,0.046c-0.004,0.016-0.007,0.031-0.011,0.047
c-0.006,0.03-0.011,0.062-0.014,0.093c-0.001,0.015-0.003,0.031-0.003,0.046c-0.001,0.016-0.001,0.03-0.002,0.046
c-0.001,0.086,0.007,0.177,0.025,0.28c0.001,0.012,0.005,0.031,0.013,0.07l0.009-0.002c0.067,0.231,0.415,1.622,0.672,2.771
l0.005,0.024l0.01,0.022c0.124,0.273,0.407,0.527,0.758,0.678c0.056,0.024,0.123,0.039,0.203,0.045
c0.028,0.002,0.06,0.003,0.092,0.003c0.039,0,0.082-0.001,0.127-0.004c0.14-0.009,0.321-0.032,0.57-0.073
c0.222-0.037,0.476-0.083,0.77-0.137c0.286-0.053,0.61-0.112,0.962-0.172c1.266-0.216,3.215-0.503,5.519-0.503h0.021
c2.321,0.002,4.28,0.293,5.551,0.513c0.389,0.067,0.74,0.133,1.053,0.19c0.264,0.049,0.49,0.092,0.693,0.126
c0.256,0.043,0.434,0.068,0.574,0.081c0.063,0.005,0.117,0.007,0.166,0.007c0.02,0,0.035,0,0.053-0.001
c0.035-0.001,0.068-0.004,0.098-0.009c0.018-0.002,0.033-0.006,0.051-0.01c0.008-0.002,0.016-0.004,0.023-0.007l0.006-0.001
l0.002,0l0.004-0.001v0c0.002,0,0.004,0,0.006-0.001c0.002-0.001,0.006-0.002,0.01-0.004c0.406-0.148,0.703-0.395,0.857-0.713
c0.088-0.182,0.139-0.398,0.189-0.608l0.014-0.06l0.002-0.002v-0.002c0.115-0.521,0.293-1.309,0.482-2.094
c0.004-0.015,0.008-0.029,0.01-0.043l0,0c0.029-0.114,0.047-0.215,0.051-0.308c0.002-0.028,0.002-0.057,0-0.083
c0-0.029-0.004-0.058-0.008-0.085c-0.002-0.015-0.004-0.029-0.006-0.044c-0.004-0.014-0.006-0.028-0.01-0.042
c-0.006-0.031-0.016-0.06-0.025-0.087c-0.1-0.278-0.352-0.615-0.986-0.641c-0.025-0.001-0.051-0.001-0.078-0.001
c-0.389,0-0.787,0.111-1.053,0.205c-0.053,0.019-0.109,0.034-0.17,0.05c-0.17,0.045-0.361,0.097-0.514,0.239
c-0.08,0.073-0.102,0.156-0.117,0.21l-0.004,0.011l-0.021,0.081l0.031,0.078l0.057,0.126c-0.354-0.071-0.77-0.148-1.24-0.224
c-1.766-0.282-3.482-0.419-5.249-0.419c-0.044,0-0.088,0-0.133,0c-0.068,0-0.137,0-0.205,0.001c-0.069,0-0.137,0.001-0.205,0.002
c-0.131,0.002-0.266,0.004-0.403,0.009c-0.256,0.006-0.521,0.016-0.788,0.029c-0.482,0.023-0.984,0.058-1.492,0.103
c-0.837,0.073-1.704,0.173-2.575,0.298c-0.618,0.086-1.149,0.175-1.58,0.252l0.011-0.023c0.065-0.129,0.106-0.235,0.044-0.429
l-0.031-0.1l-0.095-0.044c-0.578-0.269-1.109-0.417-1.671-0.464l-0.003,0H7.721C7.641,25.266,7.582,25.264,7.528,25.264
L7.528,25.264z"/>
</g>
</g>
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1E2729" d="M18.379,26.451c-0.75,0-1.098,0.313-1.436,0.833
c-0.127,0.194-0.244,0.38-0.332,0.55c-0.096,0.184-0.14,0.11-0.086-0.043c0.105-0.299,0.289-0.544,0.446-0.881
c0.109-0.24,0.238-0.53,0.238-0.791c0-0.312-0.129-0.655-0.311-1.03c-0.174-0.364-0.42-0.497-0.585-0.954
c-0.165,0.458-0.411,0.59-0.585,0.954c-0.183,0.375-0.311,0.718-0.311,1.03c0,0.26,0.128,0.551,0.237,0.791
c0.155,0.333,0.335,0.576,0.441,0.869c0.057,0.156,0.012,0.241-0.087,0.056c-0.096-0.179-0.224-0.377-0.354-0.577
c-0.338-0.52-0.658-0.806-1.407-0.806c-0.512,0-0.914,0.541-0.914,1.124c0,0.494,0.236,1.017,0.525,1.311
c0.052,0.053,0.162,0.012,0.166-0.045c0.042-0.581,0.301-0.933,0.908-0.933c0.42,0,1.099,0.417,1.099,0.771
c-0.131,0-0.088,0.317,0,0.249c0.069,0,0.445,0,0.563,0c0.093,0,0.129-0.249,0-0.249c0-0.354,0.678-0.771,1.096-0.771
c0.598,0,0.857,0.341,0.906,0.903c0.006,0.067,0.133,0.114,0.191,0.051c0.279-0.298,0.502-0.807,0.502-1.287
C19.291,26.992,18.891,26.451,18.379,26.451z M16.074,29.437h0.503c0.08,0,0.144-0.097,0.144-0.216
c0-0.119-0.063-0.215-0.144-0.215h-0.503c-0.08,0-0.144,0.097-0.144,0.215C15.93,29.34,15.994,29.437,16.074,29.437z
M17.02,29.937c-0.201,0-0.379-0.003-0.375-0.28c0.033-0.073-0.09-0.179-0.16-0.167c-0.068,0.012-0.146,0.054-0.183,0.054
c-0.036,0-0.15-0.054-0.196-0.059c-0.045-0.006-0.171,0.103-0.122,0.172c0.002,0.276-0.225,0.275-0.449,0.275
c-0.317,0,0.206,0.397,0.381,0.216c0.14-0.143,0.233-0.154,0.232-0.348h0.02c0,0.175-0.016,0.223-0.09,0.35
c-0.034,0.059-0.054,0.127-0.032,0.189c0.099,0.284,0.394,0.333,0.498,0c0.019-0.062-0.006-0.146-0.028-0.208
c-0.047-0.129-0.058-0.129-0.057-0.33h0.017c-0.001,0.194,0.077,0.202,0.202,0.329C16.835,30.292,17.309,29.937,17.02,29.937z"/>
<path fill="#403C32" d="M16.313,24.134c0.165,0.458,0.411,0.59,0.585,0.954c0.182,0.375,0.311,0.718,0.311,1.03
c0,0.26-0.129,0.551-0.238,0.791c-0.157,0.337-0.341,0.582-0.446,0.881c-0.031,0.089-0.029,0.151-0.004,0.151
c0.019,0,0.05-0.031,0.09-0.108c0.088-0.169,0.205-0.355,0.332-0.55c0.338-0.52,0.686-0.833,1.436-0.833
c0.512,0,0.912,0.541,0.912,1.124c0,0.48-0.223,0.989-0.502,1.287c-0.02,0.021-0.047,0.029-0.074,0.029
c-0.055,0-0.113-0.036-0.117-0.081c-0.049-0.563-0.309-0.903-0.906-0.903c-0.418,0-1.096,0.417-1.096,0.771
c0.129,0,0.093,0.249,0,0.249c-0.119,0-0.494,0-0.563,0c-0.009,0.007-0.017,0.01-0.024,0.01c-0.071,0-0.094-0.259,0.024-0.259
c0-0.354-0.678-0.771-1.099-0.771c-0.606,0-0.866,0.353-0.908,0.933c-0.003,0.039-0.053,0.07-0.103,0.07
c-0.023,0-0.046-0.007-0.063-0.024c-0.289-0.294-0.525-0.817-0.525-1.311c0-0.583,0.402-1.124,0.914-1.124
c0.75,0,1.069,0.287,1.407,0.806c0.13,0.199,0.258,0.397,0.354,0.577c0.04,0.075,0.071,0.105,0.09,0.105
c0.029,0,0.031-0.068-0.003-0.161c-0.106-0.293-0.286-0.537-0.441-0.869c-0.109-0.24-0.237-0.53-0.237-0.791
c0-0.312,0.128-0.655,0.311-1.03C15.902,24.725,16.148,24.592,16.313,24.134 M16.577,29.005c0.08,0,0.144,0.097,0.144,0.215
c0,0.119-0.063,0.216-0.144,0.216h-0.503c-0.08,0-0.144-0.097-0.144-0.216c0-0.119,0.064-0.215,0.144-0.215H16.577 M16.102,29.484
c0.001,0,0.002,0,0.003,0c0.046,0.005,0.16,0.059,0.196,0.059c0.037,0,0.115-0.042,0.183-0.054c0.004,0,0.007,0,0.011,0
c0.07,0,0.18,0.099,0.148,0.167c-0.004,0.276,0.175,0.28,0.375,0.28c0.234,0-0.036,0.235-0.229,0.235
c-0.044,0-0.084-0.012-0.113-0.042c-0.125-0.127-0.203-0.135-0.202-0.329h-0.017c-0.001,0.201,0.01,0.201,0.057,0.33
c0.022,0.063,0.047,0.146,0.028,0.208c-0.05,0.16-0.144,0.232-0.239,0.232c-0.103,0-0.207-0.084-0.258-0.232
c-0.022-0.062-0.002-0.13,0.032-0.189c0.074-0.126,0.09-0.175,0.09-0.35h-0.02c0.001,0.194-0.092,0.206-0.232,0.348
c-0.032,0.034-0.077,0.047-0.125,0.047c-0.215,0-0.514-0.264-0.256-0.264c0.001,0,0.002,0,0.003,0c0.223,0,0.447,0,0.445-0.275
C15.935,29.59,16.053,29.484,16.102,29.484 M16.313,23.943C16.313,23.943,16.313,23.943,16.313,23.943
c-0.081,0-0.152,0.051-0.179,0.126c-0.084,0.232-0.19,0.371-0.304,0.517c-0.094,0.121-0.19,0.245-0.274,0.42
c-0.153,0.313-0.329,0.724-0.329,1.111c0,0.149,0.034,0.302,0.084,0.452c-0.261-0.201-0.587-0.31-1.063-0.31
c-0.598,0-1.104,0.601-1.104,1.313c0,0.512,0.233,1.092,0.58,1.444c0.051,0.053,0.123,0.082,0.199,0.082
c0.154,0,0.282-0.108,0.292-0.247c0.039-0.53,0.253-0.756,0.718-0.756c0.321,0,0.78,0.294,0.885,0.501
c-0.006,0.009-0.012,0.018-0.017,0.028c-0.035,0.064-0.043,0.134-0.043,0.18c0,0.069,0.015,0.131,0.04,0.181
c-0.037,0.066-0.059,0.146-0.059,0.233c0,0.102,0.029,0.194,0.078,0.264c-0.001,0.002-0.002,0.004-0.003,0.006
c-0.034,0.065-0.041,0.136-0.023,0.199c-0.002,0.019-0.007,0.025-0.007,0.025c-0.024,0.027-0.18,0.027-0.247,0.027h-0.003
c-0.067,0-0.121,0.012-0.167,0.036c-0.077,0.042-0.124,0.118-0.124,0.203c0,0.223,0.331,0.404,0.546,0.404
c0.023,0,0.047-0.002,0.069-0.005c0.002,0.007,0.005,0.014,0.007,0.021c0.076,0.218,0.248,0.36,0.438,0.36
c0.192,0,0.35-0.137,0.42-0.366c0.005-0.013,0.008-0.024,0.01-0.037c0.02,0.002,0.038,0.004,0.057,0.004
c0.201,0,0.51-0.164,0.51-0.382c0-0.084-0.047-0.159-0.123-0.2c-0.043-0.023-0.096-0.034-0.158-0.034
c-0.052,0-0.149,0-0.176-0.015c-0.002-0.005-0.008-0.019-0.008-0.049c0.011-0.056,0.004-0.115-0.022-0.171
c0.062-0.073,0.099-0.176,0.099-0.291c0-0.102-0.029-0.195-0.08-0.265c0.024-0.05,0.037-0.107,0.037-0.169
c0-0.068-0.018-0.131-0.052-0.182c-0.002-0.003-0.005-0.007-0.008-0.011c0.11-0.206,0.564-0.496,0.882-0.496
c0.459,0,0.672,0.218,0.717,0.729c0.012,0.143,0.146,0.254,0.307,0.254c0.082,0,0.158-0.032,0.213-0.089
c0.332-0.355,0.555-0.924,0.555-1.417c0-0.712-0.506-1.313-1.104-1.313c-0.467,0-0.801,0.116-1.066,0.316
c0.051-0.153,0.086-0.308,0.086-0.459c0-0.388-0.176-0.799-0.33-1.113c-0.083-0.173-0.179-0.298-0.272-0.418
c-0.113-0.146-0.221-0.285-0.305-0.517C16.464,23.994,16.394,23.943,16.313,23.943L16.313,23.943z"/>
</g>
</g>
<g id="ITALY_copy_5">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E7D19E" d="M11.995,28.606c-0.05,0-0.086-0.003-0.109-0.008
c-0.042-0.009-0.07-0.023-0.088-0.044c-0.018-0.021-0.03-0.048-0.036-0.081c-0.082-0.457-0.163-0.913-0.245-1.369
c-0.005-0.032-0.004-0.061,0.005-0.088c0.01-0.027,0.034-0.05,0.074-0.068c0.031-0.014,0.07-0.028,0.118-0.04
c0.047-0.013,0.086-0.022,0.118-0.03c-0.006-0.036-0.012-0.07-0.018-0.106c-0.423,0.063-0.845,0.133-1.265,0.212
c0.007,0.035,0.015,0.07,0.022,0.105c0.037-0.003,0.082-0.004,0.134-0.004c0.051,0,0.091,0.002,0.119,0.007
c0.043,0.007,0.074,0.021,0.093,0.042s0.031,0.047,0.037,0.078c0.091,0.456,0.181,0.911,0.272,1.367
c0.007,0.034,0.006,0.063-0.003,0.088s-0.031,0.047-0.065,0.068c-0.018,0.01-0.054,0.022-0.105,0.036s-0.092,0.024-0.118,0.03
c0.008,0.036,0.015,0.07,0.022,0.106c0.393-0.074,0.787-0.14,1.182-0.199c-0.006-0.036-0.012-0.071-0.018-0.106
C12.087,28.605,12.045,28.606,11.995,28.606z M12.533,26.673c0.026,0.185,0.053,0.371,0.079,0.556
c0.041-0.005,0.083-0.01,0.124-0.015c0.021-0.087,0.062-0.183,0.122-0.286c0.061-0.104,0.122-0.163,0.183-0.177
c0.034-0.008,0.076-0.016,0.126-0.023c0.05-0.008,0.093-0.014,0.129-0.018c0.026-0.003,0.051-0.005,0.076-0.008
c0.059,0.514,0.117,1.028,0.176,1.543c0.003,0.034,0,0.064-0.01,0.09c-0.01,0.026-0.034,0.049-0.072,0.067
c-0.019,0.009-0.054,0.02-0.107,0.03c-0.052,0.011-0.093,0.02-0.122,0.025c0.004,0.036,0.009,0.071,0.014,0.107
c0.398-0.044,0.797-0.081,1.197-0.11c-0.002-0.036-0.006-0.071-0.009-0.107c-0.035-0.001-0.077-0.004-0.127-0.009
c-0.05-0.005-0.087-0.01-0.111-0.017c-0.04-0.011-0.068-0.029-0.083-0.053c-0.016-0.024-0.025-0.053-0.029-0.086
c-0.047-0.511-0.095-1.021-0.144-1.532c0.025-0.002,0.051-0.004,0.076-0.006c0.037-0.003,0.08-0.005,0.131-0.006
c0.051-0.001,0.093-0.001,0.128,0c0.063,0.003,0.135,0.049,0.216,0.14s0.14,0.177,0.179,0.258
c0.041-0.002,0.083-0.005,0.125-0.007c-0.013-0.187-0.025-0.373-0.037-0.56C14.017,26.511,13.273,26.58,12.533,26.673z
M17.391,28.223c-0.037-0.021-0.066-0.043-0.086-0.066c-0.02-0.022-0.035-0.048-0.049-0.076c-0.078-0.17-0.172-0.385-0.285-0.644
c-0.114-0.259-0.274-0.611-0.491-1.053c-0.109,0-0.217,0.002-0.327,0.004c-0.146,0.315-0.276,0.605-0.39,0.869
c-0.114,0.263-0.225,0.527-0.332,0.79c-0.018,0.045-0.04,0.084-0.068,0.118c-0.027,0.033-0.062,0.062-0.102,0.086
c-0.023,0.015-0.057,0.027-0.098,0.037c-0.042,0.01-0.079,0.017-0.113,0.021c0.002,0.036,0.005,0.071,0.007,0.107
c0.294-0.016,0.589-0.027,0.884-0.034l-0.003-0.108c-0.115-0.006-0.198-0.019-0.248-0.038c-0.05-0.019-0.076-0.043-0.077-0.073
c0-0.009,0-0.025,0.003-0.048c0.003-0.023,0.013-0.061,0.03-0.113c0.014-0.04,0.03-0.085,0.049-0.137
c0.02-0.051,0.037-0.096,0.054-0.134c0.253-0.008,0.508-0.012,0.761-0.014c0.064,0.134,0.127,0.27,0.189,0.405
c0.007,0.016,0.012,0.028,0.014,0.037c0,0.01,0.002,0.018,0.002,0.025c0,0.021-0.037,0.039-0.111,0.054
c-0.074,0.015-0.139,0.024-0.193,0.028c0.001,0.036,0.001,0.071,0.001,0.107c0.392-0.004,0.783,0,1.175,0.011
c0-0.036,0.002-0.072,0.002-0.108c-0.029-0.003-0.064-0.008-0.102-0.017S17.42,28.238,17.391,28.223z M15.81,27.59
c0.098-0.239,0.198-0.478,0.301-0.716c0.114,0.234,0.227,0.469,0.335,0.704C16.234,27.581,16.022,27.584,15.81,27.59z
M19.666,28.113c-0.064,0.08-0.125,0.141-0.18,0.183c-0.037,0.026-0.094,0.041-0.172,0.042c-0.076,0.002-0.156,0-0.236-0.005
c-0.084-0.006-0.148-0.013-0.195-0.021c-0.049-0.008-0.084-0.022-0.109-0.041c-0.025-0.019-0.041-0.045-0.047-0.081
c-0.008-0.036-0.01-0.083-0.004-0.144c0.029-0.429,0.061-0.858,0.092-1.287c0.002-0.033,0.01-0.061,0.027-0.085
c0.016-0.024,0.045-0.041,0.088-0.05c0.035-0.007,0.076-0.011,0.123-0.013c0.047-0.002,0.088-0.003,0.123-0.003
c0.002-0.036,0.006-0.071,0.008-0.107c-0.42-0.031-0.842-0.054-1.266-0.069c0,0.036-0.002,0.072-0.004,0.108
c0.029,0.004,0.066,0.012,0.113,0.021c0.045,0.01,0.086,0.021,0.119,0.036c0.043,0.02,0.07,0.04,0.082,0.062
c0.01,0.022,0.014,0.05,0.014,0.083c-0.023,0.461-0.049,0.921-0.072,1.381c-0.002,0.036-0.01,0.065-0.025,0.087
c-0.016,0.022-0.041,0.04-0.078,0.05c-0.018,0.005-0.047,0.01-0.096,0.014s-0.09,0.007-0.127,0.009
c0,0.035-0.002,0.071-0.004,0.107c0.662,0.023,1.324,0.068,1.982,0.134c0.037-0.207,0.074-0.414,0.113-0.621
c-0.039-0.003-0.076-0.007-0.113-0.011C19.781,27.96,19.729,28.033,19.666,28.113z M22.014,26.831
c-0.008,0.036-0.014,0.071-0.02,0.106c0.1,0.021,0.17,0.042,0.211,0.067c0.041,0.023,0.059,0.051,0.053,0.082
c-0.004,0.024-0.055,0.084-0.15,0.18c-0.096,0.096-0.268,0.264-0.512,0.507c-0.07-0.154-0.135-0.288-0.186-0.401
c-0.053-0.113-0.092-0.202-0.119-0.266c-0.029-0.069-0.049-0.119-0.061-0.151c-0.01-0.033-0.016-0.054-0.014-0.063
c0.004-0.02,0.027-0.033,0.07-0.039s0.125-0.001,0.244,0.013c0.006-0.036,0.012-0.071,0.018-0.106
c-0.438-0.064-0.875-0.119-1.313-0.165c-0.004,0.036-0.01,0.071-0.014,0.107c0.033,0.005,0.07,0.014,0.111,0.026
c0.039,0.012,0.074,0.026,0.102,0.043c0.035,0.023,0.07,0.052,0.104,0.087c0.031,0.035,0.064,0.08,0.094,0.134
c0.055,0.105,0.115,0.218,0.174,0.337c0.061,0.12,0.123,0.248,0.184,0.381c0.021,0.047,0.039,0.085,0.053,0.114
c0.014,0.03,0.021,0.053,0.027,0.072c0.004,0.016,0.004,0.036,0.002,0.059c-0.004,0.023-0.006,0.049-0.012,0.08
c-0.018,0.114-0.035,0.228-0.051,0.342c-0.008,0.035-0.018,0.063-0.035,0.085S20.93,28.5,20.889,28.51
c-0.021,0.004-0.061,0.006-0.113,0.004c-0.055-0.001-0.096-0.003-0.123-0.005c-0.006,0.036-0.012,0.072-0.016,0.107
c0.396,0.05,0.795,0.108,1.189,0.174c0.008-0.035,0.014-0.071,0.021-0.106c-0.027-0.006-0.066-0.019-0.119-0.039
s-0.088-0.034-0.105-0.042c-0.035-0.021-0.057-0.045-0.066-0.072c-0.01-0.026-0.012-0.057-0.006-0.089
c0.016-0.091,0.031-0.183,0.049-0.274c0.018-0.103,0.035-0.173,0.057-0.212c0.02-0.04,0.064-0.093,0.135-0.162
c0.109-0.108,0.211-0.206,0.305-0.294c0.094-0.089,0.184-0.17,0.27-0.245c0.041-0.036,0.082-0.067,0.125-0.096
c0.043-0.027,0.09-0.048,0.139-0.062c0.033-0.009,0.064-0.015,0.098-0.018c0.033-0.002,0.07-0.001,0.109,0.002
c0.008-0.035,0.014-0.071,0.023-0.106C22.576,26.925,22.295,26.876,22.014,26.831z"/>
</g>
</g>
<g id="Shape_50">
<g>
<rect x="10.283" y="21.101" fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" width="3.878" height="1.899"/>
</g>
</g>
<g id="Shape_50_copy">
<g>
<rect x="18.336" y="21.101" fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" width="3.879" height="1.899"/>
</g>
</g>
<g id="Shape_16_copy_3">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M11.466,4.709h1.688V4.684c-0.029-0.244-0.238-0.434-0.49-0.434
h-1.252c-0.273,0-0.494,0.222-0.494,0.494v1.07c0,0.272,0.221,0.494,0.494,0.494h1.252c0.256,0,0.466-0.193,0.491-0.442V5.841
h-1.688V4.709z M15.352,5.051h-1.311V4.695h1.76c-0.025-0.25-0.236-0.445-0.492-0.445h-1.275c-0.273,0-0.495,0.222-0.495,0.494
v0.307c0.024,0.25,0.235,0.445,0.491,0.445l1.309-0.001v0.368h-1.797c0.024,0.25,0.235,0.445,0.492,0.445h1.313
c0.272,0,0.494-0.221,0.494-0.494V5.495C15.818,5.246,15.607,5.051,15.352,5.051z M21.396,4.232h-1.285
c-0.26,0-0.473,0.213-0.473,0.474v1.111c0,0.261,0.213,0.473,0.473,0.473h1.285c0.262,0,0.473-0.212,0.473-0.473V4.706
C21.869,4.445,21.658,4.232,21.396,4.232z M21.428,5.909H20.08V4.616h1.348V5.909z M17.816,5.3c0.1,0.125,0.252,0.135,0.295,0.135
h0.686v0.449h-1.439V4.631h1.877c-0.035-0.228-0.232-0.398-0.467-0.398h-1.373c-0.262,0-0.475,0.213-0.475,0.474v1.111
c0,0.261,0.213,0.473,0.475,0.473h1.373c0.244,0,0.447-0.182,0.471-0.42V5.091h-1.523C17.721,5.131,17.742,5.205,17.816,5.3z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_1_copy_11">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B7E4F3" d="M24.301,3.451c0-0.21,0.016-0.418,0.045-0.622
c-2.285-0.262-5.189-0.505-8.087-0.505c-2.799,0-5.593,0.231-7.817,0.486c0.032,0.21,0.048,0.423,0.048,0.641
c0,2.339-1.883,5.392-4.394,5.863c-0.218,18.099,9.518,20.474,12.248,21.57c2.79-1.112,12.473-3.473,12.249-21.591
C26.133,8.789,24.301,5.759,24.301,3.451z"/>
</g>
</g>
<g id="Shape_49">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8ED7F0" d="M25.977,11.356c0,0-1.965-0.625-4.014-0.362
c1.383-1.472,1.979-3.224,1.979-3.224S21.83,7.986,20.07,9.135c0.703-1.968,0.502-3.922,0.502-3.922s-1.883,1.121-2.967,2.986
c-0.176-2.158-1.252-3.934-1.252-3.934s-1.048,1.593-1.318,3.566c-1.019-1.715-2.508-2.787-2.508-2.787s-0.339,1.893,0.195,3.832
C11.09,7.691,9.264,7.289,9.264,7.289s0.442,1.906,1.721,3.497c-2.009-0.437-3.907-0.063-3.907-0.063s1.193,1.606,3.043,2.561
c-1.043,0.217-1.98,0.617-2.655,0.96c-0.67,0.34,4.028,4.094,4.028,4.094l10.246,0.061c0,0,4.326-3.195,3.654-3.629
c-0.666-0.43-1.588-0.935-2.613-1.242C24.693,12.741,25.977,11.356,25.977,11.356z"/>
</g>
</g>
<g id="Shape_1_copy_16">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546265" d="M25.064,2.685c0-0.223,0.016-0.442,0.049-0.658
c-2.504-0.277-5.766-0.535-8.861-0.535c-2.99,0-6.131,0.245-8.569,0.514c0.035,0.222,0.053,0.449,0.053,0.679
c0,2.476-1.697,5.706-4.355,6.205C3.152,28.042,13.454,30.556,16.343,31.716c2.954-1.176,13.2-3.675,12.961-22.848
C26.701,8.334,25.064,5.127,25.064,2.685z M16.343,30.557C13.713,29.5,4.246,27.123,4.456,9.689
c2.815-1.091,4.486-4.294,4.64-6.726c2.143-0.246,4.47-0.4,7.166-0.4c2.792,0,5.233,0.201,7.434,0.453
c0.041,1.635,1.449,5.509,4.563,6.673C28.475,27.141,19.031,29.486,16.343,30.557z"/>
</g>
</g>
<g id="Shape_1_copy_17">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M24.178,3.492c0-0.21,0.016-0.417,0.045-0.62
c-2.25-0.261-5.109-0.504-7.962-0.504c-2.757,0-5.508,0.23-7.698,0.484c0.031,0.209,0.047,0.423,0.047,0.64
c0,2.332-1.973,5.375-4.476,5.845c-0.217,18.043,9.488,20.411,12.21,21.504c2.782-1.108,12.434-3.462,12.209-21.524
C26.102,8.813,24.178,5.792,24.178,3.492z M16.343,29.748C13.866,28.753,4.948,26.514,5.145,10.09
C7.797,9.063,9.498,6.045,9.64,3.754c1.982-0.231,4.118-0.376,6.627-0.376c2.598,0,4.838,0.188,6.875,0.426
c0.039,1.541,1.49,5.189,4.424,6.287C27.77,26.53,18.875,28.739,16.343,29.748z"/>
</g>
</g>
<g id="Shape_1_copy_18">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M24.336,3.248c0-0.213-0.033-0.424-0.004-0.63
c-2.281-0.266-5.133-0.514-8.075-0.514c-2.843,0-5.583,0.235-7.803,0.493c0.032,0.213-0.001,0.431-0.001,0.651
c0,2.376-1.997,5.475-4.547,5.954c-0.221,18.377,9.665,20.79,12.437,21.903c2.833-1.129,12.665-3.526,12.436-21.923
C26.283,8.668,24.336,5.591,24.336,3.248z M16.343,29.992C13.82,28.979,4.736,26.697,4.937,9.969
c2.702-1.047,4.38-4.12,4.526-6.454c2.034-0.235,4.243-0.384,6.802-0.384c2.651,0,4.967,0.192,7.055,0.434
c0.041,1.569,1.467,5.286,4.455,6.403C27.982,26.714,18.922,28.964,16.343,29.992z"/>
</g>
</g>
<g id="Shape_34_copy_2">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8D917E" d="M8.557,17.673c0.099,0.448,0.238,1.016,0.414,1.576
c0.356,1.135,0.885,2.236,0.885,2.236H23.32c0,0,0.59-1.083,0.941-2.208c0.174-0.556,0.297-1.122,0.379-1.572L8.557,17.673z"/>
</g>
</g>
<g id="Shape_1_copy_14_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8B5A0" d="M20.621,21.167l-8.446,0.034c0,0-4.904,0.537-3.575,2.596
c0.276,0.428,0.562,0.823,0.854,1.188c2.553,3.192,5.573,3.951,6.889,4.479c1.524-0.607,5.12-1.479,7.809-5.789
C25.658,21.262,20.621,21.167,20.621,21.167z"/>
</g>
</g>
<g id="Shape_1_copy_15">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" d="M5.51,12.764c0.436,5.998,1.993,9.782,3.944,12.221
c1.49-2.05,2.721-3.783,2.721-3.783s0.035-6.002,0.002-6.014C8.556,13.895,5.51,12.764,5.51,12.764z M20.629,15.471
c-0.039,0.014-0.008,5.696-0.008,5.696s1.004,1.587,2.531,3.919c1.945-2.419,3.49-6.206,3.986-12.276
C27.139,12.81,21.289,15.239,20.629,15.471z"/>
</g>
</g>
<g id="Shape_31_copy_2">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#242424" points="19.725,12.614 19.953,11.828 19.301,11.323 18.381,8.32
14.339,8.313 13.482,11.259 12.822,11.775 13.082,12.633 12.544,14.485 13.484,14.512 19.283,14.348 20.297,14.485 "/>
</g>
</g>
<g id="Shape_28_copy_8">
<g>
<rect x="14.702" y="9.106" fill-rule="evenodd" clip-rule="evenodd" fill="#C0B391" width="3.367" height="17.031"/>
</g>
</g>
<g id="Shape_28_copy_8_1_">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" points="13.339,13.905 13.339,21.058 14.734,26.137
14.734,9.106 "/>
</g>
</g>
<g id="Shape_28_copy_8_2_">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" points="18.014,9.106 18.014,26.137 19.408,21.165
19.408,13.601 "/>
</g>
</g>
<g id="Shape_29_copy_4">
<g>
<rect x="15.944" y="16.968" fill-rule="evenodd" clip-rule="evenodd" fill="#30281F" width="1.021" height="1.902"/>
</g>
</g>
<g id="Shape_32_copy_7">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#30281F" d="M17.215,12.494c-0.02-0.383-0.354-0.688-0.763-0.688
c-0.409,0-0.743,0.305-0.763,0.688h-0.001v1.744h1.527V12.494L17.215,12.494z"/>
</g>
</g>
<g id="Color_Fill_2">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M23.623,13.172c-0.063-0.016-0.125-0.014-0.186,0
c-0.094-1.051-0.307-3.618-0.307-3.618s-0.016-0.167-0.133-0.165c-0.098,0.002-0.117,0.119-0.117,0.119L22.5,12.709
c-0.102-0.023-0.205-0.02-0.299,0.026c-0.285,0.143-0.16,0.58-0.008,0.971c0.135,0.353,0.365,0.987,0.807,0.895
c-0.043,0.234-0.068,0.497,0.078,0.54c0.594,0.17,0.697-0.608,0.762-1.023C23.902,13.703,23.932,13.25,23.623,13.172z
M22.975,13.571c-0.006-0.167,0.047-0.354-0.018-0.514c-0.043-0.11-0.127-0.206-0.283-0.276c0.08-0.74,0.297-3.04,0.297-3.04
l0.047-0.004l0.238,3.491C23.1,13.306,23.027,13.441,22.975,13.571z"/>
</g>
</g>
<g id="Color_Fill_1_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M16.255,10.097c4.065-0.024,8.12-0.564,9.967-0.906
c0.336-0.062,0.641-0.119,0.92-0.173l-0.195-0.129c-0.225,0.04-0.465,0.084-0.725,0.132c-1.848,0.342-5.902,0.882-9.967,0.906
C11.354,9.955,6.443,9.417,5.441,9.277c-0.007,0.074,0.003,0.146,0,0.171C6.443,9.588,11.354,10.126,16.255,10.097z M28.016,9.594
c-0.48,0.102-1.111,0.243-1.893,0.426c-1.83,0.43-5.871,1.491-9.936,1.516c-4.901,0.029-9.786-1.119-10.781-1.304
c-0.274-0.051-0.506-0.09-0.698-0.12c-0.002,0.04-0.016,0.098-0.019,0.148c0.193,0.043,0.43,0.091,0.709,0.143
c0.995,0.185,5.888,1.334,10.789,1.305c4.065-0.024,8.114-1.086,9.944-1.516c0.863-0.202,1.541-0.37,2.035-0.498L28.016,9.594z"/>
</g>
</g>
<g id="Color_Fill_1_copy_7">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546265" d="M6.853,26.454c0.001,0.009,0.005,0.028,0.011,0.058
C6.859,26.493,6.856,26.473,6.853,26.454z M26.006,26.19c0-0.021-0.002-0.042-0.006-0.063c0-0.011-0.002-0.021-0.004-0.032
c-0.002-0.01-0.004-0.021-0.006-0.031c-0.006-0.021-0.012-0.041-0.018-0.061c-0.125-0.344-0.428-0.469-0.773-0.484
c-0.346-0.014-0.736,0.083-1.043,0.19c-0.209,0.074-0.447,0.096-0.6,0.24c-0.033,0.029-0.039,0.061-0.055,0.111
c0.023,0.051,0.045,0.103,0.068,0.154c0.107,0.016,0.264-0.106,0.377-0.152c0.422-0.169,1.676-0.514,1.822,0.084
c0.117,0.537-0.697,0.694-1.189,0.632c-0.279-0.034-1.162-0.271-2.518-0.487c-1.355-0.217-3.162-0.425-5.344-0.416
c-0.067,0-0.136,0-0.203,0c-0.069,0-0.136,0.001-0.203,0.002c-0.135,0.002-0.268,0.005-0.401,0.009
c-0.265,0.007-0.526,0.017-0.783,0.029c-0.513,0.025-1.008,0.061-1.483,0.102c-0.949,0.083-1.816,0.19-2.562,0.297
c-1.495,0.21-2.508,0.435-2.719,0.461c-0.503,0.07-1.146-0.163-1.26-0.585c-0.071-0.262,0.146-0.302,0.373-0.36
c0.626-0.158,1.281,0.267,1.778,0.396c0.054-0.111,0.083-0.15,0.043-0.277c-0.458-0.213-0.978-0.391-1.592-0.443
c-0.408-0.024-0.618,0-0.818,0.431c-0.01,0.021-0.019,0.043-0.026,0.065c-0.003,0.011-0.006,0.022-0.009,0.033
s-0.006,0.023-0.008,0.034c-0.004,0.023-0.008,0.047-0.01,0.07c-0.001,0.012-0.002,0.024-0.003,0.036
c0,0.012-0.001,0.024-0.001,0.036c-0.001,0.078,0.007,0.159,0.021,0.24c-0.017-0.13,0.4,1.525,0.691,2.823
c0.117,0.257,0.393,0.453,0.636,0.558c0.032,0.014,0.074,0.022,0.126,0.027c0.053,0.003,0.115,0.003,0.187-0.001
c0.144-0.01,0.327-0.035,0.546-0.07c0.439-0.072,1.023-0.187,1.73-0.308c1.417-0.242,3.317-0.509,5.58-0.507
c2.258,0.001,4.165,0.27,5.592,0.516c0.713,0.123,1.303,0.241,1.746,0.317c0.221,0.038,0.406,0.065,0.553,0.078
c0.072,0.006,0.135,0.008,0.189,0.006c0.025-0.001,0.049-0.003,0.07-0.006c0.012-0.001,0.021-0.003,0.029-0.006
c0.006-0.001,0.01-0.002,0.014-0.004c0.002,0,0.002-0.001,0.004-0.001c0,0,0.002,0,0.002,0c0,0,0.002,0,0.002,0
c0.002-0.001,0.004-0.001,0.006-0.002c0.299-0.109,0.582-0.297,0.725-0.593c0.084-0.175,0.135-0.396,0.188-0.619
c0.309-1.388,0.51-2.205,0.496-2.146c0.021-0.086,0.037-0.173,0.041-0.259C26.008,26.232,26.008,26.211,26.006,26.19z"/>
<path fill="#010101" d="M7.528,25.501c0.055,0,0.115,0.002,0.178,0.006c0.614,0.052,1.134,0.23,1.592,0.443
c0.04,0.126,0.011,0.166-0.043,0.277c-0.421-0.11-0.955-0.432-1.489-0.432c-0.096,0-0.193,0.011-0.289,0.035
c-0.227,0.058-0.444,0.098-0.373,0.36c0.101,0.372,0.612,0.597,1.076,0.597c0.063,0,0.124-0.004,0.184-0.012
c0.211-0.026,1.224-0.251,2.719-0.461c0.746-0.107,1.613-0.213,2.562-0.297c0.475-0.041,0.97-0.076,1.483-0.102
c0.257-0.012,0.518-0.022,0.783-0.029c0.133-0.003,0.267-0.007,0.401-0.009c0.067,0,0.134-0.001,0.203-0.002
c0.067,0,0.136,0,0.203,0c0.045,0,0.089,0,0.133,0c2.122,0,3.883,0.205,5.211,0.417c1.355,0.216,2.238,0.453,2.518,0.487
c0.068,0.009,0.141,0.013,0.215,0.013c0.48,0,1.076-0.181,0.975-0.645c-0.063-0.253-0.324-0.337-0.635-0.337
c-0.424,0-0.945,0.156-1.188,0.253c-0.105,0.043-0.252,0.153-0.357,0.153c-0.008,0-0.014,0-0.02-0.001
c-0.023-0.051-0.045-0.103-0.068-0.154c0.016-0.051,0.021-0.082,0.055-0.111c0.152-0.144,0.391-0.166,0.6-0.24
c0.287-0.1,0.646-0.191,0.975-0.191c0.023,0,0.047,0,0.068,0.001c0.346,0.015,0.648,0.14,0.773,0.484
c0.006,0.02,0.012,0.041,0.018,0.061c0.002,0.01,0.004,0.021,0.006,0.031C25.998,26.106,26,26.116,26,26.127
c0.004,0.021,0.006,0.042,0.006,0.063c0.002,0.021,0.002,0.042,0,0.064c-0.004,0.086-0.02,0.173-0.041,0.259
c0-0.002,0-0.003,0-0.003s-0.199,0.809-0.496,2.149c-0.053,0.223-0.104,0.444-0.188,0.619c-0.143,0.296-0.426,0.483-0.725,0.593
c-0.002,0.001-0.004,0.001-0.006,0.002c0,0-0.002,0-0.002,0c0,0-0.002,0-0.002,0c-0.002,0-0.002,0-0.004,0.001
c-0.004,0.001-0.008,0.003-0.014,0.004c-0.008,0.002-0.018,0.004-0.029,0.006c-0.021,0.003-0.045,0.005-0.07,0.006
c-0.014,0-0.027,0.001-0.043,0.001c-0.043,0-0.092-0.002-0.146-0.007c-0.146-0.012-0.332-0.04-0.553-0.078
c-0.443-0.076-1.033-0.194-1.746-0.317c-1.428-0.247-3.334-0.515-5.592-0.516c-0.007,0-0.014,0-0.021,0
c-2.253,0-4.146,0.266-5.559,0.507c-0.708,0.121-1.292,0.236-1.73,0.308c-0.219,0.036-0.402,0.061-0.546,0.07
c-0.041,0.002-0.078,0.004-0.112,0.004c-0.026,0-0.051-0.001-0.075-0.002c-0.052-0.004-0.094-0.013-0.126-0.027
c-0.243-0.104-0.519-0.301-0.636-0.558c-0.28-1.25-0.677-2.83-0.691-2.83c0,0,0,0.002,0,0.007
c-0.014-0.081-0.023-0.162-0.021-0.24c0-0.012,0-0.024,0.001-0.036c0.001-0.012,0.001-0.024,0.003-0.036
c0.002-0.023,0.005-0.047,0.01-0.07c0.002-0.011,0.005-0.023,0.008-0.034s0.006-0.022,0.009-0.033
c0.007-0.022,0.016-0.044,0.026-0.065C7.057,25.575,7.232,25.501,7.528,25.501 M6.853,26.454c0.003,0.02,0.007,0.039,0.011,0.058
C6.857,26.482,6.854,26.463,6.853,26.454 M7.528,25.264L7.528,25.264c-0.354,0-0.635,0.098-0.857,0.575
c-0.013,0.03-0.025,0.061-0.036,0.093c-0.004,0.015-0.009,0.031-0.013,0.046c-0.004,0.016-0.007,0.031-0.011,0.047
c-0.006,0.03-0.011,0.062-0.014,0.093c-0.001,0.015-0.003,0.031-0.003,0.046c-0.001,0.016-0.001,0.03-0.002,0.046
c-0.001,0.086,0.007,0.177,0.025,0.28c0.001,0.012,0.005,0.031,0.013,0.07l0.009-0.002c0.067,0.231,0.415,1.622,0.672,2.771
l0.005,0.024l0.01,0.022c0.124,0.273,0.407,0.527,0.758,0.678c0.056,0.024,0.123,0.039,0.203,0.045
c0.028,0.002,0.06,0.003,0.092,0.003c0.039,0,0.082-0.001,0.127-0.004c0.14-0.009,0.321-0.032,0.57-0.073
c0.222-0.037,0.476-0.083,0.77-0.137c0.286-0.053,0.61-0.112,0.962-0.172c1.266-0.216,3.215-0.503,5.519-0.503h0.021
c2.321,0.002,4.28,0.293,5.551,0.513c0.389,0.067,0.74,0.133,1.053,0.19c0.264,0.049,0.49,0.092,0.693,0.126
c0.256,0.043,0.434,0.068,0.574,0.081c0.063,0.005,0.117,0.007,0.166,0.007c0.02,0,0.035,0,0.053-0.001
c0.035-0.001,0.068-0.004,0.098-0.009c0.018-0.002,0.033-0.006,0.051-0.01c0.008-0.002,0.016-0.004,0.023-0.007l0.006-0.001
l0.002,0l0.004-0.001v0c0.002,0,0.004,0,0.006-0.001c0.002-0.001,0.006-0.002,0.01-0.004c0.406-0.148,0.703-0.395,0.857-0.713
c0.088-0.182,0.139-0.398,0.189-0.608l0.014-0.06l0.002-0.002v-0.002c0.115-0.521,0.293-1.309,0.482-2.094
c0.004-0.015,0.008-0.029,0.01-0.043l0,0c0.029-0.114,0.047-0.215,0.051-0.308c0.002-0.028,0.002-0.057,0-0.083
c0-0.029-0.004-0.058-0.008-0.085c-0.002-0.015-0.004-0.029-0.006-0.044c-0.004-0.014-0.006-0.028-0.01-0.042
c-0.006-0.031-0.016-0.06-0.025-0.087c-0.1-0.278-0.352-0.615-0.986-0.641c-0.025-0.001-0.051-0.001-0.078-0.001
c-0.389,0-0.787,0.111-1.053,0.205c-0.053,0.019-0.109,0.034-0.17,0.05c-0.17,0.045-0.361,0.097-0.514,0.239
c-0.08,0.073-0.102,0.156-0.117,0.21l-0.004,0.011l-0.021,0.081l0.031,0.078l0.057,0.126c-0.354-0.071-0.77-0.148-1.24-0.224
c-1.766-0.282-3.482-0.419-5.249-0.419c-0.044,0-0.088,0-0.133,0c-0.068,0-0.137,0-0.205,0.001c-0.069,0-0.137,0.001-0.205,0.002
c-0.131,0.002-0.266,0.004-0.403,0.009c-0.256,0.006-0.521,0.016-0.788,0.029c-0.482,0.023-0.984,0.058-1.492,0.103
c-0.837,0.073-1.704,0.173-2.575,0.298c-0.618,0.086-1.149,0.175-1.58,0.252l0.011-0.023c0.065-0.129,0.106-0.235,0.044-0.429
l-0.031-0.1l-0.095-0.044c-0.578-0.269-1.109-0.417-1.671-0.464l-0.003,0H7.721C7.641,25.266,7.582,25.264,7.528,25.264
L7.528,25.264z"/>
</g>
</g>
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1E2729" d="M18.379,26.451c-0.75,0-1.098,0.313-1.436,0.833
c-0.127,0.194-0.244,0.38-0.332,0.55c-0.096,0.184-0.14,0.11-0.086-0.043c0.105-0.299,0.289-0.544,0.446-0.881
c0.109-0.24,0.238-0.53,0.238-0.791c0-0.312-0.129-0.655-0.311-1.03c-0.174-0.364-0.42-0.497-0.585-0.954
c-0.165,0.458-0.411,0.59-0.585,0.954c-0.183,0.375-0.311,0.718-0.311,1.03c0,0.26,0.128,0.551,0.237,0.791
c0.155,0.333,0.335,0.576,0.441,0.869c0.057,0.156,0.012,0.241-0.087,0.056c-0.096-0.179-0.224-0.377-0.354-0.577
c-0.338-0.52-0.658-0.806-1.407-0.806c-0.512,0-0.914,0.541-0.914,1.124c0,0.494,0.236,1.017,0.525,1.311
c0.052,0.053,0.162,0.012,0.166-0.045c0.042-0.581,0.301-0.933,0.908-0.933c0.42,0,1.099,0.417,1.099,0.771
c-0.131,0-0.088,0.317,0,0.249c0.069,0,0.445,0,0.563,0c0.093,0,0.129-0.249,0-0.249c0-0.354,0.678-0.771,1.096-0.771
c0.598,0,0.857,0.341,0.906,0.903c0.006,0.067,0.133,0.114,0.191,0.051c0.279-0.298,0.502-0.807,0.502-1.287
C19.291,26.992,18.891,26.451,18.379,26.451z M16.074,29.437h0.503c0.08,0,0.144-0.097,0.144-0.216
c0-0.119-0.063-0.215-0.144-0.215h-0.503c-0.08,0-0.144,0.097-0.144,0.215C15.93,29.34,15.994,29.437,16.074,29.437z
M17.02,29.937c-0.201,0-0.379-0.003-0.375-0.28c0.033-0.073-0.09-0.179-0.16-0.167c-0.068,0.012-0.146,0.054-0.183,0.054
c-0.036,0-0.15-0.054-0.196-0.059c-0.045-0.006-0.171,0.103-0.122,0.172c0.002,0.276-0.225,0.275-0.449,0.275
c-0.317,0,0.206,0.397,0.381,0.216c0.14-0.143,0.233-0.154,0.232-0.348h0.02c0,0.175-0.016,0.223-0.09,0.35
c-0.034,0.059-0.054,0.127-0.032,0.189c0.099,0.284,0.394,0.333,0.498,0c0.019-0.062-0.006-0.146-0.028-0.208
c-0.047-0.129-0.058-0.129-0.057-0.33h0.017c-0.001,0.194,0.077,0.202,0.202,0.329C16.835,30.292,17.309,29.937,17.02,29.937z"/>
<path fill="#403C32" d="M16.313,24.134c0.165,0.458,0.411,0.59,0.585,0.954c0.182,0.375,0.311,0.718,0.311,1.03
c0,0.26-0.129,0.551-0.238,0.791c-0.157,0.337-0.341,0.582-0.446,0.881c-0.031,0.089-0.029,0.151-0.004,0.151
c0.019,0,0.05-0.031,0.09-0.108c0.088-0.169,0.205-0.355,0.332-0.55c0.338-0.52,0.686-0.833,1.436-0.833
c0.512,0,0.912,0.541,0.912,1.124c0,0.48-0.223,0.989-0.502,1.287c-0.02,0.021-0.047,0.029-0.074,0.029
c-0.055,0-0.113-0.036-0.117-0.081c-0.049-0.563-0.309-0.903-0.906-0.903c-0.418,0-1.096,0.417-1.096,0.771
c0.129,0,0.093,0.249,0,0.249c-0.119,0-0.494,0-0.563,0c-0.009,0.007-0.017,0.01-0.024,0.01c-0.071,0-0.094-0.259,0.024-0.259
c0-0.354-0.678-0.771-1.099-0.771c-0.606,0-0.866,0.353-0.908,0.933c-0.003,0.039-0.053,0.07-0.103,0.07
c-0.023,0-0.046-0.007-0.063-0.024c-0.289-0.294-0.525-0.817-0.525-1.311c0-0.583,0.402-1.124,0.914-1.124
c0.75,0,1.069,0.287,1.407,0.806c0.13,0.199,0.258,0.397,0.354,0.577c0.04,0.075,0.071,0.105,0.09,0.105
c0.029,0,0.031-0.068-0.003-0.161c-0.106-0.293-0.286-0.537-0.441-0.869c-0.109-0.24-0.237-0.53-0.237-0.791
c0-0.312,0.128-0.655,0.311-1.03C15.902,24.725,16.148,24.592,16.313,24.134 M16.577,29.005c0.08,0,0.144,0.097,0.144,0.215
c0,0.119-0.063,0.216-0.144,0.216h-0.503c-0.08,0-0.144-0.097-0.144-0.216c0-0.119,0.064-0.215,0.144-0.215H16.577 M16.102,29.484
c0.001,0,0.002,0,0.003,0c0.046,0.005,0.16,0.059,0.196,0.059c0.037,0,0.115-0.042,0.183-0.054c0.004,0,0.007,0,0.011,0
c0.07,0,0.18,0.099,0.148,0.167c-0.004,0.276,0.175,0.28,0.375,0.28c0.234,0-0.036,0.235-0.229,0.235
c-0.044,0-0.084-0.012-0.113-0.042c-0.125-0.127-0.203-0.135-0.202-0.329h-0.017c-0.001,0.201,0.01,0.201,0.057,0.33
c0.022,0.063,0.047,0.146,0.028,0.208c-0.05,0.16-0.144,0.232-0.239,0.232c-0.103,0-0.207-0.084-0.258-0.232
c-0.022-0.062-0.002-0.13,0.032-0.189c0.074-0.126,0.09-0.175,0.09-0.35h-0.02c0.001,0.194-0.092,0.206-0.232,0.348
c-0.032,0.034-0.077,0.047-0.125,0.047c-0.215,0-0.514-0.264-0.256-0.264c0.001,0,0.002,0,0.003,0c0.223,0,0.447,0,0.445-0.275
C15.935,29.59,16.053,29.484,16.102,29.484 M16.313,23.943C16.313,23.943,16.313,23.943,16.313,23.943
c-0.081,0-0.152,0.051-0.179,0.126c-0.084,0.232-0.19,0.371-0.304,0.517c-0.094,0.121-0.19,0.245-0.274,0.42
c-0.153,0.313-0.329,0.724-0.329,1.111c0,0.149,0.034,0.302,0.084,0.452c-0.261-0.201-0.587-0.31-1.063-0.31
c-0.598,0-1.104,0.601-1.104,1.313c0,0.512,0.233,1.092,0.58,1.444c0.051,0.053,0.123,0.082,0.199,0.082
c0.154,0,0.282-0.108,0.292-0.247c0.039-0.53,0.253-0.756,0.718-0.756c0.321,0,0.78,0.294,0.885,0.501
c-0.006,0.009-0.012,0.018-0.017,0.028c-0.035,0.064-0.043,0.134-0.043,0.18c0,0.069,0.015,0.131,0.04,0.181
c-0.037,0.066-0.059,0.146-0.059,0.233c0,0.102,0.029,0.194,0.078,0.264c-0.001,0.002-0.002,0.004-0.003,0.006
c-0.034,0.065-0.041,0.136-0.023,0.199c-0.002,0.019-0.007,0.025-0.007,0.025c-0.024,0.027-0.18,0.027-0.247,0.027h-0.003
c-0.067,0-0.121,0.012-0.167,0.036c-0.077,0.042-0.124,0.118-0.124,0.203c0,0.223,0.331,0.404,0.546,0.404
c0.023,0,0.047-0.002,0.069-0.005c0.002,0.007,0.005,0.014,0.007,0.021c0.076,0.218,0.248,0.36,0.438,0.36
c0.192,0,0.35-0.137,0.42-0.366c0.005-0.013,0.008-0.024,0.01-0.037c0.02,0.002,0.038,0.004,0.057,0.004
c0.201,0,0.51-0.164,0.51-0.382c0-0.084-0.047-0.159-0.123-0.2c-0.043-0.023-0.096-0.034-0.158-0.034
c-0.052,0-0.149,0-0.176-0.015c-0.002-0.005-0.008-0.019-0.008-0.049c0.011-0.056,0.004-0.115-0.022-0.171
c0.062-0.073,0.099-0.176,0.099-0.291c0-0.102-0.029-0.195-0.08-0.265c0.024-0.05,0.037-0.107,0.037-0.169
c0-0.068-0.018-0.131-0.052-0.182c-0.002-0.003-0.005-0.007-0.008-0.011c0.11-0.206,0.564-0.496,0.882-0.496
c0.459,0,0.672,0.218,0.717,0.729c0.012,0.143,0.146,0.254,0.307,0.254c0.082,0,0.158-0.032,0.213-0.089
c0.332-0.355,0.555-0.924,0.555-1.417c0-0.712-0.506-1.313-1.104-1.313c-0.467,0-0.801,0.116-1.066,0.316
c0.051-0.153,0.086-0.308,0.086-0.459c0-0.388-0.176-0.799-0.33-1.113c-0.083-0.173-0.179-0.298-0.272-0.418
c-0.113-0.146-0.221-0.285-0.305-0.517C16.464,23.994,16.394,23.943,16.313,23.943L16.313,23.943z"/>
</g>
</g>
<g id="ITALY_copy_5">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E7D19E" d="M11.995,28.606c-0.05,0-0.086-0.003-0.109-0.008
c-0.042-0.009-0.07-0.023-0.088-0.044c-0.018-0.021-0.03-0.048-0.036-0.081c-0.082-0.457-0.163-0.913-0.245-1.369
c-0.005-0.032-0.004-0.061,0.005-0.088c0.01-0.027,0.034-0.05,0.074-0.068c0.031-0.014,0.07-0.028,0.118-0.04
c0.047-0.013,0.086-0.022,0.118-0.03c-0.006-0.036-0.012-0.07-0.018-0.106c-0.423,0.063-0.845,0.133-1.265,0.212
c0.007,0.035,0.015,0.07,0.022,0.105c0.037-0.003,0.082-0.004,0.134-0.004c0.051,0,0.091,0.002,0.119,0.007
c0.043,0.007,0.074,0.021,0.093,0.042s0.031,0.047,0.037,0.078c0.091,0.456,0.181,0.911,0.272,1.367
c0.007,0.034,0.006,0.063-0.003,0.088s-0.031,0.047-0.065,0.068c-0.018,0.01-0.054,0.022-0.105,0.036s-0.092,0.024-0.118,0.03
c0.008,0.036,0.015,0.07,0.022,0.106c0.393-0.074,0.787-0.14,1.182-0.199c-0.006-0.036-0.012-0.071-0.018-0.106
C12.087,28.605,12.045,28.606,11.995,28.606z M12.533,26.673c0.026,0.185,0.053,0.371,0.079,0.556
c0.041-0.005,0.083-0.01,0.124-0.015c0.021-0.087,0.062-0.183,0.122-0.286c0.061-0.104,0.122-0.163,0.183-0.177
c0.034-0.008,0.076-0.016,0.126-0.023c0.05-0.008,0.093-0.014,0.129-0.018c0.026-0.003,0.051-0.005,0.076-0.008
c0.059,0.514,0.117,1.028,0.176,1.543c0.003,0.034,0,0.064-0.01,0.09c-0.01,0.026-0.034,0.049-0.072,0.067
c-0.019,0.009-0.054,0.02-0.107,0.03c-0.052,0.011-0.093,0.02-0.122,0.025c0.004,0.036,0.009,0.071,0.014,0.107
c0.398-0.044,0.797-0.081,1.197-0.11c-0.002-0.036-0.006-0.071-0.009-0.107c-0.035-0.001-0.077-0.004-0.127-0.009
c-0.05-0.005-0.087-0.01-0.111-0.017c-0.04-0.011-0.068-0.029-0.083-0.053c-0.016-0.024-0.025-0.053-0.029-0.086
c-0.047-0.511-0.095-1.021-0.144-1.532c0.025-0.002,0.051-0.004,0.076-0.006c0.037-0.003,0.08-0.005,0.131-0.006
c0.051-0.001,0.093-0.001,0.128,0c0.063,0.003,0.135,0.049,0.216,0.14s0.14,0.177,0.179,0.258
c0.041-0.002,0.083-0.005,0.125-0.007c-0.013-0.187-0.025-0.373-0.037-0.56C14.017,26.511,13.273,26.58,12.533,26.673z
M17.391,28.223c-0.037-0.021-0.066-0.043-0.086-0.066c-0.02-0.022-0.035-0.048-0.049-0.076c-0.078-0.17-0.172-0.385-0.285-0.644
c-0.114-0.259-0.274-0.611-0.491-1.053c-0.109,0-0.217,0.002-0.327,0.004c-0.146,0.315-0.276,0.605-0.39,0.869
c-0.114,0.263-0.225,0.527-0.332,0.79c-0.018,0.045-0.04,0.084-0.068,0.118c-0.027,0.033-0.062,0.062-0.102,0.086
c-0.023,0.015-0.057,0.027-0.098,0.037c-0.042,0.01-0.079,0.017-0.113,0.021c0.002,0.036,0.005,0.071,0.007,0.107
c0.294-0.016,0.589-0.027,0.884-0.034l-0.003-0.108c-0.115-0.006-0.198-0.019-0.248-0.038c-0.05-0.019-0.076-0.043-0.077-0.073
c0-0.009,0-0.025,0.003-0.048c0.003-0.023,0.013-0.061,0.03-0.113c0.014-0.04,0.03-0.085,0.049-0.137
c0.02-0.051,0.037-0.096,0.054-0.134c0.253-0.008,0.508-0.012,0.761-0.014c0.064,0.134,0.127,0.27,0.189,0.405
c0.007,0.016,0.012,0.028,0.014,0.037c0,0.01,0.002,0.018,0.002,0.025c0,0.021-0.037,0.039-0.111,0.054
c-0.074,0.015-0.139,0.024-0.193,0.028c0.001,0.036,0.001,0.071,0.001,0.107c0.392-0.004,0.783,0,1.175,0.011
c0-0.036,0.002-0.072,0.002-0.108c-0.029-0.003-0.064-0.008-0.102-0.017S17.42,28.238,17.391,28.223z M15.81,27.59
c0.098-0.239,0.198-0.478,0.301-0.716c0.114,0.234,0.227,0.469,0.335,0.704C16.234,27.581,16.022,27.584,15.81,27.59z
M19.666,28.113c-0.064,0.08-0.125,0.141-0.18,0.183c-0.037,0.026-0.094,0.041-0.172,0.042c-0.076,0.002-0.156,0-0.236-0.005
c-0.084-0.006-0.148-0.013-0.195-0.021c-0.049-0.008-0.084-0.022-0.109-0.041c-0.025-0.019-0.041-0.045-0.047-0.081
c-0.008-0.036-0.01-0.083-0.004-0.144c0.029-0.429,0.061-0.858,0.092-1.287c0.002-0.033,0.01-0.061,0.027-0.085
c0.016-0.024,0.045-0.041,0.088-0.05c0.035-0.007,0.076-0.011,0.123-0.013c0.047-0.002,0.088-0.003,0.123-0.003
c0.002-0.036,0.006-0.071,0.008-0.107c-0.42-0.031-0.842-0.054-1.266-0.069c0,0.036-0.002,0.072-0.004,0.108
c0.029,0.004,0.066,0.012,0.113,0.021c0.045,0.01,0.086,0.021,0.119,0.036c0.043,0.02,0.07,0.04,0.082,0.062
c0.01,0.022,0.014,0.05,0.014,0.083c-0.023,0.461-0.049,0.921-0.072,1.381c-0.002,0.036-0.01,0.065-0.025,0.087
c-0.016,0.022-0.041,0.04-0.078,0.05c-0.018,0.005-0.047,0.01-0.096,0.014s-0.09,0.007-0.127,0.009
c0,0.035-0.002,0.071-0.004,0.107c0.662,0.023,1.324,0.068,1.982,0.134c0.037-0.207,0.074-0.414,0.113-0.621
c-0.039-0.003-0.076-0.007-0.113-0.011C19.781,27.96,19.729,28.033,19.666,28.113z M22.014,26.831
c-0.008,0.036-0.014,0.071-0.02,0.106c0.1,0.021,0.17,0.042,0.211,0.067c0.041,0.023,0.059,0.051,0.053,0.082
c-0.004,0.024-0.055,0.084-0.15,0.18c-0.096,0.096-0.268,0.264-0.512,0.507c-0.07-0.154-0.135-0.288-0.186-0.401
c-0.053-0.113-0.092-0.202-0.119-0.266c-0.029-0.069-0.049-0.119-0.061-0.151c-0.01-0.033-0.016-0.054-0.014-0.063
c0.004-0.02,0.027-0.033,0.07-0.039s0.125-0.001,0.244,0.013c0.006-0.036,0.012-0.071,0.018-0.106
c-0.438-0.064-0.875-0.119-1.313-0.165c-0.004,0.036-0.01,0.071-0.014,0.107c0.033,0.005,0.07,0.014,0.111,0.026
c0.039,0.012,0.074,0.026,0.102,0.043c0.035,0.023,0.07,0.052,0.104,0.087c0.031,0.035,0.064,0.08,0.094,0.134
c0.055,0.105,0.115,0.218,0.174,0.337c0.061,0.12,0.123,0.248,0.184,0.381c0.021,0.047,0.039,0.085,0.053,0.114
c0.014,0.03,0.021,0.053,0.027,0.072c0.004,0.016,0.004,0.036,0.002,0.059c-0.004,0.023-0.006,0.049-0.012,0.08
c-0.018,0.114-0.035,0.228-0.051,0.342c-0.008,0.035-0.018,0.063-0.035,0.085S20.93,28.5,20.889,28.51
c-0.021,0.004-0.061,0.006-0.113,0.004c-0.055-0.001-0.096-0.003-0.123-0.005c-0.006,0.036-0.012,0.072-0.016,0.107
c0.396,0.05,0.795,0.108,1.189,0.174c0.008-0.035,0.014-0.071,0.021-0.106c-0.027-0.006-0.066-0.019-0.119-0.039
s-0.088-0.034-0.105-0.042c-0.035-0.021-0.057-0.045-0.066-0.072c-0.01-0.026-0.012-0.057-0.006-0.089
c0.016-0.091,0.031-0.183,0.049-0.274c0.018-0.103,0.035-0.173,0.057-0.212c0.02-0.04,0.064-0.093,0.135-0.162
c0.109-0.108,0.211-0.206,0.305-0.294c0.094-0.089,0.184-0.17,0.27-0.245c0.041-0.036,0.082-0.067,0.125-0.096
c0.043-0.027,0.09-0.048,0.139-0.062c0.033-0.009,0.064-0.015,0.098-0.018c0.033-0.002,0.07-0.001,0.109,0.002
c0.008-0.035,0.014-0.071,0.023-0.106C22.576,26.925,22.295,26.876,22.014,26.831z"/>
</g>
</g>
<g id="Shape_50">
<g>
<rect x="10.283" y="21.101" fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" width="3.878" height="1.899"/>
</g>
</g>
<g id="Shape_50_copy">
<g>
<rect x="18.336" y="21.101" fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" width="3.879" height="1.899"/>
</g>
</g>
<g id="Shape_16_copy_3">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M11.466,4.709h1.688V4.684c-0.029-0.244-0.238-0.434-0.49-0.434
h-1.252c-0.273,0-0.494,0.222-0.494,0.494v1.07c0,0.272,0.221,0.494,0.494,0.494h1.252c0.256,0,0.466-0.193,0.491-0.442V5.841
h-1.688V4.709z M15.352,5.051h-1.311V4.695h1.76c-0.025-0.25-0.236-0.445-0.492-0.445h-1.275c-0.273,0-0.495,0.222-0.495,0.494
v0.307c0.024,0.25,0.235,0.445,0.491,0.445l1.309-0.001v0.368h-1.797c0.024,0.25,0.235,0.445,0.492,0.445h1.313
c0.272,0,0.494-0.221,0.494-0.494V5.495C15.818,5.246,15.607,5.051,15.352,5.051z M21.396,4.232h-1.285
c-0.26,0-0.473,0.213-0.473,0.474v1.111c0,0.261,0.213,0.473,0.473,0.473h1.285c0.262,0,0.473-0.212,0.473-0.473V4.706
C21.869,4.445,21.658,4.232,21.396,4.232z M21.428,5.909H20.08V4.616h1.348V5.909z M17.816,5.3c0.1,0.125,0.252,0.135,0.295,0.135
h0.686v0.449h-1.439V4.631h1.877c-0.035-0.228-0.232-0.398-0.467-0.398h-1.373c-0.262,0-0.475,0.213-0.475,0.474v1.111
c0,0.261,0.213,0.473,0.475,0.473h1.373c0.244,0,0.447-0.182,0.471-0.42V5.091h-1.523C17.721,5.131,17.742,5.205,17.816,5.3z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

@@ -1,90 +1,90 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_39">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1C2115" d="M29.976,0.65H2.36C1.958,9.97,2.7,27.451,16.169,31.48
C29.636,27.452,30.374,9.842,29.976,0.65z"/>
</g>
</g>
<g id="Shape_39_copy">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E78025" d="M29.664,0.969H2.674c-0.38,9.15,0.386,26.266,13.495,30.179
C29.277,27.235,30.037,9.994,29.664,0.969z"/>
</g>
</g>
<g id="Shape_39_copy_4">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A29D59" d="M28.411,2.316H3.925c-0.32,8.361,0.433,23.67,12.244,27.184
C27.979,25.987,28.728,10.564,28.411,2.316z"/>
</g>
</g>
<g id="Shape_6">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#7E8044" points="16.182,4.546 4.419,9.883 4.723,14.393 16.182,9.066
27.639,14.393 28.027,10.113 "/>
</g>
</g>
<g id="Shape_6_copy">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#7E8044" d="M16.182,10.86l-11.38,5.21c0,0,0.794,3.202,1.563,3.873
c3.17-1.474,9.816-4.563,9.816-4.563s6.297,2.928,9.554,4.443c1.048-1.496,1.545-3.735,1.545-3.735L16.182,10.86z"/>
</g>
</g>
<g id="Shape_20_2_">
<g>
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#A29D59" cx="16.229" cy="14.45" r="5.112"/>
</g>
</g>
<g id="Shape_19">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#272E28" d="M20.277,14.44c0-2.251-1.825-4.076-4.076-4.076
s-4.076,1.825-4.076,4.076c0,2.005,1.448,3.672,3.356,4.013l-0.234,4.2l-1.152,0.002v0.321l1.13-0.003l-0.475,6.258l0.874-0.002
l0.191-6.257l0.794-0.002l0.209,6.257l0.872-0.002l-0.493-6.256l0.959-0.002l0.005-0.321l-0.985,0.002l-0.234-4.2
C18.84,18.1,20.277,16.438,20.277,14.44z M15.825,22.651l0.005-0.176l0.221-3.962c0.05,0.001,0.1,0.003,0.15,0.003
c0.057,0,0.115-0.001,0.171-0.004l0.22,3.95l0.007,0.188L15.825,22.651z M16.065,18.242l0.146-2.627l0.146,2.625
c-0.052,0.003-0.104,0.004-0.156,0.004C16.155,18.244,16.11,18.243,16.065,18.242z M16.928,18.174l-0.238-4.269l-0.478,0.027
l-0.479-0.027l-0.238,4.273c-1.764-0.331-3.099-1.879-3.099-3.739c0-2.102,1.704-3.805,3.805-3.805s3.805,1.703,3.805,3.805
C20.006,16.293,18.681,17.836,16.928,18.174z M15.624,29.23l1.194-0.002v0L15.624,29.23L15.624,29.23z"/>
</g>
</g>
<g id="Shape_18_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#272E28" d="M15.629,13.096l-1.918-4.019l-1.29,0.607l2.824,3.708
L15.629,13.096z M15.183,13.399l-3.381-2.917l-0.915,1.082l4.07,2.264L15.183,13.399z M14.723,14.46l-4.401,0.154l0.102,1.409
l4.435-1.094L14.723,14.46z M17.718,14.569l4.358-0.12l-0.057-1.407l-4.431,1.057L17.718,14.569z M17.634,13.994l3.97-1.799
L21,10.904l-3.668,2.702L17.634,13.994z M18.271,9.002l-1.356-0.486l-0.583,4.563l0.488,0.061L18.271,9.002z M16.225,13.004
L16.014,8.59l-1.437,0.052l1.174,4.485L16.225,13.004z M14.86,13.87l-4.19-1.486l-0.438,1.343l4.579,0.626L14.86,13.87z
M16.851,15.866l1.832,3.911l1.266-0.581l-2.712-3.622L16.851,15.866z M17.261,15.576l3.271,2.861l0.919-1.043l-3.96-2.242
L17.261,15.576z M17.626,14.63l-0.056,0.481l4.099,1.486l0.468-1.315L17.626,14.63z M16.251,15.961l0.173,4.289l1.401-0.05
l-1.104-4.358L16.251,15.961z M15.142,15.479l-2.814,3.253l1.093,0.901l2.157-3.925L15.142,15.479z M14.829,15.035l-3.947,1.824
l0.64,1.263l3.613-2.704L14.829,15.035z M17.202,14.457c-0.005-0.544-0.455-0.989-1.004-0.992
c-0.55-0.002-0.989,0.438-0.981,0.984c0.007,0.544,0.457,0.986,1.004,0.988C16.769,15.438,17.207,15,17.202,14.457z M14.25,19.887
l1.339,0.446l0.533-4.445l-0.486-0.056L14.25,19.887z M17.31,13.5l2.882-3.277l-1.083-0.946l-2.231,3.988L17.31,13.5z"/>
</g>
</g>
<g id="Shape_39_copy_2">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1C2115" d="M28.833,1.868H3.504c-0.341,8.622,0.411,24.51,12.665,28.16
C28.42,26.378,29.169,10.372,28.833,1.868z M16.169,29.101C4.768,25.715,4.018,10.85,4.317,2.734H28.02
C28.315,10.741,27.567,25.715,16.169,29.101z"/>
</g>
</g>
<text transform="matrix(1 0 0 1 6.4873 7.2632)" fill="#F5E8B0" font-family="'BritannicBold'" font-size="5.1856">MILITIA</text>
<g id="Color_Fill_1_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EFEEEE" d="M20.645,8.273h0.796V8.261c-0.013-0.117-0.111-0.208-0.23-0.208
h-0.592c-0.129,0-0.233,0.106-0.233,0.237v0.512c0,0.131,0.104,0.236,0.233,0.236h0.592c0.121,0,0.22-0.092,0.232-0.211V8.815
h-0.798V8.273z M22.48,8.437h-0.619v-0.17h0.832c-0.013-0.119-0.112-0.213-0.233-0.213h-0.603c-0.129,0-0.233,0.106-0.233,0.237
v0.146c0.011,0.12,0.111,0.214,0.232,0.214l0.618,0v0.176h-0.85c0.011,0.12,0.111,0.213,0.232,0.213h0.62
c0.13,0,0.233-0.105,0.233-0.236V8.649C22.701,8.53,22.601,8.437,22.48,8.437z M25.337,8.044h-0.607
c-0.122,0-0.224,0.103-0.224,0.227v0.532c0,0.125,0.102,0.227,0.224,0.227h0.607c0.124,0,0.224-0.102,0.224-0.227V8.271
C25.561,8.147,25.461,8.044,25.337,8.044z M25.353,8.848h-0.637V8.229h0.637V8.848z M24.315,8.236
c-0.018-0.11-0.111-0.191-0.221-0.191h-0.649c-0.124,0-0.224,0.103-0.224,0.227v0.532c0,0.125,0.1,0.227,0.224,0.227h0.649
c0.115,0,0.21-0.087,0.221-0.201V8.456h-0.719c0.002,0.02,0.012,0.055,0.049,0.1c0.046,0.061,0.118,0.065,0.139,0.065h0.325v0.216
h-0.682v-0.6H24.315z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_39">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1C2115" d="M29.976,0.65H2.36C1.958,9.97,2.7,27.451,16.169,31.48
C29.636,27.452,30.374,9.842,29.976,0.65z"/>
</g>
</g>
<g id="Shape_39_copy">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E78025" d="M29.664,0.969H2.674c-0.38,9.15,0.386,26.266,13.495,30.179
C29.277,27.235,30.037,9.994,29.664,0.969z"/>
</g>
</g>
<g id="Shape_39_copy_4">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A29D59" d="M28.411,2.316H3.925c-0.32,8.361,0.433,23.67,12.244,27.184
C27.979,25.987,28.728,10.564,28.411,2.316z"/>
</g>
</g>
<g id="Shape_6">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#7E8044" points="16.182,4.546 4.419,9.883 4.723,14.393 16.182,9.066
27.639,14.393 28.027,10.113 "/>
</g>
</g>
<g id="Shape_6_copy">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#7E8044" d="M16.182,10.86l-11.38,5.21c0,0,0.794,3.202,1.563,3.873
c3.17-1.474,9.816-4.563,9.816-4.563s6.297,2.928,9.554,4.443c1.048-1.496,1.545-3.735,1.545-3.735L16.182,10.86z"/>
</g>
</g>
<g id="Shape_20_2_">
<g>
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#A29D59" cx="16.229" cy="14.45" r="5.112"/>
</g>
</g>
<g id="Shape_19">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#272E28" d="M20.277,14.44c0-2.251-1.825-4.076-4.076-4.076
s-4.076,1.825-4.076,4.076c0,2.005,1.448,3.672,3.356,4.013l-0.234,4.2l-1.152,0.002v0.321l1.13-0.003l-0.475,6.258l0.874-0.002
l0.191-6.257l0.794-0.002l0.209,6.257l0.872-0.002l-0.493-6.256l0.959-0.002l0.005-0.321l-0.985,0.002l-0.234-4.2
C18.84,18.1,20.277,16.438,20.277,14.44z M15.825,22.651l0.005-0.176l0.221-3.962c0.05,0.001,0.1,0.003,0.15,0.003
c0.057,0,0.115-0.001,0.171-0.004l0.22,3.95l0.007,0.188L15.825,22.651z M16.065,18.242l0.146-2.627l0.146,2.625
c-0.052,0.003-0.104,0.004-0.156,0.004C16.155,18.244,16.11,18.243,16.065,18.242z M16.928,18.174l-0.238-4.269l-0.478,0.027
l-0.479-0.027l-0.238,4.273c-1.764-0.331-3.099-1.879-3.099-3.739c0-2.102,1.704-3.805,3.805-3.805s3.805,1.703,3.805,3.805
C20.006,16.293,18.681,17.836,16.928,18.174z M15.624,29.23l1.194-0.002v0L15.624,29.23L15.624,29.23z"/>
</g>
</g>
<g id="Shape_18_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#272E28" d="M15.629,13.096l-1.918-4.019l-1.29,0.607l2.824,3.708
L15.629,13.096z M15.183,13.399l-3.381-2.917l-0.915,1.082l4.07,2.264L15.183,13.399z M14.723,14.46l-4.401,0.154l0.102,1.409
l4.435-1.094L14.723,14.46z M17.718,14.569l4.358-0.12l-0.057-1.407l-4.431,1.057L17.718,14.569z M17.634,13.994l3.97-1.799
L21,10.904l-3.668,2.702L17.634,13.994z M18.271,9.002l-1.356-0.486l-0.583,4.563l0.488,0.061L18.271,9.002z M16.225,13.004
L16.014,8.59l-1.437,0.052l1.174,4.485L16.225,13.004z M14.86,13.87l-4.19-1.486l-0.438,1.343l4.579,0.626L14.86,13.87z
M16.851,15.866l1.832,3.911l1.266-0.581l-2.712-3.622L16.851,15.866z M17.261,15.576l3.271,2.861l0.919-1.043l-3.96-2.242
L17.261,15.576z M17.626,14.63l-0.056,0.481l4.099,1.486l0.468-1.315L17.626,14.63z M16.251,15.961l0.173,4.289l1.401-0.05
l-1.104-4.358L16.251,15.961z M15.142,15.479l-2.814,3.253l1.093,0.901l2.157-3.925L15.142,15.479z M14.829,15.035l-3.947,1.824
l0.64,1.263l3.613-2.704L14.829,15.035z M17.202,14.457c-0.005-0.544-0.455-0.989-1.004-0.992
c-0.55-0.002-0.989,0.438-0.981,0.984c0.007,0.544,0.457,0.986,1.004,0.988C16.769,15.438,17.207,15,17.202,14.457z M14.25,19.887
l1.339,0.446l0.533-4.445l-0.486-0.056L14.25,19.887z M17.31,13.5l2.882-3.277l-1.083-0.946l-2.231,3.988L17.31,13.5z"/>
</g>
</g>
<g id="Shape_39_copy_2">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1C2115" d="M28.833,1.868H3.504c-0.341,8.622,0.411,24.51,12.665,28.16
C28.42,26.378,29.169,10.372,28.833,1.868z M16.169,29.101C4.768,25.715,4.018,10.85,4.317,2.734H28.02
C28.315,10.741,27.567,25.715,16.169,29.101z"/>
</g>
</g>
<text transform="matrix(1 0 0 1 6.4873 7.2632)" fill="#F5E8B0" font-family="'BritannicBold'" font-size="5.1856">MILITIA</text>
<g id="Color_Fill_1_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EFEEEE" d="M20.645,8.273h0.796V8.261c-0.013-0.117-0.111-0.208-0.23-0.208
h-0.592c-0.129,0-0.233,0.106-0.233,0.237v0.512c0,0.131,0.104,0.236,0.233,0.236h0.592c0.121,0,0.22-0.092,0.232-0.211V8.815
h-0.798V8.273z M22.48,8.437h-0.619v-0.17h0.832c-0.013-0.119-0.112-0.213-0.233-0.213h-0.603c-0.129,0-0.233,0.106-0.233,0.237
v0.146c0.011,0.12,0.111,0.214,0.232,0.214l0.618,0v0.176h-0.85c0.011,0.12,0.111,0.213,0.232,0.213h0.62
c0.13,0,0.233-0.105,0.233-0.236V8.649C22.701,8.53,22.601,8.437,22.48,8.437z M25.337,8.044h-0.607
c-0.122,0-0.224,0.103-0.224,0.227v0.532c0,0.125,0.102,0.227,0.224,0.227h0.607c0.124,0,0.224-0.102,0.224-0.227V8.271
C25.561,8.147,25.461,8.044,25.337,8.044z M25.353,8.848h-0.637V8.229h0.637V8.848z M24.315,8.236
c-0.018-0.11-0.111-0.191-0.221-0.191h-0.649c-0.124,0-0.224,0.103-0.224,0.227v0.532c0,0.125,0.1,0.227,0.224,0.227h0.649
c0.115,0,0.21-0.087,0.221-0.201V8.456h-0.719c0.002,0.02,0.012,0.055,0.049,0.1c0.046,0.061,0.118,0.065,0.139,0.065h0.325v0.216
h-0.682v-0.6H24.315z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@@ -1,196 +1,196 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_34">
<g>
<rect x="4.09" y="0.689" fill-rule="evenodd" clip-rule="evenodd" fill="#282622" width="24.203" height="31.029"/>
</g>
</g>
<g id="Rectangle_1">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#303535" d="M9.312,8.763l2.339,2.345l2.339-2.345L11.65,6.418L9.312,8.763z
M4.628,8.763l2.339,2.345l2.339-2.345L6.967,6.418L4.628,8.763z M9.312,4.037l2.339,2.345l2.339-2.345L11.65,1.692L9.312,4.037z
M18.678,8.763l2.338,2.345l2.34-2.345l-2.34-2.345L18.678,8.763z M13.995,4.037l2.339,2.345l2.338-2.345l-2.338-2.345
L13.995,4.037z M4.628,4.037l2.339,2.345l2.339-2.345L6.967,1.692L4.628,4.037z M28.033,4.037l-2.338-2.345l-2.34,2.345
l2.34,2.345L28.033,4.037z M18.678,4.037l2.338,2.345l2.34-2.345l-2.34-2.345L18.678,4.037z M23.355,8.763l2.34,2.345l2.338-2.345
l-2.338-2.345L23.355,8.763z M13.995,8.763l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,8.763z M4.628,13.488l2.339,2.346
l2.339-2.346l-2.339-2.345L4.628,13.488z M13.995,18.215l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,18.215z M9.312,18.215
l2.339,2.345l2.339-2.345L11.65,15.87L9.312,18.215z M9.312,13.488l2.339,2.345l2.339-2.345l-2.339-2.345L9.312,13.488z
M4.628,18.215l2.339,2.345l2.339-2.345L6.967,15.87L4.628,18.215z M13.995,13.488l2.339,2.345l2.338-2.345l-2.338-2.345
L13.995,13.488z M23.355,13.488l2.34,2.345l2.338-2.345l-2.338-2.345L23.355,13.488z M18.678,13.488l2.338,2.345l2.34-2.345
l-2.34-2.345L18.678,13.488z M23.355,18.215l2.34,2.345l2.338-2.345l-2.338-2.345L23.355,18.215z M18.678,18.215l2.338,2.345
l2.34-2.345l-2.34-2.345L18.678,18.215z M4.628,27.737l2.339,2.345l2.339-2.345l-2.339-2.345L4.628,27.737z M4.628,23.011
l2.339,2.346l2.339-2.346l-2.339-2.345L4.628,23.011z M9.312,23.011l2.339,2.346l2.339-2.346l-2.339-2.345L9.312,23.011z
M18.678,23.011l2.338,2.346l2.34-2.346l-2.34-2.345L18.678,23.011z M23.355,27.737l2.34,2.345l2.338-2.345l-2.338-2.345
L23.355,27.737z M23.355,23.011l2.34,2.346l2.338-2.346l-2.338-2.345L23.355,23.011z M13.995,23.011l2.339,2.346l2.338-2.346
l-2.338-2.345L13.995,23.011z M13.995,27.737l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,27.737z M18.678,27.737l2.338,2.345
l2.34-2.345l-2.34-2.345L18.678,27.737z M9.312,27.737l2.339,2.345l2.339-2.345l-2.339-2.345L9.312,27.737z"/>
</g>
</g>
<g id="Shape_36">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" points="22.635,11.858 22.314,11.674 20.676,12.62 20.68,12.296
20.357,12.111 20.037,12.296 20.031,12.992 18.678,13.774 18.684,13.062 18.363,12.877 18.043,13.062 18.033,14.146
17.348,14.542 16.439,14.018 16.439,13.223 17.369,12.676 17.369,12.306 17.049,12.121 16.439,12.479 16.439,10.915
17.033,10.564 17.033,10.194 16.713,10.01 16.439,10.171 16.439,8.281 16.119,8.097 15.799,8.281 15.798,10.174 15.52,10.01
15.199,10.194 15.199,10.564 15.798,10.918 15.798,12.481 15.185,12.121 14.864,12.306 14.864,12.676 15.798,13.226
15.799,14.018 14.891,14.542 14.202,14.145 14.193,13.066 13.873,12.881 13.552,13.066 13.558,13.772 12.204,12.99 12.197,12.301
11.877,12.116 11.557,12.301 11.56,12.618 9.923,11.674 9.603,11.858 9.603,12.229 11.242,13.175 10.96,13.335 10.96,13.704
11.28,13.89 11.886,13.547 13.24,14.329 12.621,14.68 12.621,15.05 12.941,15.234 13.884,14.7 14.571,15.097 14.571,16.145
13.881,16.543 12.943,16.012 12.623,16.196 12.623,16.566 13.238,16.915 11.883,17.697 11.283,17.357 10.962,17.542
10.962,17.912 11.239,18.068 9.603,19.014 9.603,19.383 9.923,19.568 11.563,18.621 11.559,18.945 11.88,19.131 12.2,18.945
12.206,18.25 13.561,17.468 13.555,18.18 13.875,18.365 14.195,18.18 14.204,17.097 14.891,16.7 15.798,17.224 15.799,18.02
14.87,18.566 14.869,18.937 15.19,19.121 15.799,18.763 15.798,20.327 15.205,20.678 15.204,21.047 15.525,21.232 15.799,21.07
15.798,22.96 16.119,23.146 16.439,22.961 16.439,21.067 16.718,21.232 17.039,21.047 17.039,20.677 16.439,20.324 16.439,18.76
17.053,19.121 17.373,18.937 17.373,18.566 16.439,18.017 16.439,17.224 17.348,16.7 18.037,17.098 18.045,18.176 18.365,18.36
18.686,18.176 18.68,17.47 20.035,18.251 20.041,18.941 20.361,19.126 20.682,18.941 20.678,18.623 22.314,19.568 22.635,19.383
22.635,19.014 20.996,18.067 21.277,17.907 21.277,17.537 20.957,17.353 20.352,17.695 18.998,16.913 19.617,16.563
19.617,16.192 19.297,16.008 18.354,16.542 17.668,16.146 17.668,15.097 18.357,14.699 19.295,15.23 19.615,15.045 19.615,14.676
19,14.327 20.355,13.545 20.955,13.885 21.275,13.7 21.275,13.33 20.998,13.174 22.635,12.229 "/>
</g>
</g>
<g id="Shape_36_copy">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" points="21.84,15.621 21.699,15.378 20.26,15.378 20.385,15.165
20.244,14.922 19.963,14.922 19.695,15.378 18.506,15.378 18.781,14.91 18.641,14.667 18.359,14.667 17.941,15.378 17.338,15.378
16.939,14.687 17.242,14.163 18.061,14.156 18.203,13.912 18.061,13.669 17.523,13.674 18.119,12.644 18.643,12.639
18.783,12.396 18.643,12.151 18.402,12.154 19.121,10.909 18.98,10.666 18.699,10.666 17.979,11.912 17.857,11.698 17.576,11.698
17.436,11.941 17.695,12.402 17.102,13.432 16.834,12.961 16.553,12.961 16.413,13.204 16.819,13.922 16.517,14.443 15.72,14.443
15.417,13.919 15.822,13.206 15.681,12.963 15.4,12.963 15.135,13.43 14.541,12.4 14.799,11.943 14.658,11.7 14.377,11.7
14.258,11.91 13.539,10.666 13.258,10.666 13.118,10.909 13.837,12.156 13.591,12.153 13.45,12.397 13.591,12.641 14.12,12.646
14.714,13.676 14.173,13.671 14.032,13.914 14.173,14.158 14.997,14.165 15.298,14.688 14.9,15.377 14.295,15.378 13.879,14.671
13.598,14.671 13.457,14.914 13.729,15.378 12.541,15.378 12.274,14.926 11.993,14.926 11.852,15.169 11.975,15.378
10.538,15.378 10.397,15.621 10.538,15.864 11.977,15.864 11.852,16.076 11.993,16.32 12.274,16.32 12.542,15.864 13.732,15.864
13.457,16.331 13.598,16.575 13.879,16.575 14.297,15.864 14.9,15.864 15.298,16.555 14.996,17.079 14.176,17.086 14.035,17.329
14.176,17.573 14.713,17.568 14.119,18.599 13.594,18.603 13.454,18.847 13.594,19.09 13.836,19.088 13.118,20.332 13.258,20.576
13.539,20.576 14.259,19.33 14.38,19.544 14.662,19.544 14.802,19.301 14.542,18.84 15.136,17.81 15.403,18.281 15.685,18.281
15.825,18.037 15.419,17.32 15.72,16.799 16.517,16.799 16.82,17.322 16.417,18.035 16.556,18.279 16.837,18.279 17.104,17.812
17.697,18.842 17.439,19.299 17.58,19.542 17.861,19.542 17.98,19.331 18.699,20.576 18.98,20.576 19.121,20.332 18.4,19.086
18.646,19.088 18.787,18.845 18.646,18.601 18.117,18.597 17.523,17.566 18.064,17.571 18.205,17.327 18.064,17.084 17.24,17.077
16.939,16.555 17.338,15.864 17.943,15.864 18.359,16.571 18.641,16.571 18.781,16.327 18.508,15.864 19.697,15.864
19.963,16.316 20.244,16.316 20.385,16.073 20.264,15.864 21.699,15.864 "/>
</g>
</g>
<g id="Shape_34_copy_3">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5A6568" d="M4.623,1.225v29.895H27.76V1.224L4.623,1.225z M27.201,30.517
H5.16V1.827h22.041V30.517z"/>
</g>
</g>
<g id="Shape_34_copy_5">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" d="M5.667,2.351v27.643h21.05V2.351H5.667z M26.389,29.641H5.975
V2.73h20.414V29.641z"/>
</g>
</g>
<g id="office" opacity="0.6392">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E0E4CD" d="M9.336,25.35c-0.482,0-0.873,0.159-1.171,0.479
c-0.299,0.319-0.448,0.692-0.448,1.118c0,0.434,0.15,0.808,0.451,1.123c0.3,0.314,0.69,0.472,1.168,0.472
c0.473,0,0.86-0.158,1.162-0.474c0.302-0.317,0.453-0.69,0.453-1.121c0-0.425-0.148-0.797-0.446-1.117
C10.207,25.51,9.817,25.35,9.336,25.35z M9.981,27.634c-0.163,0.174-0.378,0.262-0.645,0.262c-0.268,0-0.484-0.088-0.648-0.262
c-0.164-0.175-0.246-0.404-0.246-0.688c0-0.285,0.082-0.515,0.246-0.688s0.38-0.261,0.648-0.261c0.267,0,0.482,0.087,0.645,0.261
c0.163,0.174,0.244,0.403,0.244,0.688C10.225,27.229,10.144,27.459,9.981,27.634z M11.771,28.501h0.703v-1.276h1.241v-0.57h-1.241
V25.96h1.241v-0.57h-1.944V28.501z M14.582,28.501h0.703v-1.276h1.242v-0.57h-1.242V25.96h1.242v-0.57h-1.945V28.501z
M17.418,28.501h0.703V25.39h-0.703V28.501z M20.691,27.896c-0.295,0-0.535-0.09-0.723-0.27s-0.283-0.408-0.283-0.685
c0-0.274,0.096-0.5,0.287-0.678s0.436-0.267,0.736-0.267c0.307,0,0.631,0.106,0.973,0.319v-0.693
c-0.279-0.183-0.619-0.273-1.023-0.273c-0.504,0-0.914,0.155-1.229,0.468c-0.313,0.312-0.469,0.691-0.469,1.138
c0,0.447,0.148,0.823,0.445,1.129c0.297,0.305,0.697,0.457,1.197,0.457c0.387,0,0.758-0.103,1.111-0.31v-0.679
c-0.268,0.144-0.469,0.236-0.604,0.279C20.977,27.874,20.836,27.896,20.691,27.896z M23.295,27.931v-0.748h1.289v-0.57h-1.289
V25.96h1.352v-0.57h-2.055v3.111h2.082v-0.57H23.295z"/>
</g>
</g>
<g id="_x35_2375">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2F657A" d="M11.447,4.979c-0.068,0-0.142,0.002-0.221,0.007V4.244h0.976
V3.983h-1.257v1.269c0.199-0.015,0.335-0.021,0.408-0.021c0.213,0,0.378,0.047,0.493,0.14s0.172,0.223,0.172,0.388
c0,0.167-0.056,0.302-0.168,0.402c-0.112,0.102-0.26,0.152-0.444,0.152s-0.364-0.057-0.542-0.168v0.307
c0.118,0.069,0.298,0.104,0.538,0.104c0.285,0,0.509-0.074,0.673-0.225c0.164-0.148,0.245-0.346,0.245-0.591
c0-0.236-0.076-0.422-0.228-0.559C11.939,5.046,11.725,4.979,11.447,4.979z M13.38,6.073c0.019-0.053,0.051-0.104,0.098-0.157
s0.109-0.108,0.188-0.169c0.079-0.06,0.18-0.132,0.301-0.217c0.098-0.068,0.183-0.135,0.256-0.201
c0.072-0.065,0.132-0.135,0.18-0.206c0.048-0.071,0.083-0.148,0.107-0.229c0.023-0.081,0.035-0.172,0.035-0.271
c0-0.109-0.019-0.207-0.057-0.291c-0.038-0.085-0.09-0.156-0.157-0.214s-0.145-0.102-0.235-0.132
c-0.091-0.029-0.189-0.045-0.295-0.045c-0.148,0-0.274,0.021-0.377,0.063c-0.104,0.041-0.197,0.102-0.28,0.181v0.311
c0.042-0.046,0.088-0.088,0.137-0.126c0.049-0.037,0.1-0.069,0.152-0.097c0.053-0.027,0.107-0.048,0.162-0.063
c0.056-0.016,0.112-0.022,0.17-0.022c0.068,0,0.13,0.009,0.188,0.027c0.058,0.02,0.108,0.048,0.151,0.086
c0.043,0.038,0.077,0.086,0.102,0.144c0.025,0.058,0.037,0.126,0.037,0.203c0,0.069-0.008,0.135-0.024,0.197
c-0.016,0.062-0.043,0.122-0.082,0.183c-0.039,0.06-0.09,0.119-0.153,0.18c-0.063,0.06-0.142,0.123-0.236,0.188
c-0.13,0.093-0.241,0.177-0.331,0.251s-0.163,0.147-0.218,0.222s-0.095,0.152-0.12,0.235c-0.024,0.082-0.036,0.178-0.036,0.285
v0.126h1.603v-0.26h-1.293C13.352,6.186,13.361,6.125,13.38,6.073z M16.249,5.193V5.187c0.349-0.096,0.522-0.31,0.522-0.643
c0-0.176-0.066-0.321-0.197-0.434c-0.131-0.113-0.306-0.17-0.524-0.17c-0.227,0-0.423,0.049-0.59,0.145v0.283
c0.162-0.121,0.333-0.182,0.516-0.182c0.327,0,0.491,0.143,0.491,0.43c0,0.311-0.215,0.466-0.643,0.466h-0.205v0.245h0.216
c0.481,0,0.723,0.166,0.723,0.496c0,0.149-0.055,0.269-0.162,0.356c-0.108,0.089-0.253,0.133-0.435,0.133
c-0.223,0-0.423-0.068-0.601-0.205V6.42c0.146,0.091,0.342,0.136,0.589,0.136c0.273,0,0.494-0.069,0.661-0.209
c0.168-0.14,0.251-0.322,0.251-0.55c0-0.165-0.055-0.302-0.165-0.412C16.584,5.275,16.436,5.211,16.249,5.193z M17.557,4.244
h1.309l-0.973,2.27h0.309l1.027-2.438V3.983h-1.672V4.244z M21.203,5.182c-0.152-0.136-0.367-0.203-0.645-0.203
c-0.068,0-0.143,0.002-0.221,0.007V4.244h0.975V3.983h-1.256v1.269c0.199-0.015,0.334-0.021,0.408-0.021
c0.213,0,0.377,0.047,0.492,0.14s0.172,0.223,0.172,0.388c0,0.167-0.057,0.302-0.168,0.402c-0.113,0.102-0.262,0.152-0.445,0.152
c-0.182,0-0.363-0.057-0.541-0.168v0.307c0.119,0.069,0.299,0.104,0.539,0.104c0.283,0,0.508-0.075,0.672-0.225
c0.164-0.148,0.246-0.346,0.246-0.591C21.432,5.504,21.355,5.318,21.203,5.182z"/>
<path fill="#A9BDC4" d="M16.049,3.94c0.219,0,0.394,0.057,0.524,0.17c0.131,0.112,0.197,0.258,0.197,0.434
c0,0.333-0.174,0.547-0.522,0.643v0.007c0.188,0.018,0.336,0.082,0.447,0.191c0.11,0.11,0.165,0.247,0.165,0.412
c0,0.228-0.083,0.41-0.251,0.55c-0.167,0.14-0.388,0.209-0.661,0.209c-0.247,0-0.443-0.045-0.589-0.136V6.107
c0.177,0.137,0.378,0.205,0.601,0.205c0.182,0,0.326-0.044,0.435-0.133c0.107-0.088,0.162-0.207,0.162-0.356
c0-0.33-0.241-0.496-0.723-0.496h-0.216V5.082h0.205c0.428,0,0.643-0.155,0.643-0.466c0-0.287-0.164-0.43-0.491-0.43
c-0.182,0-0.354,0.061-0.516,0.182V4.085C15.626,3.989,15.823,3.94,16.049,3.94 M13.801,3.94c0.106,0,0.205,0.016,0.295,0.045
c0.09,0.03,0.169,0.074,0.235,0.132s0.119,0.129,0.157,0.214c0.038,0.084,0.057,0.182,0.057,0.291c0,0.1-0.012,0.19-0.035,0.271
c-0.024,0.081-0.06,0.158-0.107,0.229c-0.047,0.071-0.107,0.141-0.18,0.206c-0.073,0.066-0.158,0.133-0.256,0.201
c-0.122,0.085-0.222,0.157-0.301,0.217c-0.079,0.061-0.142,0.116-0.188,0.169s-0.079,0.104-0.098,0.157
c-0.019,0.052-0.028,0.112-0.028,0.181h1.293v0.26h-1.603V6.388c0-0.107,0.012-0.203,0.036-0.285
c0.024-0.083,0.064-0.161,0.12-0.235s0.128-0.147,0.218-0.222s0.2-0.158,0.331-0.251c0.094-0.065,0.173-0.129,0.236-0.188
c0.063-0.061,0.114-0.12,0.153-0.18c0.039-0.061,0.066-0.121,0.082-0.183c0.017-0.063,0.024-0.128,0.024-0.197
c0-0.077-0.012-0.146-0.037-0.203c-0.024-0.058-0.059-0.105-0.102-0.144c-0.042-0.038-0.093-0.066-0.151-0.086
c-0.058-0.019-0.121-0.027-0.188-0.027c-0.058,0-0.115,0.007-0.17,0.022c-0.055,0.016-0.109,0.036-0.162,0.063
C13.38,4.3,13.329,4.332,13.28,4.369c-0.049,0.038-0.095,0.08-0.137,0.126V4.185c0.083-0.079,0.176-0.14,0.28-0.181
C13.526,3.962,13.652,3.94,13.801,3.94 M21.313,3.983v0.261h-0.975v0.741c0.078-0.005,0.152-0.007,0.221-0.007
c0.277,0,0.492,0.067,0.645,0.203c0.152,0.137,0.229,0.322,0.229,0.559c0,0.245-0.082,0.442-0.246,0.591
c-0.164,0.149-0.389,0.225-0.672,0.225c-0.24,0-0.42-0.035-0.539-0.104V6.145c0.178,0.111,0.359,0.168,0.541,0.168
c0.184,0,0.332-0.051,0.445-0.152c0.111-0.101,0.168-0.235,0.168-0.402c0-0.165-0.057-0.295-0.172-0.388s-0.279-0.14-0.492-0.14
c-0.074,0-0.209,0.007-0.408,0.021V3.983H21.313 M19.229,3.983v0.092l-1.027,2.438h-0.309l0.973-2.27h-1.309V3.983H19.229
M12.202,3.983v0.261h-0.976v0.741c0.08-0.005,0.153-0.007,0.221-0.007c0.277,0,0.492,0.067,0.645,0.203
c0.152,0.137,0.228,0.322,0.228,0.559c0,0.245-0.082,0.442-0.245,0.591c-0.164,0.15-0.388,0.225-0.673,0.225
c-0.24,0-0.42-0.035-0.538-0.104V6.145c0.178,0.111,0.358,0.168,0.542,0.168s0.332-0.051,0.444-0.152
c0.112-0.101,0.168-0.235,0.168-0.402c0-0.165-0.057-0.295-0.172-0.388s-0.279-0.14-0.493-0.14c-0.073,0-0.208,0.007-0.408,0.021
V3.983H12.202 M16.049,3.721c-0.265,0-0.5,0.059-0.701,0.174c-0.068,0.039-0.11,0.112-0.11,0.19v0.283
c0,0.083,0.047,0.159,0.122,0.196c0.031,0.017,0.065,0.023,0.099,0.023c0.046,0,0.093-0.015,0.132-0.044
c0.124-0.093,0.25-0.138,0.384-0.138c0.251,0,0.271,0.087,0.271,0.21c0,0.092,0,0.246-0.422,0.246h-0.205
c-0.122,0-0.22,0.099-0.22,0.22v0.246c0,0.121,0.099,0.22,0.22,0.22h0.216c0.502,0,0.502,0.187,0.502,0.275
c0,0.084-0.024,0.14-0.081,0.186c-0.067,0.055-0.166,0.083-0.295,0.083c-0.175,0-0.327-0.052-0.466-0.159
c-0.04-0.03-0.087-0.046-0.134-0.046c-0.033,0-0.067,0.008-0.098,0.023c-0.075,0.037-0.123,0.113-0.123,0.197V6.42
c0,0.076,0.04,0.146,0.104,0.188c0.181,0.111,0.417,0.169,0.705,0.169c0.325,0,0.596-0.088,0.803-0.261
c0.219-0.183,0.331-0.425,0.331-0.719c0-0.225-0.078-0.416-0.231-0.568c-0.029-0.028-0.06-0.055-0.092-0.079
c0.151-0.152,0.231-0.357,0.231-0.605c0-0.239-0.094-0.447-0.272-0.601C16.546,3.795,16.322,3.721,16.049,3.721L16.049,3.721z
M13.801,3.721c-0.176,0-0.331,0.026-0.46,0.078c-0.128,0.052-0.245,0.128-0.348,0.226c-0.044,0.041-0.069,0.1-0.069,0.16v0.311
c0,0.091,0.056,0.172,0.14,0.205c0.026,0.01,0.053,0.015,0.08,0.015c0.061,0,0.12-0.024,0.163-0.07
c0.033-0.036,0.07-0.07,0.109-0.101c0.038-0.029,0.078-0.055,0.119-0.075c0.038-0.021,0.079-0.036,0.119-0.047
c0.036-0.011,0.074-0.016,0.112-0.016c0.044,0,0.084,0.006,0.12,0.018c0.029,0.01,0.053,0.022,0.073,0.041
c0.019,0.017,0.034,0.038,0.046,0.065c0.013,0.03,0.019,0.069,0.019,0.116c0,0.05-0.006,0.098-0.017,0.141
c-0.01,0.039-0.029,0.079-0.055,0.119c-0.029,0.045-0.069,0.092-0.119,0.14c-0.055,0.052-0.126,0.108-0.211,0.168
c-0.136,0.097-0.251,0.185-0.344,0.262c-0.103,0.084-0.189,0.172-0.254,0.26C12.95,5.83,12.898,5.933,12.867,6.04
c-0.03,0.103-0.045,0.219-0.045,0.348v0.126c0,0.121,0.099,0.22,0.22,0.22h1.603c0.122,0,0.22-0.099,0.22-0.22v-0.26
c0-0.122-0.099-0.221-0.22-0.221H13.67c0.034-0.033,0.077-0.07,0.129-0.11c0.076-0.058,0.175-0.129,0.294-0.211
c0.105-0.073,0.198-0.147,0.278-0.22c0.085-0.077,0.158-0.161,0.215-0.247c0.06-0.09,0.105-0.188,0.135-0.29
c0.029-0.101,0.044-0.213,0.044-0.333c0-0.141-0.025-0.269-0.076-0.382c-0.051-0.113-0.123-0.211-0.213-0.289
c-0.088-0.077-0.193-0.136-0.311-0.175C14.053,3.739,13.93,3.721,13.801,3.721L13.801,3.721z M21.313,3.763h-1.256
c-0.121,0-0.221,0.099-0.221,0.221v1.269c0,0.061,0.025,0.119,0.07,0.161c0.041,0.038,0.094,0.059,0.15,0.059
c0.006,0,0.01,0,0.016,0c0.24-0.018,0.346-0.021,0.393-0.021c0.16,0,0.279,0.03,0.354,0.09c0.041,0.034,0.09,0.09,0.09,0.217
c0,0.104-0.031,0.18-0.096,0.239c-0.07,0.063-0.168,0.095-0.297,0.095c-0.141,0-0.281-0.044-0.424-0.134
c-0.035-0.022-0.076-0.034-0.117-0.034c-0.037,0-0.072,0.01-0.105,0.027c-0.07,0.039-0.115,0.113-0.115,0.193v0.307
c0,0.078,0.043,0.151,0.109,0.19c0.154,0.091,0.367,0.135,0.65,0.135c0.34,0,0.615-0.095,0.82-0.282
c0.211-0.192,0.318-0.445,0.318-0.754c0-0.301-0.102-0.544-0.303-0.723c-0.193-0.172-0.459-0.26-0.791-0.26c0,0,0,0-0.002,0V4.465
h0.756c0.123,0,0.221-0.099,0.221-0.221V3.983C21.533,3.861,21.436,3.763,21.313,3.763L21.313,3.763z M19.229,3.763h-1.672
c-0.123,0-0.221,0.099-0.221,0.221v0.261c0,0.122,0.098,0.221,0.221,0.221h0.975l-0.842,1.962
c-0.029,0.067-0.021,0.146,0.02,0.208s0.109,0.099,0.184,0.099h0.309c0.088,0,0.168-0.053,0.203-0.135l1.027-2.438
c0.012-0.026,0.018-0.056,0.018-0.085V3.983C19.449,3.861,19.352,3.763,19.229,3.763L19.229,3.763z M12.202,3.763h-1.257
c-0.122,0-0.22,0.099-0.22,0.221v1.269c0,0.061,0.025,0.119,0.07,0.161c0.041,0.038,0.095,0.059,0.15,0.059
c0.005,0,0.01,0,0.016,0c0.24-0.018,0.346-0.021,0.392-0.021c0.161,0,0.28,0.03,0.354,0.09c0.042,0.034,0.091,0.09,0.091,0.217
c0,0.104-0.031,0.18-0.096,0.239c-0.071,0.063-0.168,0.095-0.296,0.095c-0.142,0-0.281-0.044-0.424-0.134
c-0.036-0.022-0.076-0.034-0.117-0.034c-0.037,0-0.073,0.01-0.106,0.027c-0.07,0.039-0.114,0.113-0.114,0.193v0.307
c0,0.078,0.042,0.151,0.109,0.19c0.154,0.091,0.366,0.135,0.649,0.135c0.34,0,0.617-0.095,0.821-0.282
c0.21-0.192,0.317-0.445,0.317-0.754c0-0.301-0.102-0.544-0.302-0.723c-0.193-0.172-0.459-0.26-0.792-0.26c0,0,0,0-0.001,0V4.465
h0.756c0.122,0,0.221-0.099,0.221-0.221V3.983C12.423,3.861,12.324,3.763,12.202,3.763L12.202,3.763z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_34">
<g>
<rect x="4.09" y="0.689" fill-rule="evenodd" clip-rule="evenodd" fill="#282622" width="24.203" height="31.029"/>
</g>
</g>
<g id="Rectangle_1">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#303535" d="M9.312,8.763l2.339,2.345l2.339-2.345L11.65,6.418L9.312,8.763z
M4.628,8.763l2.339,2.345l2.339-2.345L6.967,6.418L4.628,8.763z M9.312,4.037l2.339,2.345l2.339-2.345L11.65,1.692L9.312,4.037z
M18.678,8.763l2.338,2.345l2.34-2.345l-2.34-2.345L18.678,8.763z M13.995,4.037l2.339,2.345l2.338-2.345l-2.338-2.345
L13.995,4.037z M4.628,4.037l2.339,2.345l2.339-2.345L6.967,1.692L4.628,4.037z M28.033,4.037l-2.338-2.345l-2.34,2.345
l2.34,2.345L28.033,4.037z M18.678,4.037l2.338,2.345l2.34-2.345l-2.34-2.345L18.678,4.037z M23.355,8.763l2.34,2.345l2.338-2.345
l-2.338-2.345L23.355,8.763z M13.995,8.763l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,8.763z M4.628,13.488l2.339,2.346
l2.339-2.346l-2.339-2.345L4.628,13.488z M13.995,18.215l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,18.215z M9.312,18.215
l2.339,2.345l2.339-2.345L11.65,15.87L9.312,18.215z M9.312,13.488l2.339,2.345l2.339-2.345l-2.339-2.345L9.312,13.488z
M4.628,18.215l2.339,2.345l2.339-2.345L6.967,15.87L4.628,18.215z M13.995,13.488l2.339,2.345l2.338-2.345l-2.338-2.345
L13.995,13.488z M23.355,13.488l2.34,2.345l2.338-2.345l-2.338-2.345L23.355,13.488z M18.678,13.488l2.338,2.345l2.34-2.345
l-2.34-2.345L18.678,13.488z M23.355,18.215l2.34,2.345l2.338-2.345l-2.338-2.345L23.355,18.215z M18.678,18.215l2.338,2.345
l2.34-2.345l-2.34-2.345L18.678,18.215z M4.628,27.737l2.339,2.345l2.339-2.345l-2.339-2.345L4.628,27.737z M4.628,23.011
l2.339,2.346l2.339-2.346l-2.339-2.345L4.628,23.011z M9.312,23.011l2.339,2.346l2.339-2.346l-2.339-2.345L9.312,23.011z
M18.678,23.011l2.338,2.346l2.34-2.346l-2.34-2.345L18.678,23.011z M23.355,27.737l2.34,2.345l2.338-2.345l-2.338-2.345
L23.355,27.737z M23.355,23.011l2.34,2.346l2.338-2.346l-2.338-2.345L23.355,23.011z M13.995,23.011l2.339,2.346l2.338-2.346
l-2.338-2.345L13.995,23.011z M13.995,27.737l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,27.737z M18.678,27.737l2.338,2.345
l2.34-2.345l-2.34-2.345L18.678,27.737z M9.312,27.737l2.339,2.345l2.339-2.345l-2.339-2.345L9.312,27.737z"/>
</g>
</g>
<g id="Shape_36">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" points="22.635,11.858 22.314,11.674 20.676,12.62 20.68,12.296
20.357,12.111 20.037,12.296 20.031,12.992 18.678,13.774 18.684,13.062 18.363,12.877 18.043,13.062 18.033,14.146
17.348,14.542 16.439,14.018 16.439,13.223 17.369,12.676 17.369,12.306 17.049,12.121 16.439,12.479 16.439,10.915
17.033,10.564 17.033,10.194 16.713,10.01 16.439,10.171 16.439,8.281 16.119,8.097 15.799,8.281 15.798,10.174 15.52,10.01
15.199,10.194 15.199,10.564 15.798,10.918 15.798,12.481 15.185,12.121 14.864,12.306 14.864,12.676 15.798,13.226
15.799,14.018 14.891,14.542 14.202,14.145 14.193,13.066 13.873,12.881 13.552,13.066 13.558,13.772 12.204,12.99 12.197,12.301
11.877,12.116 11.557,12.301 11.56,12.618 9.923,11.674 9.603,11.858 9.603,12.229 11.242,13.175 10.96,13.335 10.96,13.704
11.28,13.89 11.886,13.547 13.24,14.329 12.621,14.68 12.621,15.05 12.941,15.234 13.884,14.7 14.571,15.097 14.571,16.145
13.881,16.543 12.943,16.012 12.623,16.196 12.623,16.566 13.238,16.915 11.883,17.697 11.283,17.357 10.962,17.542
10.962,17.912 11.239,18.068 9.603,19.014 9.603,19.383 9.923,19.568 11.563,18.621 11.559,18.945 11.88,19.131 12.2,18.945
12.206,18.25 13.561,17.468 13.555,18.18 13.875,18.365 14.195,18.18 14.204,17.097 14.891,16.7 15.798,17.224 15.799,18.02
14.87,18.566 14.869,18.937 15.19,19.121 15.799,18.763 15.798,20.327 15.205,20.678 15.204,21.047 15.525,21.232 15.799,21.07
15.798,22.96 16.119,23.146 16.439,22.961 16.439,21.067 16.718,21.232 17.039,21.047 17.039,20.677 16.439,20.324 16.439,18.76
17.053,19.121 17.373,18.937 17.373,18.566 16.439,18.017 16.439,17.224 17.348,16.7 18.037,17.098 18.045,18.176 18.365,18.36
18.686,18.176 18.68,17.47 20.035,18.251 20.041,18.941 20.361,19.126 20.682,18.941 20.678,18.623 22.314,19.568 22.635,19.383
22.635,19.014 20.996,18.067 21.277,17.907 21.277,17.537 20.957,17.353 20.352,17.695 18.998,16.913 19.617,16.563
19.617,16.192 19.297,16.008 18.354,16.542 17.668,16.146 17.668,15.097 18.357,14.699 19.295,15.23 19.615,15.045 19.615,14.676
19,14.327 20.355,13.545 20.955,13.885 21.275,13.7 21.275,13.33 20.998,13.174 22.635,12.229 "/>
</g>
</g>
<g id="Shape_36_copy">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" points="21.84,15.621 21.699,15.378 20.26,15.378 20.385,15.165
20.244,14.922 19.963,14.922 19.695,15.378 18.506,15.378 18.781,14.91 18.641,14.667 18.359,14.667 17.941,15.378 17.338,15.378
16.939,14.687 17.242,14.163 18.061,14.156 18.203,13.912 18.061,13.669 17.523,13.674 18.119,12.644 18.643,12.639
18.783,12.396 18.643,12.151 18.402,12.154 19.121,10.909 18.98,10.666 18.699,10.666 17.979,11.912 17.857,11.698 17.576,11.698
17.436,11.941 17.695,12.402 17.102,13.432 16.834,12.961 16.553,12.961 16.413,13.204 16.819,13.922 16.517,14.443 15.72,14.443
15.417,13.919 15.822,13.206 15.681,12.963 15.4,12.963 15.135,13.43 14.541,12.4 14.799,11.943 14.658,11.7 14.377,11.7
14.258,11.91 13.539,10.666 13.258,10.666 13.118,10.909 13.837,12.156 13.591,12.153 13.45,12.397 13.591,12.641 14.12,12.646
14.714,13.676 14.173,13.671 14.032,13.914 14.173,14.158 14.997,14.165 15.298,14.688 14.9,15.377 14.295,15.378 13.879,14.671
13.598,14.671 13.457,14.914 13.729,15.378 12.541,15.378 12.274,14.926 11.993,14.926 11.852,15.169 11.975,15.378
10.538,15.378 10.397,15.621 10.538,15.864 11.977,15.864 11.852,16.076 11.993,16.32 12.274,16.32 12.542,15.864 13.732,15.864
13.457,16.331 13.598,16.575 13.879,16.575 14.297,15.864 14.9,15.864 15.298,16.555 14.996,17.079 14.176,17.086 14.035,17.329
14.176,17.573 14.713,17.568 14.119,18.599 13.594,18.603 13.454,18.847 13.594,19.09 13.836,19.088 13.118,20.332 13.258,20.576
13.539,20.576 14.259,19.33 14.38,19.544 14.662,19.544 14.802,19.301 14.542,18.84 15.136,17.81 15.403,18.281 15.685,18.281
15.825,18.037 15.419,17.32 15.72,16.799 16.517,16.799 16.82,17.322 16.417,18.035 16.556,18.279 16.837,18.279 17.104,17.812
17.697,18.842 17.439,19.299 17.58,19.542 17.861,19.542 17.98,19.331 18.699,20.576 18.98,20.576 19.121,20.332 18.4,19.086
18.646,19.088 18.787,18.845 18.646,18.601 18.117,18.597 17.523,17.566 18.064,17.571 18.205,17.327 18.064,17.084 17.24,17.077
16.939,16.555 17.338,15.864 17.943,15.864 18.359,16.571 18.641,16.571 18.781,16.327 18.508,15.864 19.697,15.864
19.963,16.316 20.244,16.316 20.385,16.073 20.264,15.864 21.699,15.864 "/>
</g>
</g>
<g id="Shape_34_copy_3">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5A6568" d="M4.623,1.225v29.895H27.76V1.224L4.623,1.225z M27.201,30.517
H5.16V1.827h22.041V30.517z"/>
</g>
</g>
<g id="Shape_34_copy_5">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" d="M5.667,2.351v27.643h21.05V2.351H5.667z M26.389,29.641H5.975
V2.73h20.414V29.641z"/>
</g>
</g>
<g id="office" opacity="0.6392">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E0E4CD" d="M9.336,25.35c-0.482,0-0.873,0.159-1.171,0.479
c-0.299,0.319-0.448,0.692-0.448,1.118c0,0.434,0.15,0.808,0.451,1.123c0.3,0.314,0.69,0.472,1.168,0.472
c0.473,0,0.86-0.158,1.162-0.474c0.302-0.317,0.453-0.69,0.453-1.121c0-0.425-0.148-0.797-0.446-1.117
C10.207,25.51,9.817,25.35,9.336,25.35z M9.981,27.634c-0.163,0.174-0.378,0.262-0.645,0.262c-0.268,0-0.484-0.088-0.648-0.262
c-0.164-0.175-0.246-0.404-0.246-0.688c0-0.285,0.082-0.515,0.246-0.688s0.38-0.261,0.648-0.261c0.267,0,0.482,0.087,0.645,0.261
c0.163,0.174,0.244,0.403,0.244,0.688C10.225,27.229,10.144,27.459,9.981,27.634z M11.771,28.501h0.703v-1.276h1.241v-0.57h-1.241
V25.96h1.241v-0.57h-1.944V28.501z M14.582,28.501h0.703v-1.276h1.242v-0.57h-1.242V25.96h1.242v-0.57h-1.945V28.501z
M17.418,28.501h0.703V25.39h-0.703V28.501z M20.691,27.896c-0.295,0-0.535-0.09-0.723-0.27s-0.283-0.408-0.283-0.685
c0-0.274,0.096-0.5,0.287-0.678s0.436-0.267,0.736-0.267c0.307,0,0.631,0.106,0.973,0.319v-0.693
c-0.279-0.183-0.619-0.273-1.023-0.273c-0.504,0-0.914,0.155-1.229,0.468c-0.313,0.312-0.469,0.691-0.469,1.138
c0,0.447,0.148,0.823,0.445,1.129c0.297,0.305,0.697,0.457,1.197,0.457c0.387,0,0.758-0.103,1.111-0.31v-0.679
c-0.268,0.144-0.469,0.236-0.604,0.279C20.977,27.874,20.836,27.896,20.691,27.896z M23.295,27.931v-0.748h1.289v-0.57h-1.289
V25.96h1.352v-0.57h-2.055v3.111h2.082v-0.57H23.295z"/>
</g>
</g>
<g id="_x35_2375">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2F657A" d="M11.447,4.979c-0.068,0-0.142,0.002-0.221,0.007V4.244h0.976
V3.983h-1.257v1.269c0.199-0.015,0.335-0.021,0.408-0.021c0.213,0,0.378,0.047,0.493,0.14s0.172,0.223,0.172,0.388
c0,0.167-0.056,0.302-0.168,0.402c-0.112,0.102-0.26,0.152-0.444,0.152s-0.364-0.057-0.542-0.168v0.307
c0.118,0.069,0.298,0.104,0.538,0.104c0.285,0,0.509-0.074,0.673-0.225c0.164-0.148,0.245-0.346,0.245-0.591
c0-0.236-0.076-0.422-0.228-0.559C11.939,5.046,11.725,4.979,11.447,4.979z M13.38,6.073c0.019-0.053,0.051-0.104,0.098-0.157
s0.109-0.108,0.188-0.169c0.079-0.06,0.18-0.132,0.301-0.217c0.098-0.068,0.183-0.135,0.256-0.201
c0.072-0.065,0.132-0.135,0.18-0.206c0.048-0.071,0.083-0.148,0.107-0.229c0.023-0.081,0.035-0.172,0.035-0.271
c0-0.109-0.019-0.207-0.057-0.291c-0.038-0.085-0.09-0.156-0.157-0.214s-0.145-0.102-0.235-0.132
c-0.091-0.029-0.189-0.045-0.295-0.045c-0.148,0-0.274,0.021-0.377,0.063c-0.104,0.041-0.197,0.102-0.28,0.181v0.311
c0.042-0.046,0.088-0.088,0.137-0.126c0.049-0.037,0.1-0.069,0.152-0.097c0.053-0.027,0.107-0.048,0.162-0.063
c0.056-0.016,0.112-0.022,0.17-0.022c0.068,0,0.13,0.009,0.188,0.027c0.058,0.02,0.108,0.048,0.151,0.086
c0.043,0.038,0.077,0.086,0.102,0.144c0.025,0.058,0.037,0.126,0.037,0.203c0,0.069-0.008,0.135-0.024,0.197
c-0.016,0.062-0.043,0.122-0.082,0.183c-0.039,0.06-0.09,0.119-0.153,0.18c-0.063,0.06-0.142,0.123-0.236,0.188
c-0.13,0.093-0.241,0.177-0.331,0.251s-0.163,0.147-0.218,0.222s-0.095,0.152-0.12,0.235c-0.024,0.082-0.036,0.178-0.036,0.285
v0.126h1.603v-0.26h-1.293C13.352,6.186,13.361,6.125,13.38,6.073z M16.249,5.193V5.187c0.349-0.096,0.522-0.31,0.522-0.643
c0-0.176-0.066-0.321-0.197-0.434c-0.131-0.113-0.306-0.17-0.524-0.17c-0.227,0-0.423,0.049-0.59,0.145v0.283
c0.162-0.121,0.333-0.182,0.516-0.182c0.327,0,0.491,0.143,0.491,0.43c0,0.311-0.215,0.466-0.643,0.466h-0.205v0.245h0.216
c0.481,0,0.723,0.166,0.723,0.496c0,0.149-0.055,0.269-0.162,0.356c-0.108,0.089-0.253,0.133-0.435,0.133
c-0.223,0-0.423-0.068-0.601-0.205V6.42c0.146,0.091,0.342,0.136,0.589,0.136c0.273,0,0.494-0.069,0.661-0.209
c0.168-0.14,0.251-0.322,0.251-0.55c0-0.165-0.055-0.302-0.165-0.412C16.584,5.275,16.436,5.211,16.249,5.193z M17.557,4.244
h1.309l-0.973,2.27h0.309l1.027-2.438V3.983h-1.672V4.244z M21.203,5.182c-0.152-0.136-0.367-0.203-0.645-0.203
c-0.068,0-0.143,0.002-0.221,0.007V4.244h0.975V3.983h-1.256v1.269c0.199-0.015,0.334-0.021,0.408-0.021
c0.213,0,0.377,0.047,0.492,0.14s0.172,0.223,0.172,0.388c0,0.167-0.057,0.302-0.168,0.402c-0.113,0.102-0.262,0.152-0.445,0.152
c-0.182,0-0.363-0.057-0.541-0.168v0.307c0.119,0.069,0.299,0.104,0.539,0.104c0.283,0,0.508-0.075,0.672-0.225
c0.164-0.148,0.246-0.346,0.246-0.591C21.432,5.504,21.355,5.318,21.203,5.182z"/>
<path fill="#A9BDC4" d="M16.049,3.94c0.219,0,0.394,0.057,0.524,0.17c0.131,0.112,0.197,0.258,0.197,0.434
c0,0.333-0.174,0.547-0.522,0.643v0.007c0.188,0.018,0.336,0.082,0.447,0.191c0.11,0.11,0.165,0.247,0.165,0.412
c0,0.228-0.083,0.41-0.251,0.55c-0.167,0.14-0.388,0.209-0.661,0.209c-0.247,0-0.443-0.045-0.589-0.136V6.107
c0.177,0.137,0.378,0.205,0.601,0.205c0.182,0,0.326-0.044,0.435-0.133c0.107-0.088,0.162-0.207,0.162-0.356
c0-0.33-0.241-0.496-0.723-0.496h-0.216V5.082h0.205c0.428,0,0.643-0.155,0.643-0.466c0-0.287-0.164-0.43-0.491-0.43
c-0.182,0-0.354,0.061-0.516,0.182V4.085C15.626,3.989,15.823,3.94,16.049,3.94 M13.801,3.94c0.106,0,0.205,0.016,0.295,0.045
c0.09,0.03,0.169,0.074,0.235,0.132s0.119,0.129,0.157,0.214c0.038,0.084,0.057,0.182,0.057,0.291c0,0.1-0.012,0.19-0.035,0.271
c-0.024,0.081-0.06,0.158-0.107,0.229c-0.047,0.071-0.107,0.141-0.18,0.206c-0.073,0.066-0.158,0.133-0.256,0.201
c-0.122,0.085-0.222,0.157-0.301,0.217c-0.079,0.061-0.142,0.116-0.188,0.169s-0.079,0.104-0.098,0.157
c-0.019,0.052-0.028,0.112-0.028,0.181h1.293v0.26h-1.603V6.388c0-0.107,0.012-0.203,0.036-0.285
c0.024-0.083,0.064-0.161,0.12-0.235s0.128-0.147,0.218-0.222s0.2-0.158,0.331-0.251c0.094-0.065,0.173-0.129,0.236-0.188
c0.063-0.061,0.114-0.12,0.153-0.18c0.039-0.061,0.066-0.121,0.082-0.183c0.017-0.063,0.024-0.128,0.024-0.197
c0-0.077-0.012-0.146-0.037-0.203c-0.024-0.058-0.059-0.105-0.102-0.144c-0.042-0.038-0.093-0.066-0.151-0.086
c-0.058-0.019-0.121-0.027-0.188-0.027c-0.058,0-0.115,0.007-0.17,0.022c-0.055,0.016-0.109,0.036-0.162,0.063
C13.38,4.3,13.329,4.332,13.28,4.369c-0.049,0.038-0.095,0.08-0.137,0.126V4.185c0.083-0.079,0.176-0.14,0.28-0.181
C13.526,3.962,13.652,3.94,13.801,3.94 M21.313,3.983v0.261h-0.975v0.741c0.078-0.005,0.152-0.007,0.221-0.007
c0.277,0,0.492,0.067,0.645,0.203c0.152,0.137,0.229,0.322,0.229,0.559c0,0.245-0.082,0.442-0.246,0.591
c-0.164,0.149-0.389,0.225-0.672,0.225c-0.24,0-0.42-0.035-0.539-0.104V6.145c0.178,0.111,0.359,0.168,0.541,0.168
c0.184,0,0.332-0.051,0.445-0.152c0.111-0.101,0.168-0.235,0.168-0.402c0-0.165-0.057-0.295-0.172-0.388s-0.279-0.14-0.492-0.14
c-0.074,0-0.209,0.007-0.408,0.021V3.983H21.313 M19.229,3.983v0.092l-1.027,2.438h-0.309l0.973-2.27h-1.309V3.983H19.229
M12.202,3.983v0.261h-0.976v0.741c0.08-0.005,0.153-0.007,0.221-0.007c0.277,0,0.492,0.067,0.645,0.203
c0.152,0.137,0.228,0.322,0.228,0.559c0,0.245-0.082,0.442-0.245,0.591c-0.164,0.15-0.388,0.225-0.673,0.225
c-0.24,0-0.42-0.035-0.538-0.104V6.145c0.178,0.111,0.358,0.168,0.542,0.168s0.332-0.051,0.444-0.152
c0.112-0.101,0.168-0.235,0.168-0.402c0-0.165-0.057-0.295-0.172-0.388s-0.279-0.14-0.493-0.14c-0.073,0-0.208,0.007-0.408,0.021
V3.983H12.202 M16.049,3.721c-0.265,0-0.5,0.059-0.701,0.174c-0.068,0.039-0.11,0.112-0.11,0.19v0.283
c0,0.083,0.047,0.159,0.122,0.196c0.031,0.017,0.065,0.023,0.099,0.023c0.046,0,0.093-0.015,0.132-0.044
c0.124-0.093,0.25-0.138,0.384-0.138c0.251,0,0.271,0.087,0.271,0.21c0,0.092,0,0.246-0.422,0.246h-0.205
c-0.122,0-0.22,0.099-0.22,0.22v0.246c0,0.121,0.099,0.22,0.22,0.22h0.216c0.502,0,0.502,0.187,0.502,0.275
c0,0.084-0.024,0.14-0.081,0.186c-0.067,0.055-0.166,0.083-0.295,0.083c-0.175,0-0.327-0.052-0.466-0.159
c-0.04-0.03-0.087-0.046-0.134-0.046c-0.033,0-0.067,0.008-0.098,0.023c-0.075,0.037-0.123,0.113-0.123,0.197V6.42
c0,0.076,0.04,0.146,0.104,0.188c0.181,0.111,0.417,0.169,0.705,0.169c0.325,0,0.596-0.088,0.803-0.261
c0.219-0.183,0.331-0.425,0.331-0.719c0-0.225-0.078-0.416-0.231-0.568c-0.029-0.028-0.06-0.055-0.092-0.079
c0.151-0.152,0.231-0.357,0.231-0.605c0-0.239-0.094-0.447-0.272-0.601C16.546,3.795,16.322,3.721,16.049,3.721L16.049,3.721z
M13.801,3.721c-0.176,0-0.331,0.026-0.46,0.078c-0.128,0.052-0.245,0.128-0.348,0.226c-0.044,0.041-0.069,0.1-0.069,0.16v0.311
c0,0.091,0.056,0.172,0.14,0.205c0.026,0.01,0.053,0.015,0.08,0.015c0.061,0,0.12-0.024,0.163-0.07
c0.033-0.036,0.07-0.07,0.109-0.101c0.038-0.029,0.078-0.055,0.119-0.075c0.038-0.021,0.079-0.036,0.119-0.047
c0.036-0.011,0.074-0.016,0.112-0.016c0.044,0,0.084,0.006,0.12,0.018c0.029,0.01,0.053,0.022,0.073,0.041
c0.019,0.017,0.034,0.038,0.046,0.065c0.013,0.03,0.019,0.069,0.019,0.116c0,0.05-0.006,0.098-0.017,0.141
c-0.01,0.039-0.029,0.079-0.055,0.119c-0.029,0.045-0.069,0.092-0.119,0.14c-0.055,0.052-0.126,0.108-0.211,0.168
c-0.136,0.097-0.251,0.185-0.344,0.262c-0.103,0.084-0.189,0.172-0.254,0.26C12.95,5.83,12.898,5.933,12.867,6.04
c-0.03,0.103-0.045,0.219-0.045,0.348v0.126c0,0.121,0.099,0.22,0.22,0.22h1.603c0.122,0,0.22-0.099,0.22-0.22v-0.26
c0-0.122-0.099-0.221-0.22-0.221H13.67c0.034-0.033,0.077-0.07,0.129-0.11c0.076-0.058,0.175-0.129,0.294-0.211
c0.105-0.073,0.198-0.147,0.278-0.22c0.085-0.077,0.158-0.161,0.215-0.247c0.06-0.09,0.105-0.188,0.135-0.29
c0.029-0.101,0.044-0.213,0.044-0.333c0-0.141-0.025-0.269-0.076-0.382c-0.051-0.113-0.123-0.211-0.213-0.289
c-0.088-0.077-0.193-0.136-0.311-0.175C14.053,3.739,13.93,3.721,13.801,3.721L13.801,3.721z M21.313,3.763h-1.256
c-0.121,0-0.221,0.099-0.221,0.221v1.269c0,0.061,0.025,0.119,0.07,0.161c0.041,0.038,0.094,0.059,0.15,0.059
c0.006,0,0.01,0,0.016,0c0.24-0.018,0.346-0.021,0.393-0.021c0.16,0,0.279,0.03,0.354,0.09c0.041,0.034,0.09,0.09,0.09,0.217
c0,0.104-0.031,0.18-0.096,0.239c-0.07,0.063-0.168,0.095-0.297,0.095c-0.141,0-0.281-0.044-0.424-0.134
c-0.035-0.022-0.076-0.034-0.117-0.034c-0.037,0-0.072,0.01-0.105,0.027c-0.07,0.039-0.115,0.113-0.115,0.193v0.307
c0,0.078,0.043,0.151,0.109,0.19c0.154,0.091,0.367,0.135,0.65,0.135c0.34,0,0.615-0.095,0.82-0.282
c0.211-0.192,0.318-0.445,0.318-0.754c0-0.301-0.102-0.544-0.303-0.723c-0.193-0.172-0.459-0.26-0.791-0.26c0,0,0,0-0.002,0V4.465
h0.756c0.123,0,0.221-0.099,0.221-0.221V3.983C21.533,3.861,21.436,3.763,21.313,3.763L21.313,3.763z M19.229,3.763h-1.672
c-0.123,0-0.221,0.099-0.221,0.221v0.261c0,0.122,0.098,0.221,0.221,0.221h0.975l-0.842,1.962
c-0.029,0.067-0.021,0.146,0.02,0.208s0.109,0.099,0.184,0.099h0.309c0.088,0,0.168-0.053,0.203-0.135l1.027-2.438
c0.012-0.026,0.018-0.056,0.018-0.085V3.983C19.449,3.861,19.352,3.763,19.229,3.763L19.229,3.763z M12.202,3.763h-1.257
c-0.122,0-0.22,0.099-0.22,0.221v1.269c0,0.061,0.025,0.119,0.07,0.161c0.041,0.038,0.095,0.059,0.15,0.059
c0.005,0,0.01,0,0.016,0c0.24-0.018,0.346-0.021,0.392-0.021c0.161,0,0.28,0.03,0.354,0.09c0.042,0.034,0.091,0.09,0.091,0.217
c0,0.104-0.031,0.18-0.096,0.239c-0.071,0.063-0.168,0.095-0.296,0.095c-0.142,0-0.281-0.044-0.424-0.134
c-0.036-0.022-0.076-0.034-0.117-0.034c-0.037,0-0.073,0.01-0.106,0.027c-0.07,0.039-0.114,0.113-0.114,0.193v0.307
c0,0.078,0.042,0.151,0.109,0.19c0.154,0.091,0.366,0.135,0.649,0.135c0.34,0,0.617-0.095,0.821-0.282
c0.21-0.192,0.317-0.445,0.317-0.754c0-0.301-0.102-0.544-0.302-0.723c-0.193-0.172-0.459-0.26-0.792-0.26c0,0,0,0-0.001,0V4.465
h0.756c0.122,0,0.221-0.099,0.221-0.221V3.983C12.423,3.861,12.324,3.763,12.202,3.763L12.202,3.763z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 209 KiB

After

Width:  |  Height:  |  Size: 211 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 212 KiB

After

Width:  |  Height:  |  Size: 214 KiB

View File

@@ -1,435 +1,435 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<path fill="#30302F" d="M31.361,13.876L31.361,13.876c-0.036-0.042-0.079-0.078-0.129-0.107c-0.25-0.145-0.521-0.223-0.824-0.239
c-0.169-0.439-0.139-0.992-0.106-1.583c0.024-0.42,0.051-0.896-0.007-1.356c-0.017-0.122-0.076-0.233-0.17-0.314
c-0.342-0.294-0.755-0.365-1.131-0.194c-0.159,0.073-0.294,0.182-0.407,0.306c-0.021-0.068-0.039-0.135-0.056-0.198
c0.344-0.092,0.65-0.267,0.914-0.52c0.666-0.641,0.927-1.688,0.633-2.547c-0.255-0.741-0.867-1.243-1.694-1.405
c0.118-0.129,0.246-0.298,0.264-0.529c0.012-0.142-0.039-0.283-0.138-0.385c-0.1-0.104-0.263-0.167-0.378-0.153
c-0.393,0.014-0.798,0.154-1.173,0.4c0-0.012,0-0.023,0-0.035c-0.003-0.403-0.006-0.819,0.159-1.131
c0.136-0.426-0.014-0.657-0.162-0.774c-0.097-0.077-0.359-0.229-0.747-0.001c-0.401,0.239-1.059,0.982-1.477,1.88
c0-0.004-0.001-0.009-0.001-0.014c-0.108-0.498-0.562-0.607-0.78-0.66c-0.037-0.009-0.149-0.036-0.167-0.046
c-0.001-0.002-0.006-0.012-0.021-0.072c-0.308-0.837-1.066-0.797-1.521-0.773c-0.339,0.013-0.506,0.007-0.577-0.077
c-0.023-0.028-0.051-0.053-0.081-0.075c-0.001-0.014-0.003-0.027-0.007-0.042c-0.137-0.648-0.52-1.2-1.023-1.474
c-0.417-0.23-0.884-0.257-1.348-0.08c-0.166,0.063-0.283,0.208-0.314,0.376C18.579,1.967,18.215,1.947,17.811,2
c-0.135,0.018-0.258,0.091-0.336,0.198c-0.066,0.089-0.101,0.199-0.099,0.311c-0.143-0.024-0.287-0.031-0.432-0.021
c-0.169-0.503-0.593-0.912-1.12-1.074c-0.489-0.149-0.994-0.063-1.337,0.223c-0.209,0.14-0.33,0.311-0.403,0.469
c-0.065-0.03-0.138-0.058-0.22-0.083c-0.729-0.132-1.096,0.148-1.274,0.405c-0.075,0.108-0.119,0.225-0.146,0.33
c-0.08-0.001-0.187-0.005-0.322-0.013c-0.459-0.022-1.126-0.054-1.473,0.326c-0.055-0.013-0.109-0.016-0.166-0.01
c-0.674,0.08-1.319,0.347-1.895,0.795C8.572,3.812,8.55,3.772,8.523,3.734C7.958,2.957,7.321,3.118,7.14,3.186
C6.576,3.399,6.201,4.095,6.267,4.804c0.008,0.09,0.026,0.177,0.053,0.265C5.851,5.111,5.48,5.487,5.399,6.021
C5.346,6.366,5.437,6.691,5.64,6.918C5.4,7.195,5.416,7.462,5.484,7.653C5.39,7.745,5.292,7.845,5.2,7.952
C4.829,7.803,4.344,8.001,4.155,8.38C4.087,8.516,4.01,8.767,4.146,9.077C3.998,9.148,3.869,9.259,3.767,9.406
c-0.285,0.409-0.328,1.018-0.221,1.422c0.134,0.392,0.463,0.549,0.688,0.626c-0.002,0-0.004,0-0.006,0
c-0.525,0-1.048,0.489-1.377,0.974c-0.155,0.229-0.48,0.784-0.35,1.278c-0.009,0.014-0.018,0.028-0.025,0.045
c-0.478,1.008-0.354,1.956-0.243,2.811c0.005,0.038,0.01,0.076,0.015,0.114c-0.095-0.042-0.196-0.073-0.304-0.091
c-0.559-0.092-1.121,0.174-1.399,0.659c-0.271,0.522-0.246,1.104,0.067,1.597c0.354,0.557,0.998,0.903,1.68,0.903l0.075-0.001
c0.324-0.01,0.606-0.082,0.845-0.214c0.065,0.531,0.307,0.9,0.689,1.038c-0.036,0.361,0.179,0.739,0.32,0.986l0.038,0.065
c0.021,0.036,0.041,0.065,0.036,0.048c0.039,0.171,0.122,0.317,0.243,0.428C4.41,22.275,4.335,22.49,4.328,22.7
c-0.007,0.199,0.047,0.872,1.085,1.138l0.066,0.001c0.163,0,0.326-0.031,0.481-0.092c0.059,0.116,0.148,0.218,0.267,0.306
c0,0.001,0.001,0.001,0.001,0.001c-0.028,0.299,0.045,0.58,0.213,0.836l0.056,0.141c0.114,0.292,0.314,0.807,0.695,1.008
c0.01,0.075,0.036,0.148,0.079,0.213c0.38,0.575,0.918,1.036,1.568,1.343c-0.203,0.239-0.314,0.568-0.285,0.894
c0.042,0.462,0.398,0.979,1.293,1.047c0.754-0.013,1.438-0.64,1.563-1.461c0.23,0.496,0.76,0.881,1.666,1.211
c0.054,0.02,0.111,0.029,0.17,0.029s0.17-0.021,0.216-0.036c0.146-0.049,0.26-0.162,0.312-0.304c0.29,0.212,0.69,0.236,1.001,0.255
c0.083,0.005,0.254,0.015,0.329,0.035c0.086,0.021,0.174,0.021,0.252,0.001c0.002-0.001,0.004-0.001,0.006-0.002
c0.039,0.12,0.094,0.231,0.162,0.325c0.167,0.229,0.415,0.365,0.663,0.365c0.032,0,0.063-0.003,0.054-0.006
c0.457,0.037,0.87-0.175,1.118-0.566c0.228-0.359,0.268-0.825,0.114-1.225c0.007-0.002,0.014-0.003,0.021-0.005
c0.35,0.96,1.188,1.027,2.073,1.099l0.252,0.018c0.343-0.012,0.523-0.167,0.615-0.295c0.202-0.286,0.111-0.626,0.035-0.863
c0.047-0.013,0.092-0.033,0.134-0.06c-0.01,0.062-0.014,0.125-0.012,0.19c0.017,0.486,0.359,0.934,0.796,1.04
c0.076,0.019,0.163,0.02,0.225,0.003c1.012-0.215,1.238-0.758,1.283-1.063c0.074-0.506-0.243-1.034-0.812-1.346
c-0.003-0.001-0.005-0.003-0.008-0.004c0.196-0.101,0.398-0.208,0.604-0.326c0.127,0.059,0.256,0.076,0.373,0.064
c0.264-0.012,0.493-0.145,0.652-0.372c0.03,0.014,0.062,0.026,0.095,0.037c0.107,0.035,0.217,0.033,0.325-0.006
c1.211-0.44,1.671-0.776,1.762-1.284c0.036-0.206-0.016-0.383-0.085-0.523c0.257-0.248,0.415-0.594,0.565-0.934
c0.238,0.323,0.653,0.438,1.115,0.304c0.394-0.112,0.729-0.463,0.853-0.894c0.115-0.401,0.031-0.796-0.229-1.082
c-0.042-0.047-0.094-0.086-0.156-0.117l-0.113-0.055c0.073-0.116,0.143-0.252,0.177-0.414c0.003-0.016,0.005-0.03,0.006-0.044
c0.646-0.297,1.117-0.976,1.437-1.437c0.12-0.176,0.116-0.41-0.011-0.582c-0.024-0.033-0.05-0.062-0.075-0.086
c0.384-0.654,0.325-1.374,0.274-1.961c0.102,0.029,0.2,0.036,0.276,0.021c0.486-0.001,0.886-0.295,1.044-0.766
c0.059-0.174,0.079-0.359,0.063-0.545c0.277-0.073,0.492-0.266,0.602-0.544C31.821,14.836,31.644,14.205,31.361,13.876z
M21.716,21.769c-0.169-0.178-0.444-0.208-0.64-0.074c-0.079,0.053-0.267,0.176-0.301,0.424c-0.024,0.182,0.043,0.314,0.112,0.41
c-0.09,0.06-0.182,0.115-0.273,0.172c-0.096,0.058-0.19,0.116-0.283,0.177c-0.036,0.023-0.069,0.053-0.098,0.086
c-0.472-0.057-0.974,0.199-1.382,0.413c-0.28,0.146-0.597,0.312-0.782,0.315c-0.111-0.179-0.3-0.407-0.646-0.362
c-0.174,0.03-0.374,0.16-0.44,0.434c-0.194,0.03-0.39,0.057-0.586,0.08c-0.051,0.006-0.1,0.021-0.147,0.045
c-0.341-0.176-0.89-0.234-1.778-0.279l-0.076-0.004c-0.118-0.006-0.271-0.014-0.389-0.022c-0.007-0.093-0.031-0.179-0.074-0.258
c-0.056-0.104-0.194-0.285-0.485-0.332c-0.194-0.035-0.387,0.046-0.501,0.217c-0.003,0.004-0.006,0.009-0.009,0.014
c-0.139-0.028-0.268-0.069-0.384-0.123c0.004-0.114-0.031-0.228-0.101-0.318c-0.306-0.406-0.801-0.707-1.303-1.013
c-0.23-0.141-0.45-0.274-0.619-0.403c0.009-0.057,0.008-0.113-0.003-0.167c-0.069-0.333-0.305-0.447-0.42-0.484
c0.375-0.09,0.648-0.332,0.757-0.687c0.138-0.451-0.05-0.986-0.438-1.245c-0.202-0.136-0.432-0.184-0.66-0.153
c0.473-0.171,0.644-0.479,0.705-0.676c0.13-0.42-0.048-0.904-0.445-1.205c-0.292-0.222-0.64-0.299-0.969-0.225
C9.013,16.068,9.004,15.563,9,15.298c0-0.054-0.001-0.103-0.002-0.151c0.753-0.016,1.096-0.425,1.172-0.827
c0.039,0.009,0.08,0.016,0.123,0.022c0.529-0.002,0.951-0.306,1.1-0.793c0.176-0.575-0.042-1.248-0.508-1.566
c-0.095-0.065-0.296-0.175-0.565-0.178c0.09-0.109,0.214-0.215,0.386-0.301c0.155,0.172,0.428,0.214,0.632,0.091
c0.02-0.012,0.039-0.025,0.059-0.04l0.004,0.004l0.089-0.079c0.012-0.011,0.024-0.021,0.036-0.032l0.018-0.016
c0.121,0.039,0.243,0.058,0.377,0.058c0,0,0,0,0.001,0c0.267-0.009,0.832-0.18,1.159-0.51c0.011,0.003,0.022,0.006,0.033,0.009
c0.443,0.093,0.945-0.227,1.177-0.546c0.269-0.37,0.15-0.668,0.087-0.78c-0.088-0.153-0.223-0.254-0.396-0.301
c0.21-0.115,0.426-0.22,0.646-0.315c0.199,0.255,0.491,0.355,0.759,0.27c0.041-0.014,0.08-0.033,0.117-0.057
c0.066-0.044,0.122-0.095,0.166-0.152c0.341,0.191,0.7,0.273,1.072,0.274c-0.331,0.296-0.587,0.641-0.728,0.992
c-0.133,0.184-0.122,0.447,0.026,0.624c0.09,0.108,0.227,0.171,0.347,0.171c0.002,0,0.005,0,0.007,0l0.128-0.005
c0.12-0.018,0.231-0.07,0.332-0.118c0.251-0.119,0.737-0.34,1.229-0.307c-0.122,0.113-0.225,0.23-0.307,0.349
c-0.3,0.431-0.407,0.91-0.313,1.384c0.036,0.178,0.165,0.323,0.341,0.38c0.174,0.051,0.364,0.009,0.494-0.116
c0.368-0.351,0.849-0.565,1.351-0.61c-0.042,0.183-0.04,0.359,0.003,0.517c0.012,0.155,0.1,0.299,0.235,0.385
c0.206,0.132,0.513,0.076,0.664-0.12c0.287-0.367,0.742-0.608,1.18-0.615c0.328,0,0.625,0.148,0.858,0.428
c0,0.001,0.001,0.002,0.002,0.002c-0.051,0.311,0.048,0.581,0.194,0.81c-0.232,0.038-0.436,0.139-0.585,0.298
c-0.166,0.176-0.408,0.57-0.165,1.238c0.025,0.067,0.063,0.127,0.114,0.179c0.535,0.536,1.064,0.443,1.356,0.201
c0.018-0.015,0.035-0.031,0.052-0.047c0.044,0.091,0.067,0.163,0.071,0.206c0.001,0.012,0.003,0.024,0.005,0.036
c-0.085,0.087-0.149,0.185-0.193,0.292l-0.025,0.073c-0.046,0.182-0.054,0.366-0.024,0.563c-0.089-0.019-0.174-0.023-0.252-0.017
c-0.261,0.012-0.748,0.138-1.088,0.869c-0.139,0.426-0.039,0.833,0.273,1.117c0.316,0.285,0.799,0.372,1.177,0.21
c0.005-0.002,0.009-0.004,0.014-0.006c-0.006,0.021-0.01,0.043-0.012,0.065c-0.061,0.062-0.105,0.14-0.127,0.22
c-0.038,0.127-0.021,0.267,0.042,0.38c0.034,0.063,0.081,0.116,0.143,0.16c-0.045,0.12-0.101,0.239-0.166,0.356
c-0.012,0.022-0.021,0.044-0.026,0.065c-0.005,0.002-0.009,0.004-0.014,0.007c-0.486,0.271-0.787,0.709-1.078,1.134
c-0.172,0.251-0.337,0.49-0.523,0.674C21.738,21.793,21.727,21.78,21.716,21.769z"/>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.0335" y1="5.4208" x2="16.0335" y2="27.5461">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.2318" style="stop-color:#D6BE77"/>
<stop offset="0.3855" style="stop-color:#FFF7C4"/>
<stop offset="0.6006" style="stop-color:#A5935C"/>
<stop offset="0.7402" style="stop-color:#423B27"/>
<stop offset="0.7667" style="stop-color:#48402A"/>
<stop offset="0.8025" style="stop-color:#595033"/>
<stop offset="0.8435" style="stop-color:#766943"/>
<stop offset="0.8882" style="stop-color:#9D8C58"/>
<stop offset="0.8966" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#A8A66A"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M14.463,8.571c-0.606,0.253-1.219,0.552-1.714,0.986c-0.111-0.159-0.289-0.287-0.483-0.348
c0.532-0.356,1.193-0.517,1.579-1.058c0.059-0.083,0.213-0.329,0.176-0.403c-0.461-0.925-0.783-1.969-1.226-2.922
c0.099,0.015,0.293-0.165,0.373,0.012c0.306,0.944,0.662,1.91,1.058,2.871C14.226,7.709,14.514,8.55,14.463,8.571z M12.812,10.386
c-0.173-0.435-0.441-1.081-0.956-0.861c-0.608,0.481,0.081,1.285,0.234,0.696c-0.005-0.114-0.273-0.081-0.244-0.241
c0.291-0.546,0.843,0.42,0.344,0.662c-0.565,0.36-1.109-0.479-0.809-0.959c0.427-0.972,1.869-1,2.29-1.944l-0.227-0.548
c-0.45,1.086-2.05,1.367-2.628,2.306c0.167,0.156,0.08,0.434-0.128,0.525c0.341,0.42,0.724,0.976,1.216,0.971
C12.14,10.983,12.911,10.706,12.812,10.386z M13.214,10.5c0.53,0.176,1.257-0.853,0.457-0.773c-0.091-0.03-0.279,0.209-0.135,0.204
c0.154-0.111,0.344,0.145,0.175,0.252c-0.339,0.243-0.75-0.259-0.436-0.541l-0.042-0.077c-0.12,0.081-0.232,0.173-0.336,0.263
c0.077,0.188,0.211,0.405,0.233,0.61C13.17,10.478,13.125,10.498,13.214,10.5z M12.578,26.658c0.315-0.781,0.431-1.647,0.729-2.434
c0.029-0.212,0.404-0.684,0.058-0.74c-0.266,0.402-0.294,1.026-0.444,1.489C12.873,25.531,12.439,26.114,12.578,26.658z
M12.054,23.083c-0.406-0.537-1.357-0.935-1.896-1.376c-0.177,0.193-0.632,0.614-0.886,0.852c0.633,0.67,1.263,1.12,2.052,1.239
C11.787,23.874,12.025,23.258,12.054,23.083z M12.841,27.639c0.092,0.015,0.109-0.037,0.129-0.147
c0.181-0.65,0.167-1.398,0.603-1.946c-0.107-0.027-0.213-0.056-0.319-0.088c-0.201,0.404-0.155,1.563-0.74,1.507
C12.462,27.36,12.323,27.604,12.841,27.639z M8.128,21.69c-0.039,0.07-0.087,0.135-0.144,0.193l0.146,0.178
C8.166,21.948,8.143,21.814,8.128,21.69z M16.157,24.414c-0.204-0.342-2.105-0.271-2.454-0.37c-0.095,0.25-0.335,0.964-0.368,1.119
c0.712,0.203,1.183,0.276,1.898,0.276C16.118,25.48,16.393,25.293,16.157,24.414z M8.421,20.497
c0.044,0.001,0.069-0.008,0.082-0.004l0.011-0.018c0.192-0.032,0.48-0.157,0.54-0.371c-0.424-0.683-0.871-1.374-1.139-2.152
c-0.137,0.039-1.045,0.29-1.114,0.309C6.873,18.934,7.583,20.319,8.421,20.497z M7.936,22.307L7.725,22.05
c-0.126,0.05-0.279,0.067-0.416,0.044c-0.06,0.027-0.175,0.042-0.206,0.044c-0.046,0.19-0.153,0.358-0.256,0.504
c0.082,0.106,0.178,0.202,0.251,0.316C7.331,22.761,7.659,22.523,7.936,22.307z M7.381,16.293c0.238-0.004,0.486-0.015,0.439-0.371
c-0.053-0.862-0.059-1.672,0.1-2.404c-0.207-0.039-0.911-0.159-1.127-0.195C6.646,14.142,6.29,16.172,7.381,16.293z M7.208,16.586
c0.009,0.241,0.036,0.479,0.08,0.712c0.175-0.052,0.36-0.104,0.537-0.154l-0.097-0.581C7.556,16.6,7.379,16.61,7.208,16.586z
M8.513,22.081L8.46,22.017c-0.008,0.064-0.026,0.126-0.054,0.188C8.442,22.164,8.478,22.123,8.513,22.081z M8.976,21.569
c-0.133-0.144-0.521-0.571-0.159-0.654c0.193,0.039,0.211,0.331,0.369,0.433c0.1-0.106,0.203-0.213,0.315-0.311L9.104,20.55
c-0.009,0.002-0.02,0.003-0.033,0.003c-0.626,0.472-1.202,0.16-1.655-0.362c0.278,0.394,0.661,0.939,1.303,1.66
C8.799,21.759,8.883,21.669,8.976,21.569z M9.134,21.346l-0.037,0.032v0.001L9.134,21.346z M22.36,6.95
c-0.097,0.211-0.168,0.448-0.298,0.573c0.142,0.118,0.256,0.252,0.409,0.388C22.665,7.588,22.565,7.069,22.36,6.95z M6.493,6.91
C6.255,7.05,5.83,7.259,5.96,7.506c0.311,0.49,0.968,0.659,1.398,1.036c1.687,1.04-0.338,2.666-0.288,4.124
c0.072,0.014,0.328,0.068,0.328,0.068c0.03-0.212,0.057-0.432,0.154-0.624c-0.554-1.33,1.983-2.572,0.424-3.495
c-0.729-0.618-2.51-1.386-0.475-1.732c0.633,0.106,1.314,1.091,1.837,1.452c0.03-0.037,0.061-0.073,0.092-0.109
C8.42,7.708,7.797,5.816,6.493,6.91z M23.268,7.222c-0.119,0.337-0.348,0.607-0.598,0.85c0.247,0.129,0.48,0.233,0.771,0.27
C23.527,7.969,23.458,7.566,23.268,7.222z M22.106,6.533c0.01-0.044,0.017-0.098,0.011-0.143c-0.225-0.004-0.45-0.007-0.674-0.011
C21.374,6.837,22.025,6.923,22.106,6.533z M21.431,6.957c-0.065,0.054-0.095,0.185-0.123,0.321c0.102,0.051,0.567,0.171,0.567,0.171
C22.09,6.98,21.715,6.718,21.431,6.957z M22.936,7.204c0.111-0.148,0.29-0.452,0.27-0.857c-0.21-0.003-0.421-0.006-0.631-0.008
C22.674,6.492,22.743,7.359,22.936,7.204z M23.913,7.221c0.156-0.234,0.182-0.538,0.18-0.811c-0.188-0.01-0.369-0.01-0.555-0.012
c0.149,0.309,0.22,0.691,0.215,1.034C23.815,7.385,23.871,7.284,23.913,7.221z M24.495,6.058c-0.243,0.018-1.021,0.016-2.165,0.016
c-1.244,0-1.881-0.074-1.969,0.109c-0.147,0.305-0.304,0.853-0.604,0.981c-0.3,0.128-1.801-0.016-2.139-0.027
C17.376,7.13,17.518,6.804,17.09,6.78s-0.445,0.221-0.456,0.358c-0.011,0.125,0.055,0.42,0.419,0.45
c0.336,0.028,0.287-0.225,0.658-0.216c0.371,0.009,1.619,0.155,1.925,0.159c0.213,0.003,1.363,0.04,1.786,0.225
c0.373,0.163,0.426,0.315,0.797,0.537c0.36,0.215,0.878,0.575,2.057,0.561c-0.013-0.041-0.021-0.081-0.038-0.121
c-0.866,0.115-1.652-0.241-2.213-0.893c-0.431-0.555-2.058-0.155-1.8-0.848c0.353-0.669,0.192-0.961,1.148-0.839
C21.818,6.061,24.447,6.398,24.495,6.058z M23.949,7.531c-0.112,0.448-0.146,0.748-0.209,0.921c0.15,0.018,0.33,0.025,0.454,0.043
c0,0,0.091-0.216,0.092-0.216C24.377,8.033,24.198,7.697,23.949,7.531z M20.906,4.343c0.368,0.376,0.444,1.082,0.192,1.456
c-0.104,0-0.13,0.003-0.233,0.001c0-0.001-0.026-0.001-0.026-0.002C20.752,5.808,20.572,5.8,20.441,5.8
c-0.05,0.007-0.257,0.012-0.377,0.114c-0.048,0.034-0.103,0.138-0.1,0.138c-0.044,0.082-0.067,0.142-0.084,0.24
c-1.125-0.27-1.18-1.631-0.385-2.108c0.053-0.032,0.481-0.134,0.852-0.01C20.551,4.242,20.743,4.288,20.906,4.343z M20.645,5.192
c0-0.294-0.238-0.533-0.533-0.533c-0.294,0-0.533,0.238-0.533,0.533c0,0.294,0.238,0.533,0.533,0.533S20.646,5.486,20.645,5.192z
M15.609,2.983c-0.072-0.071-0.161,0.044-0.152,0.12c0.042,0.151,0.294,0.098,0.416,0.103c0.517-0.415-0.702-1.17-0.956-0.381
c-0.183,0.568,0.268,0.677,1.165,0.901s1.118,2.062,2.592,0.787c-0.119-0.052-0.195-0.165-0.258-0.28
c-0.172,0.116-0.615,0.368-0.662,0.331c-0.795,0.062-0.752-1.336-1.925-1.141c-0.997,0.151-0.487-1.114-0.05-0.532
C15.783,2.977,15.685,3.058,15.609,2.983z M24.701,8.616c0.081,0.256,0.141,0.554-0.09,0.752c-0.004,0.003-0.008,0.004-0.011,0.007
c0.704,0.601,1.316,1.307,1.763,2.109c0.162,0.291,0.245,0.218,0.165-0.114c-0.033-0.136-0.011-0.335-0.051-0.462
C26.196,10.012,25.711,9.326,24.701,8.616z M24.791,10.859c0.307-0.075,0.591,0.015,0.841,0.178c0.177,0.116,0.217,0.01,0.072-0.185
c-0.378-0.506-0.826-0.96-1.308-1.371c-0.189,0.093-0.234,0.374-0.299,0.55C24.372,10.267,24.624,10.54,24.791,10.859z
M26.654,10.262c-0.016-0.182-0.024-0.365-0.029-0.547c-0.188-0.1-0.367-0.216-0.54-0.345c0.012,0.101,0.036,0.202,0.041,0.303
c0.147,0.187,0.278,0.386,0.388,0.596C26.59,10.415,26.668,10.414,26.654,10.262z M17.341,8.741
c3.163-0.959,1.529,0.828,2.879,1.292c-0.306-0.512-0.362-1.342-0.772-1.749c-0.771-0.175-1.528-0.127-2.221,0.257
c-2.432,0.407-2.673-3.595-0.029-2.867c0.581,0.327,1.151,0.469,1.824,0.433c-0.262-0.301-0.443-0.717-0.413-1.12
c0.004-0.053-0.076-0.076-0.128-0.037c-0.1,0.076-0.205,0.143-0.327,0.182c-0.029,0.159,0.313,0.625-0.042,0.522
c-0.803-0.805-1.764-0.636-2.715,0.147C14.101,7.098,15.596,9.485,17.341,8.741z M18.501,10.312
c0.148,0.044,0.296,0.087,0.433,0.156c0.269-0.171,0.673-0.068,0.365-0.474c-0.13-0.299-0.144-0.898-0.518-1.007
c-0.98,0.034-2.002,0.743-2.351,1.666c-0.006,0.005-0.012,0.01-0.018,0.015c0.003,0.003,0.005,0.006,0.008,0.008
c0.006-0.004,0.013-0.007,0.019-0.011C16.495,10.726,17.474,10.004,18.501,10.312z M18.972,28.031
c0.198,0.042-0.026-0.391-0.224-0.936c-0.055-0.15-0.095-0.117-0.116,0.034c-0.022,0.155-0.086,0.286-0.217,0.375
C18.45,27.894,18.589,28.028,18.972,28.031z M17.256,24.834c-0.042-0.152-0.066-0.445-0.129-0.588
c-0.222,0.036-0.446,0.066-0.669,0.093c0.065,0.159,0.091,0.297,0.083,0.436c0,0.02-0.001,0.04-0.002,0.061L17.256,24.834z
M18.517,26.098c-0.006-0.222,0.035-0.427,0.153-0.594c-0.105,0.031-0.21,0.063-0.315,0.088c0.007,0.137,0.057,0.321,0.114,0.522
C18.498,26.217,18.52,26.207,18.517,26.098z M20.502,23.638c-0.576-0.636-1.681,0.57-2.456,0.554
c0.051,0.234,0.196,0.894,0.242,1.102C19.032,24.974,21.086,24.882,20.502,23.638z M10.039,21.301
c-0.148-0.706-2.152,2.069-2.442,2.367c0.011,0.025,0.015,0.053,0.018,0.08C8.353,22.892,9.392,22.207,10.039,21.301z M7.414,21.8
c0.253-0.004,0.491-0.174,0.503-0.448c-0.636-0.586-1.087-2.191-2.141-1.532C6.247,20.533,6.592,21.532,7.414,21.8z M5.384,19.996
c0.233,0.797,1.148,1.418,1.348,2.253c0.3-0.597-0.977-1.422-1.235-2.302C5.459,19.963,5.421,19.98,5.384,19.996z M7.413,24.048
c-0.029,0.212,0.02,0.417,0.136,0.569c0.505-0.583,0.896-1.447,1.692-1.645c-0.065-0.066-0.129-0.133-0.19-0.202
C8.514,23.113,8.073,24.107,7.413,24.048z M27.674,20.378c1.198-1.046-1.476-0.614-1.735-1.284c-0.02,0.058-0.097,0.26-0.097,0.26
c0.43,0.219,1.909,0.25,1.596,0.959C27.515,20.341,27.6,20.379,27.674,20.378z M28.501,11.87c0.084,0.654,0.241,1.353,0.479,2.138
c0.177-0.044,0.783-0.185,0.991-0.225c-0.398-0.919-0.041-2.091-0.172-3.128C29.097,10.049,28.498,11.257,28.501,11.87z
M22.931,23.414c0.259,0.457,1.265,1.022,0.82,1.589c0.065,0.069,0.164,0.108,0.273,0.108c1.035-0.29-0.998-1.308-0.823-1.97
C23.115,23.233,23.021,23.325,22.931,23.414z M23.853,19.33c1.079,0.306,2.07,0.57,3.128,0.892c0.888-0.196-2.862-0.938-3.12-1.07
L23.853,19.33z M25.45,20.694c0.086,0.036,0.175,0.072,0.26,0.109l0.144-0.238C25.693,20.521,25.481,20.511,25.45,20.694z
M26.316,21.518c0.276-0.108,0.689,0.027,0.942,0.124c0.102-0.149,0.23-0.303,0.268-0.478c-0.603-0.14-0.144-0.025-1.377-0.494
l-0.179,0.296C26.069,21.055,26.289,21.254,26.316,21.518z M25.318,20.965c-0.185,0.35-0.443,0.765-0.786,1.19
c-0.508,0.548-0.634,0.879,0.21,1.463C25.166,22.838,26.913,21.436,25.318,20.965z M3.887,13.157
c0.829,0.252,1.746,0.062,2.549,0.349c0.014-0.061,0.054-0.231,0.054-0.231c-0.467-0.203-2.109,0.102-1.767-0.737
C4.313,12.359,4.033,12.84,3.887,13.157z M7.762,7.316c-0.263-0.272-0.605-0.01-0.896,0.093c0.663,0.565,1.379,0.985,1.935,1.696
c0.045-0.058,0.091-0.119,0.145-0.17C8.67,8.587,7.098,7.567,7.762,7.316z M7.698,12.796c0.085,0.017,0.459,0.092,0.459,0.092
l0.04-0.292c-0.154-0.035-0.279-0.107-0.42-0.218C7.739,12.521,7.716,12.666,7.698,12.796z M8.62,11.986
c0.351-0.881,0.779-1.608,1.306-2.22C9.843,9.691,9.733,9.585,9.643,9.507L9.64,9.51C9.51,9.403,9.32,9.227,9.183,9.122
c-0.401,0.661-2.248,2.726-0.893,3.176C8.454,12.298,8.561,12.122,8.62,11.986z M10.13,10.527c-0.079-0.076-0.166-0.145-0.251-0.212
c-0.614,0.629-0.727,1.735-1.374,2.248c-0.005,0.145-0.042,0.29-0.055,0.435c0.193,0.119,0.156,0.436-0.053,0.517
c0.026,0.437,0.11,0.954,0.498,1.131c1.565,0.047,0.371-1.809,0.098-0.96c-0.13,0.289,0.218,0.513,0.267,0.251
c-0.154-0.058-0.087-0.297,0.064-0.292c0.241,0.026,0.351,0.37,0.181,0.543c-0.463,0.371-0.866-0.084-0.826-0.766
C8.77,12.233,9.31,11.156,10.13,10.527z M11.218,11.051c-0.324-0.275-0.586-0.613-0.849-0.938c-0.084-0.011-0.163-0.073-0.223-0.132
c-0.027,0.032-0.054,0.064-0.081,0.097c0.408,0.289,0.702,0.707,1.011,1.091C11.125,11.139,11.172,11.092,11.218,11.051z
M9.761,20.253c1.163,0.007,0.574-1.65-0.257-0.967c0.025,0.176,0.421,0.601,0.483,0.23c-0.007-0.03-0.026-0.03-0.049-0.028
c-0.275,0.081-0.257-0.356,0.015-0.312c1.035,0.288-0.514,1.93-1.019-0.634c-0.177-0.03-0.342-0.124-0.498-0.287
c-0.05-0.052-0.092-0.017-0.057,0.063c0.247,0.573,0.703,1.152,0.976,1.766C9.479,20.223,9.644,20.253,9.761,20.253z M8.12,17.063
c0.475-0.151,0.792,0.435,0.324,0.706c0.208,0.327,0.419,0.486,0.644,0.486c1.713-0.081,0.674-1.674-0.13-1.154
c0.041,0.264,0.251,0.617,0.46,0.406c0.016-0.017-0.003-0.039-0.029-0.041c-0.129-0.006-0.233-0.195-0.087-0.277
c0.282-0.181,0.591,0.186,0.407,0.447c-1.382,1.093-1.16-2.042-1.228-2.91c-0.161-0.214-0.276-0.46-0.337-0.715
C7.945,14.792,8.3,15.662,8.01,16.405L8.12,17.063z M9.857,12.493c-0.331,0.83,0.471,0.65,0.5,0.482
c0.006-0.033-0.078-0.029-0.101-0.01c-0.119,0.094-0.336-0.079-0.26-0.211c0.142-0.338,0.761-0.171,0.667,0.219
c-0.855,1.543-1.9-1.159-0.098-1.955c-0.072-0.09-0.146-0.18-0.223-0.267c-0.687,0.506-1.171,1.391-1.338,2.445
c0.294-0.11,0.649,0.066,0.794,0.334c0.167,0.09,0.3,0.282,0.492,0.313C11.478,13.838,10.899,11.666,9.857,12.493z M9.846,7.641
c0.644-0.154,1.137-0.734,1.707-1.081c0.364-0.263,0.084-0.686-0.069-0.978C10.994,5.961,8.502,7.038,9.846,7.641z M7.999,7.536
C7.95,7.578,7.896,7.598,7.841,7.621C8.66,8.393,9.64,8.999,10.409,9.814c0.053-0.04,0.123-0.056,0.106-0.118
C10.421,9.36,8.917,8.406,7.999,7.536z M8.226,13.079c-0.735-0.144-2.373-0.304-3.203-0.443c-0.067,0.077-0.079,0.158,0.013,0.219
c0.144,0.072,0.292,0.101,0.509,0.117c1.113,0.082,2.66,0.398,2.698,0.322C8.288,13.204,8.304,13.185,8.226,13.079z M7.945,6.413
c0.466,0.395,0.899,1.042,1.424,1.401c0.075,0.051,0.114,0.042,0.03-0.032C9.193,7.6,9.094,7.294,9.184,7.028
C8.724,6.928,8.438,5.872,7.945,6.413z M4.731,18.423c-0.196,0.057-0.41,0.128-0.372,0.365c0.01,0.14-0.026,0.339,0.04,0.418
c0.745-0.097,1.372-0.593,2.13-0.67c-0.002-0.013-0.026-0.17-0.028-0.188C5.879,18.374,4.901,19.339,4.731,18.423z M5.035,18.317
c0.011,0.06,0.015,0.131,0.028,0.189C9.361,17.249,9.322,16.922,5.035,18.317z M8.651,6.127c0.197,0.262,0.377,0.419,0.611,0.606
h0.003L9.27,6.734V6.732c0.02,0.001,0.049-0.005,0.063,0.006c0.534-0.646,1.328-0.974,2.012-1.426
c-0.127-0.25-0.22-0.473-0.375-0.724C10.165,5.034,9.268,5.416,8.651,6.127z M6.218,12.041c0.084,0.02,0.163,0.04,0.255,0.043
c0.103,0.003,0.234-0.013,0.286-0.095c-0.173,0.005-0.336-0.05-0.492-0.147L6.218,12.041z M7.376,10.663
c0.251-0.449,0.515-0.929,0.265-1.39L7.64,9.275C7.541,9.067,7.363,8.946,7.194,8.8c-0.34,0.677-1.594,2.556-0.503,2.88
C7.131,11.667,7.107,10.956,7.376,10.663z M5.106,20.111c-0.014,0.005-0.118,0.042-0.118,0.042c-0.222-0.066-0.466,0.184-0.565,0.35
c-0.183,0.242,0.314,0.879,0.359,1.054c0.071,0.315,0.451,0.29,0.707,0.249c0.695,0.131,0.723,1.175,0.044,1.202
C5.354,23.02,4.993,22.8,5.07,22.553c0.061-0.098,0.233-0.094,0.278,0.019c0.123,0.247,0.465,0.083,0.37-0.159
c-0.393-0.89-1.623,0.565-0.279,0.923c0.353,0.019,0.671-0.197,0.842-0.483C6.838,21.819,5.314,21.105,5.106,20.111z M6.655,22.887
c-0.21,0.22-0.454,0.524-0.133,0.763c0.104-0.175,0.216-0.343,0.362-0.489C6.789,23.087,6.73,22.978,6.655,22.887z M8.237,25.008
c1.135-2.393,2.666-0.635,4.389-0.114c0.054-0.214,0.229-0.91,0.289-1.166c-0.253-0.044-0.485-0.122-0.69-0.232
c-0.617,1.341-1.995,0.112-2.847-0.24c-0.771,0.054-1.205,1.355-1.817,1.745c-1.076-0.625-0.033-1.82,0.522-2.417
c-0.666,0.505-1.795,1.152-1.179,2.118c0.145,0.352,0.335,0.974,0.681,0.937C7.819,25.649,8.075,25.371,8.237,25.008z M7.08,19.736
c-0.2-0.311-0.361-0.638-0.472-0.9c-0.674-0.104-2.318,1.319-2.543,0.31c-0.072-0.425,0.003-0.898,0.5-0.993
c0.597-0.208,1.21-0.392,1.807-0.579c-0.031-0.062-0.059-0.124-0.084-0.187c-0.587,0.453-1.517,0.264-2.14,0.677
c-0.492,0.142-0.682,1.833-0.069,2.035C6.271,19.34,6.574,19.125,7.08,19.736z M7.917,25.804c-0.068,0.061-0.143,0.118-0.229,0.172
c0.363,0.551,0.906,0.993,1.534,1.247c0.606,0.126,1.553,0.813,0.838,1.407c-0.284,0.27-1.044-0.289-0.561-0.493
c0.066,0,0.138,0.041,0.15,0.133c0.068,0.245,0.411,0.057,0.353-0.121c-0.567-1.237-1.739,0.762-0.164,0.885
c0.517-0.009,0.994-0.454,1.073-0.967C10.895,26.882,8.517,26.89,7.917,25.804z M4.013,17.308c-0.002,0.147,0.044,0.294,0.098,0.432
c0.067-0.032,0.136-0.059,0.205-0.086c-0.026-0.093-0.106-0.352-0.139-0.475C4.104,17.19,4.053,17.267,4.013,17.308z M11.166,25.25
c0.238-0.026,0.503-0.148,0.615-0.355c-0.775-0.247-2.01-1.451-2.664-0.581C9.772,24.672,10.433,25.09,11.166,25.25z M10.464,26.861
c0.253,0.014,0.329-0.265,0.328-0.348c-0.072-0.824-1.596-1.052-2.168-1.536C7.706,26.139,9.671,26.591,10.464,26.861z
M4.608,17.561c0.08-0.022,0.16-0.042,0.24-0.061c-0.043-0.179-0.079-0.36-0.106-0.54c-0.078,0.075-0.166,0.13-0.263,0.164
L4.608,17.561z M5,11.757c0.067,0.014,0.685,0.138,0.921,0.211c0.033-0.125,0.063-0.296,0.11-0.397
c-0.034-0.1-0.055-0.197-0.065-0.291c-0.272,0.128-0.626,0.208-0.94,0.149C5.017,11.538,5.02,11.648,5,11.757z M3.439,14.174
c-0.175-0.023-0.381-0.015-0.511-0.209c-0.774,1.634,0.286,3.207-0.309,4.329c-0.536,0.793-1.784-0.079-1.058-0.761
c0.103-0.08,0.255-0.022,0.296,0.099c0.069,0.138-0.148,0.224-0.129,0.348c0.089,0.568,0.851,0.073,0.708-0.324
c-0.152-0.778-1.134-0.724-1.447-0.181c-0.474,0.915,0.42,1.807,1.362,1.77C4.747,19.173,2.524,15.647,3.439,14.174z M4.61,11.049
c0.229,0.048,0.472,0.093,0.702,0.093C6.318,11.221,6.22,9.37,6.943,8.623c-0.2-0.135-0.402-0.256-0.615-0.384
c-0.875,0.548-0.658,2.484-1.519,2.522c-0.503,0.053-0.813-0.798-0.218-0.867c0.266-0.017,0.248,0.368-0.011,0.318
c-0.055,0.127,0.12,0.254,0.217,0.24c0.248-0.001,0.282-0.287,0.342-0.474C5.27,9.726,4.755,9.495,4.504,9.483
c-0.461,0.045-0.579,0.825-0.484,1.184C4.115,10.946,4.447,10.986,4.61,11.049z M3.93,17.027c0.192,0.01,0.423-0.176,0.575-0.218
c0.414-0.581-0.072-1.861,0.069-2.622c-0.948-0.306-1.037,0.468-0.934,1.19C3.75,15.784,3.511,16.884,3.93,17.027z M5.28,9.497
c0.149-0.495,0.362-1.038,0.783-1.429C6.01,8.031,5.954,7.99,5.903,7.942c-0.183,0.18-0.371,0.365-0.49,0.56
c0.043,0.301-0.427,0.521-0.599,0.241c-0.06-0.148,0.125-0.286,0.254-0.176C5.222,8.136,3.733,8.597,5.28,9.497z M6.667,17.483
l0.327-0.098c-0.059-0.271-0.089-0.564-0.092-0.893c-0.735-0.58-0.576-1.795-0.524-2.66c-0.8-0.41-2.074,0.014-2.768-0.522
c-0.104-0.657,0.782-1.43,1.435-0.982c0.579,0.081,1.158,0.176,1.723,0.281c0.008-0.092,0.019-0.183,0.033-0.275
c-0.8,0.183-1.71-0.38-2.522-0.377c-0.664-0.111-2.105,2.012-0.756,1.863C7.505,13.783,5.6,14.853,6.667,17.483z M4.848,14.221
c-0.026,1.026,0.137,2.104,0.297,3.209c0.267-0.113,0.895-0.002,0.936-0.414c0,0-0.089-1.196-0.125-1.567
c-0.04-0.386,0.066-1.165-0.467-1.145v-0.002C5.355,14.28,4.988,14.237,4.848,14.221z M11.892,25.257
c-0.927,0.753-2.046-0.258-2.962-0.697c-0.045,0.057-0.089,0.115-0.131,0.174c4.036,1.765,1.13,1.885,2.701,2.602
C11.448,26.679,12.222,25.832,11.892,25.257z M21.972,24.377c0.4,1.163-1.512,1.601-2.24,2.088c0.02,0.079,0.043,0.158,0.067,0.236
c0.683-0.27,1.38-0.622,2.187-1.105c0.265-0.177,0.489-0.004,0.643,0.232c0.191,0.35,0.561,0.396,0.728,0.017
c-0.517-0.455-0.94-1.031-1.298-1.544C22.03,24.327,22.001,24.352,21.972,24.377z M20.251,27.465l0.086,0.162
c0.461-0.356,1.718-0.188,1.687,0.515c-0.106,0.242-0.609,0.388-0.635-0.1c-0.015-0.059,0.019-0.187-0.019-0.225
c-0.487,0.155-0.263,0.879,0.139,0.977C23.604,28.347,21.547,26.346,20.251,27.465z M23.948,23.323
c-0.625-0.84,1.31-2.168,1.449-3.338c-0.198-0.075-0.38-0.142-0.566-0.196c-0.154,0.275-0.292,0.555-0.419,0.857
c0.417,1.206-1.687,2.062-0.561,3.118c0.537,0.442,1.362,1.482,0.158,1.664c-0.734-0.152-1.088-1.001-1.614-1.476
c-0.031,0.05-0.076,0.088-0.116,0.13c0.563,0.7,0.91,1.463,1.676,1.717C26.395,24.912,25.292,24.568,23.948,23.323z M22.235,25.822
c-0.764,0.411-1.523,0.859-2.342,1.172l0.091,0.26c0.809-0.285,1.616-0.662,2.463-1.152C22.39,26.019,22.31,25.831,22.235,25.822z
M26.582,21.779c-0.579,0.152-1.062,1.662-1.537,2.074c0.094,0.078,0.217,0.187,0.336,0.313c0.591-0.447,0.662-1.937,1.548-1.943
c0.26-0.02,0.542,0.066,0.63,0.339c0.218,0.725-1.066,0.58-0.504,0.179c0.134,0.075,0.298,0.01,0.176-0.152
c-0.688-0.25-0.793,1.026,0.116,0.761c0.434-0.123,0.732-0.781,0.389-1.159C27.362,22.013,27.012,21.82,26.582,21.779z
M30.982,14.203c-0.805-0.464-1.802,0.101-2.812,0.412c-0.341,0.141-0.422,0.491-0.253,1.106c0.21,1.002,0.157,2.041,0.065,3.017
c0.084,0.009,0.169,0.021,0.253,0.033l0.082,0.012c0.601-1.341-1.021-4.602,1.653-3.956c0.077-0.537,0.843-0.638,0.997-0.072
c0.083,0.192-0.066,0.53-0.281,0.331c-0.044-0.104-0.003-0.255-0.078-0.362c-0.106-0.091-0.264-0.04-0.316,0.085
c-0.046,0.23,0.34,0.542,0.543,0.588C31.363,15.338,31.255,14.52,30.982,14.203z M17.447,25.699c0,0-0.099-0.44-0.125-0.562
c-0.205,0.008-0.618,0.003-0.828,0.003c-0.259,1.155-1.851,0.322-2.674,0.579c-0.422,0.542-0.361,1.31-0.58,1.938
c-0.117,0.441-0.609,0.274-0.922,0.14c-0.43-0.357,0.107-2.098,0.24-2.606c-0.162-0.059-0.322-0.12-0.482-0.182
c0.917,1.396-1.867,2.697,1.171,3.803c0.027,0,0.049-0.008,0.058-0.011C14.104,24.799,13.671,26.074,17.447,25.699z M26.284,17.999
c-0.131-1.284,0.251-2.755-0.611-3.851c-0.549-0.747-1.811-2.851-2.572-1.432c-0.264,0.823,1.498,1.384,1.639,2.835
c1.389,0.398,1.487,1.625,1.341,2.939c-0.057,1.059,1.565,0.554,2.097,1.092c0.229,0.36-0.024,1.092-0.494,1.112
c-0.204-0.022-0.428-0.131-0.62-0.169c-0.493-0.014-0.931-0.268-1.383-0.429c-0.016,0.047-0.031,0.093-0.048,0.14
c0.698,0.009,1.302,0.568,1.987,0.624c0.607-0.157,1.074-0.848,1.424-1.352C28.374,18.599,26.427,19.505,26.284,17.999z
M28.631,15.655c-0.015,1.069,0.385,2.142-0.016,3.196c0.088,0.027,0.175,0.063,0.264,0.109c0.672-0.983-0.048-2.216,0.363-3.199
c0.408-0.62,1.336,0.049,0.81,0.578c-0.141,0.141-0.358-0.096-0.208-0.225c0.207-0.231-0.193-0.42-0.342-0.192
c-0.302,0.322,0.106,0.812,0.417,0.759c0.688-0.002,0.802-0.968,0.326-1.328C29.833,14.916,28.733,14.879,28.631,15.655z
M14.028,27.682c-0.112,0.02-0.15,0.171-0.15,0.171c-0.042,0.181,0.012,0.44,0.095,0.615c0.199,0.325,0.912,0.217,1.258,0.313
c0.343-0.089,0.182-0.62,0.862-0.633c0.805-0.015,0.944,0.99,0.128,1.011c-0.269,0.042-0.253-0.353,0.027-0.3
c0.232-0.009,0.279-0.343,0.034-0.4c-0.139-0.024-0.35-0.014-0.434,0.106c-0.14,0.295-0.003,0.939,0.42,0.884
c0.67,0.031,0.972-0.683,0.692-1.212C16.441,27.211,14.899,28.054,14.028,27.682z M13.969,26.929c0.21,0.009,0.42,0.013,0.63,0.013
c0.664-0.006,1.36-0.032,2.027-0.136c0.173-0.139,0.027-0.53,0.034-0.739C15.79,26.255,14.075,25.632,13.969,26.929z M17.017,26.761
c0.116-0.012,0.223-0.021,0.339-0.035c-0.027-0.145-0.101-0.563-0.124-0.701c-0.071,0-0.173,0.011-0.267,0.021
C16.98,26.227,17.011,26.613,17.017,26.761z M21.724,24.571c-0.598,0.564-1.823,0.76-2.058,1.582
C20.297,25.782,21.89,25.245,21.724,24.571z M22.196,23.727l-0.366-0.415c-0.291,0.228-0.595,0.444-0.905,0.643
c0.112,1.231-1.518,0.97-2.003,1.72c-0.418,0.898,0.524,1.675,0.428,2.509c-0.216,0.279-0.771,0.138-1.041-0.033
c-0.131-0.171-0.135-0.396-0.197-0.594c-0.153-0.037-0.235-0.162-0.286-0.301c0.088,1.437,0.697,1.405,1.978,1.511
c0.306-0.009,0.292-0.194,0.193-0.504C18.473,24.748,20.202,25.765,22.196,23.727z M13.937,27.233l-0.021,0.264
c0.989,0.124,2.213-0.352,3.071,0.204c0.203,0.006,0.428-0.021,0.611-0.091c-0.042-0.184-0.094-0.376-0.158-0.585
C16.294,27.157,15.133,27.303,13.937,27.233z M21.625,23.082c-0.079-0.089-0.174-0.219-0.25-0.283
c-0.247,0.185-0.516,0.331-0.773,0.497c0.115,0.109,0.185,0.203,0.243,0.342C21.108,23.464,21.369,23.277,21.625,23.082z
M22.501,14.896c0.78,0.784,1.125-0.573,0.506-0.225c0.302,0.281-0.309,0.418-0.328,0.058c-0.009-1.237,1.399,0.339,1.444,0.833
c0.1-0.033,0.2-0.05,0.297-0.052C24.09,13.674,21.918,13.574,22.501,14.896z M24.173,18.922c0.594-0.961-0.982-2.761-1.649-1.344
c-0.26,0.796,0.98,1.026,0.983,0.383c-0.16,0.033-0.433,0.111-0.544-0.044c-0.089-0.158-0.064-0.406,0.07-0.48
c0.697-0.194,1.176,0.977,0.96,1.443L24.173,18.922z M23.898,16.13c-0.238,0.935,1.15,1.845,0.575,2.864
c0.213,0.054,0.881,0.226,1.074,0.278c0.326-0.834,0.528-2.254-0.219-3.025C25.116,15.931,24.138,15.546,23.898,16.13z
M24.523,19.705c-0.147-0.039-0.294-0.078-0.439-0.125c-0.062,0.2-0.148,0.399-0.255,0.591c0.148,0.058,0.277,0.152,0.36,0.223
C24.287,20.159,24.414,19.932,24.523,19.705z M23.733,11.955c-0.024-0.026-0.054-0.047-0.083-0.069
c-1.2,0.186-1.596-0.78-2.707-0.662c-0.409,0.334-0.975,0.812-0.791,1.376c-0.002,0.004-0.004,0.007-0.006,0.011
c0.003-0.003,0.006-0.006,0.008-0.01c0.638-0.82,1.967-1.22,2.816-0.199C23.145,12.161,23.426,11.95,23.733,11.955z M24.592,10.929
c-0.154-0.246-0.342-0.47-0.555-0.667c-0.121,0.47-0.016,0.964,0.063,1.18C24.151,11.326,24.303,11.051,24.592,10.929z
M23.923,9.121c-0.774-0.049-1.558-0.172-2.081-0.803c-0.734-0.615-1.768-0.428-2.657-0.532c-0.511,0.01-1.056-0.163-1.55-0.084
c-0.546,0.44-1.411,0.106-1.348-0.644c0.062-0.673,1.091-0.756,1.411-0.223c0.657-0.04,1.734,0.389,2.127-0.297
c-0.656-0.317-1.45-0.132-2.113-0.361c-0.406-0.261-0.855-0.46-1.349-0.351c-1.787,0.431-0.507,3.13,1.011,2.441
c0.594-0.428,1.302-0.278,1.983-0.222c0.352,0.003,0.451,0.353,0.571,0.623c0.274,0.631,0.65,2.339,1.546,1.944
c-0.015-0.368-0.03-0.955,0.218-1.242c0.069-0.127,0.391-0.468,0.433-0.162c-0.284,1.26,0.179,2.402,1.443,2.196
c-0.159-0.715-0.025-1.487,0.336-2.122C23.918,9.23,23.925,9.176,23.923,9.121z M21.081,7.253c-0.009-0.407-0.491-0.256-0.523,0.003
C20.691,7.255,20.882,7.255,21.081,7.253z M18.597,4.113c0.044,0.068,0.092,0.154,0.143,0.194c0.002,0,0.009,0.003,0.012,0.004
c1.287-0.994,2.348,0.218,2.306-0.427c0.004-0.026,0.007-0.053,0.009-0.079c-0.405-0.107-0.843-0.252-1.265-0.207
C19.367,3.673,18.967,3.878,18.597,4.113z M23.596,20.436c-0.711,0.397-0.995,1.351-1.678,1.888
c0.163,0.166,0.651,0.685,0.812,0.862C23.231,22.597,25.042,20.812,23.596,20.436z M17.951,12.374
c0.568-0.541,1.378-0.852,2.193-0.752c0.054-0.23,0.608-0.323,0.448-0.555c-0.489-0.197-0.495-0.483-0.899-0.618
C18.79,10.595,17.758,11.41,17.951,12.374z M20.986,6.341c-0.174,0-0.298,0.115-0.361,0.267c-0.013,0.031-0.027,0.061-0.034,0.095
c0.004,0.002,0.007,0.004,0.011,0.006C20.624,6.766,21.081,6.584,20.986,6.341z M17.737,24.197l-0.041,0.027
c0.003-0.032,0.008-0.121,0.017-0.148c-0.719-1.345,0.286,3.069,0.489,3.175C18.625,27.259,17.742,24.636,17.737,24.197z
M23.633,24.731c-0.416-0.842-1.409-1.57-1.981-2.239c-0.079-0.098-0.212-0.287-0.3-0.38c-0.106,0.07-0.103,0.076-0.02,0.171
c0.741,0.796,1.444,1.726,2.211,2.472L23.633,24.731z M26.511,15.383c0.237-0.294,0.722-0.327,1.01-0.174
c-0.237-1.431-0.987-3.687-2.521-4.097c-0.529-0.036-0.864,0.579-0.679,1.032C25.336,12.985,26.308,14.173,26.511,15.383z
M25.903,7.36c0.002-0.104,0.003-0.207,0.004-0.239c0.031-0.242,0.237-0.871,0.475-1.145c0.186-0.61-0.071-1.658,0.259-2.243
c0.266-0.832-1.298,0.607-1.702,2.119c-0.028,0.103,0.094,0.143,0.018,0.31c-0.025,0.054-0.1,0.118-0.105,0.177
c-0.014,0.17-0.008,0.339,0.021,0.501C25.247,6.952,25.585,7.138,25.903,7.36z M14.937,8.625c0.045,0.103,0.158,0.26,0.288,0.217
c0.034-0.022,0.031-0.103,0-0.23c-0.055-0.225-0.322-0.568-0.508-1.015c-0.145-0.35-0.211-0.898-0.394-1.305
c-0.779-1.724-1.425-3.32-0.875-3.469c0.384-0.104,0.527,0.32,0.19,0.227c-0.009,0.014-0.022,0.026-0.04,0.032
c0.106,0.871,1.205-0.225,0.179-0.568c-1.392-0.242-0.839,1.377-0.438,2.07c0.393,0.981,0.683,1.862,1.034,2.795
C14.533,7.802,14.784,8.2,14.937,8.625z M17.726,4.237c0.992-0.766,2.112-1.304,3.36-0.902c-0.166-0.794-0.839-1.519-1.704-1.19
c0.008,0.184,0.469,1.278,0.027,0.976c-0.215-0.628-0.946-0.703-1.533-0.625c0.034,0.2,0.732,1.193,0.232,1.015
c-0.316-0.455-0.945-0.653-1.463-0.453c-0.007-0.003-0.021,0.015-0.025,0.019c-0.004,0.009-0.006,0.018-0.006,0.027
c0.001,0.002,0.003,0.008,0.003,0.012c0.066,0.145,0.355,0.425,0.582,0.7c0.14,0.17,0.252,0.341,0.333,0.432
C17.57,4.292,17.692,4.263,17.726,4.237z M14.952,2.439c0.608-0.429,1.306,0.026,1.24,0.725c-0.005,0.013,0.239,0.057,0.227,0.022
c0.022-0.019,0.035-0.05,0.044-0.078c0,0,0.001,0,0.002,0.001c0.052-0.141,0.06-0.297,0.02-0.422
c-0.206-0.7-1.125-1.121-1.719-0.634c-0.527,0.35-0.194,1.118-0.605,1.476c-0.202,0.131-0.472,0.089-0.652-0.061
c0.425,1.105,0.725,1.714,1.108,2.792c0.138-1.085,1.14-1.307,2.216-1.456c0,0-0.498-0.754-0.833-0.854
c-0.335-0.1-1.081-0.2-1.241-0.497C14.583,3.127,14.606,2.641,14.952,2.439z M16.638,3.059c0.002-0.001,0.005,0,0.007-0.001
c0,0,0.001-0.001,0.001-0.001C16.644,3.058,16.642,3.058,16.638,3.059z M9.631,8.459c0.53,0.397,0.652,0.488,0.984,0.8
c0.52-1.017,2.78-1.287,2.562-2.71l-0.664-1.608c-0.179-0.299,0.153-0.453,0.377-0.423c0.029-0.012,0.058-0.034,0.052-0.108
l0.021-0.034c-0.168-0.306-0.301-0.803-0.372-1.128c-0.408,0.055-1.545-0.191-1.664,0.263c0.119,0.871,0.874,1.75,1.115,2.614
C11.922,7.261,10.219,7.54,9.631,8.459z M16.636,3.059L16.634,3.06L16.636,3.059L16.636,3.059z M7.607,5.624
c1.112-0.334,1.759-1.591,2.986-1.787c-0.025-0.089-0.041-0.182-0.051-0.281C9.886,3.633,9.247,3.921,8.739,4.368
C8.348,4.847,7.328,5.4,7.105,4.485c-0.088-0.358,0.63-0.784,0.708-0.324c-0.022,0.123-0.139,0.146-0.24,0.113
C6.927,4.679,8.371,4.991,8.119,4.028C7.088,2.609,5.93,5.328,7.607,5.624z M8.011,5.996c0.121-0.055,0.253-0.078,0.378-0.042
c0.654-0.76,1.583-1.171,2.442-1.639c-0.035-0.075-0.063-0.145-0.084-0.21C9.723,4.643,8.838,5.232,7.979,5.939
C7.852,6.044,7.87,6.06,8.011,5.996z M28.096,11.132c-0.059-0.416-0.36-0.602-0.631-0.602c-1.544,0.385,0.182,3.04,0.253,4.035
c0.255-0.29,0.747-0.409,0.968-0.468C28.273,12.821,28.073,11.15,28.096,11.132z M27.353,9.995
c-0.175-0.036-0.347-0.099-0.509-0.171c0.007,0.169,0.018,0.338,0.035,0.507c0.005,0.051,0.089,0.093,0.129,0.069
c0.132-0.082,0.289-0.133,0.442-0.131C27.446,10.256,27.392,10.104,27.353,9.995z M27.679,18.711
c-0.013-0.701,0.386-3.119-0.454-3.269c-0.258,0.012-0.547,0.052-0.685,0.395C26.756,16.922,25.93,18.565,27.679,18.711z
M28.001,10.094c-0.175-0.01-0.23-0.024-0.402-0.061c0.03,0.083,0.059,0.166,0.089,0.249c0.151,0.021,0.176,0.071,0.297,0.162
c0.049,0.037,0.096-0.002,0.079-0.067C28.039,10.284,28.019,10.189,28.001,10.094z M22.211,4.727
c-0.181,0.105-0.538,0.039-0.726-0.068c0.247,0.43,0.12,0.858-0.045,1.14c0.931-0.003,1.861-0.004,2.792-0.011
c-0.15-0.205,0.007-0.482,0.011-0.705c-0.092-0.42-0.823-0.125-0.951-0.712c-0.326-0.896-1.485-0.07-2.013-0.702
c-0.005,0.136-0.005,0.334-0.098,0.447c-0.022,0.027,0.283,0.209,0.362,0.243C21.938,4.531,22.242,4.371,22.211,4.727z M6.211,6.72
C6.317,6.653,6.439,6.581,6.56,6.515c-0.015-0.012-0.03-0.026-0.043-0.04C6.163,6.481,5.996,5.876,6.374,5.788
c0.113-0.03,0.23,0.178,0.111,0.266c-0.061,0.04,0.014,0.132,0.074,0.119C7.004,6.11,6.702,5.555,6.416,5.565
C5.844,5.54,5.67,6.576,6.211,6.72z M26.29,7.649c-0.041-0.61,0.226-1.215,0.744-1.574c0.215-0.149,0.451-0.234,0.693-0.275
c0.016-0.25,0.406-0.441,0.421-0.65C27.068,5.19,26,6.436,26.113,7.512C26.172,7.557,26.232,7.602,26.29,7.649z M26.828,7.956
c0.421,0.673,1.942,0.285,1.503-0.601c-0.139-0.352-0.81-0.081-0.615,0.214c0.116,0.077-0.023,0.243-0.138,0.167
c-0.144-0.095-0.18-0.242-0.149-0.381c0.104-0.475,0.806-0.56,1.072-0.19c0.676,0.979-0.553,1.699-1.353,1.35
C26.203,8.2,25.551,7.31,24.185,7.163c-0.001,0.002-0.001,0.004-0.002,0.005c0.335,0.323,0.411,0.746,0.418,0.845
c0.669,0.12,2.208,1.441,2.592,1.604c2.557,0.991,3.663-3.148,0.856-3.444C27.121,6.038,26.302,7.148,26.828,7.956z"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="16.6016" y1="13.4223" x2="16.8244" y2="8.3431" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<rect x="2.26" y="20.143" fill="url(#SVGID_2_)" width="28.845" height="4.556"/>
<g>
<rect x="2.64" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="6.662" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="10.703" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="14.74" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="18.781" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="22.799" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="26.84" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
</g>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="16.5495" y1="9.7871" x2="16.5495" y2="13.2217" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#3B3421;stop-opacity:0"/>
<stop offset="0.2211" style="stop-color:#353229;stop-opacity:0.3006"/>
<stop offset="0.5223" style="stop-color:#30302F;stop-opacity:0.71"/>
<stop offset="0.9709" style="stop-color:#3A3422;stop-opacity:0.0432"/>
<stop offset="1" style="stop-color:#3B3421;stop-opacity:0"/>
</linearGradient>
<rect x="2.797" y="20.732" opacity="0.77" fill="url(#SVGID_3_)" enable-background="new " width="27.505" height="3.515"/>
<g>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="8.666" y1="12.0149" x2="8.666" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="9.325,23.149 7.974,21.014 7.61,21.014 7.61,23.871 8.007,23.871 8.007,21.768
9.354,23.871 9.722,23.871 9.722,21.014 9.325,21.014 "/>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="4.6815" y1="12.0149" x2="4.6815" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<path fill="url(#SVGID_5_)" d="M4.511,21.013l-1.054,2.859H3.89l0.215-0.627h1.154l0.215,0.627h0.432l-1.054-2.859H4.511z
M4.236,22.914l0.446-1.298l0.446,1.298H4.236z"/>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="12.6932" y1="12.0149" x2="12.6932" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<path fill="url(#SVGID_6_)" d="M13.274,21.811h0.411c-0.12-0.919-1.439-1.176-1.856-0.342c-0.188,0.304-0.108,0.993-0.124,1.345
c-0.048,1.291,1.746,1.458,1.98,0.216h-0.411c-0.2,0.724-1.208,0.535-1.158-0.216c0.018-0.247-0.053-0.924,0.073-1.139
C12.403,21.175,13.161,21.303,13.274,21.811z"/>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="28.7335" y1="12.0149" x2="28.7335" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="27.725,21.013 27.725,21.394 28.533,21.394 28.533,23.872 28.934,23.872 28.934,21.394
29.742,21.394 29.742,21.013 "/>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="16.6395" y1="12.0149" x2="16.6395" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<polygon fill="url(#SVGID_8_)" points="16.022,21.394 16.439,21.394 16.439,23.49 16.022,23.49 16.022,23.872 17.257,23.872
17.257,23.49 16.84,23.49 16.84,21.394 17.257,21.394 17.257,21.013 16.022,21.013 "/>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="24.688" y1="12.0149" x2="24.688" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<polygon fill="url(#SVGID_9_)" points="25.346,23.149 23.996,21.014 23.632,21.014 23.632,23.871 24.029,23.871 24.029,21.768
25.376,23.871 25.744,23.871 25.744,21.014 25.346,21.014 "/>
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="20.7125" y1="12.0149" x2="20.7125" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<polygon fill="url(#SVGID_10_)" points="19.794,23.872 21.631,23.872 21.631,23.49 20.195,23.49 20.195,22.643 21.414,22.643
21.414,22.261 20.195,22.261 20.195,21.394 21.631,21.394 21.631,21.013 19.794,21.013 "/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<path fill="#30302F" d="M31.361,13.876L31.361,13.876c-0.036-0.042-0.079-0.078-0.129-0.107c-0.25-0.145-0.521-0.223-0.824-0.239
c-0.169-0.439-0.139-0.992-0.106-1.583c0.024-0.42,0.051-0.896-0.007-1.356c-0.017-0.122-0.076-0.233-0.17-0.314
c-0.342-0.294-0.755-0.365-1.131-0.194c-0.159,0.073-0.294,0.182-0.407,0.306c-0.021-0.068-0.039-0.135-0.056-0.198
c0.344-0.092,0.65-0.267,0.914-0.52c0.666-0.641,0.927-1.688,0.633-2.547c-0.255-0.741-0.867-1.243-1.694-1.405
c0.118-0.129,0.246-0.298,0.264-0.529c0.012-0.142-0.039-0.283-0.138-0.385c-0.1-0.104-0.263-0.167-0.378-0.153
c-0.393,0.014-0.798,0.154-1.173,0.4c0-0.012,0-0.023,0-0.035c-0.003-0.403-0.006-0.819,0.159-1.131
c0.136-0.426-0.014-0.657-0.162-0.774c-0.097-0.077-0.359-0.229-0.747-0.001c-0.401,0.239-1.059,0.982-1.477,1.88
c0-0.004-0.001-0.009-0.001-0.014c-0.108-0.498-0.562-0.607-0.78-0.66c-0.037-0.009-0.149-0.036-0.167-0.046
c-0.001-0.002-0.006-0.012-0.021-0.072c-0.308-0.837-1.066-0.797-1.521-0.773c-0.339,0.013-0.506,0.007-0.577-0.077
c-0.023-0.028-0.051-0.053-0.081-0.075c-0.001-0.014-0.003-0.027-0.007-0.042c-0.137-0.648-0.52-1.2-1.023-1.474
c-0.417-0.23-0.884-0.257-1.348-0.08c-0.166,0.063-0.283,0.208-0.314,0.376C18.579,1.967,18.215,1.947,17.811,2
c-0.135,0.018-0.258,0.091-0.336,0.198c-0.066,0.089-0.101,0.199-0.099,0.311c-0.143-0.024-0.287-0.031-0.432-0.021
c-0.169-0.503-0.593-0.912-1.12-1.074c-0.489-0.149-0.994-0.063-1.337,0.223c-0.209,0.14-0.33,0.311-0.403,0.469
c-0.065-0.03-0.138-0.058-0.22-0.083c-0.729-0.132-1.096,0.148-1.274,0.405c-0.075,0.108-0.119,0.225-0.146,0.33
c-0.08-0.001-0.187-0.005-0.322-0.013c-0.459-0.022-1.126-0.054-1.473,0.326c-0.055-0.013-0.109-0.016-0.166-0.01
c-0.674,0.08-1.319,0.347-1.895,0.795C8.572,3.812,8.55,3.772,8.523,3.734C7.958,2.957,7.321,3.118,7.14,3.186
C6.576,3.399,6.201,4.095,6.267,4.804c0.008,0.09,0.026,0.177,0.053,0.265C5.851,5.111,5.48,5.487,5.399,6.021
C5.346,6.366,5.437,6.691,5.64,6.918C5.4,7.195,5.416,7.462,5.484,7.653C5.39,7.745,5.292,7.845,5.2,7.952
C4.829,7.803,4.344,8.001,4.155,8.38C4.087,8.516,4.01,8.767,4.146,9.077C3.998,9.148,3.869,9.259,3.767,9.406
c-0.285,0.409-0.328,1.018-0.221,1.422c0.134,0.392,0.463,0.549,0.688,0.626c-0.002,0-0.004,0-0.006,0
c-0.525,0-1.048,0.489-1.377,0.974c-0.155,0.229-0.48,0.784-0.35,1.278c-0.009,0.014-0.018,0.028-0.025,0.045
c-0.478,1.008-0.354,1.956-0.243,2.811c0.005,0.038,0.01,0.076,0.015,0.114c-0.095-0.042-0.196-0.073-0.304-0.091
c-0.559-0.092-1.121,0.174-1.399,0.659c-0.271,0.522-0.246,1.104,0.067,1.597c0.354,0.557,0.998,0.903,1.68,0.903l0.075-0.001
c0.324-0.01,0.606-0.082,0.845-0.214c0.065,0.531,0.307,0.9,0.689,1.038c-0.036,0.361,0.179,0.739,0.32,0.986l0.038,0.065
c0.021,0.036,0.041,0.065,0.036,0.048c0.039,0.171,0.122,0.317,0.243,0.428C4.41,22.275,4.335,22.49,4.328,22.7
c-0.007,0.199,0.047,0.872,1.085,1.138l0.066,0.001c0.163,0,0.326-0.031,0.481-0.092c0.059,0.116,0.148,0.218,0.267,0.306
c0,0.001,0.001,0.001,0.001,0.001c-0.028,0.299,0.045,0.58,0.213,0.836l0.056,0.141c0.114,0.292,0.314,0.807,0.695,1.008
c0.01,0.075,0.036,0.148,0.079,0.213c0.38,0.575,0.918,1.036,1.568,1.343c-0.203,0.239-0.314,0.568-0.285,0.894
c0.042,0.462,0.398,0.979,1.293,1.047c0.754-0.013,1.438-0.64,1.563-1.461c0.23,0.496,0.76,0.881,1.666,1.211
c0.054,0.02,0.111,0.029,0.17,0.029s0.17-0.021,0.216-0.036c0.146-0.049,0.26-0.162,0.312-0.304c0.29,0.212,0.69,0.236,1.001,0.255
c0.083,0.005,0.254,0.015,0.329,0.035c0.086,0.021,0.174,0.021,0.252,0.001c0.002-0.001,0.004-0.001,0.006-0.002
c0.039,0.12,0.094,0.231,0.162,0.325c0.167,0.229,0.415,0.365,0.663,0.365c0.032,0,0.063-0.003,0.054-0.006
c0.457,0.037,0.87-0.175,1.118-0.566c0.228-0.359,0.268-0.825,0.114-1.225c0.007-0.002,0.014-0.003,0.021-0.005
c0.35,0.96,1.188,1.027,2.073,1.099l0.252,0.018c0.343-0.012,0.523-0.167,0.615-0.295c0.202-0.286,0.111-0.626,0.035-0.863
c0.047-0.013,0.092-0.033,0.134-0.06c-0.01,0.062-0.014,0.125-0.012,0.19c0.017,0.486,0.359,0.934,0.796,1.04
c0.076,0.019,0.163,0.02,0.225,0.003c1.012-0.215,1.238-0.758,1.283-1.063c0.074-0.506-0.243-1.034-0.812-1.346
c-0.003-0.001-0.005-0.003-0.008-0.004c0.196-0.101,0.398-0.208,0.604-0.326c0.127,0.059,0.256,0.076,0.373,0.064
c0.264-0.012,0.493-0.145,0.652-0.372c0.03,0.014,0.062,0.026,0.095,0.037c0.107,0.035,0.217,0.033,0.325-0.006
c1.211-0.44,1.671-0.776,1.762-1.284c0.036-0.206-0.016-0.383-0.085-0.523c0.257-0.248,0.415-0.594,0.565-0.934
c0.238,0.323,0.653,0.438,1.115,0.304c0.394-0.112,0.729-0.463,0.853-0.894c0.115-0.401,0.031-0.796-0.229-1.082
c-0.042-0.047-0.094-0.086-0.156-0.117l-0.113-0.055c0.073-0.116,0.143-0.252,0.177-0.414c0.003-0.016,0.005-0.03,0.006-0.044
c0.646-0.297,1.117-0.976,1.437-1.437c0.12-0.176,0.116-0.41-0.011-0.582c-0.024-0.033-0.05-0.062-0.075-0.086
c0.384-0.654,0.325-1.374,0.274-1.961c0.102,0.029,0.2,0.036,0.276,0.021c0.486-0.001,0.886-0.295,1.044-0.766
c0.059-0.174,0.079-0.359,0.063-0.545c0.277-0.073,0.492-0.266,0.602-0.544C31.821,14.836,31.644,14.205,31.361,13.876z
M21.716,21.769c-0.169-0.178-0.444-0.208-0.64-0.074c-0.079,0.053-0.267,0.176-0.301,0.424c-0.024,0.182,0.043,0.314,0.112,0.41
c-0.09,0.06-0.182,0.115-0.273,0.172c-0.096,0.058-0.19,0.116-0.283,0.177c-0.036,0.023-0.069,0.053-0.098,0.086
c-0.472-0.057-0.974,0.199-1.382,0.413c-0.28,0.146-0.597,0.312-0.782,0.315c-0.111-0.179-0.3-0.407-0.646-0.362
c-0.174,0.03-0.374,0.16-0.44,0.434c-0.194,0.03-0.39,0.057-0.586,0.08c-0.051,0.006-0.1,0.021-0.147,0.045
c-0.341-0.176-0.89-0.234-1.778-0.279l-0.076-0.004c-0.118-0.006-0.271-0.014-0.389-0.022c-0.007-0.093-0.031-0.179-0.074-0.258
c-0.056-0.104-0.194-0.285-0.485-0.332c-0.194-0.035-0.387,0.046-0.501,0.217c-0.003,0.004-0.006,0.009-0.009,0.014
c-0.139-0.028-0.268-0.069-0.384-0.123c0.004-0.114-0.031-0.228-0.101-0.318c-0.306-0.406-0.801-0.707-1.303-1.013
c-0.23-0.141-0.45-0.274-0.619-0.403c0.009-0.057,0.008-0.113-0.003-0.167c-0.069-0.333-0.305-0.447-0.42-0.484
c0.375-0.09,0.648-0.332,0.757-0.687c0.138-0.451-0.05-0.986-0.438-1.245c-0.202-0.136-0.432-0.184-0.66-0.153
c0.473-0.171,0.644-0.479,0.705-0.676c0.13-0.42-0.048-0.904-0.445-1.205c-0.292-0.222-0.64-0.299-0.969-0.225
C9.013,16.068,9.004,15.563,9,15.298c0-0.054-0.001-0.103-0.002-0.151c0.753-0.016,1.096-0.425,1.172-0.827
c0.039,0.009,0.08,0.016,0.123,0.022c0.529-0.002,0.951-0.306,1.1-0.793c0.176-0.575-0.042-1.248-0.508-1.566
c-0.095-0.065-0.296-0.175-0.565-0.178c0.09-0.109,0.214-0.215,0.386-0.301c0.155,0.172,0.428,0.214,0.632,0.091
c0.02-0.012,0.039-0.025,0.059-0.04l0.004,0.004l0.089-0.079c0.012-0.011,0.024-0.021,0.036-0.032l0.018-0.016
c0.121,0.039,0.243,0.058,0.377,0.058c0,0,0,0,0.001,0c0.267-0.009,0.832-0.18,1.159-0.51c0.011,0.003,0.022,0.006,0.033,0.009
c0.443,0.093,0.945-0.227,1.177-0.546c0.269-0.37,0.15-0.668,0.087-0.78c-0.088-0.153-0.223-0.254-0.396-0.301
c0.21-0.115,0.426-0.22,0.646-0.315c0.199,0.255,0.491,0.355,0.759,0.27c0.041-0.014,0.08-0.033,0.117-0.057
c0.066-0.044,0.122-0.095,0.166-0.152c0.341,0.191,0.7,0.273,1.072,0.274c-0.331,0.296-0.587,0.641-0.728,0.992
c-0.133,0.184-0.122,0.447,0.026,0.624c0.09,0.108,0.227,0.171,0.347,0.171c0.002,0,0.005,0,0.007,0l0.128-0.005
c0.12-0.018,0.231-0.07,0.332-0.118c0.251-0.119,0.737-0.34,1.229-0.307c-0.122,0.113-0.225,0.23-0.307,0.349
c-0.3,0.431-0.407,0.91-0.313,1.384c0.036,0.178,0.165,0.323,0.341,0.38c0.174,0.051,0.364,0.009,0.494-0.116
c0.368-0.351,0.849-0.565,1.351-0.61c-0.042,0.183-0.04,0.359,0.003,0.517c0.012,0.155,0.1,0.299,0.235,0.385
c0.206,0.132,0.513,0.076,0.664-0.12c0.287-0.367,0.742-0.608,1.18-0.615c0.328,0,0.625,0.148,0.858,0.428
c0,0.001,0.001,0.002,0.002,0.002c-0.051,0.311,0.048,0.581,0.194,0.81c-0.232,0.038-0.436,0.139-0.585,0.298
c-0.166,0.176-0.408,0.57-0.165,1.238c0.025,0.067,0.063,0.127,0.114,0.179c0.535,0.536,1.064,0.443,1.356,0.201
c0.018-0.015,0.035-0.031,0.052-0.047c0.044,0.091,0.067,0.163,0.071,0.206c0.001,0.012,0.003,0.024,0.005,0.036
c-0.085,0.087-0.149,0.185-0.193,0.292l-0.025,0.073c-0.046,0.182-0.054,0.366-0.024,0.563c-0.089-0.019-0.174-0.023-0.252-0.017
c-0.261,0.012-0.748,0.138-1.088,0.869c-0.139,0.426-0.039,0.833,0.273,1.117c0.316,0.285,0.799,0.372,1.177,0.21
c0.005-0.002,0.009-0.004,0.014-0.006c-0.006,0.021-0.01,0.043-0.012,0.065c-0.061,0.062-0.105,0.14-0.127,0.22
c-0.038,0.127-0.021,0.267,0.042,0.38c0.034,0.063,0.081,0.116,0.143,0.16c-0.045,0.12-0.101,0.239-0.166,0.356
c-0.012,0.022-0.021,0.044-0.026,0.065c-0.005,0.002-0.009,0.004-0.014,0.007c-0.486,0.271-0.787,0.709-1.078,1.134
c-0.172,0.251-0.337,0.49-0.523,0.674C21.738,21.793,21.727,21.78,21.716,21.769z"/>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.0335" y1="5.4208" x2="16.0335" y2="27.5461">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.2318" style="stop-color:#D6BE77"/>
<stop offset="0.3855" style="stop-color:#FFF7C4"/>
<stop offset="0.6006" style="stop-color:#A5935C"/>
<stop offset="0.7402" style="stop-color:#423B27"/>
<stop offset="0.7667" style="stop-color:#48402A"/>
<stop offset="0.8025" style="stop-color:#595033"/>
<stop offset="0.8435" style="stop-color:#766943"/>
<stop offset="0.8882" style="stop-color:#9D8C58"/>
<stop offset="0.8966" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#A8A66A"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M14.463,8.571c-0.606,0.253-1.219,0.552-1.714,0.986c-0.111-0.159-0.289-0.287-0.483-0.348
c0.532-0.356,1.193-0.517,1.579-1.058c0.059-0.083,0.213-0.329,0.176-0.403c-0.461-0.925-0.783-1.969-1.226-2.922
c0.099,0.015,0.293-0.165,0.373,0.012c0.306,0.944,0.662,1.91,1.058,2.871C14.226,7.709,14.514,8.55,14.463,8.571z M12.812,10.386
c-0.173-0.435-0.441-1.081-0.956-0.861c-0.608,0.481,0.081,1.285,0.234,0.696c-0.005-0.114-0.273-0.081-0.244-0.241
c0.291-0.546,0.843,0.42,0.344,0.662c-0.565,0.36-1.109-0.479-0.809-0.959c0.427-0.972,1.869-1,2.29-1.944l-0.227-0.548
c-0.45,1.086-2.05,1.367-2.628,2.306c0.167,0.156,0.08,0.434-0.128,0.525c0.341,0.42,0.724,0.976,1.216,0.971
C12.14,10.983,12.911,10.706,12.812,10.386z M13.214,10.5c0.53,0.176,1.257-0.853,0.457-0.773c-0.091-0.03-0.279,0.209-0.135,0.204
c0.154-0.111,0.344,0.145,0.175,0.252c-0.339,0.243-0.75-0.259-0.436-0.541l-0.042-0.077c-0.12,0.081-0.232,0.173-0.336,0.263
c0.077,0.188,0.211,0.405,0.233,0.61C13.17,10.478,13.125,10.498,13.214,10.5z M12.578,26.658c0.315-0.781,0.431-1.647,0.729-2.434
c0.029-0.212,0.404-0.684,0.058-0.74c-0.266,0.402-0.294,1.026-0.444,1.489C12.873,25.531,12.439,26.114,12.578,26.658z
M12.054,23.083c-0.406-0.537-1.357-0.935-1.896-1.376c-0.177,0.193-0.632,0.614-0.886,0.852c0.633,0.67,1.263,1.12,2.052,1.239
C11.787,23.874,12.025,23.258,12.054,23.083z M12.841,27.639c0.092,0.015,0.109-0.037,0.129-0.147
c0.181-0.65,0.167-1.398,0.603-1.946c-0.107-0.027-0.213-0.056-0.319-0.088c-0.201,0.404-0.155,1.563-0.74,1.507
C12.462,27.36,12.323,27.604,12.841,27.639z M8.128,21.69c-0.039,0.07-0.087,0.135-0.144,0.193l0.146,0.178
C8.166,21.948,8.143,21.814,8.128,21.69z M16.157,24.414c-0.204-0.342-2.105-0.271-2.454-0.37c-0.095,0.25-0.335,0.964-0.368,1.119
c0.712,0.203,1.183,0.276,1.898,0.276C16.118,25.48,16.393,25.293,16.157,24.414z M8.421,20.497
c0.044,0.001,0.069-0.008,0.082-0.004l0.011-0.018c0.192-0.032,0.48-0.157,0.54-0.371c-0.424-0.683-0.871-1.374-1.139-2.152
c-0.137,0.039-1.045,0.29-1.114,0.309C6.873,18.934,7.583,20.319,8.421,20.497z M7.936,22.307L7.725,22.05
c-0.126,0.05-0.279,0.067-0.416,0.044c-0.06,0.027-0.175,0.042-0.206,0.044c-0.046,0.19-0.153,0.358-0.256,0.504
c0.082,0.106,0.178,0.202,0.251,0.316C7.331,22.761,7.659,22.523,7.936,22.307z M7.381,16.293c0.238-0.004,0.486-0.015,0.439-0.371
c-0.053-0.862-0.059-1.672,0.1-2.404c-0.207-0.039-0.911-0.159-1.127-0.195C6.646,14.142,6.29,16.172,7.381,16.293z M7.208,16.586
c0.009,0.241,0.036,0.479,0.08,0.712c0.175-0.052,0.36-0.104,0.537-0.154l-0.097-0.581C7.556,16.6,7.379,16.61,7.208,16.586z
M8.513,22.081L8.46,22.017c-0.008,0.064-0.026,0.126-0.054,0.188C8.442,22.164,8.478,22.123,8.513,22.081z M8.976,21.569
c-0.133-0.144-0.521-0.571-0.159-0.654c0.193,0.039,0.211,0.331,0.369,0.433c0.1-0.106,0.203-0.213,0.315-0.311L9.104,20.55
c-0.009,0.002-0.02,0.003-0.033,0.003c-0.626,0.472-1.202,0.16-1.655-0.362c0.278,0.394,0.661,0.939,1.303,1.66
C8.799,21.759,8.883,21.669,8.976,21.569z M9.134,21.346l-0.037,0.032v0.001L9.134,21.346z M22.36,6.95
c-0.097,0.211-0.168,0.448-0.298,0.573c0.142,0.118,0.256,0.252,0.409,0.388C22.665,7.588,22.565,7.069,22.36,6.95z M6.493,6.91
C6.255,7.05,5.83,7.259,5.96,7.506c0.311,0.49,0.968,0.659,1.398,1.036c1.687,1.04-0.338,2.666-0.288,4.124
c0.072,0.014,0.328,0.068,0.328,0.068c0.03-0.212,0.057-0.432,0.154-0.624c-0.554-1.33,1.983-2.572,0.424-3.495
c-0.729-0.618-2.51-1.386-0.475-1.732c0.633,0.106,1.314,1.091,1.837,1.452c0.03-0.037,0.061-0.073,0.092-0.109
C8.42,7.708,7.797,5.816,6.493,6.91z M23.268,7.222c-0.119,0.337-0.348,0.607-0.598,0.85c0.247,0.129,0.48,0.233,0.771,0.27
C23.527,7.969,23.458,7.566,23.268,7.222z M22.106,6.533c0.01-0.044,0.017-0.098,0.011-0.143c-0.225-0.004-0.45-0.007-0.674-0.011
C21.374,6.837,22.025,6.923,22.106,6.533z M21.431,6.957c-0.065,0.054-0.095,0.185-0.123,0.321c0.102,0.051,0.567,0.171,0.567,0.171
C22.09,6.98,21.715,6.718,21.431,6.957z M22.936,7.204c0.111-0.148,0.29-0.452,0.27-0.857c-0.21-0.003-0.421-0.006-0.631-0.008
C22.674,6.492,22.743,7.359,22.936,7.204z M23.913,7.221c0.156-0.234,0.182-0.538,0.18-0.811c-0.188-0.01-0.369-0.01-0.555-0.012
c0.149,0.309,0.22,0.691,0.215,1.034C23.815,7.385,23.871,7.284,23.913,7.221z M24.495,6.058c-0.243,0.018-1.021,0.016-2.165,0.016
c-1.244,0-1.881-0.074-1.969,0.109c-0.147,0.305-0.304,0.853-0.604,0.981c-0.3,0.128-1.801-0.016-2.139-0.027
C17.376,7.13,17.518,6.804,17.09,6.78s-0.445,0.221-0.456,0.358c-0.011,0.125,0.055,0.42,0.419,0.45
c0.336,0.028,0.287-0.225,0.658-0.216c0.371,0.009,1.619,0.155,1.925,0.159c0.213,0.003,1.363,0.04,1.786,0.225
c0.373,0.163,0.426,0.315,0.797,0.537c0.36,0.215,0.878,0.575,2.057,0.561c-0.013-0.041-0.021-0.081-0.038-0.121
c-0.866,0.115-1.652-0.241-2.213-0.893c-0.431-0.555-2.058-0.155-1.8-0.848c0.353-0.669,0.192-0.961,1.148-0.839
C21.818,6.061,24.447,6.398,24.495,6.058z M23.949,7.531c-0.112,0.448-0.146,0.748-0.209,0.921c0.15,0.018,0.33,0.025,0.454,0.043
c0,0,0.091-0.216,0.092-0.216C24.377,8.033,24.198,7.697,23.949,7.531z M20.906,4.343c0.368,0.376,0.444,1.082,0.192,1.456
c-0.104,0-0.13,0.003-0.233,0.001c0-0.001-0.026-0.001-0.026-0.002C20.752,5.808,20.572,5.8,20.441,5.8
c-0.05,0.007-0.257,0.012-0.377,0.114c-0.048,0.034-0.103,0.138-0.1,0.138c-0.044,0.082-0.067,0.142-0.084,0.24
c-1.125-0.27-1.18-1.631-0.385-2.108c0.053-0.032,0.481-0.134,0.852-0.01C20.551,4.242,20.743,4.288,20.906,4.343z M20.645,5.192
c0-0.294-0.238-0.533-0.533-0.533c-0.294,0-0.533,0.238-0.533,0.533c0,0.294,0.238,0.533,0.533,0.533S20.646,5.486,20.645,5.192z
M15.609,2.983c-0.072-0.071-0.161,0.044-0.152,0.12c0.042,0.151,0.294,0.098,0.416,0.103c0.517-0.415-0.702-1.17-0.956-0.381
c-0.183,0.568,0.268,0.677,1.165,0.901s1.118,2.062,2.592,0.787c-0.119-0.052-0.195-0.165-0.258-0.28
c-0.172,0.116-0.615,0.368-0.662,0.331c-0.795,0.062-0.752-1.336-1.925-1.141c-0.997,0.151-0.487-1.114-0.05-0.532
C15.783,2.977,15.685,3.058,15.609,2.983z M24.701,8.616c0.081,0.256,0.141,0.554-0.09,0.752c-0.004,0.003-0.008,0.004-0.011,0.007
c0.704,0.601,1.316,1.307,1.763,2.109c0.162,0.291,0.245,0.218,0.165-0.114c-0.033-0.136-0.011-0.335-0.051-0.462
C26.196,10.012,25.711,9.326,24.701,8.616z M24.791,10.859c0.307-0.075,0.591,0.015,0.841,0.178c0.177,0.116,0.217,0.01,0.072-0.185
c-0.378-0.506-0.826-0.96-1.308-1.371c-0.189,0.093-0.234,0.374-0.299,0.55C24.372,10.267,24.624,10.54,24.791,10.859z
M26.654,10.262c-0.016-0.182-0.024-0.365-0.029-0.547c-0.188-0.1-0.367-0.216-0.54-0.345c0.012,0.101,0.036,0.202,0.041,0.303
c0.147,0.187,0.278,0.386,0.388,0.596C26.59,10.415,26.668,10.414,26.654,10.262z M17.341,8.741
c3.163-0.959,1.529,0.828,2.879,1.292c-0.306-0.512-0.362-1.342-0.772-1.749c-0.771-0.175-1.528-0.127-2.221,0.257
c-2.432,0.407-2.673-3.595-0.029-2.867c0.581,0.327,1.151,0.469,1.824,0.433c-0.262-0.301-0.443-0.717-0.413-1.12
c0.004-0.053-0.076-0.076-0.128-0.037c-0.1,0.076-0.205,0.143-0.327,0.182c-0.029,0.159,0.313,0.625-0.042,0.522
c-0.803-0.805-1.764-0.636-2.715,0.147C14.101,7.098,15.596,9.485,17.341,8.741z M18.501,10.312
c0.148,0.044,0.296,0.087,0.433,0.156c0.269-0.171,0.673-0.068,0.365-0.474c-0.13-0.299-0.144-0.898-0.518-1.007
c-0.98,0.034-2.002,0.743-2.351,1.666c-0.006,0.005-0.012,0.01-0.018,0.015c0.003,0.003,0.005,0.006,0.008,0.008
c0.006-0.004,0.013-0.007,0.019-0.011C16.495,10.726,17.474,10.004,18.501,10.312z M18.972,28.031
c0.198,0.042-0.026-0.391-0.224-0.936c-0.055-0.15-0.095-0.117-0.116,0.034c-0.022,0.155-0.086,0.286-0.217,0.375
C18.45,27.894,18.589,28.028,18.972,28.031z M17.256,24.834c-0.042-0.152-0.066-0.445-0.129-0.588
c-0.222,0.036-0.446,0.066-0.669,0.093c0.065,0.159,0.091,0.297,0.083,0.436c0,0.02-0.001,0.04-0.002,0.061L17.256,24.834z
M18.517,26.098c-0.006-0.222,0.035-0.427,0.153-0.594c-0.105,0.031-0.21,0.063-0.315,0.088c0.007,0.137,0.057,0.321,0.114,0.522
C18.498,26.217,18.52,26.207,18.517,26.098z M20.502,23.638c-0.576-0.636-1.681,0.57-2.456,0.554
c0.051,0.234,0.196,0.894,0.242,1.102C19.032,24.974,21.086,24.882,20.502,23.638z M10.039,21.301
c-0.148-0.706-2.152,2.069-2.442,2.367c0.011,0.025,0.015,0.053,0.018,0.08C8.353,22.892,9.392,22.207,10.039,21.301z M7.414,21.8
c0.253-0.004,0.491-0.174,0.503-0.448c-0.636-0.586-1.087-2.191-2.141-1.532C6.247,20.533,6.592,21.532,7.414,21.8z M5.384,19.996
c0.233,0.797,1.148,1.418,1.348,2.253c0.3-0.597-0.977-1.422-1.235-2.302C5.459,19.963,5.421,19.98,5.384,19.996z M7.413,24.048
c-0.029,0.212,0.02,0.417,0.136,0.569c0.505-0.583,0.896-1.447,1.692-1.645c-0.065-0.066-0.129-0.133-0.19-0.202
C8.514,23.113,8.073,24.107,7.413,24.048z M27.674,20.378c1.198-1.046-1.476-0.614-1.735-1.284c-0.02,0.058-0.097,0.26-0.097,0.26
c0.43,0.219,1.909,0.25,1.596,0.959C27.515,20.341,27.6,20.379,27.674,20.378z M28.501,11.87c0.084,0.654,0.241,1.353,0.479,2.138
c0.177-0.044,0.783-0.185,0.991-0.225c-0.398-0.919-0.041-2.091-0.172-3.128C29.097,10.049,28.498,11.257,28.501,11.87z
M22.931,23.414c0.259,0.457,1.265,1.022,0.82,1.589c0.065,0.069,0.164,0.108,0.273,0.108c1.035-0.29-0.998-1.308-0.823-1.97
C23.115,23.233,23.021,23.325,22.931,23.414z M23.853,19.33c1.079,0.306,2.07,0.57,3.128,0.892c0.888-0.196-2.862-0.938-3.12-1.07
L23.853,19.33z M25.45,20.694c0.086,0.036,0.175,0.072,0.26,0.109l0.144-0.238C25.693,20.521,25.481,20.511,25.45,20.694z
M26.316,21.518c0.276-0.108,0.689,0.027,0.942,0.124c0.102-0.149,0.23-0.303,0.268-0.478c-0.603-0.14-0.144-0.025-1.377-0.494
l-0.179,0.296C26.069,21.055,26.289,21.254,26.316,21.518z M25.318,20.965c-0.185,0.35-0.443,0.765-0.786,1.19
c-0.508,0.548-0.634,0.879,0.21,1.463C25.166,22.838,26.913,21.436,25.318,20.965z M3.887,13.157
c0.829,0.252,1.746,0.062,2.549,0.349c0.014-0.061,0.054-0.231,0.054-0.231c-0.467-0.203-2.109,0.102-1.767-0.737
C4.313,12.359,4.033,12.84,3.887,13.157z M7.762,7.316c-0.263-0.272-0.605-0.01-0.896,0.093c0.663,0.565,1.379,0.985,1.935,1.696
c0.045-0.058,0.091-0.119,0.145-0.17C8.67,8.587,7.098,7.567,7.762,7.316z M7.698,12.796c0.085,0.017,0.459,0.092,0.459,0.092
l0.04-0.292c-0.154-0.035-0.279-0.107-0.42-0.218C7.739,12.521,7.716,12.666,7.698,12.796z M8.62,11.986
c0.351-0.881,0.779-1.608,1.306-2.22C9.843,9.691,9.733,9.585,9.643,9.507L9.64,9.51C9.51,9.403,9.32,9.227,9.183,9.122
c-0.401,0.661-2.248,2.726-0.893,3.176C8.454,12.298,8.561,12.122,8.62,11.986z M10.13,10.527c-0.079-0.076-0.166-0.145-0.251-0.212
c-0.614,0.629-0.727,1.735-1.374,2.248c-0.005,0.145-0.042,0.29-0.055,0.435c0.193,0.119,0.156,0.436-0.053,0.517
c0.026,0.437,0.11,0.954,0.498,1.131c1.565,0.047,0.371-1.809,0.098-0.96c-0.13,0.289,0.218,0.513,0.267,0.251
c-0.154-0.058-0.087-0.297,0.064-0.292c0.241,0.026,0.351,0.37,0.181,0.543c-0.463,0.371-0.866-0.084-0.826-0.766
C8.77,12.233,9.31,11.156,10.13,10.527z M11.218,11.051c-0.324-0.275-0.586-0.613-0.849-0.938c-0.084-0.011-0.163-0.073-0.223-0.132
c-0.027,0.032-0.054,0.064-0.081,0.097c0.408,0.289,0.702,0.707,1.011,1.091C11.125,11.139,11.172,11.092,11.218,11.051z
M9.761,20.253c1.163,0.007,0.574-1.65-0.257-0.967c0.025,0.176,0.421,0.601,0.483,0.23c-0.007-0.03-0.026-0.03-0.049-0.028
c-0.275,0.081-0.257-0.356,0.015-0.312c1.035,0.288-0.514,1.93-1.019-0.634c-0.177-0.03-0.342-0.124-0.498-0.287
c-0.05-0.052-0.092-0.017-0.057,0.063c0.247,0.573,0.703,1.152,0.976,1.766C9.479,20.223,9.644,20.253,9.761,20.253z M8.12,17.063
c0.475-0.151,0.792,0.435,0.324,0.706c0.208,0.327,0.419,0.486,0.644,0.486c1.713-0.081,0.674-1.674-0.13-1.154
c0.041,0.264,0.251,0.617,0.46,0.406c0.016-0.017-0.003-0.039-0.029-0.041c-0.129-0.006-0.233-0.195-0.087-0.277
c0.282-0.181,0.591,0.186,0.407,0.447c-1.382,1.093-1.16-2.042-1.228-2.91c-0.161-0.214-0.276-0.46-0.337-0.715
C7.945,14.792,8.3,15.662,8.01,16.405L8.12,17.063z M9.857,12.493c-0.331,0.83,0.471,0.65,0.5,0.482
c0.006-0.033-0.078-0.029-0.101-0.01c-0.119,0.094-0.336-0.079-0.26-0.211c0.142-0.338,0.761-0.171,0.667,0.219
c-0.855,1.543-1.9-1.159-0.098-1.955c-0.072-0.09-0.146-0.18-0.223-0.267c-0.687,0.506-1.171,1.391-1.338,2.445
c0.294-0.11,0.649,0.066,0.794,0.334c0.167,0.09,0.3,0.282,0.492,0.313C11.478,13.838,10.899,11.666,9.857,12.493z M9.846,7.641
c0.644-0.154,1.137-0.734,1.707-1.081c0.364-0.263,0.084-0.686-0.069-0.978C10.994,5.961,8.502,7.038,9.846,7.641z M7.999,7.536
C7.95,7.578,7.896,7.598,7.841,7.621C8.66,8.393,9.64,8.999,10.409,9.814c0.053-0.04,0.123-0.056,0.106-0.118
C10.421,9.36,8.917,8.406,7.999,7.536z M8.226,13.079c-0.735-0.144-2.373-0.304-3.203-0.443c-0.067,0.077-0.079,0.158,0.013,0.219
c0.144,0.072,0.292,0.101,0.509,0.117c1.113,0.082,2.66,0.398,2.698,0.322C8.288,13.204,8.304,13.185,8.226,13.079z M7.945,6.413
c0.466,0.395,0.899,1.042,1.424,1.401c0.075,0.051,0.114,0.042,0.03-0.032C9.193,7.6,9.094,7.294,9.184,7.028
C8.724,6.928,8.438,5.872,7.945,6.413z M4.731,18.423c-0.196,0.057-0.41,0.128-0.372,0.365c0.01,0.14-0.026,0.339,0.04,0.418
c0.745-0.097,1.372-0.593,2.13-0.67c-0.002-0.013-0.026-0.17-0.028-0.188C5.879,18.374,4.901,19.339,4.731,18.423z M5.035,18.317
c0.011,0.06,0.015,0.131,0.028,0.189C9.361,17.249,9.322,16.922,5.035,18.317z M8.651,6.127c0.197,0.262,0.377,0.419,0.611,0.606
h0.003L9.27,6.734V6.732c0.02,0.001,0.049-0.005,0.063,0.006c0.534-0.646,1.328-0.974,2.012-1.426
c-0.127-0.25-0.22-0.473-0.375-0.724C10.165,5.034,9.268,5.416,8.651,6.127z M6.218,12.041c0.084,0.02,0.163,0.04,0.255,0.043
c0.103,0.003,0.234-0.013,0.286-0.095c-0.173,0.005-0.336-0.05-0.492-0.147L6.218,12.041z M7.376,10.663
c0.251-0.449,0.515-0.929,0.265-1.39L7.64,9.275C7.541,9.067,7.363,8.946,7.194,8.8c-0.34,0.677-1.594,2.556-0.503,2.88
C7.131,11.667,7.107,10.956,7.376,10.663z M5.106,20.111c-0.014,0.005-0.118,0.042-0.118,0.042c-0.222-0.066-0.466,0.184-0.565,0.35
c-0.183,0.242,0.314,0.879,0.359,1.054c0.071,0.315,0.451,0.29,0.707,0.249c0.695,0.131,0.723,1.175,0.044,1.202
C5.354,23.02,4.993,22.8,5.07,22.553c0.061-0.098,0.233-0.094,0.278,0.019c0.123,0.247,0.465,0.083,0.37-0.159
c-0.393-0.89-1.623,0.565-0.279,0.923c0.353,0.019,0.671-0.197,0.842-0.483C6.838,21.819,5.314,21.105,5.106,20.111z M6.655,22.887
c-0.21,0.22-0.454,0.524-0.133,0.763c0.104-0.175,0.216-0.343,0.362-0.489C6.789,23.087,6.73,22.978,6.655,22.887z M8.237,25.008
c1.135-2.393,2.666-0.635,4.389-0.114c0.054-0.214,0.229-0.91,0.289-1.166c-0.253-0.044-0.485-0.122-0.69-0.232
c-0.617,1.341-1.995,0.112-2.847-0.24c-0.771,0.054-1.205,1.355-1.817,1.745c-1.076-0.625-0.033-1.82,0.522-2.417
c-0.666,0.505-1.795,1.152-1.179,2.118c0.145,0.352,0.335,0.974,0.681,0.937C7.819,25.649,8.075,25.371,8.237,25.008z M7.08,19.736
c-0.2-0.311-0.361-0.638-0.472-0.9c-0.674-0.104-2.318,1.319-2.543,0.31c-0.072-0.425,0.003-0.898,0.5-0.993
c0.597-0.208,1.21-0.392,1.807-0.579c-0.031-0.062-0.059-0.124-0.084-0.187c-0.587,0.453-1.517,0.264-2.14,0.677
c-0.492,0.142-0.682,1.833-0.069,2.035C6.271,19.34,6.574,19.125,7.08,19.736z M7.917,25.804c-0.068,0.061-0.143,0.118-0.229,0.172
c0.363,0.551,0.906,0.993,1.534,1.247c0.606,0.126,1.553,0.813,0.838,1.407c-0.284,0.27-1.044-0.289-0.561-0.493
c0.066,0,0.138,0.041,0.15,0.133c0.068,0.245,0.411,0.057,0.353-0.121c-0.567-1.237-1.739,0.762-0.164,0.885
c0.517-0.009,0.994-0.454,1.073-0.967C10.895,26.882,8.517,26.89,7.917,25.804z M4.013,17.308c-0.002,0.147,0.044,0.294,0.098,0.432
c0.067-0.032,0.136-0.059,0.205-0.086c-0.026-0.093-0.106-0.352-0.139-0.475C4.104,17.19,4.053,17.267,4.013,17.308z M11.166,25.25
c0.238-0.026,0.503-0.148,0.615-0.355c-0.775-0.247-2.01-1.451-2.664-0.581C9.772,24.672,10.433,25.09,11.166,25.25z M10.464,26.861
c0.253,0.014,0.329-0.265,0.328-0.348c-0.072-0.824-1.596-1.052-2.168-1.536C7.706,26.139,9.671,26.591,10.464,26.861z
M4.608,17.561c0.08-0.022,0.16-0.042,0.24-0.061c-0.043-0.179-0.079-0.36-0.106-0.54c-0.078,0.075-0.166,0.13-0.263,0.164
L4.608,17.561z M5,11.757c0.067,0.014,0.685,0.138,0.921,0.211c0.033-0.125,0.063-0.296,0.11-0.397
c-0.034-0.1-0.055-0.197-0.065-0.291c-0.272,0.128-0.626,0.208-0.94,0.149C5.017,11.538,5.02,11.648,5,11.757z M3.439,14.174
c-0.175-0.023-0.381-0.015-0.511-0.209c-0.774,1.634,0.286,3.207-0.309,4.329c-0.536,0.793-1.784-0.079-1.058-0.761
c0.103-0.08,0.255-0.022,0.296,0.099c0.069,0.138-0.148,0.224-0.129,0.348c0.089,0.568,0.851,0.073,0.708-0.324
c-0.152-0.778-1.134-0.724-1.447-0.181c-0.474,0.915,0.42,1.807,1.362,1.77C4.747,19.173,2.524,15.647,3.439,14.174z M4.61,11.049
c0.229,0.048,0.472,0.093,0.702,0.093C6.318,11.221,6.22,9.37,6.943,8.623c-0.2-0.135-0.402-0.256-0.615-0.384
c-0.875,0.548-0.658,2.484-1.519,2.522c-0.503,0.053-0.813-0.798-0.218-0.867c0.266-0.017,0.248,0.368-0.011,0.318
c-0.055,0.127,0.12,0.254,0.217,0.24c0.248-0.001,0.282-0.287,0.342-0.474C5.27,9.726,4.755,9.495,4.504,9.483
c-0.461,0.045-0.579,0.825-0.484,1.184C4.115,10.946,4.447,10.986,4.61,11.049z M3.93,17.027c0.192,0.01,0.423-0.176,0.575-0.218
c0.414-0.581-0.072-1.861,0.069-2.622c-0.948-0.306-1.037,0.468-0.934,1.19C3.75,15.784,3.511,16.884,3.93,17.027z M5.28,9.497
c0.149-0.495,0.362-1.038,0.783-1.429C6.01,8.031,5.954,7.99,5.903,7.942c-0.183,0.18-0.371,0.365-0.49,0.56
c0.043,0.301-0.427,0.521-0.599,0.241c-0.06-0.148,0.125-0.286,0.254-0.176C5.222,8.136,3.733,8.597,5.28,9.497z M6.667,17.483
l0.327-0.098c-0.059-0.271-0.089-0.564-0.092-0.893c-0.735-0.58-0.576-1.795-0.524-2.66c-0.8-0.41-2.074,0.014-2.768-0.522
c-0.104-0.657,0.782-1.43,1.435-0.982c0.579,0.081,1.158,0.176,1.723,0.281c0.008-0.092,0.019-0.183,0.033-0.275
c-0.8,0.183-1.71-0.38-2.522-0.377c-0.664-0.111-2.105,2.012-0.756,1.863C7.505,13.783,5.6,14.853,6.667,17.483z M4.848,14.221
c-0.026,1.026,0.137,2.104,0.297,3.209c0.267-0.113,0.895-0.002,0.936-0.414c0,0-0.089-1.196-0.125-1.567
c-0.04-0.386,0.066-1.165-0.467-1.145v-0.002C5.355,14.28,4.988,14.237,4.848,14.221z M11.892,25.257
c-0.927,0.753-2.046-0.258-2.962-0.697c-0.045,0.057-0.089,0.115-0.131,0.174c4.036,1.765,1.13,1.885,2.701,2.602
C11.448,26.679,12.222,25.832,11.892,25.257z M21.972,24.377c0.4,1.163-1.512,1.601-2.24,2.088c0.02,0.079,0.043,0.158,0.067,0.236
c0.683-0.27,1.38-0.622,2.187-1.105c0.265-0.177,0.489-0.004,0.643,0.232c0.191,0.35,0.561,0.396,0.728,0.017
c-0.517-0.455-0.94-1.031-1.298-1.544C22.03,24.327,22.001,24.352,21.972,24.377z M20.251,27.465l0.086,0.162
c0.461-0.356,1.718-0.188,1.687,0.515c-0.106,0.242-0.609,0.388-0.635-0.1c-0.015-0.059,0.019-0.187-0.019-0.225
c-0.487,0.155-0.263,0.879,0.139,0.977C23.604,28.347,21.547,26.346,20.251,27.465z M23.948,23.323
c-0.625-0.84,1.31-2.168,1.449-3.338c-0.198-0.075-0.38-0.142-0.566-0.196c-0.154,0.275-0.292,0.555-0.419,0.857
c0.417,1.206-1.687,2.062-0.561,3.118c0.537,0.442,1.362,1.482,0.158,1.664c-0.734-0.152-1.088-1.001-1.614-1.476
c-0.031,0.05-0.076,0.088-0.116,0.13c0.563,0.7,0.91,1.463,1.676,1.717C26.395,24.912,25.292,24.568,23.948,23.323z M22.235,25.822
c-0.764,0.411-1.523,0.859-2.342,1.172l0.091,0.26c0.809-0.285,1.616-0.662,2.463-1.152C22.39,26.019,22.31,25.831,22.235,25.822z
M26.582,21.779c-0.579,0.152-1.062,1.662-1.537,2.074c0.094,0.078,0.217,0.187,0.336,0.313c0.591-0.447,0.662-1.937,1.548-1.943
c0.26-0.02,0.542,0.066,0.63,0.339c0.218,0.725-1.066,0.58-0.504,0.179c0.134,0.075,0.298,0.01,0.176-0.152
c-0.688-0.25-0.793,1.026,0.116,0.761c0.434-0.123,0.732-0.781,0.389-1.159C27.362,22.013,27.012,21.82,26.582,21.779z
M30.982,14.203c-0.805-0.464-1.802,0.101-2.812,0.412c-0.341,0.141-0.422,0.491-0.253,1.106c0.21,1.002,0.157,2.041,0.065,3.017
c0.084,0.009,0.169,0.021,0.253,0.033l0.082,0.012c0.601-1.341-1.021-4.602,1.653-3.956c0.077-0.537,0.843-0.638,0.997-0.072
c0.083,0.192-0.066,0.53-0.281,0.331c-0.044-0.104-0.003-0.255-0.078-0.362c-0.106-0.091-0.264-0.04-0.316,0.085
c-0.046,0.23,0.34,0.542,0.543,0.588C31.363,15.338,31.255,14.52,30.982,14.203z M17.447,25.699c0,0-0.099-0.44-0.125-0.562
c-0.205,0.008-0.618,0.003-0.828,0.003c-0.259,1.155-1.851,0.322-2.674,0.579c-0.422,0.542-0.361,1.31-0.58,1.938
c-0.117,0.441-0.609,0.274-0.922,0.14c-0.43-0.357,0.107-2.098,0.24-2.606c-0.162-0.059-0.322-0.12-0.482-0.182
c0.917,1.396-1.867,2.697,1.171,3.803c0.027,0,0.049-0.008,0.058-0.011C14.104,24.799,13.671,26.074,17.447,25.699z M26.284,17.999
c-0.131-1.284,0.251-2.755-0.611-3.851c-0.549-0.747-1.811-2.851-2.572-1.432c-0.264,0.823,1.498,1.384,1.639,2.835
c1.389,0.398,1.487,1.625,1.341,2.939c-0.057,1.059,1.565,0.554,2.097,1.092c0.229,0.36-0.024,1.092-0.494,1.112
c-0.204-0.022-0.428-0.131-0.62-0.169c-0.493-0.014-0.931-0.268-1.383-0.429c-0.016,0.047-0.031,0.093-0.048,0.14
c0.698,0.009,1.302,0.568,1.987,0.624c0.607-0.157,1.074-0.848,1.424-1.352C28.374,18.599,26.427,19.505,26.284,17.999z
M28.631,15.655c-0.015,1.069,0.385,2.142-0.016,3.196c0.088,0.027,0.175,0.063,0.264,0.109c0.672-0.983-0.048-2.216,0.363-3.199
c0.408-0.62,1.336,0.049,0.81,0.578c-0.141,0.141-0.358-0.096-0.208-0.225c0.207-0.231-0.193-0.42-0.342-0.192
c-0.302,0.322,0.106,0.812,0.417,0.759c0.688-0.002,0.802-0.968,0.326-1.328C29.833,14.916,28.733,14.879,28.631,15.655z
M14.028,27.682c-0.112,0.02-0.15,0.171-0.15,0.171c-0.042,0.181,0.012,0.44,0.095,0.615c0.199,0.325,0.912,0.217,1.258,0.313
c0.343-0.089,0.182-0.62,0.862-0.633c0.805-0.015,0.944,0.99,0.128,1.011c-0.269,0.042-0.253-0.353,0.027-0.3
c0.232-0.009,0.279-0.343,0.034-0.4c-0.139-0.024-0.35-0.014-0.434,0.106c-0.14,0.295-0.003,0.939,0.42,0.884
c0.67,0.031,0.972-0.683,0.692-1.212C16.441,27.211,14.899,28.054,14.028,27.682z M13.969,26.929c0.21,0.009,0.42,0.013,0.63,0.013
c0.664-0.006,1.36-0.032,2.027-0.136c0.173-0.139,0.027-0.53,0.034-0.739C15.79,26.255,14.075,25.632,13.969,26.929z M17.017,26.761
c0.116-0.012,0.223-0.021,0.339-0.035c-0.027-0.145-0.101-0.563-0.124-0.701c-0.071,0-0.173,0.011-0.267,0.021
C16.98,26.227,17.011,26.613,17.017,26.761z M21.724,24.571c-0.598,0.564-1.823,0.76-2.058,1.582
C20.297,25.782,21.89,25.245,21.724,24.571z M22.196,23.727l-0.366-0.415c-0.291,0.228-0.595,0.444-0.905,0.643
c0.112,1.231-1.518,0.97-2.003,1.72c-0.418,0.898,0.524,1.675,0.428,2.509c-0.216,0.279-0.771,0.138-1.041-0.033
c-0.131-0.171-0.135-0.396-0.197-0.594c-0.153-0.037-0.235-0.162-0.286-0.301c0.088,1.437,0.697,1.405,1.978,1.511
c0.306-0.009,0.292-0.194,0.193-0.504C18.473,24.748,20.202,25.765,22.196,23.727z M13.937,27.233l-0.021,0.264
c0.989,0.124,2.213-0.352,3.071,0.204c0.203,0.006,0.428-0.021,0.611-0.091c-0.042-0.184-0.094-0.376-0.158-0.585
C16.294,27.157,15.133,27.303,13.937,27.233z M21.625,23.082c-0.079-0.089-0.174-0.219-0.25-0.283
c-0.247,0.185-0.516,0.331-0.773,0.497c0.115,0.109,0.185,0.203,0.243,0.342C21.108,23.464,21.369,23.277,21.625,23.082z
M22.501,14.896c0.78,0.784,1.125-0.573,0.506-0.225c0.302,0.281-0.309,0.418-0.328,0.058c-0.009-1.237,1.399,0.339,1.444,0.833
c0.1-0.033,0.2-0.05,0.297-0.052C24.09,13.674,21.918,13.574,22.501,14.896z M24.173,18.922c0.594-0.961-0.982-2.761-1.649-1.344
c-0.26,0.796,0.98,1.026,0.983,0.383c-0.16,0.033-0.433,0.111-0.544-0.044c-0.089-0.158-0.064-0.406,0.07-0.48
c0.697-0.194,1.176,0.977,0.96,1.443L24.173,18.922z M23.898,16.13c-0.238,0.935,1.15,1.845,0.575,2.864
c0.213,0.054,0.881,0.226,1.074,0.278c0.326-0.834,0.528-2.254-0.219-3.025C25.116,15.931,24.138,15.546,23.898,16.13z
M24.523,19.705c-0.147-0.039-0.294-0.078-0.439-0.125c-0.062,0.2-0.148,0.399-0.255,0.591c0.148,0.058,0.277,0.152,0.36,0.223
C24.287,20.159,24.414,19.932,24.523,19.705z M23.733,11.955c-0.024-0.026-0.054-0.047-0.083-0.069
c-1.2,0.186-1.596-0.78-2.707-0.662c-0.409,0.334-0.975,0.812-0.791,1.376c-0.002,0.004-0.004,0.007-0.006,0.011
c0.003-0.003,0.006-0.006,0.008-0.01c0.638-0.82,1.967-1.22,2.816-0.199C23.145,12.161,23.426,11.95,23.733,11.955z M24.592,10.929
c-0.154-0.246-0.342-0.47-0.555-0.667c-0.121,0.47-0.016,0.964,0.063,1.18C24.151,11.326,24.303,11.051,24.592,10.929z
M23.923,9.121c-0.774-0.049-1.558-0.172-2.081-0.803c-0.734-0.615-1.768-0.428-2.657-0.532c-0.511,0.01-1.056-0.163-1.55-0.084
c-0.546,0.44-1.411,0.106-1.348-0.644c0.062-0.673,1.091-0.756,1.411-0.223c0.657-0.04,1.734,0.389,2.127-0.297
c-0.656-0.317-1.45-0.132-2.113-0.361c-0.406-0.261-0.855-0.46-1.349-0.351c-1.787,0.431-0.507,3.13,1.011,2.441
c0.594-0.428,1.302-0.278,1.983-0.222c0.352,0.003,0.451,0.353,0.571,0.623c0.274,0.631,0.65,2.339,1.546,1.944
c-0.015-0.368-0.03-0.955,0.218-1.242c0.069-0.127,0.391-0.468,0.433-0.162c-0.284,1.26,0.179,2.402,1.443,2.196
c-0.159-0.715-0.025-1.487,0.336-2.122C23.918,9.23,23.925,9.176,23.923,9.121z M21.081,7.253c-0.009-0.407-0.491-0.256-0.523,0.003
C20.691,7.255,20.882,7.255,21.081,7.253z M18.597,4.113c0.044,0.068,0.092,0.154,0.143,0.194c0.002,0,0.009,0.003,0.012,0.004
c1.287-0.994,2.348,0.218,2.306-0.427c0.004-0.026,0.007-0.053,0.009-0.079c-0.405-0.107-0.843-0.252-1.265-0.207
C19.367,3.673,18.967,3.878,18.597,4.113z M23.596,20.436c-0.711,0.397-0.995,1.351-1.678,1.888
c0.163,0.166,0.651,0.685,0.812,0.862C23.231,22.597,25.042,20.812,23.596,20.436z M17.951,12.374
c0.568-0.541,1.378-0.852,2.193-0.752c0.054-0.23,0.608-0.323,0.448-0.555c-0.489-0.197-0.495-0.483-0.899-0.618
C18.79,10.595,17.758,11.41,17.951,12.374z M20.986,6.341c-0.174,0-0.298,0.115-0.361,0.267c-0.013,0.031-0.027,0.061-0.034,0.095
c0.004,0.002,0.007,0.004,0.011,0.006C20.624,6.766,21.081,6.584,20.986,6.341z M17.737,24.197l-0.041,0.027
c0.003-0.032,0.008-0.121,0.017-0.148c-0.719-1.345,0.286,3.069,0.489,3.175C18.625,27.259,17.742,24.636,17.737,24.197z
M23.633,24.731c-0.416-0.842-1.409-1.57-1.981-2.239c-0.079-0.098-0.212-0.287-0.3-0.38c-0.106,0.07-0.103,0.076-0.02,0.171
c0.741,0.796,1.444,1.726,2.211,2.472L23.633,24.731z M26.511,15.383c0.237-0.294,0.722-0.327,1.01-0.174
c-0.237-1.431-0.987-3.687-2.521-4.097c-0.529-0.036-0.864,0.579-0.679,1.032C25.336,12.985,26.308,14.173,26.511,15.383z
M25.903,7.36c0.002-0.104,0.003-0.207,0.004-0.239c0.031-0.242,0.237-0.871,0.475-1.145c0.186-0.61-0.071-1.658,0.259-2.243
c0.266-0.832-1.298,0.607-1.702,2.119c-0.028,0.103,0.094,0.143,0.018,0.31c-0.025,0.054-0.1,0.118-0.105,0.177
c-0.014,0.17-0.008,0.339,0.021,0.501C25.247,6.952,25.585,7.138,25.903,7.36z M14.937,8.625c0.045,0.103,0.158,0.26,0.288,0.217
c0.034-0.022,0.031-0.103,0-0.23c-0.055-0.225-0.322-0.568-0.508-1.015c-0.145-0.35-0.211-0.898-0.394-1.305
c-0.779-1.724-1.425-3.32-0.875-3.469c0.384-0.104,0.527,0.32,0.19,0.227c-0.009,0.014-0.022,0.026-0.04,0.032
c0.106,0.871,1.205-0.225,0.179-0.568c-1.392-0.242-0.839,1.377-0.438,2.07c0.393,0.981,0.683,1.862,1.034,2.795
C14.533,7.802,14.784,8.2,14.937,8.625z M17.726,4.237c0.992-0.766,2.112-1.304,3.36-0.902c-0.166-0.794-0.839-1.519-1.704-1.19
c0.008,0.184,0.469,1.278,0.027,0.976c-0.215-0.628-0.946-0.703-1.533-0.625c0.034,0.2,0.732,1.193,0.232,1.015
c-0.316-0.455-0.945-0.653-1.463-0.453c-0.007-0.003-0.021,0.015-0.025,0.019c-0.004,0.009-0.006,0.018-0.006,0.027
c0.001,0.002,0.003,0.008,0.003,0.012c0.066,0.145,0.355,0.425,0.582,0.7c0.14,0.17,0.252,0.341,0.333,0.432
C17.57,4.292,17.692,4.263,17.726,4.237z M14.952,2.439c0.608-0.429,1.306,0.026,1.24,0.725c-0.005,0.013,0.239,0.057,0.227,0.022
c0.022-0.019,0.035-0.05,0.044-0.078c0,0,0.001,0,0.002,0.001c0.052-0.141,0.06-0.297,0.02-0.422
c-0.206-0.7-1.125-1.121-1.719-0.634c-0.527,0.35-0.194,1.118-0.605,1.476c-0.202,0.131-0.472,0.089-0.652-0.061
c0.425,1.105,0.725,1.714,1.108,2.792c0.138-1.085,1.14-1.307,2.216-1.456c0,0-0.498-0.754-0.833-0.854
c-0.335-0.1-1.081-0.2-1.241-0.497C14.583,3.127,14.606,2.641,14.952,2.439z M16.638,3.059c0.002-0.001,0.005,0,0.007-0.001
c0,0,0.001-0.001,0.001-0.001C16.644,3.058,16.642,3.058,16.638,3.059z M9.631,8.459c0.53,0.397,0.652,0.488,0.984,0.8
c0.52-1.017,2.78-1.287,2.562-2.71l-0.664-1.608c-0.179-0.299,0.153-0.453,0.377-0.423c0.029-0.012,0.058-0.034,0.052-0.108
l0.021-0.034c-0.168-0.306-0.301-0.803-0.372-1.128c-0.408,0.055-1.545-0.191-1.664,0.263c0.119,0.871,0.874,1.75,1.115,2.614
C11.922,7.261,10.219,7.54,9.631,8.459z M16.636,3.059L16.634,3.06L16.636,3.059L16.636,3.059z M7.607,5.624
c1.112-0.334,1.759-1.591,2.986-1.787c-0.025-0.089-0.041-0.182-0.051-0.281C9.886,3.633,9.247,3.921,8.739,4.368
C8.348,4.847,7.328,5.4,7.105,4.485c-0.088-0.358,0.63-0.784,0.708-0.324c-0.022,0.123-0.139,0.146-0.24,0.113
C6.927,4.679,8.371,4.991,8.119,4.028C7.088,2.609,5.93,5.328,7.607,5.624z M8.011,5.996c0.121-0.055,0.253-0.078,0.378-0.042
c0.654-0.76,1.583-1.171,2.442-1.639c-0.035-0.075-0.063-0.145-0.084-0.21C9.723,4.643,8.838,5.232,7.979,5.939
C7.852,6.044,7.87,6.06,8.011,5.996z M28.096,11.132c-0.059-0.416-0.36-0.602-0.631-0.602c-1.544,0.385,0.182,3.04,0.253,4.035
c0.255-0.29,0.747-0.409,0.968-0.468C28.273,12.821,28.073,11.15,28.096,11.132z M27.353,9.995
c-0.175-0.036-0.347-0.099-0.509-0.171c0.007,0.169,0.018,0.338,0.035,0.507c0.005,0.051,0.089,0.093,0.129,0.069
c0.132-0.082,0.289-0.133,0.442-0.131C27.446,10.256,27.392,10.104,27.353,9.995z M27.679,18.711
c-0.013-0.701,0.386-3.119-0.454-3.269c-0.258,0.012-0.547,0.052-0.685,0.395C26.756,16.922,25.93,18.565,27.679,18.711z
M28.001,10.094c-0.175-0.01-0.23-0.024-0.402-0.061c0.03,0.083,0.059,0.166,0.089,0.249c0.151,0.021,0.176,0.071,0.297,0.162
c0.049,0.037,0.096-0.002,0.079-0.067C28.039,10.284,28.019,10.189,28.001,10.094z M22.211,4.727
c-0.181,0.105-0.538,0.039-0.726-0.068c0.247,0.43,0.12,0.858-0.045,1.14c0.931-0.003,1.861-0.004,2.792-0.011
c-0.15-0.205,0.007-0.482,0.011-0.705c-0.092-0.42-0.823-0.125-0.951-0.712c-0.326-0.896-1.485-0.07-2.013-0.702
c-0.005,0.136-0.005,0.334-0.098,0.447c-0.022,0.027,0.283,0.209,0.362,0.243C21.938,4.531,22.242,4.371,22.211,4.727z M6.211,6.72
C6.317,6.653,6.439,6.581,6.56,6.515c-0.015-0.012-0.03-0.026-0.043-0.04C6.163,6.481,5.996,5.876,6.374,5.788
c0.113-0.03,0.23,0.178,0.111,0.266c-0.061,0.04,0.014,0.132,0.074,0.119C7.004,6.11,6.702,5.555,6.416,5.565
C5.844,5.54,5.67,6.576,6.211,6.72z M26.29,7.649c-0.041-0.61,0.226-1.215,0.744-1.574c0.215-0.149,0.451-0.234,0.693-0.275
c0.016-0.25,0.406-0.441,0.421-0.65C27.068,5.19,26,6.436,26.113,7.512C26.172,7.557,26.232,7.602,26.29,7.649z M26.828,7.956
c0.421,0.673,1.942,0.285,1.503-0.601c-0.139-0.352-0.81-0.081-0.615,0.214c0.116,0.077-0.023,0.243-0.138,0.167
c-0.144-0.095-0.18-0.242-0.149-0.381c0.104-0.475,0.806-0.56,1.072-0.19c0.676,0.979-0.553,1.699-1.353,1.35
C26.203,8.2,25.551,7.31,24.185,7.163c-0.001,0.002-0.001,0.004-0.002,0.005c0.335,0.323,0.411,0.746,0.418,0.845
c0.669,0.12,2.208,1.441,2.592,1.604c2.557,0.991,3.663-3.148,0.856-3.444C27.121,6.038,26.302,7.148,26.828,7.956z"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="16.6016" y1="13.4223" x2="16.8244" y2="8.3431" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<rect x="2.26" y="20.143" fill="url(#SVGID_2_)" width="28.845" height="4.556"/>
<g>
<rect x="2.64" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="6.662" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="10.703" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="14.74" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="18.781" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="22.799" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
<rect x="26.84" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
</g>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="16.5495" y1="9.7871" x2="16.5495" y2="13.2217" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#3B3421;stop-opacity:0"/>
<stop offset="0.2211" style="stop-color:#353229;stop-opacity:0.3006"/>
<stop offset="0.5223" style="stop-color:#30302F;stop-opacity:0.71"/>
<stop offset="0.9709" style="stop-color:#3A3422;stop-opacity:0.0432"/>
<stop offset="1" style="stop-color:#3B3421;stop-opacity:0"/>
</linearGradient>
<rect x="2.797" y="20.732" opacity="0.77" fill="url(#SVGID_3_)" enable-background="new " width="27.505" height="3.515"/>
<g>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="8.666" y1="12.0149" x2="8.666" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="9.325,23.149 7.974,21.014 7.61,21.014 7.61,23.871 8.007,23.871 8.007,21.768
9.354,23.871 9.722,23.871 9.722,21.014 9.325,21.014 "/>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="4.6815" y1="12.0149" x2="4.6815" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<path fill="url(#SVGID_5_)" d="M4.511,21.013l-1.054,2.859H3.89l0.215-0.627h1.154l0.215,0.627h0.432l-1.054-2.859H4.511z
M4.236,22.914l0.446-1.298l0.446,1.298H4.236z"/>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="12.6932" y1="12.0149" x2="12.6932" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<path fill="url(#SVGID_6_)" d="M13.274,21.811h0.411c-0.12-0.919-1.439-1.176-1.856-0.342c-0.188,0.304-0.108,0.993-0.124,1.345
c-0.048,1.291,1.746,1.458,1.98,0.216h-0.411c-0.2,0.724-1.208,0.535-1.158-0.216c0.018-0.247-0.053-0.924,0.073-1.139
C12.403,21.175,13.161,21.303,13.274,21.811z"/>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="28.7335" y1="12.0149" x2="28.7335" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="27.725,21.013 27.725,21.394 28.533,21.394 28.533,23.872 28.934,23.872 28.934,21.394
29.742,21.394 29.742,21.013 "/>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="16.6395" y1="12.0149" x2="16.6395" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<polygon fill="url(#SVGID_8_)" points="16.022,21.394 16.439,21.394 16.439,23.49 16.022,23.49 16.022,23.872 17.257,23.872
17.257,23.49 16.84,23.49 16.84,21.394 17.257,21.394 17.257,21.013 16.022,21.013 "/>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="24.688" y1="12.0149" x2="24.688" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<polygon fill="url(#SVGID_9_)" points="25.346,23.149 23.996,21.014 23.632,21.014 23.632,23.871 24.029,23.871 24.029,21.768
25.376,23.871 25.744,23.871 25.744,21.014 25.346,21.014 "/>
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="20.7125" y1="12.0149" x2="20.7125" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#FFF7C4"/>
<stop offset="0.5223" style="stop-color:#A5935C"/>
<stop offset="1" style="stop-color:#FFF7C4"/>
</linearGradient>
<polygon fill="url(#SVGID_10_)" points="19.794,23.872 21.631,23.872 21.631,23.49 20.195,23.49 20.195,22.643 21.414,22.643
21.414,22.261 20.195,22.261 20.195,21.394 21.631,21.394 21.631,21.013 19.794,21.013 "/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 44 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 213 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 214 KiB

After

Width:  |  Height:  |  Size: 216 KiB

View File

@@ -1,274 +1,274 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<rect x="2.083" y="7.25" fill-rule="evenodd" clip-rule="evenodd" fill="#2E5E54" width="26.958" height="11.519"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#227561" points="28.73,12.264 28.73,19.764 15.696,19.878 2.662,20.026
2.714,11.718 6.43,8.003 9.6,11.173 12.769,8.003 15.988,11.223 15.988,11.173 19.157,8.003 22.341,11.188 22.341,11.173
25.51,8.003 28.73,11.173 "/>
<rect x="2.083" y="18.083" fill-rule="evenodd" clip-rule="evenodd" fill="#23331B" width="26.958" height="6.084"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#394428" points="2.662,19.391 2.662,18.105 15.696,18.105 28.73,18.105
28.677,19.937 24.961,23.651 21.792,20.481 18.623,23.651 15.403,20.432 15.403,20.481 12.234,23.651 9.05,20.467 9.05,20.481
5.881,23.651 2.662,20.481 "/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#BABABA" d="M19.722,15.976h5.258v0.181h-5.227L19.722,15.976z M19.494,13.694
h3.873l0.472,1.682h-4.125L19.494,13.694z M19.375,13.334h3.968v0.181h-3.936L19.375,13.334z M19.179,11.384h1.542l0.473,1.47
h-1.795L19.179,11.384z M19.093,11.054h1.762v0.21h-1.762V11.054z M17.888,18.525l-0.472-6.991v-0.719h1.479v0.749l0.882,6.961
H17.888z M17.699,9.547h0.913v1.094h-0.913V9.547z M17.919,9.374l-0.094-0.27v-0.66h0.661v0.66l-0.094,0.27H17.919z M14.488,15.585
h2.912l0.008,0.181H14.48L14.488,15.585z M14.506,15.167h2.874l0.01,0.209h-2.894L14.506,15.167z M14.523,14.746h2.838l0.009,0.21
h-2.856L14.523,14.746z M14.54,14.325h2.802l0.009,0.21h-2.819L14.54,14.325z M14.557,13.935h2.768l0.008,0.181h-2.783
L14.557,13.935z M14.582,9.656h2.739v1.031h-2.739V9.656z M14.644,8.892h2.645V9.46h-2.645V8.892z M17.294,13.275h-2.71l0.008-0.211
h2.692L17.294,13.275z M17.276,12.854h-2.675l0.008-0.18h2.658L17.276,12.854z M17.258,12.465h-2.64l0.008-0.209h2.622
L17.258,12.465z M17.238,12.045h-2.603l0.008-0.21h2.585L17.238,12.045z M17.195,11.055l0.005,0.149h-2.53l0.006-0.149H17.195z
M17.219,11.624h-2.567l0.009-0.209h2.549L17.219,11.624z M17.314,13.724h-2.749l0.01-0.239h2.729L17.314,13.724z M12.125,18.525
l0.882-6.961v-0.749h1.479v0.719l-0.472,6.991H12.125z M13.291,9.547h0.913v1.094h-0.913V9.547z M13.511,9.374l-0.094-0.27v-0.66
h0.661v0.66l-0.094,0.27H13.511z M10.708,12.854l0.473-1.47h1.543l-0.221,1.47H10.708z M11.062,11.054h1.763v0.21h-1.763V11.054z
M12.51,13.515H8.574v-0.181h3.968L12.51,13.515z M12.409,13.694l-0.221,1.682H8.063l0.472-1.682H12.409z M12.164,16.156H6.937
v-0.181h5.258L12.164,16.156z M12.031,16.336l-0.283,2.011H6.395l0.598-2.011H12.031z M17.504,17.897h-3.112l0.008-0.211h3.094
L17.504,17.897z M17.485,17.476H14.41l0.008-0.209h3.058L17.485,17.476z M17.466,17.056h-3.04l0.009-0.21h3.021L17.466,17.056z
M17.417,15.977l0.01,0.21h-2.963l0.008-0.21H17.417z M17.447,16.635h-3.002l0.01-0.238h2.982L17.447,16.635z M17.514,18.106
l0.01,0.21h-3.149l0.009-0.21H17.514z M25.507,18.347h-5.353l-0.283-2.011h5.039L25.507,18.347z"/>
<path fill="#898989" d="M18.486,8.444v0.66l-0.094,0.27h-0.473l-0.094-0.27v-0.66H18.486 M14.078,8.444v0.66l-0.094,0.27h-0.473
l-0.094-0.27v-0.66H14.078 M17.289,8.892V9.46h-2.645V8.892H17.289 M18.612,9.547v1.094h-0.913V9.547H18.612 M14.204,9.547v1.094
h-0.913V9.547H14.204 M17.321,9.656v1.031h-2.739V9.656H17.321 M18.895,10.815v0.749l0.882,6.961h-1.889l-0.472-6.991v-0.719H18.895
M14.486,10.815v0.719l-0.472,6.991h-1.889l0.882-6.961v-0.749H14.486 M20.855,11.054v0.21h-1.762v-0.21H20.855 M12.825,11.054v0.21
h-1.763v-0.21H12.825 M17.195,11.055l0.005,0.149h-2.53l0.006-0.149H17.195 M20.721,11.384l0.473,1.47h-1.795l-0.22-1.47H20.721
M12.724,11.384l-0.221,1.47h-1.795l0.473-1.47H12.724 M17.21,11.415l0.009,0.209h-2.567l0.009-0.209H17.21 M17.229,11.835
l0.009,0.21h-2.603l0.008-0.21H17.229 M17.248,12.256l0.01,0.209h-2.64l0.008-0.209H17.248 M17.267,12.675l0.009,0.18h-2.675
l0.008-0.18H17.267 M17.285,13.064l0.01,0.211h-2.71l0.008-0.211H17.285 M23.343,13.334v0.181h-3.936l-0.032-0.181H23.343
M12.542,13.334l-0.032,0.181H8.574v-0.181H12.542 M17.305,13.484l0.01,0.239h-2.749l0.01-0.239H17.305 M23.367,13.694l0.472,1.682
h-4.125l-0.221-1.682H23.367 M12.409,13.694l-0.221,1.682H8.063l0.472-1.682H12.409 M17.325,13.935l0.008,0.181h-2.783l0.007-0.181
H17.325 M17.342,14.325l0.009,0.21h-2.819l0.008-0.21H17.342 M17.361,14.746l0.009,0.21h-2.856l0.009-0.21H17.361 M17.38,15.167
l0.01,0.209h-2.894l0.009-0.209H17.38 M17.399,15.585l0.008,0.181H14.48l0.007-0.181H17.399 M24.98,15.976v0.181h-5.227
l-0.032-0.181H24.98 M12.195,15.976l-0.032,0.181H6.937v-0.181H12.195 M17.417,15.977l0.01,0.21h-2.963l0.008-0.21H17.417
M24.91,16.336l0.598,2.011h-5.353l-0.283-2.011H24.91 M12.031,16.336l-0.283,2.011H6.395l0.598-2.011H12.031 M17.437,16.396
l0.011,0.238h-3.002l0.01-0.238H17.437 M17.457,16.846l0.01,0.21h-3.04l0.009-0.21H17.457 M17.476,17.267l0.009,0.209H14.41
l0.008-0.209H17.476 M17.495,17.687l0.009,0.211h-3.112l0.008-0.211H17.495 M17.514,18.106l0.01,0.21h-3.149l0.009-0.21H17.514
M18.536,8.395h-0.05h-0.661h-0.05v0.05v0.66v0.009l0.002,0.008l0.094,0.27l0.012,0.033h0.036h0.473h0.036l0.012-0.033l0.094-0.27
l0.002-0.008V9.104v-0.66V8.395L18.536,8.395z M14.127,8.395h-0.05h-0.661h-0.05v0.05v0.66v0.009l0.002,0.008l0.094,0.27
l0.012,0.033h0.036h0.473h0.036l0.012-0.033l0.094-0.27l0.002-0.008V9.104v-0.66V8.395L14.127,8.395z M17.339,8.842h-0.05h-2.645
h-0.05v0.05V9.46v0.05h0.05h2.645h0.05V9.46V8.892V8.842L17.339,8.842z M18.662,9.497h-0.05h-0.913h-0.05v0.05v1.094v0.05h0.05
h0.913h0.05v-0.05V9.547V9.497L18.662,9.497z M14.253,9.497h-0.05h-0.913h-0.05v0.05v1.094v0.05h0.05h0.913h0.05v-0.05V9.547V9.497
L14.253,9.497z M17.371,9.606h-0.05h-2.739h-0.05v0.05v1.031v0.05h0.05h2.739h0.05v-0.05V9.656V9.606L17.371,9.606z M18.945,10.766
h-0.05h-1.479h-0.05v0.05v0.719l0.472,6.994l0.003,0.047h0.047h1.889h0.057l-0.007-0.056l-0.882-6.961v-0.743V10.766L18.945,10.766z
M14.536,10.766h-0.05h-1.479h-0.05v0.05v0.749l-0.882,6.955l-0.007,0.056h0.057h1.889h0.047l0.003-0.047l0.472-6.991v-0.722V10.766
L14.536,10.766z M20.905,11.004h-0.05h-1.762h-0.05v0.05v0.21v0.05h0.05h1.762h0.05v-0.05v-0.21V11.004L20.905,11.004z
M12.875,11.004h-0.05h-1.763h-0.05v0.05v0.21v0.05h0.05h1.763h0.05v-0.05v-0.21V11.004L12.875,11.004z M17.243,11.005h-0.048
h-2.519h-0.048l-0.002,0.048l-0.006,0.149l-0.002,0.052h0.052h2.53h0.052l-0.002-0.052l-0.005-0.149L17.243,11.005L17.243,11.005z
M20.758,11.334h-0.037h-1.542h-0.058l0.009,0.058l0.22,1.47l0.006,0.042h0.043h1.795h0.068l-0.021-0.065l-0.473-1.47L20.758,11.334
L20.758,11.334z M12.782,11.334h-0.058h-1.543h-0.037l-0.011,0.034l-0.473,1.47l-0.021,0.065h0.069h1.795h0.043l0.006-0.042
l0.221-1.47L12.782,11.334L12.782,11.334z M17.258,11.365H17.21h-2.549h-0.048l-0.002,0.048l-0.009,0.209L14.6,11.674h0.052h2.567
h0.052l-0.002-0.052l-0.009-0.209L17.258,11.365L17.258,11.365z M17.277,11.785h-0.048h-2.585h-0.048l-0.002,0.048l-0.008,0.21
l-0.002,0.052h0.052h2.603h0.052l-0.002-0.052l-0.009-0.21L17.277,11.785L17.277,11.785z M17.296,12.206h-0.048h-2.622h-0.048
l-0.002,0.048l-0.008,0.209l-0.002,0.052h0.052h2.64h0.052l-0.002-0.052l-0.01-0.209L17.296,12.206L17.296,12.206z M17.315,12.625
h-0.048h-2.658h-0.048l-0.002,0.048l-0.008,0.18l-0.002,0.052h0.052h2.675h0.053l-0.003-0.053l-0.009-0.18L17.315,12.625
L17.315,12.625z M17.333,13.015h-0.048h-2.692h-0.048l-0.001,0.048l-0.008,0.211l-0.002,0.052h0.052h2.71h0.052l-0.002-0.052
l-0.01-0.211L17.333,13.015L17.333,13.015z M23.393,13.284h-0.05h-3.968h-0.06l0.01,0.059l0.032,0.181l0.007,0.041h0.042h3.936h0.05
v-0.05v-0.181V13.284L23.393,13.284z M12.601,13.284h-0.06H8.574h-0.05v0.05v0.181v0.05h0.05h3.936h0.042l0.007-0.041l0.032-0.181
L12.601,13.284L12.601,13.284z M17.353,13.435h-0.048h-2.729h-0.048l-0.002,0.048l-0.01,0.239l-0.002,0.052h0.052h2.749h0.052
l-0.002-0.052l-0.01-0.239L17.353,13.435L17.353,13.435z M23.405,13.645h-0.038h-3.873h-0.057l0.007,0.057l0.221,1.682l0.006,0.043
h0.044h4.125h0.066l-0.018-0.063l-0.472-1.682L23.405,13.645L23.405,13.645z M12.466,13.645h-0.057H8.536H8.498l-0.01,0.036
l-0.472,1.682l-0.018,0.063h0.066h4.125h0.044l0.006-0.043l0.221-1.682L12.466,13.645L12.466,13.645z M17.373,13.885h-0.048h-2.768
h-0.048l-0.002,0.048L14.5,14.113l-0.002,0.052h0.052h2.783h0.052l-0.002-0.052l-0.008-0.181L17.373,13.885L17.373,13.885z
M17.39,14.275h-0.048H14.54h-0.048l-0.002,0.048l-0.008,0.21l-0.002,0.052h0.052h2.819h0.052l-0.002-0.052l-0.009-0.21
L17.39,14.275L17.39,14.275z M17.409,14.696h-0.048h-2.838h-0.048l-0.002,0.048l-0.009,0.21l-0.002,0.052h0.052h2.856h0.052
l-0.002-0.052l-0.009-0.21L17.409,14.696L17.409,14.696z M17.428,15.117H17.38h-2.874h-0.048l-0.002,0.048l-0.009,0.209
l-0.002,0.052h0.052h2.894h0.053l-0.003-0.053l-0.01-0.209L17.428,15.117L17.428,15.117z M17.447,15.535h-0.048h-2.912H14.44
l-0.002,0.048l-0.007,0.181l-0.002,0.052h0.052h2.927h0.052l-0.002-0.052l-0.008-0.181L17.447,15.535L17.447,15.535z M25.03,15.926
h-0.05h-5.258h-0.06l0.01,0.059l0.032,0.181l0.007,0.041h0.042h5.227h0.05v-0.05v-0.181V15.926L25.03,15.926z M12.255,15.926h-0.06
H6.937h-0.05v0.05v0.181v0.05h0.05h5.227h0.042l0.007-0.041l0.032-0.181L12.255,15.926L12.255,15.926z M17.465,15.927h-0.048h-2.945
h-0.048l-0.002,0.048l-0.008,0.21l-0.002,0.052h0.052h2.963h0.052l-0.002-0.052l-0.01-0.21L17.465,15.927L17.465,15.927z
M24.947,16.286H24.91h-5.039h-0.058l0.008,0.057l0.283,2.011l0.006,0.043h0.043h5.353h0.067l-0.019-0.064l-0.598-2.011
L24.947,16.286L24.947,16.286z M12.089,16.286h-0.058H6.993H6.956l-0.011,0.035l-0.598,2.011l-0.019,0.064h0.067h5.353h0.043
l0.006-0.043l0.283-2.011L12.089,16.286L12.089,16.286z M17.484,16.347h-0.048h-2.982h-0.048l-0.002,0.048l-0.01,0.238l-0.002,0.052
h0.052h3.002H17.5l-0.002-0.052l-0.011-0.238L17.484,16.347L17.484,16.347z M17.504,16.796h-0.048h-3.021h-0.048l-0.002,0.048
l-0.009,0.21l-0.002,0.052h0.052h3.04h0.052l-0.002-0.052l-0.01-0.21L17.504,16.796L17.504,16.796z M17.524,17.217h-0.048h-3.058
H14.37l-0.001,0.048l-0.008,0.209l-0.002,0.052h0.052h3.075h0.052l-0.002-0.052l-0.009-0.209L17.524,17.217L17.524,17.217z
M17.543,17.637h-0.048h-3.094h-0.048l-0.002,0.048l-0.008,0.211l-0.002,0.052h0.052h3.112h0.052l-0.002-0.052l-0.009-0.211
L17.543,17.637L17.543,17.637z M17.562,18.057h-0.048h-3.13h-0.048l-0.002,0.048l-0.009,0.21l-0.002,0.052h0.052h3.149h0.053
l-0.003-0.052l-0.01-0.211L17.562,18.057L17.562,18.057z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9BCB3C" d="M28.444,16.208c-0.505-0.929-1.088-1.318-2.08-2.447
c-0.954-1.085-1.216-2.501-1.216-2.501c2.662,3.817,5.156,0.925,4.25,7.613C29.278,18.209,28.967,17.167,28.444,16.208z
M29.231,18.795c0.103,0.46,0.038,1.113,0.038,1.113s-0.224-2.438-2.449-4.279C24.733,13.902,25.1,11.45,25.1,11.45
s0.369,1.815,1.979,3.293C28.757,16.285,29.116,18.284,29.231,18.795z M26.567,16.336c1.551,0.787,2.53,2.621,2.863,4.581
c-0.758-2.282-2.504-4.332-4.856-4.478c-1.5-0.093-2.01,1.021-2.01,1.021C23.372,15.667,25.072,15.577,26.567,16.336z
M28.217,18.813c1.439,2.233,1.692,4.15,1.692,4.15s-0.729-2.87-3.865-4.603c-2.959-1.634-3.709,0.568-3.709,0.568
C22.231,15.435,26.544,16.215,28.217,18.813z M5.675,18.361C2.54,20.094,1.81,22.964,1.81,22.964s0.253-1.917,1.691-4.15
c1.673-2.599,5.986-3.379,5.883,0.116C9.384,18.93,8.634,16.728,5.675,18.361z M7.144,16.439c-2.351,0.146-4.098,2.195-4.855,4.478
c0.333-1.96,1.312-3.794,2.862-4.581c1.494-0.758,3.192-0.669,4.002,1.118C9.116,17.378,8.589,16.352,7.144,16.439z M2.449,19.908
c0,0-0.066-0.653,0.039-1.113c0.114-0.511,0.473-2.51,2.152-4.052c1.609-1.478,1.978-3.293,1.978-3.293s0.367,2.452-1.72,4.179
C2.673,17.471,2.449,19.908,2.449,19.908z M3.274,16.208c-0.522,0.959-0.833,2.001-0.955,2.665
c-0.905-6.688,1.588-3.796,4.251-7.613c0,0-0.262,1.416-1.216,2.501C4.362,14.89,3.779,15.279,3.274,16.208z"/>
<path fill="#51853C" d="M1.81,23.014c-0.003,0-0.006,0-0.009-0.001c-0.026-0.005-0.044-0.029-0.041-0.056
c0.003-0.019,0.271-1.953,1.699-4.171c0.855-1.328,2.44-2.257,3.854-2.257c0.552,0,1.024,0.149,1.38,0.434
c-0.306-0.264-0.794-0.521-1.546-0.474c-2.514,0.155-4.163,2.491-4.811,4.443c-0.008,0.024-0.032,0.039-0.06,0.033
c-0.025-0.007-0.042-0.031-0.037-0.058c0.056-0.327,0.128-0.645,0.215-0.95c-0.002,0-0.004,0-0.006,0l0,0
c-0.026,0-0.047-0.02-0.05-0.045c-0.002-0.027-0.065-0.667,0.04-1.129l0.02-0.09c0.134-0.622,0.543-2.515,2.148-3.988
c0.479-0.439,0.848-0.912,1.129-1.356c-0.104,0.151-0.218,0.301-0.344,0.444c-0.337,0.384-0.627,0.682-0.883,0.944
c-0.5,0.515-0.861,0.886-1.191,1.493c-0.517,0.948-0.829,1.991-0.949,2.65c-0.004,0.024-0.025,0.041-0.049,0.041
c0,0-0.001,0-0.001,0c-0.025,0-0.045-0.019-0.048-0.043c-0.576-4.257,0.229-4.673,1.563-5.362c0.767-0.396,1.722-0.889,2.697-2.286
c0.013-0.019,0.039-0.027,0.06-0.018c0.022,0.009,0.034,0.032,0.03,0.055c0,0.003-0.01,0.054-0.032,0.142
c0.008-0.006,0.019-0.01,0.03-0.01H6.62c0.024,0,0.044,0.019,0.048,0.042c0.004,0.025,0.347,2.5-1.738,4.225
c-1.821,1.508-2.294,3.437-2.402,4.05c0.507-1.594,1.436-2.834,2.602-3.426c0.588-0.298,1.189-0.455,1.738-0.455
c0.731,0,1.727,0.275,2.326,1.585c0.008,0.009,0.013,0.021,0.013,0.033c0,0.027-0.022,0.05-0.05,0.05c-0.001,0-0.001,0-0.002,0
c-0.003,0-0.005,0-0.008,0c0.209,0.379,0.306,0.857,0.289,1.428c0,0.023-0.019,0.044-0.042,0.048
c-0.022,0.002-0.047-0.011-0.055-0.033c-0.016-0.047-0.405-1.139-1.716-1.139c-0.558,0-1.204,0.201-1.922,0.598
c-3.081,1.702-3.833,4.542-3.841,4.571C1.853,22.999,1.832,23.014,1.81,23.014z M7.313,16.63c-1.359,0-2.944,0.93-3.77,2.211
c-0.903,1.402-1.338,2.688-1.536,3.44c0.419-0.962,1.447-2.75,3.643-3.964c0.733-0.404,1.396-0.609,1.97-0.609
c1.026,0,1.523,0.655,1.714,1c-0.017-0.655-0.202-1.168-0.551-1.528C8.434,16.82,7.925,16.63,7.313,16.63z M6.867,15.936
c-0.533,0-1.119,0.154-1.693,0.445c-1.273,0.646-2.26,2.089-2.708,3.924c0.773-1.833,2.364-3.772,4.675-3.915
c0.799-0.053,1.323,0.235,1.643,0.521C8.212,16.12,7.451,15.936,6.867,15.936z M6.589,11.748c-0.177,0.575-0.691,1.908-1.916,3.032
c-1.581,1.452-1.985,3.321-2.118,3.935l-0.02,0.091c-0.046,0.202-0.059,0.445-0.058,0.65c0.18-0.796,0.74-2.502,2.388-3.865
C6.488,14.249,6.609,12.444,6.589,11.748z M6.463,11.494c-0.937,1.262-1.847,1.731-2.585,2.112
c-1.264,0.653-2.039,1.053-1.548,4.966c0.151-0.66,0.448-1.56,0.899-2.388c0.337-0.62,0.702-0.996,1.208-1.516
c0.255-0.262,0.543-0.56,0.879-0.941C6.017,12.932,6.343,11.944,6.463,11.494z M29.909,23.014c-0.022,0-0.042-0.015-0.048-0.037
c-0.007-0.029-0.762-2.87-3.841-4.571c-0.717-0.396-1.364-0.598-1.921-0.598c-1.312,0-1.701,1.092-1.716,1.139
c-0.007,0.022-0.032,0.035-0.055,0.033c-0.024-0.004-0.042-0.024-0.042-0.048c-0.017-0.567,0.079-1.044,0.286-1.422
c-0.009,0-0.019,0-0.027-0.004c-0.025-0.012-0.037-0.041-0.025-0.066c0.597-1.326,1.599-1.604,2.334-1.604
c0.549,0,1.15,0.158,1.737,0.456c1.165,0.592,2.093,1.83,2.601,3.422c-0.11-0.618-0.585-2.542-2.401-4.046
c-2.085-1.725-1.742-4.199-1.738-4.225c0.003-0.023,0.024-0.042,0.048-0.042c0.012,0.004,0.023,0.004,0.033,0.011
c-0.022-0.089-0.032-0.14-0.032-0.143c-0.004-0.022,0.008-0.046,0.03-0.055c0.023-0.01,0.047-0.001,0.061,0.018
c0.975,1.397,1.929,1.891,2.696,2.286c1.334,0.689,2.139,1.105,1.563,5.362c-0.003,0.024-0.023,0.043-0.048,0.043c0,0,0,0-0.001,0
c-0.024,0-0.045-0.017-0.049-0.041c-0.12-0.658-0.432-1.7-0.949-2.65c-0.33-0.606-0.691-0.978-1.189-1.491
c-0.256-0.263-0.546-0.562-0.884-0.946c-0.129-0.146-0.245-0.3-0.35-0.454c0.282,0.447,0.653,0.924,1.136,1.366
c1.601,1.471,2.012,3.362,2.147,3.984l0.021,0.094c0.104,0.462,0.042,1.102,0.039,1.129c-0.002,0.025-0.024,0.045-0.05,0.045l0,0
c-0.002,0-0.004,0-0.005,0c0.087,0.306,0.159,0.623,0.215,0.95c0.004,0.026-0.012,0.051-0.037,0.058
c-0.028,0.006-0.052-0.009-0.06-0.033c-0.648-1.952-2.297-4.288-4.812-4.443c-0.694-0.044-1.168,0.179-1.479,0.423
c0.348-0.251,0.796-0.383,1.314-0.383c1.413,0,2.998,0.929,3.853,2.257c1.429,2.218,1.697,4.152,1.7,4.171
c0.003,0.026-0.014,0.051-0.041,0.056C29.915,23.014,29.912,23.014,29.909,23.014z M24.098,17.708c0.575,0,1.237,0.205,1.97,0.609
c2.195,1.213,3.224,3,3.643,3.962c-0.198-0.752-0.633-2.038-1.536-3.438c-0.825-1.281-2.41-2.211-3.769-2.211
c-0.613,0-1.122,0.19-1.471,0.55c-0.35,0.36-0.534,0.873-0.551,1.528C22.574,18.363,23.072,17.708,24.098,17.708z M24.398,16.384
c0.058,0,0.117,0.002,0.178,0.006c2.311,0.143,3.902,2.083,4.676,3.916c-0.447-1.836-1.434-3.278-2.708-3.925
c-0.574-0.292-1.159-0.445-1.692-0.445c-0.583,0-1.34,0.183-1.911,0.966C23.236,16.641,23.703,16.384,24.398,16.384z M25.129,11.748
c-0.02,0.696,0.102,2.501,1.724,3.843c1.646,1.362,2.207,3.068,2.387,3.864c0-0.205-0.012-0.447-0.057-0.649l-0.021-0.094
c-0.134-0.614-0.54-2.482-2.117-3.932C25.821,13.656,25.306,12.324,25.129,11.748z M25.256,11.494
c0.12,0.45,0.446,1.438,1.146,2.233c0.336,0.383,0.625,0.681,0.881,0.943c0.504,0.52,0.869,0.895,1.206,1.514
c0.452,0.829,0.749,1.729,0.899,2.387c0.491-3.911-0.284-4.312-1.548-4.965C27.102,13.226,26.192,12.756,25.256,11.494z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5D5E5E" d="M0.543,4.852h30.692v21.757H0.543V4.852z M1.665,6.018h28.449
v19.417L1.665,25.436V6.018z"/>
<path fill="#898989" d="M31.335,26.708H0.443V4.752h30.892V26.708z M0.643,26.509h30.492V4.951H0.643V26.509z M1.665,25.535h-0.1
V5.918h28.649v19.616L1.665,25.535z M1.765,6.117v19.219l28.249-0.001V6.117H1.765z"/>
<path fill="#91C63F" d="M1.665,25.436l28.449-0.001V6.018H1.665V25.436 M3.265,7.617h25.249v16.218L3.265,23.836V7.617L3.265,7.617z
"/>
<path fill="#51853C" d="M3.265,23.886h-0.05V7.567h25.348v16.317L3.265,23.886z M3.314,7.667v16.119l25.149-0.001V7.667H3.314z"/>
<path fill="#51853C" d="M1.72,25.447H1.665V5.996h28.449v19.45L1.72,25.447z M1.776,6.114v19.215l28.225-0.002V6.114H1.776z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E2EAD9" d="M23.153,20.561c-0.306-0.324-0.652-0.486-1.036-0.486
c-0.324,0-0.597,0.11-0.819,0.332c-0.221,0.222-0.333,0.495-0.333,0.818c0,0.228,0.049,0.428,0.148,0.603
c0.098,0.177,0.237,0.313,0.417,0.413s0.379,0.15,0.599,0.15c0.188,0,0.358-0.035,0.514-0.105c0.155-0.069,0.326-0.196,0.511-0.382
l0.438,0.457c-0.251,0.245-0.488,0.413-0.71,0.509c-0.223,0.095-0.477,0.142-0.763,0.142c-0.527,0-0.958-0.167-1.294-0.501
c-0.336-0.335-0.504-0.763-0.504-1.285c0-0.339,0.077-0.64,0.229-0.901c0.153-0.264,0.372-0.475,0.657-0.635
c0.285-0.159,0.592-0.239,0.921-0.239c0.28,0,0.549,0.06,0.808,0.177c0.258,0.118,0.481,0.286,0.669,0.505L23.153,20.561z
M17.809,19.534h1.851v0.633h-1.21v0.612h1.21v0.62h-1.21v0.893h1.21v0.634h-1.851V19.534z M16.392,22.926h-0.655v-2.755h-0.602
v-0.637h1.875v0.637h-0.618V22.926z M14.447,22.306v0.62h-2.072l1.202-2.753h-1.103v-0.639h2.051l-1.207,2.771H14.447z
M10.83,22.227H9.447L9.17,22.926H8.5l1.308-3.392h0.654l1.305,3.392h-0.671L10.83,22.227z M10.139,20.434l-0.456,1.164h0.908
L10.139,20.434z"/>
<path fill="#A2BC52" d="M22.127,19.449c0.28,0,0.549,0.06,0.808,0.177c0.258,0.118,0.481,0.286,0.669,0.505l-0.452,0.43
c-0.306-0.324-0.652-0.486-1.036-0.486c-0.324,0-0.597,0.11-0.819,0.332c-0.221,0.222-0.333,0.495-0.333,0.818
c0,0.228,0.049,0.428,0.148,0.603c0.098,0.177,0.237,0.313,0.417,0.413s0.379,0.15,0.599,0.15c0.188,0,0.358-0.035,0.514-0.105
c0.155-0.069,0.326-0.196,0.511-0.382l0.438,0.457c-0.251,0.245-0.488,0.413-0.71,0.509c-0.223,0.095-0.477,0.142-0.763,0.142
c-0.527,0-0.958-0.167-1.294-0.501c-0.336-0.335-0.504-0.763-0.504-1.285c0-0.339,0.077-0.64,0.229-0.901
c0.153-0.264,0.372-0.475,0.657-0.635C21.491,19.529,21.799,19.449,22.127,19.449 M19.659,19.534v0.633h-1.21v0.612h1.21v0.62h-1.21
v0.893h1.21v0.634h-1.851v-3.392H19.659 M17.01,19.534v0.637h-0.618v2.755h-0.655v-2.755h-0.602v-0.637H17.01 M14.525,19.534
l-1.207,2.771h1.128v0.62h-2.072l1.202-2.753h-1.103v-0.639H14.525 M10.462,19.534l1.305,3.392h-0.671l-0.266-0.699H9.447
L9.17,22.926H8.5l1.308-3.392H10.462 M9.684,21.598h0.908l-0.452-1.164L9.684,21.598 M22.127,19.284
c-0.355,0-0.692,0.087-1.001,0.26c-0.31,0.176-0.552,0.409-0.719,0.696c-0.167,0.286-0.251,0.617-0.251,0.984
c0,0.565,0.186,1.036,0.552,1.401c0.367,0.365,0.842,0.55,1.411,0.55c0.306,0,0.584-0.052,0.827-0.155
c0.244-0.104,0.499-0.286,0.761-0.542l0.117-0.114l-0.113-0.117l-0.438-0.457l-0.117-0.122l-0.119,0.119
c-0.169,0.169-0.325,0.285-0.462,0.348c-0.133,0.061-0.283,0.091-0.446,0.091c-0.192,0-0.362-0.042-0.519-0.129
c-0.154-0.086-0.27-0.2-0.354-0.35c-0.085-0.151-0.126-0.322-0.126-0.522c0-0.281,0.093-0.51,0.285-0.702
c0.191-0.19,0.421-0.283,0.703-0.283c0.34,0,0.64,0.142,0.916,0.435l0.114,0.12l0.12-0.114l0.451-0.43l0.113-0.107l-0.102-0.118
c-0.202-0.236-0.446-0.421-0.726-0.548C22.723,19.349,22.428,19.284,22.127,19.284L22.127,19.284z M19.824,19.369h-0.165h-1.851
h-0.165v0.165v3.392v0.165h0.165h1.851h0.165v-0.165v-0.634v-0.165h-0.165h-1.045v-0.563h1.045h0.165v-0.165v-0.62v-0.165h-0.165
h-1.045v-0.282h1.045h0.165v-0.165v-0.633V19.369L19.824,19.369z M17.174,19.369H17.01h-1.875h-0.165v0.165v0.637v0.164h0.165h0.437
v2.591v0.165h0.165h0.655h0.165v-0.165v-2.591h0.454h0.165v-0.164v-0.637V19.369L17.174,19.369z M14.776,19.369h-0.251h-2.051H12.31
v0.165v0.639v0.164h0.165h0.851l-1.102,2.522l-0.101,0.231h0.251h2.072h0.165v-0.165v-0.62v-0.165h-0.165H13.57l1.106-2.54
L14.776,19.369L14.776,19.369z M10.575,19.369h-0.113H9.808H9.695l-0.041,0.105l-1.308,3.392L8.26,23.091H8.5h0.67h0.112
l0.041-0.104l0.235-0.595h1.158l0.225,0.593l0.041,0.106h0.114h0.671h0.24l-0.086-0.224l-1.304-3.392L10.575,19.369L10.575,19.369z
M9.925,21.433l0.213-0.546l0.212,0.546H9.925L9.925,21.433z"/>
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.644,11.835 14.635,12.045 14.782,12.045
14.789,11.835 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.592,13.064 14.584,13.275 14.74,13.275 14.748,13.064
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.609,12.675 14.601,12.854 14.754,12.854 14.76,12.675
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.626,12.256 14.618,12.465 14.768,12.465
14.774,12.256 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.472,15.977 14.463,16.187 14.642,16.187
14.649,15.977 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.853,8.892 14.644,8.892 14.644,9.46 15.087,9.46 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.455,16.396 14.445,16.635 14.627,16.635
14.635,16.396 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.418,17.267 14.41,17.476 14.599,17.476 14.605,17.267
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.436,16.846 14.427,17.056 14.613,17.056 14.62,16.846
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.401,17.687 14.393,17.897 14.584,17.897
14.591,17.687 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.885,13.334 19.375,13.334 19.407,13.515
19.885,13.515 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.965,13.694 19.494,13.694 19.714,15.376
21.303,15.376 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.562,12.854 19.489,11.384 19.179,11.384
19.399,12.854 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.276,15.976 19.722,15.976 19.753,16.156
20.276,16.156 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.661,11.415 14.652,11.624 14.796,11.624
14.803,11.415 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.676,11.055 14.67,11.204 14.81,11.204 14.815,11.055
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.407,11.054 19.093,11.054 19.093,11.264
19.401,11.264 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.523,14.746 14.514,14.956 14.684,14.956 14.69,14.746
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.895,9.656 14.582,9.656 14.582,10.688 15.277,10.688
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.362,16.336 19.871,16.336 20.154,18.347
22.373,18.347 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.383,18.106 14.375,18.316 14.57,18.316 14.577,18.106
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.54,14.325 14.532,14.535 14.698,14.535 14.705,14.325
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.506,15.167 14.497,15.376 14.669,15.376
14.676,15.167 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.557,13.935 14.549,14.115 14.712,14.115
14.718,13.935 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.575,13.484 14.565,13.724 14.725,13.724
14.733,13.484 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.488,15.585 14.48,15.766 14.656,15.766 14.662,15.585
"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.57,18.316"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.577,18.106"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.584,17.897"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.591,17.687"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.599,17.476"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.605,17.267"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.613,17.056"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.62,16.846"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.627,16.635"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.635,16.396"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.642,16.187"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.649,15.977"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.656,15.766"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.662,15.585"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.669,15.376"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.676,15.167"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.684,14.956"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.69,14.746"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.698,14.535"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.705,14.325"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.718,13.935"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.725,13.724"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.733,13.484"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.74,13.275"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.748,13.064"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.754,12.854"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.76,12.675"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.768,12.465"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.774,12.256"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.782,12.045"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.789,11.835"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.803,11.415"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.815,11.055"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<rect x="2.083" y="7.25" fill-rule="evenodd" clip-rule="evenodd" fill="#2E5E54" width="26.958" height="11.519"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#227561" points="28.73,12.264 28.73,19.764 15.696,19.878 2.662,20.026
2.714,11.718 6.43,8.003 9.6,11.173 12.769,8.003 15.988,11.223 15.988,11.173 19.157,8.003 22.341,11.188 22.341,11.173
25.51,8.003 28.73,11.173 "/>
<rect x="2.083" y="18.083" fill-rule="evenodd" clip-rule="evenodd" fill="#23331B" width="26.958" height="6.084"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#394428" points="2.662,19.391 2.662,18.105 15.696,18.105 28.73,18.105
28.677,19.937 24.961,23.651 21.792,20.481 18.623,23.651 15.403,20.432 15.403,20.481 12.234,23.651 9.05,20.467 9.05,20.481
5.881,23.651 2.662,20.481 "/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#BABABA" d="M19.722,15.976h5.258v0.181h-5.227L19.722,15.976z M19.494,13.694
h3.873l0.472,1.682h-4.125L19.494,13.694z M19.375,13.334h3.968v0.181h-3.936L19.375,13.334z M19.179,11.384h1.542l0.473,1.47
h-1.795L19.179,11.384z M19.093,11.054h1.762v0.21h-1.762V11.054z M17.888,18.525l-0.472-6.991v-0.719h1.479v0.749l0.882,6.961
H17.888z M17.699,9.547h0.913v1.094h-0.913V9.547z M17.919,9.374l-0.094-0.27v-0.66h0.661v0.66l-0.094,0.27H17.919z M14.488,15.585
h2.912l0.008,0.181H14.48L14.488,15.585z M14.506,15.167h2.874l0.01,0.209h-2.894L14.506,15.167z M14.523,14.746h2.838l0.009,0.21
h-2.856L14.523,14.746z M14.54,14.325h2.802l0.009,0.21h-2.819L14.54,14.325z M14.557,13.935h2.768l0.008,0.181h-2.783
L14.557,13.935z M14.582,9.656h2.739v1.031h-2.739V9.656z M14.644,8.892h2.645V9.46h-2.645V8.892z M17.294,13.275h-2.71l0.008-0.211
h2.692L17.294,13.275z M17.276,12.854h-2.675l0.008-0.18h2.658L17.276,12.854z M17.258,12.465h-2.64l0.008-0.209h2.622
L17.258,12.465z M17.238,12.045h-2.603l0.008-0.21h2.585L17.238,12.045z M17.195,11.055l0.005,0.149h-2.53l0.006-0.149H17.195z
M17.219,11.624h-2.567l0.009-0.209h2.549L17.219,11.624z M17.314,13.724h-2.749l0.01-0.239h2.729L17.314,13.724z M12.125,18.525
l0.882-6.961v-0.749h1.479v0.719l-0.472,6.991H12.125z M13.291,9.547h0.913v1.094h-0.913V9.547z M13.511,9.374l-0.094-0.27v-0.66
h0.661v0.66l-0.094,0.27H13.511z M10.708,12.854l0.473-1.47h1.543l-0.221,1.47H10.708z M11.062,11.054h1.763v0.21h-1.763V11.054z
M12.51,13.515H8.574v-0.181h3.968L12.51,13.515z M12.409,13.694l-0.221,1.682H8.063l0.472-1.682H12.409z M12.164,16.156H6.937
v-0.181h5.258L12.164,16.156z M12.031,16.336l-0.283,2.011H6.395l0.598-2.011H12.031z M17.504,17.897h-3.112l0.008-0.211h3.094
L17.504,17.897z M17.485,17.476H14.41l0.008-0.209h3.058L17.485,17.476z M17.466,17.056h-3.04l0.009-0.21h3.021L17.466,17.056z
M17.417,15.977l0.01,0.21h-2.963l0.008-0.21H17.417z M17.447,16.635h-3.002l0.01-0.238h2.982L17.447,16.635z M17.514,18.106
l0.01,0.21h-3.149l0.009-0.21H17.514z M25.507,18.347h-5.353l-0.283-2.011h5.039L25.507,18.347z"/>
<path fill="#898989" d="M18.486,8.444v0.66l-0.094,0.27h-0.473l-0.094-0.27v-0.66H18.486 M14.078,8.444v0.66l-0.094,0.27h-0.473
l-0.094-0.27v-0.66H14.078 M17.289,8.892V9.46h-2.645V8.892H17.289 M18.612,9.547v1.094h-0.913V9.547H18.612 M14.204,9.547v1.094
h-0.913V9.547H14.204 M17.321,9.656v1.031h-2.739V9.656H17.321 M18.895,10.815v0.749l0.882,6.961h-1.889l-0.472-6.991v-0.719H18.895
M14.486,10.815v0.719l-0.472,6.991h-1.889l0.882-6.961v-0.749H14.486 M20.855,11.054v0.21h-1.762v-0.21H20.855 M12.825,11.054v0.21
h-1.763v-0.21H12.825 M17.195,11.055l0.005,0.149h-2.53l0.006-0.149H17.195 M20.721,11.384l0.473,1.47h-1.795l-0.22-1.47H20.721
M12.724,11.384l-0.221,1.47h-1.795l0.473-1.47H12.724 M17.21,11.415l0.009,0.209h-2.567l0.009-0.209H17.21 M17.229,11.835
l0.009,0.21h-2.603l0.008-0.21H17.229 M17.248,12.256l0.01,0.209h-2.64l0.008-0.209H17.248 M17.267,12.675l0.009,0.18h-2.675
l0.008-0.18H17.267 M17.285,13.064l0.01,0.211h-2.71l0.008-0.211H17.285 M23.343,13.334v0.181h-3.936l-0.032-0.181H23.343
M12.542,13.334l-0.032,0.181H8.574v-0.181H12.542 M17.305,13.484l0.01,0.239h-2.749l0.01-0.239H17.305 M23.367,13.694l0.472,1.682
h-4.125l-0.221-1.682H23.367 M12.409,13.694l-0.221,1.682H8.063l0.472-1.682H12.409 M17.325,13.935l0.008,0.181h-2.783l0.007-0.181
H17.325 M17.342,14.325l0.009,0.21h-2.819l0.008-0.21H17.342 M17.361,14.746l0.009,0.21h-2.856l0.009-0.21H17.361 M17.38,15.167
l0.01,0.209h-2.894l0.009-0.209H17.38 M17.399,15.585l0.008,0.181H14.48l0.007-0.181H17.399 M24.98,15.976v0.181h-5.227
l-0.032-0.181H24.98 M12.195,15.976l-0.032,0.181H6.937v-0.181H12.195 M17.417,15.977l0.01,0.21h-2.963l0.008-0.21H17.417
M24.91,16.336l0.598,2.011h-5.353l-0.283-2.011H24.91 M12.031,16.336l-0.283,2.011H6.395l0.598-2.011H12.031 M17.437,16.396
l0.011,0.238h-3.002l0.01-0.238H17.437 M17.457,16.846l0.01,0.21h-3.04l0.009-0.21H17.457 M17.476,17.267l0.009,0.209H14.41
l0.008-0.209H17.476 M17.495,17.687l0.009,0.211h-3.112l0.008-0.211H17.495 M17.514,18.106l0.01,0.21h-3.149l0.009-0.21H17.514
M18.536,8.395h-0.05h-0.661h-0.05v0.05v0.66v0.009l0.002,0.008l0.094,0.27l0.012,0.033h0.036h0.473h0.036l0.012-0.033l0.094-0.27
l0.002-0.008V9.104v-0.66V8.395L18.536,8.395z M14.127,8.395h-0.05h-0.661h-0.05v0.05v0.66v0.009l0.002,0.008l0.094,0.27
l0.012,0.033h0.036h0.473h0.036l0.012-0.033l0.094-0.27l0.002-0.008V9.104v-0.66V8.395L14.127,8.395z M17.339,8.842h-0.05h-2.645
h-0.05v0.05V9.46v0.05h0.05h2.645h0.05V9.46V8.892V8.842L17.339,8.842z M18.662,9.497h-0.05h-0.913h-0.05v0.05v1.094v0.05h0.05
h0.913h0.05v-0.05V9.547V9.497L18.662,9.497z M14.253,9.497h-0.05h-0.913h-0.05v0.05v1.094v0.05h0.05h0.913h0.05v-0.05V9.547V9.497
L14.253,9.497z M17.371,9.606h-0.05h-2.739h-0.05v0.05v1.031v0.05h0.05h2.739h0.05v-0.05V9.656V9.606L17.371,9.606z M18.945,10.766
h-0.05h-1.479h-0.05v0.05v0.719l0.472,6.994l0.003,0.047h0.047h1.889h0.057l-0.007-0.056l-0.882-6.961v-0.743V10.766L18.945,10.766z
M14.536,10.766h-0.05h-1.479h-0.05v0.05v0.749l-0.882,6.955l-0.007,0.056h0.057h1.889h0.047l0.003-0.047l0.472-6.991v-0.722V10.766
L14.536,10.766z M20.905,11.004h-0.05h-1.762h-0.05v0.05v0.21v0.05h0.05h1.762h0.05v-0.05v-0.21V11.004L20.905,11.004z
M12.875,11.004h-0.05h-1.763h-0.05v0.05v0.21v0.05h0.05h1.763h0.05v-0.05v-0.21V11.004L12.875,11.004z M17.243,11.005h-0.048
h-2.519h-0.048l-0.002,0.048l-0.006,0.149l-0.002,0.052h0.052h2.53h0.052l-0.002-0.052l-0.005-0.149L17.243,11.005L17.243,11.005z
M20.758,11.334h-0.037h-1.542h-0.058l0.009,0.058l0.22,1.47l0.006,0.042h0.043h1.795h0.068l-0.021-0.065l-0.473-1.47L20.758,11.334
L20.758,11.334z M12.782,11.334h-0.058h-1.543h-0.037l-0.011,0.034l-0.473,1.47l-0.021,0.065h0.069h1.795h0.043l0.006-0.042
l0.221-1.47L12.782,11.334L12.782,11.334z M17.258,11.365H17.21h-2.549h-0.048l-0.002,0.048l-0.009,0.209L14.6,11.674h0.052h2.567
h0.052l-0.002-0.052l-0.009-0.209L17.258,11.365L17.258,11.365z M17.277,11.785h-0.048h-2.585h-0.048l-0.002,0.048l-0.008,0.21
l-0.002,0.052h0.052h2.603h0.052l-0.002-0.052l-0.009-0.21L17.277,11.785L17.277,11.785z M17.296,12.206h-0.048h-2.622h-0.048
l-0.002,0.048l-0.008,0.209l-0.002,0.052h0.052h2.64h0.052l-0.002-0.052l-0.01-0.209L17.296,12.206L17.296,12.206z M17.315,12.625
h-0.048h-2.658h-0.048l-0.002,0.048l-0.008,0.18l-0.002,0.052h0.052h2.675h0.053l-0.003-0.053l-0.009-0.18L17.315,12.625
L17.315,12.625z M17.333,13.015h-0.048h-2.692h-0.048l-0.001,0.048l-0.008,0.211l-0.002,0.052h0.052h2.71h0.052l-0.002-0.052
l-0.01-0.211L17.333,13.015L17.333,13.015z M23.393,13.284h-0.05h-3.968h-0.06l0.01,0.059l0.032,0.181l0.007,0.041h0.042h3.936h0.05
v-0.05v-0.181V13.284L23.393,13.284z M12.601,13.284h-0.06H8.574h-0.05v0.05v0.181v0.05h0.05h3.936h0.042l0.007-0.041l0.032-0.181
L12.601,13.284L12.601,13.284z M17.353,13.435h-0.048h-2.729h-0.048l-0.002,0.048l-0.01,0.239l-0.002,0.052h0.052h2.749h0.052
l-0.002-0.052l-0.01-0.239L17.353,13.435L17.353,13.435z M23.405,13.645h-0.038h-3.873h-0.057l0.007,0.057l0.221,1.682l0.006,0.043
h0.044h4.125h0.066l-0.018-0.063l-0.472-1.682L23.405,13.645L23.405,13.645z M12.466,13.645h-0.057H8.536H8.498l-0.01,0.036
l-0.472,1.682l-0.018,0.063h0.066h4.125h0.044l0.006-0.043l0.221-1.682L12.466,13.645L12.466,13.645z M17.373,13.885h-0.048h-2.768
h-0.048l-0.002,0.048L14.5,14.113l-0.002,0.052h0.052h2.783h0.052l-0.002-0.052l-0.008-0.181L17.373,13.885L17.373,13.885z
M17.39,14.275h-0.048H14.54h-0.048l-0.002,0.048l-0.008,0.21l-0.002,0.052h0.052h2.819h0.052l-0.002-0.052l-0.009-0.21
L17.39,14.275L17.39,14.275z M17.409,14.696h-0.048h-2.838h-0.048l-0.002,0.048l-0.009,0.21l-0.002,0.052h0.052h2.856h0.052
l-0.002-0.052l-0.009-0.21L17.409,14.696L17.409,14.696z M17.428,15.117H17.38h-2.874h-0.048l-0.002,0.048l-0.009,0.209
l-0.002,0.052h0.052h2.894h0.053l-0.003-0.053l-0.01-0.209L17.428,15.117L17.428,15.117z M17.447,15.535h-0.048h-2.912H14.44
l-0.002,0.048l-0.007,0.181l-0.002,0.052h0.052h2.927h0.052l-0.002-0.052l-0.008-0.181L17.447,15.535L17.447,15.535z M25.03,15.926
h-0.05h-5.258h-0.06l0.01,0.059l0.032,0.181l0.007,0.041h0.042h5.227h0.05v-0.05v-0.181V15.926L25.03,15.926z M12.255,15.926h-0.06
H6.937h-0.05v0.05v0.181v0.05h0.05h5.227h0.042l0.007-0.041l0.032-0.181L12.255,15.926L12.255,15.926z M17.465,15.927h-0.048h-2.945
h-0.048l-0.002,0.048l-0.008,0.21l-0.002,0.052h0.052h2.963h0.052l-0.002-0.052l-0.01-0.21L17.465,15.927L17.465,15.927z
M24.947,16.286H24.91h-5.039h-0.058l0.008,0.057l0.283,2.011l0.006,0.043h0.043h5.353h0.067l-0.019-0.064l-0.598-2.011
L24.947,16.286L24.947,16.286z M12.089,16.286h-0.058H6.993H6.956l-0.011,0.035l-0.598,2.011l-0.019,0.064h0.067h5.353h0.043
l0.006-0.043l0.283-2.011L12.089,16.286L12.089,16.286z M17.484,16.347h-0.048h-2.982h-0.048l-0.002,0.048l-0.01,0.238l-0.002,0.052
h0.052h3.002H17.5l-0.002-0.052l-0.011-0.238L17.484,16.347L17.484,16.347z M17.504,16.796h-0.048h-3.021h-0.048l-0.002,0.048
l-0.009,0.21l-0.002,0.052h0.052h3.04h0.052l-0.002-0.052l-0.01-0.21L17.504,16.796L17.504,16.796z M17.524,17.217h-0.048h-3.058
H14.37l-0.001,0.048l-0.008,0.209l-0.002,0.052h0.052h3.075h0.052l-0.002-0.052l-0.009-0.209L17.524,17.217L17.524,17.217z
M17.543,17.637h-0.048h-3.094h-0.048l-0.002,0.048l-0.008,0.211l-0.002,0.052h0.052h3.112h0.052l-0.002-0.052l-0.009-0.211
L17.543,17.637L17.543,17.637z M17.562,18.057h-0.048h-3.13h-0.048l-0.002,0.048l-0.009,0.21l-0.002,0.052h0.052h3.149h0.053
l-0.003-0.052l-0.01-0.211L17.562,18.057L17.562,18.057z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9BCB3C" d="M28.444,16.208c-0.505-0.929-1.088-1.318-2.08-2.447
c-0.954-1.085-1.216-2.501-1.216-2.501c2.662,3.817,5.156,0.925,4.25,7.613C29.278,18.209,28.967,17.167,28.444,16.208z
M29.231,18.795c0.103,0.46,0.038,1.113,0.038,1.113s-0.224-2.438-2.449-4.279C24.733,13.902,25.1,11.45,25.1,11.45
s0.369,1.815,1.979,3.293C28.757,16.285,29.116,18.284,29.231,18.795z M26.567,16.336c1.551,0.787,2.53,2.621,2.863,4.581
c-0.758-2.282-2.504-4.332-4.856-4.478c-1.5-0.093-2.01,1.021-2.01,1.021C23.372,15.667,25.072,15.577,26.567,16.336z
M28.217,18.813c1.439,2.233,1.692,4.15,1.692,4.15s-0.729-2.87-3.865-4.603c-2.959-1.634-3.709,0.568-3.709,0.568
C22.231,15.435,26.544,16.215,28.217,18.813z M5.675,18.361C2.54,20.094,1.81,22.964,1.81,22.964s0.253-1.917,1.691-4.15
c1.673-2.599,5.986-3.379,5.883,0.116C9.384,18.93,8.634,16.728,5.675,18.361z M7.144,16.439c-2.351,0.146-4.098,2.195-4.855,4.478
c0.333-1.96,1.312-3.794,2.862-4.581c1.494-0.758,3.192-0.669,4.002,1.118C9.116,17.378,8.589,16.352,7.144,16.439z M2.449,19.908
c0,0-0.066-0.653,0.039-1.113c0.114-0.511,0.473-2.51,2.152-4.052c1.609-1.478,1.978-3.293,1.978-3.293s0.367,2.452-1.72,4.179
C2.673,17.471,2.449,19.908,2.449,19.908z M3.274,16.208c-0.522,0.959-0.833,2.001-0.955,2.665
c-0.905-6.688,1.588-3.796,4.251-7.613c0,0-0.262,1.416-1.216,2.501C4.362,14.89,3.779,15.279,3.274,16.208z"/>
<path fill="#51853C" d="M1.81,23.014c-0.003,0-0.006,0-0.009-0.001c-0.026-0.005-0.044-0.029-0.041-0.056
c0.003-0.019,0.271-1.953,1.699-4.171c0.855-1.328,2.44-2.257,3.854-2.257c0.552,0,1.024,0.149,1.38,0.434
c-0.306-0.264-0.794-0.521-1.546-0.474c-2.514,0.155-4.163,2.491-4.811,4.443c-0.008,0.024-0.032,0.039-0.06,0.033
c-0.025-0.007-0.042-0.031-0.037-0.058c0.056-0.327,0.128-0.645,0.215-0.95c-0.002,0-0.004,0-0.006,0l0,0
c-0.026,0-0.047-0.02-0.05-0.045c-0.002-0.027-0.065-0.667,0.04-1.129l0.02-0.09c0.134-0.622,0.543-2.515,2.148-3.988
c0.479-0.439,0.848-0.912,1.129-1.356c-0.104,0.151-0.218,0.301-0.344,0.444c-0.337,0.384-0.627,0.682-0.883,0.944
c-0.5,0.515-0.861,0.886-1.191,1.493c-0.517,0.948-0.829,1.991-0.949,2.65c-0.004,0.024-0.025,0.041-0.049,0.041
c0,0-0.001,0-0.001,0c-0.025,0-0.045-0.019-0.048-0.043c-0.576-4.257,0.229-4.673,1.563-5.362c0.767-0.396,1.722-0.889,2.697-2.286
c0.013-0.019,0.039-0.027,0.06-0.018c0.022,0.009,0.034,0.032,0.03,0.055c0,0.003-0.01,0.054-0.032,0.142
c0.008-0.006,0.019-0.01,0.03-0.01H6.62c0.024,0,0.044,0.019,0.048,0.042c0.004,0.025,0.347,2.5-1.738,4.225
c-1.821,1.508-2.294,3.437-2.402,4.05c0.507-1.594,1.436-2.834,2.602-3.426c0.588-0.298,1.189-0.455,1.738-0.455
c0.731,0,1.727,0.275,2.326,1.585c0.008,0.009,0.013,0.021,0.013,0.033c0,0.027-0.022,0.05-0.05,0.05c-0.001,0-0.001,0-0.002,0
c-0.003,0-0.005,0-0.008,0c0.209,0.379,0.306,0.857,0.289,1.428c0,0.023-0.019,0.044-0.042,0.048
c-0.022,0.002-0.047-0.011-0.055-0.033c-0.016-0.047-0.405-1.139-1.716-1.139c-0.558,0-1.204,0.201-1.922,0.598
c-3.081,1.702-3.833,4.542-3.841,4.571C1.853,22.999,1.832,23.014,1.81,23.014z M7.313,16.63c-1.359,0-2.944,0.93-3.77,2.211
c-0.903,1.402-1.338,2.688-1.536,3.44c0.419-0.962,1.447-2.75,3.643-3.964c0.733-0.404,1.396-0.609,1.97-0.609
c1.026,0,1.523,0.655,1.714,1c-0.017-0.655-0.202-1.168-0.551-1.528C8.434,16.82,7.925,16.63,7.313,16.63z M6.867,15.936
c-0.533,0-1.119,0.154-1.693,0.445c-1.273,0.646-2.26,2.089-2.708,3.924c0.773-1.833,2.364-3.772,4.675-3.915
c0.799-0.053,1.323,0.235,1.643,0.521C8.212,16.12,7.451,15.936,6.867,15.936z M6.589,11.748c-0.177,0.575-0.691,1.908-1.916,3.032
c-1.581,1.452-1.985,3.321-2.118,3.935l-0.02,0.091c-0.046,0.202-0.059,0.445-0.058,0.65c0.18-0.796,0.74-2.502,2.388-3.865
C6.488,14.249,6.609,12.444,6.589,11.748z M6.463,11.494c-0.937,1.262-1.847,1.731-2.585,2.112
c-1.264,0.653-2.039,1.053-1.548,4.966c0.151-0.66,0.448-1.56,0.899-2.388c0.337-0.62,0.702-0.996,1.208-1.516
c0.255-0.262,0.543-0.56,0.879-0.941C6.017,12.932,6.343,11.944,6.463,11.494z M29.909,23.014c-0.022,0-0.042-0.015-0.048-0.037
c-0.007-0.029-0.762-2.87-3.841-4.571c-0.717-0.396-1.364-0.598-1.921-0.598c-1.312,0-1.701,1.092-1.716,1.139
c-0.007,0.022-0.032,0.035-0.055,0.033c-0.024-0.004-0.042-0.024-0.042-0.048c-0.017-0.567,0.079-1.044,0.286-1.422
c-0.009,0-0.019,0-0.027-0.004c-0.025-0.012-0.037-0.041-0.025-0.066c0.597-1.326,1.599-1.604,2.334-1.604
c0.549,0,1.15,0.158,1.737,0.456c1.165,0.592,2.093,1.83,2.601,3.422c-0.11-0.618-0.585-2.542-2.401-4.046
c-2.085-1.725-1.742-4.199-1.738-4.225c0.003-0.023,0.024-0.042,0.048-0.042c0.012,0.004,0.023,0.004,0.033,0.011
c-0.022-0.089-0.032-0.14-0.032-0.143c-0.004-0.022,0.008-0.046,0.03-0.055c0.023-0.01,0.047-0.001,0.061,0.018
c0.975,1.397,1.929,1.891,2.696,2.286c1.334,0.689,2.139,1.105,1.563,5.362c-0.003,0.024-0.023,0.043-0.048,0.043c0,0,0,0-0.001,0
c-0.024,0-0.045-0.017-0.049-0.041c-0.12-0.658-0.432-1.7-0.949-2.65c-0.33-0.606-0.691-0.978-1.189-1.491
c-0.256-0.263-0.546-0.562-0.884-0.946c-0.129-0.146-0.245-0.3-0.35-0.454c0.282,0.447,0.653,0.924,1.136,1.366
c1.601,1.471,2.012,3.362,2.147,3.984l0.021,0.094c0.104,0.462,0.042,1.102,0.039,1.129c-0.002,0.025-0.024,0.045-0.05,0.045l0,0
c-0.002,0-0.004,0-0.005,0c0.087,0.306,0.159,0.623,0.215,0.95c0.004,0.026-0.012,0.051-0.037,0.058
c-0.028,0.006-0.052-0.009-0.06-0.033c-0.648-1.952-2.297-4.288-4.812-4.443c-0.694-0.044-1.168,0.179-1.479,0.423
c0.348-0.251,0.796-0.383,1.314-0.383c1.413,0,2.998,0.929,3.853,2.257c1.429,2.218,1.697,4.152,1.7,4.171
c0.003,0.026-0.014,0.051-0.041,0.056C29.915,23.014,29.912,23.014,29.909,23.014z M24.098,17.708c0.575,0,1.237,0.205,1.97,0.609
c2.195,1.213,3.224,3,3.643,3.962c-0.198-0.752-0.633-2.038-1.536-3.438c-0.825-1.281-2.41-2.211-3.769-2.211
c-0.613,0-1.122,0.19-1.471,0.55c-0.35,0.36-0.534,0.873-0.551,1.528C22.574,18.363,23.072,17.708,24.098,17.708z M24.398,16.384
c0.058,0,0.117,0.002,0.178,0.006c2.311,0.143,3.902,2.083,4.676,3.916c-0.447-1.836-1.434-3.278-2.708-3.925
c-0.574-0.292-1.159-0.445-1.692-0.445c-0.583,0-1.34,0.183-1.911,0.966C23.236,16.641,23.703,16.384,24.398,16.384z M25.129,11.748
c-0.02,0.696,0.102,2.501,1.724,3.843c1.646,1.362,2.207,3.068,2.387,3.864c0-0.205-0.012-0.447-0.057-0.649l-0.021-0.094
c-0.134-0.614-0.54-2.482-2.117-3.932C25.821,13.656,25.306,12.324,25.129,11.748z M25.256,11.494
c0.12,0.45,0.446,1.438,1.146,2.233c0.336,0.383,0.625,0.681,0.881,0.943c0.504,0.52,0.869,0.895,1.206,1.514
c0.452,0.829,0.749,1.729,0.899,2.387c0.491-3.911-0.284-4.312-1.548-4.965C27.102,13.226,26.192,12.756,25.256,11.494z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5D5E5E" d="M0.543,4.852h30.692v21.757H0.543V4.852z M1.665,6.018h28.449
v19.417L1.665,25.436V6.018z"/>
<path fill="#898989" d="M31.335,26.708H0.443V4.752h30.892V26.708z M0.643,26.509h30.492V4.951H0.643V26.509z M1.665,25.535h-0.1
V5.918h28.649v19.616L1.665,25.535z M1.765,6.117v19.219l28.249-0.001V6.117H1.765z"/>
<path fill="#91C63F" d="M1.665,25.436l28.449-0.001V6.018H1.665V25.436 M3.265,7.617h25.249v16.218L3.265,23.836V7.617L3.265,7.617z
"/>
<path fill="#51853C" d="M3.265,23.886h-0.05V7.567h25.348v16.317L3.265,23.886z M3.314,7.667v16.119l25.149-0.001V7.667H3.314z"/>
<path fill="#51853C" d="M1.72,25.447H1.665V5.996h28.449v19.45L1.72,25.447z M1.776,6.114v19.215l28.225-0.002V6.114H1.776z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E2EAD9" d="M23.153,20.561c-0.306-0.324-0.652-0.486-1.036-0.486
c-0.324,0-0.597,0.11-0.819,0.332c-0.221,0.222-0.333,0.495-0.333,0.818c0,0.228,0.049,0.428,0.148,0.603
c0.098,0.177,0.237,0.313,0.417,0.413s0.379,0.15,0.599,0.15c0.188,0,0.358-0.035,0.514-0.105c0.155-0.069,0.326-0.196,0.511-0.382
l0.438,0.457c-0.251,0.245-0.488,0.413-0.71,0.509c-0.223,0.095-0.477,0.142-0.763,0.142c-0.527,0-0.958-0.167-1.294-0.501
c-0.336-0.335-0.504-0.763-0.504-1.285c0-0.339,0.077-0.64,0.229-0.901c0.153-0.264,0.372-0.475,0.657-0.635
c0.285-0.159,0.592-0.239,0.921-0.239c0.28,0,0.549,0.06,0.808,0.177c0.258,0.118,0.481,0.286,0.669,0.505L23.153,20.561z
M17.809,19.534h1.851v0.633h-1.21v0.612h1.21v0.62h-1.21v0.893h1.21v0.634h-1.851V19.534z M16.392,22.926h-0.655v-2.755h-0.602
v-0.637h1.875v0.637h-0.618V22.926z M14.447,22.306v0.62h-2.072l1.202-2.753h-1.103v-0.639h2.051l-1.207,2.771H14.447z
M10.83,22.227H9.447L9.17,22.926H8.5l1.308-3.392h0.654l1.305,3.392h-0.671L10.83,22.227z M10.139,20.434l-0.456,1.164h0.908
L10.139,20.434z"/>
<path fill="#A2BC52" d="M22.127,19.449c0.28,0,0.549,0.06,0.808,0.177c0.258,0.118,0.481,0.286,0.669,0.505l-0.452,0.43
c-0.306-0.324-0.652-0.486-1.036-0.486c-0.324,0-0.597,0.11-0.819,0.332c-0.221,0.222-0.333,0.495-0.333,0.818
c0,0.228,0.049,0.428,0.148,0.603c0.098,0.177,0.237,0.313,0.417,0.413s0.379,0.15,0.599,0.15c0.188,0,0.358-0.035,0.514-0.105
c0.155-0.069,0.326-0.196,0.511-0.382l0.438,0.457c-0.251,0.245-0.488,0.413-0.71,0.509c-0.223,0.095-0.477,0.142-0.763,0.142
c-0.527,0-0.958-0.167-1.294-0.501c-0.336-0.335-0.504-0.763-0.504-1.285c0-0.339,0.077-0.64,0.229-0.901
c0.153-0.264,0.372-0.475,0.657-0.635C21.491,19.529,21.799,19.449,22.127,19.449 M19.659,19.534v0.633h-1.21v0.612h1.21v0.62h-1.21
v0.893h1.21v0.634h-1.851v-3.392H19.659 M17.01,19.534v0.637h-0.618v2.755h-0.655v-2.755h-0.602v-0.637H17.01 M14.525,19.534
l-1.207,2.771h1.128v0.62h-2.072l1.202-2.753h-1.103v-0.639H14.525 M10.462,19.534l1.305,3.392h-0.671l-0.266-0.699H9.447
L9.17,22.926H8.5l1.308-3.392H10.462 M9.684,21.598h0.908l-0.452-1.164L9.684,21.598 M22.127,19.284
c-0.355,0-0.692,0.087-1.001,0.26c-0.31,0.176-0.552,0.409-0.719,0.696c-0.167,0.286-0.251,0.617-0.251,0.984
c0,0.565,0.186,1.036,0.552,1.401c0.367,0.365,0.842,0.55,1.411,0.55c0.306,0,0.584-0.052,0.827-0.155
c0.244-0.104,0.499-0.286,0.761-0.542l0.117-0.114l-0.113-0.117l-0.438-0.457l-0.117-0.122l-0.119,0.119
c-0.169,0.169-0.325,0.285-0.462,0.348c-0.133,0.061-0.283,0.091-0.446,0.091c-0.192,0-0.362-0.042-0.519-0.129
c-0.154-0.086-0.27-0.2-0.354-0.35c-0.085-0.151-0.126-0.322-0.126-0.522c0-0.281,0.093-0.51,0.285-0.702
c0.191-0.19,0.421-0.283,0.703-0.283c0.34,0,0.64,0.142,0.916,0.435l0.114,0.12l0.12-0.114l0.451-0.43l0.113-0.107l-0.102-0.118
c-0.202-0.236-0.446-0.421-0.726-0.548C22.723,19.349,22.428,19.284,22.127,19.284L22.127,19.284z M19.824,19.369h-0.165h-1.851
h-0.165v0.165v3.392v0.165h0.165h1.851h0.165v-0.165v-0.634v-0.165h-0.165h-1.045v-0.563h1.045h0.165v-0.165v-0.62v-0.165h-0.165
h-1.045v-0.282h1.045h0.165v-0.165v-0.633V19.369L19.824,19.369z M17.174,19.369H17.01h-1.875h-0.165v0.165v0.637v0.164h0.165h0.437
v2.591v0.165h0.165h0.655h0.165v-0.165v-2.591h0.454h0.165v-0.164v-0.637V19.369L17.174,19.369z M14.776,19.369h-0.251h-2.051H12.31
v0.165v0.639v0.164h0.165h0.851l-1.102,2.522l-0.101,0.231h0.251h2.072h0.165v-0.165v-0.62v-0.165h-0.165H13.57l1.106-2.54
L14.776,19.369L14.776,19.369z M10.575,19.369h-0.113H9.808H9.695l-0.041,0.105l-1.308,3.392L8.26,23.091H8.5h0.67h0.112
l0.041-0.104l0.235-0.595h1.158l0.225,0.593l0.041,0.106h0.114h0.671h0.24l-0.086-0.224l-1.304-3.392L10.575,19.369L10.575,19.369z
M9.925,21.433l0.213-0.546l0.212,0.546H9.925L9.925,21.433z"/>
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.644,11.835 14.635,12.045 14.782,12.045
14.789,11.835 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.592,13.064 14.584,13.275 14.74,13.275 14.748,13.064
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.609,12.675 14.601,12.854 14.754,12.854 14.76,12.675
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.626,12.256 14.618,12.465 14.768,12.465
14.774,12.256 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.472,15.977 14.463,16.187 14.642,16.187
14.649,15.977 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.853,8.892 14.644,8.892 14.644,9.46 15.087,9.46 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.455,16.396 14.445,16.635 14.627,16.635
14.635,16.396 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.418,17.267 14.41,17.476 14.599,17.476 14.605,17.267
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.436,16.846 14.427,17.056 14.613,17.056 14.62,16.846
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.401,17.687 14.393,17.897 14.584,17.897
14.591,17.687 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.885,13.334 19.375,13.334 19.407,13.515
19.885,13.515 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.965,13.694 19.494,13.694 19.714,15.376
21.303,15.376 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.562,12.854 19.489,11.384 19.179,11.384
19.399,12.854 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.276,15.976 19.722,15.976 19.753,16.156
20.276,16.156 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.661,11.415 14.652,11.624 14.796,11.624
14.803,11.415 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.676,11.055 14.67,11.204 14.81,11.204 14.815,11.055
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.407,11.054 19.093,11.054 19.093,11.264
19.401,11.264 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.523,14.746 14.514,14.956 14.684,14.956 14.69,14.746
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.895,9.656 14.582,9.656 14.582,10.688 15.277,10.688
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.362,16.336 19.871,16.336 20.154,18.347
22.373,18.347 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.383,18.106 14.375,18.316 14.57,18.316 14.577,18.106
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.54,14.325 14.532,14.535 14.698,14.535 14.705,14.325
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.506,15.167 14.497,15.376 14.669,15.376
14.676,15.167 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.557,13.935 14.549,14.115 14.712,14.115
14.718,13.935 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.575,13.484 14.565,13.724 14.725,13.724
14.733,13.484 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.488,15.585 14.48,15.766 14.656,15.766 14.662,15.585
"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.57,18.316"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.577,18.106"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.584,17.897"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.591,17.687"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.599,17.476"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.605,17.267"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.613,17.056"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.62,16.846"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.627,16.635"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.635,16.396"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.642,16.187"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.649,15.977"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.656,15.766"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.662,15.585"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.669,15.376"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.676,15.167"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.684,14.956"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.69,14.746"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.698,14.535"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.705,14.325"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.718,13.935"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.725,13.724"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.733,13.484"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.74,13.275"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.748,13.064"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.754,12.854"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.76,12.675"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.768,12.465"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.774,12.256"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.782,12.045"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.789,11.835"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.803,11.415"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.815,11.055"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

@@ -1,141 +1,141 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_22_copy_11_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5E5C55" d="M27.265,5.259H4.152c-0.247,0-0.448,0.201-0.448,0.448v11.939
c0.027,0.402,0.518,0.896,0.518,0.896s11.03,11.075,11.166,11.211c0.137,0.137,0.427,0.204,0.637-0.006
c0.21-0.209,11.24-11.205,11.24-11.205s0.447-0.467,0.447-0.896V5.708C27.712,5.46,27.512,5.259,27.265,5.259z"/>
</g>
</g>
<g id="Ellipse_1_copy_5" opacity="0.4">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#171617" d="M24.033,8.904l0.083-4.535L4.136,4.301l0.067,13.515l2.704,2.942
l0.938,0.769V9.862c0-0.53,0.431-0.959,0.961-0.959h15.164C23.992,8.902,24.013,8.903,24.033,8.904z M14.699,12.492h10.376v-0.674
H14.81c-0.005-1.11-0.906-2.009-2.018-2.009s-2.014,0.899-2.02,2.009h-0.186v0.674h0.298c0.249,0.715,0.889,1.247,1.663,1.34
v1.915c-0.52,0.061-0.989,0.277-1.362,0.602l-1.753-1.75l-0.479,0.478l1.785,1.783c-0.26,0.393-0.412,0.863-0.412,1.369
c0,0.658,0.257,1.256,0.675,1.702L8.958,21.97l0.479,0.478l2.093-2.09c0.303,0.185,0.649,0.307,1.019,0.35v1.944
c-0.992,0.102-1.771,0.923-1.808,1.934h-0.153v0.674l0.243,0c0.255,0.821,1.021,1.418,1.927,1.418
c0.904,0,1.669-0.594,1.927-1.412l6.354,0.01l0.376-0.69h-6.64c-0.033-0.921-0.684-1.684-1.549-1.89v-2
c0.357-0.054,0.691-0.184,0.984-0.373l2.131,2.129l0.479-0.478l-2.095-2.092c0.394-0.441,0.633-1.02,0.633-1.656
c0-0.483-0.138-0.934-0.377-1.316l1.833-1.831l-0.477-0.478l-1.79,1.788c-0.36-0.329-0.816-0.556-1.321-0.633V13.8
C13.913,13.649,14.471,13.147,14.699,12.492z"/>
</g>
</g>
<g id="Rectangle_1_copy_4">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B1A6" d="M12.206,23.091h0.677V18.69l3.116,3.112l0.478-0.478
l-3.454-3.449l3.45-3.445l-0.479-0.478l-3.11,3.106v-4.4h-0.677v4.4L9.09,13.947l-0.479,0.478l3.454,3.449l-3.449,3.445
l0.478,0.478l3.112-3.107V23.091z M10.245,24.608h11.511v-0.674H10.245V24.608z M10.245,11.167v0.674h14.488v-0.674H10.245z"/>
</g>
</g>
<g opacity="0.4">
<path fill="#343A38" d="M14.029,16.625l-0.688-0.687c-0.165-0.038-0.337-0.059-0.513-0.059c-1.261,0-2.284,1.021-2.284,2.281
c0,0.239,0.226,0.696,0.295,0.913c0.009,0.027-0.216,0.196-0.2,0.219c0.147,0.209,0.307,0.371,0.508,0.518l0.08-0.167l0.974,0.317
v0.479c0.35,0.091,0.666,0.013,0.686,0.012l0.031-0.534l0.321-0.487l0.677,0.297l0.267,0.271c0.188-0.137,0.353-0.303,0.489-0.49
l-0.643-0.643V16.625z"/>
<path fill="#343A38" d="M13.59,11.124l-0.748-0.677c-0.165-0.038-0.258-0.428-0.434-0.428c-1.263,0-1.261,0.392-1.261,1.651
c0,0.539,0.271,0.976,0.582,1.367l0.476,0.023v0.53c0.281,0.096,0.671,0.018,0.689,0.017v-0.523l-0.88-1.243l0.677,0.297
l0.267,0.271c0.187-0.138,0.352-0.303,0.489-0.49l0.771-0.059h0.321c0,0,0.073-0.4,0.012-0.701
C14.134,11.16,13.59,11.124,13.59,11.124z"/>
<path fill="#343A38" d="M13.394,24.68l0.772-0.059h0.32c0,0,0.123-0.265,0.012-0.702c-0.554,0-0.962-0.035-0.962-0.035
L13.394,24.68z"/>
</g>
<g id="Color_Fill_1">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B1A6" d="M24.244,7.009V3.656H3.441V17.24l3.899,3.9l0.069-0.547
c0,0,0-9.888,0-10.401c0-0.599-0.034-0.834,0.342-1.232C8.127,8.563,8.18,8.583,8.848,8.583c0.479,0,15.44,0,15.44,0L24.244,7.009
z M10.72,11.504c0,0.991,0.805,1.795,1.797,1.795c0.993,0,1.799-0.804,1.799-1.795s-0.806-1.795-1.799-1.795
C11.524,9.709,10.72,10.513,10.72,11.504z M14.315,24.271c0-0.991-0.806-1.795-1.799-1.795c-0.992,0-1.797,0.804-1.797,1.795
s0.805,1.795,1.797,1.795C13.51,26.066,14.315,25.263,14.315,24.271z M12.544,20.155c1.262,0,2.284-1.021,2.284-2.281
s-1.022-2.281-2.284-2.281s-2.283,1.021-2.283,2.281S11.282,20.155,12.544,20.155z M19.019,27.401
c-2.02,0-4.303-0.016-6.159-0.016c-0.871,0,2.807,3.275,2.807,3.275S20.278,27.401,19.019,27.401z"/>
</g>
</g>
<g id="Rectangle_3">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#293C3C" points="22.574,4.832 22.574,24.252 27.485,18.558 27.485,4.832
"/>
</g>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#55682F" d="M27.52,3.117H4.375c-0.862,0-1.377,0.637-1.377,1.252v12.685
c0,1.091,0.635,1.879,0.662,1.913l0.012,0.015l0.013,0.014c3.398,3.624,11.318,12.066,11.486,12.215
c0.202,0.18,0.483,0.283,0.771,0.283c0.283,0,0.555-0.103,0.765-0.29c0.262-0.233,9.688-10.209,11.574-12.207l0.03-0.033
l0.024-0.037c0.059-0.083,0.562-0.843,0.562-1.714V4.369C28.896,3.777,28.332,3.117,27.52,3.117z M28.166,17.219
c0,0.822-0.476,1.539-0.529,1.618l-0.024,0.034l-0.028,0.031C25.804,20.787,16.91,30.2,16.663,30.419
c-0.197,0.177-0.454,0.274-0.722,0.274c-0.271,0-0.536-0.098-0.728-0.267C15.057,30.285,7.583,22.319,4.377,18.9l-0.012-0.013
l-0.013-0.014c-0.024-0.031-0.624-0.775-0.624-1.805V5.099c0-0.58,0.486-1.181,1.3-1.181h21.838c0.766,0,1.3,0.623,1.3,1.181V17.219
z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" fill="#191919" d="M16.133,30.431c-0.008,0-0.015-0.002-0.02-0.003
c-0.537-0.55-7.729-8.237-10.771-11.48c-0.055-0.074-0.396-0.56-0.396-1.181V5.087c0.004-0.02,0.033-0.116,0.236-0.116h22.449
c0.158,0,0.223,0.106,0.236,0.135l0.079,12.185c0,0.413-0.232,0.866-0.34,1.037c-3.099,3.28-11.06,11.701-11.47,12.103
C16.137,30.431,16.135,30.431,16.133,30.431z M26.435,17.815c0.107-0.12,0.266-0.374,0.266-0.495L26.621,5.552l-1.934,0.023
l0.026,0.832H6.026v11.88c0.017,0.102,0.176,0.354,0.327,0.517c0.098,0.103,8.544,9.054,9.697,10.273
C17.183,27.888,26.174,18.09,26.435,17.815z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8CA14A" d="M15.941,30.354c-0.007,0-0.015-0.002-0.021-0.003
c-0.535-0.55-8.344-8.872-11.386-12.116c-0.055-0.074-0.396-0.559-0.396-1.181V4.375c0.003-0.02,0.033-0.117,0.236-0.117H27.52
c0.16,0,0.223,0.107,0.236,0.136v12.82c0,0.413-0.231,0.866-0.34,1.037c-3.098,3.28-11.06,11.701-11.47,12.103
C15.945,30.353,15.944,30.354,15.941,30.354z M26.243,17.737c0.108-0.12,0.267-0.374,0.267-0.495V5.695H5.219v11.521
c0.016,0.102,0.175,0.353,0.326,0.517c0.098,0.103,9.161,9.688,10.315,10.908C16.992,27.452,25.981,18.012,26.243,17.737z"/>
<g id="Shape_22_copy_12_3_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#343A38" d="M27.52,3.687H4.375c-0.574,0-0.807,0.413-0.807,0.682v12.685
c0,0.9,0.532,1.551,0.532,1.551s11.283,12.031,11.449,12.18c0.167,0.148,0.521,0.222,0.777-0.007
c0.256-0.228,11.538-12.173,11.538-12.173s0.461-0.671,0.461-1.392V4.369C28.326,4.1,28.028,3.687,27.52,3.687z M27.08,17.242
c0,0.423-0.418,0.882-0.418,0.882S16.355,28.947,16.159,29.153c-0.195,0.207-0.467,0.141-0.594,0.006
C15.438,29.025,5.132,18.125,5.132,18.125s-0.459-0.486-0.483-0.882V5.565c0-0.243,0.188-0.441,0.418-0.441h21.596
c0.23,0,0.418,0.198,0.418,0.441V17.242z"/>
</g>
</g>
<path opacity="0.4" fill="#131313" d="M25.468,5.699l-0.006-2.586l-0.728-0.008l-0.75-1.608c0,0-0.14-0.022-0.2-0.022H8.367
c-0.485,0-0.88,0.395-0.88,0.881v4.582c0,0.487,0.746,1.245,1.231,1.245l13.856-0.021l0.019-0.272h1.675
c0.731,0,1.444-0.701,1.444-1.326l0.001-0.19l0.796-0.004l-0.004-0.669H25.468z"/>
<path fill="#8CA14A" d="M24.806,5.891c0,0.896-0.776,1.622-1.735,1.622h-14.1c-0.959,0-1.735-0.726-1.735-1.622V2.646
c0-0.896,0.776-1.622,1.735-1.622h14.1c0.959,0,1.735,0.727,1.735,1.623V5.891z"/>
<path fill="#343A38" d="M8.908,7.078c-0.644,0-1.167-0.493-1.167-1.099V2.559c0-0.606,0.523-1.1,1.167-1.1h14.225
c0.644,0,1.167,0.494,1.167,1.1v3.419c0,0.606-0.523,1.1-1.167,1.1L8.908,7.078z"/>
<g id="bank" opacity="0.4">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#171717" d="M11.648,3.494c0.148-0.034,0.26-0.096,0.334-0.186
c0.075-0.09,0.112-0.191,0.112-0.303c0-0.153-0.064-0.29-0.193-0.409c-0.128-0.119-0.333-0.179-0.613-0.179H9.937v2.24h1.268
c0.397,0,0.657-0.065,0.778-0.196c0.122-0.131,0.182-0.279,0.182-0.445C12.164,3.738,11.993,3.563,11.648,3.494z M10.688,2.898
h0.365c0.182,0,0.273,0.063,0.273,0.187c0,0.046-0.02,0.09-0.059,0.13c-0.04,0.041-0.106,0.061-0.201,0.061h-0.379V2.898z
M11.304,4.097c-0.046,0.041-0.118,0.062-0.218,0.062h-0.397V3.751h0.371c0.119,0,0.201,0.022,0.247,0.065
c0.044,0.043,0.066,0.091,0.066,0.142C11.373,4.009,11.351,4.056,11.304,4.097z M13.823,2.417l-0.821,2.24h0.663l0.159-0.441
h0.714l0.15,0.441h0.833l-0.835-2.24H13.823z M13.964,3.727l0.216-0.65l0.214,0.65H13.964z M18.096,3.08
c0,0.201,0.021,0.396,0.063,0.588c-0.063-0.124-0.157-0.267-0.28-0.43l-0.62-0.821h-0.772v2.24h0.663V3.573
c0-0.101-0.021-0.224-0.063-0.368c0.095,0.181,0.188,0.335,0.282,0.463l0.729,0.989h0.665v-2.24h-0.665V3.08z M21.51,3.237
l0.672-0.82h-0.734l-0.734,0.926V2.417h-0.77v2.24h0.77V4.141l0.276-0.33l0.46,0.846h0.894L21.51,3.237z"/>
</g>
</g>
<g id="bank_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F2EBC8" d="M11.458,3.304c0.148-0.034,0.26-0.096,0.334-0.187
c0.075-0.09,0.112-0.191,0.112-0.303c0-0.153-0.064-0.29-0.192-0.409c-0.129-0.119-0.333-0.179-0.615-0.179H9.746v2.24h1.269
c0.396,0,0.656-0.065,0.777-0.196c0.122-0.131,0.183-0.279,0.183-0.446C11.975,3.547,11.802,3.374,11.458,3.304z M10.499,2.708
h0.364c0.183,0,0.272,0.063,0.272,0.188c0,0.046-0.02,0.089-0.058,0.129c-0.039,0.04-0.106,0.061-0.201,0.061h-0.378V2.708z
M11.114,3.907c-0.046,0.041-0.118,0.062-0.218,0.062h-0.397V3.562h0.371c0.119,0,0.201,0.021,0.246,0.065
c0.045,0.043,0.067,0.09,0.067,0.142C11.184,3.82,11.16,3.866,11.114,3.907z M13.634,2.227l-0.821,2.24h0.663l0.159-0.441h0.713
l0.15,0.441h0.834l-0.835-2.24H13.634z M13.774,3.537l0.215-0.65l0.215,0.65H13.774z M17.906,2.89c0,0.2,0.021,0.396,0.063,0.587
c-0.063-0.124-0.157-0.267-0.281-0.43l-0.62-0.821h-0.771v2.24h0.662V3.383c0-0.101-0.021-0.223-0.064-0.368
c0.096,0.182,0.189,0.335,0.284,0.462l0.729,0.99h0.665v-2.24h-0.665V2.89z M21.319,3.047l0.673-0.82h-0.734l-0.734,0.926V2.227
h-0.77v2.24h0.77V3.95L20.8,3.621l0.46,0.846h0.894L21.319,3.047z"/>
</g>
</g>
<g id="Shape_16_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CAF4E" d="M17.503,5.169h-0.622c-0.136,0-0.246,0.11-0.246,0.245v0.532
c0,0.136,0.11,0.246,0.246,0.246h0.622c0.126,0,0.23-0.096,0.243-0.22V5.959h-0.838V5.397h0.838V5.385
C17.731,5.263,17.628,5.169,17.503,5.169z M18.838,5.567h-0.651V5.389h0.874c-0.012-0.123-0.116-0.22-0.243-0.22h-0.635
c-0.136,0-0.245,0.11-0.245,0.245v0.152c0.012,0.125,0.117,0.221,0.244,0.221l0.649,0V5.97h-0.893
c0.013,0.124,0.117,0.221,0.244,0.221h0.652c0.136,0,0.246-0.109,0.246-0.245V5.787C19.069,5.663,18.965,5.567,18.838,5.567z
M21.841,5.16h-0.639c-0.129,0-0.234,0.105-0.234,0.235v0.551c0,0.13,0.105,0.235,0.234,0.235h0.639
c0.129,0,0.235-0.105,0.235-0.235V5.396C22.076,5.266,21.97,5.16,21.841,5.16z M21.856,5.993h-0.67V5.351h0.67V5.993z
M20.063,5.69c0.049,0.063,0.125,0.067,0.146,0.067l0.341,0V5.98h-0.715V5.358h0.933C20.749,5.244,20.65,5.16,20.534,5.16h-0.683
c-0.129,0-0.234,0.106-0.234,0.235v0.551c0,0.13,0.105,0.235,0.234,0.235h0.683c0.122,0,0.223-0.09,0.234-0.208V5.586h-0.757
C20.015,5.606,20.024,5.643,20.063,5.69z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_22_copy_11_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5E5C55" d="M27.265,5.259H4.152c-0.247,0-0.448,0.201-0.448,0.448v11.939
c0.027,0.402,0.518,0.896,0.518,0.896s11.03,11.075,11.166,11.211c0.137,0.137,0.427,0.204,0.637-0.006
c0.21-0.209,11.24-11.205,11.24-11.205s0.447-0.467,0.447-0.896V5.708C27.712,5.46,27.512,5.259,27.265,5.259z"/>
</g>
</g>
<g id="Ellipse_1_copy_5" opacity="0.4">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#171617" d="M24.033,8.904l0.083-4.535L4.136,4.301l0.067,13.515l2.704,2.942
l0.938,0.769V9.862c0-0.53,0.431-0.959,0.961-0.959h15.164C23.992,8.902,24.013,8.903,24.033,8.904z M14.699,12.492h10.376v-0.674
H14.81c-0.005-1.11-0.906-2.009-2.018-2.009s-2.014,0.899-2.02,2.009h-0.186v0.674h0.298c0.249,0.715,0.889,1.247,1.663,1.34
v1.915c-0.52,0.061-0.989,0.277-1.362,0.602l-1.753-1.75l-0.479,0.478l1.785,1.783c-0.26,0.393-0.412,0.863-0.412,1.369
c0,0.658,0.257,1.256,0.675,1.702L8.958,21.97l0.479,0.478l2.093-2.09c0.303,0.185,0.649,0.307,1.019,0.35v1.944
c-0.992,0.102-1.771,0.923-1.808,1.934h-0.153v0.674l0.243,0c0.255,0.821,1.021,1.418,1.927,1.418
c0.904,0,1.669-0.594,1.927-1.412l6.354,0.01l0.376-0.69h-6.64c-0.033-0.921-0.684-1.684-1.549-1.89v-2
c0.357-0.054,0.691-0.184,0.984-0.373l2.131,2.129l0.479-0.478l-2.095-2.092c0.394-0.441,0.633-1.02,0.633-1.656
c0-0.483-0.138-0.934-0.377-1.316l1.833-1.831l-0.477-0.478l-1.79,1.788c-0.36-0.329-0.816-0.556-1.321-0.633V13.8
C13.913,13.649,14.471,13.147,14.699,12.492z"/>
</g>
</g>
<g id="Rectangle_1_copy_4">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B1A6" d="M12.206,23.091h0.677V18.69l3.116,3.112l0.478-0.478
l-3.454-3.449l3.45-3.445l-0.479-0.478l-3.11,3.106v-4.4h-0.677v4.4L9.09,13.947l-0.479,0.478l3.454,3.449l-3.449,3.445
l0.478,0.478l3.112-3.107V23.091z M10.245,24.608h11.511v-0.674H10.245V24.608z M10.245,11.167v0.674h14.488v-0.674H10.245z"/>
</g>
</g>
<g opacity="0.4">
<path fill="#343A38" d="M14.029,16.625l-0.688-0.687c-0.165-0.038-0.337-0.059-0.513-0.059c-1.261,0-2.284,1.021-2.284,2.281
c0,0.239,0.226,0.696,0.295,0.913c0.009,0.027-0.216,0.196-0.2,0.219c0.147,0.209,0.307,0.371,0.508,0.518l0.08-0.167l0.974,0.317
v0.479c0.35,0.091,0.666,0.013,0.686,0.012l0.031-0.534l0.321-0.487l0.677,0.297l0.267,0.271c0.188-0.137,0.353-0.303,0.489-0.49
l-0.643-0.643V16.625z"/>
<path fill="#343A38" d="M13.59,11.124l-0.748-0.677c-0.165-0.038-0.258-0.428-0.434-0.428c-1.263,0-1.261,0.392-1.261,1.651
c0,0.539,0.271,0.976,0.582,1.367l0.476,0.023v0.53c0.281,0.096,0.671,0.018,0.689,0.017v-0.523l-0.88-1.243l0.677,0.297
l0.267,0.271c0.187-0.138,0.352-0.303,0.489-0.49l0.771-0.059h0.321c0,0,0.073-0.4,0.012-0.701
C14.134,11.16,13.59,11.124,13.59,11.124z"/>
<path fill="#343A38" d="M13.394,24.68l0.772-0.059h0.32c0,0,0.123-0.265,0.012-0.702c-0.554,0-0.962-0.035-0.962-0.035
L13.394,24.68z"/>
</g>
<g id="Color_Fill_1">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B1A6" d="M24.244,7.009V3.656H3.441V17.24l3.899,3.9l0.069-0.547
c0,0,0-9.888,0-10.401c0-0.599-0.034-0.834,0.342-1.232C8.127,8.563,8.18,8.583,8.848,8.583c0.479,0,15.44,0,15.44,0L24.244,7.009
z M10.72,11.504c0,0.991,0.805,1.795,1.797,1.795c0.993,0,1.799-0.804,1.799-1.795s-0.806-1.795-1.799-1.795
C11.524,9.709,10.72,10.513,10.72,11.504z M14.315,24.271c0-0.991-0.806-1.795-1.799-1.795c-0.992,0-1.797,0.804-1.797,1.795
s0.805,1.795,1.797,1.795C13.51,26.066,14.315,25.263,14.315,24.271z M12.544,20.155c1.262,0,2.284-1.021,2.284-2.281
s-1.022-2.281-2.284-2.281s-2.283,1.021-2.283,2.281S11.282,20.155,12.544,20.155z M19.019,27.401
c-2.02,0-4.303-0.016-6.159-0.016c-0.871,0,2.807,3.275,2.807,3.275S20.278,27.401,19.019,27.401z"/>
</g>
</g>
<g id="Rectangle_3">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#293C3C" points="22.574,4.832 22.574,24.252 27.485,18.558 27.485,4.832
"/>
</g>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#55682F" d="M27.52,3.117H4.375c-0.862,0-1.377,0.637-1.377,1.252v12.685
c0,1.091,0.635,1.879,0.662,1.913l0.012,0.015l0.013,0.014c3.398,3.624,11.318,12.066,11.486,12.215
c0.202,0.18,0.483,0.283,0.771,0.283c0.283,0,0.555-0.103,0.765-0.29c0.262-0.233,9.688-10.209,11.574-12.207l0.03-0.033
l0.024-0.037c0.059-0.083,0.562-0.843,0.562-1.714V4.369C28.896,3.777,28.332,3.117,27.52,3.117z M28.166,17.219
c0,0.822-0.476,1.539-0.529,1.618l-0.024,0.034l-0.028,0.031C25.804,20.787,16.91,30.2,16.663,30.419
c-0.197,0.177-0.454,0.274-0.722,0.274c-0.271,0-0.536-0.098-0.728-0.267C15.057,30.285,7.583,22.319,4.377,18.9l-0.012-0.013
l-0.013-0.014c-0.024-0.031-0.624-0.775-0.624-1.805V5.099c0-0.58,0.486-1.181,1.3-1.181h21.838c0.766,0,1.3,0.623,1.3,1.181V17.219
z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" fill="#191919" d="M16.133,30.431c-0.008,0-0.015-0.002-0.02-0.003
c-0.537-0.55-7.729-8.237-10.771-11.48c-0.055-0.074-0.396-0.56-0.396-1.181V5.087c0.004-0.02,0.033-0.116,0.236-0.116h22.449
c0.158,0,0.223,0.106,0.236,0.135l0.079,12.185c0,0.413-0.232,0.866-0.34,1.037c-3.099,3.28-11.06,11.701-11.47,12.103
C16.137,30.431,16.135,30.431,16.133,30.431z M26.435,17.815c0.107-0.12,0.266-0.374,0.266-0.495L26.621,5.552l-1.934,0.023
l0.026,0.832H6.026v11.88c0.017,0.102,0.176,0.354,0.327,0.517c0.098,0.103,8.544,9.054,9.697,10.273
C17.183,27.888,26.174,18.09,26.435,17.815z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8CA14A" d="M15.941,30.354c-0.007,0-0.015-0.002-0.021-0.003
c-0.535-0.55-8.344-8.872-11.386-12.116c-0.055-0.074-0.396-0.559-0.396-1.181V4.375c0.003-0.02,0.033-0.117,0.236-0.117H27.52
c0.16,0,0.223,0.107,0.236,0.136v12.82c0,0.413-0.231,0.866-0.34,1.037c-3.098,3.28-11.06,11.701-11.47,12.103
C15.945,30.353,15.944,30.354,15.941,30.354z M26.243,17.737c0.108-0.12,0.267-0.374,0.267-0.495V5.695H5.219v11.521
c0.016,0.102,0.175,0.353,0.326,0.517c0.098,0.103,9.161,9.688,10.315,10.908C16.992,27.452,25.981,18.012,26.243,17.737z"/>
<g id="Shape_22_copy_12_3_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#343A38" d="M27.52,3.687H4.375c-0.574,0-0.807,0.413-0.807,0.682v12.685
c0,0.9,0.532,1.551,0.532,1.551s11.283,12.031,11.449,12.18c0.167,0.148,0.521,0.222,0.777-0.007
c0.256-0.228,11.538-12.173,11.538-12.173s0.461-0.671,0.461-1.392V4.369C28.326,4.1,28.028,3.687,27.52,3.687z M27.08,17.242
c0,0.423-0.418,0.882-0.418,0.882S16.355,28.947,16.159,29.153c-0.195,0.207-0.467,0.141-0.594,0.006
C15.438,29.025,5.132,18.125,5.132,18.125s-0.459-0.486-0.483-0.882V5.565c0-0.243,0.188-0.441,0.418-0.441h21.596
c0.23,0,0.418,0.198,0.418,0.441V17.242z"/>
</g>
</g>
<path opacity="0.4" fill="#131313" d="M25.468,5.699l-0.006-2.586l-0.728-0.008l-0.75-1.608c0,0-0.14-0.022-0.2-0.022H8.367
c-0.485,0-0.88,0.395-0.88,0.881v4.582c0,0.487,0.746,1.245,1.231,1.245l13.856-0.021l0.019-0.272h1.675
c0.731,0,1.444-0.701,1.444-1.326l0.001-0.19l0.796-0.004l-0.004-0.669H25.468z"/>
<path fill="#8CA14A" d="M24.806,5.891c0,0.896-0.776,1.622-1.735,1.622h-14.1c-0.959,0-1.735-0.726-1.735-1.622V2.646
c0-0.896,0.776-1.622,1.735-1.622h14.1c0.959,0,1.735,0.727,1.735,1.623V5.891z"/>
<path fill="#343A38" d="M8.908,7.078c-0.644,0-1.167-0.493-1.167-1.099V2.559c0-0.606,0.523-1.1,1.167-1.1h14.225
c0.644,0,1.167,0.494,1.167,1.1v3.419c0,0.606-0.523,1.1-1.167,1.1L8.908,7.078z"/>
<g id="bank" opacity="0.4">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#171717" d="M11.648,3.494c0.148-0.034,0.26-0.096,0.334-0.186
c0.075-0.09,0.112-0.191,0.112-0.303c0-0.153-0.064-0.29-0.193-0.409c-0.128-0.119-0.333-0.179-0.613-0.179H9.937v2.24h1.268
c0.397,0,0.657-0.065,0.778-0.196c0.122-0.131,0.182-0.279,0.182-0.445C12.164,3.738,11.993,3.563,11.648,3.494z M10.688,2.898
h0.365c0.182,0,0.273,0.063,0.273,0.187c0,0.046-0.02,0.09-0.059,0.13c-0.04,0.041-0.106,0.061-0.201,0.061h-0.379V2.898z
M11.304,4.097c-0.046,0.041-0.118,0.062-0.218,0.062h-0.397V3.751h0.371c0.119,0,0.201,0.022,0.247,0.065
c0.044,0.043,0.066,0.091,0.066,0.142C11.373,4.009,11.351,4.056,11.304,4.097z M13.823,2.417l-0.821,2.24h0.663l0.159-0.441
h0.714l0.15,0.441h0.833l-0.835-2.24H13.823z M13.964,3.727l0.216-0.65l0.214,0.65H13.964z M18.096,3.08
c0,0.201,0.021,0.396,0.063,0.588c-0.063-0.124-0.157-0.267-0.28-0.43l-0.62-0.821h-0.772v2.24h0.663V3.573
c0-0.101-0.021-0.224-0.063-0.368c0.095,0.181,0.188,0.335,0.282,0.463l0.729,0.989h0.665v-2.24h-0.665V3.08z M21.51,3.237
l0.672-0.82h-0.734l-0.734,0.926V2.417h-0.77v2.24h0.77V4.141l0.276-0.33l0.46,0.846h0.894L21.51,3.237z"/>
</g>
</g>
<g id="bank_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F2EBC8" d="M11.458,3.304c0.148-0.034,0.26-0.096,0.334-0.187
c0.075-0.09,0.112-0.191,0.112-0.303c0-0.153-0.064-0.29-0.192-0.409c-0.129-0.119-0.333-0.179-0.615-0.179H9.746v2.24h1.269
c0.396,0,0.656-0.065,0.777-0.196c0.122-0.131,0.183-0.279,0.183-0.446C11.975,3.547,11.802,3.374,11.458,3.304z M10.499,2.708
h0.364c0.183,0,0.272,0.063,0.272,0.188c0,0.046-0.02,0.089-0.058,0.129c-0.039,0.04-0.106,0.061-0.201,0.061h-0.378V2.708z
M11.114,3.907c-0.046,0.041-0.118,0.062-0.218,0.062h-0.397V3.562h0.371c0.119,0,0.201,0.021,0.246,0.065
c0.045,0.043,0.067,0.09,0.067,0.142C11.184,3.82,11.16,3.866,11.114,3.907z M13.634,2.227l-0.821,2.24h0.663l0.159-0.441h0.713
l0.15,0.441h0.834l-0.835-2.24H13.634z M13.774,3.537l0.215-0.65l0.215,0.65H13.774z M17.906,2.89c0,0.2,0.021,0.396,0.063,0.587
c-0.063-0.124-0.157-0.267-0.281-0.43l-0.62-0.821h-0.771v2.24h0.662V3.383c0-0.101-0.021-0.223-0.064-0.368
c0.096,0.182,0.189,0.335,0.284,0.462l0.729,0.99h0.665v-2.24h-0.665V2.89z M21.319,3.047l0.673-0.82h-0.734l-0.734,0.926V2.227
h-0.77v2.24h0.77V3.95L20.8,3.621l0.46,0.846h0.894L21.319,3.047z"/>
</g>
</g>
<g id="Shape_16_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CAF4E" d="M17.503,5.169h-0.622c-0.136,0-0.246,0.11-0.246,0.245v0.532
c0,0.136,0.11,0.246,0.246,0.246h0.622c0.126,0,0.23-0.096,0.243-0.22V5.959h-0.838V5.397h0.838V5.385
C17.731,5.263,17.628,5.169,17.503,5.169z M18.838,5.567h-0.651V5.389h0.874c-0.012-0.123-0.116-0.22-0.243-0.22h-0.635
c-0.136,0-0.245,0.11-0.245,0.245v0.152c0.012,0.125,0.117,0.221,0.244,0.221l0.649,0V5.97h-0.893
c0.013,0.124,0.117,0.221,0.244,0.221h0.652c0.136,0,0.246-0.109,0.246-0.245V5.787C19.069,5.663,18.965,5.567,18.838,5.567z
M21.841,5.16h-0.639c-0.129,0-0.234,0.105-0.234,0.235v0.551c0,0.13,0.105,0.235,0.234,0.235h0.639
c0.129,0,0.235-0.105,0.235-0.235V5.396C22.076,5.266,21.97,5.16,21.841,5.16z M21.856,5.993h-0.67V5.351h0.67V5.993z
M20.063,5.69c0.049,0.063,0.125,0.067,0.146,0.067l0.341,0V5.98h-0.715V5.358h0.933C20.749,5.244,20.65,5.16,20.534,5.16h-0.683
c-0.129,0-0.234,0.106-0.234,0.235v0.551c0,0.13,0.105,0.235,0.234,0.235h0.683c0.122,0,0.223-0.09,0.234-0.208V5.586h-0.757
C20.015,5.606,20.024,5.643,20.063,5.69z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 211 KiB

After

Width:  |  Height:  |  Size: 213 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 208 KiB

After

Width:  |  Height:  |  Size: 210 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 211 KiB

After

Width:  |  Height:  |  Size: 213 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 212 KiB

After

Width:  |  Height:  |  Size: 214 KiB

View File

@@ -1,213 +1,213 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_1_copy_13">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#721011" points="28.515,13.102 19.345,12.357 16.037,4.037
12.729,12.357 3.559,13.102 10.685,18.65 8.325,27.77 16.037,22.538 23.748,27.77 21.389,18.65 "/>
</g>
</g>
<g id="Shape_4_copy">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED2024" points="28.414,13.642 28.22,12.914 17.286,16.311
24.673,12.427 23.037,12.254 17.105,15.998 21.351,12.076 20.336,11.969 16.85,15.742 19.505,11.536 19.134,10.621 16.537,15.562
18.534,9.135 17.947,7.684 16.188,15.468 16.624,4.414 16.468,4.028 15.68,4.028 15.402,4.737 15.826,15.467 14.133,7.973
13.566,9.414 15.477,15.562 13.001,10.854 12.647,11.756 15.162,15.742 11.771,12.07 10.754,12.159 14.907,15.998 9.064,12.309
7.396,12.457 14.728,16.311 3.793,12.914 3.59,13.672 4.439,14.356 14.633,16.66 6.922,16.355 8.071,17.281 14.633,17.022
9.258,18.237 9.888,18.745 9.857,18.884 14.728,17.371 9.586,20.074 9.329,21.206 14.907,17.685 8.859,23.272 8.412,25.247
15.162,17.94 9.053,27.621 9.111,27.656 11.182,26.289 15.477,18.121 13.392,24.829 14.496,24.1 15.826,18.214 15.623,23.356
15.989,23.113 16.392,23.381 16.188,18.214 17.525,24.135 18.636,24.873 16.537,18.121 20.868,26.359 22.857,27.681
22.962,27.621 16.85,17.94 23.273,24.892 22.838,22.981 17.105,17.685 22.391,21.021 22.141,19.924 17.286,17.371 21.884,18.8
21.882,18.788 22.619,18.206 17.38,17.022 23.802,17.275 24.962,16.361 17.38,16.66 27.482,14.376 "/>
</g>
</g>
<g id="Shape_1_copy_13_13_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AC782B" d="M31.348,12.273c-1.842-0.149-11.138-0.902-11.138-0.902
S17.045,3.41,16.228,1.354c-0.121-0.305-0.262-0.305-0.383,0.002c-0.819,2.06-3.981,10.015-3.981,10.015
s-9.346,0.755-11.168,0.903c-0.194,0.016-0.218,0.166-0.055,0.292c1.458,1.136,8.645,6.743,8.645,6.743S6.832,28.768,6.41,30.401
c-0.04,0.151,0.11,0.255,0.25,0.161c1.432-0.971,9.377-6.347,9.377-6.347s7.685,5.213,9.395,6.373
c0.214,0.146,0.3,0.098,0.24-0.133c-0.503-1.949-2.883-11.146-2.883-11.146s7.211-5.613,8.649-6.733
C31.595,12.454,31.546,12.289,31.348,12.273z M21.937,18.871l2.601,10.053l-8.5-5.767l-8.501,5.767l2.601-10.053l-7.854-6.115
l10.107-0.82l3.646-9.172l3.646,9.172l10.106,0.82L21.937,18.871z"/>
</g>
</g>
<g id="Shape_1_copy_13_9_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" d="M30.973,12.511L19.997,11.62l-3.961-9.962l-3.96,9.962
L1.1,12.511l8.53,6.642L6.806,30.07l9.231-6.263l9.231,6.263l-2.824-10.917L30.973,12.511z M24.103,28.276l-8.065-5.472
l-8.066,5.472l2.469-9.54l-7.455-5.803l9.593-0.778l3.46-8.704l3.459,8.704l9.592,0.778l-7.453,5.803L24.103,28.276z"/>
</g>
</g>
<g id="Shape_1_copy_13_6_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" d="M28.911,13.033l-9.461-0.768l-3.413-8.586l-3.414,8.586
l-9.459,0.768l7.351,5.725L8.08,28.167l7.957-5.397l7.956,5.397l-2.435-9.409L28.911,13.033z M22.989,26.621l-6.952-4.716
l-6.953,4.716l2.127-8.221l-6.422-5.002l8.266-0.671l2.982-7.501l2.981,7.501l8.267,0.671l-6.424,5.002L22.989,26.621z"/>
</g>
</g>
<g id="Shape_1_copy_13_8_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AC782B" d="M29.554,12.889l-9.934-0.807l-3.583-9.015l-3.583,9.015
L2.52,12.889l7.719,6.01l-2.556,9.879l8.354-5.667l8.354,5.667l-2.556-9.879L29.554,12.889z M23.335,27.155l-7.298-4.952
l-7.3,4.952l2.233-8.632l-6.744-5.251l8.679-0.704l3.132-7.876l3.13,7.876l8.68,0.704l-6.744,5.251L23.335,27.155z"/>
</g>
</g>
<g id="Shape_1_copy_13_10_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#521311" d="M30.359,12.688l-10.526-0.854l-3.796-9.552l-3.798,9.552
L1.713,12.688l8.18,6.37L7.184,29.525l8.854-6.005l8.852,6.005l-2.708-10.468L30.359,12.688z M23.771,27.806l-7.734-5.247
l-7.734,5.247l2.366-9.147l-7.147-5.565l9.197-0.746l3.318-8.346l3.317,8.346l9.197,0.746l-7.146,5.565L23.771,27.806z"/>
</g>
</g>
<g id="Shape_10_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AC782B" d="M25.786,13.867H6.29c-0.108,0-0.197,0.088-0.197,0.196v5.806
c0,0.108,0.089,0.196,0.197,0.196h19.496c0.108,0,0.196-0.088,0.196-0.196v-5.806C25.982,13.955,25.895,13.867,25.786,13.867z"/>
</g>
</g>
<g id="Shape_1_copy_14">
<g>
<rect x="6.439" y="14.186" fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" width="19.229" height="5.641"/>
</g>
</g>
<g id="Shape_1_copy_13_12_">
<g>
<rect x="6.767" y="14.488" fill-rule="evenodd" clip-rule="evenodd" fill="#521311" width="18.575" height="5.036"/>
</g>
</g>
<g id="Shape_1_copy_13_14_">
<g>
<rect x="7.011" y="14.776" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" width="18.087" height="4.528"/>
</g>
</g>
<g id="Shape_1_copy_13_16_">
<g>
<rect x="7.249" y="14.987" fill-rule="evenodd" clip-rule="evenodd" fill="#E8E1BB" width="17.609" height="4.107"/>
</g>
</g>
<g id="Shape_9">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#361F1E" d="M10.363,15.537h-1.13c-0.154,0-0.284,0.048-0.39,0.145
c-0.106,0.096-0.159,0.213-0.159,0.352v2.012c0,0.138,0.053,0.255,0.159,0.352c0.105,0.097,0.235,0.145,0.39,0.145h1.13
c0.155,0,0.284-0.048,0.393-0.145c0.107-0.096,0.16-0.213,0.16-0.352v-0.546h-0.604v0.429c0,0.033-0.013,0.061-0.039,0.083
c-0.027,0.022-0.059,0.034-0.096,0.034H9.424c-0.037,0-0.068-0.012-0.096-0.034c-0.026-0.022-0.039-0.05-0.039-0.083V16.15
c0-0.034,0.013-0.061,0.039-0.083c0.027-0.023,0.059-0.034,0.096-0.034h0.754c0.037,0,0.068,0.011,0.096,0.034
c0.026,0.022,0.039,0.05,0.039,0.083v0.401h0.604v-0.519c0-0.138-0.053-0.255-0.16-0.352
C10.647,15.584,10.519,15.537,10.363,15.537z M12.656,15.537l-1.131,3.004h0.608l0.231-0.654h1.131l0.24,0.654h0.608l-1.13-3.004
H12.656z M12.546,17.404l0.387-1.146l0.388,1.146H12.546z M16.658,15.537h-1.131c-0.154,0-0.284,0.048-0.39,0.145
c-0.105,0.096-0.158,0.213-0.158,0.352v2.012c0,0.138,0.053,0.255,0.158,0.352c0.105,0.097,0.235,0.145,0.39,0.145h1.131
c0.154,0,0.284-0.048,0.392-0.145c0.107-0.096,0.161-0.213,0.161-0.352v-0.546h-0.604v0.429c0,0.033-0.014,0.061-0.04,0.083
c-0.027,0.022-0.059,0.034-0.096,0.034h-0.754c-0.036,0-0.068-0.012-0.095-0.034c-0.027-0.022-0.04-0.05-0.04-0.083V16.15
c0-0.034,0.013-0.061,0.04-0.083c0.026-0.023,0.059-0.034,0.095-0.034h0.754c0.037,0,0.068,0.011,0.096,0.034
c0.026,0.022,0.04,0.05,0.04,0.083v0.401h0.604v-0.519c0-0.138-0.054-0.255-0.161-0.352
C16.942,15.584,16.813,15.537,16.658,15.537z M18.709,15.537h-0.604v3.004h0.604v-1.286h1.137v1.286h0.603v-1.782h-1.739V15.537z
M23.425,16.033v-0.496h-2.03v3.004h2.03v-0.496h-1.428v-0.771h1.302v-0.497h-1.302v-0.744H23.425z"/>
</g>
</g>
<path fill="#B7AE86" d="M21.395,18.693c-0.091,0-0.163-0.073-0.163-0.164v-3.003c0-0.09,0.072-0.164,0.163-0.164h2.03
c0.09,0,0.163,0.074,0.163,0.164v0.496c0,0.09-0.073,0.164-0.163,0.164h-1.264v0.417h1.138c0.09,0,0.164,0.074,0.164,0.164v0.496
c0,0.09-0.074,0.164-0.164,0.164h-1.138v0.444h1.264c0.09,0,0.163,0.074,0.163,0.164v0.496c0,0.09-0.073,0.164-0.163,0.164H21.395z
M23.365,18.471v-0.378h-1.427v-0.889h1.302v-0.378h-1.302v-0.862h1.427v-0.377h-1.911v2.885H23.365z"/>
<path fill="#B7AE86" d="M19.846,18.693c-0.091,0-0.164-0.073-0.164-0.164v-1.121h-0.809v1.121c0,0.09-0.073,0.164-0.164,0.164
h-0.604c-0.089,0-0.162-0.073-0.162-0.164v-3.003c0-0.09,0.073-0.164,0.162-0.164h0.604c0.091,0,0.164,0.074,0.164,0.164v1.058
h1.575c0.091,0,0.163,0.073,0.163,0.164v1.781c0,0.09-0.072,0.164-0.163,0.164H19.846z M20.389,18.471v-1.664H18.65v-1.222h-0.484
v2.885h0.484v-1.285h1.254v1.285H20.389z"/>
<path fill="#B7AE86" d="M15.527,18.693c-0.196,0-0.365-0.063-0.5-0.187c-0.141-0.128-0.211-0.287-0.211-0.472v-2.012
c0-0.185,0.07-0.344,0.211-0.473c0.135-0.124,0.304-0.187,0.5-0.187h1.131c0.195,0,0.363,0.063,0.501,0.186
c0.144,0.127,0.216,0.287,0.216,0.473v0.519c0,0.09-0.074,0.164-0.164,0.164h-0.604c-0.09,0-0.163-0.074-0.163-0.164l-0.003-0.355
h-0.694l0.003,1.685h0.694v-0.382c0-0.09,0.073-0.164,0.163-0.164h0.604c0.09,0,0.164,0.074,0.164,0.164v0.546
c0,0.186-0.072,0.345-0.216,0.473c-0.138,0.124-0.306,0.186-0.501,0.186H15.527z M15.527,15.585c-0.141,0-0.255,0.042-0.35,0.129
c-0.094,0.085-0.14,0.186-0.14,0.308v2.012c0,0.122,0.046,0.223,0.14,0.308c0.095,0.087,0.209,0.128,0.35,0.128h1.131
c0.14,0,0.256-0.042,0.353-0.129c0.095-0.085,0.142-0.186,0.142-0.308v-0.487h-0.484v0.369c0,0.051-0.022,0.095-0.062,0.128
c-0.039,0.032-0.084,0.048-0.135,0.048h-0.754c-0.051,0-0.095-0.016-0.133-0.048c-0.041-0.034-0.061-0.078-0.061-0.128V16.14
c0-0.051,0.021-0.096,0.062-0.128c0.035-0.032,0.081-0.048,0.132-0.048h0.754c0.051,0,0.097,0.017,0.135,0.049
c0.039,0.032,0.062,0.077,0.062,0.128v0.342h0.484v-0.46c0-0.122-0.047-0.222-0.142-0.308c-0.097-0.087-0.213-0.129-0.353-0.129
H15.527z"/>
<path fill="#B7AE86" d="M13.736,18.693c-0.067,0-0.129-0.043-0.153-0.106l-0.201-0.547h-0.9l-0.192,0.544
c-0.024,0.065-0.086,0.109-0.155,0.109h-0.608c-0.053,0-0.104-0.026-0.135-0.07c-0.029-0.044-0.037-0.101-0.018-0.151l1.13-3.003
c0.024-0.063,0.086-0.106,0.153-0.106h0.559c0.067,0,0.129,0.042,0.152,0.106l1.131,3.004c0.019,0.05,0.013,0.107-0.019,0.151
c-0.03,0.044-0.081,0.07-0.135,0.07H13.736z M14.26,18.471l-1.087-2.885h-0.475l-1.087,2.885h0.48l0.231-0.654h1.213l0.243,0.654
H14.26z M12.464,17.453l0.469-1.389l0.47,1.389H12.464z M13.092,17.23l-0.159-0.47l-0.158,0.47H13.092z"/>
<path fill="#B7AE86" d="M9.233,18.693c-0.196,0-0.365-0.063-0.5-0.187c-0.141-0.128-0.213-0.287-0.213-0.472v-2.012
c0-0.185,0.072-0.344,0.213-0.473c0.136-0.124,0.304-0.187,0.5-0.187h1.13c0.196,0,0.364,0.063,0.502,0.186
c0.143,0.127,0.215,0.287,0.215,0.473v0.519c0,0.09-0.074,0.164-0.164,0.164h-0.604c-0.089,0-0.162-0.074-0.162-0.164l-0.004-0.355
H9.453l0.002,1.685h0.695v-0.382c0-0.09,0.073-0.164,0.162-0.164h0.604c0.09,0,0.164,0.074,0.164,0.164v0.546
c0,0.186-0.072,0.345-0.215,0.473c-0.138,0.124-0.306,0.186-0.502,0.186H9.233z M9.233,15.585c-0.141,0-0.255,0.042-0.35,0.129
C8.79,15.8,8.744,15.9,8.744,16.022v2.012c0,0.122,0.045,0.223,0.14,0.308c0.095,0.087,0.208,0.128,0.35,0.128h1.13
c0.141,0,0.257-0.042,0.354-0.129c0.095-0.085,0.141-0.186,0.141-0.308v-0.487h-0.484v0.369c0,0.051-0.021,0.095-0.063,0.128
c-0.037,0.032-0.082,0.048-0.133,0.048H9.424c-0.051,0-0.096-0.016-0.133-0.048c-0.041-0.034-0.062-0.078-0.062-0.128V16.14
c0-0.051,0.021-0.096,0.062-0.128c0.036-0.032,0.082-0.048,0.133-0.048h0.754c0.051,0,0.097,0.017,0.133,0.049
c0.041,0.032,0.063,0.077,0.063,0.128v0.342h0.484v-0.46c0-0.122-0.046-0.222-0.142-0.308c-0.096-0.087-0.212-0.129-0.353-0.129
H9.233z"/>
<g id="Shape_8">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EFEDA8" d="M10.363,15.421h-1.13c-0.18,0-0.335,0.058-0.461,0.171
c-0.127,0.116-0.192,0.26-0.192,0.429v2.012c0,0.168,0.065,0.313,0.192,0.429c0.126,0.114,0.28,0.172,0.461,0.172h1.13
c0.182,0,0.336-0.058,0.462-0.171c0.131-0.116,0.196-0.26,0.196-0.429v-0.546c0-0.057-0.047-0.104-0.105-0.104h-0.604
c-0.057,0-0.104,0.047-0.104,0.104v0.429c-0.01,0.008-0.017,0.013-0.031,0.013H9.424c-0.015,0-0.021-0.004-0.028-0.009
l-0.002-1.78c0.009-0.008,0.016-0.013,0.03-0.013h0.754c0.015,0,0.021,0.004,0.028,0.009l0.003,0.404
c0,0.058,0.047,0.105,0.104,0.105h0.604c0.059,0,0.105-0.047,0.105-0.105v-0.519c0-0.169-0.065-0.313-0.196-0.429
C10.699,15.479,10.545,15.421,10.363,15.421z M10.916,16.541h-0.604V16.14c0-0.033-0.013-0.062-0.039-0.083
c-0.027-0.022-0.059-0.034-0.096-0.034H9.424c-0.037,0-0.068,0.012-0.096,0.034c-0.026,0.022-0.039,0.05-0.039,0.083v1.777
c0,0.033,0.013,0.061,0.039,0.083c0.027,0.023,0.059,0.034,0.096,0.034h0.754c0.037,0,0.068-0.011,0.096-0.034
c0.026-0.022,0.039-0.05,0.039-0.083v-0.429h0.604v0.546c0,0.138-0.053,0.255-0.16,0.352c-0.108,0.096-0.237,0.144-0.393,0.144
h-1.13c-0.154,0-0.284-0.048-0.39-0.144c-0.106-0.096-0.159-0.213-0.159-0.352v-2.012c0-0.139,0.053-0.255,0.159-0.352
c0.105-0.096,0.235-0.144,0.39-0.144h1.13c0.155,0,0.284,0.048,0.393,0.144c0.107,0.096,0.16,0.213,0.16,0.352V16.541z
M13.215,15.421h-0.559c-0.044,0-0.082,0.027-0.098,0.068l-1.131,3.003c-0.011,0.032-0.008,0.068,0.012,0.097
s0.052,0.045,0.086,0.045h0.608c0.045,0,0.085-0.028,0.099-0.07l0.206-0.584h0.984l0.216,0.586
c0.015,0.041,0.055,0.068,0.098,0.068h0.608c0.035,0,0.067-0.017,0.087-0.045s0.022-0.065,0.012-0.097l-1.132-3.003
C13.297,15.449,13.258,15.421,13.215,15.421z M13.736,18.53l-0.24-0.654h-1.131l-0.231,0.654h-0.608l1.131-3.003h0.559l1.13,3.003
H13.736z M12.546,17.394h0.774l-0.388-1.146L12.546,17.394z M12.692,17.289l0.24-0.714l0.241,0.714H12.692z M16.658,15.421h-1.131
c-0.18,0-0.335,0.058-0.46,0.171c-0.128,0.116-0.191,0.26-0.191,0.429v2.012c0,0.168,0.063,0.313,0.191,0.429
c0.125,0.114,0.279,0.172,0.46,0.172h1.131c0.181,0,0.336-0.058,0.461-0.171c0.131-0.116,0.196-0.26,0.196-0.429v-0.546
c0-0.057-0.047-0.104-0.104-0.104h-0.604c-0.058,0-0.104,0.047-0.104,0.104v0.429c-0.008,0.008-0.017,0.013-0.031,0.013h-0.754
c-0.015,0-0.021-0.004-0.027-0.009l-0.003-1.78c0.009-0.008,0.016-0.013,0.03-0.013h0.754c0.015,0,0.023,0.004,0.028,0.009
l0.003,0.404c0,0.058,0.047,0.105,0.104,0.105h0.604c0.058,0,0.104-0.047,0.104-0.105v-0.519c0-0.169-0.065-0.313-0.196-0.429
C16.993,15.479,16.839,15.421,16.658,15.421z M17.211,16.541h-0.604V16.14c0-0.033-0.014-0.062-0.04-0.083
c-0.027-0.022-0.059-0.034-0.096-0.034h-0.754c-0.036,0-0.068,0.012-0.095,0.034c-0.027,0.022-0.04,0.05-0.04,0.083v1.777
c0,0.033,0.013,0.061,0.04,0.083c0.026,0.023,0.059,0.034,0.095,0.034h0.754c0.037,0,0.068-0.011,0.096-0.034
c0.026-0.022,0.04-0.05,0.04-0.083v-0.429h0.604v0.546c0,0.138-0.054,0.255-0.161,0.352s-0.237,0.144-0.392,0.144h-1.131
c-0.154,0-0.284-0.048-0.39-0.144s-0.158-0.213-0.158-0.352v-2.012c0-0.139,0.053-0.255,0.158-0.352
c0.105-0.096,0.235-0.144,0.39-0.144h1.131c0.154,0,0.284,0.048,0.392,0.144c0.107,0.096,0.161,0.213,0.161,0.352V16.541z
M20.448,16.644h-1.634v-1.118c0-0.058-0.047-0.105-0.105-0.105h-0.604c-0.056,0-0.104,0.047-0.104,0.105v3.003
c0,0.058,0.048,0.105,0.104,0.105h0.604c0.059,0,0.105-0.047,0.105-0.105v-1.181h0.926v1.181c0,0.058,0.048,0.105,0.105,0.105
h0.603c0.058,0,0.104-0.047,0.104-0.105v-1.781C20.553,16.691,20.506,16.644,20.448,16.644z M20.448,18.53h-0.603v-1.285h-1.137
v1.285h-0.604v-3.003h0.604v1.222h1.739V18.53z M23.425,16.127c0.058,0,0.104-0.047,0.104-0.105v-0.496
c0-0.058-0.047-0.105-0.104-0.105h-2.03c-0.057,0-0.104,0.047-0.104,0.105v3.003c0,0.058,0.048,0.105,0.104,0.105h2.03
c0.058,0,0.104-0.047,0.104-0.105v-0.496c0-0.058-0.047-0.105-0.104-0.105h-1.322v-0.562h1.196c0.059,0,0.104-0.047,0.104-0.105
v-0.496c0-0.058-0.046-0.105-0.104-0.105h-1.196v-0.534H23.425z M23.299,16.766v0.496h-1.302v0.772h1.428v0.496h-2.03v-3.003h2.03
v0.496h-1.428v0.744H23.299z"/>
</g>
</g>
<g id="Shape_16_copy_6">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" d="M13.59,20.991h0.843v-0.013
c-0.014-0.122-0.118-0.216-0.245-0.216h-0.625c-0.137,0-0.245,0.11-0.245,0.246v0.535c0,0.135,0.108,0.246,0.245,0.246h0.625
c0.128,0,0.233-0.096,0.246-0.221v-0.012H13.59V20.991z M15.529,21.161h-0.653v-0.178h0.878c-0.012-0.124-0.117-0.221-0.246-0.221
h-0.637c-0.136,0-0.246,0.11-0.246,0.246v0.153c0.012,0.125,0.117,0.223,0.244,0.223l0.654,0v0.183h-0.897
c0.012,0.125,0.117,0.223,0.245,0.223h0.655c0.137,0,0.247-0.111,0.247-0.246v-0.16C15.762,21.258,15.656,21.161,15.529,21.161z
M18.545,20.752h-0.641c-0.13,0-0.236,0.106-0.236,0.236v0.555c0,0.13,0.106,0.236,0.236,0.236h0.641
c0.13,0,0.236-0.106,0.236-0.236v-0.555C18.781,20.859,18.675,20.752,18.545,20.752z M18.561,21.589h-0.672v-0.645h0.672V21.589z
M16.759,21.285c0.05,0.063,0.125,0.068,0.148,0.068l0.342,0v0.224h-0.72v-0.625h0.937c-0.018-0.113-0.116-0.199-0.232-0.199
h-0.685c-0.132,0-0.237,0.106-0.237,0.237v0.554c0,0.13,0.105,0.236,0.237,0.236h0.685c0.122,0,0.223-0.091,0.235-0.209v-0.389
h-0.761C16.711,21.201,16.721,21.238,16.759,21.285z"/>
</g>
</g>
<g id="Shape_16_copy_6_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E2A825" d="M13.733,20.834h0.779v-0.011c-0.014-0.113-0.11-0.2-0.227-0.2
h-0.578c-0.127,0-0.229,0.102-0.229,0.228v0.494c0,0.126,0.103,0.229,0.229,0.229h0.578c0.118,0,0.216-0.089,0.228-0.204v-0.012
h-0.78V20.834z M15.528,20.992h-0.606v-0.165h0.813c-0.012-0.115-0.107-0.205-0.228-0.205h-0.589
c-0.126,0-0.229,0.102-0.229,0.228v0.142c0.013,0.115,0.108,0.206,0.228,0.206h0.604v0.169h-0.831
c0.013,0.116,0.108,0.206,0.228,0.206h0.606c0.127,0,0.229-0.103,0.229-0.229v-0.147C15.744,21.082,15.646,20.992,15.528,20.992z
M18.321,20.613h-0.593c-0.121,0-0.22,0.099-0.22,0.219v0.513c0,0.121,0.099,0.219,0.22,0.219h0.593
c0.12,0,0.219-0.098,0.219-0.219v-0.513C18.54,20.712,18.441,20.613,18.321,20.613z M18.336,21.388h-0.622v-0.597h0.622V21.388z
M16.668,21.107c0.044,0.058,0.115,0.063,0.136,0.063h0.316v0.208h-0.665v-0.579h0.868c-0.017-0.106-0.109-0.185-0.217-0.185
h-0.635c-0.121,0-0.22,0.099-0.22,0.22v0.513c0,0.121,0.099,0.219,0.22,0.219h0.635c0.113,0,0.207-0.084,0.218-0.194v-0.36H16.62
C16.623,21.029,16.633,21.063,16.668,21.107z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_1_copy_13">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#721011" points="28.515,13.102 19.345,12.357 16.037,4.037
12.729,12.357 3.559,13.102 10.685,18.65 8.325,27.77 16.037,22.538 23.748,27.77 21.389,18.65 "/>
</g>
</g>
<g id="Shape_4_copy">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED2024" points="28.414,13.642 28.22,12.914 17.286,16.311
24.673,12.427 23.037,12.254 17.105,15.998 21.351,12.076 20.336,11.969 16.85,15.742 19.505,11.536 19.134,10.621 16.537,15.562
18.534,9.135 17.947,7.684 16.188,15.468 16.624,4.414 16.468,4.028 15.68,4.028 15.402,4.737 15.826,15.467 14.133,7.973
13.566,9.414 15.477,15.562 13.001,10.854 12.647,11.756 15.162,15.742 11.771,12.07 10.754,12.159 14.907,15.998 9.064,12.309
7.396,12.457 14.728,16.311 3.793,12.914 3.59,13.672 4.439,14.356 14.633,16.66 6.922,16.355 8.071,17.281 14.633,17.022
9.258,18.237 9.888,18.745 9.857,18.884 14.728,17.371 9.586,20.074 9.329,21.206 14.907,17.685 8.859,23.272 8.412,25.247
15.162,17.94 9.053,27.621 9.111,27.656 11.182,26.289 15.477,18.121 13.392,24.829 14.496,24.1 15.826,18.214 15.623,23.356
15.989,23.113 16.392,23.381 16.188,18.214 17.525,24.135 18.636,24.873 16.537,18.121 20.868,26.359 22.857,27.681
22.962,27.621 16.85,17.94 23.273,24.892 22.838,22.981 17.105,17.685 22.391,21.021 22.141,19.924 17.286,17.371 21.884,18.8
21.882,18.788 22.619,18.206 17.38,17.022 23.802,17.275 24.962,16.361 17.38,16.66 27.482,14.376 "/>
</g>
</g>
<g id="Shape_1_copy_13_13_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AC782B" d="M31.348,12.273c-1.842-0.149-11.138-0.902-11.138-0.902
S17.045,3.41,16.228,1.354c-0.121-0.305-0.262-0.305-0.383,0.002c-0.819,2.06-3.981,10.015-3.981,10.015
s-9.346,0.755-11.168,0.903c-0.194,0.016-0.218,0.166-0.055,0.292c1.458,1.136,8.645,6.743,8.645,6.743S6.832,28.768,6.41,30.401
c-0.04,0.151,0.11,0.255,0.25,0.161c1.432-0.971,9.377-6.347,9.377-6.347s7.685,5.213,9.395,6.373
c0.214,0.146,0.3,0.098,0.24-0.133c-0.503-1.949-2.883-11.146-2.883-11.146s7.211-5.613,8.649-6.733
C31.595,12.454,31.546,12.289,31.348,12.273z M21.937,18.871l2.601,10.053l-8.5-5.767l-8.501,5.767l2.601-10.053l-7.854-6.115
l10.107-0.82l3.646-9.172l3.646,9.172l10.106,0.82L21.937,18.871z"/>
</g>
</g>
<g id="Shape_1_copy_13_9_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" d="M30.973,12.511L19.997,11.62l-3.961-9.962l-3.96,9.962
L1.1,12.511l8.53,6.642L6.806,30.07l9.231-6.263l9.231,6.263l-2.824-10.917L30.973,12.511z M24.103,28.276l-8.065-5.472
l-8.066,5.472l2.469-9.54l-7.455-5.803l9.593-0.778l3.46-8.704l3.459,8.704l9.592,0.778l-7.453,5.803L24.103,28.276z"/>
</g>
</g>
<g id="Shape_1_copy_13_6_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" d="M28.911,13.033l-9.461-0.768l-3.413-8.586l-3.414,8.586
l-9.459,0.768l7.351,5.725L8.08,28.167l7.957-5.397l7.956,5.397l-2.435-9.409L28.911,13.033z M22.989,26.621l-6.952-4.716
l-6.953,4.716l2.127-8.221l-6.422-5.002l8.266-0.671l2.982-7.501l2.981,7.501l8.267,0.671l-6.424,5.002L22.989,26.621z"/>
</g>
</g>
<g id="Shape_1_copy_13_8_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AC782B" d="M29.554,12.889l-9.934-0.807l-3.583-9.015l-3.583,9.015
L2.52,12.889l7.719,6.01l-2.556,9.879l8.354-5.667l8.354,5.667l-2.556-9.879L29.554,12.889z M23.335,27.155l-7.298-4.952
l-7.3,4.952l2.233-8.632l-6.744-5.251l8.679-0.704l3.132-7.876l3.13,7.876l8.68,0.704l-6.744,5.251L23.335,27.155z"/>
</g>
</g>
<g id="Shape_1_copy_13_10_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#521311" d="M30.359,12.688l-10.526-0.854l-3.796-9.552l-3.798,9.552
L1.713,12.688l8.18,6.37L7.184,29.525l8.854-6.005l8.852,6.005l-2.708-10.468L30.359,12.688z M23.771,27.806l-7.734-5.247
l-7.734,5.247l2.366-9.147l-7.147-5.565l9.197-0.746l3.318-8.346l3.317,8.346l9.197,0.746l-7.146,5.565L23.771,27.806z"/>
</g>
</g>
<g id="Shape_10_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AC782B" d="M25.786,13.867H6.29c-0.108,0-0.197,0.088-0.197,0.196v5.806
c0,0.108,0.089,0.196,0.197,0.196h19.496c0.108,0,0.196-0.088,0.196-0.196v-5.806C25.982,13.955,25.895,13.867,25.786,13.867z"/>
</g>
</g>
<g id="Shape_1_copy_14">
<g>
<rect x="6.439" y="14.186" fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" width="19.229" height="5.641"/>
</g>
</g>
<g id="Shape_1_copy_13_12_">
<g>
<rect x="6.767" y="14.488" fill-rule="evenodd" clip-rule="evenodd" fill="#521311" width="18.575" height="5.036"/>
</g>
</g>
<g id="Shape_1_copy_13_14_">
<g>
<rect x="7.011" y="14.776" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" width="18.087" height="4.528"/>
</g>
</g>
<g id="Shape_1_copy_13_16_">
<g>
<rect x="7.249" y="14.987" fill-rule="evenodd" clip-rule="evenodd" fill="#E8E1BB" width="17.609" height="4.107"/>
</g>
</g>
<g id="Shape_9">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#361F1E" d="M10.363,15.537h-1.13c-0.154,0-0.284,0.048-0.39,0.145
c-0.106,0.096-0.159,0.213-0.159,0.352v2.012c0,0.138,0.053,0.255,0.159,0.352c0.105,0.097,0.235,0.145,0.39,0.145h1.13
c0.155,0,0.284-0.048,0.393-0.145c0.107-0.096,0.16-0.213,0.16-0.352v-0.546h-0.604v0.429c0,0.033-0.013,0.061-0.039,0.083
c-0.027,0.022-0.059,0.034-0.096,0.034H9.424c-0.037,0-0.068-0.012-0.096-0.034c-0.026-0.022-0.039-0.05-0.039-0.083V16.15
c0-0.034,0.013-0.061,0.039-0.083c0.027-0.023,0.059-0.034,0.096-0.034h0.754c0.037,0,0.068,0.011,0.096,0.034
c0.026,0.022,0.039,0.05,0.039,0.083v0.401h0.604v-0.519c0-0.138-0.053-0.255-0.16-0.352
C10.647,15.584,10.519,15.537,10.363,15.537z M12.656,15.537l-1.131,3.004h0.608l0.231-0.654h1.131l0.24,0.654h0.608l-1.13-3.004
H12.656z M12.546,17.404l0.387-1.146l0.388,1.146H12.546z M16.658,15.537h-1.131c-0.154,0-0.284,0.048-0.39,0.145
c-0.105,0.096-0.158,0.213-0.158,0.352v2.012c0,0.138,0.053,0.255,0.158,0.352c0.105,0.097,0.235,0.145,0.39,0.145h1.131
c0.154,0,0.284-0.048,0.392-0.145c0.107-0.096,0.161-0.213,0.161-0.352v-0.546h-0.604v0.429c0,0.033-0.014,0.061-0.04,0.083
c-0.027,0.022-0.059,0.034-0.096,0.034h-0.754c-0.036,0-0.068-0.012-0.095-0.034c-0.027-0.022-0.04-0.05-0.04-0.083V16.15
c0-0.034,0.013-0.061,0.04-0.083c0.026-0.023,0.059-0.034,0.095-0.034h0.754c0.037,0,0.068,0.011,0.096,0.034
c0.026,0.022,0.04,0.05,0.04,0.083v0.401h0.604v-0.519c0-0.138-0.054-0.255-0.161-0.352
C16.942,15.584,16.813,15.537,16.658,15.537z M18.709,15.537h-0.604v3.004h0.604v-1.286h1.137v1.286h0.603v-1.782h-1.739V15.537z
M23.425,16.033v-0.496h-2.03v3.004h2.03v-0.496h-1.428v-0.771h1.302v-0.497h-1.302v-0.744H23.425z"/>
</g>
</g>
<path fill="#B7AE86" d="M21.395,18.693c-0.091,0-0.163-0.073-0.163-0.164v-3.003c0-0.09,0.072-0.164,0.163-0.164h2.03
c0.09,0,0.163,0.074,0.163,0.164v0.496c0,0.09-0.073,0.164-0.163,0.164h-1.264v0.417h1.138c0.09,0,0.164,0.074,0.164,0.164v0.496
c0,0.09-0.074,0.164-0.164,0.164h-1.138v0.444h1.264c0.09,0,0.163,0.074,0.163,0.164v0.496c0,0.09-0.073,0.164-0.163,0.164H21.395z
M23.365,18.471v-0.378h-1.427v-0.889h1.302v-0.378h-1.302v-0.862h1.427v-0.377h-1.911v2.885H23.365z"/>
<path fill="#B7AE86" d="M19.846,18.693c-0.091,0-0.164-0.073-0.164-0.164v-1.121h-0.809v1.121c0,0.09-0.073,0.164-0.164,0.164
h-0.604c-0.089,0-0.162-0.073-0.162-0.164v-3.003c0-0.09,0.073-0.164,0.162-0.164h0.604c0.091,0,0.164,0.074,0.164,0.164v1.058
h1.575c0.091,0,0.163,0.073,0.163,0.164v1.781c0,0.09-0.072,0.164-0.163,0.164H19.846z M20.389,18.471v-1.664H18.65v-1.222h-0.484
v2.885h0.484v-1.285h1.254v1.285H20.389z"/>
<path fill="#B7AE86" d="M15.527,18.693c-0.196,0-0.365-0.063-0.5-0.187c-0.141-0.128-0.211-0.287-0.211-0.472v-2.012
c0-0.185,0.07-0.344,0.211-0.473c0.135-0.124,0.304-0.187,0.5-0.187h1.131c0.195,0,0.363,0.063,0.501,0.186
c0.144,0.127,0.216,0.287,0.216,0.473v0.519c0,0.09-0.074,0.164-0.164,0.164h-0.604c-0.09,0-0.163-0.074-0.163-0.164l-0.003-0.355
h-0.694l0.003,1.685h0.694v-0.382c0-0.09,0.073-0.164,0.163-0.164h0.604c0.09,0,0.164,0.074,0.164,0.164v0.546
c0,0.186-0.072,0.345-0.216,0.473c-0.138,0.124-0.306,0.186-0.501,0.186H15.527z M15.527,15.585c-0.141,0-0.255,0.042-0.35,0.129
c-0.094,0.085-0.14,0.186-0.14,0.308v2.012c0,0.122,0.046,0.223,0.14,0.308c0.095,0.087,0.209,0.128,0.35,0.128h1.131
c0.14,0,0.256-0.042,0.353-0.129c0.095-0.085,0.142-0.186,0.142-0.308v-0.487h-0.484v0.369c0,0.051-0.022,0.095-0.062,0.128
c-0.039,0.032-0.084,0.048-0.135,0.048h-0.754c-0.051,0-0.095-0.016-0.133-0.048c-0.041-0.034-0.061-0.078-0.061-0.128V16.14
c0-0.051,0.021-0.096,0.062-0.128c0.035-0.032,0.081-0.048,0.132-0.048h0.754c0.051,0,0.097,0.017,0.135,0.049
c0.039,0.032,0.062,0.077,0.062,0.128v0.342h0.484v-0.46c0-0.122-0.047-0.222-0.142-0.308c-0.097-0.087-0.213-0.129-0.353-0.129
H15.527z"/>
<path fill="#B7AE86" d="M13.736,18.693c-0.067,0-0.129-0.043-0.153-0.106l-0.201-0.547h-0.9l-0.192,0.544
c-0.024,0.065-0.086,0.109-0.155,0.109h-0.608c-0.053,0-0.104-0.026-0.135-0.07c-0.029-0.044-0.037-0.101-0.018-0.151l1.13-3.003
c0.024-0.063,0.086-0.106,0.153-0.106h0.559c0.067,0,0.129,0.042,0.152,0.106l1.131,3.004c0.019,0.05,0.013,0.107-0.019,0.151
c-0.03,0.044-0.081,0.07-0.135,0.07H13.736z M14.26,18.471l-1.087-2.885h-0.475l-1.087,2.885h0.48l0.231-0.654h1.213l0.243,0.654
H14.26z M12.464,17.453l0.469-1.389l0.47,1.389H12.464z M13.092,17.23l-0.159-0.47l-0.158,0.47H13.092z"/>
<path fill="#B7AE86" d="M9.233,18.693c-0.196,0-0.365-0.063-0.5-0.187c-0.141-0.128-0.213-0.287-0.213-0.472v-2.012
c0-0.185,0.072-0.344,0.213-0.473c0.136-0.124,0.304-0.187,0.5-0.187h1.13c0.196,0,0.364,0.063,0.502,0.186
c0.143,0.127,0.215,0.287,0.215,0.473v0.519c0,0.09-0.074,0.164-0.164,0.164h-0.604c-0.089,0-0.162-0.074-0.162-0.164l-0.004-0.355
H9.453l0.002,1.685h0.695v-0.382c0-0.09,0.073-0.164,0.162-0.164h0.604c0.09,0,0.164,0.074,0.164,0.164v0.546
c0,0.186-0.072,0.345-0.215,0.473c-0.138,0.124-0.306,0.186-0.502,0.186H9.233z M9.233,15.585c-0.141,0-0.255,0.042-0.35,0.129
C8.79,15.8,8.744,15.9,8.744,16.022v2.012c0,0.122,0.045,0.223,0.14,0.308c0.095,0.087,0.208,0.128,0.35,0.128h1.13
c0.141,0,0.257-0.042,0.354-0.129c0.095-0.085,0.141-0.186,0.141-0.308v-0.487h-0.484v0.369c0,0.051-0.021,0.095-0.063,0.128
c-0.037,0.032-0.082,0.048-0.133,0.048H9.424c-0.051,0-0.096-0.016-0.133-0.048c-0.041-0.034-0.062-0.078-0.062-0.128V16.14
c0-0.051,0.021-0.096,0.062-0.128c0.036-0.032,0.082-0.048,0.133-0.048h0.754c0.051,0,0.097,0.017,0.133,0.049
c0.041,0.032,0.063,0.077,0.063,0.128v0.342h0.484v-0.46c0-0.122-0.046-0.222-0.142-0.308c-0.096-0.087-0.212-0.129-0.353-0.129
H9.233z"/>
<g id="Shape_8">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EFEDA8" d="M10.363,15.421h-1.13c-0.18,0-0.335,0.058-0.461,0.171
c-0.127,0.116-0.192,0.26-0.192,0.429v2.012c0,0.168,0.065,0.313,0.192,0.429c0.126,0.114,0.28,0.172,0.461,0.172h1.13
c0.182,0,0.336-0.058,0.462-0.171c0.131-0.116,0.196-0.26,0.196-0.429v-0.546c0-0.057-0.047-0.104-0.105-0.104h-0.604
c-0.057,0-0.104,0.047-0.104,0.104v0.429c-0.01,0.008-0.017,0.013-0.031,0.013H9.424c-0.015,0-0.021-0.004-0.028-0.009
l-0.002-1.78c0.009-0.008,0.016-0.013,0.03-0.013h0.754c0.015,0,0.021,0.004,0.028,0.009l0.003,0.404
c0,0.058,0.047,0.105,0.104,0.105h0.604c0.059,0,0.105-0.047,0.105-0.105v-0.519c0-0.169-0.065-0.313-0.196-0.429
C10.699,15.479,10.545,15.421,10.363,15.421z M10.916,16.541h-0.604V16.14c0-0.033-0.013-0.062-0.039-0.083
c-0.027-0.022-0.059-0.034-0.096-0.034H9.424c-0.037,0-0.068,0.012-0.096,0.034c-0.026,0.022-0.039,0.05-0.039,0.083v1.777
c0,0.033,0.013,0.061,0.039,0.083c0.027,0.023,0.059,0.034,0.096,0.034h0.754c0.037,0,0.068-0.011,0.096-0.034
c0.026-0.022,0.039-0.05,0.039-0.083v-0.429h0.604v0.546c0,0.138-0.053,0.255-0.16,0.352c-0.108,0.096-0.237,0.144-0.393,0.144
h-1.13c-0.154,0-0.284-0.048-0.39-0.144c-0.106-0.096-0.159-0.213-0.159-0.352v-2.012c0-0.139,0.053-0.255,0.159-0.352
c0.105-0.096,0.235-0.144,0.39-0.144h1.13c0.155,0,0.284,0.048,0.393,0.144c0.107,0.096,0.16,0.213,0.16,0.352V16.541z
M13.215,15.421h-0.559c-0.044,0-0.082,0.027-0.098,0.068l-1.131,3.003c-0.011,0.032-0.008,0.068,0.012,0.097
s0.052,0.045,0.086,0.045h0.608c0.045,0,0.085-0.028,0.099-0.07l0.206-0.584h0.984l0.216,0.586
c0.015,0.041,0.055,0.068,0.098,0.068h0.608c0.035,0,0.067-0.017,0.087-0.045s0.022-0.065,0.012-0.097l-1.132-3.003
C13.297,15.449,13.258,15.421,13.215,15.421z M13.736,18.53l-0.24-0.654h-1.131l-0.231,0.654h-0.608l1.131-3.003h0.559l1.13,3.003
H13.736z M12.546,17.394h0.774l-0.388-1.146L12.546,17.394z M12.692,17.289l0.24-0.714l0.241,0.714H12.692z M16.658,15.421h-1.131
c-0.18,0-0.335,0.058-0.46,0.171c-0.128,0.116-0.191,0.26-0.191,0.429v2.012c0,0.168,0.063,0.313,0.191,0.429
c0.125,0.114,0.279,0.172,0.46,0.172h1.131c0.181,0,0.336-0.058,0.461-0.171c0.131-0.116,0.196-0.26,0.196-0.429v-0.546
c0-0.057-0.047-0.104-0.104-0.104h-0.604c-0.058,0-0.104,0.047-0.104,0.104v0.429c-0.008,0.008-0.017,0.013-0.031,0.013h-0.754
c-0.015,0-0.021-0.004-0.027-0.009l-0.003-1.78c0.009-0.008,0.016-0.013,0.03-0.013h0.754c0.015,0,0.023,0.004,0.028,0.009
l0.003,0.404c0,0.058,0.047,0.105,0.104,0.105h0.604c0.058,0,0.104-0.047,0.104-0.105v-0.519c0-0.169-0.065-0.313-0.196-0.429
C16.993,15.479,16.839,15.421,16.658,15.421z M17.211,16.541h-0.604V16.14c0-0.033-0.014-0.062-0.04-0.083
c-0.027-0.022-0.059-0.034-0.096-0.034h-0.754c-0.036,0-0.068,0.012-0.095,0.034c-0.027,0.022-0.04,0.05-0.04,0.083v1.777
c0,0.033,0.013,0.061,0.04,0.083c0.026,0.023,0.059,0.034,0.095,0.034h0.754c0.037,0,0.068-0.011,0.096-0.034
c0.026-0.022,0.04-0.05,0.04-0.083v-0.429h0.604v0.546c0,0.138-0.054,0.255-0.161,0.352s-0.237,0.144-0.392,0.144h-1.131
c-0.154,0-0.284-0.048-0.39-0.144s-0.158-0.213-0.158-0.352v-2.012c0-0.139,0.053-0.255,0.158-0.352
c0.105-0.096,0.235-0.144,0.39-0.144h1.131c0.154,0,0.284,0.048,0.392,0.144c0.107,0.096,0.161,0.213,0.161,0.352V16.541z
M20.448,16.644h-1.634v-1.118c0-0.058-0.047-0.105-0.105-0.105h-0.604c-0.056,0-0.104,0.047-0.104,0.105v3.003
c0,0.058,0.048,0.105,0.104,0.105h0.604c0.059,0,0.105-0.047,0.105-0.105v-1.181h0.926v1.181c0,0.058,0.048,0.105,0.105,0.105
h0.603c0.058,0,0.104-0.047,0.104-0.105v-1.781C20.553,16.691,20.506,16.644,20.448,16.644z M20.448,18.53h-0.603v-1.285h-1.137
v1.285h-0.604v-3.003h0.604v1.222h1.739V18.53z M23.425,16.127c0.058,0,0.104-0.047,0.104-0.105v-0.496
c0-0.058-0.047-0.105-0.104-0.105h-2.03c-0.057,0-0.104,0.047-0.104,0.105v3.003c0,0.058,0.048,0.105,0.104,0.105h2.03
c0.058,0,0.104-0.047,0.104-0.105v-0.496c0-0.058-0.047-0.105-0.104-0.105h-1.322v-0.562h1.196c0.059,0,0.104-0.047,0.104-0.105
v-0.496c0-0.058-0.046-0.105-0.104-0.105h-1.196v-0.534H23.425z M23.299,16.766v0.496h-1.302v0.772h1.428v0.496h-2.03v-3.003h2.03
v0.496h-1.428v0.744H23.299z"/>
</g>
</g>
<g id="Shape_16_copy_6">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" d="M13.59,20.991h0.843v-0.013
c-0.014-0.122-0.118-0.216-0.245-0.216h-0.625c-0.137,0-0.245,0.11-0.245,0.246v0.535c0,0.135,0.108,0.246,0.245,0.246h0.625
c0.128,0,0.233-0.096,0.246-0.221v-0.012H13.59V20.991z M15.529,21.161h-0.653v-0.178h0.878c-0.012-0.124-0.117-0.221-0.246-0.221
h-0.637c-0.136,0-0.246,0.11-0.246,0.246v0.153c0.012,0.125,0.117,0.223,0.244,0.223l0.654,0v0.183h-0.897
c0.012,0.125,0.117,0.223,0.245,0.223h0.655c0.137,0,0.247-0.111,0.247-0.246v-0.16C15.762,21.258,15.656,21.161,15.529,21.161z
M18.545,20.752h-0.641c-0.13,0-0.236,0.106-0.236,0.236v0.555c0,0.13,0.106,0.236,0.236,0.236h0.641
c0.13,0,0.236-0.106,0.236-0.236v-0.555C18.781,20.859,18.675,20.752,18.545,20.752z M18.561,21.589h-0.672v-0.645h0.672V21.589z
M16.759,21.285c0.05,0.063,0.125,0.068,0.148,0.068l0.342,0v0.224h-0.72v-0.625h0.937c-0.018-0.113-0.116-0.199-0.232-0.199
h-0.685c-0.132,0-0.237,0.106-0.237,0.237v0.554c0,0.13,0.105,0.236,0.237,0.236h0.685c0.122,0,0.223-0.091,0.235-0.209v-0.389
h-0.761C16.711,21.201,16.721,21.238,16.759,21.285z"/>
</g>
</g>
<g id="Shape_16_copy_6_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E2A825" d="M13.733,20.834h0.779v-0.011c-0.014-0.113-0.11-0.2-0.227-0.2
h-0.578c-0.127,0-0.229,0.102-0.229,0.228v0.494c0,0.126,0.103,0.229,0.229,0.229h0.578c0.118,0,0.216-0.089,0.228-0.204v-0.012
h-0.78V20.834z M15.528,20.992h-0.606v-0.165h0.813c-0.012-0.115-0.107-0.205-0.228-0.205h-0.589
c-0.126,0-0.229,0.102-0.229,0.228v0.142c0.013,0.115,0.108,0.206,0.228,0.206h0.604v0.169h-0.831
c0.013,0.116,0.108,0.206,0.228,0.206h0.606c0.127,0,0.229-0.103,0.229-0.229v-0.147C15.744,21.082,15.646,20.992,15.528,20.992z
M18.321,20.613h-0.593c-0.121,0-0.22,0.099-0.22,0.219v0.513c0,0.121,0.099,0.219,0.22,0.219h0.593
c0.12,0,0.219-0.098,0.219-0.219v-0.513C18.54,20.712,18.441,20.613,18.321,20.613z M18.336,21.388h-0.622v-0.597h0.622V21.388z
M16.668,21.107c0.044,0.058,0.115,0.063,0.136,0.063h0.316v0.208h-0.665v-0.579h0.868c-0.017-0.106-0.109-0.185-0.217-0.185
h-0.635c-0.121,0-0.22,0.099-0.22,0.22v0.513c0,0.121,0.099,0.219,0.22,0.219h0.635c0.113,0,0.207-0.084,0.218-0.194v-0.36H16.62
C16.623,21.029,16.633,21.063,16.668,21.107z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 213 KiB

After

Width:  |  Height:  |  Size: 215 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 278 KiB

After

Width:  |  Height:  |  Size: 281 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 61 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 213 KiB

After

Width:  |  Height:  |  Size: 215 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 212 KiB

After

Width:  |  Height:  |  Size: 214 KiB

View File

@@ -1,266 +1,266 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#998C67" cx="16.102" cy="15.996" r="15.387"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5E3C2A" d="M24.516,22.446c-1.043,0.243-1.286,0.208-1.877,0.486
c-0.591,0.278-0.765,0.226-1.042-0.139c-0.278-0.365-0.227-0.539-0.07-1.043s0.14-0.539,0.104-0.765
c-0.034-0.226-0.069-0.348,0.174-0.66c0.243-0.313,0.504-0.521,0.486-0.973c-0.017-0.452,0.174-0.626-0.243-0.904
s-0.504,0.208-0.66-0.521c-0.156-0.729-3.875-5.561-4.345-6.743c-0.469-1.182-0.972-2.672-0.799-3.649
c0.101-0.574,0.729-1.147,0.66-1.529s-0.869-0.956-0.729-1.147c0.139-0.191,9.939-1.182,11.261,6.708
C28.756,19.457,25.559,22.202,24.516,22.446z M14.854,26.13c0.087,0.678-4.709,1.147-7.021,0.278
c-2.312-0.869-2.276-2.224-3.268-5.491c-0.99-3.267,1.061-6.273,1.738-6.569s1.13,0.243,2.085,0.417
c0.956,0.174,0.748-0.243,1.529-0.348c0.782-0.104,0.817,0.208,1.772,0.73c0.956,0.521,1.355,1.286,1.564,1.564
c0.209,0.278,0.782,0.938,1.217,1.355c0.434,0.417,0.399,0.625,0.625,1.321c0.227,0.695-0.104,0.73-0.277,1.599
c-0.174,0.869,0.243,0.678,0.451,1.39c0.209,0.713-0.174,1.373-0.417,2.329C14.61,25.661,14.767,25.452,14.854,26.13z"/>
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#281F15" d="M7.115,12.451c0.201-0.128,0.294-0.349,0.294-0.477
s0.036-0.128,0.11-0.037c0.073,0.092,0.128,0.128,0.293,0.037s0.349-0.386,0.404-0.514c0.055-0.129-0.147-0.294-0.221-0.404
c-0.073-0.11-0.258-0.055-0.331-0.147c-0.072-0.092,0.073-0.331,0-0.441c-0.072-0.11-0.22-0.202-0.366-0.367
c-0.147-0.166-0.238,0.055-0.368,0c-0.128-0.055-0.164-0.404-0.513-0.441c-0.349-0.037-0.275,0.606-0.331,0.771
c-0.055,0.166,0,0.074,0.146,0.331c0.147,0.257,0.294,0.257,0.404,0.477c0.11,0.221-0.056,0.367-0.184,0.698
s0.018,0.293,0.147,0.477C6.729,12.598,6.913,12.58,7.115,12.451z M19.12,7.458c0.11-0.238,0.146-0.11,0.366-0.22
c0.221-0.11,0-0.184,0-0.331c0-0.146,0.184-0.202,0.073-0.514c-0.109-0.312-0.312,0.128-0.587-0.037
c-0.275-0.166-0.165-0.239-0.221-0.551c-0.055-0.312-0.349-0.238-0.697-0.331c-0.349-0.092-0.55,0.019-0.771,0.184
s-0.073,0.11,0,0.331s-0.147,0.128-0.184,0.331c-0.037,0.202,0,0.092,0.33,0.33c0.33,0.239,0.698,0.257,1.065,0.918
C18.862,8.229,19.01,7.697,19.12,7.458z M24.736,9.037c0.019-0.22,0.093-0.293,0-0.514c-0.091-0.221-0.146-0.459-0.366-0.661
c-0.221-0.202-1.34-0.808-1.249-0.33c0.092,0.477,0.11,0.715,0.11,1.028c0,0.312,0.018,0.184,0.221,0.514
c0.201,0.331-0.037,0.551,0.439,0.478c0.479-0.074,0.35,0.165,0.551-0.11C24.646,9.166,24.719,9.258,24.736,9.037z M26.462,15.278
c-0.128-0.275-0.221-0.257-0.44-0.22c-0.22,0.037-0.165,0.055-0.367,0.661c-0.201,0.605-0.037,0.275-0.184,0.624
c-0.147,0.349,0,0.129,0.073,0.22c0.073,0.092,0.019,0.055,0,0.22c-0.018,0.166-0.11,0.129-0.073,0.367
c0.036,0.239,0.073,0.055,0.331-0.11c0.257-0.165,0.055-0.037,0.477-0.293s0.11-0.019,0.331-0.881
C26.829,15.003,26.591,15.554,26.462,15.278z M21.665,21.569c-0.238-0.037-0.495-0.203-0.294,0.183
c0.202,0.385,0.238,0.477,0.404,0.625c0.165,0.146,0.275-0.019,0.183-0.367C21.867,21.66,21.903,21.605,21.665,21.569z
M24.59,17.701c-0.11,0.202-0.367,0.349-0.11,0.478c0.257,0.128,0.33,0.128,0.515,0.037c0.184-0.092,0.293-0.055,0.257-0.331
C25.214,17.609,24.699,17.499,24.59,17.701z M9.354,20.271c-0.22-0.239-0.146-0.202-0.44-0.551s-0.386-0.624-0.551-0.991
c-0.166-0.367-0.184-0.11-0.221-0.587c-0.036-0.477-0.165-0.587-0.33-0.514c-0.165,0.073-0.386,0.055-0.478,0.367
c-0.092,0.312,0,0.459-0.22,0.551c-0.221,0.092-0.258-0.055-0.331,0.367c-0.072,0.422,0,0.422,0.221,0.661
c0.221,0.239,0.202,0.569,0.404,0.734c0.201,0.165,0.733,0.073,0.954,0.11c0.22,0.037,0.386,0.239,0.587,0.221
C9.152,20.62,9.574,20.51,9.354,20.271z M13.393,25.337c-0.165-0.257-0.349-0.221-0.588-0.184
c-0.238,0.037-0.22,0.275-0.293,0.697c-0.073,0.422,0.496,0.184,0.734,0.184s0.11-0.037,0.33-0.293
C13.796,25.484,13.558,25.594,13.393,25.337z M9.024,24.016c-0.459,0.22,0.459,0.587,0.66,0.587c0.202,0,0.037-0.018,0.147-0.183
c0.11-0.166,0.11-0.184-0.074-0.587C9.574,23.428,9.483,23.795,9.024,24.016z M20.185,8.009c-0.367-0.496-0.331-0.092-0.515,0.11
c-0.184,0.202-0.275,0.22-0.514,0.22s-0.238-0.074-0.404,0.11c-0.165,0.183,0.037,0.128,0.294,0.44
c0.258,0.312,0.734,0.202,0.845,0.257s0.184,0.055,0.403,0.11c0.221,0.055,0.203,0.037,0.441,0
c0.238-0.037,0.018-0.11-0.037-0.294S20.552,8.505,20.185,8.009z"/>
</g>
</g>
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AA998D" d="M18.445,6.784c-0.124-0.143-0.159-0.32-0.249-0.391
c-0.089-0.071-0.355,0.017-0.461,0.142c-0.106,0.124-0.035,0.124-0.214,0.319c-0.177,0.195-0.496,0.018-0.496,0.106
c0,0,0.319,0.125,0.425,0.178c0.107,0.054,0.107,0.054,0.144,0.143c0.035,0.088-0.036,0.159-0.036,0.249
c0,0.087,0.071,0.176,0.071,0.176s0.071,0.036,0.143,0.142c0.069,0.107,0.052,0.107,0.069,0.214
c0.019,0.106-0.035,0.124,0.107,0.212c0.141,0.089,0.159,0.036,0.354,0.107c0.195,0.071,0.284-0.195,0.391-0.426
c0.105-0.23,0.178-0.71,0.178-0.71l-0.035-0.143C18.836,7.102,18.571,6.925,18.445,6.784z M20.596,7.991
c-0.088-0.142-0.158,0-0.142,0.178c0.019,0.177-0.141,0.354-0.354,0.426c-0.214,0.071-0.229-0.196-0.391-0.356
c-0.16-0.159-0.124-0.053-0.177,0.072c-0.054,0.125-0.108,0.159-0.143,0.355c-0.035,0.194,0.958,0.728,1.137,0.674
c0.177-0.053,0.213-0.23,0.39-0.461c0.177-0.231,0.07-0.231,0.034-0.391C20.916,8.329,20.685,8.133,20.596,7.991z M23.697,8.026
c-0.158,0.018-0.408,0.248-0.566,0.461c-0.159,0.213-0.196,0.32-0.319,0.426c-0.125,0.107-0.195,0.071-0.214,0.355
c-0.019,0.284,0,0.515,0.036,0.639c0.035,0.124,0.142,0.302,0.248,0.142c0.105-0.159,0.212-0.213,0.212-0.213
s0.108-0.07,0.179-0.035c0.071,0.035,0.122,0.106,0.247,0.106c0.124,0,0.249,0.142,0.249-0.106c0-0.249-0.018-0.568,0.071-0.853
c0.09-0.283,0.266-0.443,0.178-0.674C23.93,8.043,23.857,8.007,23.697,8.026z M7.513,11.469c0-0.107,0-0.143,0.07-0.249
c0.072-0.107,0.019-0.178-0.07-0.213c-0.088-0.035-0.105-0.035-0.247-0.035c-0.143,0-0.161-0.036-0.284-0.143
c-0.124-0.107-0.124-0.195-0.354-0.461C6.396,10.102,6.2,10.759,6.2,10.9s0.337,0.267,0.462,0.355
c0.123,0.089,0.106,0.16,0.106,0.284c0,0.124-0.302,0.55-0.355,0.745c-0.054,0.196-0.107,0.178,0,0.32
c0.106,0.142,0.089,0.213,0.215,0.249c0.121,0.036,0.086,0.071,0.282-0.071c0.194-0.143,0.515-0.479,0.673-0.639
c0.161-0.16,0.072-0.319,0.037-0.426C7.583,11.61,7.513,11.575,7.513,11.469z M20.239,24.689
c-0.143-0.195-0.213-0.088-0.285-0.035c-0.069,0.054,0.072,0.089-0.036,0.249c-0.104,0.159,0.036,0.212-0.211,0.355
c-0.25,0.142-0.284,0.159-0.284,0.283c0,0.125-0.019,0.302,0,0.355c0.018,0.054,0.248-0.071,0.319-0.106s0.052-0.053,0.143,0
c0.087,0.054,0.195,0.071,0.247-0.071c0.054-0.142,0.054-0.159,0.107-0.248c0.053-0.088,0.07,0.106,0.213-0.106
c0.143-0.213,0.354-0.125,0.105-0.355C20.31,24.779,20.382,24.885,20.239,24.689z M26.608,17.29
c-0.194-0.498-0.089-0.089-0.318-0.036c-0.232,0.053-0.25,0.301-0.391,0.567c-0.141,0.267-0.515,0.071-0.64,0.32
c-0.124,0.249,0.231,0.284,0.284,0.498c0.053,0.212-0.088,0.231-0.213,0.461c-0.125,0.23-0.035,0.178,0.105,0.284
c0.143,0.107,0.035,0.036,0.143,0.178c0.107,0.142,0.088,0.124,0.391,0.07c0.302-0.053,0.392-0.39,0.746-1.064
C27.07,17.892,26.804,17.786,26.608,17.29z M8.542,19.986c-0.017,0.107,0.072,0.391,0.249,0.284
c0.178-0.106,0.124-0.177,0.32-0.141c0.194,0.035,0.337,0.106,0.532,0.177c0.194,0.071,0.283,0,0.105-0.177
c-0.177-0.178-0.285-0.214-0.391-0.533c-0.105-0.319,0.019-0.302-0.105-0.639c-0.125-0.338-0.249-0.355-0.392-0.497
c-0.142-0.143-0.265-0.125-0.319,0.071c-0.053,0.195-0.088,0.372-0.249,0.567c-0.158,0.195-0.373,0.195-0.249,0.391
c0.126,0.194,0.162,0.301,0.321,0.319C8.525,19.827,8.56,19.879,8.542,19.986z M9.43,23.536c-0.338-0.337-0.088-0.302-0.283-0.532
c-0.195-0.231-0.159-0.036-0.641,0.212c-0.478,0.249,1.102,1.296,1.28,1.349c0.176,0.054,0.105,0,0.211-0.213
c0.107-0.211,0-0.124-0.07-0.354S9.768,23.873,9.43,23.536z M12.942,25.346c-0.318-0.16-0.211-0.053-0.602,0.248
c-0.393,0.302,0.62,0.337,0.922,0.426c0.302,0.089,0.089,0.018,0.071-0.248C13.315,25.506,13.263,25.506,12.942,25.346z
M22.302,21.587c-0.147-0.08-0.108,0.026-0.269-0.026c-0.16-0.054-0.055-0.147-0.241-0.027c-0.188,0.12-0.04,0.133,0,0.24
c0.039,0.107,0.026,0.013,0.081,0.16c0.054,0.147,0.013,0.054-0.055,0.241c-0.066,0.187-0.12,0.027-0.268,0.133
c-0.146,0.107,0.016,0.094,0.135,0.214c0.12,0.12,0.039,0.054,0.429-0.347c0.387-0.4,0.119-0.121,0.319-0.375
C22.635,21.548,22.449,21.667,22.302,21.587z"/>
</g>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#232323" d="M16.102,0.609c-8.498,0-15.387,6.889-15.387,15.387
s6.889,15.387,15.387,15.387s15.387-6.889,15.387-15.387S24.6,0.609,16.102,0.609z M16.258,26.611
c-5.811,0-10.521-4.711-10.521-10.521S10.447,5.569,16.258,5.569s10.521,4.71,10.521,10.521S22.068,26.611,16.258,26.611z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F4DA6E" d="M18.469,18.948c-0.109,0-0.21-0.018-0.309-0.055l-0.063-0.023
c-0.512-0.193-0.779-0.301-0.779-0.45c0-0.085,0.143-0.208,1.143-0.905c0.283-0.198,0.551-0.385,0.634-0.456
c0.212-0.184,0.425-0.295,0.709-0.371c0.206-0.056,0.741-0.175,0.999-0.175c0.077,0,0.16,0.009,0.193,0.066
c0.067,0.118,0.085,0.22,0.086,0.225l0.002,0.017l-0.005,0.017c-0.042,0.12-0.415,1.18-0.609,1.344
c-0.198,0.168-0.701,0.56-1.108,0.593c-0.129,0.011-0.256,0.046-0.39,0.084C18.811,18.902,18.643,18.948,18.469,18.948z
M13.479,18.932c-0.185,0-0.313-0.012-0.394-0.038c-0.218-0.068-0.88-0.276-1.12-0.614c-0.084-0.118-0.205-0.258-0.322-0.395
c-0.206-0.238-0.4-0.464-0.462-0.628c-0.103-0.272-0.003-0.493,0.001-0.503l0.004-0.006l0.004-0.006
c0.112-0.148,0.348-0.18,0.561-0.197c0.023-0.001,0.052-0.002,0.084-0.002c0.243,0,0.723,0.061,0.983,0.292
c0.271,0.24,0.933,0.718,1.142,0.837c0.031,0.018,0.75,0.423,0.848,0.501c0.09,0.071,0.082,0.117,0.048,0.199
c-0.007,0.018-0.017,0.04-0.026,0.068c-0.056,0.156-0.323,0.456-0.544,0.456l0,0c-0.049,0-0.136,0.006-0.239,0.013
C13.877,18.919,13.668,18.932,13.479,18.932z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D6D6D6" d="M22.645,13.033l-0.467-2.368c-0.711-1.771-3.912-3.572-6.35-3.572
c-0.025,0-0.051,0-0.077,0.001l-1.312,0.308c-1.467,0.571-3.507,1.52-4.315,3.149l-0.192,1.004l-0.349,1.663
c0.06,0.474,0.282,1.026,0.497,1.561c0.227,0.563,0.441,1.093,0.436,1.473v0.017l-0.23,0.425l0.155,1.479l-0.384,0.766
c0.15,0.297,0.301,0.396,0.524,0.545c0.077,0.051,0.163,0.107,0.259,0.18c0.074,0.057,0.145,0.11,0.212,0.161
c0.502,0.384,0.805,0.615,1.192,0.615c0.303,0,0.676-0.136,1.287-0.47l0.061-0.033l0.078,0.156l-0.001,0.018
c-0.024,0.395-0.208,0.761-0.403,1.148c-0.308,0.612-0.626,1.246-0.308,2.039c0.05,0.048,0.091,0.082,0.129,0.112
c0.082,0.067,0.149,0.122,0.229,0.261l0.398-0.239l0.213,0.595c0.049,0.021,0.086,0.03,0.116,0.03c0.051,0,0.091-0.026,0.179-0.085
l0.104-0.07l0.034,0.065c0.18,0.34,1.008,0.597,1.926,0.597c0.856,0,1.473-0.229,1.57-0.583L17.88,23.9l0.341,0.17l0.01-0.011
l0.006-0.003c0.141-0.09,0.221-0.252,0.242-0.495l0.003-0.037l0.149-0.073l0.293,0.22c0.031-0.039,0.053-0.073,0.072-0.104
c0.066-0.106,0.117-0.173,0.307-0.243c0.102-0.645,0.025-1.405-0.197-1.948c-0.056-0.137-0.129-0.258-0.199-0.375
c-0.149-0.248-0.305-0.506-0.312-0.934l-0.001-0.104l1.102,0.466c0.078,0.018,0.162,0.027,0.247,0.027
c0.938,0,2.009-1.058,2.264-1.557c-0.405-0.72-0.368-0.988-0.245-1.849l0.021-0.147c0.022-0.167-0.049-0.263-0.125-0.365
c-0.046-0.063-0.089-0.12-0.107-0.192l-0.005-0.019l0.473-1.575c0.04-0.125,0.096-0.256,0.154-0.394
C22.536,13.973,22.723,13.537,22.645,13.033z M14.771,18.318c-0.047,0.133-0.295,0.413-0.481,0.413
c-0.186-0.001-0.931,0.077-1.179,0c-0.248-0.079-0.863-0.277-1.086-0.59c-0.223-0.313-0.682-0.761-0.775-1.008
c-0.094-0.249,0-0.45,0-0.45c0.094-0.124,0.311-0.155,0.512-0.171c0.202-0.016,0.748,0.033,1.018,0.273
c0.27,0.238,0.938,0.722,1.154,0.845c0.217,0.122,0.76,0.433,0.838,0.495C14.849,18.187,14.818,18.187,14.771,18.318z M20.434,18.03
c-0.188,0.157-0.684,0.546-1.07,0.576c-0.389,0.031-0.762,0.28-1.172,0.125c-0.411-0.155-0.799-0.296-0.799-0.413
c0-0.115,1.521-1.108,1.753-1.31c0.232-0.202,0.45-0.295,0.683-0.357c0.232-0.062,1.055-0.247,1.117-0.139
c0.062,0.108,0.077,0.201,0.077,0.201S20.619,17.872,20.434,18.03z"/>
<path opacity="0.7" fill="#282621" d="M16.273,24.827c-0.75,0-1.645-0.175-2.03-0.563c-0.384,0.207-0.639-0.097-0.683-0.438
l-0.323,0.077c-0.319-0.044-0.306-0.245-0.489-0.427c-0.524-1.226,0.303-2.003,0.596-3.117c-0.686,0.346-1.309,0.486-1.98,0.034
c-0.535-0.36-1.332-0.804-1.596-1.414l0.001-0.089l0.397-0.796c-0.089-0.69-0.284-1.298,0.082-1.918
c-0.062-1.017-0.875-1.535-0.932-2.781c-0.043-0.933,0.357-1.986,0.534-2.903c0.964-1.975,3.782-3.525,5.966-3.666
c2.578,0,5.85,1.864,6.604,3.764c0.156,0.786,0.476,1.737,0.551,2.535c0.152,0.979-0.676,2.253-0.964,3.216
c0.046-0.072,0.235,0.537,0.227,0.599c-0.104,0.72-0.157,1.26,0.234,1.903l0.004,0.092c-0.329,0.71-1.098,1.331-1.808,1.626
c-0.674,0.279-1.15,0.086-1.771-0.176c0.142,0.515,0.501,0.91,0.614,1.451c0.113,0.533,0.125,1.094,0.029,1.631
c-0.201,0.107-0.414,0.283-0.527,0.498l-0.135,0.014l-0.189-0.142c-0.059,0.201-0.183,0.361-0.353,0.479l-0.138,0.047l-0.196-0.098
C17.744,24.624,17.125,24.827,16.273,24.827z M14.378,23.949c0.394,0.744,3.178,0.95,3.435,0.021l0.033-0.117l0.363,0.182
c0.154-0.133,0.23-0.33,0.229-0.531l0.185-0.09l0.282,0.212c0.107-0.151,0.169-0.253,0.355-0.325
c0.104-0.683,0.047-1.489-0.291-2.104c-0.23-0.423-0.443-0.78-0.422-1.283c0.418,0.177,0.92,0.512,1.383,0.512
c0.85,0,1.896-0.812,2.248-1.568c-0.416-0.647-0.352-1.224-0.242-1.957c0.034-0.239-0.176-0.336-0.23-0.544
c0.259-0.964,1.041-2.365,0.893-3.318c-0.061-0.786-0.314-1.596-0.467-2.37c-0.695-1.745-3.886-3.541-6.314-3.541
c-2.108,0.456-4.66,1.38-5.68,3.448c-0.168,0.89-0.352,1.775-0.537,2.662c0.137,1.032,0.949,1.968,0.937,3.016
c-0.078,0.16-0.16,0.319-0.245,0.476c0.062,0.474,0.117,0.946,0.167,1.421c-0.131,0.279-0.259,0.56-0.399,0.834
c0.325,0.479,1.225,1.076,1.743,1.321c0.603,0.284,1.274-0.124,1.791-0.415c0.04,0.071,0.071,0.146,0.096,0.223
c-0.069,1.144-1.206,1.97-0.708,3.186c0.13,0.079,0.256,0.198,0.334,0.328l0.406-0.243l0.234,0.66
c0.004-0.031,0.266-0.116,0.332-0.164L14.378,23.949z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#282828" d="M15.73,7.026c2.572-0.043,5.795,1.852,6.499,3.62
c0.155,0.791,0.312,1.583,0.468,2.374c0.109,0.708-0.277,1.28-0.429,1.751c-0.155,0.52-0.312,1.038-0.467,1.558
c0.044,0.166,0.275,0.284,0.233,0.583c-0.139,0.987-0.202,1.222,0.233,1.985c-0.263,0.566-1.573,1.836-2.607,1.596
c-0.337-0.143-0.675-0.285-1.013-0.429c0.01,0.61,0.328,0.851,0.506,1.285c0.239,0.585,0.303,1.388,0.195,2.024
c-0.309,0.104-0.248,0.187-0.428,0.389c-0.104-0.078-0.208-0.155-0.312-0.233c-0.026,0.013-0.052,0.025-0.078,0.039
c-0.022,0.248-0.105,0.438-0.272,0.544c-0.014,0.014-0.025,0.026-0.039,0.039c-0.104-0.052-0.207-0.104-0.312-0.155
c-0.254,0.922-3.219,0.759-3.62,0c-0.176,0.117-0.224,0.171-0.428,0.078c-0.064-0.182-0.13-0.363-0.194-0.545
c-0.13,0.078-0.259,0.155-0.39,0.233c-0.129-0.253-0.209-0.252-0.389-0.429c-0.545-1.328,0.638-2.221,0.7-3.229
c-0.013-0.026-0.026-0.053-0.039-0.079c-1.472,0.806-1.66,0.522-2.763-0.311c-0.372-0.281-0.601-0.329-0.818-0.778
c0.131-0.26,0.26-0.519,0.39-0.778c-0.052-0.493-0.104-0.986-0.155-1.479c0.077-0.143,0.155-0.285,0.232-0.429
c0.01-0.72-0.815-2.05-0.934-3.035c0.117-0.558,0.234-1.116,0.35-1.674c0.066-0.338,0.131-0.675,0.195-1.012
c0.779-1.579,2.662-2.53,4.359-3.191C14.848,7.234,15.289,7.129,15.73,7.026z M15.846,7.259c-0.479,0.117-0.959,0.233-1.439,0.351
c-1.889,0.686-3.345,1.614-4.087,3.464c-0.274,0.684-0.707,1.788-0.351,2.725c0.247,0.7,0.493,1.401,0.74,2.102
c0.025-0.013,0.052-0.025,0.078-0.038c0.16-1.139,0.221-1.928-0.117-2.959c0.052,0.039,0.104,0.078,0.156,0.117
c0.234,0.612,0.477,2.005,0.155,2.802c-0.169,0.312-0.338,0.623-0.506,0.935c0.038,0.493,0.077,0.986,0.116,1.479
c-0.063,0.319-0.266,0.536-0.272,0.817c0.169,0.18,0.308,0.354,0.584,0.429c0-0.014,0-0.026,0-0.039
c-0.065-0.168-0.13-0.338-0.194-0.506c0.052,0.026,0.104,0.052,0.155,0.078c0.987,2.605,1.743,0.387,3.659,0.7
c0.039,0.052,0.077,0.104,0.116,0.155c0.093,0.303-0.046,0.63-0.272,0.74c0.121-0.228,0.24-0.435,0.117-0.701
c-0.159,0.079-0.445,0.121-0.545,0.272c-0.334,0.604-0.686,1.132-0.856,1.868c0.207,0.107,0.181,0.286,0.272,0.507
c0.064,0,0.13,0,0.194,0c0.039,0.116,0.077,0.232,0.117,0.35c0.026-0.013,0.052-0.026,0.077-0.039
c0.064-0.091,0.131-0.182,0.195-0.271c0.064,0.012,0.13,0.025,0.194,0.038c0.11,0.154,0.177,0.239,0.233,0.468
c0.025-0.014,0.053-0.026,0.078-0.039c0.064-0.091,0.129-0.183,0.194-0.273c0.065,0.014,0.13,0.026,0.195,0.039
c0.128,0.178,0.216,0.385,0.35,0.584c0.013,0,0.026,0,0.039,0c0.054-0.214,0.141-0.264,0.272-0.389
c0.359-0.01,0.438,0.059,0.623,0.194c0.127-0.13,0.363-0.278,0.622-0.155c0.171,0.087,0.201,0.211,0.312,0.35
c0.014,0,0.026,0,0.039,0c0.037-0.353,0.191-0.442,0.389-0.623c0.053,0.026,0.104,0.053,0.156,0.078
c0.078,0.078,0.156,0.156,0.234,0.234c0.043-0.285,0.141-0.391,0.35-0.506c0.179,0.09,0.215,0.191,0.351,0.311
c0.052-0.13,0.104-0.259,0.155-0.39c0.064,0.027,0.13,0.052,0.195,0.079c0-0.336,0.094-0.441,0.232-0.624
c-0.383-0.606-0.472-1.383-0.934-1.907c-0.156-0.052-0.312-0.104-0.467-0.155c-0.058,0.097-0.07,0.132-0.078,0.312
c0.052,0.13,0.104,0.259,0.156,0.39c-0.053-0.039-0.104-0.078-0.156-0.117c-0.076-0.241-0.121-0.436-0.078-0.739
c0.026-0.013,0.053-0.026,0.078-0.039c2.105-0.364,2.518,2.077,3.775-0.817c0.013,0,0.025,0,0.039,0
c-0.053,0.194-0.104,0.39-0.156,0.584c0.264-0.068,0.463-0.252,0.584-0.467c-0.09-0.246-0.182-0.493-0.271-0.74
c0.039-0.506,0.077-1.012,0.116-1.518c-0.155-0.272-0.312-0.545-0.468-0.817c-0.307-0.641-0.287-2.568,0.234-2.997
c-0.216,0.671-0.553,2.329,0,2.958c0.013,0,0.025,0,0.039,0c0.271-0.855,0.545-1.713,0.816-2.569
c0.125-0.665-0.139-1.211-0.271-1.635C21.191,8.758,19.036,7.817,15.846,7.259z M19.115,23.217c-0.012-0.22-0.025-0.441-0.038-0.661
c0.155,0.12,0.176,0.455,0.194,0.7C19.22,23.243,19.168,23.23,19.115,23.217z M18.648,23.451c-0.04-0.213,0.058-0.464,0.117-0.7
c0.202,0.197,0.192,0.468,0.156,0.817C18.83,23.529,18.74,23.49,18.648,23.451z M18.221,23.996c-0.215-0.413-0.33-0.767-0.078-1.207
c0.039,0,0.078,0,0.117,0c0.188,0.323,0.133,0.702,0.078,1.13C18.299,23.944,18.26,23.97,18.221,23.996z M17.559,24.268
c-0.064-0.013-0.129-0.026-0.193-0.039c-0.09-0.352-0.138-0.551-0.117-0.973c0.077-0.091,0.155-0.182,0.232-0.273
c0.039,0,0.078,0,0.117,0c0.099,0.25,0.319,0.723,0.156,1.091C17.689,24.187,17.648,24.19,17.559,24.268z M17.014,24.424
c-0.259,0.038-0.519,0.077-0.777,0.116c-0.159-0.325-0.076-0.852,0-1.207c0.09-0.052,0.182-0.104,0.271-0.155
c0.065,0.013,0.13,0.026,0.195,0.039c0.158,0.234,0.532,0.674,0.35,1.09C17.04,24.346,17.027,24.385,17.014,24.424z M15.262,24.462
c-0.038-0.038-0.077-0.077-0.115-0.116c-0.006-0.607,0.183-0.833,0.428-1.168c0.117,0.026,0.233,0.052,0.35,0.078
c0.148,0.266,0.113,0.742,0.156,1.168c0,0.013,0,0.025,0,0.038C15.827,24.581,15.592,24.486,15.262,24.462z M14.718,24.268
c-0.078-0.039-0.155-0.078-0.233-0.117c-0.092-0.446,0.006-0.866,0.155-1.168c0.039,0,0.078,0,0.117,0
c0.309,0.415,0.224,0.705,0.116,1.246C14.821,24.242,14.77,24.255,14.718,24.268z M13.979,23.996
c-0.187-0.348-0.164-0.825-0.039-1.207c0.064,0.014,0.13,0.026,0.194,0.039c0.14,0.506,0.066,0.647-0.077,1.129
C14.03,23.97,14.004,23.983,13.979,23.996z M13.316,23.568c-0.041-0.348-0.02-0.577,0.117-0.817
c0.064,0.194,0.129,0.389,0.193,0.583C13.535,23.459,13.495,23.518,13.316,23.568z M12.966,23.256c0.04-0.233,0.078-0.468,0.117-0.7
c0.097,0.111,0.036,0.39,0.077,0.583c-0.051,0.039-0.104,0.078-0.154,0.117C12.992,23.256,12.979,23.256,12.966,23.256z
M15.652,19.13c0.116,0.013,0.232,0.026,0.35,0.039c0.022,0.173,0.03,0.182,0.117,0.272c0.052-0.104,0.104-0.207,0.155-0.312
c0.274,0.003,0.349,0.058,0.507,0.156c0.156,0.406,0.572,1.405,0.389,1.867c-0.078,0.091-0.156,0.183-0.233,0.273
c-0.065-0.013-0.13-0.026-0.195-0.039c-0.155-0.312-0.312-0.623-0.467-0.934c-0.13,0.024-0.259,0.052-0.39,0.077
c-0.088,0.334-0.245,0.754-0.545,0.896c-0.104-0.078-0.207-0.156-0.311-0.234C15.008,20.423,15.277,19.544,15.652,19.13z
M11.526,16.368c0.39-0.008,0.934-0.061,1.206,0.077c0.428,0.377,0.857,0.753,1.285,1.129c0.519,0.272,1.037,0.545,1.557,0.817
c-0.438-0.023-0.58-0.072-0.779,0.194c-0.609,0.284-0.826,0.696-1.789,0.701c0.012-0.026,0.025-0.052,0.038-0.078
c0.356-0.039,0.7-0.145,0.896-0.351c0-0.013,0-0.025,0-0.038c-0.742,0.023-1.469,0.06-1.947-0.273
c-0.219-0.233-0.44-0.467-0.661-0.7c0,0.013,0,0.025,0,0.038c0.165,0.435,0.413,0.684,0.584,1.052c-0.013,0-0.026,0-0.038,0
c-0.438-0.304-0.732-0.792-0.857-1.401c-0.012-0.233-0.025-0.468-0.038-0.7c-0.067-0.108-0.146-0.043-0.233-0.039
c-0.014-0.013-0.026-0.025-0.039-0.039c0-0.013,0-0.025,0-0.039C10.981,16.6,11.254,16.484,11.526,16.368z M11.487,16.639
c-0.026,0.013-0.052,0.026-0.078,0.039c0.18,1.13,2.168,2.855,3.23,1.557c-0.013-0.025-0.026-0.052-0.039-0.077
c-0.739-0.454-1.479-0.908-2.218-1.362C12.084,16.744,11.785,16.691,11.487,16.639z M19.699,16.368
c0.864-0.021,1.299,0.131,1.83,0.35c0,0.026,0,0.053,0,0.078c-0.092,0-0.182,0-0.273,0c0.021,0.981-0.297,1.805-0.934,2.141
c0.133-0.356,0.406-0.666,0.584-1.052c-0.013-0.013-0.025-0.025-0.039-0.038c-0.922,0.775-0.885,1.011-2.607,0.974
c0.025,0.038,0.052,0.077,0.078,0.116c0.299,0.116,0.596,0.234,0.895,0.351c-0.924,0.022-1.6-0.414-1.984-0.935
c-0.195,0.013-0.39,0.025-0.584,0.039c0.013-0.026,0.025-0.052,0.039-0.078C17.978,18.093,18.779,16.997,19.699,16.368z
M20.712,16.639c-0.325,0.064-0.649,0.131-0.974,0.195c-0.713,0.467-1.427,0.934-2.141,1.4c0.621,0.797,2.33,0.145,2.725-0.389
c0.169-0.39,0.338-0.779,0.506-1.168C20.789,16.666,20.75,16.652,20.712,16.639z M17.326,13.642
c-0.004,0.419-1.005,1.074-1.363,1.323c0.053,0.065,0.104,0.131,0.156,0.195c0.195,0.182,0.389,0.363,0.584,0.545
c-0.285-0.207-0.572-0.415-0.857-0.623c-0.287,0.204-0.725,0.608-1.051,0.623c0.273-0.26,0.545-0.519,0.818-0.779
c-0.247-0.245-0.493-0.492-0.74-0.739c0.014-0.013,0.025-0.026,0.039-0.039c0.272,0.221,0.545,0.442,0.818,0.662
C16.25,14.662,16.986,14.024,17.326,13.642z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AA998D" d="M16.193,31.532c-8.609,0-15.588-6.979-15.588-15.587
S7.584,0.358,16.193,0.358c8.607,0,15.586,6.979,15.586,15.587S24.801,31.532,16.193,31.532z M16.161,1.039
c-8.233,0-14.908,6.675-14.908,14.908s6.675,14.908,14.908,14.908s14.908-6.675,14.908-14.908S24.395,1.039,16.161,1.039z
M16.203,30.374c-7.895,0-14.328-6.543-14.328-14.438c0-7.896,6.258-14.47,14.328-14.47s14.232,6.587,14.232,14.482
C30.436,23.843,24.1,30.374,16.203,30.374z M16.193,1.979c-7.714,0-13.893,6.252-13.893,13.966s6.179,13.967,13.893,13.967
c7.713,0,13.741-6.253,13.741-13.967S23.906,1.979,16.193,1.979z M16.193,26.765c-5.977,0-10.821-4.845-10.821-10.82
s4.845-10.82,10.821-10.82c5.976,0,10.82,4.845,10.82,10.82S22.169,26.765,16.193,26.765z M16.171,5.597
c-5.716,0-10.35,4.633-10.35,10.349s4.634,10.35,10.35,10.35s10.349-4.634,10.349-10.35S21.887,5.597,16.171,5.597z M21.23,5.147
c-0.077,0.243-0.338,0.376-0.58,0.299l-1.189-0.383c-0.242-0.078-0.375-0.339-0.298-0.58l0.331-1.029
c0.077-0.241,0.338-0.374,0.58-0.296l1.189,0.382c0.242,0.077,0.376,0.338,0.298,0.58L21.23,5.147z M19.93,3.502l-0.385,1.198
l1.248,0.401l0.386-1.198L19.93,3.502z M16.918,4.216l1.393,0.159l0.049-0.435l-0.662-0.075c-0.043-0.005-0.189-0.031-0.271-0.162
c-0.063-0.102-0.074-0.175-0.074-0.215l1.472,0.168l-0.085,0.755c-0.05,0.226-0.266,0.38-0.502,0.354l-1.328-0.151
c-0.252-0.028-0.435-0.258-0.405-0.511l0.122-1.072c0.029-0.253,0.258-0.436,0.51-0.407l1.328,0.151
c0.226,0.026,0.398,0.213,0.408,0.438l-1.814-0.207L16.918,4.216z M15.145,4.645l-1.27,0.148c-0.248,0.029-0.474-0.136-0.525-0.376
l1.738-0.202L15.046,3.86l-1.265,0.148c-0.248,0.028-0.474-0.136-0.525-0.375l-0.034-0.297c-0.031-0.262,0.157-0.503,0.421-0.532
l1.234-0.144c0.246-0.03,0.473,0.135,0.525,0.373l0.002-0.001l-1.703,0.2l0.04,0.344l1.267-0.147
c0.247-0.029,0.473,0.135,0.523,0.374l0.035,0.309C15.598,4.375,15.408,4.615,15.145,4.645z M12.625,5.077l-1.149,0.404
c-0.251,0.087-0.524-0.045-0.612-0.295l-0.345-0.983c-0.088-0.25,0.044-0.525,0.294-0.613l1.15-0.401
c0.232-0.083,0.484,0.024,0.59,0.24l0.008,0.023l-1.549,0.542l0.364,1.04l1.551-0.544l0.008,0.023
C12.992,4.75,12.859,4.995,12.625,5.077z M11.276,28.264l0.688-1.718l-0.263-0.105l0.067-0.167l1.053,0.423
c0.367,0.148,0.614,0.348,0.739,0.603c0.124,0.254,0.12,0.546-0.014,0.876c-0.132,0.333-0.332,0.548-0.599,0.647
c-0.266,0.097-0.583,0.072-0.951-0.075l-1.052-0.422l0.066-0.167L11.276,28.264z M11.996,28.553
c0.214,0.085,0.398,0.081,0.553-0.016c0.155-0.098,0.293-0.296,0.413-0.596c0.117-0.298,0.156-0.535,0.112-0.711
c-0.045-0.177-0.175-0.309-0.388-0.395l-0.191-0.076l-0.69,1.718L11.996,28.553z M13.955,27.069l1.133,0.083l-0.013,0.178
l-0.281-0.02l-0.079,1.102c-0.021,0.275,0.009,0.47,0.086,0.586c0.077,0.116,0.22,0.182,0.428,0.196
c0.202,0.016,0.351-0.029,0.443-0.135c0.094-0.104,0.15-0.292,0.17-0.565l0.079-1.104l-0.28-0.019l0.012-0.18l0.77,0.055
l-0.014,0.18l-0.282-0.021l-0.081,1.133c-0.025,0.337-0.115,0.572-0.271,0.704c-0.156,0.133-0.405,0.188-0.749,0.163
c-0.342-0.025-0.582-0.115-0.717-0.271c-0.135-0.155-0.191-0.401-0.167-0.737l0.081-1.131l-0.279-0.02L13.955,27.069z
M18.061,28.561c-0.061-0.042-0.178-0.072-0.352-0.092l-0.339-0.037c-0.223-0.027-0.382-0.082-0.481-0.168
c-0.102-0.086-0.164-0.219-0.188-0.398c-0.026-0.219,0.021-0.396,0.148-0.537c0.129-0.14,0.324-0.226,0.584-0.262
c0.128-0.017,0.263-0.024,0.403-0.021c0.143,0.002,0.29,0.017,0.443,0.04l0.066,0.484l-0.188,0.025
c-0.048-0.148-0.126-0.25-0.231-0.307c-0.104-0.057-0.244-0.074-0.421-0.051c-0.146,0.02-0.252,0.059-0.318,0.12
c-0.067,0.061-0.094,0.14-0.082,0.24c0.013,0.091,0.047,0.157,0.104,0.197c0.058,0.041,0.189,0.073,0.394,0.099l0.339,0.037
c0.211,0.023,0.369,0.084,0.475,0.179c0.106,0.096,0.172,0.237,0.197,0.426c0.028,0.222-0.026,0.399-0.163,0.534
c-0.138,0.136-0.355,0.223-0.649,0.262c-0.145,0.02-0.288,0.027-0.432,0.02c-0.144-0.005-0.292-0.024-0.445-0.055l-0.068-0.519
l0.187-0.024c0.051,0.16,0.135,0.273,0.249,0.34c0.117,0.069,0.269,0.089,0.454,0.064c0.154-0.02,0.265-0.064,0.336-0.132
c0.072-0.068,0.101-0.159,0.085-0.271C18.156,28.667,18.122,28.602,18.061,28.561z M20.858,26.756l-0.187,0.069l-0.118-0.329
l-0.574,0.208l0.621,1.718l0.276-0.1l0.061,0.168l-1.091,0.395l-0.061-0.169l0.275-0.099l-0.621-1.721l-0.569,0.207l0.118,0.329
L18.8,27.5l-0.189-0.519l2.061-0.745L20.858,26.756z"/>
<path fill="#5B4D35" d="M16.12,30.957c-8.248,0-14.958-6.71-14.958-14.958S7.872,1.041,16.12,1.041s14.958,6.71,14.958,14.958
S24.368,30.957,16.12,30.957z M16.12,1.14c-8.192,0-14.858,6.666-14.858,14.858S7.928,30.857,16.12,30.857
s14.858-6.666,14.858-14.858S24.313,1.14,16.12,1.14z M16.162,30.475c-3.824,0-7.434-1.518-10.16-4.272
c-2.72-2.749-4.217-6.377-4.217-10.215c0-3.86,1.474-7.494,4.151-10.231c2.706-2.766,6.337-4.288,10.226-4.288
c3.883,0,7.497,1.525,10.179,4.296c2.646,2.733,4.104,6.369,4.104,10.236C30.444,23.982,24.037,30.475,16.162,30.475z M16.162,1.568
c-7.873,0-14.277,6.469-14.277,14.42c0,7.934,6.404,14.388,14.277,14.388c7.82,0,14.183-6.448,14.183-14.375
C30.345,7.908,24.115,1.568,16.162,1.568z M16.152,30.013c-3.74,0-7.246-1.458-9.875-4.105c-2.623-2.643-4.066-6.162-4.066-9.911
s1.443-7.269,4.066-9.911c2.629-2.646,6.135-4.104,9.875-4.104c3.73,0,7.21,1.458,9.799,4.105c2.574,2.633,3.992,6.152,3.992,9.91
s-1.418,7.278-3.992,9.911C23.362,28.555,19.883,30.013,16.152,30.013z M16.152,2.081c-7.633,0-13.842,6.243-13.842,13.916
c0,7.674,6.209,13.917,13.842,13.917c7.678,0,13.691-6.113,13.691-13.917S23.83,2.081,16.152,2.081z M16.152,26.667
c-5.885,0-10.67-4.786-10.67-10.67s4.785-10.67,10.67-10.67c5.883,0,10.669,4.786,10.669,10.67S22.035,26.667,16.152,26.667z
M16.152,5.458c-5.812,0-10.539,4.729-10.539,10.539s4.728,10.539,10.539,10.539c5.811,0,10.538-4.729,10.538-10.539
S21.963,5.458,16.152,5.458z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#998C67" cx="16.102" cy="15.996" r="15.387"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5E3C2A" d="M24.516,22.446c-1.043,0.243-1.286,0.208-1.877,0.486
c-0.591,0.278-0.765,0.226-1.042-0.139c-0.278-0.365-0.227-0.539-0.07-1.043s0.14-0.539,0.104-0.765
c-0.034-0.226-0.069-0.348,0.174-0.66c0.243-0.313,0.504-0.521,0.486-0.973c-0.017-0.452,0.174-0.626-0.243-0.904
s-0.504,0.208-0.66-0.521c-0.156-0.729-3.875-5.561-4.345-6.743c-0.469-1.182-0.972-2.672-0.799-3.649
c0.101-0.574,0.729-1.147,0.66-1.529s-0.869-0.956-0.729-1.147c0.139-0.191,9.939-1.182,11.261,6.708
C28.756,19.457,25.559,22.202,24.516,22.446z M14.854,26.13c0.087,0.678-4.709,1.147-7.021,0.278
c-2.312-0.869-2.276-2.224-3.268-5.491c-0.99-3.267,1.061-6.273,1.738-6.569s1.13,0.243,2.085,0.417
c0.956,0.174,0.748-0.243,1.529-0.348c0.782-0.104,0.817,0.208,1.772,0.73c0.956,0.521,1.355,1.286,1.564,1.564
c0.209,0.278,0.782,0.938,1.217,1.355c0.434,0.417,0.399,0.625,0.625,1.321c0.227,0.695-0.104,0.73-0.277,1.599
c-0.174,0.869,0.243,0.678,0.451,1.39c0.209,0.713-0.174,1.373-0.417,2.329C14.61,25.661,14.767,25.452,14.854,26.13z"/>
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#281F15" d="M7.115,12.451c0.201-0.128,0.294-0.349,0.294-0.477
s0.036-0.128,0.11-0.037c0.073,0.092,0.128,0.128,0.293,0.037s0.349-0.386,0.404-0.514c0.055-0.129-0.147-0.294-0.221-0.404
c-0.073-0.11-0.258-0.055-0.331-0.147c-0.072-0.092,0.073-0.331,0-0.441c-0.072-0.11-0.22-0.202-0.366-0.367
c-0.147-0.166-0.238,0.055-0.368,0c-0.128-0.055-0.164-0.404-0.513-0.441c-0.349-0.037-0.275,0.606-0.331,0.771
c-0.055,0.166,0,0.074,0.146,0.331c0.147,0.257,0.294,0.257,0.404,0.477c0.11,0.221-0.056,0.367-0.184,0.698
s0.018,0.293,0.147,0.477C6.729,12.598,6.913,12.58,7.115,12.451z M19.12,7.458c0.11-0.238,0.146-0.11,0.366-0.22
c0.221-0.11,0-0.184,0-0.331c0-0.146,0.184-0.202,0.073-0.514c-0.109-0.312-0.312,0.128-0.587-0.037
c-0.275-0.166-0.165-0.239-0.221-0.551c-0.055-0.312-0.349-0.238-0.697-0.331c-0.349-0.092-0.55,0.019-0.771,0.184
s-0.073,0.11,0,0.331s-0.147,0.128-0.184,0.331c-0.037,0.202,0,0.092,0.33,0.33c0.33,0.239,0.698,0.257,1.065,0.918
C18.862,8.229,19.01,7.697,19.12,7.458z M24.736,9.037c0.019-0.22,0.093-0.293,0-0.514c-0.091-0.221-0.146-0.459-0.366-0.661
c-0.221-0.202-1.34-0.808-1.249-0.33c0.092,0.477,0.11,0.715,0.11,1.028c0,0.312,0.018,0.184,0.221,0.514
c0.201,0.331-0.037,0.551,0.439,0.478c0.479-0.074,0.35,0.165,0.551-0.11C24.646,9.166,24.719,9.258,24.736,9.037z M26.462,15.278
c-0.128-0.275-0.221-0.257-0.44-0.22c-0.22,0.037-0.165,0.055-0.367,0.661c-0.201,0.605-0.037,0.275-0.184,0.624
c-0.147,0.349,0,0.129,0.073,0.22c0.073,0.092,0.019,0.055,0,0.22c-0.018,0.166-0.11,0.129-0.073,0.367
c0.036,0.239,0.073,0.055,0.331-0.11c0.257-0.165,0.055-0.037,0.477-0.293s0.11-0.019,0.331-0.881
C26.829,15.003,26.591,15.554,26.462,15.278z M21.665,21.569c-0.238-0.037-0.495-0.203-0.294,0.183
c0.202,0.385,0.238,0.477,0.404,0.625c0.165,0.146,0.275-0.019,0.183-0.367C21.867,21.66,21.903,21.605,21.665,21.569z
M24.59,17.701c-0.11,0.202-0.367,0.349-0.11,0.478c0.257,0.128,0.33,0.128,0.515,0.037c0.184-0.092,0.293-0.055,0.257-0.331
C25.214,17.609,24.699,17.499,24.59,17.701z M9.354,20.271c-0.22-0.239-0.146-0.202-0.44-0.551s-0.386-0.624-0.551-0.991
c-0.166-0.367-0.184-0.11-0.221-0.587c-0.036-0.477-0.165-0.587-0.33-0.514c-0.165,0.073-0.386,0.055-0.478,0.367
c-0.092,0.312,0,0.459-0.22,0.551c-0.221,0.092-0.258-0.055-0.331,0.367c-0.072,0.422,0,0.422,0.221,0.661
c0.221,0.239,0.202,0.569,0.404,0.734c0.201,0.165,0.733,0.073,0.954,0.11c0.22,0.037,0.386,0.239,0.587,0.221
C9.152,20.62,9.574,20.51,9.354,20.271z M13.393,25.337c-0.165-0.257-0.349-0.221-0.588-0.184
c-0.238,0.037-0.22,0.275-0.293,0.697c-0.073,0.422,0.496,0.184,0.734,0.184s0.11-0.037,0.33-0.293
C13.796,25.484,13.558,25.594,13.393,25.337z M9.024,24.016c-0.459,0.22,0.459,0.587,0.66,0.587c0.202,0,0.037-0.018,0.147-0.183
c0.11-0.166,0.11-0.184-0.074-0.587C9.574,23.428,9.483,23.795,9.024,24.016z M20.185,8.009c-0.367-0.496-0.331-0.092-0.515,0.11
c-0.184,0.202-0.275,0.22-0.514,0.22s-0.238-0.074-0.404,0.11c-0.165,0.183,0.037,0.128,0.294,0.44
c0.258,0.312,0.734,0.202,0.845,0.257s0.184,0.055,0.403,0.11c0.221,0.055,0.203,0.037,0.441,0
c0.238-0.037,0.018-0.11-0.037-0.294S20.552,8.505,20.185,8.009z"/>
</g>
</g>
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AA998D" d="M18.445,6.784c-0.124-0.143-0.159-0.32-0.249-0.391
c-0.089-0.071-0.355,0.017-0.461,0.142c-0.106,0.124-0.035,0.124-0.214,0.319c-0.177,0.195-0.496,0.018-0.496,0.106
c0,0,0.319,0.125,0.425,0.178c0.107,0.054,0.107,0.054,0.144,0.143c0.035,0.088-0.036,0.159-0.036,0.249
c0,0.087,0.071,0.176,0.071,0.176s0.071,0.036,0.143,0.142c0.069,0.107,0.052,0.107,0.069,0.214
c0.019,0.106-0.035,0.124,0.107,0.212c0.141,0.089,0.159,0.036,0.354,0.107c0.195,0.071,0.284-0.195,0.391-0.426
c0.105-0.23,0.178-0.71,0.178-0.71l-0.035-0.143C18.836,7.102,18.571,6.925,18.445,6.784z M20.596,7.991
c-0.088-0.142-0.158,0-0.142,0.178c0.019,0.177-0.141,0.354-0.354,0.426c-0.214,0.071-0.229-0.196-0.391-0.356
c-0.16-0.159-0.124-0.053-0.177,0.072c-0.054,0.125-0.108,0.159-0.143,0.355c-0.035,0.194,0.958,0.728,1.137,0.674
c0.177-0.053,0.213-0.23,0.39-0.461c0.177-0.231,0.07-0.231,0.034-0.391C20.916,8.329,20.685,8.133,20.596,7.991z M23.697,8.026
c-0.158,0.018-0.408,0.248-0.566,0.461c-0.159,0.213-0.196,0.32-0.319,0.426c-0.125,0.107-0.195,0.071-0.214,0.355
c-0.019,0.284,0,0.515,0.036,0.639c0.035,0.124,0.142,0.302,0.248,0.142c0.105-0.159,0.212-0.213,0.212-0.213
s0.108-0.07,0.179-0.035c0.071,0.035,0.122,0.106,0.247,0.106c0.124,0,0.249,0.142,0.249-0.106c0-0.249-0.018-0.568,0.071-0.853
c0.09-0.283,0.266-0.443,0.178-0.674C23.93,8.043,23.857,8.007,23.697,8.026z M7.513,11.469c0-0.107,0-0.143,0.07-0.249
c0.072-0.107,0.019-0.178-0.07-0.213c-0.088-0.035-0.105-0.035-0.247-0.035c-0.143,0-0.161-0.036-0.284-0.143
c-0.124-0.107-0.124-0.195-0.354-0.461C6.396,10.102,6.2,10.759,6.2,10.9s0.337,0.267,0.462,0.355
c0.123,0.089,0.106,0.16,0.106,0.284c0,0.124-0.302,0.55-0.355,0.745c-0.054,0.196-0.107,0.178,0,0.32
c0.106,0.142,0.089,0.213,0.215,0.249c0.121,0.036,0.086,0.071,0.282-0.071c0.194-0.143,0.515-0.479,0.673-0.639
c0.161-0.16,0.072-0.319,0.037-0.426C7.583,11.61,7.513,11.575,7.513,11.469z M20.239,24.689
c-0.143-0.195-0.213-0.088-0.285-0.035c-0.069,0.054,0.072,0.089-0.036,0.249c-0.104,0.159,0.036,0.212-0.211,0.355
c-0.25,0.142-0.284,0.159-0.284,0.283c0,0.125-0.019,0.302,0,0.355c0.018,0.054,0.248-0.071,0.319-0.106s0.052-0.053,0.143,0
c0.087,0.054,0.195,0.071,0.247-0.071c0.054-0.142,0.054-0.159,0.107-0.248c0.053-0.088,0.07,0.106,0.213-0.106
c0.143-0.213,0.354-0.125,0.105-0.355C20.31,24.779,20.382,24.885,20.239,24.689z M26.608,17.29
c-0.194-0.498-0.089-0.089-0.318-0.036c-0.232,0.053-0.25,0.301-0.391,0.567c-0.141,0.267-0.515,0.071-0.64,0.32
c-0.124,0.249,0.231,0.284,0.284,0.498c0.053,0.212-0.088,0.231-0.213,0.461c-0.125,0.23-0.035,0.178,0.105,0.284
c0.143,0.107,0.035,0.036,0.143,0.178c0.107,0.142,0.088,0.124,0.391,0.07c0.302-0.053,0.392-0.39,0.746-1.064
C27.07,17.892,26.804,17.786,26.608,17.29z M8.542,19.986c-0.017,0.107,0.072,0.391,0.249,0.284
c0.178-0.106,0.124-0.177,0.32-0.141c0.194,0.035,0.337,0.106,0.532,0.177c0.194,0.071,0.283,0,0.105-0.177
c-0.177-0.178-0.285-0.214-0.391-0.533c-0.105-0.319,0.019-0.302-0.105-0.639c-0.125-0.338-0.249-0.355-0.392-0.497
c-0.142-0.143-0.265-0.125-0.319,0.071c-0.053,0.195-0.088,0.372-0.249,0.567c-0.158,0.195-0.373,0.195-0.249,0.391
c0.126,0.194,0.162,0.301,0.321,0.319C8.525,19.827,8.56,19.879,8.542,19.986z M9.43,23.536c-0.338-0.337-0.088-0.302-0.283-0.532
c-0.195-0.231-0.159-0.036-0.641,0.212c-0.478,0.249,1.102,1.296,1.28,1.349c0.176,0.054,0.105,0,0.211-0.213
c0.107-0.211,0-0.124-0.07-0.354S9.768,23.873,9.43,23.536z M12.942,25.346c-0.318-0.16-0.211-0.053-0.602,0.248
c-0.393,0.302,0.62,0.337,0.922,0.426c0.302,0.089,0.089,0.018,0.071-0.248C13.315,25.506,13.263,25.506,12.942,25.346z
M22.302,21.587c-0.147-0.08-0.108,0.026-0.269-0.026c-0.16-0.054-0.055-0.147-0.241-0.027c-0.188,0.12-0.04,0.133,0,0.24
c0.039,0.107,0.026,0.013,0.081,0.16c0.054,0.147,0.013,0.054-0.055,0.241c-0.066,0.187-0.12,0.027-0.268,0.133
c-0.146,0.107,0.016,0.094,0.135,0.214c0.12,0.12,0.039,0.054,0.429-0.347c0.387-0.4,0.119-0.121,0.319-0.375
C22.635,21.548,22.449,21.667,22.302,21.587z"/>
</g>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#232323" d="M16.102,0.609c-8.498,0-15.387,6.889-15.387,15.387
s6.889,15.387,15.387,15.387s15.387-6.889,15.387-15.387S24.6,0.609,16.102,0.609z M16.258,26.611
c-5.811,0-10.521-4.711-10.521-10.521S10.447,5.569,16.258,5.569s10.521,4.71,10.521,10.521S22.068,26.611,16.258,26.611z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F4DA6E" d="M18.469,18.948c-0.109,0-0.21-0.018-0.309-0.055l-0.063-0.023
c-0.512-0.193-0.779-0.301-0.779-0.45c0-0.085,0.143-0.208,1.143-0.905c0.283-0.198,0.551-0.385,0.634-0.456
c0.212-0.184,0.425-0.295,0.709-0.371c0.206-0.056,0.741-0.175,0.999-0.175c0.077,0,0.16,0.009,0.193,0.066
c0.067,0.118,0.085,0.22,0.086,0.225l0.002,0.017l-0.005,0.017c-0.042,0.12-0.415,1.18-0.609,1.344
c-0.198,0.168-0.701,0.56-1.108,0.593c-0.129,0.011-0.256,0.046-0.39,0.084C18.811,18.902,18.643,18.948,18.469,18.948z
M13.479,18.932c-0.185,0-0.313-0.012-0.394-0.038c-0.218-0.068-0.88-0.276-1.12-0.614c-0.084-0.118-0.205-0.258-0.322-0.395
c-0.206-0.238-0.4-0.464-0.462-0.628c-0.103-0.272-0.003-0.493,0.001-0.503l0.004-0.006l0.004-0.006
c0.112-0.148,0.348-0.18,0.561-0.197c0.023-0.001,0.052-0.002,0.084-0.002c0.243,0,0.723,0.061,0.983,0.292
c0.271,0.24,0.933,0.718,1.142,0.837c0.031,0.018,0.75,0.423,0.848,0.501c0.09,0.071,0.082,0.117,0.048,0.199
c-0.007,0.018-0.017,0.04-0.026,0.068c-0.056,0.156-0.323,0.456-0.544,0.456l0,0c-0.049,0-0.136,0.006-0.239,0.013
C13.877,18.919,13.668,18.932,13.479,18.932z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D6D6D6" d="M22.645,13.033l-0.467-2.368c-0.711-1.771-3.912-3.572-6.35-3.572
c-0.025,0-0.051,0-0.077,0.001l-1.312,0.308c-1.467,0.571-3.507,1.52-4.315,3.149l-0.192,1.004l-0.349,1.663
c0.06,0.474,0.282,1.026,0.497,1.561c0.227,0.563,0.441,1.093,0.436,1.473v0.017l-0.23,0.425l0.155,1.479l-0.384,0.766
c0.15,0.297,0.301,0.396,0.524,0.545c0.077,0.051,0.163,0.107,0.259,0.18c0.074,0.057,0.145,0.11,0.212,0.161
c0.502,0.384,0.805,0.615,1.192,0.615c0.303,0,0.676-0.136,1.287-0.47l0.061-0.033l0.078,0.156l-0.001,0.018
c-0.024,0.395-0.208,0.761-0.403,1.148c-0.308,0.612-0.626,1.246-0.308,2.039c0.05,0.048,0.091,0.082,0.129,0.112
c0.082,0.067,0.149,0.122,0.229,0.261l0.398-0.239l0.213,0.595c0.049,0.021,0.086,0.03,0.116,0.03c0.051,0,0.091-0.026,0.179-0.085
l0.104-0.07l0.034,0.065c0.18,0.34,1.008,0.597,1.926,0.597c0.856,0,1.473-0.229,1.57-0.583L17.88,23.9l0.341,0.17l0.01-0.011
l0.006-0.003c0.141-0.09,0.221-0.252,0.242-0.495l0.003-0.037l0.149-0.073l0.293,0.22c0.031-0.039,0.053-0.073,0.072-0.104
c0.066-0.106,0.117-0.173,0.307-0.243c0.102-0.645,0.025-1.405-0.197-1.948c-0.056-0.137-0.129-0.258-0.199-0.375
c-0.149-0.248-0.305-0.506-0.312-0.934l-0.001-0.104l1.102,0.466c0.078,0.018,0.162,0.027,0.247,0.027
c0.938,0,2.009-1.058,2.264-1.557c-0.405-0.72-0.368-0.988-0.245-1.849l0.021-0.147c0.022-0.167-0.049-0.263-0.125-0.365
c-0.046-0.063-0.089-0.12-0.107-0.192l-0.005-0.019l0.473-1.575c0.04-0.125,0.096-0.256,0.154-0.394
C22.536,13.973,22.723,13.537,22.645,13.033z M14.771,18.318c-0.047,0.133-0.295,0.413-0.481,0.413
c-0.186-0.001-0.931,0.077-1.179,0c-0.248-0.079-0.863-0.277-1.086-0.59c-0.223-0.313-0.682-0.761-0.775-1.008
c-0.094-0.249,0-0.45,0-0.45c0.094-0.124,0.311-0.155,0.512-0.171c0.202-0.016,0.748,0.033,1.018,0.273
c0.27,0.238,0.938,0.722,1.154,0.845c0.217,0.122,0.76,0.433,0.838,0.495C14.849,18.187,14.818,18.187,14.771,18.318z M20.434,18.03
c-0.188,0.157-0.684,0.546-1.07,0.576c-0.389,0.031-0.762,0.28-1.172,0.125c-0.411-0.155-0.799-0.296-0.799-0.413
c0-0.115,1.521-1.108,1.753-1.31c0.232-0.202,0.45-0.295,0.683-0.357c0.232-0.062,1.055-0.247,1.117-0.139
c0.062,0.108,0.077,0.201,0.077,0.201S20.619,17.872,20.434,18.03z"/>
<path opacity="0.7" fill="#282621" d="M16.273,24.827c-0.75,0-1.645-0.175-2.03-0.563c-0.384,0.207-0.639-0.097-0.683-0.438
l-0.323,0.077c-0.319-0.044-0.306-0.245-0.489-0.427c-0.524-1.226,0.303-2.003,0.596-3.117c-0.686,0.346-1.309,0.486-1.98,0.034
c-0.535-0.36-1.332-0.804-1.596-1.414l0.001-0.089l0.397-0.796c-0.089-0.69-0.284-1.298,0.082-1.918
c-0.062-1.017-0.875-1.535-0.932-2.781c-0.043-0.933,0.357-1.986,0.534-2.903c0.964-1.975,3.782-3.525,5.966-3.666
c2.578,0,5.85,1.864,6.604,3.764c0.156,0.786,0.476,1.737,0.551,2.535c0.152,0.979-0.676,2.253-0.964,3.216
c0.046-0.072,0.235,0.537,0.227,0.599c-0.104,0.72-0.157,1.26,0.234,1.903l0.004,0.092c-0.329,0.71-1.098,1.331-1.808,1.626
c-0.674,0.279-1.15,0.086-1.771-0.176c0.142,0.515,0.501,0.91,0.614,1.451c0.113,0.533,0.125,1.094,0.029,1.631
c-0.201,0.107-0.414,0.283-0.527,0.498l-0.135,0.014l-0.189-0.142c-0.059,0.201-0.183,0.361-0.353,0.479l-0.138,0.047l-0.196-0.098
C17.744,24.624,17.125,24.827,16.273,24.827z M14.378,23.949c0.394,0.744,3.178,0.95,3.435,0.021l0.033-0.117l0.363,0.182
c0.154-0.133,0.23-0.33,0.229-0.531l0.185-0.09l0.282,0.212c0.107-0.151,0.169-0.253,0.355-0.325
c0.104-0.683,0.047-1.489-0.291-2.104c-0.23-0.423-0.443-0.78-0.422-1.283c0.418,0.177,0.92,0.512,1.383,0.512
c0.85,0,1.896-0.812,2.248-1.568c-0.416-0.647-0.352-1.224-0.242-1.957c0.034-0.239-0.176-0.336-0.23-0.544
c0.259-0.964,1.041-2.365,0.893-3.318c-0.061-0.786-0.314-1.596-0.467-2.37c-0.695-1.745-3.886-3.541-6.314-3.541
c-2.108,0.456-4.66,1.38-5.68,3.448c-0.168,0.89-0.352,1.775-0.537,2.662c0.137,1.032,0.949,1.968,0.937,3.016
c-0.078,0.16-0.16,0.319-0.245,0.476c0.062,0.474,0.117,0.946,0.167,1.421c-0.131,0.279-0.259,0.56-0.399,0.834
c0.325,0.479,1.225,1.076,1.743,1.321c0.603,0.284,1.274-0.124,1.791-0.415c0.04,0.071,0.071,0.146,0.096,0.223
c-0.069,1.144-1.206,1.97-0.708,3.186c0.13,0.079,0.256,0.198,0.334,0.328l0.406-0.243l0.234,0.66
c0.004-0.031,0.266-0.116,0.332-0.164L14.378,23.949z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#282828" d="M15.73,7.026c2.572-0.043,5.795,1.852,6.499,3.62
c0.155,0.791,0.312,1.583,0.468,2.374c0.109,0.708-0.277,1.28-0.429,1.751c-0.155,0.52-0.312,1.038-0.467,1.558
c0.044,0.166,0.275,0.284,0.233,0.583c-0.139,0.987-0.202,1.222,0.233,1.985c-0.263,0.566-1.573,1.836-2.607,1.596
c-0.337-0.143-0.675-0.285-1.013-0.429c0.01,0.61,0.328,0.851,0.506,1.285c0.239,0.585,0.303,1.388,0.195,2.024
c-0.309,0.104-0.248,0.187-0.428,0.389c-0.104-0.078-0.208-0.155-0.312-0.233c-0.026,0.013-0.052,0.025-0.078,0.039
c-0.022,0.248-0.105,0.438-0.272,0.544c-0.014,0.014-0.025,0.026-0.039,0.039c-0.104-0.052-0.207-0.104-0.312-0.155
c-0.254,0.922-3.219,0.759-3.62,0c-0.176,0.117-0.224,0.171-0.428,0.078c-0.064-0.182-0.13-0.363-0.194-0.545
c-0.13,0.078-0.259,0.155-0.39,0.233c-0.129-0.253-0.209-0.252-0.389-0.429c-0.545-1.328,0.638-2.221,0.7-3.229
c-0.013-0.026-0.026-0.053-0.039-0.079c-1.472,0.806-1.66,0.522-2.763-0.311c-0.372-0.281-0.601-0.329-0.818-0.778
c0.131-0.26,0.26-0.519,0.39-0.778c-0.052-0.493-0.104-0.986-0.155-1.479c0.077-0.143,0.155-0.285,0.232-0.429
c0.01-0.72-0.815-2.05-0.934-3.035c0.117-0.558,0.234-1.116,0.35-1.674c0.066-0.338,0.131-0.675,0.195-1.012
c0.779-1.579,2.662-2.53,4.359-3.191C14.848,7.234,15.289,7.129,15.73,7.026z M15.846,7.259c-0.479,0.117-0.959,0.233-1.439,0.351
c-1.889,0.686-3.345,1.614-4.087,3.464c-0.274,0.684-0.707,1.788-0.351,2.725c0.247,0.7,0.493,1.401,0.74,2.102
c0.025-0.013,0.052-0.025,0.078-0.038c0.16-1.139,0.221-1.928-0.117-2.959c0.052,0.039,0.104,0.078,0.156,0.117
c0.234,0.612,0.477,2.005,0.155,2.802c-0.169,0.312-0.338,0.623-0.506,0.935c0.038,0.493,0.077,0.986,0.116,1.479
c-0.063,0.319-0.266,0.536-0.272,0.817c0.169,0.18,0.308,0.354,0.584,0.429c0-0.014,0-0.026,0-0.039
c-0.065-0.168-0.13-0.338-0.194-0.506c0.052,0.026,0.104,0.052,0.155,0.078c0.987,2.605,1.743,0.387,3.659,0.7
c0.039,0.052,0.077,0.104,0.116,0.155c0.093,0.303-0.046,0.63-0.272,0.74c0.121-0.228,0.24-0.435,0.117-0.701
c-0.159,0.079-0.445,0.121-0.545,0.272c-0.334,0.604-0.686,1.132-0.856,1.868c0.207,0.107,0.181,0.286,0.272,0.507
c0.064,0,0.13,0,0.194,0c0.039,0.116,0.077,0.232,0.117,0.35c0.026-0.013,0.052-0.026,0.077-0.039
c0.064-0.091,0.131-0.182,0.195-0.271c0.064,0.012,0.13,0.025,0.194,0.038c0.11,0.154,0.177,0.239,0.233,0.468
c0.025-0.014,0.053-0.026,0.078-0.039c0.064-0.091,0.129-0.183,0.194-0.273c0.065,0.014,0.13,0.026,0.195,0.039
c0.128,0.178,0.216,0.385,0.35,0.584c0.013,0,0.026,0,0.039,0c0.054-0.214,0.141-0.264,0.272-0.389
c0.359-0.01,0.438,0.059,0.623,0.194c0.127-0.13,0.363-0.278,0.622-0.155c0.171,0.087,0.201,0.211,0.312,0.35
c0.014,0,0.026,0,0.039,0c0.037-0.353,0.191-0.442,0.389-0.623c0.053,0.026,0.104,0.053,0.156,0.078
c0.078,0.078,0.156,0.156,0.234,0.234c0.043-0.285,0.141-0.391,0.35-0.506c0.179,0.09,0.215,0.191,0.351,0.311
c0.052-0.13,0.104-0.259,0.155-0.39c0.064,0.027,0.13,0.052,0.195,0.079c0-0.336,0.094-0.441,0.232-0.624
c-0.383-0.606-0.472-1.383-0.934-1.907c-0.156-0.052-0.312-0.104-0.467-0.155c-0.058,0.097-0.07,0.132-0.078,0.312
c0.052,0.13,0.104,0.259,0.156,0.39c-0.053-0.039-0.104-0.078-0.156-0.117c-0.076-0.241-0.121-0.436-0.078-0.739
c0.026-0.013,0.053-0.026,0.078-0.039c2.105-0.364,2.518,2.077,3.775-0.817c0.013,0,0.025,0,0.039,0
c-0.053,0.194-0.104,0.39-0.156,0.584c0.264-0.068,0.463-0.252,0.584-0.467c-0.09-0.246-0.182-0.493-0.271-0.74
c0.039-0.506,0.077-1.012,0.116-1.518c-0.155-0.272-0.312-0.545-0.468-0.817c-0.307-0.641-0.287-2.568,0.234-2.997
c-0.216,0.671-0.553,2.329,0,2.958c0.013,0,0.025,0,0.039,0c0.271-0.855,0.545-1.713,0.816-2.569
c0.125-0.665-0.139-1.211-0.271-1.635C21.191,8.758,19.036,7.817,15.846,7.259z M19.115,23.217c-0.012-0.22-0.025-0.441-0.038-0.661
c0.155,0.12,0.176,0.455,0.194,0.7C19.22,23.243,19.168,23.23,19.115,23.217z M18.648,23.451c-0.04-0.213,0.058-0.464,0.117-0.7
c0.202,0.197,0.192,0.468,0.156,0.817C18.83,23.529,18.74,23.49,18.648,23.451z M18.221,23.996c-0.215-0.413-0.33-0.767-0.078-1.207
c0.039,0,0.078,0,0.117,0c0.188,0.323,0.133,0.702,0.078,1.13C18.299,23.944,18.26,23.97,18.221,23.996z M17.559,24.268
c-0.064-0.013-0.129-0.026-0.193-0.039c-0.09-0.352-0.138-0.551-0.117-0.973c0.077-0.091,0.155-0.182,0.232-0.273
c0.039,0,0.078,0,0.117,0c0.099,0.25,0.319,0.723,0.156,1.091C17.689,24.187,17.648,24.19,17.559,24.268z M17.014,24.424
c-0.259,0.038-0.519,0.077-0.777,0.116c-0.159-0.325-0.076-0.852,0-1.207c0.09-0.052,0.182-0.104,0.271-0.155
c0.065,0.013,0.13,0.026,0.195,0.039c0.158,0.234,0.532,0.674,0.35,1.09C17.04,24.346,17.027,24.385,17.014,24.424z M15.262,24.462
c-0.038-0.038-0.077-0.077-0.115-0.116c-0.006-0.607,0.183-0.833,0.428-1.168c0.117,0.026,0.233,0.052,0.35,0.078
c0.148,0.266,0.113,0.742,0.156,1.168c0,0.013,0,0.025,0,0.038C15.827,24.581,15.592,24.486,15.262,24.462z M14.718,24.268
c-0.078-0.039-0.155-0.078-0.233-0.117c-0.092-0.446,0.006-0.866,0.155-1.168c0.039,0,0.078,0,0.117,0
c0.309,0.415,0.224,0.705,0.116,1.246C14.821,24.242,14.77,24.255,14.718,24.268z M13.979,23.996
c-0.187-0.348-0.164-0.825-0.039-1.207c0.064,0.014,0.13,0.026,0.194,0.039c0.14,0.506,0.066,0.647-0.077,1.129
C14.03,23.97,14.004,23.983,13.979,23.996z M13.316,23.568c-0.041-0.348-0.02-0.577,0.117-0.817
c0.064,0.194,0.129,0.389,0.193,0.583C13.535,23.459,13.495,23.518,13.316,23.568z M12.966,23.256c0.04-0.233,0.078-0.468,0.117-0.7
c0.097,0.111,0.036,0.39,0.077,0.583c-0.051,0.039-0.104,0.078-0.154,0.117C12.992,23.256,12.979,23.256,12.966,23.256z
M15.652,19.13c0.116,0.013,0.232,0.026,0.35,0.039c0.022,0.173,0.03,0.182,0.117,0.272c0.052-0.104,0.104-0.207,0.155-0.312
c0.274,0.003,0.349,0.058,0.507,0.156c0.156,0.406,0.572,1.405,0.389,1.867c-0.078,0.091-0.156,0.183-0.233,0.273
c-0.065-0.013-0.13-0.026-0.195-0.039c-0.155-0.312-0.312-0.623-0.467-0.934c-0.13,0.024-0.259,0.052-0.39,0.077
c-0.088,0.334-0.245,0.754-0.545,0.896c-0.104-0.078-0.207-0.156-0.311-0.234C15.008,20.423,15.277,19.544,15.652,19.13z
M11.526,16.368c0.39-0.008,0.934-0.061,1.206,0.077c0.428,0.377,0.857,0.753,1.285,1.129c0.519,0.272,1.037,0.545,1.557,0.817
c-0.438-0.023-0.58-0.072-0.779,0.194c-0.609,0.284-0.826,0.696-1.789,0.701c0.012-0.026,0.025-0.052,0.038-0.078
c0.356-0.039,0.7-0.145,0.896-0.351c0-0.013,0-0.025,0-0.038c-0.742,0.023-1.469,0.06-1.947-0.273
c-0.219-0.233-0.44-0.467-0.661-0.7c0,0.013,0,0.025,0,0.038c0.165,0.435,0.413,0.684,0.584,1.052c-0.013,0-0.026,0-0.038,0
c-0.438-0.304-0.732-0.792-0.857-1.401c-0.012-0.233-0.025-0.468-0.038-0.7c-0.067-0.108-0.146-0.043-0.233-0.039
c-0.014-0.013-0.026-0.025-0.039-0.039c0-0.013,0-0.025,0-0.039C10.981,16.6,11.254,16.484,11.526,16.368z M11.487,16.639
c-0.026,0.013-0.052,0.026-0.078,0.039c0.18,1.13,2.168,2.855,3.23,1.557c-0.013-0.025-0.026-0.052-0.039-0.077
c-0.739-0.454-1.479-0.908-2.218-1.362C12.084,16.744,11.785,16.691,11.487,16.639z M19.699,16.368
c0.864-0.021,1.299,0.131,1.83,0.35c0,0.026,0,0.053,0,0.078c-0.092,0-0.182,0-0.273,0c0.021,0.981-0.297,1.805-0.934,2.141
c0.133-0.356,0.406-0.666,0.584-1.052c-0.013-0.013-0.025-0.025-0.039-0.038c-0.922,0.775-0.885,1.011-2.607,0.974
c0.025,0.038,0.052,0.077,0.078,0.116c0.299,0.116,0.596,0.234,0.895,0.351c-0.924,0.022-1.6-0.414-1.984-0.935
c-0.195,0.013-0.39,0.025-0.584,0.039c0.013-0.026,0.025-0.052,0.039-0.078C17.978,18.093,18.779,16.997,19.699,16.368z
M20.712,16.639c-0.325,0.064-0.649,0.131-0.974,0.195c-0.713,0.467-1.427,0.934-2.141,1.4c0.621,0.797,2.33,0.145,2.725-0.389
c0.169-0.39,0.338-0.779,0.506-1.168C20.789,16.666,20.75,16.652,20.712,16.639z M17.326,13.642
c-0.004,0.419-1.005,1.074-1.363,1.323c0.053,0.065,0.104,0.131,0.156,0.195c0.195,0.182,0.389,0.363,0.584,0.545
c-0.285-0.207-0.572-0.415-0.857-0.623c-0.287,0.204-0.725,0.608-1.051,0.623c0.273-0.26,0.545-0.519,0.818-0.779
c-0.247-0.245-0.493-0.492-0.74-0.739c0.014-0.013,0.025-0.026,0.039-0.039c0.272,0.221,0.545,0.442,0.818,0.662
C16.25,14.662,16.986,14.024,17.326,13.642z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AA998D" d="M16.193,31.532c-8.609,0-15.588-6.979-15.588-15.587
S7.584,0.358,16.193,0.358c8.607,0,15.586,6.979,15.586,15.587S24.801,31.532,16.193,31.532z M16.161,1.039
c-8.233,0-14.908,6.675-14.908,14.908s6.675,14.908,14.908,14.908s14.908-6.675,14.908-14.908S24.395,1.039,16.161,1.039z
M16.203,30.374c-7.895,0-14.328-6.543-14.328-14.438c0-7.896,6.258-14.47,14.328-14.47s14.232,6.587,14.232,14.482
C30.436,23.843,24.1,30.374,16.203,30.374z M16.193,1.979c-7.714,0-13.893,6.252-13.893,13.966s6.179,13.967,13.893,13.967
c7.713,0,13.741-6.253,13.741-13.967S23.906,1.979,16.193,1.979z M16.193,26.765c-5.977,0-10.821-4.845-10.821-10.82
s4.845-10.82,10.821-10.82c5.976,0,10.82,4.845,10.82,10.82S22.169,26.765,16.193,26.765z M16.171,5.597
c-5.716,0-10.35,4.633-10.35,10.349s4.634,10.35,10.35,10.35s10.349-4.634,10.349-10.35S21.887,5.597,16.171,5.597z M21.23,5.147
c-0.077,0.243-0.338,0.376-0.58,0.299l-1.189-0.383c-0.242-0.078-0.375-0.339-0.298-0.58l0.331-1.029
c0.077-0.241,0.338-0.374,0.58-0.296l1.189,0.382c0.242,0.077,0.376,0.338,0.298,0.58L21.23,5.147z M19.93,3.502l-0.385,1.198
l1.248,0.401l0.386-1.198L19.93,3.502z M16.918,4.216l1.393,0.159l0.049-0.435l-0.662-0.075c-0.043-0.005-0.189-0.031-0.271-0.162
c-0.063-0.102-0.074-0.175-0.074-0.215l1.472,0.168l-0.085,0.755c-0.05,0.226-0.266,0.38-0.502,0.354l-1.328-0.151
c-0.252-0.028-0.435-0.258-0.405-0.511l0.122-1.072c0.029-0.253,0.258-0.436,0.51-0.407l1.328,0.151
c0.226,0.026,0.398,0.213,0.408,0.438l-1.814-0.207L16.918,4.216z M15.145,4.645l-1.27,0.148c-0.248,0.029-0.474-0.136-0.525-0.376
l1.738-0.202L15.046,3.86l-1.265,0.148c-0.248,0.028-0.474-0.136-0.525-0.375l-0.034-0.297c-0.031-0.262,0.157-0.503,0.421-0.532
l1.234-0.144c0.246-0.03,0.473,0.135,0.525,0.373l0.002-0.001l-1.703,0.2l0.04,0.344l1.267-0.147
c0.247-0.029,0.473,0.135,0.523,0.374l0.035,0.309C15.598,4.375,15.408,4.615,15.145,4.645z M12.625,5.077l-1.149,0.404
c-0.251,0.087-0.524-0.045-0.612-0.295l-0.345-0.983c-0.088-0.25,0.044-0.525,0.294-0.613l1.15-0.401
c0.232-0.083,0.484,0.024,0.59,0.24l0.008,0.023l-1.549,0.542l0.364,1.04l1.551-0.544l0.008,0.023
C12.992,4.75,12.859,4.995,12.625,5.077z M11.276,28.264l0.688-1.718l-0.263-0.105l0.067-0.167l1.053,0.423
c0.367,0.148,0.614,0.348,0.739,0.603c0.124,0.254,0.12,0.546-0.014,0.876c-0.132,0.333-0.332,0.548-0.599,0.647
c-0.266,0.097-0.583,0.072-0.951-0.075l-1.052-0.422l0.066-0.167L11.276,28.264z M11.996,28.553
c0.214,0.085,0.398,0.081,0.553-0.016c0.155-0.098,0.293-0.296,0.413-0.596c0.117-0.298,0.156-0.535,0.112-0.711
c-0.045-0.177-0.175-0.309-0.388-0.395l-0.191-0.076l-0.69,1.718L11.996,28.553z M13.955,27.069l1.133,0.083l-0.013,0.178
l-0.281-0.02l-0.079,1.102c-0.021,0.275,0.009,0.47,0.086,0.586c0.077,0.116,0.22,0.182,0.428,0.196
c0.202,0.016,0.351-0.029,0.443-0.135c0.094-0.104,0.15-0.292,0.17-0.565l0.079-1.104l-0.28-0.019l0.012-0.18l0.77,0.055
l-0.014,0.18l-0.282-0.021l-0.081,1.133c-0.025,0.337-0.115,0.572-0.271,0.704c-0.156,0.133-0.405,0.188-0.749,0.163
c-0.342-0.025-0.582-0.115-0.717-0.271c-0.135-0.155-0.191-0.401-0.167-0.737l0.081-1.131l-0.279-0.02L13.955,27.069z
M18.061,28.561c-0.061-0.042-0.178-0.072-0.352-0.092l-0.339-0.037c-0.223-0.027-0.382-0.082-0.481-0.168
c-0.102-0.086-0.164-0.219-0.188-0.398c-0.026-0.219,0.021-0.396,0.148-0.537c0.129-0.14,0.324-0.226,0.584-0.262
c0.128-0.017,0.263-0.024,0.403-0.021c0.143,0.002,0.29,0.017,0.443,0.04l0.066,0.484l-0.188,0.025
c-0.048-0.148-0.126-0.25-0.231-0.307c-0.104-0.057-0.244-0.074-0.421-0.051c-0.146,0.02-0.252,0.059-0.318,0.12
c-0.067,0.061-0.094,0.14-0.082,0.24c0.013,0.091,0.047,0.157,0.104,0.197c0.058,0.041,0.189,0.073,0.394,0.099l0.339,0.037
c0.211,0.023,0.369,0.084,0.475,0.179c0.106,0.096,0.172,0.237,0.197,0.426c0.028,0.222-0.026,0.399-0.163,0.534
c-0.138,0.136-0.355,0.223-0.649,0.262c-0.145,0.02-0.288,0.027-0.432,0.02c-0.144-0.005-0.292-0.024-0.445-0.055l-0.068-0.519
l0.187-0.024c0.051,0.16,0.135,0.273,0.249,0.34c0.117,0.069,0.269,0.089,0.454,0.064c0.154-0.02,0.265-0.064,0.336-0.132
c0.072-0.068,0.101-0.159,0.085-0.271C18.156,28.667,18.122,28.602,18.061,28.561z M20.858,26.756l-0.187,0.069l-0.118-0.329
l-0.574,0.208l0.621,1.718l0.276-0.1l0.061,0.168l-1.091,0.395l-0.061-0.169l0.275-0.099l-0.621-1.721l-0.569,0.207l0.118,0.329
L18.8,27.5l-0.189-0.519l2.061-0.745L20.858,26.756z"/>
<path fill="#5B4D35" d="M16.12,30.957c-8.248,0-14.958-6.71-14.958-14.958S7.872,1.041,16.12,1.041s14.958,6.71,14.958,14.958
S24.368,30.957,16.12,30.957z M16.12,1.14c-8.192,0-14.858,6.666-14.858,14.858S7.928,30.857,16.12,30.857
s14.858-6.666,14.858-14.858S24.313,1.14,16.12,1.14z M16.162,30.475c-3.824,0-7.434-1.518-10.16-4.272
c-2.72-2.749-4.217-6.377-4.217-10.215c0-3.86,1.474-7.494,4.151-10.231c2.706-2.766,6.337-4.288,10.226-4.288
c3.883,0,7.497,1.525,10.179,4.296c2.646,2.733,4.104,6.369,4.104,10.236C30.444,23.982,24.037,30.475,16.162,30.475z M16.162,1.568
c-7.873,0-14.277,6.469-14.277,14.42c0,7.934,6.404,14.388,14.277,14.388c7.82,0,14.183-6.448,14.183-14.375
C30.345,7.908,24.115,1.568,16.162,1.568z M16.152,30.013c-3.74,0-7.246-1.458-9.875-4.105c-2.623-2.643-4.066-6.162-4.066-9.911
s1.443-7.269,4.066-9.911c2.629-2.646,6.135-4.104,9.875-4.104c3.73,0,7.21,1.458,9.799,4.105c2.574,2.633,3.992,6.152,3.992,9.91
s-1.418,7.278-3.992,9.911C23.362,28.555,19.883,30.013,16.152,30.013z M16.152,2.081c-7.633,0-13.842,6.243-13.842,13.916
c0,7.674,6.209,13.917,13.842,13.917c7.678,0,13.691-6.113,13.691-13.917S23.83,2.081,16.152,2.081z M16.152,26.667
c-5.885,0-10.67-4.786-10.67-10.67s4.785-10.67,10.67-10.67c5.883,0,10.669,4.786,10.669,10.67S22.035,26.667,16.152,26.667z
M16.152,5.458c-5.812,0-10.539,4.729-10.539,10.539s4.728,10.539,10.539,10.539c5.811,0,10.538-4.729,10.538-10.539
S21.963,5.458,16.152,5.458z"/>
</svg>

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 28 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 231 KiB

After

Width:  |  Height:  |  Size: 234 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 212 KiB

After

Width:  |  Height:  |  Size: 214 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 212 KiB

After

Width:  |  Height:  |  Size: 214 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 214 KiB

After

Width:  |  Height:  |  Size: 216 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 210 KiB

After

Width:  |  Height:  |  Size: 213 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 211 KiB

After

Width:  |  Height:  |  Size: 213 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 212 KiB

After

Width:  |  Height:  |  Size: 214 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 88 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 212 KiB

After

Width:  |  Height:  |  Size: 214 KiB

View File

@@ -1,179 +1,179 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_22_copy_11">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F3D581" d="M27.927,4.968l-23.46,0c-0.251,0-0.455,0.204-0.455,0.455v12.119
c0.026,0.408,0.525,0.91,0.525,0.91s11.196,11.242,11.334,11.381c0.139,0.138,0.434,0.207,0.647-0.006
c0.212-0.213,11.408-11.374,11.408-11.374s0.454-0.474,0.454-0.91V5.422C28.381,5.171,28.179,4.968,27.927,4.968z"/>
</g>
</g>
<g id="Shape_22_copy_11_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546070" d="M6.66,18.03c0,0,9.406,9.807,9.477,9.885
c0.122,0.135,0.383,0.201,0.57-0.006c0.108-0.12,9.532-9.897,9.532-9.897L6.66,18.03z"/>
</g>
</g>
<g id="Shape_56_copy_11">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#93381F" d="M11.423,9.847v3.431h9.61V9.847H11.423z M20.267,8.927
c0.072,0,0.079-0.02,0.02-0.052c-0.299-0.164-1.205-0.662-1.205-0.662s-0.906,0.498-1.206,0.662
c-0.059,0.032-0.053,0.052,0.021,0.052C18.323,8.927,19.836,8.927,20.267,8.927z"/>
</g>
</g>
<g id="Shape_56_copy_11_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F3D581" d="M15.215,13.29l-1.432-2.209l-1.431,2.209h-0.34v4.315h8.432
V13.29H15.215z M19.613,11.763l0.533-0.43V8.944h-2.09v2.354l0.611,0.457L19.613,11.763z"/>
</g>
</g>
<g id="Shape_56_copy_10">
<g>
<rect x="10.952" y="14.862" fill-rule="evenodd" clip-rule="evenodd" fill="#93381F" width="10.536" height="1.086"/>
</g>
</g>
<g id="Shape_56_copy_12">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#373E48" points="11.423,21.287 11.423,23.042 13.38,25.031
19.444,25.031 21.033,23.412 21.033,21.287 "/>
</g>
</g>
<g id="Shape_56_copy_15">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#6B7480" d="M12.013,18.02v3.324h0.34l1.431,2.302l1.432-2.302h5.229V18.02
H12.013z M18.668,23.017l-0.611,0.457v2.354h0.686l1.404-1.481v-0.908l-0.533-0.43L18.668,23.017z"/>
</g>
</g>
<g id="Shape_56_copy_12_2_">
<g>
<rect x="10.957" y="18.71" fill-rule="evenodd" clip-rule="evenodd" fill="#373E48" width="10.526" height="1.132"/>
</g>
</g>
<g id="Shape_22_copy_12">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#343A38" d="M28.167,3.424L4.672,3.423c-0.581,0-0.818,0.42-0.818,0.692
v12.876c0,0.914,0.541,1.575,0.541,1.575S15.847,30.78,16.016,30.93s0.529,0.225,0.789-0.007
c0.261-0.232,11.713-12.356,11.713-12.356s0.468-0.682,0.468-1.413V4.116C28.985,3.843,28.684,3.424,28.167,3.424z M27.805,17.142
c0,0.43-0.425,0.896-0.425,0.896S16.919,29.023,16.72,29.233s-0.475,0.142-0.604,0.006S5.525,18.038,5.525,18.038
s-0.467-0.495-0.491-0.896V5.213c0-0.247,0.19-0.448,0.425-0.448l21.921,0c0.235,0,0.425,0.201,0.425,0.447V17.142z"/>
</g>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FEC932" d="M28.085,3.326H4.94c-0.862,0-1.377,0.637-1.377,1.252v12.685
c0,1.091,0.635,1.879,0.662,1.913l0.012,0.015l0.013,0.014c3.398,3.624,11.318,12.066,11.486,12.215
c0.202,0.18,0.483,0.283,0.771,0.283c0.283,0,0.555-0.103,0.765-0.29c0.262-0.233,9.688-10.209,11.574-12.207l0.03-0.033
l0.024-0.037c0.059-0.083,0.562-0.843,0.562-1.714V4.578C29.462,3.986,28.897,3.326,28.085,3.326z M28.731,17.428
c0,0.822-0.476,1.539-0.529,1.618l-0.024,0.034l-0.028,0.031c-1.78,1.885-10.674,11.298-10.921,11.518
c-0.197,0.177-0.454,0.274-0.722,0.274c-0.271,0-0.536-0.098-0.728-0.267c-0.157-0.141-7.631-8.107-10.837-11.526l-0.012-0.013
l-0.013-0.014c-0.024-0.031-0.624-0.775-0.624-1.805V5.308c0-0.58,0.486-1.181,1.3-1.181h21.838c0.766,0,1.3,0.623,1.3,1.181V17.428
z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B74A26" d="M16.507,30.563c-0.007,0-0.015-0.002-0.021-0.003
c-0.535-0.55-8.344-8.872-11.386-12.116c-0.055-0.074-0.396-0.559-0.396-1.181V4.583c0.003-0.02,0.033-0.117,0.236-0.117h23.145
c0.16,0,0.223,0.107,0.236,0.136v12.82c0,0.413-0.231,0.866-0.34,1.037c-3.098,3.28-11.06,11.701-11.47,12.103
C16.511,30.562,16.51,30.563,16.507,30.563z M26.809,17.946c0.108-0.12,0.267-0.374,0.267-0.495V5.904H5.784v11.521
c0.016,0.102,0.175,0.353,0.326,0.517c0.098,0.103,9.161,9.688,10.315,10.908C17.558,27.661,26.547,18.221,26.809,17.946z"/>
<g id="Shape_22_copy_12_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#343A38" d="M28.085,3.896H4.94c-0.574,0-0.807,0.413-0.807,0.682v12.685
c0,0.9,0.532,1.551,0.532,1.551s11.283,12.031,11.449,12.18c0.167,0.148,0.521,0.222,0.777-0.007
c0.256-0.228,11.538-12.173,11.538-12.173s0.461-0.671,0.461-1.392V4.578C28.892,4.309,28.594,3.896,28.085,3.896z M27.646,17.451
c0,0.423-0.418,0.882-0.418,0.882S16.921,29.156,16.725,29.362c-0.195,0.207-0.467,0.141-0.594,0.006
C16.003,29.234,5.697,18.333,5.697,18.333s-0.459-0.486-0.483-0.882V5.774c0-0.243,0.188-0.441,0.418-0.441h21.596
c0.23,0,0.418,0.198,0.418,0.441V17.451z"/>
</g>
</g>
<image overflow="visible" width="511" height="193" id="Shape_71_xA0_Image_2_" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAf8AAADBCAYAAADB9rnXAAAACXBIWXMAAAsSAAALEgHS3X78AAAA
GXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAADhNJREFUeNrs3XuMXNV9B/Azr316
AbMGwqMBamPKQ6RBIESKk0Low1ZaioJaQkkbkRBCItQmUdN/qv7R9o9ENFFVNZCkOKmaAK3aUppW
dkhTlcqkJU9Ki0OwQ8CYBHAxfqy93t3Zmenv2hsJEKzn3rmzXq8/H+mnI9kz997ZM9L3nPs4kxIA
AAAAALBEVI7Gg964bnUjmvOjzotaGfXGqJOjlkeN6VYASrQ/ajJqImpn1PaorVGPR31/7YYtTeHf
n7Afj+aKqDVz7WW+iwAsEt+IeihqU9bGYGCn8C8W9qdF87a5sP/5uRk+ABwNsjMCD84NBh6MwcBz
wv/1A/+CaN4Z9etRF/juALBEbI76m6j7YiDwPeF/KPRvi+b9URf6fgCwxD0WdWcMAu445sI/Av/E
aH436oZ06IY9ADiWbJ07G/DJGAjsWfLhH8H/B9HcEnWGvgfgGLct6q4YAPzJkgz/CP0PRpOV6/kA
8ErZ5YA7YhBw55II/wj946LJPswN+hYA5nV31K0xCJg4asM/gv+X54L/LP0JAF15am4A8EC/dlDt
Y/B/NGsEPwDkcnbUVyJHf+eomfnHwWbL7H4m6lr9BwA9+bu5swClrhpYavhH8P9qNJ+LOkV/AUAp
fjQ3APjnRRf+Efy/Hc1fLcRfod1JaUerlV5sp/RSu552teppf6eaDkTN9O9KBgDHoEalnRqdThqM
xByptNIJtdk0XmmmFbVKOqlWS9WFe2j+3TEA+NKiCf8I/myFvs/269NG1qdtM8305OxQeqo9mH7U
GkjNTsU3EoAjPDDopNNrM+ns6nRa1ZhKb2w0+v0Y3c0xALjriId/v4I/C/ynm8302Mxw2twcSftS
zbcMgEXtuNRKFzQmow6kMwf6NhB4XwwA1h+x8I/gvyma9WV+oma7kx5tpvT1qbH0f52GbxIAR6VT
qs30lsGJ9KaBlOqV0ocBvxUDgC8uePhH8F8Tzf1lfYqZCP3/mqmmr08flyY7rtsDsDSMVNppzeDe
dNlAOw2Ue4PAr8QA4F8WLPwj+E+N5tGok3o98uz0/iPTnfS1A8envU7tA7BEZZcEfmF4d/rZwWpZ
lwN+HHVRkccAi06x7ywj+He12unzE8PpvgMnCn4AlrQs5/7hwHj6QuTe7si/EpyWDq2rk1vuxI1Z
/+9Fc1uvR/ztmO3fM7k8vdh2XR+AY8euTj19pzmUxipT6dR6z+cAzr/xnPE9d2/d+XCeN+XaawT/
L0XzlV6OcrbTSffvH0r/PTviGwDAMe2Sgf3pHcPTZdwQeNnaDVu+2e2Luz7tH8E/lg6d7i9sot1O
6/eNCn4ACN+eGU1fmBhN+7PV63rz6TwvznPNPwv+s4seVXZ9/7MTx6ftrUG9DQBztrUH0+cmjuv1
PoBLYpL+iW5f3NV5htjgrdHc0Uvwr993fNrdqetlAHgN45XZdNOyPen4Wk+Pu1+zdsOWL5c18/9g
0aPYm93RL/gBYF47IyezvNzX2yWAD3TzosOG/9zd/RcWOYJstb57J5cdvLMRADj8AOCefaOpVXwT
ayO3Dzth72bm/96iR3D/5JBr/ACQwzPtwfTlyYFeNtFb+Mfo4UPRnFtkz9lz/I+6qx8AcvvOzGj6
7nTh0/8XRH7f0svM/4oie81u8Ns4dYLeA4CCNkSO7i3+BMAVhcI/Rg2XR3N93r1l45T7J0fTtB/n
AYDCpiJH/3Gy8Bn0GyPHLy0y87+2yN4em2mlJ1tDeg0AerS1NZyemG4Wfft1RcL/mrx7ye5O/OoB
p/sBoCxfnV6eCl79/7Vc4b9x3eqV0azOu5fsp3k91gcA5Xmh3Uj/M13o4b/Vkedn55n5X1lkL/85
PaaXAKBkm6aPK/rWNXnCP/dd/tuazbTDz/MCQOmebw+kZ2dni7z1ir6G/7eml+kdAOiTb80UuvO/
u/DfuG71qdGszLPl2U4nPd4a1jMA0CePNYcP5m1O50Wur+hm5r8m75afac6m6U5FzwBAn2Tr5zzd
LOfUf7XbUwTz2TJr1g8A/faDYnnbn/B/yo/3AEDfPTNb6Ad/fm7e8N+4bnW21Tfn2WL25OHzLXf5
A0C/vdAplLcXHG7mf07eLe5stWIA4Ho/APRbdt1/d/4f+xmLyf2Z84X/yrxb3DXb1hsAsEB2tgrd
9HfufOF/ct6t7U+W8wWAhbK32DL6p88X/ityh79H/ABgwUx2qkXeNj5f+Oe+jdD1fgBYOO1iuduY
L/xzrx3YbFf1BAAcRSQ3AAh/AED4AwDCHwAQ/gCA8AcAhD8AIPwBAOEPAAh/AED4AwDCHwAQ/gCA
8AcA4Q8ACH8AQPgDAMIfABD+AIDwBwCEPwAg/AEA4Q8ACH8AQPgDAMIfABD+AIDwBwDhDwAIfwBA
+AMAwh8AEP4AgPAHAIQ/ACD8AQDhDwAIfwBA+AMAwh8AEP4AIPwBAOEPAAh/AED4AwDCHwAQ/gCA
8AcAhD8AIPwBAOEPAAh/AED4AwDCHwAQ/gAg/AEA4Q8ACH8AQPgDAMIfABD+AIDwBwCEPwAg/AEA
4Q8ACH8AQPgDAMIfAIQ/ACD8AQDhDwAIfwBA+AMAwh8AEP4AgPAHAIQ/ACD8AQDhDwAIfwBA+AMA
wh8AhD8AIPwBAOEPAAh/AED4AwDCHwAQ/gCA8AcAhD8AIPwBgPLCfyrvBmrVtr8iABzF4T+ddwMN
f0MAWDCV1CnyttZ84f9S3q0NV8z8AWChjFQKhf/O+cJ/R96tLUuzegIAFshYpVDuPj9f+P8w79ZO
qLlnEAAWynitVuRt358v/LfmPohq1SMDALAABiudtLzYpPvp1w3/tRu2TEazOc/WGtVKOqna1CMA
0GcrIm8r+d/23cj3eW/4yzyUd6tn1ab0CAD02RnV6SJve/jV/1BK+J/bOKBHAKDPVjYKTbYf6ib8
N+We+dfrqV7suUMAoAtZzq6qF7rZ7/Dhv3bDlm3RbM+z1YFqJQ7IqX8A6JfV9QMH8zanpyPXt3cz
83/NUcLhXDywT88AQJ9c3CiUs6+Z56WF/8806umEigV/AKBsWb6uHii0oH6u8P+PvFvPzkRcPjih
hwCgZGuGJlK1Uuit3Yf/2g1bsmf9c6/2d+lAJy175W8HAAA9WB6z/ksGC731qbk873rmn/mnvHvJ
bkS4anivngKAklw9tDvVir31/tf7j/nC/1+L7OmSgZTeUJ3RWwDQo9NrM+miwVrRt2/IHf5rN2zZ
GM3jefeUXZO4dmSP9f4BoAe11EnXDO9JxS71p8cjx79WZOaf+etCI5V6Pb1tcI+eA4CCrhrak06L
PC1o3vw+XPj/eSpw41/myqF2Otua/wCQ2zn1qbRmsPDKuU9E3V44/Od+5e+LRfacnf6/fnTSs/8A
kMN45OZ1I5NFH+3LrH/1r/i9Wleb3rhu9feiOa/IEbww20p37T8xHei4CwAA5pM9Ln/z2O40Xiuc
mZsj+C887AS9y43dUfQoTqnX0k2jO9Nwpa1XAWCe4H/Psl29BH/Xed31SYWY/d8bzfVFj+a52dn0
+f3jzgAAwOsE/xvqtV42c0/M+n+zmxfmSeIPR+0oekSn1uvp5tGX3AMAAC+zotpM7xvb3WvwPxt1
W7cv7jr8YzTxfDR/1MuRnRwf7ANje9NZtWm9DcAxb1XtQLpl2URaUev5rPjHI6df6vbFue8l3Lhu
9T3RvKuXI8xuQfy3yXraNDOWOvoegGNMFvVvHdibrhpu9XJX/0/cG8F/Q97953Vr1LZejjI7sfGL
I7PpptEdBx9pAIBjRXaa/72Rf1ePlBL82+ZyOZdCu43Z/9o0z5rBeTTbnbRp+tBZgGan4lsBwJI0
VGmntw7uTW8ZbKd6pbS8Wze3HH//w39uAJDdUfilso5+T6ud/n1qKD3SHEmtZBAAwNKQrdF/SWNf
evtIM41USs23GyP47y7yxp6OIgYAH43mT8v8JBMxCPjGdCN9s7ksTXosEICjVPb43qUD+9NlQ7Np
WbX0Se2HIvgLr8HT89HEAOD3o/l42Z8quxywudlOjzVH0w9mh9KsswEALHL1mOWvqk+lixr70/kD
1TJP77/cxyL4b+9lA6UcVb8GAD8xFQOBJ2IgsLU5kn7YGkx7OzXfMAAWhWz9mp9uzKRVtcl0bqOa
Bqt9naz2HPylhf/cACBbBOhTC/GHnmi303OzrbSj3Ug7W400EYOBfe3awdUDpzuV1Ko4SwBAOWqd
ThqsdA4uU7+s2kpjlVYarzXTKdXmwYV5xqoLdon6tgj+vyhjQ6WmZAwA3p0O8xvCAEBu10fw/21Z
Gyt1uBIHlv387zuitusnAOhZ9hz/ujKDv/SZ/8vOACyP5s6o39BvAFBI9oN6t0bw7yl7w329OB6D
gOxHBv446nh9CABdydbo/8MI/U/3awd9vzMuBgBnRvPJqHfqTwCY199HfTiC/9l+7mTBbouPQcBH
ovlY1Cn6FgBeIbtX7lMR+n+2EDtb0GfiYgBwcjTZmgAf0c8AkNpRn4i6PYJ/10Lt9Ig8EB+DgDdH
856oG6NO1PcAHGNejMrW5f/LCP3NC73zI7oaTgwCzojm/VHvilrluwDAErc1HbqL/zMR+s8dqYNY
NEvhxUBgXTRXR10X9VO+HwAsEdmz+vdFPRCB/8BiOKBFuQ5uDAQuj+bKqCvmasx3B4CjRPZc/kNz
9WAE/sOL7QCPikXwYzDwpmjWvGwwcLrvFgCLxPaXhf2mCPv/XewHfFT+Ak4MBk6L5uKo86NWRmX3
DmSPEJ44d5ag7rsIQEmaUfvSocV3XojKnsF/Miq7Ue+RCPsf+xMBAAAAAABHyP8LMABeDXCJzhW8
aAAAAABJRU5ErkJggg==" transform="matrix(0.0347 0 0 0.0347 7.8184 0.2778)">
</image>
<path fill="#B74A26" d="M25.473,5.234c0,0.896-0.776,1.622-1.735,1.622h-14.1c-0.959,0-1.735-0.726-1.735-1.622V1.99
c0-0.896,0.776-1.622,1.735-1.622h14.1c0.959,0,1.735,0.727,1.735,1.623V5.234z"/>
<path fill="#343A38" d="M9.575,6.421c-0.644,0-1.167-0.493-1.167-1.099V1.903c0-0.606,0.523-1.1,1.167-1.1H23.8
c0.644,0,1.167,0.494,1.167,1.1v3.419c0,0.606-0.523,1.1-1.167,1.1L9.575,6.421z"/>
<g id="lake">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FEC932" d="M10.975,1.851h-0.661v2.33h2.026V3.754h-1.365V1.851z
M14.2,1.851l-1.074,2.33h0.702l0.198-0.46h1.19l0.22,0.46h0.711l-1.181-2.33H14.2z M14.202,3.313l0.39-0.906l0.432,0.906H14.202z
M19.387,1.851h-0.729L17.813,2.9V1.851h-0.661v2.33h0.661V3.088l1.054,1.092h0.828l-1.174-1.234L19.387,1.851z M21.328,3.754
V3.193l1.213,0V2.767h-1.213V2.278H22.6V1.851h-1.934v2.33h1.96V3.754H21.328z"/>
</g>
</g>
<g id="Shape_16_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FEC932" d="M18.114,4.875h-0.631c-0.138,0-0.25,0.112-0.25,0.249v0.54
c0,0.138,0.112,0.249,0.25,0.249h0.631c0.13,0,0.235-0.097,0.248-0.223V5.678h-0.851v-0.57h0.851V5.094
C18.348,4.972,18.242,4.875,18.114,4.875z M19.47,5.279h-0.66V5.1h0.888c-0.014-0.125-0.12-0.224-0.248-0.224h-0.644
c-0.138,0-0.249,0.112-0.249,0.249v0.154c0.012,0.126,0.118,0.225,0.248,0.225l0.659,0v0.186h-0.906
c0.012,0.126,0.118,0.225,0.248,0.225h0.662c0.138,0,0.249-0.111,0.249-0.249V5.503C19.706,5.377,19.6,5.279,19.47,5.279z
M22.519,4.867h-0.647c-0.132,0-0.239,0.107-0.239,0.239v0.56c0,0.131,0.107,0.238,0.239,0.238h0.647
c0.131,0,0.238-0.107,0.238-0.238v-0.56C22.757,4.974,22.649,4.867,22.519,4.867z M22.534,5.712h-0.68V5.061h0.68V5.712z
M20.713,5.404c0.05,0.064,0.127,0.069,0.148,0.069h0.346v0.226h-0.726V5.068h0.947c-0.02-0.116-0.119-0.201-0.236-0.201h-0.693
c-0.131,0-0.237,0.107-0.237,0.239v0.56c0,0.131,0.106,0.239,0.237,0.239h0.693c0.123,0,0.226-0.092,0.237-0.211V5.299h-0.769
C20.664,5.319,20.675,5.357,20.713,5.404z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_22_copy_11">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F3D581" d="M27.927,4.968l-23.46,0c-0.251,0-0.455,0.204-0.455,0.455v12.119
c0.026,0.408,0.525,0.91,0.525,0.91s11.196,11.242,11.334,11.381c0.139,0.138,0.434,0.207,0.647-0.006
c0.212-0.213,11.408-11.374,11.408-11.374s0.454-0.474,0.454-0.91V5.422C28.381,5.171,28.179,4.968,27.927,4.968z"/>
</g>
</g>
<g id="Shape_22_copy_11_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546070" d="M6.66,18.03c0,0,9.406,9.807,9.477,9.885
c0.122,0.135,0.383,0.201,0.57-0.006c0.108-0.12,9.532-9.897,9.532-9.897L6.66,18.03z"/>
</g>
</g>
<g id="Shape_56_copy_11">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#93381F" d="M11.423,9.847v3.431h9.61V9.847H11.423z M20.267,8.927
c0.072,0,0.079-0.02,0.02-0.052c-0.299-0.164-1.205-0.662-1.205-0.662s-0.906,0.498-1.206,0.662
c-0.059,0.032-0.053,0.052,0.021,0.052C18.323,8.927,19.836,8.927,20.267,8.927z"/>
</g>
</g>
<g id="Shape_56_copy_11_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F3D581" d="M15.215,13.29l-1.432-2.209l-1.431,2.209h-0.34v4.315h8.432
V13.29H15.215z M19.613,11.763l0.533-0.43V8.944h-2.09v2.354l0.611,0.457L19.613,11.763z"/>
</g>
</g>
<g id="Shape_56_copy_10">
<g>
<rect x="10.952" y="14.862" fill-rule="evenodd" clip-rule="evenodd" fill="#93381F" width="10.536" height="1.086"/>
</g>
</g>
<g id="Shape_56_copy_12">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#373E48" points="11.423,21.287 11.423,23.042 13.38,25.031
19.444,25.031 21.033,23.412 21.033,21.287 "/>
</g>
</g>
<g id="Shape_56_copy_15">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#6B7480" d="M12.013,18.02v3.324h0.34l1.431,2.302l1.432-2.302h5.229V18.02
H12.013z M18.668,23.017l-0.611,0.457v2.354h0.686l1.404-1.481v-0.908l-0.533-0.43L18.668,23.017z"/>
</g>
</g>
<g id="Shape_56_copy_12_2_">
<g>
<rect x="10.957" y="18.71" fill-rule="evenodd" clip-rule="evenodd" fill="#373E48" width="10.526" height="1.132"/>
</g>
</g>
<g id="Shape_22_copy_12">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#343A38" d="M28.167,3.424L4.672,3.423c-0.581,0-0.818,0.42-0.818,0.692
v12.876c0,0.914,0.541,1.575,0.541,1.575S15.847,30.78,16.016,30.93s0.529,0.225,0.789-0.007
c0.261-0.232,11.713-12.356,11.713-12.356s0.468-0.682,0.468-1.413V4.116C28.985,3.843,28.684,3.424,28.167,3.424z M27.805,17.142
c0,0.43-0.425,0.896-0.425,0.896S16.919,29.023,16.72,29.233s-0.475,0.142-0.604,0.006S5.525,18.038,5.525,18.038
s-0.467-0.495-0.491-0.896V5.213c0-0.247,0.19-0.448,0.425-0.448l21.921,0c0.235,0,0.425,0.201,0.425,0.447V17.142z"/>
</g>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FEC932" d="M28.085,3.326H4.94c-0.862,0-1.377,0.637-1.377,1.252v12.685
c0,1.091,0.635,1.879,0.662,1.913l0.012,0.015l0.013,0.014c3.398,3.624,11.318,12.066,11.486,12.215
c0.202,0.18,0.483,0.283,0.771,0.283c0.283,0,0.555-0.103,0.765-0.29c0.262-0.233,9.688-10.209,11.574-12.207l0.03-0.033
l0.024-0.037c0.059-0.083,0.562-0.843,0.562-1.714V4.578C29.462,3.986,28.897,3.326,28.085,3.326z M28.731,17.428
c0,0.822-0.476,1.539-0.529,1.618l-0.024,0.034l-0.028,0.031c-1.78,1.885-10.674,11.298-10.921,11.518
c-0.197,0.177-0.454,0.274-0.722,0.274c-0.271,0-0.536-0.098-0.728-0.267c-0.157-0.141-7.631-8.107-10.837-11.526l-0.012-0.013
l-0.013-0.014c-0.024-0.031-0.624-0.775-0.624-1.805V5.308c0-0.58,0.486-1.181,1.3-1.181h21.838c0.766,0,1.3,0.623,1.3,1.181V17.428
z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B74A26" d="M16.507,30.563c-0.007,0-0.015-0.002-0.021-0.003
c-0.535-0.55-8.344-8.872-11.386-12.116c-0.055-0.074-0.396-0.559-0.396-1.181V4.583c0.003-0.02,0.033-0.117,0.236-0.117h23.145
c0.16,0,0.223,0.107,0.236,0.136v12.82c0,0.413-0.231,0.866-0.34,1.037c-3.098,3.28-11.06,11.701-11.47,12.103
C16.511,30.562,16.51,30.563,16.507,30.563z M26.809,17.946c0.108-0.12,0.267-0.374,0.267-0.495V5.904H5.784v11.521
c0.016,0.102,0.175,0.353,0.326,0.517c0.098,0.103,9.161,9.688,10.315,10.908C17.558,27.661,26.547,18.221,26.809,17.946z"/>
<g id="Shape_22_copy_12_4_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#343A38" d="M28.085,3.896H4.94c-0.574,0-0.807,0.413-0.807,0.682v12.685
c0,0.9,0.532,1.551,0.532,1.551s11.283,12.031,11.449,12.18c0.167,0.148,0.521,0.222,0.777-0.007
c0.256-0.228,11.538-12.173,11.538-12.173s0.461-0.671,0.461-1.392V4.578C28.892,4.309,28.594,3.896,28.085,3.896z M27.646,17.451
c0,0.423-0.418,0.882-0.418,0.882S16.921,29.156,16.725,29.362c-0.195,0.207-0.467,0.141-0.594,0.006
C16.003,29.234,5.697,18.333,5.697,18.333s-0.459-0.486-0.483-0.882V5.774c0-0.243,0.188-0.441,0.418-0.441h21.596
c0.23,0,0.418,0.198,0.418,0.441V17.451z"/>
</g>
</g>
<image overflow="visible" width="511" height="193" id="Shape_71_xA0_Image_2_" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAf8AAADBCAYAAADB9rnXAAAACXBIWXMAAAsSAAALEgHS3X78AAAA
GXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAADhNJREFUeNrs3XuMXNV9B/Azr316
AbMGwqMBamPKQ6RBIESKk0Low1ZaioJaQkkbkRBCItQmUdN/qv7R9o9ENFFVNZCkOKmaAK3aUppW
dkhTlcqkJU9Ki0OwQ8CYBHAxfqy93t3Zmenv2hsJEKzn3rmzXq8/H+mnI9kz997ZM9L3nPs4kxIA
AAAAALBEVI7Gg964bnUjmvOjzotaGfXGqJOjlkeN6VYASrQ/ajJqImpn1PaorVGPR31/7YYtTeHf
n7Afj+aKqDVz7WW+iwAsEt+IeihqU9bGYGCn8C8W9qdF87a5sP/5uRk+ABwNsjMCD84NBh6MwcBz
wv/1A/+CaN4Z9etRF/juALBEbI76m6j7YiDwPeF/KPRvi+b9URf6fgCwxD0WdWcMAu445sI/Av/E
aH436oZ06IY9ADiWbJ07G/DJGAjsWfLhH8H/B9HcEnWGvgfgGLct6q4YAPzJkgz/CP0PRpOV6/kA
8ErZ5YA7YhBw55II/wj946LJPswN+hYA5nV31K0xCJg4asM/gv+X54L/LP0JAF15am4A8EC/dlDt
Y/B/NGsEPwDkcnbUVyJHf+eomfnHwWbL7H4m6lr9BwA9+bu5swClrhpYavhH8P9qNJ+LOkV/AUAp
fjQ3APjnRRf+Efy/Hc1fLcRfod1JaUerlV5sp/RSu552teppf6eaDkTN9O9KBgDHoEalnRqdThqM
xByptNIJtdk0XmmmFbVKOqlWS9WFe2j+3TEA+NKiCf8I/myFvs/269NG1qdtM8305OxQeqo9mH7U
GkjNTsU3EoAjPDDopNNrM+ns6nRa1ZhKb2w0+v0Y3c0xALjriId/v4I/C/ynm8302Mxw2twcSftS
zbcMgEXtuNRKFzQmow6kMwf6NhB4XwwA1h+x8I/gvyma9WV+oma7kx5tpvT1qbH0f52GbxIAR6VT
qs30lsGJ9KaBlOqV0ocBvxUDgC8uePhH8F8Tzf1lfYqZCP3/mqmmr08flyY7rtsDsDSMVNppzeDe
dNlAOw2Ue4PAr8QA4F8WLPwj+E+N5tGok3o98uz0/iPTnfS1A8envU7tA7BEZZcEfmF4d/rZwWpZ
lwN+HHVRkccAi06x7ywj+He12unzE8PpvgMnCn4AlrQs5/7hwHj6QuTe7si/EpyWDq2rk1vuxI1Z
/+9Fc1uvR/ztmO3fM7k8vdh2XR+AY8euTj19pzmUxipT6dR6z+cAzr/xnPE9d2/d+XCeN+XaawT/
L0XzlV6OcrbTSffvH0r/PTviGwDAMe2Sgf3pHcPTZdwQeNnaDVu+2e2Luz7tH8E/lg6d7i9sot1O
6/eNCn4ACN+eGU1fmBhN+7PV63rz6TwvznPNPwv+s4seVXZ9/7MTx6ftrUG9DQBztrUH0+cmjuv1
PoBLYpL+iW5f3NV5htjgrdHc0Uvwr993fNrdqetlAHgN45XZdNOyPen4Wk+Pu1+zdsOWL5c18/9g
0aPYm93RL/gBYF47IyezvNzX2yWAD3TzosOG/9zd/RcWOYJstb57J5cdvLMRADj8AOCefaOpVXwT
ayO3Dzth72bm/96iR3D/5JBr/ACQwzPtwfTlyYFeNtFb+Mfo4UPRnFtkz9lz/I+6qx8AcvvOzGj6
7nTh0/8XRH7f0svM/4oie81u8Ns4dYLeA4CCNkSO7i3+BMAVhcI/Rg2XR3N93r1l45T7J0fTtB/n
AYDCpiJH/3Gy8Bn0GyPHLy0y87+2yN4em2mlJ1tDeg0AerS1NZyemG4Wfft1RcL/mrx7ye5O/OoB
p/sBoCxfnV6eCl79/7Vc4b9x3eqV0azOu5fsp3k91gcA5Xmh3Uj/M13o4b/Vkedn55n5X1lkL/85
PaaXAKBkm6aPK/rWNXnCP/dd/tuazbTDz/MCQOmebw+kZ2dni7z1ir6G/7eml+kdAOiTb80UuvO/
u/DfuG71qdGszLPl2U4nPd4a1jMA0CePNYcP5m1O50Wur+hm5r8m75afac6m6U5FzwBAn2Tr5zzd
LOfUf7XbUwTz2TJr1g8A/faDYnnbn/B/yo/3AEDfPTNb6Ad/fm7e8N+4bnW21Tfn2WL25OHzLXf5
A0C/vdAplLcXHG7mf07eLe5stWIA4Ho/APRbdt1/d/4f+xmLyf2Z84X/yrxb3DXb1hsAsEB2tgrd
9HfufOF/ct6t7U+W8wWAhbK32DL6p88X/ityh79H/ABgwUx2qkXeNj5f+Oe+jdD1fgBYOO1iuduY
L/xzrx3YbFf1BAAcRSQ3AAh/AED4AwDCHwAQ/gCA8AcAhD8AIPwBAOEPAAh/AED4AwDCHwAQ/gCA
8AcA4Q8ACH8AQPgDAMIfABD+AIDwBwCEPwAg/AEA4Q8ACH8AQPgDAMIfABD+AIDwBwDhDwAIfwBA
+AMAwh8AEP4AgPAHAIQ/ACD8AQDhDwAIfwBA+AMAwh8AEP4AIPwBAOEPAAh/AED4AwDCHwAQ/gCA
8AcAhD8AIPwBAOEPAAh/AED4AwDCHwAQ/gAg/AEA4Q8ACH8AQPgDAMIfABD+AIDwBwCEPwAg/AEA
4Q8ACH8AQPgDAMIfAIQ/ACD8AQDhDwAIfwBA+AMAwh8AEP4AgPAHAIQ/ACD8AQDhDwAIfwBA+AMA
wh8AhD8AIPwBAOEPAAh/AED4AwDCHwAQ/gCA8AcAhD8AIPwBgPLCfyrvBmrVtr8iABzF4T+ddwMN
f0MAWDCV1CnyttZ84f9S3q0NV8z8AWChjFQKhf/O+cJ/R96tLUuzegIAFshYpVDuPj9f+P8w79ZO
qLlnEAAWynitVuRt358v/LfmPohq1SMDALAABiudtLzYpPvp1w3/tRu2TEazOc/WGtVKOqna1CMA
0GcrIm8r+d/23cj3eW/4yzyUd6tn1ab0CAD02RnV6SJve/jV/1BK+J/bOKBHAKDPVjYKTbYf6ib8
N+We+dfrqV7suUMAoAtZzq6qF7rZ7/Dhv3bDlm3RbM+z1YFqJQ7IqX8A6JfV9QMH8zanpyPXt3cz
83/NUcLhXDywT88AQJ9c3CiUs6+Z56WF/8806umEigV/AKBsWb6uHii0oH6u8P+PvFvPzkRcPjih
hwCgZGuGJlK1Uuit3Yf/2g1bsmf9c6/2d+lAJy175W8HAAA9WB6z/ksGC731qbk873rmn/mnvHvJ
bkS4anivngKAklw9tDvVir31/tf7j/nC/1+L7OmSgZTeUJ3RWwDQo9NrM+miwVrRt2/IHf5rN2zZ
GM3jefeUXZO4dmSP9f4BoAe11EnXDO9JxS71p8cjx79WZOaf+etCI5V6Pb1tcI+eA4CCrhrak06L
PC1o3vw+XPj/eSpw41/myqF2Otua/wCQ2zn1qbRmsPDKuU9E3V44/Od+5e+LRfacnf6/fnTSs/8A
kMN45OZ1I5NFH+3LrH/1r/i9Wleb3rhu9feiOa/IEbww20p37T8xHei4CwAA5pM9Ln/z2O40Xiuc
mZsj+C887AS9y43dUfQoTqnX0k2jO9Nwpa1XAWCe4H/Psl29BH/Xed31SYWY/d8bzfVFj+a52dn0
+f3jzgAAwOsE/xvqtV42c0/M+n+zmxfmSeIPR+0oekSn1uvp5tGX3AMAAC+zotpM7xvb3WvwPxt1
W7cv7jr8YzTxfDR/1MuRnRwf7ANje9NZtWm9DcAxb1XtQLpl2URaUev5rPjHI6df6vbFue8l3Lhu
9T3RvKuXI8xuQfy3yXraNDOWOvoegGNMFvVvHdibrhpu9XJX/0/cG8F/Q97953Vr1LZejjI7sfGL
I7PpptEdBx9pAIBjRXaa/72Rf1ePlBL82+ZyOZdCu43Z/9o0z5rBeTTbnbRp+tBZgGan4lsBwJI0
VGmntw7uTW8ZbKd6pbS8Wze3HH//w39uAJDdUfilso5+T6ud/n1qKD3SHEmtZBAAwNKQrdF/SWNf
evtIM41USs23GyP47y7yxp6OIgYAH43mT8v8JBMxCPjGdCN9s7ksTXosEICjVPb43qUD+9NlQ7Np
WbX0Se2HIvgLr8HT89HEAOD3o/l42Z8quxywudlOjzVH0w9mh9KsswEALHL1mOWvqk+lixr70/kD
1TJP77/cxyL4b+9lA6UcVb8GAD8xFQOBJ2IgsLU5kn7YGkx7OzXfMAAWhWz9mp9uzKRVtcl0bqOa
Bqt9naz2HPylhf/cACBbBOhTC/GHnmi303OzrbSj3Ug7W400EYOBfe3awdUDpzuV1Ko4SwBAOWqd
ThqsdA4uU7+s2kpjlVYarzXTKdXmwYV5xqoLdon6tgj+vyhjQ6WmZAwA3p0O8xvCAEBu10fw/21Z
Gyt1uBIHlv387zuitusnAOhZ9hz/ujKDv/SZ/8vOACyP5s6o39BvAFBI9oN6t0bw7yl7w329OB6D
gOxHBv446nh9CABdydbo/8MI/U/3awd9vzMuBgBnRvPJqHfqTwCY199HfTiC/9l+7mTBbouPQcBH
ovlY1Cn6FgBeIbtX7lMR+n+2EDtb0GfiYgBwcjTZmgAf0c8AkNpRn4i6PYJ/10Lt9Ig8EB+DgDdH
856oG6NO1PcAHGNejMrW5f/LCP3NC73zI7oaTgwCzojm/VHvilrluwDAErc1HbqL/zMR+s8dqYNY
NEvhxUBgXTRXR10X9VO+HwAsEdmz+vdFPRCB/8BiOKBFuQ5uDAQuj+bKqCvmasx3B4CjRPZc/kNz
9WAE/sOL7QCPikXwYzDwpmjWvGwwcLrvFgCLxPaXhf2mCPv/XewHfFT+Ak4MBk6L5uKo86NWRmX3
DmSPEJ44d5ag7rsIQEmaUfvSocV3XojKnsF/Miq7Ue+RCPsf+xMBAAAAAABHyP8LMABeDXCJzhW8
aAAAAABJRU5ErkJggg==" transform="matrix(0.0347 0 0 0.0347 7.8184 0.2778)">
</image>
<path fill="#B74A26" d="M25.473,5.234c0,0.896-0.776,1.622-1.735,1.622h-14.1c-0.959,0-1.735-0.726-1.735-1.622V1.99
c0-0.896,0.776-1.622,1.735-1.622h14.1c0.959,0,1.735,0.727,1.735,1.623V5.234z"/>
<path fill="#343A38" d="M9.575,6.421c-0.644,0-1.167-0.493-1.167-1.099V1.903c0-0.606,0.523-1.1,1.167-1.1H23.8
c0.644,0,1.167,0.494,1.167,1.1v3.419c0,0.606-0.523,1.1-1.167,1.1L9.575,6.421z"/>
<g id="lake">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FEC932" d="M10.975,1.851h-0.661v2.33h2.026V3.754h-1.365V1.851z
M14.2,1.851l-1.074,2.33h0.702l0.198-0.46h1.19l0.22,0.46h0.711l-1.181-2.33H14.2z M14.202,3.313l0.39-0.906l0.432,0.906H14.202z
M19.387,1.851h-0.729L17.813,2.9V1.851h-0.661v2.33h0.661V3.088l1.054,1.092h0.828l-1.174-1.234L19.387,1.851z M21.328,3.754
V3.193l1.213,0V2.767h-1.213V2.278H22.6V1.851h-1.934v2.33h1.96V3.754H21.328z"/>
</g>
</g>
<g id="Shape_16_2_">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FEC932" d="M18.114,4.875h-0.631c-0.138,0-0.25,0.112-0.25,0.249v0.54
c0,0.138,0.112,0.249,0.25,0.249h0.631c0.13,0,0.235-0.097,0.248-0.223V5.678h-0.851v-0.57h0.851V5.094
C18.348,4.972,18.242,4.875,18.114,4.875z M19.47,5.279h-0.66V5.1h0.888c-0.014-0.125-0.12-0.224-0.248-0.224h-0.644
c-0.138,0-0.249,0.112-0.249,0.249v0.154c0.012,0.126,0.118,0.225,0.248,0.225l0.659,0v0.186h-0.906
c0.012,0.126,0.118,0.225,0.248,0.225h0.662c0.138,0,0.249-0.111,0.249-0.249V5.503C19.706,5.377,19.6,5.279,19.47,5.279z
M22.519,4.867h-0.647c-0.132,0-0.239,0.107-0.239,0.239v0.56c0,0.131,0.107,0.238,0.239,0.238h0.647
c0.131,0,0.238-0.107,0.238-0.238v-0.56C22.757,4.974,22.649,4.867,22.519,4.867z M22.534,5.712h-0.68V5.061h0.68V5.712z
M20.713,5.404c0.05,0.064,0.127,0.069,0.148,0.069h0.346v0.226h-0.726V5.068h0.947c-0.02-0.116-0.119-0.201-0.236-0.201h-0.693
c-0.131,0-0.237,0.107-0.237,0.239v0.56c0,0.131,0.106,0.239,0.237,0.239h0.693c0.123,0,0.226-0.092,0.237-0.211V5.299h-0.769
C20.664,5.319,20.675,5.357,20.713,5.404z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -1,199 +1,199 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_1_copy_20">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#15576F" points="16.028,0.921 0.298,12.349 6.307,30.841 25.75,30.841
31.758,12.349 "/>
</g>
</g>
<g id="Shape_1_copy_21">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#07A5C2" points="16.028,1.12 0.508,12.396 6.437,30.642 25.62,30.642
31.547,12.396 "/>
</g>
</g>
<g id="Shape_20">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#15576F" d="M8.108,30.673h1.665v-0.545H8.108V30.673z M11.563,30.674h1.665
v-0.546h-1.665V30.674z M15.339,30.674h1.665v-0.546h-1.665V30.674z M18.795,30.674h1.665v-0.546h-1.665V30.674z M22.539,30.674
h1.665v-0.546h-1.665V30.674z M25.635,28.918l0.519,0.167l0.513-1.584l-0.52-0.167L25.635,28.918z M26.699,25.63l0.52,0.168
l0.512-1.584l-0.52-0.168L26.699,25.63z M27.862,22.037l0.52,0.168l0.512-1.584l-0.519-0.169L27.862,22.037z M28.926,18.75
l0.519,0.167l0.513-1.584l-0.519-0.167L28.926,18.75z M30.591,13.604l-0.512,1.584l0.52,0.169l0.513-1.585L30.591,13.604z
M5.423,27.613l0.514,1.584l0.519-0.169l-0.513-1.584L5.423,27.613z M4.357,24.325l0.514,1.584l0.52-0.169l-0.513-1.583
L4.357,24.325z M3.194,20.734l0.513,1.583l0.52-0.168l-0.514-1.584L3.194,20.734z M2.129,17.446l0.513,1.583l0.519-0.168
l-0.513-1.583L2.129,17.446z M0.975,13.884l0.513,1.585l0.52-0.169l-0.513-1.584L0.975,13.884z M3.266,11.04l-0.32-0.442
l-1.348,0.976l0.32,0.443L3.266,11.04z M6.065,9.014l-0.32-0.441L4.396,9.549l0.32,0.441L6.065,9.014z M8.804,6.358L7.456,7.334
l0.32,0.443l1.349-0.977L8.804,6.358z M11.604,4.333l-1.349,0.976l0.321,0.442l1.349-0.977L11.604,4.333z M13.289,3.114
l0.32,0.442l1.349-0.976l-0.321-0.443L13.289,3.114z M28.944,10.482l-0.32,0.441l1.347,0.979l0.321-0.442L28.944,10.482z
M27.495,9.431l-1.347-0.979l-0.321,0.442l1.348,0.977L27.495,9.431z M22.771,6.676l1.347,0.979l0.32-0.442l-1.347-0.978
L22.771,6.676z M19.975,4.646l1.348,0.979l0.32-0.442l-1.348-0.979L19.975,4.646z M16.945,2.445l1.347,0.979l0.321-0.441
l-1.347-0.978L16.945,2.445z"/>
</g>
</g>
<g id="Shape_1_copy_20_1_">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#07A5C2" points="15.992,1.825 1.076,12.663 6.773,30.198 25.211,30.198
30.909,12.663 "/>
</g>
</g>
<g id="Shape_1_copy_22">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#C6C5C5" points="15.992,2.688 1.983,12.867 7.334,29.336 24.65,29.336
30.001,12.867 "/>
</g>
</g>
<g id="Shape_1_copy_20_2_">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#AE2324" points="15.992,3.176 2.431,13.027 7.611,28.971 24.374,28.971
29.553,13.027 "/>
</g>
</g>
<g id="Shape_1_copy_25">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#6B100F" points="15.992,3.176 16.119,28.971 24.374,28.971
29.553,13.027 "/>
</g>
</g>
<g>
<path fill="#DEDEDD" d="M10.069,26.302l0.543-0.711h0.367v1.917h-0.421v-1.197l-0.457,0.602h-0.063l-0.456-0.602v1.197H9.161
v-1.917h0.365L10.069,26.302z"/>
<path fill="#DEDEDD" d="M11.85,25.591v1.917h-0.421v-1.917H11.85z"/>
<path fill="#DEDEDD" d="M12.301,25.591h0.756c0.164,0,0.297,0.054,0.399,0.16c0.102,0.108,0.154,0.238,0.154,0.392
c0,0.211-0.097,0.367-0.291,0.469c0.084,0.043,0.166,0.161,0.243,0.353c0.075,0.192,0.149,0.374,0.221,0.544h-0.462
c-0.028-0.063-0.076-0.184-0.144-0.36c-0.069-0.178-0.128-0.292-0.176-0.343c-0.049-0.05-0.101-0.075-0.157-0.075h-0.121v0.778
h-0.421V25.591z M12.723,25.941v0.437h0.223c0.071,0,0.127-0.019,0.169-0.057c0.042-0.037,0.062-0.092,0.062-0.162
c0-0.146-0.08-0.218-0.241-0.218H12.723z"/>
<path fill="#DEDEDD" d="M15.092,25.591l0.751,1.917H15.39l-0.14-0.379h-0.757l-0.126,0.379h-0.446l0.683-1.917H15.092z
M15.127,26.794l-0.274-0.745l-0.248,0.745H15.127z"/>
<path fill="#DEDEDD" d="M17.527,25.723v0.42c-0.216-0.118-0.426-0.178-0.632-0.178c-0.198,0-0.352,0.058-0.458,0.17
c-0.107,0.114-0.161,0.259-0.161,0.434c0,0.169,0.053,0.306,0.161,0.409c0.107,0.104,0.249,0.156,0.423,0.156
c0.093,0,0.186-0.021,0.28-0.067v-0.225h-0.245v-0.351h0.667v0.783c-0.066,0.076-0.168,0.138-0.305,0.187
c-0.137,0.048-0.272,0.072-0.407,0.072c-0.294,0-0.536-0.093-0.725-0.276c-0.189-0.185-0.284-0.419-0.284-0.704
c0-0.292,0.094-0.528,0.284-0.713c0.189-0.183,0.434-0.273,0.735-0.273C17.108,25.566,17.331,25.618,17.527,25.723z"/>
<path fill="#DEDEDD" d="M19.242,27.156v0.352h-1.247v-1.917h1.229v0.351h-0.808v0.402h0.771v0.352h-0.771v0.461H19.242z"/>
</g>
<g id="Shape_18">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#30B14A" points="22.595,26.201 21.786,26.131 21.489,25.397
21.192,26.131 20.383,26.201 21.009,26.696 20.806,27.501 21.489,27.045 22.172,27.501 21.97,26.696 "/>
</g>
</g>
<g id="Shape_21">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#5A0F0F" points="24.267,16.688 24.064,11.535 24.315,11.535
24.315,11.152 24.049,11.152 24.028,10.592 21.004,10.592 20.981,11.152 20.587,11.152 20.587,11.535 20.966,11.535
20.764,16.688 18.54,16.672 18.349,10.448 18.667,10.448 18.667,10.063 18.338,10.063 18.316,9.345 14.716,9.345 14.692,10.063
14.284,10.063 14.284,10.448 14.679,10.448 14.476,16.672 12.701,16.672 12.512,11.535 12.796,11.535 12.796,11.152
12.497,11.152 12.476,10.576 9.42,10.576 9.401,11.152 9.068,11.152 9.068,11.535 9.388,11.535 9.212,16.672 8.493,16.672
8.493,17.071 24.78,17.056 24.78,16.688 "/>
</g>
</g>
<g id="Shape_21_copy">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#56A5B3" points="23.851,16.271 23.649,11.12 23.9,11.12 23.9,10.735
23.634,10.735 23.611,10.176 20.587,10.176 20.566,10.735 20.172,10.735 20.172,11.12 20.55,11.12 20.348,16.271 18.124,16.256
17.934,10.032 18.251,10.032 18.251,9.647 17.922,9.647 17.899,8.928 14.3,8.928 14.277,9.647 13.868,9.647 13.868,10.032
14.264,10.032 14.061,16.256 12.284,16.256 12.095,11.12 12.38,11.12 12.38,10.735 12.082,10.735 12.06,10.159 9.005,10.159
8.985,10.735 8.653,10.735 8.653,11.12 8.972,11.12 8.796,16.256 8.076,16.256 8.076,16.656 24.364,16.64 24.364,16.271 "/>
</g>
</g>
<g id="Shape_22">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#3F3F3F" d="M9.708,12.384h0.256V11.76H9.708V12.384z M11.18,12.384h0.256
V11.76H11.18V12.384z M10.444,12.384h0.256V11.76h-0.256V12.384z M15.18,11.199h0.256v-0.623H15.18V11.199z M16.652,11.199h0.256
v-0.623h-0.256V11.199z M15.916,11.199h0.256v-0.623h-0.256V11.199z M21.292,12.384h0.256V11.76h-0.256V12.384z M22.764,11.76
v0.624h0.256V11.76H22.764z M22.028,12.384h0.256V11.76h-0.256V12.384z"/>
</g>
</g>
<g id="Shape_23">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#BFC25A" d="M14.208,21.103c-0.086-0.204-0.457-0.653-0.777-1.054
c-0.333-0.401-0.615-0.758-0.808-0.825c-0.078,0.187,0.09,0.63,0.394,1.07c0.291,0.438,0.719,0.875,0.884,0.986
c0.12,0.084,0.265,0.166,0.364,0.219c-0.25-0.011-0.501-0.027-0.751-0.05c-0.029-0.093-0.086-0.276-0.125-0.388
c-0.071-0.2-0.393-0.648-0.669-1.05c-0.288-0.404-0.532-0.762-0.71-0.836c-0.083,0.179,0.05,0.615,0.311,1.053
c0.25,0.436,0.626,0.872,0.775,0.988c0.106,0.084,0.237,0.169,0.328,0.225c-0.239-0.024-0.478-0.053-0.715-0.087
c-0.023-0.089-0.066-0.267-0.098-0.375c-0.057-0.194-0.332-0.638-0.569-1.038c-0.247-0.402-0.457-0.761-0.62-0.84
c-0.086,0.171,0.015,0.599,0.236,1.031c0.209,0.43,0.54,0.863,0.673,0.981c0.095,0.085,0.211,0.172,0.293,0.228
c-0.228-0.033-0.454-0.072-0.679-0.117c-0.017-0.087-0.049-0.258-0.071-0.361c-0.147-0.393-0.774-1.709-1.015-1.859
c-0.238,0.308,0.449,1.721,0.747,1.977c0.083,0.084,0.187,0.171,0.26,0.229c-0.198-0.039-0.396-0.085-0.592-0.132
c-0.012-0.084-0.034-0.248-0.05-0.35c-0.12-0.379-0.642-1.677-0.866-1.833c-0.238,0.295,0.34,1.68,0.608,1.936
c0.075,0.084,0.168,0.17,0.233,0.229c-0.189-0.048-0.377-0.1-0.564-0.153c-0.008-0.082-0.021-0.239-0.031-0.337
c-0.093-0.366-0.521-1.64-0.727-1.8c-0.236,0.28,0.238,1.632,0.48,1.889c0.066,0.083,0.148,0.168,0.208,0.226
c-0.186-0.055-0.37-0.113-0.552-0.176c-0.003-0.077-0.007-0.229-0.013-0.32c-0.068-0.354-0.407-1.6-0.597-1.763
c-0.234,0.268,0.146,1.584,0.361,1.838c0.057,0.081,0.13,0.164,0.182,0.223c-0.162-0.056-0.323-0.116-0.483-0.177
c0-0.076,0.004-0.22,0.003-0.309c-0.046-0.344-0.31-1.559-0.485-1.721c-0.231,0.255,0.066,1.536,0.258,1.785
c0.05,0.079,0.114,0.162,0.162,0.219c-0.164-0.063-0.326-0.131-0.487-0.202c0.004-0.072,0.015-0.208,0.019-0.295
c-0.026-0.328-0.215-1.508-0.376-1.672c-0.229,0.241-0.011,1.485,0.158,1.729c0.043,0.076,0.1,0.157,0.141,0.213
c-0.159-0.069-0.316-0.142-0.473-0.219c-0.041-0.036-0.09-0.078-0.139-0.118c-0.228-0.121-1.946-1.255-2.563-1.557
c0.203,0.483,2.064,1.655,2.453,1.693c0.042,0.012,0.094,0.023,0.145,0.033c0.172,0.086,0.347,0.168,0.522,0.247
c-0.082,0.001-0.2,0.003-0.309,0.011c-0.293,0.058-2.064,0.269-2.416,0.433c0.406,0.214,2.155-0.045,2.472-0.25
c0.094-0.047,0.237-0.127,0.311-0.168c0.163,0.072,0.326,0.141,0.49,0.206c-0.085,0.005-0.209,0.013-0.322,0.023
c-0.304,0.073-2.115,0.372-2.461,0.565c0.431,0.209,2.219-0.145,2.534-0.372c0.095-0.054,0.238-0.146,0.312-0.192
c0.162,0.064,0.324,0.125,0.487,0.183c-0.089,0.009-0.218,0.021-0.336,0.038c-0.313,0.087-2.165,0.476-2.504,0.698
c0.458,0.206,2.286-0.25,2.596-0.499c0.095-0.062,0.239-0.163,0.311-0.215c0.185,0.064,0.37,0.125,0.557,0.182
c-0.093,0.013-0.229,0.032-0.351,0.055c-0.325,0.104-2.22,0.597-2.552,0.854c0.486,0.196,2.357-0.372,2.664-0.648
c0.095-0.067,0.237-0.182,0.309-0.24c0.189,0.057,0.379,0.109,0.569,0.157c-0.097,0.019-0.239,0.044-0.367,0.073
c-0.33,0.123-2.273,0.724-2.598,1.016c0.517,0.188,2.43-0.5,2.733-0.802c0.095-0.077,0.236-0.204,0.307-0.268
c0.199,0.05,0.397,0.096,0.597,0.137c-0.101,0.023-0.249,0.058-0.383,0.094c-0.34,0.142-2.329,0.859-2.645,1.188
c0.548,0.175,2.506-0.64,2.804-0.972c0.095-0.085,0.234-0.225,0.304-0.294c0.227,0.046,0.455,0.086,0.683,0.122
c-0.105,0.029-0.261,0.071-0.4,0.117c-0.353,0.166-2.392,1.019-2.695,1.39c0.585,0.159,2.592-0.805,2.883-1.168
c0.094-0.094,0.231-0.25,0.299-0.326c0.239,0.035,0.479,0.066,0.72,0.09c-0.11,0.035-0.274,0.091-0.42,0.146
c-0.364,0.191-2.454,1.191-2.746,1.604c0.625,0.142,2.682-0.984,2.964-1.38c0.092-0.105,0.227-0.276,0.292-0.36
c0.252,0.023,0.505,0.042,0.757,0.054c-0.115,0.043-0.287,0.109-0.439,0.175c-0.375,0.221-2.517,1.381-2.794,1.837
c0.669,0.119,2.775-1.183,3.047-1.612c0.09-0.116,0.221-0.305,0.284-0.396c0.307,0.013,0.614,0.018,0.921,0.012
c0.004-0.03,0.01-0.072,0.011-0.124c-0.306,0.006-0.61,0.004-0.914-0.007C14.328,21.408,14.257,21.218,14.208,21.103z
M24.083,20.056c0.389-0.038,2.25-1.21,2.453-1.693c-0.617,0.302-2.336,1.436-2.564,1.557c-0.049,0.04-0.098,0.082-0.138,0.118
c-0.156,0.077-0.314,0.149-0.473,0.219c0.041-0.056,0.098-0.137,0.141-0.213c0.168-0.243,0.387-1.487,0.158-1.729
c-0.161,0.164-0.351,1.344-0.377,1.673c0.005,0.086,0.015,0.222,0.02,0.294c-0.161,0.071-0.323,0.139-0.486,0.202
c0.046-0.057,0.111-0.14,0.162-0.219c0.191-0.249,0.489-1.53,0.258-1.785c-0.175,0.162-0.438,1.377-0.486,1.721
c0,0.089,0.003,0.232,0.005,0.309c-0.161,0.061-0.322,0.121-0.484,0.177c0.053-0.059,0.125-0.142,0.183-0.223
c0.215-0.254,0.594-1.57,0.361-1.838c-0.19,0.163-0.529,1.409-0.598,1.763c-0.004,0.092-0.008,0.243-0.012,0.32
c-0.183,0.063-0.367,0.121-0.553,0.176c0.059-0.058,0.142-0.143,0.208-0.226c0.242-0.257,0.716-1.608,0.481-1.889
c-0.206,0.16-0.634,1.434-0.728,1.8c-0.01,0.098-0.022,0.255-0.03,0.337c-0.188,0.054-0.376,0.105-0.565,0.153
c0.066-0.06,0.158-0.146,0.233-0.229c0.268-0.256,0.846-1.641,0.609-1.936c-0.224,0.156-0.747,1.454-0.866,1.833
c-0.017,0.102-0.038,0.266-0.051,0.35c-0.196,0.048-0.394,0.093-0.592,0.132c0.073-0.058,0.176-0.145,0.261-0.229
c0.298-0.256,0.985-1.669,0.747-1.977c-0.241,0.15-0.868,1.467-1.014,1.859c-0.023,0.104-0.055,0.274-0.072,0.361
c-0.226,0.045-0.452,0.084-0.679,0.117c0.081-0.056,0.198-0.143,0.292-0.228c0.133-0.118,0.463-0.552,0.674-0.981
c0.22-0.433,0.321-0.86,0.235-1.031c-0.164,0.079-0.373,0.438-0.621,0.84c-0.237,0.4-0.512,0.844-0.569,1.038
c-0.03,0.108-0.075,0.286-0.098,0.375c-0.238,0.034-0.476,0.063-0.715,0.087c0.09-0.056,0.22-0.141,0.327-0.225
c0.149-0.116,0.526-0.553,0.775-0.988c0.26-0.438,0.394-0.874,0.311-1.053c-0.178,0.074-0.422,0.432-0.71,0.836
c-0.277,0.401-0.598,0.85-0.669,1.05c-0.039,0.111-0.095,0.295-0.125,0.388c-0.25,0.022-0.501,0.039-0.752,0.05
c0.1-0.053,0.245-0.135,0.365-0.219c0.166-0.111,0.593-0.547,0.885-0.986c0.304-0.44,0.471-0.884,0.395-1.07
c-0.193,0.067-0.476,0.424-0.809,0.825c-0.32,0.4-0.69,0.85-0.777,1.054c-0.048,0.115-0.119,0.306-0.155,0.399
c-0.305,0.011-0.609,0.013-0.914,0.007c0.001,0.052,0.006,0.094,0.011,0.124c0.307,0.006,0.613,0.001,0.92-0.012
c0.063,0.091,0.193,0.279,0.284,0.396c0.272,0.43,2.378,1.731,3.047,1.612c-0.277-0.456-2.419-1.616-2.795-1.837
c-0.152-0.065-0.324-0.132-0.439-0.175c0.253-0.012,0.506-0.03,0.757-0.054c0.066,0.084,0.2,0.255,0.292,0.36
c0.283,0.396,2.338,1.521,2.964,1.38c-0.292-0.413-2.38-1.413-2.746-1.604c-0.146-0.055-0.309-0.11-0.419-0.146
c0.24-0.023,0.48-0.055,0.72-0.09c0.067,0.076,0.206,0.232,0.299,0.326c0.292,0.363,2.298,1.327,2.882,1.168
c-0.304-0.371-2.342-1.224-2.695-1.39c-0.139-0.046-0.295-0.088-0.401-0.117c0.229-0.036,0.457-0.076,0.684-0.122
c0.069,0.069,0.21,0.209,0.304,0.294c0.299,0.332,2.256,1.146,2.804,0.972c-0.315-0.329-2.303-1.047-2.645-1.188
c-0.133-0.036-0.281-0.07-0.382-0.094c0.2-0.041,0.398-0.087,0.596-0.137c0.071,0.063,0.212,0.19,0.308,0.268
c0.303,0.302,2.217,0.989,2.732,0.802c-0.325-0.292-2.268-0.893-2.598-1.016c-0.128-0.029-0.27-0.055-0.366-0.073
c0.19-0.048,0.379-0.101,0.569-0.157c0.071,0.059,0.214,0.173,0.309,0.24c0.307,0.276,2.177,0.845,2.664,0.648
c-0.332-0.258-2.227-0.75-2.551-0.854c-0.124-0.022-0.258-0.042-0.351-0.055c0.187-0.057,0.372-0.117,0.556-0.182
c0.073,0.052,0.216,0.153,0.312,0.215c0.309,0.249,2.137,0.705,2.595,0.499c-0.34-0.223-2.191-0.611-2.505-0.698
c-0.118-0.018-0.247-0.029-0.335-0.038c0.163-0.058,0.326-0.118,0.487-0.183c0.073,0.047,0.217,0.139,0.312,0.192
c0.315,0.228,2.104,0.581,2.534,0.372c-0.346-0.193-2.158-0.492-2.461-0.565c-0.114-0.011-0.237-0.019-0.323-0.023
c0.165-0.065,0.328-0.134,0.49-0.206c0.073,0.041,0.217,0.121,0.312,0.168c0.316,0.205,2.065,0.464,2.472,0.25
c-0.352-0.163-2.123-0.375-2.416-0.433c-0.109-0.007-0.227-0.01-0.309-0.011c0.175-0.079,0.349-0.161,0.522-0.247
C23.988,20.079,24.041,20.067,24.083,20.056z"/>
</g>
</g>
<g id="Shape_16">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#DEDEDD" d="M12.83,17.813h1.107l0-0.017c-0.02-0.16-0.156-0.284-0.322-0.284
h-0.822c-0.179,0-0.324,0.145-0.324,0.324v0.702c0,0.179,0.145,0.324,0.324,0.324h0.822c0.168,0,0.306-0.127,0.323-0.29v-0.018
H12.83V17.813z M15.38,18.037h-0.86v-0.233h1.155c-0.017-0.163-0.155-0.291-0.323-0.291h-0.837c-0.179,0-0.324,0.145-0.324,0.324
v0.2c0.016,0.165,0.154,0.292,0.322,0.292h0.859v0.241h-1.18c0.016,0.165,0.154,0.293,0.322,0.293h0.862
c0.179,0,0.324-0.146,0.324-0.324v-0.21C15.686,18.166,15.548,18.037,15.38,18.037z M19.347,17.5h-0.843
c-0.171,0-0.311,0.14-0.311,0.312v0.729c0,0.171,0.14,0.311,0.311,0.311h0.843c0.172,0,0.311-0.14,0.311-0.311v-0.729
C19.658,17.64,19.519,17.5,19.347,17.5z M19.368,18.601h-0.884v-0.848h0.884V18.601z M16.997,18.201
c0.065,0.081,0.166,0.088,0.194,0.088h0.45v0.295h-0.944v-0.822h1.232c-0.024-0.149-0.154-0.262-0.307-0.262H16.72
c-0.171,0-0.31,0.141-0.31,0.312v0.729c0,0.171,0.139,0.311,0.31,0.311h0.902c0.161,0,0.293-0.119,0.309-0.275v-0.511h-1
C16.934,18.09,16.948,18.138,16.997,18.201z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g id="Shape_1_copy_20">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#15576F" points="16.028,0.921 0.298,12.349 6.307,30.841 25.75,30.841
31.758,12.349 "/>
</g>
</g>
<g id="Shape_1_copy_21">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#07A5C2" points="16.028,1.12 0.508,12.396 6.437,30.642 25.62,30.642
31.547,12.396 "/>
</g>
</g>
<g id="Shape_20">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#15576F" d="M8.108,30.673h1.665v-0.545H8.108V30.673z M11.563,30.674h1.665
v-0.546h-1.665V30.674z M15.339,30.674h1.665v-0.546h-1.665V30.674z M18.795,30.674h1.665v-0.546h-1.665V30.674z M22.539,30.674
h1.665v-0.546h-1.665V30.674z M25.635,28.918l0.519,0.167l0.513-1.584l-0.52-0.167L25.635,28.918z M26.699,25.63l0.52,0.168
l0.512-1.584l-0.52-0.168L26.699,25.63z M27.862,22.037l0.52,0.168l0.512-1.584l-0.519-0.169L27.862,22.037z M28.926,18.75
l0.519,0.167l0.513-1.584l-0.519-0.167L28.926,18.75z M30.591,13.604l-0.512,1.584l0.52,0.169l0.513-1.585L30.591,13.604z
M5.423,27.613l0.514,1.584l0.519-0.169l-0.513-1.584L5.423,27.613z M4.357,24.325l0.514,1.584l0.52-0.169l-0.513-1.583
L4.357,24.325z M3.194,20.734l0.513,1.583l0.52-0.168l-0.514-1.584L3.194,20.734z M2.129,17.446l0.513,1.583l0.519-0.168
l-0.513-1.583L2.129,17.446z M0.975,13.884l0.513,1.585l0.52-0.169l-0.513-1.584L0.975,13.884z M3.266,11.04l-0.32-0.442
l-1.348,0.976l0.32,0.443L3.266,11.04z M6.065,9.014l-0.32-0.441L4.396,9.549l0.32,0.441L6.065,9.014z M8.804,6.358L7.456,7.334
l0.32,0.443l1.349-0.977L8.804,6.358z M11.604,4.333l-1.349,0.976l0.321,0.442l1.349-0.977L11.604,4.333z M13.289,3.114
l0.32,0.442l1.349-0.976l-0.321-0.443L13.289,3.114z M28.944,10.482l-0.32,0.441l1.347,0.979l0.321-0.442L28.944,10.482z
M27.495,9.431l-1.347-0.979l-0.321,0.442l1.348,0.977L27.495,9.431z M22.771,6.676l1.347,0.979l0.32-0.442l-1.347-0.978
L22.771,6.676z M19.975,4.646l1.348,0.979l0.32-0.442l-1.348-0.979L19.975,4.646z M16.945,2.445l1.347,0.979l0.321-0.441
l-1.347-0.978L16.945,2.445z"/>
</g>
</g>
<g id="Shape_1_copy_20_1_">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#07A5C2" points="15.992,1.825 1.076,12.663 6.773,30.198 25.211,30.198
30.909,12.663 "/>
</g>
</g>
<g id="Shape_1_copy_22">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#C6C5C5" points="15.992,2.688 1.983,12.867 7.334,29.336 24.65,29.336
30.001,12.867 "/>
</g>
</g>
<g id="Shape_1_copy_20_2_">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#AE2324" points="15.992,3.176 2.431,13.027 7.611,28.971 24.374,28.971
29.553,13.027 "/>
</g>
</g>
<g id="Shape_1_copy_25">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#6B100F" points="15.992,3.176 16.119,28.971 24.374,28.971
29.553,13.027 "/>
</g>
</g>
<g>
<path fill="#DEDEDD" d="M10.069,26.302l0.543-0.711h0.367v1.917h-0.421v-1.197l-0.457,0.602h-0.063l-0.456-0.602v1.197H9.161
v-1.917h0.365L10.069,26.302z"/>
<path fill="#DEDEDD" d="M11.85,25.591v1.917h-0.421v-1.917H11.85z"/>
<path fill="#DEDEDD" d="M12.301,25.591h0.756c0.164,0,0.297,0.054,0.399,0.16c0.102,0.108,0.154,0.238,0.154,0.392
c0,0.211-0.097,0.367-0.291,0.469c0.084,0.043,0.166,0.161,0.243,0.353c0.075,0.192,0.149,0.374,0.221,0.544h-0.462
c-0.028-0.063-0.076-0.184-0.144-0.36c-0.069-0.178-0.128-0.292-0.176-0.343c-0.049-0.05-0.101-0.075-0.157-0.075h-0.121v0.778
h-0.421V25.591z M12.723,25.941v0.437h0.223c0.071,0,0.127-0.019,0.169-0.057c0.042-0.037,0.062-0.092,0.062-0.162
c0-0.146-0.08-0.218-0.241-0.218H12.723z"/>
<path fill="#DEDEDD" d="M15.092,25.591l0.751,1.917H15.39l-0.14-0.379h-0.757l-0.126,0.379h-0.446l0.683-1.917H15.092z
M15.127,26.794l-0.274-0.745l-0.248,0.745H15.127z"/>
<path fill="#DEDEDD" d="M17.527,25.723v0.42c-0.216-0.118-0.426-0.178-0.632-0.178c-0.198,0-0.352,0.058-0.458,0.17
c-0.107,0.114-0.161,0.259-0.161,0.434c0,0.169,0.053,0.306,0.161,0.409c0.107,0.104,0.249,0.156,0.423,0.156
c0.093,0,0.186-0.021,0.28-0.067v-0.225h-0.245v-0.351h0.667v0.783c-0.066,0.076-0.168,0.138-0.305,0.187
c-0.137,0.048-0.272,0.072-0.407,0.072c-0.294,0-0.536-0.093-0.725-0.276c-0.189-0.185-0.284-0.419-0.284-0.704
c0-0.292,0.094-0.528,0.284-0.713c0.189-0.183,0.434-0.273,0.735-0.273C17.108,25.566,17.331,25.618,17.527,25.723z"/>
<path fill="#DEDEDD" d="M19.242,27.156v0.352h-1.247v-1.917h1.229v0.351h-0.808v0.402h0.771v0.352h-0.771v0.461H19.242z"/>
</g>
<g id="Shape_18">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#30B14A" points="22.595,26.201 21.786,26.131 21.489,25.397
21.192,26.131 20.383,26.201 21.009,26.696 20.806,27.501 21.489,27.045 22.172,27.501 21.97,26.696 "/>
</g>
</g>
<g id="Shape_21">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#5A0F0F" points="24.267,16.688 24.064,11.535 24.315,11.535
24.315,11.152 24.049,11.152 24.028,10.592 21.004,10.592 20.981,11.152 20.587,11.152 20.587,11.535 20.966,11.535
20.764,16.688 18.54,16.672 18.349,10.448 18.667,10.448 18.667,10.063 18.338,10.063 18.316,9.345 14.716,9.345 14.692,10.063
14.284,10.063 14.284,10.448 14.679,10.448 14.476,16.672 12.701,16.672 12.512,11.535 12.796,11.535 12.796,11.152
12.497,11.152 12.476,10.576 9.42,10.576 9.401,11.152 9.068,11.152 9.068,11.535 9.388,11.535 9.212,16.672 8.493,16.672
8.493,17.071 24.78,17.056 24.78,16.688 "/>
</g>
</g>
<g id="Shape_21_copy">
<g>
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#56A5B3" points="23.851,16.271 23.649,11.12 23.9,11.12 23.9,10.735
23.634,10.735 23.611,10.176 20.587,10.176 20.566,10.735 20.172,10.735 20.172,11.12 20.55,11.12 20.348,16.271 18.124,16.256
17.934,10.032 18.251,10.032 18.251,9.647 17.922,9.647 17.899,8.928 14.3,8.928 14.277,9.647 13.868,9.647 13.868,10.032
14.264,10.032 14.061,16.256 12.284,16.256 12.095,11.12 12.38,11.12 12.38,10.735 12.082,10.735 12.06,10.159 9.005,10.159
8.985,10.735 8.653,10.735 8.653,11.12 8.972,11.12 8.796,16.256 8.076,16.256 8.076,16.656 24.364,16.64 24.364,16.271 "/>
</g>
</g>
<g id="Shape_22">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#3F3F3F" d="M9.708,12.384h0.256V11.76H9.708V12.384z M11.18,12.384h0.256
V11.76H11.18V12.384z M10.444,12.384h0.256V11.76h-0.256V12.384z M15.18,11.199h0.256v-0.623H15.18V11.199z M16.652,11.199h0.256
v-0.623h-0.256V11.199z M15.916,11.199h0.256v-0.623h-0.256V11.199z M21.292,12.384h0.256V11.76h-0.256V12.384z M22.764,11.76
v0.624h0.256V11.76H22.764z M22.028,12.384h0.256V11.76h-0.256V12.384z"/>
</g>
</g>
<g id="Shape_23">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#BFC25A" d="M14.208,21.103c-0.086-0.204-0.457-0.653-0.777-1.054
c-0.333-0.401-0.615-0.758-0.808-0.825c-0.078,0.187,0.09,0.63,0.394,1.07c0.291,0.438,0.719,0.875,0.884,0.986
c0.12,0.084,0.265,0.166,0.364,0.219c-0.25-0.011-0.501-0.027-0.751-0.05c-0.029-0.093-0.086-0.276-0.125-0.388
c-0.071-0.2-0.393-0.648-0.669-1.05c-0.288-0.404-0.532-0.762-0.71-0.836c-0.083,0.179,0.05,0.615,0.311,1.053
c0.25,0.436,0.626,0.872,0.775,0.988c0.106,0.084,0.237,0.169,0.328,0.225c-0.239-0.024-0.478-0.053-0.715-0.087
c-0.023-0.089-0.066-0.267-0.098-0.375c-0.057-0.194-0.332-0.638-0.569-1.038c-0.247-0.402-0.457-0.761-0.62-0.84
c-0.086,0.171,0.015,0.599,0.236,1.031c0.209,0.43,0.54,0.863,0.673,0.981c0.095,0.085,0.211,0.172,0.293,0.228
c-0.228-0.033-0.454-0.072-0.679-0.117c-0.017-0.087-0.049-0.258-0.071-0.361c-0.147-0.393-0.774-1.709-1.015-1.859
c-0.238,0.308,0.449,1.721,0.747,1.977c0.083,0.084,0.187,0.171,0.26,0.229c-0.198-0.039-0.396-0.085-0.592-0.132
c-0.012-0.084-0.034-0.248-0.05-0.35c-0.12-0.379-0.642-1.677-0.866-1.833c-0.238,0.295,0.34,1.68,0.608,1.936
c0.075,0.084,0.168,0.17,0.233,0.229c-0.189-0.048-0.377-0.1-0.564-0.153c-0.008-0.082-0.021-0.239-0.031-0.337
c-0.093-0.366-0.521-1.64-0.727-1.8c-0.236,0.28,0.238,1.632,0.48,1.889c0.066,0.083,0.148,0.168,0.208,0.226
c-0.186-0.055-0.37-0.113-0.552-0.176c-0.003-0.077-0.007-0.229-0.013-0.32c-0.068-0.354-0.407-1.6-0.597-1.763
c-0.234,0.268,0.146,1.584,0.361,1.838c0.057,0.081,0.13,0.164,0.182,0.223c-0.162-0.056-0.323-0.116-0.483-0.177
c0-0.076,0.004-0.22,0.003-0.309c-0.046-0.344-0.31-1.559-0.485-1.721c-0.231,0.255,0.066,1.536,0.258,1.785
c0.05,0.079,0.114,0.162,0.162,0.219c-0.164-0.063-0.326-0.131-0.487-0.202c0.004-0.072,0.015-0.208,0.019-0.295
c-0.026-0.328-0.215-1.508-0.376-1.672c-0.229,0.241-0.011,1.485,0.158,1.729c0.043,0.076,0.1,0.157,0.141,0.213
c-0.159-0.069-0.316-0.142-0.473-0.219c-0.041-0.036-0.09-0.078-0.139-0.118c-0.228-0.121-1.946-1.255-2.563-1.557
c0.203,0.483,2.064,1.655,2.453,1.693c0.042,0.012,0.094,0.023,0.145,0.033c0.172,0.086,0.347,0.168,0.522,0.247
c-0.082,0.001-0.2,0.003-0.309,0.011c-0.293,0.058-2.064,0.269-2.416,0.433c0.406,0.214,2.155-0.045,2.472-0.25
c0.094-0.047,0.237-0.127,0.311-0.168c0.163,0.072,0.326,0.141,0.49,0.206c-0.085,0.005-0.209,0.013-0.322,0.023
c-0.304,0.073-2.115,0.372-2.461,0.565c0.431,0.209,2.219-0.145,2.534-0.372c0.095-0.054,0.238-0.146,0.312-0.192
c0.162,0.064,0.324,0.125,0.487,0.183c-0.089,0.009-0.218,0.021-0.336,0.038c-0.313,0.087-2.165,0.476-2.504,0.698
c0.458,0.206,2.286-0.25,2.596-0.499c0.095-0.062,0.239-0.163,0.311-0.215c0.185,0.064,0.37,0.125,0.557,0.182
c-0.093,0.013-0.229,0.032-0.351,0.055c-0.325,0.104-2.22,0.597-2.552,0.854c0.486,0.196,2.357-0.372,2.664-0.648
c0.095-0.067,0.237-0.182,0.309-0.24c0.189,0.057,0.379,0.109,0.569,0.157c-0.097,0.019-0.239,0.044-0.367,0.073
c-0.33,0.123-2.273,0.724-2.598,1.016c0.517,0.188,2.43-0.5,2.733-0.802c0.095-0.077,0.236-0.204,0.307-0.268
c0.199,0.05,0.397,0.096,0.597,0.137c-0.101,0.023-0.249,0.058-0.383,0.094c-0.34,0.142-2.329,0.859-2.645,1.188
c0.548,0.175,2.506-0.64,2.804-0.972c0.095-0.085,0.234-0.225,0.304-0.294c0.227,0.046,0.455,0.086,0.683,0.122
c-0.105,0.029-0.261,0.071-0.4,0.117c-0.353,0.166-2.392,1.019-2.695,1.39c0.585,0.159,2.592-0.805,2.883-1.168
c0.094-0.094,0.231-0.25,0.299-0.326c0.239,0.035,0.479,0.066,0.72,0.09c-0.11,0.035-0.274,0.091-0.42,0.146
c-0.364,0.191-2.454,1.191-2.746,1.604c0.625,0.142,2.682-0.984,2.964-1.38c0.092-0.105,0.227-0.276,0.292-0.36
c0.252,0.023,0.505,0.042,0.757,0.054c-0.115,0.043-0.287,0.109-0.439,0.175c-0.375,0.221-2.517,1.381-2.794,1.837
c0.669,0.119,2.775-1.183,3.047-1.612c0.09-0.116,0.221-0.305,0.284-0.396c0.307,0.013,0.614,0.018,0.921,0.012
c0.004-0.03,0.01-0.072,0.011-0.124c-0.306,0.006-0.61,0.004-0.914-0.007C14.328,21.408,14.257,21.218,14.208,21.103z
M24.083,20.056c0.389-0.038,2.25-1.21,2.453-1.693c-0.617,0.302-2.336,1.436-2.564,1.557c-0.049,0.04-0.098,0.082-0.138,0.118
c-0.156,0.077-0.314,0.149-0.473,0.219c0.041-0.056,0.098-0.137,0.141-0.213c0.168-0.243,0.387-1.487,0.158-1.729
c-0.161,0.164-0.351,1.344-0.377,1.673c0.005,0.086,0.015,0.222,0.02,0.294c-0.161,0.071-0.323,0.139-0.486,0.202
c0.046-0.057,0.111-0.14,0.162-0.219c0.191-0.249,0.489-1.53,0.258-1.785c-0.175,0.162-0.438,1.377-0.486,1.721
c0,0.089,0.003,0.232,0.005,0.309c-0.161,0.061-0.322,0.121-0.484,0.177c0.053-0.059,0.125-0.142,0.183-0.223
c0.215-0.254,0.594-1.57,0.361-1.838c-0.19,0.163-0.529,1.409-0.598,1.763c-0.004,0.092-0.008,0.243-0.012,0.32
c-0.183,0.063-0.367,0.121-0.553,0.176c0.059-0.058,0.142-0.143,0.208-0.226c0.242-0.257,0.716-1.608,0.481-1.889
c-0.206,0.16-0.634,1.434-0.728,1.8c-0.01,0.098-0.022,0.255-0.03,0.337c-0.188,0.054-0.376,0.105-0.565,0.153
c0.066-0.06,0.158-0.146,0.233-0.229c0.268-0.256,0.846-1.641,0.609-1.936c-0.224,0.156-0.747,1.454-0.866,1.833
c-0.017,0.102-0.038,0.266-0.051,0.35c-0.196,0.048-0.394,0.093-0.592,0.132c0.073-0.058,0.176-0.145,0.261-0.229
c0.298-0.256,0.985-1.669,0.747-1.977c-0.241,0.15-0.868,1.467-1.014,1.859c-0.023,0.104-0.055,0.274-0.072,0.361
c-0.226,0.045-0.452,0.084-0.679,0.117c0.081-0.056,0.198-0.143,0.292-0.228c0.133-0.118,0.463-0.552,0.674-0.981
c0.22-0.433,0.321-0.86,0.235-1.031c-0.164,0.079-0.373,0.438-0.621,0.84c-0.237,0.4-0.512,0.844-0.569,1.038
c-0.03,0.108-0.075,0.286-0.098,0.375c-0.238,0.034-0.476,0.063-0.715,0.087c0.09-0.056,0.22-0.141,0.327-0.225
c0.149-0.116,0.526-0.553,0.775-0.988c0.26-0.438,0.394-0.874,0.311-1.053c-0.178,0.074-0.422,0.432-0.71,0.836
c-0.277,0.401-0.598,0.85-0.669,1.05c-0.039,0.111-0.095,0.295-0.125,0.388c-0.25,0.022-0.501,0.039-0.752,0.05
c0.1-0.053,0.245-0.135,0.365-0.219c0.166-0.111,0.593-0.547,0.885-0.986c0.304-0.44,0.471-0.884,0.395-1.07
c-0.193,0.067-0.476,0.424-0.809,0.825c-0.32,0.4-0.69,0.85-0.777,1.054c-0.048,0.115-0.119,0.306-0.155,0.399
c-0.305,0.011-0.609,0.013-0.914,0.007c0.001,0.052,0.006,0.094,0.011,0.124c0.307,0.006,0.613,0.001,0.92-0.012
c0.063,0.091,0.193,0.279,0.284,0.396c0.272,0.43,2.378,1.731,3.047,1.612c-0.277-0.456-2.419-1.616-2.795-1.837
c-0.152-0.065-0.324-0.132-0.439-0.175c0.253-0.012,0.506-0.03,0.757-0.054c0.066,0.084,0.2,0.255,0.292,0.36
c0.283,0.396,2.338,1.521,2.964,1.38c-0.292-0.413-2.38-1.413-2.746-1.604c-0.146-0.055-0.309-0.11-0.419-0.146
c0.24-0.023,0.48-0.055,0.72-0.09c0.067,0.076,0.206,0.232,0.299,0.326c0.292,0.363,2.298,1.327,2.882,1.168
c-0.304-0.371-2.342-1.224-2.695-1.39c-0.139-0.046-0.295-0.088-0.401-0.117c0.229-0.036,0.457-0.076,0.684-0.122
c0.069,0.069,0.21,0.209,0.304,0.294c0.299,0.332,2.256,1.146,2.804,0.972c-0.315-0.329-2.303-1.047-2.645-1.188
c-0.133-0.036-0.281-0.07-0.382-0.094c0.2-0.041,0.398-0.087,0.596-0.137c0.071,0.063,0.212,0.19,0.308,0.268
c0.303,0.302,2.217,0.989,2.732,0.802c-0.325-0.292-2.268-0.893-2.598-1.016c-0.128-0.029-0.27-0.055-0.366-0.073
c0.19-0.048,0.379-0.101,0.569-0.157c0.071,0.059,0.214,0.173,0.309,0.24c0.307,0.276,2.177,0.845,2.664,0.648
c-0.332-0.258-2.227-0.75-2.551-0.854c-0.124-0.022-0.258-0.042-0.351-0.055c0.187-0.057,0.372-0.117,0.556-0.182
c0.073,0.052,0.216,0.153,0.312,0.215c0.309,0.249,2.137,0.705,2.595,0.499c-0.34-0.223-2.191-0.611-2.505-0.698
c-0.118-0.018-0.247-0.029-0.335-0.038c0.163-0.058,0.326-0.118,0.487-0.183c0.073,0.047,0.217,0.139,0.312,0.192
c0.315,0.228,2.104,0.581,2.534,0.372c-0.346-0.193-2.158-0.492-2.461-0.565c-0.114-0.011-0.237-0.019-0.323-0.023
c0.165-0.065,0.328-0.134,0.49-0.206c0.073,0.041,0.217,0.121,0.312,0.168c0.316,0.205,2.065,0.464,2.472,0.25
c-0.352-0.163-2.123-0.375-2.416-0.433c-0.109-0.007-0.227-0.01-0.309-0.011c0.175-0.079,0.349-0.161,0.522-0.247
C23.988,20.079,24.041,20.067,24.083,20.056z"/>
</g>
</g>
<g id="Shape_16">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#DEDEDD" d="M12.83,17.813h1.107l0-0.017c-0.02-0.16-0.156-0.284-0.322-0.284
h-0.822c-0.179,0-0.324,0.145-0.324,0.324v0.702c0,0.179,0.145,0.324,0.324,0.324h0.822c0.168,0,0.306-0.127,0.323-0.29v-0.018
H12.83V17.813z M15.38,18.037h-0.86v-0.233h1.155c-0.017-0.163-0.155-0.291-0.323-0.291h-0.837c-0.179,0-0.324,0.145-0.324,0.324
v0.2c0.016,0.165,0.154,0.292,0.322,0.292h0.859v0.241h-1.18c0.016,0.165,0.154,0.293,0.322,0.293h0.862
c0.179,0,0.324-0.146,0.324-0.324v-0.21C15.686,18.166,15.548,18.037,15.38,18.037z M19.347,17.5h-0.843
c-0.171,0-0.311,0.14-0.311,0.312v0.729c0,0.171,0.14,0.311,0.311,0.311h0.843c0.172,0,0.311-0.14,0.311-0.311v-0.729
C19.658,17.64,19.519,17.5,19.347,17.5z M19.368,18.601h-0.884v-0.848h0.884V18.601z M16.997,18.201
c0.065,0.081,0.166,0.088,0.194,0.088h0.45v0.295h-0.944v-0.822h1.232c-0.024-0.149-0.154-0.262-0.307-0.262H16.72
c-0.171,0-0.31,0.141-0.31,0.312v0.729c0,0.171,0.139,0.311,0.31,0.311h0.902c0.161,0,0.293-0.119,0.309-0.275v-0.511h-1
C16.934,18.09,16.948,18.138,16.997,18.201z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 211 KiB

After

Width:  |  Height:  |  Size: 213 KiB

Some files were not shown because too many files have changed in this diff Show More