Merge branch 'master' into small-bugfix-and-tiny-refactoring

This commit is contained in:
Annika Wolff 2020-02-04 14:08:46 +01:00 committed by GitHub
commit 53c5d107a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
270 changed files with 87276 additions and 213 deletions

1
.gitignore vendored
View File

@ -25,3 +25,4 @@ yarn.lock
storage/
storage/*.key
/docker-compose-collection/
/resources/themes/velocity/*

View File

@ -12,23 +12,35 @@
* #1971 [fixed] - Filter is not working properly for id column in autogenerated coupon codes in cart rule.
* #1976 [fixed] - Default attribute set should be selected in root category.
* #1977 [fixed] - On editing the product, selected category for that product is not checked.
* #1978 [fixed] - Getting exception if changing the locale from cart page, if translation is not written for that product.
* #1979 [fixed] - Wrong calculation at customer as well as at admin end in due amount and grandtotal.
* #1980 [fixed] - UI issue in cart on changing locale.
* #1983 [fixed] - Getting exception on deleting admin logo.
* #1986 [fixed] - Subscribe to newsletter does not work.
* #1987 [fixed] - MySQL query very slow if products in category is around 3000
* #1988 [fixed] - Country and City Names in Create Address is not coming based on Locale
* #1994 [fixed] - Tax rate should only depend on zip code, state field should not be mandatory.
* #1997 [fixed] - Getting exception on adding attribute or creating product in bagisto on php version 7.4 .
* #1998 [fixed] - Showing product sale amount as zero when creating a product, and a existing catalog rule apply on it.
* #2001 [fixed] - php artisan route:list throws error.
* #2012 [fixed] - FGetting exception when clicking on view all under review section at product page.
* #2012 [fixed] - Getting exception when clicking on view all under review section at product page.
* #2033 [fixed] - API route for products throws error
* #2045 [fixed] - Login option is not coming while checkout with existing customer mail id.
@ -66,10 +78,64 @@
* #2132 [fixed] - Price range slider not displaying.
* #2139 [fixed] - Logic error in exchange rate calculation
* #2143 [fixed] - Attributes filterable checkbox - those who do not know will think that a bug!
* #2145 [fixed] - Emails don't work on registration.
* #2146 [fixed] - Getting exception on creating bundle product without any option.
* #2147 [fixed] - Sort order of bundle product doesn't work..
* #2147 [fixed] - Sort order of bundle product doesn't work.
* #2168 [fixed] - locale direction drop down always select ltr.
* #2149 [fixed] - Ui issue when installing through installer.Getting issue on all steps.
* #2162 [fixed] - product's special price should not greater than price
* #2164 [fixed] - Redirect to incorrect url when click on finish button after installing through installer.
* #2165 [fixed] - Incorrect error message for password field of email configuration.
* #2167 [fixed] - Translation issue in Payment description field.
* #2168 [fixed] - locale direction drop down always select ltr.
* #2173 [fixed] - While creating locales value in direction dropdown is in small letters, but when you edit any locale it display in caps.
* #2176 [fixed] - product price section is not getting highlighted if the warning exists
* #2177 [fixed] - Category image can be add from anywhere
* #2181 [fixed] - Getting exception when creating/editing customer address from Admin end.
* #2182 [fixed] - missing option in Customer's Gender at admin end
* #2183 [fixed] - Add toolkit for add address.
* #2185 [fixed] - Issue with configurable product in case of multi-locale. Variation option are not visible.
* #2186 [fixed] - Ui issue in cart for pt_BR locale. Quantity is not visible properly.
* #2190 [fixed] - sku should be shown in product list if new product created
* #2192 [fixed] - For all grid of sales section when you export data in csv file order id heading is mentioned as increment id.
* #2196 [fixed] - No data is visible in state field, issue exist at all section where state field is used.
* #2198 [fixed] - Remove vat id column from customer address list
* #2202 [fixed] - catalog rule is not applied on product if product's special price date expired
* #2203 [fixed] - saved categories are not checked in condition of catalog/cart rule
* #2204 [fixed] - category tree view doesn't visible in catalog rule condition
* #2207 [fixed] - Unable to delete Category.
* #2226 [fixed] - Wrong price of product in case of multiple exchange rates.
* #2225 [fixed] - Not able to export products according to locale.
* #2227 [fixed] - Grand total column is not visible in invoice pdf, also getting incorrect currency symbol for grand total.
* #2237 [fixed] - Error when trying to login with app.php locale set to ja

View File

@ -100,7 +100,8 @@
"Webkul\\CatalogRule\\": "packages/Webkul/CatalogRule/src",
"Webkul\\CartRule\\": "packages/Webkul/CartRule/src",
"Webkul\\Rule\\": "packages/Webkul/Rule/src",
"Webkul\\CMS\\": "packages/Webkul/CMS/src"
"Webkul\\CMS\\": "packages/Webkul/CMS/src",
"Webkul\\Velocity\\": "packages/Webkul/Velocity/src"
}
},

View File

@ -263,7 +263,8 @@ return [
Webkul\CatalogRule\Providers\CatalogRuleServiceProvider::class,
Webkul\CartRule\Providers\CartRuleServiceProvider::class,
Webkul\Rule\Providers\RuleServiceProvider::class,
Webkul\CMS\Providers\CMSServiceProvider::class
Webkul\CMS\Providers\CMSServiceProvider::class,
Webkul\Velocity\Providers\VelocityServiceProvider::class,
],
/*

View File

@ -16,5 +16,12 @@ return [
// 'name' => 'Bliss',
// 'parent' => 'default'
// ]
'velocity' => [
'views_path' => 'resources/themes/velocity/views',
'assets_path' => 'public/themes/velocity/assets',
'name' => 'Velocity',
'parent' => 'default'
],
]
];

View File

@ -1,6 +1,7 @@
<?php
use Illuminate\Database\Seeder;
use Webkul\Velocity\Database\Seeders\VelocityMetaDataSeeder;
use Webkul\Admin\Database\Seeders\DatabaseSeeder as BagistoDatabaseSeeder;
class DatabaseSeeder extends Seeder
@ -13,5 +14,6 @@ class DatabaseSeeder extends Seeder
public function run()
{
$this->call(BagistoDatabaseSeeder::class);
$this->call(VelocityMetaDataSeeder::class);
}
}

View File

@ -6,6 +6,7 @@ use Illuminate\Support\Facades\Event;
use Webkul\Customer\Repositories\WishlistRepository;
use Webkul\Product\Repositories\ProductRepository;
use Webkul\API\Http\Resources\Customer\Wishlist as WishlistResource;
use Webkul\API\Http\Resources\Checkout\Cart as CartResource;
use Cart;
/**
@ -109,8 +110,10 @@ class WishlistController extends Controller
if ($result) {
Cart::collectTotals();
$cart = Cart::getCart();
return response()->json([
'data' => 1,
'data' => $cart ? new CartResource($cart) : null,
'message' => trans('shop::app.wishlist.moved')
]);
} else {

View File

@ -70,6 +70,12 @@ Route::group(['prefix' => 'api'], function ($router) {
Route::post('reviews/{id}/create', 'ReviewController@store');
Route::delete('reviews/{id}', 'ResourceController@destroy')->defaults('_config', [
'repository' => 'Webkul\Product\Repositories\ProductReviewRepository',
'resource' => 'Webkul\API\Http\Resources\Catalog\ProductReview',
'authorization_required' => true
]);
//Channel routes
Route::get('channels', 'ResourceController@index')->defaults('_config', [

View File

@ -139,7 +139,7 @@
<accordian :title="'{{ __('admin::app.catalog.categories.filterable-attributes') }}'" :active="true">
<div slot="body">
<?php $selectedaAtributes = old('attributes') ?? [] ?>
<?php $selectedaAtributes = old('attributes') ? old('attributes') : ['11'] ?>
<div class="control-group" :class="[errors.has('attributes[]') ? 'has-error' : '']">
<label for="attributes" class="required">{{ __('admin::app.catalog.categories.attributes') }}</label>

View File

@ -42,6 +42,18 @@
<span class="control-error" v-if="errors.has('company_name')">@{{ errors.first('company_name') }}</span>
</div>
<div class="control-group" :class="[errors.has('first_name') ? 'has-error' : '']">
<label for="first_name" class="required">{{ __('shop::app.customer.account.address.create.first_name') }}</label>
<input type="text" class="control" name="first_name" v-validate="'required'" value="{{ old('first_name') }}" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.first_name') }}&quot;">
<span class="control-error" v-if="errors.has('first_name')">@{{ errors.first('first_name') }}</span>
</div>
<div class="control-group" :class="[errors.has('last_name') ? 'has-error' : '']">
<label for="last_name" class="required">{{ __('shop::app.customer.account.address.create.last_name') }}</label>
<input type="text" class="control" name="last_name" v-validate="'required'" value="{{ old('last_name') }}" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.last_name') }}&quot;">
<span class="control-error" v-if="errors.has('last_name')">@{{ errors.first('last_name') }}</span>
</div>
<div class="control-group" :class="[errors.has('vat_id') ? 'has-error' : '']">
<label for="vat_id">{{ __('shop::app.customer.account.address.create.vat_id') }}</label>
<input type="text" class="control" name="vat_id" value="{{ old('vat_id') }}" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.vat_id') }}&quot;">

View File

@ -41,6 +41,18 @@
<span class="control-error" v-if="errors.has('company_name')">@{{ errors.first('company_name') }}</span>
</div>
<div class="control-group" :class="[errors.has('first_name') ? 'has-error' : '']">
<label for="first_name" class="required">{{ __('shop::app.customer.account.address.create.first_name') }}</label>
<input type="text" class="control" name="first_name" v-validate="'required'" value="{{ $address->first_name }}" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.first_name') }}&quot;">
<span class="control-error" v-if="errors.has('first_name')">@{{ errors.first('first_name') }}</span>
</div>
<div class="control-group" :class="[errors.has('last_name') ? 'has-error' : '']">
<label for="last_name" class="required">{{ __('shop::app.customer.account.address.create.last_name') }}</label>
<input type="text" class="control" name="last_name" v-validate="'required'" value="{{ $address->last_name }}" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.last_name') }}&quot;">
<span class="control-error" v-if="errors.has('last_name')">@{{ errors.first('last_name') }}</span>
</div>
<div class="control-group" :class="[errors.has('vat_id') ? 'has-error' : '']">
<label for="vat_id">{{ __('shop::app.customer.account.address.create.vat_id') }}</label>
<input type="text" class="control" name="vat_id" value="{{ $address->vat_id }}" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.vat_id') }}&quot;">

View File

@ -57,7 +57,7 @@
<div class="control-group" :class="[errors.has('gender') ? 'has-error' : '']">
<label for="gender" class="required">{{ __('admin::app.customers.customers.gender') }}</label>
<select name="gender" class="control" value="{{ $customer->gender }}" v-validate="'required'" data-vv-as="&quot;{{ __('shop::app.customers.customers.gender') }}&quot;">
<select name="gender" class="control" value="{{ $customer->gender }}" v-validate="'required'" data-vv-as="&quot;{{ __('admin::app.customers.customers.gender') }}&quot;">
<option value="" {{ $customer->gender == "" ? 'selected' : '' }}></option>
<option value="Other" {{ $customer->gender == "Other" ? 'selected' : '' }}>{{ __('admin::app.customers.customers.other') }}</option>
<option value="Male" {{ $customer->gender == "Male" ? 'selected' : '' }}>{{ __('admin::app.customers.customers.male') }}</option>

View File

@ -1,5 +1,5 @@
<script type="text/x-template" id="export-form-template">
<form method="POST" action="{{ route('admin.datagrid.export') }}" @submit.prevent="onSubmit">
<form method="POST" action="{{ route('admin.datagrid.export', ['locale' => request()->get('locale')]) }}" @submit.prevent="onSubmit">
<div class="page-content">
<div class="form-container">

View File

@ -19,7 +19,7 @@
</head>
<body @if (core()->getCurrentLocale()->direction == 'rtl') class="rtl" @endif style="scroll-behavior: smooth;">
<body @if (core()->getCurrentLocale() && core()->getCurrentLocale()->direction == 'rtl') class="rtl" @endif style="scroll-behavior: smooth;">
{!! view_render_event('bagisto.admin.layout.body.before') !!}
<div id="app">

View File

@ -685,7 +685,9 @@
if (matchedAttribute[0]['type'] == 'multiselect' || matchedAttribute[0]['type'] == 'checkbox') {
this.condition.operator = '{}';
this.condition.value = this.condition.value == '' && this.condition.value != undefined ? [] : this.condition.value;
this.condition.value = this.condition.value == '' && this.condition.value != undefined
? []
: Array.isArray(this.condition.value) ? this.condition.value : [];
}
return matchedAttribute[0];

View File

@ -516,7 +516,9 @@
if (matchedAttribute[0]['type'] == 'multiselect' || matchedAttribute[0]['type'] == 'checkbox') {
this.condition.operator = '{}';
this.condition.value = this.condition.value == '' && this.condition.value != undefined ? [] : [ this.condition.value ];
this.condition.value = this.condition.value == '' && this.condition.value != undefined
? []
: Array.isArray(this.condition.value) ? this.condition.value : [];
}
return matchedAttribute[0];

View File

@ -3,6 +3,7 @@
namespace Webkul\Core;
use Carbon\Carbon;
use Webkul\Core\Models\Channel;
use Webkul\Core\Repositories\CurrencyRepository;
use Webkul\Core\Repositories\ExchangeRateRepository;
use Webkul\Core\Repositories\CountryRepository;
@ -66,13 +67,14 @@ class Core
/**
* Create a new instance.
*
* @param Webkul\Core\Repositories\ChannelRepository $channelRepository
* @param Webkul\Core\Repositories\CurrencyRepository $currencyRepository
* @param Webkul\Core\Repositories\ExchangeRateRepository $exchangeRateRepository
* @param Webkul\Core\Repositories\CountryRepository $countryRepository
* @param Webkul\Core\Repositories\CountryStateRepository $countryStateRepository
* @param Webkul\Core\Repositories\LocaleRepository $localeRepository
* @param Webkul\Core\Repositories\CoreConfigRepository $coreConfigRepository
* @param Webkul\Core\Repositories\ChannelRepository $channelRepository
* @param Webkul\Core\Repositories\CurrencyRepository $currencyRepository
* @param Webkul\Core\Repositories\ExchangeRateRepository $exchangeRateRepository
* @param Webkul\Core\Repositories\CountryRepository $countryRepository
* @param Webkul\Core\Repositories\CountryStateRepository $countryStateRepository
* @param Webkul\Core\Repositories\LocaleRepository $localeRepository
* @param Webkul\Core\Repositories\CoreConfigRepository $coreConfigRepository
*
* @return void
*/
public function __construct(
@ -101,10 +103,10 @@ class Core
}
/**
* Returns all channels
*
* @return Collection
*/
* Returns all channels
*
* @return Collection
*/
public function getAllChannels()
{
static $channels;
@ -116,10 +118,10 @@ class Core
}
/**
* Returns currenct channel models
*
* @return mixed
*/
* Returns currenct channel models
*
* @return mixed
*/
public function getCurrentChannel()
{
static $channel;
@ -128,10 +130,10 @@ class Core
return $channel;
$channel = $this->channelRepository->findWhereIn('hostname', [
request()->getHttpHost(),
'http://' . request()->getHttpHost(),
'https://' . request()->getHttpHost()
])->first();
request()->getHttpHost(),
'http://' . request()->getHttpHost(),
'https://' . request()->getHttpHost(),
])->first();
if (! $channel)
$channel = $this->channelRepository->first();
@ -140,11 +142,11 @@ class Core
}
/**
* Returns currenct channel code
*
* @return string
*/
public function getCurrentChannelCode()
* Returns currenct channel code
*
* @return string
*/
public function getCurrentChannelCode(): string
{
static $channelCode;
@ -155,40 +157,48 @@ class Core
}
/**
* Returns default channel models
*
* @return mixed
*/
public function getDefaultChannel()
* Returns default channel models
*
* @return null or Channel
*/
public function getDefaultChannel(): ?Channel
{
static $channel;
if ($channel)
if ($channel) {
return $channel;
}
$channel = $this->channelRepository->findOneByField('code', config('app.channel'));
if ($channel) {
return $channel;
}
return $channel = $this->channelRepository->first();
}
/**
* Returns default channel code
*
* @return string
*/
public function getDefaultChannelCode()
* Returns the default channel code configured in config/app.php
*
* @return string
*/
public function getDefaultChannelCode(): string
{
static $channelCode;
if ($channelCode)
if ($channelCode) {
return $channelCode;
}
return ($channel = $this->getDefaultChannel()) ? $channelCode = $channel->code : '';
}
/**
* Returns all locales
*
* @return Collection
*/
* Returns all locales
*
* @return Collection
*/
public function getAllLocales()
{
static $locales;
@ -200,20 +210,21 @@ class Core
}
/**
* Returns current locale
*
* @return Object
*/
* Returns current locale
*
* @return Object
*/
public function getCurrentLocale()
{
static $locale;
if ($locale)
if ($locale) {
return $locale;
}
$locale = $this->localeRepository->findOneByField('code', app()->getLocale());
if(!$locale) {
if (! $locale) {
$locale = $this->localeRepository->findOneByField('code', config('app.fallback_locale'));
}
@ -221,10 +232,10 @@ class Core
}
/**
* Returns all currencies
*
* @return Collection
*/
* Returns all currencies
*
* @return Collection
*/
public function getAllCurrencies()
{
static $currencies;
@ -236,10 +247,10 @@ class Core
}
/**
* Returns base channel's currency model
*
* @return mixed
*/
* Returns base channel's currency model
*
* @return mixed
*/
public function getBaseCurrency()
{
static $currency;
@ -256,10 +267,10 @@ class Core
}
/**
* Returns base channel's currency code
*
* @return string
*/
* Returns base channel's currency code
*
* @return string
*/
public function getBaseCurrencyCode()
{
static $currencyCode;
@ -271,10 +282,10 @@ class Core
}
/**
* Returns base channel's currency model
*
* @return mixed
*/
* Returns base channel's currency model
*
* @return mixed
*/
public function getChannelBaseCurrency()
{
static $currency;
@ -288,10 +299,10 @@ class Core
}
/**
* Returns base channel's currency code
*
* @return string
*/
* Returns base channel's currency code
*
* @return string
*/
public function getChannelBaseCurrencyCode()
{
static $currencyCode;
@ -303,10 +314,10 @@ class Core
}
/**
* Returns current channel's currency model
*
* @return mixed
*/
* Returns current channel's currency model
*
* @return mixed
*/
public function getCurrentCurrency()
{
static $currency;
@ -323,10 +334,10 @@ class Core
}
/**
* Returns current channel's currency code
*
* @return string
*/
* Returns current channel's currency code
*
* @return string
*/
public function getCurrentCurrencyCode()
{
static $currencyCode;
@ -338,17 +349,21 @@ class Core
}
/**
* Converts price
*
* @param float $amount
* @param string $targetCurrencyCode
* @return string
*/
* Converts price
*
* @param float $amount
* @param string $targetCurrencyCode
*
* @return string
*/
public function convertPrice($amount, $targetCurrencyCode = null)
{
if (! isset($this->lastCurrencyCode))
$this->lastCurrencyCode = $this->getBaseCurrency()->code;
$targetCurrency = ! $targetCurrencyCode
? $this->getCurrentCurrency()
: $this->currencyRepository->findOneByField('code', $targetCurrencyCode);
? $this->getCurrentCurrency()
: $this->currencyRepository->findOneByField('code', $targetCurrencyCode);
if (! $targetCurrency)
return $amount;
@ -360,21 +375,27 @@ class Core
if (null === $exchangeRate || ! $exchangeRate->rate)
return $amount;
return (float) $amount * $exchangeRate->rate;
$result = (float)$amount * (float)($this->lastCurrencyCode == $targetCurrency->code ? 1.0 : $exchangeRate->rate);
if ($this->lastCurrencyCode != $targetCurrency->code)
$this->lastCurrencyCode = $targetCurrency->code;
return $result;
}
/**
* Converts to base price
*
* @param float $amount
* @param string $targetCurrencyCode
* @return string
*/
* Converts to base price
*
* @param float $amount
* @param string $targetCurrencyCode
*
* @return string
*/
public function convertToBasePrice($amount, $targetCurrencyCode = null)
{
$targetCurrency = ! $targetCurrencyCode
? $this->getCurrentCurrency()
: $this->currencyRepository->findOneByField('code', $targetCurrencyCode);
? $this->getCurrentCurrency()
: $this->currencyRepository->findOneByField('code', $targetCurrencyCode);
if (! $targetCurrency)
return $amount;
@ -386,15 +407,16 @@ class Core
if (null === $exchangeRate || ! $exchangeRate->rate)
return $amount;
return (float) $amount / $exchangeRate->rate;
return (float)$amount / $exchangeRate->rate;
}
/**
* Format and convert price with currency symbol
*
* @param float $price
* @return string
*/
* Format and convert price with currency symbol
*
* @param float $price
*
* @return string
*/
public function currency($amount = 0)
{
if (is_null($amount))
@ -404,11 +426,12 @@ class Core
}
/**
* Return currency symbol from currency code
*
* @param float $price
* @return string
*/
* Return currency symbol from currency code
*
* @param float $price
*
* @return string
*/
public function currencySymbol($code)
{
$formatter = new \NumberFormatter(app()->getLocale() . '@currency=' . $code, \NumberFormatter::CURRENCY);
@ -417,17 +440,18 @@ class Core
}
/**
* Format and convert price with currency symbol
*
* @param float $price
* @return string
*/
* Format and convert price with currency symbol
*
* @param float $price
*
* @return string
*/
public function formatPrice($price, $currencyCode)
{
if (is_null($price))
$price = 0;
$formater = new \NumberFormatter( app()->getLocale(), \NumberFormatter::CURRENCY );
$formater = new \NumberFormatter(app()->getLocale(), \NumberFormatter::CURRENCY);
if ($symbol = $this->getCurrentCurrency()->symbol) {
if ($this->currencySymbol($currencyCode) == $symbol) {
@ -443,13 +467,13 @@ class Core
}
/**
* Format and convert price with currency symbol
*
* @return array
*/
* Format and convert price with currency symbol
*
* @return array
*/
public function getAccountJsSymbols()
{
$formater = new \NumberFormatter( app()->getLocale(), \NumberFormatter::CURRENCY );
$formater = new \NumberFormatter(app()->getLocale(), \NumberFormatter::CURRENCY);
$pattern = $formater->getPattern();
@ -458,24 +482,25 @@ class Core
$pattern = str_replace("#,##0.00", "%v", $pattern);
return [
'symbol' => core()->currencySymbol(core()->getCurrentCurrencyCode()),
'symbol' => core()->currencySymbol(core()->getCurrentCurrencyCode()),
'decimal' => $formater->getSymbol(\NumberFormatter::DECIMAL_SEPARATOR_SYMBOL),
'format' => $pattern
'format' => $pattern,
];
}
/**
* Format price with base currency symbol
*
* @param float $price
* @return string
*/
* Format price with base currency symbol
*
* @param float $price
*
* @return string
*/
public function formatBasePrice($price)
{
if (is_null($price))
$price = 0;
$formater = new \NumberFormatter( app()->getLocale(), \NumberFormatter::CURRENCY );
$formater = new \NumberFormatter(app()->getLocale(), \NumberFormatter::CURRENCY);
if ($symbol = $this->getBaseCurrency()->symbol) {
if ($this->currencySymbol($this->getBaseCurrencyCode()) == $symbol) {
@ -494,8 +519,9 @@ class Core
* Checks if current date of the given channel (in the channel timezone) is within the range
*
* @param int|string|Channel $channel
* @param string|null $dateFrom
* @param string|null $dateTo
* @param string|null $dateFrom
* @param string|null $dateTo
*
* @return bool
*/
public function isChannelDateInInterval($dateFrom = null, $dateTo = null)
@ -504,9 +530,9 @@ class Core
$channelTimeStamp = $this->channelTimeStamp($channel);
$fromTimeStamp = strtotime($dateFrom);
$fromTimeStamp = strtotime($dateFrom);
$toTimeStamp = strtotime($dateTo);
$toTimeStamp = strtotime($dateTo);
if ($dateTo) {
$toTimeStamp += 86400;
@ -527,7 +553,8 @@ class Core
* Get channel timestamp
* Timstamp will be builded with channel timezone settings
*
* @param mixed $channel
* @param mixed $channel
*
* @return int
*/
public function channelTimeStamp($channel)
@ -546,11 +573,12 @@ class Core
}
/**
* Check whether sql date is empty
*
* @param string $date
* @return boolean
*/
* Check whether sql date is empty
*
* @param string $date
*
* @return boolean
*/
function is_empty_date($date)
{
return preg_replace('#[ 0:-]#', '', $date) === '';
@ -559,8 +587,9 @@ class Core
/**
* Format date using current channel.
*
* @param date|null $date
* @param string $format
* @param date|null $date
* @param string $format
*
* @return string
*/
public function formatDate($date = null, $format = 'd-m-Y H:i:s')
@ -579,7 +608,7 @@ class Core
/**
* Retrieve information from payment configuration
*
* @param string $field
* @param string $field
* @param int|string|null $channelId
*
* @return mixed
@ -610,25 +639,25 @@ class Core
if (isset($fields['channel_based']) && $fields['channel_based']) {
if (isset($fields['locale_based']) && $fields['locale_based']) {
$coreConfigValue = $this->coreConfigRepository->findOneWhere([
'code' => $field,
'code' => $field,
'channel_code' => $channel,
'locale_code' => $locale
'locale_code' => $locale,
]);
} else {
$coreConfigValue = $this->coreConfigRepository->findOneWhere([
'code' => $field,
'code' => $field,
'channel_code' => $channel,
]);
}
} else {
if (isset($fields['locale_based']) && $fields['locale_based']) {
$coreConfigValue = $this->coreConfigRepository->findOneWhere([
'code' => $field,
'locale_code' => $locale
'code' => $field,
'locale_code' => $locale,
]);
} else {
$coreConfigValue = $this->coreConfigRepository->findOneWhere([
'code' => $field
'code' => $field,
]);
}
}
@ -668,6 +697,7 @@ class Core
* Returns country name by code
*
* @param string $code
*
* @return string
*/
public function country_name($code)
@ -726,7 +756,8 @@ class Core
*
* @return array
*/
public function getTimeInterval($startDate, $endDate) {
public function getTimeInterval($startDate, $endDate)
{
$timeIntervals = [];
$totalDays = $startDate->diffInDays($endDate) + 1;
@ -742,9 +773,9 @@ class Core
$date->addMonths($i);
$start = Carbon::createFromTimeString($date->format('Y-m-d') . ' 00:00:01');
$end = $totalMonths - 1 == $i
? $endDate
: Carbon::createFromTimeString($date->format('Y-m-d') . ' 23:59:59');
$end = $totalMonths - 1 == $i
? $endDate
: Carbon::createFromTimeString($date->format('Y-m-d') . ' 23:59:59');
$timeIntervals[] = ['start' => $start, 'end' => $end, 'formatedDate' => $date->format('M')];
}
@ -754,11 +785,11 @@ class Core
$date->addWeeks($i);
$start = $i == 0
? $startDate
: Carbon::createFromTimeString($this->xWeekRange($date, 0) . ' 00:00:01');
? $startDate
: Carbon::createFromTimeString($this->xWeekRange($date, 0) . ' 00:00:01');
$end = $totalWeeks - 1 == $i
? $endDate
: Carbon::createFromTimeString($this->xWeekRange($date, 1) . ' 23:59:59');
? $endDate
: Carbon::createFromTimeString($this->xWeekRange($date, 1) . ' 23:59:59');
$timeIntervals[] = ['start' => $start, 'end' => $end, 'formatedDate' => $date->format('d M')];
}
@ -780,7 +811,8 @@ class Core
/**
* @return string
*/
public function xWeekRange($date, $day) {
public function xWeekRange($date, $day)
{
$ts = strtotime($date);
if (! $day) {
@ -794,40 +826,43 @@ class Core
}
}
/**
* Method to sort through the acl items and put them in order
*
* @return void
*/
public function sortItems($items) {
foreach ($items as &$item) {
if (count($item['children'])) {
$item['children'] = $this->sortItems($item['children']);
}
}
/**
* Method to sort through the acl items and put them in order
*
* @return void
*/
public function sortItems($items)
{
foreach ($items as &$item) {
if (count($item['children'])) {
$item['children'] = $this->sortItems($item['children']);
}
}
usort($items, function($a, $b) {
if ($a['sort'] == $b['sort']) {
return 0;
}
usort($items, function ($a, $b) {
if ($a['sort'] == $b['sort']) {
return 0;
}
return ($a['sort'] < $b['sort']) ? -1 : 1;
});
return ($a['sort'] < $b['sort']) ? -1 : 1;
});
return $this->convertToAssociativeArray($items);
return $this->convertToAssociativeArray($items);
}
/**
* @param string $fieldName
*
* @return array
*/
public function getConfigField($fieldName) {
public function getConfigField($fieldName)
{
foreach (config('core') as $coreData) {
if (isset($coreData['fields'])) {
foreach ($coreData['fields'] as $field) {
$name = $coreData['key'] . '.' . $field['name'];
if ($name == $fieldName ) {
if ($name == $fieldName) {
return $field;
}
}
@ -841,7 +876,7 @@ class Core
unset($items[$key1]);
$items[$level1['key']] = $level1;
if (count($level1['children'])) {
if (count($level1['children'])) {
foreach ($level1['children'] as $key2 => $level2) {
$temp2 = explode('.', $level2['key']);
$finalKey2 = end($temp2);
@ -858,20 +893,20 @@ class Core
}
}
}
}
}
}
return $items;
return $items;
}
public function array_set(&$array, $key, $value)
public function array_set(&$array, $key, $value)
{
if (is_null($key)) {
return $array = $value;
}
$keys = explode('.', $key);
$count = count($keys);
$count = count($keys);
while (count($keys) > 1) {
$key = array_shift($keys);
@ -883,28 +918,28 @@ class Core
$array = &$array[$key];
}
$finalKey = array_shift($keys);
if (isset($array[$finalKey])) {
$array[$finalKey] = $this->arrayMerge($array[$finalKey], $value);
} else {
$array[$finalKey] = $value;
}
$finalKey = array_shift($keys);
if (isset($array[$finalKey])) {
$array[$finalKey] = $this->arrayMerge($array[$finalKey], $value);
} else {
$array[$finalKey] = $value;
}
return $array;
}
protected function arrayMerge(array &$array1, array &$array2)
{
$merged = $array1;
foreach ($array2 as $key => &$value) {
if (is_array($value) && isset($merged[$key]) && is_array($merged[$key])) {
$merged[$key] = $this->arrayMerge($merged[$key], $value);
} else {
$merged[$key] = $value;
}
}
protected function arrayMerge(array &$array1, array &$array2)
{
$merged = $array1;
foreach ($array2 as $key => &$value) {
if (is_array($value) && isset($merged[$key]) && is_array($merged[$key])) {
$merged[$key] = $this->arrayMerge($merged[$key], $value);
} else {
$merged[$key] = $value;
}
}
return $merged;
return $merged;
}
public function convertEmptyStringsToNull($array)
@ -922,6 +957,7 @@ class Core
* Create singletom object through single facade
*
* @param string $className
*
* @return object
*/
public function getSingletonInstance($className)

View File

@ -79,6 +79,8 @@ class AddressController extends Controller
$this->validate(request(), [
'company_name' => 'string',
'first_name' => 'string|required',
'last_name' => 'string|required',
'address1' => 'string|required',
'country' => 'string|required',
'state' => 'string|required',
@ -142,6 +144,8 @@ class AddressController extends Controller
$this->validate(request(), [
'company_name' => 'string',
'first_name' => 'string|required',
'last_name' => 'string|required',
'address1' => 'string|required',
'country' => 'string|required',
'state' => 'string|required',

View File

@ -510,8 +510,13 @@ abstract class AbstractType
return true;
} else {
if (core()->isChannelDateInInterval($this->product->special_price_from, $this->product->special_price_to))
if (core()->isChannelDateInInterval($this->product->special_price_from, $this->product->special_price_to)) {
return true;
} else if ($rulePrice) {
$this->product->special_price = $rulePrice->price;
return true;
}
}
}

View File

@ -19,7 +19,7 @@ class Simple extends AbstractType
/**
* These blade files will be included in product edit page
*
*
* @var array
*/
protected $additionalViews = [
@ -27,7 +27,7 @@ class Simple extends AbstractType
'admin::catalog.products.accordians.images',
'admin::catalog.products.accordians.categories',
'admin::catalog.products.accordians.channels',
'admin::catalog.products.accordians.product-links'
'admin::catalog.products.accordians.product-links',
];
/**
@ -60,6 +60,7 @@ class Simple extends AbstractType
*/
public function haveSufficientQuantity($qty)
{
return $qty <= $this->totalQuantity() ? true : (core()->getConfigData('catalog.inventory.stock_options.backorders') ? true : false);
$backorders = core()->getConfigData('catalog.inventory.stock_options.backorders');
return $qty <= $this->totalQuantity() ? true : $backorders;
}
}

View File

@ -470,6 +470,7 @@ return [
'complete' => 'Complete',
'billing-address' => 'Billing Address',
'sign-in' => 'Sign In',
'company-name' => 'Company Name',
'first-name' => 'First Name',
'last-name' => 'Last Name',
'email' => 'Email',

View File

@ -279,7 +279,7 @@
summaryHtml = Vue.compile(response.data.html)
this_this.summeryComponentKey++;
this_this.reviewComponentKey++;
//this_this.reviewComponentKey++;
})
.catch(function (error) {})
},

View File

@ -93,6 +93,18 @@
@include('shop::checkout.onepage.customer-checkout')
@endif
<div class="control-group" :class="[errors.has('address-form.billing[company_name]') ? 'has-error' : '']">
<label for="billing[company_name]">
{{ __('shop::app.checkout.onepage.company-name') }}
</label>
<input type="text" class="control" id="billing[company_name]" name="billing[company_name]" v-model="address.billing.company_name" data-vv-as="&quot;{{ __('shop::app.checkout.onepage.company-name') }}&quot;"/>
<span class="control-error" v-if="errors.has('address-form.billing[company_name]')">
@{{ errors.first('address-form.billing[company_name]') }}
</span>
</div>
<div class="control-group" :class="[errors.has('address-form.billing[first_name]') ? 'has-error' : '']">
<label for="billing[first_name]" class="required">
{{ __('shop::app.checkout.onepage.first-name') }}

View File

@ -13,7 +13,7 @@
<div class="card-content">
<ul>
<li class="mb-10">
{{ $billingAddress->name }}
{{ $billingAddress->first_name }} {{ $billingAddress->last_name }}
</li>
<li class="mb-10">
{{ $billingAddress->address1 }},<br/> {{ $billingAddress->state }}
@ -41,7 +41,7 @@
<div class="card-content">
<ul>
<li class="mb-10">
{{ $shippingAddress->name }}
{{ $shippingAddress->first_name }} {{ $shippingAddress->last_name }}
</li>
<li class="mb-10">
{{ $shippingAddress->address1 }},<br/> {{ $shippingAddress->state }}
@ -113,7 +113,7 @@
@if (isset($item->additional['attributes']))
<div class="item-options">
@foreach ($item->additional['attributes'] as $attribute)
<b>{{ $attribute['attribute_name'] }} : </b>{{ $attribute['option_label'] }}</br>
@endforeach

View File

@ -32,6 +32,18 @@
<span class="control-error" v-if="errors.has('company_name')">@{{ errors.first('company_name') }}</span>
</div>
<div class="control-group" :class="[errors.has('first_name') ? 'has-error' : '']">
<label for="first_name" class="required">{{ __('shop::app.customer.account.address.create.first_name') }}</label>
<input value="<?= old('first_name'); ?>" type="text" class="control" name="first_name" v-validate="'required'" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.first_name') }}&quot;">
<span class="control-error" v-if="errors.has('first_name')">@{{ errors.first('first_name') }}</span>
</div>
<div class="control-group" :class="[errors.has('last_name') ? 'has-error' : '']">
<label for="last_name" class="required">{{ __('shop::app.customer.account.address.create.last_name') }}</label>
<input value="<?= old('last_name'); ?>" type="text" class="control" name="last_name" v-validate="'required'" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.last_name') }}&quot;">
<span class="control-error" v-if="errors.has('last_name')">@{{ errors.first('last_name') }}</span>
</div>
<div class="control-group {!! $errors->has('vat_id') ? 'has-error' : '' !!}">
<label for="vat_id">{{ __('shop::app.customer.account.address.create.vat_id') }}</label>
<input type="text" class="control" name="vat_id"

View File

@ -33,6 +33,18 @@
<span class="control-error" v-if="errors.has('company_name')">@{{ errors.first('company_name') }}</span>
</div>
<div class="control-group" :class="[errors.has('first_name') ? 'has-error' : '']">
<label for="first_name" class="required">{{ __('shop::app.customer.account.address.create.first_name') }}</label>
<input type="text" class="control" name="first_name" v-validate="'required'" value="{{ $address->first_name }}" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.first_name') }}&quot;">
<span class="control-error" v-if="errors.has('first_name')">@{{ errors.first('first_name') }}</span>
</div>
<div class="control-group" :class="[errors.has('last_name') ? 'has-error' : '']">
<label for="last_name" class="required">{{ __('shop::app.customer.account.address.create.last_name') }}</label>
<input type="text" class="control" name="last_name" v-validate="'required'" value="{{ $address->last_name }}" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.last_name') }}&quot;">
<span class="control-error" v-if="errors.has('last_name')">@{{ errors.first('last_name') }}</span>
</div>
<div class="control-group {!! $errors->has('vat_id') ? 'has-error' : '' !!}">
<label for="vat_id">{{ __('shop::app.customer.account.address.create.vat_id') }}</label>
<input type="text" class="control" name="vat_id"

View File

@ -26,6 +26,7 @@
width: 100%;
border-collapse: collapse;
text-align: left;
table-layout: fixed;
}
.table thead th {
@ -69,7 +70,8 @@
}
.sale-summary tr.bold {
font-weight: 600;
font-family: DejaVu Sans; sans-serif;
font-weight: 700;
}
.label {

1
packages/Webkul/Velocity/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/node_modules/*

View File

@ -0,0 +1,34 @@
{
"name": "bagisto/velocity-theme",
"description": "Velocity Theme for Bagisto.",
"license": "MIT",
"authors": [
{
"name": "viveksharma-webkul",
"email": "viveksh047@webkul.com"
},
{
"name": "Shubham Mehrotra",
"email": "shubhammehrotra.symfony@webkul.com"
}
],
"require": {},
"autoload": {
"psr-4": {
"Webkul\\Velocity\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Webkul\\Velocity\\Providers\\VelocityServiceProvider"
],
"aliases": {}
}
},
"minimum-stability": "dev"
}

View File

@ -0,0 +1,30 @@
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"axios": "^0.18",
"cross-env": "^5.1.4",
"jquery": "^3.2",
"laravel-mix": "^2.1",
"laravel-mix-merge-manifest": "^0.1.1",
"vue": "^2.1.10",
"vue-carousel": "^0.18.0"
},
"dependencies": {
"accounting": "^0.4.1",
"bootstrap-sass": "^3.4.1",
"font-awesome": "^4.7.0",
"material-icons": "^0.3.1",
"vee-validate": "2.0.0-rc.26",
"vue-slider-component": "^3.1.0",
"vue-toast-notification": "0.0.2"
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,189 @@
/* cyrillic-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 600;
font-display: swap;
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmhduz8A.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 600;
font-display: swap;
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwkxduz8A.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 600;
font-display: swap;
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmxduz8A.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 600;
font-display: swap;
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 600;
font-display: swap;
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmBduz8A.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 600;
font-display: swap;
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 600;
font-display: swap;
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
font-display: swap;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
font-display: swap;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
font-display: swap;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
font-display: swap;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
font-display: swap;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
font-display: swap;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
font-display: swap;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

View File

@ -0,0 +1,675 @@
.velocity-icon {
width: 60px;
height: 55px;
display: inline-block;
background-size: cover;
background-image: url("../images/Icon-Velocity.svg");
}
.router-link-active .velocity-icon,
.active .velocity-icon {
background-image: url("../images/Icon-Velocity-Active.svg");
}
.router-link-active.velocity-icon,
.active.velocity-icon {
background-image: url("../images/Icon-Velocity-Active.svg");
}
@font-face {
font-family: 'Webkul Rango';
src: url("../fonts/font-rango/rango.eot?o0evyv");
src: url("../fonts/font-rango/rango.eot?o0evyv#iefix") format("embedded-opentype"), url("../fonts/font-rango/rango.ttf?o0evyv") format("truetype"), url("../fonts/font-rango/rango.woff?o0evyv") format("woff"), url("../fonts/font-rango/rango.svg?o0evyv#rango") format("svg");
font-weight: normal;
font-style: normal;
}
[class^="rango-"], [class*=" rango-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'Webkul Rango' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.rango-activity:before {
content: "\E900";
}
.rango-announcement:before {
content: "\E901";
}
.rango-arrow-circle-down:before {
content: "\E902";
}
.rango-arrow-circle-left:before {
content: "\E903";
}
.rango-arrow-circle-right:before {
content: "\E904";
}
.rango-arrow-circle-up:before {
content: "\E905";
}
.rango-arrow-down:before {
content: "\E906";
}
.rango-arrow-left:before {
content: "\E907";
}
.rango-arrow-right:before {
content: "\E908";
}
.rango-arrow-up:before {
content: "\E909";
}
.rango-auction:before {
content: "\E90A";
}
.rango-baby:before {
content: "\E90B";
}
.rango-bag:before {
content: "\E90C";
}
.rango-ball-2:before {
content: "\E90D";
}
.rango-bar-code:before {
content: "\E90E";
}
.rango-batch:before {
content: "\E90F";
}
.rango-book:before {
content: "\E910";
}
.rango-calender:before {
content: "\E911";
}
.rango-camera:before {
content: "\E912";
}
.rango-car:before {
content: "\E913";
}
.rango-card:before {
content: "\E914";
}
.rango-cart-1:before {
content: "\E915";
}
.rango-cart-2:before {
content: "\E916";
}
.rango-cart-3:before {
content: "\E917";
}
.rango-circel-1:before {
content: "\E918";
}
.rango-circel:before {
content: "\E919";
}
.rango-circle-1:before {
content: "\E91A";
}
.rango-circle-2:before {
content: "\E91B";
}
.rango-circle-check:before {
content: "\E91C";
}
.rango-clear:before {
content: "\E91D";
}
.rango-close-2:before {
content: "\E91E";
}
.rango-close:before {
content: "\E91F";
}
.rango-cloth:before {
content: "\E920";
}
.rango-coin:before {
content: "\E921";
}
.rango-copy:before {
content: "\E922";
}
.rango-currency:before {
content: "\E923";
}
.rango-delete:before {
content: "\E924";
}
.rango-donwload-1:before {
content: "\E925";
}
.rango-download-1:before {
content: "\E926";
}
.rango-edit-pencil:before {
content: "\E927";
}
.rango-ellipse:before {
content: "\E928";
}
.rango-envelop:before {
content: "\E929";
}
.rango-exchange:before {
content: "\E92A";
}
.rango-exchnage:before {
content: "\E92B";
}
.rango-expend-collaps:before {
content: "\E92C";
}
.rango-expend:before {
content: "\E92D";
}
.rango-eye-hide:before {
content: "\E92E";
}
.rango-eye-visible:before {
content: "\E92F";
}
.rango-facebook:before {
content: "\E930";
}
.rango-file:before {
content: "\E931";
}
.rango-filter:before {
content: "\E932";
}
.rango-flag:before {
content: "\E933";
}
.rango-folder:before {
content: "\E934";
}
.rango-food:before {
content: "\E935";
}
.rango-furniture:before {
content: "\E936";
}
.rango-gift:before {
content: "\E937";
}
.rango-globe:before {
content: "\E938";
}
.rango-google-plus:before {
content: "\E939";
}
.rango-gps:before {
content: "\E93A";
}
.rango-graph-1:before {
content: "\E93B";
}
.rango-graph:before {
content: "\E93C";
}
.rango-heart-fill:before {
content: "\E93D";
}
.rango-heart:before {
content: "\E93E";
}
.rango-hold-cart:before {
content: "\E93F";
}
.rango-home:before {
content: "\E940";
}
.rango-info:before {
content: "\E941";
}
.rango-instagram:before {
content: "\E942";
}
.rango-language-1:before {
content: "\E943";
}
.rango-language:before {
content: "\E944";
}
.rango-laptop:before {
content: "\E945";
}
.rango-limit:before {
content: "\E946";
}
.rango-linked-in:before {
content: "\E947";
}
.rango-lipstick:before {
content: "\E948";
}
.rango-location:before {
content: "\E949";
}
.rango-lock-1:before {
content: "\E94A";
}
.rango-lock-2:before {
content: "\E94B";
}
.rango-map:before {
content: "\E94C";
}
.rango-message-1:before {
content: "\E94D";
}
.rango-message:before {
content: "\E94E";
}
.rango-minus:before {
content: "\E94F";
}
.rango-mobile:before {
content: "\E950";
}
.rango-more:before {
content: "\E951";
}
.rango-neckless:before {
content: "\E952";
}
.rango-next:before {
content: "\E953";
}
.rango-notification:before {
content: "\E954";
}
.rango-num-pad:before {
content: "\E955";
}
.rango-percentage:before {
content: "\E956";
}
.rango-phone:before {
content: "\E957";
}
.rango-picture:before {
content: "\E958";
}
.rango-pintrest:before {
content: "\E959";
}
.rango-play:before {
content: "\E95A";
}
.rango-plus:before {
content: "\E95B";
}
.rango-pos:before {
content: "\E95C";
}
.rango-power:before {
content: "\E95D";
}
.rango-previous:before {
content: "\E95E";
}
.rango-printer:before {
content: "\E95F";
}
.rango-product-add:before {
content: "\E960";
}
.rango-product-retrun:before {
content: "\E961";
}
.rango-product:before {
content: "\E962";
}
.rango-produt-group:before {
content: "\E963";
}
.rango-push:before {
content: "\E964";
}
.rango-quotation:before {
content: "\E965";
}
.rango-refresh:before {
content: "\E966";
}
.rango-refrigrator:before {
content: "\E967";
}
.rango-return-credit:before {
content: "\E968";
}
.rango-return:before {
content: "\E969";
}
.rango-search:before {
content: "\E96A";
}
.rango-security:before {
content: "\E96B";
}
.rango-setting-cog:before {
content: "\E96C";
}
.rango-setting-reset:before {
content: "\E96D";
}
.rango-share-1:before {
content: "\E96E";
}
.rango-share-2:before {
content: "\E96F";
}
.rango-shoes:before {
content: "\E970";
}
.rango-shop:before {
content: "\E971";
}
.rango-sign-in:before {
content: "\E972";
}
.rango-sign-out:before {
content: "\E973";
}
.rango-sort-1:before {
content: "\E974";
}
.rango-sort-2:before {
content: "\E975";
}
.rango-square-1:before {
content: "\E976";
}
.rango-square-3:before {
content: "\E977";
}
.rango-square-4:before {
content: "\E978";
}
.rango-square-tick-fill:before {
content: "\E979";
}
.rango-square:before {
content: "\E97B";
}
.rango-star-fill:before {
content: "\E97C";
}
.rango-star:before {
content: "\E97D";
}
.rango-stat-down:before {
content: "\E97E";
}
.rango-stat-up:before {
content: "\E97F";
}
.rango-support-head:before {
content: "\E980";
}
.rango-t-shirt:before {
content: "\E981";
}
.rango-table:before {
content: "\E982";
}
.rango-tag-1:before {
content: "\E983";
}
.rango-tag-2:before {
content: "\E984";
}
.rango-tag-3:before {
content: "\E985";
}
.rango-tag-4:before {
content: "\E986";
}
.rango-tick-2:before {
content: "\E987";
}
.rango-tick-square:before {
content: "\E988";
}
.rango-tick:before {
content: "\E989";
}
.rango-toggle:before {
content: "\E98A";
}
.rango-trophy:before {
content: "\E98B";
}
.rango-twitter:before {
content: "\E98C";
}
.rango-upload-2:before {
content: "\E98D";
}
.rango-upload:before {
content: "\E98E";
}
.rango-user-add:before {
content: "\E98F";
}
.rango-user-cash:before {
content: "\E990";
}
.rango-user-group:before {
content: "\E991";
}
.rango-user-info:before {
content: "\E992";
}
.rango-user-owner:before {
content: "\E993";
}
.rango-user-shop:before {
content: "\E994";
}
.rango-user:before {
content: "\E995";
}
.rango-van-ship:before {
content: "\E996";
}
.rango-video-camera:before {
content: "\E997";
}
.rango-video:before {
content: "\E998";
}
.rango-view-grid:before {
content: "\E999";
}
.rango-view-list:before {
content: "\E99A";
}
.rango-wifi-on:before {
content: "\E99B";
}
.rango-wifi:before {
content: "\E99C";
}
.rango-youtube:before {
content: "\E99D";
}
.rango-zoom-minus:before {
content: "\E99E";
}
.rango-zoom-plus:before {
content: "\E99F";
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 434 KiB

View File

@ -0,0 +1,169 @@
<?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="rango" 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="activity" d="M636.343 27.429c-18.286 0-32.914 10.971-40.229 29.257l-208.457 636.343-84.114-259.657c-7.314-18.286-21.943-29.257-40.229-29.257h-171.886c-21.943 0-40.229 18.286-40.229 40.229s18.286 40.229 40.229 40.229h138.971l117.029 351.086c7.314 18.286 21.943 29.257 40.229 29.257s32.914-10.971 40.229-29.257l212.114-636.343 87.771 259.657c7.314 18.286 21.943 29.257 40.229 29.257h168.229c21.943 0 40.229-18.286 40.229-40.229s-18.286-40.229-40.229-40.229h-138.971l-113.371-351.086c-10.971-18.286-25.6-29.257-47.543-29.257z" />
<glyph unicode="&#xe901;" glyph-name="announcement" d="M603.429 740.571c-10.971 7.314-21.943 7.314-32.914 3.657l-277.943-95.086h-51.2c-91.429 0-168.229-76.8-168.229-168.229v-62.171c0-91.429 76.8-168.229 168.229-168.229h43.886l285.257-98.743c3.657 0 7.314-3.657 10.971-3.657 7.314 0 14.629 3.657 21.943 7.314 10.971 7.314 14.629 18.286 14.629 29.257v526.629c0 10.971-3.657 21.943-14.629 29.257zM142.629 418.743v62.171c0 54.857 40.229 95.086 95.086 95.086h14.629v-252.343h-10.971c-54.857 0-98.743 40.229-98.743 95.086zM544.914 235.886l-219.429 76.8v270.629l219.429 76.8v-424.229zM720.457 693.029c-18.286 0-36.571-14.629-40.229-32.914 0-21.943 14.629-36.571 32.914-40.229 91.429-7.314 164.571-80.457 164.571-171.886s-73.143-164.571-164.571-171.886c-21.943 0-36.571-18.286-32.914-40.229 0-18.286 18.286-32.914 36.571-32.914h3.657c131.657 7.314 230.4 117.029 230.4 245.029 3.657 128-98.743 237.714-230.4 245.029zM727.771 411.429c-18.286-3.657-36.571-18.286-32.914-40.229 3.657-18.286 18.286-32.914 36.571-32.914h3.657c54.857 7.314 98.743 54.857 98.743 109.714 0 58.514-40.229 102.4-98.743 109.714-18.286 3.657-36.571-10.971-40.229-32.914-3.657-18.286 10.971-36.571 32.914-40.229 14.629 0 32.914-14.629 32.914-36.571 0-18.286-18.286-36.571-32.914-36.571z" />
<glyph unicode="&#xe902;" glyph-name="arrow-circle-down" d="M512 923.429c-263.314 0-475.429-212.114-475.429-475.429s212.114-475.429 475.429-475.429 475.429 212.114 475.429 475.429-212.114 475.429-475.429 475.429zM512 45.714c-223.086 0-402.286 179.2-402.286 402.286s179.2 402.286 402.286 402.286c106.057 0 208.457-43.886 285.257-117.029 73.143-76.8 117.029-179.2 117.029-285.257 0-223.086-179.2-402.286-402.286-402.286zM669.257 437.029l-120.686-120.686v351.086c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-351.086l-120.686 120.686c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l182.857-182.857c7.314-7.314 14.629-10.971 25.6-10.971s18.286 3.657 25.6 10.971l182.857 182.857c14.629 14.629 14.629 36.571 0 51.2s-36.571 14.629-51.2 0z" />
<glyph unicode="&#xe903;" glyph-name="arrow-circle-left" d="M512 923.429c-263.314 0-475.429-212.114-475.429-475.429s212.114-475.429 475.429-475.429 475.429 212.114 475.429 475.429-212.114 475.429-475.429 475.429zM797.257 162.743c-76.8-73.143-179.2-117.029-285.257-117.029-223.086 0-402.286 179.2-402.286 402.286s179.2 402.286 402.286 402.286 402.286-179.2 402.286-402.286c0-106.057-43.886-208.457-117.029-285.257zM731.429 484.571h-351.086l120.686 120.686c14.629 14.629 14.629 36.571 0 51.2s-36.571 14.629-51.2 0l-182.857-182.857c-7.314-7.314-10.971-14.629-10.971-25.6s3.657-18.286 10.971-25.6l182.857-182.857c14.629-14.629 36.571-14.629 51.2 0s14.629 36.571 0 51.2l-120.686 120.686h351.086c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe904;" glyph-name="arrow-circle-right" d="M512 923.429c-263.314 0-475.429-212.114-475.429-475.429s212.114-475.429 475.429-475.429 475.429 212.114 475.429 475.429-212.114 475.429-475.429 475.429zM512 45.714c-223.086 0-402.286 179.2-402.286 402.286 0 106.057 43.886 208.457 117.029 285.257 76.8 73.143 179.2 117.029 285.257 117.029 223.086 0 402.286-179.2 402.286-402.286s-179.2-402.286-402.286-402.286zM574.171 656.457c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l120.686-120.686h-351.086c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h351.086l-120.686-120.686c-14.629-14.629-14.629-36.571 0-51.2s36.571-14.629 51.2 0l182.857 182.857c7.314 7.314 10.971 14.629 10.971 25.6s-3.657 18.286-10.971 25.6l-182.857 182.857z" />
<glyph unicode="&#xe905;" glyph-name="arrow-circle-up" d="M512 923.429c-263.314 0-475.429-212.114-475.429-475.429s212.114-475.429 475.429-475.429 475.429 212.114 475.429 475.429-212.114 475.429-475.429 475.429zM512 45.714c-106.057 0-208.457 43.886-285.257 117.029-73.143 76.8-117.029 179.2-117.029 285.257 0 223.086 179.2 402.286 402.286 402.286s402.286-179.2 402.286-402.286-179.2-402.286-402.286-402.286zM537.6 693.029c-7.314 7.314-14.629 10.971-25.6 10.971s-18.286-3.657-25.6-10.971l-182.857-182.857c-14.629-14.629-14.629-36.571 0-51.2s36.571-14.629 51.2 0l120.686 120.686v-351.086c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v351.086l120.686-120.686c14.629-14.629 36.571-14.629 51.2 0s14.629 36.571 0 51.2l-182.857 182.857z" />
<glyph unicode="&#xe906;" glyph-name="arrow-down" d="M512 301.714c-21.943 0-40.229 7.314-54.857 21.943l-208.457 208.457c-14.629 14.629-14.629 36.571 0 51.2s36.571 14.629 51.2 0l212.114-208.457 212.114 208.457c14.629 14.629 36.571 14.629 51.2 0s14.629-36.571 0-51.2l-208.457-208.457c-14.629-14.629-36.571-21.943-54.857-21.943z" />
<glyph unicode="&#xe907;" glyph-name="arrow-left" d="M621.714 177.371c-10.971 0-18.286 3.657-25.6 10.971l-208.457 208.457c-14.629 10.971-21.943 29.257-21.943 51.2 0 18.286 7.314 40.229 21.943 54.857l208.457 208.457c14.629 14.629 36.571 14.629 51.2 0s14.629-36.571 0-51.2l-208.457-212.114 208.457-212.114c14.629-14.629 14.629-36.571 0-51.2-7.314-7.314-14.629-7.314-25.6-7.314z" />
<glyph unicode="&#xe908;" glyph-name="arrow-right" d="M402.286 177.371c-10.971 0-18.286 3.657-25.6 10.971-14.629 14.629-14.629 36.571 0 51.2l208.457 208.457-208.457 212.114c-14.629 14.629-14.629 36.571 0 51.2s36.571 14.629 51.2 0l208.457-208.457c14.629-14.629 21.943-32.914 21.943-54.857 0-18.286-7.314-40.229-21.943-54.857l-208.457-208.457c-7.314-7.314-14.629-7.314-25.6-7.314z" />
<glyph unicode="&#xe909;" glyph-name="arrow-up" d="M746.057 301.714c-10.971 0-18.286 3.657-25.6 10.971l-208.457 208.457-212.114-208.457c-14.629-14.629-36.571-14.629-51.2 0s-14.629 36.571 0 51.2l208.457 208.457c29.257 29.257 80.457 29.257 106.057 0l208.457-208.457c14.629-14.629 14.629-36.571 0-51.2-3.657-7.314-14.629-10.971-25.6-10.971z" />
<glyph unicode="&#xe90a;" glyph-name="auction" d="M822.857 689.371h-274.286v87.771c0 47.543-36.571 84.114-84.114 84.114h-215.771c-47.543 0-84.114-36.571-84.114-84.114v-402.286c0-47.543 36.571-84.114 84.114-84.114h212.114c47.543 0 84.114 36.571 84.114 84.114v87.771h274.286c62.171 0 113.371 51.2 113.371 113.371s-47.543 113.371-109.714 113.371zM475.429 374.857c0-7.314-3.657-10.971-10.971-10.971h-215.771c-7.314 0-10.971 3.657-10.971 10.971v40.229h186.514c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-186.514v288.914c0 7.314 3.657 10.971 10.971 10.971h212.114c7.314 0 14.629-7.314 14.629-10.971v-402.286zM822.857 535.771h-274.286v80.457h274.286c21.943 0 40.229-18.286 40.229-40.229s-18.286-40.229-40.229-40.229zM157.257 151.771h380.343c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-380.343c-21.943 0-36.571-14.629-36.571-36.571s18.286-36.571 36.571-36.571zM614.4 115.2h-519.314c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h519.314c21.943 0 36.571 14.629 36.571 36.571s-18.286 36.571-36.571 36.571z" />
<glyph unicode="&#xe90b;" glyph-name="baby" d="M709.487 667.428c-10.971 62.171-51.2 113.371-106.057 142.629v40.229c0 51.2-40.229 91.429-91.429 91.429s-91.429-40.229-91.429-91.429v-40.229c-54.857-29.257-95.086-80.457-106.057-142.629-25.6-18.286-40.229-47.543-40.229-80.457v-486.4c0-80.457 65.829-146.286 146.286-146.286h182.857c80.457 0 146.286 65.829 146.286 146.286v486.4c0 32.914-18.286 62.171-40.229 80.457zM468.115 751.542c14.629 3.657 25.6 18.286 25.6 32.914v65.829c0 10.971 7.314 18.286 18.286 18.286s18.286-7.314 18.286-18.286v-65.829c0-14.629 10.971-29.257 25.6-32.914 32.914-10.971 58.514-36.571 73.143-65.829h-230.4c10.971 29.257 36.571 54.857 69.486 65.829zM676.572 100.57c0-40.229-32.914-73.143-73.143-73.143h-182.857c-40.229 0-73.143 32.914-73.143 73.143v36.571h109.714c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-109.714v73.143h109.714c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-109.714v73.143h109.714c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-109.714v84.114c0 10.971 7.314 18.286 14.629 25.6 3.657 0 7.314 3.657 10.971 3.657h277.943c3.657 0 7.314 0 10.971-3.657 10.971-3.657 14.629-14.629 14.629-25.6v-486.4z" />
<glyph unicode="&#xe90c;" glyph-name="bag" d="M786.286 539.429v128c0 69.486-47.543 124.343-109.714 142.629v76.8c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-73.143h-182.857v73.143c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-76.8c-62.171-14.629-109.714-73.143-109.714-142.629v-131.657c-43.886-25.6-73.143-73.143-73.143-124.343v-292.571c0-80.457 65.829-146.286 146.286-146.286h402.286c80.457 0 146.286 65.829 146.286 146.286v292.571c0 54.857-29.257 102.4-73.143 128zM310.857 667.429c0 40.229 32.914 73.143 73.143 73.143h256c40.229 0 73.143-32.914 73.143-73.143v-109.714h-402.286v109.714zM676.571 411.429v-73.143c0-40.229-32.914-73.143-73.143-73.143h-182.857c-40.229 0-73.143 32.914-73.143 73.143v73.143c0 40.229 32.914 73.143 73.143 73.143h182.857c40.229 0 73.143-32.914 73.143-73.143zM786.286 118.857c0-40.229-32.914-73.143-73.143-73.143h-402.286c-40.229 0-73.143 32.914-73.143 73.143v292.571c0 32.914 25.6 62.171 54.857 69.486-10.971-21.943-18.286-43.886-18.286-69.486v-73.143c0-80.457 65.829-146.286 146.286-146.286h182.857c80.457 0 146.286 65.829 146.286 146.286v73.143c0 25.6-7.314 51.2-18.286 69.486 32.914-7.314 54.857-36.571 54.857-69.486v-292.571z" />
<glyph unicode="&#xe90d;" glyph-name="ball-2" d="M512 927.086c-80.457 0-160.914-21.943-226.743-58.514-3.657 0-7.314-3.657-10.971-7.314-146.286-80.457-241.371-237.714-241.371-413.257 0-263.314 215.771-479.086 479.086-479.086s479.086 215.771 479.086 479.086-215.771 479.086-479.086 479.086zM914.286 484.571h-274.286c7.314 157.257 65.829 256 98.743 299.886 98.743-69.486 164.571-175.543 175.543-299.886zM676.571 817.371c-40.229-54.857-98.743-168.229-106.057-332.8h-106.057c-7.314 182.857-62.171 288.914-106.057 340.114 47.543 18.286 98.743 29.257 153.6 29.257 58.514 0 113.371-10.971 164.571-36.571zM292.571 788.114c29.257-32.914 91.429-120.686 98.743-303.543h-281.6c10.971 128 80.457 237.714 182.857 303.543zM109.714 411.429h281.6c-10.971-164.571-80.457-263.314-109.714-296.229-95.086 65.829-160.914 171.886-171.886 296.229zM347.429 78.629c36.571 47.543 106.057 160.914 117.029 332.8h106.057c7.314-182.857 65.829-285.257 109.714-332.8-51.2-21.943-106.057-36.571-164.571-36.571-62.171 0-117.029 14.629-168.229 36.571zM742.4 115.2c-29.257 29.257-91.429 113.371-102.4 296.229h274.286c-10.971-124.343-76.8-230.4-171.886-296.229z" />
<glyph unicode="&#xe90e;" glyph-name="bar-code" d="M786.286 173.714c-21.943 0-36.571 14.629-36.571 36.571v475.429c0 21.943 14.629 36.571 36.571 36.571s36.571-14.629 36.571-36.571v-475.429c0-21.943-14.629-36.571-36.571-36.571zM420.571 173.714c-21.943 0-36.571 14.629-36.571 36.571v475.429c0 21.943 14.629 36.571 36.571 36.571s36.571-14.629 36.571-36.571v-475.429c0-21.943-14.629-36.571-36.571-36.571zM640 173.714c-21.943 0-36.571 14.629-36.571 36.571v475.429c0 21.943 14.629 36.571 36.571 36.571s36.571-14.629 36.571-36.571v-475.429c0-21.943-14.629-36.571-36.571-36.571zM237.714 173.714c-21.943 0-36.571 14.629-36.571 36.571v475.429c0 21.943 14.629 36.571 36.571 36.571s36.571-14.629 36.571-36.571v-475.429c0-21.943-14.629-36.571-36.571-36.571z" />
<glyph unicode="&#xe90f;" glyph-name="batch" d="M815.543 733.257c-25.6 10.971-43.886 40.229-40.229 69.486 7.314 58.514-18.286 109.714-69.486 138.971-47.543 29.257-109.714 25.6-153.6-7.314-25.6-18.286-58.514-18.286-84.114 0-43.886 29.257-102.4 29.257-153.6 0-47.543-29.257-73.143-80.457-65.829-131.657 3.657-29.257-14.629-58.514-40.229-69.486-51.2-21.943-84.114-73.143-84.114-128s32.914-106.057 84.114-128c25.6-10.971 43.886-40.229 40.229-69.486-7.314-58.514 18.286-109.714 69.486-138.971 10.971-7.314 21.943-10.971 32.914-14.629v-245.029c0-29.257 14.629-51.2 40.229-65.829 10.971-7.314 21.943-7.314 32.914-7.314 18.286 0 32.914 3.657 47.543 14.629l47.543 36.571 25.6-25.6c21.943-21.943 51.2-25.6 80.457-14.629s43.886 36.571 43.886 65.829v237.714c10.971 3.657 25.6 7.314 36.571 14.629 47.543 29.257 76.8 80.457 69.486 135.314-3.657 29.257 14.629 58.514 40.229 69.486 51.2 21.943 84.114 73.143 84.114 128 0 62.171-32.914 113.371-84.114 135.314zM570.514 42.057c-25.6 25.6-69.486 29.257-98.743 7.314l-40.229-36.571c-3.657-3.657-3.657 0-3.657 0v245.029c14.629 3.657 32.914 10.971 47.543 21.943 25.6 18.286 58.514 18.286 80.457 0 14.629-10.971 29.257-18.286 43.886-21.943v-241.371l-29.257 25.6zM786.286 543.086c-54.857-25.6-87.771-84.114-84.114-142.629 3.657-29.257-7.314-51.2-32.914-65.829-21.943-14.629-51.2-10.971-73.143 7.314-47.543 32.914-117.029 32.914-168.229 0-21.943-18.286-51.2-18.286-73.143-3.657s-36.571 40.229-32.914 65.829c3.657 58.514-29.257 117.029-84.114 142.629-25.6 10.971-40.229 32.914-40.229 62.171 0 21.943 14.629 43.886 40.229 58.514 54.857 21.943 87.771 80.457 84.114 142.629-3.657 25.6 7.314 47.543 32.914 62.171 10.971 7.314 21.943 10.971 36.571 10.971 10.971 0 25.6-3.657 40.229-10.971 47.543-32.914 117.029-32.914 168.229 0 21.943 18.286 51.2 18.286 73.143 3.657s36.571-40.229 32.914-65.829c-3.657-58.514 29.257-117.029 84.114-142.629 25.6-10.971 40.229-32.914 40.229-62.171-3.657-29.257-18.286-51.2-43.886-62.171zM512 813.714c-117.029 0-212.114-95.086-212.114-212.114s95.086-212.114 212.114-212.114 212.114 95.086 212.114 212.114-95.086 212.114-212.114 212.114zM512 462.629c-76.8 0-138.971 62.171-138.971 138.971s62.171 138.971 138.971 138.971c76.8 0 138.971-62.171 138.971-138.971s-62.171-138.971-138.971-138.971z" />
<glyph unicode="&#xe910;" glyph-name="book" d="M826.514 927.086h-585.143c-62.171 0-109.714-47.543-109.714-109.714v-735.086c0-62.171 47.543-109.714 109.714-109.714h577.829c40.229 0 73.143 32.914 73.143 73.143v815.543c0 32.914-29.257 65.829-65.829 65.829zM581.486 616.229v237.714h106.057v-226.743c-14.629 21.943-36.571 29.257-47.543 29.257-18.286 0-36.571-7.314-47.543-25.6l-10.971-14.629zM204.8 78.629v738.743c0 21.943 14.629 36.571 36.571 36.571h18.286v-808.229h-18.286c-21.943-3.657-36.571 14.629-36.571 32.914zM819.2 42.057h-486.4v811.886h175.543v-252.343c0-36.571 18.286-65.829 43.886-76.8 21.943-7.314 47.543 0 65.829 18.286l18.286 21.943 7.314-14.629 3.657-3.657c10.971-18.286 29.257-25.6 47.543-25.6 7.314 0 10.971 0 18.286 3.657 29.257 10.971 47.543 40.229 47.543 76.8v252.343h58.514v-811.886z" />
<glyph unicode="&#xe911;" glyph-name="calender" d="M833.829 835.657h-80.457v40.229c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-40.229h-343.771v40.229c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-40.229h-69.486c-73.143 0-135.314-62.171-135.314-135.314v-113.371c-3.657-3.657-3.657-10.971-3.657-14.629s0-10.971 3.657-14.629v-438.857c0-73.143 62.171-135.314 135.314-135.314h640c73.143 0 135.314 62.171 135.314 135.314v581.486c0 73.143-62.171 135.314-135.314 135.314zM193.829 762.514h69.486v-40.229c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v40.229h343.771v-40.229c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v40.229h80.457c36.571 0 62.171-25.6 62.171-62.171v-91.429h-764.343v91.429c0 36.571 25.6 62.171 62.171 62.171zM833.829 56.686h-640c-36.571 0-62.171 25.6-62.171 62.171v416.914h764.343v-416.914c0-36.571-25.6-62.171-62.171-62.171z" />
<glyph unicode="&#xe912;" glyph-name="camera" d="M903.314 722.286h-175.543c-3.657 0-3.657 0-7.314 3.657-21.943 29.257-91.429 106.057-138.971 106.057h-138.971c-47.543 0-117.029-76.8-138.971-106.057 0 0-3.657-3.657-7.314-3.657h-179.2c-54.857 0-95.086-40.229-95.086-87.771v-482.743c0-47.543 43.886-87.771 95.086-87.771h786.286c54.857 0 95.086 40.229 95.086 87.771v482.743c3.657 47.543-40.229 87.771-95.086 87.771zM928.914 151.771c0-7.314-10.971-14.629-21.943-14.629h-789.943c-14.629 0-21.943 7.314-21.943 14.629v482.743c0 7.314 10.971 14.629 21.943 14.629h175.543c25.6 0 51.2 10.971 65.829 32.914 32.914 40.229 73.143 73.143 84.114 76.8h131.657c14.629-3.657 54.857-36.571 84.114-76.8 14.629-18.286 40.229-32.914 65.829-32.914h175.543c14.629 0 21.943-7.314 21.943-14.629l7.314-482.743zM508.343 612.571c-109.714 0-201.143-91.429-201.143-201.143s91.429-201.143 201.143-201.143 201.143 91.429 201.143 201.143-91.429 201.143-201.143 201.143zM508.343 283.429c-69.486 0-128 58.514-128 128s58.514 128 128 128 128-58.514 128-128-54.857-128-128-128zM855.771 557.714c0-30.297-24.56-54.857-54.857-54.857s-54.857 24.56-54.857 54.857c0 30.297 24.56 54.857 54.857 54.857s54.857-24.56 54.857-54.857z" />
<glyph unicode="&#xe913;" glyph-name="car" d="M1005.714 341.943c0 102.4-69.486 197.486-182.857 245.029 0 0-3.657 0-3.657 3.657-51.2 98.743-175.543 164.571-307.2 168.229h-3.657c-135.314 0-256-65.829-307.2-168.229-109.714-47.543-182.857-138.971-182.857-241.371 0-58.514 51.2-106.057 117.029-113.371 10.971-58.514 62.171-102.4 124.343-102.4s113.371 43.886 124.343 102.4h263.314c10.971-58.514 62.171-102.4 124.343-102.4s113.371 43.886 124.343 102.4c62.171 10.971 109.714 58.514 109.714 106.057zM742.4 576c-73.143-21.943-138.971-32.914-193.829-36.571v142.629c84.114-7.314 157.257-47.543 193.829-106.057zM475.429 685.714v-146.286c-95.086 0-164.571 21.943-201.143 36.571 36.571 58.514 113.371 98.743 201.143 109.714zM263.314 210.286c-29.257 0-54.857 25.6-54.857 54.857s25.6 54.857 54.857 54.857 54.857-25.6 54.857-54.857-25.6-54.857-54.857-54.857zM775.314 210.286c-29.257 0-54.857 25.6-54.857 54.857s25.6 54.857 54.857 54.857 54.857-25.6 54.857-54.857-25.6-54.857-54.857-54.857zM892.343 316.343c-18.286 47.543-65.829 80.457-117.029 80.457-54.857 0-98.743-32.914-120.686-80.457h-274.286c-18.286 47.543-65.829 80.457-120.686 80.457s-98.743-32.914-120.686-80.457c-29.257 3.657-51.2 18.286-51.2 40.229 0 69.486 47.543 131.657 124.343 168.229 36.571-18.286 124.343-54.857 266.971-54.857h32.914c80.457 3.657 175.543 18.286 285.257 54.857 80.457-36.571 131.657-102.4 131.657-175.543 3.657-14.629-10.971-32.914-36.571-32.914z" />
<glyph unicode="&#xe914;" glyph-name="card" d="M848.457 780.8h-672.914c-69.486 0-120.686-51.2-120.686-120.686v-424.229c0-69.486 51.2-120.686 120.686-120.686h672.914c32.914 0 65.829 14.629 91.429 40.229 21.943 21.943 32.914 54.857 29.257 80.457v424.229c0 69.486-54.857 120.686-120.686 120.686zM175.543 707.657h672.914c29.257 0 47.543-18.286 47.543-47.543v-62.171h-768v62.171c0 29.257 18.286 47.543 47.543 47.543zM885.029 202.971c-10.971-10.971-21.943-14.629-36.571-14.629h-672.914c-29.257 0-47.543 18.286-47.543 47.543v288.914h768v-292.571c0-7.314-3.657-18.286-10.971-29.257zM614.4 309.029c-21.943 0-36.571-14.629-36.571-36.571v-10.971c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v10.971c0 21.943-18.286 36.571-36.571 36.571zM724.114 309.029c-21.943 0-36.571-14.629-36.571-36.571v-10.971c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v10.971c0 21.943-18.286 36.571-36.571 36.571zM833.829 309.029c-21.943 0-36.571-14.629-36.571-36.571v-10.971c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v10.971c0 21.943-18.286 36.571-36.571 36.571z" />
<glyph unicode="&#xe915;" glyph-name="cart-1" d="M961.829 601.6c-21.943 32.914-62.171 54.857-102.4 54.857h-482.743c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h482.743c18.286 0 36.571-10.971 43.886-25.6 0 0 0-3.657 3.657-3.657 10.971-18.286 7.314-117.029-40.229-208.457-18.286-36.571-58.514-95.086-113.371-95.086h-325.486c-32.914 0-58.514 21.943-65.829 54.857l-106.057 460.8c-10.971 58.514-65.829 106.057-128 106.057h-51.2c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h51.2c25.6 0 51.2-21.943 54.857-47.543l102.4-460.8c14.629-65.829 69.486-113.371 138.971-113.371h325.486c76.8 0 142.629 54.857 190.171 157.257 40.229 91.429 62.171 215.771 21.943 266.971zM735.086 155.429c-36.571 0-65.829-29.257-65.829-65.829s29.257-65.829 65.829-65.829 65.829 29.257 65.829 65.829-29.257 65.829-65.829 65.829zM442.514 155.429c-36.571 0-65.829-29.257-65.829-65.829s29.257-65.829 65.829-65.829 65.829 29.257 65.829 65.829-29.257 65.829-65.829 65.829z" />
<glyph unicode="&#xe916;" glyph-name="cart-2" d="M833.829 689.371h-160.914l87.771 109.714c10.971 14.629 7.314 36.571-7.314 51.2-14.629 10.971-40.229 10.971-51.2-3.657l-124.343-153.6h-387.657c-80.457 0-146.286-65.829-146.286-146.286v-3.657l36.571-358.4c0-76.8 65.829-142.629 146.286-142.629h566.857c80.457 0 146.286 62.171 146.286 142.629l36.571 358.4v3.657c3.657 76.8-65.829 142.629-142.629 142.629zM870.4 188.343v-3.657c0-40.229-32.914-73.143-73.143-73.143h-570.514c-36.571 0-73.143 36.571-73.143 73.143v3.657l-36.571 354.743c0 36.571 36.571 73.143 73.143 73.143h325.486l-32.914-40.229c-10.971-14.629-10.971-40.229 3.657-51.2 7.314-3.657 14.629-7.314 21.943-7.314 10.971 0 21.943 3.657 29.257 14.629l69.486 84.114h219.429c36.571 0 73.143-32.914 73.143-73.143l-29.257-354.743zM296.229 462.629c-21.943 0-36.571-14.629-36.571-36.571v-168.229c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v168.229c0 21.943-14.629 36.571-36.571 36.571zM515.657 462.629c-21.943 0-36.571-14.629-36.571-36.571v-168.229c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v168.229c0 21.943-14.629 36.571-36.571 36.571zM735.086 462.629c-21.943 0-36.571-14.629-36.571-36.571v-168.229c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v168.229c0 21.943-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe917;" glyph-name="cart-3" d="M661.943 689.371c-21.943 0-36.571-14.629-36.571-36.571 0-58.514-51.2-109.714-113.371-109.714s-113.371 51.2-113.371 109.714c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571c0-98.743 84.114-182.857 186.514-182.857s186.514 84.114 186.514 182.857c0 18.286-14.629 36.571-36.571 36.571zM782.629 908.8h-541.257c-54.857 0-102.4-47.543-102.4-102.4v-713.143c0-54.857 47.543-102.4 102.4-102.4h537.6c54.857 0 102.4 47.543 102.4 102.4v713.143c0 54.857-43.886 102.4-98.743 102.4zM241.371 835.657h537.6c14.629 0 29.257-14.629 29.257-29.257v-10.971c-10.971 3.657-18.286 3.657-29.257 3.657h-537.6c-10.971 0-18.286-3.657-29.257-3.657v10.971c3.657 14.629 14.629 29.257 29.257 29.257zM808.229 89.6c0-14.629-14.629-29.257-29.257-29.257h-537.6c-14.629 0-29.257 14.629-29.257 29.257v607.086c0 14.629 14.629 29.257 29.257 29.257h537.6c14.629 0 29.257-14.629 29.257-29.257v-607.086z" />
<glyph unicode="&#xe918;" glyph-name="circel-1" d="M512 938.057c-270.629 0-490.057-219.429-490.057-490.057s219.429-490.057 490.057-490.057 490.057 219.429 490.057 490.057-219.429 490.057-490.057 490.057zM512 31.086c-230.4 0-416.914 186.514-416.914 416.914s186.514 416.914 416.914 416.914 416.914-186.514 416.914-416.914-186.514-416.914-416.914-416.914zM512 700.343c-138.971 0-252.343-113.371-252.343-252.343s113.371-252.343 252.343-252.343 252.343 113.371 252.343 252.343-113.371 252.343-252.343 252.343zM512 268.8c-98.743 0-179.2 80.457-179.2 179.2s80.457 179.2 179.2 179.2c98.743 0 179.2-80.457 179.2-179.2s-80.457-179.2-179.2-179.2z" />
<glyph unicode="&#xe919;" glyph-name="circel" d="M512-1.829c-248.686 0-449.829 201.143-449.829 449.829s201.143 449.829 449.829 449.829 449.829-201.143 449.829-449.829-201.143-449.829-449.829-449.829zM512 824.686c-208.457 0-376.686-168.229-376.686-376.686s168.229-376.686 376.686-376.686c208.457 0 376.686 168.229 376.686 376.686s-168.229 376.686-376.686 376.686z" />
<glyph unicode="&#xe91a;" glyph-name="circle-1" d="M512 206.629c-131.657 0-241.371 106.057-241.371 241.371 0 131.657 106.057 241.371 241.371 241.371 131.657 0 241.371-106.057 241.371-241.371 0-131.657-109.714-241.371-241.371-241.371zM512 616.229c-91.429 0-168.229-76.8-168.229-168.229s76.8-168.229 168.229-168.229 168.229 76.8 168.229 168.229-76.8 168.229-168.229 168.229z" />
<glyph unicode="&#xe91b;" glyph-name="circle-2" d="M512 243.2c-113.371 0-204.8 91.429-204.8 204.8s91.429 204.8 204.8 204.8c113.371 0 204.8-91.429 204.8-204.8s-91.429-204.8-204.8-204.8z" />
<glyph unicode="&#xe91c;" glyph-name="circle-check" d="M512-42.057c-270.629 0-490.057 219.429-490.057 490.057s219.429 490.057 490.057 490.057 490.057-219.429 490.057-490.057-219.429-490.057-490.057-490.057zM512 864.914c-230.4 0-416.914-186.514-416.914-416.914s186.514-416.914 416.914-416.914c230.4 0 416.914 186.514 416.914 416.914s-186.514 416.914-416.914 416.914zM512 195.657c-138.971 0-252.343 113.371-252.343 252.343s113.371 252.343 252.343 252.343 252.343-113.371 252.343-252.343-113.371-252.343-252.343-252.343z" />
<glyph unicode="&#xe91d;" glyph-name="clear" d="M819.2 766.171h-398.629c-29.257 0-54.857-10.971-73.143-29.257l-223.086-223.086c-25.6-25.6-25.6-65.829-3.657-91.429l223.086-252.343c18.286-21.943 47.543-36.571 76.8-36.571h402.286c58.514 0 106.057 47.543 106.057 106.057v424.229c-7.314 54.857-51.2 102.4-109.714 102.4zM848.457 232.229c0-18.286-14.629-32.914-32.914-32.914h-402.286c-7.314 0-18.286 3.657-21.943 10.971l-219.429 248.686 219.429 219.429c7.314 7.314 14.629 7.314 21.943 7.314h398.629c18.286 0 32.914-14.629 32.914-32.914v-420.571zM742.4 597.943c-14.629 14.629-36.571 14.629-51.2 0l-91.429-91.429-91.429 91.429c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l91.429-91.429-91.429-91.429c-14.629-14.629-14.629-36.571 0-51.2 7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971l91.429 91.429 91.429-91.429c7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971c14.629 14.629 14.629 36.571 0 51.2l-91.429 91.429 91.429 91.429c14.629 14.629 14.629 36.571 0 51.2z" />
<glyph unicode="&#xe91e;" glyph-name="close-2" d="M512 927.086c-263.314 0-479.086-215.771-479.086-479.086s215.771-479.086 479.086-479.086 479.086 215.771 479.086 479.086-215.771 479.086-479.086 479.086zM512 42.057c-223.086 0-405.943 182.857-405.943 405.943s182.857 405.943 405.943 405.943 405.943-182.857 405.943-405.943-182.857-405.943-405.943-405.943zM738.743 674.743c-14.629 14.629-36.571 14.629-51.2 0l-175.543-175.543-175.543 175.543c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l175.543-175.543-175.543-175.543c-14.629-14.629-14.629-36.571 0-51.2 7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971l175.543 175.543 175.543-175.543c7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971c14.629 14.629 14.629 36.571 0 51.2l-175.543 175.543 175.543 175.543c14.629 14.629 14.629 36.571 0 51.2z" />
<glyph unicode="&#xe91f;" glyph-name="close" d="M563.2 448l288.914 288.914c14.629 14.629 14.629 36.571 0 51.2s-36.571 14.629-51.2 0l-288.914-288.914-288.914 292.571c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l288.914-288.914-288.914-288.914c-14.629-14.629-14.629-36.571 0-51.2 7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971l288.914 288.914 288.914-288.914c7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971c14.629 14.629 14.629 36.571 0 51.2l-288.914 285.257z" />
<glyph unicode="&#xe920;" glyph-name="cloth" d="M954.514 159.086l-153.6 314.514c-3.657 7.314-7.314 18.286-3.657 29.257l10.971 106.057 62.171-36.571c18.286-10.971 40.229-10.971 54.857 0 18.286 10.971 32.914 32.914 32.914 58.514v87.771c0 21.943-10.971 43.886-29.257 58.514l-197.486 135.314c-21.943 14.629-43.886 21.943-69.486 21.943h-18.286c-25.6 0-51.2-18.286-54.857-47.543v-21.943c0-62.171-14.629-95.086-76.8-95.086-76.8 3.657-84.114 43.886-84.114 95.086v21.943c-7.314 25.6-29.257 47.543-54.857 47.543h-18.286c-25.6 3.657-47.543-7.314-69.486-21.943l-197.486-135.314c-18.286-10.971-29.257-32.914-29.257-58.514v-87.771c0-25.6 10.971-47.543 32.914-58.514 18.286-10.971 40.229-10.971 54.857 0l62.171 36.571 18.286-106.057c0-10.971 0-21.943-3.657-29.257l-153.6-314.514c-18.286-40.229-7.314-87.771 25.6-113.371 54.857-40.229 175.543-87.771 416.914-87.771s362.057 47.543 416.914 87.771c32.914 25.6 43.886 73.143 25.6 113.371zM877.714 104.229c-40.229-29.257-138.971-73.143-373.029-73.143s-336.457 47.543-373.029 76.8c-3.657 3.657-7.314 14.629-3.657 21.943l153.6 314.514c10.971 21.943 14.629 47.543 10.971 73.143l-21.943 128c-3.657 21.943-14.629 40.229-32.914 47.543-7.314 7.314-14.629 7.314-21.943 7.314-10.971 0-18.286-3.657-29.257-7.314l-62.171-36.571v62.171l193.829 131.657c7.314 7.314 18.286 10.971 29.257 10.971h3.657c3.657-106.057 54.857-160.914 153.6-164.571 65.829 0 146.286 29.257 149.943 164.571h3.657c10.971 0 18.286-3.657 29.257-10.971l193.829-131.657v-65.829l-58.514 36.571c-14.629 7.314-32.914 7.314-51.2 0s-29.257-25.6-32.914-47.543l-21.943-128c-3.657-25.6 0-51.2 10.971-73.143l153.6-314.514c3.657-7.314 0-18.286-3.657-21.943zM618.057 473.6s-25.6-14.629-102.4-14.629c-87.771 0-117.029 10.971-120.686 10.971-14.629 10.971-36.571 7.314-47.543-7.314-14.629-14.629-10.971-36.571 3.657-51.2 21.943-18.286 80.457-29.257 164.571-29.257 102.4 0 135.314 18.286 146.286 25.6 14.629 10.971 18.286 36.571 7.314 51.2-14.629 25.6-32.914 29.257-51.2 14.629z" />
<glyph unicode="&#xe921;" glyph-name="coin" d="M512 927.086c-263.314 0-479.086-215.771-479.086-479.086s215.771-479.086 479.086-479.086 479.086 215.771 479.086 479.086-215.771 479.086-479.086 479.086zM512 42.057c-223.086 0-405.943 182.857-405.943 405.943s182.857 405.943 405.943 405.943 405.943-182.857 405.943-405.943-182.857-405.943-405.943-405.943zM515.657 495.543c-69.486 18.286-98.743 32.914-98.743 69.486 0 43.886 47.543 54.857 84.114 54.857 47.543 0 58.514-25.6 62.171-29.257 7.314-18.286 29.257-29.257 47.543-21.943s29.257 29.257 21.943 47.543c-7.314 25.6-36.571 62.171-95.086 73.143v51.2c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-51.2c-73.143-10.971-117.029-58.514-117.029-124.343 0-95.086 87.771-120.686 153.6-138.971 73.143-21.943 106.057-36.571 106.057-80.457 0-29.257-47.543-65.829-106.057-65.829-36.571 0-120.686 7.314-120.686 80.457 0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571c0-84.114 62.171-138.971 157.257-149.943v-40.229c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v40.229c80.457 14.629 142.629 69.486 142.629 135.314-3.657 102.4-95.086 131.657-164.571 149.943z" />
<glyph unicode="&#xe922;" glyph-name="copy" d="M885.029 956.343h-464.457c-73.143 0-135.314-58.514-135.314-135.314v-175.543h-149.943c-73.143 0-135.314-58.514-135.314-135.314v-435.2c0-73.143 58.514-135.314 135.314-135.314h435.2c73.143 0 135.314 58.514 135.314 135.314v149.943h179.2c73.143 0 135.314 58.514 135.314 135.314v460.8c0 73.143-62.171 135.314-135.314 135.314zM632.686 74.971c0-32.914-25.6-62.171-62.171-62.171h-435.2c-32.914 0-62.171 25.6-62.171 62.171v435.2c0 32.914 25.6 62.171 62.171 62.171h435.2c32.914 0 62.171-25.6 62.171-62.171v-435.2zM947.2 356.571c0-32.914-25.6-62.171-62.171-62.171h-179.2v215.771c0 73.143-58.514 135.314-135.314 135.314h-208.457v175.543c0 32.914 25.6 62.171 62.171 62.171h464.457c32.914 0 62.171-25.6 62.171-62.171v-464.457z" />
<glyph unicode="&#xe923;" glyph-name="currency" d="M266.971 510.171c-69.486 18.286-98.743 32.914-98.743 69.486 0 43.886 47.543 54.857 84.114 54.857 47.543 0 58.514-25.6 62.171-29.257 7.314-18.286 29.257-29.257 47.543-21.943s29.257 29.257 21.943 47.543c-7.314 25.6-36.571 62.171-95.086 73.143v51.2c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-51.2c-73.143-10.971-117.029-58.514-117.029-124.343 0-95.086 87.771-120.686 153.6-138.971 73.143-21.943 106.057-36.571 106.057-80.457 0-29.257-47.543-65.829-106.057-65.829-36.571 0-120.686 7.314-120.686 80.457 0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571c0-84.114 62.171-138.971 157.257-149.943v-40.229c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v40.229c80.457 14.629 142.629 69.486 142.629 135.314-7.314 102.4-98.743 128-164.571 149.943zM998.4 298.057c-14.629 14.629-36.571 14.629-51.2 3.657-29.257-25.6-62.171-40.229-95.086-40.229-54.857 0-98.743 32.914-131.657 80.457h58.514c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-87.771c-3.657 18.286-7.314 36.571-7.314 54.857v7.314h95.086c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-80.457c25.6 73.143 84.114 124.343 149.943 124.343 29.257 0 54.857-10.971 80.457-25.6 18.286-10.971 40.229-7.314 51.2 7.314 10.971 18.286 7.314 40.229-7.314 51.2-36.571 25.6-80.457 40.229-124.343 40.229-106.057 0-197.486-84.114-226.743-197.486h-80.457c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h73.143v-7.314c0-18.286 0-36.571 3.657-54.857h-76.8c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h98.743c40.229-91.429 120.686-153.6 212.114-153.6 54.857 0 102.4 21.943 146.286 58.514 10.971 10.971 14.629 36.571 0 51.2z" />
<glyph unicode="&#xe924;" glyph-name="delete" d="M585.143 195.657c21.943 0 36.571 14.629 36.571 36.571v310.857c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-310.857c0-21.943 14.629-36.571 36.571-36.571zM438.857 195.657c21.943 0 36.571 14.629 36.571 36.571v310.857c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-310.857c0-21.943 14.629-36.571 36.571-36.571zM859.429 736.914h-694.857c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h65.829v-581.486c0-21.943 14.629-36.571 36.571-36.571h486.4c21.943 0 36.571 14.629 36.571 36.571v581.486h69.486c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM716.8 122.514h-413.257v541.257h413.257v-541.257zM376.686 773.486h270.629c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-270.629c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571z" />
<glyph unicode="&#xe925;" glyph-name="donwload-1" d="M921.6 363.886c-21.943 0-36.571-14.629-36.571-36.571v-234.057c0-29.257-25.6-54.857-54.857-54.857h-629.029c-29.257 0-54.857 25.6-54.857 54.857v234.057c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-234.057c0-69.486 58.514-128 128-128h625.371c69.486 0 128 58.514 128 128v234.057c3.657 18.286-14.629 36.571-32.914 36.571zM457.143 188.343c14.629-14.629 36.571-25.6 58.514-25.6s43.886 7.314 58.514 25.6l226.743 226.743c14.629 14.629 14.629 36.571 0 51.2s-36.571 14.629-51.2 0l-193.829-193.829v614.4c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-618.057l-193.829 193.829c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l219.429-223.086z" />
<glyph unicode="&#xe926;" glyph-name="download-1" d="M460.8 173.714c14.629-14.629 32.914-18.286 51.2-18.286s36.571 7.314 51.2 21.943l197.486 197.486c14.629 14.629 14.629 36.571 0 51.2s-36.571 14.629-51.2 0l-157.257-160.914v570.514c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-570.514l-160.914 160.914c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l193.829-201.143zM742.4 96.914h-460.8c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h464.457c21.943 0 36.571 14.629 36.571 36.571s-18.286 36.571-40.229 36.571z" />
<glyph unicode="&#xe927;" glyph-name="edit-pencil" d="M943.543 652.8l-223.086 226.743c-7.314 7.314-18.286 10.971-25.6 10.971-10.971 0-18.286-3.657-25.6-10.971l-588.8-577.829c-7.314-7.314-10.971-14.629-10.971-25.6v-234.057c0-21.943 14.629-36.571 36.571-36.571h215.771c10.971 0 18.286 3.657 25.6 10.971l596.114 585.143c10.971 14.629 10.971 40.229 0 51.2zM307.2 74.971h-164.571v182.857l65.829 65.829c0-3.657 3.657-3.657 3.657-7.314l117.029-117.029c7.314-7.314 18.286-10.971 25.6-10.971 10.971 0 18.286 3.657 25.6 10.971 14.629 14.629 14.629 36.571 0 51.2l-117.029 120.686c0 3.657-3.657 3.657-7.314 3.657l435.2 427.886 171.886-171.886-555.886-555.886z" />
<glyph unicode="&#xe928;" glyph-name="ellipse" d="M585.143 448c0-40.396-32.747-73.143-73.143-73.143s-73.143 32.747-73.143 73.143c0 40.396 32.747 73.143 73.143 73.143s73.143-32.747 73.143-73.143zM585.143 704c0-40.396-32.747-73.143-73.143-73.143s-73.143 32.747-73.143 73.143c0 40.396 32.747 73.143 73.143 73.143s73.143-32.747 73.143-73.143zM585.143 192c0-40.396-32.747-73.143-73.143-73.143s-73.143 32.747-73.143 73.143c0 40.396 32.747 73.143 73.143 73.143s73.143-32.747 73.143-73.143z" />
<glyph unicode="&#xe929;" glyph-name="envelop" d="M866.743 791.771h-713.143c-54.857 0-102.4-47.543-102.4-102.4v-482.743c0-54.857 47.543-102.4 102.4-102.4h713.143c58.514 0 102.4 47.543 102.4 106.057v479.086c3.657 54.857-43.886 102.4-102.4 102.4zM852.114 718.629l-307.2-252.343c-21.943-18.286-43.886-18.286-65.829 0l-303.543 252.343h676.571zM866.743 177.371h-713.143c-14.629 0-29.257 14.629-29.257 29.257v457.143l307.2-256c25.6-18.286 51.2-29.257 80.457-29.257 25.6 0 54.857 10.971 80.457 29.257l307.2 252.343v-449.829c0-18.286-14.629-32.914-32.914-32.914z" />
<glyph unicode="&#xe92a;" glyph-name="exchange" d="M826.514 733.257l-171.886 171.886c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l135.314-135.314h-486.4c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h479.086l-128-128c-14.629-14.629-14.629-36.571 0-51.2 7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971l171.886 171.886c10.971 10.971 18.286 29.257 18.286 47.543s-7.314 36.571-18.286 47.543zM771.657 243.2h-482.743l135.314 135.314c14.629 14.629 14.629 36.571 0 51.2s-36.571 14.629-51.2 0l-171.886-171.886c-10.971-10.971-18.286-29.257-18.286-47.543s7.314-36.571 18.286-47.543l171.886-171.886c7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971c14.629 14.629 14.629 36.571 0 51.2l-128 128h479.086c21.943 0 36.571 14.629 36.571 36.571s-18.286 36.571-40.229 36.571z" />
<glyph unicode="&#xe92b;" glyph-name="exchnage" d="M735.086 265.143c-51.2-69.486-138.971-109.714-226.743-109.714-138.971 0-259.657 98.743-285.257 234.057l65.829-65.829c7.314-7.314 14.629-10.971 25.6-10.971s18.286 3.657 25.6 10.971c14.629 14.629 14.629 36.571 0 51.2l-124.343 120.686c-7.314 7.314-14.629 10.971-25.6 10.971s-18.286-3.657-25.6-10.971l-113.371-117.029c-14.629-14.629-14.629-36.571 0-51.2s36.571-14.629 51.2 0l47.543 47.543c32.914-168.229 182.857-292.571 358.4-292.571 113.371 0 219.429 51.2 285.257 138.971 10.971 14.629 7.314 40.229-7.314 51.2s-40.229 7.314-51.2-7.314zM972.8 546.743c-14.629 14.629-36.571 14.629-51.2 0l-51.2-51.2c-21.943 179.2-175.543 318.171-362.057 318.171-131.657 0-256-73.143-318.171-182.857-7.314-18.286-3.657-40.229 14.629-51.2 18.286-7.314 40.229-3.657 51.2 14.629 47.543 87.771 149.943 146.286 252.343 146.286 146.286 0 270.629-109.714 288.914-252.343l-62.171 62.171c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l120.686-120.686c7.314-7.314 14.629-10.971 25.6-10.971s18.286 3.657 25.6 10.971l117.029 117.029c14.629 14.629 14.629 36.571 0 51.2z" />
<glyph unicode="&#xe92c;" glyph-name="expend-collaps" d="M855.771 78.629h-416.914c-21.943 0-36.571 14.629-36.571 36.571s14.629 36.571 36.571 36.571h416.914c32.914 0 62.171 25.6 62.171 62.171v585.143c0 32.914-25.6 62.171-62.171 62.171h-585.143c-32.914 0-62.171-25.6-62.171-62.171v-420.571c0-21.943-14.629-36.571-36.571-36.571s-36.571 14.629-36.571 36.571v420.571c0 73.143 58.514 135.314 135.314 135.314h585.143c73.143 0 135.314-58.514 135.314-135.314v-585.143c-3.657-73.143-62.171-135.314-135.314-135.314zM80.457-23.771c7.314-3.657 14.629-3.657 21.943 0h281.6c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-208.457l128 138.971 391.314 416.914c14.629 14.629 14.629 36.571 0 51.2s-36.571 14.629-51.2 0l-512-552.229v204.8c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-296.229c-3.657-14.629 7.314-29.257 21.943-36.571z" />
<glyph unicode="&#xe92d;" glyph-name="expend" d="M855.771 78.629h-416.914c-21.943 0-36.571 14.629-36.571 36.571s14.629 36.571 36.571 36.571h416.914c32.914 0 62.171 25.6 62.171 62.171v585.143c0 32.914-25.6 62.171-62.171 62.171h-585.143c-32.914 0-62.171-25.6-62.171-62.171v-420.571c0-21.943-14.629-36.571-36.571-36.571s-36.571 14.629-36.571 36.571v420.571c0 73.143 58.514 135.314 135.314 135.314h585.143c73.143 0 135.314-58.514 135.314-135.314v-585.143c-3.657-73.143-62.171-135.314-135.314-135.314zM680.229 652.8c-7.314 3.657-14.629 3.657-21.943 0h-281.6c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h208.457l-128-138.971-391.314-416.914c-14.629-14.629-14.629-36.571 0-51.2s36.571-14.629 51.2 0l512 552.229v-204.8c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v299.886c0 14.629-7.314 25.6-21.943 32.914z" />
<glyph unicode="&#xe92e;" glyph-name="eye-hide" d="M318.171 832c-10.971 18.286-32.914 21.943-51.2 10.971s-21.943-32.914-10.971-51.2l51.2-84.114c-117.029-58.514-208.457-149.943-252.343-201.143-29.257-32.914-29.257-76.8 0-109.714 65.829-76.8 245.029-252.343 457.143-252.343 40.229 0 84.114 7.314 128 21.943l62.171-102.4c7.314-10.971 18.286-18.286 32.914-18.286 7.314 0 14.629 0 18.286 3.657 18.286 10.971 21.943 32.914 10.971 51.2l-446.171 731.429zM438.857 488.229l69.486-117.029c-43.886 3.657-76.8 36.571-76.8 80.457 0 14.629 3.657 29.257 7.314 36.571zM508.343 217.6c-182.857 0-343.771 160.914-402.286 230.4-3.657 3.657-3.657 10.971 0 14.629 43.886 47.543 128 135.314 237.714 186.514l54.857-87.771c-25.6-25.6-40.229-62.171-40.229-102.4 0-84.114 69.486-157.257 157.257-157.257 10.971 0 25.6 3.657 36.571 3.657l47.543-76.8c-32.914-7.314-62.171-10.971-91.429-10.971zM965.486 510.171c-65.829 73.143-237.714 248.686-446.171 252.343-18.286 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571c179.2-7.314 332.8-160.914 391.314-226.743 3.657-3.657 3.657-10.971 0-14.629-25.6-29.257-73.143-80.457-138.971-128-14.629-10.971-18.286-36.571-7.314-51.2 7.314-10.971 18.286-14.629 29.257-14.629 7.314 0 14.629 3.657 21.943 7.314 73.143 51.2 128 109.714 153.6 138.971s25.6 76.8-3.657 109.714z" />
<glyph unicode="&#xe92f;" glyph-name="eye-visible" d="M972.8 502.857c-51.2 62.171-234.057 256-460.8 256s-409.6-193.829-460.8-256c-25.6-32.914-25.6-76.8 0-109.714 149.943-164.571 307.2-252.343 457.143-252.343 226.743 0 409.6 193.829 460.8 256 29.257 29.257 29.257 73.143 3.657 106.057zM914.286 440.686c-43.886-54.857-208.457-226.743-402.286-226.743-128 0-270.629 80.457-402.286 226.743-3.657 3.657-3.657 10.971 0 14.629 43.886 54.857 208.457 226.743 402.286 226.743s358.4-175.543 402.286-226.743c3.657-3.657 3.657-10.971 0-14.629zM519.314 608.914c-87.771 0-157.257-69.486-157.257-157.257s69.486-157.257 157.257-157.257 157.257 69.486 157.257 157.257c0 84.114-69.486 157.257-157.257 157.257zM519.314 367.543c-47.543 0-84.114 36.571-84.114 84.114s36.571 84.114 84.114 84.114 84.114-36.571 84.114-84.114-36.571-84.114-84.114-84.114z" />
<glyph unicode="&#xe930;" glyph-name="facebook" d="M435.2 411.429h-109.714v128h109.714v102.4c0 54.857 14.629 95.086 43.886 124.343s69.486 43.886 120.686 43.886c40.229 0 73.143-3.657 98.743-7.314v-113.371h-69.486c-25.6 0-43.886-7.314-51.2-18.286s-10.971-25.6-10.971-43.886v-87.771h120.686l-18.286-128h-102.4v-321.829h-131.657v321.829z" />
<glyph unicode="&#xe931;" glyph-name="file" d="M625.371 912.457h-321.829c-76.8 0-135.314-62.171-135.314-135.314v-658.286c0-73.143 62.171-135.314 135.314-135.314h420.571c73.143 0 135.314 62.171 135.314 135.314v559.543c-3.657 113.371-91.429 234.057-234.057 234.057zM778.971 711.314h-120.686c-7.314 0-14.629 7.314-14.629 14.629v113.371c80.457-10.971 124.343-73.143 135.314-128zM782.629 118.857c0-36.571-25.6-62.171-62.171-62.171h-416.914c-36.571 0-62.171 25.6-62.171 62.171v658.286c0 36.571 25.6 62.171 62.171 62.171h270.629v-113.371c0-47.543 40.229-87.771 87.771-87.771h124.343v-519.314zM698.514 309.029h-373.029c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h369.371c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-32.914 36.571zM288.914 455.314c0-21.943 14.629-36.571 36.571-36.571h369.371c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-369.371c-18.286 0-36.571-14.629-36.571-36.571zM325.486 601.6h138.971c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-138.971c-21.943 0-36.571-14.629-36.571-36.571s18.286-36.571 36.571-36.571z" />
<glyph unicode="&#xe932;" glyph-name="filter" d="M577.829-5.486c-18.286 0-36.571 3.657-51.2 14.629l-131.657 84.114c-29.257 14.629-43.886 51.2-43.886 80.457v325.486c0 7.314 0 10.971-3.657 14.629l-208.457 230.4c-29.257 25.6-36.571 65.829-21.943 98.743s47.543 58.514 84.114 58.514h618.057c36.571 0 73.143-21.943 87.771-54.857s7.314-73.143-14.629-98.743l-212.114-230.4c-3.657-3.657-3.657-7.314-3.657-14.629v-409.6c0-32.914-18.286-65.829-47.543-80.457-18.286-14.629-32.914-18.286-51.2-18.286zM201.143 828.343c-7.314 0-10.971-7.314-14.629-10.971-3.657-7.314-3.657-14.629 3.657-21.943l212.114-230.4c14.629-14.629 25.6-36.571 25.6-65.829v-325.486c0-7.314 3.657-14.629 7.314-14.629l135.314-84.114c7.314-7.314 14.629-3.657 21.943 0s10.971 10.971 10.971 18.286v405.943c0 25.6 7.314 51.2 25.6 65.829l212.114 230.4c0 7.314 0 14.629-3.657 18.286 0 3.657-7.314 10.971-21.943 10.971h-614.4z" />
<glyph unicode="&#xe933;" glyph-name="flag" d="M841.143 842.971l-3.657 3.657-7.314 3.657c-14.629 3.657-32.914 3.657-113.371-10.971h-7.314c-117.029-32.914-241.371-36.571-358.4-10.971l-135.314 21.943v43.886c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-892.343c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v373.029l128-25.6c54.857-10.971 109.714-14.629 160.914-14.629 73.143 0 146.286 7.314 215.771 25.6 14.629 3.657 157.257 47.543 157.257 117.029v292.571c3.657 18.286-3.657 47.543-36.571 73.143zM808.229 484.571c-14.629-14.629-73.143-40.229-106.057-51.2-109.714-29.257-230.4-32.914-343.771-10.971l-142.629 25.6v329.143l120.686-25.6c131.657-25.6 266.971-21.943 391.314 10.971h7.314c40.229 10.971 58.514 14.629 69.486 14.629 3.657-3.657 3.657-3.657 3.657-7.314v-285.257z" />
<glyph unicode="&#xe934;" glyph-name="folder" d="M826.514 714.971h-277.943c-14.629 65.829-73.143 113.371-142.629 113.371h-208.457c-80.457 0-146.286-65.829-146.286-146.286v-468.114c0-80.457 65.829-146.286 146.286-146.286h625.371c80.457 0 146.286 65.829 146.286 146.286v354.743c3.657 80.457-62.171 146.286-142.629 146.286zM197.486 755.2h208.457c29.257 0 54.857-14.629 65.829-40.229h-274.286c-25.6 0-51.2-7.314-73.143-18.286 10.971 32.914 36.571 58.514 73.143 58.514zM899.657 213.943c0-36.571-36.571-73.143-73.143-73.143h-629.029c-40.229 0-73.143 32.914-73.143 73.143v354.743c0 40.229 32.914 73.143 73.143 73.143h625.371c40.229 0 73.143-32.914 73.143-73.143v-354.743z" />
<glyph unicode="&#xe935;" glyph-name="food" d="M972.8 137.143h-21.943c-7.314 204.8-157.257 376.686-358.4 413.257 3.657 10.971 7.314 21.943 7.314 36.571 0 51.2-40.229 91.429-91.429 91.429s-91.429-40.229-91.429-91.429c0-14.629 3.657-25.6 7.314-36.571-193.829-40.229-343.771-208.457-351.086-413.257h-21.943c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h925.257c21.943 0 36.571 14.629 36.571 36.571s-18.286 36.571-40.229 36.571zM515.657 605.257c10.971 0 18.286-7.314 18.286-18.286s-7.314-18.286-18.286-18.286-18.286 7.314-18.286 18.286 7.314 18.286 18.286 18.286zM515.657 484.571c138.971 0 259.657-80.457 321.829-193.829h-522.971c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h552.229c7.314-25.6 10.971-51.2 10.971-80.457h-724.114c7.314 193.829 168.229 347.429 362.057 347.429zM709.486 660.114c0-3.657 0-3.657-3.657-7.314l-25.6-29.257c-14.629-14.629-10.971-40.229 3.657-51.2 7.314-7.314 14.629-7.314 21.943-7.314 10.971 0 21.943 3.657 29.257 14.629l25.6 29.257c14.629 18.286 21.943 40.229 18.286 62.171s-14.629 40.229-29.257 54.857c-7.314 7.314-7.314 10.971-3.657 14.629l25.6 32.914c10.971 14.629 7.314 40.229-7.314 51.2s-40.229 7.314-51.2-7.314l-25.6-32.914c-25.6-36.571-21.943-84.114 14.629-113.371 3.657-3.657 3.657-7.314 7.314-10.971z" />
<glyph unicode="&#xe936;" glyph-name="furniture" d="M943.543 488.229v285.257c0 51.2-43.886 95.086-95.086 95.086h-665.6c-51.2 0-95.086-43.886-95.086-95.086v-285.257c-36.571-10.971-65.829-43.886-65.829-84.114v-292.571c0-47.543 40.229-84.114 84.114-84.114h117.029c32.914 0 58.514 18.286 73.143 43.886h427.886c14.629-25.6 43.886-43.886 73.143-43.886h117.029c47.543 0 84.114 40.229 84.114 84.114v292.571c10.971 43.886-18.286 76.8-54.857 84.114zM182.857 795.429h665.6c10.971 0 21.943-10.971 21.943-21.943v-281.6h-65.829c-47.543 0-84.114-40.229-84.114-84.114v-43.886h-405.943v43.886c0 47.543-40.229 84.114-84.114 84.114h-65.829v281.6c-3.657 10.971 7.314 21.943 18.286 21.943zM314.514 287.086h405.943v-142.629h-405.943v142.629zM241.371 115.2c0-7.314-7.314-10.971-10.971-10.971h-117.029c-7.314 0-10.971 7.314-10.971 10.971v292.571c0 7.314 7.314 10.971 10.971 10.971h117.029c7.314 0 10.971-7.314 10.971-10.971v-292.571zM936.229 115.2c0-7.314-7.314-10.971-10.971-10.971h-117.029c-7.314 0-10.971 7.314-10.971 10.971v292.571c0 7.314 7.314 10.971 10.971 10.971h117.029c7.314 0 10.971-7.314 10.971-10.971v-292.571z" />
<glyph unicode="&#xe937;" glyph-name="gift" d="M833.829 711.314h-21.943c10.971 18.286 14.629 36.571 14.629 58.514v10.971c0 69.486-51.2 120.686-120.686 120.686-80.457 0-146.286-40.229-190.171-98.743-40.229 58.514-109.714 98.743-186.514 98.743-69.486 0-124.343-51.2-124.343-120.686v-10.971c0-21.943 7.314-40.229 14.629-58.514h-29.257c-73.143 0-135.314-62.171-135.314-135.314v-446.171c0-73.143 62.171-135.314 135.314-135.314h640c73.143 0 135.314 62.171 135.314 135.314v446.171c3.657 73.143-58.514 135.314-131.657 135.314zM896 576v-58.514h-347.429v120.686h285.257c32.914 0 62.171-25.6 62.171-62.171zM702.171 828.343c29.257 0 47.543-18.286 47.543-47.543v-10.971c0-32.914-25.6-58.514-58.514-58.514h-138.971c18.286 69.486 76.8 117.029 149.943 117.029zM277.943 769.829v10.971c0 29.257 18.286 47.543 47.543 47.543 73.143 0 131.657-47.543 149.943-117.029h-138.971c-29.257 0-58.514 25.6-58.514 58.514zM190.171 638.171h285.257v-120.686h-347.429v58.514c0 36.571 29.257 62.171 62.171 62.171zM128 129.829v314.514h347.429v-376.686h-285.257c-32.914 0-62.171 25.6-62.171 62.171zM833.829 67.657h-285.257v376.686h343.771v-314.514c3.657-36.571-25.6-62.171-58.514-62.171z" />
<glyph unicode="&#xe938;" glyph-name="globe" d="M980.114 583.314c-21.943 69.486-58.514 131.657-102.4 186.514v3.657s-3.657 0-3.657 3.657c-124.343 135.314-318.171 197.486-504.686 142.629-73.143-21.943-135.314-58.514-186.514-106.057-135.314-124.343-197.486-318.171-142.629-504.686 18.286-62.171 47.543-113.371 84.114-160.914v-3.657c91.429-117.029 237.714-186.514 387.657-186.514 47.543 0 95.086 7.314 138.971 21.943 65.829 18.286 124.343 51.2 175.543 91.429 142.629 113.371 212.114 314.514 153.6 512zM800.914 140.8l-117.029 135.314c102.4 80.457 201.143 120.686 241.371 135.314-3.657-102.4-51.2-197.486-124.343-270.629zM925.257 488.229c-10.971-3.657-142.629-43.886-288.914-157.257l-95.086 109.714 299.886 252.343c29.257-40.229 51.2-84.114 65.829-131.657 10.971-25.6 14.629-47.543 18.286-73.143zM625.371 842.971c62.171-18.286 120.686-51.2 168.229-95.086l-299.886-248.686-73.143 87.771c73.143 62.171 146.286 146.286 201.143 248.686 3.657 3.657 3.657 3.657 3.657 7.314zM387.657 842.971c40.229 10.971 80.457 18.286 120.686 18.286 14.629 0 29.257 0 43.886-3.657-51.2-91.429-113.371-164.571-179.2-219.429l-117.029 135.314c36.571 32.914 84.114 54.857 131.657 69.486zM201.143 725.943l113.371-131.657c-98.743-73.143-190.171-109.714-226.743-124.343 7.314 95.086 47.543 186.514 113.371 256zM91.429 393.143c7.314 3.657 135.314 40.229 274.286 146.286l76.8-87.771-285.257-237.714c-21.943 32.914-36.571 69.486-51.2 109.714-7.314 21.943-14.629 43.886-14.629 69.486zM201.143 155.429l288.914 241.371 95.086-109.714c-69.486-62.171-135.314-138.971-186.514-237.714 0-3.657-3.657-7.314-3.657-10.971-76.8 21.943-142.629 62.171-193.829 117.029zM629.029 38.4c-54.857-14.629-109.714-21.943-164.571-14.629 47.543 84.114 106.057 153.6 164.571 208.457l117.029-135.314c-36.571-25.6-76.8-47.543-117.029-58.514z" />
<glyph unicode="&#xe939;" glyph-name="google-plus" d="M603.429 444.343c0-47.543-10.971-91.429-29.257-131.657-21.943-36.571-47.543-65.829-87.771-87.771s-80.457-32.914-128-32.914c-47.543 0-87.771 10.971-128 32.914s-69.486 54.857-95.086 95.086c-21.943 40.229-32.914 80.457-32.914 128s10.971 87.771 32.914 128 54.857 69.486 95.086 95.086 80.457 32.914 128 32.914c65.829 0 124.343-21.943 171.886-65.829l-69.486-65.829c-25.6 25.6-62.171 40.229-102.4 40.229-29.257 0-54.857-7.314-80.457-21.943s-43.886-32.914-58.514-58.514c-14.629-25.6-21.943-51.2-21.943-80.457s7.314-54.857 21.943-80.457c14.629-25.6 32.914-43.886 58.514-58.514s51.2-21.943 80.457-21.943c32.914 0 58.514 7.314 80.457 18.286 18.286 10.971 32.914 25.6 43.886 43.886 10.971 14.629 14.629 29.257 18.286 43.886h-146.286v87.771h241.371c7.314-14.629 7.314-29.257 7.314-40.229zM848.457 550.4h-73.143v-73.143h-73.143v-73.143h73.143v-73.143h73.143v73.143h73.143v73.143h-73.143v73.143z" />
<glyph unicode="&#xe93a;" glyph-name="gps" d="M585.143 448c0-40.396-32.747-73.143-73.143-73.143s-73.143 32.747-73.143 73.143c0 40.396 32.747 73.143 73.143 73.143s73.143-32.747 73.143-73.143zM914.286 484.571h-76.8c-18.286 153.6-138.971 274.286-288.914 288.914v76.8c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-76.8c-153.6-14.629-274.286-135.314-292.571-288.914h-73.143c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h73.143c18.286-153.6 138.971-274.286 288.914-288.914v-76.8c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v76.8c73.143 7.314 142.629 40.229 197.486 95.086s84.114 120.686 95.086 197.486h76.8c21.943 0 36.571 14.629 36.571 36.571 0 18.286-14.629 32.914-36.571 32.914zM548.571 195.657v32.914c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-32.914c-113.371 14.629-201.143 102.4-219.429 215.771h36.571c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-36.571c18.286 113.371 106.057 201.143 219.429 215.771v-32.914c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v32.914c54.857-7.314 106.057-32.914 142.629-73.143 40.229-40.229 65.829-91.429 73.143-142.629h-32.914c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h32.914c-18.286-113.371-106.057-201.143-215.771-215.771z" />
<glyph unicode="&#xe93b;" glyph-name="graph-1" d="M186.514 513.829c-21.943 0-36.571-14.629-36.571-36.571v-471.771c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v471.771c0 21.943-14.629 36.571-36.571 36.571zM526.629 927.086c-21.943 0-36.571-14.629-36.571-36.571v-885.029c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v885.029c0 21.943-14.629 36.571-36.571 36.571zM837.486 250.514c-21.943 0-36.571-14.629-36.571-36.571v-208.457c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v208.457c0 21.943-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe93c;" glyph-name="graph" d="M522.971 440.686c7.314-7.314 14.629-10.971 25.6-10.971h7.314l409.6 80.457c10.971 3.657 18.286 7.314 21.943 14.629s7.314 18.286 3.657 29.257c-40.229 179.2-179.2 325.486-362.057 369.371-10.971 3.657-21.943 0-29.257-3.657-7.314-7.314-14.629-14.629-14.629-25.6l-73.143-424.229c-3.657-10.971 3.657-21.943 10.971-29.257zM650.971 842.971c124.343-43.886 219.429-142.629 259.657-266.971l-318.171-62.171 58.514 329.143zM965.486 484.571c-21.943 0-36.571-14.629-36.571-36.571 0-230.4-186.514-416.914-416.914-416.914s-416.914 186.514-416.914 416.914 186.514 416.914 416.914 416.914c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571c-270.629 0-490.057-219.429-490.057-490.057s219.429-490.057 490.057-490.057 490.057 219.429 490.057 490.057c0 21.943-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe93d;" glyph-name="heart-fill" d="M512 16.457h-7.314c-40.229 7.314-292.571 109.714-424.229 303.543-73.143 106.057-95.086 219.429-65.829 336.457 29.257 124.343 109.714 204.8 219.429 219.429 106.057 14.629 215.771-32.914 274.286-113.371 58.514 76.8 168.229 124.343 274.286 113.371 113.371-14.629 193.829-95.086 219.429-219.429 29.257-117.029 3.657-230.4-65.829-336.457-131.657-193.829-384-299.886-420.571-303.543h-3.657z" />
<glyph unicode="&#xe93e;" glyph-name="heart" d="M512 16.457h-7.314c-40.229 7.314-292.571 109.714-424.229 303.543-73.143 106.057-95.086 219.429-65.829 336.457 29.257 124.343 109.714 204.8 219.429 219.429 106.057 14.629 215.771-32.914 274.286-113.371 58.514 76.8 168.229 124.343 274.286 113.371 113.371-14.629 193.829-95.086 219.429-219.429 29.257-117.029 3.657-230.4-65.829-336.457-131.657-193.829-384-299.886-420.571-303.543h-3.657zM274.286 806.4h-25.6c-84.114-10.971-138.971-69.486-160.914-164.571s-3.657-186.514 51.2-274.286c106.057-164.571 325.486-263.314 373.029-277.943 47.543 14.629 263.314 113.371 369.371 277.943 54.857 87.771 73.143 179.2 51.2 270.629-21.943 95.086-76.8 149.943-157.257 160.914-87.771 10.971-182.857-36.571-219.429-106.057 0 0 0-3.657-3.657-3.657-10.971-18.286-29.257-25.6-51.2-25.6-18.286 3.657-32.914 14.629-36.571 29.257-32.914 69.486-113.371 113.371-190.171 113.371z" />
<glyph unicode="&#xe93f;" glyph-name="hold-cart" d="M438.857 137.143c0-40.396-32.747-73.143-73.143-73.143s-73.143 32.747-73.143 73.143c0 40.396 32.747 73.143 73.143 73.143s73.143-32.747 73.143-73.143zM841.143 137.143c0-40.396-32.747-73.143-73.143-73.143s-73.143 32.747-73.143 73.143c0 40.396 32.747 73.143 73.143 73.143s73.143-32.747 73.143-73.143zM387.657 246.857c-51.2 0-95.086 36.571-106.057 87.771l-62.171 307.2v3.657l-29.257 153.6h-117.029c-21.943 0-36.571 14.629-36.571 36.571s14.629 36.571 36.571 36.571h146.286c18.286 0 32.914-10.971 36.571-29.257l29.257-153.6h592.457c10.971 0 21.943-3.657 29.257-14.629s7.314-21.943 7.314-32.914l-58.514-307.2c-10.971-51.2-54.857-87.771-109.714-87.771h-358.4zM299.886 612.571l51.2-263.314c3.657-18.286 18.286-29.257 36.571-29.257h354.743c18.286 0 32.914 10.971 36.571 29.257l51.2 263.314h-530.286zM512 356.571c-21.943 0-36.571 14.629-36.571 36.571v146.286c0 21.943 14.629 36.571 36.571 36.571s36.571-14.629 36.571-36.571v-146.286c0-21.943-18.286-36.571-36.571-36.571zM512 557.714v0zM621.714 356.571c-21.943 0-36.571 14.629-36.571 36.571v146.286c0 21.943 14.629 36.571 36.571 36.571s36.571-14.629 36.571-36.571v-146.286c0-21.943-18.286-36.571-36.571-36.571zM621.714 557.714v0z" />
<glyph unicode="&#xe940;" glyph-name="home" d="M917.943 623.543l-332.8 248.686c-10.971 18.286-32.914 29.257-54.857 32.914-29.257 3.657-62.171-3.657-91.429-25.6l-332.8-252.343c-32.914-25.6-51.2-62.171-51.2-98.743v-416.914c0-65.829 58.514-124.343 124.343-124.343h157.257c36.571 0 69.486 32.914 69.486 69.486v234.057c0 25.6 25.6 51.2 51.2 51.2h109.714c25.6 0 51.2-25.6 51.2-51.2v-234.057c0-36.571 32.914-69.486 69.486-69.486h157.257c65.829 0 124.343 58.514 124.343 124.343v413.257c0 43.886-18.286 80.457-51.2 98.743zM896 111.543c0-25.6-25.6-51.2-51.2-51.2h-153.6v230.4c0 65.829-58.514 124.343-124.343 124.343h-109.714c-65.829 0-124.343-58.514-124.343-124.343v-230.4h-153.6c-25.6 0-51.2 25.6-51.2 51.2v416.914c0 14.629 7.314 29.257 21.943 40.229l336.457 252.343c10.971 7.314 21.943 10.971 32.914 10.971 7.314 0 7.314-3.657 7.314-3.657 3.657-3.657 3.657-7.314 7.314-10.971l336.457-252.343c10.971-7.314 21.943-21.943 21.943-40.229v-413.257zM680.229 586.971h-321.829c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h321.829c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe941;" glyph-name="info" d="M512 927.086c-263.314 0-479.086-215.771-479.086-479.086s215.771-479.086 479.086-479.086 479.086 215.771 479.086 479.086-215.771 479.086-479.086 479.086zM512 42.057c-223.086 0-405.943 182.857-405.943 405.943s182.857 405.943 405.943 405.943 405.943-182.857 405.943-405.943-182.857-405.943-405.943-405.943zM512 539.429c-21.943 0-36.571-14.629-36.571-36.571v-252.343c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v252.343c0 21.943-14.629 36.571-36.571 36.571zM512 682.057c-21.943 0-36.571-14.629-36.571-36.571v-7.314c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v7.314c0 21.943-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe942;" glyph-name="instagram" d="M877.714 601.6v-153.6c0-73.143 0-120.686-3.657-153.6 0-32.914-7.314-58.514-14.629-80.457-10.971-29.257-25.6-51.2-43.886-73.143-21.943-21.943-43.886-36.571-73.143-43.886-21.943-7.314-51.2-10.971-80.457-14.629-32.914 0-84.114-3.657-153.6-3.657s-120.686 0-153.6 3.657c-32.914 0-58.514 7.314-80.457 14.629-25.6 7.314-51.2 21.943-73.143 43.886s-36.571 43.886-43.886 73.143c-3.657 21.943-10.971 47.543-10.971 80.457s-3.657 84.114-3.657 153.6 3.657 120.686 3.657 153.6 7.314 58.514 14.629 80.457c10.971 25.6 25.6 51.2 43.886 73.143s43.886 36.571 73.143 43.886c21.943 7.314 47.543 14.629 80.457 14.629s84.114 3.657 153.6 3.657 120.686 0 153.6-3.657c32.914 0 58.514-7.314 80.457-14.629 25.6-10.971 51.2-25.6 73.143-43.886s36.571-43.886 43.886-73.143c7.314-21.943 14.629-51.2 14.629-80.457zM800.914 232.229c7.314 18.286 10.971 47.543 14.629 87.771v256c-3.657 40.229-7.314 69.486-14.629 87.771-14.629 32.914-36.571 58.514-69.486 69.486-18.286 7.314-47.543 10.971-87.771 14.629h-256c-43.886 0-73.143-7.314-91.429-10.971-32.914-14.629-58.514-36.571-69.486-69.486-7.314-18.286-14.629-51.2-14.629-91.429v-256c3.657-40.229 7.314-69.486 14.629-87.771 14.629-32.914 36.571-58.514 69.486-69.486 18.286-7.314 47.543-10.971 87.771-14.629h256c40.229 3.657 69.486 7.314 87.771 14.629 36.571 10.971 58.514 36.571 73.143 69.486zM512 638.171c32.914 0 65.829-7.314 95.086-25.6s51.2-40.229 69.486-69.486c18.286-29.257 25.6-62.171 25.6-95.086s-7.314-65.829-25.6-95.086c-18.286-29.257-40.229-51.2-69.486-69.486s-62.171-25.6-95.086-25.6-65.829 7.314-95.086 25.6c-29.257 18.286-51.2 40.229-69.486 69.486s-25.6 62.171-25.6 95.086 7.314 65.829 25.6 95.086c18.286 29.257 40.229 51.2 69.486 69.486 29.257 14.629 62.171 25.6 95.086 25.6zM512 323.657c32.914 0 62.171 10.971 87.771 36.571s36.571 54.857 36.571 87.771-10.971 62.171-36.571 87.771-54.857 36.571-87.771 36.571-62.171-10.971-87.771-36.571-36.571-54.857-36.571-87.771 10.971-62.171 36.571-87.771 54.857-36.571 87.771-36.571zM753.371 645.486c0 10.971-3.657 21.943-14.629 32.914-7.314 7.314-18.286 14.629-32.914 14.629s-21.943-3.657-32.914-14.629-14.629-18.286-14.629-32.914c0-10.971 3.657-21.943 14.629-32.914s18.286-14.629 32.914-14.629 21.943 3.657 29.257 14.629 18.286 21.943 18.286 32.914z" />
<glyph unicode="&#xe943;" glyph-name="language-1" d="M318.171 751.543c-3.657 14.629-18.286 21.943-32.914 21.943s-29.257-7.314-32.914-21.943l-215.771-588.8c-7.314-18.286 3.657-40.229 21.943-47.543s40.229 3.657 47.543 21.943l58.514 160.914h164.571c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-138.971l95.086 259.657 179.2-493.714c3.657-14.629 18.286-25.6 32.914-25.6 3.657 0 7.314 0 10.971 3.657 18.286 7.314 29.257 29.257 21.943 47.543l-212.114 588.8zM950.857 696.686h-135.314v80.457c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-80.457h-197.486c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h296.229c-7.314-117.029-54.857-208.457-106.057-277.943-62.171 84.114-76.8 175.543-76.8 175.543-3.657 18.286-21.943 32.914-40.229 29.257s-32.914-21.943-29.257-40.229c0-7.314 21.943-124.343 98.743-223.086-65.829-69.486-128-102.4-128-102.4-18.286-10.971-25.6-32.914-14.629-51.2 7.314-10.971 18.286-18.286 32.914-18.286 7.314 0 10.971 0 18.286 3.657s73.143 40.229 142.629 113.371c32.914-32.914 76.8-58.514 128-76.8 3.657 0 7.314-3.657 10.971-3.657 14.629 0 29.257 10.971 32.914 25.6 7.314 18.286-3.657 40.229-21.943 47.543-40.229 14.629-73.143 36.571-102.4 62.171 65.829 80.457 124.343 193.829 131.657 336.457h36.571c21.943 0 36.571 14.629 36.571 36.571s-18.286 36.571-40.229 36.571z" />
<glyph unicode="&#xe944;" glyph-name="language" d="M512 923.429c-263.314 0-475.429-212.114-475.429-475.429s212.114-475.429 475.429-475.429 475.429 212.114 475.429 475.429-212.114 475.429-475.429 475.429zM910.629 484.571l-131.657 3.657c-18.286 135.314-87.771 263.314-164.571 347.429 160.914-40.229 281.6-179.2 296.229-351.086zM548.571 799.086c73.143-73.143 135.314-190.171 157.257-310.857l-157.257 3.657v307.2zM475.429 418.743v-329.143c-106.057 87.771-160.914 193.829-160.914 321.829v10.971l160.914-3.657zM321.829 495.543c21.943 117.029 84.114 230.4 153.6 303.543v-307.2l-153.6 3.657zM548.571 89.6v329.143l160.914-3.657v-3.657c0-124.343-54.857-234.057-160.914-321.829zM226.743 733.257c51.2 51.2 113.371 87.771 182.857 106.057-76.8-87.771-142.629-208.457-164.571-340.114l-131.657 3.657c10.971 84.114 51.2 168.229 113.371 230.4zM109.714 426.057l128-3.657v-14.629c0-98.743 32.914-230.4 157.257-347.429-157.257 51.2-274.286 193.829-285.257 365.714zM629.029 64c124.343 117.029 157.257 252.343 157.257 347.429v3.657l128-3.657c-18.286-164.571-131.657-303.543-285.257-347.429z" />
<glyph unicode="&#xe945;" glyph-name="laptop" d="M917.943 832h-811.886c-47.543 0-87.771-40.229-87.771-87.771v-482.743c0-47.543 40.229-87.771 87.771-87.771h811.886c47.543 0 87.771 40.229 87.771 87.771v482.743c0 47.543-40.229 87.771-87.771 87.771zM932.571 261.486c0-7.314-7.314-14.629-14.629-14.629h-811.886c-7.314 0-14.629 7.314-14.629 14.629v482.743c0 7.314 7.314 14.629 14.629 14.629h811.886c7.314 0 14.629-7.314 14.629-14.629v-482.743zM969.143 137.143h-914.286c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h914.286c21.943 0 36.571 14.629 36.571 36.571s-18.286 36.571-36.571 36.571z" />
<glyph unicode="&#xe946;" glyph-name="limit" d="M512 586.971c-21.943 0-36.571-14.629-36.571-36.571v-252.343c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v252.343c0 18.286-18.286 36.571-36.571 36.571zM512 239.543c-21.943 0-36.571-14.629-36.571-36.571v-10.971c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v10.971c0 18.286-18.286 36.571-36.571 36.571zM1005.714 155.429l-424.229 672.914c-14.629 25.6-40.229 40.229-69.486 40.229s-54.857-14.629-69.486-40.229l-424.229-669.257c-14.629-25.6-14.629-58.514 0-84.114s40.229-40.229 69.486-40.229l848.457-3.657c29.257 0 58.514 18.286 73.143 43.886 10.971 21.943 10.971 54.857-3.657 80.457zM943.543 107.886c0-3.657-3.657-3.657-7.314-3.657h-848.457c-3.657 0-3.657 3.657-3.657 3.657s-3.657 7.314 0 10.971l420.571 669.257c3.657 7.314 10.971 7.314 14.629 0l424.229-672.914c3.657-3.657 0-7.314 0-7.314z" />
<glyph unicode="&#xe947;" glyph-name="linked-in" d="M241.371 693.029c-14.629 14.629-21.943 29.257-21.943 51.2s7.314 36.571 21.943 51.2c14.629 10.971 29.257 18.286 47.543 18.286s36.571-7.314 51.2-21.943c14.629-14.629 21.943-29.257 21.943-47.543s-7.314-36.571-21.943-51.2c-14.629-14.629-29.257-21.943-51.2-21.943s-32.914 7.314-47.543 21.943zM226.743 228.571v391.314h120.686v-391.314h-120.686zM683.886 228.571v190.171c0 32.914-3.657 54.857-7.314 69.486-10.971 21.943-29.257 36.571-54.857 36.571-29.257 0-47.543-10.971-58.514-32.914-7.314-14.629-14.629-40.229-14.629-69.486v-193.829h-120.686v391.314h117.029v-54.857c7.314 18.286 21.943 32.914 40.229 43.886 21.943 14.629 47.543 21.943 73.143 21.943 54.857 0 95.086-18.286 117.029-54.857 18.286-29.257 25.6-73.143 25.6-131.657v-215.771h-117.029z" />
<glyph unicode="&#xe948;" glyph-name="lipstick" d="M658.286 437.029v468.114c0 21.943-14.629 36.571-36.571 36.571-142.629 0-256-113.371-256-256v-248.686c-21.943-10.971-36.571-36.571-36.571-62.171v-237.714c0-102.4 80.457-182.857 182.857-182.857s182.857 80.457 182.857 182.857v237.714c0 25.6-14.629 47.543-36.571 62.171zM438.857 685.714c0 87.771 62.171 160.914 146.286 179.2v-416.914h-146.286v237.714zM621.714 137.143c0-62.171-47.543-109.714-109.714-109.714s-109.714 47.543-109.714 109.714v237.714h219.429v-237.714z" />
<glyph unicode="&#xe949;" glyph-name="location" d="M512 941.714c-215.771 0-387.657-175.543-387.657-391.314 0-113.371 98.743-296.229 303.543-552.229 21.943-25.6 51.2-40.229 84.114-40.229s65.829 14.629 84.114 40.229c204.8 256 303.543 438.857 303.543 552.229 0 219.429-168.229 391.314-387.657 391.314zM541.257 42.057c-10.971-10.971-21.943-14.629-29.257-14.629s-18.286 0-29.257 14.629c-237.714 299.886-285.257 442.514-285.257 508.343 0 175.543 142.629 318.171 318.171 318.171s314.514-138.971 314.514-318.171c-3.657-65.829-51.2-208.457-288.914-508.343zM512 678.4c-58.514 0-106.057-47.543-106.057-106.057s47.543-106.057 106.057-106.057 106.057 47.543 106.057 106.057-51.2 106.057-106.057 106.057z" />
<glyph unicode="&#xe94a;" glyph-name="lock-1" d="M789.943 605.257s3.657 0 0 0v54.857c0 149.943-128 277.943-277.943 277.943s-277.943-128-277.943-277.943v-54.857c-80.457-3.657-142.629-65.829-142.629-146.286v-354.743c0-80.457 65.829-146.286 146.286-146.286h544.914c80.457 0 146.286 65.829 146.286 146.286v354.743c0 76.8-62.171 142.629-138.971 146.286zM307.2 660.114c0 109.714 95.086 204.8 204.8 204.8s204.8-95.086 204.8-204.8v-54.857h-409.6v54.857zM855.771 104.229c0-40.229-32.914-73.143-73.143-73.143h-541.257c-40.229 0-73.143 32.914-73.143 73.143v354.743c0 40.229 32.914 73.143 73.143 73.143h544.914c36.571 0 73.143-36.571 73.143-73.143v-354.743zM515.657 217.6c-36.571 0-65.829-29.257-65.829-65.829s29.257-65.829 65.829-65.829 65.829 29.257 65.829 65.829c-3.657 36.571-29.257 65.829-65.829 65.829z" />
<glyph unicode="&#xe94b;" glyph-name="lock-2" d="M797.257 605.257h-486.4v54.857c0 109.714 95.086 204.8 204.8 204.8 87.771 0 164.571-58.514 193.829-138.971 0-3.657 3.657-7.314 3.657-7.314 18.286-36.571 80.457-14.629 62.171 29.257-36.571 109.714-142.629 190.171-263.314 190.171-149.943 0-277.943-128-277.943-277.943v-54.857c-80.457-3.657-142.629-65.829-142.629-146.286v-354.743c0-80.457 65.829-146.286 146.286-146.286h544.914c80.457 0 146.286 65.829 146.286 146.286v354.743c3.657 76.8-58.514 138.971-131.657 146.286zM859.429 104.229c0-40.229-32.914-73.143-73.143-73.143h-544.914c-40.229 0-73.143 32.914-73.143 73.143v354.743c0 40.229 32.914 73.143 73.143 73.143h544.914c36.571 0 73.143-36.571 73.143-73.143v-354.743z" />
<glyph unicode="&#xe94c;" glyph-name="map" d="M896 762.514l-186.514 47.543c-36.571 7.314-76.8 7.314-117.029 0l-179.2-47.543c-29.257-7.314-54.857-7.314-80.457 0l-153.6 40.229c-29.257 7.314-58.514 0-84.114-14.629-21.943-18.286-36.571-40.229-36.571-69.486v-501.029c0-36.571 25.6-69.486 69.486-84.114l186.514-47.543c18.286-3.657 36.571-7.314 58.514-7.314 18.286 0 40.229 3.657 58.514 7.314l179.2 47.543c29.257 7.314 54.857 7.314 80.457 0l153.6-40.229c29.257-7.314 62.171-3.657 84.114 14.629s36.571 40.229 36.571 69.486v504.686c0 32.914-25.6 73.143-69.486 80.457zM149.943 202.971c-10.971 3.657-14.629 10.971-14.629 14.629v501.029c0 3.657 3.657 7.314 7.314 10.971 0 0 3.657 3.657 10.971 3.657h7.314l153.6-40.229c7.314 0 10.971-3.657 18.286-3.657v-530.286h-3.657l-179.2 43.886zM592.457 206.629l-179.2-47.543h-7.314v526.629c7.314 0 14.629 3.657 25.6 3.657l179.2 47.543c3.657 3.657 7.314 3.657 10.971 3.657v-530.286c-7.314 0-18.286-3.657-29.257-3.657zM892.343 177.371c0-3.657-3.657-7.314-7.314-10.971-7.314-3.657-14.629-3.657-21.943-3.657l-153.6 40.229c-3.657 0-7.314 0-10.971 3.657v530.286l182.857-47.543h3.657c7.314 0 7.314-7.314 7.314-7.314v-504.686z" />
<glyph unicode="&#xe94d;" glyph-name="message-1" d="M866.743 824.686h-709.486c-54.857 0-102.4-47.543-102.4-102.4v-548.571c0-40.229 21.943-73.143 54.857-91.429 14.629-7.314 29.257-10.971 47.543-10.971 21.943 0 43.886 7.314 62.171 21.943l80.457 62.171 3.657 3.657c3.657 3.657 7.314 3.657 14.629 3.657h548.571c54.857 0 95.086 40.229 102.4 102.4v457.143c0 54.857-47.543 102.4-102.4 102.4zM866.743 235.886h-548.571c-25.6 0-47.543-7.314-65.829-21.943l-76.8-62.171c-10.971-7.314-21.943-7.314-32.914-3.657-3.657 3.657-14.629 10.971-14.629 25.6v548.571c0 14.629 14.629 29.257 29.257 29.257h709.486c14.629 0 29.257-14.629 29.257-29.257v-453.486c0-18.286-10.971-32.914-29.257-32.914z" />
<glyph unicode="&#xe94e;" glyph-name="message" d="M863.086 49.371c-14.629 0-29.257 7.314-40.229 14.629l-98.743 91.429c-7.314 7.314-14.629 10.971-25.6 10.971h-486.4c-62.171 0-113.371 51.2-113.371 113.371v380.343c0 62.171 51.2 113.371 113.371 113.371h596.114c62.171 0 113.371-51.2 113.371-113.371v-548.571c0-25.6-14.629-47.543-36.571-54.857-7.314-3.657-14.629-7.314-21.943-7.314zM212.114 700.343c-21.943 0-40.229-18.286-40.229-40.229v-380.343c0-21.943 18.286-40.229 40.229-40.229h486.4c29.257 0 54.857-10.971 76.8-29.257l73.143-69.486v519.314c0 21.943-18.286 40.229-40.229 40.229h-596.114zM746.057 579.657h-449.829c-18.286 0-32.914-14.629-32.914-32.914v-7.314c0-18.286 14.629-32.914 32.914-32.914h449.829c18.286 0 32.914 14.629 32.914 32.914v7.314c0 14.629-14.629 32.914-32.914 32.914zM508.343 418.743h-212.114c-18.286 0-32.914-14.629-32.914-32.914v-7.314c0-18.286 14.629-32.914 32.914-32.914h212.114c18.286 0 32.914 14.629 32.914 32.914v7.314c0 18.286-14.629 32.914-32.914 32.914z" />
<glyph unicode="&#xe94f;" glyph-name="minus" d="M892.343 411.429h-760.686c-21.943 0-36.571 14.629-36.571 36.571s14.629 36.571 36.571 36.571h764.343c21.943 0 36.571-14.629 36.571-36.571-3.657-21.943-18.286-36.571-40.229-36.571z" />
<glyph unicode="&#xe950;" glyph-name="mobile" d="M771.657 941.714h-519.314c-47.543 0-87.771-40.229-87.771-87.771v-811.886c0-47.543 40.229-87.771 87.771-87.771h519.314c47.543 0 87.771 40.229 87.771 87.771v811.886c0 47.543-40.229 87.771-87.771 87.771zM786.286 42.057c0-7.314-7.314-14.629-14.629-14.629h-519.314c-7.314 0-14.629 7.314-14.629 14.629v811.886c0 7.314 7.314 14.629 14.629 14.629h519.314c7.314 0 14.629-7.314 14.629-14.629v-811.886zM548.571 832h-73.143c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h73.143c21.943 0 36.571 14.629 36.571 36.571s-18.286 36.571-36.571 36.571zM566.857 118.857c0-30.297-24.56-54.857-54.857-54.857s-54.857 24.56-54.857 54.857c0 30.297 24.56 54.857 54.857 54.857s54.857-24.56 54.857-54.857z" />
<glyph unicode="&#xe951;" glyph-name="more" d="M585.143 448c0-40.396-32.747-73.143-73.143-73.143s-73.143 32.747-73.143 73.143c0 40.396 32.747 73.143 73.143 73.143s73.143-32.747 73.143-73.143zM841.143 448c0-40.396-32.747-73.143-73.143-73.143s-73.143 32.747-73.143 73.143c0 40.396 32.747 73.143 73.143 73.143s73.143-32.747 73.143-73.143zM329.143 448c0-40.396-32.747-73.143-73.143-73.143s-73.143 32.747-73.143 73.143c0 40.396 32.747 73.143 73.143 73.143s73.143-32.747 73.143-73.143z" />
<glyph unicode="&#xe952;" glyph-name="neckless" d="M969.143 817.371c-21.943 0-36.571-14.629-36.571-36.571 0-54.857-10.971-106.057-29.257-157.257-65.829-160.914-219.429-263.314-391.314-263.314s-325.486 106.057-391.314 266.971c-18.286 51.2-29.257 102.4-29.257 157.257 0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571c0-62.171 10.971-124.343 36.571-182.857 43.886-106.057 117.029-190.171 212.114-245.029-10.971-10.971-18.286-29.257-18.286-47.543 0-40.229 32.914-73.143 73.143-73.143s69.486 29.257 73.143 69.486c7.314 0 14.629-3.657 21.943-3.657-14.629-21.943-25.6-51.2-25.6-80.457 0-80.457 65.829-142.629 142.629-142.629s142.629 65.829 142.629 142.629c0 32.914-10.971 65.829-32.914 91.429l32.914 10.971v-10.971c0-40.229 32.914-73.143 73.143-73.143s73.143 32.914 73.143 73.143c0 29.257-14.629 51.2-40.229 65.829 80.457 54.857 146.286 131.657 182.857 226.743 21.943 58.514 36.571 120.686 36.571 182.857 3.657 14.629-14.629 29.257-32.914 29.257zM537.6 148.114c-40.229 0-69.486 32.914-69.486 69.486s32.914 69.486 69.486 69.486 69.486-32.914 69.486-69.486-29.257-69.486-69.486-69.486z" />
<glyph unicode="&#xe953;" glyph-name="next" d="M281.6 711.314c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l208.457-212.114-208.457-208.457c-7.314-7.314-10.971-18.286-10.971-29.257s3.657-18.286 10.971-25.6c14.629-14.629 36.571-14.629 51.2 0l208.457 208.457c29.257 29.257 29.257 80.457 0 106.057l-208.457 212.114zM782.629 502.857l-208.457 208.457c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l208.457-212.114-208.457-208.457c-7.314-7.314-10.971-18.286-10.971-25.6s3.657-18.286 10.971-25.6c14.629-14.629 36.571-14.629 51.2 0l208.457 208.457c29.257 25.6 29.257 76.8 0 106.057z" />
<glyph unicode="&#xe954;" glyph-name="notification" d="M925.257 294.4l-10.971 29.257c-14.629 47.543-29.257 102.4-29.257 157.257 0 146.286-40.229 256-120.686 332.8-102.4 98.743-234.057 102.4-252.343 102.4s-142.629 3.657-245.029-91.429c-87.771-84.114-131.657-212.114-131.657-384 0-29.257-7.314-62.171-14.629-95.086l-18.286-54.857c-21.943-62.171 3.657-131.657 54.857-164.571 18.286-14.629 43.886-21.943 69.486-21.943h142.629c7.314-73.143 69.486-128 146.286-128s135.314 54.857 146.286 128h138.971c25.6 0 51.2 10.971 69.486 25.6 51.2 40.229 73.143 106.057 54.857 164.571zM515.657 53.029c-36.571 0-62.171 21.943-69.486 54.857h138.971c-7.314-29.257-32.914-54.857-69.486-54.857zM830.171 195.657c-3.657 0-3.657-3.657-7.314-3.657-3.657-3.657-10.971-7.314-21.943-7.314h-574.171c-14.629 0-21.943 3.657-29.257 7.314l-3.657 3.657c-21.943 10.971-32.914 47.543-21.943 76.8l18.286 54.857c14.629 40.229 21.943 80.457 21.943 117.029 0 149.943 36.571 259.657 109.714 325.486 73.143 69.486 160.914 73.143 186.514 73.143h10.971s117.029 3.657 201.143-80.457c62.171-62.171 95.086-157.257 95.086-281.6 0-65.829 18.286-128 32.914-179.2l7.314-25.6c7.314-32.914-3.657-65.829-25.6-80.457z" />
<glyph unicode="&#xe955;" glyph-name="num-pad" d="M219.429 612.571c-69.486 0-128 58.514-128 128s58.514 128 128 128 128-58.514 128-128-58.514-128-128-128zM219.429 795.429c-29.257 0-54.857-25.6-54.857-54.857s25.6-54.857 54.857-54.857 54.857 25.6 54.857 54.857-25.6 54.857-54.857 54.857zM219.429 320c-69.486 0-128 58.514-128 128s58.514 128 128 128 128-58.514 128-128-58.514-128-128-128zM219.429 502.857c-29.257 0-54.857-25.6-54.857-54.857s25.6-54.857 54.857-54.857 54.857 25.6 54.857 54.857-25.6 54.857-54.857 54.857zM219.429 27.429c-69.486 0-128 58.514-128 128s58.514 128 128 128 128-58.514 128-128-58.514-128-128-128zM219.429 210.286c-29.257 0-54.857-25.6-54.857-54.857s25.6-54.857 54.857-54.857 54.857 25.6 54.857 54.857-25.6 54.857-54.857 54.857zM512 612.571c-69.486 0-128 58.514-128 128s58.514 128 128 128 128-58.514 128-128c0-32.914-14.629-65.829-36.571-91.429-25.6-21.943-58.514-36.571-91.429-36.571zM512 795.429c-29.257 0-54.857-25.6-54.857-54.857s25.6-54.857 54.857-54.857 54.857 25.6 54.857 54.857-25.6 54.857-54.857 54.857zM512 320c-69.486 0-128 58.514-128 128s58.514 128 128 128 128-58.514 128-128-58.514-128-128-128zM512 502.857c-29.257 0-54.857-25.6-54.857-54.857s25.6-54.857 54.857-54.857 54.857 25.6 54.857 54.857-25.6 54.857-54.857 54.857zM512 27.429c-69.486 0-128 58.514-128 128s58.514 128 128 128 128-58.514 128-128-58.514-128-128-128zM512 210.286c-29.257 0-54.857-25.6-54.857-54.857s25.6-54.857 54.857-54.857 54.857 25.6 54.857 54.857-25.6 54.857-54.857 54.857zM804.571 612.571c-69.486 0-128 58.514-128 128s58.514 128 128 128 128-58.514 128-128c0-32.914-14.629-65.829-36.571-91.429-25.6-21.943-58.514-36.571-91.429-36.571zM804.571 795.429c-29.257 0-54.857-25.6-54.857-54.857s25.6-54.857 54.857-54.857 54.857 25.6 54.857 54.857-25.6 54.857-54.857 54.857zM804.571 320c-69.486 0-128 58.514-128 128s58.514 128 128 128 128-58.514 128-128-58.514-128-128-128zM804.571 502.857c-29.257 0-54.857-25.6-54.857-54.857s25.6-54.857 54.857-54.857 54.857 25.6 54.857 54.857-25.6 54.857-54.857 54.857zM804.571 27.429c-69.486 0-128 58.514-128 128s58.514 128 128 128 128-58.514 128-128-58.514-128-128-128zM804.571 210.286c-29.257 0-54.857-25.6-54.857-54.857s25.6-54.857 54.857-54.857 54.857 25.6 54.857 54.857-25.6 54.857-54.857 54.857z" />
<glyph unicode="&#xe956;" glyph-name="percentage" d="M903.314 839.314c-14.629 14.629-36.571 14.629-51.2 0l-731.429-731.429c-14.629-14.629-14.629-36.571 0-51.2 7.314-7.314 14.629-10.971 25.6-10.971s18.286 3.657 25.6 10.971l731.429 731.429c14.629 14.629 14.629 36.571 0 51.2zM277.943 543.086c80.457 0 142.629 62.171 142.629 142.629s-62.171 142.629-142.629 142.629-142.629-62.171-142.629-142.629 62.171-142.629 142.629-142.629zM277.943 755.2c36.571 0 69.486-32.914 69.486-69.486s-32.914-69.486-69.486-69.486-69.486 32.914-69.486 69.486 32.914 69.486 69.486 69.486zM746.057 356.571c-80.457 0-142.629-65.829-142.629-142.629s62.171-142.629 142.629-142.629 142.629 65.829 142.629 142.629-62.171 142.629-142.629 142.629zM746.057 144.457c-36.571 0-69.486 32.914-69.486 69.486s32.914 69.486 69.486 69.486 69.486-32.914 69.486-69.486-32.914-69.486-69.486-69.486z" />
<glyph unicode="&#xe957;" glyph-name="phone" d="M914.286 228.571c0 3.657-3.657 3.657-3.657 7.314l-131.657 138.971c-7.314 7.314-14.629 14.629-25.6 14.629-25.6 3.657-51.2-10.971-87.771-54.857-14.629-18.286-32.914-25.6-58.514-29.257-43.886-3.657-98.743 25.6-157.257 73.143-36.571 32.914-54.857 73.143-51.2 113.371 3.657 54.857 40.229 98.743 51.2 109.714 21.943 18.286 32.914 36.571 32.914 51.2 3.657 32.914-14.629 58.514-18.286 62.171 0 0 0 3.657-3.657 3.657l-106.057 109.714c-40.229 47.543-95.086 43.886-120.686 32.914 0 0-3.657 0-3.657-3.657-3.657 0-113.371-65.829-131.657-204.8-18.286-120.686 40.229-256 171.886-394.971 135.314-146.286 266.971-223.086 398.629-230.4h14.629c109.714 0 182.857 54.857 197.486 65.829 10.971 7.314 36.571 25.6 43.886 58.514 3.657 18.286 7.314 43.886-10.971 76.8zM841.143 159.086c-3.657 0-3.657-3.657-7.314-3.657-7.314-7.314-204.8-179.2-512 153.6-113.371 124.343-164.571 237.714-153.6 336.457 7.314 21.943 14.629 43.886 21.943 62.171l87.771-87.771c7.314-7.314 18.286-10.971 25.6-10.971s18.286 7.314 25.6 14.629c14.629 14.629 14.629 36.571 0 51.2l-95.086 95.086c14.629 14.629 25.6 21.943 29.257 25.6 3.657 0 21.943 3.657 36.571-14.629l106.057-106.057c0-3.657 3.657-3.657 3.657-7.314l-3.657-3.657c-29.257-21.943-76.8-87.771-80.457-164.571-3.657-62.171 21.943-120.686 76.8-168.229 73.143-65.829 146.286-98.743 212.114-95.086 7.314 0 14.629 3.657 21.943 3.657l95.086-98.743c7.314-7.314 18.286-10.971 25.6-10.971 10.971 0 18.286 3.657 25.6 10.971 14.629 14.629 14.629 36.571 0 51.2l-80.457 84.114c3.657 3.657 10.971 7.314 14.629 14.629 7.314 10.971 14.629 18.286 21.943 21.943l113.371-120.686c3.657-7.314 3.657-10.971 3.657-14.629-3.657-10.971-10.971-18.286-14.629-18.286z" />
<glyph unicode="&#xe958;" glyph-name="picture" d="M826.514 795.429h-629.029c-80.457 0-146.286-65.829-146.286-146.286v-402.286c0-80.457 65.829-146.286 146.286-146.286h625.371c80.457 0 146.286 65.829 146.286 146.286v402.286c3.657 80.457-62.171 146.286-142.629 146.286zM197.486 722.286h625.371c40.229 0 73.143-32.914 73.143-73.143v-288.914l-120.686 84.114c-14.629 7.314-29.257 7.314-43.886 0l-146.286-109.714-160.914 149.943c-14.629 10.971-32.914 14.629-47.543 3.657l-252.343-193.829v354.743c0 40.229 32.914 73.143 73.143 73.143zM826.514 173.714h-629.029c-25.6 0-47.543 14.629-62.171 36.571l259.657 201.143 160.914-149.943c14.629-10.971 32.914-14.629 47.543-3.657l149.943 113.371 142.629-98.743v-25.6c3.657-40.229-29.257-73.143-69.486-73.143zM610.743 546.743c29.257 0 54.857 25.6 54.857 54.857s-25.6 54.857-54.857 54.857-54.857-25.6-54.857-54.857 21.943-54.857 54.857-54.857zM610.743 619.886c10.971 0 18.286-7.314 18.286-18.286s-7.314-18.286-18.286-18.286-18.286 7.314-18.286 18.286 7.314 18.286 18.286 18.286z" />
<glyph unicode="&#xe959;" glyph-name="pintrest" d="M826.514 268.8c-32.914-54.857-76.8-98.743-131.657-131.657s-117.029-47.543-179.2-47.543c-36.571 0-73.143 3.657-106.057 14.629 21.943 40.229 36.571 69.486 43.886 95.086l21.943 87.771c7.314-10.971 18.286-21.943 32.914-29.257s32.914-10.971 51.2-10.971c36.571 0 65.829 10.971 95.086 29.257s51.2 47.543 65.829 80.457c14.629 32.914 25.6 69.486 25.6 113.371s-10.971 76.8-29.257 109.714c-21.943 25.6-51.2 51.2-84.114 69.486s-73.143 25.6-113.371 25.6c-51.2 0-95.086-10.971-131.657-29.257-32.914-18.286-58.514-47.543-80.457-80.457s-29.257-69.486-29.257-109.714c0-29.257 7.314-54.857 21.943-84.114s32.914-47.543 54.857-54.857c7.314-3.657 10.971 0 10.971 3.657l10.971 40.229c0 3.657 0 7.314-3.657 10.971-7.314 10.971-14.629 21.943-18.286 36.571s-7.314 29.257-7.314 47.543c0 25.6 7.314 51.2 18.286 76.8 14.629 25.6 32.914 43.886 54.857 58.514 25.6 14.629 54.857 21.943 87.771 21.943 43.886 0 80.457-14.629 109.714-40.229 29.257-29.257 43.886-62.171 43.886-106.057 0-47.543-10.971-87.771-32.914-120.686s-47.543-47.543-80.457-47.543c-18.286 0-32.914 7.314-43.886 18.286-10.971 14.629-14.629 29.257-10.971 47.543 3.657 10.971 7.314 25.6 14.629 47.543 10.971 36.571 14.629 62.171 14.629 76.8s-3.657 25.6-10.971 36.571c-7.314 10.971-18.286 14.629-32.914 14.629-18.286 0-32.914-7.314-47.543-25.6-10.971-18.286-18.286-36.571-18.286-62.171 0-21.943 3.657-40.229 10.971-54.857l-40.229-179.2c-7.314-25.6-7.314-58.514 0-102.4-69.486 25.6-124.343 69.486-168.229 131.657s-65.829 124.343-65.829 201.143c0 65.829 14.629 124.343 47.543 179.2s76.8 98.743 131.657 131.657 117.029 47.543 179.2 47.543 124.343-14.629 179.2-47.543 98.743-76.8 131.657-131.657c32.914-54.857 47.543-117.029 47.543-179.2s-10.971-124.343-40.229-179.2z" />
<glyph unicode="&#xe95a;" glyph-name="play" d="M512 45.714c-223.086 0-402.286 179.2-402.286 402.286s179.2 402.286 402.286 402.286 402.286-179.2 402.286-402.286c0-106.057-43.886-208.457-117.029-285.257s-179.2-117.029-285.257-117.029zM512 777.143c-182.857 0-329.143-146.286-329.143-329.143s146.286-329.143 329.143-329.143 329.143 146.286 329.143 329.143-146.286 329.143-329.143 329.143zM676.571 480.914l-230.4 153.6h-7.314c-3.657 0-7.314 3.657-10.971 3.657s-7.314 0-10.971-3.657h-3.657c-3.657 0-7.314-3.657-10.971-3.657l-7.314-7.314v-3.657c0-3.657-3.657-3.657-3.657-7.314v-303.543c0-3.657 0-29.257 7.314-36.571 10.971-18.286 32.914-21.943 47.543-10.971l230.4 153.6c54.857 32.914 7.314 58.514 0 65.829zM464.457 535.771l128-87.771-128-87.771v175.543z" />
<glyph unicode="&#xe95b;" glyph-name="plus" d="M896 484.571h-347.429v343.771c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-343.771h-347.429c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h347.429v-343.771c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v343.771h347.429c21.943 0 36.571 14.629 36.571 36.571 0 18.286-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe95c;" glyph-name="pos" d="M753.371 941.714h-482.743c-87.771 0-160.914-73.143-160.914-160.914v-669.257c0-87.771 73.143-160.914 160.914-160.914h486.4c87.771 0 160.914 73.143 160.914 160.914v669.257c-3.657 87.771-76.8 160.914-164.571 160.914zM841.143 115.2c0-47.543-40.229-87.771-87.771-87.771h-482.743c-47.543 0-87.771 40.229-87.771 87.771v665.6c0 47.543 40.229 87.771 87.771 87.771h486.4c47.543 0 87.771-40.229 87.771-87.771v-665.6zM270.629 499.2h471.771c21.943 0 36.571 14.629 36.571 36.571v179.2c0 21.943-14.629 36.571-36.571 36.571h-471.771c-21.943 0-36.571-14.629-36.571-36.571v-179.2c0-18.286 18.286-36.571 36.571-36.571zM307.2 678.4h398.629v-106.057h-398.629v106.057zM438.857 773.486h146.286c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-146.286c-21.943 0-36.571-14.629-36.571-36.571s18.286-36.571 36.571-36.571zM310.857 444.343h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM987.429 835.657c-21.943 0-36.571-14.629-36.571-36.571v-464.457c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v464.457c0 18.286-14.629 36.571-36.571 36.571zM530.286 444.343h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM749.714 444.343h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM310.857 316.343h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM530.286 316.343h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM749.714 316.343h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM310.857 184.686h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM530.286 184.686h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM749.714 184.686h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe95d;" glyph-name="power" d="M661.943 725.943c-18.286 7.314-40.229 0-47.543-18.286s0-40.229 18.286-47.543c117.029-51.2 193.829-164.571 193.829-292.571 0-171.886-142.629-314.514-314.514-314.514s-314.514 142.629-314.514 314.514c0 117.029 65.829 230.4 171.886 281.6 18.286 10.971 25.6 32.914 14.629 47.543-10.971 18.286-32.914 25.6-47.543 14.629-128-65.829-208.457-201.143-208.457-347.429-3.657-208.457 171.886-384 384-384s387.657 175.543 387.657 387.657c0 157.257-95.086 296.229-237.714 358.4zM504.686 349.257c21.943 0 36.571 14.629 36.571 36.571v493.714c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-493.714c0-21.943 14.629-36.571 36.571-36.571z" />
<glyph unicode="&#xe95e;" glyph-name="previous" d="M742.4 711.314c14.629 14.629 36.571 14.629 51.2 0s14.629-36.571 0-51.2l-208.457-212.114 208.457-208.457c7.314-7.314 10.971-18.286 10.971-25.6s-3.657-18.286-10.971-25.6c-14.629-14.629-36.571-14.629-51.2 0l-208.457 208.457c-29.257 29.257-29.257 80.457 0 106.057l208.457 208.457zM241.371 502.857l208.457 208.457c14.629 14.629 36.571 14.629 51.2 0s14.629-36.571 0-51.2l-208.457-212.114 208.457-208.457c7.314-7.314 10.971-18.286 10.971-25.6s-3.657-18.286-10.971-25.6c-14.629-14.629-36.571-14.629-51.2 0l-208.457 208.457c-29.257 25.6-29.257 76.8 0 106.057z" />
<glyph unicode="&#xe95f;" glyph-name="printer" d="M863.086 660.114h-76.8v76.8c0 80.457-65.829 146.286-146.286 146.286h-292.571c-76.8 0-138.971-65.829-138.971-142.629v-84.114h-47.543c-65.829 0-124.343-58.514-124.343-124.343v-219.429c0-65.829 58.514-124.343 124.343-124.343h43.886v-69.486c0-58.514 47.543-106.057 106.057-106.057h362.057c62.171 0 109.714 47.543 109.714 106.057v69.486h76.8c65.829 0 124.343 58.514 124.343 124.343v219.429c0 69.486-54.857 128-120.686 128zM281.6 740.571c0 32.914 32.914 65.829 65.829 65.829h292.571c36.571 0 73.143-36.571 73.143-73.143v-76.8h-431.543v84.114zM709.486 122.514c0-21.943-18.286-32.914-36.571-32.914h-358.4c-21.943 0-32.914 18.286-32.914 32.914v197.486h431.543v-197.486zM910.629 316.343c0-25.6-25.6-51.2-51.2-51.2h-76.8v73.143c0 32.914-21.943 54.857-54.857 54.857h-464.457c-32.914 0-54.857-21.943-54.857-54.857v-73.143h-47.543c-25.6 0-51.2 25.6-51.2 51.2v219.429c0 25.6 25.6 51.2 51.2 51.2h698.514c25.6 0 51.2-25.6 51.2-51.2v-219.429zM808.229 535.771h-21.943c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h21.943c21.943 0 36.571 14.629 36.571 36.571s-18.286 36.571-36.571 36.571z" />
<glyph unicode="&#xe960;" glyph-name="product-add" d="M833.829 923.429h-640c-73.143 0-135.314-62.171-135.314-135.314v-680.229c0-73.143 62.171-135.314 135.314-135.314h640c73.143 0 135.314 62.171 135.314 135.314v680.229c-3.657 73.143-62.171 135.314-135.314 135.314zM409.6 850.286h237.714v-212.114c-3.657-3.657-14.629-3.657-18.286-3.657l-32.914 29.257s-3.657 3.657-7.314 3.657c-29.257 18.286-73.143 18.286-102.4 0l-54.857-32.914c-7.314-3.657-14.629-3.657-21.943 0v215.771zM892.343 107.886c0-36.571-25.6-62.171-62.171-62.171h-636.343c-36.571 0-62.171 25.6-62.171 62.171v680.229c0 36.571 25.6 62.171 62.171 62.171h142.629v-219.429c0-25.6 14.629-47.543 36.571-58.514 14.629-7.314 29.257-10.971 47.543-10.971s32.914 3.657 47.543 14.629l54.857 32.914c7.314 3.657 18.286 3.657 25.6 0l32.914-29.257c25.6-18.286 65.829-21.943 98.743-7.314 25.6 14.629 40.229 36.571 40.229 62.171v215.771h113.371c36.571 0 62.171-25.6 62.171-62.171v-680.229zM263.314 254.171c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 21.943-18.286 36.571-36.571 36.571zM373.029 254.171c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 21.943-18.286 36.571-36.571 36.571zM482.743 254.171c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 21.943-18.286 36.571-36.571 36.571zM830.171 323.657h-91.429v87.771c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-87.771h-91.429c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h91.429v-87.771c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v87.771h91.429c21.943 0 36.571 14.629 36.571 36.571 0 18.286-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe961;" glyph-name="product-retrun" d="M95.086 495.543c21.943 0 36.571-14.629 36.571-36.571v-73.143c142.629 109.714 351.086 98.743 479.086-32.914 91.429-91.429 128-230.4 95.086-354.743-7.314-18.286-25.6-29.257-43.886-25.6-18.286 7.314-29.257 25.6-25.6 43.886 29.257 98.743 0 208.457-76.8 281.6-106.057 106.057-266.971 113.371-384 25.6h87.771c21.943 0 36.571-14.629 36.571-36.571s-14.629-36.571-36.571-36.571h-171.886c-10.971 0-18.286 3.657-25.6 10.971s-10.971 14.629-10.971 25.6v164.571c3.657 25.6 18.286 43.886 40.229 43.886zM830.171 923.429h-636.343c-73.143 0-135.314-62.171-135.314-135.314v-215.771c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v215.771c0 32.914 25.6 62.171 62.171 62.171h142.629v-219.429c0-25.6 14.629-47.543 36.571-58.514 14.629-7.314 29.257-10.971 47.543-10.971s32.914 3.657 47.543 14.629l54.857 32.914c7.314 3.657 18.286 3.657 25.6 0l32.914-29.257c25.6-18.286 65.829-21.943 98.743-7.314 25.6 14.629 40.229 36.571 40.229 62.171v215.771h113.371c32.914 0 62.171-29.257 62.171-62.171v-680.229c0-32.914-29.257-62.171-62.171-62.171h-160.914v-73.143h160.914c73.143 0 135.314 62.171 135.314 135.314v680.229c0 73.143-62.171 135.314-138.971 135.314zM647.314 638.171c-3.657-3.657-14.629-3.657-18.286-3.657l-32.914 29.257s-3.657 3.657-7.314 3.657c-29.257 18.286-73.143 18.286-102.4 0l-54.857-32.914c-7.314-3.657-14.629-3.657-21.943 0v215.771h237.714v-212.114zM252.343 188.343c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 18.286-14.629 36.571-36.571 36.571zM362.057 188.343c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 18.286-14.629 36.571-36.571 36.571zM471.771 188.343c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 18.286-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe962;" glyph-name="product" d="M833.829 923.429h-640c-73.143 0-135.314-62.171-135.314-135.314v-680.229c0-73.143 62.171-135.314 135.314-135.314h640c73.143 0 135.314 62.171 135.314 135.314v680.229c-3.657 73.143-62.171 135.314-135.314 135.314zM409.6 850.286h237.714v-212.114c-3.657-3.657-14.629-3.657-18.286-3.657l-32.914 29.257s-3.657 3.657-7.314 3.657c-29.257 18.286-73.143 18.286-102.4 0l-54.857-32.914c-7.314-3.657-14.629-3.657-21.943 0v215.771zM892.343 107.886c0-36.571-25.6-62.171-62.171-62.171h-636.343c-36.571 0-62.171 25.6-62.171 62.171v680.229c0 36.571 25.6 62.171 62.171 62.171h142.629v-219.429c0-25.6 14.629-47.543 36.571-58.514 14.629-7.314 29.257-10.971 47.543-10.971s32.914 3.657 47.543 14.629l54.857 32.914c7.314 3.657 18.286 3.657 25.6 0l32.914-29.257c25.6-18.286 65.829-21.943 98.743-7.314 25.6 14.629 40.229 36.571 40.229 62.171v215.771h113.371c36.571 0 62.171-25.6 62.171-62.171v-680.229zM555.886 254.171c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 21.943-18.286 36.571-36.571 36.571zM665.6 254.171c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 21.943-18.286 36.571-36.571 36.571zM775.314 254.171c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 21.943-18.286 36.571-36.571 36.571z" />
<glyph unicode="&#xe963;" glyph-name="produt-group" d="M844.8 890.514h-457.143c-73.143 0-135.314-62.171-135.314-135.314v-460.8c0-73.143 62.171-135.314 135.314-135.314h457.143c73.143 0 135.314 62.171 135.314 135.314v460.8c0 73.143-62.171 135.314-135.314 135.314zM493.714 817.371h237.714v-212.114c-3.657-3.657-14.629-3.657-18.286-3.657l-32.914 29.257s-3.657 3.657-7.314 3.657c-29.257 18.286-73.143 18.286-102.4 0l-54.857-32.914c-7.314-3.657-14.629-3.657-21.943 0v215.771zM906.971 294.4c0-36.571-25.6-62.171-62.171-62.171h-457.143c-36.571 0-62.171 25.6-62.171 62.171v460.8c0 36.571 25.6 62.171 62.171 62.171h32.914v-219.429c0-25.6 14.629-47.543 36.571-58.514 14.629-7.314 29.257-10.971 47.543-10.971s32.914 3.657 47.543 14.629l54.857 32.914c7.314 3.657 18.286 3.657 25.6 0l32.914-29.257c25.6-18.286 65.829-21.943 98.743-7.314 25.6 14.629 40.229 36.571 40.229 62.171v215.771h40.229c36.571 0 62.171-25.6 62.171-62.171v-460.8zM457.143 440.686c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 18.286-14.629 36.571-36.571 36.571zM566.857 440.686c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 18.286-14.629 36.571-36.571 36.571zM676.571 440.686c-21.943 0-36.571-14.629-36.571-36.571v-73.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v73.143c0 18.286-14.629 36.571-36.571 36.571zM713.143 111.543c0-32.914-29.257-62.171-62.171-62.171h-457.143c-32.914 0-62.171 29.257-62.171 62.171v460.8c0 32.914 29.257 62.171 62.171 62.171 7.314 0 14.629 7.314 14.629 14.629v43.886c0 7.314-7.314 14.629-14.629 14.629-73.143 0-135.314-62.171-135.314-135.314v-460.8c0-73.143 62.171-135.314 135.314-135.314h457.143c73.143 0 135.314 62.171 135.314 135.314 0 10.971-7.314 18.286-18.286 18.286h-40.229c-7.314 0-14.629-7.314-14.629-18.286z" />
<glyph unicode="&#xe964;" glyph-name="push" d="M486.4 45.714c-223.086 0-402.286 179.2-402.286 402.286s179.2 402.286 402.286 402.286 402.286-179.2 402.286-402.286c0-106.057-43.886-208.457-117.029-285.257s-175.543-117.029-285.257-117.029zM486.4 777.143c-182.857 0-329.143-146.286-329.143-329.143s146.286-329.143 329.143-329.143 329.143 146.286 329.143 329.143-146.286 329.143-329.143 329.143zM413.257 630.857c21.943 0 36.571-14.629 36.571-36.571v-292.571c0-21.943-14.629-36.571-36.571-36.571s-36.571 14.629-36.571 36.571v292.571c0 21.943 18.286 36.571 36.571 36.571zM559.543 630.857c21.943 0 36.571-14.629 36.571-36.571v-292.571c0-21.943-14.629-36.571-36.571-36.571s-36.571 14.629-36.571 36.571v292.571c0 21.943 18.286 36.571 36.571 36.571z" />
<glyph unicode="&#xe965;" glyph-name="quotation" d="M654.629 905.143h-321.829c-73.143 0-135.314-62.171-135.314-135.314v-658.286c0-73.143 62.171-135.314 135.314-135.314h420.571c73.143 0 135.314 62.171 135.314 135.314v559.543c0 113.371-87.771 234.057-234.057 234.057zM811.886 704h-120.686c-7.314 0-14.629 7.314-14.629 14.629v109.714c76.8-7.314 120.686-69.486 135.314-124.343zM815.543 111.543c0-36.571-25.6-62.171-62.171-62.171h-420.571c-36.571 0-62.171 25.6-62.171 62.171v658.286c0 36.571 25.6 62.171 62.171 62.171h270.629v-113.371c0-51.2 40.229-87.771 87.771-87.771h124.343v-519.314zM574.171 451.657c-69.486 18.286-98.743 32.914-98.743 69.486 0 43.886 47.543 54.857 84.114 54.857 47.543 0 58.514-25.6 62.171-29.257 7.314-18.286 29.257-29.257 47.543-21.943s29.257 29.257 21.943 47.543c-7.314 25.6-36.571 62.171-95.086 73.143v51.2c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-51.2c-76.8-14.629-120.686-58.514-120.686-124.343 0-95.086 87.771-120.686 153.6-138.971 73.143-21.943 106.057-36.571 106.057-80.457 0-29.257-47.543-65.829-106.057-65.829-36.571 0-120.686 7.314-120.686 80.457 0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571c0-84.114 62.171-138.971 157.257-149.943v-40.229c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v40.229c80.457 14.629 142.629 69.486 142.629 135.314 0 102.4-91.429 128-160.914 149.943z" />
<glyph unicode="&#xe966;" glyph-name="refresh" d="M219.429 400.457l120.686 120.686c14.629 14.629 14.629 36.571 0 51.2s-36.571 14.629-51.2 0l-62.171-62.171c29.257 131.657 146.286 230.4 285.257 230.4 91.429 0 175.543-40.229 226.743-109.714 10.971-14.629 36.571-18.286 51.2-7.314s18.286 36.571 7.314 51.2c-65.829 87.771-171.886 138.971-285.257 138.971-179.2 0-325.486-128-358.4-296.229l-51.2 51.2c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l117.029-117.029c7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971zM972.8 400.457l-117.029 117.029c-14.629 14.629-36.571 14.629-51.2 0l-120.686-120.686c-14.629-14.629-14.629-36.571 0-51.2 7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971l62.171 62.171c-18.286-142.629-142.629-252.343-288.914-252.343-106.057 0-204.8 58.514-252.343 146.286-10.971 18.286-32.914 25.6-51.2 14.629s-21.943-32.914-14.629-51.2c62.171-109.714 186.514-182.857 318.171-182.857 186.514 0 340.114 138.971 362.057 318.171l51.2-51.2c14.629-14.629 36.571-14.629 51.2 0s14.629 36.571 0 51.2z" />
<glyph unicode="&#xe967;" glyph-name="refrigrator" d="M698.514 938.057h-373.029c-58.514 0-106.057-43.886-106.057-106.057v-771.657c0-58.514 47.543-106.057 106.057-106.057h369.371c58.514 0 106.057 47.543 106.057 106.057v771.657c3.657 62.171-43.886 106.057-102.4 106.057zM325.486 868.571h369.371c18.286 0 32.914-14.629 32.914-32.914v-186.514h-438.857v182.857c3.657 18.286 18.286 36.571 36.571 36.571zM698.514 23.771h-373.029c-18.286 0-32.914 14.629-32.914 32.914v515.657h438.857v-515.657c0-18.286-14.629-32.914-32.914-32.914zM640 535.771c-21.943 0-36.571-14.629-36.571-36.571v-146.286c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v146.286c0 25.6-18.286 36.571-36.571 36.571z" />
<glyph unicode="&#xe968;" glyph-name="return-credit" d="M877.714 82.286h-731.429c-65.829 0-120.686 54.857-120.686 120.686v490.057c0 65.829 54.857 120.686 120.686 120.686h731.429c65.829 0 120.686-54.857 120.686-120.686v-486.4c0-69.486-54.857-124.343-120.686-124.343zM146.286 733.257c-21.943 0-40.229-18.286-40.229-40.229v-486.4c0-21.943 18.286-40.229 40.229-40.229h731.429c21.943 0 40.229 18.286 40.229 40.229v486.4c0 21.943-18.286 40.229-40.229 40.229h-731.429zM391.314 532.114l32.914 29.257c47.543 51.2 128 62.171 186.514 25.6 62.171-36.571 91.429-109.714 76.8-179.2s-73.143-120.686-142.629-128h-3.657c-21.943 0-40.229 18.286-40.229 40.229s18.286 40.229 40.229 40.229c32.914 3.657 62.171 29.257 69.486 62.171 7.314 36.571-7.314 73.143-36.571 91.429s-65.829 10.971-87.771-14.629l-18.286-18.286h10.971c21.943 0 40.229-18.286 40.229-40.229s-18.286-40.229-40.229-40.229h-128c-21.943 0-40.229 18.286-40.229 40.229v120.686c0 21.943 18.286 40.229 40.229 40.229s40.229-18.286 40.229-40.229v-29.257z" />
<glyph unicode="&#xe969;" glyph-name="return" d="M530.286 886.857c-241.371 0-438.857-197.486-438.857-438.857 0-109.714 40.229-212.114 113.371-292.571h-113.371c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h219.429c21.943 0 36.571 14.629 36.571 36.571v219.429c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-149.943c-69.486 69.486-109.714 160.914-109.714 259.657 0 201.143 164.571 365.714 365.714 365.714s365.714-164.571 365.714-365.714-164.571-365.714-365.714-365.714c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571c241.371 0 438.857 197.486 438.857 438.857s-197.486 438.857-438.857 438.857z" />
<glyph unicode="&#xe96a;" glyph-name="search" d="M961.829 38.4l-204.8 208.457c58.514 73.143 91.429 164.571 91.429 263.314 0 113.371-43.886 219.429-124.343 299.886-76.8 73.143-171.886 113.371-274.286 109.714-219.429 0-398.629-182.857-398.629-409.6s179.2-409.6 398.629-409.6c95.086 0 186.514 32.914 256 95.086l204.8-208.457c7.314-7.314 18.286-10.971 25.6-10.971 10.971 0 18.286 3.657 25.6 10.971 14.629 14.629 14.629 36.571 0 51.2zM124.343 510.171c0 186.514 146.286 336.457 325.486 336.457h7.314c80.457 0 157.257-32.914 215.771-91.429 65.829-62.171 102.4-153.6 102.4-245.029s-36.571-175.543-95.086-237.714c-58.514-62.171-142.629-98.743-230.4-98.743-179.2 0-325.486 149.943-325.486 336.457z" />
<glyph unicode="&#xe96b;" glyph-name="security" d="M932.571 693.029c-3.657 25.6-10.971 51.2-21.943 69.486-54.857 102.4-212.114 171.886-398.629 171.886-171.886 0-329.143-65.829-387.657-160.914-21.943-29.257-32.914-58.514-32.914-87.771v-292.571c0-248.686 332.8-431.543 420.571-431.543 120.686 0 420.571 186.514 420.571 431.543v299.886zM859.429 393.143c0-197.486-263.314-358.4-347.429-358.4-51.2 0-347.429 160.914-347.429 358.4v292.571c0 14.629 7.314 29.257 18.286 43.886l3.657 3.657c43.886 76.8 179.2 128 325.486 128 153.6 0 292.571-54.857 332.8-135.314 3.657-7.314 10.971-25.6 14.629-43.886v-288.914zM738.743 627.2l-307.2-270.629-109.714 117.029c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l135.314-142.629c7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 7.314l332.8 292.571c14.629 14.629 18.286 36.571 3.657 51.2-14.629 18.286-36.571 18.286-54.857 7.314z" />
<glyph unicode="&#xe96c;" glyph-name="setting-cog" d="M512 623.543c-98.743 0-175.543-80.457-175.543-175.543 0-98.743 80.457-175.543 175.543-175.543 98.743 0 175.543 80.457 175.543 175.543 0 98.743-76.8 175.543-175.543 175.543zM512 345.6c-58.514 0-102.4 47.543-102.4 102.4 0 58.514 47.543 102.4 102.4 102.4 58.514 0 102.4-47.543 102.4-102.4 0-58.514-43.886-102.4-102.4-102.4zM874.057 393.143l-21.943 14.629c-3.657 3.657-7.314 7.314-3.657 10.971v47.543c7.314 3.657 18.286 10.971 32.914 18.286 40.229 21.943 54.857 76.8 32.914 117.029l-73.143 113.371c-10.971 18.286-29.257 32.914-51.2 40.229s-43.886 3.657-65.829-7.314l-25.6-14.629c-3.657-3.657-7.314-3.657-10.971 0-7.314 3.657-14.629 7.314-18.286 10.971-3.657 0-3.657 3.657-3.657 10.971v25.6c0 47.543-36.571 84.114-84.114 84.114h-135.314c-47.543 0-84.114-36.571-84.114-84.114v-29.257c0-3.657-3.657-7.314-7.314-10.971-7.314 0-10.971 0-14.629 3.657l-21.943 14.629c-21.943 14.629-43.886 18.286-65.829 10.971-21.943-3.657-40.229-18.286-54.857-36.571l-73.143-113.371c-10.971-18.286-18.286-40.229-10.971-62.171 3.657-21.943 18.286-40.229 36.571-54.857l21.943-14.629c3.657 0 3.657-3.657 3.657-7.314 0-10.971 3.657-36.571 3.657-51.2-7.314-3.657-18.286-10.971-29.257-14.629h-3.657c-40.229-21.943-54.857-76.8-32.914-117.029l69.486-117.029c21.943-40.229 76.8-54.857 117.029-32.914l25.6 14.629c3.657 3.657 7.314 3.657 10.971 0 7.314-3.657 14.629-7.314 18.286-10.971 3.657 0 3.657-3.657 3.657-10.971v-29.257c0-47.543 36.571-84.114 84.114-84.114h135.314c47.543 0 84.114 36.571 84.114 84.114v29.257c0 3.657 3.657 7.314 7.314 10.971s7.314 3.657 10.971 0l21.943-14.629c40.229-25.6 91.429-14.629 117.029 25.6l73.143 113.371c10.971 18.286 18.286 40.229 10.971 62.171 3.657 21.943-10.971 40.229-29.257 54.857zM771.657 437.029v-10.971c-3.657-32.914 10.971-62.171 36.571-80.457l21.943-14.629c3.657-3.657 3.657-3.657 3.657-7.314v-7.314l-73.143-113.371c-3.657-7.314-10.971-7.314-14.629-3.657l-21.943 14.629c-25.6 18.286-58.514 18.286-84.114 3.657h-3.657c-29.257-14.629-43.886-43.886-43.886-73.143v-29.257c0-7.314-3.657-10.971-10.971-10.971h-135.314c-7.314 0-10.971 3.657-10.971 10.971v29.257c0 32.914-18.286 58.514-43.886 73.143-3.657 3.657-10.971 7.314-14.629 7.314-14.629 7.314-29.257 10.971-43.886 10.971s-29.257-3.657-43.886-10.971l-25.6-14.629c-7.314-3.657-14.629 0-14.629 3.657l-69.486 117.029c-3.657 3.657 0 10.971 3.657 14.629 54.857 21.943 62.171 40.229 65.829 47.543 10.971 25.6 3.657 91.429 0 95.086-3.657 25.6-18.286 43.886-36.571 58.514l-21.943 14.629c-3.657 7.314-7.314 7.314-7.314 10.971v7.314l73.143 113.371c3.657 3.657 7.314 3.657 7.314 3.657h7.314l21.943-14.629c25.6-18.286 58.514-18.286 87.771-3.657s43.886 43.886 43.886 73.143v29.257c0 7.314 3.657 10.971 10.971 10.971h135.314c7.314 0 10.971-3.657 10.971-10.971v-29.257c0-32.914 18.286-58.514 43.886-73.143 3.657-3.657 10.971-7.314 14.629-7.314 25.6-14.629 58.514-18.286 87.771 0l25.6 14.629c7.314 3.657 14.629 0 14.629-3.657l69.486-117.029c3.657-3.657 0-7.314 0-7.314s0-3.657-3.657-7.314c-36.571-18.286-58.514-32.914-65.829-51.2 3.657-18.286 3.657-36.571 3.657-62.171z" />
<glyph unicode="&#xe96d;" glyph-name="setting-reset" d="M512 872.229c-241.371 0-438.857-197.486-438.857-438.857 0-124.343 51.2-237.714 142.629-321.829h-43.886c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h138.971c21.943 0 36.571 14.629 36.571 36.571v138.971c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-58.514c-80.457 69.486-128 168.229-128 277.943 0 201.143 164.571 365.714 365.714 365.714s365.714-164.571 365.714-365.714-164.571-365.714-365.714-365.714c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571c241.371 0 438.857 197.486 438.857 438.857s-197.486 438.857-438.857 438.857zM512 502.857c-29.257 0-54.857-25.6-54.857-54.857s25.6-54.857 54.857-54.857 54.857 25.6 54.857 54.857-25.6 54.857-54.857 54.857zM621.714 243.2v3.657l3.657-3.657c14.629-10.971 32.914-14.629 51.2-10.971s32.914 14.629 40.229 29.257l47.543 69.486c10.971 14.629 14.629 32.914 10.971 51.2s-14.629 32.914-29.257 40.229l-14.629 10.971v18.286c3.657 3.657 7.314 3.657 10.971 7.314 14.629 7.314 25.6 21.943 29.257 40.229s3.657 36.571-7.314 51.2l-40.229 73.143c-7.314 14.629-21.943 25.6-40.229 29.257s-36.571 3.657-51.2-7.314l-10.971-7.314s-3.657 0-3.657 3.657v10.971c0 36.571-29.257 65.829-65.829 65.829h-84.114c-36.571 0-65.829-29.257-65.829-65.829v-3.657l-3.657 3.657c-29.257 18.286-69.486 10.971-91.429-21.943l-47.543-69.486c-18.286-29.257-10.971-73.143 18.286-91.429l14.629-7.314v-18.286c-3.657 0-7.314-3.657-7.314-3.657l-7.314-3.657c-14.629-7.314-25.6-21.943-29.257-40.229s-3.657-36.571 7.314-51.2l40.229-73.143c7.314-14.629 21.943-25.6 40.229-29.257s36.571-3.657 51.2 7.314l10.971 7.314s3.657 0 3.657-3.657v-14.629c0-36.571 29.257-65.829 65.829-65.829h84.114c36.571 3.657 69.486 32.914 69.486 69.486zM548.571 250.514h-73.143v10.971c0 25.6-14.629 47.543-32.914 58.514-3.657 0-7.314 3.657-7.314 3.657-21.943 14.629-47.543 14.629-65.829 0l-7.314-3.657-32.914 58.514c29.257 14.629 36.571 25.6 40.229 29.257s7.314 18.286 3.657 65.829c-3.657 18.286-14.629 36.571-29.257 43.886l-14.629 10.971 36.571 58.514 7.314-7.314c21.943-14.629 47.543-14.629 69.486-3.657s36.571 32.914 36.571 58.514v10.971h69.486v-10.971c0-25.6 14.629-47.543 32.914-58.514 3.657 0 7.314-3.657 7.314-3.657 21.943-14.629 47.543-14.629 65.829 0l7.314 3.657 32.914-58.514c-29.257-14.629-36.571-29.257-36.571-32.914v-47.543c-3.657-25.6 7.314-47.543 29.257-62.171l7.314-7.314-36.571-58.514-7.314 7.314c-21.943 14.629-47.543 14.629-69.486 3.657s-36.571-32.914-36.571-58.514v-10.971z" />
<glyph unicode="&#xe96e;" glyph-name="share-1" d="M844.8 707.657c-21.943 0-36.571-14.629-36.571-36.571v-73.143c-142.629 109.714-351.086 98.743-479.086-32.914-91.429-91.429-128-230.4-95.086-354.743 7.314-18.286 25.6-29.257 43.886-25.6 18.286 7.314 29.257 25.6 25.6 43.886-29.257 98.743 0 208.457 76.8 281.6 106.057 106.057 266.971 113.371 384 25.6h-87.771c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h171.886c10.971 0 18.286 3.657 25.6 10.971s10.971 14.629 10.971 25.6v164.571c-3.657 29.257-21.943 43.886-40.229 43.886z" />
<glyph unicode="&#xe96f;" glyph-name="share-2" d="M256 707.657c21.943 0 36.571-14.629 36.571-36.571v-73.143c142.629 109.714 351.086 98.743 479.086-32.914 91.429-91.429 128-230.4 95.086-354.743-7.314-18.286-25.6-29.257-43.886-25.6-18.286 7.314-29.257 25.6-25.6 43.886 29.257 98.743 0 208.457-76.8 281.6-102.4 109.714-266.971 120.686-380.343 32.914h87.771c21.943 0 36.571-14.629 36.571-36.571s-14.629-36.571-36.571-36.571h-171.886c-10.971 0-18.286 3.657-25.6 10.971s-10.971 14.629-10.971 25.6v164.571c0 21.943 18.286 36.571 36.571 36.571z" />
<glyph unicode="&#xe970;" glyph-name="shoes" d="M713.143 590.629h-230.4c-7.314 0-14.629 3.657-18.286 10.971l-43.886 76.8c-18.286 29.257-47.543 43.886-80.457 43.886h-204.8c-54.857 0-102.4-47.543-102.4-106.057v-336.457c0-58.514 47.543-106.057 102.4-106.057h749.714c54.857 0 102.4 47.543 102.4 106.057v21.943c3.657 160.914-120.686 288.914-274.286 288.914zM917.943 279.771c0-18.286-14.629-32.914-29.257-32.914h-749.714c-14.629 0-29.257 14.629-29.257 32.914v336.457c0 18.286 14.629 32.914 29.257 32.914h204.8c7.314 0 14.629-3.657 18.286-10.971l43.886-76.8c7.314-14.629 21.943-25.6 36.571-32.914v-62.171c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v51.2h36.571v-51.2c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v51.2h36.571v-51.2c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v51.2c102.4-10.971 182.857-102.4 182.857-215.771v-21.943z" />
<glyph unicode="&#xe971;" glyph-name="shop" d="M943.543 718.629v76.8c0 21.943-14.629 36.571-36.571 36.571h-789.943c-21.943 0-36.571-14.629-36.571-36.571v-76.8c-21.943 0-36.571-14.629-36.571-36.571v-43.886c0-36.571 14.629-69.486 36.571-95.086v-442.514c0-21.943 14.629-36.571 36.571-36.571h460.8c21.943 0 36.571 14.629 36.571 36.571v274.286h138.971v-274.286c0-21.943 14.629-36.571 36.571-36.571h113.371c21.943 0 36.571 14.629 36.571 36.571v442.514c21.943 25.6 36.571 58.514 36.571 95.086v43.886c3.657 21.943-14.629 36.571-32.914 36.571zM153.6 758.857h716.8v-40.229h-716.8v40.229zM687.543 645.486v-7.314c0-36.571-29.257-69.486-69.486-69.486s-69.486 29.257-69.486 69.486v7.314h138.971zM468.114 645.486v-7.314c0-36.571-29.257-69.486-69.486-69.486s-73.143 29.257-73.143 69.486v7.314h142.629zM117.029 638.171v7.314h138.971v-7.314c0-36.571-29.257-69.486-69.486-69.486s-69.486 29.257-69.486 69.486zM874.057 137.143h-47.543v274.286c0 21.943-14.629 36.571-36.571 36.571h-212.114c-21.943 0-36.571-14.629-36.571-36.571v-274.286h-387.657v362.057c10.971-3.657 21.943-3.657 32.914-3.657 40.229 0 80.457 18.286 106.057 47.543 25.6-29.257 62.171-47.543 106.057-47.543s84.114 21.943 109.714 51.2c25.6-32.914 65.829-51.2 109.714-51.2s84.114 21.943 109.714 51.2c25.6-32.914 65.829-51.2 109.714-51.2 10.971 0 21.943 0 32.914 3.657v-362.057zM906.971 638.171c0-36.571-29.257-69.486-69.486-69.486s-69.486 29.257-69.486 69.486v7.314h138.971v-7.314zM431.543 444.343h-186.514c-21.943 0-36.571-14.629-36.571-36.571v-157.257c0-21.943 14.629-36.571 36.571-36.571h186.514c21.943 0 36.571 14.629 36.571 36.571v157.257c0 21.943-18.286 36.571-36.571 36.571zM394.971 287.086h-113.371v84.114h113.371v-84.114z" />
<glyph unicode="&#xe972;" glyph-name="sign-in" d="M859.429 930.743h-464.457c-58.514 0-102.4-47.543-102.4-106.057v-106.057c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v106.057c0 14.629 14.629 29.257 29.257 29.257h464.457c14.629 0 29.257-14.629 29.257-29.257v-757.029c0-14.629-14.629-29.257-29.257-29.257h-464.457c-14.629 0-29.257 14.629-29.257 29.257v109.714c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-109.714c0-54.857 47.543-102.4 102.4-102.4h464.457c54.857 0 102.4 47.543 102.4 102.4v757.029c-3.657 58.514-47.543 106.057-102.4 106.057zM453.486 294.4c-14.629-14.629-14.629-36.571 0-51.2 7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971l171.886 171.886c10.971 10.971 18.286 29.257 18.286 47.543s-7.314 36.571-18.286 47.543l-171.886 171.886c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l138.971-138.971h-490.057c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h479.086l-128-124.343z" />
<glyph unicode="&#xe973;" glyph-name="sign-out" d="M636.343 213.943c-21.943 0-36.571-14.629-36.571-36.571v-109.714c0-14.629-14.629-29.257-29.257-29.257h-427.886c-14.629 0-29.257 14.629-29.257 29.257v757.029c0 14.629 14.629 29.257 29.257 29.257h427.886c14.629 0 29.257-14.629 29.257-29.257v-106.057c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v106.057c0 54.857-47.543 102.4-102.4 102.4h-427.886c-54.857 0-102.4-47.543-102.4-102.4v-757.029c0-54.857 47.543-102.4 102.4-102.4h427.886c54.857 0 102.4 47.543 102.4 102.4v109.714c0 21.943-18.286 36.571-36.571 36.571zM965.486 510.171l-171.886 171.886c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l138.971-138.971h-493.714c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h479.086l-124.343-124.343c-14.629-14.629-14.629-36.571 0-51.2 7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971l171.886 171.886c10.971 10.971 18.286 29.257 18.286 47.543s-7.314 32.914-18.286 47.543z" />
<glyph unicode="&#xe974;" glyph-name="sort-1" d="M329.143 835.657c-21.943 0-36.571-14.629-36.571-36.571v-625.371l-95.086 76.8c-14.629 10.971-36.571 10.971-51.2-7.314-10.971-14.629-10.971-36.571 7.314-51.2l153.6-124.343c7.314-3.657 14.629-7.314 21.943-7.314 3.657 0 10.971 0 14.629 3.657 14.629 7.314 21.943 18.286 21.943 32.914v702.171c0 21.943-14.629 36.571-36.571 36.571zM848.457 309.029h-380.343c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h380.343c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM468.114 426.057h288.914c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-288.914c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571zM468.114 616.229h138.971c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-138.971c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571z" />
<glyph unicode="&#xe975;" glyph-name="sort-2" d="M343.771 832c-10.971 7.314-25.6 3.657-36.571-3.657l-153.6-124.343c-18.286-14.629-18.286-36.571-7.314-51.2s36.571-18.286 51.2-3.657l95.086 73.143v-625.371c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v702.171c0 14.629-7.314 25.6-21.943 32.914zM848.457 707.657h-380.343c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h380.343c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM757.029 513.829h-288.914c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h288.914c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM607.086 323.657h-138.971c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h138.971c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe976;" glyph-name="square-1" d="M841.143 912.457h-658.286c-73.143 0-135.314-62.171-135.314-135.314v-658.286c0-73.143 58.514-135.314 135.314-135.314h658.286c73.143 0 135.314 58.514 135.314 135.314v658.286c0 73.143-62.171 135.314-135.314 135.314zM903.314 118.857c0-32.914-25.6-62.171-62.171-62.171h-658.286c-32.914 0-62.171 25.6-62.171 62.171v658.286c0 32.914 25.6 62.171 62.171 62.171h658.286c32.914 0 62.171-25.6 62.171-62.171v-658.286zM661.943 689.371h-299.886c-47.543 0-87.771-40.229-87.771-87.771v-303.543c0-47.543 40.229-87.771 87.771-87.771h303.543c47.543 0 87.771 40.229 87.771 87.771v299.886c0 51.2-40.229 91.429-91.429 91.429zM680.229 298.057c0-7.314-7.314-14.629-14.629-14.629h-303.543c-7.314 0-14.629 7.314-14.629 14.629v299.886c0 7.314 7.314 14.629 14.629 14.629h303.543c7.314 0 14.629-7.314 14.629-14.629v-299.886z" />
<glyph unicode="&#xe977;" glyph-name="square-3" d="M647.314 221.257h-270.629c-47.543 0-87.771 40.229-87.771 87.771v270.629c0 47.543 40.229 87.771 87.771 87.771h270.629c47.543 0 87.771-40.229 87.771-87.771v-270.629c3.657-47.543-36.571-87.771-87.771-87.771zM376.686 601.6c-7.314 0-14.629-7.314-14.629-14.629v-270.629c0-7.314 7.314-14.629 14.629-14.629h270.629c7.314 0 14.629 7.314 14.629 14.629v270.629c0 7.314-7.314 14.629-14.629 14.629h-270.629z" />
<glyph unicode="&#xe978;" glyph-name="square-4" d="M647.314 257.829h-270.629c-29.257 0-51.2 21.943-51.2 51.2v270.629c0 29.257 21.943 51.2 51.2 51.2h270.629c29.257 0 51.2-21.943 51.2-51.2v-270.629c3.657-25.6-21.943-51.2-51.2-51.2z" />
<glyph unicode="&#xe979;" glyph-name="square-tick-fill" d="M797.257 31.086h-570.514c-73.143 0-135.314 58.514-135.314 135.314v566.857c0 73.143 58.514 135.314 135.314 135.314h570.514c73.143 0 135.314-58.514 135.314-135.314v-570.514c-3.657-73.143-62.171-131.657-135.314-131.657zM786.286 608.914c-14.629 14.629-36.571 18.286-51.2 3.657l-303.543-266.971-106.057 113.371c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l131.657-138.971c7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 7.314l329.143 292.571c14.629 14.629 14.629 36.571 0 51.2z" />
<glyph unicode="&#xe97b;" glyph-name="square" d="M797.257 31.086h-570.514c-73.143 0-135.314 58.514-135.314 135.314v566.857c0 73.143 58.514 135.314 135.314 135.314h570.514c73.143 0 135.314-58.514 135.314-135.314v-570.514c-3.657-73.143-62.171-131.657-135.314-131.657zM226.743 791.771c-32.914 0-62.171-25.6-62.171-62.171v-570.514c0-32.914 25.6-62.171 62.171-62.171h570.514c32.914 0 62.171 25.6 62.171 62.171v574.171c0 32.914-25.6 62.171-62.171 62.171h-570.514z" />
<glyph unicode="&#xe97c;" glyph-name="star-fill" d="M972.8 477.257c21.943 21.943 32.914 58.514 21.943 87.771-10.971 32.914-36.571 54.857-73.143 62.171l-219.429 32.914c-7.314 0-10.971 3.657-14.629 10.971l-98.743 197.486c-14.629 29.257-43.886 47.543-76.8 47.543s-62.171-18.286-76.8-47.543l-98.743-201.143c-3.657-3.657-7.314-7.314-14.629-7.314l-215.771-32.914c-36.571-3.657-62.171-25.6-76.8-58.514-10.971-32.914 0-69.486 21.943-91.429l153.6-149.943c7.314-10.971 7.314-14.629 7.314-18.286l-36.571-219.429c-7.314-32.914 7.314-69.486 36.571-87.771 14.629-10.971 32.914-14.629 51.2-14.629 14.629 0 29.257 3.657 43.886 10.971l197.486 102.4c3.657 3.657 10.971 3.657 14.629 0l197.486-102.4c29.257-18.286 65.829-14.629 95.086 3.657s40.229 54.857 36.571 87.771l-36.571 219.429c0 3.657 0 10.971 3.657 14.629l157.257 153.6z" />
<glyph unicode="&#xe97d;" glyph-name="star" d="M972.8 477.257c21.943 21.943 32.914 58.514 21.943 87.771-10.971 32.914-36.571 54.857-73.143 62.171l-219.429 32.914c-7.314 0-10.971 3.657-14.629 10.971l-98.743 197.486c-14.629 29.257-43.886 47.543-76.8 47.543s-62.171-18.286-76.8-47.543l-98.743-201.143c-3.657-3.657-7.314-7.314-14.629-7.314l-215.771-32.914c-36.571-3.657-62.171-25.6-76.8-58.514-10.971-32.914 0-69.486 21.943-91.429l153.6-149.943c7.314-10.971 7.314-14.629 7.314-18.286l-36.571-219.429c-7.314-32.914 7.314-69.486 36.571-87.771 14.629-10.971 32.914-14.629 51.2-14.629 14.629 0 29.257 3.657 43.886 10.971l197.486 102.4c3.657 3.657 10.971 3.657 14.629 0l197.486-102.4c29.257-18.286 65.829-14.629 95.086 3.657s40.229 54.857 36.571 87.771l-36.571 219.429c0 3.657 0 10.971 3.657 14.629l157.257 153.6zM738.743 294.4l36.571-219.429c0-10.971-3.657-14.629-7.314-18.286s-7.314-3.657-18.286 0l-197.486 102.4c-25.6 10.971-54.857 10.971-80.457 0l-197.486-102.4c-7.314-3.657-14.629-3.657-18.286 0-3.657 0-7.314 7.314-7.314 18.286l36.571 219.429c7.314 32.914-7.314 58.514-21.943 76.8l-3.657 3.657-157.257 153.6c-7.314 3.657-3.657 10.971-3.657 14.629s3.657 7.314 14.629 10.971l219.429 32.914c29.257 7.314 54.857 21.943 65.829 47.543l98.743 197.486c3.657 7.314 10.971 7.314 14.629 7.314s10.971 0 14.629-7.314l98.743-197.486c10.971-25.6 36.571-43.886 65.829-47.543l219.429-32.914c7.314 0 10.971-7.314 14.629-10.971 0-3.657 3.657-10.971-3.657-14.629l-157.257-153.6c-21.943-21.943-32.914-51.2-25.6-80.457z" />
<glyph unicode="&#xe97e;" glyph-name="stat-down" d="M936.229 499.2c-21.943 0-36.571-14.629-36.571-36.571v-201.143l-398.629 420.571c-10.971 10.971-25.6 14.629-40.229 7.314-14.629-3.657-21.943-18.286-21.943-32.914v-208.457l-325.486 303.543c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l387.657-362.057c10.971-10.971 25.6-10.971 40.229-7.314 14.629 7.314 21.943 18.286 21.943 32.914v201.143l340.114-358.4h-212.114c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h274.286c3.657 0 7.314 0 10.971 3.657 3.657 0 7.314-3.657 10.971-3.657s7.314 0 14.629 3.657c14.629 7.314 21.943 18.286 21.943 32.914v292.571c0 21.943-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe97f;" glyph-name="stat-up" d="M950.857 758.857c-7.314 3.657-14.629 3.657-21.943 0h-281.6c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h208.457l-336.457-362.057v201.143c0 14.629-7.314 29.257-21.943 32.914-14.629 7.314-29.257 3.657-40.229-7.314l-394.971-354.743c-14.629-14.629-14.629-36.571-3.657-51.2 7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971l329.143 303.543v-208.457c0-14.629 10.971-29.257 21.943-32.914s29.257-3.657 40.229 7.314l398.629 420.571v-204.8c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v296.229c0 14.629-10.971 29.257-21.943 32.914z" />
<glyph unicode="&#xe980;" glyph-name="support-head" d="M980.114 448c0 256-212.114 468.114-468.114 468.114s-468.114-212.114-468.114-468.114v-102.4c0-54.857 43.886-98.743 98.743-98.743s98.743 43.886 98.743 98.743v98.743c0 54.857-43.886 98.743-98.743 98.743h-14.629c43.886 171.886 201.143 299.886 384 299.886 186.514 0 343.771-131.657 384-307.2h-14.629c-54.857 0-98.743-43.886-98.743-98.743v-98.743c0-40.229 25.6-76.8 62.171-91.429-7.314-87.771-76.8-157.257-164.571-164.571h-14.629c-10.971 21.943-32.914 36.571-58.514 36.571h-109.714c-36.571 0-65.829-29.257-65.829-65.829s29.257-65.829 65.829-65.829h109.714c18.286 0 36.571 7.314 47.543 21.943h29.257c124.343 10.971 223.086 113.371 230.4 237.714 36.571 14.629 62.171 51.2 62.171 91.429v98.743c3.657 3.657 3.657 7.314 3.657 10.971zM171.886 444.343v-98.743c0-14.629-10.971-25.6-25.6-25.6s-25.6 10.971-25.6 25.6v98.743c0 14.629 10.971 25.6 25.6 25.6s25.6-10.971 25.6-25.6zM852.114 437.029c0 14.629 10.971 25.6 25.6 25.6s25.6-10.971 25.6-25.6v-98.743c0-14.629-10.971-25.6-25.6-25.6s-25.6 10.971-25.6 25.6v98.743z" />
<glyph unicode="&#xe981;" glyph-name="t-shirt" d="M512-42.057c-171.886 0-270.629 14.629-292.571 47.543l-7.314 10.971-3.657 592.457-58.514-36.571c-18.286-10.971-36.571-10.971-54.857 0s-32.914 32.914-32.914 62.171v84.114c0 21.943 10.971 43.886 29.257 58.514l197.486 135.314c21.943 14.629 43.886 21.943 69.486 21.943h18.286c25.6 0 51.2-18.286 54.857-47.543v-21.943c0-51.2 7.314-95.086 84.114-95.086 62.171 0 76.8 36.571 76.8 95.086v21.943c7.314 25.6 29.257 47.543 54.857 47.543h18.286c25.6 0 47.543-7.314 69.486-21.943l197.486-135.314c18.286-14.629 29.257-32.914 29.257-58.514v-87.771c0-25.6-10.971-47.543-32.914-58.514-18.286-10.971-40.229-10.971-54.857 0l-58.514 32.914-3.657-588.8-7.314-7.314c-25.6-43.886-171.886-51.2-292.571-51.2zM285.257 49.371c21.943-7.314 84.114-18.286 226.743-18.286 146.286 0 204.8 14.629 226.743 21.943l7.314 588.8c3.657 21.943 14.629 40.229 32.914 47.543s36.571 7.314 51.2-3.657l58.514-36.571v69.486l-193.829 131.657c-10.971 7.314-18.286 10.971-29.257 10.971h-3.657c-3.657-135.314-84.114-164.571-149.943-164.571-102.4 3.657-153.6 58.514-153.6 164.571h-3.657c-10.971 0-18.286-3.657-29.257-10.971l-193.829-131.657v-65.829l62.171 36.571c14.629 10.971 32.914 10.971 51.2 3.657s29.257-25.6 32.914-47.543v-7.314l7.314-588.8zM234.057 623.543c-3.657 0-3.657 0 0 0z" />
<glyph unicode="&#xe982;" glyph-name="table" d="M373.029 440.686h-212.114v362.057c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-694.857c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v259.657h175.543v-259.657c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v296.229c0 21.943-14.629 36.571-36.571 36.571zM899.657 839.314c-21.943 0-36.571-14.629-36.571-36.571v-362.057h-219.429c-21.943 0-36.571-14.629-36.571-36.571v-296.229c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v259.657h182.857v-259.657c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v694.857c0 18.286-18.286 36.571-36.571 36.571zM782.629 499.2c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-530.286c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h223.086v-405.943c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v405.943h234.057z" />
<glyph unicode="&#xe983;" glyph-name="tag-1" d="M954.514 484.571l-409.6 409.6c-21.943 21.943-54.857 32.914-91.429 32.914l-230.4-10.971c-87.771-10.971-171.886-91.429-175.543-179.2l-14.629-226.743c-3.657-32.914 7.314-73.143 32.914-95.086l409.6-409.6c21.943-21.943 51.2-36.571 84.114-36.571h3.657c43.886 0 91.429 21.943 128 58.514l245.029 245.029c29.257 29.257 51.2 69.486 54.857 106.057 3.657 40.229-7.314 76.8-36.571 106.057zM917.943 385.829c-3.657-21.943-14.629-43.886-36.571-62.171l-245.029-245.029c-21.943-21.943-51.2-36.571-76.8-36.571-14.629 0-21.943 3.657-32.914 14.629l-409.6 409.6c-7.314 7.314-14.629 21.943-10.971 36.571l14.629 230.4c3.657 51.2 54.857 102.4 106.057 109.714l226.743 10.971c18.286 0 32.914-7.314 40.229-10.971l409.6-409.6c14.629-14.629 14.629-32.914 14.629-47.543zM230.4 733.257c-25.6-25.6-29.257-69.486-3.657-95.086 10.971-10.971 29.257-18.286 47.543-18.286h3.657c14.629 3.657 32.914 10.971 43.886 21.943 29.257 25.6 29.257 69.486 3.657 95.086s-69.486 25.6-95.086-3.657zM658.286 550.4l-245.029-245.029c-14.629-14.629-14.629-36.571 0-51.2 7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971l245.029 245.029c14.629 14.629 14.629 36.571 0 51.2s-36.571 14.629-51.2 0z" />
<glyph unicode="&#xe984;" glyph-name="tag-2" d="M954.514 484.571l-409.6 409.6c-21.943 21.943-54.857 32.914-91.429 32.914l-230.4-10.971c-87.771-10.971-171.886-91.429-175.543-179.2l-14.629-226.743c-3.657-32.914 7.314-73.143 32.914-95.086l409.6-409.6c21.943-21.943 51.2-36.571 84.114-36.571h3.657c43.886 0 91.429 21.943 128 58.514l245.029 245.029c29.257 29.257 51.2 69.486 54.857 106.057 3.657 40.229-7.314 76.8-36.571 106.057zM917.943 385.829c-3.657-21.943-14.629-43.886-36.571-62.171l-245.029-245.029c-21.943-21.943-51.2-36.571-76.8-36.571-14.629 0-21.943 3.657-32.914 14.629l-409.6 409.6c-7.314 7.314-14.629 21.943-10.971 36.571l14.629 230.4c3.657 51.2 54.857 102.4 106.057 109.714l226.743 10.971c18.286 0 32.914-7.314 40.229-10.971l409.6-409.6c14.629-14.629 14.629-32.914 14.629-47.543zM398.629 488.229c18.286 0 36.571 7.314 51.2 21.943 25.6 25.6 29.257 69.486 3.657 95.086-10.971 10.971-29.257 18.286-43.886 18.286-18.286 0-36.571-7.314-51.2-21.943-25.6-25.6-29.257-69.486-3.657-95.086 10.971-10.971 25.6-18.286 43.886-18.286zM574.171 385.829c-25.6-25.6-29.257-69.486-3.657-95.086 10.971-10.971 29.257-18.286 43.886-18.286 18.286 0 36.571 7.314 51.2 21.943 10.971 10.971 18.286 29.257 21.943 47.543 0 18.286-7.314 36.571-18.286 51.2-25.6 18.286-69.486 18.286-95.086-7.314zM658.286 597.943c-14.629 14.629-36.571 14.629-51.2 0l-245.029-245.029c-14.629-14.629-14.629-36.571 0-51.2 7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971l245.029 245.029c14.629 14.629 14.629 36.571 0 51.2z" />
<glyph unicode="&#xe985;" glyph-name="tag-3" d="M837.486 850.286c-32.914 36.571-80.457 36.571-128 36.571h-387.657c-51.2 0-102.4 0-138.971-40.229-25.6-25.6-36.571-65.829-36.571-120.686v-596.114c0-47.543 25.6-87.771 65.829-106.057 14.629-10.971 29.257-14.629 43.886-14.629 25.6 0 51.2 10.971 73.143 29.257l160.914 138.971c10.971 10.971 29.257 10.971 43.886-3.657l157.257-135.314c32.914-29.257 76.8-36.571 117.029-18.286s65.829 62.171 65.829 106.057v596.114c3.657 62.171-7.314 102.4-36.571 128zM804.571 129.829c0-21.943-14.629-36.571-25.6-40.229-7.314-3.657-21.943-7.314-40.229 7.314l-153.6 131.657c-43.886 36.571-106.057 36.571-142.629 0l-157.257-135.314c-14.629-10.971-29.257-10.971-40.229-7.314-18.286 7.314-25.6 21.943-25.6 43.886v596.114c0 36.571 3.657 58.514 14.629 73.143 14.629 14.629 51.2 14.629 87.771 14.629h387.657c32.914 0 62.171 0 76.8-10.971 10.971-14.629 18.286-40.229 18.286-80.457v-592.457zM680.229 689.371h-336.457c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h336.457c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe986;" glyph-name="tag-4" d="M837.486 850.286c-32.914 36.571-80.457 36.571-128 36.571h-387.657c-51.2 0-102.4 0-138.971-40.229-25.6-25.6-36.571-65.829-36.571-120.686v-596.114c0-47.543 25.6-87.771 65.829-106.057 14.629-10.971 29.257-14.629 43.886-14.629 25.6 0 51.2 10.971 73.143 29.257l160.914 138.971c10.971 10.971 29.257 10.971 43.886-3.657l157.257-135.314c32.914-29.257 76.8-36.571 117.029-18.286s65.829 62.171 65.829 106.057v596.114c3.657 62.171-7.314 102.4-36.571 128zM804.571 129.829c0-21.943-14.629-36.571-25.6-40.229-7.314-3.657-21.943-7.314-40.229 7.314l-153.6 131.657c-43.886 36.571-106.057 36.571-142.629 0l-157.257-135.314c-14.629-10.971-29.257-10.971-40.229-7.314-18.286 7.314-25.6 21.943-25.6 43.886v596.114c0 36.571 3.657 58.514 14.629 73.143 14.629 14.629 51.2 14.629 87.771 14.629h387.657c32.914 0 62.171 0 76.8-10.971 10.971-14.629 18.286-40.229 18.286-80.457v-592.457zM398.629 557.714c18.286 0 36.571 7.314 51.2 21.943 25.6 25.6 25.6 69.486 0 95.086s-69.486 25.6-95.086-3.657c-25.6-25.6-29.257-69.486-3.657-95.086 10.971-10.971 29.257-18.286 47.543-18.286zM574.171 451.657c-10.971-10.971-18.286-29.257-21.943-47.543 0-18.286 7.314-36.571 18.286-51.2 10.971-10.971 29.257-18.286 43.886-18.286h3.657c18.286 0 32.914 7.314 47.543 21.943 25.6 25.6 29.257 69.486 3.657 95.086-25.6 29.257-69.486 29.257-95.086 0zM658.286 667.429c-14.629 14.629-36.571 14.629-51.2 0l-245.029-245.029c-14.629-14.629-14.629-36.571 0-51.2 7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971l245.029 245.029c14.629 10.971 14.629 36.571 0 51.2z" />
<glyph unicode="&#xe987;" glyph-name="tick-2" d="M826.514 634.514c-14.629 14.629-36.571 18.286-51.2 3.657l-343.771-303.543-128 135.314c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l153.6-160.914c7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 7.314l369.371 325.486c10.971 14.629 10.971 36.571 0 54.857zM512 927.086c-263.314 0-479.086-215.771-479.086-479.086s215.771-479.086 479.086-479.086 479.086 215.771 479.086 479.086-215.771 479.086-479.086 479.086zM512 42.057c-223.086 0-405.943 182.857-405.943 405.943s182.857 405.943 405.943 405.943 405.943-182.857 405.943-405.943-182.857-405.943-405.943-405.943z" />
<glyph unicode="&#xe988;" glyph-name="tick-square" d="M797.257 31.086h-570.514c-73.143 0-135.314 58.514-135.314 135.314v566.857c0 73.143 58.514 135.314 135.314 135.314h570.514c73.143 0 135.314-58.514 135.314-135.314v-570.514c-3.657-73.143-62.171-131.657-135.314-131.657zM226.743 791.771c-32.914 0-62.171-25.6-62.171-62.171v-570.514c0-32.914 25.6-62.171 62.171-62.171h570.514c32.914 0 62.171 25.6 62.171 62.171v574.171c0 32.914-25.6 62.171-62.171 62.171h-570.514zM786.286 608.914c-14.629 14.629-36.571 18.286-51.2 3.657l-303.543-266.971-106.057 113.371c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l131.657-138.971c7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 7.314l329.143 292.571c14.629 14.629 14.629 36.571 0 51.2z" />
<glyph unicode="&#xe989;" glyph-name="tick" d="M848.457 663.771c-14.629 14.629-36.571 18.286-51.2 3.657l-409.6-362.057-153.6 160.914c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l179.2-186.514c7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 7.314l431.543 387.657c14.629 14.629 14.629 36.571 3.657 51.2z" />
<glyph unicode="&#xe98a;" glyph-name="toggle" d="M226.743 722.286h570.514c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-570.514c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571zM797.257 484.571h-570.514c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h570.514c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM797.257 173.714h-570.514c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h570.514c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe98b;" glyph-name="trophy" d="M906.971 817.371c-14.629 18.286-36.571 25.6-62.171 25.6h-65.829v10.971c0 54.857-40.229 95.086-95.086 95.086h-343.771c-54.857 0-95.086-40.229-95.086-95.086v-7.314h-69.486c-21.943 0-43.886-10.971-62.171-25.6-10.971-18.286-18.286-43.886-14.629-65.829 21.943-146.286 73.143-230.4 157.257-259.657 25.6-102.4 113.371-179.2 223.086-190.171v-157.257h-84.114c-58.514 0-124.343-106.057-124.343-149.943 0-14.629 7.314-25.6 10.971-32.914 7.314-10.971 21.943-18.286 36.571-18.286h391.314c14.629 0 29.257 7.314 36.571 18.286 3.657 7.314 10.971 18.286 10.971 32.914 0 43.886-65.829 149.943-124.343 149.943h-84.114v157.257c106.057 7.314 193.829 84.114 223.086 186.514 80.457 29.257 135.314 113.371 153.6 259.657 3.657 25.6-3.657 47.543-18.286 65.829zM168.229 762.514v7.314s3.657 3.657 7.314 3.657h69.486v-193.829c-36.571 29.257-62.171 91.429-76.8 182.857zM672.914 20.114h-321.829c10.971 21.943 32.914 47.543 43.886 54.857h234.057c10.971-7.314 32.914-32.914 43.886-54.857zM530.286 378.514h-36.571c-95.086 0-175.543 80.457-175.543 175.543v299.886c0 10.971 10.971 21.943 21.943 21.943h343.771c10.971 0 21.943-10.971 21.943-21.943v-303.543c0-91.429-80.457-171.886-175.543-171.886zM778.971 579.657v190.171h65.829c3.657 0 3.657 0 7.314-3.657 0 0 3.657-3.657 3.657-7.314-14.629-87.771-40.229-146.286-76.8-179.2z" />
<glyph unicode="&#xe98c;" glyph-name="twitter" d="M789.943 572.343c0-65.829-14.629-128-47.543-186.514-32.914-65.829-76.8-113.371-135.314-153.6-65.829-43.886-138.971-62.171-219.429-62.171s-153.6 21.943-219.429 62.171h32.914c65.829 0 124.343 21.943 175.543 62.171-32.914 0-58.514 10.971-84.114 29.257s-40.229 40.229-51.2 69.486h25.6c10.971 0 25.6 0 36.571 3.657-32.914 7.314-58.514 25.6-80.457 51.2s-32.914 54.857-32.914 87.771v3.657c21.943-18.286 43.886-25.6 65.829-25.6-18.286 14.629-32.914 29.257-47.543 51.2-10.971 21.943-18.286 43.886-18.286 69.486s7.314 47.543 21.943 69.486c36.571-43.886 76.8-80.457 128-106.057s106.057-40.229 164.571-43.886c0 10.971-3.657 21.943-3.657 32.914 0 25.6 7.314 47.543 18.286 69.486s29.257 40.229 51.2 51.2c21.943 10.971 43.886 18.286 69.486 18.286 21.943 0 40.229-3.657 58.514-10.971s32.914-18.286 47.543-32.914c36.571 10.971 65.829 21.943 95.086 36.571-10.971-32.914-32.914-58.514-62.171-76.8 25.6 3.657 54.857 10.971 80.457 21.943-18.286-29.257-43.886-54.857-73.143-73.143 0-3.657 3.657-10.971 3.657-18.286z" />
<glyph unicode="&#xe98d;" glyph-name="upload-2" d="M921.6 363.886c-21.943 0-36.571-14.629-36.571-36.571v-234.057c0-29.257-25.6-54.857-54.857-54.857h-629.029c-29.257 0-54.857 25.6-54.857 54.857v234.057c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-234.057c0-69.486 58.514-128 128-128h625.371c69.486 0 128 58.514 128 128v234.057c3.657 18.286-14.629 36.571-32.914 36.571zM574.171 897.829c-14.629 14.629-36.571 25.6-58.514 25.6s-43.886-7.314-58.514-25.6l-226.743-223.086c-10.971-14.629-10.971-36.571 0-51.2s36.571-14.629 51.2 0l193.829 193.829v-618.057c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v618.057l193.829-193.829c14.629-14.629 36.571-14.629 51.2 0s14.629 36.571 0 51.2l-219.429 223.086z" />
<glyph unicode="&#xe98e;" glyph-name="upload" d="M782.629 338.286l-201.143 201.143c-29.257 29.257-73.143 29.257-102.4 0l-204.8-201.143c-14.629-14.629-14.629-36.571 0-51.2s36.571-14.629 51.2 0l168.229 168.229v-384c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v373.029l160.914-160.914c7.314-7.314 18.286-10.971 25.6-10.971s18.286 3.657 25.6 10.971c14.629 14.629 14.629 40.229 3.657 54.857zM702.171 689.371c-29.257 98.743-135.314 171.886-252.343 171.886-146.286 0-263.314-106.057-263.314-237.714v-21.943c-106.057-25.6-179.2-117.029-179.2-219.429 0-80.457 51.2-157.257 128-193.829 32.914-21.943 76.8-32.914 124.343-32.914 21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571c-36.571 0-65.829 7.314-91.429 21.943-54.857 29.257-87.771 76.8-87.771 131.657 0 76.8 65.829 146.286 153.6 153.6 10.971 0 18.286 7.314 25.6 14.629s7.314 18.286 7.314 29.257v7.314c-3.657 14.629-3.657 25.6-3.657 36.571 0 87.771 87.771 164.571 190.171 164.571 95.086 0 175.543-62.171 186.514-138.971 3.657-18.286 18.286-32.914 36.571-32.914h29.257c128 0 237.714-95.086 237.714-204.8 0-62.171-32.914-124.343-91.429-164.571-14.629-10.971-29.257-18.286-43.886-25.6-18.286-7.314-29.257-29.257-21.943-47.543 7.314-14.629 18.286-21.943 32.914-21.943 3.657 0 7.314 0 14.629 3.657 18.286 7.314 40.229 18.286 58.514 32.914 76.8 54.857 120.686 135.314 120.686 223.086 3.657 153.6-138.971 277.943-310.857 277.943z" />
<glyph unicode="&#xe98f;" glyph-name="user-add" d="M625.371 495.543c47.543 40.229 76.8 98.743 76.8 164.571 0 117.029-95.086 212.114-212.114 212.114s-212.114-95.086-212.114-212.114c0-65.829 29.257-124.343 76.8-164.571-142.629-54.857-241.371-190.171-241.371-351.086 0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 168.229 135.314 303.543 303.543 303.543 51.2 0 98.743-10.971 138.971-32.914 18.286-18.286 76.8 18.286 43.886 58.514-14.629 10.971-29.257 18.286-47.543 21.943zM351.086 660.114c0 76.8 62.171 138.971 138.971 138.971s138.971-62.171 138.971-138.971-62.171-138.971-138.971-138.971-138.971 62.171-138.971 138.971zM874.057 309.029h-91.429v87.771c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-87.771h-91.429c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h91.429v-87.771c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v87.771h91.429c21.943 0 36.571 14.629 36.571 36.571 0 18.286-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe990;" glyph-name="user-cash" d="M647.314 451.657c47.543 40.229 76.8 98.743 76.8 164.571 0 117.029-95.086 212.114-212.114 212.114s-212.114-95.086-212.114-212.114c0-65.829 29.257-124.343 76.8-164.571-142.629-54.857-241.371-190.171-241.371-351.086 0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 168.229 135.314 303.543 303.543 303.543s303.543-135.314 303.543-303.543c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 160.914-102.4 299.886-241.371 351.086zM373.029 616.229c0 76.8 62.171 138.971 138.971 138.971s138.971-62.171 138.971-138.971-62.171-138.971-138.971-138.971-138.971 62.171-138.971 138.971zM698.514 298.057h-124.343c-21.943 0-36.571-14.629-36.571-36.571v-98.743c0-18.286 7.314-36.571 25.6-47.543l3.657-3.657 40.229-21.943c10.971-7.314 21.943-7.314 32.914-7.314s21.943 3.657 29.257 7.314l40.229 18.286s3.657 0 3.657 3.657c14.629 10.971 25.6 29.257 25.6 47.543v102.4c-3.657 21.943-21.943 36.571-40.229 36.571zM661.943 170.057l-25.6-10.971-25.6 14.629v54.857h51.2v-58.514z" />
<glyph unicode="&#xe991;" glyph-name="user-group" d="M760.686 451.657c47.543 40.229 76.8 98.743 76.8 164.571 0 117.029-95.086 212.114-212.114 212.114-40.229 0-80.457-10.971-113.371-32.914-32.914 21.943-73.143 32.914-113.371 32.914-117.029 0-212.114-95.086-212.114-212.114 0-65.829 29.257-124.343 76.8-164.571-142.629-54.857-241.371-190.171-241.371-351.086 0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 168.229 135.314 303.543 303.543 303.543h3.657c-91.429-65.829-153.6-175.543-153.6-299.886 0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 168.229 135.314 303.543 303.543 303.543s303.543-135.314 303.543-303.543c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 157.257-102.4 296.229-241.371 347.429zM764.343 616.229c0-76.8-62.171-138.971-138.971-138.971s-138.971 62.171-138.971 138.971 62.171 138.971 138.971 138.971 138.971-62.171 138.971-138.971zM259.657 616.229c0 76.8 62.171 138.971 138.971 138.971 18.286 0 40.229-3.657 58.514-10.971-25.6-36.571-43.886-80.457-43.886-128s14.629-91.429 43.886-128c-18.286-7.314-36.571-10.971-58.514-10.971-76.8 0-138.971 62.171-138.971 138.971z" />
<glyph unicode="&#xe992;" glyph-name="user-info" d="M647.314 451.657c47.543 40.229 76.8 98.743 76.8 164.571 0 117.029-95.086 212.114-212.114 212.114s-212.114-95.086-212.114-212.114c0-65.829 29.257-124.343 76.8-164.571-142.629-54.857-241.371-190.171-241.371-351.086 0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 168.229 135.314 303.543 303.543 303.543s303.543-135.314 303.543-303.543c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 160.914-102.4 299.886-241.371 351.086zM373.029 616.229c0 76.8 62.171 138.971 138.971 138.971s138.971-62.171 138.971-138.971-62.171-138.971-138.971-138.971-138.971 62.171-138.971 138.971zM504.686 276.114c-21.943 0-36.571-14.629-36.571-36.571v-135.314c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v135.314c0 18.286-18.286 36.571-36.571 36.571zM504.686 378.514c-21.943 0-36.571-14.629-36.571-36.571v-18.286c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v18.286c0 21.943-18.286 36.571-36.571 36.571z" />
<glyph unicode="&#xe993;" glyph-name="user-owner" d="M647.314 451.657c47.543 40.229 76.8 98.743 76.8 164.571 0 117.029-95.086 212.114-212.114 212.114s-212.114-95.086-212.114-212.114c0-65.829 29.257-124.343 76.8-164.571-142.629-54.857-241.371-190.171-241.371-351.086 0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 117.029 69.486 223.086 168.229 270.629l95.086-76.8v-124.343c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v128l87.771 80.457c102.4-47.543 175.543-153.6 175.543-274.286 0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c7.314 157.257-95.086 296.229-234.057 347.429zM373.029 616.229c0 76.8 62.171 138.971 138.971 138.971s138.971-62.171 138.971-138.971-62.171-138.971-138.971-138.971-138.971 62.171-138.971 138.971zM512 363.886l-47.543 40.229c14.629 3.657 32.914 3.657 51.2 3.657 14.629 0 29.257 0 43.886-3.657l-47.543-40.229z" />
<glyph unicode="&#xe994;" glyph-name="user-shop" d="M764.343 283.429c29.257 29.257 47.543 69.486 47.543 113.371 0 87.771-73.143 160.914-160.914 160.914s-160.914-73.143-160.914-160.914c0-43.886 18.286-84.114 47.543-113.371-95.086-43.886-160.914-138.971-160.914-252.343 0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 113.371 91.429 201.143 204.8 201.143s201.143-91.429 201.143-201.143c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c-3.657 109.714-69.486 208.457-164.571 252.343zM559.543 393.143c0 47.543 40.229 87.771 87.771 87.771s87.771-40.229 87.771-87.771-40.229-87.771-87.771-87.771c-47.543 0-87.771 40.229-87.771 87.771zM943.543 788.114v76.8c0 21.943-14.629 36.571-36.571 36.571h-789.943c-21.943 0-36.571-14.629-36.571-36.571v-76.8c-21.943 0-36.571-14.629-36.571-36.571v-43.886c0-36.571 14.629-69.486 36.571-95.086v-522.971c0-10.971 7.314-18.286 14.629-21.943s14.629-7.314 21.943-7.314h179.2c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-142.629v435.2c10.971-3.657 21.943-3.657 32.914-3.657 40.229 0 80.457 18.286 106.057 47.543 25.6-29.257 62.171-47.543 106.057-47.543s84.114 21.943 109.714 51.2c25.6-32.914 65.829-51.2 109.714-51.2s84.114 21.943 109.714 51.2c25.6-32.914 65.829-51.2 109.714-51.2 10.971 0 21.943 0 32.914 3.657v-292.571c0-18.286 14.629-32.914 32.914-32.914 21.943 0 36.571 14.629 36.571 36.571v332.8c21.943 25.6 36.571 58.514 36.571 95.086v43.886c3.657 21.943-14.629 36.571-32.914 36.571zM256 707.657c0-36.571-29.257-69.486-69.486-69.486s-69.486 29.257-69.486 69.486v7.314h138.971v-7.314zM468.114 707.657c0-36.571-29.257-69.486-69.486-69.486-43.886 0-73.143 29.257-73.143 69.486v7.314h138.971v-7.314zM687.543 707.657c0-36.571-29.257-69.486-69.486-69.486s-69.486 29.257-69.486 69.486v7.314h138.971v-7.314zM727.771 788.114h-574.171v40.229h716.8v-40.229h-142.629zM906.971 707.657c0-36.571-29.257-69.486-69.486-69.486s-69.486 29.257-69.486 69.486v7.314h138.971v-7.314z" />
<glyph unicode="&#xe995;" glyph-name="user" d="M647.314 451.657c47.543 40.229 76.8 98.743 76.8 164.571 0 117.029-95.086 212.114-212.114 212.114s-212.114-95.086-212.114-212.114c0-65.829 29.257-124.343 76.8-164.571-142.629-54.857-241.371-190.171-241.371-351.086 0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 168.229 135.314 303.543 303.543 303.543s303.543-135.314 303.543-303.543c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571c0 160.914-102.4 299.886-241.371 351.086zM373.029 616.229c0 76.8 62.171 138.971 138.971 138.971s138.971-62.171 138.971-138.971-62.171-138.971-138.971-138.971-138.971 62.171-138.971 138.971z" />
<glyph unicode="&#xe996;" glyph-name="van-ship" d="M771.657 700.343c-10.971 73.143-69.486 128-142.629 128h-464.457c-80.457 0-146.286-65.829-146.286-146.286v-314.514c0-69.486 51.2-131.657 120.686-142.629 0-7.314-3.657-14.629-3.657-25.6 0-76.8 54.857-131.657 131.657-131.657 73.143 0 131.657 58.514 131.657 131.657v21.943h215.771c0-7.314-3.657-14.629-3.657-21.943 0-76.8 54.857-131.657 131.657-131.657 73.143 0 131.657 58.514 131.657 131.657v21.943h21.943c62.171 0 113.371 51.2 113.371 117.029v95.086c-3.657 138.971-106.057 252.343-237.714 266.971zM914.286 517.486h-138.971v109.714c58.514-10.971 113.371-54.857 138.971-109.714zM91.429 367.543v314.514c0 36.571 36.571 73.143 73.143 73.143h464.457c40.229 0 73.143-32.914 73.143-73.143v-387.657h-537.6c-40.229 0-73.143 36.571-73.143 73.143zM325.486 199.314c0-32.914-25.6-58.514-58.514-58.514s-58.514 25.6-58.514 58.514c0 7.314 0 14.629 3.657 21.943h109.714c0-7.314 3.657-14.629 3.657-21.943zM800.914 199.314c0-32.914-25.6-58.514-58.514-58.514s-58.514 25.6-58.514 58.514c0 7.314 0 14.629 3.657 21.943h109.714c0-7.314 3.657-14.629 3.657-21.943zM932.571 338.286c0-25.6-18.286-43.886-40.229-43.886h-120.686v149.943h160.914v-106.057z" />
<glyph unicode="&#xe997;" glyph-name="video-camera" d="M925.257 689.371c-47.543 25.6-113.371 14.629-175.543-25.6l-62.171-47.543c-14.629 62.171-73.143 113.371-142.629 113.371h-354.743c-80.457 0-146.286-65.829-146.286-146.286v-266.971c0-80.457 65.829-146.286 146.286-146.286h354.743c65.829 0 120.686 43.886 138.971 106.057l65.829-47.543c40.229-25.6 84.114-40.229 120.686-40.229 21.943 0 40.229 3.657 54.857 10.971 32.914 18.286 51.2 51.2 51.2 91.429v303.543c3.657 58.514-29.257 87.771-51.2 95.086zM618.057 316.343c0-40.229-32.914-73.143-73.143-73.143h-354.743c-36.571 0-73.143 36.571-73.143 73.143v266.971c0 36.571 36.571 73.143 73.143 73.143h285.257v-179.2c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v175.543c36.571-3.657 69.486-36.571 69.486-73.143v-263.314zM906.971 287.086c0-21.943-7.314-25.6-10.971-25.6-18.286-10.971-62.171-3.657-102.4 25.6l-65.829 47.543c-18.286 10.971-25.6 36.571-25.6 58.514v106.057c0 21.943 10.971 47.543 29.257 58.514l65.829 47.543c40.229 29.257 80.457 32.914 98.743 21.943 3.657-3.657 14.629-7.314 14.629-32.914v-307.2z" />
<glyph unicode="&#xe998;" glyph-name="video" d="M852.114 864.914h-680.229c-80.457 0-146.286-65.829-146.286-146.286v-541.257c0-80.457 65.829-146.286 146.286-146.286h683.886c80.457 0 146.286 65.829 146.286 142.629v544.914c-3.657 80.457-65.829 146.286-149.943 146.286zM215.771 477.257h-117.029v109.714h120.686v-109.714zM98.743 404.114h120.686v-109.714h-120.686v109.714zM288.914 791.771h438.857v-687.543h-438.857v687.543zM800.914 586.971h124.343v-109.714h-124.343v109.714zM800.914 404.114h124.343v-109.714h-124.343v109.714zM925.257 718.629v-58.514h-124.343v131.657h51.2c43.886 0 73.143-32.914 73.143-73.143zM171.886 791.771h47.543v-131.657h-120.686v58.514c0 40.229 29.257 73.143 73.143 73.143zM98.743 177.371v43.886h120.686v-117.029h-47.543c-40.229 0-73.143 36.571-73.143 73.143zM852.114 104.229h-51.2v117.029h124.343v-47.543c0-36.571-32.914-69.486-73.143-69.486z" />
<glyph unicode="&#xe999;" glyph-name="view-grid" d="M394.971 923.429h-270.629c-51.2 0-91.429-40.229-91.429-91.429v-270.629c0-51.2 40.229-91.429 91.429-91.429h270.629c29.257 0 54.857 10.971 69.486 32.914 14.629 18.286 21.943 40.229 21.943 62.171v266.971c0 51.2-40.229 91.429-91.429 91.429zM409.6 550.4c-3.657-3.657-10.971-7.314-14.629-7.314h-270.629c-7.314 0-18.286 10.971-18.286 18.286v270.629c0 7.314 10.971 18.286 18.286 18.286h270.629c7.314 0 18.286-10.971 18.286-18.286v-274.286c0-3.657 0-7.314-3.657-7.314zM899.657 923.429h-270.629c-51.2 0-91.429-40.229-91.429-91.429v-270.629c0-51.2 40.229-91.429 91.429-91.429h270.629c51.2 0 91.429 40.229 91.429 91.429v270.629c0 51.2-40.229 91.429-91.429 91.429zM917.943 561.371c0-7.314-10.971-18.286-18.286-18.286h-270.629c-7.314 0-18.286 10.971-18.286 18.286v270.629c0 7.314 10.971 18.286 18.286 18.286h270.629c7.314 0 18.286-10.971 18.286-18.286v-270.629zM394.971 426.057h-270.629c-51.2 0-91.429-40.229-91.429-91.429v-270.629c0-51.2 40.229-91.429 91.429-91.429h270.629c29.257 0 54.857 10.971 69.486 32.914 14.629 18.286 21.943 40.229 21.943 62.171v266.971c0 51.2-40.229 91.429-91.429 91.429zM409.6 53.029c-3.657-3.657-7.314-7.314-14.629-7.314h-270.629c-7.314 0-18.286 10.971-18.286 18.286v270.629c0 7.314 10.971 18.286 18.286 18.286h270.629c7.314 0 18.286-10.971 18.286-18.286v-274.286c0-3.657 0-7.314-3.657-7.314zM899.657 426.057h-270.629c-51.2 0-91.429-40.229-91.429-91.429v-270.629c0-51.2 40.229-91.429 91.429-91.429h270.629c51.2 0 91.429 40.229 91.429 91.429v270.629c0 51.2-40.229 91.429-91.429 91.429zM917.943 64c0-7.314-10.971-18.286-18.286-18.286h-270.629c-7.314 0-18.286 10.971-18.286 18.286v270.629c0 7.314 10.971 18.286 18.286 18.286h270.629c7.314 0 18.286-10.971 18.286-18.286v-270.629z" />
<glyph unicode="&#xe99a;" glyph-name="view-list" d="M314.514 722.286h570.514c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-570.514c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571zM179.2 795.429h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM885.029 484.571h-570.514c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h570.514c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM179.2 484.571h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM885.029 173.714h-570.514c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h570.514c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM179.2 173.714h-40.229c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h40.229c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571z" />
<glyph unicode="&#xe99b;" glyph-name="wifi-on" d="M212.114 861.257c-10.971 14.629-32.914 18.286-51.2 7.314-14.629-10.971-18.286-32.914-7.314-51.2l51.2-76.8c-43.886-21.943-87.771-43.886-131.657-73.143-14.629-10.971-21.943-32.914-7.314-51.2 10.971-18.286 32.914-21.943 47.543-10.971 43.886 29.257 87.771 51.2 135.314 73.143l84.114-124.343c-47.543-14.629-95.086-36.571-135.314-65.829-18.286-10.971-21.943-32.914-10.971-51.2s32.914-21.943 51.2-10.971c43.886 29.257 91.429 51.2 138.971 65.829l91.429-131.657c-43.886-7.314-84.114-21.943-124.343-47.543-18.286-10.971-21.943-32.914-10.971-51.2 7.314-10.971 18.286-18.286 29.257-18.286 7.314 0 14.629 3.657 18.286 7.314 40.229 25.6 84.114 36.571 131.657 40.229l113.371-164.571c7.314-10.971 18.286-14.629 29.257-14.629 7.314 0 14.629 3.657 21.943 7.314 18.286 10.971 21.943 32.914 10.971 51.2l-475.429 691.2zM548.571 144.457c0-20.198-16.374-36.571-36.571-36.571s-36.571 16.374-36.571 36.571c0 20.198 16.374 36.571 36.571 36.571s36.571-16.374 36.571-36.571zM950.857 652.8c-124.343 91.429-270.629 142.629-420.571 146.286-62.171 3.657-120.686-3.657-182.857-14.629l43.886-65.829c43.886 7.314 87.771 10.971 135.314 7.314 135.314-3.657 266.971-51.2 380.343-135.314 7.314-3.657 14.629-7.314 21.943-7.314 10.971 0 21.943 3.657 29.257 14.629 14.629 21.943 10.971 43.886-7.314 54.857zM530.286 583.314h-40.229l51.2-73.143c87.771-3.657 171.886-36.571 248.686-87.771 7.314-3.657 14.629-7.314 21.943-7.314 10.971 0 21.943 3.657 29.257 14.629 10.971 18.286 7.314 40.229-7.314 51.2-95.086 62.171-197.486 98.743-303.543 102.4z" />
<glyph unicode="&#xe99c;" glyph-name="wifi" d="M548.571 137.143c0-20.198-16.374-36.571-36.571-36.571s-36.571 16.374-36.571 36.571c0 20.198 16.374 36.571 36.571 36.571s36.571-16.374 36.571-36.571zM680.229 309.029c-47.543 29.257-98.743 43.886-153.6 43.886-65.829 3.657-128-14.629-182.857-51.2-18.286-10.971-21.943-32.914-10.971-51.2 7.314-10.971 18.286-18.286 29.257-18.286 7.314 0 14.629 3.657 18.286 7.314 43.886 29.257 91.429 40.229 142.629 40.229 40.229 0 80.457-14.629 117.029-36.571 18.286-10.971 40.229-3.657 51.2 10.971 10.971 21.943 7.314 43.886-10.971 54.857zM526.629 576c-117.029 3.657-230.4-29.257-329.143-95.086-18.286-10.971-21.943-32.914-10.971-51.2s32.914-21.943 51.2-10.971c87.771 58.514 186.514 87.771 288.914 84.114 91.429-3.657 182.857-32.914 259.657-87.771 7.314-3.657 14.629-7.314 21.943-7.314 10.971 0 21.943 3.657 29.257 14.629 10.971 18.286 7.314 40.229-7.314 51.2-91.429 62.171-193.829 98.743-303.543 102.4zM950.857 645.486c-124.343 91.429-270.629 142.629-420.571 146.286-164.571 7.314-321.829-40.229-457.143-131.657-14.629-10.971-21.943-32.914-10.971-51.2s32.914-21.943 51.2-10.971c124.343 84.114 266.971 128 413.257 120.686 135.314-3.657 266.971-51.2 380.343-135.314 7.314-3.657 14.629-7.314 21.943-7.314 10.971 0 21.943 3.657 29.257 14.629 14.629 21.943 10.971 43.886-7.314 54.857z" />
<glyph unicode="&#xe99d;" glyph-name="youtube" d="M896 641.829c7.314-25.6 10.971-65.829 14.629-120.686v-146.286c-3.657-54.857-7.314-95.086-14.629-120.686-3.657-18.286-14.629-32.914-25.6-43.886s-29.257-21.943-43.886-25.6c-25.6-7.314-84.114-10.971-179.2-14.629h-270.629c-95.086 3.657-153.6 7.314-179.2 14.629-18.286 3.657-32.914 14.629-43.886 25.6s-21.943 29.257-25.6 43.886c-7.314 25.6-10.971 65.829-14.629 120.686v146.286c3.657 54.857 7.314 95.086 14.629 120.686 3.657 18.286 14.629 32.914 25.6 43.886 10.971 14.629 29.257 21.943 43.886 29.257 25.6 7.314 84.114 10.971 179.2 14.629h270.629c95.086-3.657 153.6-7.314 179.2-14.629 18.286-3.657 32.914-14.629 43.886-25.6 14.629-14.629 21.943-29.257 25.6-47.543zM427.886 327.314l208.457 120.686-208.457 120.686v-241.371z" />
<glyph unicode="&#xe99e;" glyph-name="zoom-minus" d="M961.829 38.4l-204.8 208.457c58.514 73.143 91.429 164.571 91.429 263.314 0 113.371-43.886 219.429-124.343 299.886-73.143 73.143-171.886 113.371-274.286 109.714-219.429 0-398.629-182.857-398.629-409.6s179.2-409.6 398.629-409.6c95.086 0 186.514 32.914 256 95.086l204.8-208.457c7.314-7.314 18.286-10.971 25.6-10.971 10.971 0 18.286 3.657 25.6 10.971 14.629 14.629 14.629 36.571 0 51.2zM124.343 510.171c0 186.514 146.286 336.457 325.486 336.457h7.314c80.457 0 157.257-32.914 219.429-91.429 65.829-65.829 102.4-153.6 102.4-245.029s-36.571-175.543-95.086-237.714c-58.514-62.171-142.629-98.743-230.4-98.743-182.857 0-329.143 149.943-329.143 336.457zM691.2 502.857c0 21.943-14.629 36.571-36.571 36.571h-409.6c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h409.6c21.943 0 36.571 14.629 36.571 36.571z" />
<glyph unicode="&#xe99f;" glyph-name="zoom-plus" d="M961.829 38.4l-204.8 212.114c58.514 73.143 91.429 164.571 91.429 259.657 0 113.371-43.886 219.429-124.343 299.886-73.143 73.143-171.886 113.371-274.286 109.714-219.429 0-398.629-182.857-398.629-409.6s179.2-409.6 398.629-409.6c95.086 0 186.514 32.914 256 95.086l204.8-208.457c7.314-7.314 18.286-10.971 25.6-10.971 10.971 0 18.286 3.657 25.6 10.971 14.629 14.629 14.629 36.571 0 51.2zM124.343 510.171c0 186.514 146.286 336.457 325.486 336.457h7.314c80.457 0 157.257-32.914 219.429-91.429 65.829-65.829 102.4-153.6 102.4-245.029s-36.571-175.543-95.086-237.714c-58.514-62.171-142.629-98.743-230.4-98.743-182.857 0-329.143 149.943-329.143 336.457zM694.857 502.857c0 21.943-14.629 36.571-36.571 36.571h-168.229v168.229c0 21.943-14.629 36.571-36.571 36.571s-36.571-14.629-36.571-36.571v-168.229h-171.886c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h171.886v-168.229c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v168.229h168.229c21.943 0 36.571 14.629 36.571 36.571z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 154 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.1 (57501) - http://www.bohemiancoding.com/sketch -->
<title>Icon-Arrow-Right</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Icon-Arrow-Right" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<polyline id="Path-2" stroke="#D8D8D8" stroke-width="3" points="10 7 15 12.306212 10 17.0772869"></polyline>
</g>
</svg>

After

Width:  |  Height:  |  Size: 631 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 B

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="48px" height="48px" viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.1 (57501) - http://www.bohemiancoding.com/sketch -->
<title>Icon-Velocity-Active</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Icon-Velocity-Active" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<polygon id="Combined-Shape" stroke="#0041FF" stroke-width="2" fill-rule="nonzero" points="7 19.92 16.5671442 19.92 21.714203 28.1030254 34.3562813 7 42 7 21.714203 41"></polygon>
<polygon id="Path-3" stroke="#0041FF" stroke-width="2" fill-rule="nonzero" points="21.6944444 20 25 14 18 14"></polygon>
</g>
</svg>

After

Width:  |  Height:  |  Size: 839 B

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="48px" height="48px" viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.1 (57501) - http://www.bohemiancoding.com/sketch -->
<title>Icon-Velocity</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Icon-Velocity" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<polygon id="Combined-Shape" stroke="#979797" stroke-width="2" fill-rule="nonzero" points="7 19.92 16.5671442 19.92 21.714203 28.1030254 34.3562813 7 42 7 21.714203 41"></polygon>
<polygon id="Path-3" stroke="#979797" stroke-width="2" fill-rule="nonzero" points="21.6944444 20 25 14 18 14"></polygon>
</g>
</svg>

After

Width:  |  Height:  |  Size: 825 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 699 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 516 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 790 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 275 KiB

View File

@ -0,0 +1,932 @@
3d_rotation e84d
ac_unit eb3b
access_alarm e190
access_alarms e191
access_time e192
accessibility e84e
accessible e914
account_balance e84f
account_balance_wallet e850
account_box e851
account_circle e853
adb e60e
add e145
add_a_photo e439
add_alarm e193
add_alert e003
add_box e146
add_circle e147
add_circle_outline e148
add_location e567
add_shopping_cart e854
add_to_photos e39d
add_to_queue e05c
adjust e39e
airline_seat_flat e630
airline_seat_flat_angled e631
airline_seat_individual_suite e632
airline_seat_legroom_extra e633
airline_seat_legroom_normal e634
airline_seat_legroom_reduced e635
airline_seat_recline_extra e636
airline_seat_recline_normal e637
airplanemode_active e195
airplanemode_inactive e194
airplay e055
airport_shuttle eb3c
alarm e855
alarm_add e856
alarm_off e857
alarm_on e858
album e019
all_inclusive eb3d
all_out e90b
android e859
announcement e85a
apps e5c3
archive e149
arrow_back e5c4
arrow_downward e5db
arrow_drop_down e5c5
arrow_drop_down_circle e5c6
arrow_drop_up e5c7
arrow_forward e5c8
arrow_upward e5d8
art_track e060
aspect_ratio e85b
assessment e85c
assignment e85d
assignment_ind e85e
assignment_late e85f
assignment_return e860
assignment_returned e861
assignment_turned_in e862
assistant e39f
assistant_photo e3a0
attach_file e226
attach_money e227
attachment e2bc
audiotrack e3a1
autorenew e863
av_timer e01b
backspace e14a
backup e864
battery_alert e19c
battery_charging_full e1a3
battery_full e1a4
battery_std e1a5
battery_unknown e1a6
beach_access eb3e
beenhere e52d
block e14b
bluetooth e1a7
bluetooth_audio e60f
bluetooth_connected e1a8
bluetooth_disabled e1a9
bluetooth_searching e1aa
blur_circular e3a2
blur_linear e3a3
blur_off e3a4
blur_on e3a5
book e865
bookmark e866
bookmark_border e867
border_all e228
border_bottom e229
border_clear e22a
border_color e22b
border_horizontal e22c
border_inner e22d
border_left e22e
border_outer e22f
border_right e230
border_style e231
border_top e232
border_vertical e233
branding_watermark e06b
brightness_1 e3a6
brightness_2 e3a7
brightness_3 e3a8
brightness_4 e3a9
brightness_5 e3aa
brightness_6 e3ab
brightness_7 e3ac
brightness_auto e1ab
brightness_high e1ac
brightness_low e1ad
brightness_medium e1ae
broken_image e3ad
brush e3ae
bubble_chart e6dd
bug_report e868
build e869
burst_mode e43c
business e0af
business_center eb3f
cached e86a
cake e7e9
call e0b0
call_end e0b1
call_made e0b2
call_merge e0b3
call_missed e0b4
call_missed_outgoing e0e4
call_received e0b5
call_split e0b6
call_to_action e06c
camera e3af
camera_alt e3b0
camera_enhance e8fc
camera_front e3b1
camera_rear e3b2
camera_roll e3b3
cancel e5c9
card_giftcard e8f6
card_membership e8f7
card_travel e8f8
casino eb40
cast e307
cast_connected e308
center_focus_strong e3b4
center_focus_weak e3b5
change_history e86b
chat e0b7
chat_bubble e0ca
chat_bubble_outline e0cb
check e5ca
check_box e834
check_box_outline_blank e835
check_circle e86c
chevron_left e5cb
chevron_right e5cc
child_care eb41
child_friendly eb42
chrome_reader_mode e86d
class e86e
clear e14c
clear_all e0b8
close e5cd
closed_caption e01c
cloud e2bd
cloud_circle e2be
cloud_done e2bf
cloud_download e2c0
cloud_off e2c1
cloud_queue e2c2
cloud_upload e2c3
code e86f
collections e3b6
collections_bookmark e431
color_lens e3b7
colorize e3b8
comment e0b9
compare e3b9
compare_arrows e915
computer e30a
confirmation_number e638
contact_mail e0d0
contact_phone e0cf
contacts e0ba
content_copy e14d
content_cut e14e
content_paste e14f
control_point e3ba
control_point_duplicate e3bb
copyright e90c
create e150
create_new_folder e2cc
credit_card e870
crop e3be
crop_16_9 e3bc
crop_3_2 e3bd
crop_5_4 e3bf
crop_7_5 e3c0
crop_din e3c1
crop_free e3c2
crop_landscape e3c3
crop_original e3c4
crop_portrait e3c5
crop_rotate e437
crop_square e3c6
dashboard e871
data_usage e1af
date_range e916
dehaze e3c7
delete e872
delete_forever e92b
delete_sweep e16c
description e873
desktop_mac e30b
desktop_windows e30c
details e3c8
developer_board e30d
developer_mode e1b0
device_hub e335
devices e1b1
devices_other e337
dialer_sip e0bb
dialpad e0bc
directions e52e
directions_bike e52f
directions_boat e532
directions_bus e530
directions_car e531
directions_railway e534
directions_run e566
directions_subway e533
directions_transit e535
directions_walk e536
disc_full e610
dns e875
do_not_disturb e612
do_not_disturb_alt e611
do_not_disturb_off e643
do_not_disturb_on e644
dock e30e
domain e7ee
done e876
done_all e877
donut_large e917
donut_small e918
drafts e151
drag_handle e25d
drive_eta e613
dvr e1b2
edit e3c9
edit_location e568
eject e8fb
email e0be
enhanced_encryption e63f
equalizer e01d
error e000
error_outline e001
euro_symbol e926
ev_station e56d
event e878
event_available e614
event_busy e615
event_note e616
event_seat e903
exit_to_app e879
expand_less e5ce
expand_more e5cf
explicit e01e
explore e87a
exposure e3ca
exposure_neg_1 e3cb
exposure_neg_2 e3cc
exposure_plus_1 e3cd
exposure_plus_2 e3ce
exposure_zero e3cf
extension e87b
face e87c
fast_forward e01f
fast_rewind e020
favorite e87d
favorite_border e87e
featured_play_list e06d
featured_video e06e
feedback e87f
fiber_dvr e05d
fiber_manual_record e061
fiber_new e05e
fiber_pin e06a
fiber_smart_record e062
file_download e2c4
file_upload e2c6
filter e3d3
filter_1 e3d0
filter_2 e3d1
filter_3 e3d2
filter_4 e3d4
filter_5 e3d5
filter_6 e3d6
filter_7 e3d7
filter_8 e3d8
filter_9 e3d9
filter_9_plus e3da
filter_b_and_w e3db
filter_center_focus e3dc
filter_drama e3dd
filter_frames e3de
filter_hdr e3df
filter_list e152
filter_none e3e0
filter_tilt_shift e3e2
filter_vintage e3e3
find_in_page e880
find_replace e881
fingerprint e90d
first_page e5dc
fitness_center eb43
flag e153
flare e3e4
flash_auto e3e5
flash_off e3e6
flash_on e3e7
flight e539
flight_land e904
flight_takeoff e905
flip e3e8
flip_to_back e882
flip_to_front e883
folder e2c7
folder_open e2c8
folder_shared e2c9
folder_special e617
font_download e167
format_align_center e234
format_align_justify e235
format_align_left e236
format_align_right e237
format_bold e238
format_clear e239
format_color_fill e23a
format_color_reset e23b
format_color_text e23c
format_indent_decrease e23d
format_indent_increase e23e
format_italic e23f
format_line_spacing e240
format_list_bulleted e241
format_list_numbered e242
format_paint e243
format_quote e244
format_shapes e25e
format_size e245
format_strikethrough e246
format_textdirection_l_to_r e247
format_textdirection_r_to_l e248
format_underlined e249
forum e0bf
forward e154
forward_10 e056
forward_30 e057
forward_5 e058
free_breakfast eb44
fullscreen e5d0
fullscreen_exit e5d1
functions e24a
g_translate e927
gamepad e30f
games e021
gavel e90e
gesture e155
get_app e884
gif e908
golf_course eb45
gps_fixed e1b3
gps_not_fixed e1b4
gps_off e1b5
grade e885
gradient e3e9
grain e3ea
graphic_eq e1b8
grid_off e3eb
grid_on e3ec
group e7ef
group_add e7f0
group_work e886
hd e052
hdr_off e3ed
hdr_on e3ee
hdr_strong e3f1
hdr_weak e3f2
headset e310
headset_mic e311
healing e3f3
hearing e023
help e887
help_outline e8fd
high_quality e024
highlight e25f
highlight_off e888
history e889
home e88a
hot_tub eb46
hotel e53a
hourglass_empty e88b
hourglass_full e88c
http e902
https e88d
image e3f4
image_aspect_ratio e3f5
import_contacts e0e0
import_export e0c3
important_devices e912
inbox e156
indeterminate_check_box e909
info e88e
info_outline e88f
input e890
insert_chart e24b
insert_comment e24c
insert_drive_file e24d
insert_emoticon e24e
insert_invitation e24f
insert_link e250
insert_photo e251
invert_colors e891
invert_colors_off e0c4
iso e3f6
keyboard e312
keyboard_arrow_down e313
keyboard_arrow_left e314
keyboard_arrow_right e315
keyboard_arrow_up e316
keyboard_backspace e317
keyboard_capslock e318
keyboard_hide e31a
keyboard_return e31b
keyboard_tab e31c
keyboard_voice e31d
kitchen eb47
label e892
label_outline e893
landscape e3f7
language e894
laptop e31e
laptop_chromebook e31f
laptop_mac e320
laptop_windows e321
last_page e5dd
launch e895
layers e53b
layers_clear e53c
leak_add e3f8
leak_remove e3f9
lens e3fa
library_add e02e
library_books e02f
library_music e030
lightbulb_outline e90f
line_style e919
line_weight e91a
linear_scale e260
link e157
linked_camera e438
list e896
live_help e0c6
live_tv e639
local_activity e53f
local_airport e53d
local_atm e53e
local_bar e540
local_cafe e541
local_car_wash e542
local_convenience_store e543
local_dining e556
local_drink e544
local_florist e545
local_gas_station e546
local_grocery_store e547
local_hospital e548
local_hotel e549
local_laundry_service e54a
local_library e54b
local_mall e54c
local_movies e54d
local_offer e54e
local_parking e54f
local_pharmacy e550
local_phone e551
local_pizza e552
local_play e553
local_post_office e554
local_printshop e555
local_see e557
local_shipping e558
local_taxi e559
location_city e7f1
location_disabled e1b6
location_off e0c7
location_on e0c8
location_searching e1b7
lock e897
lock_open e898
lock_outline e899
looks e3fc
looks_3 e3fb
looks_4 e3fd
looks_5 e3fe
looks_6 e3ff
looks_one e400
looks_two e401
loop e028
loupe e402
low_priority e16d
loyalty e89a
mail e158
mail_outline e0e1
map e55b
markunread e159
markunread_mailbox e89b
memory e322
menu e5d2
merge_type e252
message e0c9
mic e029
mic_none e02a
mic_off e02b
mms e618
mode_comment e253
mode_edit e254
monetization_on e263
money_off e25c
monochrome_photos e403
mood e7f2
mood_bad e7f3
more e619
more_horiz e5d3
more_vert e5d4
motorcycle e91b
mouse e323
move_to_inbox e168
movie e02c
movie_creation e404
movie_filter e43a
multiline_chart e6df
music_note e405
music_video e063
my_location e55c
nature e406
nature_people e407
navigate_before e408
navigate_next e409
navigation e55d
near_me e569
network_cell e1b9
network_check e640
network_locked e61a
network_wifi e1ba
new_releases e031
next_week e16a
nfc e1bb
no_encryption e641
no_sim e0cc
not_interested e033
note e06f
note_add e89c
notifications e7f4
notifications_active e7f7
notifications_none e7f5
notifications_off e7f6
notifications_paused e7f8
offline_pin e90a
ondemand_video e63a
opacity e91c
open_in_browser e89d
open_in_new e89e
open_with e89f
pages e7f9
pageview e8a0
palette e40a
pan_tool e925
panorama e40b
panorama_fish_eye e40c
panorama_horizontal e40d
panorama_vertical e40e
panorama_wide_angle e40f
party_mode e7fa
pause e034
pause_circle_filled e035
pause_circle_outline e036
payment e8a1
people e7fb
people_outline e7fc
perm_camera_mic e8a2
perm_contact_calendar e8a3
perm_data_setting e8a4
perm_device_information e8a5
perm_identity e8a6
perm_media e8a7
perm_phone_msg e8a8
perm_scan_wifi e8a9
person e7fd
person_add e7fe
person_outline e7ff
person_pin e55a
person_pin_circle e56a
personal_video e63b
pets e91d
phone e0cd
phone_android e324
phone_bluetooth_speaker e61b
phone_forwarded e61c
phone_in_talk e61d
phone_iphone e325
phone_locked e61e
phone_missed e61f
phone_paused e620
phonelink e326
phonelink_erase e0db
phonelink_lock e0dc
phonelink_off e327
phonelink_ring e0dd
phonelink_setup e0de
photo e410
photo_album e411
photo_camera e412
photo_filter e43b
photo_library e413
photo_size_select_actual e432
photo_size_select_large e433
photo_size_select_small e434
picture_as_pdf e415
picture_in_picture e8aa
picture_in_picture_alt e911
pie_chart e6c4
pie_chart_outlined e6c5
pin_drop e55e
place e55f
play_arrow e037
play_circle_filled e038
play_circle_outline e039
play_for_work e906
playlist_add e03b
playlist_add_check e065
playlist_play e05f
plus_one e800
poll e801
polymer e8ab
pool eb48
portable_wifi_off e0ce
portrait e416
power e63c
power_input e336
power_settings_new e8ac
pregnant_woman e91e
present_to_all e0df
print e8ad
priority_high e645
public e80b
publish e255
query_builder e8ae
question_answer e8af
queue e03c
queue_music e03d
queue_play_next e066
radio e03e
radio_button_checked e837
radio_button_unchecked e836
rate_review e560
receipt e8b0
recent_actors e03f
record_voice_over e91f
redeem e8b1
redo e15a
refresh e5d5
remove e15b
remove_circle e15c
remove_circle_outline e15d
remove_from_queue e067
remove_red_eye e417
remove_shopping_cart e928
reorder e8fe
repeat e040
repeat_one e041
replay e042
replay_10 e059
replay_30 e05a
replay_5 e05b
reply e15e
reply_all e15f
report e160
report_problem e8b2
restaurant e56c
restaurant_menu e561
restore e8b3
restore_page e929
ring_volume e0d1
room e8b4
room_service eb49
rotate_90_degrees_ccw e418
rotate_left e419
rotate_right e41a
rounded_corner e920
router e328
rowing e921
rss_feed e0e5
rv_hookup e642
satellite e562
save e161
scanner e329
schedule e8b5
school e80c
screen_lock_landscape e1be
screen_lock_portrait e1bf
screen_lock_rotation e1c0
screen_rotation e1c1
screen_share e0e2
sd_card e623
sd_storage e1c2
search e8b6
security e32a
select_all e162
send e163
sentiment_dissatisfied e811
sentiment_neutral e812
sentiment_satisfied e813
sentiment_very_dissatisfied e814
sentiment_very_satisfied e815
settings e8b8
settings_applications e8b9
settings_backup_restore e8ba
settings_bluetooth e8bb
settings_brightness e8bd
settings_cell e8bc
settings_ethernet e8be
settings_input_antenna e8bf
settings_input_component e8c0
settings_input_composite e8c1
settings_input_hdmi e8c2
settings_input_svideo e8c3
settings_overscan e8c4
settings_phone e8c5
settings_power e8c6
settings_remote e8c7
settings_system_daydream e1c3
settings_voice e8c8
share e80d
shop e8c9
shop_two e8ca
shopping_basket e8cb
shopping_cart e8cc
short_text e261
show_chart e6e1
shuffle e043
signal_cellular_4_bar e1c8
signal_cellular_connected_no_internet_4_bar e1cd
signal_cellular_no_sim e1ce
signal_cellular_null e1cf
signal_cellular_off e1d0
signal_wifi_4_bar e1d8
signal_wifi_4_bar_lock e1d9
signal_wifi_off e1da
sim_card e32b
sim_card_alert e624
skip_next e044
skip_previous e045
slideshow e41b
slow_motion_video e068
smartphone e32c
smoke_free eb4a
smoking_rooms eb4b
sms e625
sms_failed e626
snooze e046
sort e164
sort_by_alpha e053
spa eb4c
space_bar e256
speaker e32d
speaker_group e32e
speaker_notes e8cd
speaker_notes_off e92a
speaker_phone e0d2
spellcheck e8ce
star e838
star_border e83a
star_half e839
stars e8d0
stay_current_landscape e0d3
stay_current_portrait e0d4
stay_primary_landscape e0d5
stay_primary_portrait e0d6
stop e047
stop_screen_share e0e3
storage e1db
store e8d1
store_mall_directory e563
straighten e41c
streetview e56e
strikethrough_s e257
style e41d
subdirectory_arrow_left e5d9
subdirectory_arrow_right e5da
subject e8d2
subscriptions e064
subtitles e048
subway e56f
supervisor_account e8d3
surround_sound e049
swap_calls e0d7
swap_horiz e8d4
swap_vert e8d5
swap_vertical_circle e8d6
switch_camera e41e
switch_video e41f
sync e627
sync_disabled e628
sync_problem e629
system_update e62a
system_update_alt e8d7
tab e8d8
tab_unselected e8d9
tablet e32f
tablet_android e330
tablet_mac e331
tag_faces e420
tap_and_play e62b
terrain e564
text_fields e262
text_format e165
textsms e0d8
texture e421
theaters e8da
thumb_down e8db
thumb_up e8dc
thumbs_up_down e8dd
time_to_leave e62c
timelapse e422
timeline e922
timer e425
timer_10 e423
timer_3 e424
timer_off e426
title e264
toc e8de
today e8df
toll e8e0
tonality e427
touch_app e913
toys e332
track_changes e8e1
traffic e565
train e570
tram e571
transfer_within_a_station e572
transform e428
translate e8e2
trending_down e8e3
trending_flat e8e4
trending_up e8e5
tune e429
turned_in e8e6
turned_in_not e8e7
tv e333
unarchive e169
undo e166
unfold_less e5d6
unfold_more e5d7
update e923
usb e1e0
verified_user e8e8
vertical_align_bottom e258
vertical_align_center e259
vertical_align_top e25a
vibration e62d
video_call e070
video_label e071
video_library e04a
videocam e04b
videocam_off e04c
videogame_asset e338
view_agenda e8e9
view_array e8ea
view_carousel e8eb
view_column e8ec
view_comfy e42a
view_compact e42b
view_day e8ed
view_headline e8ee
view_list e8ef
view_module e8f0
view_quilt e8f1
view_stream e8f2
view_week e8f3
vignette e435
visibility e8f4
visibility_off e8f5
voice_chat e62e
voicemail e0d9
volume_down e04d
volume_mute e04e
volume_off e04f
volume_up e050
vpn_key e0da
vpn_lock e62f
wallpaper e1bc
warning e002
watch e334
watch_later e924
wb_auto e42c
wb_cloudy e42d
wb_incandescent e42e
wb_iridescent e436
wb_sunny e430
wc e63d
web e051
web_asset e069
weekend e16b
whatshot e80e
widgets e1bd
wifi e63e
wifi_lock e1e1
wifi_tethering e1e2
work e8f9
wrap_text e25b
youtube_searched_for e8fa
zoom_in e8ff
zoom_out e900
zoom_out_map e56b

View File

@ -0,0 +1,934 @@
{
"3d_rotation": "e84d",
"ac_unit": "eb3b",
"access_alarm": "e190",
"access_alarms": "e191",
"access_time": "e192",
"accessibility": "e84e",
"accessible": "e914",
"account_balance": "e84f",
"account_balance_wallet": "e850",
"account_box": "e851",
"account_circle": "e853",
"adb": "e60e",
"add": "e145",
"add_a_photo": "e439",
"add_alarm": "e193",
"add_alert": "e003",
"add_box": "e146",
"add_circle": "e147",
"add_circle_outline": "e148",
"add_location": "e567",
"add_shopping_cart": "e854",
"add_to_photos": "e39d",
"add_to_queue": "e05c",
"adjust": "e39e",
"airline_seat_flat": "e630",
"airline_seat_flat_angled": "e631",
"airline_seat_individual_suite": "e632",
"airline_seat_legroom_extra": "e633",
"airline_seat_legroom_normal": "e634",
"airline_seat_legroom_reduced": "e635",
"airline_seat_recline_extra": "e636",
"airline_seat_recline_normal": "e637",
"airplanemode_active": "e195",
"airplanemode_inactive": "e194",
"airplay": "e055",
"airport_shuttle": "eb3c",
"alarm": "e855",
"alarm_add": "e856",
"alarm_off": "e857",
"alarm_on": "e858",
"album": "e019",
"all_inclusive": "eb3d",
"all_out": "e90b",
"android": "e859",
"announcement": "e85a",
"apps": "e5c3",
"archive": "e149",
"arrow_back": "e5c4",
"arrow_downward": "e5db",
"arrow_drop_down": "e5c5",
"arrow_drop_down_circle": "e5c6",
"arrow_drop_up": "e5c7",
"arrow_forward": "e5c8",
"arrow_upward": "e5d8",
"art_track": "e060",
"aspect_ratio": "e85b",
"assessment": "e85c",
"assignment": "e85d",
"assignment_ind": "e85e",
"assignment_late": "e85f",
"assignment_return": "e860",
"assignment_returned": "e861",
"assignment_turned_in": "e862",
"assistant": "e39f",
"assistant_photo": "e3a0",
"attach_file": "e226",
"attach_money": "e227",
"attachment": "e2bc",
"audiotrack": "e3a1",
"autorenew": "e863",
"av_timer": "e01b",
"backspace": "e14a",
"backup": "e864",
"battery_alert": "e19c",
"battery_charging_full": "e1a3",
"battery_full": "e1a4",
"battery_std": "e1a5",
"battery_unknown": "e1a6",
"beach_access": "eb3e",
"beenhere": "e52d",
"block": "e14b",
"bluetooth": "e1a7",
"bluetooth_audio": "e60f",
"bluetooth_connected": "e1a8",
"bluetooth_disabled": "e1a9",
"bluetooth_searching": "e1aa",
"blur_circular": "e3a2",
"blur_linear": "e3a3",
"blur_off": "e3a4",
"blur_on": "e3a5",
"book": "e865",
"bookmark": "e866",
"bookmark_border": "e867",
"border_all": "e228",
"border_bottom": "e229",
"border_clear": "e22a",
"border_color": "e22b",
"border_horizontal": "e22c",
"border_inner": "e22d",
"border_left": "e22e",
"border_outer": "e22f",
"border_right": "e230",
"border_style": "e231",
"border_top": "e232",
"border_vertical": "e233",
"branding_watermark": "e06b",
"brightness_1": "e3a6",
"brightness_2": "e3a7",
"brightness_3": "e3a8",
"brightness_4": "e3a9",
"brightness_5": "e3aa",
"brightness_6": "e3ab",
"brightness_7": "e3ac",
"brightness_auto": "e1ab",
"brightness_high": "e1ac",
"brightness_low": "e1ad",
"brightness_medium": "e1ae",
"broken_image": "e3ad",
"brush": "e3ae",
"bubble_chart": "e6dd",
"bug_report": "e868",
"build": "e869",
"burst_mode": "e43c",
"business": "e0af",
"business_center": "eb3f",
"cached": "e86a",
"cake": "e7e9",
"call": "e0b0",
"call_end": "e0b1",
"call_made": "e0b2",
"call_merge": "e0b3",
"call_missed": "e0b4",
"call_missed_outgoing": "e0e4",
"call_received": "e0b5",
"call_split": "e0b6",
"call_to_action": "e06c",
"camera": "e3af",
"camera_alt": "e3b0",
"camera_enhance": "e8fc",
"camera_front": "e3b1",
"camera_rear": "e3b2",
"camera_roll": "e3b3",
"cancel": "e5c9",
"card_giftcard": "e8f6",
"card_membership": "e8f7",
"card_travel": "e8f8",
"casino": "eb40",
"cast": "e307",
"cast_connected": "e308",
"center_focus_strong": "e3b4",
"center_focus_weak": "e3b5",
"change_history": "e86b",
"chat": "e0b7",
"chat_bubble": "e0ca",
"chat_bubble_outline": "e0cb",
"check": "e5ca",
"check_box": "e834",
"check_box_outline_blank": "e835",
"check_circle": "e86c",
"chevron_left": "e5cb",
"chevron_right": "e5cc",
"child_care": "eb41",
"child_friendly": "eb42",
"chrome_reader_mode": "e86d",
"class": "e86e",
"clear": "e14c",
"clear_all": "e0b8",
"close": "e5cd",
"closed_caption": "e01c",
"cloud": "e2bd",
"cloud_circle": "e2be",
"cloud_done": "e2bf",
"cloud_download": "e2c0",
"cloud_off": "e2c1",
"cloud_queue": "e2c2",
"cloud_upload": "e2c3",
"code": "e86f",
"collections": "e3b6",
"collections_bookmark": "e431",
"color_lens": "e3b7",
"colorize": "e3b8",
"comment": "e0b9",
"compare": "e3b9",
"compare_arrows": "e915",
"computer": "e30a",
"confirmation_number": "e638",
"contact_mail": "e0d0",
"contact_phone": "e0cf",
"contacts": "e0ba",
"content_copy": "e14d",
"content_cut": "e14e",
"content_paste": "e14f",
"control_point": "e3ba",
"control_point_duplicate": "e3bb",
"copyright": "e90c",
"create": "e150",
"create_new_folder": "e2cc",
"credit_card": "e870",
"crop": "e3be",
"crop_16_9": "e3bc",
"crop_3_2": "e3bd",
"crop_5_4": "e3bf",
"crop_7_5": "e3c0",
"crop_din": "e3c1",
"crop_free": "e3c2",
"crop_landscape": "e3c3",
"crop_original": "e3c4",
"crop_portrait": "e3c5",
"crop_rotate": "e437",
"crop_square": "e3c6",
"dashboard": "e871",
"data_usage": "e1af",
"date_range": "e916",
"dehaze": "e3c7",
"delete": "e872",
"delete_forever": "e92b",
"delete_sweep": "e16c",
"description": "e873",
"desktop_mac": "e30b",
"desktop_windows": "e30c",
"details": "e3c8",
"developer_board": "e30d",
"developer_mode": "e1b0",
"device_hub": "e335",
"devices": "e1b1",
"devices_other": "e337",
"dialer_sip": "e0bb",
"dialpad": "e0bc",
"directions": "e52e",
"directions_bike": "e52f",
"directions_boat": "e532",
"directions_bus": "e530",
"directions_car": "e531",
"directions_railway": "e534",
"directions_run": "e566",
"directions_subway": "e533",
"directions_transit": "e535",
"directions_walk": "e536",
"disc_full": "e610",
"dns": "e875",
"do_not_disturb": "e612",
"do_not_disturb_alt": "e611",
"do_not_disturb_off": "e643",
"do_not_disturb_on": "e644",
"dock": "e30e",
"domain": "e7ee",
"done": "e876",
"done_all": "e877",
"donut_large": "e917",
"donut_small": "e918",
"drafts": "e151",
"drag_handle": "e25d",
"drive_eta": "e613",
"dvr": "e1b2",
"edit": "e3c9",
"edit_location": "e568",
"eject": "e8fb",
"email": "e0be",
"enhanced_encryption": "e63f",
"equalizer": "e01d",
"error": "e000",
"error_outline": "e001",
"euro_symbol": "e926",
"ev_station": "e56d",
"event": "e878",
"event_available": "e614",
"event_busy": "e615",
"event_note": "e616",
"event_seat": "e903",
"exit_to_app": "e879",
"expand_less": "e5ce",
"expand_more": "e5cf",
"explicit": "e01e",
"explore": "e87a",
"exposure": "e3ca",
"exposure_neg_1": "e3cb",
"exposure_neg_2": "e3cc",
"exposure_plus_1": "e3cd",
"exposure_plus_2": "e3ce",
"exposure_zero": "e3cf",
"extension": "e87b",
"face": "e87c",
"fast_forward": "e01f",
"fast_rewind": "e020",
"favorite": "e87d",
"favorite_border": "e87e",
"featured_play_list": "e06d",
"featured_video": "e06e",
"feedback": "e87f",
"fiber_dvr": "e05d",
"fiber_manual_record": "e061",
"fiber_new": "e05e",
"fiber_pin": "e06a",
"fiber_smart_record": "e062",
"file_download": "e2c4",
"file_upload": "e2c6",
"filter": "e3d3",
"filter_1": "e3d0",
"filter_2": "e3d1",
"filter_3": "e3d2",
"filter_4": "e3d4",
"filter_5": "e3d5",
"filter_6": "e3d6",
"filter_7": "e3d7",
"filter_8": "e3d8",
"filter_9": "e3d9",
"filter_9_plus": "e3da",
"filter_b_and_w": "e3db",
"filter_center_focus": "e3dc",
"filter_drama": "e3dd",
"filter_frames": "e3de",
"filter_hdr": "e3df",
"filter_list": "e152",
"filter_none": "e3e0",
"filter_tilt_shift": "e3e2",
"filter_vintage": "e3e3",
"find_in_page": "e880",
"find_replace": "e881",
"fingerprint": "e90d",
"first_page": "e5dc",
"fitness_center": "eb43",
"flag": "e153",
"flare": "e3e4",
"flash_auto": "e3e5",
"flash_off": "e3e6",
"flash_on": "e3e7",
"flight": "e539",
"flight_land": "e904",
"flight_takeoff": "e905",
"flip": "e3e8",
"flip_to_back": "e882",
"flip_to_front": "e883",
"folder": "e2c7",
"folder_open": "e2c8",
"folder_shared": "e2c9",
"folder_special": "e617",
"font_download": "e167",
"format_align_center": "e234",
"format_align_justify": "e235",
"format_align_left": "e236",
"format_align_right": "e237",
"format_bold": "e238",
"format_clear": "e239",
"format_color_fill": "e23a",
"format_color_reset": "e23b",
"format_color_text": "e23c",
"format_indent_decrease": "e23d",
"format_indent_increase": "e23e",
"format_italic": "e23f",
"format_line_spacing": "e240",
"format_list_bulleted": "e241",
"format_list_numbered": "e242",
"format_paint": "e243",
"format_quote": "e244",
"format_shapes": "e25e",
"format_size": "e245",
"format_strikethrough": "e246",
"format_textdirection_l_to_r": "e247",
"format_textdirection_r_to_l": "e248",
"format_underlined": "e249",
"forum": "e0bf",
"forward": "e154",
"forward_10": "e056",
"forward_30": "e057",
"forward_5": "e058",
"free_breakfast": "eb44",
"fullscreen": "e5d0",
"fullscreen_exit": "e5d1",
"functions": "e24a",
"g_translate": "e927",
"gamepad": "e30f",
"games": "e021",
"gavel": "e90e",
"gesture": "e155",
"get_app": "e884",
"gif": "e908",
"golf_course": "eb45",
"gps_fixed": "e1b3",
"gps_not_fixed": "e1b4",
"gps_off": "e1b5",
"grade": "e885",
"gradient": "e3e9",
"grain": "e3ea",
"graphic_eq": "e1b8",
"grid_off": "e3eb",
"grid_on": "e3ec",
"group": "e7ef",
"group_add": "e7f0",
"group_work": "e886",
"hd": "e052",
"hdr_off": "e3ed",
"hdr_on": "e3ee",
"hdr_strong": "e3f1",
"hdr_weak": "e3f2",
"headset": "e310",
"headset_mic": "e311",
"healing": "e3f3",
"hearing": "e023",
"help": "e887",
"help_outline": "e8fd",
"high_quality": "e024",
"highlight": "e25f",
"highlight_off": "e888",
"history": "e889",
"home": "e88a",
"hot_tub": "eb46",
"hotel": "e53a",
"hourglass_empty": "e88b",
"hourglass_full": "e88c",
"http": "e902",
"https": "e88d",
"image": "e3f4",
"image_aspect_ratio": "e3f5",
"import_contacts": "e0e0",
"import_export": "e0c3",
"important_devices": "e912",
"inbox": "e156",
"indeterminate_check_box": "e909",
"info": "e88e",
"info_outline": "e88f",
"input": "e890",
"insert_chart": "e24b",
"insert_comment": "e24c",
"insert_drive_file": "e24d",
"insert_emoticon": "e24e",
"insert_invitation": "e24f",
"insert_link": "e250",
"insert_photo": "e251",
"invert_colors": "e891",
"invert_colors_off": "e0c4",
"iso": "e3f6",
"keyboard": "e312",
"keyboard_arrow_down": "e313",
"keyboard_arrow_left": "e314",
"keyboard_arrow_right": "e315",
"keyboard_arrow_up": "e316",
"keyboard_backspace": "e317",
"keyboard_capslock": "e318",
"keyboard_hide": "e31a",
"keyboard_return": "e31b",
"keyboard_tab": "e31c",
"keyboard_voice": "e31d",
"kitchen": "eb47",
"label": "e892",
"label_outline": "e893",
"landscape": "e3f7",
"language": "e894",
"laptop": "e31e",
"laptop_chromebook": "e31f",
"laptop_mac": "e320",
"laptop_windows": "e321",
"last_page": "e5dd",
"launch": "e895",
"layers": "e53b",
"layers_clear": "e53c",
"leak_add": "e3f8",
"leak_remove": "e3f9",
"lens": "e3fa",
"library_add": "e02e",
"library_books": "e02f",
"library_music": "e030",
"lightbulb_outline": "e90f",
"line_style": "e919",
"line_weight": "e91a",
"linear_scale": "e260",
"link": "e157",
"linked_camera": "e438",
"list": "e896",
"live_help": "e0c6",
"live_tv": "e639",
"local_activity": "e53f",
"local_airport": "e53d",
"local_atm": "e53e",
"local_bar": "e540",
"local_cafe": "e541",
"local_car_wash": "e542",
"local_convenience_store": "e543",
"local_dining": "e556",
"local_drink": "e544",
"local_florist": "e545",
"local_gas_station": "e546",
"local_grocery_store": "e547",
"local_hospital": "e548",
"local_hotel": "e549",
"local_laundry_service": "e54a",
"local_library": "e54b",
"local_mall": "e54c",
"local_movies": "e54d",
"local_offer": "e54e",
"local_parking": "e54f",
"local_pharmacy": "e550",
"local_phone": "e551",
"local_pizza": "e552",
"local_play": "e553",
"local_post_office": "e554",
"local_printshop": "e555",
"local_see": "e557",
"local_shipping": "e558",
"local_taxi": "e559",
"location_city": "e7f1",
"location_disabled": "e1b6",
"location_off": "e0c7",
"location_on": "e0c8",
"location_searching": "e1b7",
"lock": "e897",
"lock_open": "e898",
"lock_outline": "e899",
"looks": "e3fc",
"looks_3": "e3fb",
"looks_4": "e3fd",
"looks_5": "e3fe",
"looks_6": "e3ff",
"looks_one": "e400",
"looks_two": "e401",
"loop": "e028",
"loupe": "e402",
"low_priority": "e16d",
"loyalty": "e89a",
"mail": "e158",
"mail_outline": "e0e1",
"map": "e55b",
"markunread": "e159",
"markunread_mailbox": "e89b",
"memory": "e322",
"menu": "e5d2",
"merge_type": "e252",
"message": "e0c9",
"mic": "e029",
"mic_none": "e02a",
"mic_off": "e02b",
"mms": "e618",
"mode_comment": "e253",
"mode_edit": "e254",
"monetization_on": "e263",
"money_off": "e25c",
"monochrome_photos": "e403",
"mood": "e7f2",
"mood_bad": "e7f3",
"more": "e619",
"more_horiz": "e5d3",
"more_vert": "e5d4",
"motorcycle": "e91b",
"mouse": "e323",
"move_to_inbox": "e168",
"movie": "e02c",
"movie_creation": "e404",
"movie_filter": "e43a",
"multiline_chart": "e6df",
"music_note": "e405",
"music_video": "e063",
"my_location": "e55c",
"nature": "e406",
"nature_people": "e407",
"navigate_before": "e408",
"navigate_next": "e409",
"navigation": "e55d",
"near_me": "e569",
"network_cell": "e1b9",
"network_check": "e640",
"network_locked": "e61a",
"network_wifi": "e1ba",
"new_releases": "e031",
"next_week": "e16a",
"nfc": "e1bb",
"no_encryption": "e641",
"no_sim": "e0cc",
"not_interested": "e033",
"note": "e06f",
"note_add": "e89c",
"notifications": "e7f4",
"notifications_active": "e7f7",
"notifications_none": "e7f5",
"notifications_off": "e7f6",
"notifications_paused": "e7f8",
"offline_pin": "e90a",
"ondemand_video": "e63a",
"opacity": "e91c",
"open_in_browser": "e89d",
"open_in_new": "e89e",
"open_with": "e89f",
"pages": "e7f9",
"pageview": "e8a0",
"palette": "e40a",
"pan_tool": "e925",
"panorama": "e40b",
"panorama_fish_eye": "e40c",
"panorama_horizontal": "e40d",
"panorama_vertical": "e40e",
"panorama_wide_angle": "e40f",
"party_mode": "e7fa",
"pause": "e034",
"pause_circle_filled": "e035",
"pause_circle_outline": "e036",
"payment": "e8a1",
"people": "e7fb",
"people_outline": "e7fc",
"perm_camera_mic": "e8a2",
"perm_contact_calendar": "e8a3",
"perm_data_setting": "e8a4",
"perm_device_information": "e8a5",
"perm_identity": "e8a6",
"perm_media": "e8a7",
"perm_phone_msg": "e8a8",
"perm_scan_wifi": "e8a9",
"person": "e7fd",
"person_add": "e7fe",
"person_outline": "e7ff",
"person_pin": "e55a",
"person_pin_circle": "e56a",
"personal_video": "e63b",
"pets": "e91d",
"phone": "e0cd",
"phone_android": "e324",
"phone_bluetooth_speaker": "e61b",
"phone_forwarded": "e61c",
"phone_in_talk": "e61d",
"phone_iphone": "e325",
"phone_locked": "e61e",
"phone_missed": "e61f",
"phone_paused": "e620",
"phonelink": "e326",
"phonelink_erase": "e0db",
"phonelink_lock": "e0dc",
"phonelink_off": "e327",
"phonelink_ring": "e0dd",
"phonelink_setup": "e0de",
"photo": "e410",
"photo_album": "e411",
"photo_camera": "e412",
"photo_filter": "e43b",
"photo_library": "e413",
"photo_size_select_actual": "e432",
"photo_size_select_large": "e433",
"photo_size_select_small": "e434",
"picture_as_pdf": "e415",
"picture_in_picture": "e8aa",
"picture_in_picture_alt": "e911",
"pie_chart": "e6c4",
"pie_chart_outlined": "e6c5",
"pin_drop": "e55e",
"place": "e55f",
"play_arrow": "e037",
"play_circle_filled": "e038",
"play_circle_outline": "e039",
"play_for_work": "e906",
"playlist_add": "e03b",
"playlist_add_check": "e065",
"playlist_play": "e05f",
"plus_one": "e800",
"poll": "e801",
"polymer": "e8ab",
"pool": "eb48",
"portable_wifi_off": "e0ce",
"portrait": "e416",
"power": "e63c",
"power_input": "e336",
"power_settings_new": "e8ac",
"pregnant_woman": "e91e",
"present_to_all": "e0df",
"print": "e8ad",
"priority_high": "e645",
"public": "e80b",
"publish": "e255",
"query_builder": "e8ae",
"question_answer": "e8af",
"queue": "e03c",
"queue_music": "e03d",
"queue_play_next": "e066",
"radio": "e03e",
"radio_button_checked": "e837",
"radio_button_unchecked": "e836",
"rate_review": "e560",
"receipt": "e8b0",
"recent_actors": "e03f",
"record_voice_over": "e91f",
"redeem": "e8b1",
"redo": "e15a",
"refresh": "e5d5",
"remove": "e15b",
"remove_circle": "e15c",
"remove_circle_outline": "e15d",
"remove_from_queue": "e067",
"remove_red_eye": "e417",
"remove_shopping_cart": "e928",
"reorder": "e8fe",
"repeat": "e040",
"repeat_one": "e041",
"replay": "e042",
"replay_10": "e059",
"replay_30": "e05a",
"replay_5": "e05b",
"reply": "e15e",
"reply_all": "e15f",
"report": "e160",
"report_problem": "e8b2",
"restaurant": "e56c",
"restaurant_menu": "e561",
"restore": "e8b3",
"restore_page": "e929",
"ring_volume": "e0d1",
"room": "e8b4",
"room_service": "eb49",
"rotate_90_degrees_ccw": "e418",
"rotate_left": "e419",
"rotate_right": "e41a",
"rounded_corner": "e920",
"router": "e328",
"rowing": "e921",
"rss_feed": "e0e5",
"rv_hookup": "e642",
"satellite": "e562",
"save": "e161",
"scanner": "e329",
"schedule": "e8b5",
"school": "e80c",
"screen_lock_landscape": "e1be",
"screen_lock_portrait": "e1bf",
"screen_lock_rotation": "e1c0",
"screen_rotation": "e1c1",
"screen_share": "e0e2",
"sd_card": "e623",
"sd_storage": "e1c2",
"search": "e8b6",
"security": "e32a",
"select_all": "e162",
"send": "e163",
"sentiment_dissatisfied": "e811",
"sentiment_neutral": "e812",
"sentiment_satisfied": "e813",
"sentiment_very_dissatisfied": "e814",
"sentiment_very_satisfied": "e815",
"settings": "e8b8",
"settings_applications": "e8b9",
"settings_backup_restore": "e8ba",
"settings_bluetooth": "e8bb",
"settings_brightness": "e8bd",
"settings_cell": "e8bc",
"settings_ethernet": "e8be",
"settings_input_antenna": "e8bf",
"settings_input_component": "e8c0",
"settings_input_composite": "e8c1",
"settings_input_hdmi": "e8c2",
"settings_input_svideo": "e8c3",
"settings_overscan": "e8c4",
"settings_phone": "e8c5",
"settings_power": "e8c6",
"settings_remote": "e8c7",
"settings_system_daydream": "e1c3",
"settings_voice": "e8c8",
"share": "e80d",
"shop": "e8c9",
"shop_two": "e8ca",
"shopping_basket": "e8cb",
"shopping_cart": "e8cc",
"short_text": "e261",
"show_chart": "e6e1",
"shuffle": "e043",
"signal_cellular_4_bar": "e1c8",
"signal_cellular_connected_no_internet_4_bar": "e1cd",
"signal_cellular_no_sim": "e1ce",
"signal_cellular_null": "e1cf",
"signal_cellular_off": "e1d0",
"signal_wifi_4_bar": "e1d8",
"signal_wifi_4_bar_lock": "e1d9",
"signal_wifi_off": "e1da",
"sim_card": "e32b",
"sim_card_alert": "e624",
"skip_next": "e044",
"skip_previous": "e045",
"slideshow": "e41b",
"slow_motion_video": "e068",
"smartphone": "e32c",
"smoke_free": "eb4a",
"smoking_rooms": "eb4b",
"sms": "e625",
"sms_failed": "e626",
"snooze": "e046",
"sort": "e164",
"sort_by_alpha": "e053",
"spa": "eb4c",
"space_bar": "e256",
"speaker": "e32d",
"speaker_group": "e32e",
"speaker_notes": "e8cd",
"speaker_notes_off": "e92a",
"speaker_phone": "e0d2",
"spellcheck": "e8ce",
"star": "e838",
"star_border": "e83a",
"star_half": "e839",
"stars": "e8d0",
"stay_current_landscape": "e0d3",
"stay_current_portrait": "e0d4",
"stay_primary_landscape": "e0d5",
"stay_primary_portrait": "e0d6",
"stop": "e047",
"stop_screen_share": "e0e3",
"storage": "e1db",
"store": "e8d1",
"store_mall_directory": "e563",
"straighten": "e41c",
"streetview": "e56e",
"strikethrough_s": "e257",
"style": "e41d",
"subdirectory_arrow_left": "e5d9",
"subdirectory_arrow_right": "e5da",
"subject": "e8d2",
"subscriptions": "e064",
"subtitles": "e048",
"subway": "e56f",
"supervisor_account": "e8d3",
"surround_sound": "e049",
"swap_calls": "e0d7",
"swap_horiz": "e8d4",
"swap_vert": "e8d5",
"swap_vertical_circle": "e8d6",
"switch_camera": "e41e",
"switch_video": "e41f",
"sync": "e627",
"sync_disabled": "e628",
"sync_problem": "e629",
"system_update": "e62a",
"system_update_alt": "e8d7",
"tab": "e8d8",
"tab_unselected": "e8d9",
"tablet": "e32f",
"tablet_android": "e330",
"tablet_mac": "e331",
"tag_faces": "e420",
"tap_and_play": "e62b",
"terrain": "e564",
"text_fields": "e262",
"text_format": "e165",
"textsms": "e0d8",
"texture": "e421",
"theaters": "e8da",
"thumb_down": "e8db",
"thumb_up": "e8dc",
"thumbs_up_down": "e8dd",
"time_to_leave": "e62c",
"timelapse": "e422",
"timeline": "e922",
"timer": "e425",
"timer_10": "e423",
"timer_3": "e424",
"timer_off": "e426",
"title": "e264",
"toc": "e8de",
"today": "e8df",
"toll": "e8e0",
"tonality": "e427",
"touch_app": "e913",
"toys": "e332",
"track_changes": "e8e1",
"traffic": "e565",
"train": "e570",
"tram": "e571",
"transfer_within_a_station": "e572",
"transform": "e428",
"translate": "e8e2",
"trending_down": "e8e3",
"trending_flat": "e8e4",
"trending_up": "e8e5",
"tune": "e429",
"turned_in": "e8e6",
"turned_in_not": "e8e7",
"tv": "e333",
"unarchive": "e169",
"undo": "e166",
"unfold_less": "e5d6",
"unfold_more": "e5d7",
"update": "e923",
"usb": "e1e0",
"verified_user": "e8e8",
"vertical_align_bottom": "e258",
"vertical_align_center": "e259",
"vertical_align_top": "e25a",
"vibration": "e62d",
"video_call": "e070",
"video_label": "e071",
"video_library": "e04a",
"videocam": "e04b",
"videocam_off": "e04c",
"videogame_asset": "e338",
"view_agenda": "e8e9",
"view_array": "e8ea",
"view_carousel": "e8eb",
"view_column": "e8ec",
"view_comfy": "e42a",
"view_compact": "e42b",
"view_day": "e8ed",
"view_headline": "e8ee",
"view_list": "e8ef",
"view_module": "e8f0",
"view_quilt": "e8f1",
"view_stream": "e8f2",
"view_week": "e8f3",
"vignette": "e435",
"visibility": "e8f4",
"visibility_off": "e8f5",
"voice_chat": "e62e",
"voicemail": "e0d9",
"volume_down": "e04d",
"volume_mute": "e04e",
"volume_off": "e04f",
"volume_up": "e050",
"vpn_key": "e0da",
"vpn_lock": "e62f",
"wallpaper": "e1bc",
"warning": "e002",
"watch": "e334",
"watch_later": "e924",
"wb_auto": "e42c",
"wb_cloudy": "e42d",
"wb_incandescent": "e42e",
"wb_iridescent": "e436",
"wb_sunny": "e430",
"wc": "e63d",
"web": "e051",
"web_asset": "e069",
"weekend": "e16b",
"whatshot": "e80e",
"widgets": "e1bd",
"wifi": "e63e",
"wifi_lock": "e1e1",
"wifi_tethering": "e1e2",
"work": "e8f9",
"wrap_text": "e25b",
"youtube_searched_for": "e8fa",
"zoom_in": "e8ff",
"zoom_out": "e900",
"zoom_out_map": "e56b"
}

View File

@ -0,0 +1,935 @@
$material-icons-codepoints: () !default;
$material-icons-codepoints: map-merge((
"3d_rotation": e84d,
"ac_unit": eb3b,
"access_alarm": e190,
"access_alarms": e191,
"access_time": e192,
"accessibility": e84e,
"accessible": e914,
"account_balance": e84f,
"account_balance_wallet": e850,
"account_box": e851,
"account_circle": e853,
"adb": e60e,
"add": e145,
"add_a_photo": e439,
"add_alarm": e193,
"add_alert": e003,
"add_box": e146,
"add_circle": e147,
"add_circle_outline": e148,
"add_location": e567,
"add_shopping_cart": e854,
"add_to_photos": e39d,
"add_to_queue": e05c,
"adjust": e39e,
"airline_seat_flat": e630,
"airline_seat_flat_angled": e631,
"airline_seat_individual_suite": e632,
"airline_seat_legroom_extra": e633,
"airline_seat_legroom_normal": e634,
"airline_seat_legroom_reduced": e635,
"airline_seat_recline_extra": e636,
"airline_seat_recline_normal": e637,
"airplanemode_active": e195,
"airplanemode_inactive": e194,
"airplay": e055,
"airport_shuttle": eb3c,
"alarm": e855,
"alarm_add": e856,
"alarm_off": e857,
"alarm_on": e858,
"album": e019,
"all_inclusive": eb3d,
"all_out": e90b,
"android": e859,
"announcement": e85a,
"apps": e5c3,
"archive": e149,
"arrow_back": e5c4,
"arrow_downward": e5db,
"arrow_drop_down": e5c5,
"arrow_drop_down_circle": e5c6,
"arrow_drop_up": e5c7,
"arrow_forward": e5c8,
"arrow_upward": e5d8,
"art_track": e060,
"aspect_ratio": e85b,
"assessment": e85c,
"assignment": e85d,
"assignment_ind": e85e,
"assignment_late": e85f,
"assignment_return": e860,
"assignment_returned": e861,
"assignment_turned_in": e862,
"assistant": e39f,
"assistant_photo": e3a0,
"attach_file": e226,
"attach_money": e227,
"attachment": e2bc,
"audiotrack": e3a1,
"autorenew": e863,
"av_timer": e01b,
"backspace": e14a,
"backup": e864,
"battery_alert": e19c,
"battery_charging_full": e1a3,
"battery_full": e1a4,
"battery_std": e1a5,
"battery_unknown": e1a6,
"beach_access": eb3e,
"beenhere": e52d,
"block": e14b,
"bluetooth": e1a7,
"bluetooth_audio": e60f,
"bluetooth_connected": e1a8,
"bluetooth_disabled": e1a9,
"bluetooth_searching": e1aa,
"blur_circular": e3a2,
"blur_linear": e3a3,
"blur_off": e3a4,
"blur_on": e3a5,
"book": e865,
"bookmark": e866,
"bookmark_border": e867,
"border_all": e228,
"border_bottom": e229,
"border_clear": e22a,
"border_color": e22b,
"border_horizontal": e22c,
"border_inner": e22d,
"border_left": e22e,
"border_outer": e22f,
"border_right": e230,
"border_style": e231,
"border_top": e232,
"border_vertical": e233,
"branding_watermark": e06b,
"brightness_1": e3a6,
"brightness_2": e3a7,
"brightness_3": e3a8,
"brightness_4": e3a9,
"brightness_5": e3aa,
"brightness_6": e3ab,
"brightness_7": e3ac,
"brightness_auto": e1ab,
"brightness_high": e1ac,
"brightness_low": e1ad,
"brightness_medium": e1ae,
"broken_image": e3ad,
"brush": e3ae,
"bubble_chart": e6dd,
"bug_report": e868,
"build": e869,
"burst_mode": e43c,
"business": e0af,
"business_center": eb3f,
"cached": e86a,
"cake": e7e9,
"call": e0b0,
"call_end": e0b1,
"call_made": e0b2,
"call_merge": e0b3,
"call_missed": e0b4,
"call_missed_outgoing": e0e4,
"call_received": e0b5,
"call_split": e0b6,
"call_to_action": e06c,
"camera": e3af,
"camera_alt": e3b0,
"camera_enhance": e8fc,
"camera_front": e3b1,
"camera_rear": e3b2,
"camera_roll": e3b3,
"cancel": e5c9,
"card_giftcard": e8f6,
"card_membership": e8f7,
"card_travel": e8f8,
"casino": eb40,
"cast": e307,
"cast_connected": e308,
"center_focus_strong": e3b4,
"center_focus_weak": e3b5,
"change_history": e86b,
"chat": e0b7,
"chat_bubble": e0ca,
"chat_bubble_outline": e0cb,
"check": e5ca,
"check_box": e834,
"check_box_outline_blank": e835,
"check_circle": e86c,
"chevron_left": e5cb,
"chevron_right": e5cc,
"child_care": eb41,
"child_friendly": eb42,
"chrome_reader_mode": e86d,
"class": e86e,
"clear": e14c,
"clear_all": e0b8,
"close": e5cd,
"closed_caption": e01c,
"cloud": e2bd,
"cloud_circle": e2be,
"cloud_done": e2bf,
"cloud_download": e2c0,
"cloud_off": e2c1,
"cloud_queue": e2c2,
"cloud_upload": e2c3,
"code": e86f,
"collections": e3b6,
"collections_bookmark": e431,
"color_lens": e3b7,
"colorize": e3b8,
"comment": e0b9,
"compare": e3b9,
"compare_arrows": e915,
"computer": e30a,
"confirmation_number": e638,
"contact_mail": e0d0,
"contact_phone": e0cf,
"contacts": e0ba,
"content_copy": e14d,
"content_cut": e14e,
"content_paste": e14f,
"control_point": e3ba,
"control_point_duplicate": e3bb,
"copyright": e90c,
"create": e150,
"create_new_folder": e2cc,
"credit_card": e870,
"crop": e3be,
"crop_16_9": e3bc,
"crop_3_2": e3bd,
"crop_5_4": e3bf,
"crop_7_5": e3c0,
"crop_din": e3c1,
"crop_free": e3c2,
"crop_landscape": e3c3,
"crop_original": e3c4,
"crop_portrait": e3c5,
"crop_rotate": e437,
"crop_square": e3c6,
"dashboard": e871,
"data_usage": e1af,
"date_range": e916,
"dehaze": e3c7,
"delete": e872,
"delete_forever": e92b,
"delete_sweep": e16c,
"description": e873,
"desktop_mac": e30b,
"desktop_windows": e30c,
"details": e3c8,
"developer_board": e30d,
"developer_mode": e1b0,
"device_hub": e335,
"devices": e1b1,
"devices_other": e337,
"dialer_sip": e0bb,
"dialpad": e0bc,
"directions": e52e,
"directions_bike": e52f,
"directions_boat": e532,
"directions_bus": e530,
"directions_car": e531,
"directions_railway": e534,
"directions_run": e566,
"directions_subway": e533,
"directions_transit": e535,
"directions_walk": e536,
"disc_full": e610,
"dns": e875,
"do_not_disturb": e612,
"do_not_disturb_alt": e611,
"do_not_disturb_off": e643,
"do_not_disturb_on": e644,
"dock": e30e,
"domain": e7ee,
"done": e876,
"done_all": e877,
"donut_large": e917,
"donut_small": e918,
"drafts": e151,
"drag_handle": e25d,
"drive_eta": e613,
"dvr": e1b2,
"edit": e3c9,
"edit_location": e568,
"eject": e8fb,
"email": e0be,
"enhanced_encryption": e63f,
"equalizer": e01d,
"error": e000,
"error_outline": e001,
"euro_symbol": e926,
"ev_station": e56d,
"event": e878,
"event_available": e614,
"event_busy": e615,
"event_note": e616,
"event_seat": e903,
"exit_to_app": e879,
"expand_less": e5ce,
"expand_more": e5cf,
"explicit": e01e,
"explore": e87a,
"exposure": e3ca,
"exposure_neg_1": e3cb,
"exposure_neg_2": e3cc,
"exposure_plus_1": e3cd,
"exposure_plus_2": e3ce,
"exposure_zero": e3cf,
"extension": e87b,
"face": e87c,
"fast_forward": e01f,
"fast_rewind": e020,
"favorite": e87d,
"favorite_border": e87e,
"featured_play_list": e06d,
"featured_video": e06e,
"feedback": e87f,
"fiber_dvr": e05d,
"fiber_manual_record": e061,
"fiber_new": e05e,
"fiber_pin": e06a,
"fiber_smart_record": e062,
"file_download": e2c4,
"file_upload": e2c6,
"filter": e3d3,
"filter_1": e3d0,
"filter_2": e3d1,
"filter_3": e3d2,
"filter_4": e3d4,
"filter_5": e3d5,
"filter_6": e3d6,
"filter_7": e3d7,
"filter_8": e3d8,
"filter_9": e3d9,
"filter_9_plus": e3da,
"filter_b_and_w": e3db,
"filter_center_focus": e3dc,
"filter_drama": e3dd,
"filter_frames": e3de,
"filter_hdr": e3df,
"filter_list": e152,
"filter_none": e3e0,
"filter_tilt_shift": e3e2,
"filter_vintage": e3e3,
"find_in_page": e880,
"find_replace": e881,
"fingerprint": e90d,
"first_page": e5dc,
"fitness_center": eb43,
"flag": e153,
"flare": e3e4,
"flash_auto": e3e5,
"flash_off": e3e6,
"flash_on": e3e7,
"flight": e539,
"flight_land": e904,
"flight_takeoff": e905,
"flip": e3e8,
"flip_to_back": e882,
"flip_to_front": e883,
"folder": e2c7,
"folder_open": e2c8,
"folder_shared": e2c9,
"folder_special": e617,
"font_download": e167,
"format_align_center": e234,
"format_align_justify": e235,
"format_align_left": e236,
"format_align_right": e237,
"format_bold": e238,
"format_clear": e239,
"format_color_fill": e23a,
"format_color_reset": e23b,
"format_color_text": e23c,
"format_indent_decrease": e23d,
"format_indent_increase": e23e,
"format_italic": e23f,
"format_line_spacing": e240,
"format_list_bulleted": e241,
"format_list_numbered": e242,
"format_paint": e243,
"format_quote": e244,
"format_shapes": e25e,
"format_size": e245,
"format_strikethrough": e246,
"format_textdirection_l_to_r": e247,
"format_textdirection_r_to_l": e248,
"format_underlined": e249,
"forum": e0bf,
"forward": e154,
"forward_10": e056,
"forward_30": e057,
"forward_5": e058,
"free_breakfast": eb44,
"fullscreen": e5d0,
"fullscreen_exit": e5d1,
"functions": e24a,
"g_translate": e927,
"gamepad": e30f,
"games": e021,
"gavel": e90e,
"gesture": e155,
"get_app": e884,
"gif": e908,
"golf_course": eb45,
"gps_fixed": e1b3,
"gps_not_fixed": e1b4,
"gps_off": e1b5,
"grade": e885,
"gradient": e3e9,
"grain": e3ea,
"graphic_eq": e1b8,
"grid_off": e3eb,
"grid_on": e3ec,
"group": e7ef,
"group_add": e7f0,
"group_work": e886,
"hd": e052,
"hdr_off": e3ed,
"hdr_on": e3ee,
"hdr_strong": e3f1,
"hdr_weak": e3f2,
"headset": e310,
"headset_mic": e311,
"healing": e3f3,
"hearing": e023,
"help": e887,
"help_outline": e8fd,
"high_quality": e024,
"highlight": e25f,
"highlight_off": e888,
"history": e889,
"home": e88a,
"hot_tub": eb46,
"hotel": e53a,
"hourglass_empty": e88b,
"hourglass_full": e88c,
"http": e902,
"https": e88d,
"image": e3f4,
"image_aspect_ratio": e3f5,
"import_contacts": e0e0,
"import_export": e0c3,
"important_devices": e912,
"inbox": e156,
"indeterminate_check_box": e909,
"info": e88e,
"info_outline": e88f,
"input": e890,
"insert_chart": e24b,
"insert_comment": e24c,
"insert_drive_file": e24d,
"insert_emoticon": e24e,
"insert_invitation": e24f,
"insert_link": e250,
"insert_photo": e251,
"invert_colors": e891,
"invert_colors_off": e0c4,
"iso": e3f6,
"keyboard": e312,
"keyboard_arrow_down": e313,
"keyboard_arrow_left": e314,
"keyboard_arrow_right": e315,
"keyboard_arrow_up": e316,
"keyboard_backspace": e317,
"keyboard_capslock": e318,
"keyboard_hide": e31a,
"keyboard_return": e31b,
"keyboard_tab": e31c,
"keyboard_voice": e31d,
"kitchen": eb47,
"label": e892,
"label_outline": e893,
"landscape": e3f7,
"language": e894,
"laptop": e31e,
"laptop_chromebook": e31f,
"laptop_mac": e320,
"laptop_windows": e321,
"last_page": e5dd,
"launch": e895,
"layers": e53b,
"layers_clear": e53c,
"leak_add": e3f8,
"leak_remove": e3f9,
"lens": e3fa,
"library_add": e02e,
"library_books": e02f,
"library_music": e030,
"lightbulb_outline": e90f,
"line_style": e919,
"line_weight": e91a,
"linear_scale": e260,
"link": e157,
"linked_camera": e438,
"list": e896,
"live_help": e0c6,
"live_tv": e639,
"local_activity": e53f,
"local_airport": e53d,
"local_atm": e53e,
"local_bar": e540,
"local_cafe": e541,
"local_car_wash": e542,
"local_convenience_store": e543,
"local_dining": e556,
"local_drink": e544,
"local_florist": e545,
"local_gas_station": e546,
"local_grocery_store": e547,
"local_hospital": e548,
"local_hotel": e549,
"local_laundry_service": e54a,
"local_library": e54b,
"local_mall": e54c,
"local_movies": e54d,
"local_offer": e54e,
"local_parking": e54f,
"local_pharmacy": e550,
"local_phone": e551,
"local_pizza": e552,
"local_play": e553,
"local_post_office": e554,
"local_printshop": e555,
"local_see": e557,
"local_shipping": e558,
"local_taxi": e559,
"location_city": e7f1,
"location_disabled": e1b6,
"location_off": e0c7,
"location_on": e0c8,
"location_searching": e1b7,
"lock": e897,
"lock_open": e898,
"lock_outline": e899,
"looks": e3fc,
"looks_3": e3fb,
"looks_4": e3fd,
"looks_5": e3fe,
"looks_6": e3ff,
"looks_one": e400,
"looks_two": e401,
"loop": e028,
"loupe": e402,
"low_priority": e16d,
"loyalty": e89a,
"mail": e158,
"mail_outline": e0e1,
"map": e55b,
"markunread": e159,
"markunread_mailbox": e89b,
"memory": e322,
"menu": e5d2,
"merge_type": e252,
"message": e0c9,
"mic": e029,
"mic_none": e02a,
"mic_off": e02b,
"mms": e618,
"mode_comment": e253,
"mode_edit": e254,
"monetization_on": e263,
"money_off": e25c,
"monochrome_photos": e403,
"mood": e7f2,
"mood_bad": e7f3,
"more": e619,
"more_horiz": e5d3,
"more_vert": e5d4,
"motorcycle": e91b,
"mouse": e323,
"move_to_inbox": e168,
"movie": e02c,
"movie_creation": e404,
"movie_filter": e43a,
"multiline_chart": e6df,
"music_note": e405,
"music_video": e063,
"my_location": e55c,
"nature": e406,
"nature_people": e407,
"navigate_before": e408,
"navigate_next": e409,
"navigation": e55d,
"near_me": e569,
"network_cell": e1b9,
"network_check": e640,
"network_locked": e61a,
"network_wifi": e1ba,
"new_releases": e031,
"next_week": e16a,
"nfc": e1bb,
"no_encryption": e641,
"no_sim": e0cc,
"not_interested": e033,
"note": e06f,
"note_add": e89c,
"notifications": e7f4,
"notifications_active": e7f7,
"notifications_none": e7f5,
"notifications_off": e7f6,
"notifications_paused": e7f8,
"offline_pin": e90a,
"ondemand_video": e63a,
"opacity": e91c,
"open_in_browser": e89d,
"open_in_new": e89e,
"open_with": e89f,
"pages": e7f9,
"pageview": e8a0,
"palette": e40a,
"pan_tool": e925,
"panorama": e40b,
"panorama_fish_eye": e40c,
"panorama_horizontal": e40d,
"panorama_vertical": e40e,
"panorama_wide_angle": e40f,
"party_mode": e7fa,
"pause": e034,
"pause_circle_filled": e035,
"pause_circle_outline": e036,
"payment": e8a1,
"people": e7fb,
"people_outline": e7fc,
"perm_camera_mic": e8a2,
"perm_contact_calendar": e8a3,
"perm_data_setting": e8a4,
"perm_device_information": e8a5,
"perm_identity": e8a6,
"perm_media": e8a7,
"perm_phone_msg": e8a8,
"perm_scan_wifi": e8a9,
"person": e7fd,
"person_add": e7fe,
"person_outline": e7ff,
"person_pin": e55a,
"person_pin_circle": e56a,
"personal_video": e63b,
"pets": e91d,
"phone": e0cd,
"phone_android": e324,
"phone_bluetooth_speaker": e61b,
"phone_forwarded": e61c,
"phone_in_talk": e61d,
"phone_iphone": e325,
"phone_locked": e61e,
"phone_missed": e61f,
"phone_paused": e620,
"phonelink": e326,
"phonelink_erase": e0db,
"phonelink_lock": e0dc,
"phonelink_off": e327,
"phonelink_ring": e0dd,
"phonelink_setup": e0de,
"photo": e410,
"photo_album": e411,
"photo_camera": e412,
"photo_filter": e43b,
"photo_library": e413,
"photo_size_select_actual": e432,
"photo_size_select_large": e433,
"photo_size_select_small": e434,
"picture_as_pdf": e415,
"picture_in_picture": e8aa,
"picture_in_picture_alt": e911,
"pie_chart": e6c4,
"pie_chart_outlined": e6c5,
"pin_drop": e55e,
"place": e55f,
"play_arrow": e037,
"play_circle_filled": e038,
"play_circle_outline": e039,
"play_for_work": e906,
"playlist_add": e03b,
"playlist_add_check": e065,
"playlist_play": e05f,
"plus_one": e800,
"poll": e801,
"polymer": e8ab,
"pool": eb48,
"portable_wifi_off": e0ce,
"portrait": e416,
"power": e63c,
"power_input": e336,
"power_settings_new": e8ac,
"pregnant_woman": e91e,
"present_to_all": e0df,
"print": e8ad,
"priority_high": e645,
"public": e80b,
"publish": e255,
"query_builder": e8ae,
"question_answer": e8af,
"queue": e03c,
"queue_music": e03d,
"queue_play_next": e066,
"radio": e03e,
"radio_button_checked": e837,
"radio_button_unchecked": e836,
"rate_review": e560,
"receipt": e8b0,
"recent_actors": e03f,
"record_voice_over": e91f,
"redeem": e8b1,
"redo": e15a,
"refresh": e5d5,
"remove": e15b,
"remove_circle": e15c,
"remove_circle_outline": e15d,
"remove_from_queue": e067,
"remove_red_eye": e417,
"remove_shopping_cart": e928,
"reorder": e8fe,
"repeat": e040,
"repeat_one": e041,
"replay": e042,
"replay_10": e059,
"replay_30": e05a,
"replay_5": e05b,
"reply": e15e,
"reply_all": e15f,
"report": e160,
"report_problem": e8b2,
"restaurant": e56c,
"restaurant_menu": e561,
"restore": e8b3,
"restore_page": e929,
"ring_volume": e0d1,
"room": e8b4,
"room_service": eb49,
"rotate_90_degrees_ccw": e418,
"rotate_left": e419,
"rotate_right": e41a,
"rounded_corner": e920,
"router": e328,
"rowing": e921,
"rss_feed": e0e5,
"rv_hookup": e642,
"satellite": e562,
"save": e161,
"scanner": e329,
"schedule": e8b5,
"school": e80c,
"screen_lock_landscape": e1be,
"screen_lock_portrait": e1bf,
"screen_lock_rotation": e1c0,
"screen_rotation": e1c1,
"screen_share": e0e2,
"sd_card": e623,
"sd_storage": e1c2,
"search": e8b6,
"security": e32a,
"select_all": e162,
"send": e163,
"sentiment_dissatisfied": e811,
"sentiment_neutral": e812,
"sentiment_satisfied": e813,
"sentiment_very_dissatisfied": e814,
"sentiment_very_satisfied": e815,
"settings": e8b8,
"settings_applications": e8b9,
"settings_backup_restore": e8ba,
"settings_bluetooth": e8bb,
"settings_brightness": e8bd,
"settings_cell": e8bc,
"settings_ethernet": e8be,
"settings_input_antenna": e8bf,
"settings_input_component": e8c0,
"settings_input_composite": e8c1,
"settings_input_hdmi": e8c2,
"settings_input_svideo": e8c3,
"settings_overscan": e8c4,
"settings_phone": e8c5,
"settings_power": e8c6,
"settings_remote": e8c7,
"settings_system_daydream": e1c3,
"settings_voice": e8c8,
"share": e80d,
"shop": e8c9,
"shop_two": e8ca,
"shopping_basket": e8cb,
"shopping_cart": e8cc,
"short_text": e261,
"show_chart": e6e1,
"shuffle": e043,
"signal_cellular_4_bar": e1c8,
"signal_cellular_connected_no_internet_4_bar": e1cd,
"signal_cellular_no_sim": e1ce,
"signal_cellular_null": e1cf,
"signal_cellular_off": e1d0,
"signal_wifi_4_bar": e1d8,
"signal_wifi_4_bar_lock": e1d9,
"signal_wifi_off": e1da,
"sim_card": e32b,
"sim_card_alert": e624,
"skip_next": e044,
"skip_previous": e045,
"slideshow": e41b,
"slow_motion_video": e068,
"smartphone": e32c,
"smoke_free": eb4a,
"smoking_rooms": eb4b,
"sms": e625,
"sms_failed": e626,
"snooze": e046,
"sort": e164,
"sort_by_alpha": e053,
"spa": eb4c,
"space_bar": e256,
"speaker": e32d,
"speaker_group": e32e,
"speaker_notes": e8cd,
"speaker_notes_off": e92a,
"speaker_phone": e0d2,
"spellcheck": e8ce,
"star": e838,
"star_border": e83a,
"star_half": e839,
"stars": e8d0,
"stay_current_landscape": e0d3,
"stay_current_portrait": e0d4,
"stay_primary_landscape": e0d5,
"stay_primary_portrait": e0d6,
"stop": e047,
"stop_screen_share": e0e3,
"storage": e1db,
"store": e8d1,
"store_mall_directory": e563,
"straighten": e41c,
"streetview": e56e,
"strikethrough_s": e257,
"style": e41d,
"subdirectory_arrow_left": e5d9,
"subdirectory_arrow_right": e5da,
"subject": e8d2,
"subscriptions": e064,
"subtitles": e048,
"subway": e56f,
"supervisor_account": e8d3,
"surround_sound": e049,
"swap_calls": e0d7,
"swap_horiz": e8d4,
"swap_vert": e8d5,
"swap_vertical_circle": e8d6,
"switch_camera": e41e,
"switch_video": e41f,
"sync": e627,
"sync_disabled": e628,
"sync_problem": e629,
"system_update": e62a,
"system_update_alt": e8d7,
"tab": e8d8,
"tab_unselected": e8d9,
"tablet": e32f,
"tablet_android": e330,
"tablet_mac": e331,
"tag_faces": e420,
"tap_and_play": e62b,
"terrain": e564,
"text_fields": e262,
"text_format": e165,
"textsms": e0d8,
"texture": e421,
"theaters": e8da,
"thumb_down": e8db,
"thumb_up": e8dc,
"thumbs_up_down": e8dd,
"time_to_leave": e62c,
"timelapse": e422,
"timeline": e922,
"timer": e425,
"timer_10": e423,
"timer_3": e424,
"timer_off": e426,
"title": e264,
"toc": e8de,
"today": e8df,
"toll": e8e0,
"tonality": e427,
"touch_app": e913,
"toys": e332,
"track_changes": e8e1,
"traffic": e565,
"train": e570,
"tram": e571,
"transfer_within_a_station": e572,
"transform": e428,
"translate": e8e2,
"trending_down": e8e3,
"trending_flat": e8e4,
"trending_up": e8e5,
"tune": e429,
"turned_in": e8e6,
"turned_in_not": e8e7,
"tv": e333,
"unarchive": e169,
"undo": e166,
"unfold_less": e5d6,
"unfold_more": e5d7,
"update": e923,
"usb": e1e0,
"verified_user": e8e8,
"vertical_align_bottom": e258,
"vertical_align_center": e259,
"vertical_align_top": e25a,
"vibration": e62d,
"video_call": e070,
"video_label": e071,
"video_library": e04a,
"videocam": e04b,
"videocam_off": e04c,
"videogame_asset": e338,
"view_agenda": e8e9,
"view_array": e8ea,
"view_carousel": e8eb,
"view_column": e8ec,
"view_comfy": e42a,
"view_compact": e42b,
"view_day": e8ed,
"view_headline": e8ee,
"view_list": e8ef,
"view_module": e8f0,
"view_quilt": e8f1,
"view_stream": e8f2,
"view_week": e8f3,
"vignette": e435,
"visibility": e8f4,
"visibility_off": e8f5,
"voice_chat": e62e,
"voicemail": e0d9,
"volume_down": e04d,
"volume_mute": e04e,
"volume_off": e04f,
"volume_up": e050,
"vpn_key": e0da,
"vpn_lock": e62f,
"wallpaper": e1bc,
"warning": e002,
"watch": e334,
"watch_later": e924,
"wb_auto": e42c,
"wb_cloudy": e42d,
"wb_incandescent": e42e,
"wb_iridescent": e436,
"wb_sunny": e430,
"wc": e63d,
"web": e051,
"web_asset": e069,
"weekend": e16b,
"whatshot": e80e,
"widgets": e1bd,
"wifi": e63e,
"wifi_lock": e1e1,
"wifi_tethering": e1e2,
"work": e8f9,
"wrap_text": e25b,
"youtube_searched_for": e8fa,
"zoom_in": e8ff,
"zoom_out": e900,
"zoom_out_map": e56b
), $material-icons-codepoints);

View File

@ -0,0 +1,30 @@
@font-face {
font-family: "Material Icons";
font-style: normal;
font-weight: 400;
src: url("MaterialIcons-Regular.eot");
/* For IE6-8 */
src: local("Material Icons"), local("MaterialIcons-Regular"), url("MaterialIcons-Regular.woff2") format("woff2"), url("MaterialIcons-Regular.woff") format("woff"), url("MaterialIcons-Regular.ttf") format("truetype");
}
.material-icons {
font-family: "Material Icons";
font-weight: normal;
font-style: normal;
font-size: 24px;
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;
/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;
/* Support for IE. */
font-feature-settings: 'liga';
}

View File

@ -0,0 +1,17 @@
@import 'variables';
@import 'mixins';
@font-face {
font-family: $material-icons-font-family;
font-style: normal;
font-weight: 400;
src: url('#{$material-icons-font-file}.eot'); /* For IE6-8 */
src: local($material-icons-font-family), local($material-icons-font-name),
url('#{$material-icons-font-file}.woff2') format('woff2'),
url('#{$material-icons-font-file}.woff') format('woff'),
url('#{$material-icons-font-file}.ttf') format('truetype');
}
.material-icons {
@include material-icons();
}

View File

@ -0,0 +1,49 @@
@function material-icons-str-replace($string, $search, $replace: '') {
$index: str-index($string, $search);
@if $index {
@return str-slice($string, 1, $index - 1) + $replace + material-icons-str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
}
@return $string;
}
@function material-icons-content($codepoint) {
@return unquote('"\\#{$codepoint}"');
}
@mixin material-icons(
$font-size: $material-icons-font-size,
$font-family: $material-icons-font-family
) {
font-family: $font-family;
font-weight: normal;
font-style: normal;
font-size: $font-size;
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;
/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;
/* Support for IE. */
font-feature-settings: 'liga';
}
@mixin material-icon($name, $pseudo: 'before') {
$codepoint: map-get($material-icons-codepoints, $name);
&:#{$pseudo} {
content: material-icons-content($codepoint);
}
}

View File

@ -0,0 +1,8 @@
@import 'codepoints.scss';
$material-icons-font-path: '' !default;
$material-icons-font-name: 'MaterialIcons-Regular' !default;
$material-icons-font-size: 24px !default;
$material-icons-font-family: 'Material Icons' !default;
$material-icons-font-file: $material-icons-font-path + $material-icons-font-name;

View File

@ -0,0 +1,5 @@
{
"/js/velocity.js": "/js/velocity.js",
"/css/velocity.css": "/css/velocity.css",
"/css/velocity-admin.css": "/css/velocity-admin.css"
}

View File

@ -0,0 +1,23 @@
<?php
return [
[
'key' => 'velocity',
'name' => 'velocity::app.admin.layouts.velocity',
'route' => 'velocity.admin.content.index',
'sort' => 5,
'icon-class' => 'velocity-icon',
], [
'key' => 'velocity.header',
'name' => 'velocity::app.admin.layouts.header-content',
'route' => 'velocity.admin.content.index',
'sort' => 1,
'icon-class' => '',
], [
'key' => 'velocity.meta-data',
'name' => 'velocity::app.admin.layouts.meta-data',
'route' => 'velocity.admin.meta-data',
'sort' => 2,
'icon-class' => '',
]
];

View File

@ -0,0 +1,134 @@
<?php
return [
[
'key' => 'velocity',
'name' => 'velocity::app.admin.system.velocity.extension_name',
'sort' => 2
], [
'key' => 'velocity.configuration',
'name' => 'velocity::app.admin.system.velocity.settings',
'sort' => 1,
], [
'key' => 'velocity.configuration.general',
'name' => 'velocity::app.admin.system.velocity.general',
'sort' => 1,
'fields' => [
[
'name' => 'status',
'title' => 'velocity::app.admin.system.general.status',
'type' => 'select',
'options' => [
[
'title' => 'velocity::app.admin.system.general.active',
'value' => true
], [
'title' => 'velocity::app.admin.system.general.inactive',
'value' => false
]
]
]
]
], [
'key' => 'velocity.configuration.category',
'name' => 'velocity::app.admin.system.velocity.category',
'sort' => 1,
'fields' => [
[
'name' => 'icon_status',
'title' => 'velocity::app.admin.system.category.icon-status',
'type' => 'select',
'options' => [
[
'title' => 'velocity::app.admin.system.category.active',
'value' => true
], [
'title' => 'velocity::app.admin.system.category.inactive',
'value' => false
]
]
], [
'name' => 'image_status',
'title' => 'velocity::app.admin.system.category.image-status',
'type' => 'select',
'options' => [
[
'title' => 'velocity::app.admin.system.category.active',
'value' => true
], [
'title' => 'velocity::app.admin.system.category.inactive',
'value' => false
]
]
], [
'name' => 'image_height',
'title' => 'velocity::app.admin.system.category.image-height',
'type' => 'depands',
'depand' => 'image_status:true',
'validation' => 'numeric|max:3',
'channel_based' => false,
'locale_based' => false,
], [
'name' => 'image_width',
'title' => 'velocity::app.admin.system.category.image-width',
'type' => 'depands',
'depand' => 'image_status:true',
'validation' => 'numeric|max:3',
'channel_based' => false,
'locale_based' => false,
], [
'name' => 'image_alignment',
'title' => 'velocity::app.admin.system.category.image-alignment',
'channel_based' => false,
'locale_based' => false,
'type' => 'depands',
'depand' => 'image_status:true',
'options' => [
[
'title' => 'Right',
'value' => 'right'
], [
'title' => 'Left',
'value' => 'left'
]
]
], [
'name' => 'tooltip_status',
'title' => 'velocity::app.admin.system.category.show-tooltip',
'type' => 'select',
'options' => [
[
'title' => 'velocity::app.admin.system.category.active',
'value' => true
], [
'title' => 'velocity::app.admin.system.category.inactive',
'value' => false
]
]
], [
'name' => 'sub_category',
'title' => 'velocity::app.admin.system.category.sub-category-show',
'channel_based' => false,
'locale_based' => false,
'type' => 'select',
'options' => [
[
'title' => 'All',
'value' => 'all'
], [
'title' => 'Custom',
'value' => 'custom'
]
]
], [
'name' => 'sub_category_num',
'title' => 'velocity::app.admin.system.category.num-sub-category',
'channel_based' => false,
'locale_based' => false,
'type' => 'depands',
'depand' => 'sub_category:custom',
'validation' => 'numeric|max:2',
]
]
]
];

View File

@ -0,0 +1,7 @@
<?php
namespace Webkul\Velocity\Contracts;
interface Category
{
}

View File

@ -0,0 +1,7 @@
<?php
namespace Webkul\Velocity\Contracts;
interface Content
{
}

View File

@ -0,0 +1,7 @@
<?php
namespace Webkul\Velocity\Contracts;
interface ContentTranslation
{
}

View File

@ -0,0 +1,7 @@
<?php
namespace Webkul\Velocity\Contracts;
interface OrderBrand
{
}

View File

@ -0,0 +1,7 @@
<?php
namespace Webkul\Velocity\Contracts;
interface VelocityMetadata
{
}

View File

@ -0,0 +1,116 @@
<?php
namespace Webkul\Velocity\DataGrids;
use Webkul\Ui\DataGrid\DataGrid;
use DB;
/**
* Category DataGrid
*
* @author Vivek Sharma <viveksh047@webkul.com> @viveksh-webkul
* @copyright 2019 Webkul Software Pvt Ltd (http://www.webkul.com)
*/
class CategoryDataGrid extends DataGrid
{
protected $index = 'category_menu_id'; //the column that needs to be treated as index column
protected $sortOrder = 'desc'; //asc or desc
public function prepareQueryBuilder()
{
$defaultChannel = core()->getCurrentChannel();
$queryBuilder = DB::table('velocity_category as v_cat')
->select('v_cat.id as category_menu_id', 'v_cat.category_id', 'ct.name', 'v_cat.icon', 'v_cat.tooltip', 'v_cat.status')
->leftJoin('categories as c', 'c.id', '=', 'v_cat.category_id')
->leftJoin('category_translations as ct', function($leftJoin) {
$leftJoin->on('c.id', '=', 'ct.category_id')
->where('ct.locale', app()->getLocale());
})
->where('c.parent_id', $defaultChannel->root_category_id)
->groupBy('v_cat.id');
// $this->addFilter('content_id', 'con.id');
$this->setQueryBuilder($queryBuilder);
}
public function addColumns()
{
$this->addColumn([
'index' => 'category_id',
'label' => trans('velocity::app.admin.category.datagrid.category-id'),
'type' => 'number',
'searchable' => true,
'sortable' => true,
'filterable' => true
]);
$this->addColumn([
'index' => 'name',
'label' => trans('velocity::app.admin.category.datagrid.category-name'),
'type' => 'string',
'searchable' => true,
'sortable' => true,
'filterable' => true
]);
$this->addColumn([
'index' => 'icon',
'label' => trans('velocity::app.admin.category.datagrid.category-icon'),
'type' => 'string',
'sortable' => true,
'searchable' => true,
'filterable' => true,
'closure' => true,
'wrapper' => function ($row) {
return '<span class="wk-icon '.$row->icon.'"></span>';
}
]);
$this->addColumn([
'index' => 'status',
'label' => trans('velocity::app.admin.category.datagrid.category-status'),
'type' => 'string',
'sortable' => true,
'searchable' => true,
'filterable' => true,
'closure' => true,
'wrapper' => function($row) {
if ( $row->status ) {
return '<span class="badge badge-md badge-success">Enabled</span>';
} else {
return '<span class="badge badge-md badge-danger">Disabled</span>';
}
}
]);
}
public function prepareActions() {
$this->addAction([
'type' => 'Edit',
'method' => 'GET', // use GET request only for redirect purposes
'route' => 'velocity.admin.category.edit',
'icon' => 'icon pencil-lg-icon'
]);
$this->addAction([
'type' => 'Delete',
'method' => 'POST', // use GET request only for redirect purposes
'route' => 'velocity.admin.category.delete',
'confirm_text' => trans('ui::app.datagrid.massaction.delete', ['resource' => 'Category']),
'icon' => 'icon trash-icon'
]);
}
public function prepareMassActions()
{
$this->addMassAction([
'type' => 'delete',
'action' => route('velocity.admin.category.mass-delete'),
'label' => 'Delete',
'method' => 'DELETE'
]);
}
}

View File

@ -0,0 +1,123 @@
<?php
namespace Webkul\Velocity\DataGrids;
use Webkul\Ui\DataGrid\DataGrid;
use DB;
/**
* Content DataGrid
*
* @author Vivek Sharma <viveksh047@webkul.com> @viveksh-webkul
* @copyright 2019 Webkul Software Pvt Ltd (http://www.webkul.com)
*/
class ContentDataGrid extends DataGrid
{
protected $index = 'content_id'; //the column that needs to be treated as index column
protected $sortOrder = 'desc'; //asc or desc
public function prepareQueryBuilder()
{
$queryBuilder = DB::table('velocity_contents as con')
->select('con.id as content_id', 'con_trans.title', 'con.position', 'con.content_type', 'con.status')
->leftJoin('velocity_contents_translations as con_trans', function($leftJoin) {
$leftJoin->on('con.id', '=', 'con_trans.content_id')
->where('con_trans.locale', app()->getLocale());
})
->groupBy('con.id');
$this->addFilter('content_id', 'con.id');
$this->setQueryBuilder($queryBuilder);
}
public function addColumns()
{
$this->addColumn([
'index' => 'content_id',
'label' => trans('velocity::app.admin.contents.datagrid.id'),
'type' => 'number',
'searchable' => true,
'sortable' => true,
'filterable' => true
]);
$this->addColumn([
'index' => 'title',
'label' => trans('velocity::app.admin.contents.datagrid.title'),
'type' => 'string',
'searchable' => true,
'sortable' => true,
'filterable' => true
]);
$this->addColumn([
'index' => 'position',
'label' => trans('velocity::app.admin.contents.datagrid.position'),
'type' => 'number',
'searchable' => true,
'sortable' => true,
'filterable' => true
]);
$this->addColumn([
'index' => 'status',
'label' => trans('velocity::app.admin.contents.datagrid.status'),
'type' => 'boolean',
'sortable' => true,
'searchable' => false,
'filterable' => true,
'wrapper' => function($value) {
if ($value->status == 1)
return 'Active';
else
return 'Inactive';
}
]);
$this->addColumn([
'index' => 'content_type',
'label' => trans('velocity::app.admin.contents.datagrid.content-type'),
'type' => 'string',
'sortable' => true,
'searchable' => true,
'filterable' => true,
'wrapper' => function($value) {
if ($value->content_type == 'link')
return 'Link';
else if ($value->content_type == 'product')
return 'Product';
else if ($value->content_type == 'static')
return 'Static';
}
]);
}
public function prepareActions() {
$this->addAction([
'type' => 'Edit',
'method' => 'GET', // use GET request only for redirect purposes
'route' => 'velocity.admin.content.edit',
'icon' => 'icon pencil-lg-icon'
]);
$this->addAction([
'type' => 'Delete',
'method' => 'POST', // use GET request only for redirect purposes
'route' => 'velocity.admin.content.delete',
'confirm_text' => trans('ui::app.datagrid.massaction.delete', ['resource' => 'content']),
'icon' => 'icon trash-icon'
]);
}
public function prepareMassActions()
{
$this->addMassAction([
'type' => 'delete',
'action' => route('velocity.admin.content.mass-delete'),
'label' => 'Delete',
'method' => 'DELETE'
]);
}
}

View File

@ -0,0 +1,36 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateVelocityContentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('velocity_contents', function (Blueprint $table) {
$table->increments('id');
$table->string('content_type', 100)->nullable();
$table->integer('position')->unsigned()->nullable();
$table->boolean('status')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('velocity_contents');
}
}

View File

@ -0,0 +1,49 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateVelocityContentsTranslationsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('velocity_contents_translations', function (Blueprint $table) {
$table->increments('id');
$table->integer('content_id')->unsigned()->nullable();
$table->foreign('content_id')->references('id')->on('velocity_contents')->onDelete('cascade');
$table->string('title', 100)->nullable();
$table->string('custom_title', 100)->nullable();
$table->string('custom_heading', 250)->nullable();
$table->string('page_link', 500)->nullable();
$table->boolean('link_target')->default(0);
$table->string('catalog_type', 100)->nullable();
$table->text('products')->nullable();
$table->text('description')->nullable();
$table->string('locale')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('velocity_contents_translations');
}
}

View File

@ -0,0 +1,39 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateVelocityCategoryTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('velocity_category', function (Blueprint $table) {
$table->increments('id');
$table->integer('category_id')->unsigned()->nullable();
$table->foreign('category_id')->references('id')->on('categories')->onDelete('cascade');
$table->string('icon', 250)->nullable();
$table->string('tooltip', 250)->nullable();
$table->boolean('status')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('velocity_category');
}
}

View File

@ -0,0 +1,44 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class OrderBrands extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('order_brands', function (Blueprint $table) {
$table->increments('id');
$table->integer('order_id')->unsigned()->nullable();
$table->foreign('order_id')->references('id')->on('orders')->onDelete('cascade');
$table->integer('order_item_id')->unsigned()->nullable();
$table->foreign('order_item_id')->references('id')->on('order_items')->onDelete('cascade');
$table->integer('product_id')->unsigned()->nullable();
$table->foreign('product_id')->references('id')->on('products')->onDelete('cascade');
$table->integer('brand')->unsigned()->nullable();
$table->foreign('brand')->references('id')->on('attribute_options')->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('order_brands');
}
}

View File

@ -0,0 +1,40 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateVelocityMetaData extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('velocity_meta_data', function (Blueprint $table) {
$table->increments('id');
$table->text('home_page_content');
$table->text('footer_left_content');
$table->text('footer_middle_content');
$table->boolean('slider')->default(0);
$table->json('advertisement')->nullable();
$table->integer('sidebar_category_count')->default(9);
$table->integer('featured_product_count')->default(10);
$table->integer('new_products_count')->default(10);
$table->text('subscription_bar_content')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('velocity_meta_data');
}
}

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