Commit 55da73f0 authored by iamnameer's avatar iamnameer

first commit

parents
{
"presets": ["es2015"],
"compact": false
}
{
"directory": "bower_components"
}
.DS_Store
node_modules
npm-debug.log
bower_components
dist
*.swp
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}\\gulpfile.js"
}
]
}
\ No newline at end of file
# Changelog
## Version 1.0 (November 19, 2015)
Initial release.
# Your project's server will run on localhost:xxxx at this port
PORT: 8000
# Autoprefixer will make sure your CSS works with these browsers
COMPATIBILITY:
- "last 2 versions"
- "ie >= 9"
- "ios >= 7"
# UnCSS will use these settings
UNCSS_OPTIONS:
html:
- "src/**/*.html"
ignore:
- !!js/regexp .foundation-mq
- !!js/regexp ^\.is-.*
# Gulp will reference these paths when it copies files
PATHS:
# Path to dist folder
dist: "dist"
# Paths to static assets that aren't images, CSS, or JavaScript
assets:
- "src/assets/**/*"
- "!src/assets/{img,js,scss}/**/*"
# Paths to Sass libraries, which can then be loaded with @import
sass:
- "node_modules/foundation-sites/scss"
- "node_modules/motion-ui/src"
# Paths to JavaScript entry points for webpack to bundle modules
entries:
- "src/assets/js/app.js"
'use strict';
import plugins from 'gulp-load-plugins';
import yargs from 'yargs';
import browser from 'browser-sync';
import gulp from 'gulp';
import panini from 'panini';
import rimraf from 'rimraf';
import sherpa from 'style-sherpa';
import yaml from 'js-yaml';
import fs from 'fs';
import webpackStream from 'webpack-stream';
import webpack2 from 'webpack';
import named from 'vinyl-named';
// Load all Gulp plugins into one variable
const $ = plugins();
// Check for --production flag
const PRODUCTION = !!(yargs.argv.production);
// Load settings from settings.yml
const { COMPATIBILITY, PORT, UNCSS_OPTIONS, PATHS } = loadConfig();
function loadConfig() {
let ymlFile = fs.readFileSync('config.yml', 'utf8');
return yaml.load(ymlFile);
}
// Build the "dist" folder by running all of the below tasks
gulp.task('build',
gulp.series(clean, gulp.parallel(pages, sass, javascript, images, copy), styleGuide));
// Build the site, run the server, and watch for file changes
gulp.task('default',
gulp.series('build', server, watch));
// Delete the "dist" folder
// This happens every time a build starts
function clean(done) {
rimraf(PATHS.dist, done);
}
// Copy files out of the assets folder
// This task skips over the "img", "js", and "scss" folders, which are parsed separately
function copy() {
return gulp.src(PATHS.assets)
.pipe(gulp.dest(PATHS.dist + '/assets'));
}
// Copy page templates into finished HTML files
function pages() {
return gulp.src('src/pages/**/*.{html,hbs,handlebars}')
.pipe(panini({
root: 'src/pages/',
layouts: 'src/layouts/',
partials: 'src/partials/',
data: 'src/data/',
helpers: 'src/helpers/'
}))
.pipe(gulp.dest(PATHS.dist));
}
// Load updated HTML templates and partials into Panini
function resetPages(done) {
panini.refresh();
done();
}
// Generate a style guide from the Markdown content and HTML template in styleguide/
function styleGuide(done) {
sherpa('src/styleguide/index.md', {
output: PATHS.dist + '/styleguide.html',
template: 'src/styleguide/template.html'
}, done);
}
// Compile Sass into CSS
// In production, the CSS is compressed
function sass() {
return gulp.src('src/assets/scss/app.scss')
.pipe($.sourcemaps.init())
.pipe($.sass({
includePaths: PATHS.sass
})
.on('error', $.sass.logError))
.pipe($.autoprefixer({
browsers: COMPATIBILITY
}))
// Comment in the pipe below to run UnCSS in production
//.pipe($.if(PRODUCTION, $.uncss(UNCSS_OPTIONS)))
.pipe($.if(PRODUCTION, $.cleanCss({ compatibility: 'ie9' })))
.pipe($.if(!PRODUCTION, $.sourcemaps.write()))
.pipe(gulp.dest(PATHS.dist + '/assets/css'))
.pipe(browser.reload({ stream: true }));
}
let webpackConfig = {
module: {
rules: [
{
test: /.js$/,
use: [
{
loader: 'babel-loader'
}
]
}
]
}
}
// Combine JavaScript into one file
// In production, the file is minified
function javascript() {
return gulp.src(PATHS.entries)
.pipe(named())
.pipe($.sourcemaps.init())
.pipe(webpackStream(webpackConfig, webpack2))
.pipe($.if(PRODUCTION, $.uglify()
.on('error', e => { console.log(e); })
))
.pipe($.if(!PRODUCTION, $.sourcemaps.write()))
.pipe(gulp.dest(PATHS.dist + '/assets/js'));
}
// Copy images to the "dist" folder
// In production, the images are compressed
function images() {
return gulp.src('src/assets/img/**/*')
.pipe($.if(PRODUCTION, $.imagemin({
progressive: true
})))
.pipe(gulp.dest(PATHS.dist + '/assets/img'));
}
// Start a server with BrowserSync to preview the site in
function server(done) {
browser.init({
server: PATHS.dist, port: PORT
});
done();
}
// Reload the browser with BrowserSync
function reload(done) {
browser.reload();
done();
}
// Watch for changes to static assets, pages, Sass, and JavaScript
function watch() {
gulp.watch(PATHS.assets, copy);
gulp.watch('src/pages/**/*.html').on('all', gulp.series(pages, browser.reload));
gulp.watch('src/{layouts,partials}/**/*.html').on('all', gulp.series(resetPages, pages, browser.reload));
gulp.watch('src/assets/scss/**/*.scss').on('all', sass);
gulp.watch('src/assets/js/**/*.js').on('all', gulp.series(javascript, browser.reload));
gulp.watch('src/assets/img/**/*').on('all', gulp.series(images, browser.reload));
gulp.watch('src/styleguide/**').on('all', gulp.series(styleGuide, browser.reload));
}
{
"name": "foundation-zurb-template",
"version": "1.0.0",
"description": "Official ZURB Template for Foundation for Sites.",
"main": "gulpfile.js",
"scripts": {
"start": "gulp",
"build": "gulp build --production"
},
"author": "ZURB <foundation@zurb.com>",
"license": "MIT",
"dependencies": {
"foundation-sites": "~6.4.1",
"jquery": ">=3.0.0",
"what-input": "^4.1.3",
"motion-ui": "~1.2.2"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.7.2",
"browser-sync": "^2.10.0",
"gulp": "gulpjs/gulp#4.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^3.3.1",
"gulp-cli": "^1.2.1",
"gulp-concat": "^2.5.2",
"gulp-extname": "^0.2.0",
"gulp-if": "^2.0.0",
"gulp-imagemin": "^2.2.1",
"gulp-load-plugins": "^1.1.0",
"gulp-sass": "^2.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.2.0",
"gulp-uncss": "^1.0.1",
"js-yaml": "^3.4.6",
"motion-ui": "^1.2.3",
"panini": "^1.3.0",
"rimraf": "^2.4.3",
"style-sherpa": "^1.0.0",
"vinyl-named": "^1.1.0",
"webpack": "^2.6.1",
"webpack-stream": "^3.2.0",
"yargs": "^3.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zurb/foundation-zurb-template.git"
},
"bugs": {
"url": "https://github.com/zurb/foundation-sites/issues",
"email": "foundation@zurb.com"
},
"babel": {
"presets": [
"es2015"
]
},
"private": true
}
# ZURB Template
[![devDependency Status](https://david-dm.org/zurb/foundation-zurb-template/dev-status.svg)](https://david-dm.org/zurb/foundation-zurb-template#info=devDependencies)
**Please open all issues with this template on the main [Foundation for Sites](https://github.com/zurb/foundation-sites/issues) repo.**
This is the official ZURB Template for use with [Foundation for Sites](http://foundation.zurb.com/sites). We use this template at ZURB to deliver static code to our clients. It has a Gulp-powered build system with these features:
- Handlebars HTML templates with Panini
- Sass compilation and prefixing
- JavaScript module bundling with webpack
- Built-in BrowserSync server
- For production builds:
- CSS compression
- JavaScript compression
- Image compression
## Installation
To use this template, your computer needs:
- [NodeJS](https://nodejs.org/en/) (0.12 or greater)
- [Git](https://git-scm.com/)
This template can be installed with the Foundation CLI, or downloaded and set up manually.
### Using the CLI
Install the Foundation CLI with this command:
```bash
npm install foundation-cli --global
```
Use this command to set up a blank Foundation for Sites project with this template:
```bash
foundation new --framework sites --template zurb
```
The CLI will prompt you to give your project a name. The template will be downloaded into a folder with this name.
Now `cd` to your project name and to start your project run
```bash
foundation watch
```
### Manual Setup
To manually set up the template, first download it with Git:
```bash
git clone https://github.com/zurb/foundation-zurb-template projectname
```
Then open the folder in your command line, and install the needed dependencies:
```bash
cd projectname
npm install
```
Finally, run `npm start` to run Gulp. Your finished site will be created in a folder called `dist`, viewable at this URL:
```
http://localhost:8000
```
To create compressed, production-ready assets, run `npm run build`.
# duckcreek-client
@font-face {
font-family: 'virtualx';
src: url('virtualx.eot?m9wp1q');
src: url('virtualx.eot?m9wp1q#iefix') format('embedded-opentype'), url('virtualx.ttf?m9wp1q') format('truetype'), url('virtualx.woff?m9wp1q') format('woff'), url('virtualx.svg?m9wp1q#virtualx') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
font-family: 'virtualx' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-Banner-arrow:before {
content: "\e900";
}
.icon-banner-close-button:before {
content: "\e901";
}
.icon-Banner-mouse:before {
content: "\e902";
}
.icon-banner-tick:before {
content: "\e903";
}
.icon-contacts-menu:before {
content: "\e904";
}
.icon-customizing-services:before {
content: "\e905";
}
.icon-demo:before {
content: "\e906";
}
.icon-diagonal-arrow:before {
content: "\e907";
}
.icon-equations:before {
content: "\e908";
}
.icon-exams:before {
content: "\e909";
}
.icon-features-menu:before {
content: "\e90a";
}
.icon-home-menu:before {
content: "\e90b";
}
.icon-hosted-services:before {
content: "\e90c";
}
.icon-integration-services .path1:before {
content: "\e90d";
color: rgb(0, 0, 0);
}
.icon-integration-services .path2:before {
content: "\e90e";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path3:before {
content: "\e90f";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path4:before {
content: "\e910";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path5:before {
content: "\e911";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path6:before {
content: "\e912";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path7:before {
content: "\e913";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path8:before {
content: "\e914";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path9:before {
content: "\e915";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path10:before {
content: "\e916";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path11:before {
content: "\e917";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path12:before {
content: "\e918";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path13:before {
content: "\e919";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path14:before {
content: "\e91a";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path15:before {
content: "\e91b";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path16:before {
content: "\e91c";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path17:before {
content: "\e91d";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path18:before {
content: "\e91e";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path19:before {
content: "\e91f";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path20:before {
content: "\e920";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path21:before {
content: "\e921";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path22:before {
content: "\e922";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path23:before {
content: "\e923";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path24:before {
content: "\e924";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path25:before {
content: "\e925";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path26:before {
content: "\e926";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path27:before {
content: "\e927";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path28:before {
content: "\e928";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path29:before {
content: "\e929";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path30:before {
content: "\e92a";
margin-left: -1em;
color: rgb(2, 2, 2);
}
.icon-integration-services .path31:before {
content: "\e92b";
margin-left: -1em;
color: rgb(2, 2, 2);
}
.icon-integration-services .path32:before {
content: "\e92c";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path33:before {
content: "\e92d";
margin-left: -1em;
color: rgb(2, 2, 2);
}
.icon-integration-services .path34:before {
content: "\e92e";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path35:before {
content: "\e92f";
margin-left: -1em;
color: rgb(2, 2, 2);
}
.icon-integration-services .path36:before {
content: "\e930";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path37:before {
content: "\e931";
margin-left: -1em;
color: rgb(2, 2, 2);
}
.icon-integration-services .path38:before {
content: "\e932";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path39:before {
content: "\e933";
margin-left: -1em;
color: rgb(2, 2, 2);
}
.icon-integration-services .path40:before {
content: "\e934";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path41:before {
content: "\e935";
margin-left: -1em;
color: rgb(2, 2, 2);
}
.icon-integration-services .path42:before {
content: "\e936";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path43:before {
content: "\e937";
margin-left: -1em;
color: rgb(2, 2, 2);
}
.icon-integration-services .path44:before {
content: "\e938";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path45:before {
content: "\e939";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path46:before {
content: "\e93a";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path47:before {
content: "\e93b";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path48:before {
content: "\e93c";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path49:before {
content: "\e93d";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path50:before {
content: "\e93e";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path51:before {
content: "\e93f";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path52:before {
content: "\e940";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path53:before {
content: "\e941";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path54:before {
content: "\e942";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path55:before {
content: "\e943";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path56:before {
content: "\e944";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path57:before {
content: "\e945";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path58:before {
content: "\e946";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path59:before {
content: "\e947";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path60:before {
content: "\e948";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path61:before {
content: "\e949";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path62:before {
content: "\e94a";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path63:before {
content: "\e94b";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path64:before {
content: "\e94c";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path65:before {
content: "\e94d";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path66:before {
content: "\e94e";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path67:before {
content: "\e94f";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path68:before {
content: "\e950";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path69:before {
content: "\e951";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path70:before {
content: "\e952";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path71:before {
content: "\e953";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path72:before {
content: "\e954";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path73:before {
content: "\e955";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-integration-services .path74:before {
content: "\e956";
margin-left: -1em;
color: rgb(193, 3, 43);
}
.icon-integration-services .path75:before {
content: "\e957";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-lock:before {
content: "\e958";
}
.icon-organise .path1:before {
content: "\e959";
color: rgb(255, 255, 255);
}
.icon-organise .path2:before {
content: "\e95a";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-organise .path3:before {
content: "\e95b";
margin-left: -1em;
color: rgb(255, 255, 255);
}
.icon-organise .path4:before {
content: "\e95c";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-organise .path5:before {
content: "\e95d";
margin-left: -1em;
color: rgb(255, 255, 255);
}
.icon-organise .path6:before {
content: "\e95e";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-pricetag-menu:before {
content: "\e95f";
}
.icon-price-wheel:before {
content: "\e960";
}
.icon-questions .path1:before {
content: "\e961";
color: rgb(255, 255, 255);
}
.icon-questions .path2:before {
content: "\e962";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-questions .path3:before {
content: "\e963";
margin-left: -1em;
color: rgb(255, 255, 255);
}
.icon-questions .path4:before {
content: "\e964";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-questions .path5:before {
content: "\e965";
margin-left: -1em;
color: rgb(255, 255, 255);
}
.icon-questions .path6:before {
content: "\e966";
margin-left: -1em;
color: rgb(0, 0, 0);
}
.icon-questions-1:before {
content: "\e967";
}
.icon-rocket:before {
content: "\e968";
}
.icon-search:before {
content: "\e969";
}
.icon-secure-delivery:before {
content: "\e96a";
}
.icon-security:before {
content: "\e96b";
}
.icon-services-menu:before {
content: "\e96c";
}
.icon-success:before {
content: "\e96d";
}
.icon-support:before {
content: "\e96e";
}
.icon-wheel:before {
content: "\e96f";
}
\ No newline at end of file
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="icomoon" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="Banner-arrow" d="M512-43.52c271.36 0 492.544 220.16 492.544 491.52s-221.184 491.52-492.544 491.52c-270.336 1.024-491.52-220.16-491.52-491.52 0-270.336 221.184-491.52 491.52-491.52v0zM512 870.912c232.448 0 422.912-189.44 422.912-422.912 0-232.448-189.44-422.912-422.912-422.912s-421.888 190.464-421.888 422.912c0 233.472 189.44 422.912 421.888 422.912v0zM399.36 203.264c7.168-7.168 15.36-10.24 24.576-10.24 8.192 0 17.408 3.072 24.576 10.24l223.232 223.232c7.168 7.168 10.24 15.36 10.24 24.576s-3.072 17.408-10.24 24.576l-223.232 223.232c-13.312 13.312-35.84 13.312-49.152 0s-13.312-35.84 0-49.152l198.656-198.656-198.656-198.656c-14.336-14.336-14.336-35.84 0-49.152v0z" />
<glyph unicode="&#xe901;" glyph-name="banner-close-button" d="M509.952 949.76c-275.456 0-499.712-224.256-499.712-499.712s224.256-499.712 499.712-499.712c275.456 0 499.712 224.256 499.712 499.712s-224.256 499.712-499.712 499.712v0zM509.952-10.752c-253.952 0-460.8 206.848-460.8 460.8s206.848 460.8 460.8 460.8c253.952 0 460.8-206.848 460.8-460.8s-206.848-460.8-460.8-460.8v0zM696.32 636.416c-7.168 7.168-19.456 7.168-27.648 0l-158.72-158.72-159.744 158.72c-7.168 7.168-19.456 7.168-26.624 0s-7.168-19.456 0-26.624l159.744-159.744-159.744-159.744c-7.168-7.168-7.168-19.456 0-27.648 4.096-4.096 8.192-6.144 13.312-6.144s10.24 2.048 13.312 6.144l159.744 159.744 159.744-158.72c4.096-4.096 9.216-6.144 13.312-6.144 5.12 0 10.24 2.048 13.312 6.144 7.168 7.168 7.168 19.456 0 27.648l-159.744 158.72 159.744 159.744c8.192 7.168 8.192 19.456 0 26.624v0z" />
<glyph unicode="&#xe902;" glyph-name="Banner-mouse" d="M504.832 929.28c-176.128 0-320.512-143.36-320.512-320.512v-321.536c0-177.152 144.384-320.512 320.512-320.512 177.152 0 320.512 143.36 320.512 320.512v321.536c1.024 177.152-143.36 320.512-320.512 320.512v0zM790.528 287.232c0-156.672-128-284.672-285.696-284.672-156.672 0-284.672 128-284.672 284.672v321.536c0 156.672 128 284.672 284.672 284.672 157.696 0 285.696-128 285.696-284.672v-321.536zM504.832 822.784c-10.24 0-17.408-8.192-17.408-17.408v-161.792c0-10.24 8.192-17.408 17.408-17.408 10.24 0 17.408 8.192 17.408 17.408v160.768c1.024 10.24-7.168 18.432-17.408 18.432v0z" />
<glyph unicode="&#xe903;" glyph-name="banner-tick" d="M314.368 528.896l-67.584-67.584 216.064-217.088 481.28 481.28-67.584 67.584-412.672-412.672-149.504 148.48zM897.024 437.76c0-211.968-173.056-385.024-385.024-385.024s-385.024 173.056-385.024 385.024 173.056 385.024 385.024 385.024c38.912 0 71.68-5.12 105.472-14.336l76.8 76.8c-57.344 19.456-119.808 33.792-182.272 33.792-265.216 0-481.28-216.064-481.28-481.28s216.064-481.28 481.28-481.28 481.28 217.088 481.28 481.28h-96.256z" />
<glyph unicode="&#xe904;" glyph-name="contacts-menu" d="M748.544 417.28c0 36.864-29.696 66.56-66.56 66.56s-66.56-29.696-66.56-66.56v-32.768c0-36.864 29.696-66.56 66.56-66.56 14.336 0 27.648 4.096 37.888 12.288 8.192-16.384 24.576-28.672 45.056-28.672 27.648 0 49.152 22.528 49.152 49.152v66.56c0 72.704-59.392 132.096-132.096 132.096s-132.096-59.392-132.096-132.096v-49.152c0-72.704 59.392-132.096 132.096-132.096h82.944c27.648 0 49.152 22.528 49.152 49.152h-32.768c0-9.216-7.168-16.384-16.384-16.384h-82.944c-54.272 0-99.328 45.056-99.328 99.328v49.152c0 54.272 45.056 99.328 99.328 99.328s99.328-45.056 99.328-99.328v-66.56c0-9.216-7.168-16.384-16.384-16.384s-16.384 7.168-16.384 16.384v66.56zM715.776 384.512c0-18.432-15.36-32.768-32.768-32.768-18.432 0-32.768 15.36-32.768 32.768v32.768c0 18.432 15.36 32.768 32.768 32.768 18.432 0 32.768-15.36 32.768-32.768v-32.768zM530.432 28.16c-10.24-2.048-20.48-4.096-31.744-5.12l4.096-32.768c11.264 1.024 22.528 3.072 33.792 5.12l-6.144 32.768zM466.944 20.992c-10.24 0-21.504 0-31.744 0l-1.024-33.792c5.12 0 11.264 0 16.384 0 6.144 0 12.288 0 17.408 0l-1.024 33.792zM311.296 44.544l-11.264-30.72c10.24-4.096 21.504-7.168 32.768-10.24l9.216 31.744c-10.24 2.048-20.48 6.144-30.72 9.216zM372.736 28.16l-6.144-32.768c11.264-2.048 22.528-4.096 33.792-5.12l4.096 32.768c-11.264 1.024-21.504 3.072-31.744 5.12zM252.928 70.144l-15.36-28.672c10.24-5.12 20.48-10.24 30.72-15.36l13.312 29.696c-9.216 5.12-19.456 9.216-28.672 14.336zM152.576 147.968l-23.552-22.528c8.192-8.192 16.384-16.384 24.576-23.552l22.528 24.576c-8.192 6.144-16.384 13.312-23.552 21.504zM199.68 104.96l-20.48-26.624c9.216-7.168 18.432-13.312 27.648-19.456l18.432 27.648c-8.192 6.144-17.408 12.288-25.6 18.432zM591.872 44.544c-10.24-4.096-20.48-7.168-30.72-9.216l9.216-31.744c11.264 3.072 22.528 6.144 32.768 10.24l-11.264 30.72zM703.488 105.984c-8.192-6.144-17.408-12.288-25.6-18.432l18.432-27.648c9.216 6.144 19.456 13.312 27.648 19.456l-20.48 26.624zM749.568 147.968c-7.168-7.168-14.336-14.336-21.504-21.504l22.528-24.576c8.192 7.168 16.384 15.36 23.552 22.528l-24.576 23.552zM650.24 71.168c-9.216-5.12-18.432-10.24-28.672-14.336l13.312-29.696c10.24 5.12 20.48 10.24 30.72 15.36l-15.36 28.672zM398.336 910.848c-11.264-1.024-22.528-3.072-33.792-5.12l6.144-32.768c10.24 2.048 20.48 4.096 31.744 5.12l-4.096 32.768zM433.152 913.92l1.024-32.768c10.24 0 21.504 0 31.744 0l1.024 32.768c-11.264 0-22.528 0-33.792 0zM331.776 897.536c-11.264-3.072-22.528-6.144-32.768-10.24l11.264-30.72c10.24 4.096 20.48 7.168 30.72 9.216l-9.216 31.744zM266.24 875.008c-10.24-5.12-20.48-10.24-30.72-15.36l16.384-28.672c9.216 5.12 18.432 10.24 28.672 14.336l-14.336 29.696zM569.344 898.56l-9.216-31.744c10.24-3.072 20.48-6.144 30.72-9.216l11.264 30.72c-11.264 4.096-22.528 7.168-32.768 10.24zM501.76 911.872l-4.096-33.792c10.24-1.024 21.504-3.072 31.744-5.12l6.144 32.768c-11.264 3.072-22.528 4.096-33.792 6.144zM206.848 841.216c-9.216-6.144-19.456-13.312-27.648-19.456l20.48-26.624c8.192 6.144 17.408 12.288 25.6 18.432l-18.432 27.648zM694.272 842.24l-18.432-27.648c9.216-6.144 17.408-12.288 25.6-18.432l20.48 26.624c-9.216 6.144-18.432 13.312-27.648 19.456zM748.544 800.256l-22.528-24.576c8.192-7.168 15.36-14.336 22.528-22.528l23.552 22.528c-7.168 9.216-15.36 17.408-23.552 24.576zM152.576 799.232c-8.192-7.168-16.384-15.36-23.552-22.528l23.552-22.528c7.168 7.168 14.336 14.336 21.504 21.504l-21.504 23.552zM633.856 875.008l-13.312-29.696c9.216-4.096 19.456-9.216 28.672-14.336l15.36 28.672c-10.24 6.144-20.48 11.264-30.72 15.36zM1013.76 698.88v32.768h-976.896c-9.216 0-16.384-7.168-16.384-16.384v-463.872c0-46.080 36.864-82.944 82.944-82.944h695.296c46.080 0 82.944 36.864 82.944 82.944v315.392h32.768v32.768h-32.768v32.768h82.944v32.768h-82.944v32.768c0 1.024 132.096 1.024 132.096 1.024zM796.672 698.88l-346.112-180.224-346.112 180.224h692.224zM847.872 252.416c0-27.648-22.528-49.152-50.176-49.152h-694.272c-27.648 0-49.152 22.528-49.152 49.152v436.224l390.144-202.752c2.048-1.024 5.12-2.048 7.168-2.048s5.12 1.024 7.168 2.048l390.144 202.752v-436.224zM87.040 268.8h32.768v-32.768h-32.768v32.768zM152.576 268.8h32.768v-32.768h-32.768v32.768zM219.136 268.8h32.768v-32.768h-32.768v32.768z" />
<glyph unicode="&#xe905;" glyph-name="customizing-services" d="M494.592 887.296h31.744v-31.744h-31.744v31.744zM494.592 65.024h31.744v-31.744h-31.744v31.744zM778.848 750.792l22.446 22.446 22.446-22.446-22.446-22.446-22.446 22.446zM197.335 169.049l22.446 22.446 22.446-22.446-22.446-22.446-22.446 22.446zM905.216 475.648h31.744v-31.744h-31.744v31.744zM83.968 475.648h31.744v-31.744h-31.744v31.744zM197.251 750.566l22.446 22.446 22.446-22.446-22.446-22.446-22.446 22.446zM1003.52 88.576c-2.048 32.768-17.408 62.464-43.008 82.944l-96.256 79.872 3.072 5.12c15.36 26.624 27.648 55.296 36.864 84.992l96.256 9.216v218.112l-96.256 9.216c-8.192 25.6-18.432 51.2-30.72 75.776l61.44 74.752-154.624 154.624-74.752-61.44c-23.552 13.312-49.152 23.552-75.776 30.72l-10.24 97.28h-218.112l-9.216-96.256c-25.6-8.192-51.2-18.432-75.776-30.72l-75.776 61.44-154.624-154.624 61.44-74.752c-13.312-24.576-23.552-49.152-31.744-75.776l-95.232-10.24v-218.112l96.256-9.216c8.192-26.624 18.432-51.2 31.744-75.776l-61.44-74.752 154.624-154.624 74.752 61.44c23.552-13.312 49.152-23.552 75.776-31.744l9.216-96.256h218.112l9.216 96.256c29.696 9.216 58.368 21.504 86.016 36.864l4.096 3.072 79.872-96.256c20.48-25.6 51.2-40.96 82.944-43.008 2.048 0 4.096 0 6.144 0 30.72 0 59.392 12.288 80.896 33.792 24.576 23.552 36.864 55.296 34.816 88.064zM698.368 130.56c-27.648-16.384-57.344-27.648-88.064-36.864l-10.24-3.072-9.216-90.112h-160.768l-9.216 90.112-10.24 3.072c-30.72 8.192-60.416 20.48-88.064 36.864l-9.216 5.12-69.632-57.344-114.688 114.688 57.344 69.632-5.12 9.216c-16.384 27.648-27.648 57.344-36.864 88.064l-3.072 10.24-90.112 9.216v160.768l90.112 9.216 3.072 10.24c8.192 30.72 20.48 60.416 36.864 88.064l5.12 9.216-57.344 69.632 113.664 113.664 69.632-57.344 9.216 5.12c27.648 16.384 57.344 28.672 88.064 36.864l10.24 3.072 10.24 90.112h160.768l9.216-90.112 10.24-3.072c30.72-8.192 60.416-20.48 88.064-36.864l9.216-5.12 69.632 57.344 113.664-113.664-57.344-69.632 5.12-9.216c16.384-27.648 28.672-57.344 36.864-88.064l3.072-10.24 90.112-9.216v-160.768l-90.112-9.216-3.072-10.24c-8.192-30.72-20.48-60.416-35.84-87.040v-1.024l-62.464 51.2c21.504 41.984 33.792 89.088 33.792 137.216 0 165.888-135.168 300.032-300.032 300.032s-301.056-134.144-301.056-300.032 135.168-300.032 300.032-300.032c48.128 0 95.232 11.264 137.216 33.792l51.2-62.464v-1.024zM689.152 470.528c0 1.024 0 2.048 0 3.072-1.024 7.168-2.048 13.312-3.072 20.48 0 1.024-1.024 2.048-1.024 3.072-2.048 6.144-4.096 13.312-6.144 19.456 0 1.024-1.024 2.048-1.024 3.072-2.048 6.144-5.12 12.288-9.216 19.456 0 1.024-1.024 2.048-1.024 2.048-3.072 6.144-7.168 12.288-12.288 18.432 0 0-1.024 1.024-1.024 1.024-5.12 6.144-9.216 12.288-15.36 17.408-44.032 44.032-107.52 61.44-167.936 45.056l-26.624-7.168 108.544-108.544-27.648-64.512-61.44-25.6-108.544 108.544-7.168-26.624c-16.384-60.416 1.024-123.904 45.056-167.936 4.096-4.096 8.192-8.192 12.288-11.264 33.792-27.648 76.8-40.96 119.808-38.912 8.192 1.024 17.408 2.048 25.6 4.096 5.12 1.024 11.264 2.048 17.408 4.096l58.368-70.656c-36.864-17.408-76.8-26.624-116.736-26.624-148.48 0-269.312 120.832-269.312 269.312s120.832 269.312 269.312 269.312 269.312-120.832 269.312-269.312c0-39.936-9.216-79.872-26.624-115.712l-70.656 58.368c0 0 0 0 0 0 2.048 7.168 4.096 14.336 5.12 21.504 0 1.024 0 2.048 0 2.048 1.024 7.168 2.048 14.336 2.048 20.48 0 1.024 0 2.048 0 3.072 1.024 6.144 1.024 12.288 0 19.456zM947.2 23.040c-16.384-16.384-39.936-25.6-63.488-24.576s-46.080 12.288-60.416 31.744l-31.744 37.888-115.712 141.312-97.28 117.76-10.24-4.096c-48.128-18.432-102.4-10.24-141.312 22.528-4.096 3.072-7.168 6.144-10.24 9.216-9.216 9.216-17.408 20.48-23.552 32.768-12.288 22.528-18.432 49.152-17.408 75.776l81.92-81.92 92.16 38.912 41.984 95.232-82.944 82.944c39.936 2.048 79.872-12.288 108.544-40.96 39.936-39.936 52.224-99.328 31.744-152.576l-4.096-10.24 116.736-97.28 179.2-147.456c18.432-14.336 29.696-36.864 30.72-60.416 1.024-26.624-7.168-49.152-24.576-66.56zM888.832 130.56c-26.624 0-49.152-21.504-49.152-49.152 0-26.624 21.504-49.152 49.152-49.152 26.624 0 49.152 21.504 49.152 49.152s-21.504 49.152-49.152 49.152zM888.832 65.024c-9.216 0-17.408 8.192-17.408 17.408s8.192 17.408 17.408 17.408c9.216 0 17.408-8.192 17.408-17.408 0-10.24-8.192-17.408-17.408-17.408z" />
<glyph unicode="&#xe906;" glyph-name="demo" d="M420.864 203.264h-226.304c-11.264 0-19.456-8.192-19.456-19.456s8.192-19.456 19.456-19.456h208.896c6.144-16.384 22.528-28.672 40.96-28.672h123.904c18.432 0 34.816 12.288 40.96 28.672h209.92c11.264 0 19.456 8.192 19.456 19.456s-8.192 19.456-19.456 19.456h-225.28c-11.264 0-19.456-8.192-19.456-19.456v-4.096c0-3.072-2.048-5.12-5.12-5.12h-123.904c-3.072 0-5.12 2.048-5.12 5.12v4.096c0 10.24-9.216 19.456-19.456 19.456zM969.728 203.264h-51.2v447.488c0 11.264-8.192 19.456-19.456 19.456s-19.456-8.192-19.456-19.456v-466.944c0-11.264 9.216-19.456 19.456-19.456h51.2v-26.624c0-27.648-22.528-50.176-50.176-50.176h-785.408c-27.648 0-50.176 22.528-50.176 50.176v26.624h51.2c11.264 0 19.456 8.192 19.456 19.456v466.944c0 11.264-8.192 19.456-19.456 19.456s-19.456-8.192-19.456-19.456v-447.488h-51.2c-11.264 0-19.456-8.192-19.456-19.456v-46.080c0-49.152 39.936-89.088 89.088-89.088h785.408c49.152 0 89.088 39.936 89.088 89.088v46.080c0 10.24-9.216 19.456-19.456 19.456zM583.68 711.168l-112.64-111.616-38.912 38.912c-7.168 7.168-19.456 7.168-27.648 0-7.168-7.168-7.168-19.456 0-27.648l52.224-53.248c4.096-4.096 9.216-6.144 13.312-6.144s10.24 2.048 13.312 6.144l126.976 125.952c7.168 7.168 7.168 19.456 0 27.648-7.168 7.168-19.456 7.168-26.624 0zM747.52 847.36h-480.256c-38.912 0-71.68-31.744-71.68-71.68v-283.648c0-38.912 31.744-71.68 71.68-71.68h20.48v-84.992c0-16.384 13.312-28.672 28.672-28.672 8.192 0 16.384 3.072 21.504 10.24l90.112 104.448h319.488c38.912 0 71.68 31.744 71.68 71.68v282.624c0 39.936-32.768 71.68-71.68 71.68zM780.288 493.056c0-17.408-14.336-32.768-32.768-32.768h-328.704c-6.144 0-11.264-2.048-14.336-7.168l-77.824-90.112v77.824c0 11.264-8.192 19.456-19.456 19.456h-39.936c-17.408 0-32.768 14.336-32.768 32.768v282.624c0 17.408 14.336 32.768 32.768 32.768h480.256c17.408 0 32.768-14.336 32.768-32.768v-282.624z" />
<glyph unicode="&#xe907;" glyph-name="diagonal-arrow" d="M479.465 960v-88.444h393.553l-873.018-873.018 62.538-62.538 873.018 873.018v-393.553h88.444v544.535z" />
<glyph unicode="&#xe908;" glyph-name="equations" d="M968.704 735.744h-487.424l-191.488-673.792c-6.144-18.432-22.528-30.72-40.96-30.72-1.024 0-1.024 0-2.048 0-18.432 0-34.816 11.264-41.984 27.648l-77.824 195.584h-73.728c-24.576 0-45.056 20.48-45.056 45.056s20.48 45.056 45.056 45.056h104.448c18.432 0 34.816-11.264 41.984-27.648l43.008-108.544 162.816 586.752c6.144 18.432 23.552 30.72 43.008 30.72h520.192c24.576 0 45.056-20.48 45.056-45.056s-20.48-45.056-45.056-45.056zM993.28 134.656l-176.128 197.632 167.936 187.392c3.072 3.072 4.096 8.192 2.048 12.288s-6.144 6.144-10.24 6.144h-106.496c-3.072 0-6.144-1.024-8.192-4.096l-112.64-131.072-112.64 131.072c-2.048 2.048-5.12 4.096-8.192 4.096h-111.616c-4.096 0-8.192-3.072-10.24-6.144-2.048-4.096-1.024-9.216 2.048-12.288l165.888-186.368-175.104-198.656c-3.072-3.072-4.096-8.192-2.048-12.288s6.144-6.144 10.24-6.144h110.592c3.072 0 6.144 1.024 8.192 4.096l116.736 140.288 119.808-140.288c2.048-2.048 5.12-4.096 8.192-4.096h112.64c4.096 0 8.192 3.072 10.24 6.144 2.048 4.096 2.048 9.216-1.024 12.288z" />
<glyph unicode="&#xe909;" glyph-name="exams" d="M589.824 441.856v0c-27.648 0-51.2-22.528-51.2-51.2 0-27.648 22.528-51.2 51.2-51.2v0c27.648 0 51.2 22.528 51.2 51.2 0 27.648-23.552 51.2-51.2 51.2zM437.248 492.032c27.648 0 51.2 22.528 51.2 51.2 0 27.648-22.528 51.2-51.2 51.2-27.648 0-51.2-22.528-51.2-51.2s23.552-51.2 51.2-51.2zM589.824 594.432v0c-27.648 0-51.2-22.528-51.2-51.2 0-27.648 22.528-51.2 51.2-51.2v0c27.648 0 51.2 22.528 51.2 51.2 0 27.648-23.552 51.2-51.2 51.2zM641.024 848.384h-254.976v-101.376h253.952v101.376zM742.4 492.032c27.648 0 51.2 22.528 51.2 51.2 0 27.648-22.528 51.2-51.2 51.2-27.648 0-51.2-22.528-51.2-51.2s23.552-51.2 51.2-51.2zM742.4 339.456c27.648 0 51.2 22.528 51.2 51.2 0 27.648-22.528 51.2-51.2 51.2-27.648 0-51.2-22.528-51.2-51.2 0-27.648 23.552-51.2 51.2-51.2zM437.248 339.456c27.648 0 51.2 22.528 51.2 51.2 0 27.648-22.528 51.2-51.2 51.2-27.648 0-51.2-22.528-51.2-51.2 0-27.648 23.552-51.2 51.2-51.2zM284.672 186.88c27.648 0 51.2 22.528 51.2 51.2 0 27.648-22.528 51.2-51.2 51.2-27.648 0-51.2-22.528-51.2-51.2 1.024-27.648 23.552-51.2 51.2-51.2zM894.976 848.384h-51.2v-101.376h51.2v-660.48h-762.88v659.456h51.2v101.376h-51.2c-56.32 0-101.376-45.056-101.376-101.376v-660.48c0-56.32 45.056-101.376 101.376-101.376h762.88c56.32 0 101.376 45.056 101.376 101.376v660.48c0 56.32-45.056 102.4-101.376 102.4zM284.672 339.456c27.648 0 51.2 22.528 51.2 51.2 0 27.648-22.528 51.2-51.2 51.2-27.648 0-51.2-22.528-51.2-51.2 1.024-27.648 23.552-51.2 51.2-51.2zM284.672 492.032c27.648 0 51.2 22.528 51.2 51.2 0 27.648-22.528 51.2-51.2 51.2-27.648 0-51.2-22.528-51.2-51.2 1.024-28.672 23.552-51.2 51.2-51.2zM437.248 186.88c27.648 0 51.2 22.528 51.2 51.2 0 27.648-22.528 51.2-51.2 51.2-27.648 0-51.2-22.528-51.2-51.2 0-27.648 23.552-51.2 51.2-51.2zM284.672 745.984c27.648 0 51.2 22.528 51.2 51.2v101.376c0 27.648-22.528 51.2-51.2 51.2-27.648 0-51.2-22.528-51.2-51.2v-101.376c1.024-27.648 23.552-51.2 51.2-51.2zM742.4 745.984c27.648 0 51.2 22.528 51.2 51.2v101.376c0 27.648-22.528 51.2-51.2 51.2-27.648 0-51.2-22.528-51.2-51.2v-101.376c0-27.648 23.552-51.2 51.2-51.2z" />
<glyph unicode="&#xe90a;" glyph-name="features-menu" d="M776.192 668.16c9.216 0 19.456 4.096 26.624 11.264l53.248 53.248c14.336 14.336 14.336 38.912 0 53.248s-38.912 14.336-53.248 0l-53.248-53.248c-14.336-14.336-14.336-38.912 0-53.248 8.192-7.168 17.408-11.264 26.624-11.264v0zM171.008 439.808c0 20.48-16.384 37.888-37.888 37.888h-74.752c-20.48 0-37.888-16.384-37.888-37.888s16.384-37.888 37.888-37.888h74.752c21.504 0 37.888 16.384 37.888 37.888v0zM217.088 200.192l-53.248-53.248c-14.336-14.336-14.336-38.912 0-53.248 7.168-7.168 17.408-11.264 26.624-11.264s19.456 4.096 26.624 11.264l53.248 53.248c14.336 14.336 14.336 38.912 0 53.248s-38.912 14.336-53.248 0v0zM217.088 679.424c7.168-7.168 17.408-11.264 26.624-11.264s19.456 4.096 26.624 11.264c14.336 14.336 14.336 38.912 0 53.248l-53.248 53.248c-14.336 14.336-38.912 14.336-53.248 0s-14.336-38.912 0-53.248l53.248-53.248zM509.952 778.752c20.48 0 37.888 16.384 37.888 37.888v74.752c0 20.48-16.384 37.888-37.888 37.888s-37.888-16.384-37.888-37.888v-74.752c0-21.504 17.408-37.888 37.888-37.888v0zM962.56 477.696h-75.776c-20.48 0-37.888-16.384-37.888-37.888s16.384-37.888 37.888-37.888h75.776c20.48 0 37.888 16.384 37.888 37.888s-17.408 37.888-37.888 37.888v0zM802.816 200.192c-14.336 14.336-38.912 14.336-53.248 0s-14.336-38.912 0-53.248l53.248-53.248c7.168-7.168 17.408-11.264 26.624-11.264s19.456 4.096 26.624 11.264c14.336 14.336 14.336 38.912 0 53.248l-53.248 53.248zM509.952 100.864c-20.48 0-37.888-16.384-37.888-37.888v-75.776c0-20.48 16.384-37.888 37.888-37.888s37.888 16.384 37.888 37.888v75.776c0 20.48-16.384 37.888-37.888 37.888v0zM509.952 702.976c-145.408 0-264.192-118.784-264.192-264.192s118.784-264.192 264.192-264.192c145.408 1.024 264.192 119.808 264.192 265.216s-118.784 263.168-264.192 263.168v0zM509.952 251.392c-103.424 0-188.416 84.992-188.416 188.416s84.992 188.416 188.416 188.416c103.424 0 188.416-84.992 188.416-188.416 0-104.448-83.968-188.416-188.416-188.416v0z" />
<glyph unicode="&#xe90b;" glyph-name="home-menu" d="M993.28 536.064l-460.8 337.92c-9.216 6.144-20.48 6.144-29.696 0l-460.8-337.92c-11.264-8.192-13.312-23.552-5.12-34.816s24.576-13.312 34.816-5.12l446.464 326.656 446.464-326.656c4.096-3.072 10.24-5.12 15.36-5.12 8.192 0 15.36 3.072 20.48 10.24 6.144 10.24 4.096 25.6-7.168 34.816zM871.424 488.96c-14.336 0-25.6-11.264-25.6-25.6v-402.432h-202.752v220.16c0 69.632-56.32 125.952-125.952 125.952s-125.952-56.32-125.952-125.952v-219.136h-202.752v401.408c0 14.336-11.264 25.6-25.6 25.6s-25.6-11.264-25.6-25.6v-428.032c0-14.336 11.264-25.6 25.6-25.6h252.928c13.312 0 24.576 10.24 25.6 23.552 0 1.024 0 1.024 0 2.048v245.76c0 41.984 33.792 75.776 75.776 75.776s75.776-33.792 75.776-75.776v-244.736c0-1.024 0-1.024 0-2.048 1.024-13.312 12.288-23.552 25.6-23.552h252.928c14.336 0 25.6 11.264 25.6 25.6v427.008c-1.024 14.336-12.288 25.6-25.6 25.6z" />
<glyph unicode="&#xe90c;" glyph-name="hosted-services" d="M107.52 611.84h32.768c0 63.488 50.176 112.64 112.64 112.64v32.768c-80.896 0-145.408-64.512-145.408-145.408zM252.928 628.224v-161.792h517.12v161.792h-517.12zM737.28 499.2h-452.608v97.28h452.608v-97.28zM252.928 434.688v-161.792h517.12v161.792h-517.12zM737.28 304.64h-452.608v97.28h452.608v-97.28zM927.744 639.488c-9.216 53.248-45.056 98.304-94.208 119.808 0 81.92-83.968 173.056-198.656 132.096-43.008 36.864-99.328 58.368-155.648 58.368-90.112 0-173.056-50.176-215.040-129.024-172.032 8.192-231.424-153.6-221.184-225.28-21.504-26.624-32.768-62.464-32.768-96.256 0-89.088 72.704-161.792 161.792-161.792h64.512v32.768h-64.512c-71.68-1.024-129.024 57.344-129.024 129.024 0 53.248 33.792 87.040 33.792 87.040-16.384 106.496 72.704 220.16 206.848 201.728 0 0 51.2 131.072 195.584 131.072 95.232 0 151.552-64.512 151.552-64.512 101.376 53.248 185.344-35.84 171.008-116.736 45.056-13.312 95.232-53.248 98.304-119.808 0 0 80.896-32.768 80.896-119.808 0-70.656-58.368-129.024-129.024-129.024h-64.512v-32.768h64.512c89.088 1.024 161.792 73.728 161.792 162.816-2.048 59.392-33.792 112.64-86.016 140.288zM560.128 13.824v32.768h-32.768v32.768h242.688v160.768h-517.12v-161.792h242.688v-32.768h-32.768v-32.768h-274.432v-32.768h274.432v-32.768h97.28v32.768h274.432v32.768h-274.432zM284.672 111.104v97.28h452.608v-97.28h-452.608zM527.36-17.92h-32.768v32.768h32.768v-32.768zM317.44 563.712h32.768v-32.768h-32.768v32.768zM381.952 563.712h32.768v-32.768h-32.768v32.768zM446.464 563.712h32.768v-32.768h-32.768v32.768zM527.36 563.712h178.176v-32.768h-178.176v32.768zM317.44 369.152h32.768v-32.768h-32.768v32.768zM381.952 369.152h32.768v-32.768h-32.768v32.768zM446.464 369.152h32.768v-32.768h-32.768v32.768zM527.36 369.152h178.176v-32.768h-178.176v32.768zM317.44 175.616h32.768v-32.768h-32.768v32.768zM381.952 175.616h32.768v-32.768h-32.768v32.768zM446.464 175.616h32.768v-32.768h-32.768v32.768zM527.36 175.616h178.176v-32.768h-178.176v32.768z" />
<glyph unicode="&#xe90d;" d="M727.040 529.92c6.144 0 10.24-4.096 10.24-10.24v-61.44c0-6.144-4.096-10.24-10.24-10.24h-430.080c-6.144 0-10.24 4.096-10.24 10.24v61.44c0 6.144 4.096 10.24 10.24 10.24h430.080zM727.040 540.16h-430.080c-11.264 0-20.48-9.216-20.48-20.48v-61.44c0-11.264 9.216-20.48 20.48-20.48h430.080c11.264 0 20.48 9.216 20.48 20.48v61.44c0 11.264-9.216 20.48-20.48 20.48v0z" />
<glyph unicode="&#xe90e;" d="M358.4 499.2h-30.72v-20.48h30.72v20.48z" />
<glyph unicode="&#xe90f;" d="M378.88 427.52v-10.24h-10.24v10.24h10.24zM389.12 437.76h-30.72v-30.72h30.72v30.72z" />
<glyph unicode="&#xe910;" d="M655.36 427.52v-10.24h-10.24v10.24h10.24zM665.6 437.76h-30.72v-30.72h30.72v30.72z" />
<glyph unicode="&#xe911;" d="M706.56 499.2h-30.72v-20.48h30.72v20.48z" />
<glyph unicode="&#xe912;" d="M655.36 499.2h-133.12v-20.48h133.12v20.48z" />
<glyph unicode="&#xe913;" d="M727.040 396.8c6.144 0 10.24-4.096 10.24-10.24v-61.44c0-6.144-4.096-10.24-10.24-10.24h-430.080c-6.144 0-10.24 4.096-10.24 10.24v61.44c0 6.144 4.096 10.24 10.24 10.24h430.080zM727.040 407.040h-430.080c-11.264 0-20.48-9.216-20.48-20.48v-61.44c0-11.264 9.216-20.48 20.48-20.48h430.080c11.264 0 20.48 9.216 20.48 20.48v61.44c0 11.264-9.216 20.48-20.48 20.48v0z" />
<glyph unicode="&#xe914;" d="M358.4 366.080h-30.72v-20.48h30.72v20.48z" />
<glyph unicode="&#xe915;" d="M706.56 366.080h-30.72v-20.48h30.72v20.48z" />
<glyph unicode="&#xe916;" d="M655.36 366.080h-133.12v-20.48h133.12v20.48z" />
<glyph unicode="&#xe917;" d="M537.6 796.16c19.456 0 35.84-16.384 35.84-35.84s-16.384-35.84-35.84-35.84-35.84 16.384-35.84 35.84 16.384 35.84 35.84 35.84zM537.6 806.4c-25.6 0-46.080-20.48-46.080-46.080s20.48-46.080 46.080-46.080 46.080 20.48 46.080 46.080-20.48 46.080-46.080 46.080v0z" />
<glyph unicode="&#xe918;" d="M537.6 673.28c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe919;" d="M532.48 683.52c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe91a;" d="M537.6 632.32c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe91b;" d="M532.48 642.56c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe91c;" d="M537.6 591.36c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe91d;" d="M532.48 601.6c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe91e;" d="M537.6 796.16c19.456 0 35.84-16.384 35.84-35.84s-16.384-35.84-35.84-35.84-35.84 16.384-35.84 35.84 16.384 35.84 35.84 35.84zM537.6 806.4c-25.6 0-46.080-20.48-46.080-46.080s20.48-46.080 46.080-46.080 46.080 20.48 46.080 46.080-20.48 46.080-46.080 46.080v0z" />
<glyph unicode="&#xe91f;" d="M220.16 744.96v0c4.096 0 8.192-1.024 12.288-2.048 9.216-3.072 16.384-10.24 20.48-18.432 4.096-9.216 4.096-18.432 1.024-27.648-5.12-14.336-18.432-23.552-33.792-23.552-4.096 0-8.192 1.024-12.288 2.048-9.216 3.072-16.384 10.24-20.48 18.432-4.096 9.216-4.096 18.432-1.024 27.648 5.12 14.336 19.456 23.552 33.792 23.552zM220.16 755.2c-18.432 0-35.84-11.264-43.008-29.696-9.216-23.552 3.072-50.176 26.624-59.392 5.12-2.048 11.264-3.072 16.384-3.072 18.432 0 35.84 11.264 43.008 29.696 9.216 23.552-3.072 50.176-26.624 59.392-5.12 2.048-11.264 3.072-16.384 3.072v0z" />
<glyph unicode="&#xe920;" d="M276.48 642.56c0-5.655-4.585-10.24-10.24-10.24s-10.24 4.585-10.24 10.24c0 5.655 4.585 10.24 10.24 10.24s10.24-4.585 10.24-10.24z" />
<glyph unicode="&#xe921;" d="M296.96 611.84c0-5.655-4.585-10.24-10.24-10.24s-10.24 4.585-10.24 10.24c0 5.655 4.585 10.24 10.24 10.24s10.24-4.585 10.24-10.24z" />
<glyph unicode="&#xe922;" d="M317.44 581.12c0-5.655-4.585-10.24-10.24-10.24s-10.24 4.585-10.24 10.24c0 5.655 4.585 10.24 10.24 10.24s10.24-4.585 10.24-10.24z" />
<glyph unicode="&#xe923;" d="M220.16 744.96c19.456 0 35.84-16.384 35.84-35.84s-16.384-35.84-35.84-35.84-35.84 16.384-35.84 35.84 16.384 35.84 35.84 35.84zM220.16 755.2c-25.6 0-46.080-20.48-46.080-46.080s20.48-46.080 46.080-46.080 46.080 20.48 46.080 46.080-20.48 46.080-46.080 46.080v0z" />
<glyph unicode="&#xe924;" d="M271.36 642.56c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe925;" d="M266.24 652.8c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe926;" d="M291.84 611.84c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe927;" d="M286.72 622.080c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe928;" d="M312.32 581.12c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe929;" d="M307.2 591.36c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe92a;" d="M814.080 744.96c19.456 0 35.84-16.384 35.84-35.84s-16.384-35.84-35.84-35.84-35.84 16.384-35.84 35.84 16.384 35.84 35.84 35.84zM814.080 755.2c-25.6 0-46.080-20.48-46.080-46.080s20.48-46.080 46.080-46.080 46.080 20.48 46.080 46.080-20.48 46.080-46.080 46.080v0z" />
<glyph unicode="&#xe92b;" d="M936.96 448c19.456 0 35.84-16.384 35.84-35.84s-16.384-35.84-35.84-35.84-35.84 16.384-35.84 35.84 16.384 35.84 35.84 35.84zM936.96 458.24c-25.6 0-46.080-20.48-46.080-46.080s20.48-46.080 46.080-46.080 46.080 20.48 46.080 46.080-20.48 46.080-46.080 46.080v0z" />
<glyph unicode="&#xe92c;" d="M773.12 642.56c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe92d;" d="M768 652.8c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe92e;" d="M752.64 611.84c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe92f;" d="M747.52 622.080c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe930;" d="M732.16 581.12c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe931;" d="M727.040 591.36c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe932;" d="M783.36 417.28c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe933;" d="M778.24 427.52c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe934;" d="M824.32 417.28c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe935;" d="M819.2 427.52c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe936;" d="M865.28 417.28c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe937;" d="M860.16 427.52c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe938;" d="M87.040 448c19.456 0 35.84-16.384 35.84-35.84s-16.384-35.84-35.84-35.84-35.84 16.384-35.84 35.84 16.384 35.84 35.84 35.84zM87.040 458.24c-25.6 0-46.080-20.48-46.080-46.080s20.48-46.080 46.080-46.080 46.080 20.48 46.080 46.080-20.48 46.080-46.080 46.080v0z" />
<glyph unicode="&#xe939;" d="M250.88 417.28c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe93a;" d="M245.76 427.52c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe93b;" d="M209.92 417.28c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe93c;" d="M204.8 427.52c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe93d;" d="M168.96 417.28c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe93e;" d="M163.84 427.52c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24c6.144 0 10.24 4.096 10.24 10.24s-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe93f;" d="M537.6 110.080c19.456 0 35.84-16.384 35.84-35.84s-16.384-35.84-35.84-35.84-35.84 16.384-35.84 35.84 16.384 35.84 35.84 35.84zM537.6 120.32c-25.6 0-46.080-20.48-46.080-46.080s20.48-46.080 46.080-46.080 46.080 20.48 46.080 46.080-20.48 46.080-46.080 46.080v0z" />
<glyph unicode="&#xe940;" d="M537.6 161.28c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe941;" d="M532.48 171.52c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe942;" d="M537.6 202.24c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe943;" d="M532.48 212.48c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe944;" d="M537.6 243.2c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe945;" d="M532.48 253.44c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe946;" d="M220.16 161.28c14.336 0 28.672-9.216 33.792-23.552 3.072-9.216 3.072-18.432-1.024-27.648s-11.264-15.36-20.48-18.432c-4.096-1.024-8.192-2.048-12.288-2.048-14.336 0-28.672 9.216-33.792 23.552-3.072 9.216-3.072 18.432 1.024 27.648s11.264 15.36 20.48 18.432c4.096 1.024 8.192 2.048 12.288 2.048zM220.16 171.52c-5.12 0-11.264-1.024-16.384-3.072-23.552-9.216-35.84-35.84-26.624-59.392 7.168-18.432 24.576-29.696 43.008-29.696 5.12 0 11.264 1.024 16.384 3.072 23.552 9.216 35.84 35.84 26.624 59.392-7.168 18.432-24.576 29.696-43.008 29.696v0z" />
<glyph unicode="&#xe947;" d="M276.48 192c0-5.655-4.585-10.24-10.24-10.24s-10.24 4.585-10.24 10.24c0 5.655 4.585 10.24 10.24 10.24s10.24-4.585 10.24-10.24z" />
<glyph unicode="&#xe948;" d="M296.96 222.72c0-5.655-4.585-10.24-10.24-10.24s-10.24 4.585-10.24 10.24c0 5.655 4.585 10.24 10.24 10.24s10.24-4.585 10.24-10.24z" />
<glyph unicode="&#xe949;" d="M317.44 253.44c0-5.655-4.585-10.24-10.24-10.24s-10.24 4.585-10.24 10.24c0 5.655 4.585 10.24 10.24 10.24s10.24-4.585 10.24-10.24z" />
<glyph unicode="&#xe94a;" d="M220.16 161.28c19.456 0 35.84-16.384 35.84-35.84s-16.384-35.84-35.84-35.84-35.84 16.384-35.84 35.84 16.384 35.84 35.84 35.84zM220.16 171.52c-25.6 0-46.080-20.48-46.080-46.080s20.48-46.080 46.080-46.080 46.080 20.48 46.080 46.080-20.48 46.080-46.080 46.080v0z" />
<glyph unicode="&#xe94b;" d="M271.36 192c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe94c;" d="M266.24 202.24c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe94d;" d="M291.84 222.72c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe94e;" d="M286.72 232.96c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe94f;" d="M312.32 253.44c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe950;" d="M307.2 263.68c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe951;" d="M814.080 161.28c19.456 0 35.84-16.384 35.84-35.84s-16.384-35.84-35.84-35.84-35.84 16.384-35.84 35.84 16.384 35.84 35.84 35.84zM814.080 171.52c-25.6 0-46.080-20.48-46.080-46.080s20.48-46.080 46.080-46.080 46.080 20.48 46.080 46.080-20.48 46.080-46.080 46.080v0z" />
<glyph unicode="&#xe952;" d="M773.12 192c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe953;" d="M768 202.24c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe954;" d="M752.64 222.72c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe955;" d="M747.52 232.96c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe956;" d="M732.16 253.44c0-2.828-2.292-5.12-5.12-5.12s-5.12 2.292-5.12 5.12c0 2.828 2.292 5.12 5.12 5.12s5.12-2.292 5.12-5.12z" />
<glyph unicode="&#xe957;" d="M727.040 263.68c-6.144 0-10.24-4.096-10.24-10.24s4.096-10.24 10.24-10.24 10.24 4.096 10.24 10.24-4.096 10.24-10.24 10.24v0z" />
<glyph unicode="&#xe958;" glyph-name="lock" d="M852.992 578.048h-60.416v79.872c0 155.648-125.952 281.6-280.576 281.6s-280.576-125.952-280.576-280.576v-79.872h-60.416c-11.264 0-20.48-9.216-20.48-20.48v-501.76c0-44.032 35.84-79.872 79.872-79.872h561.152c44.032 0 79.872 35.84 79.872 79.872v501.76c2.048 11.264-7.168 19.456-18.432 19.456zM572.416 159.232c1.024-6.144-1.024-11.264-5.12-15.36s-9.216-7.168-15.36-7.168h-79.872c-6.144 0-11.264 2.048-15.36 7.168-4.096 4.096-5.12 10.24-5.12 15.36l13.312 114.688c-20.48 15.36-32.768 38.912-32.768 64.512 0 44.032 35.84 79.872 79.872 79.872s79.872-35.84 79.872-79.872c0-25.6-12.288-49.152-32.768-64.512l13.312-114.688zM672.768 578.048h-321.536v79.872c0 88.064 71.68 160.768 160.768 160.768s160.768-71.68 160.768-160.768v-79.872z" />
<glyph unicode="&#xe959;" d="M235.52 657.92c-64.512 0-117.76 53.248-117.76 117.76v10.24c0 64.512 53.248 117.76 117.76 117.76h10.24c64.512 0 117.76-53.248 117.76-117.76v-10.24c0-64.512-53.248-117.76-117.76-117.76h-10.24z" />
<glyph unicode="&#xe95a;" d="M245.76 898.56c62.464 0 112.64-50.176 112.64-112.64v-10.24c0-62.464-50.176-112.64-112.64-112.64h-10.24c-62.464 0-112.64 50.176-112.64 112.64v10.24c0 62.464 50.176 112.64 112.64 112.64h10.24zM245.76 908.8h-10.24c-67.584 0-122.88-55.296-122.88-122.88v-10.24c0-67.584 55.296-122.88 122.88-122.88h10.24c67.584 0 122.88 55.296 122.88 122.88v10.24c0 67.584-55.296 122.88-122.88 122.88v0z" />
<glyph unicode="&#xe95b;" d="M235.52 340.48c-64.512 0-117.76 53.248-117.76 117.76v10.24c0 64.512 53.248 117.76 117.76 117.76h10.24c64.512 0 117.76-53.248 117.76-117.76v-10.24c0-64.512-53.248-117.76-117.76-117.76h-10.24z" />
<glyph unicode="&#xe95c;" d="M245.76 581.12c62.464 0 112.64-50.176 112.64-112.64v-10.24c0-62.464-50.176-112.64-112.64-112.64h-10.24c-62.464 0-112.64 50.176-112.64 112.64v10.24c0 62.464 50.176 112.64 112.64 112.64h10.24zM245.76 591.36h-10.24c-67.584 0-122.88-55.296-122.88-122.88v-10.24c0-67.584 55.296-122.88 122.88-122.88h10.24c67.584 0 122.88 55.296 122.88 122.88v10.24c0 67.584-55.296 122.88-122.88 122.88v0z" />
<glyph unicode="&#xe95d;" d="M235.52 23.040c-64.512 0-117.76 53.248-117.76 117.76v10.24c0 64.512 53.248 117.76 117.76 117.76h10.24c64.512 0 117.76-53.248 117.76-117.76v-10.24c0-64.512-53.248-117.76-117.76-117.76h-10.24z" />
<glyph unicode="&#xe95e;" d="M245.76 263.68c62.464 0 112.64-50.176 112.64-112.64v-10.24c0-62.464-50.176-112.64-112.64-112.64h-10.24c-62.464 0-112.64 50.176-112.64 112.64v10.24c0 62.464 50.176 112.64 112.64 112.64h10.24zM245.76 273.92h-10.24c-67.584 0-122.88-55.296-122.88-122.88v-10.24c0-67.584 55.296-122.88 122.88-122.88h10.24c67.584 0 122.88 55.296 122.88 122.88v10.24c0 67.584-55.296 122.88-122.88 122.88v0z" />
<glyph unicode="&#xe95f;" glyph-name="pricetag-menu" d="M746.496 589.312l-196.608 172.032c-10.24 9.216-23.552 14.336-37.888 14.336-13.312 0-26.624-5.12-37.888-14.336l-69.632-61.44c-4.096 14.336-6.144 30.72-6.144 47.104 0 38.912 12.288 75.776 34.816 103.424 21.504 25.6 49.152 40.96 78.848 40.96 62.464 0 113.664-64.512 113.664-144.384 0-13.312 11.264-23.552 23.552-23.552 13.312 0 23.552 11.264 23.552 23.552 1.024 106.496-70.656 192.512-159.744 192.512-44.032 0-84.992-20.48-115.712-58.368-29.696-35.84-46.080-83.968-46.080-134.144 0-28.672 5.12-56.32 15.36-80.896l-87.040-76.8c-21.504-19.456-34.816-47.104-34.816-75.776v-431.104c0-66.56 54.272-120.832 120.832-120.832h295.936c66.56 0 120.832 54.272 120.832 120.832v431.104c-1.024 29.696-13.312 57.344-35.84 75.776v0zM733.184 82.432c0-39.936-32.768-72.704-72.704-72.704h-295.936c-39.936 0-72.704 32.768-72.704 72.704v431.104c0 15.36 6.144 29.696 18.432 39.936l78.848 69.632 7.168-9.216c30.72-37.888 71.68-58.368 115.712-58.368 13.312 0 23.552 11.264 23.552 23.552 0 13.312-11.264 23.552-23.552 23.552-29.696 0-57.344 14.336-78.848 40.96-3.072 4.096-5.12 7.168-8.192 11.264l80.896 70.656c2.048 2.048 4.096 2.048 6.144 2.048s4.096 0 6.144-2.048l196.608-172.032c11.264-10.24 18.432-24.576 18.432-39.936v-431.104zM539.648 331.264h-53.248c-18.432 0-33.792 15.36-33.792 33.792s15.36 33.792 33.792 33.792h93.184c13.312 0 23.552 11.264 23.552 23.552 0 13.312-11.264 23.552-23.552 23.552h-43.008v32.768c0 13.312-11.264 23.552-23.552 23.552-13.312 0-23.552-11.264-23.552-23.552v-31.744h-2.048c-45.056 0-81.92-36.864-81.92-81.92s36.864-81.92 81.92-81.92h53.248c18.432 0 33.792-15.36 33.792-33.792s-15.36-33.792-33.792-33.792h-95.232c-13.312 0-23.552-11.264-23.552-23.552 0-13.312 11.264-23.552 23.552-23.552h44.032v-31.744c0-13.312 11.264-23.552 23.552-23.552 13.312 0 23.552 11.264 23.552 23.552v31.744h3.072c45.056 1.024 80.896 36.864 80.896 81.92 1.024 45.056-35.84 80.896-80.896 80.896v0z" />
<glyph unicode="&#xe960;" glyph-name="price-wheel" d="M573.44-47.616h-118.784c-23.552 0-44.032 17.408-46.080 41.984l-12.288 73.728c-22.528 7.168-45.056 16.384-66.56 27.648l-61.44-44.032c-7.168-6.144-17.408-10.24-28.672-10.24-12.288 0-23.552 5.12-32.768 13.312l-83.968 83.968c-16.384 16.384-18.432 43.008-3.072 61.44l43.008 60.416c-11.264 21.504-20.48 44.032-27.648 66.56l-73.728 13.312c-22.528 2.048-40.96 21.504-40.96 46.080v118.784c0 23.552 17.408 44.032 41.984 46.080l73.728 12.288c7.168 22.528 16.384 45.056 27.648 66.56l-44.032 61.44c-14.336 17.408-13.312 44.032 4.096 61.44l83.968 83.968c16.384 16.384 44.032 17.408 61.44 3.072l60.416-43.008c21.504 11.264 44.032 20.48 66.56 27.648l12.288 73.728c2.048 22.528 21.504 40.96 46.080 40.96h118.784c23.552 0 44.032-17.408 46.080-41.984l12.288-73.728c22.528-7.168 45.056-16.384 66.56-27.648l61.44 44.032c7.168 6.144 17.408 9.216 28.672 9.216 12.288 0 23.552-5.12 32.768-13.312l83.968-83.968c16.384-16.384 18.432-43.008 3.072-61.44l-43.008-60.416c11.264-21.504 20.48-44.032 27.648-66.56l74.752-12.288c22.528-2.048 40.96-21.504 40.96-46.080v-118.784c0-23.552-17.408-44.032-41.984-46.080l-73.728-12.288c-7.168-22.528-16.384-45.056-27.648-66.56l44.032-61.44c14.336-17.408 13.312-44.032-4.096-61.44l-83.968-83.968c-16.384-16.384-44.032-17.408-61.44-3.072l-60.416 43.008c-21.504-11.264-44.032-20.48-66.56-27.648l-12.288-74.752c-3.072-22.528-22.528-39.936-47.104-39.936v0zM328.704 130.56c3.072 0 5.12-1.024 8.192-2.048 24.576-14.336 51.2-24.576 78.848-32.768 6.144-2.048 10.24-7.168 11.264-13.312l14.336-83.968c1.024-8.192 7.168-13.312 13.312-13.312h118.784c7.168 0 12.288 5.12 13.312 12.288l14.336 84.992c1.024 6.144 5.12 11.264 11.264 13.312 27.648 8.192 54.272 18.432 78.848 32.768 5.12 3.072 12.288 3.072 17.408-1.024l69.632-50.176c7.168-6.144 14.336-4.096 19.456 0l83.968 83.968c5.12 5.12 5.12 12.288 1.024 18.432l-50.176 70.656c-4.096 5.12-4.096 12.288-1.024 17.408 14.336 24.576 24.576 51.2 32.768 78.848 2.048 6.144 7.168 10.24 13.312 11.264l84.992 14.336c8.192 1.024 13.312 7.168 13.312 13.312v119.808c0 7.168-5.12 12.288-12.288 13.312l-84.992 14.336c-6.144 1.024-11.264 5.12-13.312 11.264-8.192 27.648-18.432 54.272-32.768 78.848-3.072 5.12-3.072 12.288 1.024 17.408l50.176 69.632c5.12 6.144 5.12 14.336 0 19.456l-83.968 83.968c-5.12 5.12-13.312 5.12-18.432 1.024l-70.656-50.176c-5.12-4.096-12.288-4.096-17.408-1.024-24.576 14.336-51.2 24.576-78.848 32.768-6.144 2.048-10.24 7.168-11.264 13.312l-14.336 83.968c-1.024 8.192-6.144 13.312-13.312 13.312h-120.832c-7.168 0-12.288-5.12-13.312-12.288l-14.336-84.992c-1.024-6.144-5.12-11.264-11.264-13.312-27.648-8.192-54.272-18.432-78.848-32.768-5.12-3.072-12.288-3.072-17.408 1.024l-69.632 50.176c-7.168 5.12-14.336 4.096-19.456 0l-83.968-83.968c-5.12-5.12-5.12-12.288-1.024-18.432l50.176-70.656c4.096-5.12 4.096-12.288 1.024-17.408-14.336-24.576-24.576-51.2-32.768-78.848-2.048-6.144-7.168-10.24-13.312-11.264l-83.968-14.336c-8.192-1.024-13.312-6.144-13.312-13.312v-119.808c0-7.168 5.12-12.288 12.288-13.312l86.016-14.336c6.144-1.024 11.264-5.12 13.312-11.264 7.168-27.648 18.432-54.272 32.768-78.848 3.072-5.12 3.072-12.288-1.024-17.408l-50.176-69.632c-5.12-6.144-5.12-14.336 0-19.456l83.968-83.968c5.12-5.12 13.312-5.12 18.432-1.024l70.656 50.176c2.048 2.048 5.12 3.072 9.216 3.072v0zM514.048 250.368c-107.52 0-195.584 87.040-195.584 195.584 0 107.52 88.064 195.584 195.584 195.584s195.584-88.064 195.584-195.584c0-107.52-88.064-195.584-195.584-195.584v0zM514.048 608.768c-90.112 0-162.816-72.704-162.816-162.816s72.704-162.816 162.816-162.816c90.112 0 162.816 72.704 162.816 162.816s-72.704 162.816-162.816 162.816v0z" />
<glyph unicode="&#xe961;" d="M512 627.2c-62.464 0-112.64 50.176-112.64 112.64s50.176 112.64 112.64 112.64 112.64-50.176 112.64-112.64-50.176-112.64-112.64-112.64z" />
<glyph unicode="&#xe962;" d="M512 847.36c59.392 0 107.52-48.128 107.52-107.52s-48.128-107.52-107.52-107.52c-59.392 0-107.52 48.128-107.52 107.52s48.128 107.52 107.52 107.52zM512 857.6v0c-64.512 0-117.76-53.248-117.76-117.76v0c0-64.512 53.248-117.76 117.76-117.76v0c64.512 0 117.76 53.248 117.76 117.76v0c0 64.512-53.248 117.76-117.76 117.76v0z" />
<glyph unicode="&#xe963;" d="M220.16 238.080c-62.464 0-112.64 50.176-112.64 112.64s50.176 112.64 112.64 112.64 112.64-50.176 112.64-112.64-50.176-112.64-112.64-112.64z" />
<glyph unicode="&#xe964;" d="M220.16 458.24c59.392 0 107.52-48.128 107.52-107.52s-48.128-107.52-107.52-107.52c-59.392 0-107.52 48.128-107.52 107.52s48.128 107.52 107.52 107.52zM220.16 468.48v0c-64.512 0-117.76-53.248-117.76-117.76v0c0-64.512 53.248-117.76 117.76-117.76v0c64.512 0 117.76 53.248 117.76 117.76v0c0 64.512-53.248 117.76-117.76 117.76v0z" />
<glyph unicode="&#xe965;" d="M824.32 238.080c-62.464 0-112.64 50.176-112.64 112.64s50.176 112.64 112.64 112.64 112.64-50.176 112.64-112.64-50.176-112.64-112.64-112.64z" />
<glyph unicode="&#xe966;" d="M824.32 458.24c59.392 0 107.52-48.128 107.52-107.52s-48.128-107.52-107.52-107.52c-59.392 0-107.52 48.128-107.52 107.52s48.128 107.52 107.52 107.52zM824.32 468.48v0c-64.512 0-117.76-53.248-117.76-117.76v0c0-64.512 53.248-117.76 117.76-117.76v0c64.512 0 117.76 53.248 117.76 117.76v0c0 64.512-53.248 117.76-117.76 117.76v0z" />
<glyph unicode="&#xe967;" glyph-name="questions-1" d="M699.392 798.208h-435.2c-22.528 40.96-65.536 69.632-115.712 69.632-71.68 0-130.048-58.368-130.048-131.072s58.368-131.072 131.072-131.072c59.392 0 109.568 38.912 124.928 93.184h418.816c-3.072 12.288-4.096 24.576-4.096 37.888 0 21.504 3.072 41.984 10.24 61.44zM148.48 687.616c-26.624 0-49.152 21.504-49.152 49.152 0 26.624 21.504 49.152 49.152 49.152s49.152-21.504 49.152-49.152c0-26.624-21.504-49.152-49.152-49.152zM872.448 867.84c-72.704 0-131.072-58.368-131.072-131.072 0-35.84 14.336-67.584 36.864-91.136l-207.872-339.968c32.768-11.264 60.416-30.72 81.92-56.32l218.112 356.352c0 0 1.024 0 1.024 0 72.704 0 131.072 58.368 131.072 131.072s-57.344 131.072-130.048 131.072zM872.448 687.616c-26.624 0-49.152 21.504-49.152 49.152 0 26.624 21.504 49.152 49.152 49.152 26.624 0 49.152-21.504 49.152-49.152 0-26.624-22.528-49.152-49.152-49.152zM512 261.632c-10.24 0-20.48-1.024-29.696-4.096l-209.92 343.040c-24.576-22.528-55.296-37.888-89.088-45.056l218.112-356.352c-12.288-20.48-19.456-44.032-19.456-68.608-1.024-71.68 58.368-130.048 130.048-130.048s131.072 58.368 131.072 131.072-58.368 130.048-131.072 130.048zM512 82.432c-26.624 0-49.152 21.504-49.152 49.152 0 26.624 21.504 49.152 49.152 49.152 26.624 0 49.152-21.504 49.152-49.152s-22.528-49.152-49.152-49.152z" />
<glyph unicode="&#xe968;" glyph-name="rocket" d="M699.392 444.928c15.36 174.080-45.056 351.232-172.032 478.208-8.192 8.192-21.504 8.192-28.672 0-129.024-126.976-189.44-304.128-174.080-478.208-44.032-47.104-68.608-108.544-68.608-174.080s24.576-128 70.656-176.128c11.264-11.264 39.936-6.144 34.816 19.456-2.048 13.312-5.12 26.624-5.12 39.936 0 31.744 9.216 62.464 27.648 88.064 3.072-2.048 6.144-3.072 10.24-3.072h235.52c3.072 0 7.168 1.024 10.24 3.072 18.432-25.6 27.648-56.32 27.648-88.064 0-13.312-3.072-25.6-5.12-39.936-4.096-28.672 25.6-29.696 34.816-19.456 45.056 48.128 70.656 110.592 70.656 176.128-1.024 65.536-24.576 126.976-68.608 174.080zM512 879.104c36.864-39.936 67.584-83.968 90.112-132.096h-180.224c22.528 48.128 53.248 92.16 90.112 132.096v0zM317.44 181.76c-12.288 27.648-19.456 57.344-19.456 89.088 0 41.984 12.288 81.92 34.816 116.736 0-2.048 21.504-83.968 29.696-105.472-24.576-28.672-39.936-62.464-45.056-100.352v0zM615.424 282.112h-207.872c-58.368 137.216-57.344 289.792-5.12 423.936h217.088c54.272-134.144 54.272-287.744-4.096-423.936zM660.48 282.112c11.264 29.696 29.696 104.448 29.696 105.472 22.528-34.816 34.816-74.752 34.816-116.736 0-30.72-7.168-61.44-19.456-89.088-4.096 37.888-19.456 71.68-45.056 100.352v0zM428.032 205.312c-11.264 0-20.48-9.216-20.48-20.48v-103.424c0-11.264 9.216-20.48 20.48-20.48s20.48 9.216 20.48 20.48v103.424c0 11.264-9.216 20.48-20.48 20.48zM512 205.312c-6.144 0-11.264-2.048-14.336-6.144 0 0 0 0 0 0-2.048-2.048-4.096-5.12-5.12-9.216 0-2.048-1.024-3.072-1.024-5.12v-207.872c0-2.048 0-3.072 1.024-5.12 2.048-9.216 10.24-16.384 20.48-16.384 9.216 0 17.408 7.168 20.48 16.384 0 2.048 1.024 3.072 1.024 5.12v207.872c0 2.048 0 4.096-1.024 5.12-4.096 9.216-12.288 15.36-21.504 15.36zM595.968 205.312c-11.264 0-20.48-9.216-20.48-20.48v-103.424c0-11.264 9.216-20.48 20.48-20.48s20.48 9.216 20.48 20.48v103.424c0 11.264-9.216 20.48-20.48 20.48z" />
<glyph unicode="&#xe969;" glyph-name="search" d="M969.728 48.64l-233.472 241.664c59.392 71.68 93.184 160.768 93.184 253.952 0 218.112-177.152 395.264-395.264 395.264s-395.264-177.152-395.264-395.264c0-218.112 177.152-395.264 395.264-395.264 81.92 0 159.744 24.576 226.304 71.68l234.496-243.712c10.24-10.24 22.528-15.36 36.864-15.36 13.312 0 25.6 5.12 35.84 14.336 20.48 19.456 21.504 51.2 2.048 72.704v0zM434.176 836.096c160.768 0 291.84-131.072 291.84-291.84s-131.072-291.84-291.84-291.84c-160.768 0-291.84 131.072-291.84 291.84s131.072 291.84 291.84 291.84v0z" />
<glyph unicode="&#xe96a;" glyph-name="secure-delivery" d="M808.96 929.28h-614.4l-163.84-262.144v-679.936h942.080v679.936l-163.84 262.144zM517.12 897.536h274.432l137.216-220.16h-411.648v220.16zM211.968 897.536h274.432v-220.16h-411.648l137.216 220.16zM941.056 18.944h-878.592v627.712h879.616v-627.712zM595.968 567.808h-188.416c-25.6 0-47.104-21.504-47.104-47.104s21.504-47.104 47.104-47.104h188.416c25.6 0 47.104 21.504 47.104 47.104 0 26.624-21.504 47.104-47.104 47.104zM595.968 505.344h-188.416c-8.192 0-15.36 7.168-15.36 15.36s7.168 15.36 15.36 15.36h188.416c8.192 0 15.36-7.168 15.36-15.36s-7.168-15.36-15.36-15.36zM627.712 113.152h-251.904c-8.192 0-15.36-7.168-15.36-15.36s7.168-15.36 15.36-15.36h250.88c8.192 0 15.36 7.168 15.36 15.36 1.024 8.192-6.144 15.36-14.336 15.36zM499.712 276.992c-16.384 0-29.696-13.312-29.696-29.696 0-8.192 3.072-15.36 9.216-21.504v-26.624c0-11.264 9.216-20.48 20.48-20.48s20.48 9.216 20.48 20.48v26.624c6.144 5.12 9.216 13.312 9.216 21.504 0 16.384-13.312 29.696-29.696 29.696zM509.952 237.056c-3.072-3.072-4.096-6.144-4.096-10.24v-26.624c0-3.072-3.072-6.144-6.144-6.144s-6.144 3.072-6.144 6.144v26.624c0 4.096-2.048 7.168-4.096 10.24-3.072 3.072-5.12 7.168-5.12 11.264 0 8.192 7.168 15.36 15.36 15.36s15.36-7.168 15.36-15.36c0-5.12-2.048-8.192-5.12-11.264zM586.752 315.904h-21.504v56.32c0 35.84-28.672 64.512-64.512 64.512s-64.512-28.672-64.512-64.512v-56.32h-21.504c-12.288 0-21.504-9.216-21.504-21.504v-132.096c0-12.288 9.216-21.504 21.504-21.504h173.056c12.288 0 21.504 9.216 21.504 21.504v132.096c-2.048 12.288-11.264 21.504-22.528 21.504zM449.536 373.248c0 27.648 22.528 51.2 51.2 51.2 27.648 0 51.2-22.528 51.2-51.2v-56.32h-101.376v56.32zM593.92 162.304v0c0-4.096-3.072-7.168-7.168-7.168h-173.056c-4.096 0-7.168 3.072-7.168 7.168v132.096c0 4.096 3.072 7.168 7.168 7.168h173.056c4.096 0 7.168-3.072 7.168-7.168v-132.096z" />
<glyph unicode="&#xe96b;" glyph-name="security" d="M796.672 751.104l-295.936 99.328c-3.072 1.024-5.12 1.024-8.192 1.024-2.048 0-5.12 0-8.192-1.024l-295.936-99.328c-7.168-2.048-12.288-9.216-12.288-17.408v-227.328c0-3.072 15.36-327.68 309.248-442.368 2.048-1.024 4.096-1.024 6.144-1.024s4.096 0 6.144 1.024c296.96 115.712 311.296 440.32 311.296 443.392v226.304c0 8.192-5.12 15.36-12.288 17.408zM492.544 101.888c-265.216 107.52-279.552 403.456-279.552 405.504v212.992l279.552 94.208 279.552-94.208v-211.968c0-3.072-13.312-299.008-279.552-406.528zM701.44 583.168c-8.192 6.144-19.456 5.12-25.6-2.048l-210.944-253.952-136.192 143.36c-7.168 7.168-18.432 7.168-25.6 1.024-7.168-7.168-7.168-18.432-1.024-25.6l150.528-157.696c3.072-4.096 8.192-6.144 13.312-6.144 0 0 0 0 1.024 0 5.12 0 10.24 2.048 13.312 6.144l224.256 269.312c6.144 7.168 5.12 18.432-3.072 25.6z" />
<glyph unicode="&#xe96c;" glyph-name="services-menu" d="M941.056 188.928c35.84 0 64.512 28.672 64.512 64.512v296.96c0 35.84-28.672 64.512-64.512 64.512h-406.528v7.168c0 10.24-3.072 19.456-9.216 26.624 4.096 5.12 7.168 11.264 9.216 18.432 16.384 10.24 26.624 27.648 26.624 47.104 0 9.216-2.048 18.432-7.168 26.624 4.096 8.192 7.168 17.408 7.168 26.624 0 19.456-10.24 36.864-26.624 47.104 0 2.048 0 4.096 0 6.144 0 27.648-20.48 51.2-47.104 54.272-10.24 16.384-27.648 26.624-47.104 26.624-2.048 0-5.12 0-7.168-1.024-11.264 9.216-24.576 13.312-38.912 13.312-2.048 0-4.096 0-6.144 0-11.264 9.216-25.6 13.312-40.96 13.312-14.336 0-28.672-5.12-40.96-13.312-2.048 0-4.096 0-6.144 0-14.336 0-27.648-5.12-38.912-13.312-17.408-2.048-32.768-11.264-41.984-26.624-26.624-4.096-47.104-26.624-47.104-54.272 0-2.048 0-4.096 0-6.144-16.384-10.24-26.624-27.648-26.624-47.104 0-9.216 2.048-18.432 7.168-26.624-4.096-8.192-7.168-17.408-7.168-26.624 0-19.456 10.24-37.888 26.624-47.104 1.024-4.096 2.048-7.168 4.096-11.264-10.24-7.168-17.408-20.48-17.408-33.792v-26.624c0-23.552 18.432-41.984 41.984-41.984h7.168l1.024-7.168c3.072-16.384 11.264-30.72 23.552-41.984l5.12-5.12v-39.936c0-5.12-3.072-9.216-8.192-10.24l-115.712-35.84c-28.672-9.216-48.128-34.816-48.128-65.536v-191.488c0-19.456 6.144-36.864 17.408-50.176h-32.768c-17.408 0-31.744-14.336-31.744-31.744v-32.768c0-17.408 14.336-31.744 31.744-31.744h923.648c17.408 0 31.744 14.336 31.744 31.744v32.768c0 17.408-14.336 31.744-31.744 31.744h-167.936l-11.264 84.992h146.432zM974.848 551.424v-296.96c0-18.432-15.36-33.792-33.792-33.792h-148.48c-1.024 0-1.024 0-2.048 0l-12.288 89.088c-3.072 23.552-23.552 41.984-48.128 41.984h-73.728c-24.576 0-45.056-18.432-48.128-41.984l-12.288-90.112c-1.024 0-1.024 0-2.048 0h-147.456c-18.432 0-33.792 15.36-33.792 33.792v296.96c0 18.432 15.36 33.792 33.792 33.792h494.592c18.432 1.024 33.792-14.336 33.792-32.768zM543.744 104.96c0 0 0 1.024 0 1.024v83.968h48.128l-11.264-84.992h-36.864zM494.592 615.936l3.072 17.408c3.072-2.048 5.12-5.12 5.12-9.216v-7.168h-8.192zM184.32 752.128c-3.072 3.072-6.144 8.192-6.144 16.384 0 11.264 7.168 20.48 17.408 23.552 4.096 1.024 8.192 4.096 10.24 8.192s2.048 8.192 0 12.288c-1.024 3.072-2.048 6.144-2.048 9.216 0 13.312 10.24 23.552 23.552 24.576 1.024 0 1.024 0 2.048 0 7.168 0 13.312 4.096 15.36 10.24 3.072 9.216 12.288 16.384 22.528 16.384 0 0 1.024 0 1.024 0 4.096 0 8.192 1.024 11.264 4.096 6.144 6.144 13.312 9.216 21.504 9.216 2.048 0 4.096 0 7.168-1.024 5.12-1.024 10.24 0 14.336 4.096 7.168 6.144 16.384 10.24 25.6 10.24s18.432-4.096 25.6-10.24c4.096-3.072 9.216-5.12 14.336-4.096 2.048 1.024 5.12 1.024 7.168 1.024 8.192 0 16.384-4.096 22.528-10.24 4.096-4.096 10.24-6.144 16.384-4.096 2.048 1.024 5.12 1.024 7.168 1.024 10.24 0 19.456-6.144 22.528-16.384 2.048-6.144 8.192-11.264 15.36-10.24 1.024 0 1.024 0 2.048 0 13.312 0 23.552-11.264 23.552-24.576 0-3.072-1.024-6.144-2.048-9.216-2.048-4.096-1.024-9.216 0-12.288s5.12-7.168 10.24-8.192c10.24-3.072 17.408-12.288 17.408-23.552 0-7.168-3.072-13.312-6.144-16.384-5.12-6.144-5.12-14.336 0-20.48 3.072-3.072 6.144-8.192 6.144-16.384 0-10.24-6.144-19.456-16.384-22.528-7.168-2.048-11.264-9.216-10.24-16.384 0 0 0-1.024 0-1.024 0-5.12-3.072-9.216-8.192-10.24 0 0-15.36 0-15.36 0l-9.216 53.248c-1.024 8.192-8.192 13.312-16.384 13.312-1.024 0-1.024 0-2.048 0v0c-8.192 0-15.36 4.096-19.456 11.264-3.072 4.096-8.192 7.168-13.312 7.168v0c-5.12 0-10.24-3.072-13.312-7.168-4.096-7.168-12.288-11.264-20.48-11.264s-15.36 4.096-20.48 11.264c-3.072 4.096-8.192 7.168-13.312 7.168v0c-5.12 0-10.24-3.072-13.312-7.168-4.096-7.168-12.288-11.264-20.48-11.264s-15.36 4.096-20.48 11.264c-3.072 4.096-8.192 7.168-13.312 7.168v0c-5.12 0-10.24-3.072-13.312-7.168-4.096-7.168-11.264-10.24-19.456-11.264v0c-1.024 0-1.024 0-2.048 0-8.192 1.024-15.36-5.12-16.384-13.312l-9.216-53.248c0 0-14.336 0-15.36 0-5.12 1.024-8.192 5.12-8.192 10.24 0 0 0 1.024 0 1.024 1.024 7.168-4.096 13.312-10.24 16.384-9.216 3.072-16.384 12.288-16.384 22.528 0 7.168 3.072 13.312 6.144 16.384 9.216 6.144 9.216 15.36 4.096 20.48zM201.728 586.24c-6.144 0-11.264 5.12-11.264 11.264v26.624c0 4.096 2.048 7.168 5.12 9.216l7.168-47.104h-1.024zM227.328 634.368h2.048c14.336 0 25.6 10.24 28.672 23.552l7.168 43.008c8.192 2.048 16.384 5.12 22.528 10.24 9.216-7.168 20.48-11.264 32.768-11.264s23.552 4.096 32.768 11.264c9.216-7.168 20.48-11.264 32.768-11.264s23.552 4.096 32.768 11.264c7.168-5.12 14.336-8.192 22.528-10.24l7.168-43.008c2.048-10.24 8.192-18.432 17.408-21.504l-3.072-20.48h-17.408c-35.84 0-64.512-28.672-64.512-64.512v-68.608c-3.072-1.024-6.144-2.048-9.216-2.048h-50.176c-6.144 0-11.264 2.048-15.36 5.12l-53.248 44.032c-7.168 6.144-11.264 14.336-13.312 22.528l-12.288 81.92zM240.64 418.304c17.408 5.12 29.696 21.504 29.696 39.936v17.408l16.384-13.312c10.24-8.192 22.528-12.288 34.816-12.288h50.176c3.072 0 6.144 0 9.216 1.024v-99.328c-9.216-1.024-18.432-2.048-27.648-2.048-51.2 0-100.352 23.552-132.096 63.488l19.456 5.12zM98.304 155.136v191.488c0 16.384 10.24 30.72 26.624 35.84l64.512 20.48c37.888-53.248 98.304-84.992 163.84-84.992 9.216 0 18.432 1.024 27.648 2.048v-65.536c0-35.84 28.672-64.512 64.512-64.512h66.56v-83.968c0 0 0-1.024 0-1.024h-84.992v17.408c0 35.84-28.672 64.512-64.512 64.512h-163.84c-1.024 0-1.024 0-1.024 1.024v99.328c0 8.192-7.168 15.36-15.36 15.36s-15.36-7.168-15.36-15.36v-99.328c0-17.408 14.336-31.744 31.744-31.744h100.352v-51.2h-149.504c-28.672 0-51.2 22.528-51.2 50.176zM329.728 104.96v51.2h33.792c18.432 0 33.792-15.36 33.792-33.792v-17.408h-67.584zM974.848 72.192v-32.768c0-1.024 0-1.024-1.024-1.024h-923.648c-1.024 0-1.024 0-1.024 1.024v32.768c0 1.024 0 1.024 1.024 1.024h923.648c1.024 0 1.024 0 1.024-1.024zM612.352 104.96l26.624 201.728c1.024 8.192 8.192 15.36 17.408 15.36h73.728c9.216 0 16.384-6.144 17.408-15.36l26.624-201.728h-161.792zM693.248 386.56c26.624 0 48.128 21.504 48.128 48.128s-21.504 48.128-48.128 48.128c-26.624 0-48.128-21.504-48.128-48.128 0-25.6 21.504-48.128 48.128-48.128zM693.248 453.12c9.216 0 17.408-8.192 17.408-17.408s-8.192-17.408-17.408-17.408c-9.216 0-17.408 8.192-17.408 17.408s8.192 17.408 17.408 17.408z" />
<glyph unicode="&#xe96d;" glyph-name="success" d="M940.032 481.792v432.128c0 5.12-2.048 9.216-6.144 12.288s-9.216 3.072-14.336 1.024l-148.48-58.368c-6.144-2.048-9.216-8.192-9.216-14.336s4.096-11.264 9.216-14.336l139.264-56.32v-303.104h-15.36c-4.096 0-8.192-2.048-10.24-4.096l-265.216-264.192-56.32 56.32c-6.144 6.144-15.36 6.144-21.504 0l-175.104-176.128-109.568 108.544c-6.144 6.144-15.36 6.144-21.504 0l-200.704-200.704c-2.048-3.072-4.096-7.168-4.096-10.24v-15.36h29.696v9.216l186.368 186.368 108.544-108.544c6.144-6.144 15.36-6.144 21.504 0l176.128 175.104 56.32-56.32c6.144-6.144 15.36-6.144 21.504 0l271.36 271.36h82.944v29.696h-45.056zM816.128 854.528l94.208 37.888v-75.776l-94.208 37.888zM56.32 278.016c35.84 37.888 111.616 14.336 156.672 0 18.432-6.144 36.864-9.216 53.248-9.216 17.408 0 32.768 3.072 48.128 9.216v-94.208c0-8.192 7.168-15.36 15.36-15.36h74.752c8.192 0 15.36 7.168 15.36 15.36v144.384c3.072 5.12 9.216 9.216 18.432 13.312 3.072 1.024 6.144 3.072 9.216 4.096 8.192 4.096 17.408 8.192 25.6 14.336 10.24 7.168 17.408 19.456 19.456 32.768h30.72v-89.088c0-8.192 7.168-15.36 15.36-15.36h74.752c8.192 0 15.36 6.144 15.36 15.36v118.784c0 40.96-33.792 74.752-74.752 74.752h-89.088v45.056h74.752c40.96 0 74.752 33.792 74.752 74.752v133.12c0 8.192-7.168 15.36-15.36 15.36h-59.392c-8.192 0-15.36-6.144-15.36-15.36v-118.784h-72.704c7.168 13.312 12.288 28.672 12.288 45.056 0 49.152-39.936 89.088-89.088 89.088s-89.088-39.936-89.088-89.088c0-15.36 4.096-28.672 10.24-40.96-50.176-15.36-96.256-48.128-132.096-97.28-16.384-21.504-27.648-47.104-39.936-71.68-3.072-6.144-6.144-13.312-9.216-19.456-7.168-14.336-13.312-29.696-19.456-45.056-18.432-37.888-34.816-76.8-60.416-103.424-6.144-6.144-5.12-15.36 1.024-21.504 5.12-5.12 15.36-5.12 20.48 1.024v0zM314.368 470.528l-17.408 17.408 17.408 17.408v-34.816zM453.632 383.488c-6.144-4.096-12.288-7.168-20.48-10.24-3.072-1.024-7.168-3.072-10.24-5.12-2.048-1.024-4.096-2.048-5.12-3.072v26.624h43.008c-2.048-3.072-4.096-6.144-7.168-8.192v0zM537.6 601.6c8.192 0 15.36 7.168 15.36 15.36v118.784h29.696v-119.808c0-24.576-20.48-45.056-45.056-45.056h-89.088c-8.192 0-14.336-7.168-14.336-15.36v-74.752c0-8.192 6.144-15.36 14.336-15.36h104.448c24.576 0 45.056-20.48 45.056-45.056v-104.448h-45.056v91.136c0 8.192-7.168 15.36-15.36 15.36h-134.144c-8.192 0-15.36-7.168-15.36-15.36v-208.896h-45.056v343.040c0 6.144-4.096 11.264-9.216 13.312s-12.288 1.024-16.384-3.072l-52.224-52.224c-3.072-3.072-4.096-6.144-4.096-10.24s2.048-8.192 4.096-10.24l41.984-41.984-23.552-23.552-44.032 44.032c-17.408 17.408-17.408 46.080 0 63.488l82.944 82.944c14.336-10.24 31.744-16.384 51.2-16.384 0 0 1.024 0 1.024 0v-89.088h29.696v95.232c6.144 2.048 12.288 5.12 18.432 9.216h114.688zM372.736 735.744c32.768 0 59.392-26.624 59.392-59.392s-26.624-59.392-59.392-59.392c-32.768 0-59.392 26.624-59.392 59.392s26.624 59.392 59.392 59.392v0zM119.808 389.632c6.144 15.36 12.288 29.696 19.456 43.008 3.072 6.144 6.144 13.312 9.216 19.456 11.264 22.528 22.528 47.104 36.864 66.56 18.432 24.576 46.080 55.296 84.992 74.752l-52.224-52.224c-28.672-28.672-28.672-76.8 0-105.472l54.272-54.272c6.144-6.144 15.36-6.144 21.504 0l20.48 20.48v-90.112c-31.744-18.432-67.584-13.312-92.16-5.12-34.816 11.264-86.016 27.648-131.072 20.48 11.264 19.456 19.456 40.96 28.672 62.464v0z" />
<glyph unicode="&#xe96e;" glyph-name="support" d="M916.48 71.168v475.136c0 25.6-20.48 47.104-47.104 47.104h-152.576v-30.72h152.576c9.216 0 16.384-7.168 16.384-16.384v-475.136h-337.92v-15.36h-61.44v15.36h-337.92v475.136c0 9.216 7.168 16.384 16.384 16.384h152.576v30.72h-152.576c-25.6 0-47.104-20.48-47.104-47.104v-475.136h-76.8v-51.2c0-22.528 18.432-40.96 40.96-40.96h870.4c22.528 0 40.96 18.432 40.96 40.96v51.2h-76.8zM962.56 19.968c0-6.144-5.12-10.24-10.24-10.24h-870.4c-6.144 0-10.24 5.12-10.24 10.24v20.48h384v-15.36h122.88v15.36h384v-20.48zM179.2 101.888h675.84v430.080h-168.96v-30.72h138.24v-368.64h-614.4v368.64h138.24v30.72h-168.96v-430.080zM501.76 915.968h30.72v-46.080h-30.72v46.080zM358.4 868.864l26.624 15.36 23.552-39.936-26.624-15.36-23.552 39.936zM257.024 756.224l15.36 26.624 39.936-23.552-15.36-25.6-39.936 22.528zM225.28 639.488h46.080v-30.72h-46.080v30.72zM762.88 639.488h46.080v-30.72h-46.080v30.72zM640 270.848c0-8.192-7.168-15.36-15.36-15.36h-215.040c-8.192 0-15.36 7.168-15.36 15.36s7.168 15.36 15.36 15.36h215.040c8.192 0 15.36-7.168 15.36-15.36v0zM609.28 194.048h-184.32c-8.192 0-15.36 7.168-15.36 15.36s7.168 15.36 15.36 15.36h184.32c8.192 0 15.36-7.168 15.36-15.36s-7.168-15.36-15.36-15.36v0zM655.36 332.288c0-8.192-7.168-15.36-15.36-15.36h-245.76c-8.192 0-15.36 7.168-15.36 15.36s7.168 15.36 15.36 15.36h245.76c8.192 0 15.36-7.168 15.36-15.36v0zM721.92 760.32l39.936 23.552 15.36-26.624-39.936-23.552-15.36 26.624zM626.688 844.288l23.552 39.936 25.6-15.36-23.552-39.936-25.6 15.36zM624.64 347.648h-230.4v15.36c0 46.080-16.384 90.112-47.104 129.024-35.84 46.080-51.2 103.424-43.008 160.768 12.288 96.256 92.16 173.056 188.416 184.32 61.44 7.168 122.88-12.288 167.936-53.248 46.080-40.96 71.68-99.328 71.68-160.768 0-49.152-16.384-95.232-47.104-134.144-29.696-36.864-45.056-81.92-45.056-125.952v-15.36h-15.36zM624.64 347.648" />
<glyph unicode="&#xe96f;" glyph-name="wheel" d="M571.392-45.568h-118.784c-23.552 0-44.032 17.408-46.080 41.984l-12.288 72.704c-22.528 7.168-45.056 16.384-66.56 27.648l-61.44-44.032c-7.168-6.144-17.408-10.24-28.672-10.24-12.288 0-23.552 5.12-32.768 13.312l-83.968 84.992c-16.384 16.384-18.432 43.008-3.072 61.44l43.008 60.416c-11.264 21.504-20.48 44.032-27.648 66.56l-74.752 12.288c-22.528 2.048-40.96 21.504-40.96 46.080v119.808c0 23.552 17.408 44.032 41.984 46.080l73.728 12.288c7.168 22.528 16.384 45.056 27.648 66.56l-44.032 61.44c-14.336 17.408-13.312 44.032 4.096 61.44l83.968 83.968c16.384 16.384 44.032 17.408 61.44 3.072l60.416-43.008c21.504 11.264 44.032 20.48 66.56 27.648l12.288 74.752c2.048 22.528 21.504 40.96 46.080 40.96h119.808c23.552 0 44.032-17.408 46.080-41.984l12.288-73.728c22.528-7.168 45.056-16.384 66.56-27.648l61.44 44.032c7.168 6.144 17.408 9.216 28.672 9.216 12.288 0 23.552-5.12 32.768-13.312l83.968-83.968c16.384-16.384 18.432-43.008 3.072-61.44l-43.008-61.44c11.264-21.504 20.48-44.032 27.648-66.56l74.752-12.288c22.528-2.048 40.96-21.504 40.96-46.080v-119.808c0-23.552-17.408-44.032-41.984-46.080l-73.728-11.264c-7.168-22.528-16.384-45.056-27.648-66.56l44.032-61.44c14.336-17.408 13.312-44.032-4.096-61.44l-83.968-83.968c-16.384-16.384-44.032-17.408-61.44-3.072l-61.44 43.008c-21.504-11.264-44.032-20.48-66.56-27.648l-12.288-74.752c-2.048-22.528-21.504-39.936-46.080-39.936v0zM326.656 132.608c3.072 0 5.12-1.024 8.192-2.048 24.576-14.336 51.2-24.576 78.848-32.768 6.144-2.048 10.24-7.168 11.264-13.312l14.336-83.968c1.024-8.192 7.168-13.312 13.312-13.312h119.808c7.168 0 12.288 5.12 13.312 12.288l14.336 84.992c1.024 6.144 5.12 11.264 11.264 13.312 27.648 8.192 54.272 18.432 78.848 32.768 5.12 3.072 12.288 3.072 17.408-1.024l69.632-50.176c7.168-6.144 14.336-4.096 19.456 0l83.968 83.968c5.12 5.12 5.12 12.288 1.024 18.432l-50.176 70.656c-4.096 5.12-4.096 12.288-1.024 17.408 14.336 24.576 24.576 51.2 32.768 78.848 2.048 6.144 7.168 10.24 13.312 11.264l84.992 14.336c8.192 1.024 13.312 7.168 13.312 13.312v119.808c0 7.168-5.12 12.288-12.288 13.312l-84.992 14.336c-6.144 1.024-11.264 5.12-13.312 11.264-8.192 27.648-18.432 54.272-32.768 78.848-3.072 5.12-3.072 12.288 1.024 17.408l50.176 69.632c5.12 6.144 5.12 14.336 0 19.456l-83.968 83.968c-5.12 5.12-13.312 5.12-18.432 1.024l-70.656-50.176c-5.12-4.096-12.288-4.096-17.408-1.024-24.576 14.336-51.2 24.576-78.848 32.768-6.144 2.048-10.24 7.168-11.264 13.312l-14.336 83.968c-3.072 8.192-9.216 13.312-16.384 13.312h-118.784c-7.168 0-12.288-5.12-13.312-12.288l-14.336-84.992c-1.024-6.144-5.12-11.264-11.264-13.312-27.648-8.192-54.272-18.432-78.848-32.768-5.12-3.072-12.288-3.072-17.408 1.024l-70.656 50.176c-7.168 5.12-14.336 4.096-19.456 0l-83.968-84.992c-5.12-5.12-5.12-12.288-1.024-18.432l50.176-70.656c4.096-5.12 4.096-12.288 1.024-17.408-14.336-24.576-24.576-51.2-32.768-78.848-2.048-6.144-7.168-10.24-13.312-11.264l-83.968-14.336c-7.168 0-12.288-6.144-12.288-13.312v-119.808c0-7.168 5.12-12.288 12.288-13.312l86.016-14.336c6.144-1.024 11.264-5.12 13.312-11.264 7.168-27.648 18.432-54.272 32.768-78.848 3.072-5.12 3.072-12.288-1.024-17.408l-51.2-69.632c-5.12-6.144-5.12-14.336 0-19.456l83.968-83.968c5.12-5.12 13.312-5.12 18.432-1.024l70.656 50.176c3.072 3.072 6.144 4.096 10.24 4.096v0zM512 252.416c-107.52 0-195.584 87.040-195.584 195.584 0 107.52 88.064 195.584 195.584 195.584s195.584-88.064 195.584-195.584c0-107.52-88.064-195.584-195.584-195.584v0zM512 610.816c-90.112 0-162.816-72.704-162.816-162.816s72.704-162.816 162.816-162.816c90.112 0 162.816 72.704 162.816 162.816s-72.704 162.816-162.816 162.816v0z" />
</font></defs></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{clip-path:url(#SVGID_2_);}
</style>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st0" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4L43.8,25.5
c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g>
<path d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3C80.7,17,66.6,3,49.3,3L49.3,3z
M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5c15.4,0,27.9,12.5,27.9,27.8V65.7z
M77.2,65.7"/>
<path d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2C51.1,14.2,50.3,13.4,49.3,13.4
L49.3,13.4z M49.3,13.4"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g>
<path d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z M49.8,94.8
c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z M49.8,94.8"/>
<path d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6l15.6,15.6L31.6,65.4
c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68c0.4,0.4,0.9,0.6,1.3,0.6
c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z M68,31.6"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g>
<g id="check-circle-outline">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g>
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g>
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g>
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g>
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g>
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g>
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g>
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g>
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g>
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g>
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g>
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g>
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g>
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g>
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g>
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g>
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g>
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g>
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g>
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g>
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g>
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g>
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g>
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g>
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#FFFFFF;}
.st3{display:inline;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st4{display:none;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st5{fill:none;}
.st6{fill:#C1032B;}
.st7{fill:#020202;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path class="st1" d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11
M50,10L50,10c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"
/>
</g>
<g class="st0">
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path class="st1" d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49
M21.5,48L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48
L21.5,48z"/>
</g>
<g class="st0">
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path class="st1" d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49
M80.5,48L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48
L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g class="st0">
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st4" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st4" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
<g class="st0">
<path class="st1" d="M94.6,21.9H47L28.3,87.7c-0.6,1.8-2.2,3-4,3c-0.1,0-0.1,0-0.2,0c-1.8,0-3.4-1.1-4.1-2.7l-7.6-19.1H5.2
c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4h10.2c1.8,0,3.4,1.1,4.1,2.7l4.2,10.6l15.9-57.3c0.6-1.8,2.3-3,4.2-3h50.8
c2.4,0,4.4,2,4.4,4.4S97,21.9,94.6,21.9z M97,80.6L79.8,61.3L96.2,43c0.3-0.3,0.4-0.8,0.2-1.2c-0.2-0.4-0.6-0.6-1-0.6H85
c-0.3,0-0.6,0.1-0.8,0.4l-11,12.8L62.2,41.6c-0.2-0.2-0.5-0.4-0.8-0.4H50.5c-0.4,0-0.8,0.3-1,0.6c-0.2,0.4-0.1,0.9,0.2,1.2
l16.2,18.2L48.8,80.6c-0.3,0.3-0.4,0.8-0.2,1.2c0.2,0.4,0.6,0.6,1,0.6h10.8c0.3,0,0.6-0.1,0.8-0.4l11.4-13.7L84.3,82
c0.2,0.2,0.5,0.4,0.8,0.4h11c0.4,0,0.8-0.3,1-0.6C97.3,81.4,97.3,80.9,97,80.6z"/>
</g>
<g class="st0">
<path class="st2" d="M23,29.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,6c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,5h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,10.4,30.6,5,24,5L24,5z"/>
</g>
<g class="st0">
<path class="st2" d="M23,60.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,37c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,36h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,41.4,30.6,36,24,36L24,36z"/>
</g>
<g class="st0">
<path class="st2" d="M23,91.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,68c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,67h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,72.4,30.6,67,24,67L24,67z"/>
</g>
<g class="st0">
<line class="st3" x1="68.5" y1="6.5" x2="68.5" y2="91.5"/>
</g>
<line class="st4" x1="45.5" y1="74.5" x2="68.5" y2="91.5"/>
<line class="st4" x1="91.5" y1="74.5" x2="68.5" y2="91.5"/>
<g id="_x32_22._Calender" class="st0">
<g class="st1">
<path d="M57.6,50.6L57.6,50.6c-2.7,0-5,2.2-5,5c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,52.9,60.3,50.6,57.6,50.6z M42.7,45.7
c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,43.5,40,45.7,42.7,45.7z M57.6,35.7L57.6,35.7c-2.7,0-5,2.2-5,5
c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,38,60.3,35.7,57.6,35.7z M62.6,10.9H37.7v9.9h24.8V10.9z M72.5,45.7c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C67.5,43.5,69.8,45.7,72.5,45.7z M72.5,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
C67.5,58.3,69.8,60.6,72.5,60.6z M42.7,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,58.3,40,60.6,42.7,60.6z
M27.8,75.5c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,73.2,25.1,75.5,27.8,75.5z M87.4,10.9h-5v9.9h5v64.5H12.9
V20.9h5v-9.9h-5c-5.5,0-9.9,4.4-9.9,9.9v64.5c0,5.5,4.4,9.9,9.9,9.9h74.5c5.5,0,9.9-4.4,9.9-9.9V20.9
C97.3,15.4,92.9,10.9,87.4,10.9z M27.8,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,58.3,25.1,60.6,27.8,60.6z
M27.8,45.7c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,43.5,25.1,45.7,27.8,45.7z M42.7,75.5c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,73.2,40,75.5,42.7,75.5z M27.8,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
v9.9C22.9,18.6,25.1,20.9,27.8,20.9z M72.5,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5v9.9
C67.5,18.6,69.8,20.9,72.5,20.9z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<polygon class="st5" points="47.5,6.1 20.7,6.1 7.3,27.5 47.5,27.5 "/>
<polygon class="st5" points="77.3,6.1 50.5,6.1 50.5,27.5 90.7,27.5 "/>
<rect x="6.1" y="30.6" class="st5" width="85.9" height="61.3"/>
<path d="M79,3H19L3,28.6V95h92V28.6L79,3z M50.5,6.1h26.8l13.4,21.5H50.5V6.1z M20.7,6.1h26.8v21.5H7.3L20.7,6.1z M91.9,91.9H6.1
V30.6h85.9V91.9z"/>
</g>
<path class="st1" d="M58.2,38.3H39.8c-2.5,0-4.6,2.1-4.6,4.6c0,2.5,2.1,4.6,4.6,4.6h18.4c2.5,0,4.6-2.1,4.6-4.6
C62.8,40.3,60.7,38.3,58.2,38.3z M58.2,44.4H39.8c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h18.4c0.8,0,1.5,0.7,1.5,1.5
C59.7,43.7,59,44.4,58.2,44.4z"/>
<path class="st1" d="M61.3,82.7H36.7c-0.8,0-1.5,0.7-1.5,1.5c0,0.8,0.7,1.5,1.5,1.5h24.5c0.8,0,1.5-0.7,1.5-1.5
C62.8,83.4,62.1,82.7,61.3,82.7z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M48.8,66.7c-1.6,0-2.9,1.3-2.9,2.9c0,0.8,0.3,1.5,0.9,2.1v2.6c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-2.6
c0.6-0.5,0.9-1.3,0.9-2.1C51.7,68,50.4,66.7,48.8,66.7z M49.8,70.6c-0.3,0.3-0.4,0.6-0.4,1v2.6c0,0.3-0.3,0.6-0.6,0.6
c-0.3,0-0.6-0.3-0.6-0.6v-2.6c0-0.4-0.2-0.7-0.4-1c-0.3-0.3-0.5-0.7-0.5-1.1c0-0.8,0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5
C50.3,70,50.1,70.3,49.8,70.6z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M57.3,62.9h-2.1v-5.5c0-3.5-2.8-6.3-6.3-6.3c-3.5,0-6.3,2.8-6.3,6.3v5.5h-2.1c-1.2,0-2.1,0.9-2.1,2.1v12.9
c0,1.2,0.9,2.1,2.1,2.1h16.9c1.2,0,2.1-0.9,2.1-2.1V65C59.3,63.8,58.4,62.9,57.3,62.9z M43.9,57.3c0-2.7,2.2-5,5-5
c2.7,0,5,2.2,5,5v5.5h-9.9V57.3z M58,77.9L58,77.9c0,0.4-0.3,0.7-0.7,0.7H40.4c-0.4,0-0.7-0.3-0.7-0.7V65c0-0.4,0.3-0.7,0.7-0.7
h16.9c0.4,0,0.7,0.3,0.7,0.7V77.9z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.3,15.8H25.8c-2.2-4-6.4-6.8-11.3-6.8C7.5,9,1.8,14.7,1.8,21.8c0,7.1,5.7,12.8,12.8,12.8c5.8,0,10.7-3.8,12.2-9.1h40.9
c-0.3-1.2-0.4-2.4-0.4-3.7C67.3,19.7,67.6,17.7,68.3,15.8z M14.5,26.6c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8
s4.8,2.1,4.8,4.8C19.3,24.4,17.2,26.6,14.5,26.6z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M85.2,9c-7.1,0-12.8,5.7-12.8,12.8c0,3.5,1.4,6.6,3.6,8.9L55.7,63.9c3.2,1.1,5.9,3,8,5.5l21.3-34.8c0,0,0.1,0,0.1,0
c7.1,0,12.8-5.7,12.8-12.8S92.3,9,85.2,9z M85.2,26.6c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8c2.6,0,4.8,2.1,4.8,4.8
C90,24.4,87.8,26.6,85.2,26.6z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M50,68.2c-1,0-2,0.1-2.9,0.4L26.6,35.1c-2.4,2.2-5.4,3.7-8.7,4.4l21.3,34.8c-1.2,2-1.9,4.3-1.9,6.7
C37.2,88,43,93.7,50,93.7S62.8,88,62.8,80.9S57.1,68.2,50,68.2z M50,85.7c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8
c2.6,0,4.8,2.1,4.8,4.8C54.8,83.6,52.6,85.7,50,85.7z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<g>
<path d="M10.5,34h3.2c0-6.2,4.9-11,11-11v-3.2C16.8,19.8,10.5,26.1,10.5,34z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,32.4v15.8h50.5V32.4L24.7,32.4L24.7,32.4z M72,45H27.8v-9.5H72L72,45L72,45z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,51.3v15.8h50.5V51.3H24.7z M72,64H27.8v-9.5H72L72,64L72,64z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M90.6,31.3c-0.9-5.2-4.4-9.6-9.2-11.7c0-8-8.2-16.9-19.4-12.9C57.8,3.1,52.3,1,46.8,1c-8.8,0-16.9,4.9-21,12.6
C9,12.8,3.2,28.6,4.2,35.6C2.1,38.2,1,41.7,1,45c0,8.7,7.1,15.8,15.8,15.8h6.3v-3.2h-6.3C9.8,57.7,4.2,52,4.2,45
c0-5.2,3.3-8.5,3.3-8.5C5.9,26.1,14.6,15,27.7,16.8c0,0,5-12.8,19.1-12.8c9.3,0,14.8,6.3,14.8,6.3c9.9-5.2,18.1,3.5,16.7,11.4
c4.4,1.3,9.3,5.2,9.6,11.7c0,0,7.9,3.2,7.9,11.7c0,6.9-5.7,12.6-12.6,12.6h-6.3v3.2h6.3C91.9,60.8,99,53.7,99,45
C98.8,39.2,95.7,34,90.6,31.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M54.7,92.4v-3.2h-3.2v-3.2h23.7V70.3H24.7v15.8h23.7v3.2h-3.2v3.2H18.4v3.2h26.8v3.2h9.5v-3.2h26.8v-3.2H54.7z
M27.8,82.9v-9.5H72v9.5H27.8z M51.5,95.5h-3.2v-3.2h3.2V95.5z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="31" y="38.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="37.3" y="38.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="43.6" y="38.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="51.5" y="38.7" width="17.4" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="31" y="57.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="37.3" y="57.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="43.6" y="57.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="51.5" y="57.7" width="17.4" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="31" y="76.6" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="37.3" y="76.6" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="43.6" y="76.6" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="51.5" y="76.6" width="17.4" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M71,42c0.6,0,1,0.4,1,1v6c0,0.6-0.4,1-1,1H29c-0.6,0-1-0.4-1-1v-6c0-0.6,0.4-1,1-1H71 M71,41H29c-1.1,0-2,0.9-2,2v6
c0,1.1,0.9,2,2,2h42c1.1,0,2-0.9,2-2v-6C73,41.9,72.1,41,71,41L71,41z"/>
</g>
<g class="st1">
<polygon points="35,45 32,45 32,47 35,47 35,45 "/>
</g>
<g class="st1">
<path d="M37,52v1h-1v-1H37 M38,51h-3v3h3V51L38,51z"/>
</g>
<g class="st1">
<path d="M64,52v1h-1v-1H64 M65,51h-3v3h3V51L65,51z"/>
</g>
<g class="st1">
<polygon points="69,45 66,45 66,47 69,47 69,45 "/>
</g>
<g class="st1">
<polygon points="64,45 51,45 51,47 64,47 64,45 "/>
</g>
<g class="st1">
<path d="M71,55c0.6,0,1,0.4,1,1v6c0,0.6-0.4,1-1,1H29c-0.6,0-1-0.4-1-1v-6c0-0.6,0.4-1,1-1H71 M71,54H29c-1.1,0-2,0.9-2,2v6
c0,1.1,0.9,2,2,2h42c1.1,0,2-0.9,2-2v-6C73,54.9,72.1,54,71,54L71,54z"/>
</g>
<g class="st1">
<polygon points="35,58 32,58 32,60 35,60 35,58 "/>
</g>
<g class="st1">
<polygon points="69,58 66,58 66,60 69,60 69,58 "/>
</g>
<g class="st1">
<polygon points="64,58 51,58 51,60 64,60 64,58 "/>
</g>
<g class="st1">
<path class="st6" d="M52.5,16c1.9,0,3.5,1.6,3.5,3.5S54.4,23,52.5,23S49,21.4,49,19.5S50.6,16,52.5,16 M52.5,15
C50,15,48,17,48,19.5s2,4.5,4.5,4.5s4.5-2,4.5-4.5S55,15,52.5,15L52.5,15z"/>
</g>
<g class="st1">
<circle class="st6" cx="52" cy="28" r="0.5"/>
<path d="M52,27c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,27,52,27L52,27z"/>
</g>
<g class="st1">
<circle class="st6" cx="52" cy="32" r="0.5"/>
<path d="M52,31c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,31,52,31L52,31z"/>
</g>
<g class="st1">
<circle class="st6" cx="52" cy="36" r="0.5"/>
<path d="M52,35c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,35,52,35L52,35z"/>
</g>
<g class="st1">
<path d="M52.5,16c1.9,0,3.5,1.6,3.5,3.5S54.4,23,52.5,23S49,21.4,49,19.5S50.6,16,52.5,16 M52.5,15C50,15,48,17,48,19.5
s2,4.5,4.5,4.5s4.5-2,4.5-4.5S55,15,52.5,15L52.5,15z"/>
</g>
<g class="st1">
<path class="st6" d="M21.5,21L21.5,21c0.4,0,0.8,0.1,1.2,0.2c0.9,0.3,1.6,1,2,1.8c0.4,0.9,0.4,1.8,0.1,2.7
c-0.5,1.4-1.8,2.3-3.3,2.3c-0.4,0-0.8-0.1-1.2-0.2c-0.9-0.3-1.6-1-2-1.8c-0.4-0.9-0.4-1.8-0.1-2.7C18.7,21.9,20.1,21,21.5,21
M21.5,20c-1.8,0-3.5,1.1-4.2,2.9c-0.9,2.3,0.3,4.9,2.6,5.8c0.5,0.2,1.1,0.3,1.6,0.3c1.8,0,3.5-1.1,4.2-2.9
c0.9-2.3-0.3-4.9-2.6-5.8C22.6,20.1,22,20,21.5,20L21.5,20z"/>
</g>
<g class="st1">
<circle class="st6" cx="26" cy="31" r="1"/>
</g>
<g class="st1">
<circle class="st6" cx="28" cy="34" r="1"/>
</g>
<g class="st1">
<circle class="st6" cx="30" cy="37" r="1"/>
</g>
<g class="st1">
<path d="M21.5,21c1.9,0,3.5,1.6,3.5,3.5S23.4,28,21.5,28S18,26.4,18,24.5S19.6,21,21.5,21 M21.5,20C19,20,17,22,17,24.5
s2,4.5,4.5,4.5s4.5-2,4.5-4.5S24,20,21.5,20L21.5,20z"/>
</g>
<g class="st1">
<circle class="st6" cx="26" cy="31" r="0.5"/>
<path d="M26,30c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S26.6,30,26,30L26,30z"/>
</g>
<g class="st1">
<circle class="st6" cx="28" cy="34" r="0.5"/>
<path d="M28,33c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S28.6,33,28,33L28,33z"/>
</g>
<g class="st1">
<circle class="st6" cx="30" cy="37" r="0.5"/>
<path d="M30,36c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S30.6,36,30,36L30,36z"/>
</g>
<g class="st1">
<path class="st7" d="M79.5,21c1.9,0,3.5,1.6,3.5,3.5S81.4,28,79.5,28S76,26.4,76,24.5S77.6,21,79.5,21 M79.5,20
C77,20,75,22,75,24.5s2,4.5,4.5,4.5s4.5-2,4.5-4.5S82,20,79.5,20L79.5,20z"/>
</g>
<g class="st1">
<path class="st7" d="M91.5,50c1.9,0,3.5,1.6,3.5,3.5S93.4,57,91.5,57S88,55.4,88,53.5S89.6,50,91.5,50 M91.5,49
C89,49,87,51,87,53.5s2,4.5,4.5,4.5s4.5-2,4.5-4.5S94,49,91.5,49L91.5,49z"/>
</g>
<g class="st1">
<circle class="st6" cx="75" cy="31" r="0.5"/>
<path class="st7" d="M75,30c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S75.6,30,75,30L75,30z"/>
</g>
<g class="st1">
<circle class="st6" cx="73" cy="34" r="0.5"/>
<path class="st7" d="M73,33c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S73.6,33,73,33L73,33z"/>
</g>
<g class="st1">
<circle class="st6" cx="71" cy="37" r="0.5"/>
<path class="st7" d="M71,36c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S71.6,36,71,36L71,36z"/>
</g>
<g class="st1">
<circle class="st6" cx="76" cy="53" r="0.5"/>
<path class="st7" d="M76,52c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S76.6,52,76,52L76,52z"/>
</g>
<g class="st1">
<circle class="st6" cx="80" cy="53" r="0.5"/>
<path class="st7" d="M80,52c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S80.6,52,80,52L80,52z"/>
</g>
<g class="st1">
<circle class="st6" cx="84" cy="53" r="0.5"/>
<path class="st7" d="M84,52c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S84.6,52,84,52L84,52z"/>
</g>
<g class="st1">
<path d="M8.5,50c1.9,0,3.5,1.6,3.5,3.5S10.4,57,8.5,57S5,55.4,5,53.5S6.6,50,8.5,50 M8.5,49C6,49,4,51,4,53.5S6,58,8.5,58
s4.5-2,4.5-4.5S11,49,8.5,49L8.5,49z"/>
</g>
<g class="st1">
<circle class="st6" cx="24" cy="53" r="0.5"/>
<path d="M24,52c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S24.6,52,24,52L24,52z"/>
</g>
<g class="st1">
<circle class="st6" cx="20" cy="53" r="0.5"/>
<path d="M20,52c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,52,20,52L20,52z"/>
</g>
<g class="st1">
<circle class="st6" cx="16" cy="53" r="0.5"/>
<path d="M16,52c-0.6,0-1,0.4-1,1s0.4,1,1,1c0.6,0,1-0.4,1-1S16.6,52,16,52L16,52z"/>
</g>
<g class="st1">
<path d="M52.5,83c1.9,0,3.5,1.6,3.5,3.5S54.4,90,52.5,90S49,88.4,49,86.5S50.6,83,52.5,83 M52.5,82C50,82,48,84,48,86.5
s2,4.5,4.5,4.5s4.5-2,4.5-4.5S55,82,52.5,82L52.5,82z"/>
</g>
<g class="st1">
<circle class="st6" cx="52" cy="78" r="0.5"/>
<path d="M52,77c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,77,52,77L52,77z"/>
</g>
<g class="st1">
<circle class="st6" cx="52" cy="74" r="0.5"/>
<path d="M52,73c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,73,52,73L52,73z"/>
</g>
<g class="st1">
<circle class="st6" cx="52" cy="70" r="0.5"/>
<path d="M52,69c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,69,52,69L52,69z"/>
</g>
<g class="st1">
<path class="st6" d="M21.5,78c1.4,0,2.8,0.9,3.3,2.3c0.3,0.9,0.3,1.8-0.1,2.7c-0.4,0.9-1.1,1.5-2,1.8c-0.4,0.1-0.8,0.2-1.2,0.2
c-1.4,0-2.8-0.9-3.3-2.3c-0.3-0.9-0.3-1.8,0.1-2.7c0.4-0.9,1.1-1.5,2-1.8C20.7,78.1,21.1,78,21.5,78 M21.5,77
c-0.5,0-1.1,0.1-1.6,0.3c-2.3,0.9-3.5,3.5-2.6,5.8c0.7,1.8,2.4,2.9,4.2,2.9c0.5,0,1.1-0.1,1.6-0.3c2.3-0.9,3.5-3.5,2.6-5.8
C25,78.1,23.3,77,21.5,77L21.5,77z"/>
</g>
<g class="st1">
<circle class="st6" cx="26" cy="75" r="1"/>
</g>
<g class="st1">
<circle class="st6" cx="28" cy="72" r="1"/>
</g>
<g class="st1">
<circle class="st6" cx="30" cy="69" r="1"/>
</g>
<g class="st1">
<path d="M21.5,78c1.9,0,3.5,1.6,3.5,3.5S23.4,85,21.5,85S18,83.4,18,81.5S19.6,78,21.5,78 M21.5,77C19,77,17,79,17,81.5
s2,4.5,4.5,4.5s4.5-2,4.5-4.5S24,77,21.5,77L21.5,77z"/>
</g>
<g class="st1">
<circle class="st6" cx="26" cy="75" r="0.5"/>
<path d="M26,74c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S26.6,74,26,74L26,74z"/>
</g>
<g class="st1">
<circle class="st6" cx="28" cy="72" r="0.5"/>
<path d="M28,71c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S28.6,71,28,71L28,71z"/>
</g>
<g class="st1">
<circle class="st6" cx="30" cy="69" r="0.5"/>
<path d="M30,68c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S30.6,68,30,68L30,68z"/>
</g>
<g class="st1">
<path d="M79.5,78c1.9,0,3.5,1.6,3.5,3.5S81.4,85,79.5,85S76,83.4,76,81.5S77.6,78,79.5,78 M79.5,77C77,77,75,79,75,81.5
s2,4.5,4.5,4.5s4.5-2,4.5-4.5S82,77,79.5,77L79.5,77z"/>
</g>
<g class="st1">
<circle class="st6" cx="75" cy="75" r="0.5"/>
<path d="M75,74c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S75.6,74,75,74L75,74z"/>
</g>
<g class="st1">
<circle class="st6" cx="73" cy="72" r="0.5"/>
<path d="M73,71c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S73.6,71,73,71L73,71z"/>
</g>
<g class="st1">
<circle class="st6" cx="71" cy="69" r="0.5"/>
<path d="M71,68c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S71.6,68,71,68L71,68z"/>
</g>
</g>
<g>
<g>
<g>
<rect x="48.3" y="7.1" width="3.1" height="3.1"/>
<rect x="48.3" y="87.4" width="3.1" height="3.1"/>
<rect x="76.7" y="18.9" transform="matrix(0.7071 -0.7071 0.7071 0.7071 8.4606 61.3008)" width="3.1" height="3.1"/>
<rect x="19.9" y="75.7" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -48.3278 37.7851)" width="3.1" height="3.1"/>
<rect x="88.4" y="47.3" width="3.1" height="3.1"/>
<rect x="8.2" y="47.3" width="3.1" height="3.1"/>
<rect x="19.9" y="18.9" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -8.1727 21.1596)" width="3.1" height="3.1"/>
<path d="M98,85.1c-0.2-3.2-1.7-6.1-4.2-8.1l-9.4-7.8l0.3-0.5c1.5-2.6,2.7-5.4,3.6-8.3l9.4-0.9V38.2l-9.4-0.9
c-0.8-2.5-1.8-5-3-7.4l6-7.3L76.2,7.5l-7.3,6c-2.3-1.3-4.8-2.3-7.4-3L60.5,1H39.2l-0.9,9.4c-2.5,0.8-5,1.8-7.4,3l-7.4-6L8.4,22.5
l6,7.3c-1.3,2.4-2.3,4.8-3.1,7.4L2,38.2v21.3l9.4,0.9c0.8,2.6,1.8,5,3.1,7.4l-6,7.3l15.1,15.1l7.3-6c2.3,1.3,4.8,2.3,7.4,3.1
l0.9,9.4h21.3l0.9-9.4c2.9-0.9,5.7-2.1,8.4-3.6l0.4-0.3l7.8,9.4c2,2.5,5,4,8.1,4.2c0.2,0,0.4,0,0.6,0c3,0,5.8-1.2,7.9-3.3
C97,91.4,98.2,88.3,98,85.1z M68.2,81c-2.7,1.6-5.6,2.7-8.6,3.6l-1,0.3l-0.9,8.8H42l-0.9-8.8l-1-0.3c-3-0.8-5.9-2-8.6-3.6
l-0.9-0.5l-6.8,5.6L12.6,74.9l5.6-6.8l-0.5-0.9c-1.6-2.7-2.7-5.6-3.6-8.6l-0.3-1l-8.8-0.9V41l8.8-0.9l0.3-1c0.8-3,2-5.9,3.6-8.6
l0.5-0.9l-5.6-6.8l11.1-11.1l6.8,5.6l0.9-0.5c2.7-1.6,5.6-2.8,8.6-3.6l1-0.3L42,4.1h15.7l0.9,8.8l1,0.3c3,0.8,5.9,2,8.6,3.6
l0.9,0.5l6.8-5.6l11.1,11.1l-5.6,6.8l0.5,0.9c1.6,2.7,2.8,5.6,3.6,8.6l0.3,1l8.8,0.9v15.7l-8.8,0.9l-0.3,1c-0.8,3-2,5.9-3.5,8.5
L82,67.2l-6.1-5c2.1-4.1,3.3-8.7,3.3-13.4c0-16.2-13.2-29.3-29.3-29.3S20.5,32.6,20.5,48.8s13.2,29.3,29.3,29.3
c4.7,0,9.3-1.1,13.4-3.3l5,6.1L68.2,81z M67.3,47.8c0-0.1,0-0.2,0-0.3c-0.1-0.7-0.2-1.3-0.3-2c0-0.1-0.1-0.2-0.1-0.3
c-0.2-0.6-0.4-1.3-0.6-1.9c0-0.1-0.1-0.2-0.1-0.3c-0.2-0.6-0.5-1.2-0.9-1.9c0-0.1-0.1-0.2-0.1-0.2c-0.3-0.6-0.7-1.2-1.2-1.8
c0,0-0.1-0.1-0.1-0.1c-0.5-0.6-0.9-1.2-1.5-1.7c-4.3-4.3-10.5-6-16.4-4.4l-2.6,0.7l10.6,10.6l-2.7,6.3l-6,2.5L34.7,42.4L34,45
c-1.6,5.9,0.1,12.1,4.4,16.4c0.4,0.4,0.8,0.8,1.2,1.1c3.3,2.7,7.5,4,11.7,3.8c0.8-0.1,1.7-0.2,2.5-0.4c0.5-0.1,1.1-0.2,1.7-0.4
l5.7,6.9c-3.6,1.7-7.5,2.6-11.4,2.6c-14.5,0-26.3-11.8-26.3-26.3s11.8-26.3,26.3-26.3s26.3,11.8,26.3,26.3
c0,3.9-0.9,7.8-2.6,11.3l-6.9-5.7c0,0,0,0,0,0c0.2-0.7,0.4-1.4,0.5-2.1c0-0.1,0-0.2,0-0.2c0.1-0.7,0.2-1.4,0.2-2
c0-0.1,0-0.2,0-0.3C67.4,49.1,67.4,48.5,67.3,47.8z M92.5,91.5c-1.6,1.6-3.9,2.5-6.2,2.4c-2.3-0.1-4.5-1.2-5.9-3.1l-3.1-3.7
L66,73.3l-9.5-11.5l-1,0.4c-4.7,1.8-10,1-13.8-2.2c-0.4-0.3-0.7-0.6-1-0.9c-0.9-0.9-1.7-2-2.3-3.2c-1.2-2.2-1.8-4.8-1.7-7.4l8,8
l9-3.8l4.1-9.3l-8.1-8.1c3.9-0.2,7.8,1.2,10.6,4c3.9,3.9,5.1,9.7,3.1,14.9l-0.4,1l11.4,9.5l17.5,14.4c1.8,1.4,2.9,3.6,3,5.9
C95,87.6,94.2,89.8,92.5,91.5z"/>
<path d="M86.8,81c-2.6,0-4.8,2.1-4.8,4.8c0,2.6,2.1,4.8,4.8,4.8c2.6,0,4.8-2.1,4.8-4.8C91.6,83.1,89.5,81,86.8,81z M86.8,87.4
c-0.9,0-1.7-0.8-1.7-1.7s0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7C88.5,86.7,87.7,87.4,86.8,87.4z"/>
</g>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<path d="M41.1,73.9H19c-1.1,0-1.9,0.8-1.9,1.9s0.8,1.9,1.9,1.9h20.4c0.6,1.6,2.2,2.8,4,2.8h12.1c1.8,0,3.4-1.2,4-2.8h20.5 c1.1,0,1.9-0.8,1.9-1.9s-0.8-1.9-1.9-1.9H58c-1.1,0-1.9,0.8-1.9,1.9v0.4c0,0.3-0.2,0.5-0.5,0.5H43.5c-0.3,0-0.5-0.2-0.5-0.5v-0.4 C43,74.8,42.1,73.9,41.1,73.9z"/>
<path d="M94.7,73.9h-5V30.2c0-1.1-0.8-1.9-1.9-1.9c-1.1,0-1.9,0.8-1.9,1.9v45.6c0,1.1,0.9,1.9,1.9,1.9h5v2.6c0,2.7-2.2,4.9-4.9,4.9 H11.2c-2.7,0-4.9-2.2-4.9-4.9v-2.6h5c1.1,0,1.9-0.8,1.9-1.9V30.2c0-1.1-0.8-1.9-1.9-1.9s-1.9,0.8-1.9,1.9v43.7h-5 c-1.1,0-1.9,0.8-1.9,1.9v4.5c0,4.8,3.9,8.7,8.7,8.7h76.7c4.8,0,8.7-3.9,8.7-8.7v-4.5C96.6,74.8,95.7,73.9,94.7,73.9z"/>
<path class="st4" d="M57,24.3L46,35.2l-3.8-3.8c-0.7-0.7-1.9-0.7-2.7,0c-0.7,0.7-0.7,1.9,0,2.7l5.1,5.2c0.4,0.4,0.9,0.6,1.3,0.6 s1-0.2,1.3-0.6L59.6,27c0.7-0.7,0.7-1.9,0-2.7C58.9,23.6,57.7,23.6,57,24.3z"/>
<path class="st5" d="M73,11H26.1c-3.8,0-7,3.1-7,7v27.7c0,3.8,3.1,7,7,7h2v8.3c0,1.6,1.3,2.8,2.8,2.8c0.8,0,1.6-0.3,2.1-1l8.8-10.2 H73c3.8,0,7-3.1,7-7V18C80,14.1,76.8,11,73,11z M76.2,45.6c0,1.7-1.4,3.2-3.2,3.2H40.9c-0.6,0-1.1,0.2-1.4,0.7l-7.6,8.8v-7.6 c0-1.1-0.8-1.9-1.9-1.9h-3.9c-1.7,0-3.2-1.4-3.2-3.2V18c0-1.7,1.4-3.2,3.2-3.2H73c1.7,0,3.2,1.4,3.2,3.2L76.2,45.6L76.2,45.6z"/>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, 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"
viewBox="0 0 347.34 347.34" style="enable-background:new 0 0 347.34 347.34;" xml:space="preserve">
<polygon points="162.634,0 162.634,30 296.127,30 0,326.127 21.213,347.34 317.34,51.213 317.34,184.706 347.34,184.706 347.34,0
"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#FFFFFF;}
.st3{display:inline;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st4{display:none;fill:none;stroke:#000000;stroke-miterlimit:10;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path class="st1" d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11
M50,10L50,10c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"
/>
</g>
<g class="st0">
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path class="st1" d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49
M21.5,48L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48
L21.5,48z"/>
</g>
<g class="st0">
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path class="st1" d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49
M80.5,48L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48
L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g class="st0">
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st4" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st4" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
<g>
<path d="M94.6,21.9H47L28.3,87.7c-0.6,1.8-2.2,3-4,3c-0.1,0-0.1,0-0.2,0c-1.8,0-3.4-1.1-4.1-2.7l-7.6-19.1H5.2
c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4h10.2c1.8,0,3.4,1.1,4.1,2.7l4.2,10.6l15.9-57.3c0.6-1.8,2.3-3,4.2-3h50.8
c2.4,0,4.4,2,4.4,4.4S97,21.9,94.6,21.9z M97,80.6L79.8,61.3L96.2,43c0.3-0.3,0.4-0.8,0.2-1.2c-0.2-0.4-0.6-0.6-1-0.6H85
c-0.3,0-0.6,0.1-0.8,0.4l-11,12.8L62.2,41.6c-0.2-0.2-0.5-0.4-0.8-0.4H50.5c-0.4,0-0.8,0.3-1,0.6c-0.2,0.4-0.1,0.9,0.2,1.2
l16.2,18.2L48.8,80.6c-0.3,0.3-0.4,0.8-0.2,1.2c0.2,0.4,0.6,0.6,1,0.6h10.8c0.3,0,0.6-0.1,0.8-0.4l11.4-13.7L84.3,82
c0.2,0.2,0.5,0.4,0.8,0.4h11c0.4,0,0.8-0.3,1-0.6C97.3,81.4,97.3,80.9,97,80.6z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#FFFFFF;}
.st3{display:inline;fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
.st4{display:none;fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path class="st1" d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11
M50,10L50,10c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"
/>
</g>
<g class="st0">
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path class="st1" d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49
M21.5,48L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48
L21.5,48z"/>
</g>
<g class="st0">
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path class="st1" d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49
M80.5,48L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48
L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g class="st0">
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st4" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st4" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
<g class="st0">
<path class="st1" d="M94.6,21.9H47L28.3,87.7c-0.6,1.8-2.2,3-4,3c-0.1,0-0.1,0-0.2,0c-1.8,0-3.4-1.1-4.1-2.7l-7.6-19.1H5.2
c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4h10.2c1.8,0,3.4,1.1,4.1,2.7l4.2,10.6l15.9-57.3c0.6-1.8,2.3-3,4.2-3h50.8
c2.4,0,4.4,2,4.4,4.4S97,21.9,94.6,21.9z M97,80.6L79.8,61.3L96.2,43c0.3-0.3,0.4-0.8,0.2-1.2c-0.2-0.4-0.6-0.6-1-0.6H85
c-0.3,0-0.6,0.1-0.8,0.4l-11,12.8L62.2,41.6c-0.2-0.2-0.5-0.4-0.8-0.4H50.5c-0.4,0-0.8,0.3-1,0.6c-0.2,0.4-0.1,0.9,0.2,1.2
l16.2,18.2L48.8,80.6c-0.3,0.3-0.4,0.8-0.2,1.2c0.2,0.4,0.6,0.6,1,0.6h10.8c0.3,0,0.6-0.1,0.8-0.4l11.4-13.7L84.3,82
c0.2,0.2,0.5,0.4,0.8,0.4h11c0.4,0,0.8-0.3,1-0.6C97.3,81.4,97.3,80.9,97,80.6z"/>
</g>
<g class="st0">
<path class="st2" d="M23,29.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,6c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,5h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,10.4,30.6,5,24,5L24,5z"/>
</g>
<g class="st0">
<path class="st2" d="M23,60.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,37c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,36h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,41.4,30.6,36,24,36L24,36z"/>
</g>
<g class="st0">
<path class="st2" d="M23,91.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,68c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,67h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,72.4,30.6,67,24,67L24,67z"/>
</g>
<g class="st0">
<line class="st3" x1="68.5" y1="6.5" x2="68.5" y2="91.5"/>
</g>
<line class="st4" x1="45.5" y1="74.5" x2="68.5" y2="91.5"/>
<line class="st4" x1="91.5" y1="74.5" x2="68.5" y2="91.5"/>
<g id="_x32_22._Calender">
<g>
<path fill="#FFFFFF" d="M57.6,50.6L57.6,50.6c-2.7,0-5,2.2-5,5c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,52.9,60.3,50.6,57.6,50.6z M42.7,45.7
c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,43.5,40,45.7,42.7,45.7z M57.6,35.7L57.6,35.7c-2.7,0-5,2.2-5,5
c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,38,60.3,35.7,57.6,35.7z M62.6,10.9H37.7v9.9h24.8V10.9z M72.5,45.7c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C67.5,43.5,69.8,45.7,72.5,45.7z M72.5,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
C67.5,58.3,69.8,60.6,72.5,60.6z M42.7,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,58.3,40,60.6,42.7,60.6z
M27.8,75.5c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,73.2,25.1,75.5,27.8,75.5z M87.4,10.9h-5v9.9h5v64.5H12.9
V20.9h5v-9.9h-5c-5.5,0-9.9,4.4-9.9,9.9v64.5c0,5.5,4.4,9.9,9.9,9.9h74.5c5.5,0,9.9-4.4,9.9-9.9V20.9
C97.3,15.4,92.9,10.9,87.4,10.9z M27.8,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,58.3,25.1,60.6,27.8,60.6z
M27.8,45.7c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,43.5,25.1,45.7,27.8,45.7z M42.7,75.5c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,73.2,40,75.5,42.7,75.5z M27.8,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
v9.9C22.9,18.6,25.1,20.9,27.8,20.9z M72.5,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5v9.9
C67.5,18.6,69.8,20.9,72.5,20.9z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path class="st0" d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path class="st0" d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
<g class="st0">
<g class="st1">
<path d="M94.7,89L71.9,65.4c5.8-7,9.1-15.7,9.1-24.8C81,19.3,63.7,2,42.4,2C21.1,2,3.8,19.3,3.8,40.6c0,21.3,17.3,38.6,38.6,38.6
c8,0,15.6-2.4,22.1-7L87.4,96c1,1,2.2,1.5,3.6,1.5c1.3,0,2.5-0.5,3.5-1.4C96.5,94.2,96.6,91.1,94.7,89L94.7,89z M42.4,12.1
c15.7,0,28.5,12.8,28.5,28.5c0,15.7-12.8,28.5-28.5,28.5c-15.7,0-28.5-12.8-28.5-28.5C13.9,24.9,26.7,12.1,42.4,12.1L42.4,12.1z
M42.4,12.1"/>
</g>
</g>
<g>
<path d="M75.8,28.5c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2c-1.4-1.4-3.8-1.4-5.2,0l-5.2,5.2c-1.4,1.4-1.4,3.8,0,5.2
C74,28.1,74.9,28.5,75.8,28.5L75.8,28.5z M16.7,50.8c0-2-1.6-3.7-3.7-3.7H5.7c-2,0-3.7,1.6-3.7,3.7s1.6,3.7,3.7,3.7H13
C15.1,54.5,16.7,52.9,16.7,50.8L16.7,50.8z M21.2,74.2L16,79.4c-1.4,1.4-1.4,3.8,0,5.2c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2C25,72.8,22.6,72.8,21.2,74.2L21.2,74.2z M21.2,27.4c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L21.2,17c-1.4-1.4-3.8-1.4-5.2,0c-1.4,1.4-1.4,3.8,0,5.2L21.2,27.4z M49.8,17.7
c2,0,3.7-1.6,3.7-3.7V6.7c0-2-1.6-3.7-3.7-3.7s-3.7,1.6-3.7,3.7V14C46.1,16.1,47.8,17.7,49.8,17.7L49.8,17.7z M94,47.1h-7.4
c-2,0-3.7,1.6-3.7,3.7s1.6,3.7,3.7,3.7H94c2,0,3.7-1.6,3.7-3.7S96,47.1,94,47.1L94,47.1z M78.4,74.2c-1.4-1.4-3.8-1.4-5.2,0
c-1.4,1.4-1.4,3.8,0,5.2l5.2,5.2c0.7,0.7,1.7,1.1,2.6,1.1c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L78.4,74.2z M49.8,83.9
c-2,0-3.7,1.6-3.7,3.7V95c0,2,1.6,3.7,3.7,3.7s3.7-1.6,3.7-3.7v-7.4C53.5,85.6,51.9,83.9,49.8,83.9L49.8,83.9z M49.8,25.1
c-14.2,0-25.8,11.6-25.8,25.8c0,14.2,11.6,25.8,25.8,25.8C64,76.6,75.6,65,75.6,50.8C75.6,36.6,64,25.1,49.8,25.1L49.8,25.1z
M49.8,69.2c-10.1,0-18.4-8.3-18.4-18.4c0-10.1,8.3-18.4,18.4-18.4c10.1,0,18.4,8.3,18.4,18.4C68.2,61,60,69.2,49.8,69.2L49.8,69.2
z M49.8,69.2"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#FFFFFF;}
.st3{display:inline;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st4{display:none;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st5{fill:none;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path class="st1" d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11
M50,10L50,10c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"
/>
</g>
<g class="st0">
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path class="st1" d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49
M21.5,48L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48
L21.5,48z"/>
</g>
<g class="st0">
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path class="st1" d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49
M80.5,48L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48
L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g class="st0">
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st4" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st4" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
<g class="st0">
<path class="st1" d="M94.6,21.9H47L28.3,87.7c-0.6,1.8-2.2,3-4,3c-0.1,0-0.1,0-0.2,0c-1.8,0-3.4-1.1-4.1-2.7l-7.6-19.1H5.2
c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4h10.2c1.8,0,3.4,1.1,4.1,2.7l4.2,10.6l15.9-57.3c0.6-1.8,2.3-3,4.2-3h50.8
c2.4,0,4.4,2,4.4,4.4S97,21.9,94.6,21.9z M97,80.6L79.8,61.3L96.2,43c0.3-0.3,0.4-0.8,0.2-1.2c-0.2-0.4-0.6-0.6-1-0.6H85
c-0.3,0-0.6,0.1-0.8,0.4l-11,12.8L62.2,41.6c-0.2-0.2-0.5-0.4-0.8-0.4H50.5c-0.4,0-0.8,0.3-1,0.6c-0.2,0.4-0.1,0.9,0.2,1.2
l16.2,18.2L48.8,80.6c-0.3,0.3-0.4,0.8-0.2,1.2c0.2,0.4,0.6,0.6,1,0.6h10.8c0.3,0,0.6-0.1,0.8-0.4l11.4-13.7L84.3,82
c0.2,0.2,0.5,0.4,0.8,0.4h11c0.4,0,0.8-0.3,1-0.6C97.3,81.4,97.3,80.9,97,80.6z"/>
</g>
<g class="st0">
<path class="st2" d="M23,29.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,6c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,5h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,10.4,30.6,5,24,5L24,5z"/>
</g>
<g class="st0">
<path class="st2" d="M23,60.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,37c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,36h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,41.4,30.6,36,24,36L24,36z"/>
</g>
<g class="st0">
<path class="st2" d="M23,91.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,68c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,67h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,72.4,30.6,67,24,67L24,67z"/>
</g>
<g class="st0">
<line class="st3" x1="68.5" y1="6.5" x2="68.5" y2="91.5"/>
</g>
<line class="st4" x1="45.5" y1="74.5" x2="68.5" y2="91.5"/>
<line class="st4" x1="91.5" y1="74.5" x2="68.5" y2="91.5"/>
<g id="_x32_22._Calender" class="st0">
<g class="st1">
<path d="M57.6,50.6L57.6,50.6c-2.7,0-5,2.2-5,5c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,52.9,60.3,50.6,57.6,50.6z M42.7,45.7
c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,43.5,40,45.7,42.7,45.7z M57.6,35.7L57.6,35.7c-2.7,0-5,2.2-5,5
c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,38,60.3,35.7,57.6,35.7z M62.6,10.9H37.7v9.9h24.8V10.9z M72.5,45.7c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C67.5,43.5,69.8,45.7,72.5,45.7z M72.5,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
C67.5,58.3,69.8,60.6,72.5,60.6z M42.7,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,58.3,40,60.6,42.7,60.6z
M27.8,75.5c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,73.2,25.1,75.5,27.8,75.5z M87.4,10.9h-5v9.9h5v64.5H12.9
V20.9h5v-9.9h-5c-5.5,0-9.9,4.4-9.9,9.9v64.5c0,5.5,4.4,9.9,9.9,9.9h74.5c5.5,0,9.9-4.4,9.9-9.9V20.9
C97.3,15.4,92.9,10.9,87.4,10.9z M27.8,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,58.3,25.1,60.6,27.8,60.6z
M27.8,45.7c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,43.5,25.1,45.7,27.8,45.7z M42.7,75.5c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,73.2,40,75.5,42.7,75.5z M27.8,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
v9.9C22.9,18.6,25.1,20.9,27.8,20.9z M72.5,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5v9.9
C67.5,18.6,69.8,20.9,72.5,20.9z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<polygon class="st5" points="47.5,6.1 20.7,6.1 7.3,27.5 47.5,27.5 "/>
<polygon class="st5" points="77.3,6.1 50.5,6.1 50.5,27.5 90.7,27.5 "/>
<rect x="6.1" y="30.6" class="st5" width="85.9" height="61.3"/>
<path d="M79,3H19L3,28.6V95h92V28.6L79,3z M50.5,6.1h26.8l13.4,21.5H50.5V6.1z M20.7,6.1h26.8v21.5H7.3L20.7,6.1z M91.9,91.9H6.1
V30.6h85.9V91.9z"/>
</g>
<path class="st1" d="M58.2,38.3H39.8c-2.5,0-4.6,2.1-4.6,4.6c0,2.5,2.1,4.6,4.6,4.6h18.4c2.5,0,4.6-2.1,4.6-4.6
C62.8,40.3,60.7,38.3,58.2,38.3z M58.2,44.4H39.8c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h18.4c0.8,0,1.5,0.7,1.5,1.5
C59.7,43.7,59,44.4,58.2,44.4z"/>
<path class="st1" d="M61.3,82.7H36.7c-0.8,0-1.5,0.7-1.5,1.5c0,0.8,0.7,1.5,1.5,1.5h24.5c0.8,0,1.5-0.7,1.5-1.5
C62.8,83.4,62.1,82.7,61.3,82.7z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M48.8,66.7c-1.6,0-2.9,1.3-2.9,2.9c0,0.8,0.3,1.5,0.9,2.1v2.6c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-2.6
c0.6-0.5,0.9-1.3,0.9-2.1C51.7,68,50.4,66.7,48.8,66.7z M49.8,70.6c-0.3,0.3-0.4,0.6-0.4,1v2.6c0,0.3-0.3,0.6-0.6,0.6
c-0.3,0-0.6-0.3-0.6-0.6v-2.6c0-0.4-0.2-0.7-0.4-1c-0.3-0.3-0.5-0.7-0.5-1.1c0-0.8,0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5
C50.3,70,50.1,70.3,49.8,70.6z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M57.3,62.9h-2.1v-5.5c0-3.5-2.8-6.3-6.3-6.3c-3.5,0-6.3,2.8-6.3,6.3v5.5h-2.1c-1.2,0-2.1,0.9-2.1,2.1v12.9
c0,1.2,0.9,2.1,2.1,2.1h16.9c1.2,0,2.1-0.9,2.1-2.1V65C59.3,63.8,58.4,62.9,57.3,62.9z M43.9,57.3c0-2.7,2.2-5,5-5
c2.7,0,5,2.2,5,5v5.5h-9.9V57.3z M58,77.9L58,77.9c0,0.4-0.3,0.7-0.7,0.7H40.4c-0.4,0-0.7-0.3-0.7-0.7V65c0-0.4,0.3-0.7,0.7-0.7
h16.9c0.4,0,0.7,0.3,0.7,0.7V77.9z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.3,15.8H25.8c-2.2-4-6.4-6.8-11.3-6.8C7.5,9,1.8,14.7,1.8,21.8c0,7.1,5.7,12.8,12.8,12.8c5.8,0,10.7-3.8,12.2-9.1h40.9
c-0.3-1.2-0.4-2.4-0.4-3.7C67.3,19.7,67.6,17.7,68.3,15.8z M14.5,26.6c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8
s4.8,2.1,4.8,4.8C19.3,24.4,17.2,26.6,14.5,26.6z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M85.2,9c-7.1,0-12.8,5.7-12.8,12.8c0,3.5,1.4,6.6,3.6,8.9L55.7,63.9c3.2,1.1,5.9,3,8,5.5l21.3-34.8c0,0,0.1,0,0.1,0
c7.1,0,12.8-5.7,12.8-12.8S92.3,9,85.2,9z M85.2,26.6c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8c2.6,0,4.8,2.1,4.8,4.8
C90,24.4,87.8,26.6,85.2,26.6z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M50,68.2c-1,0-2,0.1-2.9,0.4L26.6,35.1c-2.4,2.2-5.4,3.7-8.7,4.4l21.3,34.8c-1.2,2-1.9,4.3-1.9,6.7
C37.2,88,43,93.7,50,93.7S62.8,88,62.8,80.9S57.1,68.2,50,68.2z M50,85.7c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8
c2.6,0,4.8,2.1,4.8,4.8C54.8,83.6,52.6,85.7,50,85.7z"/>
</g>
</g>
<g>
<g>
<path d="M10.5,34h3.2c0-6.2,4.9-11,11-11v-3.2C16.8,19.8,10.5,26.1,10.5,34z"/>
</g>
</g>
<g>
<g>
<path d="M24.7,32.4v15.8h50.5V32.4L24.7,32.4L24.7,32.4z M72,45H27.8v-9.5H72L72,45L72,45z"/>
</g>
</g>
<g>
<g>
<path d="M24.7,51.3v15.8h50.5V51.3H24.7z M72,64H27.8v-9.5H72L72,64L72,64z"/>
</g>
</g>
<g>
<g>
<path d="M90.6,31.3c-0.9-5.2-4.4-9.6-9.2-11.7c0-8-8.2-16.9-19.4-12.9C57.8,3.1,52.3,1,46.8,1c-8.8,0-16.9,4.9-21,12.6
C9,12.8,3.2,28.6,4.2,35.6C2.1,38.2,1,41.7,1,45c0,8.7,7.1,15.8,15.8,15.8h6.3v-3.2h-6.3C9.8,57.7,4.2,52,4.2,45
c0-5.2,3.3-8.5,3.3-8.5C5.9,26.1,14.6,15,27.7,16.8c0,0,5-12.8,19.1-12.8c9.3,0,14.8,6.3,14.8,6.3c9.9-5.2,18.1,3.5,16.7,11.4
c4.4,1.3,9.3,5.2,9.6,11.7c0,0,7.9,3.2,7.9,11.7c0,6.9-5.7,12.6-12.6,12.6h-6.3v3.2h6.3C91.9,60.8,99,53.7,99,45
C98.8,39.2,95.7,34,90.6,31.3z"/>
</g>
</g>
<g>
<g>
<path d="M54.7,92.4v-3.2h-3.2v-3.2h23.7V70.3H24.7v15.8h23.7v3.2h-3.2v3.2H18.4v3.2h26.8v3.2h9.5v-3.2h26.8v-3.2H54.7z M27.8,82.9
v-9.5H72v9.5H27.8z M51.5,95.5h-3.2v-3.2h3.2V95.5z"/>
</g>
</g>
<g>
<g>
<rect x="31" y="38.7" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="37.3" y="38.7" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="43.6" y="38.7" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="51.5" y="38.7" width="17.4" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="31" y="57.7" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="37.3" y="57.7" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="43.6" y="57.7" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="51.5" y="57.7" width="17.4" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="31" y="76.6" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="37.3" y="76.6" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="43.6" y="76.6" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="51.5" y="76.6" width="17.4" height="3.2"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#FFFFFF;}
.st3{display:inline;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st4{display:none;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st5{fill:none;}
.st6{fill:#C1032B;}
.st7{fill:#020202;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path class="st1" d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11
M50,10L50,10c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"
/>
</g>
<g class="st0">
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path class="st1" d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49
M21.5,48L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48
L21.5,48z"/>
</g>
<g class="st0">
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path class="st1" d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49
M80.5,48L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48
L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g class="st0">
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st4" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st4" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
<g class="st0">
<path class="st1" d="M94.6,21.9H47L28.3,87.7c-0.6,1.8-2.2,3-4,3c-0.1,0-0.1,0-0.2,0c-1.8,0-3.4-1.1-4.1-2.7l-7.6-19.1H5.2
c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4h10.2c1.8,0,3.4,1.1,4.1,2.7l4.2,10.6l15.9-57.3c0.6-1.8,2.3-3,4.2-3h50.8
c2.4,0,4.4,2,4.4,4.4S97,21.9,94.6,21.9z M97,80.6L79.8,61.3L96.2,43c0.3-0.3,0.4-0.8,0.2-1.2c-0.2-0.4-0.6-0.6-1-0.6H85
c-0.3,0-0.6,0.1-0.8,0.4l-11,12.8L62.2,41.6c-0.2-0.2-0.5-0.4-0.8-0.4H50.5c-0.4,0-0.8,0.3-1,0.6c-0.2,0.4-0.1,0.9,0.2,1.2
l16.2,18.2L48.8,80.6c-0.3,0.3-0.4,0.8-0.2,1.2c0.2,0.4,0.6,0.6,1,0.6h10.8c0.3,0,0.6-0.1,0.8-0.4l11.4-13.7L84.3,82
c0.2,0.2,0.5,0.4,0.8,0.4h11c0.4,0,0.8-0.3,1-0.6C97.3,81.4,97.3,80.9,97,80.6z"/>
</g>
<g class="st0">
<path class="st2" d="M23,29.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,6c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,5h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,10.4,30.6,5,24,5L24,5z"/>
</g>
<g class="st0">
<path class="st2" d="M23,60.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,37c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,36h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,41.4,30.6,36,24,36L24,36z"/>
</g>
<g class="st0">
<path class="st2" d="M23,91.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,68c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,67h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,72.4,30.6,67,24,67L24,67z"/>
</g>
<g class="st0">
<line class="st3" x1="68.5" y1="6.5" x2="68.5" y2="91.5"/>
</g>
<line class="st4" x1="45.5" y1="74.5" x2="68.5" y2="91.5"/>
<line class="st4" x1="91.5" y1="74.5" x2="68.5" y2="91.5"/>
<g id="_x32_22._Calender" class="st0">
<g class="st1">
<path d="M57.6,50.6L57.6,50.6c-2.7,0-5,2.2-5,5c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,52.9,60.3,50.6,57.6,50.6z M42.7,45.7
c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,43.5,40,45.7,42.7,45.7z M57.6,35.7L57.6,35.7c-2.7,0-5,2.2-5,5
c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,38,60.3,35.7,57.6,35.7z M62.6,10.9H37.7v9.9h24.8V10.9z M72.5,45.7c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C67.5,43.5,69.8,45.7,72.5,45.7z M72.5,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
C67.5,58.3,69.8,60.6,72.5,60.6z M42.7,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,58.3,40,60.6,42.7,60.6z
M27.8,75.5c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,73.2,25.1,75.5,27.8,75.5z M87.4,10.9h-5v9.9h5v64.5H12.9
V20.9h5v-9.9h-5c-5.5,0-9.9,4.4-9.9,9.9v64.5c0,5.5,4.4,9.9,9.9,9.9h74.5c5.5,0,9.9-4.4,9.9-9.9V20.9
C97.3,15.4,92.9,10.9,87.4,10.9z M27.8,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,58.3,25.1,60.6,27.8,60.6z
M27.8,45.7c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,43.5,25.1,45.7,27.8,45.7z M42.7,75.5c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,73.2,40,75.5,42.7,75.5z M27.8,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
v9.9C22.9,18.6,25.1,20.9,27.8,20.9z M72.5,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5v9.9
C67.5,18.6,69.8,20.9,72.5,20.9z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<polygon class="st5" points="47.5,6.1 20.7,6.1 7.3,27.5 47.5,27.5 "/>
<polygon class="st5" points="77.3,6.1 50.5,6.1 50.5,27.5 90.7,27.5 "/>
<rect x="6.1" y="30.6" class="st5" width="85.9" height="61.3"/>
<path d="M79,3H19L3,28.6V95h92V28.6L79,3z M50.5,6.1h26.8l13.4,21.5H50.5V6.1z M20.7,6.1h26.8v21.5H7.3L20.7,6.1z M91.9,91.9H6.1
V30.6h85.9V91.9z"/>
</g>
<path class="st1" d="M58.2,38.3H39.8c-2.5,0-4.6,2.1-4.6,4.6c0,2.5,2.1,4.6,4.6,4.6h18.4c2.5,0,4.6-2.1,4.6-4.6
C62.8,40.3,60.7,38.3,58.2,38.3z M58.2,44.4H39.8c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h18.4c0.8,0,1.5,0.7,1.5,1.5
C59.7,43.7,59,44.4,58.2,44.4z"/>
<path class="st1" d="M61.3,82.7H36.7c-0.8,0-1.5,0.7-1.5,1.5c0,0.8,0.7,1.5,1.5,1.5h24.5c0.8,0,1.5-0.7,1.5-1.5
C62.8,83.4,62.1,82.7,61.3,82.7z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M48.8,66.7c-1.6,0-2.9,1.3-2.9,2.9c0,0.8,0.3,1.5,0.9,2.1v2.6c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-2.6
c0.6-0.5,0.9-1.3,0.9-2.1C51.7,68,50.4,66.7,48.8,66.7z M49.8,70.6c-0.3,0.3-0.4,0.6-0.4,1v2.6c0,0.3-0.3,0.6-0.6,0.6
c-0.3,0-0.6-0.3-0.6-0.6v-2.6c0-0.4-0.2-0.7-0.4-1c-0.3-0.3-0.5-0.7-0.5-1.1c0-0.8,0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5
C50.3,70,50.1,70.3,49.8,70.6z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M57.3,62.9h-2.1v-5.5c0-3.5-2.8-6.3-6.3-6.3c-3.5,0-6.3,2.8-6.3,6.3v5.5h-2.1c-1.2,0-2.1,0.9-2.1,2.1v12.9
c0,1.2,0.9,2.1,2.1,2.1h16.9c1.2,0,2.1-0.9,2.1-2.1V65C59.3,63.8,58.4,62.9,57.3,62.9z M43.9,57.3c0-2.7,2.2-5,5-5
c2.7,0,5,2.2,5,5v5.5h-9.9V57.3z M58,77.9L58,77.9c0,0.4-0.3,0.7-0.7,0.7H40.4c-0.4,0-0.7-0.3-0.7-0.7V65c0-0.4,0.3-0.7,0.7-0.7
h16.9c0.4,0,0.7,0.3,0.7,0.7V77.9z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.3,15.8H25.8c-2.2-4-6.4-6.8-11.3-6.8C7.5,9,1.8,14.7,1.8,21.8c0,7.1,5.7,12.8,12.8,12.8c5.8,0,10.7-3.8,12.2-9.1h40.9
c-0.3-1.2-0.4-2.4-0.4-3.7C67.3,19.7,67.6,17.7,68.3,15.8z M14.5,26.6c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8
s4.8,2.1,4.8,4.8C19.3,24.4,17.2,26.6,14.5,26.6z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M85.2,9c-7.1,0-12.8,5.7-12.8,12.8c0,3.5,1.4,6.6,3.6,8.9L55.7,63.9c3.2,1.1,5.9,3,8,5.5l21.3-34.8c0,0,0.1,0,0.1,0
c7.1,0,12.8-5.7,12.8-12.8S92.3,9,85.2,9z M85.2,26.6c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8c2.6,0,4.8,2.1,4.8,4.8
C90,24.4,87.8,26.6,85.2,26.6z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M50,68.2c-1,0-2,0.1-2.9,0.4L26.6,35.1c-2.4,2.2-5.4,3.7-8.7,4.4l21.3,34.8c-1.2,2-1.9,4.3-1.9,6.7
C37.2,88,43,93.7,50,93.7S62.8,88,62.8,80.9S57.1,68.2,50,68.2z M50,85.7c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8
c2.6,0,4.8,2.1,4.8,4.8C54.8,83.6,52.6,85.7,50,85.7z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<g>
<path d="M10.5,34h3.2c0-6.2,4.9-11,11-11v-3.2C16.8,19.8,10.5,26.1,10.5,34z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,32.4v15.8h50.5V32.4L24.7,32.4L24.7,32.4z M72,45H27.8v-9.5H72L72,45L72,45z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,51.3v15.8h50.5V51.3H24.7z M72,64H27.8v-9.5H72L72,64L72,64z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M90.6,31.3c-0.9-5.2-4.4-9.6-9.2-11.7c0-8-8.2-16.9-19.4-12.9C57.8,3.1,52.3,1,46.8,1c-8.8,0-16.9,4.9-21,12.6
C9,12.8,3.2,28.6,4.2,35.6C2.1,38.2,1,41.7,1,45c0,8.7,7.1,15.8,15.8,15.8h6.3v-3.2h-6.3C9.8,57.7,4.2,52,4.2,45
c0-5.2,3.3-8.5,3.3-8.5C5.9,26.1,14.6,15,27.7,16.8c0,0,5-12.8,19.1-12.8c9.3,0,14.8,6.3,14.8,6.3c9.9-5.2,18.1,3.5,16.7,11.4
c4.4,1.3,9.3,5.2,9.6,11.7c0,0,7.9,3.2,7.9,11.7c0,6.9-5.7,12.6-12.6,12.6h-6.3v3.2h6.3C91.9,60.8,99,53.7,99,45
C98.8,39.2,95.7,34,90.6,31.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M54.7,92.4v-3.2h-3.2v-3.2h23.7V70.3H24.7v15.8h23.7v3.2h-3.2v3.2H18.4v3.2h26.8v3.2h9.5v-3.2h26.8v-3.2H54.7z
M27.8,82.9v-9.5H72v9.5H27.8z M51.5,95.5h-3.2v-3.2h3.2V95.5z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="31" y="38.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="37.3" y="38.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="43.6" y="38.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="51.5" y="38.7" width="17.4" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="31" y="57.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="37.3" y="57.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="43.6" y="57.7" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="51.5" y="57.7" width="17.4" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="31" y="76.6" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="37.3" y="76.6" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="43.6" y="76.6" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="51.5" y="76.6" width="17.4" height="3.2"/>
</g>
</g>
</g>
<g>
<path d="M71,42c0.6,0,1,0.4,1,1v6c0,0.6-0.4,1-1,1H29c-0.6,0-1-0.4-1-1v-6c0-0.6,0.4-1,1-1H71 M71,41H29c-1.1,0-2,0.9-2,2v6
c0,1.1,0.9,2,2,2h42c1.1,0,2-0.9,2-2v-6C73,41.9,72.1,41,71,41L71,41z"/>
</g>
<g>
<polygon points="35,45 32,45 32,47 35,47 35,45 "/>
</g>
<g>
<path d="M37,52v1h-1v-1H37 M38,51h-3v3h3V51L38,51z"/>
</g>
<g>
<path d="M64,52v1h-1v-1H64 M65,51h-3v3h3V51L65,51z"/>
</g>
<g>
<polygon points="69,45 66,45 66,47 69,47 69,45 "/>
</g>
<g>
<polygon points="64,45 51,45 51,47 64,47 64,45 "/>
</g>
<g>
<path d="M71,55c0.6,0,1,0.4,1,1v6c0,0.6-0.4,1-1,1H29c-0.6,0-1-0.4-1-1v-6c0-0.6,0.4-1,1-1H71 M71,54H29c-1.1,0-2,0.9-2,2v6
c0,1.1,0.9,2,2,2h42c1.1,0,2-0.9,2-2v-6C73,54.9,72.1,54,71,54L71,54z"/>
</g>
<g>
<polygon points="35,58 32,58 32,60 35,60 35,58 "/>
</g>
<g>
<polygon points="69,58 66,58 66,60 69,60 69,58 "/>
</g>
<g>
<polygon points="64,58 51,58 51,60 64,60 64,58 "/>
</g>
<g>
<path class="st6" d="M52.5,16c1.9,0,3.5,1.6,3.5,3.5S54.4,23,52.5,23S49,21.4,49,19.5S50.6,16,52.5,16 M52.5,15
C50,15,48,17,48,19.5s2,4.5,4.5,4.5s4.5-2,4.5-4.5S55,15,52.5,15L52.5,15z"/>
</g>
<g>
<circle class="st6" cx="52" cy="28" r="0.5"/>
<path d="M52,27c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,27,52,27L52,27z"/>
</g>
<g>
<circle class="st6" cx="52" cy="32" r="0.5"/>
<path d="M52,31c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,31,52,31L52,31z"/>
</g>
<g>
<circle class="st6" cx="52" cy="36" r="0.5"/>
<path d="M52,35c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,35,52,35L52,35z"/>
</g>
<g>
<path d="M52.5,16c1.9,0,3.5,1.6,3.5,3.5S54.4,23,52.5,23S49,21.4,49,19.5S50.6,16,52.5,16 M52.5,15C50,15,48,17,48,19.5
s2,4.5,4.5,4.5s4.5-2,4.5-4.5S55,15,52.5,15L52.5,15z"/>
</g>
<g>
<path class="st6" d="M21.5,21L21.5,21c0.4,0,0.8,0.1,1.2,0.2c0.9,0.3,1.6,1,2,1.8c0.4,0.9,0.4,1.8,0.1,2.7
c-0.5,1.4-1.8,2.3-3.3,2.3c-0.4,0-0.8-0.1-1.2-0.2c-0.9-0.3-1.6-1-2-1.8c-0.4-0.9-0.4-1.8-0.1-2.7C18.7,21.9,20.1,21,21.5,21
M21.5,20c-1.8,0-3.5,1.1-4.2,2.9c-0.9,2.3,0.3,4.9,2.6,5.8c0.5,0.2,1.1,0.3,1.6,0.3c1.8,0,3.5-1.1,4.2-2.9
c0.9-2.3-0.3-4.9-2.6-5.8C22.6,20.1,22,20,21.5,20L21.5,20z"/>
</g>
<g>
<circle class="st6" cx="26" cy="31" r="1"/>
</g>
<g>
<circle class="st6" cx="28" cy="34" r="1"/>
</g>
<g>
<circle class="st6" cx="30" cy="37" r="1"/>
</g>
<g>
<path d="M21.5,21c1.9,0,3.5,1.6,3.5,3.5S23.4,28,21.5,28S18,26.4,18,24.5S19.6,21,21.5,21 M21.5,20C19,20,17,22,17,24.5
s2,4.5,4.5,4.5s4.5-2,4.5-4.5S24,20,21.5,20L21.5,20z"/>
</g>
<g>
<circle class="st6" cx="26" cy="31" r="0.5"/>
<path d="M26,30c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S26.6,30,26,30L26,30z"/>
</g>
<g>
<circle class="st6" cx="28" cy="34" r="0.5"/>
<path d="M28,33c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S28.6,33,28,33L28,33z"/>
</g>
<g>
<circle class="st6" cx="30" cy="37" r="0.5"/>
<path d="M30,36c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S30.6,36,30,36L30,36z"/>
</g>
<g>
<path class="st7" d="M79.5,21c1.9,0,3.5,1.6,3.5,3.5S81.4,28,79.5,28S76,26.4,76,24.5S77.6,21,79.5,21 M79.5,20
C77,20,75,22,75,24.5s2,4.5,4.5,4.5s4.5-2,4.5-4.5S82,20,79.5,20L79.5,20z"/>
</g>
<g>
<path class="st7" d="M91.5,50c1.9,0,3.5,1.6,3.5,3.5S93.4,57,91.5,57S88,55.4,88,53.5S89.6,50,91.5,50 M91.5,49
C89,49,87,51,87,53.5s2,4.5,4.5,4.5s4.5-2,4.5-4.5S94,49,91.5,49L91.5,49z"/>
</g>
<g>
<circle class="st6" cx="75" cy="31" r="0.5"/>
<path class="st7" d="M75,30c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S75.6,30,75,30L75,30z"/>
</g>
<g>
<circle class="st6" cx="73" cy="34" r="0.5"/>
<path class="st7" d="M73,33c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S73.6,33,73,33L73,33z"/>
</g>
<g>
<circle class="st6" cx="71" cy="37" r="0.5"/>
<path class="st7" d="M71,36c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S71.6,36,71,36L71,36z"/>
</g>
<g>
<circle class="st6" cx="76" cy="53" r="0.5"/>
<path class="st7" d="M76,52c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S76.6,52,76,52L76,52z"/>
</g>
<g>
<circle class="st6" cx="80" cy="53" r="0.5"/>
<path class="st7" d="M80,52c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S80.6,52,80,52L80,52z"/>
</g>
<g>
<circle class="st6" cx="84" cy="53" r="0.5"/>
<path class="st7" d="M84,52c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S84.6,52,84,52L84,52z"/>
</g>
<g>
<path d="M8.5,50c1.9,0,3.5,1.6,3.5,3.5S10.4,57,8.5,57S5,55.4,5,53.5S6.6,50,8.5,50 M8.5,49C6,49,4,51,4,53.5S6,58,8.5,58
s4.5-2,4.5-4.5S11,49,8.5,49L8.5,49z"/>
</g>
<g>
<circle class="st6" cx="24" cy="53" r="0.5"/>
<path d="M24,52c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S24.6,52,24,52L24,52z"/>
</g>
<g>
<circle class="st6" cx="20" cy="53" r="0.5"/>
<path d="M20,52c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,52,20,52L20,52z"/>
</g>
<g>
<circle class="st6" cx="16" cy="53" r="0.5"/>
<path d="M16,52c-0.6,0-1,0.4-1,1s0.4,1,1,1c0.6,0,1-0.4,1-1S16.6,52,16,52L16,52z"/>
</g>
<g>
<path d="M52.5,83c1.9,0,3.5,1.6,3.5,3.5S54.4,90,52.5,90S49,88.4,49,86.5S50.6,83,52.5,83 M52.5,82C50,82,48,84,48,86.5
s2,4.5,4.5,4.5s4.5-2,4.5-4.5S55,82,52.5,82L52.5,82z"/>
</g>
<g>
<circle class="st6" cx="52" cy="78" r="0.5"/>
<path d="M52,77c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,77,52,77L52,77z"/>
</g>
<g>
<circle class="st6" cx="52" cy="74" r="0.5"/>
<path d="M52,73c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,73,52,73L52,73z"/>
</g>
<g>
<circle class="st6" cx="52" cy="70" r="0.5"/>
<path d="M52,69c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S52.6,69,52,69L52,69z"/>
</g>
<g>
<path class="st6" d="M21.5,78c1.4,0,2.8,0.9,3.3,2.3c0.3,0.9,0.3,1.8-0.1,2.7c-0.4,0.9-1.1,1.5-2,1.8c-0.4,0.1-0.8,0.2-1.2,0.2
c-1.4,0-2.8-0.9-3.3-2.3c-0.3-0.9-0.3-1.8,0.1-2.7c0.4-0.9,1.1-1.5,2-1.8C20.7,78.1,21.1,78,21.5,78 M21.5,77
c-0.5,0-1.1,0.1-1.6,0.3c-2.3,0.9-3.5,3.5-2.6,5.8c0.7,1.8,2.4,2.9,4.2,2.9c0.5,0,1.1-0.1,1.6-0.3c2.3-0.9,3.5-3.5,2.6-5.8
C25,78.1,23.3,77,21.5,77L21.5,77z"/>
</g>
<g>
<circle class="st6" cx="26" cy="75" r="1"/>
</g>
<g>
<circle class="st6" cx="28" cy="72" r="1"/>
</g>
<g>
<circle class="st6" cx="30" cy="69" r="1"/>
</g>
<g>
<path d="M21.5,78c1.9,0,3.5,1.6,3.5,3.5S23.4,85,21.5,85S18,83.4,18,81.5S19.6,78,21.5,78 M21.5,77C19,77,17,79,17,81.5
s2,4.5,4.5,4.5s4.5-2,4.5-4.5S24,77,21.5,77L21.5,77z"/>
</g>
<g>
<circle class="st6" cx="26" cy="75" r="0.5"/>
<path d="M26,74c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S26.6,74,26,74L26,74z"/>
</g>
<g>
<circle class="st6" cx="28" cy="72" r="0.5"/>
<path d="M28,71c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S28.6,71,28,71L28,71z"/>
</g>
<g>
<circle class="st6" cx="30" cy="69" r="0.5"/>
<path d="M30,68c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S30.6,68,30,68L30,68z"/>
</g>
<g>
<path d="M79.5,78c1.9,0,3.5,1.6,3.5,3.5S81.4,85,79.5,85S76,83.4,76,81.5S77.6,78,79.5,78 M79.5,77C77,77,75,79,75,81.5
s2,4.5,4.5,4.5s4.5-2,4.5-4.5S82,77,79.5,77L79.5,77z"/>
</g>
<g>
<circle class="st6" cx="75" cy="75" r="0.5"/>
<path d="M75,74c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S75.6,74,75,74L75,74z"/>
</g>
<g>
<circle class="st6" cx="73" cy="72" r="0.5"/>
<path d="M73,71c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S73.6,71,73,71L73,71z"/>
</g>
<g>
<circle class="st6" cx="71" cy="69" r="0.5"/>
<path d="M71,68c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S71.6,68,71,68L71,68z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{fill:#231F20;}
</style>
<g class="st0">
<g class="st1">
<path class="st2" d="M68.3,50.3c1.5-17-4.4-34.3-16.8-46.7c-0.8-0.8-2.1-0.8-2.8,0C36.1,16,30.2,33.3,31.7,50.3
c-4.3,4.6-6.7,10.6-6.7,17c0,6.4,2.4,12.5,6.9,17.2c1.1,1.1,3.9,0.6,3.4-1.9c-0.2-1.3-0.5-2.6-0.5-3.9c0-3.1,0.9-6.1,2.7-8.6
c0.3,0.2,0.6,0.3,1,0.3h23c0.3,0,0.7-0.1,1-0.3c1.8,2.5,2.7,5.5,2.7,8.6c0,1.3-0.3,2.5-0.5,3.9c-0.4,2.8,2.5,2.9,3.4,1.9
c4.4-4.7,6.9-10.8,6.9-17.2C74.9,60.9,72.6,54.9,68.3,50.3z M50,7.9c3.6,3.9,6.6,8.2,8.8,12.9H41.2C43.4,16.1,46.4,11.8,50,7.9
L50,7.9z M31,76c-1.2-2.7-1.9-5.6-1.9-8.7c0-4.1,1.2-8,3.4-11.4c0,0.2,2.1,8.2,2.9,10.3C33,69,31.5,72.3,31,76L31,76z M60.1,66.2
H39.8c-5.7-13.4-5.6-28.3-0.5-41.4h21.2C65.8,37.9,65.8,52.9,60.1,66.2z M64.5,66.2c1.1-2.9,2.9-10.2,2.9-10.3
c2.2,3.4,3.4,7.3,3.4,11.4c0,3-0.7,6-1.9,8.7C68.5,72.3,67,69,64.5,66.2L64.5,66.2z"/>
<path class="st2" d="M41.8,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2s2-0.9,2-2V75.7C43.8,74.6,42.9,73.7,41.8,73.7z"/>
<path class="st2" d="M50,73.7c-0.6,0-1.1,0.2-1.4,0.6c0,0,0,0,0,0c-0.2,0.2-0.4,0.5-0.5,0.9c0,0.2-0.1,0.3-0.1,0.5V96
c0,0.2,0,0.3,0.1,0.5c0.2,0.9,1,1.6,2,1.6c0.9,0,1.7-0.7,2-1.6c0-0.2,0.1-0.3,0.1-0.5V75.7c0-0.2,0-0.4-0.1-0.5
C51.7,74.3,50.9,73.7,50,73.7z"/>
<path class="st2" d="M58.2,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2V75.7C60.2,74.6,59.3,73.7,58.2,73.7z"/>
</g>
</g>
<g>
<g>
<path d="M83.3,37.3h-5.9v-7.8C77.4,14.3,65.1,2,50,2S22.6,14.3,22.6,29.4v7.8h-5.9c-1.1,0-2,0.9-2,2v49c0,4.3,3.5,7.8,7.8,7.8
h54.8c4.3,0,7.8-3.5,7.8-7.8v-49C85.3,38.1,84.4,37.3,83.3,37.3z M55.9,78.2c0.1,0.6-0.1,1.1-0.5,1.5c-0.4,0.4-0.9,0.7-1.5,0.7
h-7.8c-0.6,0-1.1-0.2-1.5-0.7c-0.4-0.4-0.5-1-0.5-1.5L45.4,67c-2-1.5-3.2-3.8-3.2-6.3c0-4.3,3.5-7.8,7.8-7.8s7.8,3.5,7.8,7.8
c0,2.5-1.2,4.8-3.2,6.3L55.9,78.2z M65.7,37.3H34.3v-7.8c0-8.6,7-15.7,15.7-15.7s15.7,7,15.7,15.7V37.3z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#FFFFFF;}
.st3{display:inline;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st4{display:none;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st5{fill:#FFFFFF;}
.st6{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
path {fill:#FFFFFF;}
line {stroke:#FFFFFF;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path class="st1" d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11
M50,10L50,10c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"
/>
</g>
<g class="st0">
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path class="st1" d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49
M21.5,48L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48
L21.5,48z"/>
</g>
<g class="st0">
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path class="st1" d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49
M80.5,48L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48
L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g class="st0">
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st4" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st4" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
<g class="st0">
<path class="st1" d="M94.6,21.9H47L28.3,87.7c-0.6,1.8-2.2,3-4,3c-0.1,0-0.1,0-0.2,0c-1.8,0-3.4-1.1-4.1-2.7l-7.6-19.1H5.2
c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4h10.2c1.8,0,3.4,1.1,4.1,2.7l4.2,10.6l15.9-57.3c0.6-1.8,2.3-3,4.2-3h50.8
c2.4,0,4.4,2,4.4,4.4S97,21.9,94.6,21.9z M97,80.6L79.8,61.3L96.2,43c0.3-0.3,0.4-0.8,0.2-1.2c-0.2-0.4-0.6-0.6-1-0.6H85
c-0.3,0-0.6,0.1-0.8,0.4l-11,12.8L62.2,41.6c-0.2-0.2-0.5-0.4-0.8-0.4H50.5c-0.4,0-0.8,0.3-1,0.6c-0.2,0.4-0.1,0.9,0.2,1.2
l16.2,18.2L48.8,80.6c-0.3,0.3-0.4,0.8-0.2,1.2c0.2,0.4,0.6,0.6,1,0.6h10.8c0.3,0,0.6-0.1,0.8-0.4l11.4-13.7L84.3,82
c0.2,0.2,0.5,0.4,0.8,0.4h11c0.4,0,0.8-0.3,1-0.6C97.3,81.4,97.3,80.9,97,80.6z"/>
</g>
<g>
<path class="st5" d="M23,29.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path d="M24,6c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,5h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,10.4,30.6,5,24,5L24,5z"/>
</g>
<g>
<path class="st5" d="M23,60.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path d="M24,37c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,36h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,41.4,30.6,36,24,36L24,36z"/>
</g>
<g>
<path class="st5" d="M23,91.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path d="M24,68c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,67h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,72.4,30.6,67,24,67L24,67z"/>
</g>
<g>
<line class="st6" x1="68.5" y1="6.5" x2="68.5" y2="91.5"/>
</g>
<line class="st6" x1="45.5" y1="74.5" x2="68.5" y2="91.5"/>
<line class="st6" x1="91.5" y1="74.5" x2="68.5" y2="91.5"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
.st3{display:inline;stroke:#FFFFFF;stroke-miterlimit:10;}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path class="st0" d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path class="st0" d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
<g class="st0">
<g class="st1">
<path d="M94.7,89L71.9,65.4c5.8-7,9.1-15.7,9.1-24.8C81,19.3,63.7,2,42.4,2C21.1,2,3.8,19.3,3.8,40.6c0,21.3,17.3,38.6,38.6,38.6
c8,0,15.6-2.4,22.1-7L87.4,96c1,1,2.2,1.5,3.6,1.5c1.3,0,2.5-0.5,3.5-1.4C96.5,94.2,96.6,91.1,94.7,89L94.7,89z M42.4,12.1
c15.7,0,28.5,12.8,28.5,28.5c0,15.7-12.8,28.5-28.5,28.5c-15.7,0-28.5-12.8-28.5-28.5C13.9,24.9,26.7,12.1,42.4,12.1L42.4,12.1z
M42.4,12.1"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M75.8,28.5c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2c-1.4-1.4-3.8-1.4-5.2,0l-5.2,5.2
c-1.4,1.4-1.4,3.8,0,5.2C74,28.1,74.9,28.5,75.8,28.5L75.8,28.5z M16.7,50.8c0-2-1.6-3.7-3.7-3.7H5.7c-2,0-3.7,1.6-3.7,3.7
s1.6,3.7,3.7,3.7H13C15.1,54.5,16.7,52.9,16.7,50.8L16.7,50.8z M21.2,74.2L16,79.4c-1.4,1.4-1.4,3.8,0,5.2c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2C25,72.8,22.6,72.8,21.2,74.2L21.2,74.2z M21.2,27.4c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L21.2,17c-1.4-1.4-3.8-1.4-5.2,0c-1.4,1.4-1.4,3.8,0,5.2L21.2,27.4z M49.8,17.7
c2,0,3.7-1.6,3.7-3.7V6.7c0-2-1.6-3.7-3.7-3.7s-3.7,1.6-3.7,3.7V14C46.1,16.1,47.8,17.7,49.8,17.7L49.8,17.7z M94,47.1h-7.4
c-2,0-3.7,1.6-3.7,3.7s1.6,3.7,3.7,3.7H94c2,0,3.7-1.6,3.7-3.7S96,47.1,94,47.1L94,47.1z M78.4,74.2c-1.4-1.4-3.8-1.4-5.2,0
c-1.4,1.4-1.4,3.8,0,5.2l5.2,5.2c0.7,0.7,1.7,1.1,2.6,1.1c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L78.4,74.2z M49.8,83.9
c-2,0-3.7,1.6-3.7,3.7V95c0,2,1.6,3.7,3.7,3.7s3.7-1.6,3.7-3.7v-7.4C53.5,85.6,51.9,83.9,49.8,83.9L49.8,83.9z M49.8,25.1
c-14.2,0-25.8,11.6-25.8,25.8c0,14.2,11.6,25.8,25.8,25.8C64,76.6,75.6,65,75.6,50.8C75.6,36.6,64,25.1,49.8,25.1L49.8,25.1z
M49.8,69.2c-10.1,0-18.4-8.3-18.4-18.4c0-10.1,8.3-18.4,18.4-18.4c10.1,0,18.4,8.3,18.4,18.4C68.2,61,60,69.2,49.8,69.2L49.8,69.2
z M49.8,69.2"/>
</g>
<path class="st0" d="M91.9,75.3c3.5,0,6.3-2.8,6.3-6.3v-29c0-3.5-2.8-6.3-6.3-6.3H52.2v-0.7c0-1-0.3-1.9-0.9-2.6
c0.4-0.5,0.7-1.1,0.9-1.8c1.6-1,2.6-2.7,2.6-4.6c0-0.9-0.2-1.8-0.7-2.6c0.4-0.8,0.7-1.7,0.7-2.6c0-1.9-1-3.6-2.6-4.6
c0-0.2,0-0.4,0-0.6c0-2.7-2-5-4.6-5.3c-1-1.6-2.7-2.6-4.6-2.6c-0.2,0-0.5,0-0.7,0.1c-1.1-0.9-2.4-1.3-3.8-1.3c-0.2,0-0.4,0-0.6,0
c-1.1-0.9-2.5-1.3-4-1.3c-1.4,0-2.8,0.5-4,1.3c-0.2,0-0.4,0-0.6,0c-1.4,0-2.7,0.5-3.8,1.3c-1.7,0.2-3.2,1.1-4.1,2.6
c-2.6,0.4-4.6,2.6-4.6,5.3c0,0.2,0,0.4,0,0.6c-1.6,1-2.6,2.7-2.6,4.6c0,0.9,0.2,1.8,0.7,2.6c-0.4,0.8-0.7,1.7-0.7,2.6
c0,1.9,1,3.7,2.6,4.6c0.1,0.4,0.2,0.7,0.4,1.1c-1,0.7-1.7,2-1.7,3.3v2.6c0,2.3,1.8,4.1,4.1,4.1h0.7l0.1,0.7c0.3,1.6,1.1,3,2.3,4.1
l0.5,0.5V49c0,0.5-0.3,0.9-0.8,1l-11.3,3.5c-2.8,0.9-4.7,3.4-4.7,6.4v18.7c0,1.9,0.6,3.6,1.7,4.9H4.9c-1.7,0-3.1,1.4-3.1,3.1v3.2
c0,1.7,1.4,3.1,3.1,3.1h90.2c1.7,0,3.1-1.4,3.1-3.1v-3.2c0-1.7-1.4-3.1-3.1-3.1H78.7l-1.1-8.3H91.9z M95.2,39.9v29
c0,1.8-1.5,3.3-3.3,3.3H77.4c-0.1,0-0.1,0-0.2,0L76,63.5c-0.3-2.3-2.3-4.1-4.7-4.1h-7.2c-2.4,0-4.4,1.8-4.7,4.1l-1.2,8.8
c-0.1,0-0.1,0-0.2,0H43.6c-1.8,0-3.3-1.5-3.3-3.3v-29c0-1.8,1.5-3.3,3.3-3.3h48.3C93.7,36.6,95.2,38.1,95.2,39.9z M53.1,83.5
c0,0,0-0.1,0-0.1v-8.2h4.7l-1.1,8.3H53.1z M48.3,33.6l0.3-1.7c0.3,0.2,0.5,0.5,0.5,0.9v0.7H48.3z M18,20.3c-0.3-0.3-0.6-0.8-0.6-1.6
c0-1.1,0.7-2,1.7-2.3c0.4-0.1,0.8-0.4,1-0.8c0.2-0.4,0.2-0.8,0-1.2c-0.1-0.3-0.2-0.6-0.2-0.9c0-1.3,1-2.3,2.3-2.4c0.1,0,0.1,0,0.2,0
c0.7,0,1.3-0.4,1.5-1c0.3-0.9,1.2-1.6,2.2-1.6c0,0,0.1,0,0.1,0c0.4,0,0.8-0.1,1.1-0.4c0.6-0.6,1.3-0.9,2.1-0.9c0.2,0,0.4,0,0.7,0.1
c0.5,0.1,1,0,1.4-0.4c0.7-0.6,1.6-1,2.5-1s1.8,0.4,2.5,1c0.4,0.3,0.9,0.5,1.4,0.4c0.2-0.1,0.5-0.1,0.7-0.1c0.8,0,1.6,0.4,2.2,1
c0.4,0.4,1,0.6,1.6,0.4c0.2-0.1,0.5-0.1,0.7-0.1c1,0,1.9,0.6,2.2,1.6c0.2,0.6,0.8,1.1,1.5,1c0.1,0,0.1,0,0.2,0
c1.3,0,2.3,1.1,2.3,2.4c0,0.3-0.1,0.6-0.2,0.9c-0.2,0.4-0.1,0.9,0,1.2s0.5,0.7,1,0.8c1,0.3,1.7,1.2,1.7,2.3c0,0.7-0.3,1.3-0.6,1.6
c-0.5,0.6-0.5,1.4,0,2c0.3,0.3,0.6,0.8,0.6,1.6c0,1-0.6,1.9-1.6,2.2c-0.7,0.2-1.1,0.9-1,1.6c0,0,0,0.1,0,0.1c0,0.5-0.3,0.9-0.8,1
c0,0-1.5,0-1.5,0L46,23.6c-0.1-0.8-0.8-1.3-1.6-1.3c-0.1,0-0.1,0-0.2,0l0,0c-0.8,0-1.5-0.4-1.9-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0
c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7
c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.1,1-1.9,1.1l0,0
c-0.1,0-0.1,0-0.2,0c-0.8-0.1-1.5,0.5-1.6,1.3l-0.9,5.2c0,0-1.4,0-1.5,0c-0.5-0.1-0.8-0.5-0.8-1c0,0,0-0.1,0-0.1
c0.1-0.7-0.4-1.3-1-1.6c-0.9-0.3-1.6-1.2-1.6-2.2c0-0.7,0.3-1.3,0.6-1.6C18.5,21.7,18.5,20.8,18,20.3z M19.7,36.5
c-0.6,0-1.1-0.5-1.1-1.1v-2.6c0-0.4,0.2-0.7,0.5-0.9l0.7,4.6H19.7z M22.2,31.8h0.2c1.4,0,2.5-1,2.8-2.3l0.7-4.2
c0.8-0.2,1.6-0.5,2.2-1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1
c0.7,0.5,1.4,0.8,2.2,1l0.7,4.2c0.2,1,0.8,1.8,1.7,2.1l-0.3,2h-1.7c-3.5,0-6.3,2.8-6.3,6.3v6.7c-0.3,0.1-0.6,0.2-0.9,0.2h-4.9
c-0.6,0-1.1-0.2-1.5-0.5L24.7,42c-0.7-0.6-1.1-1.4-1.3-2.2L22.2,31.8z M23.5,52.9c1.7-0.5,2.9-2.1,2.9-3.9v-1.7l1.6,1.3
c1,0.8,2.2,1.2,3.4,1.2h4.9c0.3,0,0.6,0,0.9-0.1v9.7c-0.9,0.1-1.8,0.2-2.7,0.2c-5,0-9.8-2.3-12.9-6.2L23.5,52.9z M9.6,78.6V59.9
c0-1.6,1-3,2.6-3.5l6.3-2c3.7,5.2,9.6,8.3,16,8.3c0.9,0,1.8-0.1,2.7-0.2v6.4c0,3.5,2.8,6.3,6.3,6.3h6.5v8.2c0,0,0,0.1,0,0.1h-8.3
v-1.7c0-3.5-2.8-6.3-6.3-6.3H19.4c-0.1,0-0.1,0-0.1-0.1v-9.7c0-0.8-0.7-1.5-1.5-1.5s-1.5,0.7-1.5,1.5v9.7c0,1.7,1.4,3.1,3.1,3.1h9.8
v5H14.6C11.8,83.5,9.6,81.3,9.6,78.6z M32.2,83.5v-5h3.3c1.8,0,3.3,1.5,3.3,3.3v1.7H32.2z M95.2,86.7v3.2c0,0.1,0,0.1-0.1,0.1H4.9
c-0.1,0-0.1,0-0.1-0.1v-3.2c0-0.1,0-0.1,0.1-0.1h90.2C95.2,86.6,95.2,86.6,95.2,86.7z M59.8,83.5l2.6-19.7c0.1-0.8,0.8-1.5,1.7-1.5
h7.2c0.9,0,1.6,0.6,1.7,1.5l2.6,19.7H59.8z"/>
<path class="st0" d="M67.7,56c2.6,0,4.7-2.1,4.7-4.7c0-2.6-2.1-4.7-4.7-4.7c-2.6,0-4.7,2.1-4.7,4.7C63,53.8,65.1,56,67.7,56z
M67.7,49.5c0.9,0,1.7,0.8,1.7,1.7c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7C66,50.3,66.8,49.5,67.7,49.5z"/>
<g class="st0">
<path class="st1" d="M72.9,36.2L53.7,19.4c-1-0.9-2.3-1.4-3.7-1.4c-1.3,0-2.6,0.5-3.7,1.4l-6.8,6c-0.4-1.4-0.6-3-0.6-4.6
c0-3.8,1.2-7.4,3.4-10.1c2.1-2.5,4.8-4,7.7-4c6.1,0,11.1,6.3,11.1,14.1c0,1.3,1.1,2.3,2.3,2.3c1.3,0,2.3-1.1,2.3-2.3
C65.8,10.4,58.8,2,50.1,2c-4.3,0-8.3,2-11.3,5.7c-2.9,3.5-4.5,8.2-4.5,13.1c0,2.8,0.5,5.5,1.5,7.9l-8.5,7.5
c-2.1,1.9-3.4,4.6-3.4,7.4v42.1c0,6.5,5.3,11.8,11.8,11.8h28.9c6.5,0,11.8-5.3,11.8-11.8V43.6C76.3,40.7,75.1,38,72.9,36.2
L72.9,36.2z M71.6,85.7c0,3.9-3.2,7.1-7.1,7.1H35.6c-3.9,0-7.1-3.2-7.1-7.1V43.6c0-1.5,0.6-2.9,1.8-3.9l7.7-6.8l0.7,0.9
c3,3.7,7,5.7,11.3,5.7c1.3,0,2.3-1.1,2.3-2.3c0-1.3-1.1-2.3-2.3-2.3c-2.9,0-5.6-1.4-7.7-4c-0.3-0.4-0.5-0.7-0.8-1.1l7.9-6.9
c0.2-0.2,0.4-0.2,0.6-0.2c0.2,0,0.4,0,0.6,0.2l19.2,16.8c1.1,1,1.8,2.4,1.8,3.9L71.6,85.7L71.6,85.7z M71.6,85.7"/>
<path class="st1" d="M52.7,61.4h-5.2c-1.8,0-3.3-1.5-3.3-3.3c0-1.8,1.5-3.3,3.3-3.3h9.1c1.3,0,2.3-1.1,2.3-2.3
c0-1.3-1.1-2.3-2.3-2.3h-4.2V47c0-1.3-1.1-2.3-2.3-2.3c-1.3,0-2.3,1.1-2.3,2.3v3.1h-0.2c-4.4,0-8,3.6-8,8c0,4.4,3.6,8,8,8h5.2
c1.8,0,3.3,1.5,3.3,3.3c0,1.8-1.5,3.3-3.3,3.3h-9.3c-1.3,0-2.3,1.1-2.3,2.3c0,1.3,1.1,2.3,2.3,2.3h4.3v3.1c0,1.3,1.1,2.3,2.3,2.3
c1.3,0,2.3-1.1,2.3-2.3v-3.1h0.3c4.4-0.1,7.9-3.6,7.9-8C60.7,64.9,57.1,61.4,52.7,61.4L52.7,61.4z M52.7,61.4"/>
</g>
<g class="st0">
<path class="st1" d="M89.5,86.8V40.4c0-2.5-2-4.6-4.6-4.6H70v3h14.9c0.9,0,1.6,0.7,1.6,1.6v46.4h-33v1.5h-6v-1.5h-33V40.4
c0-0.9,0.7-1.6,1.6-1.6H31v-3H16.1c-2.5,0-4.6,2-4.6,4.6v46.4H4v5c0,2.2,1.8,4,4,4H93c2.2,0,4-1.8,4-4v-5H89.5z M94,91.8
c0,0.6-0.5,1-1,1H8c-0.6,0-1-0.5-1-1v-2h37.5v1.5h12v-1.5H94V91.8z M94,91.8"/>
<path class="st1" d="M17.5,83.8h66v-42H67v3h13.5v36h-60v-36H34v-3H17.5V83.8z M17.5,83.8"/>
<rect x="49" y="4.3" class="st1" width="3" height="4.5"/>
<path class="st1" d="M35,8.9l2.6-1.5l2.3,3.9l-2.6,1.5L35,8.9z M35,8.9"/>
<path class="st1" d="M25.1,19.9l1.5-2.6l3.9,2.3L29,22.1L25.1,19.9z M25.1,19.9"/>
<rect x="22" y="31.3" class="st1" width="4.5" height="3"/>
<rect x="74.5" y="31.3" class="st1" width="4.5" height="3"/>
<path class="st1" d="M62.5,67.3c0,0.8-0.7,1.5-1.5,1.5H40c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h21
C61.8,65.8,62.5,66.5,62.5,67.3L62.5,67.3z M59.5,74.8h-18c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h18c0.8,0,1.5,0.7,1.5,1.5
C61,74.1,60.3,74.8,59.5,74.8L59.5,74.8z M64,61.3c0,0.8-0.7,1.5-1.5,1.5h-24c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h24
C63.3,59.8,64,60.5,64,61.3L64,61.3z M49,44.8"/>
<path class="st1" d="M70.5,19.5l3.9-2.3l1.5,2.6L72,22.1L70.5,19.5z M70.5,19.5"/>
<path class="st1" d="M61.2,11.3l2.3-3.9L66,8.9l-2.3,3.9L61.2,11.3z M61.2,11.3"/>
<path class="st3" d="M61,59.8H38.5v-1.5c0-4.5-1.6-8.8-4.6-12.6c-3.5-4.5-5-10.1-4.2-15.7c1.2-9.4,9-16.9,18.4-18
c6-0.7,12,1.2,16.4,5.2c4.5,4,7,9.7,7,15.7c0,4.8-1.6,9.3-4.6,13.1c-2.9,3.6-4.4,8-4.4,12.3v1.5L61,59.8z M61,59.8"/>
</g>
<g class="st0">
<g class="st1">
<path d="M91.8,46.7V4.5c0-0.5-0.2-0.9-0.6-1.2c-0.4-0.3-0.9-0.3-1.4-0.1L75.3,8.9c-0.6,0.2-0.9,0.8-0.9,1.4c0,0.6,0.4,1.1,0.9,1.4
l13.6,5.5v29.6h-1.5c-0.4,0-0.8,0.2-1,0.4L60.5,73L55,67.5c-0.6-0.6-1.5-0.6-2.1,0L35.8,84.7L25.1,74.1c-0.6-0.6-1.5-0.6-2.1,0
L3.4,93.7C3.2,94,3,94.4,3,94.7v1.5h2.9v-0.9l18.2-18.2l10.6,10.6c0.6,0.6,1.5,0.6,2.1,0L54,70.6l5.5,5.5c0.6,0.6,1.5,0.6,2.1,0
l26.5-26.5h8.1v-2.9H91.8z M79.7,10.3l9.2-3.7V14L79.7,10.3z M79.7,10.3"/>
<path d="M5.5,66.6c3.5-3.7,10.9-1.4,15.3,0c1.8,0.6,3.6,0.9,5.2,0.9c1.7,0,3.2-0.3,4.7-0.9v9.2c0,0.8,0.7,1.5,1.5,1.5h7.3
c0.8,0,1.5-0.7,1.5-1.5V61.7c0.3-0.5,0.9-0.9,1.8-1.3c0.3-0.1,0.6-0.3,0.9-0.4c0.8-0.4,1.7-0.8,2.5-1.4c1-0.7,1.7-1.9,1.9-3.2h3
v8.7c0,0.8,0.7,1.5,1.5,1.5h7.3c0.8,0,1.5-0.6,1.5-1.5V52.5c0-4-3.3-7.3-7.3-7.3h-8.7v-4.4h7.3c4,0,7.3-3.3,7.3-7.3V20.5
c0-0.8-0.7-1.5-1.5-1.5h-5.8c-0.8,0-1.5,0.6-1.5,1.5v11.6h-7.1c0.7-1.3,1.2-2.8,1.2-4.4c0-4.8-3.9-8.7-8.7-8.7
c-4.8,0-8.7,3.9-8.7,8.7c0,1.5,0.4,2.8,1,4c-4.9,1.5-9.4,4.7-12.9,9.5c-1.6,2.1-2.7,4.6-3.9,7c-0.3,0.6-0.6,1.3-0.9,1.9
c-0.7,1.4-1.3,2.9-1.9,4.4C7.5,58.2,5.9,62,3.4,64.6c-0.6,0.6-0.5,1.5,0.1,2.1C4,67.2,5,67.2,5.5,66.6L5.5,66.6z M30.7,47.8
L29,46.1l1.7-1.7V47.8z M44.3,56.3c-0.6,0.4-1.2,0.7-2,1c-0.3,0.1-0.7,0.3-1,0.5c-0.2,0.1-0.4,0.2-0.5,0.3v-2.6H45
C44.8,55.8,44.6,56.1,44.3,56.3L44.3,56.3z M52.5,35c0.8,0,1.5-0.7,1.5-1.5V21.9h2.9v11.7c0,2.4-2,4.4-4.4,4.4h-8.7
c-0.8,0-1.4,0.7-1.4,1.5v7.3c0,0.8,0.6,1.5,1.4,1.5H54c2.4,0,4.4,2,4.4,4.4v10.2H54V54c0-0.8-0.7-1.5-1.5-1.5H39.4
c-0.8,0-1.5,0.7-1.5,1.5v20.4h-4.4V40.9c0-0.6-0.4-1.1-0.9-1.3c-0.5-0.2-1.2-0.1-1.6,0.3L25.9,45c-0.3,0.3-0.4,0.6-0.4,1
c0,0.4,0.2,0.8,0.4,1l4.1,4.1l-2.3,2.3l-4.3-4.3c-1.7-1.7-1.7-4.5,0-6.2l8.1-8.1c1.4,1,3.1,1.6,5,1.6c0,0,0.1,0,0.1,0v8.7h2.9
v-9.3c0.6-0.2,1.2-0.5,1.8-0.9H52.5z M36.4,21.9c3.2,0,5.8,2.6,5.8,5.8c0,3.2-2.6,5.8-5.8,5.8c-3.2,0-5.8-2.6-5.8-5.8
C30.6,24.5,33.2,21.9,36.4,21.9L36.4,21.9z M11.7,55.7c0.6-1.5,1.2-2.9,1.9-4.2c0.3-0.6,0.6-1.3,0.9-1.9c1.1-2.2,2.2-4.6,3.6-6.5
c1.8-2.4,4.5-5.4,8.3-7.3l-5.1,5.1c-2.8,2.8-2.8,7.5,0,10.3l5.3,5.3c0.6,0.6,1.5,0.6,2.1,0l2-2v8.8c-3.1,1.8-6.6,1.3-9,0.5
c-3.4-1.1-8.4-2.7-12.8-2C10,59.9,10.8,57.8,11.7,55.7L11.7,55.7z M11.7,55.7"/>
</g>
</g>
<g>
<path d="M56,98.4H44.4c-2.3,0-4.3-1.7-4.5-4.1l-1.2-7.2c-2.2-0.7-4.4-1.6-6.5-2.7l-6,4.3c-0.7,0.6-1.7,1-2.8,1
c-1.2,0-2.3-0.5-3.2-1.3L12,80.2c-1.6-1.6-1.8-4.2-0.3-6l4.2-5.9c-1.1-2.1-2-4.3-2.7-6.5L6,60.5c-2.2-0.2-4-2.1-4-4.5V44.4
c0-2.3,1.7-4.3,4.1-4.5l7.2-1.2c0.7-2.2,1.6-4.4,2.7-6.5l-4.3-6c-1.4-1.7-1.3-4.3,0.4-6l8.2-8.2c1.6-1.6,4.3-1.7,6-0.3l5.9,4.2
c2.1-1.1,4.3-2,6.5-2.7L39.9,6c0.2-2.2,2.1-4,4.5-4H56c2.3,0,4.3,1.7,4.5,4.1l1.2,7.2c2.2,0.7,4.4,1.6,6.5,2.7l6-4.3
c0.7-0.6,1.7-0.9,2.8-0.9c1.2,0,2.3,0.5,3.2,1.3l8.2,8.2c1.6,1.6,1.8,4.2,0.3,6l-4.2,5.9c1.1,2.1,2,4.3,2.7,6.5l7.3,1.2
c2.2,0.2,4,2.1,4,4.5V56c0,2.3-1.7,4.3-4.1,4.5l-7.2,1.2c-0.7,2.2-1.6,4.4-2.7,6.5l4.3,6c1.4,1.7,1.3,4.3-0.4,6l-8.2,8.2
c-1.6,1.6-4.3,1.7-6,0.3l-5.9-4.2c-2.1,1.1-4.3,2-6.5,2.7l-1.2,7.3C60.3,96.7,58.4,98.4,56,98.4L56,98.4z M32.1,81
c0.3,0,0.5,0.1,0.8,0.2c2.4,1.4,5,2.4,7.7,3.2c0.6,0.2,1,0.7,1.1,1.3l1.4,8.2c0.1,0.8,0.7,1.3,1.3,1.3H56c0.7,0,1.2-0.5,1.3-1.2
l1.4-8.3c0.1-0.6,0.5-1.1,1.1-1.3c2.7-0.8,5.3-1.8,7.7-3.2c0.5-0.3,1.2-0.3,1.7,0.1l6.8,4.9c0.7,0.6,1.4,0.4,1.9,0l8.2-8.2
c0.5-0.5,0.5-1.2,0.1-1.8l-4.9-6.9c-0.4-0.5-0.4-1.2-0.1-1.7c1.4-2.4,2.4-5,3.2-7.7c0.2-0.6,0.7-1,1.3-1.1l8.3-1.4
c0.8-0.1,1.3-0.7,1.3-1.3V44.4c0-0.7-0.5-1.2-1.2-1.3l-8.3-1.4c-0.6-0.1-1.1-0.5-1.3-1.1c-0.8-2.7-1.8-5.3-3.2-7.7
c-0.3-0.5-0.3-1.2,0.1-1.7l4.9-6.8c0.5-0.6,0.5-1.4,0-1.9l-8.2-8.2c-0.5-0.5-1.3-0.5-1.8-0.1l-6.9,4.9c-0.5,0.4-1.2,0.4-1.7,0.1
c-2.4-1.4-5-2.4-7.7-3.2c-0.6-0.2-1-0.7-1.1-1.3l-1.4-8.2c-0.1-0.8-0.6-1.3-1.3-1.3H44.4c-0.7,0-1.2,0.5-1.3,1.2l-1.4,8.3
c-0.1,0.6-0.5,1.1-1.1,1.3c-2.7,0.8-5.3,1.8-7.7,3.2c-0.5,0.3-1.2,0.3-1.7-0.1l-6.8-4.9c-0.7-0.5-1.4-0.4-1.9,0l-8.2,8.2
c-0.5,0.5-0.5,1.2-0.1,1.8l4.9,6.9c0.4,0.5,0.4,1.2,0.1,1.7c-1.4,2.4-2.4,5-3.2,7.7c-0.2,0.6-0.7,1-1.3,1.1L6.5,43
c-0.8,0.1-1.3,0.6-1.3,1.3V56c0,0.7,0.5,1.2,1.2,1.3l8.4,1.4c0.6,0.1,1.1,0.5,1.3,1.1c0.7,2.7,1.8,5.3,3.2,7.7
c0.3,0.5,0.3,1.2-0.1,1.7l-4.9,6.8c-0.5,0.6-0.5,1.4,0,1.9l8.2,8.2c0.5,0.5,1.3,0.5,1.8,0.1l6.9-4.9C31.4,81.1,31.7,81,32.1,81
L32.1,81z M50.2,69.3c-10.5,0-19.1-8.5-19.1-19.1c0-10.5,8.6-19.1,19.1-19.1c10.5,0,19.1,8.6,19.1,19.1
C69.3,60.7,60.7,69.3,50.2,69.3L50.2,69.3z M50.2,34.3c-8.8,0-15.9,7.1-15.9,15.9c0,8.8,7.1,15.9,15.9,15.9
c8.8,0,15.9-7.1,15.9-15.9C66.1,41.4,59,34.3,50.2,34.3L50.2,34.3z M50.2,34.3"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path class="st0" d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path class="st0" d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
<g class="st0">
<g class="st1">
<path d="M94.7,89L71.9,65.4c5.8-7,9.1-15.7,9.1-24.8C81,19.3,63.7,2,42.4,2C21.1,2,3.8,19.3,3.8,40.6c0,21.3,17.3,38.6,38.6,38.6
c8,0,15.6-2.4,22.1-7L87.4,96c1,1,2.2,1.5,3.6,1.5c1.3,0,2.5-0.5,3.5-1.4C96.5,94.2,96.6,91.1,94.7,89L94.7,89z M42.4,12.1
c15.7,0,28.5,12.8,28.5,28.5c0,15.7-12.8,28.5-28.5,28.5c-15.7,0-28.5-12.8-28.5-28.5C13.9,24.9,26.7,12.1,42.4,12.1L42.4,12.1z
M42.4,12.1"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M75.8,28.5c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2c-1.4-1.4-3.8-1.4-5.2,0l-5.2,5.2
c-1.4,1.4-1.4,3.8,0,5.2C74,28.1,74.9,28.5,75.8,28.5L75.8,28.5z M16.7,50.8c0-2-1.6-3.7-3.7-3.7H5.7c-2,0-3.7,1.6-3.7,3.7
s1.6,3.7,3.7,3.7H13C15.1,54.5,16.7,52.9,16.7,50.8L16.7,50.8z M21.2,74.2L16,79.4c-1.4,1.4-1.4,3.8,0,5.2c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2C25,72.8,22.6,72.8,21.2,74.2L21.2,74.2z M21.2,27.4c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L21.2,17c-1.4-1.4-3.8-1.4-5.2,0c-1.4,1.4-1.4,3.8,0,5.2L21.2,27.4z M49.8,17.7
c2,0,3.7-1.6,3.7-3.7V6.7c0-2-1.6-3.7-3.7-3.7s-3.7,1.6-3.7,3.7V14C46.1,16.1,47.8,17.7,49.8,17.7L49.8,17.7z M94,47.1h-7.4
c-2,0-3.7,1.6-3.7,3.7s1.6,3.7,3.7,3.7H94c2,0,3.7-1.6,3.7-3.7S96,47.1,94,47.1L94,47.1z M78.4,74.2c-1.4-1.4-3.8-1.4-5.2,0
c-1.4,1.4-1.4,3.8,0,5.2l5.2,5.2c0.7,0.7,1.7,1.1,2.6,1.1c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L78.4,74.2z M49.8,83.9
c-2,0-3.7,1.6-3.7,3.7V95c0,2,1.6,3.7,3.7,3.7s3.7-1.6,3.7-3.7v-7.4C53.5,85.6,51.9,83.9,49.8,83.9L49.8,83.9z M49.8,25.1
c-14.2,0-25.8,11.6-25.8,25.8c0,14.2,11.6,25.8,25.8,25.8C64,76.6,75.6,65,75.6,50.8C75.6,36.6,64,25.1,49.8,25.1L49.8,25.1z
M49.8,69.2c-10.1,0-18.4-8.3-18.4-18.4c0-10.1,8.3-18.4,18.4-18.4c10.1,0,18.4,8.3,18.4,18.4C68.2,61,60,69.2,49.8,69.2L49.8,69.2
z M49.8,69.2"/>
</g>
<path class="st0" d="M91.9,75.3c3.5,0,6.3-2.8,6.3-6.3v-29c0-3.5-2.8-6.3-6.3-6.3H52.2v-0.7c0-1-0.3-1.9-0.9-2.6
c0.4-0.5,0.7-1.1,0.9-1.8c1.6-1,2.6-2.7,2.6-4.6c0-0.9-0.2-1.8-0.7-2.6c0.4-0.8,0.7-1.7,0.7-2.6c0-1.9-1-3.6-2.6-4.6
c0-0.2,0-0.4,0-0.6c0-2.7-2-5-4.6-5.3c-1-1.6-2.7-2.6-4.6-2.6c-0.2,0-0.5,0-0.7,0.1c-1.1-0.9-2.4-1.3-3.8-1.3c-0.2,0-0.4,0-0.6,0
c-1.1-0.9-2.5-1.3-4-1.3c-1.4,0-2.8,0.5-4,1.3c-0.2,0-0.4,0-0.6,0c-1.4,0-2.7,0.5-3.8,1.3c-1.7,0.2-3.2,1.1-4.1,2.6
c-2.6,0.4-4.6,2.6-4.6,5.3c0,0.2,0,0.4,0,0.6c-1.6,1-2.6,2.7-2.6,4.6c0,0.9,0.2,1.8,0.7,2.6c-0.4,0.8-0.7,1.7-0.7,2.6
c0,1.9,1,3.7,2.6,4.6c0.1,0.4,0.2,0.7,0.4,1.1c-1,0.7-1.7,2-1.7,3.3v2.6c0,2.3,1.8,4.1,4.1,4.1h0.7l0.1,0.7c0.3,1.6,1.1,3,2.3,4.1
l0.5,0.5V49c0,0.5-0.3,0.9-0.8,1l-11.3,3.5c-2.8,0.9-4.7,3.4-4.7,6.4v18.7c0,1.9,0.6,3.6,1.7,4.9H4.9c-1.7,0-3.1,1.4-3.1,3.1v3.2
c0,1.7,1.4,3.1,3.1,3.1h90.2c1.7,0,3.1-1.4,3.1-3.1v-3.2c0-1.7-1.4-3.1-3.1-3.1H78.7l-1.1-8.3H91.9z M95.2,39.9v29
c0,1.8-1.5,3.3-3.3,3.3H77.4c-0.1,0-0.1,0-0.2,0L76,63.5c-0.3-2.3-2.3-4.1-4.7-4.1h-7.2c-2.4,0-4.4,1.8-4.7,4.1l-1.2,8.8
c-0.1,0-0.1,0-0.2,0H43.6c-1.8,0-3.3-1.5-3.3-3.3v-29c0-1.8,1.5-3.3,3.3-3.3h48.3C93.7,36.6,95.2,38.1,95.2,39.9z M53.1,83.5
c0,0,0-0.1,0-0.1v-8.2h4.7l-1.1,8.3H53.1z M48.3,33.6l0.3-1.7c0.3,0.2,0.5,0.5,0.5,0.9v0.7H48.3z M18,20.3c-0.3-0.3-0.6-0.8-0.6-1.6
c0-1.1,0.7-2,1.7-2.3c0.4-0.1,0.8-0.4,1-0.8c0.2-0.4,0.2-0.8,0-1.2c-0.1-0.3-0.2-0.6-0.2-0.9c0-1.3,1-2.3,2.3-2.4c0.1,0,0.1,0,0.2,0
c0.7,0,1.3-0.4,1.5-1c0.3-0.9,1.2-1.6,2.2-1.6c0,0,0.1,0,0.1,0c0.4,0,0.8-0.1,1.1-0.4c0.6-0.6,1.3-0.9,2.1-0.9c0.2,0,0.4,0,0.7,0.1
c0.5,0.1,1,0,1.4-0.4c0.7-0.6,1.6-1,2.5-1s1.8,0.4,2.5,1c0.4,0.3,0.9,0.5,1.4,0.4c0.2-0.1,0.5-0.1,0.7-0.1c0.8,0,1.6,0.4,2.2,1
c0.4,0.4,1,0.6,1.6,0.4c0.2-0.1,0.5-0.1,0.7-0.1c1,0,1.9,0.6,2.2,1.6c0.2,0.6,0.8,1.1,1.5,1c0.1,0,0.1,0,0.2,0
c1.3,0,2.3,1.1,2.3,2.4c0,0.3-0.1,0.6-0.2,0.9c-0.2,0.4-0.1,0.9,0,1.2s0.5,0.7,1,0.8c1,0.3,1.7,1.2,1.7,2.3c0,0.7-0.3,1.3-0.6,1.6
c-0.5,0.6-0.5,1.4,0,2c0.3,0.3,0.6,0.8,0.6,1.6c0,1-0.6,1.9-1.6,2.2c-0.7,0.2-1.1,0.9-1,1.6c0,0,0,0.1,0,0.1c0,0.5-0.3,0.9-0.8,1
c0,0-1.5,0-1.5,0L46,23.6c-0.1-0.8-0.8-1.3-1.6-1.3c-0.1,0-0.1,0-0.2,0l0,0c-0.8,0-1.5-0.4-1.9-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0
c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7
c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.1,1-1.9,1.1l0,0
c-0.1,0-0.1,0-0.2,0c-0.8-0.1-1.5,0.5-1.6,1.3l-0.9,5.2c0,0-1.4,0-1.5,0c-0.5-0.1-0.8-0.5-0.8-1c0,0,0-0.1,0-0.1
c0.1-0.7-0.4-1.3-1-1.6c-0.9-0.3-1.6-1.2-1.6-2.2c0-0.7,0.3-1.3,0.6-1.6C18.5,21.7,18.5,20.8,18,20.3z M19.7,36.5
c-0.6,0-1.1-0.5-1.1-1.1v-2.6c0-0.4,0.2-0.7,0.5-0.9l0.7,4.6H19.7z M22.2,31.8h0.2c1.4,0,2.5-1,2.8-2.3l0.7-4.2
c0.8-0.2,1.6-0.5,2.2-1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1
c0.7,0.5,1.4,0.8,2.2,1l0.7,4.2c0.2,1,0.8,1.8,1.7,2.1l-0.3,2h-1.7c-3.5,0-6.3,2.8-6.3,6.3v6.7c-0.3,0.1-0.6,0.2-0.9,0.2h-4.9
c-0.6,0-1.1-0.2-1.5-0.5L24.7,42c-0.7-0.6-1.1-1.4-1.3-2.2L22.2,31.8z M23.5,52.9c1.7-0.5,2.9-2.1,2.9-3.9v-1.7l1.6,1.3
c1,0.8,2.2,1.2,3.4,1.2h4.9c0.3,0,0.6,0,0.9-0.1v9.7c-0.9,0.1-1.8,0.2-2.7,0.2c-5,0-9.8-2.3-12.9-6.2L23.5,52.9z M9.6,78.6V59.9
c0-1.6,1-3,2.6-3.5l6.3-2c3.7,5.2,9.6,8.3,16,8.3c0.9,0,1.8-0.1,2.7-0.2v6.4c0,3.5,2.8,6.3,6.3,6.3h6.5v8.2c0,0,0,0.1,0,0.1h-8.3
v-1.7c0-3.5-2.8-6.3-6.3-6.3H19.4c-0.1,0-0.1,0-0.1-0.1v-9.7c0-0.8-0.7-1.5-1.5-1.5s-1.5,0.7-1.5,1.5v9.7c0,1.7,1.4,3.1,3.1,3.1h9.8
v5H14.6C11.8,83.5,9.6,81.3,9.6,78.6z M32.2,83.5v-5h3.3c1.8,0,3.3,1.5,3.3,3.3v1.7H32.2z M95.2,86.7v3.2c0,0.1,0,0.1-0.1,0.1H4.9
c-0.1,0-0.1,0-0.1-0.1v-3.2c0-0.1,0-0.1,0.1-0.1h90.2C95.2,86.6,95.2,86.6,95.2,86.7z M59.8,83.5l2.6-19.7c0.1-0.8,0.8-1.5,1.7-1.5
h7.2c0.9,0,1.6,0.6,1.7,1.5l2.6,19.7H59.8z"/>
<path class="st0" d="M67.7,56c2.6,0,4.7-2.1,4.7-4.7c0-2.6-2.1-4.7-4.7-4.7c-2.6,0-4.7,2.1-4.7,4.7C63,53.8,65.1,56,67.7,56z
M67.7,49.5c0.9,0,1.7,0.8,1.7,1.7c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7C66,50.3,66.8,49.5,67.7,49.5z"/>
<g>
<path d="M72.9,36.2L53.7,19.4c-1-0.9-2.3-1.4-3.7-1.4c-1.3,0-2.6,0.5-3.7,1.4l-6.8,6c-0.4-1.4-0.6-3-0.6-4.6
c0-3.8,1.2-7.4,3.4-10.1c2.1-2.5,4.8-4,7.7-4c6.1,0,11.1,6.3,11.1,14.1c0,1.3,1.1,2.3,2.3,2.3c1.3,0,2.3-1.1,2.3-2.3
C65.8,10.4,58.8,2,50.1,2c-4.3,0-8.3,2-11.3,5.7c-2.9,3.5-4.5,8.2-4.5,13.1c0,2.8,0.5,5.5,1.5,7.9l-8.5,7.5
c-2.1,1.9-3.4,4.6-3.4,7.4v42.1c0,6.5,5.3,11.8,11.8,11.8h28.9c6.5,0,11.8-5.3,11.8-11.8V43.6C76.3,40.7,75.1,38,72.9,36.2
L72.9,36.2z M71.6,85.7c0,3.9-3.2,7.1-7.1,7.1H35.6c-3.9,0-7.1-3.2-7.1-7.1V43.6c0-1.5,0.6-2.9,1.8-3.9l7.7-6.8l0.7,0.9
c3,3.7,7,5.7,11.3,5.7c1.3,0,2.3-1.1,2.3-2.3c0-1.3-1.1-2.3-2.3-2.3c-2.9,0-5.6-1.4-7.7-4c-0.3-0.4-0.5-0.7-0.8-1.1l7.9-6.9
c0.2-0.2,0.4-0.2,0.6-0.2c0.2,0,0.4,0,0.6,0.2l19.2,16.8c1.1,1,1.8,2.4,1.8,3.9L71.6,85.7L71.6,85.7z M71.6,85.7"/>
<path d="M52.7,61.4h-5.2c-1.8,0-3.3-1.5-3.3-3.3c0-1.8,1.5-3.3,3.3-3.3h9.1c1.3,0,2.3-1.1,2.3-2.3c0-1.3-1.1-2.3-2.3-2.3h-4.2V47
c0-1.3-1.1-2.3-2.3-2.3c-1.3,0-2.3,1.1-2.3,2.3v3.1h-0.2c-4.4,0-8,3.6-8,8c0,4.4,3.6,8,8,8h5.2c1.8,0,3.3,1.5,3.3,3.3
c0,1.8-1.5,3.3-3.3,3.3h-9.3c-1.3,0-2.3,1.1-2.3,2.3c0,1.3,1.1,2.3,2.3,2.3h4.3v3.1c0,1.3,1.1,2.3,2.3,2.3c1.3,0,2.3-1.1,2.3-2.3
v-3.1h0.3c4.4-0.1,7.9-3.6,7.9-8C60.7,64.9,57.1,61.4,52.7,61.4L52.7,61.4z M52.7,61.4"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#FFFFFF;}
.st3{display:inline;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st4{display:none;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st5{fill:none;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path class="st1" d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11
M50,10L50,10c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"
/>
</g>
<g class="st0">
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path class="st1" d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49
M21.5,48L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48
L21.5,48z"/>
</g>
<g class="st0">
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path class="st1" d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49
M80.5,48L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48
L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g class="st0">
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st4" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st4" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
<g class="st0">
<path class="st1" d="M94.6,21.9H47L28.3,87.7c-0.6,1.8-2.2,3-4,3c-0.1,0-0.1,0-0.2,0c-1.8,0-3.4-1.1-4.1-2.7l-7.6-19.1H5.2
c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4h10.2c1.8,0,3.4,1.1,4.1,2.7l4.2,10.6l15.9-57.3c0.6-1.8,2.3-3,4.2-3h50.8
c2.4,0,4.4,2,4.4,4.4S97,21.9,94.6,21.9z M97,80.6L79.8,61.3L96.2,43c0.3-0.3,0.4-0.8,0.2-1.2c-0.2-0.4-0.6-0.6-1-0.6H85
c-0.3,0-0.6,0.1-0.8,0.4l-11,12.8L62.2,41.6c-0.2-0.2-0.5-0.4-0.8-0.4H50.5c-0.4,0-0.8,0.3-1,0.6c-0.2,0.4-0.1,0.9,0.2,1.2
l16.2,18.2L48.8,80.6c-0.3,0.3-0.4,0.8-0.2,1.2c0.2,0.4,0.6,0.6,1,0.6h10.8c0.3,0,0.6-0.1,0.8-0.4l11.4-13.7L84.3,82
c0.2,0.2,0.5,0.4,0.8,0.4h11c0.4,0,0.8-0.3,1-0.6C97.3,81.4,97.3,80.9,97,80.6z"/>
</g>
<g class="st0">
<path class="st2" d="M23,29.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,6c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,5h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,10.4,30.6,5,24,5L24,5z"/>
</g>
<g class="st0">
<path class="st2" d="M23,60.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,37c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,36h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,41.4,30.6,36,24,36L24,36z"/>
</g>
<g class="st0">
<path class="st2" d="M23,91.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,68c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,67h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,72.4,30.6,67,24,67L24,67z"/>
</g>
<g class="st0">
<line class="st3" x1="68.5" y1="6.5" x2="68.5" y2="91.5"/>
</g>
<line class="st4" x1="45.5" y1="74.5" x2="68.5" y2="91.5"/>
<line class="st4" x1="91.5" y1="74.5" x2="68.5" y2="91.5"/>
<g id="_x32_22._Calender" class="st0">
<g class="st1">
<path d="M57.6,50.6L57.6,50.6c-2.7,0-5,2.2-5,5c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,52.9,60.3,50.6,57.6,50.6z M42.7,45.7
c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,43.5,40,45.7,42.7,45.7z M57.6,35.7L57.6,35.7c-2.7,0-5,2.2-5,5
c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,38,60.3,35.7,57.6,35.7z M62.6,10.9H37.7v9.9h24.8V10.9z M72.5,45.7c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C67.5,43.5,69.8,45.7,72.5,45.7z M72.5,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
C67.5,58.3,69.8,60.6,72.5,60.6z M42.7,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,58.3,40,60.6,42.7,60.6z
M27.8,75.5c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,73.2,25.1,75.5,27.8,75.5z M87.4,10.9h-5v9.9h5v64.5H12.9
V20.9h5v-9.9h-5c-5.5,0-9.9,4.4-9.9,9.9v64.5c0,5.5,4.4,9.9,9.9,9.9h74.5c5.5,0,9.9-4.4,9.9-9.9V20.9
C97.3,15.4,92.9,10.9,87.4,10.9z M27.8,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,58.3,25.1,60.6,27.8,60.6z
M27.8,45.7c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,43.5,25.1,45.7,27.8,45.7z M42.7,75.5c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,73.2,40,75.5,42.7,75.5z M27.8,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
v9.9C22.9,18.6,25.1,20.9,27.8,20.9z M72.5,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5v9.9
C67.5,18.6,69.8,20.9,72.5,20.9z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<polygon class="st5" points="47.5,6.1 20.7,6.1 7.3,27.5 47.5,27.5 "/>
<polygon class="st5" points="77.3,6.1 50.5,6.1 50.5,27.5 90.7,27.5 "/>
<rect x="6.1" y="30.6" class="st5" width="85.9" height="61.3"/>
<path d="M79,3H19L3,28.6V95h92V28.6L79,3z M50.5,6.1h26.8l13.4,21.5H50.5V6.1z M20.7,6.1h26.8v21.5H7.3L20.7,6.1z M91.9,91.9H6.1
V30.6h85.9V91.9z"/>
</g>
<path class="st1" d="M58.2,38.3H39.8c-2.5,0-4.6,2.1-4.6,4.6c0,2.5,2.1,4.6,4.6,4.6h18.4c2.5,0,4.6-2.1,4.6-4.6
C62.8,40.3,60.7,38.3,58.2,38.3z M58.2,44.4H39.8c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h18.4c0.8,0,1.5,0.7,1.5,1.5
C59.7,43.7,59,44.4,58.2,44.4z"/>
<path class="st1" d="M61.3,82.7H36.7c-0.8,0-1.5,0.7-1.5,1.5c0,0.8,0.7,1.5,1.5,1.5h24.5c0.8,0,1.5-0.7,1.5-1.5
C62.8,83.4,62.1,82.7,61.3,82.7z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M48.8,66.7c-1.6,0-2.9,1.3-2.9,2.9c0,0.8,0.3,1.5,0.9,2.1v2.6c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-2.6
c0.6-0.5,0.9-1.3,0.9-2.1C51.7,68,50.4,66.7,48.8,66.7z M49.8,70.6c-0.3,0.3-0.4,0.6-0.4,1v2.6c0,0.3-0.3,0.6-0.6,0.6
c-0.3,0-0.6-0.3-0.6-0.6v-2.6c0-0.4-0.2-0.7-0.4-1c-0.3-0.3-0.5-0.7-0.5-1.1c0-0.8,0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5
C50.3,70,50.1,70.3,49.8,70.6z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M57.3,62.9h-2.1v-5.5c0-3.5-2.8-6.3-6.3-6.3c-3.5,0-6.3,2.8-6.3,6.3v5.5h-2.1c-1.2,0-2.1,0.9-2.1,2.1v12.9
c0,1.2,0.9,2.1,2.1,2.1h16.9c1.2,0,2.1-0.9,2.1-2.1V65C59.3,63.8,58.4,62.9,57.3,62.9z M43.9,57.3c0-2.7,2.2-5,5-5
c2.7,0,5,2.2,5,5v5.5h-9.9V57.3z M58,77.9L58,77.9c0,0.4-0.3,0.7-0.7,0.7H40.4c-0.4,0-0.7-0.3-0.7-0.7V65c0-0.4,0.3-0.7,0.7-0.7
h16.9c0.4,0,0.7,0.3,0.7,0.7V77.9z"/>
</g>
</g>
<g>
<g>
<path d="M68.3,15.8H25.8c-2.2-4-6.4-6.8-11.3-6.8C7.5,9,1.8,14.7,1.8,21.8c0,7.1,5.7,12.8,12.8,12.8c5.8,0,10.7-3.8,12.2-9.1h40.9
c-0.3-1.2-0.4-2.4-0.4-3.7C67.3,19.7,67.6,17.7,68.3,15.8z M14.5,26.6c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8
s4.8,2.1,4.8,4.8C19.3,24.4,17.2,26.6,14.5,26.6z"/>
</g>
</g>
<g>
<g>
<path d="M85.2,9c-7.1,0-12.8,5.7-12.8,12.8c0,3.5,1.4,6.6,3.6,8.9L55.7,63.9c3.2,1.1,5.9,3,8,5.5l21.3-34.8c0,0,0.1,0,0.1,0
c7.1,0,12.8-5.7,12.8-12.8S92.3,9,85.2,9z M85.2,26.6c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8c2.6,0,4.8,2.1,4.8,4.8
C90,24.4,87.8,26.6,85.2,26.6z"/>
</g>
</g>
<g>
<g>
<path d="M50,68.2c-1,0-2,0.1-2.9,0.4L26.6,35.1c-2.4,2.2-5.4,3.7-8.7,4.4l21.3,34.8c-1.2,2-1.9,4.3-1.9,6.7
C37.2,88,43,93.7,50,93.7S62.8,88,62.8,80.9S57.1,68.2,50,68.2z M50,85.7c-2.6,0-4.8-2.1-4.8-4.8c0-2.6,2.1-4.8,4.8-4.8
c2.6,0,4.8,2.1,4.8,4.8C54.8,83.6,52.6,85.7,50,85.7z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{fill:#FFFFFF;}
.st3{fill:none;stroke:#000000;stroke-miterlimit:10;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g>
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11 M50,10L50,10
c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"/>
</g>
<g>
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49 M21.5,48
L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48L21.5,48z"/>
</g>
<g>
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49 M80.5,48
L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g>
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st3" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st3" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:#231F20;}
</style>
<g>
<g>
<path class="st0" d="M68.3,50.3c1.5-17-4.4-34.3-16.8-46.7c-0.8-0.8-2.1-0.8-2.8,0C36.1,16,30.2,33.3,31.7,50.3
c-4.3,4.6-6.7,10.6-6.7,17c0,6.4,2.4,12.5,6.9,17.2c1.1,1.1,3.9,0.6,3.4-1.9c-0.2-1.3-0.5-2.6-0.5-3.9c0-3.1,0.9-6.1,2.7-8.6
c0.3,0.2,0.6,0.3,1,0.3h23c0.3,0,0.7-0.1,1-0.3c1.8,2.5,2.7,5.5,2.7,8.6c0,1.3-0.3,2.5-0.5,3.9c-0.4,2.8,2.5,2.9,3.4,1.9
c4.4-4.7,6.9-10.8,6.9-17.2C74.9,60.9,72.6,54.9,68.3,50.3z M50,7.9c3.6,3.9,6.6,8.2,8.8,12.9H41.2C43.4,16.1,46.4,11.8,50,7.9
L50,7.9z M31,76c-1.2-2.7-1.9-5.6-1.9-8.7c0-4.1,1.2-8,3.4-11.4c0,0.2,2.1,8.2,2.9,10.3C33,69,31.5,72.3,31,76L31,76z M60.1,66.2
H39.8c-5.7-13.4-5.6-28.3-0.5-41.4h21.2C65.8,37.9,65.8,52.9,60.1,66.2z M64.5,66.2c1.1-2.9,2.9-10.2,2.9-10.3
c2.2,3.4,3.4,7.3,3.4,11.4c0,3-0.7,6-1.9,8.7C68.5,72.3,67,69,64.5,66.2L64.5,66.2z"/>
<path class="st0" d="M41.8,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2s2-0.9,2-2V75.7C43.8,74.6,42.9,73.7,41.8,73.7z"/>
<path class="st0" d="M50,73.7c-0.6,0-1.1,0.2-1.4,0.6c0,0,0,0,0,0c-0.2,0.2-0.4,0.5-0.5,0.9c0,0.2-0.1,0.3-0.1,0.5V96
c0,0.2,0,0.3,0.1,0.5c0.2,0.9,1,1.6,2,1.6c0.9,0,1.7-0.7,2-1.6c0-0.2,0.1-0.3,0.1-0.5V75.7c0-0.2,0-0.4-0.1-0.5
C51.7,74.3,50.9,73.7,50,73.7z"/>
<path class="st0" d="M58.2,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2V75.7C60.2,74.6,59.3,73.7,58.2,73.7z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path class="st0" d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path class="st0" d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
<g>
<g>
<path d="M94.7,89L71.9,65.4c5.8-7,9.1-15.7,9.1-24.8C81,19.3,63.7,2,42.4,2C21.1,2,3.8,19.3,3.8,40.6c0,21.3,17.3,38.6,38.6,38.6
c8,0,15.6-2.4,22.1-7L87.4,96c1,1,2.2,1.5,3.6,1.5c1.3,0,2.5-0.5,3.5-1.4C96.5,94.2,96.6,91.1,94.7,89L94.7,89z M42.4,12.1
c15.7,0,28.5,12.8,28.5,28.5c0,15.7-12.8,28.5-28.5,28.5c-15.7,0-28.5-12.8-28.5-28.5C13.9,24.9,26.7,12.1,42.4,12.1L42.4,12.1z
M42.4,12.1"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#FFFFFF;}
.st3{display:inline;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st4{display:none;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st5{fill:none;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path class="st1" d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11
M50,10L50,10c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"
/>
</g>
<g class="st0">
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path class="st1" d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49
M21.5,48L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48
L21.5,48z"/>
</g>
<g class="st0">
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path class="st1" d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49
M80.5,48L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48
L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g class="st0">
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st4" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st4" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
<g class="st0">
<path class="st1" d="M94.6,21.9H47L28.3,87.7c-0.6,1.8-2.2,3-4,3c-0.1,0-0.1,0-0.2,0c-1.8,0-3.4-1.1-4.1-2.7l-7.6-19.1H5.2
c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4h10.2c1.8,0,3.4,1.1,4.1,2.7l4.2,10.6l15.9-57.3c0.6-1.8,2.3-3,4.2-3h50.8
c2.4,0,4.4,2,4.4,4.4S97,21.9,94.6,21.9z M97,80.6L79.8,61.3L96.2,43c0.3-0.3,0.4-0.8,0.2-1.2c-0.2-0.4-0.6-0.6-1-0.6H85
c-0.3,0-0.6,0.1-0.8,0.4l-11,12.8L62.2,41.6c-0.2-0.2-0.5-0.4-0.8-0.4H50.5c-0.4,0-0.8,0.3-1,0.6c-0.2,0.4-0.1,0.9,0.2,1.2
l16.2,18.2L48.8,80.6c-0.3,0.3-0.4,0.8-0.2,1.2c0.2,0.4,0.6,0.6,1,0.6h10.8c0.3,0,0.6-0.1,0.8-0.4l11.4-13.7L84.3,82
c0.2,0.2,0.5,0.4,0.8,0.4h11c0.4,0,0.8-0.3,1-0.6C97.3,81.4,97.3,80.9,97,80.6z"/>
</g>
<g class="st0">
<path class="st2" d="M23,29.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,6c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,5h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,10.4,30.6,5,24,5L24,5z"/>
</g>
<g class="st0">
<path class="st2" d="M23,60.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,37c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,36h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,41.4,30.6,36,24,36L24,36z"/>
</g>
<g class="st0">
<path class="st2" d="M23,91.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path class="st1" d="M24,68c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,67h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,72.4,30.6,67,24,67L24,67z"/>
</g>
<g class="st0">
<line class="st3" x1="68.5" y1="6.5" x2="68.5" y2="91.5"/>
</g>
<line class="st4" x1="45.5" y1="74.5" x2="68.5" y2="91.5"/>
<line class="st4" x1="91.5" y1="74.5" x2="68.5" y2="91.5"/>
<g id="_x32_22._Calender" class="st0">
<g class="st1">
<path d="M57.6,50.6L57.6,50.6c-2.7,0-5,2.2-5,5c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,52.9,60.3,50.6,57.6,50.6z M42.7,45.7
c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,43.5,40,45.7,42.7,45.7z M57.6,35.7L57.6,35.7c-2.7,0-5,2.2-5,5
c0,2.7,2.2,5,5,5l0,0c2.7,0,5-2.2,5-5C62.6,38,60.3,35.7,57.6,35.7z M62.6,10.9H37.7v9.9h24.8V10.9z M72.5,45.7c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C67.5,43.5,69.8,45.7,72.5,45.7z M72.5,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
C67.5,58.3,69.8,60.6,72.5,60.6z M42.7,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,58.3,40,60.6,42.7,60.6z
M27.8,75.5c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,73.2,25.1,75.5,27.8,75.5z M87.4,10.9h-5v9.9h5v64.5H12.9
V20.9h5v-9.9h-5c-5.5,0-9.9,4.4-9.9,9.9v64.5c0,5.5,4.4,9.9,9.9,9.9h74.5c5.5,0,9.9-4.4,9.9-9.9V20.9
C97.3,15.4,92.9,10.9,87.4,10.9z M27.8,60.6c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,58.3,25.1,60.6,27.8,60.6z
M27.8,45.7c2.7,0,5-2.2,5-5c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C22.9,43.5,25.1,45.7,27.8,45.7z M42.7,75.5c2.7,0,5-2.2,5-5
c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5C37.7,73.2,40,75.5,42.7,75.5z M27.8,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5
v9.9C22.9,18.6,25.1,20.9,27.8,20.9z M72.5,20.9c2.7,0,5-2.2,5-5V6c0-2.7-2.2-5-5-5c-2.7,0-5,2.2-5,5v9.9
C67.5,18.6,69.8,20.9,72.5,20.9z"/>
</g>
</g>
<g>
<g>
<polygon class="st5" points="47.5,6.1 20.7,6.1 7.3,27.5 47.5,27.5 "/>
<polygon class="st5" points="77.3,6.1 50.5,6.1 50.5,27.5 90.7,27.5 "/>
<rect x="6.1" y="30.6" class="st5" width="85.9" height="61.3"/>
<path d="M79,3H19L3,28.6V95h92V28.6L79,3z M50.5,6.1h26.8l13.4,21.5H50.5V6.1z M20.7,6.1h26.8v21.5H7.3L20.7,6.1z M91.9,91.9H6.1
V30.6h85.9V91.9z"/>
</g>
<path d="M58.2,38.3H39.8c-2.5,0-4.6,2.1-4.6,4.6c0,2.5,2.1,4.6,4.6,4.6h18.4c2.5,0,4.6-2.1,4.6-4.6C62.8,40.3,60.7,38.3,58.2,38.3z
M58.2,44.4H39.8c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h18.4c0.8,0,1.5,0.7,1.5,1.5C59.7,43.7,59,44.4,58.2,44.4z"/>
<path d="M61.3,82.7H36.7c-0.8,0-1.5,0.7-1.5,1.5c0,0.8,0.7,1.5,1.5,1.5h24.5c0.8,0,1.5-0.7,1.5-1.5C62.8,83.4,62.1,82.7,61.3,82.7z
"/>
</g>
<g>
<g>
<path d="M48.8,66.7c-1.6,0-2.9,1.3-2.9,2.9c0,0.8,0.3,1.5,0.9,2.1v2.6c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-2.6
c0.6-0.5,0.9-1.3,0.9-2.1C51.7,68,50.4,66.7,48.8,66.7z M49.8,70.6c-0.3,0.3-0.4,0.6-0.4,1v2.6c0,0.3-0.3,0.6-0.6,0.6
c-0.3,0-0.6-0.3-0.6-0.6v-2.6c0-0.4-0.2-0.7-0.4-1c-0.3-0.3-0.5-0.7-0.5-1.1c0-0.8,0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5
C50.3,70,50.1,70.3,49.8,70.6z"/>
</g>
</g>
<g>
<g>
<path d="M57.3,62.9h-2.1v-5.5c0-3.5-2.8-6.3-6.3-6.3c-3.5,0-6.3,2.8-6.3,6.3v5.5h-2.1c-1.2,0-2.1,0.9-2.1,2.1v12.9
c0,1.2,0.9,2.1,2.1,2.1h16.9c1.2,0,2.1-0.9,2.1-2.1V65C59.3,63.8,58.4,62.9,57.3,62.9z M43.9,57.3c0-2.7,2.2-5,5-5
c2.7,0,5,2.2,5,5v5.5h-9.9V57.3z M58,77.9L58,77.9c0,0.4-0.3,0.7-0.7,0.7H40.4c-0.4,0-0.7-0.3-0.7-0.7V65c0-0.4,0.3-0.7,0.7-0.7
h16.9c0.4,0,0.7,0.3,0.7,0.7V77.9z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#FFFFFF;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<path class="st2" d="M20.5,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S26.6,32.5,20.5,32.5z"/>
<path class="st1" d="M20.5,11C26.3,11,31,15.7,31,21.5C31,27.3,26.3,32,20.5,32C14.7,32,10,27.3,10,21.5C10,15.7,14.7,11,20.5,11
M20.5,10L20.5,10C14.2,10,9,15.2,9,21.5v0C9,27.8,14.2,33,20.5,33h0C26.8,33,32,27.8,32,21.5v0C32,15.2,26.8,10,20.5,10L20.5,10z"
/>
</g>
<g class="st0">
<path class="st2" d="M20.5,62.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S26.6,62.5,20.5,62.5z"/>
<path class="st1" d="M20.5,41C26.3,41,31,45.7,31,51.5C31,57.3,26.3,62,20.5,62C14.7,62,10,57.3,10,51.5C10,45.7,14.7,41,20.5,41
M20.5,40L20.5,40C14.2,40,9,45.2,9,51.5v0C9,57.8,14.2,63,20.5,63h0C26.8,63,32,57.8,32,51.5v0C32,45.2,26.8,40,20.5,40L20.5,40z"
/>
</g>
<g class="st0">
<path class="st2" d="M20.5,93.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S26.6,93.5,20.5,93.5z"/>
<path class="st1" d="M20.5,72C26.3,72,31,76.7,31,82.5C31,88.3,26.3,93,20.5,93C14.7,93,10,88.3,10,82.5C10,76.7,14.7,72,20.5,72
M20.5,71L20.5,71C14.2,71,9,76.2,9,82.5v0C9,88.8,14.2,94,20.5,94h0C26.8,94,32,88.8,32,82.5v0C32,76.2,26.8,71,20.5,71L20.5,71z"
/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g>
<g>
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g>
<g>
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path class="st0" d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path class="st0" d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
<g class="st0">
<g class="st1">
<path d="M94.7,89L71.9,65.4c5.8-7,9.1-15.7,9.1-24.8C81,19.3,63.7,2,42.4,2C21.1,2,3.8,19.3,3.8,40.6c0,21.3,17.3,38.6,38.6,38.6
c8,0,15.6-2.4,22.1-7L87.4,96c1,1,2.2,1.5,3.6,1.5c1.3,0,2.5-0.5,3.5-1.4C96.5,94.2,96.6,91.1,94.7,89L94.7,89z M42.4,12.1
c15.7,0,28.5,12.8,28.5,28.5c0,15.7-12.8,28.5-28.5,28.5c-15.7,0-28.5-12.8-28.5-28.5C13.9,24.9,26.7,12.1,42.4,12.1L42.4,12.1z
M42.4,12.1"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M75.8,28.5c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2c-1.4-1.4-3.8-1.4-5.2,0l-5.2,5.2
c-1.4,1.4-1.4,3.8,0,5.2C74,28.1,74.9,28.5,75.8,28.5L75.8,28.5z M16.7,50.8c0-2-1.6-3.7-3.7-3.7H5.7c-2,0-3.7,1.6-3.7,3.7
s1.6,3.7,3.7,3.7H13C15.1,54.5,16.7,52.9,16.7,50.8L16.7,50.8z M21.2,74.2L16,79.4c-1.4,1.4-1.4,3.8,0,5.2c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2C25,72.8,22.6,72.8,21.2,74.2L21.2,74.2z M21.2,27.4c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L21.2,17c-1.4-1.4-3.8-1.4-5.2,0c-1.4,1.4-1.4,3.8,0,5.2L21.2,27.4z M49.8,17.7
c2,0,3.7-1.6,3.7-3.7V6.7c0-2-1.6-3.7-3.7-3.7s-3.7,1.6-3.7,3.7V14C46.1,16.1,47.8,17.7,49.8,17.7L49.8,17.7z M94,47.1h-7.4
c-2,0-3.7,1.6-3.7,3.7s1.6,3.7,3.7,3.7H94c2,0,3.7-1.6,3.7-3.7S96,47.1,94,47.1L94,47.1z M78.4,74.2c-1.4-1.4-3.8-1.4-5.2,0
c-1.4,1.4-1.4,3.8,0,5.2l5.2,5.2c0.7,0.7,1.7,1.1,2.6,1.1c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L78.4,74.2z M49.8,83.9
c-2,0-3.7,1.6-3.7,3.7V95c0,2,1.6,3.7,3.7,3.7s3.7-1.6,3.7-3.7v-7.4C53.5,85.6,51.9,83.9,49.8,83.9L49.8,83.9z M49.8,25.1
c-14.2,0-25.8,11.6-25.8,25.8c0,14.2,11.6,25.8,25.8,25.8C64,76.6,75.6,65,75.6,50.8C75.6,36.6,64,25.1,49.8,25.1L49.8,25.1z
M49.8,69.2c-10.1,0-18.4-8.3-18.4-18.4c0-10.1,8.3-18.4,18.4-18.4c10.1,0,18.4,8.3,18.4,18.4C68.2,61,60,69.2,49.8,69.2L49.8,69.2
z M49.8,69.2"/>
</g>
<path d="M91.9,75.3c3.5,0,6.3-2.8,6.3-6.3v-29c0-3.5-2.8-6.3-6.3-6.3H52.2v-0.7c0-1-0.3-1.9-0.9-2.6c0.4-0.5,0.7-1.1,0.9-1.8
c1.6-1,2.6-2.7,2.6-4.6c0-0.9-0.2-1.8-0.7-2.6c0.4-0.8,0.7-1.7,0.7-2.6c0-1.9-1-3.6-2.6-4.6c0-0.2,0-0.4,0-0.6c0-2.7-2-5-4.6-5.3
c-1-1.6-2.7-2.6-4.6-2.6c-0.2,0-0.5,0-0.7,0.1c-1.1-0.9-2.4-1.3-3.8-1.3c-0.2,0-0.4,0-0.6,0c-1.1-0.9-2.5-1.3-4-1.3
c-1.4,0-2.8,0.5-4,1.3c-0.2,0-0.4,0-0.6,0c-1.4,0-2.7,0.5-3.8,1.3c-1.7,0.2-3.2,1.1-4.1,2.6c-2.6,0.4-4.6,2.6-4.6,5.3
c0,0.2,0,0.4,0,0.6c-1.6,1-2.6,2.7-2.6,4.6c0,0.9,0.2,1.8,0.7,2.6c-0.4,0.8-0.7,1.7-0.7,2.6c0,1.9,1,3.7,2.6,4.6
c0.1,0.4,0.2,0.7,0.4,1.1c-1,0.7-1.7,2-1.7,3.3v2.6c0,2.3,1.8,4.1,4.1,4.1h0.7l0.1,0.7c0.3,1.6,1.1,3,2.3,4.1l0.5,0.5V49
c0,0.5-0.3,0.9-0.8,1l-11.3,3.5c-2.8,0.9-4.7,3.4-4.7,6.4v18.7c0,1.9,0.6,3.6,1.7,4.9H4.9c-1.7,0-3.1,1.4-3.1,3.1v3.2
c0,1.7,1.4,3.1,3.1,3.1h90.2c1.7,0,3.1-1.4,3.1-3.1v-3.2c0-1.7-1.4-3.1-3.1-3.1H78.7l-1.1-8.3H91.9z M95.2,39.9v29
c0,1.8-1.5,3.3-3.3,3.3H77.4c-0.1,0-0.1,0-0.2,0L76,63.5c-0.3-2.3-2.3-4.1-4.7-4.1h-7.2c-2.4,0-4.4,1.8-4.7,4.1l-1.2,8.8
c-0.1,0-0.1,0-0.2,0H43.6c-1.8,0-3.3-1.5-3.3-3.3v-29c0-1.8,1.5-3.3,3.3-3.3h48.3C93.7,36.6,95.2,38.1,95.2,39.9z M53.1,83.5
c0,0,0-0.1,0-0.1v-8.2h4.7l-1.1,8.3H53.1z M48.3,33.6l0.3-1.7c0.3,0.2,0.5,0.5,0.5,0.9v0.7H48.3z M18,20.3c-0.3-0.3-0.6-0.8-0.6-1.6
c0-1.1,0.7-2,1.7-2.3c0.4-0.1,0.8-0.4,1-0.8c0.2-0.4,0.2-0.8,0-1.2c-0.1-0.3-0.2-0.6-0.2-0.9c0-1.3,1-2.3,2.3-2.4c0.1,0,0.1,0,0.2,0
c0.7,0,1.3-0.4,1.5-1c0.3-0.9,1.2-1.6,2.2-1.6c0,0,0.1,0,0.1,0c0.4,0,0.8-0.1,1.1-0.4c0.6-0.6,1.3-0.9,2.1-0.9c0.2,0,0.4,0,0.7,0.1
c0.5,0.1,1,0,1.4-0.4c0.7-0.6,1.6-1,2.5-1s1.8,0.4,2.5,1c0.4,0.3,0.9,0.5,1.4,0.4c0.2-0.1,0.5-0.1,0.7-0.1c0.8,0,1.6,0.4,2.2,1
c0.4,0.4,1,0.6,1.6,0.4c0.2-0.1,0.5-0.1,0.7-0.1c1,0,1.9,0.6,2.2,1.6c0.2,0.6,0.8,1.1,1.5,1c0.1,0,0.1,0,0.2,0
c1.3,0,2.3,1.1,2.3,2.4c0,0.3-0.1,0.6-0.2,0.9c-0.2,0.4-0.1,0.9,0,1.2s0.5,0.7,1,0.8c1,0.3,1.7,1.2,1.7,2.3c0,0.7-0.3,1.3-0.6,1.6
c-0.5,0.6-0.5,1.4,0,2c0.3,0.3,0.6,0.8,0.6,1.6c0,1-0.6,1.9-1.6,2.2c-0.7,0.2-1.1,0.9-1,1.6c0,0,0,0.1,0,0.1c0,0.5-0.3,0.9-0.8,1
c0,0-1.5,0-1.5,0L46,23.6c-0.1-0.8-0.8-1.3-1.6-1.3c-0.1,0-0.1,0-0.2,0l0,0c-0.8,0-1.5-0.4-1.9-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0
c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7
c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.1,1-1.9,1.1l0,0
c-0.1,0-0.1,0-0.2,0c-0.8-0.1-1.5,0.5-1.6,1.3l-0.9,5.2c0,0-1.4,0-1.5,0c-0.5-0.1-0.8-0.5-0.8-1c0,0,0-0.1,0-0.1
c0.1-0.7-0.4-1.3-1-1.6c-0.9-0.3-1.6-1.2-1.6-2.2c0-0.7,0.3-1.3,0.6-1.6C18.5,21.7,18.5,20.8,18,20.3z M19.7,36.5
c-0.6,0-1.1-0.5-1.1-1.1v-2.6c0-0.4,0.2-0.7,0.5-0.9l0.7,4.6H19.7z M22.2,31.8h0.2c1.4,0,2.5-1,2.8-2.3l0.7-4.2
c0.8-0.2,1.6-0.5,2.2-1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1
c0.7,0.5,1.4,0.8,2.2,1l0.7,4.2c0.2,1,0.8,1.8,1.7,2.1l-0.3,2h-1.7c-3.5,0-6.3,2.8-6.3,6.3v6.7c-0.3,0.1-0.6,0.2-0.9,0.2h-4.9
c-0.6,0-1.1-0.2-1.5-0.5L24.7,42c-0.7-0.6-1.1-1.4-1.3-2.2L22.2,31.8z M23.5,52.9c1.7-0.5,2.9-2.1,2.9-3.9v-1.7l1.6,1.3
c1,0.8,2.2,1.2,3.4,1.2h4.9c0.3,0,0.6,0,0.9-0.1v9.7c-0.9,0.1-1.8,0.2-2.7,0.2c-5,0-9.8-2.3-12.9-6.2L23.5,52.9z M9.6,78.6V59.9
c0-1.6,1-3,2.6-3.5l6.3-2c3.7,5.2,9.6,8.3,16,8.3c0.9,0,1.8-0.1,2.7-0.2v6.4c0,3.5,2.8,6.3,6.3,6.3h6.5v8.2c0,0,0,0.1,0,0.1h-8.3
v-1.7c0-3.5-2.8-6.3-6.3-6.3H19.4c-0.1,0-0.1,0-0.1-0.1v-9.7c0-0.8-0.7-1.5-1.5-1.5s-1.5,0.7-1.5,1.5v9.7c0,1.7,1.4,3.1,3.1,3.1h9.8
v5H14.6C11.8,83.5,9.6,81.3,9.6,78.6z M32.2,83.5v-5h3.3c1.8,0,3.3,1.5,3.3,3.3v1.7H32.2z M95.2,86.7v3.2c0,0.1,0,0.1-0.1,0.1H4.9
c-0.1,0-0.1,0-0.1-0.1v-3.2c0-0.1,0-0.1,0.1-0.1h90.2C95.2,86.6,95.2,86.6,95.2,86.7z M59.8,83.5l2.6-19.7c0.1-0.8,0.8-1.5,1.7-1.5
h7.2c0.9,0,1.6,0.6,1.7,1.5l2.6,19.7H59.8z"/>
<path d="M67.7,56c2.6,0,4.7-2.1,4.7-4.7c0-2.6-2.1-4.7-4.7-4.7c-2.6,0-4.7,2.1-4.7,4.7C63,53.8,65.1,56,67.7,56z M67.7,49.5
c0.9,0,1.7,0.8,1.7,1.7c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7C66,50.3,66.8,49.5,67.7,49.5z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
.st3{display:inline;stroke:#FFFFFF;stroke-miterlimit:10;}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path class="st0" d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path class="st0" d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
<g class="st0">
<g class="st1">
<path d="M94.7,89L71.9,65.4c5.8-7,9.1-15.7,9.1-24.8C81,19.3,63.7,2,42.4,2C21.1,2,3.8,19.3,3.8,40.6c0,21.3,17.3,38.6,38.6,38.6
c8,0,15.6-2.4,22.1-7L87.4,96c1,1,2.2,1.5,3.6,1.5c1.3,0,2.5-0.5,3.5-1.4C96.5,94.2,96.6,91.1,94.7,89L94.7,89z M42.4,12.1
c15.7,0,28.5,12.8,28.5,28.5c0,15.7-12.8,28.5-28.5,28.5c-15.7,0-28.5-12.8-28.5-28.5C13.9,24.9,26.7,12.1,42.4,12.1L42.4,12.1z
M42.4,12.1"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M75.8,28.5c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2c-1.4-1.4-3.8-1.4-5.2,0l-5.2,5.2
c-1.4,1.4-1.4,3.8,0,5.2C74,28.1,74.9,28.5,75.8,28.5L75.8,28.5z M16.7,50.8c0-2-1.6-3.7-3.7-3.7H5.7c-2,0-3.7,1.6-3.7,3.7
s1.6,3.7,3.7,3.7H13C15.1,54.5,16.7,52.9,16.7,50.8L16.7,50.8z M21.2,74.2L16,79.4c-1.4,1.4-1.4,3.8,0,5.2c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2C25,72.8,22.6,72.8,21.2,74.2L21.2,74.2z M21.2,27.4c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L21.2,17c-1.4-1.4-3.8-1.4-5.2,0c-1.4,1.4-1.4,3.8,0,5.2L21.2,27.4z M49.8,17.7
c2,0,3.7-1.6,3.7-3.7V6.7c0-2-1.6-3.7-3.7-3.7s-3.7,1.6-3.7,3.7V14C46.1,16.1,47.8,17.7,49.8,17.7L49.8,17.7z M94,47.1h-7.4
c-2,0-3.7,1.6-3.7,3.7s1.6,3.7,3.7,3.7H94c2,0,3.7-1.6,3.7-3.7S96,47.1,94,47.1L94,47.1z M78.4,74.2c-1.4-1.4-3.8-1.4-5.2,0
c-1.4,1.4-1.4,3.8,0,5.2l5.2,5.2c0.7,0.7,1.7,1.1,2.6,1.1c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L78.4,74.2z M49.8,83.9
c-2,0-3.7,1.6-3.7,3.7V95c0,2,1.6,3.7,3.7,3.7s3.7-1.6,3.7-3.7v-7.4C53.5,85.6,51.9,83.9,49.8,83.9L49.8,83.9z M49.8,25.1
c-14.2,0-25.8,11.6-25.8,25.8c0,14.2,11.6,25.8,25.8,25.8C64,76.6,75.6,65,75.6,50.8C75.6,36.6,64,25.1,49.8,25.1L49.8,25.1z
M49.8,69.2c-10.1,0-18.4-8.3-18.4-18.4c0-10.1,8.3-18.4,18.4-18.4c10.1,0,18.4,8.3,18.4,18.4C68.2,61,60,69.2,49.8,69.2L49.8,69.2
z M49.8,69.2"/>
</g>
<path class="st0" d="M91.9,75.3c3.5,0,6.3-2.8,6.3-6.3v-29c0-3.5-2.8-6.3-6.3-6.3H52.2v-0.7c0-1-0.3-1.9-0.9-2.6
c0.4-0.5,0.7-1.1,0.9-1.8c1.6-1,2.6-2.7,2.6-4.6c0-0.9-0.2-1.8-0.7-2.6c0.4-0.8,0.7-1.7,0.7-2.6c0-1.9-1-3.6-2.6-4.6
c0-0.2,0-0.4,0-0.6c0-2.7-2-5-4.6-5.3c-1-1.6-2.7-2.6-4.6-2.6c-0.2,0-0.5,0-0.7,0.1c-1.1-0.9-2.4-1.3-3.8-1.3c-0.2,0-0.4,0-0.6,0
c-1.1-0.9-2.5-1.3-4-1.3c-1.4,0-2.8,0.5-4,1.3c-0.2,0-0.4,0-0.6,0c-1.4,0-2.7,0.5-3.8,1.3c-1.7,0.2-3.2,1.1-4.1,2.6
c-2.6,0.4-4.6,2.6-4.6,5.3c0,0.2,0,0.4,0,0.6c-1.6,1-2.6,2.7-2.6,4.6c0,0.9,0.2,1.8,0.7,2.6c-0.4,0.8-0.7,1.7-0.7,2.6
c0,1.9,1,3.7,2.6,4.6c0.1,0.4,0.2,0.7,0.4,1.1c-1,0.7-1.7,2-1.7,3.3v2.6c0,2.3,1.8,4.1,4.1,4.1h0.7l0.1,0.7c0.3,1.6,1.1,3,2.3,4.1
l0.5,0.5V49c0,0.5-0.3,0.9-0.8,1l-11.3,3.5c-2.8,0.9-4.7,3.4-4.7,6.4v18.7c0,1.9,0.6,3.6,1.7,4.9H4.9c-1.7,0-3.1,1.4-3.1,3.1v3.2
c0,1.7,1.4,3.1,3.1,3.1h90.2c1.7,0,3.1-1.4,3.1-3.1v-3.2c0-1.7-1.4-3.1-3.1-3.1H78.7l-1.1-8.3H91.9z M95.2,39.9v29
c0,1.8-1.5,3.3-3.3,3.3H77.4c-0.1,0-0.1,0-0.2,0L76,63.5c-0.3-2.3-2.3-4.1-4.7-4.1h-7.2c-2.4,0-4.4,1.8-4.7,4.1l-1.2,8.8
c-0.1,0-0.1,0-0.2,0H43.6c-1.8,0-3.3-1.5-3.3-3.3v-29c0-1.8,1.5-3.3,3.3-3.3h48.3C93.7,36.6,95.2,38.1,95.2,39.9z M53.1,83.5
c0,0,0-0.1,0-0.1v-8.2h4.7l-1.1,8.3H53.1z M48.3,33.6l0.3-1.7c0.3,0.2,0.5,0.5,0.5,0.9v0.7H48.3z M18,20.3c-0.3-0.3-0.6-0.8-0.6-1.6
c0-1.1,0.7-2,1.7-2.3c0.4-0.1,0.8-0.4,1-0.8c0.2-0.4,0.2-0.8,0-1.2c-0.1-0.3-0.2-0.6-0.2-0.9c0-1.3,1-2.3,2.3-2.4c0.1,0,0.1,0,0.2,0
c0.7,0,1.3-0.4,1.5-1c0.3-0.9,1.2-1.6,2.2-1.6c0,0,0.1,0,0.1,0c0.4,0,0.8-0.1,1.1-0.4c0.6-0.6,1.3-0.9,2.1-0.9c0.2,0,0.4,0,0.7,0.1
c0.5,0.1,1,0,1.4-0.4c0.7-0.6,1.6-1,2.5-1s1.8,0.4,2.5,1c0.4,0.3,0.9,0.5,1.4,0.4c0.2-0.1,0.5-0.1,0.7-0.1c0.8,0,1.6,0.4,2.2,1
c0.4,0.4,1,0.6,1.6,0.4c0.2-0.1,0.5-0.1,0.7-0.1c1,0,1.9,0.6,2.2,1.6c0.2,0.6,0.8,1.1,1.5,1c0.1,0,0.1,0,0.2,0
c1.3,0,2.3,1.1,2.3,2.4c0,0.3-0.1,0.6-0.2,0.9c-0.2,0.4-0.1,0.9,0,1.2s0.5,0.7,1,0.8c1,0.3,1.7,1.2,1.7,2.3c0,0.7-0.3,1.3-0.6,1.6
c-0.5,0.6-0.5,1.4,0,2c0.3,0.3,0.6,0.8,0.6,1.6c0,1-0.6,1.9-1.6,2.2c-0.7,0.2-1.1,0.9-1,1.6c0,0,0,0.1,0,0.1c0,0.5-0.3,0.9-0.8,1
c0,0-1.5,0-1.5,0L46,23.6c-0.1-0.8-0.8-1.3-1.6-1.3c-0.1,0-0.1,0-0.2,0l0,0c-0.8,0-1.5-0.4-1.9-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0
c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7
c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.1,1-1.9,1.1l0,0
c-0.1,0-0.1,0-0.2,0c-0.8-0.1-1.5,0.5-1.6,1.3l-0.9,5.2c0,0-1.4,0-1.5,0c-0.5-0.1-0.8-0.5-0.8-1c0,0,0-0.1,0-0.1
c0.1-0.7-0.4-1.3-1-1.6c-0.9-0.3-1.6-1.2-1.6-2.2c0-0.7,0.3-1.3,0.6-1.6C18.5,21.7,18.5,20.8,18,20.3z M19.7,36.5
c-0.6,0-1.1-0.5-1.1-1.1v-2.6c0-0.4,0.2-0.7,0.5-0.9l0.7,4.6H19.7z M22.2,31.8h0.2c1.4,0,2.5-1,2.8-2.3l0.7-4.2
c0.8-0.2,1.6-0.5,2.2-1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1
c0.7,0.5,1.4,0.8,2.2,1l0.7,4.2c0.2,1,0.8,1.8,1.7,2.1l-0.3,2h-1.7c-3.5,0-6.3,2.8-6.3,6.3v6.7c-0.3,0.1-0.6,0.2-0.9,0.2h-4.9
c-0.6,0-1.1-0.2-1.5-0.5L24.7,42c-0.7-0.6-1.1-1.4-1.3-2.2L22.2,31.8z M23.5,52.9c1.7-0.5,2.9-2.1,2.9-3.9v-1.7l1.6,1.3
c1,0.8,2.2,1.2,3.4,1.2h4.9c0.3,0,0.6,0,0.9-0.1v9.7c-0.9,0.1-1.8,0.2-2.7,0.2c-5,0-9.8-2.3-12.9-6.2L23.5,52.9z M9.6,78.6V59.9
c0-1.6,1-3,2.6-3.5l6.3-2c3.7,5.2,9.6,8.3,16,8.3c0.9,0,1.8-0.1,2.7-0.2v6.4c0,3.5,2.8,6.3,6.3,6.3h6.5v8.2c0,0,0,0.1,0,0.1h-8.3
v-1.7c0-3.5-2.8-6.3-6.3-6.3H19.4c-0.1,0-0.1,0-0.1-0.1v-9.7c0-0.8-0.7-1.5-1.5-1.5s-1.5,0.7-1.5,1.5v9.7c0,1.7,1.4,3.1,3.1,3.1h9.8
v5H14.6C11.8,83.5,9.6,81.3,9.6,78.6z M32.2,83.5v-5h3.3c1.8,0,3.3,1.5,3.3,3.3v1.7H32.2z M95.2,86.7v3.2c0,0.1,0,0.1-0.1,0.1H4.9
c-0.1,0-0.1,0-0.1-0.1v-3.2c0-0.1,0-0.1,0.1-0.1h90.2C95.2,86.6,95.2,86.6,95.2,86.7z M59.8,83.5l2.6-19.7c0.1-0.8,0.8-1.5,1.7-1.5
h7.2c0.9,0,1.6,0.6,1.7,1.5l2.6,19.7H59.8z"/>
<path class="st0" d="M67.7,56c2.6,0,4.7-2.1,4.7-4.7c0-2.6-2.1-4.7-4.7-4.7c-2.6,0-4.7,2.1-4.7,4.7C63,53.8,65.1,56,67.7,56z
M67.7,49.5c0.9,0,1.7,0.8,1.7,1.7c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7C66,50.3,66.8,49.5,67.7,49.5z"/>
<g class="st0">
<path class="st1" d="M72.9,36.2L53.7,19.4c-1-0.9-2.3-1.4-3.7-1.4c-1.3,0-2.6,0.5-3.7,1.4l-6.8,6c-0.4-1.4-0.6-3-0.6-4.6
c0-3.8,1.2-7.4,3.4-10.1c2.1-2.5,4.8-4,7.7-4c6.1,0,11.1,6.3,11.1,14.1c0,1.3,1.1,2.3,2.3,2.3c1.3,0,2.3-1.1,2.3-2.3
C65.8,10.4,58.8,2,50.1,2c-4.3,0-8.3,2-11.3,5.7c-2.9,3.5-4.5,8.2-4.5,13.1c0,2.8,0.5,5.5,1.5,7.9l-8.5,7.5
c-2.1,1.9-3.4,4.6-3.4,7.4v42.1c0,6.5,5.3,11.8,11.8,11.8h28.9c6.5,0,11.8-5.3,11.8-11.8V43.6C76.3,40.7,75.1,38,72.9,36.2
L72.9,36.2z M71.6,85.7c0,3.9-3.2,7.1-7.1,7.1H35.6c-3.9,0-7.1-3.2-7.1-7.1V43.6c0-1.5,0.6-2.9,1.8-3.9l7.7-6.8l0.7,0.9
c3,3.7,7,5.7,11.3,5.7c1.3,0,2.3-1.1,2.3-2.3c0-1.3-1.1-2.3-2.3-2.3c-2.9,0-5.6-1.4-7.7-4c-0.3-0.4-0.5-0.7-0.8-1.1l7.9-6.9
c0.2-0.2,0.4-0.2,0.6-0.2c0.2,0,0.4,0,0.6,0.2l19.2,16.8c1.1,1,1.8,2.4,1.8,3.9L71.6,85.7L71.6,85.7z M71.6,85.7"/>
<path class="st1" d="M52.7,61.4h-5.2c-1.8,0-3.3-1.5-3.3-3.3c0-1.8,1.5-3.3,3.3-3.3h9.1c1.3,0,2.3-1.1,2.3-2.3
c0-1.3-1.1-2.3-2.3-2.3h-4.2V47c0-1.3-1.1-2.3-2.3-2.3c-1.3,0-2.3,1.1-2.3,2.3v3.1h-0.2c-4.4,0-8,3.6-8,8c0,4.4,3.6,8,8,8h5.2
c1.8,0,3.3,1.5,3.3,3.3c0,1.8-1.5,3.3-3.3,3.3h-9.3c-1.3,0-2.3,1.1-2.3,2.3c0,1.3,1.1,2.3,2.3,2.3h4.3v3.1c0,1.3,1.1,2.3,2.3,2.3
c1.3,0,2.3-1.1,2.3-2.3v-3.1h0.3c4.4-0.1,7.9-3.6,7.9-8C60.7,64.9,57.1,61.4,52.7,61.4L52.7,61.4z M52.7,61.4"/>
</g>
<g class="st0">
<path class="st1" d="M89.5,86.8V40.4c0-2.5-2-4.6-4.6-4.6H70v3h14.9c0.9,0,1.6,0.7,1.6,1.6v46.4h-33v1.5h-6v-1.5h-33V40.4
c0-0.9,0.7-1.6,1.6-1.6H31v-3H16.1c-2.5,0-4.6,2-4.6,4.6v46.4H4v5c0,2.2,1.8,4,4,4H93c2.2,0,4-1.8,4-4v-5H89.5z M94,91.8
c0,0.6-0.5,1-1,1H8c-0.6,0-1-0.5-1-1v-2h37.5v1.5h12v-1.5H94V91.8z M94,91.8"/>
<path class="st1" d="M17.5,83.8h66v-42H67v3h13.5v36h-60v-36H34v-3H17.5V83.8z M17.5,83.8"/>
<rect x="49" y="4.3" class="st1" width="3" height="4.5"/>
<path class="st1" d="M35,8.9l2.6-1.5l2.3,3.9l-2.6,1.5L35,8.9z M35,8.9"/>
<path class="st1" d="M25.1,19.9l1.5-2.6l3.9,2.3L29,22.1L25.1,19.9z M25.1,19.9"/>
<rect x="22" y="31.3" class="st1" width="4.5" height="3"/>
<rect x="74.5" y="31.3" class="st1" width="4.5" height="3"/>
<path class="st1" d="M62.5,67.3c0,0.8-0.7,1.5-1.5,1.5H40c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h21
C61.8,65.8,62.5,66.5,62.5,67.3L62.5,67.3z M59.5,74.8h-18c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h18c0.8,0,1.5,0.7,1.5,1.5
C61,74.1,60.3,74.8,59.5,74.8L59.5,74.8z M64,61.3c0,0.8-0.7,1.5-1.5,1.5h-24c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h24
C63.3,59.8,64,60.5,64,61.3L64,61.3z M49,44.8"/>
<path class="st1" d="M70.5,19.5l3.9-2.3l1.5,2.6L72,22.1L70.5,19.5z M70.5,19.5"/>
<path class="st1" d="M61.2,11.3l2.3-3.9L66,8.9l-2.3,3.9L61.2,11.3z M61.2,11.3"/>
<path class="st3" d="M61,59.8H38.5v-1.5c0-4.5-1.6-8.8-4.6-12.6c-3.5-4.5-5-10.1-4.2-15.7c1.2-9.4,9-16.9,18.4-18
c6-0.7,12,1.2,16.4,5.2c4.5,4,7,9.7,7,15.7c0,4.8-1.6,9.3-4.6,13.1c-2.9,3.6-4.4,8-4.4,12.3v1.5L61,59.8z M61,59.8"/>
</g>
<g>
<g>
<path d="M91.8,46.7V4.5c0-0.5-0.2-0.9-0.6-1.2c-0.4-0.3-0.9-0.3-1.4-0.1L75.3,8.9c-0.6,0.2-0.9,0.8-0.9,1.4c0,0.6,0.4,1.1,0.9,1.4
l13.6,5.5v29.6h-1.5c-0.4,0-0.8,0.2-1,0.4L60.5,73L55,67.5c-0.6-0.6-1.5-0.6-2.1,0L35.8,84.7L25.1,74.1c-0.6-0.6-1.5-0.6-2.1,0
L3.4,93.7C3.2,94,3,94.4,3,94.7v1.5h2.9v-0.9l18.2-18.2l10.6,10.6c0.6,0.6,1.5,0.6,2.1,0L54,70.6l5.5,5.5c0.6,0.6,1.5,0.6,2.1,0
l26.5-26.5h8.1v-2.9H91.8z M79.7,10.3l9.2-3.7V14L79.7,10.3z M79.7,10.3"/>
<path d="M5.5,66.6c3.5-3.7,10.9-1.4,15.3,0c1.8,0.6,3.6,0.9,5.2,0.9c1.7,0,3.2-0.3,4.7-0.9v9.2c0,0.8,0.7,1.5,1.5,1.5h7.3
c0.8,0,1.5-0.7,1.5-1.5V61.7c0.3-0.5,0.9-0.9,1.8-1.3c0.3-0.1,0.6-0.3,0.9-0.4c0.8-0.4,1.7-0.8,2.5-1.4c1-0.7,1.7-1.9,1.9-3.2h3
v8.7c0,0.8,0.7,1.5,1.5,1.5h7.3c0.8,0,1.5-0.6,1.5-1.5V52.5c0-4-3.3-7.3-7.3-7.3h-8.7v-4.4h7.3c4,0,7.3-3.3,7.3-7.3V20.5
c0-0.8-0.7-1.5-1.5-1.5h-5.8c-0.8,0-1.5,0.6-1.5,1.5v11.6h-7.1c0.7-1.3,1.2-2.8,1.2-4.4c0-4.8-3.9-8.7-8.7-8.7
c-4.8,0-8.7,3.9-8.7,8.7c0,1.5,0.4,2.8,1,4c-4.9,1.5-9.4,4.7-12.9,9.5c-1.6,2.1-2.7,4.6-3.9,7c-0.3,0.6-0.6,1.3-0.9,1.9
c-0.7,1.4-1.3,2.9-1.9,4.4C7.5,58.2,5.9,62,3.4,64.6c-0.6,0.6-0.5,1.5,0.1,2.1C4,67.2,5,67.2,5.5,66.6L5.5,66.6z M30.7,47.8
L29,46.1l1.7-1.7V47.8z M44.3,56.3c-0.6,0.4-1.2,0.7-2,1c-0.3,0.1-0.7,0.3-1,0.5c-0.2,0.1-0.4,0.2-0.5,0.3v-2.6H45
C44.8,55.8,44.6,56.1,44.3,56.3L44.3,56.3z M52.5,35c0.8,0,1.5-0.7,1.5-1.5V21.9h2.9v11.7c0,2.4-2,4.4-4.4,4.4h-8.7
c-0.8,0-1.4,0.7-1.4,1.5v7.3c0,0.8,0.6,1.5,1.4,1.5H54c2.4,0,4.4,2,4.4,4.4v10.2H54V54c0-0.8-0.7-1.5-1.5-1.5H39.4
c-0.8,0-1.5,0.7-1.5,1.5v20.4h-4.4V40.9c0-0.6-0.4-1.1-0.9-1.3c-0.5-0.2-1.2-0.1-1.6,0.3L25.9,45c-0.3,0.3-0.4,0.6-0.4,1
c0,0.4,0.2,0.8,0.4,1l4.1,4.1l-2.3,2.3l-4.3-4.3c-1.7-1.7-1.7-4.5,0-6.2l8.1-8.1c1.4,1,3.1,1.6,5,1.6c0,0,0.1,0,0.1,0v8.7h2.9
v-9.3c0.6-0.2,1.2-0.5,1.8-0.9H52.5z M36.4,21.9c3.2,0,5.8,2.6,5.8,5.8c0,3.2-2.6,5.8-5.8,5.8c-3.2,0-5.8-2.6-5.8-5.8
C30.6,24.5,33.2,21.9,36.4,21.9L36.4,21.9z M11.7,55.7c0.6-1.5,1.2-2.9,1.9-4.2c0.3-0.6,0.6-1.3,0.9-1.9c1.1-2.2,2.2-4.6,3.6-6.5
c1.8-2.4,4.5-5.4,8.3-7.3l-5.1,5.1c-2.8,2.8-2.8,7.5,0,10.3l5.3,5.3c0.6,0.6,1.5,0.6,2.1,0l2-2v8.8c-3.1,1.8-6.6,1.3-9,0.5
c-3.4-1.1-8.4-2.7-12.8-2C10,59.9,10.8,57.8,11.7,55.7L11.7,55.7z M11.7,55.7"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
.st3{stroke:#FFFFFF;stroke-miterlimit:10;}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path class="st0" d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path class="st0" d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
<g class="st0">
<g class="st1">
<path d="M94.7,89L71.9,65.4c5.8-7,9.1-15.7,9.1-24.8C81,19.3,63.7,2,42.4,2C21.1,2,3.8,19.3,3.8,40.6c0,21.3,17.3,38.6,38.6,38.6
c8,0,15.6-2.4,22.1-7L87.4,96c1,1,2.2,1.5,3.6,1.5c1.3,0,2.5-0.5,3.5-1.4C96.5,94.2,96.6,91.1,94.7,89L94.7,89z M42.4,12.1
c15.7,0,28.5,12.8,28.5,28.5c0,15.7-12.8,28.5-28.5,28.5c-15.7,0-28.5-12.8-28.5-28.5C13.9,24.9,26.7,12.1,42.4,12.1L42.4,12.1z
M42.4,12.1"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M75.8,28.5c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2c-1.4-1.4-3.8-1.4-5.2,0l-5.2,5.2
c-1.4,1.4-1.4,3.8,0,5.2C74,28.1,74.9,28.5,75.8,28.5L75.8,28.5z M16.7,50.8c0-2-1.6-3.7-3.7-3.7H5.7c-2,0-3.7,1.6-3.7,3.7
s1.6,3.7,3.7,3.7H13C15.1,54.5,16.7,52.9,16.7,50.8L16.7,50.8z M21.2,74.2L16,79.4c-1.4,1.4-1.4,3.8,0,5.2c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2C25,72.8,22.6,72.8,21.2,74.2L21.2,74.2z M21.2,27.4c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L21.2,17c-1.4-1.4-3.8-1.4-5.2,0c-1.4,1.4-1.4,3.8,0,5.2L21.2,27.4z M49.8,17.7
c2,0,3.7-1.6,3.7-3.7V6.7c0-2-1.6-3.7-3.7-3.7s-3.7,1.6-3.7,3.7V14C46.1,16.1,47.8,17.7,49.8,17.7L49.8,17.7z M94,47.1h-7.4
c-2,0-3.7,1.6-3.7,3.7s1.6,3.7,3.7,3.7H94c2,0,3.7-1.6,3.7-3.7S96,47.1,94,47.1L94,47.1z M78.4,74.2c-1.4-1.4-3.8-1.4-5.2,0
c-1.4,1.4-1.4,3.8,0,5.2l5.2,5.2c0.7,0.7,1.7,1.1,2.6,1.1c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L78.4,74.2z M49.8,83.9
c-2,0-3.7,1.6-3.7,3.7V95c0,2,1.6,3.7,3.7,3.7s3.7-1.6,3.7-3.7v-7.4C53.5,85.6,51.9,83.9,49.8,83.9L49.8,83.9z M49.8,25.1
c-14.2,0-25.8,11.6-25.8,25.8c0,14.2,11.6,25.8,25.8,25.8C64,76.6,75.6,65,75.6,50.8C75.6,36.6,64,25.1,49.8,25.1L49.8,25.1z
M49.8,69.2c-10.1,0-18.4-8.3-18.4-18.4c0-10.1,8.3-18.4,18.4-18.4c10.1,0,18.4,8.3,18.4,18.4C68.2,61,60,69.2,49.8,69.2L49.8,69.2
z M49.8,69.2"/>
</g>
<path class="st0" d="M91.9,75.3c3.5,0,6.3-2.8,6.3-6.3v-29c0-3.5-2.8-6.3-6.3-6.3H52.2v-0.7c0-1-0.3-1.9-0.9-2.6
c0.4-0.5,0.7-1.1,0.9-1.8c1.6-1,2.6-2.7,2.6-4.6c0-0.9-0.2-1.8-0.7-2.6c0.4-0.8,0.7-1.7,0.7-2.6c0-1.9-1-3.6-2.6-4.6
c0-0.2,0-0.4,0-0.6c0-2.7-2-5-4.6-5.3c-1-1.6-2.7-2.6-4.6-2.6c-0.2,0-0.5,0-0.7,0.1c-1.1-0.9-2.4-1.3-3.8-1.3c-0.2,0-0.4,0-0.6,0
c-1.1-0.9-2.5-1.3-4-1.3c-1.4,0-2.8,0.5-4,1.3c-0.2,0-0.4,0-0.6,0c-1.4,0-2.7,0.5-3.8,1.3c-1.7,0.2-3.2,1.1-4.1,2.6
c-2.6,0.4-4.6,2.6-4.6,5.3c0,0.2,0,0.4,0,0.6c-1.6,1-2.6,2.7-2.6,4.6c0,0.9,0.2,1.8,0.7,2.6c-0.4,0.8-0.7,1.7-0.7,2.6
c0,1.9,1,3.7,2.6,4.6c0.1,0.4,0.2,0.7,0.4,1.1c-1,0.7-1.7,2-1.7,3.3v2.6c0,2.3,1.8,4.1,4.1,4.1h0.7l0.1,0.7c0.3,1.6,1.1,3,2.3,4.1
l0.5,0.5V49c0,0.5-0.3,0.9-0.8,1l-11.3,3.5c-2.8,0.9-4.7,3.4-4.7,6.4v18.7c0,1.9,0.6,3.6,1.7,4.9H4.9c-1.7,0-3.1,1.4-3.1,3.1v3.2
c0,1.7,1.4,3.1,3.1,3.1h90.2c1.7,0,3.1-1.4,3.1-3.1v-3.2c0-1.7-1.4-3.1-3.1-3.1H78.7l-1.1-8.3H91.9z M95.2,39.9v29
c0,1.8-1.5,3.3-3.3,3.3H77.4c-0.1,0-0.1,0-0.2,0L76,63.5c-0.3-2.3-2.3-4.1-4.7-4.1h-7.2c-2.4,0-4.4,1.8-4.7,4.1l-1.2,8.8
c-0.1,0-0.1,0-0.2,0H43.6c-1.8,0-3.3-1.5-3.3-3.3v-29c0-1.8,1.5-3.3,3.3-3.3h48.3C93.7,36.6,95.2,38.1,95.2,39.9z M53.1,83.5
c0,0,0-0.1,0-0.1v-8.2h4.7l-1.1,8.3H53.1z M48.3,33.6l0.3-1.7c0.3,0.2,0.5,0.5,0.5,0.9v0.7H48.3z M18,20.3c-0.3-0.3-0.6-0.8-0.6-1.6
c0-1.1,0.7-2,1.7-2.3c0.4-0.1,0.8-0.4,1-0.8c0.2-0.4,0.2-0.8,0-1.2c-0.1-0.3-0.2-0.6-0.2-0.9c0-1.3,1-2.3,2.3-2.4c0.1,0,0.1,0,0.2,0
c0.7,0,1.3-0.4,1.5-1c0.3-0.9,1.2-1.6,2.2-1.6c0,0,0.1,0,0.1,0c0.4,0,0.8-0.1,1.1-0.4c0.6-0.6,1.3-0.9,2.1-0.9c0.2,0,0.4,0,0.7,0.1
c0.5,0.1,1,0,1.4-0.4c0.7-0.6,1.6-1,2.5-1s1.8,0.4,2.5,1c0.4,0.3,0.9,0.5,1.4,0.4c0.2-0.1,0.5-0.1,0.7-0.1c0.8,0,1.6,0.4,2.2,1
c0.4,0.4,1,0.6,1.6,0.4c0.2-0.1,0.5-0.1,0.7-0.1c1,0,1.9,0.6,2.2,1.6c0.2,0.6,0.8,1.1,1.5,1c0.1,0,0.1,0,0.2,0
c1.3,0,2.3,1.1,2.3,2.4c0,0.3-0.1,0.6-0.2,0.9c-0.2,0.4-0.1,0.9,0,1.2s0.5,0.7,1,0.8c1,0.3,1.7,1.2,1.7,2.3c0,0.7-0.3,1.3-0.6,1.6
c-0.5,0.6-0.5,1.4,0,2c0.3,0.3,0.6,0.8,0.6,1.6c0,1-0.6,1.9-1.6,2.2c-0.7,0.2-1.1,0.9-1,1.6c0,0,0,0.1,0,0.1c0,0.5-0.3,0.9-0.8,1
c0,0-1.5,0-1.5,0L46,23.6c-0.1-0.8-0.8-1.3-1.6-1.3c-0.1,0-0.1,0-0.2,0l0,0c-0.8,0-1.5-0.4-1.9-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0
c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7
c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.1,1-1.9,1.1l0,0
c-0.1,0-0.1,0-0.2,0c-0.8-0.1-1.5,0.5-1.6,1.3l-0.9,5.2c0,0-1.4,0-1.5,0c-0.5-0.1-0.8-0.5-0.8-1c0,0,0-0.1,0-0.1
c0.1-0.7-0.4-1.3-1-1.6c-0.9-0.3-1.6-1.2-1.6-2.2c0-0.7,0.3-1.3,0.6-1.6C18.5,21.7,18.5,20.8,18,20.3z M19.7,36.5
c-0.6,0-1.1-0.5-1.1-1.1v-2.6c0-0.4,0.2-0.7,0.5-0.9l0.7,4.6H19.7z M22.2,31.8h0.2c1.4,0,2.5-1,2.8-2.3l0.7-4.2
c0.8-0.2,1.6-0.5,2.2-1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1
c0.7,0.5,1.4,0.8,2.2,1l0.7,4.2c0.2,1,0.8,1.8,1.7,2.1l-0.3,2h-1.7c-3.5,0-6.3,2.8-6.3,6.3v6.7c-0.3,0.1-0.6,0.2-0.9,0.2h-4.9
c-0.6,0-1.1-0.2-1.5-0.5L24.7,42c-0.7-0.6-1.1-1.4-1.3-2.2L22.2,31.8z M23.5,52.9c1.7-0.5,2.9-2.1,2.9-3.9v-1.7l1.6,1.3
c1,0.8,2.2,1.2,3.4,1.2h4.9c0.3,0,0.6,0,0.9-0.1v9.7c-0.9,0.1-1.8,0.2-2.7,0.2c-5,0-9.8-2.3-12.9-6.2L23.5,52.9z M9.6,78.6V59.9
c0-1.6,1-3,2.6-3.5l6.3-2c3.7,5.2,9.6,8.3,16,8.3c0.9,0,1.8-0.1,2.7-0.2v6.4c0,3.5,2.8,6.3,6.3,6.3h6.5v8.2c0,0,0,0.1,0,0.1h-8.3
v-1.7c0-3.5-2.8-6.3-6.3-6.3H19.4c-0.1,0-0.1,0-0.1-0.1v-9.7c0-0.8-0.7-1.5-1.5-1.5s-1.5,0.7-1.5,1.5v9.7c0,1.7,1.4,3.1,3.1,3.1h9.8
v5H14.6C11.8,83.5,9.6,81.3,9.6,78.6z M32.2,83.5v-5h3.3c1.8,0,3.3,1.5,3.3,3.3v1.7H32.2z M95.2,86.7v3.2c0,0.1,0,0.1-0.1,0.1H4.9
c-0.1,0-0.1,0-0.1-0.1v-3.2c0-0.1,0-0.1,0.1-0.1h90.2C95.2,86.6,95.2,86.6,95.2,86.7z M59.8,83.5l2.6-19.7c0.1-0.8,0.8-1.5,1.7-1.5
h7.2c0.9,0,1.6,0.6,1.7,1.5l2.6,19.7H59.8z"/>
<path class="st0" d="M67.7,56c2.6,0,4.7-2.1,4.7-4.7c0-2.6-2.1-4.7-4.7-4.7c-2.6,0-4.7,2.1-4.7,4.7C63,53.8,65.1,56,67.7,56z
M67.7,49.5c0.9,0,1.7,0.8,1.7,1.7c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7C66,50.3,66.8,49.5,67.7,49.5z"/>
<g class="st0">
<path class="st1" d="M72.9,36.2L53.7,19.4c-1-0.9-2.3-1.4-3.7-1.4c-1.3,0-2.6,0.5-3.7,1.4l-6.8,6c-0.4-1.4-0.6-3-0.6-4.6
c0-3.8,1.2-7.4,3.4-10.1c2.1-2.5,4.8-4,7.7-4c6.1,0,11.1,6.3,11.1,14.1c0,1.3,1.1,2.3,2.3,2.3c1.3,0,2.3-1.1,2.3-2.3
C65.8,10.4,58.8,2,50.1,2c-4.3,0-8.3,2-11.3,5.7c-2.9,3.5-4.5,8.2-4.5,13.1c0,2.8,0.5,5.5,1.5,7.9l-8.5,7.5
c-2.1,1.9-3.4,4.6-3.4,7.4v42.1c0,6.5,5.3,11.8,11.8,11.8h28.9c6.5,0,11.8-5.3,11.8-11.8V43.6C76.3,40.7,75.1,38,72.9,36.2
L72.9,36.2z M71.6,85.7c0,3.9-3.2,7.1-7.1,7.1H35.6c-3.9,0-7.1-3.2-7.1-7.1V43.6c0-1.5,0.6-2.9,1.8-3.9l7.7-6.8l0.7,0.9
c3,3.7,7,5.7,11.3,5.7c1.3,0,2.3-1.1,2.3-2.3c0-1.3-1.1-2.3-2.3-2.3c-2.9,0-5.6-1.4-7.7-4c-0.3-0.4-0.5-0.7-0.8-1.1l7.9-6.9
c0.2-0.2,0.4-0.2,0.6-0.2c0.2,0,0.4,0,0.6,0.2l19.2,16.8c1.1,1,1.8,2.4,1.8,3.9L71.6,85.7L71.6,85.7z M71.6,85.7"/>
<path class="st1" d="M52.7,61.4h-5.2c-1.8,0-3.3-1.5-3.3-3.3c0-1.8,1.5-3.3,3.3-3.3h9.1c1.3,0,2.3-1.1,2.3-2.3
c0-1.3-1.1-2.3-2.3-2.3h-4.2V47c0-1.3-1.1-2.3-2.3-2.3c-1.3,0-2.3,1.1-2.3,2.3v3.1h-0.2c-4.4,0-8,3.6-8,8c0,4.4,3.6,8,8,8h5.2
c1.8,0,3.3,1.5,3.3,3.3c0,1.8-1.5,3.3-3.3,3.3h-9.3c-1.3,0-2.3,1.1-2.3,2.3c0,1.3,1.1,2.3,2.3,2.3h4.3v3.1c0,1.3,1.1,2.3,2.3,2.3
c1.3,0,2.3-1.1,2.3-2.3v-3.1h0.3c4.4-0.1,7.9-3.6,7.9-8C60.7,64.9,57.1,61.4,52.7,61.4L52.7,61.4z M52.7,61.4"/>
</g>
<path d="M89.5,86.8V40.4c0-2.5-2-4.6-4.6-4.6H70v3h14.9c0.9,0,1.6,0.7,1.6,1.6v46.4h-33v1.5h-6v-1.5h-33V40.4c0-0.9,0.7-1.6,1.6-1.6
H31v-3H16.1c-2.5,0-4.6,2-4.6,4.6v46.4H4v5c0,2.2,1.8,4,4,4H93c2.2,0,4-1.8,4-4v-5H89.5z M94,91.8c0,0.6-0.5,1-1,1H8
c-0.6,0-1-0.5-1-1v-2h37.5v1.5h12v-1.5H94V91.8z M94,91.8"/>
<path d="M17.5,83.8h66v-42H67v3h13.5v36h-60v-36H34v-3H17.5V83.8z M17.5,83.8"/>
<rect x="49" y="4.3" width="3" height="4.5"/>
<path d="M35,8.9l2.6-1.5l2.3,3.9l-2.6,1.5L35,8.9z M35,8.9"/>
<path d="M25.1,19.9l1.5-2.6l3.9,2.3L29,22.1L25.1,19.9z M25.1,19.9"/>
<rect x="22" y="31.3" width="4.5" height="3"/>
<rect x="74.5" y="31.3" width="4.5" height="3"/>
<path d="M62.5,67.3c0,0.8-0.7,1.5-1.5,1.5H40c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h21C61.8,65.8,62.5,66.5,62.5,67.3
L62.5,67.3z M59.5,74.8h-18c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h18c0.8,0,1.5,0.7,1.5,1.5C61,74.1,60.3,74.8,59.5,74.8
L59.5,74.8z M64,61.3c0,0.8-0.7,1.5-1.5,1.5h-24c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5h24C63.3,59.8,64,60.5,64,61.3
L64,61.3z M49,44.8"/>
<path d="M70.5,19.5l3.9-2.3l1.5,2.6L72,22.1L70.5,19.5z M70.5,19.5"/>
<path d="M61.2,11.3l2.3-3.9L66,8.9l-2.3,3.9L61.2,11.3z M61.2,11.3"/>
<path class="st3" d="M61,59.8H38.5v-1.5c0-4.5-1.6-8.8-4.6-12.6c-3.5-4.5-5-10.1-4.2-15.7c1.2-9.4,9-16.9,18.4-18
c6-0.7,12,1.2,16.4,5.2c4.5,4,7,9.7,7,15.7c0,4.8-1.6,9.3-4.6,13.1c-2.9,3.6-4.4,8-4.4,12.3v1.5L61,59.8z M61,59.8"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{fill:#231F20;}
</style>
<g class="st0">
<g class="st1">
<path class="st2" d="M68.3,50.3c1.5-17-4.4-34.3-16.8-46.7c-0.8-0.8-2.1-0.8-2.8,0C36.1,16,30.2,33.3,31.7,50.3
c-4.3,4.6-6.7,10.6-6.7,17c0,6.4,2.4,12.5,6.9,17.2c1.1,1.1,3.9,0.6,3.4-1.9c-0.2-1.3-0.5-2.6-0.5-3.9c0-3.1,0.9-6.1,2.7-8.6
c0.3,0.2,0.6,0.3,1,0.3h23c0.3,0,0.7-0.1,1-0.3c1.8,2.5,2.7,5.5,2.7,8.6c0,1.3-0.3,2.5-0.5,3.9c-0.4,2.8,2.5,2.9,3.4,1.9
c4.4-4.7,6.9-10.8,6.9-17.2C74.9,60.9,72.6,54.9,68.3,50.3z M50,7.9c3.6,3.9,6.6,8.2,8.8,12.9H41.2C43.4,16.1,46.4,11.8,50,7.9
L50,7.9z M31,76c-1.2-2.7-1.9-5.6-1.9-8.7c0-4.1,1.2-8,3.4-11.4c0,0.2,2.1,8.2,2.9,10.3C33,69,31.5,72.3,31,76L31,76z M60.1,66.2
H39.8c-5.7-13.4-5.6-28.3-0.5-41.4h21.2C65.8,37.9,65.8,52.9,60.1,66.2z M64.5,66.2c1.1-2.9,2.9-10.2,2.9-10.3
c2.2,3.4,3.4,7.3,3.4,11.4c0,3-0.7,6-1.9,8.7C68.5,72.3,67,69,64.5,66.2L64.5,66.2z"/>
<path class="st2" d="M41.8,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2s2-0.9,2-2V75.7C43.8,74.6,42.9,73.7,41.8,73.7z"/>
<path class="st2" d="M50,73.7c-0.6,0-1.1,0.2-1.4,0.6c0,0,0,0,0,0c-0.2,0.2-0.4,0.5-0.5,0.9c0,0.2-0.1,0.3-0.1,0.5V96
c0,0.2,0,0.3,0.1,0.5c0.2,0.9,1,1.6,2,1.6c0.9,0,1.7-0.7,2-1.6c0-0.2,0.1-0.3,0.1-0.5V75.7c0-0.2,0-0.4-0.1-0.5
C51.7,74.3,50.9,73.7,50,73.7z"/>
<path class="st2" d="M58.2,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2V75.7C60.2,74.6,59.3,73.7,58.2,73.7z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M83.3,37.3h-5.9v-7.8C77.4,14.3,65.1,2,50,2S22.6,14.3,22.6,29.4v7.8h-5.9c-1.1,0-2,0.9-2,2v49c0,4.3,3.5,7.8,7.8,7.8
h54.8c4.3,0,7.8-3.5,7.8-7.8v-49C85.3,38.1,84.4,37.3,83.3,37.3z M55.9,78.2c0.1,0.6-0.1,1.1-0.5,1.5c-0.4,0.4-0.9,0.7-1.5,0.7
h-7.8c-0.6,0-1.1-0.2-1.5-0.7c-0.4-0.4-0.5-1-0.5-1.5L45.4,67c-2-1.5-3.2-3.8-3.2-6.3c0-4.3,3.5-7.8,7.8-7.8s7.8,3.5,7.8,7.8
c0,2.5-1.2,4.8-3.2,6.3L55.9,78.2z M65.7,37.3H34.3v-7.8c0-8.6,7-15.7,15.7-15.7s15.7,7,15.7,15.7V37.3z"/>
</g>
</g>
<g>
<path d="M55.8,98.2H44.2c-2.3,0-4.3-1.7-4.5-4.1L38.5,87c-2.2-0.7-4.4-1.6-6.5-2.7l-6,4.3c-0.7,0.6-1.7,1-2.8,1
c-1.2,0-2.3-0.5-3.2-1.3L11.8,80c-1.6-1.6-1.8-4.2-0.3-6l4.2-5.9c-1.1-2.1-2-4.3-2.7-6.5l-7.3-1.2c-2.2-0.2-4-2.1-4-4.5V44.2
c0-2.3,1.7-4.3,4.1-4.5l7.2-1.2c0.7-2.2,1.6-4.4,2.7-6.5l-4.3-6c-1.4-1.7-1.3-4.3,0.4-6l8.2-8.2c1.6-1.6,4.3-1.7,6-0.3l5.9,4.2
c2.1-1.1,4.3-2,6.5-2.7l1.2-7.3c0.2-2.2,2.1-4,4.5-4h11.7c2.3,0,4.3,1.7,4.5,4.1l1.2,7.2c2.2,0.7,4.4,1.6,6.5,2.7l6-4.3
c0.7-0.6,1.7-0.9,2.8-0.9c1.2,0,2.3,0.5,3.2,1.3l8.2,8.2c1.6,1.6,1.8,4.2,0.3,6L84.3,32c1.1,2.1,2,4.3,2.7,6.5l7.3,1.2
c2.2,0.2,4,2.1,4,4.5v11.7c0,2.3-1.7,4.3-4.1,4.5L87,61.5c-0.7,2.2-1.6,4.4-2.7,6.5l4.3,6c1.4,1.7,1.3,4.3-0.4,6L80,88.2
c-1.6,1.6-4.3,1.7-6,0.3L68,84.3c-2.1,1.1-4.3,2-6.5,2.7l-1.2,7.3C60.1,96.5,58.2,98.2,55.8,98.2L55.8,98.2z M31.9,80.8
c0.3,0,0.5,0.1,0.8,0.2c2.4,1.4,5,2.4,7.7,3.2c0.6,0.2,1,0.7,1.1,1.3l1.4,8.2c0.1,0.8,0.7,1.3,1.3,1.3h11.7c0.7,0,1.2-0.5,1.3-1.2
l1.4-8.3c0.1-0.6,0.5-1.1,1.1-1.3c2.7-0.8,5.3-1.8,7.7-3.2c0.5-0.3,1.2-0.3,1.7,0.1l6.8,4.9c0.7,0.6,1.4,0.4,1.9,0l8.2-8.2
c0.5-0.5,0.5-1.2,0.1-1.8l-4.9-6.9c-0.4-0.5-0.4-1.2-0.1-1.7c1.4-2.4,2.4-5,3.2-7.7c0.2-0.6,0.7-1,1.3-1.1l8.3-1.4
c0.8-0.1,1.3-0.7,1.3-1.3V44.2c0-0.7-0.5-1.2-1.2-1.3l-8.3-1.4c-0.6-0.1-1.1-0.5-1.3-1.1c-0.8-2.7-1.8-5.3-3.2-7.7
c-0.3-0.5-0.3-1.2,0.1-1.7l4.9-6.8c0.5-0.6,0.5-1.4,0-1.9l-8.2-8.2c-0.5-0.5-1.3-0.5-1.8-0.1l-6.9,4.9c-0.5,0.4-1.2,0.4-1.7,0.1
c-2.4-1.4-5-2.4-7.7-3.2c-0.6-0.2-1-0.7-1.1-1.3l-1.4-8.2C57.1,5.5,56.5,5,55.8,5H44.2c-0.7,0-1.2,0.5-1.3,1.2l-1.4,8.3
c-0.1,0.6-0.5,1.1-1.1,1.3c-2.7,0.8-5.3,1.8-7.7,3.2c-0.5,0.3-1.2,0.3-1.7-0.1L24.1,14c-0.7-0.5-1.4-0.4-1.9,0L14,22.3
c-0.5,0.5-0.5,1.2-0.1,1.8l4.9,6.9c0.4,0.5,0.4,1.2,0.1,1.7c-1.4,2.4-2.4,5-3.2,7.7c-0.2,0.6-0.7,1-1.3,1.1l-8.2,1.4
C5.5,42.9,5,43.5,5,44.2v11.7c0,0.7,0.5,1.2,1.2,1.3l8.4,1.4c0.6,0.1,1.1,0.5,1.3,1.1c0.7,2.7,1.8,5.3,3.2,7.7
c0.3,0.5,0.3,1.2-0.1,1.7L14,75.9c-0.5,0.6-0.5,1.4,0,1.9l8.2,8.2c0.5,0.5,1.3,0.5,1.8,0.1l6.9-4.9C31.2,80.9,31.5,80.8,31.9,80.8
L31.9,80.8z M50,69.1c-10.5,0-19.1-8.5-19.1-19.1c0-10.5,8.6-19.1,19.1-19.1c10.5,0,19.1,8.6,19.1,19.1
C69.1,60.5,60.5,69.1,50,69.1L50,69.1z M50,34.1c-8.8,0-15.9,7.1-15.9,15.9c0,8.8,7.1,15.9,15.9,15.9c8.8,0,15.9-7.1,15.9-15.9
C65.9,41.2,58.8,34.1,50,34.1L50,34.1z M50,34.1"/>
</g>
</svg>
//
// SmoothScroll for websites v1.4.0 (Balazs Galambosi)
// http://www.smoothscroll.net/
//
// Licensed under the terms of the MIT license.
//
// You may use it in your theme if you credit me.
// It is also free to use on any individual website.
//
// Exception:
// The only restriction is to not publish any
// extension for browsers or native application
// without getting a written permission first.
//
(function () {
// Scroll Variables (tweakable)
var defaultOptions = {
// Scrolling Core
frameRate : 150, // [Hz]
animationTime : 400, // [ms]
stepSize : 100, // [px]
// Pulse (less tweakable)
// ratio of "tail" to "acceleration"
pulseAlgorithm : true,
pulseScale : 4,
pulseNormalize : 1,
// Acceleration
accelerationDelta : 50, // 50
accelerationMax : 3, // 3
// Keyboard Settings
keyboardSupport : true, // option
arrowScroll : 50, // [px]
// Other
touchpadSupport : false, // ignore touchpad by default
fixedBackground : true,
excluded : ''
};
var options = defaultOptions;
// Other Variables
var isExcluded = false;
var isFrame = false;
var direction = { x: 0, y: 0 };
var initDone = false;
var root = document.documentElement;
var activeElement;
var observer;
var refreshSize;
var deltaBuffer = [];
var isMac = /^Mac/.test(navigator.platform);
var key = { left: 37, up: 38, right: 39, down: 40, spacebar: 32,
pageup: 33, pagedown: 34, end: 35, home: 36 };
/***********************************************
* INITIALIZE
***********************************************/
/**
* Tests if smooth scrolling is allowed. Shuts down everything if not.
*/
function initTest() {
if (options.keyboardSupport) {
addEvent('keydown', keydown);
}
}
/**
* Sets up scrolls array, determines if frames are involved.
*/
function init() {
if (initDone || !document.body) return;
initDone = true;
var body = document.body;
var html = document.documentElement;
var windowHeight = window.innerHeight;
var scrollHeight = body.scrollHeight;
// check compat mode for root element
root = (document.compatMode.indexOf('CSS') >= 0) ? html : body;
activeElement = body;
initTest();
// Checks if this script is running in a frame
if (top != self) {
isFrame = true;
}
/**
* Please duplicate this radar for a Safari fix!
* rdar://22376037
* https://openradar.appspot.com/radar?id=4965070979203072
*
* Only applies to Safari now, Chrome fixed it in v45:
* This fixes a bug where the areas left and right to
* the content does not trigger the onmousewheel event
* on some pages. e.g.: html, body { height: 100% }
*/
else if (scrollHeight > windowHeight &&
(body.offsetHeight <= windowHeight ||
html.offsetHeight <= windowHeight)) {
var fullPageElem = document.createElement('div');
fullPageElem.style.cssText = 'position:absolute; z-index:-10000; ' +
'top:0; left:0; right:0; height:' +
root.scrollHeight + 'px';
document.body.appendChild(fullPageElem);
// DOM changed (throttled) to fix height
var pendingRefresh;
refreshSize = function () {
if (pendingRefresh) return; // could also be: clearTimeout(pendingRefresh);
pendingRefresh = setTimeout(function () {
if (isExcluded) return; // could be running after cleanup
fullPageElem.style.height = '0';
fullPageElem.style.height = root.scrollHeight + 'px';
pendingRefresh = null;
}, 500); // act rarely to stay fast
};
setTimeout(refreshSize, 10);
addEvent('resize', refreshSize);
// TODO: attributeFilter?
var config = {
attributes: true,
childList: true,
characterData: false
// subtree: true
};
observer = new MutationObserver(refreshSize);
observer.observe(body, config);
if (root.offsetHeight <= windowHeight) {
var clearfix = document.createElement('div');
clearfix.style.clear = 'both';
body.appendChild(clearfix);
}
}
// disable fixed background
if (!options.fixedBackground && !isExcluded) {
body.style.backgroundAttachment = 'scroll';
html.style.backgroundAttachment = 'scroll';
}
}
/**
* Removes event listeners and other traces left on the page.
*/
function cleanup() {
observer && observer.disconnect();
removeEvent(wheelEvent, wheel);
removeEvent('mousedown', mousedown);
removeEvent('keydown', keydown);
removeEvent('resize', refreshSize);
removeEvent('load', init);
}
/************************************************
* SCROLLING
************************************************/
var que = [];
var pending = false;
var lastScroll = Date.now();
/**
* Pushes scroll actions to the scrolling queue.
*/
function scrollArray(elem, left, top) {
directionCheck(left, top);
if (options.accelerationMax != 1) {
var now = Date.now();
var elapsed = now - lastScroll;
if (elapsed < options.accelerationDelta) {
var factor = (1 + (50 / elapsed)) / 2;
if (factor > 1) {
factor = Math.min(factor, options.accelerationMax);
left *= factor;
top *= factor;
}
}
lastScroll = Date.now();
}
// push a scroll command
que.push({
x: left,
y: top,
lastX: (left < 0) ? 0.99 : -0.99,
lastY: (top < 0) ? 0.99 : -0.99,
start: Date.now()
});
// don't act if there's a pending queue
if (pending) {
return;
}
var scrollWindow = (elem === document.body);
var step = function (time) {
var now = Date.now();
var scrollX = 0;
var scrollY = 0;
for (var i = 0; i < que.length; i++) {
var item = que[i];
var elapsed = now - item.start;
var finished = (elapsed >= options.animationTime);
// scroll position: [0, 1]
var position = (finished) ? 1 : elapsed / options.animationTime;
// easing [optional]
if (options.pulseAlgorithm) {
position = pulse(position);
}
// only need the difference
var x = (item.x * position - item.lastX) >> 0;
var y = (item.y * position - item.lastY) >> 0;
// add this to the total scrolling
scrollX += x;
scrollY += y;
// update last values
item.lastX += x;
item.lastY += y;
// delete and step back if it's over
if (finished) {
que.splice(i, 1); i--;
}
}
// scroll left and top
if (scrollWindow) {
window.scrollBy(scrollX, scrollY);
}
else {
if (scrollX) elem.scrollLeft += scrollX;
if (scrollY) elem.scrollTop += scrollY;
}
// clean up if there's nothing left to do
if (!left && !top) {
que = [];
}
if (que.length) {
requestFrame(step, elem, (1000 / options.frameRate + 1));
} else {
pending = false;
}
};
// start a new queue of actions
requestFrame(step, elem, 0);
pending = true;
}
/***********************************************
* EVENTS
***********************************************/
/**
* Mouse wheel handler.
* @param {Object} event
*/
function wheel(event) {
if (!initDone) {
init();
}
var target = event.target;
var overflowing = overflowingAncestor(target);
// use default if there's no overflowing
// element or default action is prevented
// or it's a zooming event with CTRL
if (!overflowing || event.defaultPrevented || event.ctrlKey) {
return true;
}
// leave embedded content alone (flash & pdf)
if (isNodeName(activeElement, 'embed') ||
(isNodeName(target, 'embed') && /\.pdf/i.test(target.src)) ||
isNodeName(activeElement, 'object')) {
return true;
}
var deltaX = -event.wheelDeltaX || event.deltaX || 0;
var deltaY = -event.wheelDeltaY || event.deltaY || 0;
if (isMac) {
if (event.wheelDeltaX && isDivisible(event.wheelDeltaX, 120)) {
deltaX = -120 * (event.wheelDeltaX / Math.abs(event.wheelDeltaX));
}
if (event.wheelDeltaY && isDivisible(event.wheelDeltaY, 120)) {
deltaY = -120 * (event.wheelDeltaY / Math.abs(event.wheelDeltaY));
}
}
// use wheelDelta if deltaX/Y is not available
if (!deltaX && !deltaY) {
deltaY = -event.wheelDelta || 0;
}
// line based scrolling (Firefox mostly)
if (event.deltaMode === 1) {
deltaX *= 40;
deltaY *= 40;
}
// check if it's a touchpad scroll that should be ignored
if (!options.touchpadSupport && isTouchpad(deltaY)) {
return true;
}
// scale by step size
// delta is 120 most of the time
// synaptics seems to send 1 sometimes
if (Math.abs(deltaX) > 1.2) {
deltaX *= options.stepSize / 120;
}
if (Math.abs(deltaY) > 1.2) {
deltaY *= options.stepSize / 120;
}
scrollArray(overflowing, deltaX, deltaY);
event.preventDefault();
scheduleClearCache();
}
/**
* Keydown event handler.
* @param {Object} event
*/
function keydown(event) {
var target = event.target;
var modifier = event.ctrlKey || event.altKey || event.metaKey ||
(event.shiftKey && event.keyCode !== key.spacebar);
// our own tracked active element could've been removed from the DOM
if (!document.contains(activeElement)) {
activeElement = document.activeElement;
}
// do nothing if user is editing text
// or using a modifier key (except shift)
// or in a dropdown
// or inside interactive elements
var inputNodeNames = /^(textarea|select|embed|object)$/i;
var buttonTypes = /^(button|submit|radio|checkbox|file|color|image)$/i;
if ( inputNodeNames.test(target.nodeName) ||
isNodeName(target, 'input') && !buttonTypes.test(target.type) ||
isNodeName(activeElement, 'video') ||
isInsideYoutubeVideo(event) ||
target.isContentEditable ||
event.defaultPrevented ||
modifier ) {
return true;
}
// spacebar should trigger button press
if ((isNodeName(target, 'button') ||
isNodeName(target, 'input') && buttonTypes.test(target.type)) &&
event.keyCode === key.spacebar) {
return true;
}
var shift, x = 0, y = 0;
var elem = overflowingAncestor(activeElement);
var clientHeight = elem.clientHeight;
if (elem == document.body) {
clientHeight = window.innerHeight;
}
switch (event.keyCode) {
case key.up:
y = -options.arrowScroll;
break;
case key.down:
y = options.arrowScroll;
break;
case key.spacebar: // (+ shift)
shift = event.shiftKey ? 1 : -1;
y = -shift * clientHeight * 0.9;
break;
case key.pageup:
y = -clientHeight * 0.9;
break;
case key.pagedown:
y = clientHeight * 0.9;
break;
case key.home:
y = -elem.scrollTop;
break;
case key.end:
var damt = elem.scrollHeight - elem.scrollTop - clientHeight;
y = (damt > 0) ? damt+10 : 0;
break;
case key.left:
x = -options.arrowScroll;
break;
case key.right:
x = options.arrowScroll;
break;
default:
return true; // a key we don't care about
}
scrollArray(elem, x, y);
event.preventDefault();
scheduleClearCache();
}
/**
* Mousedown event only for updating activeElement
*/
function mousedown(event) {
activeElement = event.target;
}
/***********************************************
* OVERFLOW
***********************************************/
var uniqueID = (function () {
var i = 0;
return function (el) {
return el.uniqueID || (el.uniqueID = i++);
};
})();
var cache = {}; // cleared out after a scrolling session
var clearCacheTimer;
//setInterval(function () { cache = {}; }, 10 * 1000);
function scheduleClearCache() {
clearTimeout(clearCacheTimer);
clearCacheTimer = setInterval(function () { cache = {}; }, 1*1000);
}
function setCache(elems, overflowing) {
for (var i = elems.length; i--;)
cache[uniqueID(elems[i])] = overflowing;
return overflowing;
}
// (body) (root)
// | hidden | visible | scroll | auto |
// hidden | no | no | YES | YES |
// visible | no | YES | YES | YES |
// scroll | no | YES | YES | YES |
// auto | no | YES | YES | YES |
function overflowingAncestor(el) {
var elems = [];
var body = document.body;
var rootScrollHeight = root.scrollHeight;
do {
var cached = cache[uniqueID(el)];
if (cached) {
return setCache(elems, cached);
}
elems.push(el);
if (rootScrollHeight === el.scrollHeight) {
var topOverflowsNotHidden = overflowNotHidden(root) && overflowNotHidden(body);
var isOverflowCSS = topOverflowsNotHidden || overflowAutoOrScroll(root);
if (isFrame && isContentOverflowing(root) ||
!isFrame && isOverflowCSS) {
return setCache(elems, getScrollRoot());
}
} else if (isContentOverflowing(el) && overflowAutoOrScroll(el)) {
return setCache(elems, el);
}
} while (el = el.parentElement);
}
function isContentOverflowing(el) {
return (el.clientHeight + 10 < el.scrollHeight);
}
// typically for <body> and <html>
function overflowNotHidden(el) {
var overflow = getComputedStyle(el, '').getPropertyValue('overflow-y');
return (overflow !== 'hidden');
}
// for all other elements
function overflowAutoOrScroll(el) {
var overflow = getComputedStyle(el, '').getPropertyValue('overflow-y');
return (overflow === 'scroll' || overflow === 'auto');
}
/***********************************************
* HELPERS
***********************************************/
function addEvent(type, fn) {
window.addEventListener(type, fn, false);
}
function removeEvent(type, fn) {
window.removeEventListener(type, fn, false);
}
function isNodeName(el, tag) {
return (el.nodeName||'').toLowerCase() === tag.toLowerCase();
}
function directionCheck(x, y) {
x = (x > 0) ? 1 : -1;
y = (y > 0) ? 1 : -1;
if (direction.x !== x || direction.y !== y) {
direction.x = x;
direction.y = y;
que = [];
lastScroll = 0;
}
}
var deltaBufferTimer;
if (window.localStorage && localStorage.SS_deltaBuffer) {
deltaBuffer = localStorage.SS_deltaBuffer.split(',');
}
function isTouchpad(deltaY) {
if (!deltaY) return;
if (!deltaBuffer.length) {
deltaBuffer = [deltaY, deltaY, deltaY];
}
deltaY = Math.abs(deltaY)
deltaBuffer.push(deltaY);
deltaBuffer.shift();
clearTimeout(deltaBufferTimer);
deltaBufferTimer = setTimeout(function () {
if (window.localStorage) {
localStorage.SS_deltaBuffer = deltaBuffer.join(',');
}
}, 1000);
return !allDeltasDivisableBy(120) && !allDeltasDivisableBy(100);
}
function isDivisible(n, divisor) {
return (Math.floor(n / divisor) == n / divisor);
}
function allDeltasDivisableBy(divisor) {
return (isDivisible(deltaBuffer[0], divisor) &&
isDivisible(deltaBuffer[1], divisor) &&
isDivisible(deltaBuffer[2], divisor));
}
function isInsideYoutubeVideo(event) {
var elem = event.target;
var isControl = false;
if (document.URL.indexOf ('www.youtube.com/watch') != -1) {
do {
isControl = (elem.classList &&
elem.classList.contains('html5-video-controls'));
if (isControl) break;
} while (elem = elem.parentNode);
}
return isControl;
}
var requestFrame = (function () {
return (window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
function (callback, element, delay) {
window.setTimeout(callback, delay || (1000/60));
});
})();
var MutationObserver = (window.MutationObserver ||
window.WebKitMutationObserver ||
window.MozMutationObserver);
var getScrollRoot = (function() {
var SCROLL_ROOT;
return function() {
if (!SCROLL_ROOT) {
var dummy = document.createElement('div');
dummy.style.cssText = 'height:10000px;width:1px;';
document.body.appendChild(dummy);
var bodyScrollTop = document.body.scrollTop;
var docElScrollTop = document.documentElement.scrollTop;
window.scrollBy(0, 1);
if (document.body.scrollTop != bodyScrollTop)
(SCROLL_ROOT = document.body);
else
(SCROLL_ROOT = document.documentElement);
window.scrollBy(0, -1);
document.body.removeChild(dummy);
}
return SCROLL_ROOT;
};
})();
/***********************************************
* PULSE (by Michael Herf)
***********************************************/
/**
* Viscous fluid with a pulse for part and decay for the rest.
* - Applies a fixed force over an interval (a damped acceleration), and
* - Lets the exponential bleed away the velocity over a longer interval
* - Michael Herf, http://stereopsis.com/stopping/
*/
function pulse_(x) {
var val, start, expx;
// test
x = x * options.pulseScale;
if (x < 1) { // acceleartion
val = x - (1 - Math.exp(-x));
} else { // tail
// the previous animation ended here:
start = Math.exp(-1);
// simple viscous drag
x -= 1;
expx = 1 - Math.exp(-x);
val = start + (expx * (1 - start));
}
return val * options.pulseNormalize;
}
function pulse(x) {
if (x >= 1) return 1;
if (x <= 0) return 0;
if (options.pulseNormalize == 1) {
options.pulseNormalize /= pulse_(1);
}
return pulse_(x);
}
/***********************************************
* FIRST RUN
***********************************************/
var userAgent = window.navigator.userAgent;
var isEdge = /Edge/.test(userAgent); // thank you MS
var isChrome = /chrome/i.test(userAgent) && !isEdge;
var isSafari = /safari/i.test(userAgent) && !isEdge;
var isMobile = /mobile/i.test(userAgent);
var isEnabledForBrowser = (isChrome || isSafari) && !isMobile;
var wheelEvent;
if ('onwheel' in document.createElement('div'))
wheelEvent = 'wheel';
else if ('onmousewheel' in document.createElement('div'))
wheelEvent = 'mousewheel';
if (wheelEvent && isEnabledForBrowser) {
addEvent(wheelEvent, wheel);
addEvent('mousedown', mousedown);
addEvent('load', init);
}
/***********************************************
* PUBLIC INTERFACE
***********************************************/
function SmoothScroll(optionsToSet) {
for (var key in optionsToSet)
if (defaultOptions.hasOwnProperty(key))
options[key] = optionsToSet[key];
}
SmoothScroll.destroy = cleanup;
if (window.SmoothScrollOptions) // async API
SmoothScroll(window.SmoothScrollOptions)
if ('object' == typeof exports)
module.exports = SmoothScroll;
else
window.SmoothScroll = SmoothScroll;
})();
\ No newline at end of file
import $ from 'jquery';
import whatInput from 'what-input';
window.$ = $;
window.jQuery = window.$ = require("jquery");
import Foundation from 'foundation-sites';
require('./jquery.waypoints.min.js');
require('./jquery.counterup.js');
require('./jquery.hoverdir.js');
require('./SmoothScroll.js');
require('./main.js');
// If you want to pick and choose which modules to include, comment out the above and uncomment
// the line below
//import './lib/foundation-explicit-pieces';
$(document).foundation().ready();
\ No newline at end of file
! function(t) {
"use strict";
t.fn.countUp = function(e) {
var a = t.extend({
time: 2e3,
delay: 10
}, e);
return this.each(function() {
var e = t(this),
n = a,
u = function() {
e.data("counterupTo") || e.data("counterupTo", e.text());
var t = parseInt(e.data("counter-time")) > 0 ? parseInt(e.data("counter-time")) : n.time,
a = parseInt(e.data("counter-delay")) > 0 ? parseInt(e.data("counter-delay")) : n.delay,
u = t / a,
r = e.data("counterupTo"),
o = [r],
c = /[0-9]+,[0-9]+/.test(r);
r = r.replace(/,/g, "");
for (var d = (/^[0-9]+$/.test(r), /^[0-9]+\.[0-9]+$/.test(r)), s = d ? (r.split(".")[1] || []).length : 0, i = u; i >= 1; i--) {
var p = parseInt(Math.round(r / u * i));
if (d && (p = parseFloat(r / u * i).toFixed(s)), c)
for (;
/(\d+)(\d{3})/.test(p.toString());) p = p.toString().replace(/(\d+)(\d{3})/, "$1,$2");
o.unshift(p)
}
e.data("counterup-nums", o), e.text("0");
var f = function() {
if (!e.data('counterup-nums')) {
return;
}
e.text(e.data("counterup-nums").shift()), e.data("counterup-nums").length ? setTimeout(e.data("counterup-func"), a) : (delete e.data("counterup-nums"), e.data("counterup-nums", null), e.data("counterup-func", null))
};
e.data("counterup-func", f), setTimeout(e.data("counterup-func"), a)
};
e.waypoint(u, {
offset: "100%",
triggerOnce: !0
})
})
}
}(jQuery);
\ No newline at end of file
/**
* jquery.hoverdir.js v1.1.2
* http://www.codrops.com
*
* Licensed under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
* Copyright 2012, Codrops
* http://www.codrops.com
*/
(function (factory) {
'use strict';
if (typeof define === 'function' && define.amd) {
define(['jquery'], factory);
} else if (typeof exports !== 'undefined') {
module.exports = factory(require('jquery'));
} else {
factory(jQuery);
}
})(function ($) {
'use strict';
function Hoverdir(element, options) {
this.$el = $(element);
// set options
this.options = $.extend(true, {}, this.defaults, options);
// initialize visibility to false for show and hide method
this.isVisible = false;
// get the hover for this element
this.$hoverElem = this.$el.find(this.options.hoverElem);
// transition properties
this.transitionProp = 'all ' + this.options.speed + 'ms ' + this.options.easing;
// support for CSS transitions
this.support = this._supportsTransitions();
// load the events
this._loadEvents();
}
Hoverdir.prototype = {
defaults: {
speed: 300,
easing: 'ease',
hoverDelay: 0,
inverse: false,
hoverElem: 'div'
},
constructor: Hoverdir,
/**
* Detect if CSS transitions are supported
*
* @return {Boolean}
*/
_supportsTransitions: function () {
if (typeof Modernizr !== 'undefined') {
return Modernizr.csstransitions;
} else {
var b = document.body || document.documentElement,
s = b.style,
p = 'transition';
if (typeof s[p] === 'string') {
return true;
}
// Tests for vendor specific prop
var v = ['Moz', 'webkit', 'Webkit', 'Khtml', 'O', 'ms'];
p = p.charAt(0).toUpperCase() + p.substr(1);
for (var i = 0; i < v.length; i++) {
if (typeof s[v[i] + p] === 'string') {
return true;
}
}
return false;
}
},
/**
* Bind the events to the element
*/
_loadEvents: function () {
this.$el.on('mouseenter.hoverdir mouseleave.hoverdir', $.proxy(function (event) {
this.direction = this._getDir({x: event.pageX, y: event.pageY});
if (event.type === 'mouseenter') {
this._showHover();
}
else {
this._hideHover();
}
}, this));
},
/**
* Show the hover of the element
*/
_showHover: function () {
var styleCSS = this._getStyle(this.direction);
if (this.support) {
this.$hoverElem.css('transition', '');
}
this.$hoverElem.hide().css(styleCSS.from);
clearTimeout(this.tmhover);
this.tmhover = setTimeout($.proxy(function () {
this.$hoverElem.show(0, $.proxy(function () {
if (this.support) {
this.$hoverElem.css('transition', this.transitionProp);
}
this._applyAnimation(styleCSS.to);
}, this));
}, this), this.options.hoverDelay);
this.isVisible = true;
},
/**
* Hide the hover to the element
*/
_hideHover: function () {
var styleCSS = this._getStyle(this.direction);
if (this.support) {
this.$hoverElem.css('transition', this.transitionProp);
}
clearTimeout(this.tmhover);
this._applyAnimation(styleCSS.from);
this.isVisible = false;
},
/**
* get the direction when the event is triggered
* credits : http://stackoverflow.com/a/3647634
*
* @param {Object} coordinates
* @returns {Interger}
*/
_getDir: function (coordinates) {
// the width and height of the current div
var w = this.$el.width(),
h = this.$el.height(),
// calculate the x and y to get an angle to the center of the div from that x and y.
// gets the x value relative to the center of the DIV and "normalize" it
x = (coordinates.x - this.$el.offset().left - (w / 2)) * (w > h ? (h / w) : 1),
y = (coordinates.y - this.$el.offset().top - (h / 2)) * (h > w ? (w / h) : 1),
// the angle and the direction from where the mouse came in/went out clockwise (TRBL=0123);
// first calculate the angle of the point,
// add 180 deg to get rid of the negative values
// divide by 90 to get the quadrant
// add 3 and do a modulo by 4 to shift the quadrants to a proper clockwise TRBL (top/right/bottom/left) **/
direction = Math.round((((Math.atan2(y, x) * (180 / Math.PI)) + 180) / 90) + 3) % 4;
return direction;
},
/**
* get the style when the event is triggered
*
* @param {(Interger|String)} direction
* @returns {Object}
*/
_getStyle: function (direction) {
var fromStyle, toStyle,
slideFromTop = {'left': '0', 'top': '-100%'},
slideFromBottom = {'left': '0', 'top': '100%'},
slideFromLeft = {'left': '-100%', 'top': '0'},
slideFromRight = {'left': '100%', 'top': '0'},
slideTop = {'top': '0'},
slideLeft = {'left': '0'};
switch (direction) {
case 0:
case 'top':
// from top
fromStyle = !this.options.inverse ? slideFromTop : slideFromBottom;
toStyle = slideTop;
break;
case 1:
case 'right':
// from right
fromStyle = !this.options.inverse ? slideFromRight : slideFromLeft;
toStyle = slideLeft;
break;
case 2:
case 'bottom':
// from bottom
fromStyle = !this.options.inverse ? slideFromBottom : slideFromTop;
toStyle = slideTop;
break;
case 3:
case 'left':
// from left
fromStyle = !this.options.inverse ? slideFromLeft : slideFromRight;
toStyle = slideLeft;
break;
}
return {from: fromStyle, to: toStyle};
},
/**
* Apply a transition or fallback to jquery animate based on Modernizr.csstransitions support
*
* @param {Object} styleCSS
*/
_applyAnimation: function (styleCSS) {
$.fn.applyStyle = this.support ? $.fn.css : $.fn.animate;
this.$hoverElem.stop().applyStyle(styleCSS, $.extend(true, [], {duration: this.options.speed}));
},
/**
* Show $hoverElem from the direction in argument
*
* @param {String} [direction=top] direction
*/
show: function (direction) {
this.$el.off('mouseenter.hoverdir mouseleave.hoverdir');
if (!this.isVisible) {
this.direction = direction || 'top';
this._showHover();
}
},
/**
* Hide $hoverElem from the direction in argument
*
* @param {String} [direction=bottom] direction
*/
hide: function (direction) {
this.rebuild();
if (this.isVisible) {
this.direction = direction || 'bottom';
this._hideHover();
}
},
setOptions: function (options) {
this.options = $.extend(true, {}, this.defaults, this.options, options);
},
/**
* Unbinds the plugin.
*/
destroy: function () {
this.$el.off('mouseenter.hoverdir mouseleave.hoverdir');
this.$el.data('hoverdir', null);
},
/**
* Bind the plugin.
*/
rebuild: function (options) {
if (typeof options === 'object') {
this.setOptions(options);
}
this._loadEvents();
}
};
$.fn.hoverdir = function (option, parameter) {
return this.each(function () {
var data = $(this).data('hoverdir');
var options = typeof option === 'object' && option;
// Initialize hoverdir.
if (!data) {
data = new Hoverdir(this, options);
$(this).data('hoverdir', data);
}
// Call hoverdir method.
if (typeof option === 'string') {
data[option](parameter);
if (option === 'destroy') {
$(this).data('hoverdir', false);
}
}
});
};
$.fn.hoverdir.Constructor = Hoverdir;
});
/*!
Waypoints - 4.0.1
Copyright © 2011-2016 Caleb Troughton
Licensed under the MIT license.
https://github.com/imakewebthings/waypoints/blob/master/licenses.txt
*/
!function(){"use strict";function t(o){if(!o)throw new Error("No options passed to Waypoint constructor");if(!o.element)throw new Error("No element option passed to Waypoint constructor");if(!o.handler)throw new Error("No handler option passed to Waypoint constructor");this.key="waypoint-"+e,this.options=t.Adapter.extend({},t.defaults,o),this.element=this.options.element,this.adapter=new t.Adapter(this.element),this.callback=o.handler,this.axis=this.options.horizontal?"horizontal":"vertical",this.enabled=this.options.enabled,this.triggerPoint=null,this.group=t.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=t.Context.findOrCreateByElement(this.options.context),t.offsetAliases[this.options.offset]&&(this.options.offset=t.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),i[this.key]=this,e+=1}var e=0,i={};t.prototype.queueTrigger=function(t){this.group.queueTrigger(this,t)},t.prototype.trigger=function(t){this.enabled&&this.callback&&this.callback.apply(this,t)},t.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete i[this.key]},t.prototype.disable=function(){return this.enabled=!1,this},t.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},t.prototype.next=function(){return this.group.next(this)},t.prototype.previous=function(){return this.group.previous(this)},t.invokeAll=function(t){var e=[];for(var o in i)e.push(i[o]);for(var n=0,r=e.length;r>n;n++)e[n][t]()},t.destroyAll=function(){t.invokeAll("destroy")},t.disableAll=function(){t.invokeAll("disable")},t.enableAll=function(){t.Context.refreshAll();for(var e in i)i[e].enabled=!0;return this},t.refreshAll=function(){t.Context.refreshAll()},t.viewportHeight=function(){return window.innerHeight||document.documentElement.clientHeight},t.viewportWidth=function(){return document.documentElement.clientWidth},t.adapters=[],t.defaults={context:window,continuous:!0,enabled:!0,group:"default",horizontal:!1,offset:0},t.offsetAliases={"bottom-in-view":function(){return this.context.innerHeight()-this.adapter.outerHeight()},"right-in-view":function(){return this.context.innerWidth()-this.adapter.outerWidth()}},window.Waypoint=t}(),function(){"use strict";function t(t){window.setTimeout(t,1e3/60)}function e(t){this.element=t,this.Adapter=n.Adapter,this.adapter=new this.Adapter(t),this.key="waypoint-context-"+i,this.didScroll=!1,this.didResize=!1,this.oldScroll={x:this.adapter.scrollLeft(),y:this.adapter.scrollTop()},this.waypoints={vertical:{},horizontal:{}},t.waypointContextKey=this.key,o[t.waypointContextKey]=this,i+=1,n.windowContext||(n.windowContext=!0,n.windowContext=new e(window)),this.createThrottledScrollHandler(),this.createThrottledResizeHandler()}var i=0,o={},n=window.Waypoint,r=window.onload;e.prototype.add=function(t){var e=t.options.horizontal?"horizontal":"vertical";this.waypoints[e][t.key]=t,this.refresh()},e.prototype.checkEmpty=function(){var t=this.Adapter.isEmptyObject(this.waypoints.horizontal),e=this.Adapter.isEmptyObject(this.waypoints.vertical),i=this.element==this.element.window;t&&e&&!i&&(this.adapter.off(".waypoints"),delete o[this.key])},e.prototype.createThrottledResizeHandler=function(){function t(){e.handleResize(),e.didResize=!1}var e=this;this.adapter.on("resize.waypoints",function(){e.didResize||(e.didResize=!0,n.requestAnimationFrame(t))})},e.prototype.createThrottledScrollHandler=function(){function t(){e.handleScroll(),e.didScroll=!1}var e=this;this.adapter.on("scroll.waypoints",function(){(!e.didScroll||n.isTouch)&&(e.didScroll=!0,n.requestAnimationFrame(t))})},e.prototype.handleResize=function(){n.Context.refreshAll()},e.prototype.handleScroll=function(){var t={},e={horizontal:{newScroll:this.adapter.scrollLeft(),oldScroll:this.oldScroll.x,forward:"right",backward:"left"},vertical:{newScroll:this.adapter.scrollTop(),oldScroll:this.oldScroll.y,forward:"down",backward:"up"}};for(var i in e){var o=e[i],n=o.newScroll>o.oldScroll,r=n?o.forward:o.backward;for(var s in this.waypoints[i]){var a=this.waypoints[i][s];if(null!==a.triggerPoint){var l=o.oldScroll<a.triggerPoint,h=o.newScroll>=a.triggerPoint,p=l&&h,u=!l&&!h;(p||u)&&(a.queueTrigger(r),t[a.group.id]=a.group)}}}for(var c in t)t[c].flushTriggers();this.oldScroll={x:e.horizontal.newScroll,y:e.vertical.newScroll}},e.prototype.innerHeight=function(){return this.element==this.element.window?n.viewportHeight():this.adapter.innerHeight()},e.prototype.remove=function(t){delete this.waypoints[t.axis][t.key],this.checkEmpty()},e.prototype.innerWidth=function(){return this.element==this.element.window?n.viewportWidth():this.adapter.innerWidth()},e.prototype.destroy=function(){var t=[];for(var e in this.waypoints)for(var i in this.waypoints[e])t.push(this.waypoints[e][i]);for(var o=0,n=t.length;n>o;o++)t[o].destroy()},e.prototype.refresh=function(){var t,e=this.element==this.element.window,i=e?void 0:this.adapter.offset(),o={};this.handleScroll(),t={horizontal:{contextOffset:e?0:i.left,contextScroll:e?0:this.oldScroll.x,contextDimension:this.innerWidth(),oldScroll:this.oldScroll.x,forward:"right",backward:"left",offsetProp:"left"},vertical:{contextOffset:e?0:i.top,contextScroll:e?0:this.oldScroll.y,contextDimension:this.innerHeight(),oldScroll:this.oldScroll.y,forward:"down",backward:"up",offsetProp:"top"}};for(var r in t){var s=t[r];for(var a in this.waypoints[r]){var l,h,p,u,c,d=this.waypoints[r][a],f=d.options.offset,w=d.triggerPoint,y=0,g=null==w;d.element!==d.element.window&&(y=d.adapter.offset()[s.offsetProp]),"function"==typeof f?f=f.apply(d):"string"==typeof f&&(f=parseFloat(f),d.options.offset.indexOf("%")>-1&&(f=Math.ceil(s.contextDimension*f/100))),l=s.contextScroll-s.contextOffset,d.triggerPoint=Math.floor(y+l-f),h=w<s.oldScroll,p=d.triggerPoint>=s.oldScroll,u=h&&p,c=!h&&!p,!g&&u?(d.queueTrigger(s.backward),o[d.group.id]=d.group):!g&&c?(d.queueTrigger(s.forward),o[d.group.id]=d.group):g&&s.oldScroll>=d.triggerPoint&&(d.queueTrigger(s.forward),o[d.group.id]=d.group)}}return n.requestAnimationFrame(function(){for(var t in o)o[t].flushTriggers()}),this},e.findOrCreateByElement=function(t){return e.findByElement(t)||new e(t)},e.refreshAll=function(){for(var t in o)o[t].refresh()},e.findByElement=function(t){return o[t.waypointContextKey]},window.onload=function(){r&&r(),e.refreshAll()},n.requestAnimationFrame=function(e){var i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||t;i.call(window,e)},n.Context=e}(),function(){"use strict";function t(t,e){return t.triggerPoint-e.triggerPoint}function e(t,e){return e.triggerPoint-t.triggerPoint}function i(t){this.name=t.name,this.axis=t.axis,this.id=this.name+"-"+this.axis,this.waypoints=[],this.clearTriggerQueues(),o[this.axis][this.name]=this}var o={vertical:{},horizontal:{}},n=window.Waypoint;i.prototype.add=function(t){this.waypoints.push(t)},i.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},i.prototype.flushTriggers=function(){for(var i in this.triggerQueues){var o=this.triggerQueues[i],n="up"===i||"left"===i;o.sort(n?e:t);for(var r=0,s=o.length;s>r;r+=1){var a=o[r];(a.options.continuous||r===o.length-1)&&a.trigger([i])}}this.clearTriggerQueues()},i.prototype.next=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints),o=i===this.waypoints.length-1;return o?null:this.waypoints[i+1]},i.prototype.previous=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints);return i?this.waypoints[i-1]:null},i.prototype.queueTrigger=function(t,e){this.triggerQueues[e].push(t)},i.prototype.remove=function(t){var e=n.Adapter.inArray(t,this.waypoints);e>-1&&this.waypoints.splice(e,1)},i.prototype.first=function(){return this.waypoints[0]},i.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},i.findOrCreate=function(t){return o[t.axis][t.name]||new i(t)},n.Group=i}(),function(){"use strict";function t(t){this.$element=e(t)}var e=window.jQuery,i=window.Waypoint;e.each(["innerHeight","innerWidth","off","offset","on","outerHeight","outerWidth","scrollLeft","scrollTop"],function(e,i){t.prototype[i]=function(){var t=Array.prototype.slice.call(arguments);return this.$element[i].apply(this.$element,t)}}),e.each(["extend","inArray","isEmptyObject"],function(i,o){t[o]=e[o]}),i.adapters.push({name:"jquery",Adapter:t}),i.Adapter=t}(),function(){"use strict";function t(t){return function(){var i=[],o=arguments[0];return t.isFunction(arguments[0])&&(o=t.extend({},arguments[1]),o.handler=arguments[0]),this.each(function(){var n=t.extend({},o,{element:this});"string"==typeof n.context&&(n.context=t(this).closest(n.context)[0]),i.push(new e(n))}),i}}var e=window.Waypoint;window.jQuery&&(window.jQuery.fn.waypoint=t(window.jQuery)),window.Zepto&&(window.Zepto.fn.waypoint=t(window.Zepto))}();
\ No newline at end of file
import $ from 'jquery';
import { Foundation } from 'foundation-sites/js/foundation.core';
import { rtl, GetYoDigits, transitionend } from 'foundation-sites/js/foundation.util.core';
import { Box } from 'foundation-sites/js/foundation.util.box'
import { onImagesLoaded } from 'foundation-sites/js/foundation.util.imageLoader';
import { Keyboard } from 'foundation-sites/js/foundation.util.keyboard';
import { MediaQuery } from 'foundation-sites/js/foundation.util.mediaQuery';
import { Motion, Move } from 'foundation-sites/js/foundation.util.motion';
import { Nest } from 'foundation-sites/js/foundation.util.nest';
import { Timer } from 'foundation-sites/js/foundation.util.timer';
import { Touch } from 'foundation-sites/js/foundation.util.touch';
import { Triggers } from 'foundation-sites/js/foundation.util.triggers';
import { Abide } from 'foundation-sites/js/foundation.abide';
import { Accordion } from 'foundation-sites/js/foundation.accordion';
import { AccordionMenu } from 'foundation-sites/js/foundation.accordionMenu';
import { Drilldown } from 'foundation-sites/js/foundation.drilldown';
import { Dropdown } from 'foundation-sites/js/foundation.dropdown';
import { DropdownMenu } from 'foundation-sites/js/foundation.dropdownMenu';
import { Equalizer } from 'foundation-sites/js/foundation.equalizer';
import { Interchange } from 'foundation-sites/js/foundation.interchange';
import { Magellan } from 'foundation-sites/js/foundation.magellan';
import { OffCanvas } from 'foundation-sites/js/foundation.offcanvas';
import { Orbit } from 'foundation-sites/js/foundation.orbit';
import { ResponsiveMenu } from 'foundation-sites/js/foundation.responsiveMenu';
import { ResponsiveToggle } from 'foundation-sites/js/foundation.responsiveToggle';
import { Reveal } from 'foundation-sites/js/foundation.reveal';
import { Slider } from 'foundation-sites/js/foundation.slider';
import { SmoothScroll } from 'foundation-sites/js/foundation.smoothScroll';
import { Sticky } from 'foundation-sites/js/foundation.sticky';
import { Tabs } from 'foundation-sites/js/foundation.tabs';
import { Toggler } from 'foundation-sites/js/foundation.toggler';
import { Tooltip } from 'foundation-sites/js/foundation.tooltip';
import { ResponsiveAccordionTabs } from 'foundation-sites/js/foundation.responsiveAccordionTabs';
Foundation.addToJquery($);
// Add Foundation Utils to Foundation global namespace for backwards
// compatibility.
Foundation.rtl = rtl;
Foundation.GetYoDigits = GetYoDigits;
Foundation.transitionend = transitionend;
Foundation.Box = Box;
Foundation.onImagesLoaded = onImagesLoaded;
Foundation.Keyboard = Keyboard;
Foundation.MediaQuery = MediaQuery;
Foundation.Motion = Motion;
Foundation.Move = Move;
Foundation.Nest = Nest;
Foundation.Timer = Timer;
// Touch and Triggers previously were almost purely sede effect driven,
// so no // need to add it to Foundation, just init them.
Touch.init($);
Triggers.init($, Foundation);
Foundation.plugin(Abide, 'Abide');
Foundation.plugin(Accordion, 'Accordion');
Foundation.plugin(AccordionMenu, 'AccordionMenu');
Foundation.plugin(Drilldown, 'Drilldown');
Foundation.plugin(Dropdown, 'Dropdown');
Foundation.plugin(DropdownMenu, 'DropdownMenu');
Foundation.plugin(Equalizer, 'Equalizer');
Foundation.plugin(Interchange, 'Interchange');
Foundation.plugin(Magellan, 'Magellan');
Foundation.plugin(OffCanvas, 'OffCanvas');
Foundation.plugin(Orbit, 'Orbit');
Foundation.plugin(ResponsiveMenu, 'ResponsiveMenu');
Foundation.plugin(ResponsiveToggle, 'ResponsiveToggle');
Foundation.plugin(Reveal, 'Reveal');
Foundation.plugin(Slider, 'Slider');
Foundation.plugin(SmoothScroll, 'SmoothScroll');
Foundation.plugin(Sticky, 'Sticky');
Foundation.plugin(Tabs, 'Tabs');
Foundation.plugin(Toggler, 'Toggler');
Foundation.plugin(Tooltip, 'Tooltip');
Foundation.plugin(ResponsiveAccordionTabs, 'ResponsiveAccordionTabs');
module.exports = Foundation;
$(document).ready(function() {
var headerHeight;
$('.search span.search-top').on('click', function() {
event.stopPropagation();
$('#search-block').animate({
width: "toggle"
});
});
$('#search-block').submit(function() {
if ($.trim($("#search-block #search").val()) === "") {
$(this).animate({
width: "toggle"
});
return false;
}
});
headerHeight = $('header').outerHeight();
$('body').css({
'paddingTop': headerHeight
});
$('.to-next').on('click', function() {
var nextDiv = $(this).parent().next();
$('html,body').animate({
scrollTop: $(nextDiv).offset().top - headerHeight
}, 500)
});
$('.navigation ').css({
marginTop: headerHeight,
transition: 'all 0.5s ease'
});
$('.overview-column ').hoverdir({
speed: 500,
});
function mobileMenuAdj() {
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 300) {
$("header").addClass("small");
$('.navigation ').css({
marginTop: headerHeight - 44
});
} else {
$("header").removeClass("small");
$('.navigation ').css({
marginTop: headerHeight
});
}
});
}
$(window).on('changed.zf.mediaquery', function(event, newSize, oldSize) {
if (Foundation.MediaQuery.atLeast('medium')) {
mobileMenuAdj()
}
});
if (Foundation.MediaQuery.atLeast('medium')) {
mobileMenuAdj();
}
$('.count').countUp({
delay: 10,
time: 2000
});
});
\ No newline at end of file
// Default
body {
overflow-x: hidden;
color: #000;
}
@mixin placeholder {
::-webkit-input-placeholder {
@content
}
:-moz-placeholder {
@content
}
::-moz-placeholder {
@content
}
:-ms-input-placeholder {
@content
}
}
$highlight-color: #cb022c;
$red-font: #cd202f;
.button {
background-color: $highlight-color;
border-radius: 50px;
border: none;
min-width: 107px;
font-size: 16px;
padding: 10px 15px 11px;
margin-bottom: 0;
&:hover {
background-color: #261b1b;
}
&.dark-hover {
&:hover {
background: #8c0a25;
}
}
}
h1 {
font-size: 39px;
line-height: 51px;
text-align: center;
font-weight: normal;
margin-bottom: 70px;
}
h2 {
margin: 0 0 20px;
}
h6 {
font-size: 20px;
}
p {
font-size: 18px;
line-height: 25px;
a {
font-weight: bold;
text-decoration: underline;
}
}
a:hover {
color: #cb022c;
}
ul {
li {
margin: 0 0 7px;
}
&.list-none {
list-style: none;
margin: 0;
}
}
footer {
ul.def-list {
li {
&:after {
top: 10px;
}
}
}
}
ul.def-list {
margin: 0;
li {
margin: 0 0 7px;
padding: 0 0 0 25px;
list-style: none;
position: relative;
&:after {
width: 11px;
height: 8px;
content: "";
position: absolute;
left: 0;
top: 8px;
background: url(../img/list-style-default.png) no-repeat;
}
}
}
.list-style {
list-style: none;
margin: 0;
li {
padding-left: 20px;
position: relative;
&:before {
content: "";
background: url(../img/list-style.png) no-repeat;
position: absolute;
left: 0;
top: 8px;
width: 6px;
height: 7px;
}
}
}
.custom-gutter {
margin: 0 -5px;
.medium-6 {
margin: 5px;
width: calc(50% - 10px);
}
}
.img-overlay {
position: relative;
&:after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(44, 32, 32, 0.7);
}
>div {
position: relative;
z-index: 1;
}
}
// Header
header {
position: fixed;
top: 0;
left: 0;
right: 0;
background: #fff;
z-index: 9999;
padding: 10px 0 18px;
.logo {
img {
width: auto;
transition: all ease 0.5s;
}
}
&.small {
box-shadow: 0px 2px 19px -4px rgba(0, 0, 0, 0.36);
.logo {
img {
max-width: 120px;
}
}
}
.top-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.search {
cursor: pointer;
color: #b4b4b4;
font-size: 20px;
width: 20px;
height: 21px;
outline: 0;
.search-top {
position: relative;
top: -3px;
}
}
.header-form {
padding-top: 18px;
display: none;
}
.login {
height: 37px;
position: relative;
margin: 0 55px 0 40px;
&:hover {
.header-form {
display: block;
}
}
}
.form-wrap {
position: absolute;
min-width: 221px;
top: calc(100% + 18px);
padding-top: 18px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
z-index: 99;
right: 0;
&:before {
@include css-triangle(14px, #cb022c, up);
position: absolute;
top: -14px;
left: 0;
right: 0;
margin: auto;
}
button {
color: #fff;
}
}
}
.form-wrap {
padding-top: 15px;
padding-bottom: 15px;
background: $highlight-color;
input {
color: #fff;
background: transparent;
border: none;
border-bottom: solid 1px #fa0034;
-webkit-box-shadow: none;
box-shadow: none;
margin-bottom: 15px;
padding: 0.1875rem 0.125rem;
font-size: 15px;
font-weight: 300;
line-height: normal;
height: 34px;
&:focus {
@extend input;
}
}
}
.hamburger-menu {
@include hamburger(#2c2020, #2c2020, 41px, 21px, 5px, 3);
}
nav {
z-index: 999;
position: absolute;
right: 0.9375rem;
min-width: 260px;
background: #2c2020;
margin-top: 18px;
-webkit-transition: all ease-in 0.5s;
transition: all ease-in 0.5s;
padding: 35px 0;
&.off-canvas {
background: #2c2020;
&.is-open {
transform: translate(-15px, 0);
}
}
.close-btn {
position: absolute;
right: 15px;
color: #564e4c;
top: 20px;
font-size: 22px;
z-index: 9;
cursor: pointer;
}
&:before {
content: "";
position: absolute;
background: #261b1b;
left: 0;
top: 0;
bottom: 0;
width: 72px;
}
.menu {
li {
a {
padding: 20px 0;
font-size: 20px;
position: relative;
z-index: 1;
outline: 0;
&:focus {
color: #fff;
}
&:hover {
color: #cb022c;
}
i {
font-size: 25px;
padding: 0 55px 0 25px;
}
&:hover {
&:before {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background: #cb022c;
}
}
}
}
}
a {
color: #fff;
&:hover {
color: #cb022c;
}
}
}
.navigation-wrap {
-ms-flex-item-align: end;
align-self: flex-end;
>div {
display: inline-block;
vertical-align: middle;
}
}
.red {
color: $red-font;
}
.carousel {
position: relative;
figure.orbit-figure {
.orbit-caption {
z-index: 9;
max-width: 1005px;
top: 50%;
bottom: inherit;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
left: 150px;
padding: 0;
h2 {
font-size: 37px;
font-weight: 500;
line-height: 45px;
margin-bottom: 0;
}
.button {
border-bottom: solid 4px #a10324;
padding: 13px 22px 11px;
font-size: 22px;
font-weight: 500;
&:hover {
border-bottom-color: #261b1b;
}
}
strong {
line-height: normal;
font-size: 176px;
}
ul {
list-style: none;
padding: 4px 0;
margin: 0 0 25px;
border-top: solid 1px rgba(255, 255, 255, 0.2);
border-bottom: solid 1px rgba(255, 255, 255, 0.2);
&.tick-list {
li {
&+li {
&:before {
font-family: 'virtualx';
content: "\e903";
position: absolute;
width: 15px;
height: 15px;
left: 0;
}
}
}
}
&.number-list {
counter-reset: section;
font-weight: 700;
font-size: 22px;
li {
padding: 0 25px;
margin: 0;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
&:before {
margin: 0 10px 0 0;
background: $highlight-color;
border-radius: 50%;
width: 25px;
height: 25px;
display: inline-block;
text-align: center;
content: counter(section);
counter-increment: section;
line-height: 26px;
}
i {
margin: 0 10px 0 0;
}
}
}
li {
margin: 0;
display: inline-block;
vertical-align: middle;
padding: 0 40px;
position: relative;
&:first-child {
padding-left: 5px;
}
&:last-child {
padding-right: 10px;
}
}
}
}
}
.orbit-controls {
position: absolute;
right: 20%;
z-index: 99;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
font-size: 45px;
.orbit-previous {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
button {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
position: static;
padding: 0;
cursor: pointer;
color: #7c7574;
-webkit-transform: translateY(0);
transform: translateY(0);
&:hover,
&:focus {
background: transparent;
}
&+button {
margin-left: 25px
}
}
}
.icon {
position: absolute;
bottom: 15px;
left: 0;
right: 0;
margin: auto;
z-index: 9;
text-align: center;
font-size: 60px;
&.to-next {
color: #fff;
cursor: pointer;
}
-webkit-animation: floater infinite 3s ease-in-out;
animation: floater infinite 3s ease-in-out;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
}
.overview {
padding: 50px 0 80px;
}
.overview-column {
height: 495px;
position: relative;
overflow: hidden;
a {
display: block;
height: 100%;
}
i {
font-size: 80px;
vertical-align: bottom;
margin: 0 10px 0 0;
}
.icon-diagonal-arrow {
position: absolute;
right: 20px;
top: 20px;
margin: 0;
color: #fff;
font-size: 20px;
z-index: 9;
display: none;
}
img {
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.hover-cont {
left: 58px;
width: 485px;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
z-index: 9;
h3 {
color: #fff;
margin: 0 0 30px;
}
p {
color: #fff;
}
}
&:hover {
.icon-diagonal-arrow {
display: block;
}
}
.hover-background {
position: absolute;
width: 100%;
height: 100%;
background: $highlight-color;
}
}
.fixed-bg {
background-attachment: fixed;
}
.what-virtualx {
background-image: url('../img/startup-photos-7356.jpg');
background-size: cover;
position: relative;
z-index: 9;
padding: 0 0 50px;
&:before {
content: "";
position: absolute;
background: url(../img/sec-before.png) no-repeat;
width: 125px;
height: 186px;
background-size: contain;
top: -80px;
left: 30px;
z-index: 9;
-webkit-animation: rotate infinite 30s linear;
-moz-animation: rotate infinite 30s linear;
animation: rotate infinite 30s linear;
}
}
.box-content {
background: #cb022c;
width: 478px;
color: #fff;
padding: 60px 25px 30px;
position: relative;
top: -40px;
}
.sub-text {
margin: 0 0 40px;
display: block;
font-size: 24px;
color: #9a9a9a;
}
.milestones {
color: #fff;
i {
position: absolute;
top: 0;
left: 0;
font-size: 100px;
display: inline-block;
vertical-align: middle;
}
h2 {
position: relative;
padding: 15px 0 0 125px;
margin: 0 0 40px;
}
.count-wrap {
margin: 0 0 30px;
}
.count {
font-size: 100px;
font-weight: bold;
line-height: 100px;
display: inline-block;
}
.red {
@extend .count;
}
span {
font-size: 20px;
font-weight: normal;
display: block;
}
}
.demo-account {
&:before {
content: "";
position: absolute;
background: url(../img/sec-before.png) no-repeat;
width: 125px;
height: 186px;
background-size: contain;
top: -80px;
right: 30px;
z-index: 9;
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
-webkit-animation: rotate infinite 30s linear;
-moz-animation: rotate infinite 30s linear;
animation: rotate infinite 30s linear;
}
position: relative;
padding: 60px 0 50px;
background: #261b1b;
color: #fff;
.tabs-content {
background: transparent;
border: none;
}
.tab-bg {
height: 630px;
position: relative;
>img {
position: absolute;
left: -160px;
}
}
.left-area {
display: inline-block;
vertical-align: middle;
position: relative;
margin: 60px 0 0 13px;
width: 600px;
}
.right-area {
display: inline-block;
vertical-align: middle;
width: 360px;
color: #fff;
margin: 0 0 0 155px;
.title {
font-size: 100px;
font-weight: bold;
line-height: 100px;
display: inline-block;
margin: 0 0 10px;
}
p {
margin: 0;
span {
color: #7a716f;
}
}
.button {
margin: 20px 0 0;
}
}
.tab-links {
position: relative;
top: -105px;
.tabs {
background: transparent;
border: none;
li {
position: relative;
float: none;
display: inline-block;
margin-right: -4px;
&:before {
content: "";
position: absolute;
height: 3px;
background: #574f4d;
width: 100%;
left: 0;
right: 0;
top: 0;
}
a {
background: transparent;
border: none;
padding: 25px 35px 0;
font-size: 18px;
color: #fff;
position: relative;
outline: 0;
&:before {
content: "";
position: absolute;
width: 16px;
height: 16px;
background: #574f4d;
border-radius: 50%;
top: -7px;
left: 0;
right: 0;
margin: auto;
}
}
&.is-active {
a:before {
background: #cb022c;
}
}
}
}
}
}
.fade-title {
font-size: 250px;
font-weight: bold;
opacity: 0.04;
text-align: center;
}
.unique-feature {
.content {
z-index: 3;
position: relative;
&:after {
position: absolute;
background: url(../img/sec-before.png) no-repeat;
width: 125px;
height: 186px;
background-size: contain;
bottom: 80px;
left: 30px;
z-index: 9;
content: "";
-webkit-animation: rotate infinite 30s linear;
-moz-animation: rotate infinite 30s linear;
animation: rotate infinite 30s linear;
}
}
&:before {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 160px;
background-color: #fff;
z-index: 2;
}
background-image: url(../img/unique-features.jpg);
background-repeat: no-repeat;
background-size: cover;
color: #fff;
p {
font-size: 24px;
line-height: 40px;
}
.header-area {
border: solid 1px rgba(255, 255, 255, 0.1);
div {
padding: 30px 0;
font-size: 25px;
img {
vertical-align: middle;
margin-right: 30px;
}
&+div {
border-top: solid 1px rgba(255, 255, 255, 0.1);
}
}
}
.footer-area {
background: #c1032b;
height: calc(100% - 197px);
padding: 35px 25px 20px;
&.even {
background: #d4032f;
}
}
}
.service {
padding: 50px 0 30px;
h2 {
margin-bottom: 0;
}
.title-image {
margin: 0 0 15px;
img {
display: inline-block;
vertical-align: middle;
width: 65px;
height: auto;
margin-right: 15px;
}
h6 {
display: inline-block;
vertical-align: middle;
width: calc(100% - 85px);
}
}
p {
a {
display: inline-block;
}
}
}
.plans-price {
background: #261b1b;
color: #fff;
padding: 70px 0;
h1 {
margin-bottom: 0;
}
em {
display: inline-block;
padding: 15px 0 0;
font-size: 14px;
span {
color: #cb022c;
}
}
.sub-text {
margin: 15px 0 60px;
}
}
.custom-gutter-2 {
margin: 0 -33px;
}
.custom-gutter-2 .large-4 {
width: calc(33.33% - 66px);
margin-left: 33px;
margin-right: 33px;
}
.price {
overflow: inherit;
padding: 5px 0 20px;
position: relative;
text-align: center;
border: none;
transition: all ease 0.3s;
&:hover {
background: #cb022c;
color: #fff;
.card-price {
color: #fff;
sup {
color: #fff;
}
}
.button {
background: #fff;
color: #000;
}
.card-icon {
i {
color: #fff;
}
}
}
.badge {
position: absolute;
top: -8px;
right: 30px;
background: #fd7512;
border-radius: 0;
width: 57px;
height: 31px;
font-size: 12px;
padding: 7px 10px;
line-height: 1.2;
span {
position: relative;
z-index: 9;
display: block;
&:after {
content: "";
border-style: solid;
border-width: 21px 28.5px 0 28.5px;
border-color: #fd7412 transparent transparent transparent;
position: absolute;
left: -10px;
right: 0;
bottom: -17px;
z-index: -1;
}
}
&:before,
&:after {
content: "";
position: absolute;
top: 0;
width: 0;
height: 0;
border-style: solid;
}
&:before {
left: -7px;
border-width: 0 0 7px 7px;
border-color: transparent transparent #e26000 transparent;
}
&:after {
right: -7px;
border-width: 7px 0 0 7px;
border-color: transparent transparent transparent #e26000;
}
}
.card-divider {
background: transparent;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
h4 {
font-size: 24px;
}
}
.card-icon {
min-height: 111px;
border-bottom: solid 1px rgba(0, 0, 0, 0.1);
i {
display: block;
width: 100%;
color: #cb022c;
font-size: 88px;
}
&+.card-section {
margin: 0 0;
}
}
ul {
list-style: none;
margin: 0 0 15px;
padding: 0;
li {
line-height: 35px;
margin: 0 -45px;
padding: 0 45px;
&+li {
border-top: solid 1px rgba(0, 0, 0, 0.1);
}
}
}
.card-section {
padding: 0 35px;
strong {
display: block;
font-size: 24px;
font-weight: normal;
margin: 0 0 10px;
}
.content {
padding: 33px 0 10px;
}
}
.card-price {
font-size: 50px;
color: #cb022c;
sup {
font-size: 25px;
color: #000;
}
}
}
.benefits {
position: relative;
&:before {
content: "";
position: absolute;
background: url(../img/sec-before.png) no-repeat;
width: 125px;
height: 186px;
background-size: contain;
top: -80px;
right: 30px;
z-index: 9;
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
-webkit-animation: rotate infinite 30s linear;
-moz-animation: rotate infinite 30s linear;
animation: rotate infinite 30s linear;
}
padding: 70px 0 30px;
.title {
font-size: 40px;
margin: 0 0 20px;
}
.benefit-box {
margin-top: 35px;
}
}
.client {
padding: 35px 0;
border-top: solid 1px #f2f2f2;
.client-list {
ul {
margin: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
list-style: none;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin: 0 -30px;
-ms-flex-line-pack: center;
align-content: center;
li {
padding: 5px 0;
display: inline-block;
vertical-align: middle;
border: solid 1px #dedbdb;
width: 20%;
margin: 0 30px;
text-align: center;
}
}
}
}
footer {
.cell {
position: relative;
}
padding: 50px 0;
background-color: #261b1b;
p {
margin: 0 0 7px;
font-size: 18px;
color: #fff;
}
a {
color: #574f4d;
font-size: 18px;
}
.access {
margin: 15px 0 0;
}
.form-wrap {
@include placeholder {
font-size: 13px;
}
input {
padding-bottom: 0;
position: relative;
z-index: 9;
&:focus,
&:valid {
~label {
opacity: 0.8;
font-size: 12px;
transform: translate3d(0, -12px, 0);
}
}
}
position: absolute;
left: 50px;
right: 0;
padding: 20px 25px;
.title {
margin: 0 0 10px;
font-size: 24px;
color: #fff;
}
.cell {
padding: 0;
}
.button {
background-color: #261b1b;
}
}
.form-wrap label {
transform: translate3d(0, 5px, 0);
position: absolute;
color: #fff;
top: 0;
transition: 0.2s ease all;
-moz-transition: 0.2s ease all;
-webkit-transition: 0.2s ease all;
}
}
.sub-footer {
font-size: 12px;
color: #574f4d;
padding: 25px 0;
}
#search-block {
display: none;
position: absolute;
bottom: 18px;
right: 255px;
input[type="search"] {
margin: 0;
padding-right: 40px;
}
span.search-btn {
position: absolute;
top: 0;
right: 0;
width: 39px;
height: 39px;
&:after {
content: "\e969";
font-family: 'virtualx' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: absolute;
left: 0;
right: 3px;
top: 1px;
bottom: 0;
line-height: 39px;
text-align: center;
}
}
input[type="submit"] {
background: none;
text-indent: -9999px;
border: none;
padding: 0;
position: relative;
z-index: 1;
outline: 0;
width: 39px;
height: 39px;
cursor: pointer;
}
}
@keyframes floater {
0% {
transform: translate3d(0px, -10px, 0px);
}
50% {
transform: translate3d(0px, 0px, 0px);
}
100% {
transform: translate3d(0px, -10px, 0px);
}
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
\ No newline at end of file
@media(max-width: 1500px) {
.what-virtualx:before,
.demo-account:before,
.unique-feature .content:after,
.benefits:before {
display: none;
}
}
@media(min-width: 1201px) and(max-width: 1700px) {
.carousel figure.orbit-figure .orbit-caption {
left: 50px;
strong {
font-size: 100px;
}
}
.fade-title {
font-size: 150px;
}
}
@media(min-width: 768px) and(max-width: 1200px) {
h1 {
font-size: 32px;
line-height: normal;
margin-bottom: 35px;
}
h2 {
font-size: 32px;
margin: 0 0 15px;
}
h6 {
font-size: 20px;
line-height: normal;
}
p {
font-size: 17px;
line-height: normal;
}
.carousel .icon {
font-size: 30px;
}
.carousel figure.orbit-figure {
.orbit-caption {
left: 25px;
width: calc(100% - 50px);
ul.number-list li {
font-size: 17px;
padding: 0 10px;
}
strong {
font-size: 40px;
margin-bottom: 10px;
display: block;
}
h2 {
font-size: 20px;
font-weight: 500;
line-height: normal;
}
ul li {
font-size: 15px;
padding: 0 10px 0 20px;
}
}
}
.carousel figure.orbit-figure .orbit-caption .button {
font-size: 18px;
}
.carousel .orbit-controls {
top: inherit;
transform: inherit;
bottom: 0;
right: 50px;
}
.carousel img {
height: auto;
}
.overview-column {
height: 400px;
.hover-cont {
left: 25px;
right: 25px;
width: auto;
}
}
.demo-account {
h2 {
text-align: center;
}
.tab-bg {
height: auto;
>img {
left: 0;
width: 700px;
right: 0;
margin: auto;
}
}
.left-area {
margin: 58px 0 0 2px;
width: 100%;
text-align: center;
img {
width: 410px;
}
}
.right-area {
width: 100%;
margin: 115px 0 30px;
text-align: center;
.title {
font-size: 20px;
line-height: normal;
}
}
.tabs-panel {
padding: 0;
}
.tab-links {
margin: 30px 0 0;
text-align: center;
top: 0;
.tabs li a {
padding: 25px 35px 0;
font-size: 14px;
}
}
}
.fade-title {
font-size: 90px;
}
.unique-feature {
padding-bottom: 50px;
&:before {
display: none;
}
}
footer {
[class*=large-].cell {
width: calc(50% - 1.875rem);
margin-bottom: 15px;
}
.form-wrap {
position: static;
}
}
.custom-gutter-2 .large-4 {
width: calc(33.33% - 66px);
}
}
@media (min-width: 1025px) {
body.is-reveal-open {
padding-right: 17px;
}
footer .grid-margin-x {
>.large-2 {
width: calc(16.66667% - 1.875rem);
}
>.large-3 {
width: calc(25% - 1.875rem);
}
>.large-4 {
width: calc(33.33333% - 1.875rem);
}
}
}
@media (max-width: 767px) {
nav.off-canvas.is-open {
transform: translate(0, 0)
}
.position-right {
width: 200px;
}
.overview {
padding: 20px 0 60px;
}
nav {
min-width: 200px;
.menu li a {
padding: 7px 0px;
font-size: 18px;
i {
padding-right: 35px;
font-size: 20px;
}
}
}
h1 {
font-size: 22px;
line-height: normal;
margin-bottom: 25px;
}
h2 {
font-size: 30px;
margin: 0 0 10px;
}
h6 {
font-size: 18px;
line-height: normal;
}
p {
font-size: 16px;
line-height: normal;
}
.custom-gutter .medium-6 {
width: calc(100% - 10px);
}
.overview-column {
height: 320px;
.hover-cont {
left: 20px;
width: calc(100% - 40px);
}
}
.box-content {
width: 100%;
padding: 40px 15px 20px;
}
.milestones {
h2 {
padding: 0 0 0 70px;
margin: 0 0 10px;
line-height: normal;
}
i {
font-size: 50px;
}
.count {
font-size: 60px;
line-height: normal;
.red {
font-size: 60px;
line-height: normal;
}
}
.count-wrap {
margin: 0 0 15px;
}
}
#search-block {
display: none;
position: absolute;
bottom: inherit;
top: -2px;
right: 110px;
}
header .form-wrap {
left: 0;
}
.demo-account {
h2 {
text-align: center;
}
padding: 30px 0;
.tab-bg {
height: auto;
>img {
left: 0;
width: 300px;
right: 0;
margin: auto;
}
}
.left-area {
margin: 25px 0 0 2px;
width: 100%;
text-align: center;
img {
width: 177px;
}
}
.right-area {
width: 100%;
margin: 35px 0 0;
text-align: center;
.title {
font-size: 20px;
line-height: normal;
}
}
.tabs-panel {
padding: 0;
}
.tab-links {
margin: 30px 0 0;
text-align: center;
top: 0;
.tabs li a {
padding: 25px 7px 0;
font-size: 14px;
}
}
}
.fade-title {
font-size: 35px;
}
.unique-feature {
padding-bottom: 40px;
.header-area div {
padding: 15px 0;
font-size: 18px;
}
p {
font-size: 16px;
line-height: normal;
}
.footer-area {
height: auto;
padding: 20px 15px 10px;
}
}
.service {
padding: 25px 0;
.title-image {
margin: 0 0 10px;
}
}
.unique-feature:before {
display: none;
}
.sub-text {
font-size: 20px;
line-height: normal;
margin: 0 0 20px;
}
.plans-price {
padding: 30px 0;
.sub-text {
margin: 0 0 30px;
}
em {
padding: 5px 0 0;
line-height: normal;
}
}
.price {
.card-price {
font-size: 30px;
sup {
font-size: 20px;
}
}
.card-divider h4 {
font-size: 20px;
}
.card-section {
.content {
padding: 20px 0 5px;
}
strong {
font-size: 20px;
}
}
}
.benefits {
padding: 30px 0 0;
.benefit-box {
margin-top: 0;
}
.title {
font-size: 30px;
margin: 0 0 10px;
}
}
ul.def-list {
margin: 0 0 20px;
li {
line-height: normal;
font-size: 16px;
&:after {
top: 5px;
}
}
}
.client .client-list ul {
margin: 0 -5px;
flex-wrap: wrap;
li {
margin: 0 10px 10px;
width: calc(50% - 20px);
}
}
footer {
padding: 20px 0;
a {
font-size: 16px;
}
.form-wrap {
position: static;
margin: 25px 0 0;
}
}
.orbit-caption,
.orbit-controls {
display: none;
}
.carousel img {
height: auto;
}
.carousel .icon {
font-size: 20px;
bottom: 0;
}
.custom-gutter-2 {
margin: 0
}
.custom-gutter-2 .large-4 {
width: 100%;
margin-left: 0;
margin-right: 0;
}
}
@media (min-width: 640px) and (max-width: 767px) {
.custom-gutter .medium-6 {
width: calc(50% - 10px);
}
}
@media(max-width: 640px) {
header {
padding-bottom: 0;
.navigation-wrap {
order: 1;
width: 100%;
margin: 0;
text-align: right;
}
.logo {
order: 2;
position: relative;
top: -20px;
img {
width: 70%;
}
}
.login {
margin: 0 0 0 10px;
}
.top-block {
position: relative;
flex-wrap: wrap;
.hamburger-menu {
position: absolute;
bottom: 20px;
right: 0;
}
}
nav {
margin-top: 62px;
right: 0;
.menu.vertical {
text-align: left;
}
}
&.small {
.logo {
img {
max-width: inherit;
}
}
}
}
}
\ No newline at end of file
// Foundation for Sites Settings
// -----------------------------
//
// Table of Contents:
//
// 1. Global
// 2. Breakpoints
// 3. The Grid
// 4. Base Typography
// 5. Typography Helpers
// 6. Abide
// 7. Accordion
// 8. Accordion Menu
// 9. Badge
// 10. Breadcrumbs
// 11. Button
// 12. Button Group
// 13. Callout
// 14. Card
// 15. Close Button
// 16. Drilldown
// 17. Dropdown
// 18. Dropdown Menu
// 19. Flexbox Utilities
// 20. Forms
// 21. Label
// 22. Media Object
// 23. Menu
// 24. Meter
// 25. Off-canvas
// 26. Orbit
// 27. Pagination
// 28. Progress Bar
// 29. Prototype Arrow
// 30. Prototype Border-Box
// 31. Prototype Border-None
// 32. Prototype Bordered
// 33. Prototype Display
// 34. Prototype Font-Styling
// 35. Prototype List-Style-Type
// 36. Prototype Overflow
// 37. Prototype Position
// 38. Prototype Rounded
// 39. Prototype Separator
// 40. Prototype Shadow
// 41. Prototype Sizing
// 42. Prototype Spacing
// 43. Prototype Text-Decoration
// 44. Prototype Text-Transformation
// 45. Prototype Text-Utilities
// 46. Responsive Embed
// 47. Reveal
// 48. Slider
// 49. Switch
// 50. Table
// 51. Tabs
// 52. Thumbnail
// 53. Title Bar
// 54. Tooltip
// 55. Top Bar
// 56. Xy Grid
@import 'util/util';
// 1. Global
// ---------
$global-font-size: 100%;
$global-width: rem-calc(1200);
$global-lineheight: 1.5;
$foundation-palette: ( primary: #1779ba, secondary: #767676, success: #3adb76, warning: #ffae00, alert: #cc4b37, );
$light-gray: #e6e6e6;
$medium-gray: #cacaca;
$dark-gray: #8a8a8a;
$black: #0a0a0a;
$white: #fefefe;
$body-background: $white;
$body-font-color: $black;
$body-font-family: 'Roboto',
sans-serif;
$body-antialiased: true;
$global-margin: 1rem;
$global-padding: 1rem;
$global-position: 1rem;
$global-weight-normal: normal;
$global-weight-bold: bold;
$global-radius: 0;
$global-menu-padding: 0.7rem 1rem;
$global-menu-nested-margin: 1rem;
$global-text-direction: ltr;
$global-flexbox: true;
$global-prototype-breakpoints: false;
$global-button-cursor: auto;
$global-color-pick-contrast-tolerance: 0;
$print-transparent-backgrounds: true;
@include add-foundation-colors;
// 2. Breakpoints
// --------------
$breakpoints: ( small: 0, medium: 640px, large: 1024px, xlarge: 1200px, xxlarge: 1440px, );
$print-breakpoint: large;
$breakpoint-classes: (small medium large);
// 3. The Grid
// -----------
$grid-row-width: $global-width;
$grid-column-count: 12;
$grid-column-gutter: ( small: 20px, medium: 30px, );
$grid-column-align-edge: true;
$grid-column-alias: 'columns';
$block-grid-max: 8;
// 4. Base Typography
// ------------------
$header-font-family: $body-font-family;
$header-font-weight: $global-weight-normal;
$header-font-style: normal;
$font-family-monospace: Consolas,
'Liberation Mono',
Courier,
monospace;
$header-color: inherit;
$header-lineheight: 1.4;
$header-margin-bottom: 0.5rem;
$header-styles: ( small: ( 'h1': ('font-size': 24), 'h2': ('font-size': 20), 'h3': ('font-size': 19), 'h4': ('font-size': 18), 'h5': ('font-size': 17), 'h6': ('font-size': 16), ), medium: ( 'h1': ('font-size': 48), 'h2': ('font-size': 40), 'h3': ('font-size': 31), 'h4': ('font-size': 25), 'h5': ('font-size': 20), 'h6': ('font-size': 16), ), );
$header-text-rendering: optimizeLegibility;
$small-font-size: 80%;
$header-small-font-color: $medium-gray;
$paragraph-lineheight: 1.6;
$paragraph-margin-bottom: 1rem;
$paragraph-text-rendering: optimizeLegibility;
$code-color: $black;
$code-font-family: $font-family-monospace;
$code-font-weight: $global-weight-normal;
$code-background: $light-gray;
$code-border: 1px solid $medium-gray;
$code-padding: rem-calc(2 5 1);
$anchor-color: $primary-color;
$anchor-color-hover: scale-color($anchor-color, $lightness: -14%);
$anchor-text-decoration: none;
$anchor-text-decoration-hover: none;
$hr-width: $global-width;
$hr-border: 1px solid $medium-gray;
$hr-margin: rem-calc(20) auto;
$list-lineheight: $paragraph-lineheight;
$list-margin-bottom: $paragraph-margin-bottom;
$list-style-type: disc;
$list-style-position: outside;
$list-side-margin: 1.25rem;
$list-nested-side-margin: 1.25rem;
$defnlist-margin-bottom: 1rem;
$defnlist-term-weight: $global-weight-bold;
$defnlist-term-margin-bottom: 0.3rem;
$blockquote-color: $dark-gray;
$blockquote-padding: rem-calc(9 20 0 19);
$blockquote-border: 1px solid $medium-gray;
$cite-font-size: rem-calc(13);
$cite-color: $dark-gray;
$cite-pseudo-content: '\2014 \0020';
$keystroke-font: $font-family-monospace;
$keystroke-color: $black;
$keystroke-background: $light-gray;
$keystroke-padding: rem-calc(2 4 0);
$keystroke-radius: $global-radius;
$abbr-underline: 1px dotted $black;
// 5. Typography Helpers
// ---------------------
$lead-font-size: $global-font-size * 1.25;
$lead-lineheight: 1.6;
$subheader-lineheight: 1.4;
$subheader-color: $dark-gray;
$subheader-font-weight: $global-weight-normal;
$subheader-margin-top: 0.2rem;
$subheader-margin-bottom: 0.5rem;
$stat-font-size: 2.5rem;
// 6. Abide
// --------
$abide-inputs: true;
$abide-labels: true;
$input-background-invalid: get-color(alert);
$form-label-color-invalid: get-color(alert);
$input-error-color: get-color(alert);
$input-error-font-size: rem-calc(12);
$input-error-font-weight: $global-weight-bold;
// 7. Accordion
// ------------
$accordion-background: $white;
$accordion-plusminus: true;
$accordion-title-font-size: rem-calc(12);
$accordion-item-color: $primary-color;
$accordion-item-background-hover: $light-gray;
$accordion-item-padding: 1.25rem 1rem;
$accordion-content-background: $white;
$accordion-content-border: 1px solid $light-gray;
$accordion-content-color: $body-font-color;
$accordion-content-padding: 1rem;
// 8. Accordion Menu
// -----------------
$accordionmenu-padding: $global-menu-padding;
$accordionmenu-nested-margin: $global-menu-nested-margin;
$accordionmenu-submenu-padding: $accordionmenu-padding;
$accordionmenu-arrows: true;
$accordionmenu-arrow-color: $primary-color;
$accordionmenu-item-background: null;
$accordionmenu-border: null;
$accordionmenu-submenu-toggle-background: null;
$accordion-submenu-toggle-border: $accordionmenu-border;
$accordionmenu-submenu-toggle-width: 40px;
$accordionmenu-submenu-toggle-height: $accordionmenu-submenu-toggle-width;
$accordionmenu-arrow-size: 6px;
// 9. Badge
// --------
$badge-background: $primary-color;
$badge-color: $white;
$badge-color-alt: $black;
$badge-palette: $foundation-palette;
$badge-padding: 0.3em;
$badge-minwidth: 2.1em;
$badge-font-size: 0.6rem;
// 10. Breadcrumbs
// ---------------
$breadcrumbs-margin: 0 0 $global-margin 0;
$breadcrumbs-item-font-size: rem-calc(11);
$breadcrumbs-item-color: $primary-color;
$breadcrumbs-item-color-current: $black;
$breadcrumbs-item-color-disabled: $medium-gray;
$breadcrumbs-item-margin: 0.75rem;
$breadcrumbs-item-uppercase: true;
$breadcrumbs-item-separator: true;
$breadcrumbs-item-separator-item: '/';
$breadcrumbs-item-separator-item-rtl: '\\';
$breadcrumbs-item-separator-color: $medium-gray;
// 11. Button
// ----------
$button-font-family: inherit;
$button-padding: 0.85em 1em;
$button-margin: 0 0 $global-margin 0;
$button-fill: solid;
$button-background: $primary-color;
$button-background-hover: scale-color($button-background, $lightness: -15%);
$button-color: $white;
$button-color-alt: $black;
$button-radius: $global-radius;
$button-hollow-border-width: 1px;
$button-sizes: ( tiny: 0.6rem, small: 0.75rem, default: 0.9rem, large: 1.25rem, );
$button-palette: $foundation-palette;
$button-opacity-disabled: 0.25;
$button-background-hover-lightness: -20%;
$button-hollow-hover-lightness: -50%;
$button-transition: background-color 0.25s ease-out,
color 0.25s ease-out;
// 12. Button Group
// ----------------
$buttongroup-margin: 1rem;
$buttongroup-spacing: 1px;
$buttongroup-child-selector: '.button';
$buttongroup-expand-max: 6;
$buttongroup-radius-on-each: true;
// 13. Callout
// -----------
$callout-background: $white;
$callout-background-fade: 85%;
$callout-border: 1px solid rgba($black, 0.25);
$callout-margin: 0 0 1rem 0;
$callout-padding: 1rem;
$callout-font-color: $body-font-color;
$callout-font-color-alt: $body-background;
$callout-radius: $global-radius;
$callout-link-tint: 30%;
// 14. Card
// --------
$card-background: $white;
$card-font-color: $body-font-color;
$card-divider-background: $light-gray;
$card-border: 1px solid $light-gray;
$card-shadow: none;
$card-border-radius: $global-radius;
$card-padding: $global-padding;
$card-margin-bottom: $global-margin;
// 15. Close Button
// ----------------
$closebutton-position: right top;
$closebutton-offset-horizontal: ( small: 0.66rem, medium: 1rem, );
$closebutton-offset-vertical: ( small: 0.33em, medium: 0.5rem, );
$closebutton-size: ( small: 1.5em, medium: 2em, );
$closebutton-lineheight: 1;
$closebutton-color: $dark-gray;
$closebutton-color-hover: $black;
// 16. Drilldown
// -------------
$drilldown-transition: transform 0.15s linear;
$drilldown-arrows: true;
$drilldown-padding: $global-menu-padding;
$drilldown-nested-margin: 0;
$drilldown-background: $white;
$drilldown-submenu-padding: $drilldown-padding;
$drilldown-submenu-background: $white;
$drilldown-arrow-color: $primary-color;
$drilldown-arrow-size: 6px;
// 17. Dropdown
// ------------
$dropdown-padding: 1rem;
$dropdown-background: $body-background;
$dropdown-border: 1px solid $medium-gray;
$dropdown-font-size: 1rem;
$dropdown-width: 300px;
$dropdown-radius: $global-radius;
$dropdown-sizes: ( tiny: 100px, small: 200px, large: 400px, );
// 18. Dropdown Menu
// -----------------
$dropdownmenu-arrows: true;
$dropdownmenu-arrow-color: $anchor-color;
$dropdownmenu-arrow-size: 6px;
$dropdownmenu-arrow-padding: 1.5rem;
$dropdownmenu-min-width: 200px;
$dropdownmenu-background: $white;
$dropdownmenu-submenu-background: $dropdownmenu-background;
$dropdownmenu-padding: $global-menu-padding;
$dropdownmenu-nested-margin: 0;
$dropdownmenu-submenu-padding: $dropdownmenu-padding;
$dropdownmenu-border: 1px solid $medium-gray;
$dropdown-menu-item-color-active: get-color(primary);
$dropdown-menu-item-background-active: transparent;
// 19. Flexbox Utilities
// ---------------------
$flex-source-ordering-count: 6;
$flexbox-responsive-breakpoints: true;
// 20. Forms
// ---------
$fieldset-border: 1px solid $medium-gray;
$fieldset-padding: rem-calc(20);
$fieldset-margin: rem-calc(18 0);
$legend-padding: rem-calc(0 3);
$form-spacing: rem-calc(16);
$helptext-color: $black;
$helptext-font-size: rem-calc(13);
$helptext-font-style: italic;
$input-prefix-color: $black;
$input-prefix-background: $light-gray;
$input-prefix-border: 1px solid $medium-gray;
$input-prefix-padding: 1rem;
$form-label-color: $black;
$form-label-font-size: rem-calc(14);
$form-label-font-weight: $global-weight-normal;
$form-label-line-height: 1.8;
$select-background: $white;
$select-triangle-color: $dark-gray;
$select-radius: $global-radius;
$input-color: $black;
$input-placeholder-color: $white;
$input-font-family: inherit;
$input-font-size: rem-calc(16);
$input-font-weight: $global-weight-normal;
$input-line-height: $global-lineheight;
$input-background: $white;
$input-background-focus: $white;
$input-background-disabled: $light-gray;
$input-border: 1px solid $medium-gray;
$input-border-focus: 1px solid $dark-gray;
$input-padding: $form-spacing / 2;
$input-shadow: inset 0 1px 2px rgba($black, 0.1);
$input-shadow-focus: 0 0 5px $medium-gray;
$input-cursor-disabled: not-allowed;
$input-transition: box-shadow 0.5s,
border-color 0.25s ease-in-out;
$input-number-spinners: true;
$input-radius: $global-radius;
$form-button-radius: $global-radius;
// 21. Label
// ---------
$label-background: $primary-color;
$label-color: $white;
$label-color-alt: $black;
$label-palette: $foundation-palette;
$label-font-size: 0.8rem;
$label-padding: 0.33333rem 0.5rem;
$label-radius: $global-radius;
// 22. Media Object
// ----------------
$mediaobject-margin-bottom: $global-margin;
$mediaobject-section-padding: $global-padding;
$mediaobject-image-width-stacked: 100%;
// 23. Menu
// --------
$menu-margin: 0;
$menu-nested-margin: $global-menu-nested-margin;
$menu-items-padding: $global-menu-padding;
$menu-simple-margin: 1rem;
$menu-item-color-active: $white;
$menu-item-background-active: get-color(primary);
$menu-icon-spacing: 0.25rem;
$menu-item-background-hover: $light-gray;
$menu-state-back-compat: true;
$menu-centered-back-compat: true;
$menu-icons-back-compat: true;
// 24. Meter
// ---------
$meter-height: 1rem;
$meter-radius: $global-radius;
$meter-background: $medium-gray;
$meter-fill-good: $success-color;
$meter-fill-medium: $warning-color;
$meter-fill-bad: $alert-color;
// 25. Off-canvas
// --------------
$offcanvas-sizes: ( small: 250px, );
$offcanvas-vertical-sizes: ( small: 250px, );
$offcanvas-background: $light-gray;
$offcanvas-shadow: 0 0 10px rgba($black, 0.7);
$offcanvas-inner-shadow-size: 20px;
$offcanvas-inner-shadow-color: rgba($black, 0.25);
$offcanvas-overlay-zindex: 11;
$offcanvas-push-zindex: 12;
$offcanvas-overlap-zindex: 13;
$offcanvas-reveal-zindex: 12;
$offcanvas-transition-length: 0.5s;
$offcanvas-transition-timing: ease;
$offcanvas-fixed-reveal: true;
$offcanvas-exit-background: rgba($white, 0.25);
$maincontent-class: 'off-canvas-content';
// 26. Orbit
// ---------
$orbit-bullet-background: $medium-gray;
$orbit-bullet-background-active: $dark-gray;
$orbit-bullet-diameter: 1.2rem;
$orbit-bullet-margin: 0.1rem;
$orbit-bullet-margin-top: 0.8rem;
$orbit-bullet-margin-bottom: 0.8rem;
$orbit-caption-background:transparent;
$orbit-caption-padding: 1rem;
$orbit-control-background-hover: rgba($black, 0.5);
$orbit-control-padding: 1rem;
$orbit-control-zindex: 10;
// 27. Pagination
// --------------
$pagination-font-size: rem-calc(14);
$pagination-margin-bottom: $global-margin;
$pagination-item-color: $black;
$pagination-item-padding: rem-calc(3 10);
$pagination-item-spacing: rem-calc(1);
$pagination-radius: $global-radius;
$pagination-item-background-hover: $light-gray;
$pagination-item-background-current: $primary-color;
$pagination-item-color-current: $white;
$pagination-item-color-disabled: $medium-gray;
$pagination-ellipsis-color: $black;
$pagination-mobile-items: false;
$pagination-mobile-current-item: false;
$pagination-arrows: true;
// 28. Progress Bar
// ----------------
$progress-height: 1rem;
$progress-background: $medium-gray;
$progress-margin-bottom: $global-margin;
$progress-meter-background: $primary-color;
$progress-radius: $global-radius;
// 29. Prototype Arrow
// -------------------
$prototype-arrow-directions: ( down, up, right, left);
$prototype-arrow-size: 0.4375rem;
$prototype-arrow-color: $black;
// 30. Prototype Border-Box
// ------------------------
$prototype-border-box-breakpoints: $global-prototype-breakpoints;
// 31. Prototype Border-None
// -------------------------
$prototype-border-none-breakpoints: $global-prototype-breakpoints;
// 32. Prototype Bordered
// ----------------------
$prototype-bordered-breakpoints: $global-prototype-breakpoints;
$prototype-border-width: rem-calc(1);
$prototype-border-type: solid;
$prototype-border-color: $medium-gray;
// 33. Prototype Display
// ---------------------
$prototype-display-breakpoints: $global-prototype-breakpoints;
$prototype-display: ( inline, inline-block, block, table, table-cell);
// 34. Prototype Font-Styling
// --------------------------
$prototype-font-breakpoints: $global-prototype-breakpoints;
$prototype-wide-letter-spacing: rem-calc(4);
$prototype-font-normal: $global-weight-normal;
$prototype-font-bold: $global-weight-bold;
// 35. Prototype List-Style-Type
// -----------------------------
$prototype-list-breakpoints: $global-prototype-breakpoints;
$prototype-style-type-unordered: ( disc, circle, square);
$prototype-style-type-ordered: ( decimal, lower-alpha, lower-latin, lower-roman, upper-alpha, upper-latin, upper-roman);
// 36. Prototype Overflow
// ----------------------
$prototype-overflow-breakpoints: $global-prototype-breakpoints;
$prototype-overflow: ( visible, hidden, scroll);
// 37. Prototype Position
// ----------------------
$prototype-position-breakpoints: $global-prototype-breakpoints;
$prototype-position: ( static, relative, absolute, fixed);
$prototype-position-z-index: 975;
// 38. Prototype Rounded
// ---------------------
$prototype-rounded-breakpoints: $global-prototype-breakpoints;
$prototype-border-radius: rem-calc(3);
// 39. Prototype Separator
// -----------------------
$prototype-separator-breakpoints: $global-prototype-breakpoints;
$prototype-separator-align: center;
$prototype-separator-height: rem-calc(2);
$prototype-separator-width: 3rem;
$prototype-separator-background: $primary-color;
$prototype-separator-margin-top: $global-margin;
// 40. Prototype Shadow
// --------------------
$prototype-shadow-breakpoints: $global-prototype-breakpoints;
$prototype-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16),
0 2px 10px 0 rgba(0, 0, 0, .12);
// 41. Prototype Sizing
// --------------------
$prototype-sizing-breakpoints: $global-prototype-breakpoints;
$prototype-sizing: ( width, height);
$prototype-sizes: ( 25: 25%, 50: 50%, 75: 75%, 100: 100%);
// 42. Prototype Spacing
// ---------------------
$prototype-spacing-breakpoints: $global-prototype-breakpoints;
$prototype-spacers-count: 3;
// 43. Prototype Text-Decoration
// -----------------------------
$prototype-decoration-breakpoints: $global-prototype-breakpoints;
$prototype-text-decoration: ( overline, underline, line-through, );
// 44. Prototype Text-Transformation
// ---------------------------------
$prototype-transformation-breakpoints: $global-prototype-breakpoints;
$prototype-text-transformation: ( lowercase, uppercase, capitalize);
// 45. Prototype Text-Utilities
// ----------------------------
$prototype-utilities-breakpoints: $global-prototype-breakpoints;
$prototype-text-overflow: ellipsis;
// 46. Responsive Embed
// --------------------
$responsive-embed-margin-bottom: rem-calc(16);
$responsive-embed-ratios: ( default: 4 by 3, widescreen: 16 by 9, );
// 47. Reveal
// ----------
$reveal-background: transparent;
$reveal-width: 800px;
$reveal-max-width: $global-width;
$reveal-padding: $global-padding;
$reveal-border: none;
$reveal-radius: $global-radius;
$reveal-zindex: 1005;
$reveal-overlay-background: rgba($black, 0.8);
// 48. Slider
// ----------
$slider-width-vertical: 0.5rem;
$slider-transition: all 0.2s ease-in-out;
$slider-height: 0.5rem;
$slider-background: $light-gray;
$slider-fill-background: $medium-gray;
$slider-handle-height: 1.4rem;
$slider-handle-width: 1.4rem;
$slider-handle-background: $primary-color;
$slider-opacity-disabled: 0.25;
$slider-radius: $global-radius;
// 49. Switch
// ----------
$switch-background: $medium-gray;
$switch-background-active: $primary-color;
$switch-height: 2rem;
$switch-height-tiny: 1.5rem;
$switch-height-small: 1.75rem;
$switch-height-large: 2.5rem;
$switch-radius: $global-radius;
$switch-margin: $global-margin;
$switch-paddle-background: $white;
$switch-paddle-offset: 0.25rem;
$switch-paddle-radius: $global-radius;
$switch-paddle-transition: all 0.25s ease-out;
// 50. Table
// ---------
$table-background: $white;
$table-color-scale: 5%;
$table-border: 1px solid smart-scale($table-background, $table-color-scale);
$table-padding: rem-calc(8 10 10);
$table-hover-scale: 2%;
$table-row-hover: darken($table-background, $table-hover-scale);
$table-row-stripe-hover: darken($table-background, $table-color-scale + $table-hover-scale);
$table-is-striped: true;
$table-striped-background: smart-scale($table-background, $table-color-scale);
$table-stripe: even;
$table-head-background: smart-scale($table-background, $table-color-scale / 2);
$table-head-row-hover: darken($table-head-background, $table-hover-scale);
$table-foot-background: smart-scale($table-background, $table-color-scale);
$table-foot-row-hover: darken($table-foot-background, $table-hover-scale);
$table-head-font-color: $body-font-color;
$table-foot-font-color: $body-font-color;
$show-header-for-stacked: false;
$table-stack-breakpoint: medium;
// 51. Tabs
// --------
$tab-margin: 0;
$tab-background: $white;
$tab-color: $primary-color;
$tab-background-active: $light-gray;
$tab-active-color: $primary-color;
$tab-item-font-size: rem-calc(12);
$tab-item-background-hover: $white;
$tab-item-padding: 1.25rem 1.5rem;
$tab-expand-max: 6;
$tab-content-background: $white;
$tab-content-border: $light-gray;
$tab-content-color: $body-font-color;
$tab-content-padding: 1rem;
// 52. Thumbnail
// -------------
$thumbnail-border: solid 4px $white;
$thumbnail-margin-bottom: $global-margin;
$thumbnail-shadow: 0 0 0 1px rgba($black, 0.2);
$thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5);
$thumbnail-transition: box-shadow 200ms ease-out;
$thumbnail-radius: $global-radius;
// 53. Title Bar
// -------------
$titlebar-background: $black;
$titlebar-color: $white;
$titlebar-padding: 0.5rem;
$titlebar-text-font-weight: bold;
$titlebar-icon-color: $white;
$titlebar-icon-color-hover: $medium-gray;
$titlebar-icon-spacing: 0.25rem;
// 54. Tooltip
// -----------
$has-tip-cursor: help;
$has-tip-font-weight: $global-weight-bold;
$has-tip-border-bottom: dotted 1px $dark-gray;
$tooltip-background-color: $black;
$tooltip-color: $white;
$tooltip-padding: 0.75rem;
$tooltip-max-width: 10rem;
$tooltip-font-size: $small-font-size;
$tooltip-pip-width: 0.75rem;
$tooltip-pip-height: $tooltip-pip-width * 0.866;
$tooltip-radius: $global-radius;
// 55. Top Bar
// -----------
$topbar-padding: 0.5rem;
$topbar-background: $light-gray;
$topbar-submenu-background: $topbar-background;
$topbar-title-spacing: 0.5rem 1rem 0.5rem 0;
$topbar-input-width: 200px;
$topbar-unstack-breakpoint: medium;
// 56. Xy Grid
// -----------
$xy-grid: true;
$grid-container: $global-width;
$grid-columns: 12;
$grid-margin-gutters: ( small: 20px, medium: 30px);
$grid-padding-gutters: $grid-margin-gutters;
$grid-container-padding: $grid-padding-gutters;
$grid-container-max: $global-width;
$xy-block-grid-max: 8;
$offcanvas-exit-background: rgba($black, 0.4);
$offcanvas-shadow: none;
\ No newline at end of file
@charset 'utf-8';
@import 'settings';
@import 'foundation';
@import 'motion-ui';
@include foundation-global-styles;
// @include foundation-grid;
// @include foundation-flex-grid;
//
@include foundation-xy-grid-classes;
@include foundation-typography;
@include foundation-button;
@include foundation-forms;
// @include foundation-range-input;
@include foundation-accordion;
@include foundation-accordion-menu;
@include foundation-badge;
@include foundation-breadcrumbs;
@include foundation-button-group;
@include foundation-callout;
@include foundation-card;
@include foundation-close-button;
@include foundation-menu;
@include foundation-menu-icon;
@include foundation-drilldown-menu;
@include foundation-dropdown;
@include foundation-dropdown-menu;
@include foundation-responsive-embed;
@include foundation-label;
@include foundation-media-object;
@include foundation-off-canvas;
@include foundation-orbit;
@include foundation-pagination;
@include foundation-progress-bar;
@include foundation-slider;
@include foundation-sticky;
@include foundation-reveal;
@include foundation-switch;
@include foundation-table;
@include foundation-tabs;
@include foundation-thumbnail;
@include foundation-title-bar;
@include foundation-tooltip;
@include foundation-top-bar;
@include foundation-visibility-classes;
@include foundation-float-classes;
@include foundation-flex-classes;
// @include foundation-prototype-classes;
@include motion-ui-transitions;
@include motion-ui-animations;
@import 'main';
@import 'responsive';
\ No newline at end of file
# You can delete this file. It's just here to make Git happy.
{{!-- This is the base layout for your project, and will be used on every page. --}}
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/png" href="{{root}}assets/img/favicon.png">
<title>VirtualX</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,900" rel="stylesheet">
<link rel="stylesheet" href="{{root}}assets/fonts/icon.css">
<link rel="stylesheet" href="{{root}}assets/css/app.css">
</head>
<body>
{{> header}} {{> body}}
<script src="{{root}}assets/js/app.js"></script>
</body>
</html>
\ No newline at end of file
<section class="carousel" id="home">
<div class="grid-container fluid">
<div class="orbit" role="region" aria-label="Favorite Space Pictures" data-orbit>
<div class="orbit-wrapper">
<div class="orbit-controls">
<button class="orbit-previous"><i class="icon-Banner-arrow"></i></button>
<button class="orbit-next"><i class="icon-Banner-arrow"></i></button>
</div>
<ul class="orbit-container">
<li class="is-active orbit-slide">
<figure class="orbit-figure img-overlay">
<img class="orbit-image" src="assets/img/woman-typing-writing-windows.jpg" alt="Space">
<figcaption class="orbit-caption">
<h2>The best software to conduct exams at schools, colleges, universities and companies</h2>
<strong>Virtual<span class="red">X</span> Pro</strong>
<ul class='tick-list'>
<li>Flexible</li>
<li>Reliable</li>
<li>Customizable </li>
<li>Scalable</li>
<li>Secure</li>
<li>Affordable</li>
<li>Modular</li>
</ul>
<a href="" class="button">Get VirtualX</a>
</figcaption>
</figure>
</li>
<li class="is-active orbit-slide">
<figure class="orbit-figure img-overlay">
<img class="orbit-image" src="assets/img/pexels-photo-509799.jpg" alt="Space">
<figcaption class="orbit-caption">
<h2>Most easy and scalable software to conduct exams at schools, colleges, universities and companies in 3 easy steps</h2>
<strong><span class="red">3</span>Easy Steps</strong>
<ul class="number-list">
<li>
<i class="icon-lock"></i> Sign Up
</li>
<li>
<i class="icon-price-wheel"></i> Customize
</li>
<li>
<i class="icon-rocket"></i> Launch
</li>
</ul>
<a href="" class="button">Get VirtualX</a>
</figcaption>
</figure>
</li>
</ul>
</div>
</div>
</div>
<div class="icon to-next">
<i class="icon-Banner-mouse"></i>
</div>
</section>
<section class="overview">
<div class="grid-container">
<h1>Virtual<span class="red">X</span> Pro is a premium <span class="red">online exam system</span> which enable users to setup and conduct examinations in an efficient manner and provide results instantaneously.</h1>
<div class="grid-x custom-gutter">
<div class="cell small-12 medium-6">
<a href="">
<div class="overview-column img-overlay">
<img src="assets/img/notes-macbook-study-conference.jpg" alt="">
<span class="hover-cont">
<h3><i class="icon-demo"></i>Demo</h3>
<p>
VirtualX is a fully automated exam management system which can significantly help your organization to improve the efficiency when conducting online examinations.
</p>
</span>
<div class="hover-background">
<i class="icon-diagonal-arrow"></i>
</div>
</div>
</a>
</div>
<div class="cell small-12 medium-6">
<a href="">
<div class="overview-column img-overlay">
<img src="assets/img/pexels-photo.jpg" alt="">
<span class="hover-cont">
<h3><i class="icon-support"></i>Support</h3>
<p>
We are there to help. Our committed VirtualX team will be always there to provide all assistance and support to our clients.
</p>
</span>
<div class="hover-background">
<i class="icon-diagonal-arrow"></i>
</div>
</div>
</a>
</div>
<div class="cell small-12 medium-6">
<a href="">
<div class="overview-column img-overlay">
<img src="assets/img/man-relax-couch-study.jpg" alt="">
<span class="hover-cont">
<h3><i class="icon-features-menu"></i>Tons of Features</h3>
<p>
VirtualX comes with tons of features and offers the perfect platform to conduct online exams, tests, quizzes and home works. This online test product can be used across all the organization types.
</p>
</span>
<div class="hover-background">
<i class="icon-diagonal-arrow"></i>
</div>
</div>
</a>
</div>
<div class="cell small-12 medium-6">
<a href="">
<div class="overview-column img-overlay">
<img src="assets/img/people-woman-coffee-meeting.jpg" alt="">
<span class="hover-cont">
<h3><i class="icon-pricetag-menu"></i>Pricing</h3>
<p>
VirtualX comes with perfectly affordable pricing options suitable for all types of client needs.
</p>
</span>
<div class="hover-background">
<i class="icon-diagonal-arrow"></i>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<section class="fixed-bg what-virtualx img-overlay">
<div class="grid-container">
<div class="box-content">
<h2>What is VirtualX?</h2>
<p>VirtualX is a web based online exam management system used to conduct effective evaluations at your company, school, college, university etc. VirtualX is an easy yet powerful online exam management software that caterers all your online examination
management requirements. The great thing about VirtualX is that it is backed up by a software company viz. PIT Solutions GmbH that is in business since 2000. The parent company make sure that VirtualX will evolve with much more great features
and be ready for future demands of the market.</p>
</div>
<div class="milestones">
<h2>
<i class="icon-success"></i> We have something to be proud of!
</h2>
<div class="grid-x grid-margin-x">
<div class="cell small-12 medium-6 large-3">
<div class="count-wrap">
<div class="count">20
</div><span class="red">+</span>
<span>Features</span>
</div>
<p>VirtualX comes with tons of features and offers the perfect platform to conduct online exams, tests, quizzes and home works. This online test product can be used across all the organization types.</p>
</div>
<div class="cell small-12 medium-6 large-3">
<div class="count-wrap">
<div class="count">14
</div><span class="red">+</span>
<span>Question Types</span>
</div>
<p>VirtualX provides various types of questions that supports various organization types.</p>
</div>
<div class="cell small-12 medium-6 large-3">
<div class="count-wrap">
<div class="count">6
</div><span class="red">+</span>
<span>Organization Types</span>
</div>
<p>VirtualX has the features that provide flexibility to support various types of organizations like school,college and university.</p>
</div>
<div class="cell small-12 medium-6 large-3">
<div class="count-wrap">
<div class="count">9
</div><span class="red">+</span>
<span>Report Types</span>
</div>
<p>VirtualX comes with tons of features and offers the perfect platform to conduct online exams, tests, quizzes and home works. This online test product can be used across all the organization types.</p>
</div>
</div>
</div>
</div>
</section>
<section class="demo-account" id="demo">
<div class="grid-container">
<h2><span class="red">Demo</span> User Accounts</h2>
<div class="tabs-content" data-tabs-content="account-tabs">
<div class="tab-bg">
<img src="assets/img/lap-bg.png" alt="">
<div class="tabs-panel is-active" id="panel1">
<div class="left-area">
<img src="assets/img/admin-img.jpg" alt="">
</div>
<div class="right-area">
<span class="title">Admin </span>
<p><span>Username:</span> admin</p>
<p><span>Password:</span> myvirtualx</p>
<a href="" class="button dark-hover">Access Demo</a>
</div>
</div>
<div class="tabs-panel" id="panel2">
<div class="left-area">
<img src="assets/img/examiner-img.jpg" alt="">
</div>
<div class="right-area">
<span class="title">Examiner </span>
<p><span>Username:</span> examiner</p>
<p><span>Password:</span> myvirtualx</p>
<a href="" class="button">Access Demo</a>
</div>
</div>
<div class="tabs-panel" id="panel3">
<div class="left-area">
<img src="assets/img/question-img.jpg" alt="">
</div>
<div class="right-area">
<span class="title">Question Setter </span>
<p><span>Username:</span>question_setter</p>
<p><span>Password:</span> myvirtualx</p>
<a href="" class="button">Access Demo</a>
</div>
</div>
<div class="tabs-panel" id="panel4">
<div class="left-area">
<img src="assets/img/student-img.jpg" alt="">
</div>
<div class="right-area">
<span class="title">Student</span>
<p><span>Username:</span>student</p>
<p><span>Password:</span> myvirtualx</p>
<a href="" class="button">Access Demo</a>
</div>
</div>
</div>
</div>
<div class="tab-links">
<ul class="tabs" data-tabs id="account-tabs">
<li class="tabs-title is-active"><a href="#panel1" aria-selected="true">Admin</a></li>
<li class="tabs-title"><a data-tabs-target="panel2" href="#panel2">Examiner</a></li>
<li class="tabs-title"><a data-tabs-target="panel3" href="#panel2">Question Setter</a></li>
<li class="tabs-title"><a data-tabs-target="panel4" href="#panel2">Student</a></li>
</ul>
</div>
</div>
</section>
<section class="unique-feature img-overlay fixed-bg" id="features">
<div class="fade-title">Unique Features</div>
<div class="content">
<div class="grid-container">
<p class="text-center">VirtualX offers the perfect platform to conduct online exams, tests and Quizzes. This online test product can be used across all the organization types. Some of the key features are listed below</p>
<br>
<div class="grid-x">
<div class="large-4 cell">
<div class="header-area text-center">
<div>
<img src="assets/img/exam.png" alt=""> Schedule Exams
</div>
<div><img src="assets/img/questions.png" alt="">Type of Questions</div>
</div>
<div class="footer-area">
<ul class="list-style">
<li>Role based access and security for users</li>
<li>Schedule exams to individual or group, notify examinee</li>
<li>Author and Organize questions</li>
<li>Supports 14 different types of questions</li>
<li>Supports to write formulas and equations</li>
<li>Secure delivery of questions during exam</li>
<li>Randomized presentation of question</li>
</ul>
</div>
</div>
<div class="large-4 cell">
<div class="header-area text-center">
<div> <img src="assets/img/organise.png" alt="">Organize</div>
<div><img src="assets/img/delivery.png" alt="">Secure Delivery</div>
</div>
<div class="footer-area even">
<ul class="list-style">
<li>Can able to create the questions in different modes</li>
<li>Support the creation of question bank</li>
<li>Can able to assign a question to question bank</li>
<li>Question can be tagged</li>
<li>Support the filtering of questions on the basis of question types, tags and question banks</li>
<li>Extension of time for the Homework</li>
<li>Support of negative marking in exams</li>
</ul>
</div>
</div>
<div class="large-4 cell">
<div class="header-area text-center">
<div><img src="assets/img/security.png" alt="">Security</div>
<div><img src="assets/img/equations.png" alt="">Equations</div>
</div>
<div class="footer-area">
<ul class="list-style">
<li>Generate Reports and Results</li>
<li>Graphical analysis</li>
<li>Easy mark based evaluation process</li>
<li>P Based Access Controls during Exam Attending</li>
<li>Manual evaluation for Descriptive type questions</li>
<li>Multiple language support</li>
<li>Support the creation of homework to a group</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="service" id="services">
<div class="grid-container">
<h2 class="text-center">Services</h2>
<span class="sub-text text-center">We offer 3 kinds of services to our clients</span>
<div class="grid-x grid-margin-x custom-gutter-2">
<div class="large-4 cell">
<div class="title-image">
<img src="assets/img/integration.png" alt="">
<h6>Integration with other Learning Management Systems</h6>
</div>
<p>
VirtualX includes a REST API for accessing and modifying data externally from the main application, in your own programs and scripts. You can always check the API documentation for using it.
</p>
</div>
<div class="large-4 cell">
<div class="title-image">
<img src="assets/img/host.png" alt="">
<h6>Hosted VirtualX</h6>
</div>
<p>We offer hosted solutions for VirtualX. We will host VirtualX at our hosting center located in Europe. Our hosted solution enable you to smoothly run VirtualX at your organization without worrying about hosting related issues. For more
details on pricing, please <a href="" class="red">contact us.</a></p>
</div>
<div class="large-4 cell">
<div class="title-image">
<img src="assets/img/customize.png" alt="">
<h6>Customizing VirtualX</h6>
</div>
<p>Although we are constantly enhancing VirtualX, your organization may have specific needs. In such cases, we could customize VirtialX specifically for your organization.To know more about how we can do this service for you. please <a href=""
class="red">contact us.</a>
</p>
</div>
</div>
</div>
</section>
<section class="plans-price" id="pricing">
<div class="grid-container">
<h1>Plans <span class="red">&</span> Pricing</h1>
<p class="sub-text text-center">Choose the most suitable tariff plan for your requirements</p>
<div class="grid-x grid-padding-x">
<div class="large-3 medium-6 cell">
<div class="card price">
<div class="card-divider">
<h4>Basic</h4>
</div>
<div class="card-price">
<sup>$</sup>49.99
</div>
<div class="card-section">
<ul>
<li>100 Credit Points*</li>
<li>Unlimited Exams</li>
<li>Unlimited Questions</li>
<li>Various Question Types</li>
<li>Concurrent Users: &lt; 100</li>
<li>Validity : 6 months</li>
</ul>
<a href="" class="button">Sign Up</a>
</div>
</div>
</div>
<div class="large-3 medium-6 cell">
<div class="card price">
<div class="card-divider">
<h4>Basic Plus</h4>
</div>
<div class="card-price">
<sup>$</sup>199
</div>
<div class="card-section">
<ul>
<li>500 Credit Points*</li>
<li>Unlimited Exams</li>
<li>Unlimited Questions</li>
<li>Various Question Types</li>
<li>Concurrent Users: &lt; 100</li>
<li>Validity : 6 months</li>
</ul>
<a href="" class="button">Sign Up</a>
</div>
</div>
</div>
<div class="large-3 medium-6 cell">
<div class="card price highlight">
<div class="card-divider">
<h4>Premium</h4>
</div>
<div class="card-price">
<sup>$</sup>359
</div>
<div class="card-section">
<ul>
<li>1000 Credit Points*</li>
<li>Unlimited Exams</li>
<li>Unlimited Questions</li>
<li>Various Question Types</li>
<li>Concurrent Users: &lt; 100</li>
<li>Validity : 12 months</li>
</ul>
<a href="" class="button">Sign Up</a>
</div>
<div class="badge">
<span>Best Plan</span>
</div>
</div>
</div>
<div class="large-3 medium-6 cell">
<div class="card price">
<div class="card-divider with-icon">
<h4>Enterprise</h4>
</div>
<div class="card-icon">
<i class="icon-price-wheel"></i>
</div>
<div class="card-section">
<div class="content">
<p><strong>Let's Talk!</strong> Tell us more about organization and we'll configure a perfect plan tailored for your needs.
</p>
</div>
<a href="" class="button">Contact Us</a>
</div>
</div>
</div>
</div>
<em><span>*</span> 1 credit point = 1 student per exam, if you are conducting a single exam with 50 students then 50 credit points will be used.</em>
</div>
</section>
<section class="benefits">
<div class="grid-container">
<p>Your search for the perfect online examination tool ends with VirtualX.<br/> VirtualX is not just a simple examination tool, it is fast, secure, and customizable and comes with a lot of features at affordable prices. </p>
<div class="grid-x grid-padding-x benefit-box">
<div class="large-6 medium-6 cell">
<div class="text-left title">Why VirtualX?</div>
<ul class="def-list">
<li>Role based access and security for users</li>
<li>Supports 14 different types of questions</li>
<li>Manual evaluation for Descriptive type questions</li>
<li>Seamless Integration with other enterprise system
</li>
<li>Supports to write formulas and equations</li>
<li>Graphical analysis</li>
<li>And many more...</li>
</ul>
</div>
<div class="large-6 medium-6 cell">
<div class="text-left title">Benefits</div>
<ul class="def-list">
<li>Author and Organize questions</li>
<li>Schedule exams to individual or group, notify examinee</li>
<li>Secure delivery of questions during exam</li>
<li>Randomized presentation of question</li>
<li>Generate Reports and Results</li>
<li>Easy mark based evaluation process</li>
<li>Multiple language support</li>
<li>And many more...</li>
</ul>
</div>
</div>
</div>
</section>
<section class="client">
<div class="grid-container">
<div class="client-list">
<ul>
<li>
<a href="">
<img src="assets/img/client1.png" alt="">
</a>
</li>
<li>
<a href="">
<img src="assets/img/client2.png" alt="">
</a>
</li>
<li>
<a href="">
<img src="assets/img/client3.png" alt="">
</a>
</li>
<li>
<a href="">
<img src="assets/img/client4.png" alt="">
</a>
</li>
<li>
<a href="">
<img src="assets/img/client5.png" alt="">
</a>
</li>
</ul>
</div>
</div>
</section>
<footer id="contact">
<div class="grid-container">
<div class="grid-x grid-margin-x">
<div class="large-2 cell">
<ul class="list-none">
<li><a href="">Home</a></li>
<li><a href="">Features</a></li>
<li><a href="">Pricing</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</div>
<div class="large-3 cell">
<p>Services</p>
<ul class="def-list">
<li><a href=""> Hosted VirtualX</a></li>
<li><a href=""> Integration with other LMS</a></li>
<li><a href=""> Customizing VirtualX</a></li>
</ul>
</div>
<div class="large-3 cell">
<p>Demo User Account</p>
<a href="" class="button access dark-hover">Click Here To Access Demo</a>
</div>
<div class="large-4 cell">
<div class="form-wrap">
<div class="title"> Contact Us</div>
<form>
<div class="grid-x grid-padding-x">
<div class=" cell">
<input type="text" placeholder="" required>
<label for="">Name*</label>
</div>
<div class="cell">
<input type="text" placeholder="" required>
<label for="">Email*</label>
</div>
<div class="cell">
<input type="text" placeholder="" required>
<label for="">Subject*</label>
</div>
<div class="cell">
<input type="text" placeholder="" required>
<label for="">Message*</label>
</div>
<div class="cell">
<button class="float-right button">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</footer>
<div class="sub-footer">
<div class="grid-container">
<div>2017 - 2018 VirtualX | All Rights Reserved.</div>
</div>
</div>
\ No newline at end of file
<div class="grid-container">
<div class="grid-x grid-margin-x">
<div class="large-12 cell">
<h1>Welcome to Foundation for Sites</h1>
</div>
</div>
<div class="grid-x grid-margin-x">
<div class="large-12 cell">
<div class="callout">
<h3>We&rsquo;re stoked you want to try Foundation! </h3>
<p>To get going, this file (index.html) includes some basic styles you can modify, play around with, or totally destroy to get going.</p>
<p>Once you've exhausted the fun in this document, you should check out:</p>
<div class="grid-x grid-margin-x">
<div class="large-4 medium-4 cell">
<p><a href="http://foundation.zurb.com/docs">Foundation Documentation</a><br />Everything you need to know about using the framework.</p>
</div>
<div class="large-4 medium-4 cell">
<p><a href="http://zurb.com/university/code-skills">Foundation Code Skills</a><br />These online courses offer you a chance to better understand how Foundation works and how you can master it to create awesome projects.</p>
</div>
<div class="large-4 medium-4 cell">
<p><a href="http://foundation.zurb.com/forum">Foundation Forum</a><br />Join the Foundation community to ask a question or show off your knowledge.</p>
</div>
</div>
<div class="grid-x grid-margin-x">
<div class="large-4 medium-4 medium-push-2 cell">
<p><a href="http://github.com/zurb/foundation">Foundation on Github</a><br />Latest code, issue reports, feature requests and more.</p>
</div>
<div class="large-4 medium-4 medium-pull-2 cell">
<p><a href="https://twitter.com/ZURBfoundation">@zurbfoundation</a><br />Ping us on Twitter if you have questions. When you build something with this we'd love to see it (and send you a totally boss sticker).</p>
</div>
</div>
</div>
</div>
</div>
<div class="grid-x grid-margin-x">
<div class="large-8 medium-8 cell">
<h5>Here&rsquo;s your basic grid:</h5>
<!-- Grid Example -->
<div class="grid-x grid-margin-x">
<div class="large-12 cell">
<div class="primary callout">
<p><strong>This is a twelve column section in a grid-x with grid-margin-x.</strong> Each of these includes a div.callout element so you can see where the cell are - it's not required at all for the grid.</p>
</div>
</div>
</div>
<div class="grid-x grid-margin-x">
<div class="large-6 medium-6 cell">
<div class="primary callout">
<p>Six cell</p>
</div>
</div>
<div class="large-6 medium-6 cell">
<div class="primary callout">
<p>Six cell</p>
</div>
</div>
</div>
<div class="grid-x grid-margin-x">
<div class="large-4 medium-4 small-4 cell">
<div class="primary callout">
<p>Four cell</p>
</div>
</div>
<div class="large-4 medium-4 small-4 cell">
<div class="primary callout">
<p>Four cell</p>
</div>
</div>
<div class="large-4 medium-4 small-4 cell">
<div class="primary callout">
<p>Four cell</p>
</div>
</div>
</div>
<hr />
<h5>We bet you&rsquo;ll need a form somewhere:</h5>
<form>
<div class="grid-x grid-margin-x">
<div class="large-12 cell">
<label>Input Label</label>
<input type="text" placeholder="large-12.cell" />
</div>
</div>
<div class="grid-x grid-margin-x">
<div class="large-4 medium-4 cell">
<label>Input Label</label>
<input type="text" placeholder="large-4.cell" />
</div>
<div class="large-4 medium-4 cell">
<label>Input Label</label>
<input type="text" placeholder="large-4.cell" />
</div>
<div class="large-4 medium-4 cell">
<div class="grid-x grid-margin-x collapse">
<label>Input Label</label>
<div class="input-group">
<input class="input-group-field" type="text" placeholder="input-group" />
<span class="input-group-label">.com</span>
</div>
</div>
</div>
</div>
<div class="grid-x grid-margin-x">
<div class="large-12 cell">
<label>Select Box</label>
<select>
<option value="husker">Husker</option>
<option value="starbuck">Starbuck</option>
<option value="hotdog">Hot Dog</option>
<option value="apollo">Apollo</option>
</select>
</div>
</div>
<div class="grid-x grid-margin-x">
<div class="large-6 medium-6 cell">
<label>Choose Your Favorite</label>
<input type="radio" name="pokemon" value="Red" id="pokemonRed"><label for="pokemonRed">Radio 1</label>
<input type="radio" name="pokemon" value="Blue" id="pokemonBlue"><label for="pokemonBlue">Radio 2</label>
</div>
<div class="large-6 medium-6 cell">
<label>Check these out</label>
<input id="checkbox1" type="checkbox"><label for="checkbox1">Checkbox 1</label>
<input id="checkbox2" type="checkbox"><label for="checkbox2">Checkbox 2</label>
</div>
</div>
<div class="grid-x grid-margin-x">
<div class="large-12 cell">
<label>Textarea Label</label>
<textarea placeholder="small-12.cell"></textarea>
</div>
</div>
</form>
</div>
<div class="large-4 medium-4 cell">
<h5>Try one of these buttons:</h5>
<p><a href="#" class="small button">Simple Button</a><br/>
<a href="#" class="medium success button">Success Btn</a><br/>
<a href="#" class="medium alert button">Alert Btn</a><br/>
<a href="#" class="medium secondary button">Secondary Btn</a></p>
<div class="callout">
<h5>So many components, girl!</h5>
<p>A whole kitchen sink of goodies comes with Foundation. Check out the docs to see them all, along with details on making them your own.</p>
<a href="http://foundation.zurb.com/docs/" class="small button">Go to Foundation Docs</a>
</div>
</div>
</div>
</div>
<header>
<div class="grid-container fluid">
<div class="top-block">
<div class="logo">
<a href="">
<img src="assets/img/logo.png" alt="">
</a>
</div>
<div class="navigation-wrap">
<div class="search">
<span class="search-top">
<i class="icon-search"></i>
</span>
<div id="search-block">
<form>
<input type="search" id="search" value="">
<span class="search-btn"> <input type="submit" value="Search"> </span>
</form>
</div>
</div>
<div class="login">
<a href="#" class="button">Login</a>
<div class="header-form">
<div class="form-wrap">
<form>
<div class="grid-x grid-padding-x">
<div class=" cell">
<input type="text" placeholder="Name">
</div>
<div class="cell">
<input type="password" placeholder="Password">
</div>
<div class="cell">
<button class="float-right">Login</button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="hamburger-menu" data-toggle="navigation-slide">
</div>
<nav class="navigation off-canvas position-right" id="navigation-slide" data-off-canvas data-transition="overlap">
<div class="close-btn" data-toggle="navigation-slide">
<i class="icon-banner-close-button"></i>
</div>
<ul class="vertical menu">
<li>
<a href="#home" data-smooth-scroll>
<i class="icon-home-menu"></i> Home
</a>
</li>
<li>
<a href="#features" data-smooth-scroll>
<i class="icon-features-menu"></i> Features
</a>
</li>
<li>
<a href="#services" data-smooth-scroll>
<i class="icon-services-menu"></i> Services
</a>
</li>
<li>
<a href="#pricing" data-smooth-scroll>
<i class="icon-pricetag-menu"></i> Pricing
</a>
</li>
<li>
<a href="#demo" data-smooth-scroll>
<i class="icon-demo"></i> Demo
</a>
</li>
<li>
<a href="#contact" data-smooth-scroll>
<i class="icon-contacts-menu"></i> Contact Us
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
\ No newline at end of file
# The Grid
<p class="lead">Problem: You've got tons of content, each needing different sized cells, and don't know how to quick and easily get it all done. Solution: The awesome XY grid!</p>
---
## Overview
The grid is built around two key elements: grid-x and cells. grid-container create a max-width and contain the grid, and cells create the final structure. Everything on your page that you don't give a specific structural style to should be within a grid-x or cell.
---
## Nesting
In the Grid you can nest cells down as far as you'd like. Just embed grid-x inside cells and go from there. Each embedded grid-x can contain up to 12 cells.
---
## How to Use
Using this framework is easy. Here's how your code will look when you use a series of `<div>` tags to create cells.
```html
<div class="grid-x">
<div class="small-6 medium-4 large-3 cell">...</div>
<div class="small-6 medium-8 large-9 cell">...</div>
</div>
```
<div class="grid-x display">
<div class="small-12 large-4 cell">4</div>
<div class="small-12 large-4 cell">4</div>
<div class="small-12 large-4 cell">4</div>
</div>
<div class="grid-x display">
<div class="small-12 large-3 cell">3</div>
<div class="small-12 large-6 cell">6</div>
<div class="small-12 large-3 cell">3</div>
</div>
<div class="grid-x display">
<div class="small-12 large-2 cell">2</div>
<div class="small-12 large-8 cell">8</div>
<div class="small-12 large-2 cell">2</div>
</div>
<div class="grid-x display">
<div class="small-12 large-3 cell">3</div>
<div class="small-12 large-9 cell">9</div>
</div>
<div class="grid-x display">
<div class="small-12 large-4 cell">4</div>
<div class="small-12 large-8 cell">8</div>
</div>
<div class="grid-x display">
<div class="small-12 large-5 cell">5</div>
<div class="small-12 large-7 cell">7</div>
</div>
<div class="grid-x display">
<div class="small-12 large-6 cell">6</div>
<div class="small-12 large-6 cell">6</div>
</div>
---
## Nesting grid-x
In the Grid you can nest cells down as far as you'd like. Just embed grid-x inside cells and go from there. Each embedded grid-x can contain up to 12 cells.
```html
<div class="grid-x">
<div class="small-8 cell">8
<div class="grid-x">
<div class="small-8 cell">8 Nested
<div class="grid-x">
<div class="small-8 cell">8 Nested Again</div>
<div class="small-4 cell">4</div>
</div>
</div>
<div class="small-4 cell">4</div>
</div>
</div>
<div class="small-4 cell">4</div>
</div>
```
<div class="grid-x display">
<div class="small-8 cell">8
<div class="grid-x">
<div class="small-8 cell">8 Nested
<div class="grid-x">
<div class="small-8 cell">8 Nested Again</div>
<div class="small-4 cell">4</div>
</div>
</div>
<div class="small-4 cell">4</div>
</div>
</div>
<div class="small-4 cellgi">4</div>
</div>
---
## Small Grid
As you've probably noticed in the examples above, you have access to a small, medium, and large grid. If you know that your grid structure will be the same for small devices as it will be on large devices, just use the small grid. You can override your small grid classes by adding medium or large grid classes.
```html
<div class="grid-x">
<div class="small-2 cell">2</div>
<div class="small-10 cell">10, last</div>
</div>
<div class="grid-x">
<div class="small-3 cell">3</div>
<div class="small-9 cell">9, last</div>
</div>
```
<div class="grid-x display">
<div class="small-2 cell">2</div>
<div class="small-10 cell">10, last</div>
</div>
<div class="grid-x display">
<div class="small-3 cell">3</div>
<div class="small-9 cell">9, last</div>
</div>
# Colors
<p class="lead">Below you can find the different values we created that support the primary color variable you can change at any time in <code>\_settings.scss</code></p>
---
<div class="row up-1 medium-up-3 large-up-5">
<div class="column">
<div class="color-block">
<span style="background: #2199e8"></span>
#2199e8
</div>
</div>
<div class="column">
<div class="color-block">
<span style="background: #3adb76"></span>
#3adb76
</div>
</div>
<div class="column">
<div class="color-block">
<span style="background: #ffae00"></span>
#ffae00
</div>
</div>
<div class="column">
<div class="color-block">
<span style="background: #ec5840"></span>
#ec5840
</div>
</div>
<div class="column">
<div class="color-block">
<span style="background: #0a0a0a"></span>
#0a0a0a
</div>
</div>
</div>
# Typography
<p class="lead">This design uses Helvetica Neue for headings and paragraph text.</p>
---
## Headings
Headings are used to denote different sections of content, usually consisting of related paragraphs and other HTML elements. They range from h1 to h6 and should be styled in a clear hierarchy (i.e., largest to smallest)
---
## Paragraphs
Paragraphs are groups of sentences, each with a lead (first sentence) and transition (last sentence). They are block level elements, meaning they stack vertically when repeated. Use them as such.
---
<h1>Heading Level 1</h1>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Hic quibusdam ratione sunt dolorum, qui illo maxime doloremque accusantium cum libero eum, a optio odio placeat debitis ullam aut non distinctio.
<h2>Heading Level 2</h2>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Hic quibusdam ratione sunt dolorum, qui illo maxime doloremque accusantium cum libero eum, a optio odio placeat debitis ullam aut non distinctio.
<h3>Heading Level 3</h3>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Hic quibusdam ratione sunt dolorum, qui illo maxime doloremque accusantium cum libero eum, a optio odio placeat debitis ullam aut non distinctio.
<h4>Heading Level 4</h4>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Hic quibusdam ratione sunt dolorum, qui illo maxime doloremque accusantium cum libero eum, a optio odio placeat debitis ullam aut non distinctio.
<h5>Heading Level 5</h5>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Hic quibusdam ratione sunt dolorum, qui illo maxime doloremque accusantium cum libero eum, a optio odio placeat debitis ullam aut non distinctio.
<h6>Heading Level 6</h6>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Hic quibusdam ratione sunt dolorum, qui illo maxime doloremque accusantium cum libero eum, a optio odio placeat debitis ullam aut non distinctio.
# Buttons
<p class="lead">Buttons are tied to an action of some kind, whether that button is on a cheese dispenser or launches the rocket that you're strapped to. On the web, we follow similar conventions.</p>
---
## Primary Buttons
These buttons are primary calls to action and should be used sparingly. Their size can be adjusted with the `.tiny`, `.small`, and `.large` classes.
```html_example
<a href="#" class="primary large button">Large button</a>
<a href="#" class="primary button">Regular button</a>
<a href="#" class="primary small button">Small button</a>
<a href="#" class="primary tiny button">Tiny button</a>
```
---
## Secondary Buttons
These buttons are used for less important, secondary actions on a page.
```html_example
<a href="#" class="secondary large button">Large button</a>
<a href="#" class="secondary button">Regular button</a>
<a href="#" class="secondary small button">Small button</a>
<a href="#" class="secondary tiny button">Tiny button</a>
```
# Forms
<p class="lead">Use forms to allow users to interact with the site and provide information to the company.</p>
---
## Elements of a Form
A form should be marked up using its default HTML properties. The ones we make use of include (in hierarchical order):
- Form
- Label
- Input
- Select
- Text area
- Button
---
## How to Use
Make forms great and easy to use with the following rules:
- Wrap checkboxes and radio buttons within labels for larger hit areas, and be sure to set the for, name, and id attributes for all applicable elements.
- Series of checkboxes and radio buttons below within a `<ul class="inline-list">`.
- Before selecting any set of fields to use for a required input, explore other options (e.g., radio buttons over select lists).
---
## Learn All About Forms
Check out the [Foundation Docs](http://foundation.zurb.com/sites/docs) to learn about how flexible our forms are for creating different layouts. It works perfectly with the grid to meet all your form needs.
---
## Form Layouts
Form elements in Foundation are styled based on their type attribute rather than a class. Inputs in Foundation have another major advantage — they are full width by default. That means that inputs will run as wide as the column that contains them. However, you have two options which make these forms extremely versatile:
- You can size inputs using column sizes, like `.medium-6`, `.small-6`.
- You can create row elements inside your form and use columns for the form, including inputs, labels and more. Rows inside a form inherit some special padding to even up input spacing.
---
## Form Example
```html_example
<form>
<div class="row">
<div class="large-12 columns">
<label>Label</label>
<input type="text" placeholder="placeholder">
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>Label</label>
<input type="text" placeholder="placeholder">
</div>
<div class="large-6 columns">
<div class="row collapse">
<label>Label</label>
<div class="input-group">
<input class="input-group-field" type="text" placeholder="placeholder">
<span class="input-group-label">.com</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Select Box</label>
<select>
<option value="good">Good</option>
<option value="better">Better</option>
<option value="best">Best</option>
</select>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<label>Choose Your Favorite</label>
<input type="radio" name="radio1" value="radio1" id="radio1"><label for="radio1">Red</label>
<input type="radio" name="radio2" value="radio2" id="radio2"><label for="radio2">Blue</label>
</div>
<div class="large-6 columns">
<label>Check these out</label>
<input id="checkbox1" type="checkbox"><label for="checkbox1">Checkbox 1</label>
<input id="checkbox2" type="checkbox"><label for="checkbox2">Checkbox 2</label>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Textarea Label</label>
<textarea placeholder="placeholder"></textarea>
</div>
</div>
</form>
```
# New Section
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempora omnis suscipit id ut laborum recusandae molestias hic aliquid **expedita!** [Non dicta](zurb.com), autem obcaecati error, id ab voluptate unde culpa nulla.
```html_example
<a href="#" class="button">Button</a>
<a href="#" class="button">Button</a>
<a href="#" class="button">Button</a>
```
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Style Guide</title>
<link rel="stylesheet" href="assets/css/app.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/github.min.css">
<!-- Style guide-specific CSS goes here. -->
<style>
/* This styles individual sections of the style guide */
.ss-section:not(:last-child) {
padding-bottom: 4rem;
border-bottom: 2px solid #ccc;
margin-bottom: 4rem;
}
/* This styles code blocks used for examples. */
.ss-code code {
display: block;
padding: 1rem;
overflow-x: scroll;
margin-bottom: 1.5rem;
}
/* This styles the example rows used in the grid documentation. */
.row.display {
background: #eee;
font-size: 11px;
margin-bottom: 10px;
line-height: 2rem;
border: solid 1px #c6c6c6;
margin-left: 0 !important;
margin-right: 0 !important; }
.row.display .columns:nth-child(2), .row.display .columns.small-centered, .row.display .columns.large-centered {
background: #e1e1e1; }
.row.display .columns.color-end {
background: #d4d4d4; }
/* This styles the color blocks used in the color documentation. */
.color-block {
border-radius: 2px;
display: block;
padding: 8px 8px 6px;
color: #333;
text-transform: uppercase;
border: 1px solid #ddd;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.color-block span {
display: block;
width: 100%;
height: 100px;
margin-bottom: 0.42857rem;
}
</style>
</head>
<body>
<div class="column row">
<h1>Client Style Guide</h1>
<p class="lead">This style guide was built with Foundation for Sites. For more information on how to use this responsive front-end framework, check out the documentation, get help from the Foundation community, or request immediate technical support.</p>
<a href="http://foundation.zurb.com/docs/" class="button">Visit the Docs</a>
<a href="http://foundation.zurb.com/forum/" class="secondary button">Foundation Forum</a>
<a href="http://foundation.zurb.com/business/business-support.html" class="secondary button">Technical Support</a>
</div>
<div class="column row"><div class="row collapse">
<div class="large-3 medium-4 columns" data-sticky-container>
<ul class="vertical menu">
{{#each pages}}
<li><a href="#{{ anchor }}">{{ title }}</a></li>
{{/each}}
</ul>
</div>
<div class="large-9 medium-8 columns">
{{#each pages}}
<section class="ss-section" id="{{ anchor }}">
{{ body }}
</section>
{{/each}}
</div>
</div></div>
<script src="assets/js/app.js"></script>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment