Version Notes
Versão 0.1.0
- Primeira versão liberada do TrayCheckout
Versão 0.2.0
- Correção no envio do número de telefone.
- Melhorias no envio dos dados.
Versão 0.3.0
- Correções de integração com a API de Simulação de Parcelamento.
- Envio de um valor padrão ao finalizar por boleto e transferência online.
- Ajuste no envio das requisições para as APIs do TrayCheckout.
- Incrementado log personalizado no módulo.
Versão 0.4.0
- Ajustes nas URLs de integração com o TrayCheckout.
Versão 0.5.0
- Melhorias no código de integração com o TrayCheckout
Versão 0.6.0
- Melhorias na exibição das bandeiras de cartão de crédito
- Melhorias na exibição dos dados de parcelamento
Versão 0.7.0
- Melhorias no NAS (Notificação Automática de Status).
Versão 0.8.0
- Ajuste na validação dos campos enviados na integração.
Versão 0.9.0
- Ajustes no NAS (Notificação Automática de Status).
Versão 1.1.0
- Melhoria nos dados capturados para realização da análise de risco.
Versão 1.1.1
- Ajuste na captura e atualização dos dados do pedido
Versão 1.1.2
- Ajuste na exibição do link de pagamento (Detalhes do Pedido)
Versão 1.1.3
- Segregar meios de pagamento (à vista / à prazo
- Cancelamento de transação pelo painel administrativo da loja
- Seleção automática das bandeiras de cartão.
- Adicionada as Bandeiras Hiper / Hipercard
- Adicionado o pagamento por HSBC
Release Info
Developer | TrayCheckout |
Extension | Tray_CheckoutApi |
Version | 1.1.3 |
Comparing to | |
See all releases |
Code changes from version 1.1.2 to 1.1.3
- app/code/community/Tray/CheckoutApi/Block/Adminhtml/System/Config/Fieldset/Hidden.php +41 -0
- app/code/community/Tray/CheckoutApi/Block/Adminhtml/System/Config/Fieldset/Label.php +17 -9
- app/code/community/Tray/CheckoutApi/Block/Form/Bankslip.php +31 -0
- app/code/community/Tray/CheckoutApi/Block/Form/Onlinetransfer.php +31 -0
- app/code/community/Tray/CheckoutApi/Block/Info/Bankslip.php +65 -0
- app/code/community/Tray/CheckoutApi/Block/Info/Onlinetransfer.php +64 -0
- app/code/community/Tray/CheckoutApi/Block/Payment.php +1 -0
- app/code/community/Tray/CheckoutApi/Model/Auth.php +46 -0
- app/code/community/Tray/CheckoutApi/Model/Bankslip.php +53 -0
- app/code/community/Tray/CheckoutApi/Model/Observer.php +25 -0
- app/code/community/Tray/CheckoutApi/Model/Onlinetransfer.php +53 -0
- app/code/community/Tray/CheckoutApi/Model/Request.php +68 -0
- app/code/community/Tray/CheckoutApi/Model/Source/Payment.php +147 -0
- app/code/community/Tray/CheckoutApi/Model/Source/Paymentmethods.php +2 -5
- app/code/community/Tray/CheckoutApi/Model/Source/Tefpaymentmethods.php +32 -0
- app/code/community/Tray/CheckoutApi/Model/Standard.php +28 -14
- app/code/community/Tray/CheckoutApi/controllers/StandardController.php +37 -0
- app/code/community/Tray/CheckoutApi/etc/config.xml +26 -1
- app/code/community/Tray/CheckoutApi/etc/system.xml +339 -12
- app/code/community/Tray/CheckoutApi/sql/checkoutapi_setup/mysql4-install-1.1.2.php +60 -0
- app/code/community/Tray/CheckoutApi/sql/checkoutapi_setup/mysql4-install-1.1.3.php +60 -0
- app/design/adminhtml/default/default/layout/tray_checkoutapi.xml +3 -3
- app/design/adminhtml/default/default/template/tray/checkoutapi/form/bankslip.phtml +30 -0
- app/design/adminhtml/default/default/template/tray/checkoutapi/form/onlinetransfer.phtml +30 -0
- app/design/adminhtml/default/default/template/tray/checkoutapi/form/standard.phtml +1 -1
- app/design/frontend/base/default/layout/tray_checkoutapi.xml +9 -1
- app/design/frontend/base/default/template/tray/checkoutapi/form/bankslip.phtml +67 -0
- app/design/frontend/base/default/template/tray/checkoutapi/form/onlinetransfer.phtml +98 -0
- app/design/frontend/base/default/template/tray/checkoutapi/form/standard.phtml +35 -77
- app/design/frontend/base/default/template/tray/checkoutapi/info/bankslip.phtml +38 -0
- app/design/frontend/base/default/template/tray/checkoutapi/info/onlinetransfer.phtml +38 -0
- js/tray/checkoutapi/js/traycheckout.js +95 -0
- package.xml +13 -5
- skin/adminhtml/default/default/tray/checkoutapi/js/{exibitionsettingswebcheckout.js → modal.js} +2 -3
- skin/frontend/base/default/tray/checkoutapi/images/american-express-flag.svg +54 -0
- skin/frontend/base/default/tray/checkoutapi/images/aura-flag.svg +37 -0
- skin/frontend/base/default/tray/checkoutapi/images/bb-flag.svg +72 -0
- skin/frontend/base/default/tray/checkoutapi/images/boleto-flag.svg +74 -0
- skin/frontend/base/default/tray/checkoutapi/images/bradesco-flag.svg +50 -0
- skin/frontend/base/default/tray/checkoutapi/images/diners-club-international-flag.svg +281 -0
- skin/frontend/base/default/tray/checkoutapi/images/discover-flag.svg +66 -0
- skin/frontend/base/default/tray/checkoutapi/images/elo-flag.svg +29 -0
- skin/frontend/base/default/tray/checkoutapi/images/hiper-flag.svg +28 -0
- skin/frontend/base/default/tray/checkoutapi/images/hipercard-flag.svg +42 -0
- skin/frontend/base/default/tray/checkoutapi/images/hsbc-flag.svg +32 -0
- skin/frontend/base/default/tray/checkoutapi/images/itau-flag.svg +25 -0
- skin/frontend/base/default/tray/checkoutapi/images/jcb-flag.svg +712 -0
- skin/frontend/base/default/tray/checkoutapi/images/mastercard-flag.svg +152 -0
- skin/frontend/base/default/tray/checkoutapi/images/peela-flag.svg +122 -0
- skin/frontend/base/default/tray/checkoutapi/images/visa-flag.svg +22 -0
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
class Tray_CheckoutApi_Block_Adminhtml_System_Config_Fieldset_Hidden extends Mage_Adminhtml_Block_Abstract implements Varien_Data_Form_Element_Renderer_Interface
|
21 |
+
{
|
22 |
+
public function render(Varien_Data_Form_Element_Abstract $element)
|
23 |
+
{
|
24 |
+
$id = $element->getHtmlId();
|
25 |
+
|
26 |
+
$html = sprintf('
|
27 |
+
<tr id="row_payment_traycheckoutapi_%s" >
|
28 |
+
<td class="value" colspan="4">
|
29 |
+
<input id="%s" name="%s" value="%s" class="input-text" type="hidden" >
|
30 |
+
</td>
|
31 |
+
</tr>',
|
32 |
+
$element->getHtmlId(), $element->getHtmlId(), $element->getName(), $element->getValue()
|
33 |
+
);
|
34 |
+
|
35 |
+
$html .= <<<HTML
|
36 |
+
|
37 |
+
HTML;
|
38 |
+
|
39 |
+
return $html;
|
40 |
+
}
|
41 |
+
}
|
@@ -21,17 +21,25 @@ class Tray_CheckoutApi_Block_Adminhtml_System_Config_Fieldset_Label extends Mage
|
|
21 |
{
|
22 |
public function render(Varien_Data_Form_Element_Abstract $element)
|
23 |
{
|
24 |
-
$
|
|
|
|
|
|
|
|
|
|
|
25 |
$html = sprintf('
|
26 |
-
<tr
|
27 |
-
<td
|
28 |
-
<
|
29 |
-
|
30 |
-
|
31 |
-
</
|
32 |
</td>
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
35 |
);
|
36 |
|
37 |
$html .= <<<HTML
|
21 |
{
|
22 |
public function render(Varien_Data_Form_Element_Abstract $element)
|
23 |
{
|
24 |
+
$paymentMethod = str_replace(array("payment_","_configButtom"),"",$element->getHtmlId());
|
25 |
+
|
26 |
+
$paymentMethod = ($paymentMethod == "traycheckoutapi_bankslip") ? "bankslip" : (($paymentMethod == "traycheckoutapi_onlinetransfer") ? "onlinetransfer" : "standard");
|
27 |
+
|
28 |
+
$configTc = Mage::getSingleton('checkoutapi/'.$paymentMethod);
|
29 |
+
|
30 |
$html = sprintf('
|
31 |
+
<tr id="row_payment_traycheckoutapi_%s">
|
32 |
+
<td class="label">
|
33 |
+
<label for="payment_traycheckoutapi_%s">%s</label>
|
34 |
+
</td>
|
35 |
+
<td class="value">
|
36 |
+
<button type="button" id="%s" name="%s" class="button" onclick="openModalTc(\'http://developers.tray.com.br/authLogin.php?environment=%s&path=%s&type=%s\', \'Configuração TrayCheckout\');openMessagePopup();return false;"> Configurar </button>
|
37 |
</td>
|
38 |
+
<td class="scope-label"></td>
|
39 |
+
<td class=""></td>
|
40 |
+
</tr>
|
41 |
+
',
|
42 |
+
$element->getHtmlId(), $element->getHtmlId(), $element->getLabel(), $element->getHtmlId(), $element->getName(), $configTc->getConfigData("sandbox") ,Mage::getBaseUrl(), $paymentMethod
|
43 |
);
|
44 |
|
45 |
$html .= <<<HTML
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
class Tray_CheckoutApi_Block_Form_Bankslip extends Mage_Payment_Block_Form
|
21 |
+
{
|
22 |
+
protected function _construct()
|
23 |
+
{
|
24 |
+
$this->setTemplate('tray/checkoutapi/form/bankslip.phtml');
|
25 |
+
parent::_construct();
|
26 |
+
}
|
27 |
+
protected function _getConfig()
|
28 |
+
{
|
29 |
+
return Mage::getSingleton('payment/config');
|
30 |
+
}
|
31 |
+
}
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
class Tray_CheckoutApi_Block_Form_Onlinetransfer extends Mage_Payment_Block_Form
|
21 |
+
{
|
22 |
+
protected function _construct()
|
23 |
+
{
|
24 |
+
$this->setTemplate('tray/checkoutapi/form/onlinetransfer.phtml');
|
25 |
+
parent::_construct();
|
26 |
+
}
|
27 |
+
protected function _getConfig()
|
28 |
+
{
|
29 |
+
return Mage::getSingleton('payment/config');
|
30 |
+
}
|
31 |
+
}
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
class Tray_CheckoutApi_Block_Info_Bankslip extends Mage_Payment_Block_Info
|
21 |
+
{
|
22 |
+
protected function _construct()
|
23 |
+
{
|
24 |
+
parent::_construct();
|
25 |
+
$this->setTemplate('tray/checkoutapi/info/standard.phtml');
|
26 |
+
}
|
27 |
+
|
28 |
+
public function getLinkPayment($order)
|
29 |
+
{
|
30 |
+
if ($this->getRequest()->getRouteName() != 'checkout') {
|
31 |
+
$_order = $order;
|
32 |
+
$incrementid = $_order->getData('increment_id');
|
33 |
+
$quoteid = $_order->getData('quote_id');
|
34 |
+
|
35 |
+
$hash = Mage::getModel('core/encryption')->encrypt($incrementid . ":" . $quoteid);
|
36 |
+
$method = $_order->getPayment()->getMethod();
|
37 |
+
|
38 |
+
Mage::log($_order->getCustomerId(), null, 'traycheckout.log');
|
39 |
+
Mage::log(Mage::getModel('checkoutapi/payment')->getPayment(), null, 'traycheckout.log');
|
40 |
+
Mage::log('Chamada: ', null, 'traycheckout.log');
|
41 |
+
Mage::log('URL Payment: '.$_order->getPayment()->getData('traycheckout_url_payment'), null, 'traycheckout.log');
|
42 |
+
|
43 |
+
if ($method == "traycheckoutapi_bankslip" && (($_order->getStatus() == Mage_Sales_Model_Order::STATE_PENDING_PAYMENT ) || ($_order->getStatus() == 'pending' ))){
|
44 |
+
return '<span><button onclick="window.open(\''.$_order->getPayment()->getData('traycheckout_url_payment').'\');" class="button btn-proceed-checkout btn-checkout" title="Imprimir Boleto" type="button"><span><span>Imprimir Boleto</span></span></button></span>';
|
45 |
+
}
|
46 |
+
}
|
47 |
+
}
|
48 |
+
|
49 |
+
protected function _prepareSpecificInformation($transport = null)
|
50 |
+
{
|
51 |
+
if (null !== $this->_paymentSpecificInformation) {
|
52 |
+
return $this->_paymentSpecificInformation;
|
53 |
+
}
|
54 |
+
$info = $this->getInfo();
|
55 |
+
$transport = new Varien_Object();
|
56 |
+
$transport = parent::_prepareSpecificInformation($transport);
|
57 |
+
$transport->addData(array(
|
58 |
+
Mage::helper('payment')->__('Payment Method ID') => $info->getTraycheckoutTransactionId(),
|
59 |
+
Mage::helper('payment')->__('Split Number') => $info->getTraycheckoutSplitNumber(),
|
60 |
+
Mage::helper('payment')->__('Split Value') => $info->getTraycheckoutSplitValue()
|
61 |
+
));
|
62 |
+
return $transport;
|
63 |
+
}
|
64 |
+
|
65 |
+
}
|
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
class Tray_CheckoutApi_Block_Info_Onlinetransfer extends Mage_Payment_Block_Info
|
21 |
+
{
|
22 |
+
protected function _construct()
|
23 |
+
{
|
24 |
+
parent::_construct();
|
25 |
+
$this->setTemplate('tray/checkoutapi/info/standard.phtml');
|
26 |
+
}
|
27 |
+
|
28 |
+
public function getLinkPayment($order)
|
29 |
+
{
|
30 |
+
if ($this->getRequest()->getRouteName() != 'checkout') {
|
31 |
+
$_order = $order;
|
32 |
+
$incrementid = $_order->getData('increment_id');
|
33 |
+
$quoteid = $_order->getData('quote_id');
|
34 |
+
|
35 |
+
$hash = Mage::getModel('core/encryption')->encrypt($incrementid . ":" . $quoteid);
|
36 |
+
$method = $_order->getPayment()->getMethod();
|
37 |
+
|
38 |
+
Mage::log($_order->getCustomerId(), null, 'traycheckout.log');
|
39 |
+
Mage::log(Mage::getModel('checkoutapi/payment')->getPayment(), null, 'traycheckout.log');
|
40 |
+
Mage::log('Chamada: ', null, 'traycheckout.log');
|
41 |
+
|
42 |
+
if ($method == "traycheckoutapi_onlinetransfer" && (($_order->getStatus() == Mage_Sales_Model_Order::STATE_PENDING_PAYMENT ) || ($_order->getStatus() == 'pending' ))){
|
43 |
+
return '<span><button onclick="window.open(\''.$_order->getPayment()->getData('traycheckout_url_payment').'\');" class="button btn-proceed-checkout btn-checkout" title="Efetuar Transferência Online" type="button"><span><span>Efetuar Transferência Online</span></span></button></span>';
|
44 |
+
}
|
45 |
+
}
|
46 |
+
}
|
47 |
+
|
48 |
+
protected function _prepareSpecificInformation($transport = null)
|
49 |
+
{
|
50 |
+
if (null !== $this->_paymentSpecificInformation) {
|
51 |
+
return $this->_paymentSpecificInformation;
|
52 |
+
}
|
53 |
+
$info = $this->getInfo();
|
54 |
+
$transport = new Varien_Object();
|
55 |
+
$transport = parent::_prepareSpecificInformation($transport);
|
56 |
+
$transport->addData(array(
|
57 |
+
Mage::helper('payment')->__('Payment Method ID') => $info->getTraycheckoutTransactionId(),
|
58 |
+
Mage::helper('payment')->__('Split Number') => $info->getTraycheckoutSplitNumber(),
|
59 |
+
Mage::helper('payment')->__('Split Value') => $info->getTraycheckoutSplitValue()
|
60 |
+
));
|
61 |
+
return $transport;
|
62 |
+
}
|
63 |
+
|
64 |
+
}
|
@@ -63,6 +63,7 @@ class Tray_CheckoutApi_Block_Payment extends Mage_Core_Block_Template
|
|
63 |
|
64 |
$response = $standard->getTrayCheckoutRequest("/v2/transactions/pay_complete",$standard->getCheckoutFormFields());
|
65 |
|
|
|
66 |
$xml = simplexml_load_string($response);
|
67 |
$this->order_number = str_replace($standard->getConfigData('prefixo'),'',$xml->data_response->transaction->order_number);
|
68 |
$this->transaction_id = $xml->data_response->transaction->transaction_id;
|
63 |
|
64 |
$response = $standard->getTrayCheckoutRequest("/v2/transactions/pay_complete",$standard->getCheckoutFormFields());
|
65 |
|
66 |
+
|
67 |
$xml = simplexml_load_string($response);
|
68 |
$this->order_number = str_replace($standard->getConfigData('prefixo'),'',$xml->data_response->transaction->order_number);
|
69 |
$this->transaction_id = $xml->data_response->transaction->transaction_id;
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
class Tray_CheckoutApi_Model_Auth extends Varien_Object
|
21 |
+
{
|
22 |
+
public $urlAccessToken = "v1/authorizations/access_token";
|
23 |
+
public $urlRefreshToken = "v1/authorizations/refresh";
|
24 |
+
|
25 |
+
public $access_token = "";
|
26 |
+
public $refresh_token = "";
|
27 |
+
|
28 |
+
public function doAuthorization($consumer_key = "", $consumer_secret = "", $code = "")
|
29 |
+
{
|
30 |
+
|
31 |
+
$params["consumer_key"] = $consumer_key;
|
32 |
+
$params["consumer_secret"] = $consumer_secret;
|
33 |
+
$params["code"] = $code;
|
34 |
+
|
35 |
+
$tcRequest = Mage::getModel('checkoutapi/request');
|
36 |
+
|
37 |
+
$tcResponse = $tcRequest->requestData($this->urlAccessToken,$params,"1");
|
38 |
+
|
39 |
+
if($tcResponse->message_response->message == "success"){
|
40 |
+
$this->access_token = $tcResponse->data_response->authorization->access_token;
|
41 |
+
$this->refresh_token = $tcResponse->data_response->authorization->refresh_token;
|
42 |
+
}
|
43 |
+
}
|
44 |
+
|
45 |
+
|
46 |
+
}
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
class Tray_CheckoutApi_Model_Bankslip extends Tray_CheckoutApi_Model_Standard
|
21 |
+
{
|
22 |
+
const PAYMENT_TYPE_AUTH = 'AUTHORIZATION'; //retirar
|
23 |
+
const PAYMENT_TYPE_SALE = 'SALE'; //retirar
|
24 |
+
|
25 |
+
protected $_allowCurrencyCode = array('BRL');
|
26 |
+
|
27 |
+
protected $_code = 'traycheckoutapi_bankslip';
|
28 |
+
|
29 |
+
protected $_formBlockType = 'checkoutapi/form_bankslip';
|
30 |
+
|
31 |
+
protected $_blockType = 'checkoutapi/bankslip';
|
32 |
+
|
33 |
+
protected $_infoBlockType = 'checkoutapi/info_bankslip';
|
34 |
+
|
35 |
+
protected $errorMessageTrayCheckout = '';
|
36 |
+
|
37 |
+
protected $errorCodeTrayCheckout = '';
|
38 |
+
|
39 |
+
protected $errorTypeErrorTrayCheckout = '';
|
40 |
+
|
41 |
+
/**
|
42 |
+
* Return Order Place Redirect URL
|
43 |
+
*
|
44 |
+
* @return string Order Redirect URL
|
45 |
+
*/
|
46 |
+
public function getOrderPlaceRedirectUrl()
|
47 |
+
{
|
48 |
+
return Mage::getUrl('checkoutapi/standard/payment', array('_secure' => true, 'type' => 'bankslip'));
|
49 |
+
//return Mage::getUrl('checkoutapi/redirect');
|
50 |
+
}
|
51 |
+
|
52 |
+
|
53 |
+
}
|
@@ -33,5 +33,30 @@ class Tray_CheckoutApi_Model_Observer extends Varien_Object
|
|
33 |
// $order->save();
|
34 |
// }
|
35 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
}
|
33 |
// $order->save();
|
34 |
// }
|
35 |
}
|
36 |
+
|
37 |
+
public function cancelOrderTrayCheckout(Varien_Event_Observer $observer) {
|
38 |
+
$order = $observer->getOrder();
|
39 |
+
|
40 |
+
$paymentMethod = str_replace(array("payment_","_configButtom"),"",$order->getPayment()->getData('method'));
|
41 |
+
$paymentMethod = ($paymentMethod == "traycheckoutapi_bankslip") ? "bankslip" : (($paymentMethod == "traycheckoutapi_onlinetransfer") ? "onlinetransfer" : "standard");
|
42 |
+
$configTc = Mage::getSingleton('checkoutapi/'.$paymentMethod);
|
43 |
+
|
44 |
+
$tcAuth = Mage::getModel('checkoutapi/auth');
|
45 |
+
$tcAuth->doAuthorization( $configTc->getConfigData("customerKey"), $configTc->getConfigData("customerSecret"), $configTc->getConfigData("code"), $configTc->getConfigData("sandbox"));
|
46 |
+
|
47 |
+
$tcRequest = Mage::getModel('checkoutapi/request');
|
48 |
+
|
49 |
+
$params["access_token"] = $tcAuth->access_token;
|
50 |
+
$params["transaction_id"] = $order->getPayment()->getData("traycheckout_transaction_id");
|
51 |
+
|
52 |
+
$tcResponse = $tcRequest->requestData("v1/transactions/cancel",$params,$configTc->getConfigData("sandbox"));
|
53 |
+
|
54 |
+
if($tcResponse->message_response->message == "success"){
|
55 |
+
$order->addStatusToHistory($order->getStatus(), "Pedido Cancelado no TrayCheckout!", false);
|
56 |
+
}else{
|
57 |
+
$order->addStatusToHistory($order->getStatus(), "Não foi possível cancelar o pedido: ".$tcResponse->error_response->errors->error[0]->code." - ".$tcResponse->error_response->errors->error[0]->message , false);
|
58 |
+
Mage::throwException("Erro ao Cancelar o Pedido no TrayCheckout: " .$tcResponse->error_response->errors->error[0]->code." - ".$tcResponse->error_response->errors->error[0]->message);
|
59 |
+
}
|
60 |
+
}
|
61 |
|
62 |
}
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
class Tray_CheckoutApi_Model_Onlinetransfer extends Tray_CheckoutApi_Model_Standard
|
21 |
+
{
|
22 |
+
const PAYMENT_TYPE_AUTH = 'AUTHORIZATION'; //retirar
|
23 |
+
const PAYMENT_TYPE_SALE = 'SALE'; //retirar
|
24 |
+
|
25 |
+
protected $_allowCurrencyCode = array('BRL');
|
26 |
+
|
27 |
+
protected $_code = 'traycheckoutapi_onlinetransfer';
|
28 |
+
|
29 |
+
protected $_formBlockType = 'checkoutapi/form_onlinetransfer';
|
30 |
+
|
31 |
+
protected $_blockType = 'checkoutapi/onlinetransfer';
|
32 |
+
|
33 |
+
protected $_infoBlockType = 'checkoutapi/info_onlinetransfer';
|
34 |
+
|
35 |
+
protected $errorMessageTrayCheckout = '';
|
36 |
+
|
37 |
+
protected $errorCodeTrayCheckout = '';
|
38 |
+
|
39 |
+
protected $errorTypeErrorTrayCheckout = '';
|
40 |
+
|
41 |
+
/**
|
42 |
+
* Return Order Place Redirect URL
|
43 |
+
*
|
44 |
+
* @return string Order Redirect URL
|
45 |
+
*/
|
46 |
+
public function getOrderPlaceRedirectUrl()
|
47 |
+
{
|
48 |
+
return Mage::getUrl('checkoutapi/standard/payment', array('_secure' => true, 'type' => 'onlinetransfer'));
|
49 |
+
//return Mage::getUrl('checkoutapi/redirect');
|
50 |
+
}
|
51 |
+
|
52 |
+
|
53 |
+
}
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
class Tray_CheckoutApi_Model_Request extends Varien_Object
|
21 |
+
{
|
22 |
+
private function getUrlEnvironment($environment){
|
23 |
+
return ($environment == '1') ? "https://api.sandbox.traycheckout.com.br/" : "https://api.traycheckout.com.br/";
|
24 |
+
}
|
25 |
+
|
26 |
+
public function requestData($pathPost, $dataRequest, $environment = "1")
|
27 |
+
{
|
28 |
+
|
29 |
+
$urlPost = self::getUrlEnvironment($environment).$pathPost;
|
30 |
+
|
31 |
+
Mage::log('URL de Request: '.$urlPost, null, 'traycheckout.log');
|
32 |
+
$ch = curl_init ( $urlPost );
|
33 |
+
|
34 |
+
if(is_array($dataRequest)){
|
35 |
+
Mage::log('Data: '. http_build_query($dataRequest), null, 'traycheckout.log');
|
36 |
+
}else{
|
37 |
+
Mage::log('Data: '. $dataRequest, null, 'traycheckout.log');
|
38 |
+
}
|
39 |
+
|
40 |
+
curl_setopt ( $ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1 );
|
41 |
+
curl_setopt ( $ch, CURLOPT_POST, 1 );
|
42 |
+
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
|
43 |
+
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $dataRequest);
|
44 |
+
curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
|
45 |
+
curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );
|
46 |
+
|
47 |
+
|
48 |
+
if (!($responseData = curl_exec($ch))) {
|
49 |
+
Mage::log('Error: Erro na execucao! ', null, 'traycheckout.log');
|
50 |
+
if(curl_errno($ch)){
|
51 |
+
Mage::log('Error '.curl_errno($ch).': '. curl_error($ch), null, 'traycheckout.log');
|
52 |
+
}else{
|
53 |
+
Mage::log('Error : '. curl_error($ch), null, 'traycheckout.log');
|
54 |
+
}
|
55 |
+
curl_close ( $ch );
|
56 |
+
exit();
|
57 |
+
}
|
58 |
+
|
59 |
+
$httpCode = curl_getinfo ( $ch, CURLINFO_HTTP_CODE );
|
60 |
+
|
61 |
+
curl_close($ch);
|
62 |
+
|
63 |
+
$responseData = simplexml_load_string($responseData);
|
64 |
+
|
65 |
+
return $responseData;
|
66 |
+
}
|
67 |
+
|
68 |
+
}
|
@@ -0,0 +1,147 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Paypal
|
23 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Fieldset renderer for PayPal solution
|
29 |
+
*
|
30 |
+
* @category Mage
|
31 |
+
* @package Mage_Paypal
|
32 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
*/
|
34 |
+
class Tray_CheckoutApi_Model_Source_Payment
|
35 |
+
extends Mage_Adminhtml_Block_System_Config_Form_Fieldset
|
36 |
+
{
|
37 |
+
/**
|
38 |
+
* Add custom css class
|
39 |
+
*
|
40 |
+
* @param Varien_Data_Form_Element_Abstract $element
|
41 |
+
* @return string
|
42 |
+
*/
|
43 |
+
protected function _getFrontendClass($element)
|
44 |
+
{
|
45 |
+
return parent::_getFrontendClass($element) . ' with-button '
|
46 |
+
. ($this->_isPaymentEnabled($element) ? ' enabled' : '');
|
47 |
+
}
|
48 |
+
|
49 |
+
/**
|
50 |
+
* Check whether current payment method is enabled
|
51 |
+
*
|
52 |
+
* @param Varien_Data_Form_Element_Abstract $element
|
53 |
+
* @param callback|null $configCallback
|
54 |
+
* @return bool
|
55 |
+
*/
|
56 |
+
protected function _isPaymentEnabled($element, $configCallback = null)
|
57 |
+
{
|
58 |
+
$groupConfig = $this->getGroup($element)->asArray();
|
59 |
+
$activityPath = isset($groupConfig['activity_path']) ? $groupConfig['activity_path'] : '';
|
60 |
+
|
61 |
+
if (empty($activityPath)) {
|
62 |
+
return false;
|
63 |
+
}
|
64 |
+
|
65 |
+
if ($configCallback && is_callable($configCallback)) {
|
66 |
+
$isPaymentEnabled = call_user_func($configCallback, $activityPath);
|
67 |
+
} else {
|
68 |
+
$isPaymentEnabled = (bool)(string)$this->_getConfigDataModel()->getConfigDataValue($activityPath);
|
69 |
+
}
|
70 |
+
|
71 |
+
return (bool)$isPaymentEnabled;
|
72 |
+
}
|
73 |
+
|
74 |
+
/**
|
75 |
+
* Get config data model
|
76 |
+
*
|
77 |
+
* @return Mage_Adminhtml_Model_Config_Data
|
78 |
+
*/
|
79 |
+
protected function _getConfigDataModel()
|
80 |
+
{
|
81 |
+
if (!$this->hasConfigDataModel()) {
|
82 |
+
$this->setConfigDataModel(Mage::getSingleton('adminhtml/config_data'));
|
83 |
+
}
|
84 |
+
|
85 |
+
return $this->getConfigDataModel();
|
86 |
+
}
|
87 |
+
|
88 |
+
/**
|
89 |
+
* Return header title part of html for payment solution
|
90 |
+
*
|
91 |
+
* @param Varien_Data_Form_Element_Abstract $element
|
92 |
+
* @return string
|
93 |
+
*/
|
94 |
+
protected function _getHeaderTitleHtml($element)
|
95 |
+
{
|
96 |
+
$html = '<div class="config-heading" ><div class="heading"><strong>' . $element->getLegend();
|
97 |
+
|
98 |
+
$groupConfig = $this->getGroup($element)->asArray();
|
99 |
+
if (!empty($groupConfig['learn_more_link'])) {
|
100 |
+
$html .= '<a class="link-more" href="' . $groupConfig['learn_more_link'] . '" target="_blank">'
|
101 |
+
. $this->__('Learn More') . '</a>';
|
102 |
+
}
|
103 |
+
if (!empty($groupConfig['demo_link'])) {
|
104 |
+
$html .= '<a class="link-demo" href="' . $groupConfig['demo_link'] . '" target="_blank">'
|
105 |
+
. $this->__('View Demo') . '</a>';
|
106 |
+
}
|
107 |
+
$html .= '</strong>';
|
108 |
+
|
109 |
+
if ($element->getComment()) {
|
110 |
+
$html .= '<span class="heading-intro">' . $element->getComment() . '</span>';
|
111 |
+
}
|
112 |
+
$html .= '</div>';
|
113 |
+
|
114 |
+
$html .= '<div class="button-container"><button type="button"'
|
115 |
+
. ($this->_isPaymentEnabled($element) ? '' : ' disabled="disabled"') . ' class="button'
|
116 |
+
. (empty($groupConfig['paypal_ec_separate']) ? '' : ' paypal-ec-separate')
|
117 |
+
. ($this->_isPaymentEnabled($element) ? '' : ' disabled') . '" id="' . $element->getHtmlId()
|
118 |
+
. '-head" onclick="paypalToggleSolution.call(this, \'' . $element->getHtmlId() . '\', \''
|
119 |
+
. $this->getUrl('*/*/state') . '\'); return false;"><span class="state-closed">'
|
120 |
+
. $this->__('Configure') . '</span><span class="state-opened">'
|
121 |
+
. $this->__('Close') . '</span></button></div></div>';
|
122 |
+
|
123 |
+
return $html;
|
124 |
+
}
|
125 |
+
|
126 |
+
/**
|
127 |
+
* Return header comment part of html for payment solution
|
128 |
+
*
|
129 |
+
* @param Varien_Data_Form_Element_Abstract $element
|
130 |
+
* @return string
|
131 |
+
*/
|
132 |
+
protected function _getHeaderCommentHtml($element)
|
133 |
+
{
|
134 |
+
return '';
|
135 |
+
}
|
136 |
+
|
137 |
+
/**
|
138 |
+
* Get collapsed state on-load
|
139 |
+
*
|
140 |
+
* @param Varien_Data_Form_Element_Abstract $element
|
141 |
+
* @return bool
|
142 |
+
*/
|
143 |
+
protected function _getCollapseState($element)
|
144 |
+
{
|
145 |
+
return false;
|
146 |
+
}
|
147 |
+
}
|
@@ -30,11 +30,8 @@ class Tray_CheckoutApi_Model_Source_Paymentmethods
|
|
30 |
array('value' => '16', 'label'=>Mage::helper('adminhtml')->__('Elo')),
|
31 |
array('value' => '15', 'label'=>Mage::helper('adminhtml')->__('Discover')),
|
32 |
array('value' => '19', 'label'=>Mage::helper('adminhtml')->__('JCB')),
|
33 |
-
array('value' => '
|
34 |
-
array('value' => '
|
35 |
-
array('value' => '22', 'label'=>Mage::helper('adminhtml')->__('Transf. Online Bradesco')),
|
36 |
-
array('value' => '23', 'label'=>Mage::helper('adminhtml')->__('Transf. Online Banco do Brasil')),
|
37 |
-
array('value' => '6', 'label'=>Mage::helper('adminhtml')->__('Boleto Bancário')),
|
38 |
);
|
39 |
}
|
40 |
}
|
30 |
array('value' => '16', 'label'=>Mage::helper('adminhtml')->__('Elo')),
|
31 |
array('value' => '15', 'label'=>Mage::helper('adminhtml')->__('Discover')),
|
32 |
array('value' => '19', 'label'=>Mage::helper('adminhtml')->__('JCB')),
|
33 |
+
array('value' => '20', 'label'=>Mage::helper('adminhtml')->__('Hiper')),
|
34 |
+
array('value' => '25', 'label'=>Mage::helper('adminhtml')->__('Hipercard')),
|
|
|
|
|
|
|
35 |
);
|
36 |
}
|
37 |
}
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
class Tray_CheckoutApi_Model_Source_Tefpaymentmethods
|
21 |
+
{
|
22 |
+
public function toOptionArray()
|
23 |
+
{
|
24 |
+
return array(
|
25 |
+
array('value' => '14', 'label'=>Mage::helper('adminhtml')->__('Peela')),
|
26 |
+
array('value' => '7', 'label'=>Mage::helper('adminhtml')->__('Itaú Shopline (Transferência)')),
|
27 |
+
array('value' => '22', 'label'=>Mage::helper('adminhtml')->__('Transf. Online Bradesco')),
|
28 |
+
array('value' => '23', 'label'=>Mage::helper('adminhtml')->__('Transf. Online Banco do Brasil')),
|
29 |
+
array('value' => '21', 'label'=>Mage::helper('adminhtml')->__('Transf. Online HSBC')),
|
30 |
+
);
|
31 |
+
}
|
32 |
+
}
|
@@ -93,6 +93,16 @@ class Tray_CheckoutApi_Model_Standard extends Mage_Payment_Model_Method_Abstract
|
|
93 |
{
|
94 |
return $this->getCheckout()->getQuote();
|
95 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
/**
|
98 |
* Using for multiple shipping address
|
@@ -605,6 +615,7 @@ class Tray_CheckoutApi_Model_Standard extends Mage_Payment_Model_Method_Abstract
|
|
605 |
$order->getPayment()->setData("traycheckout_token_transaction", $transactionTc->token_transaction);
|
606 |
$order->getPayment()->setData("traycheckout_url_payment", $transactionTc->payment->url_payment);
|
607 |
$order->getPayment()->setData("traycheckout_typeful_line", $transactionTc->payment->linha_digitavel);
|
|
|
608 |
|
609 |
$cod_status = $transactionTc->status_id;
|
610 |
$comment = "";
|
@@ -615,6 +626,7 @@ class Tray_CheckoutApi_Model_Standard extends Mage_Payment_Model_Method_Abstract
|
|
615 |
if (isset($transactionTc->status_name)) {
|
616 |
$comment .= " - " . $transactionTc->status_name;
|
617 |
}
|
|
|
618 |
switch ($cod_status){
|
619 |
case '4':
|
620 |
case '5':
|
@@ -625,55 +637,57 @@ class Tray_CheckoutApi_Model_Standard extends Mage_Payment_Model_Method_Abstract
|
|
625 |
);
|
626 |
break;
|
627 |
case '6':
|
|
|
628 |
$items = $order->getAllItems();
|
629 |
-
|
630 |
$thereIsVirtual = false;
|
631 |
-
|
632 |
foreach ($items as $itemId => $item) {
|
633 |
if ($item["is_virtual"] == "1" || $item["is_downloadable"] == "1") {
|
634 |
$thereIsVirtual = true;
|
635 |
}
|
636 |
}
|
637 |
-
|
638 |
// what to do - from admin
|
639 |
$toInvoice = $this->getApi()->getConfigData('acaopadraovirtual') == "1" ? true : false;
|
640 |
-
|
641 |
if ($thereIsVirtual && !$toInvoice) {
|
642 |
-
|
643 |
$frase = 'Tray - Aprovado. Pagamento (fatura) confirmado automaticamente.';
|
644 |
|
645 |
$order->addStatusToHistory(
|
646 |
$order->getStatus(), //continue setting current order status
|
647 |
Mage::helper('checkoutapi')->__($frase), true
|
648 |
);
|
649 |
-
|
650 |
$order->sendOrderUpdateEmail(true, $frase);
|
|
|
651 |
} else {
|
652 |
-
|
653 |
if (!$order->canInvoice()) {
|
654 |
$isHolded = ( $order->getStatus() == Mage_Sales_Model_Order::STATE_HOLDED );
|
655 |
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
//when order cannot create invoice, need to have some logic to take care
|
660 |
$order->addStatusToHistory(
|
661 |
$status, //continue setting current order status
|
662 |
Mage::helper('checkoutapi')->__( $frase )
|
663 |
);
|
664 |
-
|
665 |
} else {
|
666 |
-
|
667 |
//need to save transaction id
|
668 |
$order->getPayment()->setTransactionId($dados_post['transaction']['transaction_id']);
|
669 |
-
|
670 |
//need to convert from order into invoice
|
671 |
$invoice = $order->prepareInvoice();
|
672 |
|
673 |
if ($this->getApi()->canCapture()) {
|
674 |
$invoice->register()->capture();
|
675 |
}
|
676 |
-
|
677 |
Mage::getModel('core/resource_transaction')
|
678 |
->addObject($invoice)
|
679 |
->addObject($invoice->getOrder())
|
93 |
{
|
94 |
return $this->getCheckout()->getQuote();
|
95 |
}
|
96 |
+
|
97 |
+
/**
|
98 |
+
* Get singleton with checkout standard order transaction information
|
99 |
+
*
|
100 |
+
* @return Tray_CheckoutApi_Model_Api
|
101 |
+
*/
|
102 |
+
public function getApi()
|
103 |
+
{
|
104 |
+
return Mage::getSingleton($this->_blockType);
|
105 |
+
}
|
106 |
|
107 |
/**
|
108 |
* Using for multiple shipping address
|
615 |
$order->getPayment()->setData("traycheckout_token_transaction", $transactionTc->token_transaction);
|
616 |
$order->getPayment()->setData("traycheckout_url_payment", $transactionTc->payment->url_payment);
|
617 |
$order->getPayment()->setData("traycheckout_typeful_line", $transactionTc->payment->linha_digitavel);
|
618 |
+
$order->getPayment()->save();
|
619 |
|
620 |
$cod_status = $transactionTc->status_id;
|
621 |
$comment = "";
|
626 |
if (isset($transactionTc->status_name)) {
|
627 |
$comment .= " - " . $transactionTc->status_name;
|
628 |
}
|
629 |
+
|
630 |
switch ($cod_status){
|
631 |
case '4':
|
632 |
case '5':
|
637 |
);
|
638 |
break;
|
639 |
case '6':
|
640 |
+
|
641 |
$items = $order->getAllItems();
|
642 |
+
|
643 |
$thereIsVirtual = false;
|
644 |
+
|
645 |
foreach ($items as $itemId => $item) {
|
646 |
if ($item["is_virtual"] == "1" || $item["is_downloadable"] == "1") {
|
647 |
$thereIsVirtual = true;
|
648 |
}
|
649 |
}
|
650 |
+
|
651 |
// what to do - from admin
|
652 |
$toInvoice = $this->getApi()->getConfigData('acaopadraovirtual') == "1" ? true : false;
|
653 |
+
|
654 |
if ($thereIsVirtual && !$toInvoice) {
|
655 |
+
|
656 |
$frase = 'Tray - Aprovado. Pagamento (fatura) confirmado automaticamente.';
|
657 |
|
658 |
$order->addStatusToHistory(
|
659 |
$order->getStatus(), //continue setting current order status
|
660 |
Mage::helper('checkoutapi')->__($frase), true
|
661 |
);
|
662 |
+
|
663 |
$order->sendOrderUpdateEmail(true, $frase);
|
664 |
+
|
665 |
} else {
|
666 |
+
|
667 |
if (!$order->canInvoice()) {
|
668 |
$isHolded = ( $order->getStatus() == Mage_Sales_Model_Order::STATE_HOLDED );
|
669 |
|
670 |
+
$status = ($isHolded) ? Mage_Sales_Model_Order::STATE_PROCESSING : $order->getStatus();
|
671 |
+
$frase = ($isHolded) ? 'Tray - Aprovado. Confirmado automaticamente o pagamento do pedido.' : 'Erro ao criar pagamento (fatura).';
|
672 |
+
|
673 |
//when order cannot create invoice, need to have some logic to take care
|
674 |
$order->addStatusToHistory(
|
675 |
$status, //continue setting current order status
|
676 |
Mage::helper('checkoutapi')->__( $frase )
|
677 |
);
|
678 |
+
|
679 |
} else {
|
680 |
+
|
681 |
//need to save transaction id
|
682 |
$order->getPayment()->setTransactionId($dados_post['transaction']['transaction_id']);
|
683 |
+
|
684 |
//need to convert from order into invoice
|
685 |
$invoice = $order->prepareInvoice();
|
686 |
|
687 |
if ($this->getApi()->canCapture()) {
|
688 |
$invoice->register()->capture();
|
689 |
}
|
690 |
+
|
691 |
Mage::getModel('core/resource_transaction')
|
692 |
->addObject($invoice)
|
693 |
->addObject($invoice->getOrder())
|
@@ -38,6 +38,43 @@ class Tray_CheckoutApi_StandardController extends Mage_Core_Controller_Front_Act
|
|
38 |
$this->renderLayout();
|
39 |
}
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
public function paymentbackendAction()
|
42 |
{
|
43 |
$this->loadLayout();
|
38 |
$this->renderLayout();
|
39 |
}
|
40 |
|
41 |
+
public function returnconfigmoduleAction()
|
42 |
+
{
|
43 |
+
|
44 |
+
$code = $this->getRequest()->getParam('code', false);
|
45 |
+
$customerKey = $this->getRequest()->getParam('CK', false);
|
46 |
+
$customerSecret = $this->getRequest()->getParam('CS', false);
|
47 |
+
$environment = $this->getRequest()->getParam('environment', false);
|
48 |
+
|
49 |
+
$tcAuth = Mage::getModel('checkoutapi/auth');
|
50 |
+
$tcAuth->doAuthorization( $customerKey, $customerSecret, $code);
|
51 |
+
|
52 |
+
$tcRequest = Mage::getModel('checkoutapi/request');
|
53 |
+
|
54 |
+
$params["access_token"] = $tcAuth->access_token;
|
55 |
+
$params["url"] = Mage::getBaseUrl();
|
56 |
+
|
57 |
+
$tcResponse = $tcRequest->requestData("v1/people/update",$params,$environment);
|
58 |
+
|
59 |
+
if($tcResponse->message_response->message == "success"){
|
60 |
+
|
61 |
+
$htmlId = "payment_traycheckoutapi";
|
62 |
+
$htmlId .= ($this->getRequest()->getParam("type") != "standard") ? "_".$this->getRequest()->getParam("type") : "";
|
63 |
+
|
64 |
+
$script = "<script>";
|
65 |
+
$script .= "parent.document.getElementById('".$htmlId."_code').value = '$code';";
|
66 |
+
$script .= "parent.document.getElementById('".$htmlId."_customerKey').value = '$customerKey';";
|
67 |
+
$script .= "parent.document.getElementById('".$htmlId."_customerSecret').value = '$customerSecret';";
|
68 |
+
$script .= "parent.document.getElementById('".$htmlId."_token').value = '".$tcResponse->data_response->token_account."';";
|
69 |
+
$script .= "parent.configForm.submit();";
|
70 |
+
$script .= "";
|
71 |
+
$script .= "";
|
72 |
+
$script .= "</script>";
|
73 |
+
|
74 |
+
echo $script;
|
75 |
+
}
|
76 |
+
}
|
77 |
+
|
78 |
public function paymentbackendAction()
|
79 |
{
|
80 |
$this->loadLayout();
|
@@ -21,7 +21,7 @@
|
|
21 |
<config>
|
22 |
<modules>
|
23 |
<Tray_CheckoutApi>
|
24 |
-
<version>1.1.
|
25 |
</Tray_CheckoutApi>
|
26 |
</modules>
|
27 |
<global>
|
@@ -97,6 +97,15 @@
|
|
97 |
</checkoutapi_observer>
|
98 |
</observers>
|
99 |
</checkout_multishipping_controller_success_action>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
</events>
|
101 |
<fieldsets>
|
102 |
<sales_convert_quote_payment>
|
@@ -179,6 +188,22 @@
|
|
179 |
<allowspecific>1</allowspecific>
|
180 |
<splitTax>1.99</splitTax>
|
181 |
</traycheckoutapi>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
</payment>
|
183 |
<checkoutapi>
|
184 |
<settings>
|
21 |
<config>
|
22 |
<modules>
|
23 |
<Tray_CheckoutApi>
|
24 |
+
<version>1.1.3</version>
|
25 |
</Tray_CheckoutApi>
|
26 |
</modules>
|
27 |
<global>
|
97 |
</checkoutapi_observer>
|
98 |
</observers>
|
99 |
</checkout_multishipping_controller_success_action>
|
100 |
+
<order_cancel_after>
|
101 |
+
<observers>
|
102 |
+
<checkoutapi_observer>
|
103 |
+
<type>singleton</type>
|
104 |
+
<class>checkoutapi/observer</class>
|
105 |
+
<method>cancelOrderTrayCheckout</method>
|
106 |
+
</checkoutapi_observer>
|
107 |
+
</observers>
|
108 |
+
</order_cancel_after>
|
109 |
</events>
|
110 |
<fieldsets>
|
111 |
<sales_convert_quote_payment>
|
188 |
<allowspecific>1</allowspecific>
|
189 |
<splitTax>1.99</splitTax>
|
190 |
</traycheckoutapi>
|
191 |
+
<traycheckoutapi_bankslip>
|
192 |
+
<active>0</active>
|
193 |
+
<model>Tray_CheckoutApi_Model_Bankslip</model>
|
194 |
+
<order_status>pending</order_status>
|
195 |
+
<title>TrayCheckout - Boleto Bancário</title>
|
196 |
+
<allowspecific>1</allowspecific>
|
197 |
+
<splitTax>1.99</splitTax>
|
198 |
+
</traycheckoutapi_bankslip>
|
199 |
+
<traycheckoutapi_onlinetransfer>
|
200 |
+
<active>0</active>
|
201 |
+
<model>Tray_CheckoutApi_Model_Onlinetransfer</model>
|
202 |
+
<order_status>pending</order_status>
|
203 |
+
<title>TrayCheckout - Transferência Online</title>
|
204 |
+
<allowspecific>1</allowspecific>
|
205 |
+
<splitTax>1.99</splitTax>
|
206 |
+
</traycheckoutapi_onlinetransfer>
|
207 |
</payment>
|
208 |
<checkoutapi>
|
209 |
<settings>
|
@@ -29,12 +29,48 @@
|
|
29 |
<payment translate="label" module="checkoutapi">
|
30 |
<groups>
|
31 |
<traycheckoutapi translate="label">
|
32 |
-
<label>TrayCheckout -
|
33 |
<sort_order>670</sort_order>
|
34 |
<show_in_default>1</show_in_default>
|
35 |
<show_in_website>1</show_in_website>
|
36 |
<show_in_store>0</show_in_store>
|
37 |
<fields>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
<active translate="label">
|
39 |
<label>Enabled</label>
|
40 |
<frontend_type>select</frontend_type>
|
@@ -88,27 +124,27 @@
|
|
88 |
<show_in_website>1</show_in_website>
|
89 |
<show_in_store>0</show_in_store>
|
90 |
</acaopadraovirtual>
|
91 |
-
<tcQtdSplit translate="label">
|
92 |
-
<label>Quantidade Máxima de Parcelas</label>
|
93 |
-
<frontend_type>select</frontend_type>
|
94 |
-
<sort_order>6</sort_order>
|
95 |
-
<source_model>checkoutapi/source_qtdsplit</source_model>
|
96 |
-
<show_in_default>1</show_in_default>
|
97 |
-
<show_in_website>1</show_in_website>
|
98 |
-
<show_in_store>1</show_in_store>
|
99 |
-
</tcQtdSplit>
|
100 |
<tcPaymentMethods translate="label">
|
101 |
<label>Meios de Pagamento disponíveis</label>
|
102 |
<frontend_type>multiselect</frontend_type>
|
103 |
-
<sort_order>
|
104 |
<source_model>checkoutapi/source_paymentmethods</source_model>
|
105 |
<show_in_default>1</show_in_default>
|
106 |
<show_in_website>1</show_in_website>
|
107 |
<show_in_store>1</show_in_store>
|
108 |
</tcPaymentMethods>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
<tcNoSplitTaxRate translate="label">
|
110 |
<label>Parcelas sem Acréscimo</label>
|
111 |
-
<frontend_type>
|
112 |
<sort_order>8</sort_order>
|
113 |
<source_model>checkoutapi/source_qtdsplit</source_model>
|
114 |
<show_in_default>1</show_in_default>
|
@@ -168,6 +204,297 @@
|
|
168 |
</sandbox>
|
169 |
</fields>
|
170 |
</traycheckoutapi>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
</groups>
|
172 |
</payment>
|
173 |
</sections>
|
29 |
<payment translate="label" module="checkoutapi">
|
30 |
<groups>
|
31 |
<traycheckoutapi translate="label">
|
32 |
+
<label>TrayCheckout - Cartões de Crédito</label>
|
33 |
<sort_order>670</sort_order>
|
34 |
<show_in_default>1</show_in_default>
|
35 |
<show_in_website>1</show_in_website>
|
36 |
<show_in_store>0</show_in_store>
|
37 |
<fields>
|
38 |
+
<customerKey translate="label">
|
39 |
+
<label>Consumer Key TrayCheckout</label>
|
40 |
+
<frontend_type>text</frontend_type>
|
41 |
+
<sort_order>0</sort_order>
|
42 |
+
<show_in_default>1</show_in_default>
|
43 |
+
<show_in_website>1</show_in_website>
|
44 |
+
<show_in_store>0</show_in_store>
|
45 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_hidden</frontend_model>
|
46 |
+
</customerKey>
|
47 |
+
<customerSecret translate="label">
|
48 |
+
<label>Consumer Secret TrayCheckout</label>
|
49 |
+
<frontend_type>text</frontend_type>
|
50 |
+
<sort_order>0</sort_order>
|
51 |
+
<show_in_default>1</show_in_default>
|
52 |
+
<show_in_website>1</show_in_website>
|
53 |
+
<show_in_store>0</show_in_store>
|
54 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_hidden</frontend_model>
|
55 |
+
</customerSecret>
|
56 |
+
<code translate="label">
|
57 |
+
<label>Code TrayCheckout</label>
|
58 |
+
<frontend_type>text</frontend_type>
|
59 |
+
<sort_order>0</sort_order>
|
60 |
+
<show_in_default>1</show_in_default>
|
61 |
+
<show_in_website>1</show_in_website>
|
62 |
+
<show_in_store>0</show_in_store>
|
63 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_hidden</frontend_model>
|
64 |
+
</code>
|
65 |
+
<configButtom translate="label">
|
66 |
+
<label>Configurar TrayCheckout</label>
|
67 |
+
<frontend_type>text</frontend_type>
|
68 |
+
<sort_order>1</sort_order>
|
69 |
+
<show_in_default>1</show_in_default>
|
70 |
+
<show_in_website>1</show_in_website>
|
71 |
+
<show_in_store>0</show_in_store>
|
72 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_label</frontend_model>
|
73 |
+
</configButtom>
|
74 |
<active translate="label">
|
75 |
<label>Enabled</label>
|
76 |
<frontend_type>select</frontend_type>
|
124 |
<show_in_website>1</show_in_website>
|
125 |
<show_in_store>0</show_in_store>
|
126 |
</acaopadraovirtual>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
<tcPaymentMethods translate="label">
|
128 |
<label>Meios de Pagamento disponíveis</label>
|
129 |
<frontend_type>multiselect</frontend_type>
|
130 |
+
<sort_order>6</sort_order>
|
131 |
<source_model>checkoutapi/source_paymentmethods</source_model>
|
132 |
<show_in_default>1</show_in_default>
|
133 |
<show_in_website>1</show_in_website>
|
134 |
<show_in_store>1</show_in_store>
|
135 |
</tcPaymentMethods>
|
136 |
+
<tcQtdSplit translate="label">
|
137 |
+
<label>Quantidade Máxima de Parcelas</label>
|
138 |
+
<frontend_type>select</frontend_type>
|
139 |
+
<sort_order>7</sort_order>
|
140 |
+
<source_model>checkoutapi/source_qtdsplit</source_model>
|
141 |
+
<show_in_default>1</show_in_default>
|
142 |
+
<show_in_website>1</show_in_website>
|
143 |
+
<show_in_store>1</show_in_store>
|
144 |
+
</tcQtdSplit>
|
145 |
<tcNoSplitTaxRate translate="label">
|
146 |
<label>Parcelas sem Acréscimo</label>
|
147 |
+
<frontend_type>select</frontend_type>
|
148 |
<sort_order>8</sort_order>
|
149 |
<source_model>checkoutapi/source_qtdsplit</source_model>
|
150 |
<show_in_default>1</show_in_default>
|
204 |
</sandbox>
|
205 |
</fields>
|
206 |
</traycheckoutapi>
|
207 |
+
<traycheckoutapi_bankslip translate="label">
|
208 |
+
<label>TrayCheckout - Boleto Bancário</label>
|
209 |
+
<sort_order>671</sort_order>
|
210 |
+
<show_in_default>1</show_in_default>
|
211 |
+
<show_in_website>1</show_in_website>
|
212 |
+
<show_in_store>0</show_in_store>
|
213 |
+
<fields>
|
214 |
+
<customerKey translate="label">
|
215 |
+
<label>Consumer Key TrayCheckout</label>
|
216 |
+
<frontend_type>text</frontend_type>
|
217 |
+
<sort_order>0</sort_order>
|
218 |
+
<show_in_default>1</show_in_default>
|
219 |
+
<show_in_website>1</show_in_website>
|
220 |
+
<show_in_store>0</show_in_store>
|
221 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_hidden</frontend_model>
|
222 |
+
</customerKey>
|
223 |
+
<customerSecret translate="label">
|
224 |
+
<label>Consumer Secret TrayCheckout</label>
|
225 |
+
<frontend_type>text</frontend_type>
|
226 |
+
<sort_order>0</sort_order>
|
227 |
+
<show_in_default>1</show_in_default>
|
228 |
+
<show_in_website>1</show_in_website>
|
229 |
+
<show_in_store>0</show_in_store>
|
230 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_hidden</frontend_model>
|
231 |
+
</customerSecret>
|
232 |
+
<code translate="label">
|
233 |
+
<label>Code TrayCheckout</label>
|
234 |
+
<frontend_type>text</frontend_type>
|
235 |
+
<sort_order>0</sort_order>
|
236 |
+
<show_in_default>1</show_in_default>
|
237 |
+
<show_in_website>1</show_in_website>
|
238 |
+
<show_in_store>0</show_in_store>
|
239 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_hidden</frontend_model>
|
240 |
+
</code>
|
241 |
+
<configButtom translate="label">
|
242 |
+
<label>Configurar TrayCheckout</label>
|
243 |
+
<frontend_type>text</frontend_type>
|
244 |
+
<sort_order>1</sort_order>
|
245 |
+
<show_in_default>1</show_in_default>
|
246 |
+
<show_in_website>1</show_in_website>
|
247 |
+
<show_in_store>0</show_in_store>
|
248 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_label</frontend_model>
|
249 |
+
</configButtom>
|
250 |
+
<active translate="label">
|
251 |
+
<label>Enabled</label>
|
252 |
+
<frontend_type>select</frontend_type>
|
253 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
254 |
+
<sort_order>1</sort_order>
|
255 |
+
<show_in_default>1</show_in_default>
|
256 |
+
<show_in_website>1</show_in_website>
|
257 |
+
<show_in_store>0</show_in_store>
|
258 |
+
</active>
|
259 |
+
<title translate="label">
|
260 |
+
<label>Título</label>
|
261 |
+
<frontend_type>text</frontend_type>
|
262 |
+
<sort_order>2</sort_order>
|
263 |
+
<show_in_default>1</show_in_default>
|
264 |
+
<show_in_website>1</show_in_website>
|
265 |
+
<show_in_store>0</show_in_store>
|
266 |
+
</title>
|
267 |
+
<order_status translate="label">
|
268 |
+
<label>Status dos novos pedidos</label>
|
269 |
+
<frontend_type>select</frontend_type>
|
270 |
+
<source_model>adminhtml/system_config_source_order_status_new</source_model>
|
271 |
+
<sort_order>3</sort_order>
|
272 |
+
<show_in_default>1</show_in_default>
|
273 |
+
<show_in_website>1</show_in_website>
|
274 |
+
<show_in_store>0</show_in_store>
|
275 |
+
</order_status>
|
276 |
+
<!--custom_address_model translate="label, comment">
|
277 |
+
<label>Modelo de Endereço Personalizado</label>
|
278 |
+
<frontend_type>select</frontend_type>
|
279 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
280 |
+
<sort_order>5</sort_order>
|
281 |
+
<show_in_default>1</show_in_default>
|
282 |
+
<show_in_website>1</show_in_website>
|
283 |
+
<show_in_store>1</show_in_store>
|
284 |
+
<comment>Necessário disponibilizar quatro campos de endereço para habilitar.</comment>
|
285 |
+
</custom_address_model-->
|
286 |
+
<token translate="label">
|
287 |
+
<label>Token</label>
|
288 |
+
<frontend_type>text</frontend_type>
|
289 |
+
<sort_order>4</sort_order>
|
290 |
+
<show_in_default>1</show_in_default>
|
291 |
+
<show_in_website>1</show_in_website>
|
292 |
+
<show_in_store>0</show_in_store>
|
293 |
+
</token>
|
294 |
+
<acaopadraovirtual translate="label">
|
295 |
+
<label>Gerar Fatura automaticamente para pedidos com produtos virtuais?</label>
|
296 |
+
<frontend_type>select</frontend_type>
|
297 |
+
<sort_order>5</sort_order>
|
298 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
299 |
+
<show_in_default>1</show_in_default>
|
300 |
+
<show_in_website>1</show_in_website>
|
301 |
+
<show_in_store>0</show_in_store>
|
302 |
+
</acaopadraovirtual>
|
303 |
+
<allowspecific translate="label">
|
304 |
+
<label>Tipos de Países Permitidos</label>
|
305 |
+
<frontend_type>select</frontend_type>
|
306 |
+
<sort_order>11</sort_order>
|
307 |
+
<source_model>checkoutapi/source_specificcountries</source_model>
|
308 |
+
<show_in_default>1</show_in_default>
|
309 |
+
<show_in_website>1</show_in_website>
|
310 |
+
<show_in_store>1</show_in_store>
|
311 |
+
</allowspecific>
|
312 |
+
<specificcountry translate="label">
|
313 |
+
<label>Permitir Pagamento de Países Específicos</label>
|
314 |
+
<frontend_type>select</frontend_type>
|
315 |
+
<sort_order>12</sort_order>
|
316 |
+
<source_model>checkoutapi/source_country</source_model>
|
317 |
+
<show_in_default>1</show_in_default>
|
318 |
+
<show_in_website>1</show_in_website>
|
319 |
+
<show_in_store>1</show_in_store>
|
320 |
+
</specificcountry>
|
321 |
+
<prefixo translate="label">
|
322 |
+
<label>Prefixo do Pedido</label>
|
323 |
+
<frontend_type>text</frontend_type>
|
324 |
+
<sort_order>15</sort_order>
|
325 |
+
<show_in_default>1</show_in_default>
|
326 |
+
<show_in_website>1</show_in_website>
|
327 |
+
<show_in_store>1</show_in_store>
|
328 |
+
</prefixo>
|
329 |
+
<sort_order translate="label">
|
330 |
+
<label>Ordem de Exibição</label>
|
331 |
+
<frontend_type>text</frontend_type>
|
332 |
+
<sort_order>100</sort_order>
|
333 |
+
<show_in_default>1</show_in_default>
|
334 |
+
<show_in_website>1</show_in_website>
|
335 |
+
<show_in_store>1</show_in_store>
|
336 |
+
</sort_order>
|
337 |
+
<sandbox translate="label">
|
338 |
+
<label>Ambiente de Teste (Sandbox)</label>
|
339 |
+
<frontend_type>select</frontend_type>
|
340 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
341 |
+
<sort_order>200</sort_order>
|
342 |
+
<show_in_default>1</show_in_default>
|
343 |
+
<show_in_website>1</show_in_website>
|
344 |
+
<show_in_store>0</show_in_store>
|
345 |
+
</sandbox>
|
346 |
+
</fields>
|
347 |
+
</traycheckoutapi_bankslip>
|
348 |
+
<traycheckoutapi_onlinetransfer translate="label">
|
349 |
+
<label>TrayCheckout - Transferência Online</label>
|
350 |
+
<sort_order>672</sort_order>
|
351 |
+
<show_in_default>1</show_in_default>
|
352 |
+
<show_in_website>1</show_in_website>
|
353 |
+
<show_in_store>0</show_in_store>
|
354 |
+
<fields>
|
355 |
+
<customerKey translate="label">
|
356 |
+
<label>Consumer Key TrayCheckout</label>
|
357 |
+
<frontend_type>text</frontend_type>
|
358 |
+
<sort_order>0</sort_order>
|
359 |
+
<show_in_default>1</show_in_default>
|
360 |
+
<show_in_website>1</show_in_website>
|
361 |
+
<show_in_store>0</show_in_store>
|
362 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_hidden</frontend_model>
|
363 |
+
</customerKey>
|
364 |
+
<customerSecret translate="label">
|
365 |
+
<label>Consumer Secret TrayCheckout</label>
|
366 |
+
<frontend_type>text</frontend_type>
|
367 |
+
<sort_order>0</sort_order>
|
368 |
+
<show_in_default>1</show_in_default>
|
369 |
+
<show_in_website>1</show_in_website>
|
370 |
+
<show_in_store>0</show_in_store>
|
371 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_hidden</frontend_model>
|
372 |
+
</customerSecret>
|
373 |
+
<code translate="label">
|
374 |
+
<label>Code TrayCheckout</label>
|
375 |
+
<frontend_type>text</frontend_type>
|
376 |
+
<sort_order>0</sort_order>
|
377 |
+
<show_in_default>1</show_in_default>
|
378 |
+
<show_in_website>1</show_in_website>
|
379 |
+
<show_in_store>0</show_in_store>
|
380 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_hidden</frontend_model>
|
381 |
+
</code>
|
382 |
+
<configButtom translate="label">
|
383 |
+
<label>Configurar TrayCheckout</label>
|
384 |
+
<frontend_type>text</frontend_type>
|
385 |
+
<sort_order>1</sort_order>
|
386 |
+
<show_in_default>1</show_in_default>
|
387 |
+
<show_in_website>1</show_in_website>
|
388 |
+
<show_in_store>0</show_in_store>
|
389 |
+
<frontend_model>checkoutapi/adminhtml_system_config_fieldset_label</frontend_model>
|
390 |
+
</configButtom>
|
391 |
+
<active translate="label">
|
392 |
+
<label>Enabled</label>
|
393 |
+
<frontend_type>select</frontend_type>
|
394 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
395 |
+
<sort_order>1</sort_order>
|
396 |
+
<show_in_default>1</show_in_default>
|
397 |
+
<show_in_website>1</show_in_website>
|
398 |
+
<show_in_store>0</show_in_store>
|
399 |
+
</active>
|
400 |
+
<title translate="label">
|
401 |
+
<label>Título</label>
|
402 |
+
<frontend_type>text</frontend_type>
|
403 |
+
<sort_order>2</sort_order>
|
404 |
+
<show_in_default>1</show_in_default>
|
405 |
+
<show_in_website>1</show_in_website>
|
406 |
+
<show_in_store>0</show_in_store>
|
407 |
+
</title>
|
408 |
+
<order_status translate="label">
|
409 |
+
<label>Status dos novos pedidos</label>
|
410 |
+
<frontend_type>select</frontend_type>
|
411 |
+
<source_model>adminhtml/system_config_source_order_status_new</source_model>
|
412 |
+
<sort_order>3</sort_order>
|
413 |
+
<show_in_default>1</show_in_default>
|
414 |
+
<show_in_website>1</show_in_website>
|
415 |
+
<show_in_store>0</show_in_store>
|
416 |
+
</order_status>
|
417 |
+
<!--custom_address_model translate="label, comment">
|
418 |
+
<label>Modelo de Endereço Personalizado</label>
|
419 |
+
<frontend_type>select</frontend_type>
|
420 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
421 |
+
<sort_order>5</sort_order>
|
422 |
+
<show_in_default>1</show_in_default>
|
423 |
+
<show_in_website>1</show_in_website>
|
424 |
+
<show_in_store>1</show_in_store>
|
425 |
+
<comment>Necessário disponibilizar quatro campos de endereço para habilitar.</comment>
|
426 |
+
</custom_address_model-->
|
427 |
+
<token translate="label">
|
428 |
+
<label>Token</label>
|
429 |
+
<frontend_type>text</frontend_type>
|
430 |
+
<sort_order>4</sort_order>
|
431 |
+
<show_in_default>1</show_in_default>
|
432 |
+
<show_in_website>1</show_in_website>
|
433 |
+
<show_in_store>0</show_in_store>
|
434 |
+
</token>
|
435 |
+
<acaopadraovirtual translate="label">
|
436 |
+
<label>Gerar Fatura automaticamente para pedidos com produtos virtuais?</label>
|
437 |
+
<frontend_type>select</frontend_type>
|
438 |
+
<sort_order>5</sort_order>
|
439 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
440 |
+
<show_in_default>1</show_in_default>
|
441 |
+
<show_in_website>1</show_in_website>
|
442 |
+
<show_in_store>0</show_in_store>
|
443 |
+
</acaopadraovirtual>
|
444 |
+
<tcPaymentMethods translate="label">
|
445 |
+
<label>Meios de Pagamento disponíveis</label>
|
446 |
+
<frontend_type>multiselect</frontend_type>
|
447 |
+
<sort_order>7</sort_order>
|
448 |
+
<source_model>checkoutapi/source_tefpaymentmethods</source_model>
|
449 |
+
<show_in_default>1</show_in_default>
|
450 |
+
<show_in_website>1</show_in_website>
|
451 |
+
<show_in_store>1</show_in_store>
|
452 |
+
</tcPaymentMethods>
|
453 |
+
<allowspecific translate="label">
|
454 |
+
<label>Tipos de Países Permitidos</label>
|
455 |
+
<frontend_type>select</frontend_type>
|
456 |
+
<sort_order>11</sort_order>
|
457 |
+
<source_model>checkoutapi/source_specificcountries</source_model>
|
458 |
+
<show_in_default>1</show_in_default>
|
459 |
+
<show_in_website>1</show_in_website>
|
460 |
+
<show_in_store>1</show_in_store>
|
461 |
+
</allowspecific>
|
462 |
+
<specificcountry translate="label">
|
463 |
+
<label>Permitir Pagamento de Países Específicos</label>
|
464 |
+
<frontend_type>select</frontend_type>
|
465 |
+
<sort_order>12</sort_order>
|
466 |
+
<source_model>checkoutapi/source_country</source_model>
|
467 |
+
<show_in_default>1</show_in_default>
|
468 |
+
<show_in_website>1</show_in_website>
|
469 |
+
<show_in_store>1</show_in_store>
|
470 |
+
</specificcountry>
|
471 |
+
<prefixo translate="label">
|
472 |
+
<label>Prefixo do Pedido</label>
|
473 |
+
<frontend_type>text</frontend_type>
|
474 |
+
<sort_order>15</sort_order>
|
475 |
+
<show_in_default>1</show_in_default>
|
476 |
+
<show_in_website>1</show_in_website>
|
477 |
+
<show_in_store>1</show_in_store>
|
478 |
+
</prefixo>
|
479 |
+
<sort_order translate="label">
|
480 |
+
<label>Ordem de Exibição</label>
|
481 |
+
<frontend_type>text</frontend_type>
|
482 |
+
<sort_order>100</sort_order>
|
483 |
+
<show_in_default>1</show_in_default>
|
484 |
+
<show_in_website>1</show_in_website>
|
485 |
+
<show_in_store>1</show_in_store>
|
486 |
+
</sort_order>
|
487 |
+
<sandbox translate="label">
|
488 |
+
<label>Ambiente de Teste (Sandbox)</label>
|
489 |
+
<frontend_type>select</frontend_type>
|
490 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
491 |
+
<sort_order>200</sort_order>
|
492 |
+
<show_in_default>1</show_in_default>
|
493 |
+
<show_in_website>1</show_in_website>
|
494 |
+
<show_in_store>0</show_in_store>
|
495 |
+
</sandbox>
|
496 |
+
</fields>
|
497 |
+
</traycheckoutapi_onlinetransfer>
|
498 |
</groups>
|
499 |
</payment>
|
500 |
</sections>
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
/** @var $installer Mage_Paypal_Model_Resource_Setup */
|
21 |
+
$installer = $this;
|
22 |
+
|
23 |
+
/**
|
24 |
+
* Prepare database for install
|
25 |
+
*/
|
26 |
+
$installer->startSetup();
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Add paypal attributes to the:
|
30 |
+
* - sales/flat_quote_payment_item table
|
31 |
+
* - sales/flat_order table
|
32 |
+
*/
|
33 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_transaction_id', array());
|
34 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_split_number', array());
|
35 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_split_value', array());
|
36 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_token_transaction', array());
|
37 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_url_payment', array());
|
38 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_typeful_line', array());
|
39 |
+
|
40 |
+
|
41 |
+
$installer->run("
|
42 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_transaction_id` VARCHAR( 255 ) NULL DEFAULT NULL;
|
43 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_split_number` VARCHAR( 255 ) NULL DEFAULT NULL;
|
44 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_split_value` VARCHAR( 255 ) NULL DEFAULT NULL;
|
45 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_token_transaction` VARCHAR( 255 ) NULL DEFAULT NULL;
|
46 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_url_payment` VARCHAR( 255 ) NULL DEFAULT NULL;
|
47 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_typeful_line` VARCHAR( 255 ) NULL DEFAULT NULL;
|
48 |
+
|
49 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_transaction_id` VARCHAR( 255 ) NULL DEFAULT NULL;
|
50 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_split_number` VARCHAR( 255 ) NULL DEFAULT NULL;
|
51 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_split_value` VARCHAR( 255 ) NULL DEFAULT NULL;
|
52 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_token_transaction` VARCHAR( 255 ) NULL DEFAULT NULL;
|
53 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_url_payment` VARCHAR( 255 ) NULL DEFAULT NULL;
|
54 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_typeful_line` VARCHAR( 255 ) NULL DEFAULT NULL;
|
55 |
+
");
|
56 |
+
/**
|
57 |
+
* Prepare database after install
|
58 |
+
*/
|
59 |
+
|
60 |
+
$installer->endSetup();
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
|
20 |
+
/** @var $installer Mage_Paypal_Model_Resource_Setup */
|
21 |
+
$installer = $this;
|
22 |
+
|
23 |
+
/**
|
24 |
+
* Prepare database for install
|
25 |
+
*/
|
26 |
+
$installer->startSetup();
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Add paypal attributes to the:
|
30 |
+
* - sales/flat_quote_payment_item table
|
31 |
+
* - sales/flat_order table
|
32 |
+
*/
|
33 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_transaction_id', array());
|
34 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_split_number', array());
|
35 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_split_value', array());
|
36 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_token_transaction', array());
|
37 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_url_payment', array());
|
38 |
+
//$installer->addAttribute('quote_payment', 'traycheckout_typeful_line', array());
|
39 |
+
|
40 |
+
|
41 |
+
$installer->run("
|
42 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_transaction_id` VARCHAR( 255 ) NULL DEFAULT NULL;
|
43 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_split_number` VARCHAR( 255 ) NULL DEFAULT NULL;
|
44 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_split_value` VARCHAR( 255 ) NULL DEFAULT NULL;
|
45 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_token_transaction` VARCHAR( 255 ) NULL DEFAULT NULL;
|
46 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_url_payment` VARCHAR( 255 ) NULL DEFAULT NULL;
|
47 |
+
ALTER TABLE {$this->getTable('sales_flat_quote_payment')} ADD `traycheckout_typeful_line` VARCHAR( 255 ) NULL DEFAULT NULL;
|
48 |
+
|
49 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_transaction_id` VARCHAR( 255 ) NULL DEFAULT NULL;
|
50 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_split_number` VARCHAR( 255 ) NULL DEFAULT NULL;
|
51 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_split_value` VARCHAR( 255 ) NULL DEFAULT NULL;
|
52 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_token_transaction` VARCHAR( 255 ) NULL DEFAULT NULL;
|
53 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_url_payment` VARCHAR( 255 ) NULL DEFAULT NULL;
|
54 |
+
ALTER TABLE {$this->getTable('sales_flat_order_payment')} ADD `traycheckout_typeful_line` VARCHAR( 255 ) NULL DEFAULT NULL;
|
55 |
+
");
|
56 |
+
/**
|
57 |
+
* Prepare database after install
|
58 |
+
*/
|
59 |
+
|
60 |
+
$installer->endSetup();
|
@@ -23,14 +23,14 @@
|
|
23 |
<reference name="head">
|
24 |
<action method="addItem">
|
25 |
<type>skin_js</type>
|
26 |
-
<script>tray/checkoutapi/js/
|
27 |
</action>
|
28 |
<action method="addCss">
|
29 |
<stylesheet>tray/checkoutapi/css/magentomodal.css</stylesheet>
|
30 |
</action>
|
31 |
</reference>
|
32 |
-
|
33 |
<block type="page/html" name="getbaseurl" template="tray/checkoutapi/getbaseurl.phtml" />
|
34 |
-
</reference
|
35 |
</adminhtml_system_config_edit>
|
36 |
</layout>
|
23 |
<reference name="head">
|
24 |
<action method="addItem">
|
25 |
<type>skin_js</type>
|
26 |
+
<script>tray/checkoutapi/js/modal.js</script>
|
27 |
</action>
|
28 |
<action method="addCss">
|
29 |
<stylesheet>tray/checkoutapi/css/magentomodal.css</stylesheet>
|
30 |
</action>
|
31 |
</reference>
|
32 |
+
<!--reference name="content">
|
33 |
<block type="page/html" name="getbaseurl" template="tray/checkoutapi/getbaseurl.phtml" />
|
34 |
+
</reference-->
|
35 |
</adminhtml_system_config_edit>
|
36 |
</layout>
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
?>
|
20 |
+
<fieldset class="form-list">
|
21 |
+
<?php
|
22 |
+
$_code = $this->getMethodCode();
|
23 |
+
$_standardPD = Mage::getSingleton('checkoutapi/bankslip');
|
24 |
+
|
25 |
+
$totals = Mage::getSingleton('adminhtml/session_quote')->getQuote()->collectTotals();
|
26 |
+
?>
|
27 |
+
<ul id="payment_form_<?php echo $_code ?>" style="display:none">
|
28 |
+
<ul class="forma_pagamento"></ul>
|
29 |
+
</ul>
|
30 |
+
</fieldset>
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
?>
|
20 |
+
<fieldset class="form-list">
|
21 |
+
<?php
|
22 |
+
$_code = $this->getMethodCode();
|
23 |
+
$_standardPD = Mage::getSingleton('checkoutapi/onlinetransfer');
|
24 |
+
|
25 |
+
$totals = Mage::getSingleton('adminhtml/session_quote')->getQuote()->collectTotals();
|
26 |
+
?>
|
27 |
+
<ul id="payment_form_<?php echo $_code ?>" style="display:none">
|
28 |
+
<ul class="forma_pagamento"></ul>
|
29 |
+
</ul>
|
30 |
+
</fieldset>
|
@@ -20,7 +20,7 @@
|
|
20 |
<fieldset class="form-list">
|
21 |
<?php
|
22 |
$_code = $this->getMethodCode();
|
23 |
-
$_standardPD = Mage::getSingleton('checkoutapi/
|
24 |
|
25 |
$totals = Mage::getSingleton('adminhtml/session_quote')->getQuote()->collectTotals();
|
26 |
?>
|
20 |
<fieldset class="form-list">
|
21 |
<?php
|
22 |
$_code = $this->getMethodCode();
|
23 |
+
$_standardPD = Mage::getSingleton('checkoutapi/standard');
|
24 |
|
25 |
$totals = Mage::getSingleton('adminhtml/session_quote')->getQuote()->collectTotals();
|
26 |
?>
|
@@ -18,7 +18,15 @@
|
|
18 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
*/
|
20 |
-->
|
21 |
-
<layout version="1.1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
<checkoutapi_standard_payment>
|
23 |
<reference name="head">
|
24 |
<action method="addCss">
|
18 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
*/
|
20 |
-->
|
21 |
+
<layout version="1.1.3">
|
22 |
+
<default>
|
23 |
+
<reference name="head">
|
24 |
+
<action method="addJs">
|
25 |
+
<script>tray/checkoutapi/js/traycheckout.js</script>
|
26 |
+
</action>
|
27 |
+
</reference>
|
28 |
+
</default>
|
29 |
+
|
30 |
<checkoutapi_standard_payment>
|
31 |
<reference name="head">
|
32 |
<action method="addCss">
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
?>
|
20 |
+
<fieldset class="form-list">
|
21 |
+
<?php
|
22 |
+
$_code = $this->getMethodCode();
|
23 |
+
$_standardPD = Mage::getSingleton('checkoutapi/bankslip');
|
24 |
+
|
25 |
+
$totals = Mage::getSingleton('checkout/session')->getQuote()->collectTotals();
|
26 |
+
//$shippingAmount = Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingAmount();
|
27 |
+
|
28 |
+
?>
|
29 |
+
<style>
|
30 |
+
ul li.tcbPaymentMethod{
|
31 |
+
float: left;
|
32 |
+
padding: 5px;
|
33 |
+
width: 125px;
|
34 |
+
height: 60px;
|
35 |
+
}
|
36 |
+
ul li input{
|
37 |
+
float: left;
|
38 |
+
margin-right: 5px;
|
39 |
+
}
|
40 |
+
ul li img.tcbPaymentFlag{
|
41 |
+
float: left;
|
42 |
+
width: 76px;
|
43 |
+
height: 49px;
|
44 |
+
background-repeat: no-repeat;
|
45 |
+
border-radius: 3px;
|
46 |
+
background-color: #f3f3f3;
|
47 |
+
box-shadow: 1px 1px 2px #ececec;
|
48 |
+
}
|
49 |
+
|
50 |
+
</style>
|
51 |
+
<ul id="payment_form_<?php echo $_code ?>" style="display:none">
|
52 |
+
|
53 |
+
<li class="forma_pagamento" style="float:left;;">
|
54 |
+
<ul>
|
55 |
+
<li>
|
56 |
+
<input type="hidden" id="tcbPaymentMethod" name="payment[cc_type]" class="required-entry" value="6"/>
|
57 |
+
<ul>
|
58 |
+
<li class="tcbPaymentMethod" >
|
59 |
+
<img src="<?php echo $this->getSkinUrl('tray/checkoutapi/images/boleto-flag.svg') ?>" class="tcbPaymentFlag">
|
60 |
+
</li>
|
61 |
+
</ul>
|
62 |
+
</li>
|
63 |
+
</ul>
|
64 |
+
</li>
|
65 |
+
</ul>
|
66 |
+
|
67 |
+
</fieldset>
|
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
?>
|
20 |
+
<fieldset class="form-list">
|
21 |
+
<?php
|
22 |
+
$_code = $this->getMethodCode();
|
23 |
+
$_standardPD = Mage::getSingleton('checkoutapi/onlinetransfer');
|
24 |
+
|
25 |
+
$totals = Mage::getSingleton('checkout/session')->getQuote()->collectTotals();
|
26 |
+
//$shippingAmount = Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingAmount();
|
27 |
+
$strTcPaymentMethods = $_standardPD->getConfigData("tcPaymentMethods");
|
28 |
+
|
29 |
+
if($strTcPaymentMethods == "" || $strTcPaymentMethods == null){
|
30 |
+
$tctPaymentMethods = explode(",","14,7,22,23,21");
|
31 |
+
}else{
|
32 |
+
$tctPaymentMethods = explode(",",$strTcPaymentMethods);
|
33 |
+
}
|
34 |
+
?>
|
35 |
+
<style>
|
36 |
+
ul li.tctPaymentMethod{
|
37 |
+
float: left;
|
38 |
+
padding: 5px;
|
39 |
+
width: 125px;
|
40 |
+
height: 60px;
|
41 |
+
}
|
42 |
+
ul li input{
|
43 |
+
float: left;
|
44 |
+
margin-right: 5px;
|
45 |
+
}
|
46 |
+
ul li img.tctPaymentFlag{
|
47 |
+
float: left;
|
48 |
+
width: 76px;
|
49 |
+
height: 49px;
|
50 |
+
background-repeat: no-repeat;
|
51 |
+
border-radius: 3px;
|
52 |
+
background-color: #f3f3f3;
|
53 |
+
box-shadow: 1px 1px 2px #ececec;
|
54 |
+
opacity:0.30;
|
55 |
+
-moz-opacity: 0.30;
|
56 |
+
filter: alpha(opacity=30);
|
57 |
+
}
|
58 |
+
ul li img.tctPaymentFlagSelected{
|
59 |
+
opacity:1 !important;
|
60 |
+
-moz-opacity: 1 !important;
|
61 |
+
filter: alpha(opacity=100) !important;
|
62 |
+
}
|
63 |
+
|
64 |
+
</style>
|
65 |
+
<ul id="payment_form_<?php echo $_code ?>" style="display:none">
|
66 |
+
|
67 |
+
<li class="forma_pagamento" style="float:left;;">
|
68 |
+
<ul>
|
69 |
+
<li>
|
70 |
+
<label for="tctPaymentMethod"><?php echo Mage::helper('payment')->__('Selecione a forma de pagamento') ?> <span class="required">*</span></label><br/>
|
71 |
+
<input type="hidden" id="tctPaymentMethod" name="payment[cc_type]" class="required-entry" value=""/>
|
72 |
+
<ul>
|
73 |
+
<?php
|
74 |
+
$imgSrc = "";
|
75 |
+
foreach ($tctPaymentMethods as $idTcPayment){
|
76 |
+
switch (intval($idTcPayment)){
|
77 |
+
case 7: $imgSrc = "itau";break;
|
78 |
+
case 14: $imgSrc = "peela";break;
|
79 |
+
case 22: $imgSrc = "bradesco";break;
|
80 |
+
case 23: $imgSrc = "bb";break;
|
81 |
+
case 21: $imgSrc = "hsbc";break;
|
82 |
+
}
|
83 |
+
?>
|
84 |
+
<li class="tcPaymentMethod">
|
85 |
+
<!--input type="radio" name="tcPaymentMethodR" value="<?php echo $idTcPayment;?>" onclick="document.getElementById('tcPaymentMethod').value = this.value; "/-->
|
86 |
+
<img src="<?php echo $this->getSkinUrl('tray/checkoutapi/images/'.$imgSrc.'-flag.svg') ?>" class="tctPaymentFlag" id="tctPaymentFlag<?php echo $idTcPayment;?>" onclick="selectTefTc('<?php echo $idTcPayment;?>')">
|
87 |
+
</li>
|
88 |
+
<?php
|
89 |
+
|
90 |
+
}
|
91 |
+
?>
|
92 |
+
</ul>
|
93 |
+
</li>
|
94 |
+
</ul>
|
95 |
+
</li>
|
96 |
+
</ul>
|
97 |
+
|
98 |
+
</fieldset>
|
@@ -27,7 +27,7 @@
|
|
27 |
$strTcPaymentMethods = $_standardPD->getConfigData("tcPaymentMethods");
|
28 |
|
29 |
if($strTcPaymentMethods == "" || $strTcPaymentMethods == null){
|
30 |
-
$tcPaymentMethods = explode(",","3,4,2,5,18,16,15,19,14,7,22,23,6");
|
31 |
}else{
|
32 |
$tcPaymentMethods = explode(",",$strTcPaymentMethods);
|
33 |
}
|
@@ -36,72 +36,31 @@
|
|
36 |
ul li.tcPaymentMethod{
|
37 |
float: left;
|
38 |
padding: 5px;
|
39 |
-
width:
|
40 |
-
height:
|
41 |
}
|
42 |
ul li input{
|
43 |
float: left;
|
44 |
margin-right: 5px;
|
45 |
}
|
46 |
-
ul li
|
47 |
float: left;
|
48 |
-
width:
|
49 |
-
height:
|
50 |
-
background-image: url(<?php echo $this->getSkinUrl('tray/checkoutapi/images/paymentFlags1.png'); ?>);
|
51 |
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
-
|
54 |
-
ul li span.tcPaymentFlag2{
|
55 |
-
background-position: -184px -8px;
|
56 |
-
}
|
57 |
-
/* Visa */
|
58 |
-
ul li span.tcPaymentFlag3{
|
59 |
-
background-position: 1px -8px;
|
60 |
-
}
|
61 |
-
/* Master */
|
62 |
-
ul li span.tcPaymentFlag4{
|
63 |
-
background-position: -60px -8px;
|
64 |
-
}
|
65 |
-
/* Amex */
|
66 |
-
ul li span.tcPaymentFlag5{
|
67 |
-
background-position: -123px -8px;
|
68 |
-
}
|
69 |
-
/* Boleto */
|
70 |
-
ul li span.tcPaymentFlag6{
|
71 |
-
background-position: -556px -8px;
|
72 |
-
}
|
73 |
-
/* Itaú */
|
74 |
-
ul li span.tcPaymentFlag7{
|
75 |
-
background-position: -618px -8px;
|
76 |
-
}
|
77 |
-
/* Peela */
|
78 |
-
ul li span.tcPaymentFlag14{
|
79 |
-
background-position: -369px -8px;
|
80 |
-
}
|
81 |
-
/* Discover */
|
82 |
-
ul li span.tcPaymentFlag15{
|
83 |
-
background-position: -308px -8px;
|
84 |
-
}
|
85 |
-
/* Elo */
|
86 |
-
ul li span.tcPaymentFlag16{
|
87 |
-
background-position: -246px -8px;
|
88 |
-
}
|
89 |
-
/* Aura */
|
90 |
-
ul li span.tcPaymentFlag18{
|
91 |
-
background-position: -431px -8px;
|
92 |
-
}
|
93 |
-
/* JCB */
|
94 |
-
ul li span.tcPaymentFlag19{
|
95 |
-
background-position: -494px -8px;
|
96 |
-
}
|
97 |
-
/* Bradesco */
|
98 |
-
ul li span.tcPaymentFlag22{
|
99 |
-
background-position: -679px -8px;
|
100 |
-
}
|
101 |
-
/* Banco do Brasil */
|
102 |
-
ul li span.tcPaymentFlag23{
|
103 |
-
background-position: -741px -8px;
|
104 |
-
}
|
105 |
</style>
|
106 |
<ul id="payment_form_<?php echo $_code ?>" style="display:none">
|
107 |
|
@@ -112,34 +71,33 @@
|
|
112 |
<input type="hidden" id="tcPaymentMethod" name="payment[cc_type]" class="required-entry" value=""/>
|
113 |
<ul>
|
114 |
<?php
|
|
|
115 |
foreach ($tcPaymentMethods as $idTcPayment){
|
116 |
-
$
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
$
|
123 |
-
|
124 |
-
|
125 |
-
$
|
|
|
126 |
}
|
127 |
?>
|
128 |
-
<li class="tcPaymentMethod"
|
129 |
-
|
130 |
-
<
|
131 |
-
|
132 |
-
</span>
|
133 |
</li>
|
134 |
<?php
|
135 |
-
|
136 |
}
|
137 |
?>
|
138 |
</ul>
|
139 |
</li>
|
140 |
</ul>
|
141 |
</li>
|
142 |
-
<li id="displayCcInfo" style="display:
|
143 |
<ul>
|
144 |
<li>
|
145 |
<div class="input-box">
|
@@ -150,7 +108,7 @@
|
|
150 |
<li>
|
151 |
<div class="input-box">
|
152 |
<label for="<?php echo $_code ?>_cc_number"><?php echo Mage::helper('payment')->__('Credit Card Number') ?> <span class="required">*</span></label><br/>
|
153 |
-
<input type="text" id="<?php echo $_code ?>_cc_number" name="payment[cc_number]" title="<?php echo Mage::helper('payment')->__('Credit Card Number') ?>" class="required-entry input-text validate-cc-number" value="<?php echo $this->getInfoData('cc_number')?>"/>
|
154 |
</div>
|
155 |
</li>
|
156 |
<li>
|
27 |
$strTcPaymentMethods = $_standardPD->getConfigData("tcPaymentMethods");
|
28 |
|
29 |
if($strTcPaymentMethods == "" || $strTcPaymentMethods == null){
|
30 |
+
$tcPaymentMethods = explode(",","3,4,2,5,18,16,15,19,14,7,22,23,6,20,25");
|
31 |
}else{
|
32 |
$tcPaymentMethods = explode(",",$strTcPaymentMethods);
|
33 |
}
|
36 |
ul li.tcPaymentMethod{
|
37 |
float: left;
|
38 |
padding: 5px;
|
39 |
+
width: 125px;
|
40 |
+
height: 60px;
|
41 |
}
|
42 |
ul li input{
|
43 |
float: left;
|
44 |
margin-right: 5px;
|
45 |
}
|
46 |
+
ul li img.tcPaymentFlag{
|
47 |
float: left;
|
48 |
+
width: 76px;
|
49 |
+
height: 49px;
|
|
|
50 |
background-repeat: no-repeat;
|
51 |
+
border-radius: 3px;
|
52 |
+
background-color: #f3f3f3;
|
53 |
+
box-shadow: 1px 1px 2px #ececec;
|
54 |
+
opacity:0.30;
|
55 |
+
-moz-opacity: 0.30;
|
56 |
+
filter: alpha(opacity=30);
|
57 |
+
}
|
58 |
+
ul li img.tcPaymentFlagSelected{
|
59 |
+
opacity:1 !important;
|
60 |
+
-moz-opacity: 1 !important;
|
61 |
+
filter: alpha(opacity=100) !important;
|
62 |
}
|
63 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
</style>
|
65 |
<ul id="payment_form_<?php echo $_code ?>" style="display:none">
|
66 |
|
71 |
<input type="hidden" id="tcPaymentMethod" name="payment[cc_type]" class="required-entry" value=""/>
|
72 |
<ul>
|
73 |
<?php
|
74 |
+
$imgSrc = "";
|
75 |
foreach ($tcPaymentMethods as $idTcPayment){
|
76 |
+
switch (intval($idTcPayment)){
|
77 |
+
case 2: $imgSrc = "diners-club-international";break;
|
78 |
+
case 3: $imgSrc = "visa";break;
|
79 |
+
case 4: $imgSrc = "mastercard";break;
|
80 |
+
case 5: $imgSrc = "american-express";break;
|
81 |
+
case 15: $imgSrc = "discover";break;
|
82 |
+
case 16: $imgSrc = "elo";break;
|
83 |
+
case 18: $imgSrc = "aura";break;
|
84 |
+
case 19: $imgSrc = "jcb";break;
|
85 |
+
case 20: $imgSrc = "hipercard";break;
|
86 |
+
case 25: $imgSrc = "hiper";break;
|
87 |
}
|
88 |
?>
|
89 |
+
<li class="tcPaymentMethod" >
|
90 |
+
<!--input type="radio" name="tcPaymentMethodR" value="<?php echo $idTcPayment;?>" onclick="document.getElementById('tcPaymentMethod').value = this.value;"/-->
|
91 |
+
<img src="<?php echo $this->getSkinUrl('tray/checkoutapi/images/'.$imgSrc.'-flag.svg') ?>" class="tcPaymentFlag" id="tcPaymentFlag<?php echo $idTcPayment;?>" onclick="selectCreditCardTc('<?php echo $idTcPayment;?>')">
|
|
|
|
|
92 |
</li>
|
93 |
<?php
|
|
|
94 |
}
|
95 |
?>
|
96 |
</ul>
|
97 |
</li>
|
98 |
</ul>
|
99 |
</li>
|
100 |
+
<li id="displayCcInfo" style="display: block;">
|
101 |
<ul>
|
102 |
<li>
|
103 |
<div class="input-box">
|
108 |
<li>
|
109 |
<div class="input-box">
|
110 |
<label for="<?php echo $_code ?>_cc_number"><?php echo Mage::helper('payment')->__('Credit Card Number') ?> <span class="required">*</span></label><br/>
|
111 |
+
<input type="text" id="<?php echo $_code ?>_cc_number" name="payment[cc_number]" title="<?php echo Mage::helper('payment')->__('Credit Card Number') ?>" class="required-entry input-text validate-cc-number" value="<?php echo $this->getInfoData('cc_number')?>" onkeyup="identifyCreditCardTc(this.value)"/>
|
112 |
</div>
|
113 |
</li>
|
114 |
<li>
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
?>
|
20 |
+
<p>
|
21 |
+
<strong>
|
22 |
+
<?php echo $this->htmlEscape($this->getMethod()->getTitle()) ?>
|
23 |
+
</strong>
|
24 |
+
<br/>
|
25 |
+
<?php
|
26 |
+
if($this->getInfo()->getData("cc_type") != NULL){
|
27 |
+
$tcTxtPaymentMethod = array("Diners Club","Visa","Mastercard","American Express","Boleto Bancário","Itaú Shopline","Peela","Discovery","Elo","Aura","JCB","Transf. Online Bradesco","Transf. Online Banco do Brasil");
|
28 |
+
$tcIdPaymentMethod = array("2","3","4","5","6","7","14","15","16","18","19","22","23");
|
29 |
+
$tcIdPaymentMethodCreditCard = array("","2","3","4","5","15","16","18","19");
|
30 |
+
|
31 |
+
echo $tcTxtPaymentMethod[array_search($this->getInfo()->getData("cc_type"), $tcIdPaymentMethod)];
|
32 |
+
}
|
33 |
+
?>
|
34 |
+
<?php echo (array_search($this->getInfo()->getData("cc_type"), $tcIdPaymentMethodCreditCard)) ? $this->getInfo()->getData("traycheckout_split_number") . " x R$". number_format((float)$this->getInfo()->getData("traycheckout_split_value"), 2, ',','') : ""; ?>
|
35 |
+
</p>
|
36 |
+
<?php echo $this->getLinkPayment($this->getInfo()->getOrder()); ?>
|
37 |
+
|
38 |
+
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to suporte@tray.net.br so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Tray
|
16 |
+
* @package Tray_CheckoutApi
|
17 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
18 |
+
*/
|
19 |
+
?>
|
20 |
+
<p>
|
21 |
+
<strong>
|
22 |
+
<?php echo $this->htmlEscape($this->getMethod()->getTitle()) ?>
|
23 |
+
</strong>
|
24 |
+
<br/>
|
25 |
+
<?php
|
26 |
+
if($this->getInfo()->getData("cc_type") != NULL){
|
27 |
+
$tcTxtPaymentMethod = array("Diners Club","Visa","Mastercard","American Express","Boleto Bancário","Itaú Shopline","Peela","Discovery","Elo","Aura","JCB","Transf. Online Bradesco","Transf. Online Banco do Brasil");
|
28 |
+
$tcIdPaymentMethod = array("2","3","4","5","6","7","14","15","16","18","19","22","23");
|
29 |
+
$tcIdPaymentMethodCreditCard = array("","2","3","4","5","15","16","18","19");
|
30 |
+
|
31 |
+
echo $tcTxtPaymentMethod[array_search($this->getInfo()->getData("cc_type"), $tcIdPaymentMethod)];
|
32 |
+
}
|
33 |
+
?>
|
34 |
+
<?php echo (array_search($this->getInfo()->getData("cc_type"), $tcIdPaymentMethodCreditCard)) ? $this->getInfo()->getData("traycheckout_split_number") . " x R$". number_format((float)$this->getInfo()->getData("traycheckout_split_value"), 2, ',','') : ""; ?>
|
35 |
+
</p>
|
36 |
+
<?php echo $this->getLinkPayment($this->getInfo()->getOrder()); ?>
|
37 |
+
|
38 |
+
|
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* To change this license header, choose License Headers in Project Properties.
|
3 |
+
* To change this template file, choose Tools | Templates
|
4 |
+
* and open the template in the editor.
|
5 |
+
*/
|
6 |
+
|
7 |
+
function identifyCreditCardTc(ccNumber){
|
8 |
+
|
9 |
+
var eloRE = /^(636368|438935|504175|451416|(6362|5067|4576|4011)\d{2})\d{10}/;
|
10 |
+
var visaRE = /^4\d{12,15}/;
|
11 |
+
var masterRE = /^5[1-5]{1}\d{14}/;
|
12 |
+
var amexRE = /^(34|37)\d{13}/;
|
13 |
+
var discoverRE = /^(6011|622\d{1}|(64|65)\d{2})\d{12}/;
|
14 |
+
var hiperRE = /^(60\d{2}|3841)\d{9,15}/;
|
15 |
+
var dinersRE = /^((30(1|5))|(36|38)\d{1})\d{11}/;
|
16 |
+
var jcbRE = /^(30[0-5][0-9]{13}|3095[0-9]{12}|35(2[8-9][0-9]{12}|[3-8][0-9]{13})|36[0-9]{12}|3[8-9][0-9]{14}|6011(0[0-9]{11}|[2-4][0-9]{11}|74[0-9]{10}|7[7-9][0-9]{10}|8[6-9][0-9]{10}|9[0-9]{11})|62(2(12[6-9][0-9]{10}|1[3-9][0-9]{11}|[2-8][0-9]{12}|9[0-1][0-9]{11}|92[0-5][0-9]{10})|[4-6][0-9]{13}|8[2-8][0-9]{12})|6(4[4-9][0-9]{13}|5[0-9]{14}))$/;
|
17 |
+
var auraRE = /^50\d{14}/;
|
18 |
+
|
19 |
+
document.getElementById('tcPaymentMethod').value = "";
|
20 |
+
|
21 |
+
try { document.getElementById('tcPaymentFlag3').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
22 |
+
try { document.getElementById('tcPaymentFlag4').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
23 |
+
try { document.getElementById('tcPaymentFlag2').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
24 |
+
try { document.getElementById('tcPaymentFlag5').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
25 |
+
try { document.getElementById('tcPaymentFlag16').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
26 |
+
try { document.getElementById('tcPaymentFlag15').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
27 |
+
try { document.getElementById('tcPaymentFlag20').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
28 |
+
try { document.getElementById('tcPaymentFlag18').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
29 |
+
try { document.getElementById('tcPaymentFlag19').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
30 |
+
try { document.getElementById('tcPaymentFlag25').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
31 |
+
|
32 |
+
if(eloRE.test(ccNumber)){
|
33 |
+
document.getElementById('tcPaymentMethod').value = '16';
|
34 |
+
document.getElementById('tcPaymentFlag16').className = 'tcPaymentFlag tcPaymentFlagSelected';
|
35 |
+
}else if(visaRE.test(ccNumber)){
|
36 |
+
document.getElementById('tcPaymentMethod').value = '3';
|
37 |
+
document.getElementById('tcPaymentFlag3').className = 'tcPaymentFlag tcPaymentFlagSelected';
|
38 |
+
}else if(masterRE.test(ccNumber)){
|
39 |
+
document.getElementById('tcPaymentMethod').value = '4';
|
40 |
+
document.getElementById('tcPaymentFlag4').className = 'tcPaymentFlag tcPaymentFlagSelected';
|
41 |
+
}else if(amexRE.test(ccNumber)){
|
42 |
+
document.getElementById('tcPaymentMethod').value = '5';
|
43 |
+
document.getElementById('tcPaymentFlag5').className = 'tcPaymentFlag tcPaymentFlagSelected';
|
44 |
+
}else if(discoverRE.test(ccNumber)){
|
45 |
+
document.getElementById('tcPaymentMethod').value = '15';
|
46 |
+
document.getElementById('tcPaymentFlag15').className = 'tcPaymentFlag tcPaymentFlagSelected';
|
47 |
+
}else if(hiperRE.test(ccNumber)){
|
48 |
+
document.getElementById('tcPaymentMethod').value = '20';
|
49 |
+
document.getElementById('tcPaymentFlag20').className = 'tcPaymentFlag tcPaymentFlagSelected';
|
50 |
+
}else if(dinersRE.test(ccNumber)){
|
51 |
+
document.getElementById('tcPaymentMethod').value = '2';
|
52 |
+
document.getElementById('tcPaymentFlag2').className = 'tcPaymentFlag tcPaymentFlagSelected';
|
53 |
+
}else if(jcbRE.test(ccNumber)){
|
54 |
+
document.getElementById('tcPaymentMethod').value = '19';
|
55 |
+
document.getElementById('tcPaymentFlag19').className = 'tcPaymentFlag tcPaymentFlagSelected';
|
56 |
+
}else if(auraRE.test(ccNumber)){
|
57 |
+
document.getElementById('tcPaymentMethod').value = '18';
|
58 |
+
document.getElementById('tcPaymentFlag18').className = 'tcPaymentFlag tcPaymentFlagSelected';
|
59 |
+
}
|
60 |
+
|
61 |
+
}
|
62 |
+
|
63 |
+
function selectCreditCardTc(idPaymentTC){
|
64 |
+
|
65 |
+
document.getElementById('tcPaymentMethod').value = "";
|
66 |
+
|
67 |
+
try { document.getElementById('tcPaymentFlag3').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
68 |
+
try { document.getElementById('tcPaymentFlag4').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
69 |
+
try { document.getElementById('tcPaymentFlag2').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
70 |
+
try { document.getElementById('tcPaymentFlag5').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
71 |
+
try { document.getElementById('tcPaymentFlag16').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
72 |
+
try { document.getElementById('tcPaymentFlag15').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
73 |
+
try { document.getElementById('tcPaymentFlag20').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
74 |
+
try { document.getElementById('tcPaymentFlag18').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
75 |
+
try { document.getElementById('tcPaymentFlag19').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
76 |
+
try { document.getElementById('tcPaymentFlag25').className = 'tcPaymentFlag';} catch(err) { console.debug(err.message);}
|
77 |
+
|
78 |
+
document.getElementById('tcPaymentMethod').value = idPaymentTC;
|
79 |
+
document.getElementById('tcPaymentFlag'+idPaymentTC).className = 'tcPaymentFlag tcPaymentFlagSelected';
|
80 |
+
}
|
81 |
+
|
82 |
+
function selectTefTc(idPaymentTC){
|
83 |
+
|
84 |
+
document.getElementById('tctPaymentMethod').value = "";
|
85 |
+
|
86 |
+
try { document.getElementById('tctPaymentFlag7').className = 'tctPaymentFlag';} catch(err) { console.debug(err.message);}
|
87 |
+
try { document.getElementById('tctPaymentFlag14').className = 'tctPaymentFlag';} catch(err) { console.debug(err.message);}
|
88 |
+
try { document.getElementById('tctPaymentFlag22').className = 'tctPaymentFlag';} catch(err) { console.debug(err.message);}
|
89 |
+
try { document.getElementById('tctPaymentFlag23').className = 'tctPaymentFlag';} catch(err) { console.debug(err.message);}
|
90 |
+
try { document.getElementById('tctPaymentFlag21').className = 'tctPaymentFlag';} catch(err) { console.debug(err.message);}
|
91 |
+
|
92 |
+
document.getElementById('tctPaymentMethod').value = idPaymentTC;
|
93 |
+
document.getElementById('tctPaymentFlag'+idPaymentTC).className = 'tctPaymentFlag tctPaymentFlagSelected';
|
94 |
+
}
|
95 |
+
|
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Tray_CheckoutApi</name>
|
4 |
-
<version>1.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -65,11 +65,19 @@ Este módulo é capaz de fazer a integração com a API do pagam
|
|
65 |

|
66 |
Versão 1.1.2
|
67 |

|
68 |
-
- Ajuste na exibição do link de pagamento (Detalhes do Pedido)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
<authors><author><name>TrayCheckout</name><user>traycheckout</user><email>integracao@traycheckout.com.br</email></author></authors>
|
70 |
-
<date>2015-
|
71 |
-
<time>
|
72 |
-
<contents><target name="magecommunity"><dir name="Tray"><dir name="CheckoutApi"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Label.php" hash="
|
73 |
<compatible/>
|
74 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.0.0</min><max>1.7</max></package></required></dependencies>
|
75 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Tray_CheckoutApi</name>
|
4 |
+
<version>1.1.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
65 |

|
66 |
Versão 1.1.2
|
67 |

|
68 |
+
- Ajuste na exibição do link de pagamento (Detalhes do Pedido)
|
69 |
+

|
70 |
+
Versão 1.1.3
|
71 |
+

|
72 |
+
- Segregar meios de pagamento (à vista / à prazo
|
73 |
+
- Cancelamento de transação pelo painel administrativo da loja
|
74 |
+
- Seleção automática das bandeiras de cartão.
|
75 |
+
- Adicionada as Bandeiras Hiper / Hipercard
|
76 |
+
- Adicionado o pagamento por HSBC</notes>
|
77 |
<authors><author><name>TrayCheckout</name><user>traycheckout</user><email>integracao@traycheckout.com.br</email></author></authors>
|
78 |
+
<date>2015-07-27</date>
|
79 |
+
<time>17:42:36</time>
|
80 |
+
<contents><target name="magecommunity"><dir name="Tray"><dir name="CheckoutApi"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hidden.php" hash="be5282cf3b72a35f2c7c808093bd2373"/><file name="Label.php" hash="f9ca741354aa668b5206360891a0198c"/></dir></dir></dir></dir><file name="Error.php" hash="a3a8aa9edb5c7718b7941e85421f0aa2"/><dir name="Form"><file name="Bankslip.php" hash="2a274dde3529a37888169d8b9b6e2c3a"/><file name="Onlinetransfer.php" hash="9fd9a1d28fab6d56b5b796e302da0cb0"/><file name="Standard.php" hash="02612595b4e9d19ccf458cc072d9cf52"/></dir><dir name="Info"><file name="Bankslip.php" hash="aeff5e716c8276e1f20cfc7cde6b49a6"/><file name="Onlinetransfer.php" hash="b1156534ef56fecf6bfc55807e650f0f"/><file name="Standard.php" hash="001cb928fdf7c652c2d64d888da34985"/></dir><file name="Link.php" hash="06ad7cb8eb1a52c7f130caacc0921657"/><file name="Payment.php" hash="27e7b19638c43fe7383ab3269b71594a"/><file name="Return.php" hash="6b5700113c184160ee447d1c6116b1c0"/></dir><dir name="Helper"><file name="Adress.php" hash="6064f62a723b2075290964e3e980d92b"/><file name="Data.php" hash="9a1da0d7564539c0b2fc307fc815b4ea"/></dir><dir name="Model"><file name="Auth.php" hash="2bfdb7b4be784ff636bf486354c10d76"/><file name="Bankslip.php" hash="2b560b0067a0dc0f9b55a22c6ca6b679"/><file name="Config.php" hash="7377296737b655ad3c01b3ae6081b507"/><dir name="Mysql4"><file name="Setup.php" hash="8a42c69f5c1a1be59d99985982a3703b"/></dir><file name="Observer.php" hash="bb74439605320f0133efd5434150e788"/><file name="Onlinetransfer.php" hash="0429bebc730f867743834e0ea17e676c"/><file name="Payment.php" hash="73d4ed6ffac89dc49d1dd908455cd4d8"/><file name="Request.php" hash="835404edf5edef57711264aab658de28"/><dir name="Resource"><file name="Payment.php" hash="74c257a6afb7ca7ff9ce96954dac64c0"/></dir><dir name="Source"><file name="Country.php" hash="153d0153071b72f23ac2a1c4fee93c24"/><file name="Payment.php" hash="7872c2c8b2f0a489876cea0fdaa89ce1"/><file name="Paymentmethods.php" hash="6e72208d95785d45181ac4a2557bb882"/><file name="Qtdsplit.php" hash="1273ee53626482898aefd7a3d31ebaea"/><file name="Specificcountries.php" hash="e41658287e6c68041d3f0042130f7db3"/><file name="Tefpaymentmethods.php" hash="efa55a28f959f252195134753b16a05c"/></dir><file name="Standard.php" hash="3bddd5e2051b66fc9fa4f4484cf04625"/></dir><dir name="controllers"><file name="StandardController.php" hash="c6591768c31b0da6ef71b5150131a65b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2b0114a2ffbce1930787f7a4e20ce73b"/><file name="config.xml" hash="48226ed617a22faf8de836a696c17dae"/><file name="system.xml" hash="89d8916687897780551c77432ab7e54a"/></dir><dir name="sql"><dir name="checkoutapi_setup"><file name="mysql4-install-0.1.0.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-0.2.0.php" hash="bb4ecef6ed4cb724d3fd505ad36acc4d"/><file name="mysql4-install-0.3.0.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-0.4.0.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-1.1.2.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-1.1.3.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="1020462cfb124528fb590922eadfb74a"/><file name="mysql4-upgrade-0.2.0-0.3.0.php" hash="1020462cfb124528fb590922eadfb74a"/><file name="mysql4-upgrade-0.3.0-0.4.0.php" hash="1020462cfb124528fb590922eadfb74a"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="tray"><dir name="checkoutapi"><file name="error.phtml" hash="9e07c1164917e9118c3b21d5bf8c864b"/><dir name="form"><file name="bankslip.phtml" hash="a07bbe0da9d492cc69bacffa2fd4781e"/><dir name="images"><file name="overlay.png" hash="143d209e15051311fdae758b295036b5"/></dir><file name="onlinetransfer.phtml" hash="59778850625bff50e592501c54f4e155"/><file name="standard.phtml" hash="d7fef69800121bc57b93c21e119ea0ec"/></dir><file name="head.phtml" hash="750d167a7a10ef1f56a73262f918dca5"/><dir name="info"><file name="bankslip.phtml" hash="52b346990e73d69158b872e2189910c3"/><file name="onlinetransfer.phtml" hash="52b346990e73d69158b872e2189910c3"/><file name="standard.phtml" hash="52b346990e73d69158b872e2189910c3"/></dir><file name="overlay.phtml" hash="d4ee4dbb85f9a7a350c6e8d5f59a9978"/><file name="payment.phtml" hash="303193cd94c93ba2b80fd26ac56406bc"/><file name="return.phtml" hash="47d5e3e1c3bda47721573e9639a54ca6"/></dir></dir></dir><dir name="layout"><file name="tray_checkoutapi.xml" hash="259a57b20eeb5b7fa6c81aadd6a37942"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="tray"><dir name="checkoutapi"><dir name="form"><file name="bankslip.phtml" hash="f543bfd1254908764362a07bcb943116"/><file name="onlinetransfer.phtml" hash="6b185db6587e9089dd0032aceb4554fc"/><file name="standard.phtml" hash="591e95574d2653f139763929b22bc3fd"/></dir><file name="getbaseurl.phtml" hash="05fba34637bc8da3958d1342f54c0ed4"/><dir name="info"><file name="standard.phtml" hash="1e9ba28c30b9a88c3fd6a53420ae8419"/></dir></dir></dir></dir><dir name="layout"><file name="tray_checkoutapi.xml" hash="9535831da505416e8c0adaea5ca6004b"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="tray"><dir name="checkoutapi"><dir name="css"><file name="styles.css" hash="5d09463e234fd2f20622f63795019be6"/></dir><dir name="images"><file name="BannerTrayCheckout890px.png" hash="535d5a4a4f190d03df38664dcb6463f8"/><file name="american-express-flag.svg" hash="5e8f075abba7baa0bf6612ad7257b7af"/><file name="aura-flag.svg" hash="5108ae0c1ffcf5e8ade452971fab86e3"/><file name="banner_comlogo_formas.jpg" hash="e02a16c32109746786c24db177ddad3a"/><file name="banner_semlogo_formas.jpg" hash="4f13591f17ed96347f136eab09343121"/><file name="banner_semlogo_formas.png" hash="84a82c3d7ed9a42ade9660b8dd16511d"/><file name="bb-flag.svg" hash="1f975352db9858164953c239c0f48b15"/><file name="boleto-flag.svg" hash="349465678cab30e15fc915cbb20f70c0"/><file name="bradesco-flag.svg" hash="922871bd31002207cd21fb4c83ab2bf9"/><file name="close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="diners-club-international-flag.svg" hash="6654d0a49c0bda41e37f09b204299719"/><file name="discover-flag.svg" hash="cc3c7a7a645c1c2b9ff45d35ec3d6ba4"/><file name="elo-flag.svg" hash="6aea17a57eb7f333bff577132846f6db"/><file name="hiper-flag.svg" hash="a42c6023c50d0a25e00072c4d9c1f382"/><file name="hipercard-flag.svg" hash="1f48be23788b90411c22ff2569b48f74"/><file name="hsbc-flag.svg" hash="4dec610798ad69cb53e32037d4bc9eee"/><file name="itau-flag.svg" hash="5eed9a56cbb9e313bce6c272a180275d"/><file name="jcb-flag.svg" hash="72c3cb6f8ccec48734422c5258e6d706"/><file name="mastercard-flag.svg" hash="6f8393b3588046c3bb17ffb26eb8c726"/><file name="overlay.png" hash="143d209e15051311fdae758b295036b5"/><file name="paymentFlags1.png" hash="2a1724b718bf2ff7a1b25b53acc0cefd"/><file name="paymentFlagsTc.png" hash="6dd7df4802b30ea61b96ad5752bab4ed"/><file name="peela-flag.svg" hash="59f1259c52ad40afaee0943ff1e64791"/><file name="visa-flag.svg" hash="98ec94a1fa4bcb73effc3e5f3506c08b"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="tray"><dir name="checkoutapi"><dir name="css"><file name="magentomodal.css" hash="2c6dd38e421f644475a121b8d6c96503"/></dir><dir name="images"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><dir name="js"><file name="modal.js" hash="a1021b9d952418ab46053fb0af03efac"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tray_CheckoutApi.xml" hash="c95a8f82fd3200b98898f0b9712ea0c8"/></dir></target><target name="mage"><dir name="js"><dir name="tray"><dir name="checkoutapi"><dir><dir name="js"><file name="traycheckout.js" hash="2f0a68e8b1a9f64e452ba28ec1c98783"/></dir></dir></dir></dir></dir></target></contents>
|
81 |
<compatible/>
|
82 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.0.0</min><max>1.7</max></package></required></dependencies>
|
83 |
</package>
|
@@ -1,7 +1,6 @@
|
|
1 |
|
2 |
-
function
|
3 |
{
|
4 |
-
var _url = checkoutapi_baseurl + url;
|
5 |
|
6 |
if(txtTitle === null || txtTitle === '') {
|
7 |
txtTitle = 'Validação das informações do Anúncio';
|
@@ -9,7 +8,7 @@ function openModalTray(url, txtTitle)
|
|
9 |
winCompare = new Window({
|
10 |
className:'magento',
|
11 |
title:txtTitle,
|
12 |
-
url:
|
13 |
width:820,
|
14 |
height:600,
|
15 |
minimizable:false,
|
1 |
|
2 |
+
function openModalTc(url, txtTitle)
|
3 |
{
|
|
|
4 |
|
5 |
if(txtTitle === null || txtTitle === '') {
|
6 |
txtTitle = 'Validação das informações do Anúncio';
|
8 |
winCompare = new Window({
|
9 |
className:'magento',
|
10 |
title:txtTitle,
|
11 |
+
url:url,
|
12 |
width:820,
|
13 |
height:600,
|
14 |
minimizable:false,
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="85px"
|
4 |
+
height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
5 |
+
<g id="American_Express">
|
6 |
+
<rect display="inline" fill="#087CC1" width="85.875" height="55.875"/>
|
7 |
+
<path display="inline" fill="#FFFFFF" d="M10.707,20.979l-1.486-3.621l-1.478,3.621 M43.434,19.537
|
8 |
+
c-0.299,0.181-0.651,0.187-1.074,0.187h-2.636v-2.017h2.673c0.378,0,0.771,0.017,1.029,0.164c0.28,0.132,0.456,0.414,0.456,0.802
|
9 |
+
C43.882,19.071,43.715,19.39,43.434,19.537z M62.243,20.979l-1.502-3.621l-1.492,3.621H62.243z M27.18,24.897h-2.225l-0.008-7.112
|
10 |
+
l-3.148,7.112h-1.906l-3.155-7.119v7.119h-4.415l-0.833-2.025H6.971l-0.843,2.025H3.77l3.887-9.082h3.225l3.692,8.599v-8.599h3.542
|
11 |
+
l2.84,6.161l2.61-6.161h3.613V24.897L27.18,24.897z M36.048,24.897h-7.25v-9.082h7.25v1.891h-5.08v1.637h4.958v1.861h-4.958v1.813
|
12 |
+
h5.08V24.897z M46.271,18.262c0,1.448-0.966,2.196-1.529,2.42c0.475,0.181,0.881,0.5,1.074,0.765
|
13 |
+
c0.306,0.452,0.359,0.855,0.359,1.666v1.784h-2.189l-0.008-1.146c0-0.546,0.053-1.332-0.343-1.768
|
14 |
+
c-0.317-0.32-0.801-0.389-1.582-0.389h-2.329v3.303h-2.171v-9.082h4.992c1.109,0,1.927,0.03,2.629,0.436
|
15 |
+
C45.86,16.657,46.271,17.249,46.271,18.262z M49.745,24.897h-2.214v-9.082h2.214V24.897z M75.438,24.897h-3.075l-4.114-6.817v6.817
|
16 |
+
h-4.42l-0.844-2.025h-4.51l-0.819,2.025h-2.541c-1.055,0-2.391-0.234-3.146-1.004c-0.763-0.771-1.16-1.816-1.16-3.467
|
17 |
+
c0-1.347,0.237-2.578,1.171-3.551c0.701-0.725,1.8-1.059,3.296-1.059h2.1v1.945h-2.057c-0.791,0-1.238,0.118-1.67,0.539
|
18 |
+
c-0.369,0.382-0.624,1.105-0.624,2.057c0,0.973,0.194,1.674,0.598,2.132c0.334,0.359,0.941,0.468,1.512,0.468h0.977l3.059-7.141
|
19 |
+
h3.252l3.675,8.589v-8.589H69.4l3.815,6.324v-6.324h2.223V24.897L75.438,24.897z M3.745,26.68h3.709l0.836-2.017h1.872l0.834,2.017
|
20 |
+
h7.296v-1.542l0.652,1.549h3.787l0.652-1.572v1.564h18.134l-0.009-3.311h0.352c0.245,0.009,0.316,0.032,0.316,0.437v2.874h9.38
|
21 |
+
v-0.771c0.756,0.406,1.934,0.771,3.48,0.771h3.946l0.845-2.017h1.871l0.827,2.017h7.604v-1.916l1.152,1.916h6.091V14.016h-6.03
|
22 |
+
v1.496l-0.845-1.496h-6.186v1.496l-0.775-1.496H55.18c-1.399,0-2.63,0.195-3.623,0.739v-0.739h-5.768v0.739
|
23 |
+
c-0.634-0.561-1.495-0.739-2.451-0.739H22.266l-1.414,3.271L19.4,14.016h-6.637v1.496l-0.729-1.496h-5.66L1,26.651L3.745,26.68
|
24 |
+
L3.745,26.68z"/>
|
25 |
+
<path display="inline" fill="#FFFFFF" d="M80.968,33.379h-3.955c-0.396,0-0.657,0.015-0.879,0.164
|
26 |
+
c-0.229,0.146-0.316,0.365-0.316,0.653c0,0.343,0.192,0.576,0.474,0.677c0.229,0.08,0.476,0.102,0.838,0.102l1.175,0.033
|
27 |
+
c1.189,0.028,1.979,0.232,2.463,0.731c0.089,0.068,0.142,0.145,0.201,0.224 M80.968,39.367c-0.517,0.775-1.554,1.161-2.944,1.161
|
28 |
+
h-4.192v-1.947h4.174c0.416,0,0.704-0.055,0.879-0.226c0.152-0.14,0.257-0.345,0.257-0.592c0-0.266-0.104-0.475-0.265-0.602
|
29 |
+
c-0.158-0.138-0.386-0.2-0.766-0.2c-2.037-0.07-4.579,0.063-4.579-2.813c0-1.315,0.835-2.703,3.113-2.703l4.286,0.021
|
30 |
+
c0,0-0.484,3.514,0.041,4.513c0.216,0.414,0.398,1.242,0.398,1.697c0,0.242-0.101,0.816-0.217,1.229
|
31 |
+
C81.078,39.17,80.968,39.367,80.968,39.367l-0.02,2.25c0,0,1.346-1.02,1.473-1.472c0.428-1.541,0.268-9.57,0.268-9.57l0.022-0.936
|
32 |
+
h-5.759c-1.215,0-2.095,0.289-2.718,0.74v-0.74h-5.94c-0.951,0-2.065,0.234-2.594,0.74v-0.74H55.09v0.74
|
33 |
+
c-0.845-0.609-2.269-0.74-2.927-0.74h-6.998v0.74c-0.668-0.646-2.153-0.74-3.06-0.74h-7.833l-1.792,1.938l-1.679-1.938H19.103
|
34 |
+
v12.673h11.479l1.847-1.971l1.74,1.971l7.077,0.006v-2.98h0.695c0.938,0.014,2.046-0.024,3.023-0.446v3.421H50.8v-3.304h0.281
|
35 |
+
c0.359,0,0.396,0.016,0.396,0.373v2.931h17.731c1.125,0,2.302-0.29,2.954-0.813v0.813h5.623c1.171,0,2.293-0.275,3.163-0.695
|
36 |
+
L80.968,39.367L80.968,39.367z M72.311,35.738c0.423,0.438,0.648,0.988,0.648,1.925c0,1.953-1.221,2.865-3.409,2.865h-4.227v-1.947
|
37 |
+
h4.209c0.412,0,0.703-0.055,0.886-0.226c0.149-0.14,0.259-0.345,0.259-0.592c0-0.266-0.117-0.475-0.267-0.602
|
38 |
+
c-0.166-0.138-0.396-0.2-0.772-0.2c-2.029-0.07-4.572,0.063-4.572-2.813c0-1.315,0.828-2.703,3.104-2.703h4.352v1.935h-3.982
|
39 |
+
c-0.394,0-0.649,0.014-0.869,0.163c-0.238,0.146-0.325,0.365-0.325,0.654c0,0.343,0.202,0.576,0.476,0.677
|
40 |
+
c0.228,0.079,0.475,0.102,0.845,0.102l1.168,0.032C71.01,35.036,71.817,35.24,72.311,35.738z M52.725,35.177
|
41 |
+
c-0.29,0.173-0.649,0.188-1.072,0.188h-2.637v-2.039h2.673c0.387,0,0.774,0.008,1.036,0.163c0.281,0.146,0.449,0.429,0.449,0.816
|
42 |
+
C53.173,34.693,53.006,35.006,52.725,35.177z M54.036,36.308c0.481,0.178,0.877,0.499,1.063,0.762
|
43 |
+
c0.307,0.443,0.35,0.858,0.358,1.658v1.801H53.28v-1.136c0-0.547,0.052-1.356-0.352-1.778c-0.316-0.325-0.8-0.403-1.592-0.403
|
44 |
+
h-2.321v3.317h-2.18v-9.083h5.012c1.1,0,1.899,0.049,2.61,0.428c0.685,0.415,1.115,0.982,1.115,2.019
|
45 |
+
C55.573,35.341,54.606,36.08,54.036,36.308z M56.777,31.445h7.244v1.878h-5.082v1.651h4.958v1.854h-4.958v1.808l5.082,0.007v1.886
|
46 |
+
h-7.244V31.445z M42.134,35.638h-2.805v-2.313h2.831c0.784,0,1.327,0.318,1.327,1.112C43.486,35.224,42.967,35.638,42.134,35.638z
|
47 |
+
M37.167,39.702l-3.333-3.7l3.333-3.583V39.702z M28.561,38.636h-5.336v-1.808h4.765v-1.854h-4.765v-1.651h5.442l2.374,2.647
|
48 |
+
L28.561,38.636z M45.816,34.438c0,2.523-1.883,3.044-3.779,3.044h-2.709v3.047h-4.218l-2.673-3.008l-2.778,3.008h-8.597v-9.083
|
49 |
+
h8.73l2.67,2.977l2.761-2.977h6.936C43.882,31.445,45.816,31.922,45.816,34.438z"/>
|
50 |
+
<g id="XMLID_1_" display="inline">
|
51 |
+
</g>
|
52 |
+
</g>
|
53 |
+
|
54 |
+
</svg>
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
width="85px" height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
5 |
+
<path fill="#2E368F" d="M72.406,26.588V8.329H14.021v17.166c8.127-2.582,17.552-4.06,27.6-4.06
|
6 |
+
C53.013,21.435,63.6,23.333,72.406,26.588z"/>
|
7 |
+
<path fill="#FCEE23" d="M54.652,28.055c0.11-0.641,0.18-1.296,0.18-1.968c0-6.401-5.189-11.591-11.59-11.591
|
8 |
+
c-6.399,0-11.589,5.191-11.589,11.591c0,0.544,0.051,1.076,0.123,1.6C25.411,28.317,19.414,29.533,14,31.254v15.668h58.432V32.357
|
9 |
+
C67.092,30.379,61.087,28.912,54.652,28.055z"/>
|
10 |
+
<g>
|
11 |
+
<path fill="#2E368F" d="M26.291,39.874l4.498-6.249h1.67l4.793,6.249h-1.766l-1.367-1.894h-4.896l-1.287,1.894H26.291z
|
12 |
+
M29.67,37.309h3.971l-1.223-1.729c-0.373-0.526-0.65-0.959-0.831-1.298c-0.148,0.4-0.36,0.8-0.631,1.193L29.67,37.309z"/>
|
13 |
+
<path fill="#2E368F" d="M43.867,39.874V39.21c-0.66,0.511-1.558,0.769-2.692,0.769c-0.501,0-0.969-0.051-1.402-0.153
|
14 |
+
c-0.434-0.104-0.756-0.229-0.967-0.386s-0.358-0.346-0.443-0.569c-0.059-0.151-0.088-0.39-0.088-0.718v-2.805h1.438v2.512
|
15 |
+
c0,0.399,0.029,0.67,0.088,0.811c0.09,0.202,0.282,0.359,0.575,0.477c0.292,0.113,0.655,0.172,1.087,0.172
|
16 |
+
c0.431,0,0.835-0.061,1.213-0.178c0.379-0.119,0.646-0.277,0.803-0.481c0.158-0.204,0.235-0.498,0.235-0.884V35.35h1.438v4.525
|
17 |
+
L43.867,39.874L43.867,39.874z"/>
|
18 |
+
<path fill="#2E368F" d="M47.391,39.874v-4.526h1.293v0.687c0.332-0.32,0.637-0.532,0.916-0.636
|
19 |
+
c0.278-0.104,0.586-0.153,0.922-0.153c0.485,0,0.979,0.083,1.479,0.247l-0.495,0.712c-0.352-0.11-0.703-0.167-1.056-0.167
|
20 |
+
c-0.314,0-0.595,0.051-0.847,0.152c-0.25,0.101-0.429,0.24-0.535,0.42c-0.159,0.271-0.239,0.572-0.239,0.896v2.37L47.391,39.874
|
21 |
+
L47.391,39.874z"/>
|
22 |
+
<path fill="#2E368F" d="M58.393,39.316c-0.533,0.24-1.047,0.412-1.539,0.511c-0.492,0.101-1.021,0.149-1.586,0.149
|
23 |
+
c-0.933,0-1.647-0.121-2.148-0.365c-0.501-0.242-0.75-0.553-0.75-0.93c0-0.224,0.094-0.426,0.283-0.609
|
24 |
+
c0.188-0.184,0.437-0.328,0.742-0.44c0.307-0.11,0.651-0.194,1.035-0.251c0.281-0.039,0.707-0.078,1.276-0.115
|
25 |
+
c1.162-0.074,2.017-0.162,2.565-0.265c0.004-0.104,0.008-0.171,0.008-0.2c0-0.313-0.137-0.531-0.407-0.66
|
26 |
+
c-0.368-0.174-0.914-0.26-1.64-0.26c-0.676,0-1.174,0.063-1.496,0.189c-0.322,0.125-0.562,0.35-0.715,0.672l-1.406-0.104
|
27 |
+
c0.128-0.322,0.337-0.582,0.631-0.779c0.293-0.195,0.717-0.35,1.271-0.457c0.555-0.104,1.195-0.158,1.926-0.158
|
28 |
+
c0.725,0,1.313,0.045,1.765,0.137c0.454,0.09,0.786,0.206,1,0.344c0.212,0.139,0.36,0.313,0.446,0.521
|
29 |
+
c0.049,0.131,0.072,0.367,0.072,0.708v1.022c0,0.715,0.029,1.166,0.092,1.354c0.062,0.188,0.182,0.371,0.363,0.543H58.68
|
30 |
+
C58.529,39.715,58.436,39.529,58.393,39.316z M58.271,37.602c-0.522,0.114-1.306,0.213-2.35,0.291
|
31 |
+
c-0.592,0.047-1.01,0.098-1.256,0.152c-0.245,0.059-0.434,0.141-0.564,0.249c-0.136,0.11-0.201,0.231-0.201,0.365
|
32 |
+
c0,0.204,0.146,0.377,0.437,0.514c0.289,0.136,0.714,0.203,1.274,0.203c0.553,0,1.046-0.065,1.477-0.194
|
33 |
+
c0.434-0.129,0.748-0.305,0.952-0.529c0.153-0.174,0.231-0.43,0.231-0.768V37.602L58.271,37.602z"/>
|
34 |
+
</g>
|
35 |
+
<path fill="#EC2227" d="M72.433,32.346v-5.832c-8.812-3.261-19.409-5.162-30.812-5.162c-10.048,0-19.473,1.479-27.6,4.061v5.837
|
36 |
+
c8.13-2.584,17.558-4.064,27.61-4.064C53.028,27.186,63.622,29.086,72.433,32.346z"/>
|
37 |
+
</svg>
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="85px"
|
4 |
+
height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
5 |
+
<g id="Banco_do_Brasil">
|
6 |
+
<rect fill="#FCEE1E" width="85" height="55"/>
|
7 |
+
<g>
|
8 |
+
<path fill="#0361AA" d="M5.429,40.641v4.44H8.83c0.814,0,2.84-0.092,2.84-2.198c0-1.141-0.356-1.934-1.719-2.106
|
9 |
+
c0.164-0.031,0.313-0.077,0.451-0.131L5.429,40.641L5.429,40.641L5.429,40.641z M13.077,40.641l-1.361,4.439h1.709l0.427-1.506
|
10 |
+
h1.835l0.417,1.506h1.814l-1.333-4.439h-1.634l0.466,1.886h-1.314l0.424-1.886H13.077L13.077,40.641L13.077,40.641z M18.32,40.641
|
11 |
+
v4.439h1.468v-4.439H18.32L18.32,40.641L18.32,40.641z M19.828,40.641l1.854,4.439h2.041v-4.439h-1.47v2.035L21.4,40.641H19.828
|
12 |
+
L19.828,40.641L19.828,40.641z M24.441,40.641c-0.018,0.332-0.021,0.686-0.021,1.055c0,2.046-0.063,3.585,2.585,3.585
|
13 |
+
c1.503,0,2.381-0.596,2.381-2.451h-1.708c-0.021,0.549-0.031,1.413-0.671,1.413c-0.727,0-0.833-0.439-0.833-2.547
|
14 |
+
c0-0.412,0.005-0.76,0.019-1.053L24.441,40.641L24.441,40.641L24.441,40.641z M29.914,40.641c-0.02,0.343-0.02,0.697-0.02,1.055
|
15 |
+
c0,1.816,0,3.585,2.648,3.585c2.647,0,2.647-1.769,2.647-3.585c0-0.357,0-0.712-0.02-1.052l-1.775-0.003
|
16 |
+
c0.018,0.304,0.022,0.653,0.022,1.055c0,1.778-0.1,2.547-0.875,2.547c-0.775,0-0.876-0.769-0.876-2.547
|
17 |
+
c0-0.401,0.006-0.751,0.022-1.055H29.914L29.914,40.641L29.914,40.641z M37.071,40.641v4.439h2.584
|
18 |
+
c2.712,0,2.533-2.399,2.533-3.449c0-0.354-0.011-0.684-0.038-0.987l-1.73-0.002c0.024,0.316,0.024,0.672,0.024,1.04
|
19 |
+
c0,1.71-0.163,2.362-0.991,2.362h-0.658v-3.402L37.071,40.641L37.071,40.641L37.071,40.641z M42.853,40.641
|
20 |
+
c-0.021,0.347-0.021,0.708-0.021,1.07c0,1.809,0,3.569,2.649,3.569c2.648,0,2.648-1.761,2.648-3.569c0-0.362,0-0.724-0.02-1.067
|
21 |
+
l-1.776-0.003c0.018,0.305,0.021,0.661,0.021,1.07c0,1.771-0.099,2.536-0.874,2.536c-0.774,0-0.876-0.766-0.876-2.536
|
22 |
+
c0-0.409,0.005-0.766,0.023-1.07H42.853L42.853,40.641L42.853,40.641z M49.919,40.641v4.442h3.4c0.815,0,2.84-0.093,2.84-2.199
|
23 |
+
c0-1.14-0.355-1.935-1.719-2.106c0.17-0.033,0.325-0.08,0.467-0.138L49.919,40.641L49.919,40.641L49.919,40.641z M56.732,40.641
|
24 |
+
v4.439h1.773v-4.439H56.732L56.732,40.641L56.732,40.641z M60.004,40.641c-0.08,0.431-0.34,0.743-0.716,0.719l-0.493,0.008
|
25 |
+
l1.614,3.713h2.838l0.427-1.507h1.835l0.418,1.507h4.121c1.138,0,2.292-0.15,2.292-1.913c0-1.652-1.946-1.828-2.677-2.529
|
26 |
+
l-2.341,0.003c0.469,1.545,3.196,1.596,3.196,2.637c0,0.461-0.247,0.772-0.752,0.772l-2.337-0.001l-1.022-3.408h-1.637
|
27 |
+
l0.469,1.891h-1.314l0.425-1.891h-1.46l-1.185,3.828l-1.203-2.662c0.697-0.13,1.062-0.505,1.186-1.161L60.004,40.641
|
28 |
+
L60.004,40.641L60.004,40.641z M72.982,40.641v4.439h1.73v-4.439H72.982L72.982,40.641L72.982,40.641z M75.729,40.641v4.439h3.751
|
29 |
+
v-1.027h-2.021v-3.411L75.729,40.641L75.729,40.641L75.729,40.641z M7.94,41.443h0.267c1.016,0,1.337,0.449,1.337,1.186
|
30 |
+
c0,1.162-0.963,1.174-1.391,1.174H7.523v-2.346L7.94,41.443L7.94,41.443L7.94,41.443z M52.543,41.457h0.432
|
31 |
+
c0.827,0,1.088,0.448,1.088,1.185c0,1.162-0.783,1.174-1.132,1.174h-0.916v-2.347L52.543,41.457L52.543,41.457L52.543,41.457z"/>
|
32 |
+
<path fill="#0361AA" d="M10.401,40.641c0.744-0.295,1.115-0.912,1.115-1.718c0-1.771-1.21-2.153-2.675-2.153H5.429v3.871H10.401
|
33 |
+
L10.401,40.641L10.401,40.641z M14.527,40.641l0.202-0.897l0.222,0.897h1.635l-0.71-2.362h-2.074l-0.724,2.362H14.527
|
34 |
+
L14.527,40.641L14.527,40.641z M19.788,40.641v-0.097l0.04,0.097H21.4l-0.99-2.362h-2.09v2.362H19.788L19.788,40.641
|
35 |
+
L19.788,40.641z M23.722,40.641v-2.362h-1.471v2.362H23.722L23.722,40.641L23.722,40.641z M26.192,40.641
|
36 |
+
c0.061-1.251,0.267-1.491,0.781-1.491c0.456,0,0.66,0.346,0.66,1.268h1.699c0.063-1.489-0.764-2.306-2.401-2.306
|
37 |
+
c-1.996,0-2.407,1.037-2.491,2.529H26.192L26.192,40.641L26.192,40.641z M31.689,40.641c0.058-1.031,0.253-1.491,0.853-1.491
|
38 |
+
c0.599,0,0.795,0.459,0.853,1.491h1.775c-0.081-1.396-0.497-2.528-2.627-2.528c-2.131,0-2.547,1.133-2.628,2.531L31.689,40.641
|
39 |
+
L31.689,40.641L31.689,40.641z M38.794,40.641v-1.323h0.703c0.668,0,0.864,0.553,0.922,1.321l1.73,0.002
|
40 |
+
c-0.138-1.518-0.697-2.385-2.431-2.385h-2.647v2.385H38.794L38.794,40.641L38.794,40.641z M44.628,40.641
|
41 |
+
c0.061-1.013,0.257-1.465,0.853-1.465s0.793,0.452,0.853,1.465h1.776c-0.085-1.381-0.507-2.499-2.629-2.499
|
42 |
+
s-2.545,1.118-2.628,2.502L44.628,40.641L44.628,40.641L44.628,40.641z M54.907,40.641c0.733-0.302,1.1-0.916,1.1-1.718
|
43 |
+
c0-1.771-1.21-2.151-2.675-2.151h-3.413v3.869H54.907L54.907,40.641L54.907,40.641z M58.506,40.641v-1.317h0.588
|
44 |
+
c0.5,0,0.936,0.365,0.936,1.034c0,0.099-0.01,0.195-0.025,0.286l1.684-0.003c0.033-0.171,0.051-0.367,0.051-0.584
|
45 |
+
c0.002-1.158-0.688-1.78-1.763-1.78h-3.244v2.364H58.506L58.506,40.641L58.506,40.641z M64.35,40.641l0.2-0.893l0.221,0.893h1.637
|
46 |
+
l-0.711-2.362h-2.074l-0.732,2.362H64.35L64.35,40.641L64.35,40.641z M69.663,40.641c-0.167-0.163-0.271-0.354-0.271-0.596
|
47 |
+
c0-0.471,0.287-0.726,0.771-0.726h1.577v-1.046h-2.216c-1.822,0-2.273,0.821-2.273,1.885c0,0.176,0.024,0.335,0.068,0.48
|
48 |
+
L69.663,40.641L69.663,40.641L69.663,40.641z M74.713,40.641v-2.362h-1.73v2.362H74.713L74.713,40.641L74.713,40.641z
|
49 |
+
M77.459,40.641v-2.362h-1.729v2.362H77.459L77.459,40.641L77.459,40.641z M7.523,40.173v-2.125h0.751
|
50 |
+
c0.682,0,1.163,0.449,1.163,1.06c0,0.806-0.615,1.059-1.056,1.059H7.677L7.523,40.173L7.523,40.173L7.523,40.173z M52.015,40.185
|
51 |
+
V38.06h1.014c0.556,0,0.947,0.449,0.947,1.06c0,0.806-0.501,1.059-0.859,1.059h-0.575L52.015,40.185L52.015,40.185L52.015,40.185z
|
52 |
+
"/>
|
53 |
+
<path fill="#0361AA" d="M49.866,11.061l2.554,1.749l2.498-1.67l0.006-3.43L49.866,11.061L49.866,11.061L49.866,11.061z
|
54 |
+
M35.102,29.242l-2.544-1.735l-2.548,1.737v3.362L35.102,29.242L35.102,29.242L35.102,29.242z M44.766,14.402l2.492,1.677
|
55 |
+
L35.41,24.096l7.321,4.941l3.438-2.33l-2.671-1.77l6.163-4.132l5.159,3.422l-12.462,8.306l-12.294-8.248L44.766,14.402
|
56 |
+
L44.766,14.402L44.766,14.402z M40.098,25.774l-2.494-1.677l11.849-8.018l-7.321-4.941l-3.438,2.33l2.67,1.77l-6.165,4.132
|
57 |
+
l-5.157-3.422l12.416-8.306l12.327,8.285L40.098,25.774L40.098,25.774L40.098,25.774z"/>
|
58 |
+
</g>
|
59 |
+
<g>
|
60 |
+
</g>
|
61 |
+
<g>
|
62 |
+
</g>
|
63 |
+
<g>
|
64 |
+
</g>
|
65 |
+
<g>
|
66 |
+
</g>
|
67 |
+
<g>
|
68 |
+
</g>
|
69 |
+
<g>
|
70 |
+
</g>
|
71 |
+
</g>
|
72 |
+
</svg>
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5 |
+
width="85px" height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
6 |
+
<g id="Boleto">
|
7 |
+
<g>
|
8 |
+
<polygon fill="#010101" points="13.584,17.872 16.674,17.872 16.674,46.809 13.584,46.809 "/>
|
9 |
+
<polygon fill="#010101" points="17.649,17.872 18.606,17.872 18.606,46.809 17.649,46.809 "/>
|
10 |
+
<polygon fill="#010101" points="19.441,17.872 21.156,17.872 21.156,46.809 19.441,46.809 "/>
|
11 |
+
<polygon fill="#010101" points="22.809,17.872 23.766,17.872 23.766,46.809 22.809,46.809 "/>
|
12 |
+
<polygon fill="#010101" points="24.183,17.872 24.92,17.872 24.92,46.809 24.183,46.809 "/>
|
13 |
+
<polygon fill="#010101" points="11.235,17.872 12.192,17.872 12.192,46.809 11.235,46.809 "/>
|
14 |
+
<polygon fill="#010101" points="9.122,17.872 10.837,17.872 10.837,46.809 9.122,46.809 "/>
|
15 |
+
<polygon fill="#010101" points="30.039,17.872 33.13,17.872 33.13,46.809 30.039,46.809 "/>
|
16 |
+
<polygon fill="#010101" points="34.104,17.872 35.062,17.872 35.062,46.809 34.104,46.809 "/>
|
17 |
+
<polygon fill="#010101" points="35.896,17.872 37.61,17.872 37.61,46.809 35.896,46.809 "/>
|
18 |
+
<polygon fill="#010101" points="39.263,17.872 40.222,17.872 40.222,46.809 39.263,46.809 "/>
|
19 |
+
<polygon fill="#010101" points="40.637,17.872 41.375,17.872 41.375,46.809 40.637,46.809 "/>
|
20 |
+
<polygon fill="#010101" points="27.688,17.872 28.647,17.872 28.647,46.809 27.688,46.809 "/>
|
21 |
+
<polygon fill="#010101" points="25.577,17.872 27.292,17.872 27.292,46.809 25.577,46.809 "/>
|
22 |
+
<polygon fill="#010101" points="42.589,17.872 44.305,17.872 44.305,46.809 42.589,46.809 "/>
|
23 |
+
<polygon fill="#010101" points="45.957,17.872 46.914,17.872 46.914,46.809 45.957,46.809 "/>
|
24 |
+
<polygon fill="#010101" points="47.33,17.872 48.068,17.872 48.068,46.809 47.33,46.809 "/>
|
25 |
+
<polygon fill="#010101" points="50.837,17.872 51.794,17.872 51.794,46.809 50.837,46.809 "/>
|
26 |
+
<polygon fill="#010101" points="48.725,17.872 50.439,17.872 50.439,46.809 48.725,46.809 "/>
|
27 |
+
<polygon fill="#010101" points="53.066,17.872 54.025,17.872 54.025,46.809 53.066,46.809 "/>
|
28 |
+
<polygon fill="#010101" points="54.441,17.872 55.18,17.872 55.18,46.809 54.441,46.809 "/>
|
29 |
+
<polygon fill="#010101" points="57.948,17.872 58.906,17.872 58.906,46.809 57.948,46.809 "/>
|
30 |
+
<polygon fill="#010101" points="55.838,17.872 57.551,17.872 57.551,46.809 55.838,46.809 "/>
|
31 |
+
<polygon fill="#010101" points="59.742,17.872 62.832,17.872 62.832,46.809 59.742,46.809 "/>
|
32 |
+
<polygon fill="#010101" points="63.807,17.872 64.762,17.872 64.762,46.809 63.807,46.809 "/>
|
33 |
+
<polygon fill="#010101" points="65.598,17.872 67.313,17.872 67.313,46.809 65.598,46.809 "/>
|
34 |
+
<polygon fill="#010101" points="68.966,17.872 69.922,17.872 69.922,46.809 68.966,46.809 "/>
|
35 |
+
<polygon fill="#010101" points="70.34,17.872 71.078,17.872 71.078,46.809 70.34,46.809 "/>
|
36 |
+
<polygon fill="#010101" points="72.291,17.872 74.007,17.872 74.007,46.809 72.291,46.809 "/>
|
37 |
+
<polygon fill="#FFFFFF" points="12.619,48 71.855,48 71.855,30.657 12.619,30.657 "/>
|
38 |
+
<path fill="#010101" d="M13.735,46.254V31.58h5.505c1.121,0,2.02,0.146,2.698,0.443c0.677,0.297,1.206,0.756,1.589,1.373
|
39 |
+
c0.386,0.615,0.577,1.261,0.577,1.938c0,0.625-0.171,1.215-0.509,1.768c-0.337,0.556-0.85,1-1.537,1.342
|
40 |
+
c0.888,0.261,1.571,0.703,2.046,1.332c0.478,0.625,0.718,1.367,0.718,2.222c0,0.688-0.147,1.33-0.438,1.92
|
41 |
+
s-0.649,1.045-1.077,1.365c-0.427,0.317-0.963,0.562-1.604,0.725c-0.646,0.164-1.435,0.246-2.371,0.246h-5.599v0.001H13.735z
|
42 |
+
M15.682,37.746h3.173c0.861,0,1.479-0.057,1.851-0.17c0.496-0.146,0.868-0.393,1.117-0.734c0.249-0.342,0.376-0.768,0.376-1.285
|
43 |
+
c0-0.486-0.117-0.918-0.353-1.287c-0.232-0.373-0.567-0.629-1-0.766c-0.434-0.136-1.178-0.205-2.23-0.205h-2.934V37.746
|
44 |
+
L15.682,37.746z M15.682,44.531h3.655c0.628,0,1.068-0.025,1.324-0.072c0.445-0.078,0.821-0.213,1.121-0.4
|
45 |
+
c0.3-0.188,0.546-0.461,0.741-0.817c0.194-0.359,0.29-0.771,0.29-1.24c0-0.551-0.14-1.024-0.424-1.433
|
46 |
+
c-0.279-0.405-0.669-0.688-1.168-0.854c-0.496-0.164-1.213-0.246-2.145-0.246H15.68v5.063H15.682L15.682,44.531z"/>
|
47 |
+
<path fill="#010101" d="M26.584,40.934c0-1.965,0.547-3.42,1.643-4.365c0.912-0.784,2.029-1.178,3.345-1.178
|
48 |
+
c1.458,0,2.653,0.479,3.583,1.435c0.926,0.954,1.39,2.274,1.39,3.959c0,1.364-0.204,2.438-0.615,3.223
|
49 |
+
c-0.411,0.781-1.008,1.39-1.793,1.822c-0.782,0.437-1.639,0.649-2.564,0.649c-1.49,0-2.692-0.475-3.611-1.428
|
50 |
+
S26.584,42.725,26.584,40.934L26.584,40.934z M28.429,40.938c0,1.361,0.297,2.377,0.892,3.049
|
51 |
+
c0.598,0.679,1.345,1.017,2.251,1.017c0.894,0,1.639-0.338,2.236-1.019c0.595-0.68,0.892-1.715,0.892-3.104
|
52 |
+
c0-1.313-0.301-2.305-0.898-2.978c-0.598-0.678-1.342-1.016-2.23-1.016c-0.905,0-1.653,0.334-2.251,1.008
|
53 |
+
C28.727,38.566,28.429,39.582,28.429,40.938L28.429,40.938z"/>
|
54 |
+
<polygon fill="#010101" points="38.618,46.254 38.618,31.58 40.421,31.58 40.421,46.254 "/>
|
55 |
+
<path fill="#010101" d="M50.468,42.809l1.863,0.248c-0.29,1.082-0.833,1.926-1.626,2.523c-0.792,0.596-1.803,0.898-3.035,0.898
|
56 |
+
c-1.551,0-2.779-0.479-3.689-1.437c-0.908-0.953-1.362-2.295-1.362-4.021c0-1.783,0.458-3.17,1.377-4.153
|
57 |
+
c0.918-0.986,2.11-1.479,3.575-1.479c1.419,0,2.576,0.482,3.475,1.449s1.35,2.324,1.35,4.078c0,0.105-0.002,0.266-0.01,0.479
|
58 |
+
h-7.923c0.069,1.164,0.397,2.06,0.991,2.678c0.591,0.619,1.333,0.931,2.218,0.931c0.658,0,1.224-0.176,1.687-0.522
|
59 |
+
C49.825,44.131,50.193,43.574,50.468,42.809L50.468,42.809z M44.564,39.92h5.922c-0.078-0.895-0.307-1.564-0.68-2.012
|
60 |
+
c-0.57-0.693-1.313-1.041-2.228-1.041c-0.826,0-1.521,0.275-2.082,0.83C44.936,38.25,44.626,38.99,44.564,39.92L44.564,39.92z"/>
|
61 |
+
<path fill="#010101" d="M58.523,44.645l0.246,1.592c-0.506,0.105-0.959,0.16-1.355,0.16c-0.65,0-1.158-0.104-1.521-0.311
|
62 |
+
c-0.357-0.209-0.609-0.479-0.759-0.816c-0.146-0.34-0.218-1.051-0.218-2.131V37.01h-1.332v-1.395h1.333v-2.631l1.804-1.082v3.713
|
63 |
+
h1.803v1.395h-1.803v6.23c0,0.516,0.03,0.846,0.096,0.994c0.062,0.146,0.164,0.262,0.308,0.352
|
64 |
+
c0.144,0.084,0.349,0.131,0.614,0.131C57.938,44.717,58.2,44.691,58.523,44.645L58.523,44.645z"/>
|
65 |
+
<path fill="#010101" d="M59.627,40.934c0-1.965,0.547-3.42,1.645-4.365c0.91-0.784,2.026-1.178,3.344-1.178
|
66 |
+
c1.459,0,2.654,0.479,3.584,1.435c0.926,0.954,1.391,2.274,1.391,3.959c0,1.364-0.206,2.438-0.615,3.223
|
67 |
+
c-0.41,0.781-1.008,1.39-1.793,1.822c-0.783,0.437-1.641,0.649-2.565,0.649c-1.488,0-2.691-0.475-3.609-1.428
|
68 |
+
C60.086,44.098,59.627,42.725,59.627,40.934L59.627,40.934z M61.473,40.938c0,1.361,0.297,2.377,0.892,3.049
|
69 |
+
c0.599,0.679,1.346,1.017,2.251,1.017c0.895,0,1.639-0.338,2.236-1.019c0.594-0.68,0.893-1.715,0.893-3.104
|
70 |
+
c0-1.313-0.303-2.305-0.898-2.978c-0.599-0.678-1.342-1.016-2.229-1.016c-0.906,0-1.654,0.334-2.252,1.008
|
71 |
+
C61.77,38.566,61.473,39.582,61.473,40.938L61.473,40.938z"/>
|
72 |
+
</g>
|
73 |
+
</g>
|
74 |
+
</svg>
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="85px"
|
4 |
+
height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
5 |
+
<g id="Bradesco">
|
6 |
+
<rect fill="#E11D3E" width="85" height="56.25"/>
|
7 |
+
<path fill="#FFFFFF" d="M63.786,41.244c-0.036-0.092-0.049-0.152-0.063-0.147c-0.027,0.01-0.076,0.038-0.114,0.052
|
8 |
+
c-0.226,0.12-0.629,0.289-1.187,0.287c-1.075-0.009-2.026-0.831-2.026-2.16c0-1.448,0.795-2.235,1.873-2.234
|
9 |
+
c0.6,0.001,1.018,0.151,1.41,0.419c0.188-0.663,0.499-1.294,0.891-1.813c-0.155-0.111-0.417-0.276-0.766-0.446v0.003
|
10 |
+
c-0.525-0.237-1.121-0.37-1.787-0.37c-2.381,0-4.194,1.611-4.194,4.396c0,2.768,1.813,4.377,4.194,4.377
|
11 |
+
c1.15,0.001,2.034-0.371,2.034-0.371c0.191-0.075,0.504-0.22,0.634-0.282C64.14,42.211,63.888,41.506,63.786,41.244"/>
|
12 |
+
<path fill="#FFFFFF" d="M9.24,32.178h4.672c1.799,0,3.141,0.918,3.141,2.849c0,1.418-0.621,2.206-1.702,2.624v0.032
|
13 |
+
c1.287,0.307,1.952,1.111,1.952,2.479c0,2.688-2.036,3.251-3.765,3.251H9.24V32.178L9.24,32.178z M11.815,41.288h0.988
|
14 |
+
c0.94,0,1.924-0.163,1.924-1.305c0-1.223-1.011-1.334-1.896-1.334h-1.016V41.288L11.815,41.288z M11.815,36.621h0.946
|
15 |
+
c0.844,0,1.717-0.242,1.717-1.19c0-1.031-0.831-1.127-1.688-1.127h-0.976V36.621L11.815,36.621z"/>
|
16 |
+
<path fill="#FFFFFF" d="M40.954,43.412h-2.297v-1.26H38.63c-0.486,0.931-1.417,1.454-2.479,1.454c-2.146,0-3.293-2.062-3.293-4.538
|
17 |
+
c0-2.061,1.094-4.235,3.087-4.235c0.995,0,1.839,0.306,2.477,1.273h0.028v-3.957h2.503V43.412L40.954,43.412z M36.94,41.385
|
18 |
+
c0.832,0,1.523-0.918,1.523-2.142c0-1.271-0.609-2.187-1.523-2.187c-0.967,0-1.507,0.965-1.507,2.075
|
19 |
+
C35.433,40.467,36,41.385,36.94,41.385"/>
|
20 |
+
<path fill="#FFFFFF" d="M64.979,39.229c0-2.784,1.813-4.396,4.194-4.396c2.382,0,4.195,1.611,4.195,4.396
|
21 |
+
c0,2.768-1.813,4.378-4.195,4.378C66.793,43.606,64.979,41.996,64.979,39.229 M70.794,39.229c0-1.257-0.473-2.365-1.62-2.365
|
22 |
+
c-1.148,0-1.618,1.108-1.618,2.365c0,1.238,0.47,2.349,1.618,2.349C70.321,41.577,70.794,40.467,70.794,39.229"/>
|
23 |
+
<path fill="#FFFFFF" d="M31.703,43.412c-0.11-0.662-0.137-1.318-0.137-1.978v-3.124c0-2.559-1.593-3.478-3.434-3.478
|
24 |
+
c-1.05,0-1.964,0.174-2.837,0.577v1.961l0.001,0.021c0.691-0.449,1.495-0.628,2.298-0.628c0.899,0,1.63,0.307,1.646,1.45
|
25 |
+
c-0.32-0.065-0.76-0.115-1.163-0.115c-1.328,0-3.725,0.308-3.725,2.867c0,1.818,1.275,2.64,2.7,2.64
|
26 |
+
c0.942,0,1.755-0.449,2.213-1.302v1.108L31.703,43.412L31.703,43.412z M29.254,40.752c-0.329,0.574-0.874,0.869-1.552,0.869
|
27 |
+
c-0.581,0-1.025-0.338-1.025-0.918c0-0.804,0.665-1.11,1.51-1.11c0.373,0,0.748,0.032,1.066,0.047L29.254,40.752L29.254,40.752z"/>
|
28 |
+
<path fill="#FFFFFF" d="M23.138,34.833c-1.081,0-1.703,0.678-2.134,1.737h-0.026v-1.544h-2.27v8.386H21.2v-3.54
|
29 |
+
c0-1.64,0.642-2.628,1.803-2.711c0.24-0.018,0.64,0.051,0.854,0.134v-2.333C23.646,34.886,23.362,34.833,23.138,34.833"/>
|
30 |
+
<path fill="#FFFFFF" d="M49.745,39.534c0-2.495-0.968-4.701-3.64-4.701c-2.243,0-3.863,1.612-3.863,4.379
|
31 |
+
c0,2.769,1.814,4.395,4.193,4.395c0.928,0,1.843-0.162,2.646-0.531v-2.043c-0.748,0.465-1.522,0.643-2.2,0.643
|
32 |
+
c-1.22,0-1.98-0.452-2.118-1.609h4.982V39.534L49.745,39.534z M44.733,38.424c0.057-0.966,0.485-1.755,1.384-1.755
|
33 |
+
c0.997,0,1.386,0.789,1.386,1.755H44.733L44.733,38.424z"/>
|
34 |
+
<path fill="#FFFFFF" d="M53.932,34.833c-1.437,0-3.071,0.79-3.071,2.723c0,3.024,3.544,2.027,3.544,3.445
|
35 |
+
c0,0.576-0.499,0.673-1.011,0.673c-0.898,0-1.76-0.289-2.339-0.579v1.997c0.656,0.268,1.426,0.515,2.478,0.515
|
36 |
+
c1.634,0,3.363-0.563,3.363-2.8c0-3.188-3.71-2.157-3.71-3.461c0-0.468,0.611-0.592,1.149-0.581
|
37 |
+
c0.574,0.016,1.463,0.255,1.989,0.626v-2.059C55.563,35.007,54.735,34.833,53.932,34.833"/>
|
38 |
+
<g>
|
39 |
+
<polygon fill="#FFFFFF" points="39.813,30.617 38.154,30.617 38.154,22.111 39.813,22.111 "/>
|
40 |
+
<polygon fill="#FFFFFF" points="44.042,30.617 41.323,30.617 41.323,18.942 44.042,18.942 "/>
|
41 |
+
<path fill="#FFFFFF" d="M36.664,10.811c0,0,2.742-2.68,7.362-1.798c0,0,2.032,0.316,3.59,1.7c0,0,0.231,0.217,0.41,0.039
|
42 |
+
c0,0,0.226-0.177-0.025-0.442c0,0-1.339-1.858-3.984-2.679c0,0-3.632-1.301-7.364,0.457c0,0-2.297,0.951-3.571,3.545
|
43 |
+
c0,0-1.816,0.586-3.177,1.351c0,0-0.402,0.158-0.25,0.472c0,0,0.13,0.224,0.482,0.057c0,0,1.264-0.436,2.483-0.708
|
44 |
+
c0,0-0.98,2.542,0.043,5.696c0.456,1.405,1.287,2.835,2.557,3.984c0,0,0.207,0.217,0.432,0.068c0,0,0.196-0.142,0.058-0.375
|
45 |
+
c0,0-1.013-1.524-1.406-3.692c-0.328-1.769-0.173-4.209,1.054-6.145c0,0,4.674-0.652,8.659,0.848c0,0,6.768,2.208,5.064,6.304
|
46 |
+
c0,0-0.496,1.424-2.363,2.71c0,0-0.313,0.182-0.144,0.443c0,0,0.142,0.204,0.461,0.074c0,0,2.861-0.931,4.096-3.229
|
47 |
+
c0,0,2.505-3.833-3.4-6.959c0,0-1.626-0.868-3.714-1.332C44.016,11.2,40.255,10.27,36.664,10.811"/>
|
48 |
+
</g>
|
49 |
+
</g>
|
50 |
+
</svg>
|
@@ -0,0 +1,281 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="85px"
|
4 |
+
height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
5 |
+
<g id="Diners">
|
6 |
+
<path fill="#076AAB" d="M45.878,28.627c5.96,0.029,11.4-4.86,11.4-10.808c0-6.502-5.44-10.998-11.4-10.996h-5.13
|
7 |
+
c-6.031-0.002-10.996,4.494-10.996,10.996c0,5.949,4.964,10.837,10.996,10.808H45.878z"/>
|
8 |
+
<path fill="#FFFFFF" d="M43.036,23.611V11.802c2.374,0.91,4.06,3.208,4.063,5.904C47.096,20.401,45.41,22.698,43.036,23.611
|
9 |
+
M34.447,17.706c0.005-2.694,1.688-4.991,4.061-5.904v11.807C36.136,22.696,34.452,20.4,34.447,17.706 M40.772,7.725
|
10 |
+
c-5.512,0.002-9.978,4.469-9.979,9.981c0.001,5.512,4.467,9.978,9.979,9.979c5.513-0.001,9.98-4.467,9.98-9.979
|
11 |
+
C50.753,12.193,46.285,7.727,40.772,7.725"/>
|
12 |
+
<path fill="#076AAB" d="M18.603,36.067c0,0.888,0.635,0.991,1.199,0.991c2.49,0,3.308-1.879,3.308-3.597
|
13 |
+
c0-2.155-1.383-3.711-3.608-3.711c-0.473,0-0.691,0.034-0.899,0.046V36.067z M17.473,30.66c0-1.036-0.541-0.969-1.059-0.979v-0.301
|
14 |
+
c0.449,0.022,0.91,0.022,1.36,0.022c0.484,0,1.141-0.022,1.995-0.022c2.985,0,4.61,1.994,4.61,4.035
|
15 |
+
c0,1.142-0.668,4.012-4.749,4.012c-0.587,0-1.13-0.023-1.672-0.023c-0.518,0-1.026,0.012-1.544,0.023v-0.3
|
16 |
+
c0.691-0.069,1.026-0.093,1.059-0.876V30.66z"/>
|
17 |
+
<path fill="#076AAB" d="M26.016,30.385c-0.3,0-0.565-0.277-0.565-0.576c0-0.289,0.277-0.555,0.565-0.555
|
18 |
+
c0.299,0,0.565,0.242,0.565,0.555C26.581,30.119,26.327,30.385,26.016,30.385 M24.783,37.128h0.219c0.322,0,0.553,0,0.553-0.382
|
19 |
+
v-3.123c0-0.506-0.173-0.577-0.6-0.807v-0.184c0.542-0.162,1.188-0.381,1.233-0.416c0.081-0.045,0.149-0.059,0.208-0.059
|
20 |
+
c0.057,0,0.081,0.07,0.081,0.163v4.425c0,0.381,0.254,0.381,0.577,0.381h0.195v0.301c-0.392,0-0.796-0.023-1.209-0.023
|
21 |
+
c-0.416,0-0.831,0.012-1.257,0.023V37.128z"/>
|
22 |
+
<path fill="#076AAB" d="M28.344,33.692c0-0.427-0.127-0.541-0.668-0.761v-0.219c0.495-0.161,0.967-0.311,1.521-0.554
|
23 |
+
c0.035,0,0.069,0.024,0.069,0.115v0.749c0.658-0.471,1.223-0.864,1.996-0.864c0.979,0,1.325,0.716,1.325,1.614v2.974
|
24 |
+
c0,0.382,0.254,0.382,0.576,0.382h0.208v0.299c-0.405,0-0.808-0.022-1.222-0.022c-0.416,0-0.831,0.011-1.246,0.022v-0.299h0.208
|
25 |
+
c0.323,0,0.553,0,0.553-0.382v-2.985c0-0.656-0.402-0.979-1.06-0.979c-0.369,0-0.957,0.3-1.338,0.554v3.41
|
26 |
+
c0,0.382,0.254,0.382,0.578,0.382h0.208v0.3c-0.403,0-0.808-0.023-1.223-0.023c-0.414,0-0.83,0.012-1.245,0.023v-0.3h0.208
|
27 |
+
c0.323,0,0.553,0,0.553-0.382L28.344,33.692L28.344,33.692z"/>
|
28 |
+
<path fill="#076AAB" d="M36.287,33.877c0.288,0,0.321-0.15,0.321-0.288c0-0.587-0.356-1.061-1.003-1.061
|
29 |
+
c-0.702,0-1.186,0.519-1.324,1.349H36.287z M34.247,34.246c-0.023,0.104-0.023,0.276,0,0.669c0.068,1.095,0.772,1.994,1.693,1.994
|
30 |
+
c0.635,0,1.131-0.347,1.557-0.772l0.161,0.162c-0.53,0.703-1.188,1.302-2.132,1.302c-1.833,0-2.202-1.774-2.202-2.513
|
31 |
+
c0-2.26,1.521-2.929,2.328-2.929c0.935,0,1.938,0.588,1.948,1.81c0,0.07,0,0.139-0.011,0.209l-0.104,0.068H34.247L34.247,34.246z"
|
32 |
+
/>
|
33 |
+
<path fill="#076AAB" d="M37.866,37.128h0.312c0.321,0,0.553,0,0.553-0.382v-3.238c0-0.356-0.427-0.426-0.6-0.518v-0.174
|
34 |
+
c0.841-0.357,1.303-0.657,1.408-0.657c0.067,0,0.102,0.034,0.102,0.151v1.037h0.024c0.287-0.45,0.772-1.188,1.476-1.188
|
35 |
+
c0.288,0,0.656,0.196,0.656,0.61c0,0.313-0.219,0.59-0.541,0.59c-0.359,0-0.359-0.277-0.762-0.277
|
36 |
+
c-0.196,0-0.842,0.265-0.842,0.957v2.707c0,0.382,0.23,0.382,0.554,0.382h0.645v0.3c-0.634-0.012-1.116-0.023-1.613-0.023
|
37 |
+
c-0.472,0-0.957,0.012-1.371,0.023V37.128L37.866,37.128z"/>
|
38 |
+
<path fill="#076AAB" d="M42.304,35.825c0.15,0.761,0.611,1.406,1.453,1.406c0.68,0,0.933-0.415,0.933-0.817
|
39 |
+
c0-1.361-2.512-0.924-2.512-2.779c0-0.645,0.519-1.476,1.786-1.476c0.368,0,0.864,0.104,1.313,0.335l0.081,1.175h-0.265
|
40 |
+
c-0.115-0.726-0.519-1.14-1.257-1.14c-0.462,0-0.899,0.265-0.899,0.76c0,1.35,2.675,0.934,2.675,2.744
|
41 |
+
c0,0.76-0.611,1.567-1.983,1.567c-0.461,0-1.003-0.161-1.405-0.392l-0.128-1.326L42.304,35.825z"/>
|
42 |
+
<path fill="#076AAB" d="M56.021,31.467h-0.287c-0.22-1.348-1.177-1.889-2.467-1.889c-1.326,0-3.252,0.887-3.252,3.653
|
43 |
+
c0,2.329,1.661,4,3.436,4c1.141,0,2.087-0.783,2.318-1.995l0.265,0.07l-0.265,1.683c-0.484,0.301-1.787,0.611-2.549,0.611
|
44 |
+
c-2.696,0-4.402-1.741-4.402-4.335c0-2.363,2.109-4.058,4.368-4.058c0.934,0,1.833,0.301,2.72,0.612L56.021,31.467z"/>
|
45 |
+
<path fill="#076AAB" d="M56.437,37.128h0.218c0.324,0,0.555,0,0.555-0.382v-6.419c0-0.749-0.173-0.772-0.611-0.899v-0.185
|
46 |
+
c0.461-0.149,0.945-0.356,1.188-0.496c0.126-0.068,0.219-0.127,0.253-0.127c0.069,0,0.093,0.069,0.093,0.162v7.964
|
47 |
+
c0,0.382,0.254,0.382,0.577,0.382h0.194v0.3c-0.391,0-0.794-0.023-1.209-0.023c-0.414,0-0.83,0.012-1.257,0.023V37.128
|
48 |
+
L56.437,37.128z"/>
|
49 |
+
<path fill="#076AAB" d="M63.838,36.793c0,0.209,0.126,0.219,0.321,0.219c0.139,0,0.312-0.01,0.462-0.01v0.242
|
50 |
+
c-0.496,0.046-1.441,0.288-1.66,0.356l-0.058-0.034v-0.934c-0.691,0.564-1.222,0.968-2.041,0.968c-0.623,0-1.268-0.403-1.268-1.371
|
51 |
+
v-2.952c0-0.3-0.046-0.588-0.69-0.645v-0.22c0.415-0.011,1.335-0.08,1.485-0.08c0.128,0,0.128,0.08,0.128,0.334v2.974
|
52 |
+
c0,0.346,0,1.338,1.002,1.338c0.393,0,0.911-0.301,1.395-0.703v-3.102c0-0.23-0.553-0.356-0.967-0.472v-0.208
|
53 |
+
c1.036-0.069,1.683-0.161,1.798-0.161c0.093,0,0.093,0.08,0.093,0.208V36.793z"/>
|
54 |
+
<path fill="#076AAB" d="M66.131,36.125c0,0.438,0.415,1.176,1.188,1.176c1.233,0,1.752-1.211,1.752-2.236
|
55 |
+
c0-1.245-0.944-2.282-1.844-2.282c-0.428,0-0.784,0.277-1.096,0.542V36.125z M66.131,32.989c0.461-0.392,1.084-0.83,1.718-0.83
|
56 |
+
c1.337,0,2.144,1.165,2.144,2.421c0,1.51-1.106,3.021-2.755,3.021c-0.853,0-1.302-0.276-1.603-0.403l-0.346,0.265l-0.241-0.126
|
57 |
+
c0.103-0.68,0.161-1.35,0.161-2.053v-4.955c0-0.75-0.174-0.773-0.611-0.9v-0.184c0.462-0.15,0.945-0.357,1.188-0.496
|
58 |
+
c0.127-0.068,0.219-0.127,0.254-0.127c0.069,0,0.092,0.069,0.092,0.162V32.989z"/>
|
59 |
+
<path fill="#076AAB" d="M16.401,44.13h0.088c0.226,0,0.463-0.031,0.463-0.357v-3.286c0-0.327-0.238-0.357-0.463-0.357h-0.088V39.94
|
60 |
+
c0.245,0,0.621,0.024,0.929,0.024c0.313,0,0.689-0.024,0.984-0.024v0.188h-0.088c-0.225,0-0.463,0.031-0.463,0.357v3.286
|
61 |
+
c0,0.326,0.239,0.357,0.463,0.357h0.088v0.189c-0.301,0-0.678-0.025-0.991-0.025c-0.308,0-0.678,0.025-0.922,0.025V44.13z"/>
|
62 |
+
<path fill="#076AAB" d="M18.287,44.292v-0.135h-0.061c-0.224,0-0.491-0.038-0.492-0.385v-3.286
|
63 |
+
c0.001-0.347,0.268-0.385,0.492-0.385h0.061v-0.134c-0.29,0-0.653,0.024-0.958,0.024c-0.297,0-0.658-0.022-0.901-0.024v0.134h0.06
|
64 |
+
c0.224,0,0.491,0.039,0.491,0.385v3.286c0,0.347-0.267,0.385-0.491,0.385h-0.06v0.135c0.243-0.003,0.597-0.025,0.894-0.025
|
65 |
+
C17.628,44.267,17.991,44.29,18.287,44.292 M18.314,44.346c-0.303,0-0.679-0.025-0.991-0.025c-0.307,0-0.676,0.025-0.922,0.025
|
66 |
+
h-0.027v-0.027V44.13v-0.027h0.027h0.087c0.228-0.005,0.435-0.022,0.437-0.33v-3.286c-0.002-0.307-0.209-0.327-0.437-0.33h-0.115
|
67 |
+
v-0.027v-0.216h0.027c0.246,0,0.622,0.024,0.929,0.024c0.313,0,0.688-0.024,0.984-0.024h0.028v0.028v0.215h-0.028h-0.088
|
68 |
+
c-0.228,0.004-0.436,0.023-0.437,0.33v3.286c0.001,0.307,0.209,0.325,0.437,0.33h0.116v0.027v0.216H18.314L18.314,44.346z"/>
|
69 |
+
<path fill="#076AAB" d="M22.623,43.083l0.013-0.013v-2.352c0-0.515-0.358-0.59-0.546-0.59h-0.138V39.94
|
70 |
+
c0.295,0,0.583,0.024,0.878,0.024c0.257,0,0.515-0.024,0.771-0.024v0.188h-0.094c-0.264,0-0.559,0.05-0.559,0.797v2.854
|
71 |
+
c0,0.22,0.006,0.439,0.037,0.634h-0.238l-3.229-3.601v2.584c0,0.546,0.105,0.733,0.589,0.733h0.106v0.189
|
72 |
+
c-0.27,0-0.539-0.024-0.81-0.024c-0.281,0-0.57,0.024-0.853,0.024V44.13h0.088c0.433,0,0.564-0.294,0.564-0.796v-2.642
|
73 |
+
c0-0.351-0.29-0.563-0.57-0.563h-0.082V39.94c0.238,0,0.483,0.025,0.721,0.025c0.188,0,0.371-0.025,0.559-0.025L22.623,43.083z"/>
|
74 |
+
<path fill="#076AAB" d="M22.608,43.069v-0.002l-0.005-0.004L22.608,43.069z M22.623,43.083l0.02-0.019L22.623,43.083z
|
75 |
+
M22.748,44.385h0.208c-0.028-0.188-0.033-0.397-0.033-0.605v-2.854c0-0.753,0.315-0.824,0.585-0.824h0.066v-0.134
|
76 |
+
c-0.247,0.002-0.495,0.025-0.744,0.025c-0.287,0-0.566-0.023-0.85-0.025l0,0.134h0.111c0.193,0,0.573,0.086,0.573,0.618
|
77 |
+
l-0.008,2.37l-0.012,0.013l-0.021,0.02l-2.79-3.153c-0.186,0-0.368,0.024-0.559,0.024c-0.229,0-0.465-0.023-0.693-0.024
|
78 |
+
l-0.001,0.134h0.056c0.294,0,0.597,0.225,0.597,0.591v2.642c0,0.502-0.14,0.822-0.591,0.825l-0.061-0.003v0.136
|
79 |
+
c0.272-0.003,0.552-0.025,0.826-0.025c0.262,0,0.523,0.022,0.782,0.025v-0.133h-0.079c-0.494-0.003-0.616-0.218-0.617-0.763v-2.655
|
80 |
+
L22.748,44.385z M22.986,44.439l-0.259-0.009l-3.183-3.548v2.514c0.008,0.545,0.091,0.7,0.563,0.706h0.134v0.027v0.216h-0.028
|
81 |
+
c-0.271,0-0.542-0.025-0.809-0.025c-0.281,0-0.569,0.025-0.854,0.025h-0.027v-0.027v-0.216h0.027h0.088
|
82 |
+
c0.415-0.003,0.533-0.269,0.538-0.769v-2.642c-0.001-0.334-0.275-0.537-0.544-0.537h-0.11v-0.028v-0.214h0.027
|
83 |
+
c0.24,0,0.485,0.024,0.721,0.024c0.187,0,0.369-0.024,0.58-0.015l2.756,3.103v-2.307c-0.003-0.499-0.336-0.56-0.519-0.563h-0.166
|
84 |
+
v-0.028v-0.214h0.028c0.296,0,0.585,0.024,0.878,0.024c0.255,0,0.513-0.024,0.771-0.024h0.027v0.027v0.215h-0.027h-0.093
|
85 |
+
c-0.259,0.007-0.525,0.03-0.532,0.77v2.854c0,0.219,0.006,0.438,0.037,0.628l0.006,0.032H22.986z"/>
|
86 |
+
<path fill="#076AAB" d="M24.541,40.254c-0.471,0-0.489,0.113-0.583,0.57H23.77c0.025-0.175,0.056-0.351,0.076-0.533
|
87 |
+
c0.025-0.176,0.037-0.351,0.037-0.532h0.15c0.051,0.188,0.208,0.182,0.377,0.182h3.235c0.17,0,0.327-0.006,0.339-0.194l0.15,0.025
|
88 |
+
c-0.024,0.169-0.05,0.338-0.068,0.508c-0.012,0.169-0.012,0.339-0.012,0.508l-0.188,0.069c-0.013-0.231-0.044-0.603-0.464-0.603
|
89 |
+
h-1.028v3.337c0,0.483,0.22,0.539,0.52,0.539h0.12v0.189c-0.244,0-0.684-0.025-1.022-0.025c-0.376,0-0.816,0.025-1.061,0.025V44.13
|
90 |
+
h0.12c0.346,0,0.521-0.031,0.521-0.526v-3.35H24.541L24.541,40.254z"/>
|
91 |
+
<path fill="#076AAB" d="M27.013,44.346c-0.247,0-0.686-0.025-1.022-0.025c-0.376,0-0.815,0.025-1.061,0.025h-0.026v-0.026v-0.217
|
92 |
+
h0.026h0.12c0.346-0.008,0.485-0.013,0.493-0.499v-3.322h-1.001v-0.027v-0.028h1.055v3.378c0,0.504-0.203,0.555-0.547,0.556h-0.092
|
93 |
+
v0.132c0.247-0.002,0.669-0.024,1.034-0.024c0.327,0,0.746,0.023,0.994,0.024v-0.132h-0.092c-0.303-0.001-0.546-0.075-0.546-0.568
|
94 |
+
v-3.365h1.056c0.421,0.002,0.476,0.359,0.49,0.593l0.135-0.05c0-0.163,0.001-0.328,0.012-0.493
|
95 |
+
c0.018-0.161,0.042-0.321,0.065-0.481l-0.096-0.016c-0.029,0.182-0.206,0.191-0.363,0.189H24.41h-0.032
|
96 |
+
c-0.148,0-0.309-0.007-0.365-0.182h-0.104c-0.001,0.173-0.013,0.341-0.037,0.509c-0.019,0.172-0.047,0.337-0.07,0.503h0.134
|
97 |
+
c0.083-0.437,0.137-0.578,0.605-0.572v0.028v0.027c-0.464,0.008-0.454,0.086-0.557,0.55l-0.004,0.021h-0.022h-0.22l0.003-0.032
|
98 |
+
c0.026-0.175,0.057-0.351,0.076-0.533c0.025-0.174,0.038-0.348,0.038-0.527v-0.028h0.027h0.172l0.004,0.021
|
99 |
+
c0.042,0.158,0.159,0.159,0.319,0.161h0.032h3.235c0.175-0.002,0.302-0.005,0.313-0.169l0.003-0.029l0.028,0.006l0.177,0.027
|
100 |
+
l-0.004,0.027c-0.024,0.168-0.05,0.338-0.068,0.506c-0.012,0.168-0.012,0.337-0.012,0.506v0.02l-0.018,0.007l-0.222,0.081
|
101 |
+
l-0.002-0.037c-0.017-0.235-0.042-0.576-0.438-0.576H26.4v3.31c0.006,0.473,0.193,0.506,0.492,0.512h0.147v0.027v0.216H27.013z"/>
|
102 |
+
<path fill="#076AAB" d="M28.335,44.13h0.088c0.226,0,0.463-0.031,0.463-0.357v-3.286c0-0.327-0.238-0.357-0.463-0.357h-0.088V39.94
|
103 |
+
c0.382,0,1.036,0.024,1.561,0.024c0.528,0,1.179-0.024,1.606-0.024c-0.011,0.27-0.005,0.685,0.014,0.96l-0.189,0.05
|
104 |
+
c-0.03-0.407-0.105-0.733-0.764-0.733h-0.871v1.643h0.745c0.376,0,0.458-0.213,0.496-0.552h0.188
|
105 |
+
c-0.013,0.245-0.019,0.489-0.019,0.734c0,0.238,0.006,0.477,0.019,0.715l-0.188,0.037c-0.037-0.376-0.056-0.62-0.49-0.62h-0.751
|
106 |
+
v1.461c0,0.408,0.362,0.408,0.764,0.408c0.753,0,1.085-0.051,1.273-0.766l0.176,0.043c-0.082,0.334-0.157,0.665-0.213,0.999
|
107 |
+
c-0.401,0-1.123-0.025-1.687-0.025c-0.565,0-1.311,0.025-1.669,0.025L28.335,44.13L28.335,44.13z"/>
|
108 |
+
<path fill="#076AAB" d="M31.668,44.291c0.054-0.317,0.126-0.635,0.203-0.95l-0.124-0.03c-0.188,0.701-0.552,0.764-1.292,0.76
|
109 |
+
c-0.395,0-0.791,0-0.792-0.436v-1.488h0.779c0.438-0.005,0.483,0.26,0.514,0.616l0.136-0.028c-0.013-0.23-0.018-0.462-0.018-0.692
|
110 |
+
c0-0.236,0.005-0.471,0.018-0.708h-0.136c-0.035,0.328-0.137,0.557-0.519,0.553h-0.773v-1.698h0.899
|
111 |
+
c0.653-0.005,0.761,0.332,0.789,0.727l0.136-0.036c-0.011-0.177-0.018-0.404-0.018-0.614c0-0.106,0.002-0.208,0.005-0.297
|
112 |
+
c-0.426,0.001-1.061,0.024-1.578,0.024c-0.515,0-1.149-0.023-1.534-0.024v0.133h0.061c0.223,0,0.49,0.039,0.491,0.386v3.286
|
113 |
+
c-0.001,0.347-0.268,0.384-0.491,0.386h-0.061v0.132c0.365,0,1.09-0.023,1.642-0.023C30.557,44.267,31.263,44.29,31.668,44.291
|
114 |
+
M31.69,44.346c-0.402,0-1.124-0.025-1.687-0.025c-0.565,0-1.311,0.025-1.668,0.025h-0.027v-0.026V44.13v-0.027h0.027h0.088
|
115 |
+
c0.227-0.004,0.433-0.022,0.436-0.33v-3.286c-0.003-0.306-0.209-0.326-0.436-0.33h-0.115v-0.027v-0.216h0.027
|
116 |
+
c0.383,0,1.035,0.024,1.561,0.024c0.527,0,1.179-0.024,1.605-0.024h0.028l-0.001,0.028c-0.005,0.095-0.007,0.206-0.007,0.324
|
117 |
+
c0,0.217,0.007,0.454,0.02,0.633v0.022l-0.021,0.006l-0.22,0.058l-0.002-0.032c-0.037-0.407-0.092-0.703-0.737-0.708h-0.845
|
118 |
+
l0,1.587h0.72c0.361-0.003,0.426-0.188,0.468-0.525l0.002-0.025h0.025h0.216l-0.001,0.028c-0.012,0.245-0.02,0.488-0.02,0.733
|
119 |
+
c0,0.237,0.008,0.476,0.02,0.714l0.001,0.022l-0.022,0.005l-0.218,0.043l-0.002-0.028c-0.042-0.384-0.046-0.594-0.462-0.598h-0.725
|
120 |
+
v1.435c0,0.381,0.329,0.379,0.738,0.381c0.755-0.005,1.059-0.042,1.247-0.745l0.006-0.025l0.026,0.005l0.201,0.051l-0.006,0.027
|
121 |
+
c-0.082,0.331-0.156,0.663-0.212,0.995l-0.005,0.022H31.69z"/>
|
122 |
+
<path fill="#076AAB" d="M33.554,42.06h0.306c0.629,0,0.967-0.237,0.967-0.978c0-0.558-0.357-0.915-0.916-0.915
|
123 |
+
c-0.189,0-0.269,0.019-0.356,0.024V42.06z M32.75,40.604c0-0.457-0.251-0.476-0.445-0.476h-0.113V39.94
|
124 |
+
c0.201,0,0.59,0.024,0.973,0.024c0.376,0,0.677-0.024,1.01-0.024c0.789,0,1.493,0.213,1.493,1.104c0,0.563-0.377,0.908-0.872,1.104
|
125 |
+
l1.072,1.604c0.176,0.266,0.301,0.34,0.608,0.377v0.189c-0.208,0-0.408-0.025-0.615-0.025c-0.194,0-0.395,0.025-0.589,0.025
|
126 |
+
c-0.482-0.634-0.897-1.312-1.305-2.033h-0.413v1.343c0,0.483,0.225,0.501,0.513,0.501h0.113v0.189c-0.357,0-0.72-0.024-1.078-0.024
|
127 |
+
c-0.302,0-0.597,0.024-0.91,0.024V44.13h0.113c0.232,0,0.445-0.105,0.445-0.338V40.604L32.75,40.604z"/>
|
128 |
+
<path fill="#076AAB" d="M33.859,42.033c0.621-0.006,0.935-0.222,0.94-0.95c-0.004-0.548-0.344-0.888-0.891-0.89
|
129 |
+
c-0.17,0-0.249,0.015-0.329,0.022v1.817H33.859L33.859,42.033z M33.553,42.087h-0.027v-1.92l0.024-0.003
|
130 |
+
c0.085-0.007,0.17-0.023,0.359-0.023c0.571,0,0.943,0.37,0.944,0.942c-0.002,0.748-0.361,1.003-0.994,1.004H33.553z M33.553,42.259
|
131 |
+
h0.429l0.008,0.014c0.409,0.721,0.82,1.397,1.282,2.02c0.191,0,0.394-0.025,0.588-0.025c0.201,0,0.394,0.021,0.589,0.024v-0.138
|
132 |
+
c-0.295-0.036-0.432-0.124-0.604-0.385l-1.092-1.632l0.031-0.014c0.491-0.193,0.854-0.528,0.854-1.079
|
133 |
+
c0-0.87-0.677-1.072-1.465-1.076c-0.331,0-0.633,0.025-1.01,0.025c-0.369,0-0.74-0.023-0.946-0.025v0.134h0.087
|
134 |
+
c0.195,0,0.472,0.032,0.472,0.504v3.187c0,0.252-0.235,0.366-0.472,0.367h-0.087v0.132c0.302,0,0.589-0.024,0.883-0.024
|
135 |
+
c0.351,0,0.704,0.024,1.052,0.024v-0.132h-0.086c-0.286-0.001-0.541-0.036-0.541-0.531V42.26L33.553,42.259L33.553,42.259z
|
136 |
+
M36.476,44.346c-0.21,0-0.409-0.025-0.615-0.025c-0.191,0-0.392,0.025-0.61,0.015c-0.481-0.631-0.894-1.305-1.299-2.021H33.58
|
137 |
+
v1.314c0.007,0.472,0.196,0.468,0.486,0.475h0.141v0.027v0.216h-0.028c-0.358,0-0.723-0.025-1.078-0.025
|
138 |
+
c-0.3,0-0.594,0.025-0.909,0.025h-0.027v-0.027v-0.216h0.027h0.113c0.227-0.001,0.416-0.1,0.418-0.311v-3.188
|
139 |
+
c-0.005-0.444-0.223-0.442-0.418-0.448h-0.141v-0.027v-0.216h0.027c0.203,0,0.591,0.024,0.973,0.024
|
140 |
+
c0.375,0,0.676-0.024,1.01-0.024c0.791,0.002,1.519,0.22,1.521,1.131c0,0.566-0.374,0.92-0.858,1.117l1.054,1.577
|
141 |
+
c0.176,0.261,0.285,0.326,0.59,0.365l0.023,0.003v0.023v0.216H36.476L36.476,44.346z"/>
|
142 |
+
<path fill="#076AAB" d="M40.734,43.083l0.012-0.013v-2.352c0-0.515-0.357-0.59-0.546-0.59h-0.137V39.94
|
143 |
+
c0.294,0,0.582,0.024,0.878,0.024c0.257,0,0.514-0.024,0.772-0.024v0.188h-0.095c-0.264,0-0.559,0.05-0.559,0.797v2.854
|
144 |
+
c0,0.22,0.006,0.439,0.037,0.634h-0.238l-3.229-3.601v2.584c0,0.546,0.106,0.733,0.59,0.733h0.106v0.189
|
145 |
+
c-0.27,0-0.54-0.024-0.809-0.024c-0.283,0-0.572,0.024-0.854,0.024V44.13h0.087c0.433,0,0.564-0.294,0.564-0.796v-2.642
|
146 |
+
c0-0.351-0.288-0.563-0.57-0.563h-0.081V39.94c0.237,0,0.482,0.025,0.721,0.025c0.188,0,0.37-0.025,0.559-0.025L40.734,43.083z"/>
|
147 |
+
<path fill="#076AAB" d="M40.719,43.07v-0.002l-0.005-0.005L40.719,43.07z M40.734,43.083l0.02-0.019L40.734,43.083z M40.859,44.385
|
148 |
+
h0.206c-0.027-0.188-0.033-0.397-0.033-0.605v-2.854c0.001-0.753,0.318-0.822,0.587-0.824h0.065v-0.134
|
149 |
+
c-0.246,0.002-0.494,0.025-0.744,0.025c-0.287,0-0.567-0.023-0.852-0.025v0.134H40.2c0.193,0.002,0.573,0.086,0.573,0.617
|
150 |
+
l-0.009,2.371l-0.012,0.013l-0.02,0.021l-2.791-3.154c-0.187,0-0.367,0.024-0.558,0.024c-0.232,0-0.467-0.023-0.695-0.024v0.134
|
151 |
+
h0.056c0.295,0.001,0.597,0.224,0.597,0.591v2.641c0,0.504-0.142,0.823-0.591,0.826l-0.062-0.001v0.133
|
152 |
+
c0.271-0.002,0.551-0.024,0.826-0.024c0.263,0,0.523,0.023,0.783,0.024v-0.132H38.22c-0.494-0.001-0.617-0.218-0.619-0.763v-2.653
|
153 |
+
L40.859,44.385z M41.098,44.439l-0.259-0.009l-3.184-3.548v2.513c0.008,0.546,0.091,0.701,0.563,0.707h0.133v0.027v0.216h-0.026
|
154 |
+
c-0.271,0-0.541-0.026-0.81-0.026c-0.28,0-0.57,0.026-0.853,0.026h-0.028v-0.026v-0.217h0.028h0.087
|
155 |
+
c0.414-0.002,0.533-0.269,0.537-0.77v-2.641c0-0.334-0.274-0.537-0.542-0.537h-0.11v-0.027v-0.216h0.029
|
156 |
+
c0.238,0,0.484,0.025,0.721,0.025c0.185,0,0.366-0.025,0.576-0.017l2.758,3.104v-2.308c-0.002-0.498-0.336-0.56-0.519-0.563h-0.165
|
157 |
+
v-0.027v-0.216h0.027c0.296,0,0.585,0.025,0.878,0.025c0.256,0,0.514-0.025,0.771-0.025h0.028v0.028v0.215h-0.028h-0.093
|
158 |
+
c-0.259,0.007-0.525,0.03-0.532,0.77v2.854c0,0.219,0.006,0.437,0.037,0.629l0.004,0.031H41.098z"/>
|
159 |
+
<path fill="#076AAB" d="M43.637,40.643h-0.013l-0.583,1.775h1.172L43.637,40.643z M42.722,43.422
|
160 |
+
c-0.063,0.213-0.14,0.377-0.14,0.489c0,0.188,0.265,0.219,0.471,0.219h0.07v0.189c-0.252-0.014-0.508-0.025-0.76-0.025
|
161 |
+
c-0.227,0-0.45,0.012-0.678,0.025V44.13h0.039c0.244,0,0.451-0.145,0.544-0.408l1.004-2.878c0.082-0.232,0.195-0.546,0.233-0.778
|
162 |
+
c0.2-0.068,0.451-0.194,0.57-0.27c0.019-0.007,0.03-0.013,0.05-0.013c0.019,0,0.03,0,0.044,0.02
|
163 |
+
c0.019,0.05,0.037,0.106,0.057,0.156l1.154,3.28c0.075,0.22,0.149,0.452,0.231,0.641c0.075,0.176,0.208,0.25,0.414,0.25h0.038
|
164 |
+
v0.189c-0.282-0.014-0.565-0.025-0.865-0.025c-0.308,0-0.622,0.012-0.941,0.025V44.13h0.069c0.144,0,0.389-0.024,0.389-0.182
|
165 |
+
c0-0.081-0.056-0.251-0.127-0.452l-0.244-0.727h-1.423L42.722,43.422z"/>
|
166 |
+
<path fill="#076AAB" d="M43.609,40.651l0.015-0.005L43.609,40.651z M43.078,42.391h1.098L43.63,40.71L43.078,42.391z
|
167 |
+
M43.003,42.445l0.601-1.83h0.021h0.014v0.027l-0.007,0.002l0.007-0.002v-0.027h0.019l0.596,1.83H43.003z M44.285,44.289
|
168 |
+
c0.311-0.011,0.614-0.022,0.914-0.022c0.292,0,0.564,0.012,0.837,0.022v-0.131h-0.01c-0.214,0.001-0.362-0.083-0.439-0.268
|
169 |
+
c-0.081-0.19-0.158-0.423-0.231-0.643l-1.154-3.28c-0.02-0.05-0.038-0.106-0.054-0.151c-0.006-0.006-0.005-0.006-0.01-0.006h-0.012
|
170 |
+
c-0.013,0-0.021,0.004-0.036,0.008c-0.121,0.078-0.373,0.202-0.559,0.252c-0.038,0.236-0.152,0.55-0.233,0.782l-1.003,2.879
|
171 |
+
c-0.097,0.272-0.316,0.428-0.571,0.426h-0.01v0.132c0.215-0.011,0.432-0.022,0.65-0.022c0.242,0,0.49,0.012,0.729,0.022v-0.132
|
172 |
+
h-0.04c-0.204-0.002-0.489-0.024-0.497-0.246c0-0.125,0.077-0.285,0.139-0.497l0.027,0.008l-0.027-0.009l0.207-0.671h1.463
|
173 |
+
l0.251,0.745c0.07,0.202,0.128,0.368,0.128,0.461c-0.009,0.192-0.274,0.206-0.416,0.209h-0.042V44.289L44.285,44.289z
|
174 |
+
M46.063,44.346c-0.282-0.013-0.564-0.025-0.863-0.025c-0.308,0-0.62,0.013-0.94,0.025l-0.028,0.001v-0.027v-0.218h0.027h0.069
|
175 |
+
c0.145,0,0.36-0.032,0.36-0.153c0.002-0.07-0.055-0.243-0.124-0.443l-0.238-0.709h-1.384l-0.194,0.634
|
176 |
+
c-0.063,0.214-0.139,0.38-0.139,0.482c0.002,0.152,0.236,0.189,0.445,0.189h0.096v0.029v0.216l-0.028-0.001
|
177 |
+
c-0.251-0.013-0.507-0.025-0.757-0.025c-0.225,0-0.451,0.014-0.676,0.025l-0.029,0.001v-0.027v-0.218h0.027h0.037
|
178 |
+
c0.234,0,0.429-0.133,0.52-0.388l1.004-2.879c0.082-0.232,0.195-0.545,0.249-0.795c0.197-0.067,0.449-0.193,0.569-0.27
|
179 |
+
c0.018-0.006,0.035-0.015,0.061-0.015c0.016,0,0.049,0.004,0.069,0.037c0.018,0.051,0.037,0.107,0.057,0.158l1.155,3.28
|
180 |
+
c0.073,0.22,0.148,0.451,0.23,0.637c0.072,0.168,0.188,0.233,0.389,0.233h0.064v0.029v0.216L46.063,44.346z"/>
|
181 |
+
<path fill="#076AAB" d="M46.341,40.254c-0.471,0-0.489,0.113-0.584,0.57h-0.189c0.025-0.175,0.058-0.351,0.077-0.533
|
182 |
+
c0.024-0.176,0.036-0.351,0.036-0.532h0.151c0.05,0.188,0.208,0.182,0.376,0.182h3.237c0.168,0,0.324-0.006,0.338-0.194l0.15,0.025
|
183 |
+
c-0.024,0.169-0.05,0.338-0.068,0.508c-0.014,0.169-0.014,0.339-0.014,0.508l-0.188,0.069c-0.011-0.231-0.043-0.603-0.463-0.603
|
184 |
+
h-1.029v3.337c0,0.483,0.22,0.539,0.521,0.539h0.119v0.189c-0.244,0-0.683-0.025-1.022-0.025c-0.375,0-0.815,0.025-1.06,0.025
|
185 |
+
V44.13h0.119c0.345,0,0.521-0.031,0.521-0.526v-3.35H46.341L46.341,40.254z"/>
|
186 |
+
<path fill="#076AAB" d="M48.812,44.346c-0.246,0-0.686-0.025-1.022-0.025c-0.375,0-0.814,0.025-1.061,0.025h-0.027v-0.026v-0.217
|
187 |
+
h0.027h0.119c0.346-0.008,0.484-0.013,0.493-0.499l-0.001-3.322h-0.999v-0.027v-0.028h1.055v3.378c0,0.504-0.203,0.553-0.548,0.555
|
188 |
+
h-0.092v0.134c0.247-0.003,0.669-0.025,1.033-0.025c0.328,0,0.747,0.023,0.994,0.025v-0.134h-0.092
|
189 |
+
c-0.302-0.002-0.547-0.074-0.547-0.567v-3.365H49.2c0.421,0.002,0.476,0.359,0.488,0.593l0.137-0.05c0-0.163,0-0.328,0.013-0.492
|
190 |
+
c0.018-0.161,0.041-0.322,0.063-0.481l-0.095-0.017c-0.028,0.182-0.206,0.191-0.361,0.189h-3.237h-0.032
|
191 |
+
c-0.147,0.002-0.308-0.007-0.364-0.183h-0.104c-0.001,0.174-0.014,0.342-0.038,0.51c-0.017,0.172-0.047,0.339-0.071,0.503h0.135
|
192 |
+
c0.083-0.437,0.138-0.579,0.606-0.572v0.028v0.027c-0.465,0.008-0.454,0.086-0.558,0.55l-0.004,0.021h-0.021h-0.221l0.004-0.031
|
193 |
+
c0.026-0.177,0.057-0.353,0.076-0.533c0.025-0.175,0.037-0.349,0.037-0.529v-0.027h0.027h0.171l0.006,0.02
|
194 |
+
c0.043,0.158,0.158,0.159,0.318,0.162c0.012,0,0.021,0.001,0.032,0.001h3.237c0.173-0.004,0.3-0.006,0.311-0.17l0.002-0.029
|
195 |
+
l0.029,0.005l0.178,0.028l-0.005,0.027c-0.025,0.168-0.05,0.338-0.068,0.506c-0.013,0.167-0.013,0.337-0.013,0.506v0.019
|
196 |
+
l-0.019,0.008l-0.222,0.081l-0.001-0.037c-0.017-0.235-0.041-0.576-0.438-0.576h-1.002v3.31c0.007,0.473,0.194,0.506,0.493,0.512
|
197 |
+
h0.146v0.027v0.216H48.812L48.812,44.346z"/>
|
198 |
+
<path fill="#076AAB" d="M50.165,44.13h0.088c0.227,0,0.464-0.031,0.464-0.357v-3.286c0-0.327-0.237-0.357-0.464-0.357h-0.088V39.94
|
199 |
+
c0.245,0,0.621,0.024,0.928,0.024c0.314,0,0.69-0.024,0.985-0.024v0.188H51.99c-0.227,0-0.465,0.031-0.465,0.357v3.286
|
200 |
+
c0,0.326,0.238,0.357,0.465,0.357h0.088v0.189c-0.301,0-0.678-0.025-0.991-0.025c-0.308,0-0.677,0.025-0.922,0.025V44.13
|
201 |
+
L50.165,44.13z"/>
|
202 |
+
<path fill="#076AAB" d="M52.05,44.291v-0.134h-0.06c-0.225,0-0.491-0.038-0.491-0.385v-3.286c0-0.347,0.267-0.385,0.491-0.385h0.06
|
203 |
+
v-0.134c-0.289,0.002-0.652,0.024-0.957,0.024c-0.298,0-0.657-0.023-0.9-0.024v0.134h0.06c0.224,0,0.491,0.039,0.492,0.385v3.286
|
204 |
+
c-0.001,0.347-0.269,0.385-0.492,0.385h-0.06v0.134c0.242-0.003,0.597-0.024,0.895-0.024C51.391,44.267,51.754,44.289,52.05,44.291
|
205 |
+
M52.078,44.346c-0.303,0-0.679-0.025-0.991-0.025c-0.307,0-0.677,0.025-0.922,0.025h-0.027v-0.026V44.13v-0.027h0.027h0.088
|
206 |
+
c0.227-0.004,0.435-0.022,0.436-0.33v-3.286c-0.001-0.306-0.209-0.327-0.436-0.33h-0.115v-0.027v-0.216h0.027
|
207 |
+
c0.245,0,0.622,0.024,0.928,0.024c0.313,0,0.689-0.024,0.985-0.024h0.026v0.027v0.216h-0.026H51.99
|
208 |
+
c-0.229,0.004-0.435,0.024-0.438,0.33v3.286c0.003,0.307,0.208,0.326,0.438,0.33h0.114v0.027v0.216H52.078L52.078,44.346z"/>
|
209 |
+
<path fill="#076AAB" d="M54.675,44.137c1.217,0,1.429-1.073,1.429-1.987c0-0.917-0.494-2.027-1.536-2.027
|
210 |
+
c-1.098,0-1.424,0.979-1.424,1.818C53.144,43.063,53.658,44.137,54.675,44.137 M54.58,39.847c1.337,0,2.402,0.829,2.402,2.164
|
211 |
+
c0,1.442-1.034,2.402-2.37,2.402c-1.331,0-2.347-0.903-2.347-2.252C52.266,40.856,53.275,39.847,54.58,39.847"/>
|
212 |
+
<path fill="#076AAB" d="M53.116,41.94c0.002-0.844,0.331-1.846,1.451-1.846c1.065,0.002,1.562,1.132,1.564,2.054
|
213 |
+
c-0.003,0.915-0.218,2.014-1.457,2.014v-0.025v-0.027c1.192-0.002,1.399-1.046,1.402-1.961c0-0.909-0.49-1.997-1.51-1.999
|
214 |
+
c-1.076,0.001-1.395,0.956-1.396,1.791c0.001,1.117,0.51,2.166,1.504,2.169v0.027v0.025C53.633,44.162,53.118,43.069,53.116,41.94
|
215 |
+
M52.238,42.161c0.003-1.319,1.023-2.34,2.342-2.342v0.027v0.026c-1.29,0-2.287,0.998-2.289,2.288
|
216 |
+
c0.003,1.333,1.004,2.223,2.321,2.224c1.322-0.001,2.342-0.946,2.344-2.375c-0.001-1.318-1.05-2.134-2.376-2.136v-0.027v-0.027
|
217 |
+
c1.347,0.002,2.427,0.839,2.429,2.19c-0.001,1.458-1.049,2.428-2.396,2.43C53.271,44.437,52.241,43.524,52.238,42.161"/>
|
218 |
+
<path fill="#076AAB" d="M61.209,43.083l0.013-0.013v-2.352c0-0.515-0.358-0.59-0.547-0.59h-0.136V39.94
|
219 |
+
c0.294,0,0.583,0.024,0.876,0.024c0.259,0,0.516-0.024,0.773-0.024v0.188h-0.095c-0.263,0-0.559,0.05-0.559,0.797v2.854
|
220 |
+
c0,0.22,0.006,0.439,0.038,0.634h-0.238l-3.23-3.601v2.584c0,0.546,0.106,0.733,0.589,0.733h0.107v0.189
|
221 |
+
c-0.271,0-0.54-0.024-0.81-0.024c-0.282,0-0.571,0.024-0.854,0.024V44.13h0.088c0.434,0,0.564-0.294,0.564-0.796v-2.642
|
222 |
+
c0-0.351-0.288-0.563-0.57-0.563h-0.082V39.94c0.238,0,0.483,0.025,0.721,0.025c0.188,0,0.37-0.025,0.559-0.025L61.209,43.083z"/>
|
223 |
+
<path fill="#076AAB" d="M61.194,43.07v-0.002l-0.005-0.005L61.194,43.07z M61.209,43.083l0.021-0.019L61.209,43.083z
|
224 |
+
M61.335,44.385h0.206c-0.027-0.188-0.033-0.397-0.033-0.605v-2.854c0-0.754,0.317-0.822,0.586-0.824h0.067v-0.134
|
225 |
+
c-0.248,0.002-0.495,0.025-0.746,0.025c-0.285,0-0.565-0.023-0.85-0.025v0.134h0.11c0.193,0.002,0.572,0.088,0.572,0.618
|
226 |
+
l-0.007,2.37l-0.012,0.013l-0.021,0.021l-2.791-3.154c-0.186,0-0.368,0.024-0.559,0.024c-0.23,0-0.467-0.023-0.694-0.024v0.134
|
227 |
+
h0.056c0.294,0.001,0.597,0.224,0.597,0.591v2.642c0,0.502-0.14,0.822-0.591,0.825l-0.062-0.001v0.133
|
228 |
+
c0.272-0.002,0.551-0.024,0.827-0.024c0.262,0,0.521,0.023,0.782,0.024v-0.132h-0.081c-0.493-0.001-0.616-0.218-0.616-0.763v-2.655
|
229 |
+
L61.335,44.385z M61.573,44.439l-0.26-0.009l-3.183-3.548v2.514c0.008,0.545,0.091,0.699,0.562,0.705h0.136v0.028v0.216h-0.027
|
230 |
+
c-0.271,0-0.541-0.025-0.81-0.025c-0.281,0-0.568,0.025-0.854,0.025h-0.026v-0.027v-0.217h0.026h0.089
|
231 |
+
c0.413-0.002,0.532-0.268,0.536-0.768v-2.642c0-0.334-0.273-0.537-0.543-0.537h-0.108v-0.027v-0.215h0.026
|
232 |
+
c0.24,0,0.484,0.024,0.722,0.024c0.186,0,0.366-0.024,0.579-0.015l2.755,3.103v-2.307c-0.001-0.499-0.335-0.56-0.519-0.563H60.51
|
233 |
+
v-0.027v-0.215h0.028c0.295,0,0.585,0.024,0.877,0.024c0.257,0,0.513-0.024,0.772-0.024h0.027v0.027v0.215h-0.027h-0.095
|
234 |
+
c-0.258,0.007-0.524,0.03-0.53,0.77v2.854c0,0.219,0.005,0.438,0.035,0.629l0.006,0.031H61.573z"/>
|
235 |
+
<path fill="#076AAB" d="M64.112,40.643H64.1l-0.584,1.775h1.174L64.112,40.643z M63.196,43.422
|
236 |
+
c-0.062,0.213-0.138,0.377-0.138,0.489c0,0.188,0.265,0.219,0.47,0.219h0.07v0.189c-0.252-0.014-0.509-0.025-0.76-0.025
|
237 |
+
c-0.227,0-0.451,0.012-0.677,0.025V44.13h0.036c0.245,0,0.453-0.145,0.546-0.408l1.005-2.878c0.081-0.232,0.194-0.546,0.231-0.778
|
238 |
+
c0.2-0.068,0.451-0.194,0.571-0.27c0.019-0.007,0.031-0.013,0.05-0.013s0.031,0,0.043,0.02c0.02,0.05,0.039,0.106,0.058,0.156
|
239 |
+
l1.153,3.28c0.075,0.22,0.15,0.452,0.232,0.641c0.075,0.176,0.208,0.25,0.414,0.25h0.038v0.189
|
240 |
+
c-0.282-0.014-0.565-0.025-0.866-0.025c-0.307,0-0.621,0.012-0.94,0.025V44.13h0.068c0.144,0,0.39-0.024,0.39-0.182
|
241 |
+
c0-0.081-0.057-0.251-0.126-0.452l-0.244-0.727h-1.424L63.196,43.422z"/>
|
242 |
+
<path fill="#076AAB" d="M64.087,40.651l0.013-0.005L64.087,40.651z M63.554,42.391h1.098l-0.546-1.68L63.554,42.391z
|
243 |
+
M63.479,42.444l0.602-1.829h0.02h0.014v0.027l-0.007,0.002l0.007-0.002v-0.027h0.02l0.593,1.829H63.479z M64.76,44.29
|
244 |
+
c0.311-0.012,0.616-0.023,0.914-0.023c0.292,0,0.565,0.012,0.838,0.022l-0.001-0.131h-0.01c-0.213,0.001-0.36-0.083-0.438-0.268
|
245 |
+
c-0.083-0.19-0.158-0.423-0.232-0.642l-1.154-3.281c-0.019-0.05-0.038-0.106-0.053-0.15c-0.006-0.007-0.005-0.007-0.01-0.007
|
246 |
+
h-0.012c-0.014,0-0.021,0.005-0.036,0.009c-0.122,0.077-0.373,0.202-0.559,0.251c-0.039,0.236-0.152,0.55-0.233,0.782l-1.005,2.879
|
247 |
+
c-0.095,0.272-0.313,0.428-0.57,0.427h-0.01v0.131c0.217-0.011,0.432-0.022,0.65-0.022c0.243,0,0.49,0.012,0.731,0.022v-0.131
|
248 |
+
h-0.042c-0.204-0.003-0.49-0.024-0.498-0.247c0.002-0.125,0.079-0.284,0.14-0.497l0.025,0.008l-0.025-0.009l0.207-0.671h1.463
|
249 |
+
l0.251,0.745c0.069,0.202,0.126,0.369,0.126,0.461c-0.009,0.192-0.272,0.206-0.415,0.209H64.76V44.29L64.76,44.29z M66.538,44.346
|
250 |
+
c-0.283-0.012-0.564-0.025-0.864-0.025c-0.306,0-0.62,0.014-0.939,0.025l-0.028,0.001v-0.028v-0.216h0.027h0.068
|
251 |
+
c0.146,0,0.361-0.033,0.362-0.154c0.002-0.07-0.055-0.242-0.125-0.443l-0.238-0.709h-1.385l-0.193,0.634
|
252 |
+
c-0.063,0.215-0.138,0.38-0.137,0.481c0,0.153,0.235,0.192,0.442,0.192h0.096v0.026v0.217l-0.027-0.001
|
253 |
+
c-0.251-0.012-0.508-0.025-0.758-0.025c-0.225,0-0.45,0.014-0.676,0.025l-0.027,0.001v-0.027v-0.216h0.027h0.035
|
254 |
+
c0.234-0.002,0.43-0.136,0.521-0.39l1.004-2.879c0.08-0.232,0.193-0.545,0.249-0.795c0.196-0.068,0.448-0.193,0.57-0.27
|
255 |
+
c0.017-0.006,0.033-0.014,0.06-0.014c0.016-0.002,0.049,0.003,0.068,0.037c0.019,0.049,0.037,0.106,0.058,0.156l1.154,3.281
|
256 |
+
c0.075,0.22,0.149,0.451,0.231,0.638c0.073,0.167,0.188,0.232,0.388,0.234h0.065v0.026v0.217L66.538,44.346z"/>
|
257 |
+
<path fill="#076AAB" d="M68.12,43.704c0,0.251,0.175,0.326,0.376,0.352c0.257,0.019,0.539,0.019,0.828-0.013
|
258 |
+
c0.263-0.031,0.489-0.182,0.602-0.339c0.1-0.139,0.156-0.314,0.194-0.452h0.183c-0.069,0.357-0.158,0.71-0.233,1.067
|
259 |
+
c-0.55,0-1.104-0.025-1.654-0.025c-0.554,0-1.104,0.025-1.656,0.025V44.13h0.086c0.227,0,0.472-0.031,0.472-0.42v-3.224
|
260 |
+
c0-0.327-0.245-0.357-0.472-0.357h-0.086V39.94c0.331,0,0.658,0.024,0.99,0.024c0.32,0,0.634-0.024,0.954-0.024v0.188h-0.158
|
261 |
+
c-0.237,0-0.425,0.007-0.425,0.338V43.704L68.12,43.704z"/>
|
262 |
+
<path fill="#076AAB" d="M70.048,44.291c0.072-0.341,0.154-0.673,0.222-1.012h-0.129c-0.039,0.136-0.095,0.304-0.193,0.441
|
263 |
+
c-0.117,0.162-0.349,0.315-0.621,0.349c-0.165,0.017-0.327,0.025-0.481,0.025c-0.121,0-0.239-0.005-0.352-0.013
|
264 |
+
c-0.205-0.023-0.402-0.11-0.402-0.379v-3.236c0-0.349,0.221-0.366,0.454-0.366h0.13v-0.133c-0.309,0.001-0.613,0.024-0.926,0.024
|
265 |
+
c-0.325,0-0.643-0.023-0.964-0.024v0.133h0.06c0.225,0,0.498,0.039,0.498,0.385v3.225c0,0.405-0.272,0.447-0.498,0.447h-0.06v0.134
|
266 |
+
c0.542-0.001,1.085-0.024,1.63-0.024S69.504,44.29,70.048,44.291 M70.07,44.346c-0.553,0-1.105-0.025-1.655-0.025
|
267 |
+
c-0.552,0-1.104,0.025-1.657,0.025h-0.026v-0.027v-0.216h0.026h0.087c0.228-0.005,0.442-0.021,0.445-0.393v-3.224
|
268 |
+
c-0.003-0.306-0.217-0.327-0.445-0.33h-0.113v-0.027v-0.216h0.025c0.334,0,0.661,0.024,0.992,0.024
|
269 |
+
c0.319,0,0.632-0.024,0.954-0.024h0.025v0.027v0.216h-0.025h-0.158c-0.242,0.006-0.394-0.005-0.398,0.311v3.236
|
270 |
+
c0.002,0.234,0.154,0.297,0.351,0.325c0.11,0.008,0.227,0.012,0.348,0.012c0.153,0,0.313-0.007,0.476-0.024
|
271 |
+
c0.255-0.03,0.476-0.178,0.584-0.327c0.096-0.134,0.151-0.307,0.189-0.442l0.005-0.021h0.021h0.215l-0.005,0.033
|
272 |
+
c-0.071,0.358-0.157,0.709-0.233,1.066l-0.006,0.021H70.07L70.07,44.346z"/>
|
273 |
+
<path fill="#076AAB" d="M70.12,40.425h0.078c0.085,0,0.125-0.064,0.125-0.168c0-0.106-0.062-0.143-0.13-0.143H70.12V40.425
|
274 |
+
L70.12,40.425z M69.897,40.773v-0.032c0.081-0.012,0.096-0.01,0.096-0.061v-0.488c0-0.068-0.008-0.093-0.093-0.089V40.07h0.338
|
275 |
+
c0.116,0,0.223,0.056,0.223,0.175c0,0.099-0.064,0.171-0.156,0.2l0.108,0.151c0.051,0.068,0.108,0.133,0.146,0.155v0.021h-0.13
|
276 |
+
c-0.062,0-0.115-0.13-0.236-0.304H70.12v0.219c0,0.043,0.015,0.041,0.097,0.053v0.032H69.897z M70.226,40.96
|
277 |
+
c0.296,0,0.522-0.252,0.522-0.535c0-0.284-0.224-0.539-0.522-0.539c-0.297,0-0.523,0.255-0.523,0.539
|
278 |
+
C69.702,40.708,69.929,40.96,70.226,40.96 M70.226,39.763c0.378,0,0.661,0.29,0.661,0.662c0,0.37-0.283,0.658-0.661,0.658
|
279 |
+
c-0.377,0-0.661-0.288-0.661-0.658C69.564,40.053,69.849,39.763,70.226,39.763"/>
|
280 |
+
</g>
|
281 |
+
</svg>
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="85px"
|
4 |
+
height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
5 |
+
<g id="Discover">
|
6 |
+
<g id="Foreground">
|
7 |
+
<path fill="#010101" d="M11.704,29.807c0,0,4.18,0.469,4.18-3.228V26.52c0-3.699-4.18-3.228-4.18-3.228V29.807z M9.83,21.523
|
8 |
+
h3.255c1.955,0,4.822,1.775,4.822,4.932v0.037v0.038c0,3.157-2.867,4.933-4.822,4.933H9.83V21.523z"/>
|
9 |
+
<rect x="18.763" y="21.523" fill="#010101" width="1.989" height="9.954"/>
|
10 |
+
<path fill="#010101" d="M26.848,23.82c0,0-0.655-0.754-1.534-0.754c-0.878,0-1.387,0.583-1.387,1.01
|
11 |
+
c0,0.426-0.017,0.666,1.239,1.19c1.256,0.524,3.101,0.901,3.101,3.118c0,2.217-1.736,3.342-3.299,3.342
|
12 |
+
c-2.461,0-3.569-1.89-3.569-1.89l1.24-1.239c0,0,0.785,1.321,2.156,1.321c1.371,0,1.447-1.043,1.447-1.387
|
13 |
+
c0-0.508-0.295-1.011-1.141-1.322c-0.847-0.311-3.162-0.623-3.162-2.855c0-2.004,1.498-2.998,3.177-2.998
|
14 |
+
c1.502,0,2.806,1.174,2.806,1.174L26.848,23.82z"/>
|
15 |
+
<path fill="#010101" d="M36.53,24.232c-0.616-0.635-1.463-1.098-2.417-1.098c-1.869,0-3.384,1.516-3.384,3.385
|
16 |
+
c0,1.87,1.515,3.384,3.384,3.384c0.947,0,1.804-0.456,2.418-1.083l-0.001,2.347c-0.724,0.377-1.544,0.59-2.417,0.59
|
17 |
+
c-2.891,0-5.235-2.345-5.235-5.237c0-2.891,2.344-5.236,5.235-5.236c0.875,0,1.692,0.214,2.417,0.594V24.232L36.53,24.232z"/>
|
18 |
+
<polygon fill="#010101" points="47.369,21.523 49.512,21.523 52.252,28.046 54.835,21.523 56.976,21.523 52.79,31.732
|
19 |
+
51.557,31.732 "/>
|
20 |
+
<path fill="#010101" d="M66.458,23.183v2.905h1.07c0.824,0,1.343-0.743,1.343-1.39v-0.125c0-0.648-0.519-1.39-1.343-1.39H66.458
|
21 |
+
L66.458,23.183z M64.518,21.523h3.245c1.036,0,3.097,0.564,3.097,2.934c0,2.368-2.131,2.859-2.131,2.859l3.038,4.162h-2.416
|
22 |
+
l-2.687-3.972h-0.206v3.972h-1.94V21.523L64.518,21.523z"/>
|
23 |
+
<polygon fill="#010101" points="63.073,25.448 63.073,27.203 59.692,27.203 59.692,29.723 63.23,29.723 63.23,31.478
|
24 |
+
57.717,31.478 57.717,21.523 63.23,21.523 63.23,23.279 59.692,23.279 59.692,25.448 "/>
|
25 |
+
</g>
|
26 |
+
<g id="Layer_1_1_">
|
27 |
+
<path fill="#F26822" d="M31.625,55c0,0,20.483-3.636,33.824-9.052C78.732,41.021,87,35.042,87,35.042V55H31.625z"/>
|
28 |
+
<path fill="#010101" d="M26.933,34.023l2.179,2.091c0.083,0.082,0.146,0.144,0.187,0.191c0.04,0.046,0.104,0.122,0.191,0.229
|
29 |
+
v-2.378h0.509v3.561l-2.225-2.133c-0.122-0.113-0.232-0.242-0.332-0.383v2.384h-0.509V34.023z"/>
|
30 |
+
<polygon fill="#010101" points="31.726,34.156 33.639,34.156 33.639,34.629 32.282,34.629 32.282,35.489 33.639,35.489
|
31 |
+
33.639,35.978 32.282,35.978 32.282,37.086 33.639,37.086 33.639,37.585 31.726,37.585 "/>
|
32 |
+
<polygon fill="#010101" points="36.156,37.602 35.6,37.602 35.6,34.61 34.846,34.61 34.846,34.136 36.906,34.136 36.906,34.61
|
33 |
+
36.156,34.61 "/>
|
34 |
+
<path fill="#010101" d="M38.646,34.154l0.649,1.731c0.035,0.093,0.067,0.185,0.096,0.269c0.028,0.086,0.058,0.179,0.085,0.273
|
35 |
+
c0.039-0.125,0.078-0.247,0.118-0.366l0.069-0.208l0.69-1.828l0.725,1.86c0.065,0.179,0.125,0.362,0.18,0.547
|
36 |
+
c0.013-0.061,0.036-0.146,0.072-0.25c0.033-0.105,0.065-0.199,0.094-0.283l0.646-1.745l0.557,0.002l-1.329,3.561l-0.782-1.954
|
37 |
+
c-0.069-0.175-0.126-0.332-0.167-0.481c-0.051,0.185-0.106,0.346-0.163,0.49l-0.767,1.945l-1.324-3.561L38.646,34.154z"/>
|
38 |
+
<path fill="#010101" d="M46.68,37.151c-0.361,0.354-0.793,0.529-1.296,0.529c-0.249,0-0.483-0.046-0.704-0.135
|
39 |
+
s-0.418-0.22-0.594-0.391c-0.178-0.173-0.31-0.367-0.399-0.581c-0.088-0.217-0.134-0.448-0.134-0.694
|
40 |
+
c0-0.503,0.179-0.929,0.536-1.277c0.355-0.35,0.786-0.525,1.295-0.525c0.508,0,0.938,0.177,1.296,0.526
|
41 |
+
c0.357,0.352,0.538,0.776,0.538,1.276C47.218,36.379,47.037,36.804,46.68,37.151z M46.269,34.967
|
42 |
+
c-0.241-0.25-0.536-0.374-0.885-0.374c-0.347,0-0.613,0.093-0.795,0.276c-0.183,0.188-0.305,0.357-0.365,0.513
|
43 |
+
c-0.06,0.156-0.091,0.321-0.091,0.498c0,0.354,0.121,0.658,0.365,0.908s0.539,0.375,0.886,0.375c0.346,0,0.642-0.126,0.887-0.377
|
44 |
+
c0.244-0.253,0.364-0.554,0.364-0.906C46.635,35.524,46.514,35.219,46.269,34.967z"/>
|
45 |
+
<path fill="#010101" d="M49.043,37.585h-0.522v-3.429H49.3c0.204,0,0.376,0.013,0.506,0.038c0.132,0.024,0.247,0.078,0.35,0.157
|
46 |
+
c0.103,0.08,0.184,0.186,0.239,0.312c0.059,0.129,0.088,0.274,0.088,0.438c0,0.553-0.263,0.861-0.787,0.925l1.18,1.56
|
47 |
+
l-0.627-0.001l-1.142-1.535h-0.063V37.585z M49.178,35.619c0.271,0,0.461-0.031,0.571-0.088c0.109-0.057,0.162-0.184,0.162-0.383
|
48 |
+
c0-0.201-0.056-0.337-0.167-0.406c-0.112-0.071-0.3-0.105-0.566-0.105h-0.102v0.982H49.178L49.178,35.619z"/>
|
49 |
+
<polygon fill="#010101" points="52.058,34.156 52.617,34.156 52.617,35.578 53.849,34.156 54.529,34.156 53.172,35.681
|
50 |
+
54.692,37.585 53.97,37.587 52.617,35.837 52.617,37.585 52.058,37.585 "/>
|
51 |
+
<path display="none" fill="#010101" d="M71.686,22.873V22.04h0.283c0.071,0,0.123,0.007,0.155,0.022
|
52 |
+
c0.032,0.015,0.058,0.042,0.079,0.079c0.018,0.038,0.027,0.082,0.027,0.131c0,0.063-0.016,0.115-0.045,0.155
|
53 |
+
c-0.028,0.041-0.072,0.066-0.13,0.077c0.029,0.021,0.053,0.045,0.071,0.07c0.019,0.025,0.045,0.071,0.077,0.135l0.081,0.163
|
54 |
+
h-0.161l-0.097-0.183c-0.036-0.064-0.058-0.105-0.072-0.122c-0.011-0.016-0.024-0.028-0.039-0.033
|
55 |
+
c-0.014-0.007-0.037-0.01-0.068-0.01H71.82v0.348H71.686z M71.82,22.392h0.1c0.064,0,0.104-0.003,0.122-0.01
|
56 |
+
c0.015-0.007,0.027-0.018,0.037-0.035c0.008-0.017,0.013-0.038,0.013-0.063c0-0.029-0.007-0.05-0.018-0.068
|
57 |
+
c-0.014-0.017-0.028-0.029-0.05-0.032c-0.012-0.003-0.044-0.003-0.1-0.003H71.82V22.392L71.82,22.392z"/>
|
58 |
+
|
59 |
+
<radialGradient id="SVGID_4_" cx="34.1553" cy="4.6099" r="5.1621" gradientTransform="matrix(1 0 0 -1 8.3999 31.1602)" gradientUnits="userSpaceOnUse">
|
60 |
+
<stop offset="0" style="stop-color:#FFFFFF"/>
|
61 |
+
<stop offset="1" style="stop-color:#F26822"/>
|
62 |
+
</radialGradient>
|
63 |
+
<circle fill="url(#SVGID_4_)" cx="42.556" cy="26.55" r="5.163"/>
|
64 |
+
</g>
|
65 |
+
</g>
|
66 |
+
</svg>
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5 |
+
width="85px" height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
6 |
+
<g id="ELO">
|
7 |
+
<g>
|
8 |
+
<path fill="#0D100D" d="M19.416,28.363c0-12.75,10.334-23.086,23.084-23.086c12.751,0,23.085,10.334,23.085,23.086
|
9 |
+
c0,12.752-10.335,23.088-23.085,23.088C29.75,51.451,19.416,41.115,19.416,28.363z"/>
|
10 |
+
<g>
|
11 |
+
<g>
|
12 |
+
<path fill="#FFFFFF" d="M35.385,31.732c-0.73,0.713-1.727,1.15-2.828,1.133c-0.754-0.012-1.454-0.238-2.048-0.613L29.034,34.6
|
13 |
+
c1.01,0.637,2.199,1.016,3.482,1.033c1.866,0.029,3.568-0.707,4.806-1.916L35.385,31.732z"/>
|
14 |
+
<path fill="#FFFFFF" d="M32.721,22.168c-3.717-0.06-6.778,2.91-6.833,6.628c-0.021,1.393,0.383,2.695,1.091,3.777l12.196-5.211
|
15 |
+
C38.487,24.425,35.875,22.216,32.721,22.168L32.721,22.168z M28.678,29.318L28.678,29.318c-0.017-0.156-0.026-0.316-0.024-0.479
|
16 |
+
c0.035-2.193,1.836-3.939,4.025-3.903c1.192,0.016,2.25,0.561,2.965,1.406L28.678,29.318z"/>
|
17 |
+
</g>
|
18 |
+
<path fill="#FFFFFF" d="M42.998,19.133v13.001l2.256,0.938l-1.065,2.563l-2.233-0.924c-0.503-0.217-0.842-0.553-1.099-0.928
|
19 |
+
c-0.248-0.379-0.433-0.906-0.433-1.611V19.133H42.998z"/>
|
20 |
+
</g>
|
21 |
+
<g>
|
22 |
+
<path fill="#F1DA0E" d="M54.098,25.326c1.975,0.951,2.805,3.316,1.856,5.291l2.495,1.199c1.612-3.352,0.2-7.376-3.152-8.985
|
23 |
+
c-2.549-1.225-5.479-0.703-7.45,1.09l1.865,2.049C50.871,24.914,52.599,24.604,54.098,25.326z"/>
|
24 |
+
<path fill="#D22027" d="M50.663,32.473c-1.975-0.949-2.805-3.318-1.856-5.289l-2.496-1.201c-1.61,3.354-0.2,7.375,3.153,8.986
|
25 |
+
c2.547,1.227,5.481,0.703,7.45-1.09L55.05,31.83C53.891,32.887,52.161,33.195,50.663,32.473z"/>
|
26 |
+
</g>
|
27 |
+
</g>
|
28 |
+
</g>
|
29 |
+
</svg>
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5 |
+
width="85px" height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
6 |
+
<g>
|
7 |
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F37421" d="M17.256,11.132L54.484,2.28
|
8 |
+
c5.434-1.292,10.937,2.097,12.229,7.531l8.852,37.228c0.675,2.838,0.072,5.695-1.43,7.961H17.248L9.725,23.361
|
9 |
+
C8.432,17.927,11.822,12.424,17.256,11.132L17.256,11.132z"/>
|
10 |
+
<polygon fill="#FFFFFF" points="17.176,26.352 17.176,42.258 20.787,42.258 20.787,35.604 26.71,35.604 26.71,42.258
|
11 |
+
30.297,42.258 30.297,26.352 26.71,26.352 26.71,32.464 20.787,32.464 20.787,26.352 17.176,26.352 "/>
|
12 |
+
<path fill="#FFFFFF" d="M61.364,37.632c0.047-0.259,0.117-0.803,0.117-1.415c0-2.855-1.416-5.76-5.145-5.76
|
13 |
+
c-4.013,0-5.829,3.233-5.829,6.16c0,3.611,2.242,5.877,6.16,5.877c1.557,0,2.997-0.236,4.176-0.708l-0.471-2.431
|
14 |
+
c-0.968,0.307-1.959,0.472-3.186,0.472c-1.676,0-3.14-0.708-3.259-2.195H61.364L61.364,37.632z M53.905,35.178
|
15 |
+
c0.095-0.967,0.709-2.337,2.22-2.337c1.651,0,2.029,1.464,2.029,2.337H53.905L53.905,35.178z"/>
|
16 |
+
<path fill="#FFFFFF" d="M62.631,42.258h3.588v-5.853c0-0.283,0.023-0.565,0.07-0.802c0.236-1.11,1.133-1.818,2.455-1.818
|
17 |
+
c0.401,0,0.708,0.048,0.968,0.095v-3.375c-0.26-0.048-0.425-0.048-0.756-0.048c-1.109,0-2.524,0.71-3.115,2.384h-0.095
|
18 |
+
l-0.117-2.123h-3.092c0.048,0.991,0.094,2.101,0.094,3.799V42.258L62.631,42.258z"/>
|
19 |
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFE700" d="M33.946,25.711c1.018,0,1.844,0.826,1.844,1.844
|
20 |
+
s-0.826,1.844-1.844,1.844s-1.844-0.825-1.844-1.844S32.928,25.711,33.946,25.711L33.946,25.711z"/>
|
21 |
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M41.521,39.57h1.801c1.809,0,2.626-1.157,2.626-2.366
|
22 |
+
c0-1.207-0.087-3.938-2.321-3.938c-2.566,0-2.15,3.391-2.14,5.164C41.49,38.811,41.512,39.189,41.521,39.57L41.521,39.57z
|
23 |
+
M32.102,30.702h3.688v6.502c0,1.207,0.67,2.364,2.15,2.366c0.01-2.929-0.001-5.942-0.1-8.868h3.082
|
24 |
+
c0.067,0.563,0.128,1.128,0.183,1.694c1.455-2.911,6.043-2.271,7.587,0.188c1.595,2.538,2.138,9.806-5.37,9.806h-1.748
|
25 |
+
c0.017,1.476,0.02,2.954,0.02,4.432h-3.688c0-1.418,0.01-2.905,0.019-4.432c-3.986-0.014-5.823-2.546-5.823-5.186V30.702
|
26 |
+
L32.102,30.702z"/>
|
27 |
+
</g>
|
28 |
+
</svg>
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5 |
+
width="85px" height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
6 |
+
<path id="fundo" fill-rule="evenodd" clip-rule="evenodd" fill="#961B1E" d="M23.478,9.14c-2.912,0-8.742,0-8.742,0
|
7 |
+
c-3.863,0.183-7.021,1.738-7.934,4.947c-0.475,1.674-0.736,3.511-1.109,5.246c-1.89,8.82-3.565,17.883-5.373,26.528h68.067
|
8 |
+
c5.262,0,8.875-1.112,9.852-5.289c0.454-1.939,0.888-4.138,1.322-6.269c1.691-8.312,3.386-16.622,5.118-25.163H23.478z"/>
|
9 |
+
<path id="hipercard" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M22.796,22.19c0.366-0.251,0.836-1.398,0.299-1.876
|
10 |
+
c-0.171-0.152-0.456-0.195-0.854-0.128c-0.369,0.062-0.58,0.187-0.725,0.383c-0.231,0.316-0.444,1.268-0.085,1.621
|
11 |
+
C21.781,22.534,22.563,22.35,22.796,22.19z M17.593,20.314c-0.262,1.699-0.557,3.366-0.853,5.032c-1.9,0.02-3.839,0.095-5.672-0.042
|
12 |
+
c0.346-1.629,0.594-3.357,0.938-4.989H9.959c-0.733,4.157-1.399,8.381-2.218,12.454h2.09c0.328-2.09,0.635-4.199,1.066-6.185
|
13 |
+
c1.782-0.043,3.917-0.12,5.629,0.043c-0.352,2.064-0.779,4.054-1.109,6.142h2.09c0.672-4.22,1.379-8.402,2.218-12.454H17.593z
|
14 |
+
M47.147,23.896c-1.625-0.658-2.903,0.453-3.497,1.492c0.135-0.462,0.191-1.004,0.299-1.492h-1.621
|
15 |
+
c-0.396,3.072-0.979,5.957-1.534,8.871h1.833c0.258-1.729,0.369-4.061,0.938-5.715c0.456-1.322,1.649-2.448,3.37-1.833
|
16 |
+
C46.959,24.731,47.099,24.359,47.147,23.896z M48.172,30.678c-0.17-0.438-0.213-1.158-0.17-1.707
|
17 |
+
c0.094-1.232,0.544-2.732,1.236-3.412c0.956-0.937,2.845-0.782,4.35-0.256c0.047-0.508,0.149-0.96,0.214-1.449
|
18 |
+
c-2.47-0.403-4.814-0.153-6.057,1.151c-1.217,1.276-2.014,4.209-1.45,6.056c0.66,2.159,3.618,2.276,6.014,1.449
|
19 |
+
c0.106-0.435,0.163-0.918,0.256-1.364C51.256,31.826,48.754,32.18,48.172,30.678z M68.771,23.938c-1.62-0.81-2.969,0.55-3.497,1.365
|
20 |
+
c0.15-0.418,0.159-0.978,0.299-1.407h-1.621c-0.437,3.046-0.963,6.002-1.577,8.871h1.876c0.012-1.177,0.243-2.046,0.427-3.199
|
21 |
+
c0.392-2.462,0.968-5.162,3.838-4.35C68.61,24.802,68.65,24.33,68.771,23.938z M20.92,23.896c-0.05,0.006-0.046,0.067-0.043,0.127
|
22 |
+
c-0.404,3.022-0.952,5.902-1.535,8.744h1.833c0.441-3.043,0.945-6.021,1.578-8.871H20.92z M37.041,23.726
|
23 |
+
c-1.325,0.102-2.445,0.483-3.241,1.322c-0.977,1.028-1.768,3.303-1.536,5.374c0.331,2.954,4.009,2.848,6.952,2.132
|
24 |
+
c0.05-0.519,0.176-0.962,0.256-1.45c-1.212,0.453-3.316,1.087-4.563,0.299c-0.941-0.596-0.947-2.103-0.64-3.412
|
25 |
+
c1.978-0.063,4.033-0.051,6.014,0c0.126-0.928,0.485-1.94,0.171-2.857C40.038,23.923,38.552,23.609,37.041,23.726z M38.789,26.967
|
26 |
+
h-4.307c0.136-0.991,1.027-2.079,2.431-2.132C38.234,24.784,39.179,25.319,38.789,26.967z M30.089,23.896
|
27 |
+
c-1.552-0.583-3.443,0.113-4.264,0.774c0.003,0.029-0.019,0.033-0.043,0.036c0.014-0.012,0.029-0.023,0.043-0.036
|
28 |
+
c0-0.002,0-0.004-0.001-0.007c0.015-0.285,0.114-0.483,0.128-0.768h-1.577c-0.658,4.375-1.438,8.627-2.26,12.837h1.833
|
29 |
+
c0.265-1.64,0.44-3.369,0.81-4.905c0.418,1.615,3.154,1.307,4.308,0.683C31.447,31.225,33.283,25.096,30.089,23.896z M28.639,31.104
|
30 |
+
c-0.98,1.039-3.394,1.023-3.583-0.725c-0.083-0.762,0.202-1.559,0.342-2.346c0.142-0.797,0.243-1.562,0.383-2.261
|
31 |
+
c0.967-1.18,3.807-1.322,4.094,0.64C30.125,28.115,29.452,30.243,28.639,31.104z M75.595,20.058
|
32 |
+
c-0.157,1.378-0.367,2.704-0.64,3.966c-4.499-1.424-7.258,1.886-7.208,5.971c0.011,0.791,0.146,1.574,0.641,2.133
|
33 |
+
c0.851,0.963,3.289,1.193,4.521,0.384c0.238-0.156,0.481-0.441,0.64-0.64c0.119-0.148,0.307-0.539,0.341-0.426
|
34 |
+
c-0.064,0.433-0.161,0.833-0.17,1.322h1.663c0.32-4.599,1.312-8.526,2.047-12.71H75.595z M71.501,31.786
|
35 |
+
c-1.235,0.026-1.85-0.737-1.877-2.005c-0.05-2.218,0.924-4.684,2.9-4.904c0.92-0.104,1.586,0.11,2.26,0.341
|
36 |
+
C74.166,27.71,74.39,31.725,71.501,31.786z M55.678,23.896c-0.09,0.507-0.229,0.965-0.341,1.449
|
37 |
+
c1.082-0.271,4.452-1.104,4.776,0.342c0.107,0.479-0.078,0.99-0.213,1.365c-3.048-0.289-5.531,0.217-6.185,2.388
|
38 |
+
c-0.438,1.454,0.05,2.884,0.981,3.284c1.795,0.769,3.979-0.112,4.733-1.322c-0.078,0.419-0.152,0.842-0.128,1.365h1.578
|
39 |
+
c0.017-1.512,0.236-2.734,0.469-4.096c0.199-1.158,0.571-2.304,0.513-3.326C61.727,23.006,57.849,23.834,55.678,23.896z
|
40 |
+
M58.664,31.062c-0.945,0.925-3.599,1.188-3.327-1.024c0.226-1.836,2.226-2.227,4.393-1.961
|
41 |
+
C59.568,29.08,59.384,30.355,58.664,31.062z"/>
|
42 |
+
</svg>
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="85px"
|
4 |
+
height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
5 |
+
<g id="HSBC">
|
6 |
+
<g>
|
7 |
+
<g>
|
8 |
+
<path fill="#010101" d="M12.581,28.016v-4.601c0-0.598-0.311-1.26-1.818-1.26v-0.392H16.5v0.392c-1.506,0-1.815,0.662-1.815,1.26
|
9 |
+
v10.359c0,0.598,0.309,1.258,1.815,1.258v0.393h-5.737v-0.393c1.507,0,1.818-0.66,1.818-1.258v-4.912H6.327v4.912
|
10 |
+
c0,0.598,0.309,1.258,1.816,1.258v0.393H2.406v-0.393c1.506,0,1.816-0.66,1.816-1.258V23.415c0-0.598-0.31-1.26-1.816-1.26
|
11 |
+
v-0.392h5.737v0.392c-1.507,0-1.816,0.662-1.816,1.26v4.601H12.581"/>
|
12 |
+
<path fill="#010101" d="M16.984,31.276h0.474c0.641,1.919,2.084,3.654,4.272,3.654c1.671,0,2.806-1.445,2.333-3.057
|
13 |
+
c-0.848-2.888-6.479-3.013-6.479-6.953c0-2.043,1.629-3.447,3.652-3.447c2.187,0,3.177,1.527,3.673,0h0.432l0.455,4.397h-0.515
|
14 |
+
c-0.475-1.92-1.838-3.55-3.757-3.55c-1.238,0-2.166,0.68-2.166,1.981c0,1.196,1.299,2.042,2.187,2.579
|
15 |
+
c2.806,1.693,4.705,2.581,4.705,5.056c0,1.857-1.548,3.776-4.353,3.776c-2.146,0-3.632-1.505-3.84,0h-0.454L16.984,31.276"/>
|
16 |
+
<path fill="#010101" d="M33.071,27.872c2.084,0,3.301-0.889,3.301-2.559c0-1.57-0.989-2.417-2.434-2.684
|
17 |
+
c-1.899-0.125-2.56-0.165-2.56,0.557v4.686H33.071 M31.378,33.566c0,0.724,0.187,1.095,1.693,1.095
|
18 |
+
c2.145,0,3.735-0.64,3.735-3.054c0-2.456-2.456-2.91-4.396-2.91h-1.033L31.378,33.566L31.378,33.566z M29.273,23.415
|
19 |
+
c0-0.598-0.31-1.26-1.98-1.26v-0.392h5.529c3.179,0,5.655,0.847,5.655,3.489c0,1.732-1.157,2.621-2.744,2.971v0.041
|
20 |
+
c1.773,0.33,3.444,1.424,3.444,3.405c0,2.477-2.145,3.755-5.385,3.755h-6.5v-0.393c1.67,0,1.98-0.66,1.98-1.258V23.415z"/>
|
21 |
+
<path fill="#010101" d="M51.564,26.012h-0.495c-0.598-2.27-2.104-3.817-4.457-3.817c-3.404,0-4.87,2.744-4.87,6.458
|
22 |
+
c0,2.891,1.506,6.006,4.892,6.006c2.022,0,3.403-0.661,4.828-2.063l0.351,0.412c-1.259,1.548-3.385,2.581-5.365,2.581
|
23 |
+
c-4.023,0-7.098-2.581-7.098-7.1c0-4.107,2.908-7.142,7.057-7.142c2.827,0,3.859,1.694,4.542,0.022h0.432L51.564,26.012"/>
|
24 |
+
<rect x="62.71" y="21.391" fill="#FFFFFF" width="13.879" height="13.88"/>
|
25 |
+
<polyline fill="#EF3925" points="62.71,21.38 76.589,21.38 69.65,28.32 62.71,21.38 "/>
|
26 |
+
<polyline fill="#EF3925" points="62.71,35.26 76.589,35.26 69.65,28.32 62.71,35.26 "/>
|
27 |
+
<polyline fill="#EF3925" points="62.71,21.38 62.71,35.26 55.77,28.32 62.71,21.38 "/>
|
28 |
+
<polyline fill="#EF3925" points="76.589,21.38 76.589,35.26 83.529,28.32 76.589,21.38 "/>
|
29 |
+
</g>
|
30 |
+
</g>
|
31 |
+
</g>
|
32 |
+
</svg>
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="85px"
|
4 |
+
height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
5 |
+
<g id="itau">
|
6 |
+
<rect fill="#F58220" width="85" height="55"/>
|
7 |
+
<g>
|
8 |
+
<path fill="#2E368F" d="M29.956,6.558l27.84,0.018c4.379,0,7.97,3.607,7.951,7.987v27.842c0,4.379-3.589,7.968-7.987,7.968
|
9 |
+
l-27.858-0.018c-4.38-0.017-7.97-3.591-7.97-7.988l0.036-27.839C21.968,10.147,25.558,6.54,29.956,6.558L29.956,6.558z"/>
|
10 |
+
<path fill="#FCEE23" d="M59.591,26.536h-3.177l-1.312,2.495h2.227L59.591,26.536L59.591,26.536z M61.69,30.593h-3.087v6.677
|
11 |
+
c0,2.046-1.383,2.62-2.389,2.62c-0.969,0-2.026-0.358-2.009-2.137v-7.16H51.1l-0.018,7.61c0,2.942,1.688,4.254,4.021,4.254
|
12 |
+
c1.616,0.019,2.873-0.701,3.571-1.938h0.037v1.614h2.979V30.593L61.69,30.593z"/>
|
13 |
+
<path fill="#FCEE23" d="M48.677,33.643c0-2.854-2.999-3.374-4.667-3.374c-2.423,0-4.918,0.521-5.295,4.058h2.998
|
14 |
+
c0.09-0.684,0.377-1.616,1.92-1.616c0.789,0,2.045,0.072,2.045,1.346c0,0.647-0.609,0.844-1.111,0.915l-2.782,0.414
|
15 |
+
c-1.974,0.269-3.446,1.437-3.446,3.696c0,2.388,1.831,3.375,3.589,3.375c2.119,0,3.124-0.97,3.807-1.668
|
16 |
+
c0.071,0.626,0.125,0.79,0.305,1.345l2.656-0.019c0-1.274-0.019-2.207-0.019-2.225V33.643L48.677,33.643z"/>
|
17 |
+
<path fill="#FCEE23" d="M35.484,26.536h-3.087v4.04h-1.598v2.171h1.581v7.018c0,1.491,0.484,2.515,3.158,2.515h0.413
|
18 |
+
c0.485,0,0.988-0.037,1.455-0.056v-2.315c-0.216,0.021-0.449,0.055-0.646,0.055c-1.256,0-1.293-0.251-1.293-0.95l0.018-6.266
|
19 |
+
h1.938v-2.171h-1.938V26.536L35.484,26.536z"/>
|
20 |
+
<polygon fill="#FCEE23" points="29.364,26.518 26.025,26.518 26.007,42.115 29.346,42.115 "/>
|
21 |
+
<path fill="#2E368F" d="M45.678,38.006v-1.492c-0.322,0.235-0.841,0.433-2.116,0.612c-1.167,0.196-2.117,0.501-2.117,1.759
|
22 |
+
c0,1.043,0.861,1.384,1.454,1.384C44.262,40.269,45.678,39.404,45.678,38.006L45.678,38.006z"/>
|
23 |
+
</g>
|
24 |
+
</g>
|
25 |
+
</svg>
|
@@ -0,0 +1,712 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="85px"
|
3 |
+
height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
4 |
+
<g id="JCB">
|
5 |
+
<g display="inline">
|
6 |
+
|
7 |
+
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="22.9116" y1="3.3096" x2="44.688" y2="3.3096" gradientTransform="matrix(1 0 0 -1 8.3999 31.1602)">
|
8 |
+
<stop offset="0" style="stop-color:#663034"/>
|
9 |
+
<stop offset="0.4462" style="stop-color:#9B323D"/>
|
10 |
+
<stop offset="0.8112" style="stop-color:#C42D43"/>
|
11 |
+
<stop offset="1" style="stop-color:#D92946"/>
|
12 |
+
</linearGradient>
|
13 |
+
<path fill="url(#SVGID_1_)" d="M33.772,47.94h10.005l0,0l0,0h0.003l0,0l0,0h0.003h0.001c0.021-0.002,0.044-0.004,0.064-0.004
|
14 |
+
c0.022,0,0.042,0,0.063-0.003l0.065-0.004l0.063-0.002c0.022-0.004,0.044-0.004,0.066-0.004c0.021-0.002,0.043-0.007,0.063-0.007
|
15 |
+
l0.065-0.004c0.022-0.004,0.043-0.006,0.063-0.006c0.021-0.005,0.044-0.007,0.065-0.009c0.022-0.002,0.043-0.004,0.063-0.009
|
16 |
+
c0.022-0.002,0.044-0.006,0.066-0.008l0.064-0.009c0.021-0.004,0.042-0.004,0.064-0.01c0.021-0.003,0.044-0.007,0.064-0.011
|
17 |
+
c0.022-0.002,0.042-0.007,0.063-0.009l0.065-0.012l0.063-0.013c0.022-0.005,0.044-0.009,0.066-0.013
|
18 |
+
c0.021-0.004,0.04-0.011,0.063-0.013l0.065-0.017l0.063-0.015c0.021-0.004,0.044-0.011,0.065-0.017
|
19 |
+
c0.021-0.002,0.043-0.009,0.063-0.015c0.022-0.007,0.044-0.013,0.066-0.017c0.021-0.007,0.042-0.013,0.063-0.02l0.065-0.019
|
20 |
+
l0.063-0.019c0.021-0.007,0.043-0.013,0.064-0.02c0.022-0.006,0.044-0.015,0.064-0.021c0.021-0.006,0.043-0.013,0.064-0.019
|
21 |
+
l0.063-0.023l0.065-0.022c0.021-0.009,0.044-0.018,0.063-0.023c0.022-0.009,0.044-0.017,0.065-0.025
|
22 |
+
c0.021-0.008,0.044-0.017,0.065-0.024c0.02-0.009,0.042-0.018,0.063-0.025l0.066-0.027l0.063-0.027l0.066-0.027
|
23 |
+
c0.02-0.01,0.044-0.019,0.063-0.029c0.021-0.01,0.044-0.021,0.065-0.031c0.022-0.008,0.044-0.019,0.064-0.029
|
24 |
+
c0.021-0.01,0.043-0.021,0.064-0.031c0.022-0.011,0.044-0.021,0.063-0.033c0.022-0.009,0.043-0.021,0.065-0.033l0.063-0.032
|
25 |
+
l0.065-0.037l0.065-0.036c0.02-0.012,0.042-0.024,0.063-0.037c0.022-0.013,0.044-0.025,0.066-0.038
|
26 |
+
c0.021-0.013,0.042-0.024,0.063-0.037c0.021-0.013,0.044-0.027,0.065-0.04c0.022-0.013,0.042-0.025,0.063-0.042
|
27 |
+
c0.021-0.013,0.044-0.027,0.065-0.039c0.022-0.018,0.042-0.029,0.064-0.044c0.021-0.015,0.042-0.032,0.064-0.044
|
28 |
+
c0.021-0.018,0.044-0.032,0.063-0.044c0.021-0.018,0.043-0.032,0.065-0.049c0.021-0.015,0.044-0.031,0.063-0.046
|
29 |
+
c0.021-0.017,0.043-0.035,0.064-0.05c0.022-0.017,0.044-0.034,0.064-0.051c0.021-0.017,0.043-0.033,0.064-0.05
|
30 |
+
c0.022-0.019,0.044-0.035,0.066-0.055c0.02-0.015,0.042-0.033,0.063-0.052c0.021-0.02,0.044-0.038,0.065-0.055
|
31 |
+
c0.022-0.019,0.042-0.04,0.063-0.059s0.044-0.038,0.065-0.057c0.022-0.019,0.042-0.042,0.063-0.061
|
32 |
+
c0.022-0.021,0.044-0.04,0.066-0.063c0.021-0.02,0.043-0.04,0.062-0.063c0.022-0.021,0.044-0.042,0.066-0.063
|
33 |
+
c0.021-0.021,0.044-0.044,0.064-0.066c0.021-0.023,0.042-0.046,0.063-0.067c0.022-0.025,0.044-0.048,0.065-0.071
|
34 |
+
c0.021-0.022,0.042-0.048,0.063-0.073c0.022-0.024,0.044-0.05,0.064-0.075c0.022-0.024,0.044-0.05,0.064-0.075
|
35 |
+
c0.021-0.025,0.044-0.052,0.064-0.079c0.022-0.027,0.044-0.053,0.064-0.082c0.021-0.027,0.044-0.057,0.065-0.084
|
36 |
+
c0.021-0.029,0.043-0.056,0.063-0.088c0.022-0.028,0.044-0.061,0.066-0.087c0.021-0.032,0.043-0.063,0.063-0.095
|
37 |
+
c0.022-0.031,0.044-0.064,0.066-0.099c0.021-0.033,0.044-0.064,0.063-0.1c0.021-0.034,0.044-0.069,0.065-0.104
|
38 |
+
c0.022-0.036,0.044-0.071,0.065-0.109c0.021-0.037,0.042-0.075,0.063-0.115c0.022-0.039,0.044-0.079,0.064-0.119
|
39 |
+
c0.022-0.042,0.044-0.086,0.064-0.125c0.021-0.044,0.044-0.09,0.064-0.137c0.022-0.044,0.044-0.092,0.064-0.14
|
40 |
+
c0.021-0.048,0.043-0.099,0.065-0.15c0.021-0.055,0.043-0.107,0.063-0.161c0.022-0.059,0.044-0.117,0.066-0.176
|
41 |
+
c0.021-0.065,0.044-0.128,0.063-0.194c0.024-0.069,0.044-0.141,0.065-0.214c0.022-0.084,0.044-0.165,0.063-0.251
|
42 |
+
c0.024-0.099,0.047-0.199,0.065-0.302c0.025-0.131,0.047-0.266,0.065-0.399c0.029-0.234,0.047-0.471,0.051-0.713V7.761h-0.051
|
43 |
+
h-0.065h-0.065h-0.063h-0.065h-0.063h-0.066h-0.063h-0.065h-0.064h-0.064h-0.064h-0.064H49.39h-0.065h-0.065h-0.063H49.13h-0.063
|
44 |
+
h-0.066h-0.063h-0.065h-0.064h-0.064H48.68h-0.064h-0.063h-0.065h-0.063h-0.064h-0.066H48.23h-0.066h-0.063h-0.065h-0.063h-0.065
|
45 |
+
h-0.063h-0.066h-0.064h-0.064h-0.064h-0.063h-0.065h-0.063h-0.064h-0.064h-0.065h-0.063h-0.065h-0.063H46.94h-0.063h-0.065h-0.065
|
46 |
+
h-0.063h-0.065h-0.063H46.49h-0.064H46.36h-0.063h-0.066h-0.063h-0.066H46.04h-0.065h-0.065h-0.063H45.78h-0.063h-0.064h-0.064
|
47 |
+
h-0.064H45.46h-0.065h-0.063h-0.066h-0.063h-0.065h-0.063h-0.065h-0.063h-0.066h-0.063H44.75h-0.063h-0.064h-0.064h-0.064h-0.066
|
48 |
+
h-0.063h-0.065h-0.063H44.17h-0.063h-0.066h-0.063h-0.065h-0.063h-0.064H43.72h-0.064h-0.063h-0.065h-0.063h-0.065h-0.063H43.27
|
49 |
+
h-0.066h-0.063h-0.066h-0.063h-0.064h-0.064h-0.064h-0.063h-0.065h-0.063h-0.064h-0.065h-0.063h-0.065h-0.063h-0.064h-0.064
|
50 |
+
h-0.064h-0.065H41.98h-0.065h-0.063h-0.065h-0.064h-0.065h-0.063h-0.066h-0.064H41.4h-0.063h-0.065h-0.064h-0.065h-0.063h-0.065
|
51 |
+
h-0.065h-0.064h-0.064h-0.064h-0.065h-0.065h-0.063h-0.065h-0.036h-0.028c-0.022,0-0.044,0-0.065,0
|
52 |
+
c-0.022,0.001-0.043,0.001-0.063,0.001c-0.022,0-0.044,0.001-0.065,0.002l-0.064,0.003c-0.022,0.001-0.044,0.001-0.066,0.002
|
53 |
+
c-0.021,0.001-0.043,0.003-0.064,0.005c-0.021,0-0.042,0.002-0.064,0.003c-0.021,0.002-0.043,0.003-0.064,0.006L39.848,7.79
|
54 |
+
c-0.022,0.002-0.044,0.004-0.064,0.006c-0.021,0.002-0.042,0.005-0.064,0.008l-0.065,0.007L39.59,7.819
|
55 |
+
c-0.021,0.002-0.042,0.005-0.064,0.008c-0.021,0.003-0.043,0.006-0.064,0.009c-0.022,0.004-0.043,0.007-0.065,0.011l-0.065,0.01
|
56 |
+
l-0.063,0.011c-0.022,0.004-0.044,0.009-0.065,0.012c-0.022,0.005-0.043,0.008-0.064,0.013c-0.022,0.004-0.044,0.009-0.065,0.014
|
57 |
+
l-0.063,0.014c-0.022,0.004-0.044,0.009-0.065,0.015c-0.022,0.004-0.043,0.01-0.065,0.016c-0.021,0.005-0.043,0.01-0.065,0.016
|
58 |
+
c-0.021,0.005-0.043,0.011-0.064,0.017l-0.064,0.018c-0.021,0.006-0.043,0.011-0.064,0.018c-0.022,0.006-0.043,0.014-0.065,0.02
|
59 |
+
s-0.043,0.012-0.064,0.019c-0.022,0.007-0.042,0.014-0.064,0.021l-0.064,0.021c-0.022,0.007-0.044,0.014-0.065,0.022
|
60 |
+
c-0.022,0.007-0.044,0.015-0.065,0.023c-0.021,0.007-0.042,0.015-0.063,0.022c-0.022,0.008-0.043,0.016-0.065,0.024
|
61 |
+
c-0.021,0.009-0.043,0.017-0.064,0.024c-0.022,0.009-0.043,0.017-0.065,0.026l-0.063,0.026c-0.022,0.009-0.044,0.018-0.065,0.028
|
62 |
+
c-0.022,0.008-0.044,0.019-0.065,0.028c-0.021,0.01-0.043,0.018-0.064,0.028c-0.022,0.009-0.044,0.02-0.064,0.03
|
63 |
+
c-0.022,0.01-0.043,0.02-0.064,0.03c-0.022,0.011-0.044,0.021-0.065,0.032l-0.064,0.032l-0.066,0.033
|
64 |
+
c-0.021,0.011-0.042,0.023-0.063,0.035s-0.043,0.023-0.065,0.035C37.25,8.588,37.228,8.6,37.207,8.612
|
65 |
+
c-0.022,0.012-0.043,0.024-0.065,0.036c-0.021,0.012-0.042,0.025-0.063,0.038c-0.021,0.012-0.048,0.026-0.069,0.039
|
66 |
+
c-0.022,0.013-0.042,0.027-0.064,0.04c-0.022,0.014-0.044,0.027-0.065,0.041c-0.021,0.014-0.043,0.028-0.064,0.041
|
67 |
+
c-0.022,0.016-0.043,0.028-0.065,0.043c-0.021,0.014-0.043,0.029-0.063,0.044c-0.022,0.015-0.043,0.029-0.065,0.044
|
68 |
+
c-0.022,0.015-0.043,0.031-0.064,0.046c-0.022,0.016-0.044,0.031-0.065,0.047c-0.022,0.017-0.043,0.032-0.064,0.049
|
69 |
+
c-0.021,0.017-0.043,0.033-0.064,0.049c-0.022,0.017-0.044,0.034-0.065,0.051c-0.021,0.018-0.043,0.035-0.064,0.052
|
70 |
+
c-0.022,0.018-0.044,0.036-0.064,0.054c-0.022,0.018-0.043,0.036-0.064,0.054c-0.022,0.019-0.044,0.038-0.065,0.057
|
71 |
+
C36.021,9.455,36,9.474,35.978,9.493c-0.021,0.02-0.043,0.041-0.065,0.06c-0.021,0.021-0.042,0.041-0.063,0.061
|
72 |
+
c-0.022,0.021-0.043,0.041-0.065,0.063c-0.022,0.021-0.043,0.042-0.064,0.063c-0.022,0.022-0.043,0.045-0.065,0.067
|
73 |
+
s-0.042,0.044-0.063,0.067c-0.022,0.022-0.043,0.046-0.065,0.07c-0.022,0.023-0.044,0.048-0.064,0.072
|
74 |
+
c-0.022,0.025-0.044,0.049-0.065,0.073c-0.022,0.025-0.044,0.051-0.064,0.077c-0.022,0.025-0.043,0.052-0.064,0.078
|
75 |
+
c-0.022,0.026-0.043,0.053-0.065,0.08s-0.043,0.056-0.064,0.084c-0.021,0.028-0.042,0.058-0.064,0.086
|
76 |
+
c-0.022,0.029-0.044,0.059-0.064,0.089c-0.022,0.03-0.044,0.062-0.065,0.093c-0.022,0.031-0.044,0.063-0.065,0.096
|
77 |
+
c-0.022,0.033-0.042,0.066-0.063,0.099c-0.022,0.034-0.044,0.069-0.065,0.104c-0.022,0.036-0.043,0.072-0.064,0.108
|
78 |
+
c-0.022,0.038-0.044,0.076-0.065,0.113c-0.022,0.039-0.044,0.078-0.063,0.118c-0.022,0.042-0.044,0.083-0.066,0.124
|
79 |
+
c-0.022,0.043-0.043,0.086-0.064,0.13c-0.022,0.047-0.044,0.093-0.065,0.139c-0.022,0.049-0.044,0.098-0.063,0.147
|
80 |
+
c-0.022,0.052-0.044,0.106-0.065,0.159c-0.022,0.057-0.044,0.114-0.064,0.171c-0.023,0.062-0.044,0.125-0.065,0.188
|
81 |
+
c-0.022,0.069-0.044,0.138-0.065,0.208c-0.023,0.079-0.043,0.158-0.063,0.238c-0.024,0.093-0.045,0.186-0.065,0.281
|
82 |
+
c-0.09,0.438-0.138,0.894-0.138,1.359v8.769c0.045-0.039,0.091-0.078,0.138-0.115l0,0c0.021-0.018,0.043-0.035,0.065-0.052
|
83 |
+
s0.043-0.034,0.063-0.05c0.022-0.016,0.043-0.033,0.065-0.049c0.022-0.016,0.043-0.031,0.065-0.047
|
84 |
+
c0.021-0.016,0.043-0.032,0.064-0.047c0.022-0.016,0.044-0.03,0.065-0.045l0.063-0.044c0.022-0.014,0.044-0.028,0.065-0.043
|
85 |
+
l0.064-0.042c0.022-0.013,0.044-0.027,0.066-0.041c0.021-0.013,0.042-0.027,0.063-0.04c0.021-0.014,0.043-0.026,0.065-0.04
|
86 |
+
c0.021-0.014,0.043-0.026,0.064-0.039s0.043-0.025,0.065-0.037c0.021-0.013,0.043-0.025,0.063-0.037l0.065-0.036l0.065-0.035
|
87 |
+
c0.021-0.011,0.042-0.023,0.064-0.034c0.022-0.012,0.044-0.022,0.064-0.034l0.064-0.033l0.065-0.033l0.064-0.03
|
88 |
+
c0.022-0.01,0.042-0.021,0.064-0.031l0.065-0.03l0.064-0.029l0.065-0.029l0.063-0.028l0.065-0.027l0.064-0.026l0.065-0.027
|
89 |
+
l0.063-0.026l0.065-0.025c0.022-0.008,0.043-0.016,0.065-0.024l0.065-0.025c0.021-0.008,0.043-0.016,0.064-0.023
|
90 |
+
c0.021-0.008,0.042-0.016,0.064-0.023l0.064-0.023l0.065-0.022c0.022-0.008,0.043-0.015,0.064-0.022l0.064-0.021
|
91 |
+
c0.022-0.007,0.044-0.014,0.065-0.021l0.064-0.02l0.065-0.021l0.063-0.02l0.065-0.019l0.064-0.019l0.065-0.019l0.064-0.018
|
92 |
+
l0.064-0.017l0.065-0.018l0.064-0.017l0.064-0.017l0.064-0.017l0.065-0.015l0.065-0.016l0.065-0.015l0.063-0.015l0.065-0.015
|
93 |
+
l0.064-0.014l0.065-0.014l0.063-0.013l0.065-0.014l0.064-0.013l0.064-0.013l0.065-0.012l0.064-0.012l0.065-0.012l0.063-0.011
|
94 |
+
l0.065-0.011l0.064-0.011l0.065-0.011l0.065-0.01l0.063-0.009l0.065-0.01l0.064-0.01l0.066-0.009l0.063-0.009l0.066-0.008
|
95 |
+
l0.064-0.008l0.065-0.009l0.063-0.008l0.065-0.008l0.064-0.007l0.065-0.008l0.064-0.007l0.064-0.006l0.065-0.007l0.064-0.006
|
96 |
+
l0.064-0.006l0.064-0.006l0.065-0.006l0.065-0.005l0.063-0.005l0.065-0.005l0.064-0.005l0.065-0.005l0.063-0.004l0.065-0.005
|
97 |
+
l0.065-0.003l0.065-0.004l0.064-0.003l0.064-0.004l0.064-0.003l0.065-0.003l0.064-0.003l0.064-0.002l0.064-0.003l0.065-0.002
|
98 |
+
l0.065-0.002l0.063-0.002l0.065-0.002l0.064-0.001l0.065-0.001l0.063-0.002l0.065-0.001l0.065,0l0.064-0.001l0.064,0l0.064-0.001
|
99 |
+
h0.065l0.064,0h0.066h0.063h0.065l0.064,0h0.065h0.063l0.064,0.001l0.065,0l0.063,0.001l0.065,0.001l0.063,0.001l0.064,0.001
|
100 |
+
l0.064,0.001l0.064,0.001l0.065,0.002l0.063,0.002l0.064,0.002l0.064,0.002l0.064,0.002l0.063,0.003l0.066,0.002l0.063,0.003
|
101 |
+
l0.031,0.001l0.035,0.001l0.063,0.003l0.065,0.004l0.063,0.003l0.065,0.004l0.063,0.003l0.066,0.005l0.064,0.004l0.064,0.005
|
102 |
+
l0.064,0.005l0.063,0.005l0.065,0.004l0.063,0.006l0.064,0.006l0.064,0.005l0.064,0.006l0.064,0.006l0.065,0.006l0.064,0.006
|
103 |
+
l0.064,0.007l0.064,0.006l0.064,0.007l0.064,0.008l0.063,0.007l0.065,0.008l0.063,0.008l0.064,0.008l0.064,0.008l0.065,0.008
|
104 |
+
l0.063,0.008l0.066,0.009l0.063,0.009l0.066,0.009l0.063,0.009l0.065,0.009l0.064,0.008l0.064,0.01l0.064,0.01l0.064,0.009
|
105 |
+
l0.063,0.01l0.065,0.009l0.063,0.011l0.064,0.01l0.066,0.01l0.063,0.01l0.066,0.011l0.063,0.011l0.065,0.011l0.063,0.011
|
106 |
+
l0.065,0.011l0.063,0.011l0.065,0.012l0.063,0.012l0.065,0.011l0.063,0.012l0.064,0.013l0.064,0.011l0.064,0.013l0.066,0.012
|
107 |
+
l0.063,0.012l0.065,0.013l0.063,0.013l0.065,0.012l0.063,0.013l0.066,0.014l0.063,0.013l0.065,0.014l0.063,0.013l0.064,0.014
|
108 |
+
l0.064,0.014l0.064,0.014l0.063,0.014l0.065,0.014l0.065,0.014l0.063,0.015l0.065,0.015l0.063,0.014l0.066,0.015l0.063,0.016
|
109 |
+
l0.064,0.015l0.065,0.016l0.063,0.016v2.835l-0.063-0.032l-0.065-0.032l-0.064-0.032l-0.063-0.032l-0.066-0.031l-0.063-0.031
|
110 |
+
l-0.065-0.03l-0.063-0.031l-0.065-0.03l-0.065-0.03l-0.063-0.028l-0.064-0.029l-0.064-0.029l-0.064-0.028l-0.063-0.028
|
111 |
+
l-0.065-0.028l-0.063-0.027l-0.066-0.026l-0.063-0.026l-0.065-0.026l-0.063-0.026l-0.065-0.025l-0.063-0.025l-0.066-0.025
|
112 |
+
l-0.064-0.024l-0.064-0.024l-0.064-0.023l-0.063-0.023l-0.065-0.022l-0.063-0.023l-0.065-0.022l-0.063-0.022l-0.065-0.021
|
113 |
+
l-0.063-0.021l-0.065-0.021l-0.063-0.02l-0.066-0.02l-0.063-0.02l-0.066-0.019l-0.064-0.02l-0.063-0.018l-0.065-0.018
|
114 |
+
l-0.063-0.017l-0.064-0.018l-0.064-0.017l-0.064-0.017l-0.064-0.016l-0.065-0.015l-0.063-0.016l-0.066-0.015l-0.063-0.015
|
115 |
+
l-0.066-0.014l-0.063-0.014l-0.065-0.014l-0.064-0.013l-0.064-0.013l-0.063-0.012L44.675,23.4l-0.063-0.012l-0.064-0.012
|
116 |
+
l-0.064-0.011l-0.064-0.011l-0.064-0.01l-0.064-0.01l-0.065-0.009l-0.064-0.01l-0.064-0.008l-0.064-0.009l-0.064-0.008
|
117 |
+
l-0.063-0.008l-0.065-0.007l-0.063-0.007l-0.064-0.007l-0.064-0.007l-0.064-0.006l-0.066-0.006l-0.063-0.005l-0.065-0.005
|
118 |
+
l-0.038-0.003l-0.025-0.003l-0.065-0.003l-0.063-0.005l-0.066-0.003l-0.063-0.003l-0.066-0.003l-0.063-0.003l-0.064-0.002
|
119 |
+
l-0.064-0.001l-0.064-0.001l-0.063,0c-0.022,0-0.043,0-0.065,0l-0.064,0l-0.064,0.001l-0.064,0.001l-0.063,0.001
|
120 |
+
c-0.022,0-0.043,0.002-0.065,0.002c-0.021,0.001-0.043,0.001-0.063,0.003l-0.065,0.003l-0.064,0.004l-0.063,0.005l-0.065,0.004
|
121 |
+
c-0.021,0.002-0.043,0.004-0.064,0.005c-0.022,0.001-0.044,0.004-0.065,0.006l-0.063,0.006l-0.065,0.008l-0.065,0.008
|
122 |
+
l-0.064,0.009l-0.065,0.008l-0.064,0.011c-0.021,0.003-0.043,0.007-0.064,0.01c-0.021,0.004-0.043,0.007-0.065,0.011
|
123 |
+
s-0.043,0.008-0.064,0.012c-0.021,0.004-0.042,0.008-0.064,0.013c-0.022,0.003-0.043,0.008-0.064,0.013
|
124 |
+
c-0.022,0.004-0.044,0.009-0.065,0.014c-0.021,0.004-0.043,0.01-0.065,0.015l-0.063,0.016c-0.022,0.004-0.043,0.01-0.065,0.016
|
125 |
+
c-0.022,0.006-0.043,0.011-0.064,0.017c-0.022,0.006-0.043,0.012-0.065,0.019l-0.063,0.018c-0.022,0.006-0.043,0.014-0.065,0.02
|
126 |
+
c-0.022,0.007-0.044,0.013-0.065,0.02s-0.043,0.014-0.064,0.021c-0.022,0.007-0.044,0.015-0.064,0.022
|
127 |
+
c-0.022,0.007-0.043,0.015-0.064,0.024c-0.022,0.006-0.044,0.016-0.065,0.023c-0.022,0.008-0.043,0.016-0.064,0.025
|
128 |
+
c-0.022,0.008-0.044,0.017-0.064,0.026c-0.022,0.009-0.043,0.018-0.065,0.027c-0.021,0.01-0.043,0.018-0.065,0.028
|
129 |
+
c-0.021,0.01-0.043,0.02-0.064,0.029c-0.021,0.011-0.043,0.021-0.065,0.031c-0.022,0.011-0.042,0.022-0.063,0.032
|
130 |
+
c-0.022,0.011-0.043,0.022-0.065,0.034c-0.022,0.011-0.044,0.022-0.065,0.034s-0.042,0.024-0.063,0.036
|
131 |
+
c-0.022,0.012-0.044,0.025-0.066,0.038c-0.021,0.013-0.043,0.025-0.064,0.039c-0.022,0.013-0.043,0.027-0.065,0.041
|
132 |
+
c-0.022,0.013-0.043,0.027-0.064,0.041c-0.022,0.014-0.042,0.029-0.064,0.044c-0.022,0.015-0.043,0.031-0.064,0.045
|
133 |
+
c-0.022,0.016-0.044,0.032-0.065,0.047c-0.022,0.017-0.044,0.034-0.065,0.05c-0.021,0.017-0.042,0.034-0.063,0.052
|
134 |
+
c-0.022,0.017-0.044,0.036-0.065,0.053c-0.022,0.019-0.043,0.038-0.064,0.057c-0.022,0.02-0.044,0.039-0.065,0.06
|
135 |
+
c-0.022,0.021-0.042,0.04-0.063,0.061c-0.022,0.021-0.044,0.042-0.066,0.064c-0.021,0.022-0.043,0.045-0.064,0.068
|
136 |
+
c-0.022,0.023-0.043,0.047-0.065,0.071c-0.022,0.024-0.043,0.05-0.063,0.075c-0.022,0.026-0.043,0.053-0.065,0.079
|
137 |
+
c-0.022,0.028-0.043,0.056-0.064,0.084c-0.022,0.029-0.044,0.059-0.065,0.088c-0.022,0.031-0.044,0.063-0.063,0.094
|
138 |
+
c-0.022,0.033-0.044,0.067-0.065,0.102c-0.022,0.036-0.043,0.071-0.065,0.108c-0.022,0.038-0.043,0.077-0.064,0.116
|
139 |
+
c-0.022,0.041-0.043,0.084-0.065,0.125c-0.021,0.046-0.043,0.092-0.063,0.138c-0.023,0.05-0.044,0.102-0.065,0.154
|
140 |
+
c-0.022,0.057-0.044,0.114-0.064,0.172c-0.024,0.065-0.045,0.131-0.064,0.198c-0.023,0.078-0.045,0.156-0.065,0.236
|
141 |
+
c-0.024,0.1-0.045,0.202-0.064,0.306c-0.028,0.154-0.05,0.312-0.065,0.474c-0.017,0.188-0.026,0.382-0.026,0.58
|
142 |
+
c0,0.199,0.009,0.393,0.026,0.581c0.015,0.162,0.037,0.319,0.065,0.474c0.019,0.104,0.04,0.206,0.064,0.304
|
143 |
+
c0.02,0.081,0.042,0.159,0.065,0.238c0.02,0.065,0.042,0.132,0.064,0.196c0.02,0.059,0.042,0.117,0.064,0.174
|
144 |
+
c0.021,0.051,0.043,0.101,0.065,0.153c0.02,0.046,0.042,0.092,0.063,0.138c0.022,0.042,0.043,0.084,0.065,0.126
|
145 |
+
c0.021,0.039,0.042,0.079,0.064,0.117c0.022,0.035,0.044,0.07,0.065,0.106c0.021,0.035,0.043,0.068,0.065,0.101
|
146 |
+
c0.02,0.033,0.042,0.064,0.063,0.094c0.022,0.031,0.043,0.061,0.065,0.09c0.021,0.027,0.043,0.057,0.064,0.084
|
147 |
+
c0.022,0.025,0.044,0.052,0.065,0.077c0.021,0.025,0.042,0.053,0.063,0.075c0.022,0.025,0.044,0.048,0.065,0.071
|
148 |
+
s0.043,0.046,0.064,0.069c0.022,0.021,0.044,0.044,0.066,0.064c0.021,0.019,0.042,0.04,0.063,0.061
|
149 |
+
c0.021,0.02,0.043,0.04,0.065,0.059c0.021,0.019,0.042,0.038,0.064,0.057c0.021,0.019,0.043,0.035,0.065,0.055
|
150 |
+
c0.021,0.017,0.043,0.033,0.063,0.052c0.022,0.017,0.043,0.031,0.065,0.049c0.022,0.017,0.043,0.031,0.065,0.048
|
151 |
+
c0.021,0.015,0.042,0.029,0.064,0.046c0.022,0.015,0.042,0.029,0.064,0.044c0.021,0.015,0.043,0.027,0.064,0.042
|
152 |
+
c0.022,0.013,0.044,0.027,0.065,0.04c0.021,0.012,0.043,0.026,0.064,0.039c0.022,0.013,0.044,0.023,0.066,0.036
|
153 |
+
c0.021,0.012,0.042,0.024,0.063,0.037c0.022,0.011,0.043,0.021,0.065,0.033c0.022,0.011,0.044,0.023,0.065,0.034
|
154 |
+
c0.021,0.01,0.043,0.021,0.063,0.031c0.022,0.011,0.044,0.021,0.065,0.031c0.021,0.009,0.043,0.019,0.064,0.029
|
155 |
+
c0.022,0.011,0.044,0.019,0.065,0.029c0.022,0.009,0.043,0.017,0.065,0.027c0.021,0.008,0.042,0.017,0.064,0.025
|
156 |
+
c0.021,0.008,0.042,0.017,0.064,0.024c0.021,0.009,0.043,0.017,0.065,0.023c0.021,0.008,0.043,0.017,0.064,0.022
|
157 |
+
c0.021,0.009,0.042,0.015,0.064,0.023c0.022,0.006,0.043,0.015,0.064,0.021c0.022,0.007,0.043,0.013,0.065,0.021
|
158 |
+
c0.022,0.006,0.043,0.013,0.065,0.019c0.021,0.006,0.042,0.013,0.063,0.019c0.022,0.007,0.043,0.011,0.065,0.017
|
159 |
+
c0.021,0.007,0.043,0.013,0.064,0.018c0.022,0.006,0.044,0.012,0.065,0.017l0.063,0.015c0.022,0.006,0.044,0.01,0.065,0.015
|
160 |
+
c0.022,0.006,0.044,0.01,0.065,0.015c0.021,0.004,0.043,0.008,0.064,0.015c0.022,0.002,0.044,0.006,0.064,0.01
|
161 |
+
c0.021,0.005,0.043,0.009,0.064,0.013c0.022,0.005,0.044,0.009,0.065,0.011c0.022,0.004,0.043,0.006,0.064,0.011
|
162 |
+
c0.022,0.004,0.044,0.006,0.064,0.01l0.065,0.009l0.064,0.009l0.065,0.008l0.065,0.009l0.063,0.006
|
163 |
+
c0.022,0.002,0.043,0.004,0.065,0.007c0.021,0.002,0.043,0.002,0.064,0.004l0.065,0.004l0.063,0.007l0.064,0.004l0.065,0.002
|
164 |
+
c0.021,0.002,0.043,0.002,0.063,0.004c0.022,0,0.044,0,0.065,0.002h0.063l0.064,0.003l0.064,0.002h0.064c0.022,0,0.044,0,0.065,0
|
165 |
+
h0.063l0.064-0.002l0.064-0.003l0.064-0.002l0.063-0.002l0.066-0.002l0.063-0.004l0.066-0.005l0.063-0.004l0.065-0.004
|
166 |
+
l0.025-0.002l0.038-0.002l0.065-0.005l0.063-0.006l0.066-0.007l0.064-0.006l0.064-0.006l0.064-0.007l0.063-0.008l0.065-0.007
|
167 |
+
l0.063-0.011l0.064-0.006l0.064-0.009l0.064-0.01l0.064-0.009l0.065-0.011l0.064-0.01l0.064-0.011l0.064-0.011l0.064-0.01
|
168 |
+
l0.064-0.013l0.063-0.011l0.065-0.013l0.063-0.013l0.064-0.013l0.064-0.015l0.065-0.015l0.063-0.012l0.066-0.015l0.063-0.015
|
169 |
+
l0.066-0.015l0.063-0.017l0.065-0.015l0.064-0.018l0.064-0.017l0.064-0.017l0.064-0.017l0.063-0.019l0.065-0.017l0.063-0.02
|
170 |
+
l0.064-0.019l0.066-0.019l0.063-0.021l0.066-0.019l0.063-0.021l0.065-0.021l0.063-0.021l0.065-0.021l0.063-0.021l0.065-0.023
|
171 |
+
l0.063-0.021l0.065-0.023l0.063-0.022l0.064-0.025l0.064-0.022l0.064-0.025l0.066-0.025l0.063-0.022l0.065-0.025l0.063-0.027
|
172 |
+
l0.065-0.025l0.063-0.027l0.066-0.024l0.063-0.029l0.065-0.027l0.063-0.027l0.064-0.027l0.064-0.029l0.064-0.029l0.063-0.029
|
173 |
+
l0.065-0.029l0.065-0.029l0.063-0.029l0.065-0.031l0.063-0.031l0.066-0.029l0.063-0.031l0.064-0.031l0.065-0.034l0.063-0.031
|
174 |
+
v2.835l-0.063,0.015l-0.065,0.017l-0.064,0.015l-0.063,0.015l-0.066,0.015l-0.063,0.015l-0.065,0.017l-0.063,0.013l-0.065,0.015
|
175 |
+
l-0.065,0.013l-0.063,0.017l-0.064,0.013l-0.064,0.015l-0.064,0.013l-0.063,0.013l-0.065,0.015l-0.063,0.015l-0.066,0.012
|
176 |
+
l-0.063,0.013l-0.065,0.013l-0.063,0.013l-0.065,0.013l-0.063,0.013l-0.066,0.013l-0.064,0.012l-0.064,0.013l-0.064,0.013
|
177 |
+
l-0.063,0.013l-0.065,0.009l-0.063,0.012l-0.065,0.011l-0.063,0.013l-0.065,0.013l-0.063,0.008l-0.065,0.013l-0.063,0.011
|
178 |
+
l-0.066,0.011l-0.063,0.01l-0.066,0.011l-0.064,0.011l-0.063,0.011l-0.065,0.01l-0.063,0.009l-0.064,0.011l-0.064,0.008
|
179 |
+
l-0.064,0.011l-0.064,0.008l-0.065,0.011l-0.063,0.009l-0.066,0.01l-0.063,0.007l-0.066,0.008l-0.063,0.011l-0.065,0.006
|
180 |
+
l-0.064,0.009l-0.064,0.011l-0.063,0.006l-0.065,0.007l-0.063,0.008l-0.064,0.007l-0.064,0.008l-0.064,0.009l-0.064,0.006
|
181 |
+
l-0.064,0.007l-0.065,0.006l-0.064,0.006l-0.064,0.007l-0.064,0.006l-0.064,0.005l-0.063,0.004l-0.065,0.006l-0.063,0.005
|
182 |
+
l-0.064,0.006l-0.064,0.004l-0.064,0.005l-0.066,0.004l-0.063,0.006l-0.065,0.002l-0.063,0.005l-0.065,0.002l-0.063,0.004
|
183 |
+
l-0.035,0.002h-0.031l-0.063,0.005l-0.066,0.002l-0.063,0.004h-0.064l-0.064,0.002l-0.064,0.004h-0.063l-0.065,0.003l-0.064,0.002
|
184 |
+
l-0.064,0.002H42.42l-0.063,0.002h-0.065l-0.063,0.002l-0.065,0.002h-0.064h-0.063h-0.065h-0.064H41.84h-0.063h-0.066h-0.064
|
185 |
+
h-0.065h-0.064h-0.064l-0.064-0.002l-0.065-0.002H41.26l-0.063-0.002h-0.065l-0.064-0.004l-0.065-0.003h-0.063l-0.065-0.004
|
186 |
+
l-0.065-0.002l-0.064-0.002l-0.064-0.002l-0.064-0.002l-0.065-0.005l-0.064-0.002l-0.064-0.006l-0.064-0.005l-0.065-0.002
|
187 |
+
l-0.065-0.004l-0.065-0.006l-0.063-0.003l-0.065-0.006l-0.064-0.004l-0.065-0.007l-0.063-0.004l-0.065-0.004l-0.065-0.007
|
188 |
+
l-0.064-0.006l-0.064-0.007l-0.064-0.006l-0.065-0.006l-0.064-0.007l-0.064-0.008l-0.065-0.009l-0.064-0.006l-0.065-0.009
|
189 |
+
l-0.063-0.006l-0.065-0.011l-0.064-0.009l-0.066-0.006l-0.063-0.011l-0.066-0.008l-0.064-0.011l-0.065-0.009l-0.063-0.012
|
190 |
+
l-0.065-0.011l-0.065-0.009l-0.064-0.013l-0.065-0.01l-0.063-0.013l-0.065-0.011l-0.064-0.011l-0.065-0.012l-0.064-0.013
|
191 |
+
l-0.064-0.013l-0.065-0.015l-0.063-0.013l-0.065-0.015l-0.064-0.015l-0.065-0.013l-0.063-0.017l-0.065-0.015L37.395,34.2
|
192 |
+
l-0.065-0.017l-0.064-0.017l-0.064-0.015l-0.064-0.017l-0.065-0.02l-0.064-0.015l-0.064-0.019l-0.065-0.019l-0.064-0.02
|
193 |
+
l-0.065-0.019l-0.063-0.021l-0.065-0.021l-0.064-0.019c-0.022-0.008-0.044-0.015-0.065-0.021
|
194 |
+
c-0.022-0.007-0.043-0.015-0.064-0.023l-0.064-0.021L36.3,33.878c-0.021-0.006-0.043-0.015-0.064-0.021
|
195 |
+
c-0.022-0.009-0.044-0.017-0.064-0.025l-0.064-0.023c-0.022-0.008-0.044-0.015-0.065-0.024l-0.065-0.025l-0.065-0.025
|
196 |
+
l-0.063-0.024l-0.065-0.027l-0.064-0.025l-0.065-0.027L35.592,33.6l-0.065-0.029l-0.064-0.029l-0.065-0.029
|
197 |
+
c-0.022-0.01-0.044-0.021-0.064-0.031l-0.064-0.029l-0.065-0.033l-0.064-0.033c-0.021-0.011-0.042-0.021-0.064-0.034
|
198 |
+
c-0.022-0.01-0.043-0.022-0.064-0.033l-0.065-0.035l-0.065-0.036l-0.063-0.037c-0.022-0.011-0.044-0.023-0.065-0.036
|
199 |
+
c-0.022-0.013-0.043-0.027-0.064-0.04l-0.065-0.037c-0.022-0.015-0.044-0.027-0.063-0.04c-0.022-0.015-0.044-0.029-0.066-0.042
|
200 |
+
l-0.064-0.041c-0.021-0.015-0.043-0.029-0.065-0.044l-0.063-0.044c-0.022-0.015-0.043-0.029-0.065-0.047
|
201 |
+
c-0.022-0.015-0.043-0.031-0.064-0.046c-0.022-0.017-0.044-0.031-0.065-0.048c-0.022-0.015-0.043-0.031-0.065-0.048
|
202 |
+
c-0.021-0.017-0.042-0.034-0.063-0.051c-0.022-0.017-0.044-0.035-0.065-0.052c-0.047-0.038-0.093-0.075-0.138-0.115V47.94H33.772z
|
203 |
+
"/>
|
204 |
+
|
205 |
+
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="23.499" y1="3.3096" x2="82.0055" y2="3.3096" gradientTransform="matrix(1 0 0 -1 8.3999 31.1602)">
|
206 |
+
<stop offset="0" style="stop-color:#367846"/>
|
207 |
+
<stop offset="0.3155" style="stop-color:#458B45"/>
|
208 |
+
<stop offset="0.7659" style="stop-color:#5BA446"/>
|
209 |
+
<stop offset="1" style="stop-color:#64AF47"/>
|
210 |
+
</linearGradient>
|
211 |
+
<path fill="url(#SVGID_2_)" d="M55.574,28.665h0.033h0.064h0.064H55.8h0.066h0.063h0.066h0.064h0.063h0.065h0.063h0.066h0.063
|
212 |
+
h0.065h0.063h0.065h0.065h0.063h0.065h0.063h0.065h0.063h0.066h0.063h0.065h0.063h0.064h0.066h0.063h0.066h0.063h0.064h0.064
|
213 |
+
h0.064h0.065h0.063h0.065h0.064h0.064h0.063h0.065h0.065h0.063h0.066h0.063h0.066h0.063h0.064h0.066h0.063h0.066h0.063h0.065
|
214 |
+
h0.063h0.065h0.063h0.065h0.065h0.063h0.065h0.054h0.01c0.021,0.001,0.043,0.002,0.065,0.004c0.021,0.001,0.042,0.003,0.065,0.004
|
215 |
+
c0.021,0.002,0.041,0.003,0.063,0.005c0.021,0.002,0.043,0.004,0.065,0.007c0.021,0.003,0.043,0.005,0.062,0.008
|
216 |
+
c0.025,0.003,0.047,0.007,0.066,0.01c0.015,0.003,0.027,0.005,0.039,0.007l0.025,0.007c0.022,0.004,0.042,0.009,0.064,0.016
|
217 |
+
c0.021,0.006,0.043,0.013,0.065,0.02c0.021,0.007,0.043,0.015,0.063,0.022c0.022,0.007,0.044,0.016,0.066,0.023
|
218 |
+
c0.021,0.01,0.043,0.02,0.063,0.028c0.021,0.011,0.044,0.021,0.065,0.031c0.022,0.012,0.044,0.023,0.065,0.035
|
219 |
+
c0.02,0.013,0.042,0.024,0.063,0.038c0.022,0.014,0.044,0.027,0.065,0.042s0.044,0.03,0.063,0.047
|
220 |
+
c0.021,0.016,0.044,0.034,0.065,0.052c0.022,0.018,0.043,0.037,0.063,0.057c0.021,0.02,0.044,0.04,0.065,0.063
|
221 |
+
c0.022,0.021,0.044,0.045,0.063,0.069c0.024,0.024,0.047,0.051,0.066,0.077c0.021,0.029,0.044,0.06,0.064,0.089
|
222 |
+
c0.023,0.033,0.044,0.068,0.064,0.102c0.023,0.04,0.044,0.08,0.065,0.124c0.022,0.048,0.044,0.098,0.063,0.15
|
223 |
+
c0.027,0.071,0.05,0.145,0.066,0.22c0.028,0.13,0.044,0.268,0.044,0.41c0,0.145-0.016,0.282-0.044,0.414
|
224 |
+
c-0.017,0.075-0.039,0.148-0.066,0.22c-0.019,0.052-0.04,0.103-0.063,0.152c-0.021,0.042-0.044,0.082-0.065,0.121
|
225 |
+
c-0.021,0.036-0.041,0.069-0.064,0.103c-0.021,0.032-0.043,0.059-0.064,0.088c-0.022,0.027-0.042,0.053-0.066,0.08
|
226 |
+
c-0.019,0.022-0.04,0.046-0.063,0.069c-0.021,0.021-0.044,0.041-0.065,0.063c-0.021,0.019-0.042,0.037-0.063,0.057
|
227 |
+
c-0.021,0.017-0.044,0.033-0.065,0.05c-0.022,0.017-0.042,0.031-0.063,0.046s-0.043,0.029-0.065,0.044
|
228 |
+
c-0.021,0.013-0.044,0.025-0.063,0.038c-0.022,0.013-0.043,0.022-0.065,0.033c-0.021,0.011-0.044,0.023-0.065,0.031
|
229 |
+
c-0.02,0.011-0.042,0.019-0.063,0.029c-0.022,0.009-0.044,0.015-0.066,0.023c-0.021,0.008-0.042,0.015-0.063,0.022
|
230 |
+
c-0.022,0.007-0.044,0.013-0.065,0.02c-0.022,0.004-0.044,0.01-0.064,0.015l-0.025,0.006c-0.012,0.004-0.024,0.006-0.039,0.009
|
231 |
+
c-0.02,0.002-0.041,0.006-0.066,0.01c-0.019,0.002-0.04,0.005-0.062,0.007c-0.022,0.004-0.044,0.006-0.065,0.006
|
232 |
+
c-0.022,0.002-0.044,0.004-0.063,0.007c-0.023,0.002-0.046,0.002-0.065,0.004c-0.022,0-0.044,0.002-0.065,0.002h-0.034h-0.029
|
233 |
+
H59.35h-0.063h-0.065h-0.063h-0.066h-0.064h-0.064h-0.065h-0.063h-0.066h-0.063H58.64h-0.064h-0.063h-0.066h-0.063h-0.066h-0.063
|
234 |
+
h-0.065h-0.065H58.06h-0.064h-0.064h-0.065h-0.063h-0.065h-0.064h-0.064h-0.064h-0.063h-0.065h-0.063h-0.066H57.22h-0.063h-0.065
|
235 |
+
h-0.063h-0.065h-0.063h-0.065H56.77h-0.065h-0.063h-0.065h-0.063h-0.065h-0.065h-0.063h-0.066h-0.063h-0.066H56.06h-0.064h-0.066
|
236 |
+
h-0.063H55.8h-0.063h-0.065h-0.064h-0.033V28.665L55.574,28.665z M52.299,47.94h9.999l0.031-0.002l0.063-0.002
|
237 |
+
c0.022-0.003,0.044-0.003,0.066-0.003c0.021,0,0.044-0.004,0.064-0.004l0.064-0.006c0.021,0,0.044,0,0.063-0.002
|
238 |
+
c0.022-0.005,0.044-0.005,0.064-0.007c0.022-0.002,0.044-0.002,0.066-0.006c0.021-0.002,0.042-0.002,0.063-0.007
|
239 |
+
c0.022-0.002,0.044-0.004,0.066-0.006c0.021-0.002,0.041-0.007,0.063-0.009s0.044-0.006,0.065-0.008l0.066-0.009l0.063-0.011
|
240 |
+
l0.066-0.01c0.02-0.005,0.041-0.007,0.063-0.011s0.044-0.008,0.065-0.013l0.064-0.013l0.064-0.012
|
241 |
+
c0.022-0.007,0.044-0.009,0.063-0.015c0.022-0.005,0.043-0.011,0.065-0.013l0.065-0.017l0.063-0.015l0.065-0.02
|
242 |
+
c0.022-0.004,0.044-0.01,0.063-0.017c0.021-0.006,0.043-0.013,0.065-0.017c0.021-0.006,0.044-0.013,0.063-0.019l0.065-0.021
|
243 |
+
c0.021-0.006,0.044-0.013,0.065-0.019l0.063-0.021c0.022-0.007,0.044-0.013,0.066-0.021c0.021-0.008,0.042-0.015,0.063-0.022
|
244 |
+
c0.021-0.007,0.043-0.015,0.065-0.023l0.065-0.023c0.02-0.008,0.041-0.017,0.063-0.024c0.022-0.009,0.044-0.017,0.066-0.023
|
245 |
+
c0.021-0.011,0.042-0.019,0.063-0.029c0.022-0.008,0.044-0.015,0.065-0.025c0.022-0.008,0.042-0.019,0.063-0.026
|
246 |
+
c0.021-0.011,0.044-0.02,0.065-0.029l0.064-0.029l0.064-0.029c0.021-0.011,0.044-0.021,0.065-0.031
|
247 |
+
c0.021-0.011,0.042-0.023,0.063-0.032c0.021-0.012,0.044-0.022,0.065-0.033c0.022-0.011,0.042-0.022,0.064-0.033
|
248 |
+
c0.021-0.013,0.042-0.023,0.064-0.033c0.021-0.013,0.044-0.025,0.063-0.038c0.022-0.013,0.043-0.023,0.065-0.035
|
249 |
+
c0.021-0.013,0.044-0.025,0.063-0.038l0.063-0.038c0.022-0.012,0.044-0.026,0.066-0.039c0.021-0.013,0.043-0.025,0.064-0.042
|
250 |
+
c0.021-0.013,0.042-0.025,0.064-0.04c0.021-0.013,0.044-0.029,0.064-0.042c0.021-0.015,0.042-0.029,0.063-0.044
|
251 |
+
c0.022-0.015,0.044-0.029,0.066-0.044c0.021-0.015,0.043-0.031,0.063-0.046c0.022-0.017,0.044-0.031,0.066-0.048
|
252 |
+
c0.021-0.015,0.042-0.031,0.063-0.046c0.021-0.017,0.044-0.033,0.065-0.051c0.022-0.017,0.044-0.031,0.065-0.05
|
253 |
+
c0.021-0.017,0.042-0.033,0.063-0.05c0.022-0.02,0.044-0.036,0.066-0.055c0.021-0.019,0.042-0.038,0.063-0.055
|
254 |
+
c0.021-0.017,0.044-0.035,0.065-0.054c0.022-0.02,0.043-0.04,0.063-0.059c0.021-0.021,0.044-0.04,0.065-0.062
|
255 |
+
c0.022-0.019,0.044-0.037,0.064-0.059c0.022-0.021,0.042-0.041,0.064-0.061c0.021-0.022,0.044-0.044,0.065-0.064
|
256 |
+
c0.021-0.023,0.041-0.044,0.063-0.067c0.021-0.021,0.043-0.044,0.065-0.066c0.021-0.021,0.043-0.046,0.063-0.069
|
257 |
+
c0.022-0.022,0.044-0.046,0.066-0.071c0.021-0.022,0.044-0.048,0.064-0.073c0.022-0.024,0.042-0.05,0.063-0.075
|
258 |
+
c0.022-0.024,0.044-0.052,0.065-0.077s0.044-0.055,0.063-0.079c0.022-0.027,0.044-0.057,0.066-0.084
|
259 |
+
c0.021-0.029,0.044-0.057,0.063-0.086c0.021-0.027,0.044-0.059,0.065-0.088c0.022-0.031,0.044-0.061,0.065-0.092
|
260 |
+
s0.042-0.063,0.063-0.095c0.022-0.033,0.044-0.064,0.065-0.098c0.022-0.036,0.044-0.069,0.063-0.104
|
261 |
+
c0.021-0.034,0.044-0.069,0.065-0.107c0.022-0.035,0.043-0.073,0.063-0.11c0.021-0.04,0.044-0.077,0.065-0.115
|
262 |
+
c0.022-0.04,0.044-0.082,0.065-0.123c0.021-0.042,0.041-0.086,0.063-0.13c0.021-0.044,0.044-0.092,0.065-0.136
|
263 |
+
c0.022-0.051,0.043-0.097,0.063-0.146c0.021-0.051,0.044-0.103,0.065-0.155c0.022-0.057,0.044-0.113,0.063-0.167
|
264 |
+
c0.023-0.061,0.044-0.122,0.066-0.185c0.021-0.064,0.044-0.134,0.063-0.203c0.024-0.075,0.044-0.15,0.065-0.228
|
265 |
+
c0.022-0.09,0.044-0.178,0.063-0.268c0.025-0.111,0.046-0.224,0.064-0.337c0.028-0.17,0.051-0.337,0.066-0.511
|
266 |
+
c0.013-0.163,0.021-0.328,0.025-0.496V7.761h-0.025l0,0h-0.066h-0.064h-0.063h-0.065H68.46h-0.066h-0.063h-0.065h-0.063h-0.065
|
267 |
+
h-0.063h-0.065h-0.065h-0.063h-0.065H67.75h-0.065h-0.063h-0.065H67.49h-0.063h-0.066h-0.063h-0.065h-0.063h-0.064h-0.066h-0.063
|
268 |
+
H66.91h-0.063h-0.065h-0.064h-0.064h-0.065h-0.063h-0.065h-0.063h-0.066h-0.063H66.2h-0.065h-0.063h-0.066h-0.063h-0.066h-0.063
|
269 |
+
h-0.064h-0.064H65.62h-0.066H65.49h-0.063h-0.065h-0.063h-0.064h-0.064h-0.065H65.04h-0.065H64.91h-0.064H64.78h-0.063h-0.065
|
270 |
+
h-0.063h-0.066H64.46h-0.065h-0.065h-0.063h-0.066h-0.063h-0.065h-0.065h-0.063h-0.065h-0.063h-0.065h-0.063h-0.065h-0.065H63.49
|
271 |
+
h-0.064h-0.064h-0.065h-0.063h-0.066h-0.063h-0.066h-0.065H62.91h-0.066h-0.063h-0.066H62.65h-0.063h-0.064h-0.064h-0.066h-0.063
|
272 |
+
h-0.065h-0.064h-0.064h-0.063h-0.065H61.94h-0.063h-0.065h-0.063h-0.065h-0.063h-0.064h-0.066h-0.063h-0.066h-0.063h-0.065h-0.064
|
273 |
+
h-0.064h-0.066h-0.063h-0.065h-0.063h-0.065h-0.064H60.65h-0.063h-0.065h-0.065h-0.063h-0.066h-0.063h-0.065h-0.065H60.07h-0.066
|
274 |
+
h-0.063h-0.066h-0.063h-0.064h-0.065h-0.063h-0.065H59.49h-0.065h-0.065h-0.063h-0.064h-0.064h-0.065h-0.063h-0.051h-0.016
|
275 |
+
c-0.021,0-0.044,0-0.064,0s-0.042,0.001-0.064,0.001c-0.021,0-0.044,0.001-0.064,0.002l-0.063,0.003
|
276 |
+
c-0.022,0-0.044,0.001-0.066,0.002c-0.021,0.001-0.043,0.003-0.063,0.004c-0.022,0.001-0.044,0.003-0.066,0.004l-0.064,0.005
|
277 |
+
l-0.063,0.005c-0.022,0.002-0.044,0.004-0.065,0.005c-0.02,0.002-0.042,0.005-0.063,0.008l-0.066,0.006
|
278 |
+
c-0.021,0.003-0.043,0.006-0.063,0.008c-0.021,0.002-0.044,0.006-0.065,0.009c-0.022,0.002-0.043,0.006-0.065,0.009
|
279 |
+
c-0.02,0.003-0.042,0.007-0.063,0.01l-0.065,0.011c-0.021,0.003-0.044,0.007-0.063,0.011c-0.021,0.004-0.044,0.008-0.065,0.013
|
280 |
+
c-0.021,0.004-0.043,0.008-0.063,0.012l-0.065,0.014L57.555,7.92c-0.022,0.004-0.044,0.008-0.066,0.014
|
281 |
+
c-0.021,0.005-0.044,0.01-0.064,0.016c-0.022,0.004-0.042,0.01-0.064,0.016l-0.065,0.016c-0.021,0.006-0.043,0.012-0.063,0.017
|
282 |
+
c-0.022,0.006-0.044,0.012-0.066,0.019c-0.021,0.006-0.043,0.012-0.063,0.019c-0.022,0.006-0.044,0.013-0.066,0.019
|
283 |
+
c-0.021,0.007-0.044,0.014-0.064,0.021l-0.063,0.021c-0.022,0.006-0.044,0.014-0.066,0.021c-0.02,0.007-0.042,0.016-0.063,0.023
|
284 |
+
c-0.022,0.007-0.044,0.015-0.066,0.022c-0.021,0.008-0.041,0.016-0.063,0.024l-0.064,0.024l-0.064,0.026
|
285 |
+
c-0.021,0.008-0.043,0.017-0.064,0.025c-0.022,0.01-0.044,0.019-0.065,0.027C56.37,8.3,56.349,8.31,56.327,8.32
|
286 |
+
c-0.021,0.009-0.044,0.018-0.065,0.027c-0.022,0.01-0.042,0.02-0.064,0.031c-0.021,0.009-0.042,0.019-0.064,0.03l-0.063,0.031
|
287 |
+
c-0.021,0.01-0.043,0.021-0.065,0.032c-0.021,0.011-0.044,0.021-0.065,0.033c-0.021,0.011-0.042,0.022-0.063,0.033
|
288 |
+
c-0.022,0.012-0.044,0.023-0.066,0.035c-0.021,0.013-0.042,0.024-0.063,0.037c-0.022,0.012-0.044,0.023-0.066,0.036
|
289 |
+
c-0.021,0.013-0.044,0.025-0.063,0.038c-0.021,0.013-0.043,0.025-0.064,0.038c-0.022,0.013-0.044,0.027-0.064,0.041L55.424,8.8
|
290 |
+
c-0.022,0.014-0.044,0.028-0.066,0.042l-0.063,0.043l-0.065,0.043c-0.022,0.015-0.044,0.03-0.064,0.044L55.101,9.02
|
291 |
+
c-0.022,0.015-0.044,0.031-0.063,0.047c-0.022,0.016-0.044,0.032-0.065,0.049l-0.065,0.049l-0.063,0.051
|
292 |
+
c-0.021,0.017-0.044,0.034-0.065,0.052c-0.022,0.017-0.044,0.036-0.063,0.053c-0.022,0.018-0.043,0.036-0.065,0.055
|
293 |
+
c-0.021,0.019-0.044,0.038-0.063,0.057c-0.022,0.019-0.044,0.038-0.065,0.058c-0.021,0.02-0.044,0.04-0.065,0.06
|
294 |
+
c-0.022,0.021-0.042,0.04-0.063,0.06c-0.022,0.021-0.044,0.042-0.066,0.063c-0.021,0.021-0.044,0.042-0.063,0.063
|
295 |
+
c-0.022,0.022-0.043,0.044-0.065,0.066c-0.021,0.022-0.044,0.046-0.063,0.068c-0.021,0.023-0.043,0.046-0.064,0.069
|
296 |
+
c-0.022,0.024-0.044,0.049-0.066,0.072c-0.021,0.024-0.042,0.048-0.062,0.074c-0.021,0.025-0.044,0.05-0.065,0.076
|
297 |
+
c-0.022,0.026-0.044,0.052-0.063,0.079c-0.021,0.026-0.044,0.053-0.065,0.08c-0.022,0.028-0.044,0.056-0.065,0.083
|
298 |
+
c-0.021,0.029-0.044,0.058-0.063,0.086c-0.021,0.03-0.044,0.059-0.065,0.089c-0.022,0.03-0.043,0.062-0.063,0.093
|
299 |
+
c-0.021,0.031-0.044,0.063-0.065,0.096c-0.022,0.033-0.044,0.066-0.065,0.099c-0.021,0.035-0.041,0.069-0.063,0.104
|
300 |
+
c-0.021,0.036-0.044,0.072-0.064,0.108c-0.022,0.038-0.044,0.075-0.064,0.113c-0.021,0.039-0.044,0.079-0.065,0.118
|
301 |
+
c-0.022,0.042-0.044,0.083-0.063,0.124c-0.022,0.043-0.044,0.086-0.066,0.13c-0.021,0.046-0.044,0.092-0.064,0.139
|
302 |
+
c-0.022,0.048-0.042,0.098-0.064,0.147c-0.021,0.052-0.044,0.105-0.064,0.158c-0.023,0.056-0.044,0.114-0.063,0.172
|
303 |
+
c-0.022,0.062-0.044,0.125-0.066,0.187c-0.021,0.069-0.044,0.139-0.063,0.208c-0.024,0.079-0.046,0.157-0.066,0.237
|
304 |
+
c-0.021,0.092-0.044,0.187-0.064,0.281c-0.086,0.423-0.135,0.861-0.139,1.31v7.009h0.139h0.064h0.066h0.063h0.066h0.063h0.064
|
305 |
+
h0.064h0.064h0.066H53.1h0.065h0.064h0.064h0.063h0.065h0.065h0.063h0.065h0.063h0.065h0.065h0.063h0.065h0.062h0.066h0.064h0.063
|
306 |
+
h0.065h0.063h0.066h0.063h0.065h0.065h0.063h0.065h0.063h0.065h0.063h0.065h0.065h0.063h0.064h0.064h0.065h0.063h0.066h0.064
|
307 |
+
h0.064h0.064h0.063h0.066h0.063h0.066h0.063h0.065h0.065h0.063h0.064h0.064h0.065h0.063h0.065h0.064h0.064h0.064h0.063h0.066
|
308 |
+
h0.063h0.066h0.063h0.064h0.066h0.063h0.066h0.063h0.065h0.064h0.064h0.066h0.063h0.065h0.063h0.065h0.063h0.065h0.063h0.065
|
309 |
+
h0.065h0.063h0.066h0.063h0.065h0.063h0.064h0.066h0.063h0.066h0.063h0.064h0.064h0.064h0.066h0.063h0.065h0.064h0.064h0.063
|
310 |
+
h0.065h0.065h0.063h0.065h0.063h0.065h0.064h0.063h0.066h0.063h0.066h0.063h0.065h0.065h0.063h0.066h0.063h0.065h0.065h0.063
|
311 |
+
h0.064h0.064h0.065h0.063h0.065h0.063h0.066h0.064h0.064h0.065h0.063h0.066h0.063h0.066h0.064h0.063h0.065h0.029h0.034
|
312 |
+
l0.065,0.001l0.063,0.001l0.065,0.001l0.065,0.003l0.063,0.002l0.064,0.003l0.064,0.003l0.065,0.004l0.063,0.004l0.041,0.002
|
313 |
+
l0.025,0.001l0.064,0.003l0.064,0.004l0.063,0.005l0.064,0.006l0.066,0.006l0.063,0.007l0.066,0.008l0.063,0.009l0.065,0.009
|
314 |
+
l0.066,0.01c0.02,0.003,0.042,0.006,0.063,0.011l0.066,0.011c0.02,0.003,0.041,0.008,0.063,0.011
|
315 |
+
c0.021,0.005,0.044,0.009,0.065,0.014l0.064,0.014c0.021,0.005,0.043,0.009,0.064,0.015c0.022,0.005,0.044,0.009,0.063,0.015
|
316 |
+
l0.065,0.016c0.021,0.006,0.044,0.012,0.065,0.017c0.021,0.006,0.042,0.012,0.063,0.019s0.044,0.013,0.065,0.02
|
317 |
+
c0.022,0.007,0.044,0.013,0.063,0.02c0.022,0.006,0.043,0.014,0.065,0.021c0.021,0.007,0.044,0.014,0.063,0.022
|
318 |
+
c0.022,0.007,0.043,0.015,0.065,0.023c0.021,0.008,0.044,0.016,0.065,0.024c0.02,0.009,0.042,0.017,0.063,0.025
|
319 |
+
c0.022,0.009,0.044,0.019,0.066,0.028c0.021,0.009,0.042,0.018,0.063,0.028c0.021,0.009,0.043,0.019,0.065,0.029
|
320 |
+
c0.021,0.01,0.044,0.021,0.065,0.031c0.02,0.01,0.042,0.021,0.063,0.032c0.022,0.012,0.044,0.022,0.066,0.034
|
321 |
+
c0.021,0.012,0.042,0.023,0.063,0.036c0.022,0.013,0.044,0.024,0.065,0.037c0.022,0.013,0.044,0.025,0.063,0.039
|
322 |
+
c0.021,0.014,0.044,0.028,0.065,0.042c0.022,0.014,0.044,0.028,0.064,0.043c0.021,0.015,0.042,0.03,0.064,0.045
|
323 |
+
c0.021,0.016,0.044,0.031,0.065,0.048c0.022,0.017,0.042,0.033,0.063,0.05c0.021,0.018,0.044,0.035,0.065,0.053
|
324 |
+
c0.022,0.019,0.044,0.038,0.064,0.057c0.021,0.02,0.042,0.039,0.064,0.06c0.021,0.021,0.044,0.042,0.063,0.063
|
325 |
+
c0.022,0.022,0.044,0.045,0.065,0.067c0.021,0.023,0.044,0.048,0.063,0.072c0.023,0.026,0.044,0.052,0.063,0.078
|
326 |
+
c0.022,0.028,0.044,0.056,0.066,0.084c0.021,0.03,0.044,0.06,0.064,0.091c0.022,0.033,0.042,0.066,0.064,0.101
|
327 |
+
c0.021,0.037,0.044,0.074,0.064,0.112c0.023,0.041,0.044,0.083,0.063,0.125c0.024,0.048,0.044,0.097,0.066,0.146
|
328 |
+
c0.021,0.058,0.044,0.117,0.063,0.176c0.025,0.075,0.047,0.152,0.066,0.23c0.027,0.125,0.05,0.256,0.063,0.39
|
329 |
+
c0.013,0.106,0.016,0.214,0.016,0.325c0,0.105-0.003,0.209-0.016,0.312C66.122,25,66.1,25.128,66.072,25.253
|
330 |
+
c-0.02,0.077-0.041,0.154-0.066,0.228c-0.019,0.06-0.041,0.118-0.063,0.177c-0.022,0.05-0.044,0.099-0.066,0.147
|
331 |
+
c-0.02,0.044-0.04,0.086-0.063,0.128c-0.021,0.038-0.043,0.077-0.064,0.113c-0.022,0.036-0.044,0.069-0.064,0.104
|
332 |
+
c-0.021,0.031-0.043,0.063-0.064,0.094c-0.022,0.029-0.044,0.059-0.066,0.086c-0.02,0.026-0.04,0.054-0.063,0.08
|
333 |
+
c-0.02,0.025-0.043,0.05-0.063,0.075c-0.021,0.024-0.043,0.047-0.065,0.07c-0.02,0.022-0.042,0.044-0.063,0.066
|
334 |
+
c-0.022,0.02-0.044,0.042-0.064,0.062c-0.021,0.02-0.042,0.04-0.064,0.059c-0.021,0.019-0.044,0.038-0.065,0.056
|
335 |
+
c-0.021,0.018-0.043,0.036-0.063,0.052c-0.021,0.018-0.044,0.033-0.065,0.049c-0.022,0.016-0.043,0.032-0.064,0.048
|
336 |
+
c-0.021,0.015-0.042,0.03-0.064,0.045c-0.021,0.014-0.044,0.028-0.065,0.042c-0.021,0.015-0.041,0.028-0.063,0.041
|
337 |
+
c-0.021,0.013-0.043,0.026-0.065,0.039c-0.021,0.012-0.043,0.025-0.063,0.037c-0.022,0.012-0.044,0.024-0.066,0.036
|
338 |
+
c-0.021,0.011-0.043,0.023-0.063,0.033c-0.021,0.011-0.044,0.022-0.065,0.031c-0.022,0.011-0.044,0.021-0.065,0.032
|
339 |
+
c-0.021,0.009-0.042,0.019-0.063,0.028c-0.022,0.01-0.044,0.019-0.066,0.028c-0.021,0.008-0.043,0.017-0.063,0.025
|
340 |
+
c-0.021,0.009-0.044,0.017-0.065,0.025c-0.022,0.008-0.043,0.016-0.065,0.024c-0.02,0.007-0.042,0.015-0.063,0.023
|
341 |
+
c-0.022,0.006-0.044,0.013-0.065,0.021s-0.041,0.014-0.063,0.02c-0.021,0.006-0.044,0.013-0.065,0.019s-0.043,0.012-0.063,0.019
|
342 |
+
c-0.021,0.005-0.044,0.011-0.065,0.017c-0.022,0.005-0.043,0.011-0.065,0.016c-0.02,0.005-0.041,0.01-0.063,0.015l-0.064,0.015
|
343 |
+
c-0.022,0.004-0.042,0.008-0.064,0.013l-0.065,0.013c-0.021,0.003-0.043,0.006-0.063,0.011l-0.066,0.011l-0.06,0.009v0.077
|
344 |
+
l0.06,0.005l0.066,0.005l0.063,0.006l0.065,0.007l0.064,0.006l0.064,0.008l0.063,0.009c0.022,0.003,0.043,0.005,0.065,0.008
|
345 |
+
l0.065,0.011c0.021,0.004,0.042,0.007,0.063,0.01l0.065,0.013l0.063,0.013c0.022,0.003,0.043,0.008,0.065,0.012
|
346 |
+
c0.021,0.004,0.044,0.01,0.063,0.014c0.022,0.004,0.043,0.011,0.065,0.015c0.021,0.005,0.044,0.011,0.065,0.016
|
347 |
+
c0.02,0.005,0.042,0.011,0.063,0.017c0.022,0.005,0.044,0.01,0.066,0.017c0.021,0.006,0.042,0.013,0.063,0.019l0.065,0.018
|
348 |
+
c0.021,0.007,0.044,0.014,0.065,0.02c0.02,0.007,0.042,0.013,0.063,0.021c0.022,0.007,0.044,0.015,0.066,0.023
|
349 |
+
c0.021,0.007,0.042,0.014,0.063,0.022c0.022,0.007,0.044,0.016,0.065,0.022c0.022,0.009,0.042,0.018,0.063,0.025
|
350 |
+
c0.021,0.009,0.044,0.018,0.065,0.026c0.022,0.009,0.044,0.018,0.064,0.027c0.021,0.009,0.042,0.019,0.064,0.028
|
351 |
+
c0.021,0.009,0.044,0.019,0.065,0.029c0.021,0.01,0.042,0.02,0.063,0.03s0.044,0.021,0.065,0.032
|
352 |
+
c0.022,0.011,0.044,0.022,0.064,0.033c0.021,0.012,0.042,0.023,0.064,0.034c0.021,0.013,0.044,0.024,0.063,0.037
|
353 |
+
c0.022,0.013,0.044,0.025,0.065,0.038c0.021,0.013,0.044,0.026,0.063,0.04c0.022,0.013,0.044,0.027,0.063,0.041
|
354 |
+
c0.022,0.015,0.044,0.029,0.066,0.044c0.021,0.015,0.043,0.03,0.064,0.045c0.021,0.016,0.042,0.031,0.064,0.048
|
355 |
+
c0.021,0.018,0.044,0.033,0.064,0.051c0.021,0.017,0.044,0.034,0.063,0.051c0.022,0.02,0.044,0.038,0.066,0.057
|
356 |
+
c0.021,0.019,0.043,0.038,0.063,0.057c0.022,0.021,0.044,0.041,0.066,0.062c0.021,0.022,0.044,0.043,0.063,0.065
|
357 |
+
c0.023,0.022,0.044,0.046,0.065,0.068c0.022,0.024,0.044,0.05,0.065,0.074c0.021,0.025,0.042,0.052,0.063,0.079
|
358 |
+
c0.022,0.026,0.044,0.054,0.066,0.083c0.021,0.029,0.042,0.06,0.063,0.092c0.021,0.032,0.044,0.065,0.065,0.1
|
359 |
+
c0.022,0.035,0.044,0.073,0.063,0.108c0.023,0.042,0.046,0.082,0.065,0.124c0.022,0.046,0.044,0.094,0.064,0.14
|
360 |
+
c0.023,0.055,0.045,0.111,0.064,0.167c0.024,0.071,0.047,0.143,0.065,0.214c0.025,0.104,0.047,0.214,0.063,0.326
|
361 |
+
c0.019,0.136,0.027,0.274,0.027,0.419c0,0.146-0.009,0.29-0.027,0.431c-0.017,0.115-0.038,0.226-0.063,0.337
|
362 |
+
c-0.02,0.075-0.041,0.148-0.065,0.222c-0.02,0.059-0.041,0.115-0.064,0.172c-0.021,0.05-0.042,0.098-0.064,0.146
|
363 |
+
c-0.02,0.044-0.042,0.086-0.065,0.128c-0.02,0.038-0.041,0.077-0.063,0.115c-0.021,0.033-0.044,0.069-0.065,0.103
|
364 |
+
c-0.021,0.031-0.041,0.064-0.063,0.094c-0.022,0.029-0.044,0.059-0.066,0.088c-0.021,0.027-0.042,0.055-0.063,0.082
|
365 |
+
c-0.021,0.025-0.043,0.05-0.065,0.075c-0.021,0.023-0.044,0.048-0.065,0.071c-0.021,0.022-0.041,0.046-0.063,0.069
|
366 |
+
c-0.022,0.021-0.044,0.041-0.066,0.063c-0.02,0.021-0.042,0.039-0.063,0.059c-0.022,0.021-0.044,0.039-0.066,0.059
|
367 |
+
c-0.021,0.017-0.042,0.035-0.063,0.054c-0.021,0.018-0.043,0.034-0.064,0.051c-0.022,0.017-0.044,0.033-0.064,0.05
|
368 |
+
c-0.021,0.015-0.043,0.031-0.064,0.046c-0.022,0.015-0.044,0.032-0.066,0.047c-0.02,0.015-0.041,0.026-0.063,0.043
|
369 |
+
c-0.02,0.013-0.043,0.027-0.063,0.04c-0.022,0.013-0.044,0.025-0.065,0.04c-0.02,0.013-0.042,0.025-0.063,0.037
|
370 |
+
c-0.022,0.011-0.044,0.023-0.064,0.036c-0.022,0.011-0.044,0.022-0.064,0.033c-0.021,0.013-0.044,0.021-0.065,0.033
|
371 |
+
c-0.021,0.011-0.043,0.021-0.063,0.032c-0.021,0.01-0.044,0.021-0.065,0.029c-0.022,0.012-0.044,0.021-0.064,0.031
|
372 |
+
c-0.021,0.008-0.042,0.019-0.064,0.027c-0.021,0.01-0.044,0.017-0.065,0.024c-0.021,0.011-0.041,0.017-0.063,0.027
|
373 |
+
c-0.021,0.009-0.043,0.015-0.065,0.023c-0.021,0.01-0.043,0.017-0.063,0.022c-0.022,0.009-0.044,0.015-0.066,0.023
|
374 |
+
c-0.021,0.008-0.043,0.015-0.063,0.021l-0.065,0.021c-0.022,0.006-0.044,0.012-0.065,0.019c-0.021,0.006-0.042,0.013-0.063,0.019
|
375 |
+
c-0.022,0.007-0.044,0.011-0.066,0.017c-0.021,0.007-0.043,0.013-0.063,0.02c-0.021,0.002-0.044,0.008-0.065,0.015
|
376 |
+
c-0.022,0.004-0.043,0.01-0.065,0.012l-0.063,0.018c-0.022,0.002-0.044,0.008-0.065,0.012c-0.021,0.005-0.041,0.009-0.063,0.013
|
377 |
+
l-0.065,0.013l-0.063,0.009c-0.021,0.004-0.044,0.006-0.065,0.01c-0.022,0.005-0.043,0.007-0.065,0.009
|
378 |
+
c-0.02,0.004-0.041,0.006-0.063,0.011l-0.064,0.006c-0.022,0.004-0.042,0.007-0.064,0.009c-0.021,0.004-0.044,0.004-0.065,0.006
|
379 |
+
l-0.063,0.007l-0.066,0.004l-0.063,0.006l-0.066,0.002l-0.065,0.005c-0.021,0-0.041,0.002-0.063,0.002
|
380 |
+
c-0.022,0-0.044,0-0.066,0.002l-0.063,0.002h-0.066h-0.03H62.65h-0.063h-0.064h-0.064h-0.066h-0.063h-0.065h-0.064h-0.064h-0.063
|
381 |
+
h-0.065H61.94h-0.063h-0.065h-0.063h-0.065h-0.063h-0.064h-0.066h-0.063h-0.066h-0.063h-0.065h-0.064h-0.064h-0.066h-0.063h-0.065
|
382 |
+
h-0.064h-0.064h-0.064H60.65h-0.065h-0.063h-0.065h-0.063h-0.065h-0.063h-0.065h-0.065H60.07h-0.066h-0.063h-0.066h-0.063h-0.064
|
383 |
+
h-0.065h-0.063h-0.065H59.49h-0.065h-0.065h-0.063h-0.064h-0.064h-0.065h-0.065h-0.063h-0.064h-0.064h-0.064h-0.063h-0.066h-0.063
|
384 |
+
h-0.066h-0.064h-0.063h-0.066h-0.063h-0.066h-0.063h-0.065h-0.065H57.94h-0.066h-0.063h-0.065h-0.063h-0.065h-0.064h-0.064h-0.064
|
385 |
+
h-0.064h-0.065h-0.063h-0.066h-0.064h-0.064h-0.064h-0.063h-0.066h-0.063h-0.066h-0.063h-0.064h-0.066h-0.063h-0.065h-0.063
|
386 |
+
h-0.065h-0.064h-0.064h-0.063h-0.065h-0.065h-0.063H55.81h-0.063h-0.065h-0.063h-0.064h-0.064h-0.064h-0.066h-0.063h-0.064h-0.064
|
387 |
+
h-0.064h-0.066h-0.063h-0.065h-0.063h-0.065h-0.063h-0.065h-0.065H54.52h-0.065h-0.063h-0.065h-0.063h-0.065h-0.065h-0.063h-0.066
|
388 |
+
H53.94h-0.065H53.81h-0.063h-0.065h-0.063h-0.065h-0.063h-0.065h-0.065h-0.063h-0.065h-0.063H53.1h-0.063h-0.066h-0.064h-0.064
|
389 |
+
h-0.065h-0.063h-0.066h-0.064h-0.064h-0.064h-0.139v13.65H52.299z M60.776,24.667c0.028,0.119,0.04,0.244,0.04,0.376
|
390 |
+
c0,0.131-0.012,0.257-0.04,0.376c-0.016,0.076-0.038,0.15-0.063,0.22c-0.019,0.051-0.04,0.101-0.065,0.148
|
391 |
+
c-0.019,0.04-0.041,0.079-0.063,0.117c-0.022,0.033-0.044,0.065-0.066,0.096c-0.02,0.029-0.042,0.057-0.063,0.084
|
392 |
+
c-0.021,0.025-0.043,0.05-0.065,0.073c-0.021,0.022-0.041,0.043-0.063,0.065c-0.021,0.019-0.043,0.039-0.064,0.056
|
393 |
+
c-0.022,0.019-0.044,0.036-0.066,0.052c-0.02,0.017-0.041,0.032-0.063,0.046c-0.022,0.015-0.044,0.029-0.066,0.042
|
394 |
+
c-0.02,0.013-0.041,0.025-0.063,0.038c-0.021,0.013-0.043,0.023-0.064,0.035c-0.022,0.009-0.044,0.02-0.064,0.03
|
395 |
+
c-0.021,0.01-0.043,0.018-0.064,0.026c-0.022,0.009-0.044,0.017-0.064,0.025c-0.021,0.006-0.041,0.015-0.063,0.021
|
396 |
+
c-0.021,0.006-0.044,0.013-0.065,0.018c-0.021,0.005-0.043,0.01-0.063,0.015c-0.022,0.006-0.044,0.009-0.066,0.013l-0.016,0.002
|
397 |
+
c-0.013,0.003-0.028,0.005-0.049,0.007c-0.02,0.002-0.041,0.005-0.064,0.008c-0.021,0.001-0.043,0.003-0.064,0.005
|
398 |
+
c-0.022,0.001-0.042,0.003-0.063,0.004c-0.022,0.002-0.044,0.003-0.066,0.004c-0.021,0.001-0.044,0.001-0.063,0.002H59.09h-0.055
|
399 |
+
h-0.064h-0.063h-0.065h-0.063h-0.066h-0.063h-0.065h-0.065h-0.063H58.39h-0.063h-0.069h-0.064h-0.063h-0.066H58h-0.066h-0.063
|
400 |
+
h-0.065H57.74h-0.063h-0.064h-0.064h-0.065h-0.063h-0.065h-0.064h-0.064H57.16h-0.063H57.03h-0.063h-0.066h-0.063h-0.065h-0.064
|
401 |
+
h-0.064h-0.066h-0.063H56.45h-0.064h-0.064h-0.064h-0.064h-0.065h-0.066h-0.065h-0.064h-0.064h-0.063h-0.065h-0.065h-0.063h-0.034
|
402 |
+
v-3.261h0.034h0.063h0.065h0.065h0.063h0.064h0.064h0.065h0.063h0.066h0.064h0.064h0.064h0.063h0.066h0.063h0.066h0.064h0.063
|
403 |
+
h0.065h0.063h0.066h0.063h0.065h0.064h0.064h0.063h0.065h0.065h0.063h0.065h0.063h0.066h0.063h0.064h0.064h0.064h0.066h0.063
|
404 |
+
h0.065h0.064h0.064h0.064h0.064h0.065h0.063h0.065h0.064h0.064h0.063h0.065H58.9h0.063h0.066h0.063h0.027l0.038,0.001
|
405 |
+
c0.02,0.001,0.041,0.002,0.063,0.004c0.021,0,0.043,0.002,0.064,0.005c0.022,0.001,0.044,0.003,0.064,0.005
|
406 |
+
c0.023,0.002,0.046,0.004,0.064,0.006c0.02,0.002,0.038,0.004,0.051,0.006l0.016,0.003c0.021,0.004,0.041,0.009,0.063,0.014
|
407 |
+
c0.021,0.004,0.044,0.009,0.065,0.015c0.022,0.006,0.044,0.012,0.064,0.019c0.021,0.006,0.042,0.014,0.064,0.021
|
408 |
+
c0.021,0.008,0.043,0.016,0.063,0.024c0.022,0.009,0.044,0.018,0.064,0.027c0.021,0.01,0.044,0.021,0.065,0.03
|
409 |
+
c0.022,0.011,0.043,0.022,0.063,0.034c0.021,0.013,0.043,0.025,0.065,0.038c0.021,0.014,0.044,0.027,0.064,0.042
|
410 |
+
c0.022,0.015,0.042,0.03,0.064,0.047c0.021,0.016,0.044,0.034,0.064,0.051c0.023,0.019,0.044,0.039,0.063,0.058
|
411 |
+
c0.022,0.021,0.044,0.042,0.065,0.064c0.022,0.023,0.045,0.048,0.063,0.073c0.022,0.027,0.044,0.055,0.066,0.083
|
412 |
+
c0.021,0.031,0.044,0.064,0.063,0.097c0.025,0.038,0.046,0.077,0.065,0.116c0.024,0.048,0.044,0.098,0.065,0.149
|
413 |
+
C60.738,24.518,60.761,24.591,60.776,24.667z"/>
|
414 |
+
<path fill="none" stroke="#010101" stroke-width="0.216" stroke-miterlimit="22.9256" d="M15.384,31.064
|
415 |
+
c-0.046-0.023-0.093-0.044-0.139-0.067V14.458c0-0.466,0.047-0.921,0.139-1.361c0.019-0.094,0.041-0.188,0.064-0.281
|
416 |
+
c0.02-0.08,0.042-0.158,0.064-0.237c0.021-0.07,0.042-0.139,0.064-0.208c0.021-0.063,0.042-0.126,0.065-0.188
|
417 |
+
c0.021-0.057,0.042-0.114,0.064-0.171c0.02-0.053,0.042-0.106,0.064-0.159c0.021-0.049,0.042-0.099,0.064-0.147
|
418 |
+
c0.021-0.046,0.042-0.092,0.064-0.139c0.021-0.043,0.043-0.087,0.065-0.13c0.021-0.042,0.042-0.083,0.064-0.124
|
419 |
+
c0.021-0.04,0.042-0.08,0.064-0.119c0.021-0.038,0.043-0.076,0.064-0.113c0.021-0.036,0.042-0.073,0.064-0.108
|
420 |
+
c0.022-0.035,0.043-0.069,0.065-0.104c0.021-0.033,0.042-0.066,0.064-0.099c0.021-0.032,0.042-0.064,0.064-0.096
|
421 |
+
c0.021-0.031,0.043-0.062,0.064-0.093c0.021-0.03,0.043-0.059,0.065-0.088c0.021-0.029,0.042-0.057,0.064-0.086
|
422 |
+
c0.021-0.028,0.042-0.057,0.064-0.084c0.021-0.026,0.043-0.053,0.064-0.08c0.022-0.026,0.043-0.052,0.065-0.078
|
423 |
+
c0.021-0.026,0.042-0.052,0.064-0.077c0.021-0.024,0.043-0.048,0.064-0.074c0.021-0.023,0.043-0.047,0.064-0.071
|
424 |
+
c0.022-0.024,0.043-0.047,0.065-0.07c0.021-0.022,0.043-0.044,0.064-0.067c0.021-0.022,0.042-0.044,0.064-0.066
|
425 |
+
c0.021-0.022,0.043-0.043,0.064-0.064c0.022-0.021,0.043-0.042,0.065-0.063c0.021-0.021,0.042-0.04,0.064-0.061
|
426 |
+
c0.021-0.02,0.042-0.04,0.064-0.06c0.021-0.02,0.043-0.039,0.064-0.057c0.022-0.019,0.043-0.038,0.064-0.057
|
427 |
+
c0.022-0.018,0.043-0.036,0.065-0.054c0.021-0.018,0.042-0.036,0.064-0.054c0.021-0.017,0.043-0.035,0.064-0.052
|
428 |
+
c0.021-0.017,0.043-0.033,0.064-0.051c0.021-0.016,0.043-0.033,0.065-0.049c0.021-0.016,0.042-0.032,0.064-0.048l0.064-0.047
|
429 |
+
c0.021-0.016,0.043-0.032,0.064-0.046c0.022-0.015,0.043-0.03,0.065-0.045c0.021-0.015,0.042-0.03,0.064-0.044
|
430 |
+
c0.021-0.014,0.042-0.028,0.064-0.042c0.021-0.014,0.042-0.028,0.064-0.042c0.021-0.013,0.043-0.027,0.064-0.04
|
431 |
+
c0.022-0.014,0.043-0.026,0.065-0.04c0.021-0.013,0.042-0.025,0.064-0.038c0.021-0.013,0.042-0.026,0.064-0.038
|
432 |
+
c0.022-0.013,0.043-0.025,0.064-0.036c0.022-0.012,0.043-0.025,0.065-0.036c0.021-0.012,0.042-0.023,0.064-0.035
|
433 |
+
c0.021-0.011,0.042-0.023,0.064-0.034c0.021-0.011,0.043-0.022,0.064-0.033l0.064-0.032c0.022-0.011,0.043-0.021,0.065-0.032
|
434 |
+
c0.021-0.01,0.042-0.02,0.064-0.03c0.021-0.01,0.042-0.021,0.064-0.03c0.021-0.01,0.043-0.02,0.064-0.029
|
435 |
+
c0.022-0.009,0.043-0.019,0.064-0.028c0.022-0.008,0.042-0.018,0.064-0.026l0.064-0.026l0.064-0.026l0.064-0.024
|
436 |
+
c0.022-0.009,0.042-0.017,0.064-0.024c0.021-0.008,0.043-0.016,0.064-0.022c0.021-0.008,0.043-0.016,0.064-0.023l0.064-0.022
|
437 |
+
l0.064-0.021c0.022-0.007,0.043-0.014,0.065-0.021c0.021-0.006,0.043-0.012,0.064-0.019c0.021-0.006,0.043-0.014,0.064-0.02
|
438 |
+
c0.022-0.006,0.043-0.012,0.064-0.017l0.064-0.018c0.021-0.005,0.043-0.011,0.064-0.017c0.021-0.005,0.043-0.011,0.064-0.016
|
439 |
+
c0.022-0.005,0.043-0.011,0.064-0.016c0.022-0.005,0.043-0.01,0.065-0.015l0.064-0.014c0.021-0.005,0.042-0.009,0.064-0.014
|
440 |
+
c0.021-0.004,0.043-0.008,0.064-0.013c0.022-0.003,0.043-0.008,0.065-0.012c0.021-0.004,0.042-0.007,0.064-0.011l0.064-0.01
|
441 |
+
c0.021-0.004,0.043-0.007,0.064-0.011c0.021-0.003,0.043-0.006,0.064-0.009c0.022-0.003,0.042-0.006,0.064-0.009l0.064-0.008
|
442 |
+
l0.067-0.008c0.022-0.002,0.043-0.005,0.065-0.007c0.021-0.003,0.043-0.004,0.064-0.006l0.064-0.005
|
443 |
+
c0.021-0.002,0.043-0.004,0.064-0.006c0.021-0.001,0.043-0.003,0.065-0.003c0.021-0.001,0.042-0.003,0.064-0.005
|
444 |
+
c0.021-0.001,0.042-0.001,0.064-0.002l0.064-0.003c0.022,0,0.043-0.001,0.064-0.002c0.022,0,0.043,0,0.065,0
|
445 |
+
c0.021-0.001,0.042-0.001,0.064-0.001l0.028,0h0.036h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.065
|
446 |
+
h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065H23.9h0.064h0.064h0.065
|
447 |
+
h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.064h0.064
|
448 |
+
h0.064h0.064h0.064h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064
|
449 |
+
h0.064h0.064h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.065
|
450 |
+
h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.065h0.064h0.064
|
451 |
+
h0.064h0.065h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064
|
452 |
+
h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.064h0.064h0.069h0.065h0.064h0.064h0.055v33.485
|
453 |
+
c0,0.291-0.019,0.577-0.055,0.859c-0.017,0.134-0.039,0.269-0.064,0.402c-0.02,0.103-0.041,0.2-0.064,0.299
|
454 |
+
c-0.02,0.086-0.042,0.169-0.065,0.251c-0.021,0.073-0.042,0.145-0.064,0.216c-0.021,0.064-0.042,0.129-0.064,0.192
|
455 |
+
c-0.021,0.061-0.042,0.119-0.064,0.176c-0.021,0.054-0.042,0.108-0.065,0.163c-0.02,0.05-0.042,0.101-0.064,0.15
|
456 |
+
c-0.021,0.048-0.042,0.094-0.064,0.143c-0.021,0.044-0.042,0.088-0.064,0.132c-0.021,0.041-0.042,0.083-0.064,0.125
|
457 |
+
c-0.021,0.04-0.042,0.082-0.064,0.121c-0.021,0.038-0.042,0.076-0.064,0.113c-0.021,0.038-0.042,0.075-0.064,0.111
|
458 |
+
c-0.021,0.033-0.043,0.068-0.064,0.103c-0.021,0.035-0.043,0.068-0.065,0.1c-0.021,0.034-0.042,0.067-0.064,0.099
|
459 |
+
c-0.021,0.031-0.042,0.063-0.064,0.095c-0.021,0.029-0.043,0.059-0.064,0.087c-0.021,0.032-0.043,0.059-0.064,0.088
|
460 |
+
c-0.022,0.029-0.043,0.057-0.065,0.084c-0.021,0.029-0.042,0.055-0.064,0.082c-0.021,0.029-0.042,0.054-0.064,0.079
|
461 |
+
c-0.021,0.027-0.043,0.053-0.064,0.077c-0.021,0.025-0.043,0.049-0.065,0.073c-0.021,0.025-0.042,0.051-0.064,0.075
|
462 |
+
c-0.021,0.021-0.043,0.047-0.064,0.069c-0.021,0.021-0.043,0.046-0.064,0.069c-0.022,0.021-0.042,0.044-0.064,0.064
|
463 |
+
c-0.022,0.023-0.043,0.044-0.065,0.065c-0.021,0.021-0.042,0.041-0.064,0.064c-0.021,0.019-0.043,0.038-0.064,0.059
|
464 |
+
c-0.022,0.021-0.043,0.042-0.064,0.061c-0.022,0.019-0.043,0.038-0.065,0.057c-0.021,0.019-0.042,0.04-0.064,0.059
|
465 |
+
c-0.021,0.017-0.043,0.035-0.064,0.055c-0.021,0.019-0.043,0.037-0.064,0.054c-0.021,0.018-0.043,0.034-0.064,0.053
|
466 |
+
c-0.022,0.017-0.043,0.033-0.065,0.05c-0.021,0.02-0.043,0.034-0.064,0.051c-0.021,0.017-0.042,0.033-0.064,0.05
|
467 |
+
c-0.021,0.015-0.042,0.031-0.064,0.046c-0.022,0.017-0.043,0.031-0.065,0.049c-0.021,0.015-0.042,0.026-0.064,0.044
|
468 |
+
c-0.021,0.015-0.042,0.029-0.064,0.044c-0.021,0.015-0.043,0.026-0.064,0.044c-0.022,0.012-0.043,0.026-0.065,0.039
|
469 |
+
c-0.021,0.017-0.042,0.029-0.064,0.042c-0.021,0.013-0.042,0.027-0.064,0.04c-0.021,0.013-0.043,0.024-0.064,0.037
|
470 |
+
s-0.043,0.025-0.064,0.04c-0.022,0.011-0.043,0.023-0.065,0.035c-0.021,0.013-0.042,0.025-0.064,0.036
|
471 |
+
c-0.021,0.013-0.043,0.025-0.064,0.037l-0.064,0.032c-0.022,0.012-0.043,0.024-0.065,0.033c-0.021,0.013-0.042,0.022-0.064,0.033
|
472 |
+
c-0.021,0.011-0.043,0.021-0.064,0.031c-0.021,0.011-0.043,0.021-0.064,0.029c-0.022,0.011-0.043,0.021-0.064,0.031
|
473 |
+
c-0.022,0.011-0.043,0.02-0.065,0.029L27.709,47.4l-0.064,0.029c-0.022,0.007-0.043,0.015-0.064,0.025
|
474 |
+
c-0.022,0.008-0.043,0.019-0.065,0.025c-0.021,0.008-0.042,0.017-0.064,0.024c-0.021,0.009-0.042,0.017-0.064,0.025
|
475 |
+
c-0.021,0.006-0.043,0.015-0.064,0.023l-0.064,0.022L27.193,47.6c-0.021,0.006-0.042,0.013-0.064,0.019
|
476 |
+
c-0.021,0.006-0.042,0.015-0.064,0.021c-0.022,0.007-0.043,0.013-0.064,0.02l-0.064,0.019l-0.065,0.019
|
477 |
+
c-0.021,0.007-0.042,0.013-0.064,0.02c-0.021,0.006-0.043,0.01-0.064,0.017c-0.021,0.006-0.043,0.01-0.064,0.015
|
478 |
+
c-0.022,0.006-0.043,0.013-0.064,0.017l-0.064,0.015l-0.064,0.015c-0.021,0.004-0.043,0.011-0.064,0.015
|
479 |
+
c-0.022,0.004-0.043,0.008-0.064,0.013c-0.022,0.004-0.043,0.008-0.065,0.013l-0.064,0.012c-0.021,0.002-0.043,0.007-0.064,0.009
|
480 |
+
c-0.021,0.004-0.043,0.008-0.064,0.011c-0.022,0.004-0.043,0.006-0.064,0.01l-0.064,0.009c-0.021,0.002-0.042,0.006-0.064,0.008
|
481 |
+
c-0.021,0.005-0.043,0.007-0.064,0.009c-0.022,0.002-0.043,0.004-0.064,0.009c-0.022,0-0.043,0.002-0.065,0.006l-0.064,0.004
|
482 |
+
c-0.021,0-0.043,0.005-0.064,0.005c-0.021,0.002-0.043,0.002-0.064,0.004l-0.064,0.004l-0.065,0.004
|
483 |
+
c-0.021,0-0.043,0.003-0.064,0.003c-0.021,0-0.043,0.002-0.064,0.004c-0.022,0-0.043,0-0.064,0H25.13
|
484 |
+
c-0.02,0-0.04,0.002-0.06,0.002h-0.005h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064H24.55h-0.067h-0.064h-0.065h-0.064
|
485 |
+
h-0.064h-0.064h-0.064H24.03h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064h-0.065h-0.064H23.45h-0.064h-0.065h-0.064h-0.065h-0.064
|
486 |
+
h-0.064h-0.064h-0.064h-0.065h-0.064H22.74h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064h-0.065h-0.064h-0.065h-0.064H22.03h-0.064
|
487 |
+
h-0.065h-0.064h-0.064h-0.064h-0.064h-0.065h-0.064H21.45h-0.064H21.32h-0.064h-0.065h-0.064h-0.064h-0.064h-0.064h-0.065h-0.064
|
488 |
+
H20.74h-0.064H20.61h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064h-0.065h-0.064H20.03h-0.064h-0.064h-0.064h-0.064h-0.064h-0.065
|
489 |
+
h-0.064h-0.064H19.45h-0.065H19.32h-0.064h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064h-0.065h-0.064H18.61h-0.064h-0.065
|
490 |
+
h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064H18.03h-0.065h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064H17.45h-0.065H17.32
|
491 |
+
h-0.064h-0.064h-0.065h-0.064h-0.065h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064h-0.064h-0.064
|
492 |
+
h-0.064h-0.064h-0.065h-0.064H15.9h-0.065h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064h-0.139V33.828
|
493 |
+
c0,0,0.047,0.015,0.139,0.037l0.064,0.017l0.064,0.015l0.064,0.018l0.065,0.012l0.064,0.015l0.064,0.018l0.064,0.015l0.064,0.012
|
494 |
+
l0.065,0.017l0.064,0.013l0.064,0.015l0.064,0.013l0.064,0.013l0.065,0.015l0.064,0.015l0.064,0.013l0.064,0.013l0.065,0.013
|
495 |
+
l0.064,0.012l0.064,0.013l0.064,0.011l0.065,0.013l0.064,0.011l0.064,0.012l0.064,0.011l0.065,0.013l0.064,0.013l0.064,0.008
|
496 |
+
l0.064,0.013l0.065,0.011l0.064,0.011l0.064,0.01l0.064,0.011l0.064,0.009l0.065,0.01l0.064,0.011l0.064,0.011l0.064,0.011
|
497 |
+
l0.065,0.008l0.064,0.011l0.064,0.008l0.064,0.011l0.065,0.007l0.064,0.008l0.064,0.011l0.064,0.008l0.064,0.007l0.065,0.011
|
498 |
+
l0.064,0.006l0.064,0.009l0.064,0.008l0.065,0.009l0.064,0.006l0.064,0.009l0.064,0.006l0.064,0.006l0.065,0.009l0.064,0.009
|
499 |
+
l0.064,0.006l0.064,0.006l0.064,0.007l0.064,0.006l0.064,0.007l0.064,0.006l0.064,0.007l0.064,0.004l0.064,0.004l0.064,0.007
|
500 |
+
l0.064,0.004l0.064,0.006l0.065,0.007l0.064,0.002l0.064,0.006l0.064,0.005l0.064,0.006l0.064,0.002l0.064,0.004l0.064,0.007
|
501 |
+
l0.065,0.002l0.064,0.004l0.064,0.002l0.064,0.005l0.065,0.004l0.064,0.002l0.064,0.004l0.064,0.003l0.064,0.002l0.064,0.004
|
502 |
+
l0.064,0.002l0.064,0.002l0.064,0.002l0.065,0.003h0.064l0.064,0.004h0.064l0.064,0.002h0.065l0.064,0.002l0.064,0.002h0.064
|
503 |
+
h0.065h0.064h0.064h0.064h0.025h0.039h0.064h0.065h0.064h0.064l0.064-0.002l0.065-0.002h0.064l0.064-0.002h0.064L22.8,34.65h0.065
|
504 |
+
l0.064-0.003l0.064-0.002l0.064-0.004l0.065-0.002l0.064-0.002l0.064-0.002l0.064-0.007l0.064-0.002l0.065-0.004l0.064-0.005
|
505 |
+
l0.064-0.004l0.064-0.004l0.064-0.004l0.065-0.007l0.064-0.004l0.064-0.004l0.064-0.007l0.065-0.006l0.064-0.007l0.064-0.006
|
506 |
+
l0.064-0.007l0.064-0.006l0.065-0.006l0.064-0.011l0.064-0.007l0.064-0.008l0.065-0.007l0.064-0.01l0.064-0.009l0.064-0.008
|
507 |
+
c0.022-0.005,0.043-0.009,0.065-0.011l0.064-0.011l0.064-0.008l0.064-0.011c0.022-0.002,0.043-0.006,0.064-0.011l0.064-0.01
|
508 |
+
c0.021-0.005,0.043-0.007,0.064-0.013c0.022-0.005,0.043-0.007,0.064-0.011l0.064-0.013l0.064-0.013l0.064-0.013
|
509 |
+
c0.022-0.002,0.043-0.008,0.064-0.012l0.064-0.015l0.065-0.013c0.021-0.005,0.042-0.011,0.064-0.015l0.064-0.015
|
510 |
+
c0.021-0.007,0.043-0.009,0.064-0.015c0.022-0.007,0.043-0.011,0.064-0.017l0.064-0.015c0.021-0.007,0.043-0.011,0.064-0.018
|
511 |
+
c0.022-0.006,0.043-0.01,0.064-0.015l0.064-0.019c0.022-0.006,0.043-0.013,0.065-0.017c0.021-0.006,0.042-0.013,0.064-0.019
|
512 |
+
l0.064-0.02c0.021-0.006,0.043-0.012,0.064-0.019l0.064-0.021l0.065-0.02c0.021-0.006,0.043-0.012,0.064-0.019l0.064-0.022
|
513 |
+
l0.064-0.021c0.021-0.008,0.042-0.017,0.064-0.022c0.022-0.009,0.043-0.015,0.065-0.023l0.064-0.022
|
514 |
+
c0.021-0.011,0.043-0.018,0.064-0.025c0.022-0.007,0.043-0.017,0.064-0.025c0.022-0.006,0.043-0.017,0.064-0.025l0.065-0.024
|
515 |
+
l0.064-0.029c0.021-0.009,0.043-0.017,0.064-0.025c0.022-0.011,0.043-0.021,0.064-0.029l0.064-0.029l0.065-0.031
|
516 |
+
c0.021-0.009,0.043-0.019,0.064-0.029c0.021-0.011,0.043-0.021,0.064-0.031c0.022-0.011,0.043-0.023,0.064-0.034
|
517 |
+
c0.022-0.012,0.044-0.021,0.065-0.033c0.022-0.011,0.043-0.022,0.064-0.033c0.021-0.013,0.042-0.025,0.064-0.038
|
518 |
+
c0.022-0.01,0.043-0.022,0.064-0.035c0.022-0.013,0.043-0.025,0.064-0.038c0.022-0.012,0.044-0.024,0.065-0.037
|
519 |
+
c0.022-0.015,0.042-0.027,0.064-0.042c0.021-0.013,0.043-0.027,0.064-0.04c0.022-0.015,0.043-0.029,0.064-0.044
|
520 |
+
c0.022-0.015,0.044-0.029,0.065-0.044c0.022-0.015,0.043-0.029,0.064-0.046c0.021-0.015,0.043-0.029,0.064-0.046
|
521 |
+
c0.022-0.017,0.043-0.033,0.064-0.048c0.022-0.017,0.043-0.033,0.064-0.051c0.022-0.017,0.044-0.035,0.065-0.052
|
522 |
+
c0.021-0.017,0.042-0.036,0.064-0.055c0.022-0.019,0.043-0.035,0.064-0.055c0.022-0.021,0.043-0.039,0.064-0.059
|
523 |
+
c0.022-0.021,0.044-0.039,0.065-0.061c0.022-0.021,0.043-0.042,0.064-0.063c0.022-0.021,0.043-0.044,0.064-0.064
|
524 |
+
c0.022-0.023,0.044-0.044,0.064-0.067c0.022-0.025,0.043-0.048,0.065-0.073c0.021-0.022,0.043-0.048,0.064-0.073
|
525 |
+
c0.022-0.027,0.043-0.052,0.064-0.079c0.022-0.027,0.043-0.055,0.064-0.082c0.022-0.027,0.043-0.057,0.065-0.086
|
526 |
+
c0.021-0.031,0.043-0.061,0.064-0.092c0.022-0.031,0.042-0.064,0.064-0.096c0.022-0.036,0.043-0.069,0.064-0.105
|
527 |
+
c0.022-0.035,0.044-0.07,0.064-0.108c0.022-0.04,0.044-0.079,0.065-0.119c0.022-0.042,0.043-0.086,0.064-0.13
|
528 |
+
c0.022-0.046,0.043-0.092,0.064-0.14c0.023-0.051,0.044-0.103,0.064-0.155c0.023-0.057,0.045-0.115,0.065-0.174
|
529 |
+
c0.022-0.066,0.044-0.134,0.064-0.2c0.023-0.08,0.045-0.159,0.064-0.239c0.024-0.1,0.045-0.2,0.064-0.303
|
530 |
+
c0.027-0.153,0.049-0.308,0.064-0.463c0.022-0.22,0.032-0.441,0.032-0.667v-7.771h-0.032h-0.064h-0.064h-0.064h-0.064h-0.065
|
531 |
+
h-0.064h-0.064h-0.064h-0.065h-0.064h-0.058H29.58h-0.065H29.45h-0.064h-0.064h-0.064h-0.064h-0.064h-0.064h-0.065h-0.064H28.87
|
532 |
+
h-0.064h-0.064h-0.065h-0.064h-0.064h-0.065h-0.064h-0.064h-0.065h-0.064H28.16h-0.064h-0.065h-0.064h-0.064h-0.064h-0.065h-0.064
|
533 |
+
h-0.064H27.58h-0.065H27.45h-0.064H27.32h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064H26.87h-0.064h-0.064h-0.065h-0.064h-0.064
|
534 |
+
h-0.064h-0.065h-0.065h-0.064h-0.064H26.16h-0.065H26.03h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064H25.58h-0.065H25.45h-0.064
|
535 |
+
h-0.064h-0.064h-0.064h-0.064h-0.064h-0.064h-0.064H24.87h-0.065H24.74h-0.064h-0.049v7.771c0,0.121-0.005,0.24-0.016,0.357
|
536 |
+
c-0.013,0.151-0.035,0.295-0.065,0.438c-0.018,0.088-0.039,0.174-0.064,0.258c-0.02,0.066-0.041,0.134-0.064,0.198
|
537 |
+
c-0.02,0.057-0.042,0.108-0.064,0.163c-0.021,0.048-0.042,0.097-0.064,0.143c-0.021,0.042-0.042,0.084-0.065,0.125
|
538 |
+
c-0.02,0.038-0.042,0.073-0.064,0.111c-0.021,0.033-0.042,0.069-0.064,0.103c-0.021,0.031-0.042,0.063-0.064,0.094
|
539 |
+
c-0.021,0.029-0.042,0.057-0.065,0.086c-0.02,0.027-0.042,0.055-0.064,0.079c-0.021,0.025-0.042,0.051-0.064,0.076
|
540 |
+
c-0.021,0.022-0.042,0.046-0.064,0.068c-0.021,0.021-0.042,0.044-0.065,0.065c-0.02,0.021-0.042,0.042-0.064,0.063
|
541 |
+
c-0.021,0.019-0.042,0.038-0.064,0.057c-0.021,0.019-0.042,0.037-0.064,0.055c-0.021,0.017-0.043,0.035-0.064,0.052
|
542 |
+
c-0.021,0.015-0.043,0.031-0.065,0.048c-0.021,0.015-0.042,0.029-0.064,0.046c-0.021,0.015-0.042,0.029-0.064,0.044
|
543 |
+
c-0.021,0.013-0.043,0.027-0.064,0.04c-0.021,0.015-0.043,0.027-0.064,0.04c-0.022,0.013-0.043,0.025-0.065,0.037
|
544 |
+
c-0.021,0.011-0.042,0.023-0.064,0.034c-0.021,0.013-0.042,0.022-0.064,0.033c-0.021,0.011-0.043,0.021-0.064,0.031
|
545 |
+
c-0.022,0.009-0.043,0.019-0.065,0.029c-0.021,0.009-0.042,0.019-0.064,0.029c-0.021,0.009-0.043,0.017-0.064,0.025
|
546 |
+
c-0.021,0.008-0.043,0.017-0.064,0.024c-0.021,0.009-0.042,0.018-0.064,0.023c-0.022,0.009-0.043,0.015-0.065,0.023
|
547 |
+
c-0.021,0.006-0.042,0.015-0.064,0.021c-0.021,0.006-0.043,0.013-0.064,0.019c-0.022,0.007-0.043,0.013-0.064,0.02
|
548 |
+
c-0.022,0.006-0.043,0.012-0.065,0.019c-0.021,0.004-0.042,0.011-0.064,0.015c-0.021,0.006-0.042,0.011-0.064,0.015
|
549 |
+
c-0.021,0.006-0.043,0.011-0.064,0.015c-0.022,0.004-0.043,0.008-0.064,0.013c-0.022,0.004-0.043,0.008-0.065,0.013
|
550 |
+
c-0.021,0.002-0.043,0.006-0.064,0.01l-0.064,0.011c-0.021,0.002-0.042,0.004-0.064,0.009c-0.022,0.002-0.043,0.004-0.065,0.008
|
551 |
+
l-0.064,0.007c-0.021,0.002-0.043,0.004-0.064,0.006c-0.021,0.002-0.043,0.004-0.064,0.006c-0.022,0-0.043,0.003-0.065,0.005
|
552 |
+
c-0.021,0.002-0.042,0.002-0.064,0.004c-0.021,0-0.042,0.002-0.064,0.002c-0.021,0.002-0.043,0.002-0.064,0.002l-0.064,0.002
|
553 |
+
c-0.021,0-0.042,0-0.064,0H21.04H21h-0.064h-0.064l-0.065-0.002l-0.064-0.002l-0.064-0.002l-0.064-0.002l-0.065-0.004
|
554 |
+
l-0.064-0.003l-0.064-0.004l-0.064-0.004l-0.064-0.004l-0.065-0.007l-0.064-0.004l-0.064-0.007l-0.064-0.006l-0.065-0.006
|
555 |
+
l-0.064-0.007l-0.064-0.008l-0.064-0.009l-0.064-0.009l-0.065-0.008l-0.064-0.009l-0.064-0.01l-0.064-0.009l-0.064-0.011
|
556 |
+
l-0.065-0.01l-0.064-0.011l-0.064-0.011l-0.064-0.013l-0.065-0.013L19,32.297l-0.064-0.013l-0.064-0.013l-0.065-0.013
|
557 |
+
l-0.064-0.015l-0.064-0.015l-0.064-0.015L18.549,32.2l-0.065-0.015l-0.064-0.015l-0.064-0.017l-0.064-0.017l-0.065-0.017
|
558 |
+
l-0.064-0.017l-0.064-0.018l-0.064-0.019l-0.065-0.017l-0.064-0.019l-0.064-0.02l-0.064-0.019l-0.064-0.021l-0.065-0.02
|
559 |
+
l-0.064-0.019l-0.064-0.021l-0.064-0.021l-0.065-0.021l-0.064-0.023l-0.064-0.021l-0.064-0.023l-0.064-0.021l-0.065-0.023
|
560 |
+
l-0.064-0.022l-0.064-0.023l-0.064-0.024l-0.065-0.023l-0.064-0.025l-0.064-0.024l-0.065-0.025l-0.064-0.025l-0.064-0.025
|
561 |
+
l-0.064-0.024l-0.064-0.027l-0.065-0.025l-0.064-0.027l-0.064-0.027l-0.064-0.026l-0.065-0.027l-0.064-0.029l-0.064-0.027
|
562 |
+
l-0.064-0.029l-0.064-0.029l-0.064-0.027l-0.065-0.031l-0.064-0.029l-0.064-0.029l-0.064-0.031L15.384,31.064L15.384,31.064z"/>
|
563 |
+
|
564 |
+
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="6.8457" y1="3.3096" x2="23.6543" y2="3.3096" gradientTransform="matrix(1 0 0 -1 8.3999 31.1602)">
|
565 |
+
<stop offset="0" style="stop-color:#32336D"/>
|
566 |
+
<stop offset="0.4663" style="stop-color:#2F548D"/>
|
567 |
+
<stop offset="0.8181" style="stop-color:#2869A7"/>
|
568 |
+
<stop offset="1" style="stop-color:#2571B2"/>
|
569 |
+
</linearGradient>
|
570 |
+
<path fill="url(#SVGID_3_)" d="M15.246,47.94H25.25h0h0.001h0.001h0h0.001h0h0.001c0.021-0.002,0.043-0.004,0.064-0.004
|
571 |
+
c0.022,0,0.042,0,0.064-0.003l0.065-0.004l0.064-0.002c0.021-0.004,0.043-0.004,0.064-0.004c0.022-0.002,0.043-0.007,0.064-0.007
|
572 |
+
l0.065-0.004c0.021-0.004,0.042-0.006,0.064-0.006c0.021-0.005,0.043-0.007,0.064-0.009c0.021-0.002,0.043-0.004,0.064-0.009
|
573 |
+
c0.022-0.002,0.043-0.006,0.064-0.008l0.065-0.009c0.021-0.004,0.043-0.004,0.064-0.008c0.021-0.005,0.043-0.009,0.064-0.013
|
574 |
+
c0.021-0.002,0.043-0.007,0.064-0.009l0.065-0.012c0.021-0.005,0.042-0.009,0.064-0.013c0.021-0.005,0.043-0.009,0.064-0.013
|
575 |
+
c0.022-0.004,0.042-0.011,0.064-0.013l0.064-0.017l0.065-0.015c0.021-0.004,0.043-0.011,0.064-0.017
|
576 |
+
c0.021-0.002,0.043-0.009,0.064-0.015c0.022-0.007,0.043-0.011,0.064-0.017c0.022-0.007,0.043-0.013,0.064-0.02l0.065-0.017
|
577 |
+
l0.064-0.021c0.021-0.007,0.043-0.013,0.064-0.02c0.022-0.006,0.043-0.012,0.064-0.021c0.022-0.006,0.043-0.013,0.064-0.019
|
578 |
+
l0.065-0.023l0.064-0.022c0.021-0.009,0.043-0.015,0.064-0.023c0.022-0.009,0.043-0.017,0.064-0.025
|
579 |
+
c0.022-0.006,0.043-0.017,0.064-0.024c0.022-0.007,0.042-0.018,0.064-0.025c0.021-0.009,0.043-0.019,0.064-0.025l0.064-0.029
|
580 |
+
l0.064-0.027c0.022-0.01,0.044-0.019,0.065-0.029c0.021-0.008,0.042-0.021,0.064-0.031c0.021-0.008,0.043-0.019,0.064-0.027
|
581 |
+
c0.022-0.012,0.043-0.022,0.064-0.033c0.022-0.011,0.043-0.021,0.064-0.033c0.022-0.009,0.043-0.021,0.065-0.031l0.064-0.034
|
582 |
+
c0.021-0.012,0.043-0.024,0.064-0.037c0.022-0.011,0.043-0.023,0.064-0.036c0.022-0.012,0.044-0.024,0.064-0.035
|
583 |
+
c0.021-0.013,0.043-0.027,0.064-0.04c0.021-0.013,0.043-0.024,0.064-0.037c0.022-0.013,0.043-0.027,0.064-0.04
|
584 |
+
c0.022-0.013,0.043-0.025,0.065-0.04c0.021-0.015,0.042-0.029,0.064-0.041c0.021-0.018,0.043-0.029,0.064-0.044
|
585 |
+
c0.022-0.015,0.043-0.029,0.064-0.044c0.022-0.018,0.043-0.029,0.064-0.044c0.022-0.018,0.043-0.032,0.065-0.049
|
586 |
+
c0.021-0.015,0.043-0.031,0.064-0.046c0.022-0.017,0.043-0.031,0.064-0.05c0.021-0.017,0.043-0.031,0.064-0.051
|
587 |
+
c0.021-0.017,0.043-0.033,0.065-0.05c0.021-0.017,0.043-0.035,0.064-0.053c0.022-0.017,0.043-0.035,0.064-0.054
|
588 |
+
c0.021-0.02,0.043-0.036,0.064-0.055c0.022-0.019,0.042-0.038,0.064-0.059c0.021-0.019,0.043-0.038,0.064-0.057
|
589 |
+
s0.042-0.04,0.064-0.061c0.021-0.019,0.043-0.04,0.064-0.059c0.022-0.023,0.043-0.044,0.064-0.064
|
590 |
+
c0.022-0.021,0.044-0.042,0.065-0.065c0.021-0.021,0.043-0.044,0.064-0.064c0.022-0.023,0.043-0.048,0.064-0.069
|
591 |
+
c0.021-0.022,0.043-0.048,0.064-0.069c0.022-0.024,0.043-0.05,0.065-0.073c0.021-0.024,0.043-0.05,0.064-0.075
|
592 |
+
c0.021-0.024,0.043-0.05,0.064-0.077c0.022-0.025,0.043-0.05,0.064-0.079c0.022-0.025,0.042-0.053,0.064-0.08
|
593 |
+
c0.022-0.029,0.044-0.057,0.065-0.086c0.021-0.029,0.043-0.056,0.064-0.085c0.022-0.031,0.043-0.061,0.064-0.09
|
594 |
+
c0.022-0.032,0.043-0.063,0.064-0.095c0.022-0.031,0.043-0.063,0.065-0.099c0.021-0.031,0.043-0.064,0.064-0.1
|
595 |
+
c0.021-0.034,0.043-0.069,0.064-0.103c0.022-0.036,0.043-0.073,0.064-0.111c0.021-0.037,0.042-0.075,0.064-0.113
|
596 |
+
c0.022-0.039,0.044-0.081,0.065-0.121c0.022-0.042,0.043-0.084,0.064-0.125c0.022-0.044,0.043-0.088,0.064-0.132
|
597 |
+
c0.022-0.049,0.044-0.095,0.064-0.143c0.022-0.05,0.044-0.101,0.065-0.15c0.022-0.055,0.043-0.109,0.064-0.163
|
598 |
+
c0.022-0.057,0.044-0.115,0.064-0.176c0.023-0.063,0.044-0.128,0.064-0.192c0.023-0.071,0.045-0.143,0.064-0.216
|
599 |
+
c0.023-0.082,0.045-0.165,0.065-0.249c0.023-0.099,0.044-0.198,0.064-0.301c0.025-0.134,0.047-0.266,0.064-0.402
|
600 |
+
c0.031-0.238,0.049-0.483,0.054-0.731V7.761h-0.05h-0.064H31.58h-0.065H31.45h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064h-0.064
|
601 |
+
h-0.064H30.87h-0.064h-0.064h-0.065h-0.064h-0.064h-0.065h-0.064h-0.064H30.29h-0.065H30.16h-0.064h-0.064h-0.065h-0.064h-0.064
|
602 |
+
h-0.064h-0.064h-0.065H29.58h-0.065H29.45h-0.064h-0.064h-0.064h-0.064h-0.064h-0.064h-0.065h-0.064H28.87h-0.064h-0.064h-0.065
|
603 |
+
h-0.064h-0.064h-0.065h-0.064h-0.064h-0.065h-0.064H28.16h-0.064h-0.065h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064H27.58h-0.065
|
604 |
+
H27.45h-0.064H27.32h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064H26.87h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064h-0.065h-0.065
|
605 |
+
h-0.064h-0.064H26.16h-0.065H26.03h-0.064h-0.064h-0.064h-0.065h-0.064h-0.064H25.58h-0.065H25.45h-0.064h-0.064h-0.064h-0.064
|
606 |
+
h-0.064h-0.064h-0.064h-0.064H24.87h-0.065H24.74h-0.064h-0.064h-0.065h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064h-0.064H24.03
|
607 |
+
h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064h-0.065h-0.064H23.45h-0.064h-0.065h-0.064h-0.065h-0.064h-0.064h-0.064h-0.064h-0.065
|
608 |
+
h-0.064H22.74h-0.064h-0.064h-0.065h-0.064h-0.064h-0.064h-0.065h-0.064h-0.065h-0.064H22.03h-0.064H21.93l-0.029,0
|
609 |
+
c-0.021,0-0.043,0-0.064,0.001c-0.021,0-0.043,0-0.064,0c-0.022,0-0.043,0.002-0.065,0.002l-0.064,0.003
|
610 |
+
C21.622,7.769,21.6,7.77,21.579,7.771c-0.021,0.001-0.043,0.003-0.064,0.005c-0.022,0-0.043,0.002-0.065,0.003
|
611 |
+
c-0.021,0.002-0.043,0.003-0.064,0.006L21.32,7.79c-0.021,0.001-0.043,0.003-0.064,0.006c-0.022,0.002-0.043,0.004-0.065,0.007
|
612 |
+
l-0.064,0.008l-0.064,0.008c-0.022,0.003-0.043,0.006-0.064,0.009c-0.022,0.003-0.043,0.006-0.064,0.009
|
613 |
+
c-0.022,0.003-0.043,0.007-0.065,0.01l-0.064,0.011c-0.021,0.004-0.043,0.007-0.064,0.011c-0.022,0.004-0.043,0.009-0.064,0.012
|
614 |
+
c-0.022,0.004-0.043,0.008-0.065,0.013c-0.021,0.004-0.043,0.009-0.064,0.014l-0.064,0.014c-0.022,0.004-0.043,0.009-0.064,0.014
|
615 |
+
c-0.022,0.005-0.043,0.011-0.065,0.016c-0.021,0.005-0.042,0.009-0.064,0.015c-0.021,0.005-0.043,0.012-0.064,0.017l-0.065,0.018
|
616 |
+
c-0.021,0.005-0.043,0.011-0.064,0.017c-0.021,0.006-0.043,0.014-0.064,0.02c-0.022,0.006-0.042,0.012-0.064,0.019
|
617 |
+
c-0.021,0.007-0.042,0.014-0.064,0.021l-0.064,0.021l-0.064,0.022c-0.022,0.007-0.043,0.015-0.064,0.023
|
618 |
+
c-0.022,0.007-0.043,0.015-0.065,0.022c-0.021,0.007-0.042,0.016-0.064,0.024l-0.064,0.024L19.45,8.241l-0.065,0.026
|
619 |
+
c-0.021,0.009-0.043,0.018-0.064,0.026c-0.022,0.01-0.043,0.019-0.064,0.028c-0.022,0.009-0.043,0.019-0.064,0.029
|
620 |
+
c-0.022,0.009-0.044,0.02-0.064,0.03c-0.021,0.01-0.043,0.02-0.064,0.03c-0.022,0.01-0.043,0.021-0.065,0.032l-0.064,0.032
|
621 |
+
c-0.021,0.011-0.043,0.022-0.064,0.033c-0.022,0.011-0.042,0.023-0.064,0.034c-0.022,0.012-0.044,0.022-0.065,0.035
|
622 |
+
c-0.021,0.011-0.043,0.024-0.064,0.036c-0.021,0.012-0.043,0.024-0.064,0.036c-0.022,0.012-0.043,0.025-0.064,0.038
|
623 |
+
c-0.022,0.012-0.043,0.025-0.065,0.039c-0.021,0.013-0.042,0.027-0.064,0.04c-0.021,0.014-0.043,0.027-0.064,0.041
|
624 |
+
c-0.022,0.013-0.043,0.027-0.065,0.041c-0.021,0.014-0.043,0.028-0.064,0.042c-0.021,0.015-0.043,0.029-0.064,0.044
|
625 |
+
c-0.022,0.015-0.043,0.03-0.064,0.045c-0.022,0.015-0.043,0.03-0.064,0.046L17.965,9.07c-0.021,0.016-0.042,0.032-0.064,0.048
|
626 |
+
c-0.022,0.017-0.043,0.033-0.064,0.049c-0.022,0.018-0.043,0.034-0.064,0.051c-0.022,0.017-0.044,0.035-0.065,0.052
|
627 |
+
c-0.021,0.019-0.043,0.036-0.064,0.054C17.622,9.342,17.6,9.36,17.578,9.378c-0.022,0.019-0.043,0.038-0.064,0.057
|
628 |
+
c-0.022,0.02-0.042,0.039-0.064,0.057c-0.022,0.02-0.043,0.04-0.065,0.06c-0.021,0.021-0.043,0.04-0.064,0.061
|
629 |
+
c-0.022,0.02-0.043,0.042-0.064,0.063c-0.022,0.021-0.043,0.042-0.064,0.064c-0.022,0.022-0.044,0.044-0.065,0.066
|
630 |
+
c-0.021,0.023-0.043,0.045-0.064,0.067c-0.021,0.023-0.043,0.046-0.064,0.07c-0.022,0.023-0.043,0.047-0.064,0.071
|
631 |
+
c-0.022,0.025-0.042,0.05-0.064,0.074c-0.022,0.025-0.044,0.051-0.065,0.077c-0.021,0.026-0.043,0.052-0.064,0.078
|
632 |
+
c-0.022,0.027-0.043,0.054-0.065,0.08c-0.021,0.028-0.042,0.056-0.064,0.084c-0.021,0.029-0.043,0.057-0.064,0.086
|
633 |
+
c-0.022,0.03-0.043,0.059-0.064,0.088c-0.022,0.031-0.043,0.062-0.064,0.093c-0.022,0.031-0.044,0.064-0.065,0.096
|
634 |
+
c-0.021,0.033-0.042,0.066-0.064,0.099c-0.022,0.034-0.043,0.069-0.064,0.104c-0.022,0.036-0.043,0.072-0.064,0.108
|
635 |
+
c-0.022,0.038-0.044,0.076-0.065,0.113c-0.021,0.039-0.043,0.078-0.064,0.119c-0.022,0.041-0.043,0.082-0.064,0.124
|
636 |
+
c-0.022,0.042-0.044,0.086-0.064,0.13c-0.022,0.046-0.044,0.093-0.064,0.139c-0.022,0.049-0.044,0.099-0.064,0.147
|
637 |
+
c-0.023,0.053-0.044,0.106-0.065,0.159c-0.022,0.057-0.043,0.114-0.064,0.171c-0.022,0.063-0.044,0.125-0.064,0.188
|
638 |
+
c-0.022,0.069-0.044,0.138-0.064,0.208c-0.023,0.079-0.045,0.157-0.065,0.237c-0.023,0.093-0.045,0.187-0.064,0.281
|
639 |
+
c-0.091,0.44-0.139,0.895-0.139,1.361v16.539c0.046,0.023,0.092,0.044,0.139,0.067l0,0l0.064,0.031l0.065,0.029l0.064,0.029
|
640 |
+
l0.064,0.029l0.064,0.031l0.065,0.027l0.064,0.029l0.064,0.029l0.064,0.027l0.064,0.029l0.064,0.027l0.065,0.026l0.064,0.027
|
641 |
+
l0.064,0.027l0.064,0.025l0.065,0.027l0.064,0.024l0.064,0.025l0.064,0.025l0.064,0.025l0.065,0.024l0.064,0.025l0.065,0.023
|
642 |
+
l0.064,0.024l0.064,0.023l0.064,0.022l0.064,0.023l0.065,0.021l0.064,0.023l0.064,0.021l0.064,0.023l0.065,0.021l0.064,0.021
|
643 |
+
l0.064,0.021l0.064,0.019l0.064,0.02l0.065,0.021l0.064,0.019l0.064,0.02l0.064,0.019l0.065,0.017l0.064,0.019l0.064,0.018
|
644 |
+
l0.064,0.017l0.064,0.017l0.065,0.017l0.064,0.017l0.064,0.015l0.064,0.015l0.065,0.017l0.064,0.013l0.064,0.015l0.064,0.015
|
645 |
+
l0.064,0.013l0.065,0.013l0.064,0.015l0.064,0.01l0.064,0.013l0.065,0.013l0.064,0.011l0.064,0.011l0.064,0.01l0.064,0.011
|
646 |
+
l0.065,0.011l0.064,0.008l0.064,0.009l0.064,0.008l0.065,0.011l0.064,0.007l0.064,0.008l0.064,0.007l0.065,0.006l0.064,0.006
|
647 |
+
l0.064,0.007l0.064,0.004l0.064,0.007l0.065,0.004l0.064,0.004l0.064,0.004l0.064,0.003l0.065,0.004l0.064,0.002l0.064,0.002
|
648 |
+
l0.064,0.002l0.064,0.002h0.065h0.064h0.04h0.024c0.022,0,0.043,0,0.064,0l0.065-0.002c0.021,0,0.043,0,0.064-0.002
|
649 |
+
c0.021,0,0.043-0.002,0.064-0.002c0.022-0.002,0.043-0.002,0.064-0.004c0.022-0.002,0.043-0.002,0.064-0.005
|
650 |
+
c0.022-0.002,0.043-0.004,0.065-0.006c0.021-0.002,0.043-0.004,0.064-0.006l0.064-0.007c0.022-0.002,0.043-0.006,0.064-0.008
|
651 |
+
c0.022-0.003,0.043-0.007,0.065-0.009l0.064-0.011c0.021-0.004,0.043-0.008,0.064-0.01c0.021-0.005,0.043-0.009,0.064-0.013
|
652 |
+
c0.022-0.005,0.043-0.009,0.064-0.013c0.022-0.004,0.044-0.009,0.065-0.015c0.021-0.004,0.043-0.009,0.064-0.015
|
653 |
+
c0.022-0.004,0.042-0.011,0.064-0.015c0.022-0.007,0.043-0.013,0.064-0.019c0.022-0.007,0.043-0.013,0.065-0.02
|
654 |
+
c0.021-0.006,0.043-0.013,0.064-0.019c0.022-0.006,0.042-0.015,0.064-0.021c0.022-0.009,0.043-0.015,0.064-0.023
|
655 |
+
c0.022-0.006,0.043-0.015,0.065-0.023c0.021-0.008,0.043-0.017,0.064-0.024c0.021-0.009,0.043-0.017,0.064-0.025
|
656 |
+
c0.022-0.011,0.043-0.019,0.064-0.029c0.022-0.011,0.043-0.021,0.064-0.029c0.022-0.011,0.043-0.021,0.065-0.031
|
657 |
+
c0.021-0.011,0.043-0.021,0.064-0.033c0.022-0.011,0.042-0.023,0.064-0.034c0.022-0.012,0.043-0.024,0.064-0.037
|
658 |
+
c0.022-0.013,0.043-0.025,0.065-0.04c0.021-0.013,0.043-0.027,0.064-0.04c0.022-0.015,0.043-0.029,0.064-0.044
|
659 |
+
c0.022-0.015,0.043-0.029,0.064-0.046c0.022-0.015,0.043-0.031,0.064-0.048c0.022-0.017,0.044-0.035,0.065-0.052
|
660 |
+
c0.021-0.018,0.043-0.036,0.064-0.055c0.022-0.019,0.043-0.038,0.064-0.057c0.022-0.021,0.044-0.042,0.064-0.063
|
661 |
+
c0.022-0.021,0.044-0.042,0.065-0.065c0.022-0.022,0.043-0.046,0.064-0.068c0.021-0.025,0.042-0.051,0.064-0.076
|
662 |
+
c0.022-0.024,0.044-0.052,0.064-0.079c0.022-0.027,0.044-0.057,0.064-0.086c0.022-0.031,0.044-0.063,0.065-0.094
|
663 |
+
c0.022-0.033,0.043-0.067,0.064-0.103c0.022-0.036,0.044-0.073,0.064-0.111c0.023-0.041,0.044-0.083,0.064-0.125
|
664 |
+
c0.023-0.046,0.045-0.095,0.065-0.143c0.022-0.052,0.044-0.106,0.064-0.163c0.024-0.064,0.044-0.13,0.064-0.198
|
665 |
+
c0.024-0.084,0.046-0.17,0.064-0.258c0.03-0.14,0.052-0.286,0.064-0.438c0.011-0.116,0.016-0.236,0.016-0.357v-7.771h0.049h0.064
|
666 |
+
h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.064h0.064h0.064h0.064h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064
|
667 |
+
h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.065h0.064h0.064h0.064h0.065
|
668 |
+
h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.065h0.064h0.064
|
669 |
+
h0.064h0.065H28.8h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.064h0.065h0.064h0.064h0.064h0.065h0.064
|
670 |
+
h0.064h0.064h0.065h0.064h0.064h0.064h0.032v7.771c0,0.226-0.01,0.447-0.032,0.665c-0.016,0.157-0.037,0.312-0.064,0.463
|
671 |
+
c-0.019,0.104-0.04,0.205-0.064,0.305c-0.02,0.08-0.042,0.159-0.064,0.239c-0.021,0.066-0.042,0.134-0.065,0.2
|
672 |
+
c-0.021,0.059-0.042,0.115-0.064,0.174c-0.021,0.053-0.042,0.104-0.064,0.155c-0.021,0.046-0.042,0.094-0.064,0.14
|
673 |
+
c-0.021,0.044-0.042,0.086-0.065,0.13c-0.021,0.04-0.042,0.079-0.064,0.119c-0.021,0.035-0.042,0.073-0.064,0.108
|
674 |
+
c-0.021,0.036-0.042,0.069-0.064,0.105c-0.021,0.031-0.043,0.063-0.065,0.096c-0.021,0.029-0.042,0.061-0.064,0.09
|
675 |
+
c-0.021,0.031-0.042,0.061-0.064,0.088c-0.021,0.027-0.043,0.055-0.064,0.082s-0.043,0.052-0.064,0.077
|
676 |
+
c-0.022,0.025-0.043,0.05-0.065,0.075c-0.021,0.023-0.042,0.048-0.064,0.071c-0.021,0.023-0.042,0.046-0.064,0.069
|
677 |
+
c-0.021,0.021-0.042,0.044-0.064,0.064c-0.021,0.021-0.043,0.042-0.065,0.063c-0.021,0.02-0.042,0.04-0.064,0.061
|
678 |
+
c-0.021,0.02-0.042,0.038-0.064,0.057c-0.021,0.02-0.043,0.038-0.064,0.057c-0.021,0.019-0.043,0.036-0.064,0.055
|
679 |
+
c-0.022,0.017-0.043,0.033-0.065,0.052c-0.021,0.018-0.042,0.034-0.064,0.051c-0.021,0.015-0.042,0.031-0.064,0.048
|
680 |
+
c-0.021,0.015-0.042,0.031-0.064,0.046c-0.021,0.015-0.043,0.031-0.065,0.046c-0.021,0.015-0.042,0.029-0.064,0.044
|
681 |
+
c-0.021,0.015-0.042,0.029-0.064,0.044c-0.021,0.013-0.043,0.027-0.064,0.04c-0.022,0.015-0.043,0.027-0.064,0.04
|
682 |
+
c-0.022,0.015-0.043,0.027-0.065,0.039c-0.021,0.013-0.042,0.025-0.064,0.038c-0.021,0.013-0.043,0.025-0.064,0.035
|
683 |
+
c-0.021,0.013-0.043,0.025-0.064,0.036c-0.022,0.013-0.043,0.022-0.065,0.035c-0.021,0.011-0.042,0.021-0.064,0.033
|
684 |
+
c-0.021,0.011-0.042,0.021-0.064,0.034c-0.021,0.01-0.042,0.021-0.064,0.029c-0.022,0.013-0.043,0.022-0.064,0.031l-0.065,0.031
|
685 |
+
l-0.064,0.027c-0.021,0.011-0.042,0.021-0.064,0.029c-0.021,0.011-0.043,0.019-0.064,0.027l-0.065,0.029l-0.064,0.024
|
686 |
+
c-0.021,0.009-0.043,0.018-0.064,0.025c-0.021,0.009-0.043,0.017-0.064,0.025c-0.021,0.008-0.043,0.015-0.065,0.025l-0.064,0.021
|
687 |
+
c-0.022,0.011-0.043,0.017-0.065,0.025c-0.021,0.006-0.043,0.015-0.064,0.022l-0.064,0.021l-0.064,0.021
|
688 |
+
c-0.021,0.009-0.043,0.015-0.065,0.021l-0.064,0.02l-0.064,0.021c-0.021,0.007-0.043,0.013-0.064,0.019l-0.064,0.02
|
689 |
+
c-0.022,0.006-0.043,0.01-0.065,0.017c-0.021,0.006-0.043,0.013-0.064,0.019l-0.064,0.017c-0.022,0.007-0.043,0.011-0.064,0.017
|
690 |
+
c-0.022,0.007-0.042,0.011-0.064,0.018l-0.064,0.015c-0.021,0.006-0.042,0.01-0.064,0.017c-0.021,0.006-0.043,0.008-0.064,0.015
|
691 |
+
l-0.064,0.015c-0.022,0.004-0.043,0.01-0.065,0.015l-0.064,0.013l-0.064,0.015c-0.022,0.004-0.043,0.008-0.064,0.012l-0.064,0.013
|
692 |
+
l-0.064,0.013l-0.064,0.011c-0.022,0.006-0.043,0.008-0.064,0.013c-0.021,0.006-0.042,0.008-0.064,0.013l-0.064,0.01
|
693 |
+
c-0.021,0.002-0.042,0.009-0.064,0.011l-0.064,0.011l-0.064,0.008l-0.065,0.011c-0.021,0.002-0.042,0.006-0.064,0.008
|
694 |
+
l-0.064,0.011l-0.064,0.009l-0.064,0.01l-0.064,0.007l-0.064,0.008l-0.064,0.007l-0.064,0.008l-0.065,0.009l-0.064,0.006
|
695 |
+
l-0.064,0.007l-0.064,0.006l-0.065,0.007l-0.064,0.006l-0.064,0.004l-0.064,0.007L23.77,34.6l-0.065,0.004l-0.064,0.007
|
696 |
+
l-0.064,0.004l-0.064,0.004l-0.065,0.005l-0.064,0.002l-0.064,0.004l-0.064,0.004l-0.064,0.003l-0.065,0.004l-0.064,0.002
|
697 |
+
l-0.064,0.002l-0.064,0.004h-0.065l-0.064,0.003l-0.064,0.004h-0.064l-0.064,0.002h-0.065l-0.064,0.002l-0.064,0.002h-0.064
|
698 |
+
h-0.065h-0.064h-0.064h-0.04h-0.025h-0.064h-0.064h-0.065h-0.064l-0.064-0.002l-0.064-0.002h-0.065h-0.064l-0.064-0.002h-0.064
|
699 |
+
l-0.064-0.004l-0.065-0.003h-0.064l-0.064-0.004l-0.064-0.002h-0.065l-0.064-0.004l-0.064-0.002l-0.064-0.005l-0.065-0.002
|
700 |
+
l-0.064-0.004l-0.064-0.002l-0.064-0.005l-0.064-0.002l-0.065-0.004l-0.064-0.004l-0.064-0.005L20.287,34.6l-0.064-0.004
|
701 |
+
l-0.064-0.004l-0.064-0.005l-0.064-0.006l-0.064-0.002L19.9,34.572l-0.064-0.006l-0.064-0.004l-0.064-0.007l-0.064-0.006
|
702 |
+
l-0.064-0.005l-0.064-0.006l-0.064-0.004l-0.064-0.007l-0.065-0.006l-0.064-0.007l-0.064-0.008l-0.064-0.007l-0.065-0.008
|
703 |
+
l-0.064-0.007l-0.064-0.006l-0.064-0.009l-0.064-0.006l-0.065-0.006l-0.064-0.011l-0.064-0.006l-0.064-0.009l-0.065-0.006
|
704 |
+
l-0.064-0.011l-0.064-0.009l-0.064-0.006l-0.065-0.011l-0.064-0.008l-0.064-0.009l-0.064-0.011l-0.064-0.006l-0.065-0.011
|
705 |
+
l-0.064-0.008l-0.064-0.013l-0.064-0.009l-0.065-0.011l-0.064-0.01l-0.064-0.009l-0.064-0.013l-0.064-0.01l-0.065-0.009
|
706 |
+
l-0.064-0.013l-0.064-0.011l-0.064-0.01l-0.065-0.011l-0.064-0.013l-0.064-0.011l-0.064-0.012l-0.064-0.013l-0.065-0.011
|
707 |
+
l-0.064-0.013l-0.064-0.011l-0.065-0.012l-0.064-0.013l-0.064-0.013l-0.064-0.015l-0.065-0.013l-0.064-0.015l-0.064-0.013
|
708 |
+
l-0.064-0.015l-0.064-0.013l-0.064-0.013l-0.064-0.017l-0.064-0.015l-0.064-0.012l-0.064-0.018l-0.064-0.015l-0.065-0.015
|
709 |
+
l-0.064-0.015l-0.064-0.015l-0.064-0.019c-0.091-0.022-0.139-0.035-0.139-0.035V47.94H15.246z"/>
|
710 |
+
</g>
|
711 |
+
</g>
|
712 |
+
</svg>
|
@@ -0,0 +1,152 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="85px"
|
4 |
+
height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
5 |
+
<g id="MasterCard">
|
6 |
+
<rect display="inline" fill="#25326B" width="85" height="55"/>
|
7 |
+
<g display="inline">
|
8 |
+
<path fill="#ED8423" d="M35.723,27.086c0-9.846,7.98-17.825,17.826-17.825c9.844,0,17.822,7.979,17.822,17.825
|
9 |
+
c0,9.843-7.979,17.824-17.822,17.824C43.703,44.91,35.723,36.929,35.723,27.086L35.723,27.086z"/>
|
10 |
+
<path fill="#E21F26" d="M41.608,13.817c0.009,0-0.933,0.814-1.564,1.613h3.172c0,0,1.084,1.172,1.485,2.058h-6.198
|
11 |
+
c0,0-0.601,0.943-1,1.741h8.199c0,0,0.747,1.402,0.912,2.144h-9.968c0,0-0.343,0.971-0.485,1.686l10.912-0.015
|
12 |
+
c0.3,1.372,1.026,5.354-0.47,9.756l-9.915,0.013c0.159,0.526,0.429,1.243,0.686,1.77h8.512c-0.343,0.716-0.842,1.614-1.129,2.066
|
13 |
+
l-6.241,0.007c0.329,0.498,0.858,1.284,1.199,1.643l3.843-0.002c-0.722,0.995-1.942,2.027-1.942,2.027h-0.03l0.038,0.014
|
14 |
+
c-3.155,2.844-7.337,4.573-11.919,4.573c-9.846,0-17.825-7.981-17.825-17.824c0-9.846,7.979-17.825,17.825-17.825
|
15 |
+
C34.279,9.261,38.453,10.984,41.608,13.817L41.608,13.817z"/>
|
16 |
+
<path fill="#25336C" d="M32.816,24.554l-0.288,1.604l-1.563-0.041c0,0-0.783,0.206-0.783,0.534c0,0.329,0.576,0.741,1.44,1.112
|
17 |
+
c0.865,0.369,0.905,1.396,0.823,2.098c-0.082,0.697-0.205,2.148-2.715,2.22c-1.439,0.041-2.22-0.246-2.22-0.246l0.328-1.646
|
18 |
+
c0,0,1.851,0.495,2.263,0.205c0.41-0.286,0.904-0.781,0.124-1.11c-0.783-0.328-2.058-0.862-2.058-2.179s0.537-2.059,1.358-2.429
|
19 |
+
C30.349,24.31,31.789,24.349,32.816,24.554L32.816,24.554z"/>
|
20 |
+
<polygon fill="#25336C" points="20.46,31.892 18.642,31.892 19.699,25.643 17.452,31.855 16.197,31.855 15.893,25.395
|
21 |
+
14.794,31.892 13.075,31.892 14.696,22.353 16.781,22.353 17.512,27.846 19.938,22.353 22.08,22.353 "/>
|
22 |
+
<path fill="#25336C" d="M34.442,32.025c-0.593,0-1.016-0.134-1.27-0.381c-0.251-0.269-0.379-0.671-0.379-1.186
|
23 |
+
c0-0.134,0.013-0.267,0.029-0.382c0.013-0.135,0.041-0.288,0.055-0.458l1.093-6.106h1.704l-0.247,1.194h1.592l-0.267,1.508H35.16
|
24 |
+
l-0.437,2.601c-0.028,0.171-0.057,0.343-0.084,0.536c-0.029,0.17-0.042,0.343-0.042,0.458c0,0.268,0.042,0.438,0.154,0.534
|
25 |
+
c0.099,0.096,0.269,0.153,0.494,0.153c0.084,0,0.196-0.019,0.338-0.058c0.142-0.057,0.268-0.096,0.352-0.154h0.142l-0.27,1.53
|
26 |
+
c-0.195,0.076-0.392,0.114-0.603,0.15C34.992,32.009,34.738,32.025,34.442,32.025L34.442,32.025z"/>
|
27 |
+
<path fill="#25336C" d="M46.673,26.715c-0.369-0.287-1.199-0.23-1.373,0.36l-0.817,4.816h-1.705l1.228-7.185h1.704l-0.036,0.579
|
28 |
+
c0.324-0.327,0.686-0.599,1.602-0.571C47.33,24.715,46.721,25.781,46.673,26.715L46.673,26.715z"/>
|
29 |
+
<path fill="#25336C" d="M49.894,32.085c-0.941,0-1.689-0.326-2.195-0.958c-0.523-0.63-0.776-1.548-0.776-2.733
|
30 |
+
c0-0.935,0.112-1.778,0.339-2.542c0.223-0.762,0.549-1.412,0.943-1.97c0.394-0.533,0.861-0.956,1.409-1.259
|
31 |
+
c0.535-0.307,1.114-0.458,1.721-0.458c0.478,0,0.928,0.075,1.352,0.209c0.206,0.07,0.597,0.258,0.597,0.258l-0.395,2.264
|
32 |
+
c-0.198-0.251-0.396-0.446-0.599-0.591c-0.296-0.19-0.648-0.305-1.039-0.305c-0.707,0-1.283,0.38-1.737,1.146
|
33 |
+
c-0.464,0.766-0.688,1.739-0.688,2.924c0,0.766,0.127,1.32,0.379,1.664c0.252,0.324,0.621,0.498,1.098,0.498
|
34 |
+
c0.44,0,0.848-0.114,1.227-0.346c0.183-0.117,0.361-0.244,0.53-0.386l-0.395,2.164c0,0-0.206,0.1-0.303,0.135
|
35 |
+
c-0.24,0.094-0.452,0.151-0.634,0.211C50.527,32.047,50.248,32.085,49.894,32.085L49.894,32.085z"/>
|
36 |
+
<path fill="#25336C" d="M24.656,31.645c-0.071,0.057-0.141,0.097-0.197,0.132c-0.185,0.097-0.339,0.173-0.494,0.232
|
37 |
+
c-0.156,0.038-0.368,0.076-0.648,0.076c-0.438,0-0.803-0.175-1.072-0.498c-0.283-0.344-0.422-0.785-0.422-1.318
|
38 |
+
c0-0.574,0.099-1.052,0.296-1.453c0.197-0.384,0.493-0.709,0.888-0.937c0.367-0.229,0.803-0.383,1.296-0.479l0.353-0.059
|
39 |
+
c0.41-0.075,0.832-0.132,1.297-0.151c0-0.039,0-0.077,0.014-0.134c0.014-0.059,0.014-0.115,0.014-0.192
|
40 |
+
c0-0.304-0.098-0.515-0.311-0.649c-0.211-0.115-0.521-0.172-0.929-0.172h-0.084c-0.253,0.018-0.536,0.076-0.846,0.191
|
41 |
+
c-0.338,0.135-0.592,0.229-0.762,0.326h-0.154l0.253-1.702c0.198-0.078,0.507-0.152,0.915-0.229
|
42 |
+
c0.199-0.058,0.397-0.077,0.594-0.097c0.211-0.038,0.436-0.038,0.648-0.038c0.831,0,1.437,0.152,1.833,0.439
|
43 |
+
c0.394,0.288,0.578,0.748,0.578,1.376c0,0.078,0,0.191-0.015,0.326c-0.013,0.135-0.027,0.248-0.041,0.362l-0.832,4.893h-1.692
|
44 |
+
l0.128-0.765c-0.099,0.097-0.24,0.211-0.381,0.345C24.797,31.528,24.727,31.587,24.656,31.645L24.656,31.645z M24.656,28.662
|
45 |
+
c-0.184,0.04-0.339,0.096-0.465,0.153c-0.198,0.097-0.338,0.228-0.437,0.401c-0.112,0.172-0.156,0.402-0.156,0.688
|
46 |
+
c0,0.249,0.07,0.421,0.199,0.517c0.14,0.098,0.323,0.154,0.591,0.154c0.084,0,0.169-0.02,0.268-0.057
|
47 |
+
c0.084-0.021,0.169-0.06,0.268-0.098c0.183-0.114,0.365-0.25,0.535-0.401l0.255-1.529c-0.297,0.038-0.592,0.077-0.846,0.135
|
48 |
+
C24.797,28.625,24.727,28.644,24.656,28.662L24.656,28.662z"/>
|
49 |
+
<path fill="#25336C" d="M39.395,25.949c-0.227,0.035-0.438,0.15-0.607,0.344c-0.241,0.268-0.422,0.61-0.549,1.068h1.156h1.141
|
50 |
+
c0-0.075,0.015-0.134,0.015-0.21c0-0.057,0.013-0.132,0.013-0.19c0-0.346-0.084-0.592-0.239-0.785
|
51 |
+
c-0.155-0.17-0.365-0.266-0.663-0.266C39.577,25.91,39.479,25.928,39.395,25.949L39.395,25.949z M39.395,30.459h0.254
|
52 |
+
c0.366,0,0.718-0.076,1.056-0.249c0.324-0.173,0.62-0.365,0.86-0.574h0.198l-0.326,1.856c-0.323,0.19-0.676,0.343-1.042,0.438
|
53 |
+
c-0.311,0.096-0.649,0.135-1,0.155h-0.156c-0.915,0-1.606-0.27-2.099-0.824c-0.494-0.535-0.733-1.28-0.733-2.235
|
54 |
+
c0-0.649,0.083-1.262,0.239-1.798c0.155-0.554,0.395-1.03,0.691-1.451c0.295-0.402,0.647-0.708,1.084-0.957
|
55 |
+
c0.31-0.152,0.636-0.268,0.973-0.325c0.154-0.019,0.308-0.019,0.466-0.019c0.788,0,1.379,0.21,1.788,0.651
|
56 |
+
c0.395,0.419,0.593,1.07,0.593,1.91c0,0.288-0.016,0.574-0.057,0.861c-0.044,0.265-0.099,0.554-0.17,0.82h-2.62h-1.326v0.076
|
57 |
+
v0.076c0,0.5,0.142,0.881,0.395,1.166C38.675,30.269,38.987,30.421,39.395,30.459L39.395,30.459z"/>
|
58 |
+
<path fill="#25336C" d="M55.364,31.645c-0.071,0.057-0.142,0.097-0.211,0.132c-0.169,0.097-0.338,0.173-0.493,0.232
|
59 |
+
c-0.154,0.038-0.368,0.076-0.636,0.076c-0.451,0-0.804-0.175-1.084-0.498c-0.281-0.344-0.41-0.785-0.41-1.318
|
60 |
+
c0-0.574,0.102-1.052,0.3-1.453c0.194-0.384,0.493-0.709,0.873-0.937c0.366-0.229,0.803-0.383,1.308-0.479
|
61 |
+
c0.114-0.02,0.226-0.039,0.354-0.059c0.395-0.075,0.832-0.132,1.283-0.151c0.013-0.039,0.013-0.077,0.029-0.134
|
62 |
+
c0-0.059,0.014-0.115,0.014-0.192c0-0.304-0.113-0.515-0.312-0.649c-0.212-0.115-0.521-0.172-0.931-0.172h-0.084
|
63 |
+
c-0.271,0.018-0.549,0.076-0.847,0.191c-0.337,0.135-0.589,0.229-0.76,0.326h-0.155l0.239-1.702
|
64 |
+
c0.198-0.078,0.508-0.152,0.931-0.229c0.197-0.058,0.396-0.077,0.592-0.097c0.212-0.038,0.422-0.038,0.65-0.038
|
65 |
+
c0.828,0,1.435,0.152,1.832,0.439c0.377,0.288,0.575,0.748,0.575,1.376c0,0.078,0,0.191-0.014,0.326
|
66 |
+
c-0.015,0.135-0.028,0.248-0.042,0.362l-0.831,4.893h-1.692l0.129-0.765c-0.113,0.097-0.242,0.211-0.396,0.345L55.364,31.645
|
67 |
+
L55.364,31.645z M55.364,28.662c-0.183,0.04-0.34,0.096-0.479,0.153c-0.184,0.097-0.338,0.228-0.438,0.401
|
68 |
+
c-0.099,0.172-0.156,0.402-0.156,0.688c0,0.249,0.073,0.421,0.214,0.517c0.125,0.098,0.323,0.154,0.576,0.154
|
69 |
+
c0.087,0,0.184-0.02,0.282-0.057c0.084-0.021,0.17-0.06,0.254-0.098c0.196-0.114,0.366-0.25,0.535-0.401l0.268-1.529
|
70 |
+
c-0.311,0.038-0.592,0.077-0.859,0.135C55.491,28.625,55.421,28.644,55.364,28.662L55.364,28.662z"/>
|
71 |
+
<path fill="#25336C" d="M62.556,26.715c-0.372-0.287-1.201-0.23-1.374,0.36l-0.816,4.816h-1.703l1.224-7.185h1.704l-0.036,0.579
|
72 |
+
c0.326-0.327,0.688-0.599,1.602-0.571C63.212,24.715,62.601,25.781,62.556,26.715L62.556,26.715z"/>
|
73 |
+
<path fill="#25336C" d="M65.904,26.234c-0.085,0.039-0.168,0.096-0.24,0.152c-0.224,0.152-0.408,0.384-0.563,0.65
|
74 |
+
c-0.126,0.266-0.238,0.574-0.309,0.977c-0.085,0.38-0.128,0.764-0.128,1.125c0,0.44,0.084,0.746,0.228,0.938
|
75 |
+
c0.152,0.208,0.378,0.306,0.676,0.306c0.112,0,0.226-0.02,0.337-0.076c0.057-0.021,0.101-0.038,0.154-0.076
|
76 |
+
c0.172-0.097,0.327-0.193,0.478-0.326l0.608-3.535c-0.099-0.059-0.209-0.113-0.367-0.154c-0.141-0.057-0.266-0.076-0.379-0.076
|
77 |
+
C66.214,26.139,66.059,26.176,65.904,26.234L65.904,26.234z M65.904,31.511c-0.125,0.115-0.267,0.23-0.423,0.324
|
78 |
+
c-0.141,0.075-0.282,0.153-0.407,0.19c-0.143,0.039-0.312,0.06-0.494,0.06c-0.524,0-0.932-0.232-1.241-0.671
|
79 |
+
c-0.294-0.459-0.448-1.107-0.448-1.932c0-0.688,0.07-1.338,0.236-1.93c0.155-0.592,0.382-1.127,0.665-1.586
|
80 |
+
c0.281-0.458,0.606-0.801,0.983-1.071c0.368-0.249,0.735-0.382,1.129-0.401h0.057c0.296,0,0.551,0.038,0.76,0.114
|
81 |
+
c0.215,0.077,0.44,0.211,0.664,0.384l0.38-2.507h1.703l-1.564,9.406H66.2l0.129-0.745C66.171,31.281,66.032,31.396,65.904,31.511
|
82 |
+
L65.904,31.511z"/>
|
83 |
+
<path fill="#FFFFFF" d="M33.161,24.298L32.872,25.9l-1.563-0.04c0,0-0.78,0.205-0.78,0.535c0,0.328,0.575,0.74,1.438,1.11
|
84 |
+
c0.866,0.371,0.906,1.398,0.824,2.098c-0.083,0.699-0.206,2.149-2.715,2.221c-1.44,0.041-2.22-0.247-2.22-0.247l0.327-1.645
|
85 |
+
c0,0,1.854,0.494,2.264,0.205c0.411-0.287,0.905-0.78,0.122-1.11c-0.78-0.327-2.055-0.865-2.055-2.18s0.534-2.056,1.357-2.428
|
86 |
+
C30.691,24.05,32.131,24.091,33.161,24.298L33.161,24.298z"/>
|
87 |
+
<polygon fill="#FFFFFF" points="20.801,31.635 18.984,31.635 20.042,25.385 17.795,31.598 16.539,31.598 16.237,25.136
|
88 |
+
15.137,31.635 13.417,31.635 15.038,22.098 17.123,22.098 17.854,27.588 20.281,22.098 22.422,22.098 "/>
|
89 |
+
<path fill="#FFFFFF" d="M34.784,31.768c-0.591,0-1.014-0.133-1.269-0.38c-0.254-0.269-0.381-0.671-0.381-1.187
|
90 |
+
c0-0.134,0.016-0.266,0.028-0.383c0.016-0.132,0.042-0.284,0.058-0.457l1.092-6.104h1.707l-0.25,1.191h1.593l-0.268,1.508h-1.592
|
91 |
+
l-0.438,2.602c-0.028,0.17-0.056,0.342-0.084,0.532c-0.028,0.175-0.042,0.347-0.042,0.461c0,0.267,0.042,0.438,0.154,0.534
|
92 |
+
c0.1,0.096,0.268,0.154,0.492,0.154c0.086,0,0.199-0.021,0.339-0.059c0.142-0.056,0.268-0.096,0.353-0.152h0.141l-0.269,1.529
|
93 |
+
c-0.196,0.076-0.394,0.115-0.604,0.151C35.333,31.749,35.081,31.768,34.784,31.768L34.784,31.768z"/>
|
94 |
+
<path fill="#FFFFFF" d="M47.016,26.458c-0.371-0.288-1.201-0.229-1.372,0.36l-0.818,4.816h-1.702l1.225-7.186h1.702l-0.034,0.58
|
95 |
+
c0.324-0.325,0.686-0.601,1.599-0.572C47.673,24.459,47.063,25.524,47.016,26.458L47.016,26.458z"/>
|
96 |
+
<path fill="#FFFFFF" d="M50.237,31.826c-0.944,0-1.691-0.323-2.197-0.957c-0.522-0.629-0.774-1.546-0.774-2.732
|
97 |
+
c0-0.938,0.112-1.778,0.338-2.543c0.225-0.764,0.55-1.413,0.942-1.968c0.395-0.535,0.861-0.955,1.412-1.261
|
98 |
+
c0.531-0.307,1.111-0.459,1.717-0.459c0.479,0,0.931,0.077,1.354,0.212c0.203,0.069,0.597,0.255,0.597,0.255L53.23,24.64
|
99 |
+
c-0.197-0.251-0.396-0.449-0.598-0.593c-0.296-0.189-0.649-0.307-1.044-0.307c-0.704,0-1.282,0.384-1.732,1.148
|
100 |
+
c-0.464,0.765-0.692,1.741-0.692,2.925c0,0.764,0.129,1.32,0.383,1.662c0.253,0.325,0.619,0.499,1.1,0.499
|
101 |
+
c0.436,0,0.843-0.117,1.227-0.347c0.18-0.117,0.356-0.242,0.528-0.383l-0.396,2.162c0,0-0.204,0.1-0.304,0.133
|
102 |
+
c-0.237,0.097-0.447,0.153-0.632,0.21C50.871,31.786,50.591,31.826,50.237,31.826L50.237,31.826z"/>
|
103 |
+
<path fill="#FFFFFF" d="M24.999,31.388c-0.071,0.058-0.142,0.093-0.197,0.133c-0.183,0.096-0.339,0.172-0.495,0.229
|
104 |
+
c-0.154,0.037-0.366,0.077-0.648,0.077c-0.437,0-0.803-0.173-1.07-0.496c-0.281-0.347-0.422-0.785-0.422-1.318
|
105 |
+
c0-0.574,0.097-1.051,0.294-1.453c0.198-0.385,0.493-0.709,0.89-0.938c0.366-0.229,0.802-0.381,1.296-0.477l0.352-0.059
|
106 |
+
c0.409-0.078,0.832-0.133,1.297-0.154c0-0.037,0-0.076,0.015-0.133c0.012-0.056,0.012-0.115,0.012-0.19
|
107 |
+
c0-0.307-0.099-0.517-0.309-0.651c-0.211-0.113-0.522-0.17-0.929-0.17h-0.085c-0.254,0.018-0.536,0.076-0.846,0.189
|
108 |
+
c-0.336,0.135-0.593,0.23-0.762,0.325h-0.153l0.253-1.7c0.197-0.076,0.506-0.153,0.916-0.228c0.196-0.06,0.395-0.077,0.592-0.098
|
109 |
+
c0.212-0.038,0.436-0.038,0.648-0.038c0.833,0,1.437,0.153,1.832,0.439c0.395,0.287,0.578,0.747,0.578,1.376
|
110 |
+
c0,0.077,0,0.191-0.014,0.327c-0.016,0.134-0.029,0.249-0.044,0.363l-0.829,4.892h-1.693l0.127-0.766
|
111 |
+
c-0.099,0.097-0.238,0.213-0.38,0.347C25.139,31.272,25.068,31.33,24.999,31.388L24.999,31.388z M24.999,28.406
|
112 |
+
c-0.184,0.039-0.338,0.096-0.465,0.152c-0.197,0.094-0.338,0.227-0.437,0.402c-0.113,0.171-0.155,0.4-0.155,0.686
|
113 |
+
c0,0.25,0.071,0.421,0.197,0.518c0.141,0.094,0.324,0.152,0.593,0.152c0.083,0,0.168-0.019,0.267-0.059
|
114 |
+
c0.085-0.018,0.169-0.057,0.268-0.094c0.183-0.116,0.366-0.249,0.535-0.402l0.253-1.529c-0.296,0.037-0.591,0.078-0.845,0.135
|
115 |
+
C25.139,28.367,25.068,28.387,24.999,28.406L24.999,28.406z"/>
|
116 |
+
<path fill="#FFFFFF" d="M39.736,25.691c-0.224,0.039-0.436,0.152-0.605,0.343c-0.239,0.268-0.422,0.612-0.55,1.071h1.155h1.143
|
117 |
+
c0-0.076,0.014-0.135,0.014-0.211c0-0.057,0.015-0.135,0.015-0.189c0-0.347-0.085-0.594-0.24-0.787
|
118 |
+
c-0.154-0.17-0.367-0.266-0.664-0.266C39.919,25.652,39.822,25.67,39.736,25.691L39.736,25.691z M39.736,30.201h0.254
|
119 |
+
c0.368,0,0.719-0.075,1.058-0.248c0.323-0.174,0.619-0.362,0.858-0.573h0.197l-0.323,1.854c-0.324,0.194-0.677,0.344-1.043,0.44
|
120 |
+
c-0.31,0.094-0.649,0.134-1.001,0.152h-0.153c-0.916,0-1.608-0.268-2.101-0.821c-0.493-0.536-0.734-1.281-0.734-2.235
|
121 |
+
c0-0.651,0.086-1.262,0.241-1.799c0.154-0.554,0.395-1.033,0.69-1.453c0.295-0.4,0.647-0.706,1.084-0.955
|
122 |
+
c0.311-0.152,0.635-0.266,0.972-0.325c0.154-0.018,0.31-0.018,0.466-0.018c0.79,0,1.381,0.208,1.79,0.648
|
123 |
+
c0.395,0.421,0.593,1.07,0.593,1.913c0,0.285-0.014,0.572-0.055,0.86c-0.045,0.267-0.1,0.554-0.172,0.821h-2.622h-1.324v0.076
|
124 |
+
v0.074c0,0.499,0.142,0.881,0.395,1.166C39.019,30.012,39.329,30.164,39.736,30.201L39.736,30.201z"/>
|
125 |
+
<path fill="#FFFFFF" d="M55.706,31.388c-0.07,0.058-0.141,0.093-0.21,0.133c-0.168,0.096-0.337,0.172-0.493,0.229
|
126 |
+
c-0.155,0.037-0.367,0.077-0.633,0.077c-0.453,0-0.804-0.173-1.086-0.496c-0.282-0.347-0.41-0.785-0.41-1.318
|
127 |
+
c0-0.574,0.099-1.051,0.297-1.453c0.196-0.385,0.493-0.709,0.874-0.938c0.365-0.229,0.803-0.381,1.31-0.477
|
128 |
+
c0.114-0.021,0.226-0.039,0.353-0.059c0.396-0.078,0.833-0.133,1.283-0.154c0.014-0.037,0.014-0.076,0.027-0.133
|
129 |
+
c0-0.056,0.015-0.115,0.015-0.19c0-0.307-0.111-0.517-0.313-0.651c-0.208-0.113-0.519-0.17-0.928-0.17h-0.085
|
130 |
+
c-0.267,0.018-0.547,0.076-0.845,0.189c-0.338,0.135-0.591,0.23-0.76,0.325h-0.155l0.24-1.7c0.197-0.076,0.506-0.153,0.93-0.228
|
131 |
+
c0.198-0.06,0.393-0.077,0.59-0.098c0.214-0.038,0.424-0.038,0.649-0.038c0.834,0,1.438,0.153,1.834,0.439
|
132 |
+
c0.378,0.287,0.576,0.747,0.576,1.376c0,0.077,0,0.191-0.014,0.327c-0.015,0.134-0.028,0.249-0.045,0.363l-0.829,4.892h-1.693
|
133 |
+
l0.131-0.766c-0.115,0.097-0.241,0.213-0.396,0.347L55.706,31.388L55.706,31.388z M55.706,28.406
|
134 |
+
c-0.183,0.039-0.335,0.096-0.479,0.152c-0.181,0.094-0.337,0.227-0.434,0.402c-0.102,0.171-0.158,0.4-0.158,0.686
|
135 |
+
c0,0.25,0.07,0.421,0.212,0.518c0.126,0.094,0.325,0.152,0.578,0.152c0.083,0,0.185-0.019,0.28-0.059
|
136 |
+
c0.085-0.018,0.172-0.057,0.254-0.094c0.196-0.116,0.366-0.249,0.537-0.402l0.267-1.529c-0.31,0.037-0.592,0.078-0.861,0.135
|
137 |
+
C55.835,28.367,55.765,28.387,55.706,28.406L55.706,28.406z"/>
|
138 |
+
<path fill="#FFFFFF" d="M62.899,26.458c-0.374-0.288-1.202-0.229-1.373,0.36l-0.819,4.816h-1.703l1.227-7.186h1.703l-0.035,0.58
|
139 |
+
c0.321-0.325,0.684-0.601,1.6-0.572C63.553,24.459,62.944,25.524,62.899,26.458L62.899,26.458z"/>
|
140 |
+
<path fill="#FFFFFF" d="M66.247,25.977c-0.084,0.039-0.167,0.098-0.238,0.153c-0.229,0.152-0.409,0.384-0.563,0.651
|
141 |
+
c-0.129,0.266-0.241,0.572-0.31,0.974c-0.086,0.382-0.129,0.765-0.129,1.127c0,0.441,0.086,0.745,0.224,0.937
|
142 |
+
c0.158,0.211,0.383,0.308,0.679,0.308c0.114,0,0.228-0.021,0.338-0.078c0.057-0.019,0.1-0.036,0.154-0.074
|
143 |
+
c0.169-0.096,0.324-0.194,0.48-0.327l0.604-3.535c-0.099-0.059-0.21-0.116-0.364-0.154c-0.145-0.057-0.267-0.074-0.383-0.074
|
144 |
+
C66.557,25.883,66.402,25.918,66.247,25.977L66.247,25.977z M66.247,31.253c-0.127,0.116-0.269,0.228-0.422,0.324
|
145 |
+
c-0.142,0.076-0.282,0.153-0.407,0.19c-0.145,0.04-0.313,0.059-0.494,0.059c-0.523,0-0.934-0.23-1.242-0.669
|
146 |
+
c-0.294-0.458-0.45-1.109-0.45-1.932c0-0.687,0.069-1.338,0.238-1.929c0.156-0.592,0.382-1.129,0.664-1.586
|
147 |
+
c0.283-0.461,0.605-0.804,0.984-1.071c0.369-0.249,0.733-0.381,1.129-0.402h0.057c0.295,0,0.552,0.038,0.762,0.114
|
148 |
+
c0.211,0.076,0.438,0.21,0.662,0.383l0.378-2.506h1.704l-1.56,9.405h-1.706l0.126-0.744C66.516,31.022,66.373,31.14,66.247,31.253
|
149 |
+
L66.247,31.253z"/>
|
150 |
+
</g>
|
151 |
+
</g>
|
152 |
+
</svg>
|
@@ -0,0 +1,122 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="85px"
|
3 |
+
height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
4 |
+
<g id="Peela">
|
5 |
+
<path display="inline" fill="#0AA8E0" d="M12.371,36.274c-0.935-1.59-0.828-2.932-0.076-6.002c0.428-1.748,1.332-5.15,3.644-4.342
|
6 |
+
C18.306,26.758,17.032,36.632,12.371,36.274L12.371,36.274z M55.346,34.288c-0.596-2.96,1.698-12.459,5.008-9.572
|
7 |
+
c1.437,1.472,0.178,4.303-0.53,5.817C58.989,32.372,58.042,34.334,55.346,34.288L55.346,34.288z M24.257,30.255
|
8 |
+
c0.426-4.193,1.569-5.487,2.541-5.585C28.933,24.453,29.713,28.677,24.257,30.255L24.257,30.255z M35.184,30.166
|
9 |
+
c0.21-3.888,1.303-5.196,2.187-5.618C39.099,23.724,40.589,28.368,35.184,30.166L35.184,30.166z M49.233,25.544
|
10 |
+
c-0.162,0.237-0.936,1.305-0.819-0.44c0.186-2.798,1.568-9.087,3.81-10.384C54.11,16.446,50.448,23.985,49.233,25.544
|
11 |
+
L49.233,25.544z M59.537,34.327l0.838-0.945c0.04,4.472,3.051,5.259,5.358,2.94c2.308-2.317,2.341-2.046,2.4-2.427l0.338-2.166
|
12 |
+
c-1.259,1.556-3.4,3.525-4.034,2.589c-1.261-3.381,1.356-7.544,1.637-10.873c0.019-0.733-0.442-0.729-0.972-0.488l-2.981,1.399
|
13 |
+
c-2.419-3.452-6.258-1.337-8.534,0.998c-2.086,2.524-2.743,5.973-2.896,9.253c-2.928,0.999-3.854-1.413-3.296-4.367
|
14 |
+
c0.284-1.737,2.058-3.318,3.195-5.016c1.51-2.253,6.5-13.827,0.789-12.293c-2.926,1.021-3.928,1.68-4.975,3.769
|
15 |
+
c-3.72,7.802-3.812,14.807-3.812,16.452c-2.59,2.356-6.406,2.264-7.261-1.575c12.613-3.841,5.399-12.325-0.462-7.749
|
16 |
+
c-3.07,2.808-2.514,4.269-3.786,8.611c-0.797,2.994-5.575,4.195-6.586-0.982c1.75-0.185,9.907-3.834,5.792-7.427
|
17 |
+
c-3.146-2.745-7.816-0.041-9.042,3.476c-0.005-0.485-0.044-2.126-0.569-2.883c-1.616-3.19-4.747-2.141-7.013,0.244
|
18 |
+
c-0.004-1.178,0.081-1.912-0.482-2.182c-4.734,1.167-2.659-0.079-4.837,4.104c-0.979,1.883-2.478,3.354-2.497,3.514l-0.369,2.989
|
19 |
+
c1.075-0.867,1.333-1.133,2.257-2.497l-1.582,9.959C5.833,42.79,6.76,44.508,9.375,45.54l1.398-8.364
|
20 |
+
c5.327,1.982,7.272-1.146,9.455-4.454c2.152,7.846,8.605,5.232,11.638,2.008c1.169,1.794,2.305,3.412,6.284,2.732
|
21 |
+
c2.345-0.398,3.493-1.922,4.891-2.845c1.643,3.692,3.652,4.326,8.336,1.564C53.938,38.211,55.652,39.375,59.537,34.327z"/>
|
22 |
+
<path display="inline" fill="#0AA8E0" d="M78.235,16.508c1.638,3.411,1.187,4.876-0.48,7.008c-1.046,0.937-1.536,1.081-3.323,1.141
|
23 |
+
C64.53,22.777,72.102,9.362,78.235,16.508L78.235,16.508z M66.802,21.045c1.508,8.434,14.615,6.903,13.237-2.811
|
24 |
+
C78.738,9.062,65.05,11.225,66.802,21.045z"/>
|
25 |
+
<path display="inline" fill="#0AA8E0" d="M73.544,22.427l-0.051,1.714l1.447,0.017l-0.085,0.454l1.295-0.05l0.067-0.538
|
26 |
+
c0,0,1.53-0.168,1.682-1.446c0.15-1.278-0.219-1.867-0.589-2.253c-0.37-0.387-0.723-1.228,0.102-1.278
|
27 |
+
c0.823-0.05,1.192,0.186,1.192,0.186l0.186-1.379c0.019-0.138-0.562-0.398-1.139-0.378c-0.106,0.004,0.046-0.447-0.065-0.446
|
28 |
+
l-1.352,0.01c-0.16,0.001,0.041,0.388-0.1,0.447C76.1,17.5,76.133,17.532,76.1,17.55c-2.282,1.199-1.517,2.463-1.026,3.279
|
29 |
+
c0.404,0.671,0.473,1.395-0.117,1.53C74.34,22.5,73.544,22.443,73.544,22.427z"/>
|
30 |
+
<g display="inline">
|
31 |
+
<path d="M25.051,43.4l0.519,0.067c-0.057,0.357-0.202,0.637-0.435,0.84c-0.234,0.201-0.521,0.303-0.86,0.303
|
32 |
+
c-0.426,0-0.769-0.139-1.026-0.418c-0.26-0.277-0.389-0.677-0.389-1.196c0-0.336,0.056-0.63,0.167-0.882s0.28-0.441,0.509-0.566
|
33 |
+
c0.227-0.127,0.475-0.189,0.742-0.189c0.338,0,0.614,0.086,0.829,0.256c0.215,0.172,0.353,0.414,0.413,0.729l-0.513,0.079
|
34 |
+
c-0.049-0.209-0.136-0.366-0.259-0.472c-0.125-0.105-0.274-0.158-0.45-0.158c-0.266,0-0.481,0.096-0.647,0.285
|
35 |
+
c-0.166,0.191-0.249,0.492-0.249,0.904c0,0.418,0.08,0.722,0.24,0.911s0.369,0.284,0.627,0.284c0.207,0,0.38-0.063,0.519-0.19
|
36 |
+
S25.014,43.664,25.051,43.4z"/>
|
37 |
+
<path d="M28.051,44.156c-0.195,0.166-0.384,0.283-0.564,0.352s-0.374,0.103-0.581,0.103c-0.342,0-0.604-0.084-0.788-0.25
|
38 |
+
c-0.184-0.168-0.275-0.381-0.275-0.641c0-0.152,0.034-0.291,0.104-0.418c0.069-0.125,0.16-0.227,0.273-0.303
|
39 |
+
c0.111-0.076,0.238-0.134,0.379-0.173c0.104-0.027,0.26-0.054,0.469-0.079c0.426-0.051,0.739-0.111,0.94-0.182
|
40 |
+
c0.002-0.072,0.003-0.118,0.003-0.138c0-0.215-0.05-0.366-0.149-0.454c-0.135-0.119-0.335-0.179-0.601-0.179
|
41 |
+
c-0.248,0-0.432,0.044-0.549,0.13c-0.119,0.088-0.206,0.241-0.263,0.462l-0.516-0.07c0.047-0.221,0.124-0.398,0.231-0.534
|
42 |
+
s0.263-0.24,0.466-0.314c0.203-0.072,0.438-0.109,0.706-0.109c0.266,0,0.481,0.031,0.647,0.094s0.288,0.142,0.366,0.236
|
43 |
+
s0.133,0.214,0.164,0.358c0.018,0.09,0.026,0.252,0.026,0.486v0.703c0,0.49,0.011,0.801,0.034,0.931
|
44 |
+
c0.021,0.13,0.066,0.254,0.133,0.373h-0.551C28.102,44.431,28.066,44.303,28.051,44.156z M28.007,42.979
|
45 |
+
c-0.191,0.078-0.479,0.145-0.861,0.199c-0.217,0.031-0.37,0.066-0.46,0.105s-0.159,0.097-0.208,0.171
|
46 |
+
c-0.049,0.076-0.073,0.159-0.073,0.251c0,0.141,0.053,0.258,0.16,0.352c0.105,0.094,0.262,0.141,0.467,0.141
|
47 |
+
c0.203,0,0.384-0.044,0.542-0.134c0.158-0.088,0.274-0.21,0.349-0.364c0.057-0.119,0.085-0.295,0.085-0.527V42.979z"/>
|
48 |
+
<path d="M29.352,44.54v-3.111h0.475V41.9c0.121-0.221,0.232-0.366,0.336-0.437c0.102-0.07,0.215-0.105,0.338-0.105
|
49 |
+
c0.178,0,0.358,0.057,0.542,0.17l-0.182,0.489c-0.129-0.076-0.258-0.114-0.387-0.114c-0.115,0-0.219,0.035-0.311,0.104
|
50 |
+
c-0.092,0.07-0.157,0.166-0.196,0.289c-0.059,0.188-0.088,0.393-0.088,0.615v1.629H29.352z"/>
|
51 |
+
<path d="M32.507,44.068l0.076,0.466c-0.148,0.031-0.281,0.047-0.398,0.047c-0.191,0-0.34-0.03-0.445-0.091s-0.18-0.14-0.223-0.239
|
52 |
+
c-0.043-0.098-0.064-0.306-0.064-0.622v-1.79h-0.387v-0.41h0.387v-0.771l0.524-0.316v1.087h0.53v0.41h-0.53v1.819
|
53 |
+
c0,0.15,0.009,0.247,0.027,0.29s0.049,0.077,0.092,0.103c0.041,0.025,0.102,0.038,0.18,0.038
|
54 |
+
C32.334,44.089,32.411,44.082,32.507,44.068z"/>
|
55 |
+
<path d="M35.053,44.156c-0.195,0.166-0.384,0.283-0.564,0.352s-0.374,0.103-0.581,0.103c-0.342,0-0.604-0.084-0.788-0.25
|
56 |
+
c-0.184-0.168-0.275-0.381-0.275-0.641c0-0.152,0.034-0.291,0.104-0.418c0.069-0.125,0.16-0.227,0.273-0.303
|
57 |
+
c0.111-0.076,0.238-0.134,0.379-0.173c0.104-0.027,0.26-0.054,0.469-0.079c0.426-0.051,0.739-0.111,0.94-0.182
|
58 |
+
c0.002-0.072,0.003-0.118,0.003-0.138c0-0.215-0.05-0.366-0.149-0.454c-0.135-0.119-0.335-0.179-0.601-0.179
|
59 |
+
c-0.248,0-0.432,0.044-0.549,0.13c-0.119,0.088-0.206,0.241-0.263,0.462l-0.516-0.07c0.047-0.221,0.124-0.398,0.231-0.534
|
60 |
+
s0.263-0.24,0.466-0.314c0.203-0.072,0.438-0.109,0.706-0.109c0.266,0,0.481,0.031,0.647,0.094s0.288,0.142,0.366,0.236
|
61 |
+
s0.133,0.214,0.164,0.358c0.018,0.09,0.026,0.252,0.026,0.486v0.703c0,0.49,0.011,0.801,0.034,0.931
|
62 |
+
c0.021,0.13,0.066,0.254,0.133,0.373h-0.551C35.104,44.431,35.068,44.303,35.053,44.156z M33.298,40.969
|
63 |
+
c-0.002-0.203,0.054-0.365,0.167-0.486c0.111-0.121,0.254-0.182,0.428-0.182c0.121,0,0.286,0.053,0.495,0.158
|
64 |
+
c0.115,0.059,0.207,0.088,0.275,0.088c0.063,0,0.11-0.017,0.144-0.052c0.033-0.033,0.057-0.102,0.07-0.203h0.381
|
65 |
+
c-0.006,0.223-0.063,0.39-0.168,0.501c-0.107,0.111-0.242,0.167-0.406,0.167c-0.123,0-0.285-0.055-0.486-0.164
|
66 |
+
c-0.131-0.07-0.227-0.105-0.287-0.105c-0.066,0-0.12,0.023-0.161,0.07c-0.043,0.047-0.063,0.116-0.062,0.208H33.298z
|
67 |
+
M35.009,42.979c-0.191,0.078-0.479,0.145-0.861,0.199c-0.217,0.031-0.37,0.066-0.46,0.105s-0.159,0.097-0.208,0.171
|
68 |
+
c-0.049,0.076-0.073,0.159-0.073,0.251c0,0.141,0.053,0.258,0.16,0.352c0.105,0.094,0.262,0.141,0.467,0.141
|
69 |
+
c0.203,0,0.384-0.044,0.542-0.134c0.158-0.088,0.274-0.21,0.349-0.364c0.057-0.119,0.085-0.295,0.085-0.527V42.979z"/>
|
70 |
+
<path d="M36.163,42.984c0-0.576,0.16-1.003,0.48-1.28c0.268-0.23,0.594-0.346,0.979-0.346c0.428,0,0.777,0.141,1.049,0.42
|
71 |
+
c0.271,0.281,0.407,0.668,0.407,1.162c0,0.4-0.061,0.716-0.18,0.945c-0.121,0.229-0.296,0.407-0.525,0.534s-0.479,0.19-0.751,0.19
|
72 |
+
c-0.436,0-0.788-0.14-1.056-0.419C36.297,43.912,36.163,43.51,36.163,42.984z M36.705,42.984c0,0.398,0.087,0.697,0.261,0.896
|
73 |
+
s0.393,0.297,0.656,0.297c0.262,0,0.479-0.1,0.653-0.299s0.261-0.503,0.261-0.911c0-0.385-0.088-0.676-0.263-0.874
|
74 |
+
s-0.392-0.298-0.651-0.298c-0.264,0-0.482,0.099-0.656,0.296S36.705,42.586,36.705,42.984z"/>
|
75 |
+
<path d="M41.363,45.732v-4.304h0.48v0.404c0.113-0.158,0.241-0.277,0.384-0.355c0.143-0.08,0.315-0.119,0.519-0.119
|
76 |
+
c0.266,0,0.5,0.068,0.703,0.205s0.356,0.33,0.46,0.578c0.104,0.25,0.155,0.522,0.155,0.819c0,0.318-0.057,0.604-0.172,0.86
|
77 |
+
c-0.113,0.254-0.28,0.45-0.498,0.586c-0.218,0.135-0.446,0.203-0.687,0.203c-0.176,0-0.334-0.037-0.474-0.111
|
78 |
+
s-0.254-0.168-0.344-0.281v1.515H41.363z M41.841,43.002c0,0.4,0.081,0.696,0.243,0.888s0.358,0.287,0.589,0.287
|
79 |
+
c0.234,0,0.435-0.099,0.603-0.297c0.166-0.198,0.25-0.506,0.25-0.922c0-0.396-0.082-0.693-0.244-0.891
|
80 |
+
c-0.164-0.197-0.358-0.296-0.585-0.296c-0.225,0-0.423,0.105-0.597,0.315C41.928,42.297,41.841,42.602,41.841,43.002z"/>
|
81 |
+
<path d="M44.694,44.54v-3.111h0.475V41.9c0.121-0.221,0.233-0.366,0.335-0.437c0.104-0.07,0.216-0.105,0.339-0.105
|
82 |
+
c0.178,0,0.358,0.057,0.542,0.17l-0.182,0.489c-0.129-0.076-0.258-0.114-0.387-0.114c-0.115,0-0.219,0.035-0.311,0.104
|
83 |
+
c-0.092,0.07-0.157,0.166-0.196,0.289c-0.059,0.188-0.088,0.393-0.088,0.615v1.629H44.694z"/>
|
84 |
+
<path d="M48.828,43.538l0.545,0.067c-0.086,0.318-0.245,0.565-0.478,0.741s-0.529,0.264-0.891,0.264
|
85 |
+
c-0.455,0-0.815-0.14-1.083-0.42c-0.266-0.28-0.399-0.674-0.399-1.18c0-0.523,0.135-0.93,0.404-1.219s0.619-0.434,1.049-0.434
|
86 |
+
c0.416,0,0.756,0.142,1.02,0.425s0.396,0.682,0.396,1.195c0,0.031-0.001,0.078-0.003,0.141h-2.32
|
87 |
+
c0.02,0.342,0.116,0.604,0.29,0.785s0.391,0.272,0.65,0.272c0.193,0,0.358-0.051,0.495-0.152S48.748,43.761,48.828,43.538z
|
88 |
+
M47.097,42.686h1.737c-0.023-0.262-0.09-0.458-0.199-0.589c-0.168-0.203-0.386-0.305-0.653-0.305
|
89 |
+
c-0.242,0-0.446,0.081-0.61,0.243C47.205,42.197,47.114,42.414,47.097,42.686z"/>
|
90 |
+
<path d="M49.824,43.611l0.521-0.082c0.029,0.209,0.11,0.369,0.244,0.48s0.321,0.167,0.562,0.167c0.242,0,0.422-0.049,0.539-0.148
|
91 |
+
c0.117-0.098,0.176-0.214,0.176-0.347c0-0.119-0.052-0.213-0.155-0.281c-0.072-0.047-0.252-0.106-0.539-0.179
|
92 |
+
c-0.387-0.098-0.654-0.182-0.805-0.254c-0.148-0.07-0.263-0.17-0.34-0.295c-0.077-0.127-0.115-0.266-0.115-0.418
|
93 |
+
c0-0.139,0.031-0.267,0.096-0.385c0.063-0.118,0.149-0.217,0.259-0.295c0.082-0.061,0.193-0.111,0.335-0.154
|
94 |
+
c0.142-0.041,0.294-0.063,0.456-0.063c0.244,0,0.458,0.035,0.644,0.105c0.184,0.07,0.32,0.166,0.408,0.285
|
95 |
+
c0.088,0.121,0.148,0.281,0.182,0.482l-0.516,0.07c-0.023-0.16-0.092-0.285-0.203-0.375c-0.113-0.09-0.271-0.135-0.477-0.135
|
96 |
+
c-0.242,0-0.415,0.04-0.519,0.12s-0.155,0.174-0.155,0.281c0,0.068,0.021,0.13,0.064,0.185c0.043,0.057,0.11,0.104,0.202,0.141
|
97 |
+
c0.053,0.02,0.208,0.064,0.466,0.135c0.373,0.1,0.633,0.182,0.781,0.244c0.146,0.064,0.263,0.156,0.347,0.277
|
98 |
+
s0.126,0.271,0.126,0.451c0,0.176-0.051,0.342-0.154,0.496c-0.102,0.156-0.25,0.275-0.443,0.361
|
99 |
+
c-0.193,0.084-0.412,0.127-0.656,0.127c-0.404,0-0.713-0.084-0.924-0.252C50.018,44.19,49.883,43.941,49.824,43.611z"/>
|
100 |
+
<path d="M55.165,43.538l0.545,0.067c-0.086,0.318-0.245,0.565-0.478,0.741s-0.529,0.264-0.891,0.264
|
101 |
+
c-0.455,0-0.816-0.14-1.082-0.42c-0.268-0.28-0.4-0.674-0.4-1.18c0-0.523,0.135-0.93,0.404-1.219s0.619-0.434,1.049-0.434
|
102 |
+
c0.416,0,0.756,0.142,1.02,0.425s0.396,0.682,0.396,1.195c0,0.031-0.001,0.078-0.003,0.141h-2.32
|
103 |
+
c0.02,0.342,0.116,0.604,0.29,0.785s0.391,0.272,0.65,0.272c0.193,0,0.358-0.051,0.495-0.152S55.085,43.761,55.165,43.538z
|
104 |
+
M53.434,42.686h1.737c-0.023-0.262-0.09-0.458-0.199-0.589c-0.168-0.203-0.386-0.305-0.653-0.305
|
105 |
+
c-0.242,0-0.446,0.081-0.611,0.243S53.451,42.414,53.434,42.686z"/>
|
106 |
+
<path d="M56.372,44.54v-3.111h0.475v0.442c0.229-0.342,0.559-0.513,0.99-0.513c0.188,0,0.359,0.033,0.517,0.102
|
107 |
+
c0.157,0.066,0.275,0.155,0.354,0.265s0.133,0.239,0.164,0.39c0.02,0.098,0.029,0.269,0.029,0.513v1.913h-0.527v-1.893
|
108 |
+
c0-0.215-0.021-0.375-0.062-0.482c-0.041-0.105-0.114-0.19-0.218-0.254c-0.105-0.063-0.228-0.096-0.368-0.096
|
109 |
+
c-0.225,0-0.419,0.071-0.581,0.214c-0.164,0.143-0.245,0.413-0.245,0.812v1.699H56.372z"/>
|
110 |
+
<path d="M60.86,44.068l0.076,0.466c-0.148,0.031-0.281,0.047-0.398,0.047c-0.191,0-0.34-0.03-0.445-0.091s-0.18-0.14-0.223-0.239
|
111 |
+
c-0.043-0.098-0.064-0.306-0.064-0.622v-1.79h-0.387v-0.41h0.387v-0.771l0.524-0.316v1.087h0.53v0.41h-0.53v1.819
|
112 |
+
c0,0.15,0.009,0.247,0.027,0.29s0.049,0.077,0.092,0.103c0.041,0.025,0.102,0.038,0.18,0.038
|
113 |
+
C60.688,44.089,60.765,44.082,60.86,44.068z"/>
|
114 |
+
<path d="M63.506,43.538l0.545,0.067c-0.086,0.318-0.245,0.565-0.478,0.741s-0.529,0.264-0.891,0.264
|
115 |
+
c-0.455,0-0.815-0.14-1.083-0.42c-0.266-0.28-0.399-0.674-0.399-1.18c0-0.523,0.135-0.93,0.404-1.219s0.619-0.434,1.049-0.434
|
116 |
+
c0.416,0,0.756,0.142,1.02,0.425s0.396,0.682,0.396,1.195c0,0.031-0.001,0.078-0.003,0.141h-2.32
|
117 |
+
c0.02,0.342,0.116,0.604,0.29,0.785s0.391,0.272,0.65,0.272c0.193,0,0.358-0.051,0.495-0.152S63.426,43.761,63.506,43.538z
|
118 |
+
M61.774,42.686h1.737c-0.023-0.262-0.09-0.458-0.199-0.589c-0.168-0.203-0.386-0.305-0.653-0.305
|
119 |
+
c-0.242,0-0.446,0.081-0.61,0.243C61.883,42.197,61.792,42.414,61.774,42.686z"/>
|
120 |
+
</g>
|
121 |
+
</g>
|
122 |
+
</svg>
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="85px"
|
4 |
+
height="55px" viewBox="0 0 85 55" enable-background="new 0 0 85 55" xml:space="preserve">
|
5 |
+
<g id="Visa">
|
6 |
+
<rect y="-0.486" display="inline" fill="#0058A1" width="85" height="55.486"/>
|
7 |
+
<polygon display="inline" fill="#FFFFFF" points="30.819,40.142 34.827,14.939 41.234,14.939 37.227,40.142 "/>
|
8 |
+
<path display="inline" fill="#FFFFFF" d="M60.455,15.556c-1.266-0.509-3.271-1.073-5.747-1.073c-6.328,0-10.784,3.432-10.812,8.338
|
9 |
+
c-0.053,3.62,3.191,5.63,5.616,6.836c2.479,1.234,3.322,2.038,3.322,3.138c-0.026,1.688-2.004,2.466-3.85,2.466
|
10 |
+
c-2.557,0-3.929-0.402-6.011-1.34l-0.844-0.403l-0.896,5.657c1.503,0.697,4.271,1.313,7.146,1.341c6.724,0,11.1-3.379,11.153-8.606
|
11 |
+
c0.025-2.869-1.688-5.066-5.38-6.863c-2.24-1.153-3.611-1.93-3.611-3.11c0.026-1.072,1.16-2.171,3.69-2.171
|
12 |
+
c2.083-0.054,3.612,0.456,4.773,0.965l0.58,0.268L60.455,15.556L60.455,15.556z"/>
|
13 |
+
<path display="inline" fill="#FFFFFF" d="M68.972,31.214c0.527-1.448,2.557-7.052,2.557-7.052
|
14 |
+
c-0.025,0.054,0.527-1.475,0.844-2.413l0.449,2.171c0,0,1.212,6.033,1.477,7.293C73.295,31.214,70.237,31.214,68.972,31.214
|
15 |
+
L68.972,31.214z M76.881,14.939h-4.957c-1.528,0-2.689,0.455-3.349,2.091l-9.518,23.111h6.723c0,0,1.107-3.111,1.346-3.781
|
16 |
+
c0.738,0,7.276,0,8.226,0c0.186,0.886,0.765,3.781,0.765,3.781h5.933L76.881,14.939L76.881,14.939z"/>
|
17 |
+
<path display="inline" fill="#FFFFFF" d="M25.467,14.939l-6.275,17.186l-0.685-3.486c-1.161-4.021-4.799-8.391-8.859-10.562
|
18 |
+
l5.748,22.038h6.776l10.072-25.175H25.467L25.467,14.939z"/>
|
19 |
+
<path display="inline" fill="#FAA71C" d="M13.365,14.939H3.056L2.95,15.449c8.042,2.091,13.368,7.131,15.557,13.19l-2.241-11.582
|
20 |
+
C15.896,15.449,14.763,14.993,13.365,14.939L13.365,14.939z"/>
|
21 |
+
</g>
|
22 |
+
</svg>
|