Commit c8fd5491 by Яков

two

parent 48680c56
discount_phone:
class: sfDoctrineRouteCollection
options:
model: DiscountPhone
module: discount_phone
prefix_path: /discount_phone
column: id
with_wildcard_routes: true
discount:
class: sfDoctrineRouteCollection
options:
model: Discount
module: discount
prefix_path: /discount
column: id
with_wildcard_routes: true
notification_emails: notification_emails:
class: sfDoctrineRouteCollection class: sfDoctrineRouteCollection
options: options:
......
<?php <?php
if (!$form->isNew()) { if (!$form->isNew()) {
$discount = Doctrine::getTable('DiscountPhone')->findOneByOrderId($form->getObject()->getId());
$offers = $form->getObject()->getOffers(); $offers = $form->getObject()->getOffers();
if (count($offers) > 0) { if (count($offers) > 0) {
?> ?>
<div class="advanced_custom"> <div class="advanced_custom">
<?php
if ($discount) {
?>
<div>Использована скидка <?php echo $discount->getDiscount()->getTitle() . ' с ' . $discount->getActiveDiscount() . '%' ?></div>
<?php
}
?>
<div class="advanced_custom__h">Товарные предложения<sup>&nbsp;<?php echo count($offers);?></sup></div> <div class="advanced_custom__h">Товарные предложения<sup>&nbsp;<?php echo count($offers);?></sup></div>
<div class="content"> <div class="content">
<table width="100%" cellspacing="0" cellpadding="0"> <table width="100%" cellspacing="0" cellpadding="0">
...@@ -25,7 +17,7 @@ if (!$form->isNew()) { ...@@ -25,7 +17,7 @@ if (!$form->isNew()) {
<?php <?php
$total = 0; $total = 0;
foreach ($offers as $offer) { foreach ($offers as $offer) {
echo '<tr align="right"><td align="left">' . $offer['Offer']['Translation']['ru']['title'] . '</td><td>' . $offer['amount'] . '</td><td>' . number_format($offer['price']/$offer['amount'], 0, ',', ' ') . '&nbsp;₽</td><td><nobr>' . number_format($offer['price'], 0, ',', ' ') . '&nbsp;₽</nobr></td></tr>'; echo '<tr align="right"><td align="left">' . $offer['Offer']['Translation']['ru']['title'] . '</td><td>' . $offer['amount'] . '</td><td>' . number_format($offer['Offer']['price'], 0, ',', ' ') . '&nbsp;₽</td><td><nobr>' . number_format($offer['price'], 0, ',', ' ') . '&nbsp;₽</nobr></td></tr>';
$total += $offer['price']; $total += $offer['price'];
} }
echo '<tr class="advanced_custom__tr_divider_top"><td align="right" colspan="4"><nobr><b>Итого:&nbsp;</b>' . number_format($total, 0, ',', ' ') . '&nbsp;₽</nobr></td></tr>'; echo '<tr class="advanced_custom__tr_divider_top"><td align="right" colspan="4"><nobr><b>Итого:&nbsp;</b>' . number_format($total, 0, ',', ' ') . '&nbsp;₽</nobr></td></tr>';
......
<?php
require_once dirname(__FILE__).'/../lib/discountGeneratorConfiguration.class.php';
require_once dirname(__FILE__).'/../lib/discountGeneratorHelper.class.php';
/**
* discount actions.
*
* @package sf
* @subpackage discount
* @author Atma
* @version SVN: $Id: actions.class.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class discountActions extends autoDiscountActions
{
}
generator:
class: sfDoctrineGenerator
param:
model_class: Discount
theme: admin
non_verbose_templates: true
with_show: false
singular: ~
plural: ~
route_prefix: discount
with_doctrine_route: true
actions_base_class: sfActions
order: 45
config:
tabs:
0: { label: 'Скидки' }
1: { label: 'Телефоны', url_for: 'discount_phone/index?tab=1' }
actions: ~
fields:
id: {label: 'id'}
title: {label: Название}
utm: {label: 'UTM'}
comment: {label: 'Комментарий'}
url: {label: 'Ссылка', help: 'Для автоматической генерации оставьте поле пустым'}
created_at: {label: 'Дата создания'}
updated_at: {label: 'Дата изменения'}
phones: {label: ''}
list:
layout: ~
title: 'Скидки'
display: [title, utm, comment, url, _phones, created_at]
max_per_page: 100
object_actions:
_delete: ~
_edit: ~
search:
fields: false
export: false
filter:
class: false
form: ~
edit:
title: Редактирование скидки
new:
title: Добавление скидки
\ No newline at end of file
<?php
/**
* discount module configuration.
*
* @package sf
* @subpackage discount
* @author Atma
* @version SVN: $Id: configuration.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class discountGeneratorConfiguration extends BaseDiscountGeneratorConfiguration
{
public function getFormActions()
{
return array( '_list' => NULL, '_save' => NULL, '_save_and_add' => NULL, '_save_and_list' => NULL,);
}
public function getListObjectActions()
{
return array( '_edit' => NULL,);
}
public function getListBatchActions()
{
return array();
}
}
<?php
/**
* discount module helper.
*
* @package sf
* @subpackage discount
* @author Atma
* @version SVN: $Id: helper.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class discountGeneratorHelper extends BaseDiscountGeneratorHelper
{
}
<?php if ($field->isPartial()): ?>
<?php include_partial('discount_phone/'.$name, array('form' => $form, 'attributes' => $attributes instanceof sfOutputEscaper ? $attributes->getRawValue() : $attributes)) ?>
<?php elseif ($field->isComponent()): ?>
<?php include_component('discount_phone', $name, array('form' => $form, 'attributes' => $attributes instanceof sfOutputEscaper ? $attributes->getRawValue() : $attributes)) ?>
<?php else: ?>
<div class="<?php echo $class ?><?php $form[$name]->hasError() and print ' errors' ?>">
<div>
<?php $opts = $form[$name]->getWidget()->getOptions(); ?>
<?php if (key_exists('type', $opts) && $opts['type'] == 'checkbox'): ?>
<div class="content"><label><?php echo $form[$name]->render($attributes instanceof sfOutputEscaper ? $attributes->getRawValue() : $attributes); ?><?php echo $label; ?></label></div>
<?php else: ?>
<span class="inline-label"><?php echo $form[$name]->renderLabel($label) ?></span>
<div class="content">
<?php echo $name == 'url' ? 'http://'.$this->context->getRequest()->getHost().'/ru/discount/' : ''; ?> <?php echo $form[$name]->render($attributes instanceof sfOutputEscaper ? $attributes->getRawValue() : $attributes) ?><?php echo ($name == 'url' ? '/ ' : '') ?> <?php echo ( $name == 'url' && !$form->isNew() ? '<div style="margin-left: 10px !important;" class="pseudo_button lui_pseudo pseudo_button_file_wrapper only_root_button" >Скопировать в буфер обмена</div>' : ''); ?>
<?php echo $form[$name]->renderError() ?>
<?php if ($help): ?><span class="help"><?php echo __($help, array(), 'messages') ?></span><?php elseif ($help = $form[$name]->renderHelp()): ?><span class="help"><?php echo strip_tags($help, '<a><i>') ?></span><?php endif; ?>
</div>
<?php endif; ?>
</div>
</div>
<?php endif; ?>
<?php
if ($name == 'url') {
?>
<script>
$('.pseudo_button').on('click', function (e) {
try {
}
document.execCommand('copy');
} catch(err) {
console.log('Can`t copy');
})
</script>
<?php
}
?>
\ No newline at end of file
<?php
echo link_to('Перейти к телефонам', 'discount_phone/filter?discount_phone_filters[discount_id]=' . $discount->getId(), array("class" => "lui_pseudo", "onclick" => "event.stopPropagation();"));
?>
\ No newline at end of file
<?php
require_once dirname(__FILE__).'/../lib/discount_phoneGeneratorConfiguration.class.php';
require_once dirname(__FILE__).'/../lib/discount_phoneGeneratorHelper.class.php';
/**
* discount_phone actions.
*
* @package sf
* @subpackage discount_phone
* @author Atma
* @version SVN: $Id: actions.class.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class discount_phoneActions extends autoDiscount_phoneActions
{
}
generator:
class: sfDoctrineGenerator
param:
model_class: DiscountPhone
theme: admin
non_verbose_templates: true
with_show: false
singular: ~
plural: ~
route_prefix: discount_phone
with_doctrine_route: true
actions_base_class: sfActions
skip: true
config:
tabs:
0: { label: 'Скидки', url_for: 'discount/index?tab=0' }
1: { label: 'Телефоны' }
actions: ~
fields:
id: {label: 'id'}
phone: {label: 'Телефон'}
discount_id: {label: 'Скидка'}
active_discount: {label: 'Текущая скидка'}
order_id: {label: ' заказа'}
created_at: {label: 'Создана'}
updated_at: {label: 'Активирована'}
discount: {label: 'Скидка'}
list:
layout: ~
title: 'Скидки'
display: [phone, _discount, created_at, _updated_at]
max_per_page: 100
object_actions:
_delete: ~
_edit: ~
search:
fields: false
export: false
filter:
display: [discount_id]
form: ~
edit:
title: Редактирование телефона
new:
title: Добавление телефона
\ No newline at end of file
<?php
/**
* discount_phone module configuration.
*
* @package sf
* @subpackage discount_phone
* @author Atma
* @version SVN: $Id: configuration.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class discount_phoneGeneratorConfiguration extends BaseDiscount_phoneGeneratorConfiguration
{
public function getListBatchActions()
{
return array();
}
public function getListActions()
{
return array();
}
}
<?php
/**
* discount_phone module helper.
*
* @package sf
* @subpackage discount_phone
* @author Atma
* @version SVN: $Id: helper.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class discount_phoneGeneratorHelper extends BaseDiscount_phoneGeneratorHelper
{
}
<?php
echo $discount_phone->getDiscountId() ? $discount_phone->getDiscount()->getTitle() : '';
?>
\ No newline at end of file
<?php
echo $discount_phone->getOrderId() ? $discount_phone->getUpdatedAt() : '';
?>
\ No newline at end of file
...@@ -21,7 +21,6 @@ all: ...@@ -21,7 +21,6 @@ all:
class: sfSessionStorage class: sfSessionStorage
param: param:
session_name: om session_name: om
session_cookie_lifetime: 2592000
routing: routing:
class: sfPatternRouting class: sfPatternRouting
param: param:
......
...@@ -8,10 +8,6 @@ homepage: ...@@ -8,10 +8,6 @@ homepage:
requirements: requirements:
sf_culture: (?:ru|en) sf_culture: (?:ru|en)
homepage_discount:
url: /:sf_culture/discount/:url/
param: { module: main, action: index }
search: search:
url: /:sf_culture/search/ url: /:sf_culture/search/
param: { module: search, action: search } param: { module: search, action: search }
...@@ -28,10 +24,6 @@ review: ...@@ -28,10 +24,6 @@ review:
url: /:sf_culture/review/ url: /:sf_culture/review/
param: { module: review, action: index } param: { module: review, action: index }
discount:
url: /:sf_culture/discount/
param: { module: discount, action: index }
catalog: catalog:
url: /:sf_culture/catalog/ url: /:sf_culture/catalog/
param: { module: catalog, action: index } param: { module: catalog, action: index }
...@@ -56,10 +48,6 @@ basket_complete: ...@@ -56,10 +48,6 @@ basket_complete:
url: /:sf_culture/basket/complete/ url: /:sf_culture/basket/complete/
param: { module: basket, action: complete } param: { module: basket, action: complete }
basket_check_discount:
url: /:sf_culture/basket/check_discount/
param: { module: discount, action: check_discount }
catalog_show_cat: catalog_show_cat:
url: /catalog/:alias/ url: /catalog/:alias/
param: { module: catalog, action: show_cat } param: { module: catalog, action: show_cat }
...@@ -96,10 +84,6 @@ uploader: ...@@ -96,10 +84,6 @@ uploader:
url: /uploader/ url: /uploader/
param: { module: main, action: uploader } param: { module: main, action: uploader }
check_discount_term:
url: /check_discount_term/
param: { module: discount, action: check_discount_term }
page_show: page_show:
url: /:sf_culture/:alias/ url: /:sf_culture/:alias/
class: sfDoctrineRoute class: sfDoctrineRoute
......
...@@ -6,7 +6,7 @@ prod: ...@@ -6,7 +6,7 @@ prod:
dev: dev:
.settings: .settings:
error_reporting: <?php echo (E_ALL | E_STRICT)."\n" ?> error_reporting: <?php echo (E_ALL | E_STRICT)."\n" ?>
web_debug: true web_debug: false
cache: true cache: true
etag: false etag: false
logging_enabled: false logging_enabled: false
......
...@@ -4,18 +4,18 @@ default: ...@@ -4,18 +4,18 @@ default:
metas: metas:
robots: 'index, follow' robots: 'index, follow'
stylesheets: stylesheets:
- 'fonts.css?deploy=1519103092' - 'fonts.css?deploy=1519103100'
- 'g.css?deploy=1519103094' - 'g.css?deploy=1519103101'
- 'p.css?deploy=1519103095' - 'p.css?deploy=1519103104'
- 'a.css?deploy=1519103092' - 'a.css?deploy=1519103102'
- 'nouislider.css?deploy=1519103100' - 'nouislider.css?deploy=1519103100'
javascripts: javascripts:
- 'jquery-2.1.4.min.js?deploy=1519103092' - 'jquery-2.1.4.min.js?deploy=1519103100'
- 'jquery.plugins.js?deploy=1519103092' - 'jquery.plugins.js?deploy=1519103100'
- 'jquery.cycle2.min.js?deploy=1519103092' - 'jquery.cycle2.min.js?deploy=1519103100'
- 'jquery.cycle2.swipe.js?deploy=1519103092' - 'jquery.cycle2.swipe.js?deploy=1519103100'
- 'jquery.cycle2.carousel.min.js' - 'jquery.cycle2.carousel.min.js?deploy=1519103100'
- 'nouislider.js?deploy=1519103092' - 'nouislider.js?deploy=1519103100'
- 'init.d.js?deploy=1519103092' - 'init.d.js?deploy=1519103100'
has_layout: true has_layout: true
layout: layout layout: layout
...@@ -344,30 +344,6 @@ class basketActions extends sfActions ...@@ -344,30 +344,6 @@ class basketActions extends sfActions
$this->order_form->bind($request->getParameter($this->order_form->getName())); $this->order_form->bind($request->getParameter($this->order_form->getName()));
if($this->order_form->isValid()){ if($this->order_form->isValid()){
$params =$request->getParameter($this->order_form->getName());
$phone = $params['phone'];
if ($this->getUser()->hasAttribute('active_discount') && $this->getUser()->getAttribute('active_discount') != false) {
$date_now = new DateTime('now');
$date_limit = new DateTime('now');
$date_limit->modify('-30 day');
$discount = Doctrine_Query::create()
->select()
->from('DiscountPhone dp')
->where('dp.phone = ?', $phone)
->andWhere('dp.order_id is null')
->andWhere('dp.created_at BETWEEN STR_TO_DATE(\'' . $date_limit->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\')
AND STR_TO_DATE(\'' . $date_now->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\')')
->execute();
if (count($discount) > 0) {
$discount = intval($discount->getFirst()->getActiveDiscount());
} else {
$discount = 0;
}
} else {
$discount = 0;
}
$order = $this->order_form->save(); $order = $this->order_form->save();
$basket->setBasketOrderId($order->getId()); $basket->setBasketOrderId($order->getId());
$basket->save(); $basket->save();
...@@ -388,45 +364,22 @@ class basketActions extends sfActions ...@@ -388,45 +364,22 @@ class basketActions extends sfActions
$products['sum'] = 0; $products['sum'] = 0;
foreach ($basket->getBasketOffer() as $key => $basketOffer) foreach ($basket->getBasketOffer()->toArray() as $key => $basketOffer)
{ {
$offerTranslation = Doctrine_Query::create() $offerTranslation = Doctrine_Query::create()
->select('o.*, t.*') ->select('o.*, t.*')
->from('Offer o') ->from('Offer o')
->where('o.id = ?', intval($basketOffer->getOfferId())) ->where('o.id = ?', intval($basketOffer['offer_id']))
->leftJoin('o.Translation t') ->leftJoin('o.Translation t')
->fetchArray(); ->fetchArray();
if ($discount && $offerTranslation[0]['discount_available'] == 1) {
$basketOffer->setPrice($basketOffer->getPrice()/100*(100-$discount));
$basketOffer->save();
}
$products['elem'][$key]['name'] = $offerTranslation[0]['Translation']['ru']['title']; $products['elem'][$key]['name'] = $offerTranslation[0]['Translation']['ru']['title'];
$products['elem'][$key]['price'] = number_format(intval($basketOffer->getPrice())/$basketOffer->getAmount(), 0, ',', ' '); $products['elem'][$key]['price'] = intval($basketOffer['price'])/$basketOffer['amount'];
$products['elem'][$key]['count'] = $basketOffer->getAmount(); $products['elem'][$key]['count'] = $basketOffer['amount'];
$products['sum'] = $products['sum'] + intval($basketOffer->getPrice()); $products['sum'] = $products['sum'] + intval($basketOffer['price']);
}
$date_now = new DateTime('now');
$date_limit = new DateTime('now');
$date_limit->modify('-30 day');
$phone_discount = Doctrine_Query::create()
->select()
->from('DiscountPhone dp')
->where('dp.phone = ?', $this->getUser()->getAttribute('phone_number'))
->andWhere('dp.order_id is null')
->andWhere('dp.created_at BETWEEN STR_TO_DATE(\'' . $date_limit->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\') AND STR_TO_DATE(\'' . $date_now->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\')')
->execute();
if (count($phone_discount) > 0) {
$phone_discount = $phone_discount->getFirst();
$phone_discount->setOrderId($order->getId());
$phone_discount->save();
} }
$this->getUser()->setAttribute('active_discount', false);
$this->getUser()->setAttribute('phone', false);
$this->getUser()->setAttribute('number_of_views', false);
$emails_dirty = NotificationEmailsTable::getInstance()->createQuery('e') $emails_dirty = NotificationEmailsTable::getInstance()->createQuery('e')
->select('e.email') ->select('e.email')
...@@ -467,6 +420,7 @@ class basketActions extends sfActions ...@@ -467,6 +420,7 @@ class basketActions extends sfActions
); );
} }
$this->redirect('@basket_complete'); $this->redirect('@basket_complete');
} }
} }
......
...@@ -24,8 +24,5 @@ class basketComponents extends sfComponents ...@@ -24,8 +24,5 @@ class basketComponents extends sfComponents
if(count($this->offers) > 0){ if(count($this->offers) > 0){
$this->info = $user->getBasketInfo(); $this->info = $user->getBasketInfo();
} }
if ($this->getUser()->hasAttribute('active_discount') && $this->getUser()->getAttribute('active_discount') != false) {
$this->percent = $this->getUser()->getAttribute('active_discount');
}
} }
} }
\ No newline at end of file
...@@ -13,15 +13,12 @@ ...@@ -13,15 +13,12 @@
</thead> </thead>
<tbody valign="middle"> <tbody valign="middle">
<?php <?php
if (!isset($percent)) {
$percent = false;
}
$summ = 0;
$productFreeShipping = 1; $productFreeShipping = 1;
foreach ($offers as $offer){ foreach ($offers as $offer){
if ($offer['Product']['free_shipping'] == 0) { if ($offer['Product']['free_shipping'] == 0) {
$productFreeShipping = 0; $productFreeShipping = 0;
} }
//print_r($offer);
$quantity_type = $offer['Translation'][$culture]['quantity_type']; $quantity_type = $offer['Translation'][$culture]['quantity_type'];
if ($offer['quantity_type_select']) { if ($offer['quantity_type_select']) {
$quantity_type = (isset(Offer::$quantity_type_select_values[$offer['quantity_type_select']]) ? Offer::$quantity_type_select_values[$offer['quantity_type_select']] : ''); $quantity_type = (isset(Offer::$quantity_type_select_values[$offer['quantity_type_select']]) ? Offer::$quantity_type_select_values[$offer['quantity_type_select']] : '');
...@@ -33,7 +30,7 @@ ...@@ -33,7 +30,7 @@
$offer_img = $offer_imgs[0]; $offer_img = $offer_imgs[0];
} }
//print_r($offer['Product']); //print_r($offer['Product']);
echo '<td valign="top"><a style="border: none" href="/' . $offer['Translation'][$culture]['lang'] . '/product/' . $offer['Product']['alias'] . '/"><div class="basket_img ' . ($offer['discount_available'] == 1 ? 'discount' : '') . '" ' . ($offer_img ? 'style="background-image: url(/u/i/' . Page::replaceImageSize($offer_img, 'S') . ');"' : '') . '></div></a>'; echo '<td valign="top"><a style="border: none" href="/' . $offer['Translation'][$culture]['lang'] . '/product/' . $offer['Product']['alias'] . '/"><div class="basket_img" ' . ($offer_img ? 'style="background-image: url(/u/i/' . Page::replaceImageSize($offer_img, 'S') . ');"' : '') . '></div></a>';
echo '<td><div class="basket_offer_title"><a href="/' . $offer['Translation'][$culture]['lang'] . '/product/' . $offer['Product']['alias'] . '/">' . $offer['Translation'][$culture]['title'] . '</a></div></td>'; echo '<td><div class="basket_offer_title"><a href="/' . $offer['Translation'][$culture]['lang'] . '/product/' . $offer['Product']['alias'] . '/">' . $offer['Translation'][$culture]['title'] . '</a></div></td>';
echo '</td>'; echo '</td>';
echo '<td class="align_center"><div class="product_counter" data-id="' . $offer['id'] . '">'; echo '<td class="align_center"><div class="product_counter" data-id="' . $offer['id'] . '">';
...@@ -41,22 +38,15 @@ ...@@ -41,22 +38,15 @@
echo '<input autocomplete="off" type="text" class="product_counter_val" value="' . $offer['BasketOffer'][0]['amount'] . '" data-symbol="false" onkeyup="counterLite.update($(this))">'; echo '<input autocomplete="off" type="text" class="product_counter_val" value="' . $offer['BasketOffer'][0]['amount'] . '" data-symbol="false" onkeyup="counterLite.update($(this))">';
echo '<input type="button" class="product_counter_plus" data-symbol="+" onclick="counterLite.update($(this))">'; echo '<input type="button" class="product_counter_plus" data-symbol="+" onclick="counterLite.update($(this))">';
echo '</div><span class="name_unit">' . ($quantity_type != '' ? $quantity_type : '') . '</span></td>'; echo '</div><span class="name_unit">' . ($quantity_type != '' ? $quantity_type : '') . '</span></td>';
if ($percent && $offer['discount_available'] == 1) { echo '<td valign="middle" class="basket_offers_table__price align_center">' . number_format($offer['price'], 0, ',', ' ') . '&nbsp;<span class="rub">i</span></td>';
echo '<td valign="middle" class="basket_offers_table__price align_center"><div style="position: relative"><div class="basket_discount"><span style="text-decoration: line-through">' . number_format($offer['price'], 0, ',', ' ') . '&nbsp;</span><span style="font-size: 15px" class="rub">i</span></div><div class="basket_item">' . number_format($offer['price']/100*(100-$percent), 0, ',', ' ') . '&nbsp;<span class="rub">i</span></div></div></td>'; echo '<td valign="middle" class="basket_offers_table__price align_center">' . number_format($offer['BasketOffer'][0]['price'], 0, ',', ' ') . '&nbsp;<span class="rub">i</span></td>';
echo '<td valign="middle" class="basket_offers_table__price align_center"><div class="basket_item"> ' . number_format($offer['BasketOffer'][0]['price']/100*(100-$percent), 0, ',', ' ') . '&nbsp;<span class="rub">i</span></div></td>';
$summ = $summ + $offer['BasketOffer'][0]['price']/100*(100-$percent);
}else {
echo '<td valign="middle" class="basket_offers_table__price align_center"><div class="basket_item">' . number_format($offer['price'], 0, ',', ' ') . '&nbsp;<span class="rub">i</span></div></td>';
echo '<td valign="middle" class="basket_offers_table__price align_center"><div class="basket_item">' . number_format($offer['BasketOffer'][0]['price'], 0, ',', ' ') . '&nbsp;<span class="rub">i</span></div></td>';
$summ = $summ + $offer['BasketOffer'][0]['price'];
}
echo '<td width="1" align="center"><div class="basket_clean" onclick="basket.delete(this);"></div></td>'; echo '<td width="1" align="center"><div class="basket_clean" onclick="basket.delete(this);"></div></td>';
echo '</tr>'; echo '</tr>';
} }
?> ?>
</tbody> </tbody>
</table> </table>
<div class="basket_total" data-delivery-info="<?php echo $productFreeShipping ?>"><?php echo __('Итого');?>:<div class="basket_total__price"><?php echo number_format($summ, 0, ',', ' ');?></div>&nbsp;<span class="rub">i</span></div> <div class="basket_total" data-delivery-info="<?php echo $productFreeShipping ?>"><?php echo __('Итого');?>:<div class="basket_total__price"><?php echo number_format($info['price'], 0, ',', ' ');?></div>&nbsp;<span class="rub">i</span></div>
</div> </div>
</div> </div>
......
...@@ -42,7 +42,7 @@ echo '<h1 class="content_title">' . __('Корзина') . '</h1>'; ...@@ -42,7 +42,7 @@ echo '<h1 class="content_title">' . __('Корзина') . '</h1>';
<?php <?php
echo '<h2>' . __('Контактные данные') . ':</h2>'; echo '<h2>' . __('Контактные данные') . ':</h2>';
echo '<div class="basket_buyer__item"><input size="27" maxlength="255" required="1" placeholder="Как к вам обращаться" onchange="form_validator.check($(this))" onkeyup="form_validator.check($(this))" data-check-rule="noempty" class="basket_buyer__inp_name validate_it" name="basket_order[username]" id="basket_order_username" type="text"></div>'; echo '<div class="basket_buyer__item"><input size="27" maxlength="255" required="1" placeholder="Как к вам обращаться" onchange="form_validator.check($(this))" onkeyup="form_validator.check($(this))" data-check-rule="noempty" class="basket_buyer__inp_name validate_it" name="basket_order[username]" id="basket_order_username" type="text"></div>';
echo '<div class="basket_buyer__item"><div class="phone_info"></div><input size="27" maxlength="24" required="1" placeholder="Номер телефона" onchange="form_validator.check($(this))" onkeyup="form_validator.check($(this))" data-check-rule="phone" class="basket_buyer__inp_name phone_mask validate_it" name="basket_order[phone]" id="basket_order_phone" type="text"></div>'; echo '<div class="basket_buyer__item"><input size="27" maxlength="24" required="1" placeholder="Номер телефона" onchange="form_validator.check($(this))" onkeyup="form_validator.check($(this))" data-check-rule="phone" class="basket_buyer__inp_name validate_it" name="basket_order[phone]" id="basket_order_phone" type="text"></div>';
echo '<div class="basket_buyer__item"><input size="27" maxlength="24" required="1" placeholder="Email" onchange="form_validator.check($(this))" onkeyup="form_validator.check($(this))" data-check-rule="email" class="basket_buyer__inp_name validate_it" name="basket_order[email]" id="basket_order_email" type="text"></div>'; echo '<div class="basket_buyer__item"><input size="27" maxlength="24" required="1" placeholder="Email" onchange="form_validator.check($(this))" onkeyup="form_validator.check($(this))" data-check-rule="email" class="basket_buyer__inp_name validate_it" name="basket_order[email]" id="basket_order_email" type="text"></div>';
?> ?>
</div> </div>
...@@ -86,126 +86,11 @@ echo '<h1 class="content_title">' . __('Корзина') . '</h1>'; ...@@ -86,126 +86,11 @@ echo '<h1 class="content_title">' . __('Корзина') . '</h1>';
<?php <?php
echo '<h2>' . __('Общая сумма заказа') . '</h2>'; echo '<h2>' . __('Общая сумма заказа') . '</h2>';
echo '<div class="basket_order__price">' . $info['priceText'] . '&nbsp;<span class="rub">i</span></div>'; echo '<div class="basket_order__price">' . $info['priceText'] . '&nbsp;<span class="rub">i</span></div>';
echo '<input type="submit" class="btn green_b_btn order_btn btn_disabled" value="' . __('Оформить заказ') . '" disabled>'; echo '<input type="submit" class="btn green_b_btn order_btn btn_disabled" value="' . __('Оформить заказ') . '" onclick="yaCounter48466937.reachGoal(\'ORDER\')" disabled>';
?> ?>
</div> </div>
<script type="text/javascript"> <script type="text/javascript">
var lastvalue = '';
var lastvalueunmask = '';
function mask(str) {
var arr = str.split('');
if (str.length >= 2)
{
arr.splice(2,0," (");
if (str.length >= 5)
{
arr.splice(6,0,") ");
}
if (str.length >=8)
{
arr.splice(10,0,"-");
}
if (str.length >= 10)
{
arr.splice(13,0,"-");
}
}
return arr.join('');
}
function unmask(str) {
var rep = /[()\-\s]/g;
var value = str.replace(rep, '');
return value;
}
$('.phone_mask').on('input', function () {
var value = unmask($(this).val());
var last = value.slice(-1);
var first = value.charAt(0);
var rep = /(^\+7)(9)([0-9]{0,9})/g;
if ((value.length == 2) && (first == '+'))
{
if (value == '+9')
{
value = '+79';
lastvalue = '+79';
}else
{
value = '+7';
lastvalue = '+7';
}
}else
if ((value == '7') || (value == '8'))
{
value = '+7';
} else
if (value == '9')
{
value = '+79';
} else
{
var execval = rep.exec(value);
if (execval != null)
{
value = execval[0];
} else
{
if ((last != '9'))
{
value = value.substring(0, value.length - 1)
}
}
}
$(this).val(mask(value));
lastvalue = $(this).val();
lastvalueunmask = value;
});
$('.phone_mask').on('keydown', function (event) {
var key = event.keyCode || event.charCode;
if( key == 8 || key == 46 ){
var value = unmask($('.phone_mask').val());
value = value.substring(0, value.length - 1);
$('.phone_mask').val(mask(value));
lastvalue = $('.phone_mask').val();
return false;
}
});
$('.phone_mask').on('blur', function (e) {
if ($('.phone_mask').val().length == 18) {
$.ajax({
url: '/ru/basket/check_discount/',
dataType: 'json',
type: 'post',
data: {phone: $('.phone_mask').val()},
success: function (data) {
if (data.status == 'success' && data.active_discount > 0) {
$('.basket_refresh').html(data.body);
$($('.top_right')[1]).addClass('discount_basket');
$('.phone_info').html('На этом номере обнаружена скидка ' + data.active_discount + '%')
} else if (data.status == 'success' && data.active_discount == 0) {
$('.basket_refresh').html(data.body);
$($('.top_right')[1]).removeClass('discount_basket');
$('.phone_info').html('На этом номере скидка не обнаружена')
}
},
error: function (error) {
console.log(error);
}
})
}
})
$(document).ready(function () { $(document).ready(function () {
var delivery_info = $('.basket_total').data('delivery-info'); var delivery_info = $('.basket_total').data('delivery-info');
console.log(delivery_info); console.log(delivery_info);
......
...@@ -141,7 +141,7 @@ class catalogActions extends sfActions ...@@ -141,7 +141,7 @@ class catalogActions extends sfActions
->orderBy('p.sort asc'); ->orderBy('p.sort asc');
//->andWhere("CHAR_LENGTH(p.product_img) > 0"); //->andWhere("CHAR_LENGTH(p.product_img) > 0");
$products_q = Doctrine_Query::create() $products_q = Doctrine_Query::create()
->select("p.id, p.alias, p.product_img, p.is_detail, p.offer_count, p.is_delete, c.*, t.id, t.lang, t.title, o.id, o.product_id, o.price, o.quantity_type_select, o.discount_available, ot.*, ppv.*") ->select("p.id, p.alias, p.product_img, p.is_detail, p.offer_count, p.is_delete, c.*, t.id, t.lang, t.title, o.id, o.product_id, o.price, o.quantity_type_select, ot.*, ppv.*")
->from("Product p") ->from("Product p")
->leftJoin("p.CatProduct c") ->leftJoin("p.CatProduct c")
->leftJoin("p.Translation t") ->leftJoin("p.Translation t")
......
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
<tr> <tr>
<td colspan="5"> <td colspan="5">
<i class="br40"></i> <i class="br40"></i>
<a href="" class="btn green_btn calculator_table__btn">Добавить в корзину</a> <a href="" class="btn green_btn calculator_table__btn" onclick="yaCounter48466937.reachGoal('ADD');">Добавить в корзину</a>
</td> </td>
</tr> </tr>
</tbody> </tbody>
......
...@@ -50,11 +50,3 @@ echo '<h1 class="content_title">' . $translation[$culture]['title'] . '</h1>'; ...@@ -50,11 +50,3 @@ echo '<h1 class="content_title">' . $translation[$culture]['title'] . '</h1>';
} }
?> ?>
</div> </div>
<script>
$('.discount_available').on('click', function (e) {
if ($(window).width() < 650) {
$(this).toggleClass('show');
}
})
</script>
<?php
/**
* discount actions.
*
* @package sf
* @subpackage discount
* @author Atma
* @version SVN: $Id: actions.class.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class discountActions extends sfActions
{
public function executeIndex(sfWebRequest $request)
{
if ($request->hasParameter('discount')) {
$data = $request->getParameter('discount');
$discount = Doctrine::getTable('Discount')->findOneByUrl($data['url']);
if ($discount) {
$date_now = new DateTime('now');
$date_now->modify('+1 day');
$date_limit = new DateTime('now');
$date_limit->modify('-30 day');
sfContext::getInstance()->getConfiguration()->loadHelpers('Partial');
$check_discounts = Doctrine_Query::create()
->select()
->from('DiscountPhone dp')
->where('dp.phone = ?', $data['phone'])
->andWhere('dp.discount_id != ?', $discount->getId())
->andWhere('dp.order_id is null')
->andWhere('dp.created_at BETWEEN STR_TO_DATE(\'' . $date_limit->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\')
AND STR_TO_DATE(\'' . $date_now->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\')')
->fetchArray();
if (count($check_discounts) == 1) {
echo include_partial('discount/form', array('status' => 'error', 'error' => 'У вас уже есть скидка ' . $check_discounts[0]["active_discount"] . '%'));
} else {
$check_phone = Doctrine_Query::create()
->select()
->from('DiscountPhone dp')
->where('dp.phone = ?', $data['phone'])
->andWhere('dp.discount_id = ?', $discount->getId())
->fetchArray();
if (count($check_phone) == 0) {
$discount_phone = new DiscountPhone();
$discount_phone->setDiscountId($discount->getId());
$discount_phone->setPhone($data['phone']);
$discount_phone->save();
$this->getUser()->setAttribute('number_of_views', 3);
$this->getUser()->setAttribute('phone_number', $data['phone']);
$this->getUser()->setAttribute('active_discount', 3);
echo include_partial('discount/form', array('status' => 'complete'));
} else {
if (is_numeric($check_phone[0]['order_id'])) {
echo include_partial('discount/form', array('status' => 'error', 'error' => 'Вы уже использовали данную скидку'));
} else {
$date_created = new DateTime($check_phone[0]['created_at']);
$interval = $date_now->diff($date_created);
$interval = $interval->format('%a');
$remained = 30 - $interval;
if (intval($remained) <= 30) {
echo include_partial('discount/form', array('status' => 'error', 'error' => "У вас уже есть данная скидка.\n Осталось " . $remained . " дней"));
} else {
echo include_partial('discount/form', array('status' => 'error', 'error' => 'Вы не можете активировать скидку второй раз'));
}
}
}
}
}
}
return sfView::NONE;
}
public function executeCheck_discount(sfWebRequest $request)
{
if ($request->hasParameter('phone') && $request->getParameter('phone') != false) {
$date_now = new DateTime('now');
$date_limit = new DateTime('now');
$date_limit->modify('-30 day');
$discount = Doctrine_Query::create()
->select()
->from('DiscountPhone dp')
->where('dp.phone = ?', $request->getParameter('phone'))
->andWhere('dp.order_id is null')
->andWhere('dp.created_at BETWEEN STR_TO_DATE(\'' . $date_limit->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\')
AND STR_TO_DATE(\'' . $date_now->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\')')
->execute();
if (count($discount) > 0) {
$discount = $discount->getFirst();
$this->getUser()->setAttribute('active_discount', $discount->getActiveDiscount());
$this->getUser()->setAttribute('phone', $request->getParameter('phone'));
//sfContext::getInstance()->getConfiguration()->loadHelpers('Components');
//$body = include_component('basket', 'basket');
echo json_encode(array('status' => 'success', 'active_discount' => $discount->getActiveDiscount(), 'body' => $this->getComponent('basket', 'basket')));
} else {
$this->getUser()->setAttribute('active_discount', false);
$this->getUser()->setAttribute('phone', false);
echo json_encode(array('status' => 'success', 'active_discount' => 0, 'body' => $this->getComponent('basket', 'basket')));
}
}
return sfView::NONE;
}
public function executeCheck_discount_term (sfWebRequest $request) {
if ($this->getUser()->hasAttribute('active_discount') && $this->getUser()->getAttribute('active_discount') != false && $this->getUser()->hasAttribute('phone_number') && $this->getUser()->getAttribute('phone_number') != false) {
$date_now = new DateTime('now');
$date_limit = new DateTime('now');
$date_limit->modify('-30 day');
$discount = Doctrine_Query::create()
->select()
->from('DiscountPhone dp')
->where('dp.phone = ?', $this->getUser()->getAttribute('phone_number'))
->andWhere('dp.order_id is null')
->andWhere('dp.created_at BETWEEN STR_TO_DATE(\'' . $date_limit->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\')
AND STR_TO_DATE(\'' . $date_now->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\')')
->execute();
if (count($discount) > 0) {
$discount = $discount->getFirst();
echo json_encode(array('status' => 'success', 'active_discount' => $discount->getActiveDiscount()));
} else {
echo json_encode(array('status' => 'success', 'active_discount' => 0));
}
}else {
echo json_encode(array('status' => 'success', 'active_discount' => 0));
}
return sfView::NONE;
}
}
<?php
class discountComponents extends sfComponents
{
public function executeForm($request)
{
if ($request->hasParameter('url')) {
$discount = Doctrine::getTable('Discount')->findOneByUrl($request->getParameter('url'));
if ($discount) {
$this->status = 'success';
$this->discount = $request->getParameter('url');
} else {
$this->status = 'error';
$this->error = 'Cкидка не найдена';
$this->discount = $request->getParameter('url');
}
}
}
}
\ No newline at end of file
<?php
if ($status == 'success') {
echo '<div class="image_discount">';
echo '</div>';
echo '<div class="form_discount">';
echo '<div id="discount" class="discount_form__title">' . __('Вы получили скидку 3%') . '</div>';
echo '<div class="discount_form_text">Введите номер телефона, чтобы сохранить скидку</div>';
echo '<form class="discount_form" method="post" action="' . url_for('@discount') . '" onsubmit="discount.submit(this);return false;">';
echo '<div class="discount_form__process">';
echo '<div class="discount_form__inp_wrap"><input name="discount[phone]" type="text" id="phone_mask" class="form_type_1__input validate_it" placeholder="Номер телефона" onkeyup="form_validator.check($(this))" data-check-rule="phone" autocomplete="off" required></div>';
echo '<input name="discount[url]" type="hidden" value="' . $discount . '">';
$culture = $sf_user->getCulture();
?>
<div class="discount_form__checkbox">
<label class="checkbox ver2">
<input type="checkbox" class="validater validate_it not_custom" onchange="form_validator.check($(this))"
data-check-rule="checked" autocomplete="off" required>
<span class="checkbox_span"></span>
<span class="checkbox_text"><?php echo __('Я принимаю условия') ?> <a
href="<?php echo '/' . $culture . '/terms-of-use/' ?>"
target="_blank"><?php echo __('пользовательского соглашения') ?></a><?php echo __(' и ') ?>
<a href="<?php echo '/' . $culture . '/privacy-policy/' ?>"
target="_blank"><?php echo __('политики конфиденциальности') ?></a></span>
</label>
</div>
<i class="br15"></i>
<?php
echo '<input type="submit" class="discount_form__submit green_b_btn send btn_disabled" value="' . __('Cохранить') . '" disabled />';
echo '</div>';
echo '</form>';
echo '<div class="discount_form_head_text">Хотите скидку больше?<br>Тогда посмотрите семь товаров.</div>';
echo '<div class="discount_form_text">В течение 30 дней вы можете сделать заказ со скидкой.</div>';
echo '</div>';
} elseif ($status == 'complete') {
echo '<div class="form_discount">';
echo '<div id="discount" class="discount_form__title">' . __('Скидка успешно активирована!') . '</div>';
echo '<div class="discount_form__submit green_b_btn" onclick="discount.close();">Понятно</div>';
echo '</div>';
} elseif ($status == 'error') {
echo '<div class="form_discount">';
echo '<div id="discount" class="discount_form__title">' . __($error) . '</div>';
echo '<div class="discount_form__submit green_b_btn" onclick="discount.close();">Понятно</div>';
echo '</div>';
}
?>
<script>
var lastvalue = '';
var lastvalueunmask = '';
function mask(str) {
var arr = str.split('');
if (str.length >= 2)
{
arr.splice(2,0," (");
if (str.length >= 5)
{
arr.splice(6,0,") ");
}
if (str.length >=8)
{
arr.splice(10,0,"-");
}
if (str.length >= 10)
{
arr.splice(13,0,"-");
}
}
return arr.join('');
}
function unmask(str) {
var rep = /[()\-\s]/g;
var value = str.replace(rep, '');
return value;
}
$('#phone_mask').on('input', function () {
var value = unmask($(this).val());
var last = value.slice(-1);
var first = value.charAt(0);
var rep = /(^\+7)(9)([0-9]{0,9})/g;
if ((value.length == 2) && (first == '+'))
{
if (value == '+9')
{
value = '+79';
lastvalue = '+79';
}else
{
value = '+7';
lastvalue = '+7';
}
}else
if ((value == '7') || (value == '8'))
{
value = '+7';
} else
if (value == '9')
{
value = '+79';
} else
{
var execval = rep.exec(value);
if (execval != null)
{
value = execval[0];
} else
{
if ((last != '9'))
{
value = value.substring(0, value.length - 1)
}
}
}
$(this).val(mask(value));
lastvalue = $(this).val();
lastvalueunmask = value;
});
$('#phone_mask').on('keydown', function (event) {
var key = event.keyCode || event.charCode;
if( key == 8 || key == 46 ){
var value = unmask($('#phone_mask').val());
value = value.substring(0, value.length - 1);
$('#phone_mask').val(mask(value));
lastvalue = $('#phone_mask').val();
return false;
}
});
</script>
...@@ -17,6 +17,7 @@ class mainActions extends sfActions ...@@ -17,6 +17,7 @@ class mainActions extends sfActions
*/ */
public function executeIndex(sfWebRequest $request) public function executeIndex(sfWebRequest $request)
{ {
/**/
$this->setLayout('layoutHome'); $this->setLayout('layoutHome');
$this->video = Doctrine_Query::create() $this->video = Doctrine_Query::create()
->select("v.*, t.*") ->select("v.*, t.*")
...@@ -61,7 +62,6 @@ class mainActions extends sfActions ...@@ -61,7 +62,6 @@ class mainActions extends sfActions
->andWhere("c.is_main = 1") ->andWhere("c.is_main = 1")
->orderBy("RAND()") ->orderBy("RAND()")
->fetchOne(); ->fetchOne();
} }
public function executeDl(sfWebRequest $request) public function executeDl(sfWebRequest $request)
{ {
......
<table class="lending" style="width: 100%" cellspacing="0" cellpadding="0"> <table class="lending" style="width: 100%" cellspacing="0" cellpadding="0">
<tr> <tr>
<td> <td>
......
...@@ -56,41 +56,5 @@ class productActions extends sfActions ...@@ -56,41 +56,5 @@ class productActions extends sfActions
$this->setLayout('layoutPage'); $this->setLayout('layoutPage');
if ($this->getUser()->hasAttribute('number_of_views') && $this->getUser()->getAttribute('number_of_views') != false) {
$number_of_view = $this->getUser()->getAttribute('number_of_views');
if ($this->getUser()->getAttribute('number_of_views') < 10) {
if (!$this->getUser()->hasAttribute('ids_view_product') || $this->getUser()->getAttribute('ids_view_product') == false) {
$this->getUser()->setAttribute('ids_view_product', $this->product['id'] . ';');
} else {
$str_ids = $this->getUser()->getAttribute('ids_view_product');
$ids = explode(';', $str_ids);
if (!in_array($this->product['id'], $ids)) {
$number_of_view++;
$this->getUser()->setAttribute('number_of_views', $number_of_view);
$this->getUser()->setAttribute('ids_view_product', $str_ids . $this->product['id'] . ';');
}
}
}
if ($number_of_view == 5 || $number_of_view == 7 || $number_of_view == 10) {
if ($this->getUser()->hasAttribute('phone_number') && $this->getUser()->getAttribute('phone_number') != false) {
$date_now = new DateTime('now');
$date_limit = new DateTime('now');
$date_limit->modify('-30 day');
$phone_discount = Doctrine_Query::create()
->select()
->from('DiscountPhone dp')
->where('dp.phone = ?', $this->getUser()->getAttribute('phone_number'))
->andWhere('dp.order_id is null')
->andWhere('dp.created_at BETWEEN STR_TO_DATE(\'' . $date_limit->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\') AND STR_TO_DATE(\'' . $date_now->format('Y-m-d H:i:s') . '\', \'%Y-%m-%d %H:%i:%s\')')
->execute();
if (count($phone_discount) > 0) {
$phone_discount = $phone_discount->getFirst();
$phone_discount->setActiveDiscount($number_of_view);
$phone_discount->save();
$this->getUser()->setAttribute('active_discount', $number_of_view);
}
}
}
}
} }
} }
...@@ -3,24 +3,14 @@ if (isset($product)) { ...@@ -3,24 +3,14 @@ if (isset($product)) {
$translation = $product['Translation']; $translation = $product['Translation'];
$productImg = explode(';', $product['product_img']); $productImg = explode(';', $product['product_img']);
$productImg = (count($productImg) > 0 ? $productImg[0] : false); $productImg = (count($productImg) > 0 ? $productImg[0] : false);
$q = Doctrine::getTable('Product')->findOneById($product['id'])->getOffer(); echo '<div class="catalog_category_child_item">';
$discount_available = false;
foreach ($q as $offer) {
if ($offer->getDiscountAvailable() == 1) {
$discount_available = true;
break;
}
}
echo '<div class="catalog_category_child_item ' . ($discount_available ? 'discount' : '') . '">';
if ($discount_available) {
echo '<div class="discount_available"><div class="discount_available_desc">Ищите наши QR-коды в видео и соц. сетях и забирайте скидку</div><div class="discount_available_title">Доступен со скидкой</div></div>';
}
echo '<' . ($product['is_detail'] ? 'a' : 'span') . ' href="' . url_for("@product_show?alias=" . $product['alias']) . '" class="anb">'; echo '<' . ($product['is_detail'] ? 'a' : 'span') . ' href="' . url_for("@product_show?alias=" . $product['alias']) . '" class="anb">';
if($productImg){ if($productImg){
echo '<img src="/i/n.gif" style="background-image: url(/u/i/' . Page::replaceImageSize($productImg, 'S') . ');" />'; echo '<img src="/i/n.gif" style="background-image: url(/u/i/' . Page::replaceImageSize($productImg, 'S') . ');" />';
}else }else
{ {
$offerImg = ''; $offerImg = '';
$q = Doctrine::getTable('Product')->findOneById($product['id'])->getOffer();
foreach ($q as $offer) { foreach ($q as $offer) {
if (strlen($offer->getImg()) > 3) if (strlen($offer->getImg()) > 3)
$offerImg = $offer->getImg(); $offerImg = $offer->getImg();
......
...@@ -115,7 +115,7 @@ $view = 'much'; ...@@ -115,7 +115,7 @@ $view = 'much';
<input data-initialized="1" data-id="<?php echo $offer['id']; ?>" type="radio" name="offer" onchange="counterLite.change($(this))"> <input data-initialized="1" data-id="<?php echo $offer['id']; ?>" type="radio" name="offer" onchange="counterLite.change($(this))">
<?php if ($offer['price'] > 1) { ?> <?php if ($offer['price'] > 1) { ?>
<table width="100%" cellpadding="0" cellspacing="0"> <table width="100%" cellpadding="0" cellspacing="0">
<tr <?php echo ($offer['discount_available'] == 1 ? 'class="discount' : '') ?>"> <tr>
<td><?php echo $offer['title'] . $quantity_type; ?></td> <td><?php echo $offer['title'] . $quantity_type; ?></td>
<td style="white-space: nowrap;" align="right"> <td style="white-space: nowrap;" align="right">
<?php echo $offer_str; ?> <?php echo $offer_str; ?>
...@@ -125,7 +125,7 @@ $view = 'much'; ...@@ -125,7 +125,7 @@ $view = 'much';
<div class="product_counter min" data-id="<?php echo $offer['id']; ?>" data-price="<?php echo $offer['price'];?>"> <div class="product_counter min" data-id="<?php echo $offer['id']; ?>" data-price="<?php echo $offer['price'];?>">
<input type="button" class="product_counter_minus" data-symbol="-" onclick="counterLite.update($(this))"> <input type="button" class="product_counter_minus" data-symbol="-" onclick="counterLite.update($(this))">
<input autocomplete="off" type="text" class="product_counter_val" value="<?php echo ( $infoAmount ? $infoAmount : 0 ) ?>" data-symbol="-+" onkeyup="counterLite.update($(this))"> <input autocomplete="off" type="text" class="product_counter_val" value="<?php echo ( $infoAmount ? $infoAmount : 0 ) ?>" data-symbol="-+" onkeyup="counterLite.update($(this))">
<input type="button" class="product_counter_plus" data-symbol="+" onclick="counterLite.update($(this))"> <input type="button" class="product_counter_plus" data-symbol="+" onclick="counterLite.update($(this)); yaCounter48466937.reachGoal('ADD');">
</div> </div>
</td> </td>
</tr> </tr>
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
?> ?>
<title><?php include_slot('title', sfConfig::get('app_www_title')); ?></title> <title><?php include_slot('title', sfConfig::get('app_www_title')); ?></title>
</head> </head>
<body <?php echo ($sf_request->hasParameter('url') ? 'class="scroll_hidden overlay_discount_active"' : '')?>> <body>
<script type="text/javascript"> <script type="text/javascript">
var culture = '<?php echo $sf_user->getCulture();?>'; var culture = '<?php echo $sf_user->getCulture();?>';
</script> </script>
\ No newline at end of file
...@@ -14,5 +14,4 @@ ...@@ -14,5 +14,4 @@
</table> </table>
<?php include(sfConfig::get('sf_app_template_dir') . '/bottom.php'); ?> <?php include(sfConfig::get('sf_app_template_dir') . '/bottom.php'); ?>
<?php include(sfConfig::get('sf_app_template_dir') . '/footer.php'); ?> <?php include(sfConfig::get('sf_app_template_dir') . '/footer.php'); ?>
\ No newline at end of file
...@@ -5,13 +5,6 @@ ...@@ -5,13 +5,6 @@
?> ?>
</div> </div>
</div> </div>
<?php
if ($sf_request->hasParameter('url')) {
echo '<div class="overlay_discount overlay_discount_active" onclick="discount.close();"><div class="overlay_discount__item" onclick="event.stopPropagation();">';
include_component('discount','form');
echo '</div></div>';
}
?>
<div id="panel"></div> <div id="panel"></div>
<div class="search_overlay" onclick="search.close();"> <div class="search_overlay" onclick="search.close();">
<div class="search_overlay__line" onclick="event.stopPropagation();"> <div class="search_overlay__line" onclick="event.stopPropagation();">
......
...@@ -24,15 +24,15 @@ ...@@ -24,15 +24,15 @@
<?php <?php
/*<div class="region"><a href="" class="green_link bbs_d">Уфа, Респ. Башкортостан</a></div>*/ /*<div class="region"><a href="" class="green_link bbs_d">Уфа, Респ. Башкортостан</a></div>*/
if (csSettings::get('phone')) { if (csSettings::get('phone')) {
echo '<div class="header__phone">' . __('Телефон') . ':&nbsp;<a href="tel:' . preg_replace('/[^+0-9]/', '', csSettings::get('phone')) . '">' . csSettings::get('phone') . '</a></div>'; echo '<div class="header__phone">' . __('Телефон') . ':&nbsp;<a href="tel:' . preg_replace('/[^+0-9]/', '', csSettings::get('phone')) . '" onclick="yaCounter48466937.reachGoal(\'PHONE\');">' . csSettings::get('phone') . '</a></div>';
} }
if (csSettings::get('email')) { if (csSettings::get('email')) {
echo '<div><nobr>' . __('Эл. почта') . '</nobr>:&nbsp;<a href="mailto:' . csSettings::get('email') . '">' . csSettings::get('email') . '</a></div>'; echo '<div><nobr>' . __('Эл. почта') . '</nobr>:&nbsp;<a href="mailto:' . csSettings::get('email') . '" onclick="yaCounter48466937.reachGoal(\'POST\'); return true;">' . csSettings::get('email') . '</a></div>';
} }
?> ?>
</td> </td>
<td class="top_right"> <td class="top_right">
<a href="" class="callback_open_link green_link bbs_d" onclick="callback.open();return false;"><?php echo __('Заказать звонок');?></a> <a href="" class="callback_open_link green_link bbs_d" onclick="callback.open();yaCounter48466937.reachGoal('CALL');return false;"><?php echo __('Заказать звонок');?></a>
</td> </td>
</tr> </tr>
</table> </table>
...@@ -45,9 +45,6 @@ ...@@ -45,9 +45,6 @@
<table class="second_floor__table" style="width: 100%; height: 100%" cellpadding="0" cellspacing="0"> <table class="second_floor__table" style="width: 100%; height: 100%" cellpadding="0" cellspacing="0">
<tr> <tr>
<?php <?php
if ($sf_user->hasAttribute('active_discount') && $sf_user->getAttribute('active_discount') != false) {
$active_discount = $sf_user->getAttribute('active_discount');
}
$module_action = $sf_request->getParameter('module') . '_' . $sf_request->getParameter('action'); $module_action = $sf_request->getParameter('module') . '_' . $sf_request->getParameter('action');
echo '<td width="100' . ($module_action == 'basket_complete' ? '%' : '') . '" align="center">'; echo '<td width="100' . ($module_action == 'basket_complete' ? '%' : '') . '" align="center">';
$logo = '<img width="100" height="51" src="/i/logo.svg" />'; $logo = '<img width="100" height="51" src="/i/logo.svg" />';
...@@ -57,7 +54,7 @@ ...@@ -57,7 +54,7 @@
echo '<td class="top_menu">'; echo '<td class="top_menu">';
include_component('main', 'menu'); include_component('main', 'menu');
echo '</td>'; echo '</td>';
echo '<td style="position: relative;" class="top_right ' . ($module_action == 'basket_index' ? (isset($active_discount) ? 'discount_basket' : '') : (isset($active_discount) ? 'discount d' . $active_discount : '') ) . '">'; echo '<td class="top_right">';
if($module_action != 'search_search'){ if($module_action != 'search_search'){
echo '<div class="search_btn" onclick="search._show();"></div>'; echo '<div class="search_btn" onclick="search._show();"></div>';
} }
......
<?php <div class="header_mobile mobile">
if ($sf_user->hasAttribute('active_discount') && $sf_user->getAttribute('active_discount') != false) {
$discount = $sf_user->getAttribute('active_discount');
} else {
$discount = false;
}
?>
<div class="header_mobile mobile <?php echo ($discount ? 'discount d' . $discount : '' )?>">
<table cellspacing="0" cellpadding="0" width="100%"> <table cellspacing="0" cellpadding="0" width="100%">
<tbody align="left" valign="middle"> <tbody align="left" valign="middle">
<tr> <tr>
<td colspan="2"> <td colspan="2">
<?php echo csSettings::get('phone') ? '<a href="tel:'. csSettings::get('phone') .'" class="header_mobile__phone_link">'. csSettings::get('phone') .'</a>' : ''; ?> <?php echo csSettings::get('phone') ? '<a href="tel:'. csSettings::get('phone') .'" class="header_mobile__phone_link" onclick="yaCounter48466937.reachGoal(\'PHONE\');">'. csSettings::get('phone') .'</a>' : ''; ?>
</td> </td>
<td width="1" align="right"> <td width="1" align="right">
...@@ -43,13 +36,13 @@ if ($sf_user->hasAttribute('active_discount') && $sf_user->getAttribute('active_ ...@@ -43,13 +36,13 @@ if ($sf_user->hasAttribute('active_discount') && $sf_user->getAttribute('active_
</ul> </ul>
<div class="burder__contacts"> <div class="burder__contacts">
<?php if (csSettings::get('phone')) { <?php if (csSettings::get('phone')) {
echo __('Телефон') . ':&nbsp;<a href="tel:' . preg_replace('/[^+0-9]/', '', csSettings::get('phone')) . '" class="anb">' . csSettings::get('phone') . '</a><i class="br10"></i>'; echo __('Телефон') . ':&nbsp;<a href="tel:' . preg_replace('/[^+0-9]/', '', csSettings::get('phone')) . '" class="anb" onclick="yaCounter48466937.reachGoal(\'PHONE\');">' . csSettings::get('phone') . '</a><i class="br10"></i>';
} }
if (csSettings::get('email')) { if (csSettings::get('email')) {
echo __('Эл. почта') . '</nobr>:&nbsp;<a href="mailto:' . csSettings::get('email') . '">' . csSettings::get('email') . '</a>'; echo __('Эл. почта') . '</nobr>:&nbsp;<a href="mailto:' . csSettings::get('email') . '" onclick="yaCounter48466937.reachGoal(\'POST\');return true;">' . csSettings::get('email') . '</a>';
} ?> } ?>
</div> </div>
<a href="" class="btn white_b_btn burder__callback_link" onclick="callback.open();return false;">Заказать звонок</a> <a href="" class="btn white_b_btn burder__callback_link" onclick="callback.open();yaCounter48466937.reachGoal('CALL');return false;">Заказать звонок</a>
</div> </div>
......
...@@ -3,7 +3,7 @@ all: ...@@ -3,7 +3,7 @@ all:
arm_title: 'Иди в баню - АРМ' arm_title: 'Иди в баню - АРМ'
seo_header_sepr: ' - ' seo_header_sepr: ' - '
email_order: 'ufaros@gmail.com' email_order: 'ufaros@gmail.com'
email_from: 'noreply@stone-dev.atmadev.ru' email_from: 'noreply@idivbanu.ru'
secret_key: '2R]btNuO%c/L!}}[v"tY!pWX2JZ{03;!' secret_key: '2R]btNuO%c/L!}}[v"tY!pWX2JZ{03;!'
default_culture: ru_RU default_culture: ru_RU
import_auth_user: bath import_auth_user: bath
......
...@@ -2,6 +2,6 @@ all: ...@@ -2,6 +2,6 @@ all:
doctrine: doctrine:
class: sfDoctrineDatabase class: sfDoctrineDatabase
param: param:
dsn: 'mysql:host=127.0.0.1;dbname=stone_dev' dsn: 'mysql:host=127.0.0.1;dbname=idivbanu'
username: root username: root
password: h7!nIay6HUtu password: h7!nIay6HUtu
...@@ -481,9 +481,6 @@ Offer: ...@@ -481,9 +481,6 @@ Offer:
sort: sort:
type: integer type: integer
default: 0 default: 0
discount_available:
type: boolean
default: false
relations: relations:
Product: Product:
onDelete: CASCADE onDelete: CASCADE
...@@ -546,11 +543,6 @@ BasketOrder: ...@@ -546,11 +543,6 @@ BasketOrder:
type: boolean type: boolean
notnull: true notnull: true
default: false default: false
relations:
DiscountPhone:
onDelete: SET NULL
local: id
foreign: order_id
BasketOffer: BasketOffer:
columns: columns:
...@@ -624,48 +616,4 @@ Callback: ...@@ -624,48 +616,4 @@ Callback:
default: false default: false
offer_id: offer_id:
type: text type: text
notnull: false notnull: false
\ No newline at end of file
Discount:
actAs:
Timestampable: ~
columns:
title:
type: string(255)
notnull: true
utm:
type: string(255)
notnull: true
comment:
type: string(1000)
notnull: false
url:
type: string(20)
DiscountPhone:
actAs:
Timestampable: ~
columns:
phone:
type: string(20)
notnull: true
discount_id:
type: integer
notnull: true
order_id:
type: string(255)
notnull: false
default: null
active_discount:
type: integer
notnull: true
default: 3
relations:
BasketOrder:
onDelete: SET NULL
local: order_id
foreign: id
Discount:
onDelete: CASCADE
local: discount_id
foreign: id
\ No newline at end of file
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
host=192.168.2.7 host=192.168.2.7
port=22 port=22
user=root user=root
dir=/www/idivbanu.ru/ dir=/www/stone-dev.atmadev.ru/
type=rsync type=rsync
[stone] [stone]
host=192.168.2.7 host=192.168.2.7
......
...@@ -4,21 +4,6 @@ ...@@ -4,21 +4,6 @@
/.ramcache /.ramcache
/.ramcache/* /.ramcache/*
/config/databases.yml /config/databases.yml
/symfony /data/exchange
/test
/upload
/log /log
/.ramcache /symfony
/.idea \ No newline at end of file
/.git
/config/databases.yml
/config/app.yml
/data
/apps/www/config/factories.yml
/apps/arm/config/factories.yml
/symfony
/web/index.php
/web/a.php
/web/u
/config/properties.ini
/config/rsync_exclude.txt
\ No newline at end of file
<?php
/**
* Discount filter form.
*
* @package sf
* @subpackage filter
* @author Atma
* @version SVN: $Id: sfDoctrineFormFilterTemplate.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class DiscountFormFilter extends BaseDiscountFormFilter
{
public function configure()
{
}
}
<?php
/**
* DiscountPhone filter form.
*
* @package sf
* @subpackage filter
* @author Atma
* @version SVN: $Id: sfDoctrineFormFilterTemplate.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class DiscountPhoneFormFilter extends BaseDiscountPhoneFormFilter
{
public function configure()
{
$this->disableLocalCSRFProtection();
}
}
<?php
/**
* OfferTranslation filter form.
*
* @package sf
* @subpackage filter
* @author Atma
* @version SVN: $Id: sfDoctrineFormFilterTemplate.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class OfferTranslationFormFilter extends BaseOfferTranslationFormFilter
{
public function configure()
{
}
}
<?php
/**
* Discount filter form base class.
*
* @package sf
* @subpackage filter
* @author Atma
* @version SVN: $Id: sfDoctrineFormFilterGeneratedTemplate.php 24171 2009-11-19 16:37:50Z Kris.Wallsmith $
*/
abstract class BaseDiscountFormFilter extends BaseFormFilterDoctrine
{
public function setup()
{
$this->setWidgets(array(
'title' => new sfWidgetFormFilterInput(array('with_empty' => false)),
'utm' => new sfWidgetFormFilterInput(array('with_empty' => false)),
'comment' => new sfWidgetFormFilterInput(),
'url' => new sfWidgetFormFilterInput(),
'created_at' => new sfWidgetFormFilterDate(array('from_date' => new sfWidgetFormDate(), 'to_date' => new sfWidgetFormDate(), 'with_empty' => false)),
'updated_at' => new sfWidgetFormFilterDate(array('from_date' => new sfWidgetFormDate(), 'to_date' => new sfWidgetFormDate(), 'with_empty' => false)),
));
$this->setValidators(array(
'title' => new sfValidatorPass(array('required' => false)),
'utm' => new sfValidatorPass(array('required' => false)),
'comment' => new sfValidatorPass(array('required' => false)),
'url' => new sfValidatorPass(array('required' => false)),
'created_at' => new sfValidatorDateRange(array('required' => false, 'from_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 00:00:00')), 'to_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 23:59:59')))),
'updated_at' => new sfValidatorDateRange(array('required' => false, 'from_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 00:00:00')), 'to_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 23:59:59')))),
));
$this->widgetSchema->setNameFormat('discount_filters[%s]');
$this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);
$this->setupInheritance();
parent::setup();
}
public function getModelName()
{
return 'Discount';
}
public function getFields()
{
return array(
'id' => 'Number',
'title' => 'Text',
'utm' => 'Text',
'comment' => 'Text',
'url' => 'Text',
'created_at' => 'Date',
'updated_at' => 'Date',
);
}
}
<?php
/**
* DiscountPhone filter form base class.
*
* @package sf
* @subpackage filter
* @author Atma
* @version SVN: $Id: sfDoctrineFormFilterGeneratedTemplate.php 24171 2009-11-19 16:37:50Z Kris.Wallsmith $
*/
abstract class BaseDiscountPhoneFormFilter extends BaseFormFilterDoctrine
{
public function setup()
{
$this->setWidgets(array(
'phone' => new sfWidgetFormFilterInput(array('with_empty' => false)),
'discount_id' => new sfWidgetFormDoctrineChoice(array('model' => $this->getRelatedModelName('Discount'), 'add_empty' => true)),
'order_id' => new sfWidgetFormDoctrineChoice(array('model' => $this->getRelatedModelName('BasketOrder'), 'add_empty' => true)),
'active_discount' => new sfWidgetFormFilterInput(array('with_empty' => false)),
'created_at' => new sfWidgetFormFilterDate(array('from_date' => new sfWidgetFormDate(), 'to_date' => new sfWidgetFormDate(), 'with_empty' => false)),
'updated_at' => new sfWidgetFormFilterDate(array('from_date' => new sfWidgetFormDate(), 'to_date' => new sfWidgetFormDate(), 'with_empty' => false)),
));
$this->setValidators(array(
'phone' => new sfValidatorPass(array('required' => false)),
'discount_id' => new sfValidatorDoctrineChoice(array('required' => false, 'model' => $this->getRelatedModelName('Discount'), 'column' => 'id')),
'order_id' => new sfValidatorDoctrineChoice(array('required' => false, 'model' => $this->getRelatedModelName('BasketOrder'), 'column' => 'id')),
'active_discount' => new sfValidatorSchemaFilter('text', new sfValidatorInteger(array('required' => false))),
'created_at' => new sfValidatorDateRange(array('required' => false, 'from_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 00:00:00')), 'to_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 23:59:59')))),
'updated_at' => new sfValidatorDateRange(array('required' => false, 'from_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 00:00:00')), 'to_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 23:59:59')))),
));
$this->widgetSchema->setNameFormat('discount_phone_filters[%s]');
$this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);
$this->setupInheritance();
parent::setup();
}
public function getModelName()
{
return 'DiscountPhone';
}
public function getFields()
{
return array(
'id' => 'Number',
'phone' => 'Text',
'discount_id' => 'ForeignKey',
'order_id' => 'ForeignKey',
'active_discount' => 'Number',
'created_at' => 'Date',
'updated_at' => 'Date',
);
}
}
...@@ -21,7 +21,6 @@ abstract class BaseOfferFormFilter extends BaseFormFilterDoctrine ...@@ -21,7 +21,6 @@ abstract class BaseOfferFormFilter extends BaseFormFilterDoctrine
'is_delete' => new sfWidgetFormChoice(array('choices' => array('' => 'yes or no', 1 => 'yes', 0 => 'no'))), 'is_delete' => new sfWidgetFormChoice(array('choices' => array('' => 'yes or no', 1 => 'yes', 0 => 'no'))),
'is_wholesale' => new sfWidgetFormChoice(array('choices' => array('' => 'yes or no', 1 => 'yes', 0 => 'no'))), 'is_wholesale' => new sfWidgetFormChoice(array('choices' => array('' => 'yes or no', 1 => 'yes', 0 => 'no'))),
'sort' => new sfWidgetFormFilterInput(), 'sort' => new sfWidgetFormFilterInput(),
'discount_available' => new sfWidgetFormChoice(array('choices' => array('' => 'yes or no', 1 => 'yes', 0 => 'no'))),
'created_at' => new sfWidgetFormFilterDate(array('from_date' => new sfWidgetFormDate(), 'to_date' => new sfWidgetFormDate(), 'with_empty' => false)), 'created_at' => new sfWidgetFormFilterDate(array('from_date' => new sfWidgetFormDate(), 'to_date' => new sfWidgetFormDate(), 'with_empty' => false)),
'updated_at' => new sfWidgetFormFilterDate(array('from_date' => new sfWidgetFormDate(), 'to_date' => new sfWidgetFormDate(), 'with_empty' => false)), 'updated_at' => new sfWidgetFormFilterDate(array('from_date' => new sfWidgetFormDate(), 'to_date' => new sfWidgetFormDate(), 'with_empty' => false)),
)); ));
...@@ -35,7 +34,6 @@ abstract class BaseOfferFormFilter extends BaseFormFilterDoctrine ...@@ -35,7 +34,6 @@ abstract class BaseOfferFormFilter extends BaseFormFilterDoctrine
'is_delete' => new sfValidatorChoice(array('required' => false, 'choices' => array('', 1, 0))), 'is_delete' => new sfValidatorChoice(array('required' => false, 'choices' => array('', 1, 0))),
'is_wholesale' => new sfValidatorChoice(array('required' => false, 'choices' => array('', 1, 0))), 'is_wholesale' => new sfValidatorChoice(array('required' => false, 'choices' => array('', 1, 0))),
'sort' => new sfValidatorSchemaFilter('text', new sfValidatorInteger(array('required' => false))), 'sort' => new sfValidatorSchemaFilter('text', new sfValidatorInteger(array('required' => false))),
'discount_available' => new sfValidatorChoice(array('required' => false, 'choices' => array('', 1, 0))),
'created_at' => new sfValidatorDateRange(array('required' => false, 'from_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 00:00:00')), 'to_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 23:59:59')))), 'created_at' => new sfValidatorDateRange(array('required' => false, 'from_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 00:00:00')), 'to_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 23:59:59')))),
'updated_at' => new sfValidatorDateRange(array('required' => false, 'from_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 00:00:00')), 'to_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 23:59:59')))), 'updated_at' => new sfValidatorDateRange(array('required' => false, 'from_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 00:00:00')), 'to_date' => new sfValidatorDateTime(array('required' => false, 'datetime_output' => 'Y-m-d 23:59:59')))),
)); ));
...@@ -66,7 +64,6 @@ abstract class BaseOfferFormFilter extends BaseFormFilterDoctrine ...@@ -66,7 +64,6 @@ abstract class BaseOfferFormFilter extends BaseFormFilterDoctrine
'is_delete' => 'Boolean', 'is_delete' => 'Boolean',
'is_wholesale' => 'Boolean', 'is_wholesale' => 'Boolean',
'sort' => 'Number', 'sort' => 'Number',
'discount_available' => 'Boolean',
'created_at' => 'Date', 'created_at' => 'Date',
'updated_at' => 'Date', 'updated_at' => 'Date',
); );
......
<?php
/**
* OfferTranslation filter form base class.
*
* @package sf
* @subpackage filter
* @author Atma
* @version SVN: $Id: sfDoctrineFormFilterGeneratedTemplate.php 24171 2009-11-19 16:37:50Z Kris.Wallsmith $
*/
abstract class BaseOfferTranslationFormFilter extends BaseFormFilterDoctrine
{
public function setup()
{
$this->setWidgets(array(
'title' => new sfWidgetFormFilterInput(array('with_empty' => false)),
'quantity_type' => new sfWidgetFormFilterInput(array('with_empty' => false)),
));
$this->setValidators(array(
'title' => new sfValidatorPass(array('required' => false)),
'quantity_type' => new sfValidatorPass(array('required' => false)),
));
$this->widgetSchema->setNameFormat('offer_translation_filters[%s]');
$this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);
$this->setupInheritance();
parent::setup();
}
public function getModelName()
{
return 'OfferTranslation';
}
public function getFields()
{
return array(
'id' => 'Number',
'title' => 'Text',
'quantity_type' => 'Text',
'lang' => 'Text',
);
}
}
<?php <?php
/** /**
* offerTranslation filter form base class. * OfferTranslation filter form base class.
* *
* @package sf * @package sf
* @subpackage filter * @subpackage filter
* @author Atma * @author Atma
* @version SVN: $Id: sfDoctrineFormFilterGeneratedTemplate.php 24171 2009-11-19 16:37:50Z Kris.Wallsmith $ * @version SVN: $Id: sfDoctrineFormFilterGeneratedTemplate.php 24171 2009-11-19 16:37:50Z Kris.Wallsmith $
*/ */
abstract class BaseofferTranslationFormFilter extends BaseFormFilterDoctrine abstract class BaseOfferTranslationFormFilter extends BaseFormFilterDoctrine
{ {
public function setup() public function setup()
{ {
$this->setWidgets(array( $this->setWidgets(array(
'title' => new sfWidgetFormFilterInput(), 'title' => new sfWidgetFormFilterInput(array('with_empty' => false)),
'quantity_type' => new sfWidgetFormFilterInput(array('with_empty' => false)),
)); ));
$this->setValidators(array( $this->setValidators(array(
'title' => new sfValidatorPass(array('required' => false)), 'title' => new sfValidatorPass(array('required' => false)),
'quantity_type' => new sfValidatorPass(array('required' => false)),
)); ));
$this->widgetSchema->setNameFormat('offer_translation_filters[%s]'); $this->widgetSchema->setNameFormat('offer_translation_filters[%s]');
...@@ -31,15 +33,16 @@ abstract class BaseofferTranslationFormFilter extends BaseFormFilterDoctrine ...@@ -31,15 +33,16 @@ abstract class BaseofferTranslationFormFilter extends BaseFormFilterDoctrine
public function getModelName() public function getModelName()
{ {
return 'offerTranslation'; return 'OfferTranslation';
} }
public function getFields() public function getFields()
{ {
return array( return array(
'id' => 'Number', 'id' => 'Number',
'title' => 'Text', 'title' => 'Text',
'lang' => 'Text', 'quantity_type' => 'Text',
'lang' => 'Text',
); );
} }
} }
<?php <?php
/** /**
* offerTranslation filter form. * OfferTranslation filter form.
* *
* @package sf * @package sf
* @subpackage filter * @subpackage filter
* @author Atma * @author Atma
* @version SVN: $Id: sfDoctrineFormFilterTemplate.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $ * @version SVN: $Id: sfDoctrineFormFilterTemplate.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/ */
class offerTranslationFormFilter extends BaseofferTranslationFormFilter class OfferTranslationFormFilter extends BaseOfferTranslationFormFilter
{ {
public function configure() public function configure()
{ {
......
<?php
/**
* Discount form.
*
* @package sf
* @subpackage form
* @author Atma
* @version SVN: $Id: sfDoctrineFormTemplate.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class DiscountForm extends BaseDiscountForm
{
public function configure()
{
$this->useFields(array('title', 'utm', 'comment', 'url'));
}
}
<?php
/**
* DiscountPhone form.
*
* @package sf
* @subpackage form
* @author Atma
* @version SVN: $Id: sfDoctrineFormTemplate.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
class DiscountPhoneForm extends BaseDiscountPhoneForm
{
public function configure()
{
$this->useFields(array('phone', 'discount_id', 'order_id'));
}
public function isValid()
{
$is_valid = parent::isValid();
if ($is_valid) {
$dp = Doctrine_Query::create()
->from("DiscountPhone dp")
->where("dp.phone = ?", $this->getValue('phone'))
->andWhere("dp.id != ?", $this->getValue('id'))
->andWhere("dp.order_id is null")
->count();
if($dp > 0) {
$is_valid = false;
$this->getErrorSchema()->addError(new sfValidatorError($this->getValidator('phone'), 'Пользователь уже добавил скидку'), 'phone');
}
}
return $is_valid;
}
}
...@@ -13,7 +13,7 @@ class OfferForm extends BaseOfferForm ...@@ -13,7 +13,7 @@ class OfferForm extends BaseOfferForm
public function configure() public function configure()
{ {
$this->embedI18n(array('ru', 'en')); $this->embedI18n(array('ru', 'en'));
$this->useFields(array('ru', 'en', 'quantity_type_select', 'price', 'sort', 'discount_available', 'img', 'product_id')); $this->useFields(array('ru', 'en', 'quantity_type_select', 'price', 'sort', 'is_wholesale', 'img', 'product_id'));
$parentId = sfContext::getInstance()->getRequest()->getParameter('parentId'); $parentId = sfContext::getInstance()->getRequest()->getParameter('parentId');
if($parentId){ if($parentId){
...@@ -22,7 +22,7 @@ class OfferForm extends BaseOfferForm ...@@ -22,7 +22,7 @@ class OfferForm extends BaseOfferForm
$this->setDefault('product_id', $parentId); $this->setDefault('product_id', $parentId);
} }
} }
$this->widgetSchema['discount_available'] = new sfWidgetFormInputCheckbox(array('label' => 'Доступен со скидкой?'), array("required" => true)); $this->widgetSchema['is_wholesale'] = new sfWidgetFormInputCheckbox(array('label' => 'Чужой товар'), array("required" => true));
$this->widgetSchema['product_id'] = new sfWidgetFormInputHidden(); $this->widgetSchema['product_id'] = new sfWidgetFormInputHidden();
$this->widgetSchema['ru']['title'] = new sfWidgetFormInputText(array("label" => "Название"), array("size" => 64, "maxlength" => 255, "required" => true)); $this->widgetSchema['ru']['title'] = new sfWidgetFormInputText(array("label" => "Название"), array("size" => 64, "maxlength" => 255, "required" => true));
$this->widgetSchema['en']['title'] = new sfWidgetFormInputText(array("label" => "Название"), array("size" => 64, "maxlength" => 255, "required" => true)); $this->widgetSchema['en']['title'] = new sfWidgetFormInputText(array("label" => "Название"), array("size" => 64, "maxlength" => 255, "required" => true));
......
<?php
/**
* Discount form base class.
*
* @method Discount getObject() Returns the current form's model object
*
* @package sf
* @subpackage form
* @author Atma
* @version SVN: $Id: sfDoctrineFormGeneratedTemplate.php 24171 2009-11-19 16:37:50Z Kris.Wallsmith $
*/
abstract class BaseDiscountForm extends BaseFormDoctrine
{
public function setup()
{
$this->setWidgets(array(
'id' => new sfWidgetFormInputHidden(array(), array()),
'title' => new sfWidgetFormInputText(array(), array("size" => 64, "maxlength" => 255, "required" => true)),
'utm' => new sfWidgetFormInputText(array(), array("size" => 64, "maxlength" => 255, "required" => true)),
'comment' => new sfWidgetFormTextarea(array(), array("rows" => 5, "cols" => 70)),
'url' => new sfWidgetFormInputText(array(), array("size" => 20, "maxlength" => 20)),
'created_at' => new sfWidgetFormDateTime(array(), array("required" => true)),
'updated_at' => new sfWidgetFormDateTime(array(), array("required" => true)),
));
$this->setValidators(array(
'id' => new sfValidatorDoctrineChoice(array('model' => $this->getModelName(), 'column' => 'id', 'required' => false)),
'title' => new sfValidatorString(array('max_length' => 255)),
'utm' => new sfValidatorString(array('max_length' => 255)),
'comment' => new sfValidatorString(array('max_length' => 1000, 'required' => false)),
'url' => new sfValidatorString(array('max_length' => 20, 'required' => false)),
'created_at' => new sfValidatorDateTime(),
'updated_at' => new sfValidatorDateTime(),
));
$this->widgetSchema->setNameFormat('discount[%s]');
$this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);
$this->setupInheritance();
parent::setup();
}
public function getModelName()
{
return 'Discount';
}
}
<?php
/**
* DiscountPhone form base class.
*
* @method DiscountPhone getObject() Returns the current form's model object
*
* @package sf
* @subpackage form
* @author Atma
* @version SVN: $Id: sfDoctrineFormGeneratedTemplate.php 24171 2009-11-19 16:37:50Z Kris.Wallsmith $
*/
abstract class BaseDiscountPhoneForm extends BaseFormDoctrine
{
public function setup()
{
$this->setWidgets(array(
'id' => new sfWidgetFormInputHidden(array(), array()),
'phone' => new sfWidgetFormInputText(array(), array("size" => 20, "maxlength" => 20, "required" => true)),
'discount_id' => new sfWidgetFormDoctrineChoice(array('model' => $this->getRelatedModelName('Discount'), 'add_empty' => false), array("required" => true)),
'order_id' => new sfWidgetFormDoctrineChoice(array('model' => $this->getRelatedModelName('BasketOrder'), 'add_empty' => true), array()),
'active_discount' => new sfWidgetFormInputText(array(), array("size" => 8, "maxlength" => 8, "required" => true)),
'created_at' => new sfWidgetFormDateTime(array(), array("required" => true)),
'updated_at' => new sfWidgetFormDateTime(array(), array("required" => true)),
));
$this->setValidators(array(
'id' => new sfValidatorDoctrineChoice(array('model' => $this->getModelName(), 'column' => 'id', 'required' => false)),
'phone' => new sfValidatorString(array('max_length' => 20)),
'discount_id' => new sfValidatorDoctrineChoice(array('model' => $this->getRelatedModelName('Discount'))),
'order_id' => new sfValidatorDoctrineChoice(array('model' => $this->getRelatedModelName('BasketOrder'), 'required' => false)),
'active_discount' => new sfValidatorInteger(array('required' => false)),
'created_at' => new sfValidatorDateTime(),
'updated_at' => new sfValidatorDateTime(),
));
$this->widgetSchema->setNameFormat('discount_phone[%s]');
$this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);
$this->setupInheritance();
parent::setup();
}
public function getModelName()
{
return 'DiscountPhone';
}
}
...@@ -24,7 +24,6 @@ abstract class BaseOfferForm extends BaseFormDoctrine ...@@ -24,7 +24,6 @@ abstract class BaseOfferForm extends BaseFormDoctrine
'is_delete' => new sfWidgetFormInputCheckbox(array(), array("required" => true)), 'is_delete' => new sfWidgetFormInputCheckbox(array(), array("required" => true)),
'is_wholesale' => new sfWidgetFormInputCheckbox(array(), array("required" => true)), 'is_wholesale' => new sfWidgetFormInputCheckbox(array(), array("required" => true)),
'sort' => new sfWidgetFormInputText(array(), array("size" => 8, "maxlength" => 8)), 'sort' => new sfWidgetFormInputText(array(), array("size" => 8, "maxlength" => 8)),
'discount_available' => new sfWidgetFormInputCheckbox(array(), array()),
'created_at' => new sfWidgetFormDateTime(array(), array("required" => true)), 'created_at' => new sfWidgetFormDateTime(array(), array("required" => true)),
'updated_at' => new sfWidgetFormDateTime(array(), array("required" => true)), 'updated_at' => new sfWidgetFormDateTime(array(), array("required" => true)),
)); ));
...@@ -39,7 +38,6 @@ abstract class BaseOfferForm extends BaseFormDoctrine ...@@ -39,7 +38,6 @@ abstract class BaseOfferForm extends BaseFormDoctrine
'is_delete' => new sfValidatorBoolean(array('required' => false)), 'is_delete' => new sfValidatorBoolean(array('required' => false)),
'is_wholesale' => new sfValidatorBoolean(array('required' => false)), 'is_wholesale' => new sfValidatorBoolean(array('required' => false)),
'sort' => new sfValidatorInteger(array('required' => false)), 'sort' => new sfValidatorInteger(array('required' => false)),
'discount_available' => new sfValidatorBoolean(array('required' => false)),
'created_at' => new sfValidatorDateTime(), 'created_at' => new sfValidatorDateTime(),
'updated_at' => new sfValidatorDateTime(), 'updated_at' => new sfValidatorDateTime(),
)); ));
......
...@@ -22,6 +22,9 @@ class wwwBasketOrderForm extends BaseBasketOrderForm ...@@ -22,6 +22,9 @@ class wwwBasketOrderForm extends BaseBasketOrderForm
$this->validatorSchema['delivery_type'] = new sfValidatorChoice(array('choices' => array(0 => 'Самовывоз', 1 => 'Доставка по адресу'), 'required' => true)); $this->validatorSchema['delivery_type'] = new sfValidatorChoice(array('choices' => array(0 => 'Самовывоз', 1 => 'Доставка по адресу'), 'required' => true));
$this->validatorSchema['phone'] = new sfValidatorString(array('max_length' => 24, 'required' => true)); $this->validatorSchema['phone'] = new sfValidatorAnd(array(
new sfValidatorNumber(array('required' => true)),
new sfValidatorString(array('max_length' => 24, 'required' => true))
));
} }
} }
<?php
/**
* Discount
*
* This class has been auto-generated by the Doctrine ORM Framework
*
* @package sf
* @subpackage model
* @author Atma
* @version SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $
*/
class Discount extends BaseDiscount
{
public function save(Doctrine_Connection $conn = null) {
$save = parent::save($conn);
if ($this->getUrl() == '') {
$rand = Page::generate_rand_string(20);
$this->setUrl($rand);
}
return parent::save($conn);
}
}
<?php
/**
* DiscountPhone
*
* This class has been auto-generated by the Doctrine ORM Framework
*
* @package sf
* @subpackage model
* @author Atma
* @version SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $
*/
class DiscountPhone extends BaseDiscountPhone
{
}
<?php
class DiscountPhoneTable extends Doctrine_Table
{
public static function getInstance()
{
return Doctrine_Core::getTable('DiscountPhone');
}
}
\ No newline at end of file
<?php
class DiscountTable extends Doctrine_Table
{
public static function getInstance()
{
return Doctrine_Core::getTable('Discount');
}
}
\ No newline at end of file
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
* @property boolean $is_confirm_admin * @property boolean $is_confirm_admin
* @property boolean $is_payed * @property boolean $is_payed
* @property boolean $is_given * @property boolean $is_given
* @property DiscountPhone $DiscountPhone
* @property Doctrine_Collection $Basket * @property Doctrine_Collection $Basket
* *
* @method string getUsername() Returns the current record's "username" value * @method string getUsername() Returns the current record's "username" value
...@@ -32,7 +31,6 @@ ...@@ -32,7 +31,6 @@
* @method boolean getIsConfirmAdmin() Returns the current record's "is_confirm_admin" value * @method boolean getIsConfirmAdmin() Returns the current record's "is_confirm_admin" value
* @method boolean getIsPayed() Returns the current record's "is_payed" value * @method boolean getIsPayed() Returns the current record's "is_payed" value
* @method boolean getIsGiven() Returns the current record's "is_given" value * @method boolean getIsGiven() Returns the current record's "is_given" value
* @method DiscountPhone getDiscountPhone() Returns the current record's "DiscountPhone" value
* @method Doctrine_Collection getBasket() Returns the current record's "Basket" collection * @method Doctrine_Collection getBasket() Returns the current record's "Basket" collection
* @method BasketOrder setUsername() Sets the current record's "username" value * @method BasketOrder setUsername() Sets the current record's "username" value
* @method BasketOrder setPhone() Sets the current record's "phone" value * @method BasketOrder setPhone() Sets the current record's "phone" value
...@@ -46,7 +44,6 @@ ...@@ -46,7 +44,6 @@
* @method BasketOrder setIsConfirmAdmin() Sets the current record's "is_confirm_admin" value * @method BasketOrder setIsConfirmAdmin() Sets the current record's "is_confirm_admin" value
* @method BasketOrder setIsPayed() Sets the current record's "is_payed" value * @method BasketOrder setIsPayed() Sets the current record's "is_payed" value
* @method BasketOrder setIsGiven() Sets the current record's "is_given" value * @method BasketOrder setIsGiven() Sets the current record's "is_given" value
* @method BasketOrder setDiscountPhone() Sets the current record's "DiscountPhone" value
* @method BasketOrder setBasket() Sets the current record's "Basket" collection * @method BasketOrder setBasket() Sets the current record's "Basket" collection
* *
* @package sf * @package sf
...@@ -129,11 +126,6 @@ abstract class BaseBasketOrder extends sfDoctrineRecord ...@@ -129,11 +126,6 @@ abstract class BaseBasketOrder extends sfDoctrineRecord
public function setUp() public function setUp()
{ {
parent::setUp(); parent::setUp();
$this->hasOne('DiscountPhone', array(
'local' => 'id',
'foreign' => 'order_id',
'onDelete' => 'SET NULL'));
$this->hasMany('Basket', array( $this->hasMany('Basket', array(
'local' => 'id', 'local' => 'id',
'foreign' => 'basket_order_id')); 'foreign' => 'basket_order_id'));
......
<?php
/**
* BaseDiscount
*
* This class has been auto-generated by the Doctrine ORM Framework
*
* @property string $title
* @property string $utm
* @property string $comment
* @property string $url
* @property Doctrine_Collection $DiscountPhone
*
* @method string getTitle() Returns the current record's "title" value
* @method string getUtm() Returns the current record's "utm" value
* @method string getComment() Returns the current record's "comment" value
* @method string getUrl() Returns the current record's "url" value
* @method Doctrine_Collection getDiscountPhone() Returns the current record's "DiscountPhone" collection
* @method Discount setTitle() Sets the current record's "title" value
* @method Discount setUtm() Sets the current record's "utm" value
* @method Discount setComment() Sets the current record's "comment" value
* @method Discount setUrl() Sets the current record's "url" value
* @method Discount setDiscountPhone() Sets the current record's "DiscountPhone" collection
*
* @package sf
* @subpackage model
* @author Atma
* @version SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $
*/
abstract class BaseDiscount extends sfDoctrineRecord
{
public function setTableDefinition()
{
$this->setTableName('discount');
$this->hasColumn('title', 'string', 255, array(
'type' => 'string',
'notnull' => true,
'length' => 255,
));
$this->hasColumn('utm', 'string', 255, array(
'type' => 'string',
'notnull' => true,
'length' => 255,
));
$this->hasColumn('comment', 'string', 1000, array(
'type' => 'string',
'notnull' => false,
'length' => 1000,
));
$this->hasColumn('url', 'string', 20, array(
'type' => 'string',
'length' => 20,
));
}
public function setUp()
{
parent::setUp();
$this->hasMany('DiscountPhone', array(
'local' => 'id',
'foreign' => 'discount_id'));
$timestampable0 = new Doctrine_Template_Timestampable();
$this->actAs($timestampable0);
}
}
\ No newline at end of file
<?php
/**
* BaseDiscountPhone
*
* This class has been auto-generated by the Doctrine ORM Framework
*
* @property string $phone
* @property integer $discount_id
* @property string $order_id
* @property integer $active_discount
* @property BasketOrder $BasketOrder
* @property Discount $Discount
*
* @method string getPhone() Returns the current record's "phone" value
* @method integer getDiscountId() Returns the current record's "discount_id" value
* @method string getOrderId() Returns the current record's "order_id" value
* @method integer getActiveDiscount() Returns the current record's "active_discount" value
* @method BasketOrder getBasketOrder() Returns the current record's "BasketOrder" value
* @method Discount getDiscount() Returns the current record's "Discount" value
* @method DiscountPhone setPhone() Sets the current record's "phone" value
* @method DiscountPhone setDiscountId() Sets the current record's "discount_id" value
* @method DiscountPhone setOrderId() Sets the current record's "order_id" value
* @method DiscountPhone setActiveDiscount() Sets the current record's "active_discount" value
* @method DiscountPhone setBasketOrder() Sets the current record's "BasketOrder" value
* @method DiscountPhone setDiscount() Sets the current record's "Discount" value
*
* @package sf
* @subpackage model
* @author Atma
* @version SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $
*/
abstract class BaseDiscountPhone extends sfDoctrineRecord
{
public function setTableDefinition()
{
$this->setTableName('discount_phone');
$this->hasColumn('phone', 'string', 20, array(
'type' => 'string',
'notnull' => true,
'length' => 20,
));
$this->hasColumn('discount_id', 'integer', null, array(
'type' => 'integer',
'notnull' => true,
));
$this->hasColumn('order_id', 'string', 255, array(
'type' => 'string',
'notnull' => false,
'length' => 255,
));
$this->hasColumn('active_discount', 'integer', null, array(
'type' => 'integer',
'notnull' => true,
'default' => 3,
));
}
public function setUp()
{
parent::setUp();
$this->hasOne('BasketOrder', array(
'local' => 'order_id',
'foreign' => 'id',
'onDelete' => 'SET NULL'));
$this->hasOne('Discount', array(
'local' => 'discount_id',
'foreign' => 'id',
'onDelete' => 'CASCADE'));
$timestampable0 = new Doctrine_Template_Timestampable();
$this->actAs($timestampable0);
}
}
\ No newline at end of file
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
* @property boolean $is_delete * @property boolean $is_delete
* @property boolean $is_wholesale * @property boolean $is_wholesale
* @property integer $sort * @property integer $sort
* @property boolean $discount_available
* @property Product $Product * @property Product $Product
* @property Doctrine_Collection $BasketOffer * @property Doctrine_Collection $BasketOffer
* *
...@@ -29,7 +28,6 @@ ...@@ -29,7 +28,6 @@
* @method boolean getIsDelete() Returns the current record's "is_delete" value * @method boolean getIsDelete() Returns the current record's "is_delete" value
* @method boolean getIsWholesale() Returns the current record's "is_wholesale" value * @method boolean getIsWholesale() Returns the current record's "is_wholesale" value
* @method integer getSort() Returns the current record's "sort" value * @method integer getSort() Returns the current record's "sort" value
* @method boolean getDiscountAvailable() Returns the current record's "discount_available" value
* @method Product getProduct() Returns the current record's "Product" value * @method Product getProduct() Returns the current record's "Product" value
* @method Doctrine_Collection getBasketOffer() Returns the current record's "BasketOffer" collection * @method Doctrine_Collection getBasketOffer() Returns the current record's "BasketOffer" collection
* @method Offer setInnerId() Sets the current record's "inner_id" value * @method Offer setInnerId() Sets the current record's "inner_id" value
...@@ -42,7 +40,6 @@ ...@@ -42,7 +40,6 @@
* @method Offer setIsDelete() Sets the current record's "is_delete" value * @method Offer setIsDelete() Sets the current record's "is_delete" value
* @method Offer setIsWholesale() Sets the current record's "is_wholesale" value * @method Offer setIsWholesale() Sets the current record's "is_wholesale" value
* @method Offer setSort() Sets the current record's "sort" value * @method Offer setSort() Sets the current record's "sort" value
* @method Offer setDiscountAvailable() Sets the current record's "discount_available" value
* @method Offer setProduct() Sets the current record's "Product" value * @method Offer setProduct() Sets the current record's "Product" value
* @method Offer setBasketOffer() Sets the current record's "BasketOffer" collection * @method Offer setBasketOffer() Sets the current record's "BasketOffer" collection
* *
...@@ -103,10 +100,6 @@ abstract class BaseOffer extends sfDoctrineRecord ...@@ -103,10 +100,6 @@ abstract class BaseOffer extends sfDoctrineRecord
'type' => 'integer', 'type' => 'integer',
'default' => 0, 'default' => 0,
)); ));
$this->hasColumn('discount_available', 'boolean', null, array(
'type' => 'boolean',
'default' => false,
));
} }
public function setUp() public function setUp()
......
...@@ -222,19 +222,16 @@ class exchangeDeleteimageTask extends sfBaseTask ...@@ -222,19 +222,16 @@ class exchangeDeleteimageTask extends sfBaseTask
} }
$error = array(); $error = array();
$countDel = 0; $countDel = 0;
if (count($allImageInDir) > 0 ) { foreach ($allImageInDir as $item) {
foreach ($allImageInDir as $item) { if (file_exists($item)) {
if (file_exists($item)) { chmod($item, 0777);
chmod($item, 0777); unlink($item);
unlink($item); $countDel++;
$countDel++; }else {
}else { $error[] = 'file not found:' . $item;
$error[] = 'file not found:' . $item;
}
} }
} }
print_r($allImageInDir); print_r($allImageInDir);
$this->log('Count delete image: ' . $countDel); $this->log('Count delete image: ' . $countDel);
$this->log('Image delete done: [' . round((microtime(true) - $time_start) * 1000) . ' ms]'); $this->log('Image delete done: [' . round((microtime(true) - $time_start) * 1000) . ' ms]');
......
<?php
include(dirname(__FILE__).'/../../bootstrap/functional.php');
$browser = new sfTestFunctional(new sfBrowser());
$browser->
get('/discount/index')->
with('request')->begin()->
isParameter('module', 'discount')->
isParameter('action', 'index')->
end()->
with('response')->begin()->
isStatusCode(200)->
checkElement('body', '!/This is a temporary page/')->
end()
;
<?php
include(dirname(__FILE__).'/../../bootstrap/functional.php');
$browser = new sfTestFunctional(new sfBrowser());
$browser->
get('/discount_phone/index')->
with('request')->begin()->
isParameter('module', 'discount_phone')->
isParameter('action', 'index')->
end()->
with('response')->begin()->
isStatusCode(200)->
checkElement('body', '!/This is a temporary page/')->
end()
;
<?php
include(dirname(__FILE__).'/../../bootstrap/functional.php');
$browser = new sfTestFunctional(new sfBrowser());
$browser->
get('/discount/index')->
with('request')->begin()->
isParameter('module', 'discount')->
isParameter('action', 'index')->
end()->
with('response')->begin()->
isStatusCode(200)->
checkElement('body', '!/This is a temporary page/')->
end()
;
<?php <?php
require_once(dirname(__FILE__).'/../config/ProjectConfiguration.class.php'); require_once(dirname(__FILE__).'/../config/ProjectConfiguration.class.php');
$configuration = ProjectConfiguration::getApplicationConfiguration('arm', 'dev', true); $configuration = ProjectConfiguration::getApplicationConfiguration('arm', 'prod', false);
sfContext::createInstance($configuration)->dispatch(); sfContext::createInstance($configuration)->dispatch();
...@@ -399,41 +399,6 @@ ...@@ -399,41 +399,6 @@
font-family: 'robotoregular'; font-family: 'robotoregular';
} }
.product_offer table tr.discount::after {
content: '';
position: absolute;
width: 10px;
height: 10px;
left: -5px;
top: 5px;
background-repeat: no-repeat;
background-size: contain;
background-image: url(/i/percent_colored.svg);
}
.header_mobile.mobile.discount::after {
content: '';
width: 61px;
height: 137px;
position: absolute;
background-repeat: no-repeat;
background-size: contain;
right: 6px;
top: 96px;
z-index: -1;
}
.header_mobile.mobile.discount.d3::after {
background-image: url(/i/d3.svg);
}
.header_mobile.mobile.discount.d5::after {
background-image: url(/i/d5.svg);
}
.header_mobile.mobile.discount.d7::after {
background-image: url(/i/d7.svg);
}
.header_mobile.mobile.discount.d10::after {
background-image: url(/i/d10.svg);
}
.product__advantages__info__link { .product__advantages__info__link {
font-size: 20px; font-size: 20px;
} }
...@@ -478,7 +443,7 @@ ...@@ -478,7 +443,7 @@
height: auto; height: auto;
} }
.video { .video {
height: 62vw !important; height: 62vw;
} }
.article_wrap { .article_wrap {
...@@ -709,7 +674,6 @@ ...@@ -709,7 +674,6 @@
} }
.footer_table_main { .footer_table_main {
padding: 20px 0 20px; padding: 20px 0 20px;
border-top: 1px solid #ececec;
} }
.footer_table_main__policy { .footer_table_main__policy {
font-style: normal; font-style: normal;
...@@ -767,62 +731,8 @@ ...@@ -767,62 +731,8 @@
max-height: 10000px; max-height: 10000px;
} }
.overlay_discount__item {
height: 100%;
max-height: 510px;
}
.image_discount {
display: none;
}
.form_discount {
width: 100%;
max-height: 510px;
height: 100%;
}
.discount_available {
left: 13px !important;
}
.discount_available.show .discount_available_desc{
max-height: 100px;
padding: 5px 5px;
width: 100%;
}
.discount_available.show .discount_available_title {
border-radius: 0 0 4px 4px;
}
.discount_available.show:before {
background-image: url(/i/white_angle.svg);
transition: all 0s ease-in-out;
}
.basket_refresh {
position: relative;
overflow: visible;
z-index: 1;
}
.discount_form__title {
font-size: 21px;
}
} }
@media (min-width: 650px){
.catalog_category_child_item:hover .discount_available_desc{
max-height: 100px;
padding: 5px 5px;
width: 100%;
}
.catalog_category_child_item:hover .discount_available_title {
border-radius: 0 0 4px 4px;
}
.catalog_category_child_item:hover .discount_available:before {
background-image: url(/i/white_angle.svg);
transition: all 0s ease-in-out;
}
}
@media (min-width: 1100px) and (max-width: 1200px) { @media (min-width: 1100px) and (max-width: 1200px) {
.top_menu__elem{ .top_menu__elem{
......
...@@ -230,56 +230,22 @@ ...@@ -230,56 +230,22 @@
margin-bottom: 5px; margin-bottom: 5px;
margin-top: 8px; margin-top: 8px;
} }
.basket_btn::before { .basket_btn::before {
content: '';
background-image: url(/i/basket.svg);
width: 23px;
height: 25px;
display: inline-block;
position: absolute;
top: 50%;
left: 20px;
margin-top: -12px;
background-size: cover;
background-position: 100% 0;
transition: background-image 0.1s ease-in-out;
}
.basket_btn:not(.basket_btn_disabled):hover::before {
background-image: url(/i/basket-green.svg);
}
.top_right.discount::after {
width: 65px;
height: 148px;
background-size: contain;
background-repeat: no-repeat;
content: "";
position: absolute;
top: 75px;
right: 0;
z-index: -1;
}
.top_right.discount.d3::after {
background-image: url(/i/d3.svg);
}
.top_right.discount.d5::after {
background-image: url(/i/d5.svg);
}
.top_right.discount.d7::after {
background-image: url(/i/d7.svg);
}
.top_right.discount.d10::after {
background-image: url(/i/d10.svg);
}
.top_right.discount_basket::after {
content: ''; content: '';
width: 30px; background-image: url(/i/basket.svg);
height: 30px; width: 23px;
background-size: contain; height: 25px;
background-repeat: no-repeat; display: inline-block;
position: absolute; position: absolute;
top: 5px; top: 50%;
right: -10px; left: 20px;
background-image: url(/i/percent_white.svg); margin-top: -12px;
background-size: cover;
background-position: 100% 0;
transition: background-image 0.1s ease-in-out;
}
.basket_btn:not(.basket_btn_disabled):hover::before {
background-image: url(/i/basket-green.svg);
} }
.swicher_lang { .swicher_lang {
background-image: url(/i/switch-lang.svg); background-image: url(/i/switch-lang.svg);
...@@ -601,18 +567,7 @@ ...@@ -601,18 +567,7 @@
color: var(--green-color-text); color: var(--green-color-text);
} }
.product_offer table td { .product_offer table td {
padding: 12px 0 11px 10px; padding: 12px 10px 11px;
}
.product_offer table tr.discount::after {
content: '';
position: absolute;
width: 16px;
height: 16px;
left: -20px;
top: 5px;
background-repeat: no-repeat;
background-size: contain;
background-image: url(/i/percent_colored.svg);
} }
.product_offer table td:first-child { .product_offer table td:first-child {
padding-left: 0; padding-left: 0;
...@@ -773,58 +728,6 @@ ...@@ -773,58 +728,6 @@
display: inline-block; display: inline-block;
margin: 0 8px 30px; margin: 0 8px 30px;
} }
.catalog_category_child_item.discount {
}
.catalog_category_child_item .discount_available {
position: absolute;
color: #FFFFFF;
width: 150px;
left: 21px;
top: -5px;
z-index: 100;
}
.discount_available .discount_available_desc {
background-color: #FFFFFF;
color: #6a6a6a;
overflow: hidden;
max-height: 0px;
font-family: 'robotolight';
font-size: 12px;
padding: 0 5px;
box-shadow: 0 0 14px rgba(0,0,0,0.2);
transition: all 0.3s ease-in-out;
}
.discount_available .discount_available_title {
background-color: #fb8100;
color: #FFFFFF;
width: 150px;
border-radius: 0 4px 4px 4px;
padding: 7px 7px 7px 10px;
z-index: 100;
text-transform: uppercase;
font-family: 'robotobold';
font-size: 11px;
}
.catalog_category_child_item .discount_available::before {
content: '';
width: 14px;
height: 6px;
position: absolute;
background-size: contain;
background-repeat: no-repeat;
background-image: url(/i/orange_angle.svg);
left: -12px;
top: 0;
transition: all 0.48s ease-in-out;
}
.lending_product_area .catalog_category_child_item:nth-child(n+9) { .lending_product_area .catalog_category_child_item:nth-child(n+9) {
display: none; display: none;
} }
...@@ -1010,7 +913,6 @@ ...@@ -1010,7 +913,6 @@
background-image: url(/i/combined-shape-minus.svg); background-image: url(/i/combined-shape-minus.svg);
outline: none; outline: none;
padding: 0; padding: 0;
border-radius: 0;
} }
.product_counter_val { .product_counter_val {
width: 45px; width: 45px;
...@@ -1031,7 +933,6 @@ ...@@ -1031,7 +933,6 @@
height: 29px; height: 29px;
vertical-align: top; vertical-align: top;
float: left; float: left;
border-radius: 0px !important;
} }
.product_counter_plus { .product_counter_plus {
width: 23px; width: 23px;
...@@ -1062,7 +963,6 @@ ...@@ -1062,7 +963,6 @@
background-image: url(/i/combined-shape-plus.svg); background-image: url(/i/combined-shape-plus.svg);
outline: none; outline: none;
padding: 0; padding: 0;
border-radius: 0;
} }
.product_price_trigger { .product_price_trigger {
padding: 0; padding: 0;
...@@ -1825,18 +1725,6 @@ label.custom_checkbox input:checked + .after_checkbox { ...@@ -1825,18 +1725,6 @@ label.custom_checkbox input:checked + .after_checkbox {
background-position: center; background-position: center;
border: 1px solid #ececec; border: 1px solid #ececec;
} }
.basket_img.discount::after {
content: '';
position: absolute;
width: 30px;
height: 30px;
top: -10px;
right: -10px;
background-image: url(/i/percent_colored.svg);
background-repeat: no-repeat;
background-size: contain;
z-index: 100;
}
.basket_img__item{ .basket_img__item{
width:100%; width:100%;
height:100%; height:100%;
...@@ -1947,8 +1835,7 @@ label.custom_checkbox input:checked + .after_checkbox { ...@@ -1947,8 +1835,7 @@ label.custom_checkbox input:checked + .after_checkbox {
.basket_get{ .basket_get{
margin-bottom: 40px; margin-bottom: 40px;
} }
.basket_buyer__item { .basket_buyer__item{
position: relative;
display: inline-block; display: inline-block;
vertical-align: top; vertical-align: top;
} }
...@@ -2273,6 +2160,7 @@ h2{ ...@@ -2273,6 +2160,7 @@ h2{
display: inline-block; display: inline-block;
text-align: center; text-align: center;
vertical-align: middle; vertical-align: middle;
width: calc(100% - 5px);
} }
.review_file_overlay__item{ .review_file_overlay__item{
padding:20px; padding:20px;
...@@ -2352,13 +2240,11 @@ h2{ ...@@ -2352,13 +2240,11 @@ h2{
.search_active .search_overlay{ .search_active .search_overlay{
display: block; display: block;
} }
.search_active .body_wrapper, .search_active .body_wrapper{
.overlay_discount_active .body_wrapper {
-webkit-filter: blur(10px); -webkit-filter: blur(10px);
-moz-filter: blur(10px); -moz-filter: blur(10px);
filter: blur(10px); filter: blur(10px);
opacity: 0.4; opacity: 0.4;
transition: all 0.3s ease-in-out;
} }
.search_overlay__line__btn{ .search_overlay__line__btn{
margin-bottom: 0; margin-bottom: 0;
...@@ -2801,160 +2687,4 @@ h2{ ...@@ -2801,160 +2687,4 @@ h2{
.fotorama__stage__frame { .fotorama__stage__frame {
border: 1px solid #ececec !important; border: 1px solid #ececec !important;
}
.discount_form__checkbox {
max-width: 325px
}
.discount_form__checkbox label {
text-align: left;
}
.discount_form{
background: #fff;
margin: 0 auto;
border-radius: 0 2px 2px 0;
width: 100%;
max-width:400px;
margin: 0;
}
.discount_form input[type="text"]{
width:100%;
}
.discount_form__inp_wrap{
margin-bottom: 25px;
text-align:left;
}
.discount_form_done__title,
.discount_form_done .discount_form__process{
display:none;
}
.discount_form_done .discount_form_done__title{
display:block;
font-size: 20px;
color: var(--green-color-text);
font-family: 'robotolight';
}
.discount_form_done__title__base{
font-size:30px;
}
.discount_form__title{
font-size: 31px;
padding-bottom: 15px;
color: var(--green-color-text);
font-family: 'robotoregular';
}
.discount_form_head_text {
font-size: 18px;
font-family: 'robotoregular';
color: var(--green-color-text);
text-align: left;
padding: 25px 0 5px 0;
}
.discount_form_text {
font-size: 15px;
font-family: 'robotoregular';
text-align: left;
padding-bottom: 20px;
}
.discount_form__submit{
font-size: 15px;
font-size: 15px;
padding: 9px 23px;
cursor: pointer;
width: 100%;
}
.overlay_discount_active{
position: fixed;
background-image: url(/i/drops.png);
background-repeat: repeat;
background-size: cover;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1001;
text-align: center;
vertical-align: middle;
overflow-y: scroll;
}
.review_file_overlay{
z-index: 1001;
}
.overlay_discount{
display:none;
z-index:1002;
}
.overlay_discount_active {
display:block;
}
.video_overlay__close:hover{
opacity: 1;
}
.overlay_discount:after{
content: '';
display: inline-block;
height: 100%;
width: 0;
vertical-align: middle;
}
.overlay_discount__item{
display: inline-block;
text-align: center;
vertical-align: middle;
box-shadow: 0 0 35px rgba(0,0,0,0.3);
max-height: 400px;
}
.discount_error {
background-color: #FFFFFF;
padding: 35px 35px;
margin: 0 auto;
border-radius: 2px;
display: inline-block;
max-width: 400px;
width: 100%;
}
.image_discount {
width: 350px;
height: 400px;
background-repeat: no-repeat;
background-size: contain;
background-image: url(/i/discount-image.png);
display: inline-block;
border-radius: 2px 0 0 2px;
vertical-align: top;
}
.form_discount {
padding: 35px 40px;
width: 490px;
height: 100%;
vertical-align: top;
display: inline-block;
background-color: #FFFFFF;
border-radius: 0 2px 2px 0;
vertical-align: top;
max-height: 400px;
}
.phone_info {
position: absolute;
display: inherit;
margin-bottom: 10px;
font-size: 11px;
font-family: 'robotolight', Arial;
font-style: italic;
top: -17px;
left: 0;
}
.basket_discount {
display: block;
color: #979797;
font-size: 15px !important;
text-align: right;
position: absolute;
top: -15px;
right: 0;
}
.basket_item {
display: block;
text-align: right;
color: #074611;
} }
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="69px" height="150px" viewBox="0 0 69 150" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>Thermometer/10%</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M117.21503,63.4987836 L23.5878107,63.4987836 C6.43692308,63.4987836 0.404378698,66.4233743 0.404378698,48.0002754 L0.404378698,15.6778873 C0.404378698,-2.74629222 6.43692308,0.178298511 23.5878107,0.178298511 L117.21503,0.178298511 C134.365917,0.178298511 138.398462,-0.746292216 138.398462,17.6778873 L138.398462,46.0002754 C138.398462,64.4233743 134.365917,63.4987836 117.21503,63.4987836 Z" id="path-1"></path>
</defs>
<g id="Thermometer/10%" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-3" transform="translate(2.000000, 0.000000)">
<path d="M10,8.5 C4.75329488,8.5 0.5,12.7532949 0.5,18 L0.5,138 C0.5,143.246705 4.75329488,147.5 10,147.5 L55,147.5 C60.2467051,147.5 64.5,143.246705 64.5,138 L64.5,18 C64.5,12.7532949 60.2467051,8.5 55,8.5 L10,8.5 Z" id="Rectangle-2" stroke="#E9AA5C" fill="#EDB26C"></path>
<g id="Group-92" opacity="0.300000012" transform="translate(32.799999, 77.700001) rotate(-90.000000) translate(-32.799999, -77.700001) translate(-36.700001, 45.700001)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-74"></g>
<path d="M-23.19,-3.02720004 C-23.1105325,-2.88672243 -22.9455621,-2.78514631 -22.7363314,-2.7159881 C-22.5381657,-2.64574929 -22.2786391,-2.60036421 -21.9507101,-2.59928362 C5.58727811,-2.49122391 33.1323077,-2.48798212 60.6632544,-2.59171944 C76.8705917,-2.65223287 93.1352663,-3.14714631 109.33858,-3.06394034 C128.18645,-2.96452541 148.015089,-0.619629843 165.434556,2.66322396 C166.223195,2.81234635 167.073195,2.47628067 167.070178,2.14237619 C167.072189,1.97812544 167.070178,1.81603588 167.072189,1.65286573 C167.070178,1.38055527 166.67284,1.20225676 166.131657,1.09960004 C149.486746,-2.06330749 131.003018,-4.01918812 113.046391,-4.502215 C104.791834,-4.72265679 96.4507692,-4.36281798 88.2052663,-4.27528962 C79.5433136,-4.18235828 70.8753254,-4.14345678 62.2063314,-4.11428066 C34.0738462,-4.02026872 5.93532544,-4.11644186 -22.2082249,-4.19856723 C-23.056213,-4.20072843 -23.663787,-3.86358215 -23.4595858,-3.50158214 C-23.3680473,-3.34381497 -23.2805325,-3.18388661 -23.19,-3.02720004" id="Fill-73" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-22.0231361,2.25043589 C-1.80621302,1.81171349 18.5092899,1.66691349 38.6588166,0.880238846 C53.0937278,0.317247789 67.4069231,0.578752272 81.918284,1.0066687 C109.915976,1.83332543 137.628994,3.69411353 165.352071,5.69862104 C166.366036,5.77102104 167.11645,5.48142103 166.944438,5.02432849 C166.880059,4.85035236 166.814675,4.67529564 166.74929,4.50240012 C166.687929,4.33274638 166.250355,4.12743294 165.853018,4.09825682 C138.550414,2.15642395 111.18142,0.419904508 83.6343787,-0.437008943 C68.9952663,-0.89410149 54.245503,-1.31337314 39.6768047,-0.653128351 C19.2526627,0.271862713 -1.46420118,0.314005998 -21.9839053,0.759211977 C-22.7011243,0.774340336 -23.2563905,0.98073437 -23.2815385,1.30491348 C-23.2895858,1.42918214 -23.2976331,1.54804781 -23.3076923,1.67015528 C-23.3177515,1.80631051 -23.2362722,1.917612 -23.0954438,2.00297917 C-22.9063314,2.15426275 -22.5532544,2.26124186 -22.0231361,2.25043589" id="Fill-75" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M160.511598,12.9559107 C154.596805,12.6101197 148.749408,11.9261018 142.981479,11.2518092 C129.758698,9.70439426 116.74213,7.79497929 103.686331,5.98822104 C94.2377515,4.68069863 84.4713018,3.10842994 74.6143195,2.59514634 C68.5385799,2.27853141 62.3330769,2.37038216 56.2492899,2.43954037 C29.9284615,2.73994635 3.61467456,3.91023294 -22.4898817,5.19506282 C-23.2493491,5.23288371 -23.5068639,5.48574342 -23.4072781,5.74076432 C-23.4143195,5.7839882 -23.4133136,5.82937328 -23.3982249,5.87691955 C-23.3620118,5.99794642 -23.3247929,6.11789269 -23.2885799,6.23891956 C-23.1849704,6.57066285 -22.3259172,6.68088374 -21.7022485,6.65062703 C2.92763314,5.44468073 27.7043787,4.41919414 52.5102959,3.99235831 C58.676568,3.88537921 64.8730178,3.82162398 71.050355,3.96750458 C79.8199408,4.17497921 88.439645,5.51924193 96.8038462,6.64522404 C109.739941,8.38822706 122.584497,10.2652241 135.575917,11.9217794 C145.458047,13.1817555 155.688225,14.4914391 165.963669,14.7842809 C166.881065,14.8091347 167.655621,14.3044958 167.085266,13.9489794 C165.36213,12.8770272 163.409645,13.1244839 160.511598,12.9559107" id="Fill-76" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-22.2152663,16.7790631 C-13.9949112,15.9859048 -5.81881657,15.0922511 2.2687574,14.0862152 C4.90325444,13.7577137 18.2125444,12.697648 18.2306509,10.8833256 C18.2618343,7.98624497 -17.6604734,10.313851 -22.6347337,10.5450988 C-23.1447337,10.5688719 -23.6456805,10.8552301 -23.5853254,11.0756719 C-23.5531361,11.1956182 -23.5219527,11.3155644 -23.4857396,11.4355107 C-23.4133136,11.7089018 -22.9616568,12.0503704 -22.2031953,12.0157913 C-14.981716,11.6829674 -7.74615385,11.4074152 -0.492485207,11.2107465 C2.48502959,11.1318629 5.46857988,11.0767525 8.45213018,11.0583823 C9.73467456,11.048657 11.0152071,11.0605435 12.2937278,11.0832361 C12.3852663,11.0853973 12.4788166,11.0908003 12.570355,11.0929614 C8.65733728,11.9812122 3.34307692,12.3399704 -0.629289941,12.8132719 C-7.98857988,13.6874749 -15.4233136,14.4546988 -22.8771598,15.1732959 C-23.3167456,15.2143586 -23.5823077,15.3267406 -23.712071,15.4650571 C-23.7191124,15.4715406 -23.7181065,15.4769436 -23.724142,15.481266 C-23.7392308,15.5007168 -23.7563314,15.5180063 -23.7643787,15.5352959 C-23.8036095,15.5871645 -23.8287574,15.6411944 -23.8307692,15.703869 C-23.8347929,15.8746033 -23.8388166,16.0442571 -23.845858,16.216072 C-23.8539053,16.5877974 -23.0260355,16.8557855 -22.2152663,16.7790631" id="Fill-77" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M64.8800592,50.8124668 C94.2498225,50.8686578 123.682959,51.5343056 153.039645,52.3090937 C153.915799,52.3317862 154.473077,51.9708668 154.308107,51.6185922 C154.233669,51.4565026 154.159231,51.2965742 154.082781,51.1366459 C153.965089,50.8848668 153.583846,50.7551951 153.151302,50.720616 C153.137219,50.7195354 153.125148,50.7195354 153.113077,50.7195354 C153.090947,50.7162936 153.064793,50.7130518 153.042663,50.7130518 C152.97929,50.7076489 152.919941,50.7011653 152.850533,50.6990041 C123.932426,49.9317802 94.9308284,49.3795951 66.0026627,49.3115175 C47.8488757,49.2682936 29.8912426,50.0257921 11.7917751,50.3759056 C-3.68627219,50.6763115 -19.1854438,50.8632548 -34.6886391,50.9648309 C-35.4380473,50.9702339 -35.927929,51.1852727 -35.9963314,51.5051295 C-36.024497,51.6261563 -36.049645,51.7482638 -36.0788166,51.8703713 C-36.1421893,52.1632131 -35.4672189,52.4614578 -34.8053254,52.4571355 C-19.7578107,52.3706877 -4.71733728,52.1696966 10.3060355,51.8930638 C28.526213,51.5580787 46.607574,50.7789683 64.8800592,50.8124668" id="Fill-78" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-35.0588166,42.6107352 C-18.478284,45.8708965 -0.0297633136,47.9402398 17.9208284,48.5302458 C26.170355,48.8014757 34.5184615,48.4924249 42.7679882,48.454604 C51.4339645,48.4146219 60.1049704,48.4286697 68.7749704,48.4513622 C96.9114793,48.5302458 125.053018,48.7971533 153.19858,49.0510936 C154.044556,49.0586578 154.660178,48.7236727 154.463018,48.3605921 C154.375503,48.2028249 154.29,48.0439772 154.204497,47.88621 C154.12503,47.7435712 153.962071,47.6419951 153.756864,47.5728368 C153.559704,47.4993562 153.302189,47.45181 152.970237,47.4485682 C125.432249,47.1751771 97.8821893,47.0022816 70.3482249,46.939607 C54.1368639,46.9017861 37.8591124,47.2972846 21.6568047,47.1157443 C2.80893491,46.9039473 -16.972426,44.4380248 -34.3285207,41.0481919 C-35.1171598,40.8947472 -35.9721893,41.227571 -35.9772189,41.5603949 C-35.9792308,41.7246457 -35.9832544,41.8867352 -35.9872781,42.0499054 C-35.9943195,42.3222158 -35.5969822,42.5037561 -35.0588166,42.6107352" id="Fill-79" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M153.14426,42.6020905 C132.91426,42.9176248 112.593728,42.9392367 92.4230769,43.6016427 C77.9781065,44.0771054 63.667929,43.7280726 49.1636095,43.2126278 C21.1779882,42.2163173 -6.49881657,40.1880367 -34.1836686,38.0171172 C-35.2006509,37.9360725 -35.9560947,38.2202695 -35.7931361,38.6806038 C-35.7297633,38.8545799 -35.6673964,39.0285561 -35.6080473,39.2025322 C-35.5466864,39.3721859 -35.114142,39.5818218 -34.7208284,39.6120785 C-7.45242604,41.7214039 19.8833728,43.6221741 47.4173373,44.6465801 C62.0494083,45.1922816 76.7931361,45.7001622 91.3789349,45.1296069 C111.822189,44.3288845 132.543077,44.4131711 153.076864,44.0933144 C153.792071,44.0814278 154.349349,43.8793562 154.381538,43.5530159 C154.393609,43.431989 154.403669,43.3109621 154.41574,43.1877741 C154.429822,43.0526994 154.351361,42.9424785 154.212544,42.8538696 C154.025444,42.702586 153.674379,42.5934457 153.14426,42.6020905" id="Fill-80" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-29.1963314,30.7890037 C-23.2885799,31.171535 -17.4512426,31.890132 -11.6984024,32.6011649 C1.49319527,34.2263828 14.4735503,36.215762 27.4951479,38.1003232 C36.9195858,39.4640367 46.6528402,41.0968188 56.5007692,41.6695352 C62.5724852,42.0228905 68.7789941,41.9699412 74.863787,41.9386039 C101.193669,41.7948845 127.537633,40.787768 153.668343,39.6607053 C154.428817,39.6272068 154.690355,39.3765083 154.598817,39.1204068 C154.605858,39.0771829 154.608876,39.0317979 154.589763,38.9842516 C154.559586,38.8632247 154.524379,38.744359 154.490178,38.6222516 C154.392604,38.2905083 153.534556,38.1738038 152.914911,38.2008187 C128.255858,39.256562 103.458994,40.1318456 78.6329586,40.4073979 C72.4636686,40.4765561 66.2692308,40.5014098 60.0949112,40.3187889 C51.330355,40.0572844 42.7347929,38.6633143 34.3886982,37.4854635 C21.4888166,35.6657381 8.68248521,33.7098574 -4.28177515,31.9744186 C-14.1367456,30.6550096 -24.3387574,29.2826514 -34.6131953,28.9292962 C-35.5285799,28.8968782 -36.3142012,29.3971947 -35.7518935,29.7559529 C-34.0508876,30.8376305 -32.0883432,30.603141 -29.1963314,30.7890037" id="Fill-81" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M154.264852,25.7566633 C148.179053,25.28012 141.037041,26.4925498 135.155444,26.9928663 C120.135089,28.2712126 105.119763,29.5711708 90.1627811,30.9694634 C80.6256805,31.8609559 71.0845562,32.7870276 61.7114201,33.9400246 C58.4110059,34.3463291 54.8842604,34.74615 51.8705325,35.47015 C51.0798817,35.6581739 49.8476331,36.0288187 49.9260947,36.499959 C50.1926627,38.1986575 58.4029586,38.0635829 61.0797041,38.1457083 C77.9167456,38.6546695 94.9157396,38.3272486 111.71858,38.1046456 C125.617337,37.9198635 139.511065,37.6702456 153.386686,37.3503889 C154.078757,37.3341799 154.695385,37.1396724 154.694379,36.8122515 C154.693373,36.6890635 154.693373,36.5680366 154.690355,36.4459291 C154.693373,36.1606515 154.131065,35.842956 153.421893,35.8602456 C125.480533,36.4967172 97.376213,37.0921262 69.3352663,36.8046874 C66.2702367,36.7755112 63.206213,36.7182396 60.1452071,36.6199053 C58.9743195,36.5820844 57.7994083,36.5312963 56.6325444,36.4675411 C56.1285799,36.4405262 55.7513609,36.4037859 55.4495858,36.3767709 C56.8880473,36.132556 58.8033136,35.8905023 59.6523077,35.7694754 C74.0570414,33.7249858 89.1327219,32.4163828 103.973018,31.0580723 C120.661183,29.5322693 137.433846,28.1588305 154.232663,26.8415827 C154.936805,26.7864722 155.21142,26.5487409 155.16716,26.3077677 C155.253669,26.0624722 155.001183,25.8150155 154.264852,25.7566633" id="Fill-82" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M154.260828,29.6889559 C154.702426,29.6489738 154.965976,29.5376723 155.098757,29.4004365 C155.105799,29.3939529 155.109822,29.3885499 155.11787,29.3831469 C155.127929,29.3658574 155.14503,29.3485678 155.158107,29.3301977 C155.192308,29.2794096 155.222485,29.2253797 155.221479,29.1627051 C155.230533,28.9919708 155.240592,28.822317 155.248639,28.6515827 C155.267751,28.2787767 154.440888,28.0064663 153.633136,28.0788663 C145.394675,28.822317 137.198462,29.6651827 129.088757,30.6225917 C126.447219,30.9316425 113.113787,31.9128246 113.060473,33.727147 C112.967929,36.6231471 148.944556,34.5138216 153.920828,34.3139112 C154.433846,34.2933798 154.94284,34.0091828 154.887515,33.7876604 C154.85432,33.6677142 154.825148,33.5456067 154.793964,33.426741 C154.72858,33.1544306 154.281953,32.8108007 153.521479,32.8399768 C146.292959,33.1284962 139.050355,33.3608246 131.788639,33.5110276 C128.813136,33.5758634 125.829586,33.6093619 122.842012,33.6126037 C121.561479,33.6136843 120.282959,33.593153 118.999408,33.5628963 C118.910888,33.5596545 118.817337,33.5531709 118.727811,33.5499291 C122.657929,32.6865321 127.975207,32.3601917 131.959645,31.9128246 C139.340059,31.0818455 146.791893,30.3600066 154.260828,29.6889559" id="Fill-83" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-26.5034911,27.8184424 C-19.4127811,28.3349678 -12.3613018,28.994132 -5.34502959,29.6878753 C7.96627219,31.0029619 21.4526036,33.649344 35.1753254,33.0247589 C43.4560355,32.6487112 51.5214793,31.7474932 59.5989941,30.9424484 C69.3926036,29.9666693 79.2445562,29.0978693 89.1105917,28.2528424 C97.5281065,27.5320842 105.961716,26.8383409 114.399349,26.1575648 C117.326568,25.9219946 120.917692,25.8636424 123.751361,25.4011468 C124.025976,25.3892603 124.241243,25.3406334 124.401183,25.2671528 C125.16568,25.0078095 124.798521,24.3497259 123.813728,24.2838095 C132.462604,24.4394155 141.112485,24.6004244 149.758343,24.7992543 C154.698402,24.9137976 159.943254,24.8694931 164.833018,25.2790394 C165.561302,25.3395528 166.58432,25.1558513 166.474675,24.757111 C166.420355,24.5734095 166.370059,24.389708 166.319763,24.2060065 C166.256391,23.9736781 165.986805,23.7024483 165.379231,23.6505796 C160.650414,23.2561617 155.642959,23.3004662 150.872899,23.2075348 C141.436391,23.0249139 131.998876,22.8984841 122.563373,22.7763766 C108.514734,22.5937557 94.4640828,22.5029856 80.4204734,22.2922691 C79.7988166,22.2825438 79.4115385,22.4251826 79.2536095,22.6121259 C73.3951479,22.925499 67.4552071,23.6819169 61.9045562,24.0871408 C55.1810059,24.5777319 48.4383432,25.0348244 41.665503,25.4011468 C37.3189349,25.6356364 32.8466272,25.9176722 28.4497633,25.6280722 C7.76508876,24.2643587 -13.0443195,23.2388722 -33.7913609,22.129099 C-34.6614793,22.0837139 -35.2167456,22.4846154 -35.0557988,22.8196005 C-34.9753254,22.9827707 -34.8938462,23.1459408 -34.8173964,23.309111 C-34.6906509,23.5684542 -34.142426,23.7175766 -33.5871598,23.7456722 C-13.0664497,24.8197856 7.50053254,25.7998871 27.9659172,27.106329 C37.900355,27.74172 48.9181657,26.5098394 58.6152071,25.8452722 C68.1663905,25.191511 77.7014793,24.4739946 87.1963314,23.6840781 C97.9556213,23.8440065 108.714911,24.0212244 119.474201,24.2103289 C112.690296,24.2838095 105.878225,25.2304125 99.3226627,25.8009677 C80.5592899,27.4315887 61.9468047,29.3485678 43.194497,30.9899947 C35.7326036,31.6437559 28.2676923,31.9420007 20.7072189,31.160729 C14.015858,30.4691469 7.44621302,29.4739171 0.748816568,28.7628842 C-10.6693491,27.5515349 -22.7323077,26.1186633 -34.458284,25.8074513 C-35.684497,25.7750334 -36.0526627,26.3801677 -35.3998225,26.7518931 C-33.547929,27.8108782 -29.3331361,27.6120484 -26.5034911,27.8184424" id="Fill-84" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-33.8497041,20.0673198 C-29.1259172,20.4898333 -24.1174556,20.4779467 -19.3443787,20.6000542 C-9.91289941,20.8388661 -0.47739645,21.0225676 8.95710059,21.2008661 C20.4909467,21.4223885 32.0308284,21.5823169 43.5616568,21.7973557 C43.6069231,21.8114035 43.6481657,21.8254512 43.6964497,21.8362572 C43.7034911,21.8384184 43.7095266,21.839499 43.717574,21.8427408 C43.7819527,21.8578691 43.8553846,21.8708363 43.9278107,21.8805617 C43.9449112,21.8827229 43.9620118,21.8859647 43.9801183,21.8892065 C44.0253846,21.8935288 44.069645,21.8967706 44.117929,21.9000124 C44.1631953,21.9043348 44.2044379,21.9097378 44.2486982,21.911899 C46.0231361,21.9853796 47.8277515,21.9745736 49.642426,21.9140602 C50.1272781,21.9237856 50.6121302,21.9313497 51.0949704,21.9421557 C51.4923077,21.9497199 51.7860355,21.89569 51.9972781,21.8070811 C57.9321893,21.4677736 63.9515976,20.6573258 69.5686391,20.2121199 C76.2831361,19.6815467 83.011716,19.1823109 89.7775148,18.7749258 C94.1170414,18.5134213 98.5823077,18.2054512 102.985207,18.4669556 C123.692012,19.7064004 144.515503,20.6065378 165.279645,21.5888005 C166.153787,21.6287826 166.7,21.2246393 166.532012,20.8907348 C166.448521,20.7275646 166.36503,20.5654751 166.28355,20.4023049 C166.152781,20.1440422 165.599527,20.0003228 165.04426,19.9733079 C144.509467,19.0245437 123.924379,18.1687109 103.439882,16.9865377 C93.4933728,16.4127407 82.5037278,17.7094571 72.8227811,18.4334571 C63.9777515,19.0937019 55.1508284,19.8133795 46.3571006,20.5881676 C45.902426,20.5665557 45.4457396,20.5438631 44.9890533,20.5222512 C36.6751479,20.3482751 28.3602367,20.163493 20.0483432,19.9733079 C24.1273373,19.6026631 28.1731361,19.0947825 32.1263905,18.7262989 C50.8515385,16.9811347 69.4197633,14.9506929 88.135858,13.1947227 C95.5806509,12.4955764 103.040533,12.1519465 110.612071,12.8878331 C117.315503,13.5383525 123.906272,14.4946809 130.616746,15.1635705 C142.05503,16.3057616 154.14716,17.6673138 165.874142,17.9061258 C167.098343,17.9298989 167.452426,17.323684 166.797574,16.956281 C164.92355,15.9070213 160.711775,16.132866 157.878107,15.9437616 C150.780355,15.47046 143.716805,14.8523585 136.689467,14.2029197 C123.35503,12.9677973 109.818402,10.4035405 96.1107692,11.1113316 C87.8371006,11.5381674 79.7947929,12.4869316 71.7363905,13.3406033 C61.9649112,14.3779764 52.1330769,15.3051287 42.2861538,16.2128302 C33.8847337,16.9843765 25.4672189,17.7278273 17.0456805,18.4604721 C14.1224852,18.715493 10.5353846,18.7943765 7.71278107,19.2741616 C7.43514793,19.2871288 7.22289941,19.3379168 7.06497041,19.412478 C6.88088757,19.4762333 6.77224852,19.5648422 6.71491124,19.662096 C-0.993431953,19.4783945 -8.69976331,19.2828064 -16.4030769,19.0634452 C-12.0705917,18.7792482 -7.62242604,18.1081974 -3.72349112,17.7516004 C11.2666864,16.3814034 26.2498225,14.990675 41.179645,13.5016122 C50.6946154,12.5506869 60.2156213,11.5673435 69.5646154,10.3559943 C72.8559763,9.93023904 76.3706509,9.50988679 79.3692899,8.76751662 C80.1559172,8.57408975 81.3791124,8.19588079 81.2926036,7.72582108 C80.9898225,6.02604194 72.786568,6.21298523 70.1098225,6.1481494 C53.2647337,5.74076432 36.2768047,6.17084194 19.4820118,6.49502105 C5.59230769,6.76625091 -8.29236686,7.10015539 -22.1599408,7.50321809 C-22.8530178,7.52483003 -23.4626036,7.72149869 -23.4555621,8.05108079 C-23.4525444,8.17318825 -23.4515385,8.29421512 -23.4485207,8.41632259 C-23.4424852,8.70051961 -22.8731361,9.01497335 -22.1649704,8.994442 C5.75828402,8.18939721 33.8414793,7.42217331 61.8814201,7.53779719 C64.9454438,7.55076436 68.0094675,7.58750466 71.0724852,7.66530765 C72.2453846,7.69772556 73.4202959,7.74311063 74.5871598,7.79822108 C75.094142,7.82199422 75.4713609,7.85657332 75.7701183,7.88142705 C74.3407101,8.13536736 72.4304734,8.38930766 71.5824852,8.51465692 C57.2220118,10.6477555 42.1775148,12.0482092 27.3704142,13.4962093 C10.7144379,15.1235884 -6.02301775,16.599684 -22.7906509,18.0185079 C-23.4947929,18.0779407 -23.7643787,18.3189138 -23.7140828,18.5588064 C-23.7523077,18.6765915 -23.7080473,18.7932959 -23.5742604,18.8905497 C-26.8374556,18.8203109 -30.1278107,18.7252183 -33.2702959,18.4431825 C-33.9955621,18.3761855 -35.0195858,18.5555646 -34.9189941,18.9553855 C-34.871716,19.139087 -34.822426,19.3217079 -34.7771598,19.50649 C-34.7198225,19.7398989 -34.4522485,20.01329 -33.8497041,20.0673198" id="Fill-85" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M65.4011243,54.6939713 C36.0384024,54.8160788 6.59923077,54.3287295 -22.7665089,53.7333206 C-23.6406509,53.7149504 -24.1908876,54.0791116 -24.0178698,54.429225 C-23.9394083,54.590234 -23.8619527,54.751243 -23.7834911,54.9122519 C-23.663787,55.1629504 -23.2775148,55.2893803 -22.8439645,55.3217982 C-22.8308876,55.3228788 -22.8198225,55.3239594 -22.8067456,55.32504 C-22.7826036,55.3261206 -22.7604734,55.3282818 -22.7363314,55.3282818 C-22.6729586,55.3336848 -22.6126036,55.3401684 -22.5442012,55.3401684 C6.38195266,55.9334161 35.3895858,56.3094639 64.3127219,56.2014042 C82.4614793,56.1344072 100.398994,55.2666878 118.488402,54.8063534 C133.953373,54.4130161 149.446509,54.1331415 164.94568,53.933231 C165.691065,53.9256668 166.176923,53.7063056 166.241302,53.3886101 C166.26645,53.2643414 166.287574,53.1433146 166.314734,53.0212071 C166.373077,52.7272847 165.690059,52.4344429 165.028166,52.4430877 C149.989704,52.6224668 134.955266,52.9131474 119.939941,53.2805504 C101.729822,53.7257564 83.6726036,54.6150877 65.4011243,54.6939713" id="Fill-86" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M166.424379,62.8449148 C166.421361,62.5715237 166.02503,62.3932252 165.483846,62.2894879 C148.839941,59.1265804 130.354201,57.1717803 112.396568,56.6887535 C104.143018,56.4683117 95.8029586,56.8281505 87.5564497,56.9156788 C78.894497,57.0096908 70.2265089,57.0496729 61.5585207,57.0777684 C33.4260355,57.1706997 5.28550296,57.073446 -22.8550296,56.9924012 C-23.7040237,56.9913206 -24.3126036,57.3273863 -24.1094083,57.6904669 C-24.0188757,57.8482341 -23.9283432,58.0060012 -23.8388166,58.164849 C-23.7593491,58.3053266 -23.5923669,58.4058221 -23.3861538,58.4749804 C-23.1879882,58.5452192 -22.9284615,58.5916848 -22.5985207,58.5916848 C4.94147929,58.6997445 32.484497,58.7040669 60.0144379,58.6014102 C76.2217751,58.5387356 92.4874556,58.0427415 108.689763,58.1270281 C127.537633,58.2253624 147.366272,60.5724192 164.786746,63.8563536 C165.574379,64.0043954 166.424379,63.6672491 166.425385,63.3333446 C166.423373,63.1690939 166.424379,63.0080849 166.424379,62.8449148" id="Fill-87" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M165.205207,65.2892253 C137.901598,63.3452312 110.532604,61.610873 82.9855621,60.7539595 C68.3464497,60.2979476 53.5966864,59.8786759 39.0249704,60.5378401 C18.6028402,61.4628312 -2.11402367,61.5049745 -22.631716,61.9501804 C-23.3509467,61.9663894 -23.9052071,62.1717028 -23.930355,62.4980431 C-23.9373964,62.61907 -23.9464497,62.7400969 -23.9565089,62.8632849 C-23.967574,62.997279 -23.8850888,63.1074999 -23.7442604,63.1939476 C-23.5561538,63.3463118 -23.2010651,63.4532909 -22.6719527,63.4414043 C-2.45402367,63.0026819 17.8614793,62.8578819 38.0110059,62.0712073 C52.4459172,61.5082162 66.7601183,61.7708013 81.2704734,62.1987177 C109.266154,63.0242939 136.97716,64.8840014 164.703254,66.8895895 C165.722249,66.9609089 166.467633,66.6723895 166.297633,66.2152969 C166.231243,66.0413208 166.16787,65.8673447 166.101479,65.692288 C166.040118,65.5226342 165.601538,65.3173208 165.205207,65.2892253" id="Fill-88" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M159.862781,74.1468792 C153.947988,73.8010881 148.100592,73.1170702 142.331657,72.4416971 C129.109882,70.8953627 116.097337,68.9848671 103.035503,67.1802701 C93.5889349,65.8727477 83.8204734,64.300479 73.9675148,63.7861148 C67.8887574,63.4694999 61.6852663,63.56027 55.6014793,63.6305088 C29.279645,63.9319954 2.96686391,65.1001208 -23.1397041,66.3860313 C-23.8981657,66.4249328 -24.1546746,66.6777925 -24.0560947,66.9328134 C-24.0621302,66.9760373 -24.0621302,67.0203417 -24.0470414,67.067888 C-24.0088166,67.1889149 -23.9736095,67.3099417 -23.9353846,67.429888 C-23.8307692,67.7627119 -22.9747337,67.8729328 -22.3530769,67.8426761 C2.27680473,66.6356492 27.0515385,65.6112432 51.8614793,65.1833268 C58.0297633,65.0774283 64.2211834,65.0125924 70.4025444,65.1595536 C79.1681065,65.3659477 87.7918343,66.711291 96.1550296,67.8372731 C109.093136,69.5791955 121.93568,71.4572732 134.929112,73.1116672 C144.812249,74.3716434 155.039408,75.6824076 165.314852,75.9741688 C166.232249,76.0011837 167.006805,75.4965449 166.437456,75.1410285 C164.716331,74.0690762 162.760828,74.3154523 159.862781,74.1468792" id="Fill-89" fill="#E09637" mask="url(#mask-2)"></path>
</g>
<g id="Group-2" transform="translate(10.000000, 0.000000)">
<g id="2" transform="translate(40.000000, 0.000000)">
<circle id="Oval-2" stroke="#E9AA5C" fill="#79450E" cx="2.5" cy="13.5" r="2.5"></circle>
<path d="M1,0 L4,0 L4,13.5 C4,14.3284271 3.32842712,15 2.5,15 L2.5,15 C1.67157288,15 1,14.3284271 1,13.5 L1,0 Z" id="Rectangle-3" fill="#9CA0A4"></path>
</g>
<g id="1">
<circle id="Oval-2" stroke="#E9AA5C" fill="#79450E" cx="2.5" cy="13.5" r="2.5"></circle>
<path d="M1,0 L4,0 L4,13.5 C4,14.3284271 3.32842712,15 2.5,15 L2.5,15 C1.67157288,15 1,14.3284271 1,13.5 L1,0 Z" id="Rectangle-3" fill="#9CA0A4"></path>
</g>
</g>
</g>
<g id="Thermometer/" transform="translate(2.000000, 23.000000)">
<path d="M15.38,-0.32 C16.932,-0.32 17.604,0.736 17.604,1.712 C17.604,2.56 17.092,3.344 16.308,3.344 C16.02,3.344 15.54,3.152 15.364,2.704 C16.324,2.304 16.404,0.768 15.156,0.768 C13.764,0.768 12.308,3.84 12.308,7.184 C12.308,9.072 12.948,10.64 14.564,10.64 C15.412,10.64 16.372,10.4 17.428,9.808 C17.604,9.888 17.7,10.032 17.7,10.192 C17.7,10.304 17.668,10.432 17.556,10.544 C16.42,11.68 15.012,12.128 13.668,12.128 C11.156,12.128 10.052,9.92 10.052,7.456 C10.052,3.376 12.452,-0.32 15.38,-0.32 Z M20.212,4.8 L19.652,7.536 L19.748,7.504 C20.516,7.264 21.588,5.808 21.972,4.096 C22.228,3.968 22.5,3.92 22.74,3.92 C23.284,3.92 23.572,4.272 23.572,4.672 C23.572,5.632 22.324,7.04 21.332,7.712 C21.556,8.608 22.004,10.48 23.156,10.48 C23.476,10.48 23.828,10.192 24.244,9.808 C24.42,9.888 24.516,10.032 24.516,10.192 C24.516,10.304 24.468,10.432 24.372,10.544 C23.796,11.248 22.692,12.128 22.02,12.128 C20.42,12.128 20.004,9.568 19.764,8.32 L19.476,8.4 L18.916,11.12 C18.756,11.856 18.148,12.128 17.572,12.128 C17.284,12.128 17.012,12.048 16.82,11.92 L18.132,5.776 C18.196,5.504 18.116,5.376 17.972,5.376 C17.892,5.376 17.796,5.44 17.652,5.568 C17.444,5.44 17.332,4.944 17.652,4.688 C18.196,4.256 18.772,3.92 19.444,3.92 C20.02,3.92 20.34,4.176 20.212,4.8 Z M24.196,9.056 L24.948,5.776 C25.012,5.52 24.932,5.376 24.788,5.376 C24.708,5.376 24.612,5.44 24.468,5.568 C24.26,5.44 24.148,4.944 24.468,4.688 C25.012,4.256 25.588,3.92 26.26,3.92 C26.836,3.92 27.172,4.192 27.028,4.8 L26.052,9.344 C25.908,10 26.116,10.288 26.596,10.288 C27.156,10.288 27.636,9.968 28.068,9.456 L29.028,4.928 C29.188,4.192 29.796,3.92 30.372,3.92 C30.66,3.92 30.932,4 31.124,4.128 L30.004,9.424 C29.812,10.32 30.068,10.608 30.484,10.608 C31.076,10.608 31.764,10.208 32.164,9.808 C32.34,9.888 32.436,10.032 32.436,10.192 C32.436,10.304 32.388,10.432 32.292,10.544 C31.54,11.392 30.388,12.128 29.524,12.128 C28.74,12.128 27.956,11.728 28.036,10.32 C27.396,11.36 26.612,12.128 25.7,12.128 C23.924,12.128 23.924,10.256 24.196,9.056 Z M40.324,10.528 C40.036,10.784 38.948,11.504 37.812,12.032 C37.092,15.008 35.972,18.16 33.204,18.16 C32.228,18.16 31.316,17.52 31.316,16.192 C31.316,14.208 33.812,12.688 35.972,11.888 C36.084,11.488 36.196,11.088 36.324,10.64 C35.668,11.52 34.852,12.128 33.988,12.128 C32.324,12.128 31.988,10.464 31.988,9.44 C31.988,6.64 33.796,3.856 36.02,3.856 C36.74,3.856 37.252,4.032 37.652,4.384 C37.924,4.064 38.356,3.92 38.756,3.92 C39.044,3.92 39.316,4 39.508,4.128 L38.164,10.464 C38.116,10.688 38.068,10.912 38.02,11.12 C38.9,10.688 39.748,10.208 40.308,9.728 C40.548,9.936 40.596,10.288 40.324,10.528 Z M36.452,9.472 L37.348,5.184 C37.076,5.088 36.836,5.056 36.596,5.056 C34.66,5.056 33.972,7.584 33.972,9.328 C33.972,10.128 34.34,10.48 34.836,10.48 C35.348,10.48 36.02,10.064 36.452,9.472 Z M33.06,16.736 C34.164,16.736 34.82,15.632 35.636,13.008 C33.876,13.712 32.404,14.912 32.404,15.984 C32.404,16.544 32.852,16.736 33.06,16.736 Z M42.932,4.8 L42.372,7.536 L42.468,7.504 C43.236,7.264 44.308,5.808 44.692,4.096 C44.948,3.968 45.22,3.92 45.46,3.92 C46.004,3.92 46.292,4.272 46.292,4.672 C46.292,5.632 45.044,7.04 44.052,7.712 C44.276,8.608 44.724,10.48 45.876,10.48 C46.196,10.48 46.548,10.192 46.964,9.808 C47.14,9.888 47.236,10.032 47.236,10.192 C47.236,10.304 47.188,10.432 47.092,10.544 C46.516,11.248 45.412,12.128 44.74,12.128 C43.14,12.128 42.724,9.568 42.484,8.32 L42.196,8.4 L41.636,11.12 C41.476,11.856 40.868,12.128 40.292,12.128 C40.004,12.128 39.732,12.048 39.54,11.92 L40.852,5.776 C40.916,5.504 40.836,5.376 40.692,5.376 C40.612,5.376 40.516,5.44 40.372,5.568 C40.164,5.44 40.052,4.944 40.372,4.688 C40.916,4.256 41.492,3.92 42.164,3.92 C42.74,3.92 43.06,4.176 42.932,4.8 Z M50.82,3.856 C51.54,3.856 52.068,4.032 52.468,4.384 C52.74,4.064 53.156,3.92 53.556,3.92 C53.844,3.92 54.116,4 54.308,4.128 L53.188,9.424 C52.996,10.32 53.252,10.608 53.668,10.608 C54.26,10.608 54.948,10.208 55.348,9.808 C55.524,9.888 55.62,10.032 55.62,10.192 C55.62,10.304 55.572,10.432 55.476,10.544 C54.724,11.392 53.572,12.128 52.708,12.128 C51.956,12.128 51.204,11.776 51.22,10.512 C50.548,11.456 49.7,12.128 48.788,12.128 C47.124,12.128 46.788,10.464 46.788,9.44 C46.788,6.64 48.596,3.856 50.82,3.856 Z M51.252,9.472 L52.148,5.184 C51.876,5.088 51.636,5.056 51.396,5.056 C49.46,5.056 48.772,7.584 48.772,9.328 C48.772,10.128 49.14,10.48 49.636,10.48 C50.148,10.48 50.82,10.064 51.252,9.472 Z" id="Cкидка" fill="#644A32"></path>
<g id="thermometer/3%" transform="translate(10.000000, 25.000000)">
<g id="thermometer" transform="translate(17.000000, 0.000000)">
<path d="M21.1586785,63.3083354 L21.1586785,8.12195722 C21.1586785,3.91250744 17.7462186,0.5 13.5367213,0.5 C9.32722391,0.5 5.91476404,3.91250744 5.91476404,8.12195722 L5.91476404,63.3068601 C5.91476404,64.2094636 5.55540691,65.0653964 4.904219,65.6417948 C1.65032386,68.5212664 0.0122455548,72.7916526 0.628839471,77.2478412 C1.43032398,83.0406679 6.19464185,87.6818983 12.0116702,88.3408974 C19.8271746,89.226472 26.5734805,83.1618122 26.5734805,75.3907876 C26.5734805,71.6177495 24.9544916,68.1099891 22.1761817,65.6479625 C21.5218366,65.0681192 21.1586785,64.211064 21.1586785,63.3083354 Z" id="Shape" stroke="#E9AA5C" fill="#F1F0F0" fill-rule="nonzero"></path>
<g id="Group" transform="translate(5.343824, 5.409393)" fill="#DADFE5" fill-rule="nonzero">
<path d="M10.9277262,59.8673105 L10.9277262,2.8520658 C10.9277262,1.50348781 10.0061624,0.253590265 8.67512396,0.0370506373 C6.97886955,-0.238828389 5.51308806,1.06303211 5.51308806,2.70732357 L5.51308806,59.864196 C5.51308806,61.2404766 4.79544197,62.4923412 3.65733853,63.2660483 C1.09066367,65.0106594 -0.425113726,68.1820388 0.264993642,71.6460171 C0.882811854,74.7469105 3.37227993,77.2675235 6.46710822,77.9145197 C11.718645,79.0122986 16.3423643,75.0341001 16.3423643,69.9759901 C16.3423643,67.1555655 14.9021545,64.6764245 12.7187269,63.2224453 C11.5968517,62.4754573 10.9277262,61.2152328 10.9277262,59.8673105 Z" id="Shape"></path>
</g>
<path d="M10.8569123,7.70723711 L10.8569123,65.1649045 C10.8569123,66.5411851 10.1392662,67.7932137 9.00116281,68.5667568 C6.43448795,70.3115318 4.91871055,73.4827473 5.60881792,76.9467257 C6.22663613,80.047619 8.71610421,82.5682321 11.8109325,83.2152283 C17.0623053,84.3130071 21.6860247,80.3348086 21.6860247,75.2766986 C21.6860247,72.4562741 20.2458149,69.9769691 18.0623873,68.5231538 C16.940512,67.7761659 16.2713866,66.5159413 16.2713866,65.168019 L16.2713866,7.70723711 C16.2713866,6.21207134 15.0593152,5 13.5641494,5 L13.5641494,5 C12.0689837,5 10.8569123,6.21207134 10.8569123,7.70723711 Z" id="Shape" fill="#FE6E01" fill-rule="nonzero"></path>
<path d="M14.1483033,77.3961554 C14.1483033,77.1014648 14.2053669,76.8275578 14.3194958,76.5744262 C14.4336246,76.3212945 14.5910414,76.0983909 14.7917508,75.9057085 C14.9924602,75.7130262 15.2246499,75.5619051 15.4883269,75.4523407 C15.752004,75.3427762 16.0373219,75.2879948 16.3442892,75.2879948 C16.6512565,75.2879948 16.9365744,75.3427762 17.2002514,75.4523407 C17.4639284,75.5619051 17.6961182,75.7130262 17.8968275,75.9057085 C18.0975369,76.0983909 18.2549537,76.3212945 18.3690826,76.5744262 C18.4832114,76.8275578 18.540275,77.1014648 18.540275,77.3961554 C18.540275,77.690846 18.4832114,77.9647531 18.3690826,78.2178847 C18.2549537,78.4710164 18.0975369,78.69392 17.8968275,78.8866023 C17.6961182,79.0792846 17.4639284,79.2304058 17.2002514,79.3399702 C16.9365744,79.4495347 16.6512565,79.5043161 16.3442892,79.5043161 C16.0373219,79.5043161 15.752004,79.4495347 15.4883269,79.3399702 C15.2246499,79.2304058 14.9924602,79.0792846 14.7917508,78.8866023 C14.5910414,78.69392 14.4336246,78.4710164 14.3194958,78.2178847 C14.2053669,77.9647531 14.1483033,77.690846 14.1483033,77.3961554 Z M17.406863,77.3961554 C17.406863,77.109021 17.3045421,76.8672272 17.0998972,76.6707668 C16.8952523,76.4743064 16.6433855,76.3760777 16.3442892,76.3760777 C16.0451928,76.3760777 15.793326,76.4743064 15.5886811,76.6707668 C15.3840363,76.8672272 15.2817154,77.109021 15.2817154,77.3961554 C15.2817154,77.6832899 15.3840363,77.9250836 15.5886811,78.121544 C15.793326,78.3180044 16.0451928,78.4162332 16.3442892,78.4162332 C16.6433855,78.4162332 16.8952523,78.3180044 17.0998972,78.121544 C17.3045421,77.9250836 17.406863,77.6832899 17.406863,77.3961554 Z M8.540275,73.3158446 C8.540275,73.021154 8.59733858,72.7472469 8.71146744,72.4941153 C8.82559631,72.2409836 8.98301308,72.01808 9.18372246,71.8253977 C9.38443185,71.6327154 9.61662158,71.4815942 9.88029861,71.3720298 C10.1439756,71.2624653 10.4292935,71.2076839 10.7362608,71.2076839 C11.0432281,71.2076839 11.328546,71.2624653 11.5922231,71.3720298 C11.8559001,71.4815942 12.0880898,71.6327154 12.2887992,71.8253977 C12.4895086,72.01808 12.6469254,72.2409836 12.7610542,72.4941153 C12.8751831,72.7472469 12.9322467,73.021154 12.9322467,73.3158446 C12.9322467,73.6105352 12.8751831,73.8844422 12.7610542,74.1375738 C12.6469254,74.3907055 12.4895086,74.6136091 12.2887992,74.8062915 C12.0880898,74.9989738 11.8559001,75.1500949 11.5922231,75.2596593 C11.328546,75.3692238 11.0432281,75.4240052 10.7362608,75.4240052 C10.4292935,75.4240052 10.1439756,75.3692238 9.88029861,75.2596593 C9.61662158,75.1500949 9.38443185,74.9989738 9.18372246,74.8062915 C8.98301308,74.6136091 8.82559631,74.3907055 8.71146744,74.1375738 C8.59733858,73.8844422 8.540275,73.6105352 8.540275,73.3158446 Z M11.7988346,73.3158446 C11.7988346,73.0287101 11.6965137,72.7869164 11.4918689,72.590456 C11.287224,72.3939956 11.0353572,72.2957668 10.7362608,72.2957668 C10.4371645,72.2957668 10.1852977,72.3939956 9.9806528,72.590456 C9.77600794,72.7869164 9.67368704,73.0287101 9.67368704,73.3158446 C9.67368704,73.602979 9.77600794,73.8447728 9.9806528,74.0412332 C10.1852977,74.2376936 10.4371645,74.3359223 10.7362608,74.3359223 C11.0353572,74.3359223 11.287224,74.2376936 11.4918689,74.0412332 C11.6965137,73.8447728 11.7988346,73.602979 11.7988346,73.3158446 Z M15.5178429,70.981 L16.497772,71.4116995 L11.5863199,79.731 L10.6063907,79.3003005 L15.5178429,70.981 Z" id="Oval-2" fill="#FFFFFF" opacity="0.849999964"></path>
</g>
<path d="M14.5442177,63.9795918 L15.6326531,63.9795918 C15.9332162,63.9795918 16.1768707,64.2232464 16.1768707,64.5238095 C16.1768707,64.8243727 15.9332162,65.0680272 15.6326531,65.0680272 L14.5442177,65.0680272 C14.2436546,65.0680272 14,64.8243727 14,64.5238095 C14,64.2232464 14.2436546,63.9795918 14.5442177,63.9795918 Z M14.5442177,55.696793 L18.3537415,55.696793 C18.6543046,55.696793 18.8979592,55.9404476 18.8979592,56.2410107 C18.8979592,56.5415738 18.6543046,56.7852284 18.3537415,56.7852284 L14.5442177,56.7852284 C14.2436546,56.7852284 14,56.5415738 14,56.2410107 C14,55.9404476 14.2436546,55.696793 14.5442177,55.696793 Z M14.5442177,14.2827988 L15.6326531,14.2827988 C15.9332162,14.2827988 16.1768707,14.5264534 16.1768707,14.8270165 C16.1768707,15.1275797 15.9332162,15.3712342 15.6326531,15.3712342 L14.5442177,15.3712342 C14.2436546,15.3712342 14,15.1275797 14,14.8270165 C14,14.5264534 14.2436546,14.2827988 14.5442177,14.2827988 Z M14.5442177,6 L18.3537415,6 C18.6543046,6 18.8979592,6.24365456 18.8979592,6.54421769 C18.8979592,6.84478082 18.6543046,7.08843537 18.3537415,7.08843537 L14.5442177,7.08843537 C14.2436546,7.08843537 14,6.84478082 14,6.54421769 C14,6.24365456 14.2436546,6 14.5442177,6 Z M14.5442177,47.4139942 L15.6326531,47.4139942 C15.9332162,47.4139942 16.1768707,47.6576487 16.1768707,47.9582119 C16.1768707,48.258775 15.9332162,48.5024295 15.6326531,48.5024295 L14.5442177,48.5024295 C14.2436546,48.5024295 14,48.258775 14,47.9582119 C14,47.6576487 14.2436546,47.4139942 14.5442177,47.4139942 Z M14.5442177,39.1311953 L18.3537415,39.1311953 C18.6543046,39.1311953 18.8979592,39.3748499 18.8979592,39.675413 C18.8979592,39.9759762 18.6543046,40.2196307 18.3537415,40.2196307 L14.5442177,40.2196307 C14.2436546,40.2196307 14,39.9759762 14,39.675413 C14,39.3748499 14.2436546,39.1311953 14.5442177,39.1311953 Z M14.5442177,30.8483965 L15.6326531,30.8483965 C15.9332162,30.8483965 16.1768707,31.0920511 16.1768707,31.3926142 C16.1768707,31.6931773 15.9332162,31.9368319 15.6326531,31.9368319 L14.5442177,31.9368319 C14.2436546,31.9368319 14,31.6931773 14,31.3926142 C14,31.0920511 14.2436546,30.8483965 14.5442177,30.8483965 Z M14.5442177,22.5655977 L18.3537415,22.5655977 C18.6543046,22.5655977 18.8979592,22.8092522 18.8979592,23.1098154 C18.8979592,23.4103785 18.6543046,23.654033 18.3537415,23.654033 L14.5442177,23.654033 C14.2436546,23.654033 14,23.4103785 14,23.1098154 C14,22.8092522 14.2436546,22.5655977 14.5442177,22.5655977 Z" id="Rectangle" fill="#D0021B" transform="translate(16.448980, 35.534014) scale(-1, 1) translate(-16.448980, -35.534014) "></path>
<path d="M4.173,0.354 L2.262,9.337 C2.132,9.948 1.625,10.169 1.144,10.169 C0.91,10.169 0.676,10.104 0.52,10 L2.067,2.772 C1.69,2.915 1.287,2.993 0.962,2.993 C0.715,2.993 0.507,2.473 0.741,2.174 C1.963,1.914 2.808,1.03 3.536,0.211 C3.783,0.172 3.991,0.224 4.173,0.354 Z M10.4736667,3.578 C10.4736667,6.282 9.2776667,10.117 6.1316667,10.117 C4.1426667,10.117 3.7396667,8.635 3.7396667,6.789 C3.7396667,4.085 4.9356667,0.25 8.0816667,0.25 C10.0706667,0.25 10.4736667,1.732 10.4736667,3.578 Z M5.4296667,7.14 C5.4296667,8.466 5.7936667,9.259 6.4306667,9.259 C8.3416667,9.259 8.7836667,4.631 8.7836667,3.227 C8.7836667,1.901 8.4196667,1.108 7.7826667,1.108 C5.8716667,1.108 5.4296667,5.736 5.4296667,7.14 Z" id="10" fill="#C62800"></path>
<path d="M5.626,26.324 C5.626,26.948 4.989,27.156 4.508,27.156 C4.274,27.156 4.04,27.091 3.884,26.987 C3.884,24.01 5.938,20.669 7.407,18.979 C6.393,19.018 6.016,18.758 4.937,18.758 C4.417,18.758 3.754,18.966 3.442,19.148 C3.078,17.913 3.78,16.99 4.703,16.99 C6.328,16.99 6.614,17.549 7.953,17.432 C8.304,17.406 8.733,17.289 8.993,17.198 C9.188,17.419 9.331,17.796 9.136,18.004 C6.471,20.994 5.626,24.075 5.626,26.324 Z" id="7" fill="#644A32"></path>
<path d="M7.174,36.174 C6.433,36.174 5.432,36.005 4.743,35.862 L4.197,38.345 C4.574,38.228 4.938,38.176 5.302,38.176 C7.174,38.176 7.928,39.268 7.928,40.503 C7.928,42.388 6.576,44.104 4.704,44.104 C3.118,44.104 2.156,43.35 2.156,42.05 C2.156,41.114 2.676,40.061 3.859,40.061 C4.288,40.061 4.769,40.373 4.691,41.049 C3.95,40.88 3.534,41.322 3.534,41.985 C3.534,42.648 3.885,43.194 4.626,43.194 C5.549,43.194 6.238,42.362 6.238,40.633 C6.238,39.749 5.848,38.982 4.886,38.982 C4.613,38.982 4.301,39.034 3.937,39.138 C3.742,39.099 3.469,38.917 3.352,38.696 L4.249,34.263 C5.627,34.497 7.174,34.653 8.461,34.133 C8.474,34.276 8.487,34.419 8.487,34.64 C8.487,35.511 8.097,36.174 7.174,36.174 Z" id="5" fill="#644A32"></path>
<path d="M8.994,51.484 C8.656,52.901 7.278,54.37 5.965,55.462 C7.512,55.605 8.045,56.541 8.045,57.503 C8.045,59.388 6.693,61.104 4.821,61.104 C3.235,61.104 2.273,60.35 2.273,59.05 C2.273,58.114 2.793,57.061 3.976,57.061 C4.405,57.061 4.886,57.373 4.808,58.049 C4.067,57.88 3.651,58.322 3.651,58.985 C3.651,59.648 4.002,60.194 4.743,60.194 C5.666,60.194 6.355,59.232 6.355,57.633 C6.355,56.749 6.043,55.943 4.691,56.138 C4.561,55.917 4.574,55.657 4.652,55.449 C5.471,54.747 6.342,53.967 6.979,52.966 C6.446,52.94 5.861,52.758 5.003,52.758 C4.47,52.758 3.82,52.966 3.508,53.148 C3.144,51.913 3.846,51.25 4.769,51.25 C5.796,51.25 6.498,51.51 7.239,51.51 C7.642,51.51 8.058,51.432 8.539,51.198 C8.773,51.237 8.903,51.341 8.994,51.484 Z" id="3" fill="#644A32"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="69px" height="150px" viewBox="0 0 69 150" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>Thermometer/3%</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M117.21503,63.4987836 L23.5878107,63.4987836 C6.43692308,63.4987836 0.404378698,66.4233743 0.404378698,48.0002754 L0.404378698,15.6778873 C0.404378698,-2.74629222 6.43692308,0.178298511 23.5878107,0.178298511 L117.21503,0.178298511 C134.365917,0.178298511 138.398462,-0.746292216 138.398462,17.6778873 L138.398462,46.0002754 C138.398462,64.4233743 134.365917,63.4987836 117.21503,63.4987836 Z" id="path-1"></path>
</defs>
<g id="Thermometer/3%" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-3" transform="translate(2.000000, 0.000000)">
<path d="M10,8.5 C4.75329488,8.5 0.5,12.7532949 0.5,18 L0.5,138 C0.5,143.246705 4.75329488,147.5 10,147.5 L55,147.5 C60.2467051,147.5 64.5,143.246705 64.5,138 L64.5,18 C64.5,12.7532949 60.2467051,8.5 55,8.5 L10,8.5 Z" id="Rectangle-2" stroke="#E9AA5C" fill="#EDB26C"></path>
<g id="Group-92" opacity="0.300000012" transform="translate(32.799999, 77.700001) rotate(-90.000000) translate(-32.799999, -77.700001) translate(-36.700001, 45.700001)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-74"></g>
<path d="M-23.19,-3.02720004 C-23.1105325,-2.88672243 -22.9455621,-2.78514631 -22.7363314,-2.7159881 C-22.5381657,-2.64574929 -22.2786391,-2.60036421 -21.9507101,-2.59928362 C5.58727811,-2.49122391 33.1323077,-2.48798212 60.6632544,-2.59171944 C76.8705917,-2.65223287 93.1352663,-3.14714631 109.33858,-3.06394034 C128.18645,-2.96452541 148.015089,-0.619629843 165.434556,2.66322396 C166.223195,2.81234635 167.073195,2.47628067 167.070178,2.14237619 C167.072189,1.97812544 167.070178,1.81603588 167.072189,1.65286573 C167.070178,1.38055527 166.67284,1.20225676 166.131657,1.09960004 C149.486746,-2.06330749 131.003018,-4.01918812 113.046391,-4.502215 C104.791834,-4.72265679 96.4507692,-4.36281798 88.2052663,-4.27528962 C79.5433136,-4.18235828 70.8753254,-4.14345678 62.2063314,-4.11428066 C34.0738462,-4.02026872 5.93532544,-4.11644186 -22.2082249,-4.19856723 C-23.056213,-4.20072843 -23.663787,-3.86358215 -23.4595858,-3.50158214 C-23.3680473,-3.34381497 -23.2805325,-3.18388661 -23.19,-3.02720004" id="Fill-73" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-22.0231361,2.25043589 C-1.80621302,1.81171349 18.5092899,1.66691349 38.6588166,0.880238846 C53.0937278,0.317247789 67.4069231,0.578752272 81.918284,1.0066687 C109.915976,1.83332543 137.628994,3.69411353 165.352071,5.69862104 C166.366036,5.77102104 167.11645,5.48142103 166.944438,5.02432849 C166.880059,4.85035236 166.814675,4.67529564 166.74929,4.50240012 C166.687929,4.33274638 166.250355,4.12743294 165.853018,4.09825682 C138.550414,2.15642395 111.18142,0.419904508 83.6343787,-0.437008943 C68.9952663,-0.89410149 54.245503,-1.31337314 39.6768047,-0.653128351 C19.2526627,0.271862713 -1.46420118,0.314005998 -21.9839053,0.759211977 C-22.7011243,0.774340336 -23.2563905,0.98073437 -23.2815385,1.30491348 C-23.2895858,1.42918214 -23.2976331,1.54804781 -23.3076923,1.67015528 C-23.3177515,1.80631051 -23.2362722,1.917612 -23.0954438,2.00297917 C-22.9063314,2.15426275 -22.5532544,2.26124186 -22.0231361,2.25043589" id="Fill-75" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M160.511598,12.9559107 C154.596805,12.6101197 148.749408,11.9261018 142.981479,11.2518092 C129.758698,9.70439426 116.74213,7.79497929 103.686331,5.98822104 C94.2377515,4.68069863 84.4713018,3.10842994 74.6143195,2.59514634 C68.5385799,2.27853141 62.3330769,2.37038216 56.2492899,2.43954037 C29.9284615,2.73994635 3.61467456,3.91023294 -22.4898817,5.19506282 C-23.2493491,5.23288371 -23.5068639,5.48574342 -23.4072781,5.74076432 C-23.4143195,5.7839882 -23.4133136,5.82937328 -23.3982249,5.87691955 C-23.3620118,5.99794642 -23.3247929,6.11789269 -23.2885799,6.23891956 C-23.1849704,6.57066285 -22.3259172,6.68088374 -21.7022485,6.65062703 C2.92763314,5.44468073 27.7043787,4.41919414 52.5102959,3.99235831 C58.676568,3.88537921 64.8730178,3.82162398 71.050355,3.96750458 C79.8199408,4.17497921 88.439645,5.51924193 96.8038462,6.64522404 C109.739941,8.38822706 122.584497,10.2652241 135.575917,11.9217794 C145.458047,13.1817555 155.688225,14.4914391 165.963669,14.7842809 C166.881065,14.8091347 167.655621,14.3044958 167.085266,13.9489794 C165.36213,12.8770272 163.409645,13.1244839 160.511598,12.9559107" id="Fill-76" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-22.2152663,16.7790631 C-13.9949112,15.9859048 -5.81881657,15.0922511 2.2687574,14.0862152 C4.90325444,13.7577137 18.2125444,12.697648 18.2306509,10.8833256 C18.2618343,7.98624497 -17.6604734,10.313851 -22.6347337,10.5450988 C-23.1447337,10.5688719 -23.6456805,10.8552301 -23.5853254,11.0756719 C-23.5531361,11.1956182 -23.5219527,11.3155644 -23.4857396,11.4355107 C-23.4133136,11.7089018 -22.9616568,12.0503704 -22.2031953,12.0157913 C-14.981716,11.6829674 -7.74615385,11.4074152 -0.492485207,11.2107465 C2.48502959,11.1318629 5.46857988,11.0767525 8.45213018,11.0583823 C9.73467456,11.048657 11.0152071,11.0605435 12.2937278,11.0832361 C12.3852663,11.0853973 12.4788166,11.0908003 12.570355,11.0929614 C8.65733728,11.9812122 3.34307692,12.3399704 -0.629289941,12.8132719 C-7.98857988,13.6874749 -15.4233136,14.4546988 -22.8771598,15.1732959 C-23.3167456,15.2143586 -23.5823077,15.3267406 -23.712071,15.4650571 C-23.7191124,15.4715406 -23.7181065,15.4769436 -23.724142,15.481266 C-23.7392308,15.5007168 -23.7563314,15.5180063 -23.7643787,15.5352959 C-23.8036095,15.5871645 -23.8287574,15.6411944 -23.8307692,15.703869 C-23.8347929,15.8746033 -23.8388166,16.0442571 -23.845858,16.216072 C-23.8539053,16.5877974 -23.0260355,16.8557855 -22.2152663,16.7790631" id="Fill-77" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M64.8800592,50.8124668 C94.2498225,50.8686578 123.682959,51.5343056 153.039645,52.3090937 C153.915799,52.3317862 154.473077,51.9708668 154.308107,51.6185922 C154.233669,51.4565026 154.159231,51.2965742 154.082781,51.1366459 C153.965089,50.8848668 153.583846,50.7551951 153.151302,50.720616 C153.137219,50.7195354 153.125148,50.7195354 153.113077,50.7195354 C153.090947,50.7162936 153.064793,50.7130518 153.042663,50.7130518 C152.97929,50.7076489 152.919941,50.7011653 152.850533,50.6990041 C123.932426,49.9317802 94.9308284,49.3795951 66.0026627,49.3115175 C47.8488757,49.2682936 29.8912426,50.0257921 11.7917751,50.3759056 C-3.68627219,50.6763115 -19.1854438,50.8632548 -34.6886391,50.9648309 C-35.4380473,50.9702339 -35.927929,51.1852727 -35.9963314,51.5051295 C-36.024497,51.6261563 -36.049645,51.7482638 -36.0788166,51.8703713 C-36.1421893,52.1632131 -35.4672189,52.4614578 -34.8053254,52.4571355 C-19.7578107,52.3706877 -4.71733728,52.1696966 10.3060355,51.8930638 C28.526213,51.5580787 46.607574,50.7789683 64.8800592,50.8124668" id="Fill-78" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-35.0588166,42.6107352 C-18.478284,45.8708965 -0.0297633136,47.9402398 17.9208284,48.5302458 C26.170355,48.8014757 34.5184615,48.4924249 42.7679882,48.454604 C51.4339645,48.4146219 60.1049704,48.4286697 68.7749704,48.4513622 C96.9114793,48.5302458 125.053018,48.7971533 153.19858,49.0510936 C154.044556,49.0586578 154.660178,48.7236727 154.463018,48.3605921 C154.375503,48.2028249 154.29,48.0439772 154.204497,47.88621 C154.12503,47.7435712 153.962071,47.6419951 153.756864,47.5728368 C153.559704,47.4993562 153.302189,47.45181 152.970237,47.4485682 C125.432249,47.1751771 97.8821893,47.0022816 70.3482249,46.939607 C54.1368639,46.9017861 37.8591124,47.2972846 21.6568047,47.1157443 C2.80893491,46.9039473 -16.972426,44.4380248 -34.3285207,41.0481919 C-35.1171598,40.8947472 -35.9721893,41.227571 -35.9772189,41.5603949 C-35.9792308,41.7246457 -35.9832544,41.8867352 -35.9872781,42.0499054 C-35.9943195,42.3222158 -35.5969822,42.5037561 -35.0588166,42.6107352" id="Fill-79" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M153.14426,42.6020905 C132.91426,42.9176248 112.593728,42.9392367 92.4230769,43.6016427 C77.9781065,44.0771054 63.667929,43.7280726 49.1636095,43.2126278 C21.1779882,42.2163173 -6.49881657,40.1880367 -34.1836686,38.0171172 C-35.2006509,37.9360725 -35.9560947,38.2202695 -35.7931361,38.6806038 C-35.7297633,38.8545799 -35.6673964,39.0285561 -35.6080473,39.2025322 C-35.5466864,39.3721859 -35.114142,39.5818218 -34.7208284,39.6120785 C-7.45242604,41.7214039 19.8833728,43.6221741 47.4173373,44.6465801 C62.0494083,45.1922816 76.7931361,45.7001622 91.3789349,45.1296069 C111.822189,44.3288845 132.543077,44.4131711 153.076864,44.0933144 C153.792071,44.0814278 154.349349,43.8793562 154.381538,43.5530159 C154.393609,43.431989 154.403669,43.3109621 154.41574,43.1877741 C154.429822,43.0526994 154.351361,42.9424785 154.212544,42.8538696 C154.025444,42.702586 153.674379,42.5934457 153.14426,42.6020905" id="Fill-80" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-29.1963314,30.7890037 C-23.2885799,31.171535 -17.4512426,31.890132 -11.6984024,32.6011649 C1.49319527,34.2263828 14.4735503,36.215762 27.4951479,38.1003232 C36.9195858,39.4640367 46.6528402,41.0968188 56.5007692,41.6695352 C62.5724852,42.0228905 68.7789941,41.9699412 74.863787,41.9386039 C101.193669,41.7948845 127.537633,40.787768 153.668343,39.6607053 C154.428817,39.6272068 154.690355,39.3765083 154.598817,39.1204068 C154.605858,39.0771829 154.608876,39.0317979 154.589763,38.9842516 C154.559586,38.8632247 154.524379,38.744359 154.490178,38.6222516 C154.392604,38.2905083 153.534556,38.1738038 152.914911,38.2008187 C128.255858,39.256562 103.458994,40.1318456 78.6329586,40.4073979 C72.4636686,40.4765561 66.2692308,40.5014098 60.0949112,40.3187889 C51.330355,40.0572844 42.7347929,38.6633143 34.3886982,37.4854635 C21.4888166,35.6657381 8.68248521,33.7098574 -4.28177515,31.9744186 C-14.1367456,30.6550096 -24.3387574,29.2826514 -34.6131953,28.9292962 C-35.5285799,28.8968782 -36.3142012,29.3971947 -35.7518935,29.7559529 C-34.0508876,30.8376305 -32.0883432,30.603141 -29.1963314,30.7890037" id="Fill-81" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M154.264852,25.7566633 C148.179053,25.28012 141.037041,26.4925498 135.155444,26.9928663 C120.135089,28.2712126 105.119763,29.5711708 90.1627811,30.9694634 C80.6256805,31.8609559 71.0845562,32.7870276 61.7114201,33.9400246 C58.4110059,34.3463291 54.8842604,34.74615 51.8705325,35.47015 C51.0798817,35.6581739 49.8476331,36.0288187 49.9260947,36.499959 C50.1926627,38.1986575 58.4029586,38.0635829 61.0797041,38.1457083 C77.9167456,38.6546695 94.9157396,38.3272486 111.71858,38.1046456 C125.617337,37.9198635 139.511065,37.6702456 153.386686,37.3503889 C154.078757,37.3341799 154.695385,37.1396724 154.694379,36.8122515 C154.693373,36.6890635 154.693373,36.5680366 154.690355,36.4459291 C154.693373,36.1606515 154.131065,35.842956 153.421893,35.8602456 C125.480533,36.4967172 97.376213,37.0921262 69.3352663,36.8046874 C66.2702367,36.7755112 63.206213,36.7182396 60.1452071,36.6199053 C58.9743195,36.5820844 57.7994083,36.5312963 56.6325444,36.4675411 C56.1285799,36.4405262 55.7513609,36.4037859 55.4495858,36.3767709 C56.8880473,36.132556 58.8033136,35.8905023 59.6523077,35.7694754 C74.0570414,33.7249858 89.1327219,32.4163828 103.973018,31.0580723 C120.661183,29.5322693 137.433846,28.1588305 154.232663,26.8415827 C154.936805,26.7864722 155.21142,26.5487409 155.16716,26.3077677 C155.253669,26.0624722 155.001183,25.8150155 154.264852,25.7566633" id="Fill-82" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M154.260828,29.6889559 C154.702426,29.6489738 154.965976,29.5376723 155.098757,29.4004365 C155.105799,29.3939529 155.109822,29.3885499 155.11787,29.3831469 C155.127929,29.3658574 155.14503,29.3485678 155.158107,29.3301977 C155.192308,29.2794096 155.222485,29.2253797 155.221479,29.1627051 C155.230533,28.9919708 155.240592,28.822317 155.248639,28.6515827 C155.267751,28.2787767 154.440888,28.0064663 153.633136,28.0788663 C145.394675,28.822317 137.198462,29.6651827 129.088757,30.6225917 C126.447219,30.9316425 113.113787,31.9128246 113.060473,33.727147 C112.967929,36.6231471 148.944556,34.5138216 153.920828,34.3139112 C154.433846,34.2933798 154.94284,34.0091828 154.887515,33.7876604 C154.85432,33.6677142 154.825148,33.5456067 154.793964,33.426741 C154.72858,33.1544306 154.281953,32.8108007 153.521479,32.8399768 C146.292959,33.1284962 139.050355,33.3608246 131.788639,33.5110276 C128.813136,33.5758634 125.829586,33.6093619 122.842012,33.6126037 C121.561479,33.6136843 120.282959,33.593153 118.999408,33.5628963 C118.910888,33.5596545 118.817337,33.5531709 118.727811,33.5499291 C122.657929,32.6865321 127.975207,32.3601917 131.959645,31.9128246 C139.340059,31.0818455 146.791893,30.3600066 154.260828,29.6889559" id="Fill-83" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-26.5034911,27.8184424 C-19.4127811,28.3349678 -12.3613018,28.994132 -5.34502959,29.6878753 C7.96627219,31.0029619 21.4526036,33.649344 35.1753254,33.0247589 C43.4560355,32.6487112 51.5214793,31.7474932 59.5989941,30.9424484 C69.3926036,29.9666693 79.2445562,29.0978693 89.1105917,28.2528424 C97.5281065,27.5320842 105.961716,26.8383409 114.399349,26.1575648 C117.326568,25.9219946 120.917692,25.8636424 123.751361,25.4011468 C124.025976,25.3892603 124.241243,25.3406334 124.401183,25.2671528 C125.16568,25.0078095 124.798521,24.3497259 123.813728,24.2838095 C132.462604,24.4394155 141.112485,24.6004244 149.758343,24.7992543 C154.698402,24.9137976 159.943254,24.8694931 164.833018,25.2790394 C165.561302,25.3395528 166.58432,25.1558513 166.474675,24.757111 C166.420355,24.5734095 166.370059,24.389708 166.319763,24.2060065 C166.256391,23.9736781 165.986805,23.7024483 165.379231,23.6505796 C160.650414,23.2561617 155.642959,23.3004662 150.872899,23.2075348 C141.436391,23.0249139 131.998876,22.8984841 122.563373,22.7763766 C108.514734,22.5937557 94.4640828,22.5029856 80.4204734,22.2922691 C79.7988166,22.2825438 79.4115385,22.4251826 79.2536095,22.6121259 C73.3951479,22.925499 67.4552071,23.6819169 61.9045562,24.0871408 C55.1810059,24.5777319 48.4383432,25.0348244 41.665503,25.4011468 C37.3189349,25.6356364 32.8466272,25.9176722 28.4497633,25.6280722 C7.76508876,24.2643587 -13.0443195,23.2388722 -33.7913609,22.129099 C-34.6614793,22.0837139 -35.2167456,22.4846154 -35.0557988,22.8196005 C-34.9753254,22.9827707 -34.8938462,23.1459408 -34.8173964,23.309111 C-34.6906509,23.5684542 -34.142426,23.7175766 -33.5871598,23.7456722 C-13.0664497,24.8197856 7.50053254,25.7998871 27.9659172,27.106329 C37.900355,27.74172 48.9181657,26.5098394 58.6152071,25.8452722 C68.1663905,25.191511 77.7014793,24.4739946 87.1963314,23.6840781 C97.9556213,23.8440065 108.714911,24.0212244 119.474201,24.2103289 C112.690296,24.2838095 105.878225,25.2304125 99.3226627,25.8009677 C80.5592899,27.4315887 61.9468047,29.3485678 43.194497,30.9899947 C35.7326036,31.6437559 28.2676923,31.9420007 20.7072189,31.160729 C14.015858,30.4691469 7.44621302,29.4739171 0.748816568,28.7628842 C-10.6693491,27.5515349 -22.7323077,26.1186633 -34.458284,25.8074513 C-35.684497,25.7750334 -36.0526627,26.3801677 -35.3998225,26.7518931 C-33.547929,27.8108782 -29.3331361,27.6120484 -26.5034911,27.8184424" id="Fill-84" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-33.8497041,20.0673198 C-29.1259172,20.4898333 -24.1174556,20.4779467 -19.3443787,20.6000542 C-9.91289941,20.8388661 -0.47739645,21.0225676 8.95710059,21.2008661 C20.4909467,21.4223885 32.0308284,21.5823169 43.5616568,21.7973557 C43.6069231,21.8114035 43.6481657,21.8254512 43.6964497,21.8362572 C43.7034911,21.8384184 43.7095266,21.839499 43.717574,21.8427408 C43.7819527,21.8578691 43.8553846,21.8708363 43.9278107,21.8805617 C43.9449112,21.8827229 43.9620118,21.8859647 43.9801183,21.8892065 C44.0253846,21.8935288 44.069645,21.8967706 44.117929,21.9000124 C44.1631953,21.9043348 44.2044379,21.9097378 44.2486982,21.911899 C46.0231361,21.9853796 47.8277515,21.9745736 49.642426,21.9140602 C50.1272781,21.9237856 50.6121302,21.9313497 51.0949704,21.9421557 C51.4923077,21.9497199 51.7860355,21.89569 51.9972781,21.8070811 C57.9321893,21.4677736 63.9515976,20.6573258 69.5686391,20.2121199 C76.2831361,19.6815467 83.011716,19.1823109 89.7775148,18.7749258 C94.1170414,18.5134213 98.5823077,18.2054512 102.985207,18.4669556 C123.692012,19.7064004 144.515503,20.6065378 165.279645,21.5888005 C166.153787,21.6287826 166.7,21.2246393 166.532012,20.8907348 C166.448521,20.7275646 166.36503,20.5654751 166.28355,20.4023049 C166.152781,20.1440422 165.599527,20.0003228 165.04426,19.9733079 C144.509467,19.0245437 123.924379,18.1687109 103.439882,16.9865377 C93.4933728,16.4127407 82.5037278,17.7094571 72.8227811,18.4334571 C63.9777515,19.0937019 55.1508284,19.8133795 46.3571006,20.5881676 C45.902426,20.5665557 45.4457396,20.5438631 44.9890533,20.5222512 C36.6751479,20.3482751 28.3602367,20.163493 20.0483432,19.9733079 C24.1273373,19.6026631 28.1731361,19.0947825 32.1263905,18.7262989 C50.8515385,16.9811347 69.4197633,14.9506929 88.135858,13.1947227 C95.5806509,12.4955764 103.040533,12.1519465 110.612071,12.8878331 C117.315503,13.5383525 123.906272,14.4946809 130.616746,15.1635705 C142.05503,16.3057616 154.14716,17.6673138 165.874142,17.9061258 C167.098343,17.9298989 167.452426,17.323684 166.797574,16.956281 C164.92355,15.9070213 160.711775,16.132866 157.878107,15.9437616 C150.780355,15.47046 143.716805,14.8523585 136.689467,14.2029197 C123.35503,12.9677973 109.818402,10.4035405 96.1107692,11.1113316 C87.8371006,11.5381674 79.7947929,12.4869316 71.7363905,13.3406033 C61.9649112,14.3779764 52.1330769,15.3051287 42.2861538,16.2128302 C33.8847337,16.9843765 25.4672189,17.7278273 17.0456805,18.4604721 C14.1224852,18.715493 10.5353846,18.7943765 7.71278107,19.2741616 C7.43514793,19.2871288 7.22289941,19.3379168 7.06497041,19.412478 C6.88088757,19.4762333 6.77224852,19.5648422 6.71491124,19.662096 C-0.993431953,19.4783945 -8.69976331,19.2828064 -16.4030769,19.0634452 C-12.0705917,18.7792482 -7.62242604,18.1081974 -3.72349112,17.7516004 C11.2666864,16.3814034 26.2498225,14.990675 41.179645,13.5016122 C50.6946154,12.5506869 60.2156213,11.5673435 69.5646154,10.3559943 C72.8559763,9.93023904 76.3706509,9.50988679 79.3692899,8.76751662 C80.1559172,8.57408975 81.3791124,8.19588079 81.2926036,7.72582108 C80.9898225,6.02604194 72.786568,6.21298523 70.1098225,6.1481494 C53.2647337,5.74076432 36.2768047,6.17084194 19.4820118,6.49502105 C5.59230769,6.76625091 -8.29236686,7.10015539 -22.1599408,7.50321809 C-22.8530178,7.52483003 -23.4626036,7.72149869 -23.4555621,8.05108079 C-23.4525444,8.17318825 -23.4515385,8.29421512 -23.4485207,8.41632259 C-23.4424852,8.70051961 -22.8731361,9.01497335 -22.1649704,8.994442 C5.75828402,8.18939721 33.8414793,7.42217331 61.8814201,7.53779719 C64.9454438,7.55076436 68.0094675,7.58750466 71.0724852,7.66530765 C72.2453846,7.69772556 73.4202959,7.74311063 74.5871598,7.79822108 C75.094142,7.82199422 75.4713609,7.85657332 75.7701183,7.88142705 C74.3407101,8.13536736 72.4304734,8.38930766 71.5824852,8.51465692 C57.2220118,10.6477555 42.1775148,12.0482092 27.3704142,13.4962093 C10.7144379,15.1235884 -6.02301775,16.599684 -22.7906509,18.0185079 C-23.4947929,18.0779407 -23.7643787,18.3189138 -23.7140828,18.5588064 C-23.7523077,18.6765915 -23.7080473,18.7932959 -23.5742604,18.8905497 C-26.8374556,18.8203109 -30.1278107,18.7252183 -33.2702959,18.4431825 C-33.9955621,18.3761855 -35.0195858,18.5555646 -34.9189941,18.9553855 C-34.871716,19.139087 -34.822426,19.3217079 -34.7771598,19.50649 C-34.7198225,19.7398989 -34.4522485,20.01329 -33.8497041,20.0673198" id="Fill-85" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M65.4011243,54.6939713 C36.0384024,54.8160788 6.59923077,54.3287295 -22.7665089,53.7333206 C-23.6406509,53.7149504 -24.1908876,54.0791116 -24.0178698,54.429225 C-23.9394083,54.590234 -23.8619527,54.751243 -23.7834911,54.9122519 C-23.663787,55.1629504 -23.2775148,55.2893803 -22.8439645,55.3217982 C-22.8308876,55.3228788 -22.8198225,55.3239594 -22.8067456,55.32504 C-22.7826036,55.3261206 -22.7604734,55.3282818 -22.7363314,55.3282818 C-22.6729586,55.3336848 -22.6126036,55.3401684 -22.5442012,55.3401684 C6.38195266,55.9334161 35.3895858,56.3094639 64.3127219,56.2014042 C82.4614793,56.1344072 100.398994,55.2666878 118.488402,54.8063534 C133.953373,54.4130161 149.446509,54.1331415 164.94568,53.933231 C165.691065,53.9256668 166.176923,53.7063056 166.241302,53.3886101 C166.26645,53.2643414 166.287574,53.1433146 166.314734,53.0212071 C166.373077,52.7272847 165.690059,52.4344429 165.028166,52.4430877 C149.989704,52.6224668 134.955266,52.9131474 119.939941,53.2805504 C101.729822,53.7257564 83.6726036,54.6150877 65.4011243,54.6939713" id="Fill-86" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M166.424379,62.8449148 C166.421361,62.5715237 166.02503,62.3932252 165.483846,62.2894879 C148.839941,59.1265804 130.354201,57.1717803 112.396568,56.6887535 C104.143018,56.4683117 95.8029586,56.8281505 87.5564497,56.9156788 C78.894497,57.0096908 70.2265089,57.0496729 61.5585207,57.0777684 C33.4260355,57.1706997 5.28550296,57.073446 -22.8550296,56.9924012 C-23.7040237,56.9913206 -24.3126036,57.3273863 -24.1094083,57.6904669 C-24.0188757,57.8482341 -23.9283432,58.0060012 -23.8388166,58.164849 C-23.7593491,58.3053266 -23.5923669,58.4058221 -23.3861538,58.4749804 C-23.1879882,58.5452192 -22.9284615,58.5916848 -22.5985207,58.5916848 C4.94147929,58.6997445 32.484497,58.7040669 60.0144379,58.6014102 C76.2217751,58.5387356 92.4874556,58.0427415 108.689763,58.1270281 C127.537633,58.2253624 147.366272,60.5724192 164.786746,63.8563536 C165.574379,64.0043954 166.424379,63.6672491 166.425385,63.3333446 C166.423373,63.1690939 166.424379,63.0080849 166.424379,62.8449148" id="Fill-87" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M165.205207,65.2892253 C137.901598,63.3452312 110.532604,61.610873 82.9855621,60.7539595 C68.3464497,60.2979476 53.5966864,59.8786759 39.0249704,60.5378401 C18.6028402,61.4628312 -2.11402367,61.5049745 -22.631716,61.9501804 C-23.3509467,61.9663894 -23.9052071,62.1717028 -23.930355,62.4980431 C-23.9373964,62.61907 -23.9464497,62.7400969 -23.9565089,62.8632849 C-23.967574,62.997279 -23.8850888,63.1074999 -23.7442604,63.1939476 C-23.5561538,63.3463118 -23.2010651,63.4532909 -22.6719527,63.4414043 C-2.45402367,63.0026819 17.8614793,62.8578819 38.0110059,62.0712073 C52.4459172,61.5082162 66.7601183,61.7708013 81.2704734,62.1987177 C109.266154,63.0242939 136.97716,64.8840014 164.703254,66.8895895 C165.722249,66.9609089 166.467633,66.6723895 166.297633,66.2152969 C166.231243,66.0413208 166.16787,65.8673447 166.101479,65.692288 C166.040118,65.5226342 165.601538,65.3173208 165.205207,65.2892253" id="Fill-88" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M159.862781,74.1468792 C153.947988,73.8010881 148.100592,73.1170702 142.331657,72.4416971 C129.109882,70.8953627 116.097337,68.9848671 103.035503,67.1802701 C93.5889349,65.8727477 83.8204734,64.300479 73.9675148,63.7861148 C67.8887574,63.4694999 61.6852663,63.56027 55.6014793,63.6305088 C29.279645,63.9319954 2.96686391,65.1001208 -23.1397041,66.3860313 C-23.8981657,66.4249328 -24.1546746,66.6777925 -24.0560947,66.9328134 C-24.0621302,66.9760373 -24.0621302,67.0203417 -24.0470414,67.067888 C-24.0088166,67.1889149 -23.9736095,67.3099417 -23.9353846,67.429888 C-23.8307692,67.7627119 -22.9747337,67.8729328 -22.3530769,67.8426761 C2.27680473,66.6356492 27.0515385,65.6112432 51.8614793,65.1833268 C58.0297633,65.0774283 64.2211834,65.0125924 70.4025444,65.1595536 C79.1681065,65.3659477 87.7918343,66.711291 96.1550296,67.8372731 C109.093136,69.5791955 121.93568,71.4572732 134.929112,73.1116672 C144.812249,74.3716434 155.039408,75.6824076 165.314852,75.9741688 C166.232249,76.0011837 167.006805,75.4965449 166.437456,75.1410285 C164.716331,74.0690762 162.760828,74.3154523 159.862781,74.1468792" id="Fill-89" fill="#E09637" mask="url(#mask-2)"></path>
</g>
<g id="Group-2" transform="translate(10.000000, 0.000000)">
<g id="2" transform="translate(40.000000, 0.000000)">
<circle id="Oval-2" stroke="#E9AA5C" fill="#79450E" cx="2.5" cy="13.5" r="2.5"></circle>
<path d="M1,0 L4,0 L4,13.5 C4,14.3284271 3.32842712,15 2.5,15 L2.5,15 C1.67157288,15 1,14.3284271 1,13.5 L1,0 Z" id="Rectangle-3" fill="#9CA0A4"></path>
</g>
<g id="1">
<circle id="Oval-2" stroke="#E9AA5C" fill="#79450E" cx="2.5" cy="13.5" r="2.5"></circle>
<path d="M1,0 L4,0 L4,13.5 C4,14.3284271 3.32842712,15 2.5,15 L2.5,15 C1.67157288,15 1,14.3284271 1,13.5 L1,0 Z" id="Rectangle-3" fill="#9CA0A4"></path>
</g>
</g>
</g>
<g id="Thermometer/" transform="translate(2.000000, 23.000000)">
<path d="M15.38,-0.32 C16.932,-0.32 17.604,0.736 17.604,1.712 C17.604,2.56 17.092,3.344 16.308,3.344 C16.02,3.344 15.54,3.152 15.364,2.704 C16.324,2.304 16.404,0.768 15.156,0.768 C13.764,0.768 12.308,3.84 12.308,7.184 C12.308,9.072 12.948,10.64 14.564,10.64 C15.412,10.64 16.372,10.4 17.428,9.808 C17.604,9.888 17.7,10.032 17.7,10.192 C17.7,10.304 17.668,10.432 17.556,10.544 C16.42,11.68 15.012,12.128 13.668,12.128 C11.156,12.128 10.052,9.92 10.052,7.456 C10.052,3.376 12.452,-0.32 15.38,-0.32 Z M20.212,4.8 L19.652,7.536 L19.748,7.504 C20.516,7.264 21.588,5.808 21.972,4.096 C22.228,3.968 22.5,3.92 22.74,3.92 C23.284,3.92 23.572,4.272 23.572,4.672 C23.572,5.632 22.324,7.04 21.332,7.712 C21.556,8.608 22.004,10.48 23.156,10.48 C23.476,10.48 23.828,10.192 24.244,9.808 C24.42,9.888 24.516,10.032 24.516,10.192 C24.516,10.304 24.468,10.432 24.372,10.544 C23.796,11.248 22.692,12.128 22.02,12.128 C20.42,12.128 20.004,9.568 19.764,8.32 L19.476,8.4 L18.916,11.12 C18.756,11.856 18.148,12.128 17.572,12.128 C17.284,12.128 17.012,12.048 16.82,11.92 L18.132,5.776 C18.196,5.504 18.116,5.376 17.972,5.376 C17.892,5.376 17.796,5.44 17.652,5.568 C17.444,5.44 17.332,4.944 17.652,4.688 C18.196,4.256 18.772,3.92 19.444,3.92 C20.02,3.92 20.34,4.176 20.212,4.8 Z M24.196,9.056 L24.948,5.776 C25.012,5.52 24.932,5.376 24.788,5.376 C24.708,5.376 24.612,5.44 24.468,5.568 C24.26,5.44 24.148,4.944 24.468,4.688 C25.012,4.256 25.588,3.92 26.26,3.92 C26.836,3.92 27.172,4.192 27.028,4.8 L26.052,9.344 C25.908,10 26.116,10.288 26.596,10.288 C27.156,10.288 27.636,9.968 28.068,9.456 L29.028,4.928 C29.188,4.192 29.796,3.92 30.372,3.92 C30.66,3.92 30.932,4 31.124,4.128 L30.004,9.424 C29.812,10.32 30.068,10.608 30.484,10.608 C31.076,10.608 31.764,10.208 32.164,9.808 C32.34,9.888 32.436,10.032 32.436,10.192 C32.436,10.304 32.388,10.432 32.292,10.544 C31.54,11.392 30.388,12.128 29.524,12.128 C28.74,12.128 27.956,11.728 28.036,10.32 C27.396,11.36 26.612,12.128 25.7,12.128 C23.924,12.128 23.924,10.256 24.196,9.056 Z M40.324,10.528 C40.036,10.784 38.948,11.504 37.812,12.032 C37.092,15.008 35.972,18.16 33.204,18.16 C32.228,18.16 31.316,17.52 31.316,16.192 C31.316,14.208 33.812,12.688 35.972,11.888 C36.084,11.488 36.196,11.088 36.324,10.64 C35.668,11.52 34.852,12.128 33.988,12.128 C32.324,12.128 31.988,10.464 31.988,9.44 C31.988,6.64 33.796,3.856 36.02,3.856 C36.74,3.856 37.252,4.032 37.652,4.384 C37.924,4.064 38.356,3.92 38.756,3.92 C39.044,3.92 39.316,4 39.508,4.128 L38.164,10.464 C38.116,10.688 38.068,10.912 38.02,11.12 C38.9,10.688 39.748,10.208 40.308,9.728 C40.548,9.936 40.596,10.288 40.324,10.528 Z M36.452,9.472 L37.348,5.184 C37.076,5.088 36.836,5.056 36.596,5.056 C34.66,5.056 33.972,7.584 33.972,9.328 C33.972,10.128 34.34,10.48 34.836,10.48 C35.348,10.48 36.02,10.064 36.452,9.472 Z M33.06,16.736 C34.164,16.736 34.82,15.632 35.636,13.008 C33.876,13.712 32.404,14.912 32.404,15.984 C32.404,16.544 32.852,16.736 33.06,16.736 Z M42.932,4.8 L42.372,7.536 L42.468,7.504 C43.236,7.264 44.308,5.808 44.692,4.096 C44.948,3.968 45.22,3.92 45.46,3.92 C46.004,3.92 46.292,4.272 46.292,4.672 C46.292,5.632 45.044,7.04 44.052,7.712 C44.276,8.608 44.724,10.48 45.876,10.48 C46.196,10.48 46.548,10.192 46.964,9.808 C47.14,9.888 47.236,10.032 47.236,10.192 C47.236,10.304 47.188,10.432 47.092,10.544 C46.516,11.248 45.412,12.128 44.74,12.128 C43.14,12.128 42.724,9.568 42.484,8.32 L42.196,8.4 L41.636,11.12 C41.476,11.856 40.868,12.128 40.292,12.128 C40.004,12.128 39.732,12.048 39.54,11.92 L40.852,5.776 C40.916,5.504 40.836,5.376 40.692,5.376 C40.612,5.376 40.516,5.44 40.372,5.568 C40.164,5.44 40.052,4.944 40.372,4.688 C40.916,4.256 41.492,3.92 42.164,3.92 C42.74,3.92 43.06,4.176 42.932,4.8 Z M50.82,3.856 C51.54,3.856 52.068,4.032 52.468,4.384 C52.74,4.064 53.156,3.92 53.556,3.92 C53.844,3.92 54.116,4 54.308,4.128 L53.188,9.424 C52.996,10.32 53.252,10.608 53.668,10.608 C54.26,10.608 54.948,10.208 55.348,9.808 C55.524,9.888 55.62,10.032 55.62,10.192 C55.62,10.304 55.572,10.432 55.476,10.544 C54.724,11.392 53.572,12.128 52.708,12.128 C51.956,12.128 51.204,11.776 51.22,10.512 C50.548,11.456 49.7,12.128 48.788,12.128 C47.124,12.128 46.788,10.464 46.788,9.44 C46.788,6.64 48.596,3.856 50.82,3.856 Z M51.252,9.472 L52.148,5.184 C51.876,5.088 51.636,5.056 51.396,5.056 C49.46,5.056 48.772,7.584 48.772,9.328 C48.772,10.128 49.14,10.48 49.636,10.48 C50.148,10.48 50.82,10.064 51.252,9.472 Z" id="Cкидка" fill="#644A32"></path>
<g id="thermometer/3%" transform="translate(10.000000, 25.000000)">
<g id="thermometer" transform="translate(17.000000, 0.000000)">
<path d="M21.1586785,63.3083354 L21.1586785,8.12195722 C21.1586785,3.91250744 17.7462186,0.5 13.5367213,0.5 C9.32722391,0.5 5.91476404,3.91250744 5.91476404,8.12195722 L5.91476404,63.3068601 C5.91476404,64.2094636 5.55540691,65.0653964 4.904219,65.6417948 C1.65032386,68.5212664 0.0122455548,72.7916526 0.628839471,77.2478412 C1.43032398,83.0406679 6.19464185,87.6818983 12.0116702,88.3408974 C19.8271746,89.226472 26.5734805,83.1618122 26.5734805,75.3907876 C26.5734805,71.6177495 24.9544916,68.1099891 22.1761817,65.6479625 C21.5218366,65.0681192 21.1586785,64.211064 21.1586785,63.3083354 Z" id="Shape" stroke="#E9AA5C" fill="#F1F0F0" fill-rule="nonzero"></path>
<g id="Group" transform="translate(5.343824, 5.409393)" fill="#DADFE5" fill-rule="nonzero">
<path d="M10.9277262,59.8673105 L10.9277262,2.8520658 C10.9277262,1.50348781 10.0061624,0.253590265 8.67512396,0.0370506373 C6.97886955,-0.238828389 5.51308806,1.06303211 5.51308806,2.70732357 L5.51308806,59.864196 C5.51308806,61.2404766 4.79544197,62.4923412 3.65733853,63.2660483 C1.09066367,65.0106594 -0.425113726,68.1820388 0.264993642,71.6460171 C0.882811854,74.7469105 3.37227993,77.2675235 6.46710822,77.9145197 C11.718645,79.0122986 16.3423643,75.0341001 16.3423643,69.9759901 C16.3423643,67.1555655 14.9021545,64.6764245 12.7187269,63.2224453 C11.5968517,62.4754573 10.9277262,61.2152328 10.9277262,59.8673105 Z" id="Shape"></path>
</g>
<path d="M10.8569123,56 L10.8569123,65.1649045 C10.8569123,66.5411851 10.1392662,67.7932137 9.00116281,68.5667568 C6.43448795,70.3115318 4.91871055,73.4827473 5.60881792,76.9467257 C6.22663613,80.047619 8.71610421,82.5682321 11.8109325,83.2152283 C17.0623053,84.3130071 21.6860247,80.3348086 21.6860247,75.2766986 C21.6860247,72.4562741 20.2458149,69.9769691 18.0623873,68.5231538 C16.940512,67.7761659 16.2713866,66.5159413 16.2713866,65.168019 L16.2713866,56 L10.8569123,56 Z" id="Shape" fill="#FE6E01" fill-rule="nonzero"></path>
<path d="M14.1483033,77.3961554 C14.1483033,77.1014648 14.2053669,76.8275578 14.3194958,76.5744262 C14.4336246,76.3212945 14.5910414,76.0983909 14.7917508,75.9057085 C14.9924602,75.7130262 15.2246499,75.5619051 15.4883269,75.4523407 C15.752004,75.3427762 16.0373219,75.2879948 16.3442892,75.2879948 C16.6512565,75.2879948 16.9365744,75.3427762 17.2002514,75.4523407 C17.4639284,75.5619051 17.6961182,75.7130262 17.8968275,75.9057085 C18.0975369,76.0983909 18.2549537,76.3212945 18.3690826,76.5744262 C18.4832114,76.8275578 18.540275,77.1014648 18.540275,77.3961554 C18.540275,77.690846 18.4832114,77.9647531 18.3690826,78.2178847 C18.2549537,78.4710164 18.0975369,78.69392 17.8968275,78.8866023 C17.6961182,79.0792846 17.4639284,79.2304058 17.2002514,79.3399702 C16.9365744,79.4495347 16.6512565,79.5043161 16.3442892,79.5043161 C16.0373219,79.5043161 15.752004,79.4495347 15.4883269,79.3399702 C15.2246499,79.2304058 14.9924602,79.0792846 14.7917508,78.8866023 C14.5910414,78.69392 14.4336246,78.4710164 14.3194958,78.2178847 C14.2053669,77.9647531 14.1483033,77.690846 14.1483033,77.3961554 Z M17.406863,77.3961554 C17.406863,77.109021 17.3045421,76.8672272 17.0998972,76.6707668 C16.8952523,76.4743064 16.6433855,76.3760777 16.3442892,76.3760777 C16.0451928,76.3760777 15.793326,76.4743064 15.5886811,76.6707668 C15.3840363,76.8672272 15.2817154,77.109021 15.2817154,77.3961554 C15.2817154,77.6832899 15.3840363,77.9250836 15.5886811,78.121544 C15.793326,78.3180044 16.0451928,78.4162332 16.3442892,78.4162332 C16.6433855,78.4162332 16.8952523,78.3180044 17.0998972,78.121544 C17.3045421,77.9250836 17.406863,77.6832899 17.406863,77.3961554 Z M8.540275,73.3158446 C8.540275,73.021154 8.59733858,72.7472469 8.71146744,72.4941153 C8.82559631,72.2409836 8.98301308,72.01808 9.18372246,71.8253977 C9.38443185,71.6327154 9.61662158,71.4815942 9.88029861,71.3720298 C10.1439756,71.2624653 10.4292935,71.2076839 10.7362608,71.2076839 C11.0432281,71.2076839 11.328546,71.2624653 11.5922231,71.3720298 C11.8559001,71.4815942 12.0880898,71.6327154 12.2887992,71.8253977 C12.4895086,72.01808 12.6469254,72.2409836 12.7610542,72.4941153 C12.8751831,72.7472469 12.9322467,73.021154 12.9322467,73.3158446 C12.9322467,73.6105352 12.8751831,73.8844422 12.7610542,74.1375738 C12.6469254,74.3907055 12.4895086,74.6136091 12.2887992,74.8062915 C12.0880898,74.9989738 11.8559001,75.1500949 11.5922231,75.2596593 C11.328546,75.3692238 11.0432281,75.4240052 10.7362608,75.4240052 C10.4292935,75.4240052 10.1439756,75.3692238 9.88029861,75.2596593 C9.61662158,75.1500949 9.38443185,74.9989738 9.18372246,74.8062915 C8.98301308,74.6136091 8.82559631,74.3907055 8.71146744,74.1375738 C8.59733858,73.8844422 8.540275,73.6105352 8.540275,73.3158446 Z M11.7988346,73.3158446 C11.7988346,73.0287101 11.6965137,72.7869164 11.4918689,72.590456 C11.287224,72.3939956 11.0353572,72.2957668 10.7362608,72.2957668 C10.4371645,72.2957668 10.1852977,72.3939956 9.9806528,72.590456 C9.77600794,72.7869164 9.67368704,73.0287101 9.67368704,73.3158446 C9.67368704,73.602979 9.77600794,73.8447728 9.9806528,74.0412332 C10.1852977,74.2376936 10.4371645,74.3359223 10.7362608,74.3359223 C11.0353572,74.3359223 11.287224,74.2376936 11.4918689,74.0412332 C11.6965137,73.8447728 11.7988346,73.602979 11.7988346,73.3158446 Z M15.5178429,70.981 L16.497772,71.4116995 L11.5863199,79.731 L10.6063907,79.3003005 L15.5178429,70.981 Z" id="Oval-2" fill="#FFFFFF" opacity="0.849999964"></path>
</g>
<path d="M14.5442177,63.9795918 L15.6326531,63.9795918 C15.9332162,63.9795918 16.1768707,64.2232464 16.1768707,64.5238095 C16.1768707,64.8243727 15.9332162,65.0680272 15.6326531,65.0680272 L14.5442177,65.0680272 C14.2436546,65.0680272 14,64.8243727 14,64.5238095 C14,64.2232464 14.2436546,63.9795918 14.5442177,63.9795918 Z M14.5442177,55.696793 L18.3537415,55.696793 C18.6543046,55.696793 18.8979592,55.9404476 18.8979592,56.2410107 C18.8979592,56.5415738 18.6543046,56.7852284 18.3537415,56.7852284 L14.5442177,56.7852284 C14.2436546,56.7852284 14,56.5415738 14,56.2410107 C14,55.9404476 14.2436546,55.696793 14.5442177,55.696793 Z M14.5442177,14.2827988 L15.6326531,14.2827988 C15.9332162,14.2827988 16.1768707,14.5264534 16.1768707,14.8270165 C16.1768707,15.1275797 15.9332162,15.3712342 15.6326531,15.3712342 L14.5442177,15.3712342 C14.2436546,15.3712342 14,15.1275797 14,14.8270165 C14,14.5264534 14.2436546,14.2827988 14.5442177,14.2827988 Z M14.5442177,6 L18.3537415,6 C18.6543046,6 18.8979592,6.24365456 18.8979592,6.54421769 C18.8979592,6.84478082 18.6543046,7.08843537 18.3537415,7.08843537 L14.5442177,7.08843537 C14.2436546,7.08843537 14,6.84478082 14,6.54421769 C14,6.24365456 14.2436546,6 14.5442177,6 Z M14.5442177,47.4139942 L15.6326531,47.4139942 C15.9332162,47.4139942 16.1768707,47.6576487 16.1768707,47.9582119 C16.1768707,48.258775 15.9332162,48.5024295 15.6326531,48.5024295 L14.5442177,48.5024295 C14.2436546,48.5024295 14,48.258775 14,47.9582119 C14,47.6576487 14.2436546,47.4139942 14.5442177,47.4139942 Z M14.5442177,39.1311953 L18.3537415,39.1311953 C18.6543046,39.1311953 18.8979592,39.3748499 18.8979592,39.675413 C18.8979592,39.9759762 18.6543046,40.2196307 18.3537415,40.2196307 L14.5442177,40.2196307 C14.2436546,40.2196307 14,39.9759762 14,39.675413 C14,39.3748499 14.2436546,39.1311953 14.5442177,39.1311953 Z M14.5442177,30.8483965 L15.6326531,30.8483965 C15.9332162,30.8483965 16.1768707,31.0920511 16.1768707,31.3926142 C16.1768707,31.6931773 15.9332162,31.9368319 15.6326531,31.9368319 L14.5442177,31.9368319 C14.2436546,31.9368319 14,31.6931773 14,31.3926142 C14,31.0920511 14.2436546,30.8483965 14.5442177,30.8483965 Z M14.5442177,22.5655977 L18.3537415,22.5655977 C18.6543046,22.5655977 18.8979592,22.8092522 18.8979592,23.1098154 C18.8979592,23.4103785 18.6543046,23.654033 18.3537415,23.654033 L14.5442177,23.654033 C14.2436546,23.654033 14,23.4103785 14,23.1098154 C14,22.8092522 14.2436546,22.5655977 14.5442177,22.5655977 Z" id="Rectangle" fill="#644A32" transform="translate(16.448980, 35.534014) scale(-1, 1) translate(-16.448980, -35.534014) "></path>
<path d="M14.5442177,63.9795918 L15.6326531,63.9795918 C15.9332162,63.9795918 16.1768707,64.2232464 16.1768707,64.5238095 C16.1768707,64.8243727 15.9332162,65.0680272 15.6326531,65.0680272 L14.5442177,65.0680272 C14.2436546,65.0680272 14,64.8243727 14,64.5238095 C14,64.2232464 14.2436546,63.9795918 14.5442177,63.9795918 Z M14.5442177,55.696793 L18.3537415,55.696793 C18.6543046,55.696793 18.8979592,55.9404476 18.8979592,56.2410107 C18.8979592,56.5415738 18.6543046,56.7852284 18.3537415,56.7852284 L14.5442177,56.7852284 C14.2436546,56.7852284 14,56.5415738 14,56.2410107 C14,55.9404476 14.2436546,55.696793 14.5442177,55.696793 Z" id="Rectangle" fill="#C62800" transform="translate(16.448980, 35.534014) scale(-1, 1) translate(-16.448980, -35.534014) "></path>
<path d="M4.173,0.354 L2.262,9.337 C2.132,9.948 1.625,10.169 1.144,10.169 C0.91,10.169 0.676,10.104 0.52,10 L2.067,2.772 C1.69,2.915 1.287,2.993 0.962,2.993 C0.715,2.993 0.507,2.473 0.741,2.174 C1.963,1.914 2.808,1.03 3.536,0.211 C3.783,0.172 3.991,0.224 4.173,0.354 Z M10.4736667,3.578 C10.4736667,6.282 9.2776667,10.117 6.1316667,10.117 C4.1426667,10.117 3.7396667,8.635 3.7396667,6.789 C3.7396667,4.085 4.9356667,0.25 8.0816667,0.25 C10.0706667,0.25 10.4736667,1.732 10.4736667,3.578 Z M5.4296667,7.14 C5.4296667,8.466 5.7936667,9.259 6.4306667,9.259 C8.3416667,9.259 8.7836667,4.631 8.7836667,3.227 C8.7836667,1.901 8.4196667,1.108 7.7826667,1.108 C5.8716667,1.108 5.4296667,5.736 5.4296667,7.14 Z" id="10" fill="#644A32"></path>
<path d="M5.626,26.324 C5.626,26.948 4.989,27.156 4.508,27.156 C4.274,27.156 4.04,27.091 3.884,26.987 C3.884,24.01 5.938,20.669 7.407,18.979 C6.393,19.018 6.016,18.758 4.937,18.758 C4.417,18.758 3.754,18.966 3.442,19.148 C3.078,17.913 3.78,16.99 4.703,16.99 C6.328,16.99 6.614,17.549 7.953,17.432 C8.304,17.406 8.733,17.289 8.993,17.198 C9.188,17.419 9.331,17.796 9.136,18.004 C6.471,20.994 5.626,24.075 5.626,26.324 Z" id="7" fill="#644A32"></path>
<path d="M7.174,36.174 C6.433,36.174 5.432,36.005 4.743,35.862 L4.197,38.345 C4.574,38.228 4.938,38.176 5.302,38.176 C7.174,38.176 7.928,39.268 7.928,40.503 C7.928,42.388 6.576,44.104 4.704,44.104 C3.118,44.104 2.156,43.35 2.156,42.05 C2.156,41.114 2.676,40.061 3.859,40.061 C4.288,40.061 4.769,40.373 4.691,41.049 C3.95,40.88 3.534,41.322 3.534,41.985 C3.534,42.648 3.885,43.194 4.626,43.194 C5.549,43.194 6.238,42.362 6.238,40.633 C6.238,39.749 5.848,38.982 4.886,38.982 C4.613,38.982 4.301,39.034 3.937,39.138 C3.742,39.099 3.469,38.917 3.352,38.696 L4.249,34.263 C5.627,34.497 7.174,34.653 8.461,34.133 C8.474,34.276 8.487,34.419 8.487,34.64 C8.487,35.511 8.097,36.174 7.174,36.174 Z" id="5" fill="#644A32"></path>
<path d="M8.994,51.484 C8.656,52.901 7.278,54.37 5.965,55.462 C7.512,55.605 8.045,56.541 8.045,57.503 C8.045,59.388 6.693,61.104 4.821,61.104 C3.235,61.104 2.273,60.35 2.273,59.05 C2.273,58.114 2.793,57.061 3.976,57.061 C4.405,57.061 4.886,57.373 4.808,58.049 C4.067,57.88 3.651,58.322 3.651,58.985 C3.651,59.648 4.002,60.194 4.743,60.194 C5.666,60.194 6.355,59.232 6.355,57.633 C6.355,56.749 6.043,55.943 4.691,56.138 C4.561,55.917 4.574,55.657 4.652,55.449 C5.471,54.747 6.342,53.967 6.979,52.966 C6.446,52.94 5.861,52.758 5.003,52.758 C4.47,52.758 3.82,52.966 3.508,53.148 C3.144,51.913 3.846,51.25 4.769,51.25 C5.796,51.25 6.498,51.51 7.239,51.51 C7.642,51.51 8.058,51.432 8.539,51.198 C8.773,51.237 8.903,51.341 8.994,51.484 Z" id="3" fill="#C62800"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="69px" height="150px" viewBox="0 0 69 150" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>Thermometer/5%</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M117.21503,63.4987836 L23.5878107,63.4987836 C6.43692308,63.4987836 0.404378698,66.4233743 0.404378698,48.0002754 L0.404378698,15.6778873 C0.404378698,-2.74629222 6.43692308,0.178298511 23.5878107,0.178298511 L117.21503,0.178298511 C134.365917,0.178298511 138.398462,-0.746292216 138.398462,17.6778873 L138.398462,46.0002754 C138.398462,64.4233743 134.365917,63.4987836 117.21503,63.4987836 Z" id="path-1"></path>
</defs>
<g id="Thermometer/5%" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-3" transform="translate(2.000000, 0.000000)">
<path d="M10,8.5 C4.75329488,8.5 0.5,12.7532949 0.5,18 L0.5,138 C0.5,143.246705 4.75329488,147.5 10,147.5 L55,147.5 C60.2467051,147.5 64.5,143.246705 64.5,138 L64.5,18 C64.5,12.7532949 60.2467051,8.5 55,8.5 L10,8.5 Z" id="Rectangle-2" stroke="#E9AA5C" fill="#EDB26C"></path>
<g id="Group-92" opacity="0.300000012" transform="translate(32.799999, 77.700001) rotate(-90.000000) translate(-32.799999, -77.700001) translate(-36.700001, 45.700001)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-74"></g>
<path d="M-23.19,-3.02720004 C-23.1105325,-2.88672243 -22.9455621,-2.78514631 -22.7363314,-2.7159881 C-22.5381657,-2.64574929 -22.2786391,-2.60036421 -21.9507101,-2.59928362 C5.58727811,-2.49122391 33.1323077,-2.48798212 60.6632544,-2.59171944 C76.8705917,-2.65223287 93.1352663,-3.14714631 109.33858,-3.06394034 C128.18645,-2.96452541 148.015089,-0.619629843 165.434556,2.66322396 C166.223195,2.81234635 167.073195,2.47628067 167.070178,2.14237619 C167.072189,1.97812544 167.070178,1.81603588 167.072189,1.65286573 C167.070178,1.38055527 166.67284,1.20225676 166.131657,1.09960004 C149.486746,-2.06330749 131.003018,-4.01918812 113.046391,-4.502215 C104.791834,-4.72265679 96.4507692,-4.36281798 88.2052663,-4.27528962 C79.5433136,-4.18235828 70.8753254,-4.14345678 62.2063314,-4.11428066 C34.0738462,-4.02026872 5.93532544,-4.11644186 -22.2082249,-4.19856723 C-23.056213,-4.20072843 -23.663787,-3.86358215 -23.4595858,-3.50158214 C-23.3680473,-3.34381497 -23.2805325,-3.18388661 -23.19,-3.02720004" id="Fill-73" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-22.0231361,2.25043589 C-1.80621302,1.81171349 18.5092899,1.66691349 38.6588166,0.880238846 C53.0937278,0.317247789 67.4069231,0.578752272 81.918284,1.0066687 C109.915976,1.83332543 137.628994,3.69411353 165.352071,5.69862104 C166.366036,5.77102104 167.11645,5.48142103 166.944438,5.02432849 C166.880059,4.85035236 166.814675,4.67529564 166.74929,4.50240012 C166.687929,4.33274638 166.250355,4.12743294 165.853018,4.09825682 C138.550414,2.15642395 111.18142,0.419904508 83.6343787,-0.437008943 C68.9952663,-0.89410149 54.245503,-1.31337314 39.6768047,-0.653128351 C19.2526627,0.271862713 -1.46420118,0.314005998 -21.9839053,0.759211977 C-22.7011243,0.774340336 -23.2563905,0.98073437 -23.2815385,1.30491348 C-23.2895858,1.42918214 -23.2976331,1.54804781 -23.3076923,1.67015528 C-23.3177515,1.80631051 -23.2362722,1.917612 -23.0954438,2.00297917 C-22.9063314,2.15426275 -22.5532544,2.26124186 -22.0231361,2.25043589" id="Fill-75" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M160.511598,12.9559107 C154.596805,12.6101197 148.749408,11.9261018 142.981479,11.2518092 C129.758698,9.70439426 116.74213,7.79497929 103.686331,5.98822104 C94.2377515,4.68069863 84.4713018,3.10842994 74.6143195,2.59514634 C68.5385799,2.27853141 62.3330769,2.37038216 56.2492899,2.43954037 C29.9284615,2.73994635 3.61467456,3.91023294 -22.4898817,5.19506282 C-23.2493491,5.23288371 -23.5068639,5.48574342 -23.4072781,5.74076432 C-23.4143195,5.7839882 -23.4133136,5.82937328 -23.3982249,5.87691955 C-23.3620118,5.99794642 -23.3247929,6.11789269 -23.2885799,6.23891956 C-23.1849704,6.57066285 -22.3259172,6.68088374 -21.7022485,6.65062703 C2.92763314,5.44468073 27.7043787,4.41919414 52.5102959,3.99235831 C58.676568,3.88537921 64.8730178,3.82162398 71.050355,3.96750458 C79.8199408,4.17497921 88.439645,5.51924193 96.8038462,6.64522404 C109.739941,8.38822706 122.584497,10.2652241 135.575917,11.9217794 C145.458047,13.1817555 155.688225,14.4914391 165.963669,14.7842809 C166.881065,14.8091347 167.655621,14.3044958 167.085266,13.9489794 C165.36213,12.8770272 163.409645,13.1244839 160.511598,12.9559107" id="Fill-76" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-22.2152663,16.7790631 C-13.9949112,15.9859048 -5.81881657,15.0922511 2.2687574,14.0862152 C4.90325444,13.7577137 18.2125444,12.697648 18.2306509,10.8833256 C18.2618343,7.98624497 -17.6604734,10.313851 -22.6347337,10.5450988 C-23.1447337,10.5688719 -23.6456805,10.8552301 -23.5853254,11.0756719 C-23.5531361,11.1956182 -23.5219527,11.3155644 -23.4857396,11.4355107 C-23.4133136,11.7089018 -22.9616568,12.0503704 -22.2031953,12.0157913 C-14.981716,11.6829674 -7.74615385,11.4074152 -0.492485207,11.2107465 C2.48502959,11.1318629 5.46857988,11.0767525 8.45213018,11.0583823 C9.73467456,11.048657 11.0152071,11.0605435 12.2937278,11.0832361 C12.3852663,11.0853973 12.4788166,11.0908003 12.570355,11.0929614 C8.65733728,11.9812122 3.34307692,12.3399704 -0.629289941,12.8132719 C-7.98857988,13.6874749 -15.4233136,14.4546988 -22.8771598,15.1732959 C-23.3167456,15.2143586 -23.5823077,15.3267406 -23.712071,15.4650571 C-23.7191124,15.4715406 -23.7181065,15.4769436 -23.724142,15.481266 C-23.7392308,15.5007168 -23.7563314,15.5180063 -23.7643787,15.5352959 C-23.8036095,15.5871645 -23.8287574,15.6411944 -23.8307692,15.703869 C-23.8347929,15.8746033 -23.8388166,16.0442571 -23.845858,16.216072 C-23.8539053,16.5877974 -23.0260355,16.8557855 -22.2152663,16.7790631" id="Fill-77" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M64.8800592,50.8124668 C94.2498225,50.8686578 123.682959,51.5343056 153.039645,52.3090937 C153.915799,52.3317862 154.473077,51.9708668 154.308107,51.6185922 C154.233669,51.4565026 154.159231,51.2965742 154.082781,51.1366459 C153.965089,50.8848668 153.583846,50.7551951 153.151302,50.720616 C153.137219,50.7195354 153.125148,50.7195354 153.113077,50.7195354 C153.090947,50.7162936 153.064793,50.7130518 153.042663,50.7130518 C152.97929,50.7076489 152.919941,50.7011653 152.850533,50.6990041 C123.932426,49.9317802 94.9308284,49.3795951 66.0026627,49.3115175 C47.8488757,49.2682936 29.8912426,50.0257921 11.7917751,50.3759056 C-3.68627219,50.6763115 -19.1854438,50.8632548 -34.6886391,50.9648309 C-35.4380473,50.9702339 -35.927929,51.1852727 -35.9963314,51.5051295 C-36.024497,51.6261563 -36.049645,51.7482638 -36.0788166,51.8703713 C-36.1421893,52.1632131 -35.4672189,52.4614578 -34.8053254,52.4571355 C-19.7578107,52.3706877 -4.71733728,52.1696966 10.3060355,51.8930638 C28.526213,51.5580787 46.607574,50.7789683 64.8800592,50.8124668" id="Fill-78" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-35.0588166,42.6107352 C-18.478284,45.8708965 -0.0297633136,47.9402398 17.9208284,48.5302458 C26.170355,48.8014757 34.5184615,48.4924249 42.7679882,48.454604 C51.4339645,48.4146219 60.1049704,48.4286697 68.7749704,48.4513622 C96.9114793,48.5302458 125.053018,48.7971533 153.19858,49.0510936 C154.044556,49.0586578 154.660178,48.7236727 154.463018,48.3605921 C154.375503,48.2028249 154.29,48.0439772 154.204497,47.88621 C154.12503,47.7435712 153.962071,47.6419951 153.756864,47.5728368 C153.559704,47.4993562 153.302189,47.45181 152.970237,47.4485682 C125.432249,47.1751771 97.8821893,47.0022816 70.3482249,46.939607 C54.1368639,46.9017861 37.8591124,47.2972846 21.6568047,47.1157443 C2.80893491,46.9039473 -16.972426,44.4380248 -34.3285207,41.0481919 C-35.1171598,40.8947472 -35.9721893,41.227571 -35.9772189,41.5603949 C-35.9792308,41.7246457 -35.9832544,41.8867352 -35.9872781,42.0499054 C-35.9943195,42.3222158 -35.5969822,42.5037561 -35.0588166,42.6107352" id="Fill-79" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M153.14426,42.6020905 C132.91426,42.9176248 112.593728,42.9392367 92.4230769,43.6016427 C77.9781065,44.0771054 63.667929,43.7280726 49.1636095,43.2126278 C21.1779882,42.2163173 -6.49881657,40.1880367 -34.1836686,38.0171172 C-35.2006509,37.9360725 -35.9560947,38.2202695 -35.7931361,38.6806038 C-35.7297633,38.8545799 -35.6673964,39.0285561 -35.6080473,39.2025322 C-35.5466864,39.3721859 -35.114142,39.5818218 -34.7208284,39.6120785 C-7.45242604,41.7214039 19.8833728,43.6221741 47.4173373,44.6465801 C62.0494083,45.1922816 76.7931361,45.7001622 91.3789349,45.1296069 C111.822189,44.3288845 132.543077,44.4131711 153.076864,44.0933144 C153.792071,44.0814278 154.349349,43.8793562 154.381538,43.5530159 C154.393609,43.431989 154.403669,43.3109621 154.41574,43.1877741 C154.429822,43.0526994 154.351361,42.9424785 154.212544,42.8538696 C154.025444,42.702586 153.674379,42.5934457 153.14426,42.6020905" id="Fill-80" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-29.1963314,30.7890037 C-23.2885799,31.171535 -17.4512426,31.890132 -11.6984024,32.6011649 C1.49319527,34.2263828 14.4735503,36.215762 27.4951479,38.1003232 C36.9195858,39.4640367 46.6528402,41.0968188 56.5007692,41.6695352 C62.5724852,42.0228905 68.7789941,41.9699412 74.863787,41.9386039 C101.193669,41.7948845 127.537633,40.787768 153.668343,39.6607053 C154.428817,39.6272068 154.690355,39.3765083 154.598817,39.1204068 C154.605858,39.0771829 154.608876,39.0317979 154.589763,38.9842516 C154.559586,38.8632247 154.524379,38.744359 154.490178,38.6222516 C154.392604,38.2905083 153.534556,38.1738038 152.914911,38.2008187 C128.255858,39.256562 103.458994,40.1318456 78.6329586,40.4073979 C72.4636686,40.4765561 66.2692308,40.5014098 60.0949112,40.3187889 C51.330355,40.0572844 42.7347929,38.6633143 34.3886982,37.4854635 C21.4888166,35.6657381 8.68248521,33.7098574 -4.28177515,31.9744186 C-14.1367456,30.6550096 -24.3387574,29.2826514 -34.6131953,28.9292962 C-35.5285799,28.8968782 -36.3142012,29.3971947 -35.7518935,29.7559529 C-34.0508876,30.8376305 -32.0883432,30.603141 -29.1963314,30.7890037" id="Fill-81" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M154.264852,25.7566633 C148.179053,25.28012 141.037041,26.4925498 135.155444,26.9928663 C120.135089,28.2712126 105.119763,29.5711708 90.1627811,30.9694634 C80.6256805,31.8609559 71.0845562,32.7870276 61.7114201,33.9400246 C58.4110059,34.3463291 54.8842604,34.74615 51.8705325,35.47015 C51.0798817,35.6581739 49.8476331,36.0288187 49.9260947,36.499959 C50.1926627,38.1986575 58.4029586,38.0635829 61.0797041,38.1457083 C77.9167456,38.6546695 94.9157396,38.3272486 111.71858,38.1046456 C125.617337,37.9198635 139.511065,37.6702456 153.386686,37.3503889 C154.078757,37.3341799 154.695385,37.1396724 154.694379,36.8122515 C154.693373,36.6890635 154.693373,36.5680366 154.690355,36.4459291 C154.693373,36.1606515 154.131065,35.842956 153.421893,35.8602456 C125.480533,36.4967172 97.376213,37.0921262 69.3352663,36.8046874 C66.2702367,36.7755112 63.206213,36.7182396 60.1452071,36.6199053 C58.9743195,36.5820844 57.7994083,36.5312963 56.6325444,36.4675411 C56.1285799,36.4405262 55.7513609,36.4037859 55.4495858,36.3767709 C56.8880473,36.132556 58.8033136,35.8905023 59.6523077,35.7694754 C74.0570414,33.7249858 89.1327219,32.4163828 103.973018,31.0580723 C120.661183,29.5322693 137.433846,28.1588305 154.232663,26.8415827 C154.936805,26.7864722 155.21142,26.5487409 155.16716,26.3077677 C155.253669,26.0624722 155.001183,25.8150155 154.264852,25.7566633" id="Fill-82" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M154.260828,29.6889559 C154.702426,29.6489738 154.965976,29.5376723 155.098757,29.4004365 C155.105799,29.3939529 155.109822,29.3885499 155.11787,29.3831469 C155.127929,29.3658574 155.14503,29.3485678 155.158107,29.3301977 C155.192308,29.2794096 155.222485,29.2253797 155.221479,29.1627051 C155.230533,28.9919708 155.240592,28.822317 155.248639,28.6515827 C155.267751,28.2787767 154.440888,28.0064663 153.633136,28.0788663 C145.394675,28.822317 137.198462,29.6651827 129.088757,30.6225917 C126.447219,30.9316425 113.113787,31.9128246 113.060473,33.727147 C112.967929,36.6231471 148.944556,34.5138216 153.920828,34.3139112 C154.433846,34.2933798 154.94284,34.0091828 154.887515,33.7876604 C154.85432,33.6677142 154.825148,33.5456067 154.793964,33.426741 C154.72858,33.1544306 154.281953,32.8108007 153.521479,32.8399768 C146.292959,33.1284962 139.050355,33.3608246 131.788639,33.5110276 C128.813136,33.5758634 125.829586,33.6093619 122.842012,33.6126037 C121.561479,33.6136843 120.282959,33.593153 118.999408,33.5628963 C118.910888,33.5596545 118.817337,33.5531709 118.727811,33.5499291 C122.657929,32.6865321 127.975207,32.3601917 131.959645,31.9128246 C139.340059,31.0818455 146.791893,30.3600066 154.260828,29.6889559" id="Fill-83" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-26.5034911,27.8184424 C-19.4127811,28.3349678 -12.3613018,28.994132 -5.34502959,29.6878753 C7.96627219,31.0029619 21.4526036,33.649344 35.1753254,33.0247589 C43.4560355,32.6487112 51.5214793,31.7474932 59.5989941,30.9424484 C69.3926036,29.9666693 79.2445562,29.0978693 89.1105917,28.2528424 C97.5281065,27.5320842 105.961716,26.8383409 114.399349,26.1575648 C117.326568,25.9219946 120.917692,25.8636424 123.751361,25.4011468 C124.025976,25.3892603 124.241243,25.3406334 124.401183,25.2671528 C125.16568,25.0078095 124.798521,24.3497259 123.813728,24.2838095 C132.462604,24.4394155 141.112485,24.6004244 149.758343,24.7992543 C154.698402,24.9137976 159.943254,24.8694931 164.833018,25.2790394 C165.561302,25.3395528 166.58432,25.1558513 166.474675,24.757111 C166.420355,24.5734095 166.370059,24.389708 166.319763,24.2060065 C166.256391,23.9736781 165.986805,23.7024483 165.379231,23.6505796 C160.650414,23.2561617 155.642959,23.3004662 150.872899,23.2075348 C141.436391,23.0249139 131.998876,22.8984841 122.563373,22.7763766 C108.514734,22.5937557 94.4640828,22.5029856 80.4204734,22.2922691 C79.7988166,22.2825438 79.4115385,22.4251826 79.2536095,22.6121259 C73.3951479,22.925499 67.4552071,23.6819169 61.9045562,24.0871408 C55.1810059,24.5777319 48.4383432,25.0348244 41.665503,25.4011468 C37.3189349,25.6356364 32.8466272,25.9176722 28.4497633,25.6280722 C7.76508876,24.2643587 -13.0443195,23.2388722 -33.7913609,22.129099 C-34.6614793,22.0837139 -35.2167456,22.4846154 -35.0557988,22.8196005 C-34.9753254,22.9827707 -34.8938462,23.1459408 -34.8173964,23.309111 C-34.6906509,23.5684542 -34.142426,23.7175766 -33.5871598,23.7456722 C-13.0664497,24.8197856 7.50053254,25.7998871 27.9659172,27.106329 C37.900355,27.74172 48.9181657,26.5098394 58.6152071,25.8452722 C68.1663905,25.191511 77.7014793,24.4739946 87.1963314,23.6840781 C97.9556213,23.8440065 108.714911,24.0212244 119.474201,24.2103289 C112.690296,24.2838095 105.878225,25.2304125 99.3226627,25.8009677 C80.5592899,27.4315887 61.9468047,29.3485678 43.194497,30.9899947 C35.7326036,31.6437559 28.2676923,31.9420007 20.7072189,31.160729 C14.015858,30.4691469 7.44621302,29.4739171 0.748816568,28.7628842 C-10.6693491,27.5515349 -22.7323077,26.1186633 -34.458284,25.8074513 C-35.684497,25.7750334 -36.0526627,26.3801677 -35.3998225,26.7518931 C-33.547929,27.8108782 -29.3331361,27.6120484 -26.5034911,27.8184424" id="Fill-84" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-33.8497041,20.0673198 C-29.1259172,20.4898333 -24.1174556,20.4779467 -19.3443787,20.6000542 C-9.91289941,20.8388661 -0.47739645,21.0225676 8.95710059,21.2008661 C20.4909467,21.4223885 32.0308284,21.5823169 43.5616568,21.7973557 C43.6069231,21.8114035 43.6481657,21.8254512 43.6964497,21.8362572 C43.7034911,21.8384184 43.7095266,21.839499 43.717574,21.8427408 C43.7819527,21.8578691 43.8553846,21.8708363 43.9278107,21.8805617 C43.9449112,21.8827229 43.9620118,21.8859647 43.9801183,21.8892065 C44.0253846,21.8935288 44.069645,21.8967706 44.117929,21.9000124 C44.1631953,21.9043348 44.2044379,21.9097378 44.2486982,21.911899 C46.0231361,21.9853796 47.8277515,21.9745736 49.642426,21.9140602 C50.1272781,21.9237856 50.6121302,21.9313497 51.0949704,21.9421557 C51.4923077,21.9497199 51.7860355,21.89569 51.9972781,21.8070811 C57.9321893,21.4677736 63.9515976,20.6573258 69.5686391,20.2121199 C76.2831361,19.6815467 83.011716,19.1823109 89.7775148,18.7749258 C94.1170414,18.5134213 98.5823077,18.2054512 102.985207,18.4669556 C123.692012,19.7064004 144.515503,20.6065378 165.279645,21.5888005 C166.153787,21.6287826 166.7,21.2246393 166.532012,20.8907348 C166.448521,20.7275646 166.36503,20.5654751 166.28355,20.4023049 C166.152781,20.1440422 165.599527,20.0003228 165.04426,19.9733079 C144.509467,19.0245437 123.924379,18.1687109 103.439882,16.9865377 C93.4933728,16.4127407 82.5037278,17.7094571 72.8227811,18.4334571 C63.9777515,19.0937019 55.1508284,19.8133795 46.3571006,20.5881676 C45.902426,20.5665557 45.4457396,20.5438631 44.9890533,20.5222512 C36.6751479,20.3482751 28.3602367,20.163493 20.0483432,19.9733079 C24.1273373,19.6026631 28.1731361,19.0947825 32.1263905,18.7262989 C50.8515385,16.9811347 69.4197633,14.9506929 88.135858,13.1947227 C95.5806509,12.4955764 103.040533,12.1519465 110.612071,12.8878331 C117.315503,13.5383525 123.906272,14.4946809 130.616746,15.1635705 C142.05503,16.3057616 154.14716,17.6673138 165.874142,17.9061258 C167.098343,17.9298989 167.452426,17.323684 166.797574,16.956281 C164.92355,15.9070213 160.711775,16.132866 157.878107,15.9437616 C150.780355,15.47046 143.716805,14.8523585 136.689467,14.2029197 C123.35503,12.9677973 109.818402,10.4035405 96.1107692,11.1113316 C87.8371006,11.5381674 79.7947929,12.4869316 71.7363905,13.3406033 C61.9649112,14.3779764 52.1330769,15.3051287 42.2861538,16.2128302 C33.8847337,16.9843765 25.4672189,17.7278273 17.0456805,18.4604721 C14.1224852,18.715493 10.5353846,18.7943765 7.71278107,19.2741616 C7.43514793,19.2871288 7.22289941,19.3379168 7.06497041,19.412478 C6.88088757,19.4762333 6.77224852,19.5648422 6.71491124,19.662096 C-0.993431953,19.4783945 -8.69976331,19.2828064 -16.4030769,19.0634452 C-12.0705917,18.7792482 -7.62242604,18.1081974 -3.72349112,17.7516004 C11.2666864,16.3814034 26.2498225,14.990675 41.179645,13.5016122 C50.6946154,12.5506869 60.2156213,11.5673435 69.5646154,10.3559943 C72.8559763,9.93023904 76.3706509,9.50988679 79.3692899,8.76751662 C80.1559172,8.57408975 81.3791124,8.19588079 81.2926036,7.72582108 C80.9898225,6.02604194 72.786568,6.21298523 70.1098225,6.1481494 C53.2647337,5.74076432 36.2768047,6.17084194 19.4820118,6.49502105 C5.59230769,6.76625091 -8.29236686,7.10015539 -22.1599408,7.50321809 C-22.8530178,7.52483003 -23.4626036,7.72149869 -23.4555621,8.05108079 C-23.4525444,8.17318825 -23.4515385,8.29421512 -23.4485207,8.41632259 C-23.4424852,8.70051961 -22.8731361,9.01497335 -22.1649704,8.994442 C5.75828402,8.18939721 33.8414793,7.42217331 61.8814201,7.53779719 C64.9454438,7.55076436 68.0094675,7.58750466 71.0724852,7.66530765 C72.2453846,7.69772556 73.4202959,7.74311063 74.5871598,7.79822108 C75.094142,7.82199422 75.4713609,7.85657332 75.7701183,7.88142705 C74.3407101,8.13536736 72.4304734,8.38930766 71.5824852,8.51465692 C57.2220118,10.6477555 42.1775148,12.0482092 27.3704142,13.4962093 C10.7144379,15.1235884 -6.02301775,16.599684 -22.7906509,18.0185079 C-23.4947929,18.0779407 -23.7643787,18.3189138 -23.7140828,18.5588064 C-23.7523077,18.6765915 -23.7080473,18.7932959 -23.5742604,18.8905497 C-26.8374556,18.8203109 -30.1278107,18.7252183 -33.2702959,18.4431825 C-33.9955621,18.3761855 -35.0195858,18.5555646 -34.9189941,18.9553855 C-34.871716,19.139087 -34.822426,19.3217079 -34.7771598,19.50649 C-34.7198225,19.7398989 -34.4522485,20.01329 -33.8497041,20.0673198" id="Fill-85" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M65.4011243,54.6939713 C36.0384024,54.8160788 6.59923077,54.3287295 -22.7665089,53.7333206 C-23.6406509,53.7149504 -24.1908876,54.0791116 -24.0178698,54.429225 C-23.9394083,54.590234 -23.8619527,54.751243 -23.7834911,54.9122519 C-23.663787,55.1629504 -23.2775148,55.2893803 -22.8439645,55.3217982 C-22.8308876,55.3228788 -22.8198225,55.3239594 -22.8067456,55.32504 C-22.7826036,55.3261206 -22.7604734,55.3282818 -22.7363314,55.3282818 C-22.6729586,55.3336848 -22.6126036,55.3401684 -22.5442012,55.3401684 C6.38195266,55.9334161 35.3895858,56.3094639 64.3127219,56.2014042 C82.4614793,56.1344072 100.398994,55.2666878 118.488402,54.8063534 C133.953373,54.4130161 149.446509,54.1331415 164.94568,53.933231 C165.691065,53.9256668 166.176923,53.7063056 166.241302,53.3886101 C166.26645,53.2643414 166.287574,53.1433146 166.314734,53.0212071 C166.373077,52.7272847 165.690059,52.4344429 165.028166,52.4430877 C149.989704,52.6224668 134.955266,52.9131474 119.939941,53.2805504 C101.729822,53.7257564 83.6726036,54.6150877 65.4011243,54.6939713" id="Fill-86" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M166.424379,62.8449148 C166.421361,62.5715237 166.02503,62.3932252 165.483846,62.2894879 C148.839941,59.1265804 130.354201,57.1717803 112.396568,56.6887535 C104.143018,56.4683117 95.8029586,56.8281505 87.5564497,56.9156788 C78.894497,57.0096908 70.2265089,57.0496729 61.5585207,57.0777684 C33.4260355,57.1706997 5.28550296,57.073446 -22.8550296,56.9924012 C-23.7040237,56.9913206 -24.3126036,57.3273863 -24.1094083,57.6904669 C-24.0188757,57.8482341 -23.9283432,58.0060012 -23.8388166,58.164849 C-23.7593491,58.3053266 -23.5923669,58.4058221 -23.3861538,58.4749804 C-23.1879882,58.5452192 -22.9284615,58.5916848 -22.5985207,58.5916848 C4.94147929,58.6997445 32.484497,58.7040669 60.0144379,58.6014102 C76.2217751,58.5387356 92.4874556,58.0427415 108.689763,58.1270281 C127.537633,58.2253624 147.366272,60.5724192 164.786746,63.8563536 C165.574379,64.0043954 166.424379,63.6672491 166.425385,63.3333446 C166.423373,63.1690939 166.424379,63.0080849 166.424379,62.8449148" id="Fill-87" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M165.205207,65.2892253 C137.901598,63.3452312 110.532604,61.610873 82.9855621,60.7539595 C68.3464497,60.2979476 53.5966864,59.8786759 39.0249704,60.5378401 C18.6028402,61.4628312 -2.11402367,61.5049745 -22.631716,61.9501804 C-23.3509467,61.9663894 -23.9052071,62.1717028 -23.930355,62.4980431 C-23.9373964,62.61907 -23.9464497,62.7400969 -23.9565089,62.8632849 C-23.967574,62.997279 -23.8850888,63.1074999 -23.7442604,63.1939476 C-23.5561538,63.3463118 -23.2010651,63.4532909 -22.6719527,63.4414043 C-2.45402367,63.0026819 17.8614793,62.8578819 38.0110059,62.0712073 C52.4459172,61.5082162 66.7601183,61.7708013 81.2704734,62.1987177 C109.266154,63.0242939 136.97716,64.8840014 164.703254,66.8895895 C165.722249,66.9609089 166.467633,66.6723895 166.297633,66.2152969 C166.231243,66.0413208 166.16787,65.8673447 166.101479,65.692288 C166.040118,65.5226342 165.601538,65.3173208 165.205207,65.2892253" id="Fill-88" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M159.862781,74.1468792 C153.947988,73.8010881 148.100592,73.1170702 142.331657,72.4416971 C129.109882,70.8953627 116.097337,68.9848671 103.035503,67.1802701 C93.5889349,65.8727477 83.8204734,64.300479 73.9675148,63.7861148 C67.8887574,63.4694999 61.6852663,63.56027 55.6014793,63.6305088 C29.279645,63.9319954 2.96686391,65.1001208 -23.1397041,66.3860313 C-23.8981657,66.4249328 -24.1546746,66.6777925 -24.0560947,66.9328134 C-24.0621302,66.9760373 -24.0621302,67.0203417 -24.0470414,67.067888 C-24.0088166,67.1889149 -23.9736095,67.3099417 -23.9353846,67.429888 C-23.8307692,67.7627119 -22.9747337,67.8729328 -22.3530769,67.8426761 C2.27680473,66.6356492 27.0515385,65.6112432 51.8614793,65.1833268 C58.0297633,65.0774283 64.2211834,65.0125924 70.4025444,65.1595536 C79.1681065,65.3659477 87.7918343,66.711291 96.1550296,67.8372731 C109.093136,69.5791955 121.93568,71.4572732 134.929112,73.1116672 C144.812249,74.3716434 155.039408,75.6824076 165.314852,75.9741688 C166.232249,76.0011837 167.006805,75.4965449 166.437456,75.1410285 C164.716331,74.0690762 162.760828,74.3154523 159.862781,74.1468792" id="Fill-89" fill="#E09637" mask="url(#mask-2)"></path>
</g>
<g id="Group-2" transform="translate(10.000000, 0.000000)">
<g id="2" transform="translate(40.000000, 0.000000)">
<circle id="Oval-2" stroke="#E9AA5C" fill="#79450E" cx="2.5" cy="13.5" r="2.5"></circle>
<path d="M1,0 L4,0 L4,13.5 C4,14.3284271 3.32842712,15 2.5,15 L2.5,15 C1.67157288,15 1,14.3284271 1,13.5 L1,0 Z" id="Rectangle-3" fill="#9CA0A4"></path>
</g>
<g id="1">
<circle id="Oval-2" stroke="#E9AA5C" fill="#79450E" cx="2.5" cy="13.5" r="2.5"></circle>
<path d="M1,0 L4,0 L4,13.5 C4,14.3284271 3.32842712,15 2.5,15 L2.5,15 C1.67157288,15 1,14.3284271 1,13.5 L1,0 Z" id="Rectangle-3" fill="#9CA0A4"></path>
</g>
</g>
</g>
<g id="Thermometer/" transform="translate(2.000000, 23.000000)">
<path d="M15.38,-0.32 C16.932,-0.32 17.604,0.736 17.604,1.712 C17.604,2.56 17.092,3.344 16.308,3.344 C16.02,3.344 15.54,3.152 15.364,2.704 C16.324,2.304 16.404,0.768 15.156,0.768 C13.764,0.768 12.308,3.84 12.308,7.184 C12.308,9.072 12.948,10.64 14.564,10.64 C15.412,10.64 16.372,10.4 17.428,9.808 C17.604,9.888 17.7,10.032 17.7,10.192 C17.7,10.304 17.668,10.432 17.556,10.544 C16.42,11.68 15.012,12.128 13.668,12.128 C11.156,12.128 10.052,9.92 10.052,7.456 C10.052,3.376 12.452,-0.32 15.38,-0.32 Z M20.212,4.8 L19.652,7.536 L19.748,7.504 C20.516,7.264 21.588,5.808 21.972,4.096 C22.228,3.968 22.5,3.92 22.74,3.92 C23.284,3.92 23.572,4.272 23.572,4.672 C23.572,5.632 22.324,7.04 21.332,7.712 C21.556,8.608 22.004,10.48 23.156,10.48 C23.476,10.48 23.828,10.192 24.244,9.808 C24.42,9.888 24.516,10.032 24.516,10.192 C24.516,10.304 24.468,10.432 24.372,10.544 C23.796,11.248 22.692,12.128 22.02,12.128 C20.42,12.128 20.004,9.568 19.764,8.32 L19.476,8.4 L18.916,11.12 C18.756,11.856 18.148,12.128 17.572,12.128 C17.284,12.128 17.012,12.048 16.82,11.92 L18.132,5.776 C18.196,5.504 18.116,5.376 17.972,5.376 C17.892,5.376 17.796,5.44 17.652,5.568 C17.444,5.44 17.332,4.944 17.652,4.688 C18.196,4.256 18.772,3.92 19.444,3.92 C20.02,3.92 20.34,4.176 20.212,4.8 Z M24.196,9.056 L24.948,5.776 C25.012,5.52 24.932,5.376 24.788,5.376 C24.708,5.376 24.612,5.44 24.468,5.568 C24.26,5.44 24.148,4.944 24.468,4.688 C25.012,4.256 25.588,3.92 26.26,3.92 C26.836,3.92 27.172,4.192 27.028,4.8 L26.052,9.344 C25.908,10 26.116,10.288 26.596,10.288 C27.156,10.288 27.636,9.968 28.068,9.456 L29.028,4.928 C29.188,4.192 29.796,3.92 30.372,3.92 C30.66,3.92 30.932,4 31.124,4.128 L30.004,9.424 C29.812,10.32 30.068,10.608 30.484,10.608 C31.076,10.608 31.764,10.208 32.164,9.808 C32.34,9.888 32.436,10.032 32.436,10.192 C32.436,10.304 32.388,10.432 32.292,10.544 C31.54,11.392 30.388,12.128 29.524,12.128 C28.74,12.128 27.956,11.728 28.036,10.32 C27.396,11.36 26.612,12.128 25.7,12.128 C23.924,12.128 23.924,10.256 24.196,9.056 Z M40.324,10.528 C40.036,10.784 38.948,11.504 37.812,12.032 C37.092,15.008 35.972,18.16 33.204,18.16 C32.228,18.16 31.316,17.52 31.316,16.192 C31.316,14.208 33.812,12.688 35.972,11.888 C36.084,11.488 36.196,11.088 36.324,10.64 C35.668,11.52 34.852,12.128 33.988,12.128 C32.324,12.128 31.988,10.464 31.988,9.44 C31.988,6.64 33.796,3.856 36.02,3.856 C36.74,3.856 37.252,4.032 37.652,4.384 C37.924,4.064 38.356,3.92 38.756,3.92 C39.044,3.92 39.316,4 39.508,4.128 L38.164,10.464 C38.116,10.688 38.068,10.912 38.02,11.12 C38.9,10.688 39.748,10.208 40.308,9.728 C40.548,9.936 40.596,10.288 40.324,10.528 Z M36.452,9.472 L37.348,5.184 C37.076,5.088 36.836,5.056 36.596,5.056 C34.66,5.056 33.972,7.584 33.972,9.328 C33.972,10.128 34.34,10.48 34.836,10.48 C35.348,10.48 36.02,10.064 36.452,9.472 Z M33.06,16.736 C34.164,16.736 34.82,15.632 35.636,13.008 C33.876,13.712 32.404,14.912 32.404,15.984 C32.404,16.544 32.852,16.736 33.06,16.736 Z M42.932,4.8 L42.372,7.536 L42.468,7.504 C43.236,7.264 44.308,5.808 44.692,4.096 C44.948,3.968 45.22,3.92 45.46,3.92 C46.004,3.92 46.292,4.272 46.292,4.672 C46.292,5.632 45.044,7.04 44.052,7.712 C44.276,8.608 44.724,10.48 45.876,10.48 C46.196,10.48 46.548,10.192 46.964,9.808 C47.14,9.888 47.236,10.032 47.236,10.192 C47.236,10.304 47.188,10.432 47.092,10.544 C46.516,11.248 45.412,12.128 44.74,12.128 C43.14,12.128 42.724,9.568 42.484,8.32 L42.196,8.4 L41.636,11.12 C41.476,11.856 40.868,12.128 40.292,12.128 C40.004,12.128 39.732,12.048 39.54,11.92 L40.852,5.776 C40.916,5.504 40.836,5.376 40.692,5.376 C40.612,5.376 40.516,5.44 40.372,5.568 C40.164,5.44 40.052,4.944 40.372,4.688 C40.916,4.256 41.492,3.92 42.164,3.92 C42.74,3.92 43.06,4.176 42.932,4.8 Z M50.82,3.856 C51.54,3.856 52.068,4.032 52.468,4.384 C52.74,4.064 53.156,3.92 53.556,3.92 C53.844,3.92 54.116,4 54.308,4.128 L53.188,9.424 C52.996,10.32 53.252,10.608 53.668,10.608 C54.26,10.608 54.948,10.208 55.348,9.808 C55.524,9.888 55.62,10.032 55.62,10.192 C55.62,10.304 55.572,10.432 55.476,10.544 C54.724,11.392 53.572,12.128 52.708,12.128 C51.956,12.128 51.204,11.776 51.22,10.512 C50.548,11.456 49.7,12.128 48.788,12.128 C47.124,12.128 46.788,10.464 46.788,9.44 C46.788,6.64 48.596,3.856 50.82,3.856 Z M51.252,9.472 L52.148,5.184 C51.876,5.088 51.636,5.056 51.396,5.056 C49.46,5.056 48.772,7.584 48.772,9.328 C48.772,10.128 49.14,10.48 49.636,10.48 C50.148,10.48 50.82,10.064 51.252,9.472 Z" id="Cкидка" fill="#644A32"></path>
<g id="thermometer/3%" transform="translate(10.000000, 25.000000)">
<g id="thermometer" transform="translate(17.000000, 0.000000)">
<path d="M21.1586785,63.3083354 L21.1586785,8.12195722 C21.1586785,3.91250744 17.7462186,0.5 13.5367213,0.5 C9.32722391,0.5 5.91476404,3.91250744 5.91476404,8.12195722 L5.91476404,63.3068601 C5.91476404,64.2094636 5.55540691,65.0653964 4.904219,65.6417948 C1.65032386,68.5212664 0.0122455548,72.7916526 0.628839471,77.2478412 C1.43032398,83.0406679 6.19464185,87.6818983 12.0116702,88.3408974 C19.8271746,89.226472 26.5734805,83.1618122 26.5734805,75.3907876 C26.5734805,71.6177495 24.9544916,68.1099891 22.1761817,65.6479625 C21.5218366,65.0681192 21.1586785,64.211064 21.1586785,63.3083354 Z" id="Shape" stroke="#E9AA5C" fill="#F1F0F0" fill-rule="nonzero"></path>
<g id="Group" transform="translate(5.343824, 5.409393)" fill="#DADFE5" fill-rule="nonzero">
<path d="M10.9277262,59.8673105 L10.9277262,2.8520658 C10.9277262,1.50348781 10.0061624,0.253590265 8.67512396,0.0370506373 C6.97886955,-0.238828389 5.51308806,1.06303211 5.51308806,2.70732357 L5.51308806,59.864196 C5.51308806,61.2404766 4.79544197,62.4923412 3.65733853,63.2660483 C1.09066367,65.0106594 -0.425113726,68.1820388 0.264993642,71.6460171 C0.882811854,74.7469105 3.37227993,77.2675235 6.46710822,77.9145197 C11.718645,79.0122986 16.3423643,75.0341001 16.3423643,69.9759901 C16.3423643,67.1555655 14.9021545,64.6764245 12.7187269,63.2224453 C11.5968517,62.4754573 10.9277262,61.2152328 10.9277262,59.8673105 Z" id="Shape"></path>
</g>
<path d="M10.8569123,39 L10.8569123,65.1649045 C10.8569123,66.5411851 10.1392662,67.7932137 9.00116281,68.5667568 C6.43448795,70.3115318 4.91871055,73.4827473 5.60881792,76.9467257 C6.22663613,80.047619 8.71610421,82.5682321 11.8109325,83.2152283 C17.0623053,84.3130071 21.6860247,80.3348086 21.6860247,75.2766986 C21.6860247,72.4562741 20.2458149,69.9769691 18.0623873,68.5231538 C16.940512,67.7761659 16.2713866,66.5159413 16.2713866,65.168019 L16.2713866,39 L10.8569123,39 Z" id="Shape" fill="#FE6E01" fill-rule="nonzero"></path>
<path d="M14.1483033,77.3961554 C14.1483033,77.1014648 14.2053669,76.8275578 14.3194958,76.5744262 C14.4336246,76.3212945 14.5910414,76.0983909 14.7917508,75.9057085 C14.9924602,75.7130262 15.2246499,75.5619051 15.4883269,75.4523407 C15.752004,75.3427762 16.0373219,75.2879948 16.3442892,75.2879948 C16.6512565,75.2879948 16.9365744,75.3427762 17.2002514,75.4523407 C17.4639284,75.5619051 17.6961182,75.7130262 17.8968275,75.9057085 C18.0975369,76.0983909 18.2549537,76.3212945 18.3690826,76.5744262 C18.4832114,76.8275578 18.540275,77.1014648 18.540275,77.3961554 C18.540275,77.690846 18.4832114,77.9647531 18.3690826,78.2178847 C18.2549537,78.4710164 18.0975369,78.69392 17.8968275,78.8866023 C17.6961182,79.0792846 17.4639284,79.2304058 17.2002514,79.3399702 C16.9365744,79.4495347 16.6512565,79.5043161 16.3442892,79.5043161 C16.0373219,79.5043161 15.752004,79.4495347 15.4883269,79.3399702 C15.2246499,79.2304058 14.9924602,79.0792846 14.7917508,78.8866023 C14.5910414,78.69392 14.4336246,78.4710164 14.3194958,78.2178847 C14.2053669,77.9647531 14.1483033,77.690846 14.1483033,77.3961554 Z M17.406863,77.3961554 C17.406863,77.109021 17.3045421,76.8672272 17.0998972,76.6707668 C16.8952523,76.4743064 16.6433855,76.3760777 16.3442892,76.3760777 C16.0451928,76.3760777 15.793326,76.4743064 15.5886811,76.6707668 C15.3840363,76.8672272 15.2817154,77.109021 15.2817154,77.3961554 C15.2817154,77.6832899 15.3840363,77.9250836 15.5886811,78.121544 C15.793326,78.3180044 16.0451928,78.4162332 16.3442892,78.4162332 C16.6433855,78.4162332 16.8952523,78.3180044 17.0998972,78.121544 C17.3045421,77.9250836 17.406863,77.6832899 17.406863,77.3961554 Z M8.540275,73.3158446 C8.540275,73.021154 8.59733858,72.7472469 8.71146744,72.4941153 C8.82559631,72.2409836 8.98301308,72.01808 9.18372246,71.8253977 C9.38443185,71.6327154 9.61662158,71.4815942 9.88029861,71.3720298 C10.1439756,71.2624653 10.4292935,71.2076839 10.7362608,71.2076839 C11.0432281,71.2076839 11.328546,71.2624653 11.5922231,71.3720298 C11.8559001,71.4815942 12.0880898,71.6327154 12.2887992,71.8253977 C12.4895086,72.01808 12.6469254,72.2409836 12.7610542,72.4941153 C12.8751831,72.7472469 12.9322467,73.021154 12.9322467,73.3158446 C12.9322467,73.6105352 12.8751831,73.8844422 12.7610542,74.1375738 C12.6469254,74.3907055 12.4895086,74.6136091 12.2887992,74.8062915 C12.0880898,74.9989738 11.8559001,75.1500949 11.5922231,75.2596593 C11.328546,75.3692238 11.0432281,75.4240052 10.7362608,75.4240052 C10.4292935,75.4240052 10.1439756,75.3692238 9.88029861,75.2596593 C9.61662158,75.1500949 9.38443185,74.9989738 9.18372246,74.8062915 C8.98301308,74.6136091 8.82559631,74.3907055 8.71146744,74.1375738 C8.59733858,73.8844422 8.540275,73.6105352 8.540275,73.3158446 Z M11.7988346,73.3158446 C11.7988346,73.0287101 11.6965137,72.7869164 11.4918689,72.590456 C11.287224,72.3939956 11.0353572,72.2957668 10.7362608,72.2957668 C10.4371645,72.2957668 10.1852977,72.3939956 9.9806528,72.590456 C9.77600794,72.7869164 9.67368704,73.0287101 9.67368704,73.3158446 C9.67368704,73.602979 9.77600794,73.8447728 9.9806528,74.0412332 C10.1852977,74.2376936 10.4371645,74.3359223 10.7362608,74.3359223 C11.0353572,74.3359223 11.287224,74.2376936 11.4918689,74.0412332 C11.6965137,73.8447728 11.7988346,73.602979 11.7988346,73.3158446 Z M15.5178429,70.981 L16.497772,71.4116995 L11.5863199,79.731 L10.6063907,79.3003005 L15.5178429,70.981 Z" id="Oval-2" fill="#FFFFFF" opacity="0.849999964"></path>
</g>
<path d="M14.5442177,63.9795918 L15.6326531,63.9795918 C15.9332162,63.9795918 16.1768707,64.2232464 16.1768707,64.5238095 C16.1768707,64.8243727 15.9332162,65.0680272 15.6326531,65.0680272 L14.5442177,65.0680272 C14.2436546,65.0680272 14,64.8243727 14,64.5238095 C14,64.2232464 14.2436546,63.9795918 14.5442177,63.9795918 Z M14.5442177,55.696793 L18.3537415,55.696793 C18.6543046,55.696793 18.8979592,55.9404476 18.8979592,56.2410107 C18.8979592,56.5415738 18.6543046,56.7852284 18.3537415,56.7852284 L14.5442177,56.7852284 C14.2436546,56.7852284 14,56.5415738 14,56.2410107 C14,55.9404476 14.2436546,55.696793 14.5442177,55.696793 Z M14.5442177,14.2827988 L15.6326531,14.2827988 C15.9332162,14.2827988 16.1768707,14.5264534 16.1768707,14.8270165 C16.1768707,15.1275797 15.9332162,15.3712342 15.6326531,15.3712342 L14.5442177,15.3712342 C14.2436546,15.3712342 14,15.1275797 14,14.8270165 C14,14.5264534 14.2436546,14.2827988 14.5442177,14.2827988 Z M14.5442177,6 L18.3537415,6 C18.6543046,6 18.8979592,6.24365456 18.8979592,6.54421769 C18.8979592,6.84478082 18.6543046,7.08843537 18.3537415,7.08843537 L14.5442177,7.08843537 C14.2436546,7.08843537 14,6.84478082 14,6.54421769 C14,6.24365456 14.2436546,6 14.5442177,6 Z M14.5442177,47.4139942 L15.6326531,47.4139942 C15.9332162,47.4139942 16.1768707,47.6576487 16.1768707,47.9582119 C16.1768707,48.258775 15.9332162,48.5024295 15.6326531,48.5024295 L14.5442177,48.5024295 C14.2436546,48.5024295 14,48.258775 14,47.9582119 C14,47.6576487 14.2436546,47.4139942 14.5442177,47.4139942 Z M14.5442177,39.1311953 L18.3537415,39.1311953 C18.6543046,39.1311953 18.8979592,39.3748499 18.8979592,39.675413 C18.8979592,39.9759762 18.6543046,40.2196307 18.3537415,40.2196307 L14.5442177,40.2196307 C14.2436546,40.2196307 14,39.9759762 14,39.675413 C14,39.3748499 14.2436546,39.1311953 14.5442177,39.1311953 Z M14.5442177,30.8483965 L15.6326531,30.8483965 C15.9332162,30.8483965 16.1768707,31.0920511 16.1768707,31.3926142 C16.1768707,31.6931773 15.9332162,31.9368319 15.6326531,31.9368319 L14.5442177,31.9368319 C14.2436546,31.9368319 14,31.6931773 14,31.3926142 C14,31.0920511 14.2436546,30.8483965 14.5442177,30.8483965 Z M14.5442177,22.5655977 L18.3537415,22.5655977 C18.6543046,22.5655977 18.8979592,22.8092522 18.8979592,23.1098154 C18.8979592,23.4103785 18.6543046,23.654033 18.3537415,23.654033 L14.5442177,23.654033 C14.2436546,23.654033 14,23.4103785 14,23.1098154 C14,22.8092522 14.2436546,22.5655977 14.5442177,22.5655977 Z" id="Rectangle" fill="#644A32" transform="translate(16.448980, 35.534014) scale(-1, 1) translate(-16.448980, -35.534014) "></path>
<path d="M14.5442177,63.9795918 L15.6326531,63.9795918 C15.9332162,63.9795918 16.1768707,64.2232464 16.1768707,64.5238095 C16.1768707,64.8243727 15.9332162,65.0680272 15.6326531,65.0680272 L14.5442177,65.0680272 C14.2436546,65.0680272 14,64.8243727 14,64.5238095 C14,64.2232464 14.2436546,63.9795918 14.5442177,63.9795918 Z M14.5442177,55.696793 L18.3537415,55.696793 C18.6543046,55.696793 18.8979592,55.9404476 18.8979592,56.2410107 C18.8979592,56.5415738 18.6543046,56.7852284 18.3537415,56.7852284 L14.5442177,56.7852284 C14.2436546,56.7852284 14,56.5415738 14,56.2410107 C14,55.9404476 14.2436546,55.696793 14.5442177,55.696793 Z M14.5442177,47.4139942 L15.6326531,47.4139942 C15.9332162,47.4139942 16.1768707,47.6576487 16.1768707,47.9582119 C16.1768707,48.258775 15.9332162,48.5024295 15.6326531,48.5024295 L14.5442177,48.5024295 C14.2436546,48.5024295 14,48.258775 14,47.9582119 C14,47.6576487 14.2436546,47.4139942 14.5442177,47.4139942 Z M14.5442177,39.1311953 L18.3537415,39.1311953 C18.6543046,39.1311953 18.8979592,39.3748499 18.8979592,39.675413 C18.8979592,39.9759762 18.6543046,40.2196307 18.3537415,40.2196307 L14.5442177,40.2196307 C14.2436546,40.2196307 14,39.9759762 14,39.675413 C14,39.3748499 14.2436546,39.1311953 14.5442177,39.1311953 Z" id="Rectangle" fill="#D0021B" transform="translate(16.448980, 35.534014) scale(-1, 1) translate(-16.448980, -35.534014) "></path>
<path d="M4.173,0.354 L2.262,9.337 C2.132,9.948 1.625,10.169 1.144,10.169 C0.91,10.169 0.676,10.104 0.52,10 L2.067,2.772 C1.69,2.915 1.287,2.993 0.962,2.993 C0.715,2.993 0.507,2.473 0.741,2.174 C1.963,1.914 2.808,1.03 3.536,0.211 C3.783,0.172 3.991,0.224 4.173,0.354 Z M10.4736667,3.578 C10.4736667,6.282 9.2776667,10.117 6.1316667,10.117 C4.1426667,10.117 3.7396667,8.635 3.7396667,6.789 C3.7396667,4.085 4.9356667,0.25 8.0816667,0.25 C10.0706667,0.25 10.4736667,1.732 10.4736667,3.578 Z M5.4296667,7.14 C5.4296667,8.466 5.7936667,9.259 6.4306667,9.259 C8.3416667,9.259 8.7836667,4.631 8.7836667,3.227 C8.7836667,1.901 8.4196667,1.108 7.7826667,1.108 C5.8716667,1.108 5.4296667,5.736 5.4296667,7.14 Z" id="10" fill="#644A32"></path>
<path d="M5.626,26.324 C5.626,26.948 4.989,27.156 4.508,27.156 C4.274,27.156 4.04,27.091 3.884,26.987 C3.884,24.01 5.938,20.669 7.407,18.979 C6.393,19.018 6.016,18.758 4.937,18.758 C4.417,18.758 3.754,18.966 3.442,19.148 C3.078,17.913 3.78,16.99 4.703,16.99 C6.328,16.99 6.614,17.549 7.953,17.432 C8.304,17.406 8.733,17.289 8.993,17.198 C9.188,17.419 9.331,17.796 9.136,18.004 C6.471,20.994 5.626,24.075 5.626,26.324 Z" id="7" fill="#644A32"></path>
<path d="M7.174,36.174 C6.433,36.174 5.432,36.005 4.743,35.862 L4.197,38.345 C4.574,38.228 4.938,38.176 5.302,38.176 C7.174,38.176 7.928,39.268 7.928,40.503 C7.928,42.388 6.576,44.104 4.704,44.104 C3.118,44.104 2.156,43.35 2.156,42.05 C2.156,41.114 2.676,40.061 3.859,40.061 C4.288,40.061 4.769,40.373 4.691,41.049 C3.95,40.88 3.534,41.322 3.534,41.985 C3.534,42.648 3.885,43.194 4.626,43.194 C5.549,43.194 6.238,42.362 6.238,40.633 C6.238,39.749 5.848,38.982 4.886,38.982 C4.613,38.982 4.301,39.034 3.937,39.138 C3.742,39.099 3.469,38.917 3.352,38.696 L4.249,34.263 C5.627,34.497 7.174,34.653 8.461,34.133 C8.474,34.276 8.487,34.419 8.487,34.64 C8.487,35.511 8.097,36.174 7.174,36.174 Z" id="5" fill="#C62800"></path>
<path d="M8.994,51.484 C8.656,52.901 7.278,54.37 5.965,55.462 C7.512,55.605 8.045,56.541 8.045,57.503 C8.045,59.388 6.693,61.104 4.821,61.104 C3.235,61.104 2.273,60.35 2.273,59.05 C2.273,58.114 2.793,57.061 3.976,57.061 C4.405,57.061 4.886,57.373 4.808,58.049 C4.067,57.88 3.651,58.322 3.651,58.985 C3.651,59.648 4.002,60.194 4.743,60.194 C5.666,60.194 6.355,59.232 6.355,57.633 C6.355,56.749 6.043,55.943 4.691,56.138 C4.561,55.917 4.574,55.657 4.652,55.449 C5.471,54.747 6.342,53.967 6.979,52.966 C6.446,52.94 5.861,52.758 5.003,52.758 C4.47,52.758 3.82,52.966 3.508,53.148 C3.144,51.913 3.846,51.25 4.769,51.25 C5.796,51.25 6.498,51.51 7.239,51.51 C7.642,51.51 8.058,51.432 8.539,51.198 C8.773,51.237 8.903,51.341 8.994,51.484 Z" id="3" fill="#644A32"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="69px" height="150px" viewBox="0 0 69 150" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>Thermometer/7%</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M117.21503,63.4987836 L23.5878107,63.4987836 C6.43692308,63.4987836 0.404378698,66.4233743 0.404378698,48.0002754 L0.404378698,15.6778873 C0.404378698,-2.74629222 6.43692308,0.178298511 23.5878107,0.178298511 L117.21503,0.178298511 C134.365917,0.178298511 138.398462,-0.746292216 138.398462,17.6778873 L138.398462,46.0002754 C138.398462,64.4233743 134.365917,63.4987836 117.21503,63.4987836 Z" id="path-1"></path>
</defs>
<g id="Thermometer/7%" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-3" transform="translate(2.000000, 0.000000)">
<path d="M10,8.5 C4.75329488,8.5 0.5,12.7532949 0.5,18 L0.5,138 C0.5,143.246705 4.75329488,147.5 10,147.5 L55,147.5 C60.2467051,147.5 64.5,143.246705 64.5,138 L64.5,18 C64.5,12.7532949 60.2467051,8.5 55,8.5 L10,8.5 Z" id="Rectangle-2" stroke="#E9AA5C" fill="#EDB26C"></path>
<g id="Group-92" opacity="0.300000012" transform="translate(32.799999, 77.700001) rotate(-90.000000) translate(-32.799999, -77.700001) translate(-36.700001, 45.700001)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-74"></g>
<path d="M-23.19,-3.02720004 C-23.1105325,-2.88672243 -22.9455621,-2.78514631 -22.7363314,-2.7159881 C-22.5381657,-2.64574929 -22.2786391,-2.60036421 -21.9507101,-2.59928362 C5.58727811,-2.49122391 33.1323077,-2.48798212 60.6632544,-2.59171944 C76.8705917,-2.65223287 93.1352663,-3.14714631 109.33858,-3.06394034 C128.18645,-2.96452541 148.015089,-0.619629843 165.434556,2.66322396 C166.223195,2.81234635 167.073195,2.47628067 167.070178,2.14237619 C167.072189,1.97812544 167.070178,1.81603588 167.072189,1.65286573 C167.070178,1.38055527 166.67284,1.20225676 166.131657,1.09960004 C149.486746,-2.06330749 131.003018,-4.01918812 113.046391,-4.502215 C104.791834,-4.72265679 96.4507692,-4.36281798 88.2052663,-4.27528962 C79.5433136,-4.18235828 70.8753254,-4.14345678 62.2063314,-4.11428066 C34.0738462,-4.02026872 5.93532544,-4.11644186 -22.2082249,-4.19856723 C-23.056213,-4.20072843 -23.663787,-3.86358215 -23.4595858,-3.50158214 C-23.3680473,-3.34381497 -23.2805325,-3.18388661 -23.19,-3.02720004" id="Fill-73" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-22.0231361,2.25043589 C-1.80621302,1.81171349 18.5092899,1.66691349 38.6588166,0.880238846 C53.0937278,0.317247789 67.4069231,0.578752272 81.918284,1.0066687 C109.915976,1.83332543 137.628994,3.69411353 165.352071,5.69862104 C166.366036,5.77102104 167.11645,5.48142103 166.944438,5.02432849 C166.880059,4.85035236 166.814675,4.67529564 166.74929,4.50240012 C166.687929,4.33274638 166.250355,4.12743294 165.853018,4.09825682 C138.550414,2.15642395 111.18142,0.419904508 83.6343787,-0.437008943 C68.9952663,-0.89410149 54.245503,-1.31337314 39.6768047,-0.653128351 C19.2526627,0.271862713 -1.46420118,0.314005998 -21.9839053,0.759211977 C-22.7011243,0.774340336 -23.2563905,0.98073437 -23.2815385,1.30491348 C-23.2895858,1.42918214 -23.2976331,1.54804781 -23.3076923,1.67015528 C-23.3177515,1.80631051 -23.2362722,1.917612 -23.0954438,2.00297917 C-22.9063314,2.15426275 -22.5532544,2.26124186 -22.0231361,2.25043589" id="Fill-75" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M160.511598,12.9559107 C154.596805,12.6101197 148.749408,11.9261018 142.981479,11.2518092 C129.758698,9.70439426 116.74213,7.79497929 103.686331,5.98822104 C94.2377515,4.68069863 84.4713018,3.10842994 74.6143195,2.59514634 C68.5385799,2.27853141 62.3330769,2.37038216 56.2492899,2.43954037 C29.9284615,2.73994635 3.61467456,3.91023294 -22.4898817,5.19506282 C-23.2493491,5.23288371 -23.5068639,5.48574342 -23.4072781,5.74076432 C-23.4143195,5.7839882 -23.4133136,5.82937328 -23.3982249,5.87691955 C-23.3620118,5.99794642 -23.3247929,6.11789269 -23.2885799,6.23891956 C-23.1849704,6.57066285 -22.3259172,6.68088374 -21.7022485,6.65062703 C2.92763314,5.44468073 27.7043787,4.41919414 52.5102959,3.99235831 C58.676568,3.88537921 64.8730178,3.82162398 71.050355,3.96750458 C79.8199408,4.17497921 88.439645,5.51924193 96.8038462,6.64522404 C109.739941,8.38822706 122.584497,10.2652241 135.575917,11.9217794 C145.458047,13.1817555 155.688225,14.4914391 165.963669,14.7842809 C166.881065,14.8091347 167.655621,14.3044958 167.085266,13.9489794 C165.36213,12.8770272 163.409645,13.1244839 160.511598,12.9559107" id="Fill-76" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-22.2152663,16.7790631 C-13.9949112,15.9859048 -5.81881657,15.0922511 2.2687574,14.0862152 C4.90325444,13.7577137 18.2125444,12.697648 18.2306509,10.8833256 C18.2618343,7.98624497 -17.6604734,10.313851 -22.6347337,10.5450988 C-23.1447337,10.5688719 -23.6456805,10.8552301 -23.5853254,11.0756719 C-23.5531361,11.1956182 -23.5219527,11.3155644 -23.4857396,11.4355107 C-23.4133136,11.7089018 -22.9616568,12.0503704 -22.2031953,12.0157913 C-14.981716,11.6829674 -7.74615385,11.4074152 -0.492485207,11.2107465 C2.48502959,11.1318629 5.46857988,11.0767525 8.45213018,11.0583823 C9.73467456,11.048657 11.0152071,11.0605435 12.2937278,11.0832361 C12.3852663,11.0853973 12.4788166,11.0908003 12.570355,11.0929614 C8.65733728,11.9812122 3.34307692,12.3399704 -0.629289941,12.8132719 C-7.98857988,13.6874749 -15.4233136,14.4546988 -22.8771598,15.1732959 C-23.3167456,15.2143586 -23.5823077,15.3267406 -23.712071,15.4650571 C-23.7191124,15.4715406 -23.7181065,15.4769436 -23.724142,15.481266 C-23.7392308,15.5007168 -23.7563314,15.5180063 -23.7643787,15.5352959 C-23.8036095,15.5871645 -23.8287574,15.6411944 -23.8307692,15.703869 C-23.8347929,15.8746033 -23.8388166,16.0442571 -23.845858,16.216072 C-23.8539053,16.5877974 -23.0260355,16.8557855 -22.2152663,16.7790631" id="Fill-77" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M64.8800592,50.8124668 C94.2498225,50.8686578 123.682959,51.5343056 153.039645,52.3090937 C153.915799,52.3317862 154.473077,51.9708668 154.308107,51.6185922 C154.233669,51.4565026 154.159231,51.2965742 154.082781,51.1366459 C153.965089,50.8848668 153.583846,50.7551951 153.151302,50.720616 C153.137219,50.7195354 153.125148,50.7195354 153.113077,50.7195354 C153.090947,50.7162936 153.064793,50.7130518 153.042663,50.7130518 C152.97929,50.7076489 152.919941,50.7011653 152.850533,50.6990041 C123.932426,49.9317802 94.9308284,49.3795951 66.0026627,49.3115175 C47.8488757,49.2682936 29.8912426,50.0257921 11.7917751,50.3759056 C-3.68627219,50.6763115 -19.1854438,50.8632548 -34.6886391,50.9648309 C-35.4380473,50.9702339 -35.927929,51.1852727 -35.9963314,51.5051295 C-36.024497,51.6261563 -36.049645,51.7482638 -36.0788166,51.8703713 C-36.1421893,52.1632131 -35.4672189,52.4614578 -34.8053254,52.4571355 C-19.7578107,52.3706877 -4.71733728,52.1696966 10.3060355,51.8930638 C28.526213,51.5580787 46.607574,50.7789683 64.8800592,50.8124668" id="Fill-78" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-35.0588166,42.6107352 C-18.478284,45.8708965 -0.0297633136,47.9402398 17.9208284,48.5302458 C26.170355,48.8014757 34.5184615,48.4924249 42.7679882,48.454604 C51.4339645,48.4146219 60.1049704,48.4286697 68.7749704,48.4513622 C96.9114793,48.5302458 125.053018,48.7971533 153.19858,49.0510936 C154.044556,49.0586578 154.660178,48.7236727 154.463018,48.3605921 C154.375503,48.2028249 154.29,48.0439772 154.204497,47.88621 C154.12503,47.7435712 153.962071,47.6419951 153.756864,47.5728368 C153.559704,47.4993562 153.302189,47.45181 152.970237,47.4485682 C125.432249,47.1751771 97.8821893,47.0022816 70.3482249,46.939607 C54.1368639,46.9017861 37.8591124,47.2972846 21.6568047,47.1157443 C2.80893491,46.9039473 -16.972426,44.4380248 -34.3285207,41.0481919 C-35.1171598,40.8947472 -35.9721893,41.227571 -35.9772189,41.5603949 C-35.9792308,41.7246457 -35.9832544,41.8867352 -35.9872781,42.0499054 C-35.9943195,42.3222158 -35.5969822,42.5037561 -35.0588166,42.6107352" id="Fill-79" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M153.14426,42.6020905 C132.91426,42.9176248 112.593728,42.9392367 92.4230769,43.6016427 C77.9781065,44.0771054 63.667929,43.7280726 49.1636095,43.2126278 C21.1779882,42.2163173 -6.49881657,40.1880367 -34.1836686,38.0171172 C-35.2006509,37.9360725 -35.9560947,38.2202695 -35.7931361,38.6806038 C-35.7297633,38.8545799 -35.6673964,39.0285561 -35.6080473,39.2025322 C-35.5466864,39.3721859 -35.114142,39.5818218 -34.7208284,39.6120785 C-7.45242604,41.7214039 19.8833728,43.6221741 47.4173373,44.6465801 C62.0494083,45.1922816 76.7931361,45.7001622 91.3789349,45.1296069 C111.822189,44.3288845 132.543077,44.4131711 153.076864,44.0933144 C153.792071,44.0814278 154.349349,43.8793562 154.381538,43.5530159 C154.393609,43.431989 154.403669,43.3109621 154.41574,43.1877741 C154.429822,43.0526994 154.351361,42.9424785 154.212544,42.8538696 C154.025444,42.702586 153.674379,42.5934457 153.14426,42.6020905" id="Fill-80" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-29.1963314,30.7890037 C-23.2885799,31.171535 -17.4512426,31.890132 -11.6984024,32.6011649 C1.49319527,34.2263828 14.4735503,36.215762 27.4951479,38.1003232 C36.9195858,39.4640367 46.6528402,41.0968188 56.5007692,41.6695352 C62.5724852,42.0228905 68.7789941,41.9699412 74.863787,41.9386039 C101.193669,41.7948845 127.537633,40.787768 153.668343,39.6607053 C154.428817,39.6272068 154.690355,39.3765083 154.598817,39.1204068 C154.605858,39.0771829 154.608876,39.0317979 154.589763,38.9842516 C154.559586,38.8632247 154.524379,38.744359 154.490178,38.6222516 C154.392604,38.2905083 153.534556,38.1738038 152.914911,38.2008187 C128.255858,39.256562 103.458994,40.1318456 78.6329586,40.4073979 C72.4636686,40.4765561 66.2692308,40.5014098 60.0949112,40.3187889 C51.330355,40.0572844 42.7347929,38.6633143 34.3886982,37.4854635 C21.4888166,35.6657381 8.68248521,33.7098574 -4.28177515,31.9744186 C-14.1367456,30.6550096 -24.3387574,29.2826514 -34.6131953,28.9292962 C-35.5285799,28.8968782 -36.3142012,29.3971947 -35.7518935,29.7559529 C-34.0508876,30.8376305 -32.0883432,30.603141 -29.1963314,30.7890037" id="Fill-81" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M154.264852,25.7566633 C148.179053,25.28012 141.037041,26.4925498 135.155444,26.9928663 C120.135089,28.2712126 105.119763,29.5711708 90.1627811,30.9694634 C80.6256805,31.8609559 71.0845562,32.7870276 61.7114201,33.9400246 C58.4110059,34.3463291 54.8842604,34.74615 51.8705325,35.47015 C51.0798817,35.6581739 49.8476331,36.0288187 49.9260947,36.499959 C50.1926627,38.1986575 58.4029586,38.0635829 61.0797041,38.1457083 C77.9167456,38.6546695 94.9157396,38.3272486 111.71858,38.1046456 C125.617337,37.9198635 139.511065,37.6702456 153.386686,37.3503889 C154.078757,37.3341799 154.695385,37.1396724 154.694379,36.8122515 C154.693373,36.6890635 154.693373,36.5680366 154.690355,36.4459291 C154.693373,36.1606515 154.131065,35.842956 153.421893,35.8602456 C125.480533,36.4967172 97.376213,37.0921262 69.3352663,36.8046874 C66.2702367,36.7755112 63.206213,36.7182396 60.1452071,36.6199053 C58.9743195,36.5820844 57.7994083,36.5312963 56.6325444,36.4675411 C56.1285799,36.4405262 55.7513609,36.4037859 55.4495858,36.3767709 C56.8880473,36.132556 58.8033136,35.8905023 59.6523077,35.7694754 C74.0570414,33.7249858 89.1327219,32.4163828 103.973018,31.0580723 C120.661183,29.5322693 137.433846,28.1588305 154.232663,26.8415827 C154.936805,26.7864722 155.21142,26.5487409 155.16716,26.3077677 C155.253669,26.0624722 155.001183,25.8150155 154.264852,25.7566633" id="Fill-82" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M154.260828,29.6889559 C154.702426,29.6489738 154.965976,29.5376723 155.098757,29.4004365 C155.105799,29.3939529 155.109822,29.3885499 155.11787,29.3831469 C155.127929,29.3658574 155.14503,29.3485678 155.158107,29.3301977 C155.192308,29.2794096 155.222485,29.2253797 155.221479,29.1627051 C155.230533,28.9919708 155.240592,28.822317 155.248639,28.6515827 C155.267751,28.2787767 154.440888,28.0064663 153.633136,28.0788663 C145.394675,28.822317 137.198462,29.6651827 129.088757,30.6225917 C126.447219,30.9316425 113.113787,31.9128246 113.060473,33.727147 C112.967929,36.6231471 148.944556,34.5138216 153.920828,34.3139112 C154.433846,34.2933798 154.94284,34.0091828 154.887515,33.7876604 C154.85432,33.6677142 154.825148,33.5456067 154.793964,33.426741 C154.72858,33.1544306 154.281953,32.8108007 153.521479,32.8399768 C146.292959,33.1284962 139.050355,33.3608246 131.788639,33.5110276 C128.813136,33.5758634 125.829586,33.6093619 122.842012,33.6126037 C121.561479,33.6136843 120.282959,33.593153 118.999408,33.5628963 C118.910888,33.5596545 118.817337,33.5531709 118.727811,33.5499291 C122.657929,32.6865321 127.975207,32.3601917 131.959645,31.9128246 C139.340059,31.0818455 146.791893,30.3600066 154.260828,29.6889559" id="Fill-83" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-26.5034911,27.8184424 C-19.4127811,28.3349678 -12.3613018,28.994132 -5.34502959,29.6878753 C7.96627219,31.0029619 21.4526036,33.649344 35.1753254,33.0247589 C43.4560355,32.6487112 51.5214793,31.7474932 59.5989941,30.9424484 C69.3926036,29.9666693 79.2445562,29.0978693 89.1105917,28.2528424 C97.5281065,27.5320842 105.961716,26.8383409 114.399349,26.1575648 C117.326568,25.9219946 120.917692,25.8636424 123.751361,25.4011468 C124.025976,25.3892603 124.241243,25.3406334 124.401183,25.2671528 C125.16568,25.0078095 124.798521,24.3497259 123.813728,24.2838095 C132.462604,24.4394155 141.112485,24.6004244 149.758343,24.7992543 C154.698402,24.9137976 159.943254,24.8694931 164.833018,25.2790394 C165.561302,25.3395528 166.58432,25.1558513 166.474675,24.757111 C166.420355,24.5734095 166.370059,24.389708 166.319763,24.2060065 C166.256391,23.9736781 165.986805,23.7024483 165.379231,23.6505796 C160.650414,23.2561617 155.642959,23.3004662 150.872899,23.2075348 C141.436391,23.0249139 131.998876,22.8984841 122.563373,22.7763766 C108.514734,22.5937557 94.4640828,22.5029856 80.4204734,22.2922691 C79.7988166,22.2825438 79.4115385,22.4251826 79.2536095,22.6121259 C73.3951479,22.925499 67.4552071,23.6819169 61.9045562,24.0871408 C55.1810059,24.5777319 48.4383432,25.0348244 41.665503,25.4011468 C37.3189349,25.6356364 32.8466272,25.9176722 28.4497633,25.6280722 C7.76508876,24.2643587 -13.0443195,23.2388722 -33.7913609,22.129099 C-34.6614793,22.0837139 -35.2167456,22.4846154 -35.0557988,22.8196005 C-34.9753254,22.9827707 -34.8938462,23.1459408 -34.8173964,23.309111 C-34.6906509,23.5684542 -34.142426,23.7175766 -33.5871598,23.7456722 C-13.0664497,24.8197856 7.50053254,25.7998871 27.9659172,27.106329 C37.900355,27.74172 48.9181657,26.5098394 58.6152071,25.8452722 C68.1663905,25.191511 77.7014793,24.4739946 87.1963314,23.6840781 C97.9556213,23.8440065 108.714911,24.0212244 119.474201,24.2103289 C112.690296,24.2838095 105.878225,25.2304125 99.3226627,25.8009677 C80.5592899,27.4315887 61.9468047,29.3485678 43.194497,30.9899947 C35.7326036,31.6437559 28.2676923,31.9420007 20.7072189,31.160729 C14.015858,30.4691469 7.44621302,29.4739171 0.748816568,28.7628842 C-10.6693491,27.5515349 -22.7323077,26.1186633 -34.458284,25.8074513 C-35.684497,25.7750334 -36.0526627,26.3801677 -35.3998225,26.7518931 C-33.547929,27.8108782 -29.3331361,27.6120484 -26.5034911,27.8184424" id="Fill-84" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M-33.8497041,20.0673198 C-29.1259172,20.4898333 -24.1174556,20.4779467 -19.3443787,20.6000542 C-9.91289941,20.8388661 -0.47739645,21.0225676 8.95710059,21.2008661 C20.4909467,21.4223885 32.0308284,21.5823169 43.5616568,21.7973557 C43.6069231,21.8114035 43.6481657,21.8254512 43.6964497,21.8362572 C43.7034911,21.8384184 43.7095266,21.839499 43.717574,21.8427408 C43.7819527,21.8578691 43.8553846,21.8708363 43.9278107,21.8805617 C43.9449112,21.8827229 43.9620118,21.8859647 43.9801183,21.8892065 C44.0253846,21.8935288 44.069645,21.8967706 44.117929,21.9000124 C44.1631953,21.9043348 44.2044379,21.9097378 44.2486982,21.911899 C46.0231361,21.9853796 47.8277515,21.9745736 49.642426,21.9140602 C50.1272781,21.9237856 50.6121302,21.9313497 51.0949704,21.9421557 C51.4923077,21.9497199 51.7860355,21.89569 51.9972781,21.8070811 C57.9321893,21.4677736 63.9515976,20.6573258 69.5686391,20.2121199 C76.2831361,19.6815467 83.011716,19.1823109 89.7775148,18.7749258 C94.1170414,18.5134213 98.5823077,18.2054512 102.985207,18.4669556 C123.692012,19.7064004 144.515503,20.6065378 165.279645,21.5888005 C166.153787,21.6287826 166.7,21.2246393 166.532012,20.8907348 C166.448521,20.7275646 166.36503,20.5654751 166.28355,20.4023049 C166.152781,20.1440422 165.599527,20.0003228 165.04426,19.9733079 C144.509467,19.0245437 123.924379,18.1687109 103.439882,16.9865377 C93.4933728,16.4127407 82.5037278,17.7094571 72.8227811,18.4334571 C63.9777515,19.0937019 55.1508284,19.8133795 46.3571006,20.5881676 C45.902426,20.5665557 45.4457396,20.5438631 44.9890533,20.5222512 C36.6751479,20.3482751 28.3602367,20.163493 20.0483432,19.9733079 C24.1273373,19.6026631 28.1731361,19.0947825 32.1263905,18.7262989 C50.8515385,16.9811347 69.4197633,14.9506929 88.135858,13.1947227 C95.5806509,12.4955764 103.040533,12.1519465 110.612071,12.8878331 C117.315503,13.5383525 123.906272,14.4946809 130.616746,15.1635705 C142.05503,16.3057616 154.14716,17.6673138 165.874142,17.9061258 C167.098343,17.9298989 167.452426,17.323684 166.797574,16.956281 C164.92355,15.9070213 160.711775,16.132866 157.878107,15.9437616 C150.780355,15.47046 143.716805,14.8523585 136.689467,14.2029197 C123.35503,12.9677973 109.818402,10.4035405 96.1107692,11.1113316 C87.8371006,11.5381674 79.7947929,12.4869316 71.7363905,13.3406033 C61.9649112,14.3779764 52.1330769,15.3051287 42.2861538,16.2128302 C33.8847337,16.9843765 25.4672189,17.7278273 17.0456805,18.4604721 C14.1224852,18.715493 10.5353846,18.7943765 7.71278107,19.2741616 C7.43514793,19.2871288 7.22289941,19.3379168 7.06497041,19.412478 C6.88088757,19.4762333 6.77224852,19.5648422 6.71491124,19.662096 C-0.993431953,19.4783945 -8.69976331,19.2828064 -16.4030769,19.0634452 C-12.0705917,18.7792482 -7.62242604,18.1081974 -3.72349112,17.7516004 C11.2666864,16.3814034 26.2498225,14.990675 41.179645,13.5016122 C50.6946154,12.5506869 60.2156213,11.5673435 69.5646154,10.3559943 C72.8559763,9.93023904 76.3706509,9.50988679 79.3692899,8.76751662 C80.1559172,8.57408975 81.3791124,8.19588079 81.2926036,7.72582108 C80.9898225,6.02604194 72.786568,6.21298523 70.1098225,6.1481494 C53.2647337,5.74076432 36.2768047,6.17084194 19.4820118,6.49502105 C5.59230769,6.76625091 -8.29236686,7.10015539 -22.1599408,7.50321809 C-22.8530178,7.52483003 -23.4626036,7.72149869 -23.4555621,8.05108079 C-23.4525444,8.17318825 -23.4515385,8.29421512 -23.4485207,8.41632259 C-23.4424852,8.70051961 -22.8731361,9.01497335 -22.1649704,8.994442 C5.75828402,8.18939721 33.8414793,7.42217331 61.8814201,7.53779719 C64.9454438,7.55076436 68.0094675,7.58750466 71.0724852,7.66530765 C72.2453846,7.69772556 73.4202959,7.74311063 74.5871598,7.79822108 C75.094142,7.82199422 75.4713609,7.85657332 75.7701183,7.88142705 C74.3407101,8.13536736 72.4304734,8.38930766 71.5824852,8.51465692 C57.2220118,10.6477555 42.1775148,12.0482092 27.3704142,13.4962093 C10.7144379,15.1235884 -6.02301775,16.599684 -22.7906509,18.0185079 C-23.4947929,18.0779407 -23.7643787,18.3189138 -23.7140828,18.5588064 C-23.7523077,18.6765915 -23.7080473,18.7932959 -23.5742604,18.8905497 C-26.8374556,18.8203109 -30.1278107,18.7252183 -33.2702959,18.4431825 C-33.9955621,18.3761855 -35.0195858,18.5555646 -34.9189941,18.9553855 C-34.871716,19.139087 -34.822426,19.3217079 -34.7771598,19.50649 C-34.7198225,19.7398989 -34.4522485,20.01329 -33.8497041,20.0673198" id="Fill-85" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M65.4011243,54.6939713 C36.0384024,54.8160788 6.59923077,54.3287295 -22.7665089,53.7333206 C-23.6406509,53.7149504 -24.1908876,54.0791116 -24.0178698,54.429225 C-23.9394083,54.590234 -23.8619527,54.751243 -23.7834911,54.9122519 C-23.663787,55.1629504 -23.2775148,55.2893803 -22.8439645,55.3217982 C-22.8308876,55.3228788 -22.8198225,55.3239594 -22.8067456,55.32504 C-22.7826036,55.3261206 -22.7604734,55.3282818 -22.7363314,55.3282818 C-22.6729586,55.3336848 -22.6126036,55.3401684 -22.5442012,55.3401684 C6.38195266,55.9334161 35.3895858,56.3094639 64.3127219,56.2014042 C82.4614793,56.1344072 100.398994,55.2666878 118.488402,54.8063534 C133.953373,54.4130161 149.446509,54.1331415 164.94568,53.933231 C165.691065,53.9256668 166.176923,53.7063056 166.241302,53.3886101 C166.26645,53.2643414 166.287574,53.1433146 166.314734,53.0212071 C166.373077,52.7272847 165.690059,52.4344429 165.028166,52.4430877 C149.989704,52.6224668 134.955266,52.9131474 119.939941,53.2805504 C101.729822,53.7257564 83.6726036,54.6150877 65.4011243,54.6939713" id="Fill-86" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M166.424379,62.8449148 C166.421361,62.5715237 166.02503,62.3932252 165.483846,62.2894879 C148.839941,59.1265804 130.354201,57.1717803 112.396568,56.6887535 C104.143018,56.4683117 95.8029586,56.8281505 87.5564497,56.9156788 C78.894497,57.0096908 70.2265089,57.0496729 61.5585207,57.0777684 C33.4260355,57.1706997 5.28550296,57.073446 -22.8550296,56.9924012 C-23.7040237,56.9913206 -24.3126036,57.3273863 -24.1094083,57.6904669 C-24.0188757,57.8482341 -23.9283432,58.0060012 -23.8388166,58.164849 C-23.7593491,58.3053266 -23.5923669,58.4058221 -23.3861538,58.4749804 C-23.1879882,58.5452192 -22.9284615,58.5916848 -22.5985207,58.5916848 C4.94147929,58.6997445 32.484497,58.7040669 60.0144379,58.6014102 C76.2217751,58.5387356 92.4874556,58.0427415 108.689763,58.1270281 C127.537633,58.2253624 147.366272,60.5724192 164.786746,63.8563536 C165.574379,64.0043954 166.424379,63.6672491 166.425385,63.3333446 C166.423373,63.1690939 166.424379,63.0080849 166.424379,62.8449148" id="Fill-87" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M165.205207,65.2892253 C137.901598,63.3452312 110.532604,61.610873 82.9855621,60.7539595 C68.3464497,60.2979476 53.5966864,59.8786759 39.0249704,60.5378401 C18.6028402,61.4628312 -2.11402367,61.5049745 -22.631716,61.9501804 C-23.3509467,61.9663894 -23.9052071,62.1717028 -23.930355,62.4980431 C-23.9373964,62.61907 -23.9464497,62.7400969 -23.9565089,62.8632849 C-23.967574,62.997279 -23.8850888,63.1074999 -23.7442604,63.1939476 C-23.5561538,63.3463118 -23.2010651,63.4532909 -22.6719527,63.4414043 C-2.45402367,63.0026819 17.8614793,62.8578819 38.0110059,62.0712073 C52.4459172,61.5082162 66.7601183,61.7708013 81.2704734,62.1987177 C109.266154,63.0242939 136.97716,64.8840014 164.703254,66.8895895 C165.722249,66.9609089 166.467633,66.6723895 166.297633,66.2152969 C166.231243,66.0413208 166.16787,65.8673447 166.101479,65.692288 C166.040118,65.5226342 165.601538,65.3173208 165.205207,65.2892253" id="Fill-88" fill="#E09637" mask="url(#mask-2)"></path>
<path d="M159.862781,74.1468792 C153.947988,73.8010881 148.100592,73.1170702 142.331657,72.4416971 C129.109882,70.8953627 116.097337,68.9848671 103.035503,67.1802701 C93.5889349,65.8727477 83.8204734,64.300479 73.9675148,63.7861148 C67.8887574,63.4694999 61.6852663,63.56027 55.6014793,63.6305088 C29.279645,63.9319954 2.96686391,65.1001208 -23.1397041,66.3860313 C-23.8981657,66.4249328 -24.1546746,66.6777925 -24.0560947,66.9328134 C-24.0621302,66.9760373 -24.0621302,67.0203417 -24.0470414,67.067888 C-24.0088166,67.1889149 -23.9736095,67.3099417 -23.9353846,67.429888 C-23.8307692,67.7627119 -22.9747337,67.8729328 -22.3530769,67.8426761 C2.27680473,66.6356492 27.0515385,65.6112432 51.8614793,65.1833268 C58.0297633,65.0774283 64.2211834,65.0125924 70.4025444,65.1595536 C79.1681065,65.3659477 87.7918343,66.711291 96.1550296,67.8372731 C109.093136,69.5791955 121.93568,71.4572732 134.929112,73.1116672 C144.812249,74.3716434 155.039408,75.6824076 165.314852,75.9741688 C166.232249,76.0011837 167.006805,75.4965449 166.437456,75.1410285 C164.716331,74.0690762 162.760828,74.3154523 159.862781,74.1468792" id="Fill-89" fill="#E09637" mask="url(#mask-2)"></path>
</g>
<g id="Group-2" transform="translate(10.000000, 0.000000)">
<g id="2" transform="translate(40.000000, 0.000000)">
<circle id="Oval-2" stroke="#E9AA5C" fill="#79450E" cx="2.5" cy="13.5" r="2.5"></circle>
<path d="M1,0 L4,0 L4,13.5 C4,14.3284271 3.32842712,15 2.5,15 L2.5,15 C1.67157288,15 1,14.3284271 1,13.5 L1,0 Z" id="Rectangle-3" fill="#9CA0A4"></path>
</g>
<g id="1">
<circle id="Oval-2" stroke="#E9AA5C" fill="#79450E" cx="2.5" cy="13.5" r="2.5"></circle>
<path d="M1,0 L4,0 L4,13.5 C4,14.3284271 3.32842712,15 2.5,15 L2.5,15 C1.67157288,15 1,14.3284271 1,13.5 L1,0 Z" id="Rectangle-3" fill="#9CA0A4"></path>
</g>
</g>
</g>
<g id="Thermometer/" transform="translate(2.000000, 23.000000)">
<path d="M15.38,-0.32 C16.932,-0.32 17.604,0.736 17.604,1.712 C17.604,2.56 17.092,3.344 16.308,3.344 C16.02,3.344 15.54,3.152 15.364,2.704 C16.324,2.304 16.404,0.768 15.156,0.768 C13.764,0.768 12.308,3.84 12.308,7.184 C12.308,9.072 12.948,10.64 14.564,10.64 C15.412,10.64 16.372,10.4 17.428,9.808 C17.604,9.888 17.7,10.032 17.7,10.192 C17.7,10.304 17.668,10.432 17.556,10.544 C16.42,11.68 15.012,12.128 13.668,12.128 C11.156,12.128 10.052,9.92 10.052,7.456 C10.052,3.376 12.452,-0.32 15.38,-0.32 Z M20.212,4.8 L19.652,7.536 L19.748,7.504 C20.516,7.264 21.588,5.808 21.972,4.096 C22.228,3.968 22.5,3.92 22.74,3.92 C23.284,3.92 23.572,4.272 23.572,4.672 C23.572,5.632 22.324,7.04 21.332,7.712 C21.556,8.608 22.004,10.48 23.156,10.48 C23.476,10.48 23.828,10.192 24.244,9.808 C24.42,9.888 24.516,10.032 24.516,10.192 C24.516,10.304 24.468,10.432 24.372,10.544 C23.796,11.248 22.692,12.128 22.02,12.128 C20.42,12.128 20.004,9.568 19.764,8.32 L19.476,8.4 L18.916,11.12 C18.756,11.856 18.148,12.128 17.572,12.128 C17.284,12.128 17.012,12.048 16.82,11.92 L18.132,5.776 C18.196,5.504 18.116,5.376 17.972,5.376 C17.892,5.376 17.796,5.44 17.652,5.568 C17.444,5.44 17.332,4.944 17.652,4.688 C18.196,4.256 18.772,3.92 19.444,3.92 C20.02,3.92 20.34,4.176 20.212,4.8 Z M24.196,9.056 L24.948,5.776 C25.012,5.52 24.932,5.376 24.788,5.376 C24.708,5.376 24.612,5.44 24.468,5.568 C24.26,5.44 24.148,4.944 24.468,4.688 C25.012,4.256 25.588,3.92 26.26,3.92 C26.836,3.92 27.172,4.192 27.028,4.8 L26.052,9.344 C25.908,10 26.116,10.288 26.596,10.288 C27.156,10.288 27.636,9.968 28.068,9.456 L29.028,4.928 C29.188,4.192 29.796,3.92 30.372,3.92 C30.66,3.92 30.932,4 31.124,4.128 L30.004,9.424 C29.812,10.32 30.068,10.608 30.484,10.608 C31.076,10.608 31.764,10.208 32.164,9.808 C32.34,9.888 32.436,10.032 32.436,10.192 C32.436,10.304 32.388,10.432 32.292,10.544 C31.54,11.392 30.388,12.128 29.524,12.128 C28.74,12.128 27.956,11.728 28.036,10.32 C27.396,11.36 26.612,12.128 25.7,12.128 C23.924,12.128 23.924,10.256 24.196,9.056 Z M40.324,10.528 C40.036,10.784 38.948,11.504 37.812,12.032 C37.092,15.008 35.972,18.16 33.204,18.16 C32.228,18.16 31.316,17.52 31.316,16.192 C31.316,14.208 33.812,12.688 35.972,11.888 C36.084,11.488 36.196,11.088 36.324,10.64 C35.668,11.52 34.852,12.128 33.988,12.128 C32.324,12.128 31.988,10.464 31.988,9.44 C31.988,6.64 33.796,3.856 36.02,3.856 C36.74,3.856 37.252,4.032 37.652,4.384 C37.924,4.064 38.356,3.92 38.756,3.92 C39.044,3.92 39.316,4 39.508,4.128 L38.164,10.464 C38.116,10.688 38.068,10.912 38.02,11.12 C38.9,10.688 39.748,10.208 40.308,9.728 C40.548,9.936 40.596,10.288 40.324,10.528 Z M36.452,9.472 L37.348,5.184 C37.076,5.088 36.836,5.056 36.596,5.056 C34.66,5.056 33.972,7.584 33.972,9.328 C33.972,10.128 34.34,10.48 34.836,10.48 C35.348,10.48 36.02,10.064 36.452,9.472 Z M33.06,16.736 C34.164,16.736 34.82,15.632 35.636,13.008 C33.876,13.712 32.404,14.912 32.404,15.984 C32.404,16.544 32.852,16.736 33.06,16.736 Z M42.932,4.8 L42.372,7.536 L42.468,7.504 C43.236,7.264 44.308,5.808 44.692,4.096 C44.948,3.968 45.22,3.92 45.46,3.92 C46.004,3.92 46.292,4.272 46.292,4.672 C46.292,5.632 45.044,7.04 44.052,7.712 C44.276,8.608 44.724,10.48 45.876,10.48 C46.196,10.48 46.548,10.192 46.964,9.808 C47.14,9.888 47.236,10.032 47.236,10.192 C47.236,10.304 47.188,10.432 47.092,10.544 C46.516,11.248 45.412,12.128 44.74,12.128 C43.14,12.128 42.724,9.568 42.484,8.32 L42.196,8.4 L41.636,11.12 C41.476,11.856 40.868,12.128 40.292,12.128 C40.004,12.128 39.732,12.048 39.54,11.92 L40.852,5.776 C40.916,5.504 40.836,5.376 40.692,5.376 C40.612,5.376 40.516,5.44 40.372,5.568 C40.164,5.44 40.052,4.944 40.372,4.688 C40.916,4.256 41.492,3.92 42.164,3.92 C42.74,3.92 43.06,4.176 42.932,4.8 Z M50.82,3.856 C51.54,3.856 52.068,4.032 52.468,4.384 C52.74,4.064 53.156,3.92 53.556,3.92 C53.844,3.92 54.116,4 54.308,4.128 L53.188,9.424 C52.996,10.32 53.252,10.608 53.668,10.608 C54.26,10.608 54.948,10.208 55.348,9.808 C55.524,9.888 55.62,10.032 55.62,10.192 C55.62,10.304 55.572,10.432 55.476,10.544 C54.724,11.392 53.572,12.128 52.708,12.128 C51.956,12.128 51.204,11.776 51.22,10.512 C50.548,11.456 49.7,12.128 48.788,12.128 C47.124,12.128 46.788,10.464 46.788,9.44 C46.788,6.64 48.596,3.856 50.82,3.856 Z M51.252,9.472 L52.148,5.184 C51.876,5.088 51.636,5.056 51.396,5.056 C49.46,5.056 48.772,7.584 48.772,9.328 C48.772,10.128 49.14,10.48 49.636,10.48 C50.148,10.48 50.82,10.064 51.252,9.472 Z" id="Cкидка" fill="#644A32"></path>
<g id="thermometer/3%" transform="translate(10.000000, 25.000000)">
<g id="thermometer" transform="translate(17.000000, 0.000000)">
<path d="M21.1586785,63.3083354 L21.1586785,8.12195722 C21.1586785,3.91250744 17.7462186,0.5 13.5367213,0.5 C9.32722391,0.5 5.91476404,3.91250744 5.91476404,8.12195722 L5.91476404,63.3068601 C5.91476404,64.2094636 5.55540691,65.0653964 4.904219,65.6417948 C1.65032386,68.5212664 0.0122455548,72.7916526 0.628839471,77.2478412 C1.43032398,83.0406679 6.19464185,87.6818983 12.0116702,88.3408974 C19.8271746,89.226472 26.5734805,83.1618122 26.5734805,75.3907876 C26.5734805,71.6177495 24.9544916,68.1099891 22.1761817,65.6479625 C21.5218366,65.0681192 21.1586785,64.211064 21.1586785,63.3083354 Z" id="Shape" stroke="#E9AA5C" fill="#F1F0F0" fill-rule="nonzero"></path>
<g id="Group" transform="translate(5.343824, 5.409393)" fill="#DADFE5" fill-rule="nonzero">
<path d="M10.9277262,59.8673105 L10.9277262,2.8520658 C10.9277262,1.50348781 10.0061624,0.253590265 8.67512396,0.0370506373 C6.97886955,-0.238828389 5.51308806,1.06303211 5.51308806,2.70732357 L5.51308806,59.864196 C5.51308806,61.2404766 4.79544197,62.4923412 3.65733853,63.2660483 C1.09066367,65.0106594 -0.425113726,68.1820388 0.264993642,71.6460171 C0.882811854,74.7469105 3.37227993,77.2675235 6.46710822,77.9145197 C11.718645,79.0122986 16.3423643,75.0341001 16.3423643,69.9759901 C16.3423643,67.1555655 14.9021545,64.6764245 12.7187269,63.2224453 C11.5968517,62.4754573 10.9277262,61.2152328 10.9277262,59.8673105 Z" id="Shape"></path>
</g>
<path d="M10.8569123,23 L10.8569123,65.1649045 C10.8569123,66.5411851 10.1392662,67.7932137 9.00116281,68.5667568 C6.43448795,70.3115318 4.91871055,73.4827473 5.60881792,76.9467257 C6.22663613,80.047619 8.71610421,82.5682321 11.8109325,83.2152283 C17.0623053,84.3130071 21.6860247,80.3348086 21.6860247,75.2766986 C21.6860247,72.4562741 20.2458149,69.9769691 18.0623873,68.5231538 C16.940512,67.7761659 16.2713866,66.5159413 16.2713866,65.168019 L16.2713866,23 L10.8569123,23 Z" id="Shape" fill="#FE6E01" fill-rule="nonzero"></path>
<path d="M14.1483033,77.3961554 C14.1483033,77.1014648 14.2053669,76.8275578 14.3194958,76.5744262 C14.4336246,76.3212945 14.5910414,76.0983909 14.7917508,75.9057085 C14.9924602,75.7130262 15.2246499,75.5619051 15.4883269,75.4523407 C15.752004,75.3427762 16.0373219,75.2879948 16.3442892,75.2879948 C16.6512565,75.2879948 16.9365744,75.3427762 17.2002514,75.4523407 C17.4639284,75.5619051 17.6961182,75.7130262 17.8968275,75.9057085 C18.0975369,76.0983909 18.2549537,76.3212945 18.3690826,76.5744262 C18.4832114,76.8275578 18.540275,77.1014648 18.540275,77.3961554 C18.540275,77.690846 18.4832114,77.9647531 18.3690826,78.2178847 C18.2549537,78.4710164 18.0975369,78.69392 17.8968275,78.8866023 C17.6961182,79.0792846 17.4639284,79.2304058 17.2002514,79.3399702 C16.9365744,79.4495347 16.6512565,79.5043161 16.3442892,79.5043161 C16.0373219,79.5043161 15.752004,79.4495347 15.4883269,79.3399702 C15.2246499,79.2304058 14.9924602,79.0792846 14.7917508,78.8866023 C14.5910414,78.69392 14.4336246,78.4710164 14.3194958,78.2178847 C14.2053669,77.9647531 14.1483033,77.690846 14.1483033,77.3961554 Z M17.406863,77.3961554 C17.406863,77.109021 17.3045421,76.8672272 17.0998972,76.6707668 C16.8952523,76.4743064 16.6433855,76.3760777 16.3442892,76.3760777 C16.0451928,76.3760777 15.793326,76.4743064 15.5886811,76.6707668 C15.3840363,76.8672272 15.2817154,77.109021 15.2817154,77.3961554 C15.2817154,77.6832899 15.3840363,77.9250836 15.5886811,78.121544 C15.793326,78.3180044 16.0451928,78.4162332 16.3442892,78.4162332 C16.6433855,78.4162332 16.8952523,78.3180044 17.0998972,78.121544 C17.3045421,77.9250836 17.406863,77.6832899 17.406863,77.3961554 Z M8.540275,73.3158446 C8.540275,73.021154 8.59733858,72.7472469 8.71146744,72.4941153 C8.82559631,72.2409836 8.98301308,72.01808 9.18372246,71.8253977 C9.38443185,71.6327154 9.61662158,71.4815942 9.88029861,71.3720298 C10.1439756,71.2624653 10.4292935,71.2076839 10.7362608,71.2076839 C11.0432281,71.2076839 11.328546,71.2624653 11.5922231,71.3720298 C11.8559001,71.4815942 12.0880898,71.6327154 12.2887992,71.8253977 C12.4895086,72.01808 12.6469254,72.2409836 12.7610542,72.4941153 C12.8751831,72.7472469 12.9322467,73.021154 12.9322467,73.3158446 C12.9322467,73.6105352 12.8751831,73.8844422 12.7610542,74.1375738 C12.6469254,74.3907055 12.4895086,74.6136091 12.2887992,74.8062915 C12.0880898,74.9989738 11.8559001,75.1500949 11.5922231,75.2596593 C11.328546,75.3692238 11.0432281,75.4240052 10.7362608,75.4240052 C10.4292935,75.4240052 10.1439756,75.3692238 9.88029861,75.2596593 C9.61662158,75.1500949 9.38443185,74.9989738 9.18372246,74.8062915 C8.98301308,74.6136091 8.82559631,74.3907055 8.71146744,74.1375738 C8.59733858,73.8844422 8.540275,73.6105352 8.540275,73.3158446 Z M11.7988346,73.3158446 C11.7988346,73.0287101 11.6965137,72.7869164 11.4918689,72.590456 C11.287224,72.3939956 11.0353572,72.2957668 10.7362608,72.2957668 C10.4371645,72.2957668 10.1852977,72.3939956 9.9806528,72.590456 C9.77600794,72.7869164 9.67368704,73.0287101 9.67368704,73.3158446 C9.67368704,73.602979 9.77600794,73.8447728 9.9806528,74.0412332 C10.1852977,74.2376936 10.4371645,74.3359223 10.7362608,74.3359223 C11.0353572,74.3359223 11.287224,74.2376936 11.4918689,74.0412332 C11.6965137,73.8447728 11.7988346,73.602979 11.7988346,73.3158446 Z M15.5178429,70.981 L16.497772,71.4116995 L11.5863199,79.731 L10.6063907,79.3003005 L15.5178429,70.981 Z" id="Oval-2" fill="#FFFFFF" opacity="0.849999964"></path>
</g>
<path d="M14.5442177,63.9795918 L15.6326531,63.9795918 C15.9332162,63.9795918 16.1768707,64.2232464 16.1768707,64.5238095 C16.1768707,64.8243727 15.9332162,65.0680272 15.6326531,65.0680272 L14.5442177,65.0680272 C14.2436546,65.0680272 14,64.8243727 14,64.5238095 C14,64.2232464 14.2436546,63.9795918 14.5442177,63.9795918 Z M14.5442177,55.696793 L18.3537415,55.696793 C18.6543046,55.696793 18.8979592,55.9404476 18.8979592,56.2410107 C18.8979592,56.5415738 18.6543046,56.7852284 18.3537415,56.7852284 L14.5442177,56.7852284 C14.2436546,56.7852284 14,56.5415738 14,56.2410107 C14,55.9404476 14.2436546,55.696793 14.5442177,55.696793 Z M14.5442177,14.2827988 L15.6326531,14.2827988 C15.9332162,14.2827988 16.1768707,14.5264534 16.1768707,14.8270165 C16.1768707,15.1275797 15.9332162,15.3712342 15.6326531,15.3712342 L14.5442177,15.3712342 C14.2436546,15.3712342 14,15.1275797 14,14.8270165 C14,14.5264534 14.2436546,14.2827988 14.5442177,14.2827988 Z M14.5442177,6 L18.3537415,6 C18.6543046,6 18.8979592,6.24365456 18.8979592,6.54421769 C18.8979592,6.84478082 18.6543046,7.08843537 18.3537415,7.08843537 L14.5442177,7.08843537 C14.2436546,7.08843537 14,6.84478082 14,6.54421769 C14,6.24365456 14.2436546,6 14.5442177,6 Z M14.5442177,47.4139942 L15.6326531,47.4139942 C15.9332162,47.4139942 16.1768707,47.6576487 16.1768707,47.9582119 C16.1768707,48.258775 15.9332162,48.5024295 15.6326531,48.5024295 L14.5442177,48.5024295 C14.2436546,48.5024295 14,48.258775 14,47.9582119 C14,47.6576487 14.2436546,47.4139942 14.5442177,47.4139942 Z M14.5442177,39.1311953 L18.3537415,39.1311953 C18.6543046,39.1311953 18.8979592,39.3748499 18.8979592,39.675413 C18.8979592,39.9759762 18.6543046,40.2196307 18.3537415,40.2196307 L14.5442177,40.2196307 C14.2436546,40.2196307 14,39.9759762 14,39.675413 C14,39.3748499 14.2436546,39.1311953 14.5442177,39.1311953 Z M14.5442177,30.8483965 L15.6326531,30.8483965 C15.9332162,30.8483965 16.1768707,31.0920511 16.1768707,31.3926142 C16.1768707,31.6931773 15.9332162,31.9368319 15.6326531,31.9368319 L14.5442177,31.9368319 C14.2436546,31.9368319 14,31.6931773 14,31.3926142 C14,31.0920511 14.2436546,30.8483965 14.5442177,30.8483965 Z M14.5442177,22.5655977 L18.3537415,22.5655977 C18.6543046,22.5655977 18.8979592,22.8092522 18.8979592,23.1098154 C18.8979592,23.4103785 18.6543046,23.654033 18.3537415,23.654033 L14.5442177,23.654033 C14.2436546,23.654033 14,23.4103785 14,23.1098154 C14,22.8092522 14.2436546,22.5655977 14.5442177,22.5655977 Z" id="Rectangle" fill="#644A32" transform="translate(16.448980, 35.534014) scale(-1, 1) translate(-16.448980, -35.534014) "></path>
<path d="M14.5442177,63.9795918 L15.6326531,63.9795918 C15.9332162,63.9795918 16.1768707,64.2232464 16.1768707,64.5238095 C16.1768707,64.8243727 15.9332162,65.0680272 15.6326531,65.0680272 L14.5442177,65.0680272 C14.2436546,65.0680272 14,64.8243727 14,64.5238095 C14,64.2232464 14.2436546,63.9795918 14.5442177,63.9795918 Z M14.5442177,55.696793 L18.3537415,55.696793 C18.6543046,55.696793 18.8979592,55.9404476 18.8979592,56.2410107 C18.8979592,56.5415738 18.6543046,56.7852284 18.3537415,56.7852284 L14.5442177,56.7852284 C14.2436546,56.7852284 14,56.5415738 14,56.2410107 C14,55.9404476 14.2436546,55.696793 14.5442177,55.696793 Z M14.5442177,47.4139942 L15.6326531,47.4139942 C15.9332162,47.4139942 16.1768707,47.6576487 16.1768707,47.9582119 C16.1768707,48.258775 15.9332162,48.5024295 15.6326531,48.5024295 L14.5442177,48.5024295 C14.2436546,48.5024295 14,48.258775 14,47.9582119 C14,47.6576487 14.2436546,47.4139942 14.5442177,47.4139942 Z M14.5442177,39.1311953 L18.3537415,39.1311953 C18.6543046,39.1311953 18.8979592,39.3748499 18.8979592,39.675413 C18.8979592,39.9759762 18.6543046,40.2196307 18.3537415,40.2196307 L14.5442177,40.2196307 C14.2436546,40.2196307 14,39.9759762 14,39.675413 C14,39.3748499 14.2436546,39.1311953 14.5442177,39.1311953 Z M14.5442177,30.8483965 L15.6326531,30.8483965 C15.9332162,30.8483965 16.1768707,31.0920511 16.1768707,31.3926142 C16.1768707,31.6931773 15.9332162,31.9368319 15.6326531,31.9368319 L14.5442177,31.9368319 C14.2436546,31.9368319 14,31.6931773 14,31.3926142 C14,31.0920511 14.2436546,30.8483965 14.5442177,30.8483965 Z M14.5442177,22.5655977 L18.3537415,22.5655977 C18.6543046,22.5655977 18.8979592,22.8092522 18.8979592,23.1098154 C18.8979592,23.4103785 18.6543046,23.654033 18.3537415,23.654033 L14.5442177,23.654033 C14.2436546,23.654033 14,23.4103785 14,23.1098154 C14,22.8092522 14.2436546,22.5655977 14.5442177,22.5655977 Z" id="Rectangle" fill="#D0021B" transform="translate(16.448980, 35.534014) scale(-1, 1) translate(-16.448980, -35.534014) "></path>
<path d="M4.173,0.354 L2.262,9.337 C2.132,9.948 1.625,10.169 1.144,10.169 C0.91,10.169 0.676,10.104 0.52,10 L2.067,2.772 C1.69,2.915 1.287,2.993 0.962,2.993 C0.715,2.993 0.507,2.473 0.741,2.174 C1.963,1.914 2.808,1.03 3.536,0.211 C3.783,0.172 3.991,0.224 4.173,0.354 Z M10.4736667,3.578 C10.4736667,6.282 9.2776667,10.117 6.1316667,10.117 C4.1426667,10.117 3.7396667,8.635 3.7396667,6.789 C3.7396667,4.085 4.9356667,0.25 8.0816667,0.25 C10.0706667,0.25 10.4736667,1.732 10.4736667,3.578 Z M5.4296667,7.14 C5.4296667,8.466 5.7936667,9.259 6.4306667,9.259 C8.3416667,9.259 8.7836667,4.631 8.7836667,3.227 C8.7836667,1.901 8.4196667,1.108 7.7826667,1.108 C5.8716667,1.108 5.4296667,5.736 5.4296667,7.14 Z" id="10" fill="#644A32"></path>
<path d="M5.626,26.324 C5.626,26.948 4.989,27.156 4.508,27.156 C4.274,27.156 4.04,27.091 3.884,26.987 C3.884,24.01 5.938,20.669 7.407,18.979 C6.393,19.018 6.016,18.758 4.937,18.758 C4.417,18.758 3.754,18.966 3.442,19.148 C3.078,17.913 3.78,16.99 4.703,16.99 C6.328,16.99 6.614,17.549 7.953,17.432 C8.304,17.406 8.733,17.289 8.993,17.198 C9.188,17.419 9.331,17.796 9.136,18.004 C6.471,20.994 5.626,24.075 5.626,26.324 Z" id="7" fill="#C62800"></path>
<path d="M7.174,36.174 C6.433,36.174 5.432,36.005 4.743,35.862 L4.197,38.345 C4.574,38.228 4.938,38.176 5.302,38.176 C7.174,38.176 7.928,39.268 7.928,40.503 C7.928,42.388 6.576,44.104 4.704,44.104 C3.118,44.104 2.156,43.35 2.156,42.05 C2.156,41.114 2.676,40.061 3.859,40.061 C4.288,40.061 4.769,40.373 4.691,41.049 C3.95,40.88 3.534,41.322 3.534,41.985 C3.534,42.648 3.885,43.194 4.626,43.194 C5.549,43.194 6.238,42.362 6.238,40.633 C6.238,39.749 5.848,38.982 4.886,38.982 C4.613,38.982 4.301,39.034 3.937,39.138 C3.742,39.099 3.469,38.917 3.352,38.696 L4.249,34.263 C5.627,34.497 7.174,34.653 8.461,34.133 C8.474,34.276 8.487,34.419 8.487,34.64 C8.487,35.511 8.097,36.174 7.174,36.174 Z" id="5" fill="#644A32"></path>
<path d="M8.994,51.484 C8.656,52.901 7.278,54.37 5.965,55.462 C7.512,55.605 8.045,56.541 8.045,57.503 C8.045,59.388 6.693,61.104 4.821,61.104 C3.235,61.104 2.273,60.35 2.273,59.05 C2.273,58.114 2.793,57.061 3.976,57.061 C4.405,57.061 4.886,57.373 4.808,58.049 C4.067,57.88 3.651,58.322 3.651,58.985 C3.651,59.648 4.002,60.194 4.743,60.194 C5.666,60.194 6.355,59.232 6.355,57.633 C6.355,56.749 6.043,55.943 4.691,56.138 C4.561,55.917 4.574,55.657 4.652,55.449 C5.471,54.747 6.342,53.967 6.979,52.966 C6.446,52.94 5.861,52.758 5.003,52.758 C4.47,52.758 3.82,52.966 3.508,53.148 C3.144,51.913 3.846,51.25 4.769,51.25 C5.796,51.25 6.498,51.51 7.239,51.51 C7.642,51.51 8.058,51.432 8.539,51.198 C8.773,51.237 8.903,51.341 8.994,51.484 Z" id="3" fill="#644A32"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="11px" height="5px" viewBox="0 0 11 5" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>Orange angle</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="discount/1-copy">
<g id="Orange-angle">
<path d="M5,1.77635684e-15 L5.19999981,0 C7.96142356,-5.07265313e-16 10.1999998,2.23857625 10.1999998,5 L0,5 C-3.38176876e-16,2.23857625 2.23857625,2.28362215e-15 5,1.77635684e-15 Z" id="Rectangle-4" fill="#AD5A05"></path>
<path d="M11,-1.13686838e-13 L11,5 L10.1999998,5 C10.1999998,2.23857625 7.96142356,-1.08865033e-13 5.19999981,-1.13686838e-13 L11,-1.13686838e-13 Z" id="Combined-Shape" fill="#FE8100"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>icon/%_2 color</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="icon/%_2-color" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M10,4 L10,4 C13.3137085,4 16,6.6862915 16,10 L16,10 C16,13.3137085 13.3137085,16 10,16 L10,16 C6.6862915,16 4,13.3137085 4,10 L4,10 C4,6.6862915 6.6862915,4 10,4 Z" id="Rectangle" fill="#FFFFFF"></path>
<path d="M10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,0 10,0 C4.4771525,0 0,4.4771525 0,10 C0,15.5228475 4.4771525,20 10,20 Z M10.5665,12.086 C10.5665,11.7999986 10.6196661,11.5341679 10.726,11.2885 C10.8323339,11.0428321 10.9789991,10.8265009 11.166,10.6395 C11.3530009,10.4524991 11.5693321,10.3058339 11.815,10.1995 C12.0606679,10.0931661 12.3264986,10.04 12.6125,10.04 C12.8985014,10.04 13.1643321,10.0931661 13.41,10.1995 C13.6556679,10.3058339 13.8719991,10.4524991 14.059,10.6395 C14.2460009,10.8265009 14.3926661,11.0428321 14.499,11.2885 C14.6053339,11.5341679 14.6585,11.7999986 14.6585,12.086 C14.6585,12.3720014 14.6053339,12.6378321 14.499,12.8835 C14.3926661,13.1291679 14.2460009,13.3454991 14.059,13.5325 C13.8719991,13.7195009 13.6556679,13.8661661 13.41,13.9725 C13.1643321,14.0788339 12.8985014,14.132 12.6125,14.132 C12.3264986,14.132 12.0606679,14.0788339 11.815,13.9725 C11.5693321,13.8661661 11.3530009,13.7195009 11.166,13.5325 C10.9789991,13.3454991 10.8323339,13.1291679 10.726,12.8835 C10.6196661,12.6378321 10.5665,12.3720014 10.5665,12.086 Z M13.6025,12.086 C13.6025,11.8073319 13.5071676,11.5726676 13.3165,11.382 C13.1258324,11.1913324 12.8911681,11.096 12.6125,11.096 C12.3338319,11.096 12.0991676,11.1913324 11.9085,11.382 C11.7178324,11.5726676 11.6225,11.8073319 11.6225,12.086 C11.6225,12.3646681 11.7178324,12.5993324 11.9085,12.79 C12.0991676,12.9806676 12.3338319,13.076 12.6125,13.076 C12.8911681,13.076 13.1258324,12.9806676 13.3165,12.79 C13.5071676,12.5993324 13.6025,12.3646681 13.6025,12.086 Z M5.3415,8.126 C5.3415,7.83999857 5.39466614,7.57416789 5.501,7.3285 C5.60733387,7.0828321 5.75399907,6.86650093 5.941,6.6795 C6.12800094,6.49249906 6.34433211,6.34583386 6.59,6.2395 C6.8356679,6.13316613 7.10149857,6.08 7.3875,6.08 C7.67350143,6.08 7.93933211,6.13316613 8.185,6.2395 C8.4306679,6.34583386 8.64699907,6.49249906 8.834,6.6795 C9.02100094,6.86650093 9.16766614,7.0828321 9.274,7.3285 C9.38033387,7.57416789 9.4335,7.83999857 9.4335,8.126 C9.4335,8.41200143 9.38033387,8.6778321 9.274,8.9235 C9.16766614,9.16916789 9.02100094,9.38549906 8.834,9.5725 C8.64699907,9.75950093 8.4306679,9.90616613 8.185,10.0125 C7.93933211,10.1188339 7.67350143,10.172 7.3875,10.172 C7.10149857,10.172 6.8356679,10.1188339 6.59,10.0125 C6.34433211,9.90616613 6.12800094,9.75950093 5.941,9.5725 C5.75399907,9.38549906 5.60733387,9.16916789 5.501,8.9235 C5.39466614,8.6778321 5.3415,8.41200143 5.3415,8.126 Z M8.3775,8.126 C8.3775,7.84733194 8.28216762,7.61266762 8.0915,7.422 C7.90083238,7.23133238 7.66616806,7.136 7.3875,7.136 C7.10883194,7.136 6.87416762,7.23133238 6.6835,7.422 C6.49283238,7.61266762 6.3975,7.84733194 6.3975,8.126 C6.3975,8.40466806 6.49283238,8.63933238 6.6835,8.83 C6.87416762,9.02066762 7.10883194,9.116 7.3875,9.116 C7.66616806,9.116 7.90083238,9.02066762 8.0915,8.83 C8.28216762,8.63933238 8.3775,8.40466806 8.3775,8.126 Z M11.8425,5.86 L12.7555,6.278 L8.1795,14.352 L7.2665,13.934 L11.8425,5.86 Z" id="Oval-2" fill="#FE6E01"></path>
</g>
</svg>
\ No newline at end of file
<?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 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>%</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="New" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="700.1_Basket" transform="translate(-1530.000000, -57.000000)">
<g id="%" transform="translate(1530.000000, 57.000000)">
<path d="M12,24 C5.3833125,24 0,18.6166875 0,12 C0,5.3833125 5.3833125,0 12,0 C18.6166875,0 24,5.3833125 24,12 C24,18.6166875 18.6166875,24 12,24 Z" id="Shape" fill="#1B5E20" fill-rule="nonzero"></path>
<path d="M12,22 C6.48609375,22 2,17.5139062 2,12 C2,6.48609375 6.48609375,2 12,2 C17.5139062,2 22,6.48609375 22,12 C22,17.5139062 17.5139062,22 12,22 Z" id="Shape" fill="#FFFFFF" fill-rule="nonzero"></path>
<g id="icon/%_2-copy" transform="translate(2.000000, 2.000000)" fill="#FFFFFF">
<path d="M10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,0 10,0 C4.4771525,0 0,4.4771525 0,10 C0,15.5228475 4.4771525,20 10,20 Z M10.5995,11.943 C10.5995,11.6423318 10.6563328,11.3600013 10.77,11.096 C10.8836672,10.8319987 11.0376657,10.601001 11.232,10.403 C11.4263343,10.204999 11.6554987,10.0491672 11.9195,9.9355 C12.1835013,9.82183276 12.4658318,9.765 12.7665,9.765 C13.0671682,9.765 13.3494987,9.82183276 13.6135,9.9355 C13.8775013,10.0491672 14.1066657,10.204999 14.301,10.403 C14.4953343,10.601001 14.6493328,10.8319987 14.763,11.096 C14.8766672,11.3600013 14.9335,11.6423318 14.9335,11.943 C14.9335,12.2436682 14.8766672,12.527832 14.763,12.7955 C14.6493328,13.063168 14.4953343,13.295999 14.301,13.494 C14.1066657,13.692001 13.8775013,13.8478328 13.6135,13.9615 C13.3494987,14.0751672 13.0671682,14.132 12.7665,14.132 C12.4658318,14.132 12.1835013,14.0751672 11.9195,13.9615 C11.6554987,13.8478328 11.4263343,13.692001 11.232,13.494 C11.0376657,13.295999 10.8836672,13.063168 10.77,12.7955 C10.6563328,12.527832 10.5995,12.2436682 10.5995,11.943 Z M13.8115,11.943 C13.8115,11.6496652 13.7106677,11.4003344 13.509,11.195 C13.3073323,10.9896656 13.0598348,10.887 12.7665,10.887 C12.4731652,10.887 12.2256677,10.9896656 12.024,11.195 C11.8223323,11.4003344 11.7215,11.6496652 11.7215,11.943 C11.7215,12.2436682 11.8223323,12.4966656 12.024,12.702 C12.2256677,12.9073344 12.4731652,13.01 12.7665,13.01 C13.0598348,13.01 13.3073323,12.9073344 13.509,12.702 C13.7106677,12.4966656 13.8115,12.2436682 13.8115,11.943 Z M5.0665,8.258 C5.0665,7.95733183 5.12333277,7.67500132 5.237,7.411 C5.35066724,7.14699868 5.5046657,6.91600099 5.699,6.718 C5.89333431,6.51999901 6.12249868,6.36416723 6.3865,6.2505 C6.65050132,6.13683276 6.93283183,6.08 7.2335,6.08 C7.53416817,6.08 7.81649868,6.13683276 8.0805,6.2505 C8.34450132,6.36416723 8.5736657,6.51999901 8.768,6.718 C8.96233431,6.91600099 9.11633277,7.14699868 9.23,7.411 C9.34366724,7.67500132 9.4005,7.95733183 9.4005,8.258 C9.4005,8.55866817 9.34366724,8.84099868 9.23,9.105 C9.11633277,9.36900132 8.96233431,9.59999901 8.768,9.798 C8.5736657,9.99600099 8.34450132,10.1518328 8.0805,10.2655 C7.81649868,10.3791672 7.53416817,10.436 7.2335,10.436 C6.93283183,10.436 6.65050132,10.3791672 6.3865,10.2655 C6.12249868,10.1518328 5.89333431,9.99600099 5.699,9.798 C5.5046657,9.59999901 5.35066724,9.36900132 5.237,9.105 C5.12333277,8.84099868 5.0665,8.55866817 5.0665,8.258 Z M8.2785,8.258 C8.2785,7.9646652 8.17766768,7.71533436 7.976,7.51 C7.77433233,7.30466564 7.5268348,7.202 7.2335,7.202 C6.9401652,7.202 6.69266768,7.30466564 6.491,7.51 C6.28933233,7.71533436 6.1885,7.9646652 6.1885,8.258 C6.1885,8.5513348 6.28933233,8.80066564 6.491,9.006 C6.69266768,9.21133436 6.9401652,9.314 7.2335,9.314 C7.5268348,9.314 7.77433233,9.21133436 7.976,9.006 C8.17766768,8.80066564 8.2785,8.5513348 8.2785,8.258 Z M11.7765,5.86 L12.7005,6.377 L8.1575,14.352 L7.3215,13.879 L11.7765,5.86 Z" id="Oval-2"></path>
</g>
<path d="M12.533,14.083 C12.533,13.7823318 12.5898328,13.5000013 12.7035,13.236 C12.8171672,12.9719987 12.9711657,12.741001 13.1655,12.543 C13.3598343,12.344999 13.5889987,12.1891672 13.853,12.0755 C14.1170013,11.9618328 14.3993318,11.905 14.7,11.905 C15.0006682,11.905 15.2829987,11.9618328 15.547,12.0755 C15.8110013,12.1891672 16.0401657,12.344999 16.2345,12.543 C16.4288343,12.741001 16.5828328,12.9719987 16.6965,13.236 C16.8101672,13.5000013 16.867,13.7823318 16.867,14.083 C16.867,14.3836682 16.8101672,14.667832 16.6965,14.9355 C16.5828328,15.203168 16.4288343,15.435999 16.2345,15.634 C16.0401657,15.832001 15.8110013,15.9878328 15.547,16.1015 C15.2829987,16.2151672 15.0006682,16.272 14.7,16.272 C14.3993318,16.272 14.1170013,16.2151672 13.853,16.1015 C13.5889987,15.9878328 13.3598343,15.832001 13.1655,15.634 C12.9711657,15.435999 12.8171672,15.203168 12.7035,14.9355 C12.5898328,14.667832 12.533,14.3836682 12.533,14.083 Z M15.745,14.083 C15.745,13.7896652 15.6441677,13.5403344 15.4425,13.335 C15.2408323,13.1296656 14.9933348,13.027 14.7,13.027 C14.4066652,13.027 14.1591677,13.1296656 13.9575,13.335 C13.7558323,13.5403344 13.655,13.7896652 13.655,14.083 C13.655,14.3836682 13.7558323,14.6366656 13.9575,14.842 C14.1591677,15.0473344 14.4066652,15.15 14.7,15.15 C14.9933348,15.15 15.2408323,15.0473344 15.4425,14.842 C15.6441677,14.6366656 15.745,14.3836682 15.745,14.083 Z M7,10.398 C7,10.0973318 7.05683277,9.81500132 7.1705,9.551 C7.28416723,9.28699868 7.43816569,9.05600099 7.6325,8.858 C7.82683431,8.65999901 8.05599868,8.50416723 8.32,8.3905 C8.58400132,8.27683276 8.86633183,8.22 9.167,8.22 C9.46766817,8.22 9.74999868,8.27683276 10.014,8.3905 C10.2780013,8.50416723 10.5071657,8.65999901 10.7015,8.858 C10.8958343,9.05600099 11.0498328,9.28699868 11.1635,9.551 C11.2771672,9.81500132 11.334,10.0973318 11.334,10.398 C11.334,10.6986682 11.2771672,10.9809987 11.1635,11.245 C11.0498328,11.5090013 10.8958343,11.739999 10.7015,11.938 C10.5071657,12.136001 10.2780013,12.2918328 10.014,12.4055 C9.74999868,12.5191672 9.46766817,12.576 9.167,12.576 C8.86633183,12.576 8.58400132,12.5191672 8.32,12.4055 C8.05599868,12.2918328 7.82683431,12.136001 7.6325,11.938 C7.43816569,11.739999 7.28416723,11.5090013 7.1705,11.245 C7.05683277,10.9809987 7,10.6986682 7,10.398 Z M10.212,10.398 C10.212,10.1046652 10.1111677,9.85533436 9.9095,9.65 C9.70783232,9.44466564 9.4603348,9.342 9.167,9.342 C8.8736652,9.342 8.62616767,9.44466564 8.4245,9.65 C8.22283232,9.85533436 8.122,10.1046652 8.122,10.398 C8.122,10.6913348 8.22283232,10.9406656 8.4245,11.146 C8.62616767,11.3513344 8.8736652,11.454 9.167,11.454 C9.4603348,11.454 9.70783232,11.3513344 9.9095,11.146 C10.1111677,10.9406656 10.212,10.6913348 10.212,10.398 Z M13.71,8 L14.634,8.517 L10.091,16.492 L9.255,16.019 L13.71,8 Z" id="Combined-Shape" fill="#1B5E20"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="11px" height="5px" viewBox="0 0 11 5" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>White angle</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="discount/1-copy" transform="translate(0.000000, -10.000000)">
<g id="White-angle" transform="translate(0.000000, 10.000000)">
<path d="M5,1.77635684e-15 L5.19999981,0 C7.96142356,-5.07265313e-16 10.1999998,2.23857625 10.1999998,5 L0,5 C-3.38176876e-16,2.23857625 2.23857625,2.28362215e-15 5,1.77635684e-15 Z" id="Rectangle-4" fill="#AD5A05"></path>
<path d="M11,-1.13686838e-13 L11,5 L10.1999998,5 C10.1999998,2.23857625 7.96142356,-1.08865033e-13 5.19999981,-1.13686838e-13 L11,-1.13686838e-13 Z" id="Combined-Shape" fill="#FFFFFF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?php <?php
require_once(dirname(__FILE__) . '/../config/ProjectConfiguration.class.php'); require_once(dirname(__FILE__) . '/../config/ProjectConfiguration.class.php');
$configuration = ProjectConfiguration::getApplicationConfiguration('www', 'dev', true); $configuration = ProjectConfiguration::getApplicationConfiguration('www', 'prod', true);
sfContext::createInstance($configuration)->dispatch(); sfContext::createInstance($configuration)->dispatch();
...@@ -2663,47 +2663,6 @@ var imgUpload = { ...@@ -2663,47 +2663,6 @@ var imgUpload = {
} }
}; };
var discount = {
submit: function(form){
form = $(form);
$.post(form.attr('action'), form.serialize(), function (html) {
$('.overlay_discount__item').html(html);
if ($(window).width() < 650) {
$('.header_mobile').addClass('discount');
$('.header_mobile').addClass('d3');
} else {
$($('.top_right')[1]).addClass('discount');
$($('.top_right')[1]).addClass('d3');
}
});
},
open:function (_this) {
if (_this)
{
$('#discount_offer').show();
$('#discount').hide();
offer_id = $(_this).attr('data-offer-id');
$('#discount_offer_id').val(offer_id);
}else
{
$('#discount').show();
$('#discount_offer').hide();
$('#discount_offer_id').val('');
}
var discountForm = $('.discount_form');
discountForm.removeClass('discount_form_done');
$('.overlay_discount').addClass('overlay_discount_active');
$('body').addClass('scroll_hidden');
$('body').addClass('overlay_discount_active');
discountForm.find('input[type="text"]').eq(0).focus();
},
close: function(){
$('.overlay_discount').removeClass('overlay_discount_active');
$('body').removeClass('scroll_hidden');
$('body').removeClass('overlay_discount_active');
}
};
var callback = { var callback = {
submit: function(form){ submit: function(form){
form = $(form); form = $(form);
...@@ -2849,24 +2808,9 @@ var form_validator = { ...@@ -2849,24 +2808,9 @@ var form_validator = {
function setUrlHash(hash) { function setUrlHash(hash) {
if ('replaceState' in window.history && window.location.hash !== hash) window.history.replaceState('', '', hash); if ('replaceState' in window.history && window.location.hash !== hash) window.history.replaceState('', '', hash);
} }
$(document).ready(function () { $(document).ready(function () {
$.ajax({ //slider.init();
url: '/check_discount_term/', if ($('.phone_mask').length > 0) {
dataType: 'json', $('.phone_mask').mask("+7 (999) 999-9999");
type: 'post', }
success: function (data) {
if (data.status == 'success' && data.active_discount != 0) {
console.log('123');
if ($(window).width() < 650) {
$('.header_mobile').addClass('discount');
$('.header_mobile').addClass('d' + data.active_discount);
} else {
$($('.top_right')[1]).addClass('discount');
$($('.top_right')[1]).addClass('d' + data.active_discount);
}
}
}
})
}); });
User-agent: *
Allow: /i/
Disallow: /js/
Disallow: /css/
Disallow: /a/
User-agent: Googlebot
Allow: /
User-agent: Yandex
Allow: /i/
Disallow: /js/
Disallow: /css/
Disallow: /a/
Host: idivbanu.ru
Sitemap: http://idivbanu.ru/sitemap.xml
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment