fix
@@ -1,5 +1,6 @@
|
||||
<pre>
|
||||
<?php
|
||||
//#define WRENCHBOARD_USER_ADNEWCC 11054
|
||||
|
||||
include('../backend.php');
|
||||
$hostname = $wrenchboard->cfgReadChar("database.host");
|
||||
@@ -16,7 +17,7 @@ $in=array(
|
||||
"action" => 90005, /* WRENCHBOARD_STRIPE_CHARGE_NEW */
|
||||
"ccnum" => "4242424242424242",
|
||||
"ccexpm" => "12",
|
||||
"ccexpy" => "18",
|
||||
"ccexpy" => "26",
|
||||
"cccvc" => "123",
|
||||
"amount" => "100",
|
||||
"customer_id" => $f["id"],
|
||||
|
||||
@@ -169,6 +169,9 @@ define('WRENCHBOARD_LOG_MEMBER', 11040);
|
||||
define('WRENCHBOARD_DELETE_RECACC', 11041);
|
||||
define('WRENCHBOARD_SAVE_GALLERY', 11042);
|
||||
|
||||
define('WRENCHBOARD_USER_ADNEWCC', 11054);
|
||||
define('WRENCHBOARD_USER_USESAVEDCC', 11056);
|
||||
|
||||
define('WRENCHBOARD_ACCOUNT_END', 11999);
|
||||
//**************************************************************
|
||||
define('WRENCHBOARD_JOB_CREATEJOB',13010 );
|
||||
|
||||
@@ -52,4 +52,4 @@ defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
$route['default_controller'] = 'login';
|
||||
$route['404_override'] = 'Wrb404';
|
||||
$route['translate_uri_dashes'] = FALSE;
|
||||
|
||||
$route['auth/(.+)'] = 'home/auth/$1';
|
||||
|
||||
@@ -2,12 +2,57 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
//Include Hybridauth autoloader
|
||||
require APPPATH . '/third_party/hybridauth/autoload.php';
|
||||
|
||||
//Import Hybridauth's namespace
|
||||
use Hybridauth\Hybridauth;
|
||||
|
||||
class Home extends WRB_Controller {
|
||||
|
||||
function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
//Load URL helper
|
||||
$this->load->helper('url');
|
||||
|
||||
//Load session library
|
||||
$this->load->library('session');
|
||||
}
|
||||
|
||||
//Displays social login links
|
||||
public function index() {
|
||||
|
||||
//Instantiate Hybridauth's classes
|
||||
$hybrid = new Hybridauth($this->getHybridConfig());
|
||||
|
||||
//Get enabled providers array
|
||||
$providers = $hybrid->getProviders();
|
||||
|
||||
$login_links = "";
|
||||
|
||||
$provider_icons = array(
|
||||
'Apple' => '/site3/assets/media/svg/brand-logos/apple-black.svg',
|
||||
'Facebook' => '/site3/assets/media/svg/brand-logos/facebook-4.svg',
|
||||
'Google' => '/site3/assets/media/svg/brand-logos/google-icon.svg'
|
||||
);
|
||||
|
||||
//List a link to login
|
||||
foreach ($providers as $provider)
|
||||
{
|
||||
$href = sprintf(base_url('%s/auth/%s/') , strtolower($this->router->fetch_class()) , $provider);
|
||||
$login_links .= '<a href="' . $href . '" class="btn btn-flex flex-center btn-light btn-lg w-100 mb-5">';
|
||||
if (array_key_exists($provider, $provider_icons)) {
|
||||
$login_links .= '<img alt="Logo" src="' . $provider_icons[$provider] . '" class="h-20px me-3">';
|
||||
}
|
||||
$login_links .= 'Continue with ' . $provider . '</a>';
|
||||
}
|
||||
|
||||
$data['login_links'] = $login_links;
|
||||
|
||||
//$this->home1('');
|
||||
$this->load->view('site3/external/view_home');
|
||||
$this->load->view('site3/external/view_home', $data);
|
||||
}
|
||||
|
||||
public function about() {
|
||||
@@ -15,4 +60,118 @@ class Home extends WRB_Controller {
|
||||
$this->home2('home2/about');
|
||||
}
|
||||
|
||||
//Processes social login
|
||||
function auth($provider = NULL)
|
||||
{
|
||||
$service = NULL;
|
||||
|
||||
try
|
||||
{
|
||||
//Instantiate Hybridauth's classes
|
||||
$hybrid = new Hybridauth($this->getHybridConfig());
|
||||
|
||||
//Check if given provider is enabled
|
||||
if ((isset($provider)) && in_array($provider, $hybrid->getProviders()))
|
||||
{
|
||||
$this->session->set_userdata('provider', $provider);
|
||||
}
|
||||
|
||||
//Update variable with the valid provider
|
||||
$provider = $this->session->userdata('provider');
|
||||
|
||||
if ($provider)
|
||||
{
|
||||
$service = $hybrid->authenticate($provider);
|
||||
if ($service->isConnected())
|
||||
{
|
||||
//Get user profile
|
||||
$profile = $service->getUserProfile();
|
||||
|
||||
//Get user contacts
|
||||
$contacts = $service->getUserContacts();
|
||||
|
||||
/*
|
||||
Disconnect the service else HA would reuse stored session data
|
||||
rather making a fresh request in case the user has denied permissions
|
||||
in the previous authorization request
|
||||
*/
|
||||
$service->disconnect();
|
||||
|
||||
$this->session->unset_userdata('provider');
|
||||
|
||||
//Display the profile data
|
||||
echo 'Name: ' . $profile->displayName;
|
||||
print_r($profile);
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->session->set_flashdata('showmsg', array('msg' => 'Sorry! We couldn\'t authenticate your identity.'));
|
||||
}
|
||||
}
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
if (isset($service) && $service->isConnected())
|
||||
$service->disconnect();
|
||||
|
||||
$error = 'Sorry! We couldn\'t authenticate you.';
|
||||
$this->session->set_flashdata('showmsg', array('msg' => $error));
|
||||
$error .= '\nError Code: ' . $e->getCode();
|
||||
$error .= '\nError Message: ' . $e->getMessage();
|
||||
|
||||
log_message('error', $error);
|
||||
}
|
||||
|
||||
//redirect();
|
||||
}
|
||||
|
||||
//Hybridauth configuration
|
||||
private function getHybridConfig()
|
||||
{
|
||||
$config = array(
|
||||
|
||||
'callback' => site_url('social/auth/') ,
|
||||
|
||||
'providers' => array(
|
||||
'Google' => array(
|
||||
'enabled' => true,
|
||||
'keys' => array(
|
||||
'id' => 'YOUR_CLIENT_ID',
|
||||
'secret' => 'YOUR_CLIENT_SECRET'
|
||||
) ,
|
||||
'scope' => 'https://www.googleapis.com/auth/plus.login https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile'
|
||||
) ,
|
||||
|
||||
'Facebook' => array(
|
||||
'enabled' => true,
|
||||
'keys' => array(
|
||||
'id' => (ENVIRONMENT == 'development') ? '390204307987009' : '390204307987009',
|
||||
'secret' => (ENVIRONMENT == 'development') ? '19f778e312f2ab96d147bacb612910c2' : '19f778e312f2ab96d147bacb612910c2'
|
||||
) ,
|
||||
'scope' => 'email, public_profile'
|
||||
) ,
|
||||
|
||||
'Apple' => array(
|
||||
"enabled" => true,
|
||||
"keys" => [
|
||||
"id" => "Your Apple ID",
|
||||
"team_id" => "Your Apple team id",
|
||||
"key_id" => "Your Apple key id",
|
||||
"key_content" => "Your Apple key (content including BEGIN and END lines)",
|
||||
"key_file" => "Full path to your Apple key file (alternative to key_content)"
|
||||
],
|
||||
"scope" => "name email",
|
||||
"verifyTokenSignature" => true
|
||||
)
|
||||
) ,
|
||||
|
||||
'hybrid_debug' => array(
|
||||
'debug_mode' => 'info', /* none, debug, info, error */
|
||||
'debug_file' => APPPATH . '/logs/log-' . date('Y-m-d') . '.php'
|
||||
)
|
||||
);
|
||||
|
||||
return $config;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -26,7 +26,11 @@ class Member extends Users_Controller {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public function deleteacc(){
|
||||
echo "Please log out of your account, and you will not be able to log in anymore. ";
|
||||
$data = $this->getSessionArray();
|
||||
|
||||
}
|
||||
|
||||
public function addreccipient() {
|
||||
|
||||
|
||||
@@ -15,9 +15,77 @@ class Paymnt extends Users_Controller {
|
||||
public function paymus() {
|
||||
|
||||
$data = $this->getSessionArray();
|
||||
|
||||
|
||||
$data['card_table_result'] = $this->cardListData(4)['card_table_result'];
|
||||
$this->RenderUserPage('users/view_startpaymus', $data);
|
||||
}
|
||||
|
||||
private function cardListData($limit){
|
||||
$data = array();
|
||||
$mysql = "SELECT * FROM creditcard WHERE member_id = " . $_SESSION['member_id'] . " AND status =3 AND active =1 ORDER BY id DESC limit ".$limit;
|
||||
$query = $this->db->query($mysql);
|
||||
$data['card_table_result'] = $query->result();
|
||||
return $data;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public function newcc(){
|
||||
$data = $this->getSessionArray();
|
||||
if ($_POST) {
|
||||
$this->load->model('cardpay_model');
|
||||
$cd = array();
|
||||
$cd['cardnumber'] = $this->input->post('cardnumber');
|
||||
$cd['exp_month'] = $this->input->post('exp_month');
|
||||
$cd['exp_year'] = $this->input->post('exp_year');
|
||||
$cd['cvc'] = $this->input->post('cvc');
|
||||
$cd['description']= $this->input->post('description');
|
||||
$amount = rand(5555,9999);
|
||||
|
||||
$cardTestResult= $this->cardpay_model->verifyCardData($cd);
|
||||
|
||||
//var_dump($cardTestResult);
|
||||
//var_dump($cd);
|
||||
|
||||
|
||||
if ( $cardTestResult['error_status'] == false) // no error
|
||||
{
|
||||
$member_id = $_SESSION['member_id'];
|
||||
$email ="support@wrenchboard.com";
|
||||
$cardData=array(
|
||||
"action" => WRENCHBOARD_USER_ADNEWCC,
|
||||
"cardnumber" => $cd['cardnumber'],
|
||||
"exp_month" => $cd['exp_month'],
|
||||
"exp_year" => $cd['exp_year'],
|
||||
"cvc" => $cd['cvc'],
|
||||
"amount" => $amount ,
|
||||
"email" => $email,
|
||||
"description" => $cd['description'],
|
||||
"member_id" => $member_id,
|
||||
"paymenttype" => 100
|
||||
);
|
||||
$out=array();
|
||||
$this->load->model('backend_model');
|
||||
$res = $this->backend_model->wrenchboard_api($cardData, $out);
|
||||
|
||||
// var_dump($out);
|
||||
|
||||
if ($res == PHP_API_OK) {
|
||||
// we are good
|
||||
} else {
|
||||
|
||||
// we still have error
|
||||
}
|
||||
|
||||
} // no error(s) from card test PHP model
|
||||
else{
|
||||
$data['card_test_result'] = $cardTestResult;
|
||||
$data['card_table_result'] = $this->cardListData(4)['card_table_result'];
|
||||
$this->RenderUserPage('users/view_startpaymus', $data); // return back to card page
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return $this->paymus();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,89 @@
|
||||
<?php
|
||||
|
||||
class Cardpay_model extends CI_Model {
|
||||
|
||||
function __construct() {
|
||||
|
||||
}
|
||||
|
||||
public function verifyCardData($data){
|
||||
$error_status = false;
|
||||
$errorArray = array ();
|
||||
/*
|
||||
$cd['cardnumber'] = $this->input->post('cardnumber');
|
||||
$cd['exp_month'] = $this->input->post('exp_month');
|
||||
$cd['exp_year'] = $this->input->post('exp_year');
|
||||
$cd['cvc'] = $this->input->post('cvc');
|
||||
$cd['description']= $this->input->post('description');
|
||||
*/
|
||||
|
||||
if ( strlen( $data['cvc'] ) == 0 ){
|
||||
$error_status = true;
|
||||
$errorArray[]="Enter valid card CVV";
|
||||
}
|
||||
|
||||
if ( strlen( $data['cardnumber'] ) == 0 || $this->luhn_check( $data['cardnumber'] ) == false){
|
||||
$error_status = true;
|
||||
$errorArray[]="Enter valid card number";
|
||||
}
|
||||
|
||||
if ( strlen( $data['exp_year'] ) == 0 || $data['exp_year'] < date('Y') ){
|
||||
$error_status = true;
|
||||
$errorArray[]="Enter valid card expiration date";
|
||||
}
|
||||
else{
|
||||
|
||||
// let us test the month now
|
||||
}
|
||||
|
||||
if ( strlen( $data['description'] ) == 0 ){
|
||||
$error_status = true;
|
||||
$errorArray[]="Enter name on card";
|
||||
}
|
||||
|
||||
return [
|
||||
"error_status" => $error_status,
|
||||
"error_message" => $errorArray
|
||||
];
|
||||
}
|
||||
|
||||
public function verifyCCNumber($cardNumber) {
|
||||
|
||||
return $this->luhn_check($cardNumber);
|
||||
}
|
||||
|
||||
/* Luhn algorithm number checker - (c) 2005-2008 shaman - www.planzero.org *
|
||||
* This code has been released into the public domain, however please *
|
||||
* give credit to the original author where possible. */
|
||||
|
||||
private function luhn_check($number) {
|
||||
|
||||
// Strip any non-digits (useful for credit card numbers with spaces and hyphens)
|
||||
$number=preg_replace('/\D/', '', $number);
|
||||
|
||||
// Set the string length and parity
|
||||
$number_length=strlen($number);
|
||||
$parity=$number_length % 2;
|
||||
|
||||
// Loop through each digit and do the maths
|
||||
$total=0;
|
||||
for ($i=0; $i<$number_length; $i++) {
|
||||
$digit=$number[$i];
|
||||
// Multiply alternate digits by two
|
||||
if ($i % 2 == $parity) {
|
||||
$digit*=2;
|
||||
// If the sum is two digits, add them together (in effect)
|
||||
if ($digit > 9) {
|
||||
$digit-=9;
|
||||
}
|
||||
}
|
||||
// Total up the digits
|
||||
$total+=$digit;
|
||||
}
|
||||
|
||||
// If the total mod 10 equals 0, the number is valid
|
||||
return ($total % 10 == 0) ? TRUE : FALSE;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -69,13 +69,14 @@
|
||||
<img alt="Logo" src="/site3/assets/media/svg/brand-logos/google-icon.svg" class="h-20px me-3" />Continue with Google</a -->
|
||||
<!--end::Google link-->
|
||||
<!--begin::Google link-->
|
||||
<a href="<?php echo $this->lib_login->getLoginUrl(); ?>" class="btn btn-flex flex-center btn-light btn-lg w-100 mb-5">
|
||||
<img alt="Logo" src="/site3/assets/media/svg/brand-logos/facebook-4.svg" class="h-20px me-3" />Continue with Facebook</a>
|
||||
<!-- a href="<?php echo $this->lib_login->getLoginUrl(); ?>" class="btn btn-flex flex-center btn-light btn-lg w-100 mb-5">
|
||||
<img alt="Logo" src="/site3/assets/media/svg/brand-logos/facebook-4.svg" class="h-20px me-3" />Continue with Facebook</a -->
|
||||
<!--end::Google link-->
|
||||
<!--begin::Google link-->
|
||||
<!-- a href="#" class="btn btn-flex flex-center btn-light btn-lg w-100">
|
||||
<img alt="Logo" src="/site3/assets/media/svg/brand-logos/apple-black.svg" class="h-20px me-3" />Continue with Apple</a -->
|
||||
<!--end::Google link-->
|
||||
<?php echo isset($login_links) ? $login_links :''; ?>
|
||||
</div>
|
||||
<!--end::Actions-->
|
||||
</form>
|
||||
|
||||
@@ -360,7 +360,7 @@ $email_preff = array (
|
||||
<!--end::Card body-->
|
||||
<!--begin::Card footer-->
|
||||
<div class="card-footer d-flex justify-content-end py-6 px-9">
|
||||
<button onclick="return deactivateMyAccount();" id="kt_account_deactivate_account_submit" type="submit" class="btn btn-danger fw-bold">Deactivate Account</button>
|
||||
<div id="del-sec" name="del-sec"><button onclick="return deactivateMyAccount();" id="kt_account_deactivate_account_submit" type="submit" class="btn btn-danger fw-bold">Deactivate Account</button></div>
|
||||
</div>
|
||||
<!--end::Card footer-->
|
||||
</form>
|
||||
@@ -376,15 +376,27 @@ $email_preff = array (
|
||||
|
||||
function deactivateMyAccount() {
|
||||
var deactivate = document.dact_individual.deactivate.value;
|
||||
|
||||
|
||||
if (deactivate == '') {
|
||||
alert('You must confirm my account deactivation');
|
||||
return false;
|
||||
//return false;
|
||||
}
|
||||
|
||||
var dialog = confirm("Please confirm account deletion. We will not be able to reverse this action. ?");
|
||||
if (dialog) {
|
||||
//console.log('Continue')
|
||||
}
|
||||
else {
|
||||
return true;
|
||||
}
|
||||
|
||||
return true;
|
||||
$.ajax({
|
||||
url: "/member/deleteacc?contact_id=DELETE"
|
||||
}).done(function (data) {
|
||||
|
||||
$('#del-sec').html(data);
|
||||
});
|
||||
|
||||
return false;
|
||||
}
|
||||
// -->
|
||||
</script>
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
<div class="card-header border-0 pt-5">
|
||||
<h3 class="card-title align-items-start flex-column">
|
||||
<span class="card-label fw-bolder fs-3 mb-1">Payment Methods</span>
|
||||
<span class="text-muted mt-1 fw-bold fs-7">Last updated:</span>
|
||||
</h3>
|
||||
<div class="card-toolbar">
|
||||
Credit / Debit Card
|
||||
@@ -20,6 +19,8 @@
|
||||
<!--begin::Body-->
|
||||
<div class="card-body py-3">
|
||||
<!--begin::Table container-->
|
||||
<form method="POST" action="/paymnt/newcc">
|
||||
|
||||
|
||||
<!--begin::Input group-->
|
||||
<div class="d-flex flex-column mb-7 fv-row">
|
||||
@@ -29,10 +30,8 @@
|
||||
<i class="fas fa-exclamation-circle ms-2 fs-7" data-bs-toggle="tooltip" title="Specify a card holder's name"></i>
|
||||
</label>
|
||||
|
||||
|
||||
|
||||
<!--end::Label-->
|
||||
<input type="text" class="form-control form-control-solid" placeholder="" name="card_name" value="<?=$_SESSION['firstname']?> <?=$_SESSION['lastname']?>" />
|
||||
<input type="text" class="form-control form-control-solid" placeholder="" name="description" value="<?=$_SESSION['firstname']?> <?=$_SESSION['lastname']?>" />
|
||||
</div>
|
||||
<!--end::Input group-->
|
||||
<!--begin::Input group-->
|
||||
@@ -43,13 +42,13 @@
|
||||
<!--begin::Input wrapper-->
|
||||
<div class="position-relative">
|
||||
<!--begin::Input-->
|
||||
<input type="text" class="form-control form-control-solid" placeholder="Enter card number" name="card_number" value="4111 1111 1111 1111" />
|
||||
<input type="text" class="form-control form-control-solid" placeholder="Enter card number" name="cardnumber" value="" />
|
||||
<!--end::Input-->
|
||||
<!--begin::Card logos-->
|
||||
<div class="position-absolute translate-middle-y top-50 end-0 me-5">
|
||||
<img src="/metronic8/demo8/assets/media/svg/card-logos/visa.svg" alt="" class="h-25px" />
|
||||
<img src="/metronic8/demo8/assets/media/svg/card-logos/mastercard.svg" alt="" class="h-25px" />
|
||||
<img src="/metronic8/demo8/assets/media/svg/card-logos/american-express.svg" alt="" class="h-25px" />
|
||||
<img src="/site3/assets/media/svg/card-logos/visa.svg" alt="" class="h-25px" />
|
||||
<img src="/site3/assets/media/svg/card-logos/mastercard.svg" alt="" class="h-25px" />
|
||||
<img src="/site3/assets/media/svg/card-logos/american-express.svg" alt="" class="h-25px" />
|
||||
</div>
|
||||
<!--end::Card logos-->
|
||||
</div>
|
||||
@@ -68,17 +67,17 @@
|
||||
<div class="row fv-row">
|
||||
<!--begin::Col-->
|
||||
<div class="col-6">
|
||||
<select name="card_expiry_month" class="form-select form-select-solid" data-control="select2" data-hide-search="true" data-placeholder="Month">
|
||||
<select name="exp_month" class="form-select form-select-solid" data-control="select2" data-hide-search="true" data-placeholder="Month">
|
||||
<option></option>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
<option value="4">4</option>
|
||||
<option value="5">5</option>
|
||||
<option value="6">6</option>
|
||||
<option value="7">7</option>
|
||||
<option value="8">8</option>
|
||||
<option value="9">9</option>
|
||||
<option value="01">1</option>
|
||||
<option value="02">2</option>
|
||||
<option value="03">3</option>
|
||||
<option value="04">4</option>
|
||||
<option value="05">5</option>
|
||||
<option value="06">6</option>
|
||||
<option value="07">7</option>
|
||||
<option value="08">8</option>
|
||||
<option value="09">9</option>
|
||||
<option value="10">10</option>
|
||||
<option value="11">11</option>
|
||||
<option value="12">12</option>
|
||||
@@ -87,7 +86,7 @@
|
||||
<!--end::Col-->
|
||||
<!--begin::Col-->
|
||||
<div class="col-6">
|
||||
<select name="card_expiry_year" class="form-select form-select-solid" data-control="select2" data-hide-search="true" data-placeholder="Year">
|
||||
<select name="exp_year" class="form-select form-select-solid" data-control="select2" data-hide-search="true" data-placeholder="Year">
|
||||
<option></option>
|
||||
<option value="2022">2022</option>
|
||||
<option value="2023">2023</option>
|
||||
@@ -118,7 +117,7 @@
|
||||
<!--begin::Input wrapper-->
|
||||
<div class="position-relative">
|
||||
<!--begin::Input-->
|
||||
<input type="text" class="form-control form-control-solid" minlength="3" maxlength="4" placeholder="CVV" name="card_cvv" />
|
||||
<input type="text" class="form-control form-control-solid" minlength="3" maxlength="4" placeholder="CVV" name="cvc" />
|
||||
<!--end::Input-->
|
||||
<!--begin::CVV icon-->
|
||||
<div class="position-absolute translate-middle-y top-50 end-0 me-3">
|
||||
@@ -169,6 +168,9 @@
|
||||
<!--end::Switch-->
|
||||
</div>
|
||||
<!--end::Input group-->
|
||||
|
||||
|
||||
|
||||
<!--begin::Actions-->
|
||||
<div class="text-center pt-15">
|
||||
<button type="reset" id="kt_modal_new_card_cancel" class="btn btn-light me-3">Discard</button>
|
||||
@@ -179,6 +181,26 @@
|
||||
</button>
|
||||
</div>
|
||||
<!--end::Actions-->
|
||||
</form>
|
||||
|
||||
<?php
|
||||
if (isset($card_test_result) && is_array($card_test_result) && $card_test_result['error_status']==true)
|
||||
{
|
||||
?>
|
||||
<div class="text-center pt-15">
|
||||
<div class="d-flex align-items-center bg-light-danger rounded p-5 mb-7">
|
||||
<?php
|
||||
foreach($card_test_result['error_message'] as $err)
|
||||
{
|
||||
echo $err ." ,";
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
<!--end::Table container-->
|
||||
</div>
|
||||
<!--begin::Body-->
|
||||
@@ -207,36 +229,45 @@
|
||||
<!--begin::Tap pane-->
|
||||
<div class="tab-pane fade show active" id="kt_table_widget_4_tab_1">
|
||||
<!--begin::Table container-->
|
||||
<!--begin::Card-->
|
||||
<div class="card card-dashed h-xl-100 flex-row flex-stack flex-wrap p-6">
|
||||
<!--begin::Info-->
|
||||
<div class="d-flex flex-column py-2">
|
||||
<!--begin::Owner-->
|
||||
<div class="d-flex align-items-center fs-4 fw-bolder mb-5">Marcus Morris
|
||||
<span class="badge badge-light-success fs-7 ms-2">Primary</span></div>
|
||||
<!--end::Owner-->
|
||||
<!--begin::Wrapper-->
|
||||
<div class="d-flex align-items-center">
|
||||
<!--begin::Icon-->
|
||||
<img src="/metronic8/demo8/assets/media/svg/card-logos/visa.svg" alt="" class="me-4" />
|
||||
<!--end::Icon-->
|
||||
<!--begin::Details-->
|
||||
<div>
|
||||
<div class="fs-4 fw-bolder">Visa **** 1679</div>
|
||||
<div class="fs-6 fw-bold text-gray-400">Card expires at 09/24</div>
|
||||
<?php
|
||||
foreach ($card_table_result as $cr){
|
||||
?>
|
||||
<!--begin::Card-->
|
||||
<div class="card card-dashed h-xl-100 flex-row flex-stack flex-wrap p-6">
|
||||
<!--begin::Info-->
|
||||
<div class="d-flex flex-column py-2">
|
||||
<!--begin::Owner-->
|
||||
<div class="d-flex align-items-center fs-4 fw-bolder mb-5"><?=$cr->firstname?> <?=$cr->lastname?>
|
||||
<span class="badge badge-light-success fs-7 ms-2">Primary</span></div>
|
||||
<!--end::Owner-->
|
||||
<!--begin::Wrapper-->
|
||||
<div class="d-flex align-items-center">
|
||||
<!--begin::Icon-->
|
||||
<img src="/site3/assets/media/svg/card-logos/<?=strtolower($cr->description)?>.svg" alt="" class="me-4" />
|
||||
<!--end::Icon-->
|
||||
<!--begin::Details-->
|
||||
<div>
|
||||
<div class="fs-4 fw-bolder"><?=$cr->description?> **** <?=$cr->digits?></div>
|
||||
<div class="fs-6 fw-bold text-gray-400">Card expires at <?=$cr->expiration_month?>/<?=$cr->expiration_year?></div>
|
||||
</div>
|
||||
<!--end::Details-->
|
||||
</div>
|
||||
<!--end::Details-->
|
||||
<!--end::Wrapper-->
|
||||
</div>
|
||||
<!--end::Wrapper-->
|
||||
<!--end::Info-->
|
||||
<!--begin::Actions-->
|
||||
<div class="d-flex align-items-center py-2">
|
||||
<button type="reset" class="btn btn-sm btn-danger btn-active-light-primary me-3">Delete</button>
|
||||
</div>
|
||||
<!--end::Actions-->
|
||||
</div>
|
||||
<!--end::Info-->
|
||||
<!--begin::Actions-->
|
||||
<div class="d-flex align-items-center py-2">
|
||||
<button type="reset" class="btn btn-sm btn-danger btn-active-light-primary me-3">Delete</button>
|
||||
</div>
|
||||
<!--end::Actions-->
|
||||
</div>
|
||||
<!--end::Card-->
|
||||
<!--end::Card-->
|
||||
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
<!--end::Table-->
|
||||
</div>
|
||||
<!--end::Tap pane-->
|
||||
|
||||
@@ -12,7 +12,9 @@
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.7",
|
||||
"facebook/php-sdk-v4" : "~5.0"
|
||||
"facebook/php-sdk-v4" : "~5.0",
|
||||
"firebase/php-jwt": "^6.0",
|
||||
"phpseclib/phpseclib": "^3.0"
|
||||
},
|
||||
"suggest": {
|
||||
"paragonie/random_compat": "Provides better randomness in PHP 5.x"
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
<svg width="80" height="48" viewBox="0 0 80 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 0H6C2.68629 0 0 2.68629 0 6V42C0 45.3137 2.68629 48 6 48H74C77.3137 48 80 45.3137 80 42V6C80 2.68629 77.3137 0 74 0Z" fill="#343449"/>
|
||||
<path d="M11 18.0555H13.4444L12.2222 14.9443L11 18.0555Z" fill="#2FABF7"/>
|
||||
<path d="M41.3333 15.3888C41.1111 15.2777 40.7778 15.2777 40.4444 15.2777H38.2222V17.0555H40.4444C40.7778 17.0555 41.1111 17.0555 41.3333 16.9443C41.5555 16.8332 41.6667 16.4999 41.6667 16.1666C41.7778 15.7221 41.5555 15.4999 41.3333 15.3888Z" fill="#228FE0"/>
|
||||
<path d="M65.1111 12.0555V13.3888L64.4444 12.0555H59.2222V13.3888L58.5556 12.0555H51.4444C50.2222 12.0555 49.2222 12.2777 48.3333 12.7221V12.0555H43.3333V12.7221C42.7778 12.2777 42.1111 12.0555 41.2222 12.0555H23.3333L22.1111 14.8332L20.8889 12.0555H15.2222V13.3888L14.5556 12.0555H9.77778L7.55556 17.2777L5 23.0555H7.55556H10.6667L11.3333 21.2777H12.8889L13.5556 23.0555H20V21.7221L20.5556 23.0555H23.7778L24.3333 21.7221V23.0555H39.7778V20.1666H40C40.2222 20.1666 40.2222 20.1666 40.2222 20.4999V22.9443H48.2222V22.2777C48.8889 22.611 49.8889 22.9443 51.2222 22.9443H54.5556L55.2222 21.1666H56.7778L57.4444 22.9443H63.8889V21.2777L64.8889 22.9443H70.1111V12.0555H65.1111ZM27.5556 21.3888H25.6667V15.2777L23 21.3888H21.3333L18.6667 15.2777V21.3888H14.8889L14.1111 19.7221H10.3333L9.66667 21.4999H7.55556L10.8889 13.611H13.6667L16.7778 21.0555V13.611H19.7778L22.2222 18.9443L24.4444 13.611H27.5556V21.3888ZM35.1111 15.2777H30.7778V16.7221H35V18.2777H30.7778V19.8332H35.1111V21.4999H28.8889V13.611H35.1111V15.2777ZM43.4444 18.4999C43.6667 18.9443 43.7778 19.2777 43.7778 19.9443V21.4999H41.8889V20.4999C41.8889 20.0555 41.8889 19.3888 41.5556 18.9443C41.2222 18.611 40.8889 18.611 40.2222 18.611H38.2222V21.4999H36.3333V13.611H40.5556C41.5556 13.611 42.2222 13.611 42.7778 13.9443C43.3333 14.2777 43.6667 14.8332 43.6667 15.7221C43.6667 16.9443 42.8889 17.611 42.3333 17.8332C42.8889 17.9443 43.2222 18.2777 43.4444 18.4999ZM46.7778 21.3888H44.8889V13.4999H46.7778V21.3888ZM68.6667 21.3888H66L62.4444 15.4999V21.3888H58.6667L58 19.7221H54.1111L53.4444 21.4999H51.3333C50.4444 21.4999 49.3333 21.2777 48.6667 20.611C48 19.9443 47.6667 19.0555 47.6667 17.611C47.6667 16.4999 47.8889 15.3888 48.6667 14.4999C49.2222 13.8332 50.2222 13.611 51.4444 13.611H53.2222V15.2777H51.4444C50.7778 15.2777 50.4444 15.3888 50 15.7221C49.6667 16.0555 49.4444 16.7221 49.4444 17.4999C49.4444 18.3888 49.5556 18.9443 50 19.3888C50.3333 19.7221 50.7778 19.8332 51.3333 19.8332H52.1111L54.6667 13.7221H57.4444L60.5556 21.1666V13.7221H63.3333L66.5556 19.1666V13.7221H68.4444V21.3888H68.6667Z" fill="#0571C1"/>
|
||||
<path d="M54.7778 18.0555H57.3334L56.1111 14.9443L54.7778 18.0555Z" fill="#228FE0"/>
|
||||
<path d="M35.8889 34.0556V27.7222L33 30.8333L35.8889 34.0556Z" fill="#228FE0"/>
|
||||
<path d="M24 28.5V29.9444H28.1111V31.5H24V33.1667H28.5556L30.6667 30.8333L28.6667 28.5H24Z" fill="#2FABF7"/>
|
||||
<path d="M40.1111 28.5H37.7778V30.5H40.2222C40.8889 30.5 41.3333 30.1667 41.3333 29.5C41.2222 28.8333 40.7778 28.5 40.1111 28.5Z" fill="#228FE0"/>
|
||||
<path d="M74.4444 30.3888V25.3888H73.1111H69.7777C68.7777 25.3888 68 25.611 67.4444 26.0555V25.3888H62.3333C61.5555 25.3888 60.5555 25.611 60.1111 26.0555V25.3888H51.1111V26.0555C50.4444 25.4999 49.2222 25.3888 48.6666 25.3888H42.6666V26.0555C42.1111 25.4999 40.7777 25.3888 40.1111 25.3888H33.4444L31.8888 27.0555L30.4444 25.3888H20.4444V36.2777H30.2222L31.7777 34.611L33.2222 36.2777H39.2222V33.7221H40C40.7777 33.7221 41.7777 33.7221 42.5555 33.3888V36.3888H47.5555V33.4999H47.7777C48.1111 33.4999 48.1111 33.4999 48.1111 33.8332V36.3888H63.2222C64.2222 36.3888 65.2222 36.1666 65.7777 35.7221V36.3888H70.5555C71.5555 36.3888 72.5555 36.2777 73.2222 35.8332C74.3333 35.1666 74.9999 33.9443 74.9999 32.4999C74.9999 31.7221 74.7777 30.9443 74.4444 30.3888ZM40 32.1666H37.7777V34.8332H34.2222L32 32.2777L29.6666 34.8332H22.3333V26.9443H29.7777L32 29.4999L34.3333 26.9443H40.2222C41.6666 26.9443 43.3333 27.3888 43.3333 29.4999C43.2222 31.7221 41.6666 32.1666 40 32.1666ZM51.1111 31.7221C51.3333 32.0555 51.4444 32.4999 51.4444 33.1666V34.7221H49.5555V33.7221C49.5555 33.2777 49.5555 32.4999 49.2222 32.1666C49 31.8332 48.5555 31.8332 47.8888 31.8332H45.8888V34.7221H43.9999V26.8332H48.2222C49.1111 26.8332 49.8888 26.8332 50.4444 27.1666C51 27.4999 51.4444 28.0555 51.4444 28.9443C51.4444 30.1666 50.6666 30.8332 50.1111 31.0555C50.6666 31.2777 51 31.4999 51.1111 31.7221ZM58.7777 28.4999H54.4444V29.9443H58.6666V31.4999H54.4444V33.0555H58.7777V34.7221H52.5555V26.8332H58.7777V28.4999ZM63.4444 34.7221H59.8888V33.0555H63.4444C63.7777 33.0555 64 33.0555 64.2222 32.8332C64.3333 32.7221 64.4444 32.4999 64.4444 32.2777C64.4444 32.0555 64.3333 31.8332 64.2222 31.7221C64.1111 31.611 63.8888 31.4999 63.5555 31.4999C61.7777 31.3888 59.6666 31.4999 59.6666 29.0555C59.6666 27.9443 60.3333 26.7221 62.3333 26.7221H65.9999V28.611H62.5555C62.2222 28.611 61.9999 28.611 61.7777 28.7221C61.5555 28.8332 61.5555 29.0555 61.5555 29.2777C61.5555 29.611 61.7777 29.7221 62 29.8332C62.2222 29.9443 62.4444 29.9443 62.6666 29.9443H63.6666C64.6666 29.9443 65.3333 30.1666 65.7777 30.611C66.1111 30.9443 66.3333 31.4999 66.3333 32.2777C66.3333 33.9443 65.3333 34.7221 63.4444 34.7221ZM73 33.9443C72.5555 34.3888 71.7777 34.7221 70.6666 34.7221H67.1111V33.0555H70.6666C70.9999 33.0555 71.2222 33.0555 71.4444 32.8332C71.5555 32.7221 71.6666 32.4999 71.6666 32.2777C71.6666 32.0555 71.5555 31.8332 71.4444 31.7221C71.3333 31.611 71.1111 31.4999 70.7777 31.4999C69 31.3888 66.8888 31.4999 66.8888 29.0555C66.8888 27.9443 67.5555 26.7221 69.5555 26.7221H73.2222V28.611H69.8888C69.5555 28.611 69.3333 28.611 69.1111 28.7221C68.8888 28.8332 68.8888 29.0555 68.8888 29.2777C68.8888 29.611 68.9999 29.7221 69.3333 29.8332C69.5555 29.9443 69.7777 29.9443 69.9999 29.9443H70.9999C71.9999 29.9443 72.6666 30.1666 73.1111 30.611C73.2222 30.611 73.2222 30.7221 73.2222 30.7221C73.5555 31.1666 73.6666 31.7221 73.6666 32.2777C73.6666 32.9443 73.4444 33.4999 73 33.9443Z" fill="#0571C1"/>
|
||||
<path d="M49.1111 28.7222C48.8889 28.6111 48.5555 28.6111 48.2222 28.6111H46V30.3889H48.2222C48.5555 30.3889 48.8889 30.3889 49.1111 30.2778C49.3333 30.1667 49.4444 29.8333 49.4444 29.5C49.5555 29.0556 49.3333 28.8333 49.1111 28.7222Z" fill="#228FE0"/>
|
||||
<path d="M41.3333 15.3888C41.1111 15.2777 40.7778 15.2777 40.4444 15.2777H38.2222V17.0555H40.4444C40.7778 17.0555 41.1111 17.0555 41.3333 16.9443C41.5555 16.8332 41.6667 16.4999 41.6667 16.1666C41.7778 15.7221 41.5555 15.4999 41.3333 15.3888Z" fill="#228FE0"/>
|
||||
<path d="M54.7778 18.0555H57.3334L56.1111 14.9443L54.7778 18.0555Z" fill="#228FE0"/>
|
||||
<path d="M35.8889 34.0556V27.7222L33 30.8333L35.8889 34.0556Z" fill="#228FE0"/>
|
||||
<path d="M40.1111 28.5H37.7778V30.5H40.2222C40.8889 30.5 41.3333 30.1667 41.3333 29.5C41.2222 28.8333 40.7778 28.5 40.1111 28.5Z" fill="#228FE0"/>
|
||||
<path d="M49.1111 28.7222C48.8889 28.6111 48.5555 28.6111 48.2222 28.6111H46V30.3889H48.2222C48.5555 30.3889 48.8889 30.3889 49.1111 30.2778C49.3333 30.1667 49.4444 29.8333 49.4444 29.5C49.5555 29.0556 49.3333 28.8333 49.1111 28.7222Z" fill="#228FE0"/>
|
||||
<path d="M39.3333 34.4999L37.7777 32.8332V34.7221H34.1111L31.8888 32.1666L29.4444 34.7221H22.1111V26.9444H29.5555L31.8888 29.4999L33 28.1666L30.2222 25.3888H20.4444V36.2777H30.2222L31.8888 34.611L33.3333 36.2777H39.3333V34.4999Z" fill="#2FABF7"/>
|
||||
<path d="M27.7778 22.9443L26.3333 21.3888H25.6667V20.7221L24 19.0555L22.8889 21.3888H21.3333L18.6667 15.2777V21.3888H14.8889L14.1111 19.7221H10.3333L9.55556 21.3888H7.55556L10.8889 13.611H13.6667L16.7778 21.0555V13.611H18.4444L16.8889 12.0555H15.2222V13.3888L14.6667 12.0555H9.77778L7.55556 17.2777L5 22.9443H7.55556H10.7778L11.4444 21.2777H13L13.7778 22.9443H20V21.611L20.5556 22.9443H23.7778L24.3333 21.611V22.9443H27.7778Z" fill="#2FABF7"/>
|
||||
<path d="M22.6667 17.8332L20.8889 16.0555L22.2223 18.9443L22.6667 17.8332Z" fill="#2FABF7"/>
|
||||
<path d="M73.2222 35.7221C74.2222 35.0555 74.8889 33.9443 75 32.7221L73.4444 31.1666C73.5555 31.4999 73.6666 31.8332 73.6666 32.2777C73.6666 32.9443 73.4444 33.4999 73 33.9443C72.5555 34.3888 71.7777 34.7221 70.6666 34.7221H67.1111V33.0555H70.6666C71 33.0555 71.2222 33.0555 71.4444 32.8332C71.5555 32.7221 71.6666 32.4999 71.6666 32.2777C71.6666 32.0555 71.5555 31.8332 71.4444 31.7221C71.3333 31.611 71.1111 31.4999 70.7777 31.4999C69 31.3888 66.8889 31.4999 66.8889 29.0554C66.8889 27.9443 67.5555 26.9443 69.2222 26.7221L68 25.4999C67.7777 25.611 67.6666 25.7221 67.5555 25.7221V25.0554H62.4444C61.6666 25.0554 60.6666 25.2777 60.2222 25.7221V25.0554H51.1111V25.7221C50.4444 25.1666 49.2222 25.0554 48.6666 25.0554H42.6666V25.7221C42.1111 25.1666 40.7777 25.0554 40.1111 25.0554H33.4444L31.8888 26.7221L30.4444 25.0554H29.2222L32.5555 28.3888L34.2222 26.611H40.1111C41.5555 26.611 43.2222 27.0554 43.2222 29.1666C43.2222 31.3888 41.6666 31.8332 40 31.8332H37.7777V33.4999L39.4444 35.1666V33.4999H40C40.7777 33.4999 41.7777 33.4999 42.5555 33.1666V36.1666H47.5555V33.2777H47.7777C48.1111 33.2777 48.1111 33.2777 48.1111 33.611V36.1666H63.2222C64.2222 36.1666 65.2222 35.9443 65.7777 35.4999V36.1666H70.5555C71.4444 36.2777 72.4444 36.1666 73.2222 35.7221ZM51.1111 31.7221C51.3333 32.0555 51.4444 32.4999 51.4444 33.1666V34.7221H49.5555V33.7221C49.5555 33.2777 49.5555 32.4999 49.2222 32.1666C49 31.8332 48.5555 31.8332 47.8888 31.8332H45.8888V34.7221H44V26.8332H48.2222C49.1111 26.8332 49.8888 26.8332 50.4444 27.1666C51 27.4999 51.4444 28.0554 51.4444 28.9443C51.4444 30.1666 50.6666 30.8332 50.1111 31.0555C50.6666 31.2777 51 31.4999 51.1111 31.7221ZM58.7777 28.4999H54.4444V29.9443H58.6666V31.4999H54.4444V33.0555H58.7777V34.7221H52.5555V26.8332H58.7777V28.4999ZM63.4444 34.7221H59.8889V33.0555H63.4444C63.7777 33.0555 64 33.0555 64.2222 32.8332C64.3333 32.7221 64.4444 32.4999 64.4444 32.2777C64.4444 32.0555 64.3333 31.8332 64.2222 31.7221C64.1111 31.611 63.8889 31.4999 63.5555 31.4999C61.7777 31.3888 59.6666 31.4999 59.6666 29.0554C59.6666 27.9443 60.3333 26.7221 62.3333 26.7221H66V28.611H62.5555C62.2222 28.611 62 28.611 61.7777 28.7221C61.5555 28.8332 61.5555 29.0554 61.5555 29.2777C61.5555 29.611 61.7777 29.7221 62 29.8332C62.2222 29.9443 62.4444 29.9443 62.6666 29.9443H63.6666C64.6666 29.9443 65.3333 30.1666 65.7777 30.611C66.1111 30.9443 66.3333 31.4999 66.3333 32.2777C66.3333 33.9443 65.3333 34.7221 63.4444 34.7221Z" fill="#228FE0"/>
|
||||
<path d="M68.7777 29.2778C68.7777 29.6111 68.8888 29.7222 69.2222 29.8333C69.4444 29.9444 69.6666 29.9444 69.8888 29.9444H70.8888C71.5555 29.9444 72 30.0556 72.4444 30.2778L70.7777 28.6111H69.7777C69.4444 28.6111 69.2222 28.6111 69 28.7222C68.8888 28.8333 68.7777 29.0556 68.7777 29.2778Z" fill="#228FE0"/>
|
||||
<path d="M64.8889 22.6111L65.1111 22.9444H65.2222L64.8889 22.6111Z" fill="#228FE0"/>
|
||||
<path d="M58.7777 16.5L60.6666 21.0555V18.3889L58.7777 16.5Z" fill="#228FE0"/>
|
||||
<path d="M39.7777 20.1666H40C40.2222 20.1666 40.2222 20.1666 40.2222 20.4999V22.9443H48.2222V22.2777C48.8889 22.611 49.8888 22.9443 51.2222 22.9443H54.5555L55.2222 21.1666H56.7777L57.4444 22.9443H63.8888V21.8332L62.3333 20.2777V21.4999H58.5555L58 19.7221H54.1111L53.4444 21.4999H51.3333C50.4444 21.4999 49.3333 21.2777 48.6666 20.611C48 19.9443 47.6666 19.0555 47.6666 17.611C47.6666 16.4999 47.8888 15.3888 48.6666 14.4999C49.2222 13.8332 50.2222 13.611 51.4444 13.611H53.2222V15.2777H51.4444C50.7777 15.2777 50.4444 15.3888 50 15.7221C49.6666 16.0555 49.4444 16.7221 49.4444 17.4999C49.4444 18.3888 49.5555 18.9443 50 19.3888C50.3333 19.7221 50.7777 19.8332 51.3333 19.8332H52.1111L54.6666 13.7221H55.7777L54.2222 12.1666H51.3333C50.1111 12.1666 49.1111 12.3888 48.2222 12.8332V12.1666H43.3333V12.8332C42.7777 12.3888 42.1111 12.1666 41.2222 12.1666H23.3333L22.1111 14.9443L20.8888 12.1666H16L17.5555 13.7221H19.7777L21.6666 17.8332L22.3333 18.4999L24.3333 13.611H27.4444V21.4999H25.5555V15.3888L23.6666 19.8332L26.8888 23.0555H39.6666L39.7777 20.1666ZM44.8888 13.611H46.7777V21.4999H44.8888V13.611ZM35.1111 15.2777H30.7777V16.7221H35V18.2777H30.7777V19.8332H35.1111V21.4999H28.8888V13.611H35.1111V15.2777ZM38.2222 21.3888H36.3333V13.4999H40.5555C41.5555 13.4999 42.2222 13.4999 42.7777 13.8332C43.3333 14.1666 43.6666 14.7221 43.6666 15.611C43.6666 16.8332 42.8888 17.4999 42.3333 17.7221C42.7777 17.8332 43.1111 18.1666 43.2222 18.3888C43.4444 18.8332 43.5555 19.1666 43.5555 19.8332V21.3888H41.6666V20.3888C41.6666 19.9443 41.6666 19.2777 41.3333 18.8332C41.2222 18.611 40.8888 18.611 40.2222 18.611H38.2222V21.3888Z" fill="#228FE0"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,32 @@
|
||||
<svg width="80" height="48" viewBox="0 0 80 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 0H6C2.68629 0 0 2.68629 0 6V42C0 45.3137 2.68629 48 6 48H74C77.3137 48 80 45.3137 80 42V6C80 2.68629 77.3137 0 74 0Z" fill="#F6F8FA"/>
|
||||
<g clip-path="url(#clip0)">
|
||||
<path d="M11 18.0556H13.4444L12.2222 14.9444L11 18.0556Z" fill="#2FABF7"/>
|
||||
<path d="M41.3333 15.3889C41.1111 15.2778 40.7778 15.2778 40.4444 15.2778H38.2222V17.0556H40.4444C40.7778 17.0556 41.1111 17.0556 41.3333 16.9444C41.5555 16.8333 41.6667 16.5 41.6667 16.1667C41.7778 15.7222 41.5555 15.5 41.3333 15.3889Z" fill="#228FE0"/>
|
||||
<path d="M65.1111 12.0556V13.3889L64.4444 12.0556H59.2222V13.3889L58.5556 12.0556H51.4444C50.2222 12.0556 49.2222 12.2778 48.3333 12.7222V12.0556H43.3333V12.7222C42.7778 12.2778 42.1111 12.0556 41.2222 12.0556H23.3333L22.1111 14.8333L20.8889 12.0556H15.2222V13.3889L14.5556 12.0556H9.77778L7.55556 17.2778L5 23.0556H7.55556H10.6667L11.3333 21.2778H12.8889L13.5556 23.0556H20V21.7222L20.5556 23.0556H23.7778L24.3333 21.7222V23.0556H39.7778V20.1667H40C40.2222 20.1667 40.2222 20.1667 40.2222 20.5V22.9444H48.2222V22.2778C48.8889 22.6111 49.8889 22.9444 51.2222 22.9444H54.5556L55.2222 21.1667H56.7778L57.4444 22.9444H63.8889V21.2778L64.8889 22.9444H70.1111V12.0556H65.1111ZM27.5556 21.3889H25.6667V15.2778L23 21.3889H21.3333L18.6667 15.2778V21.3889H14.8889L14.1111 19.7222H10.3333L9.66667 21.5H7.55556L10.8889 13.6111H13.6667L16.7778 21.0556V13.6111H19.7778L22.2222 18.9444L24.4444 13.6111H27.5556V21.3889ZM35.1111 15.2778H30.7778V16.7222H35V18.2778H30.7778V19.8333H35.1111V21.5H28.8889V13.6111H35.1111V15.2778ZM43.4444 18.5C43.6667 18.9444 43.7778 19.2778 43.7778 19.9444V21.5H41.8889V20.5C41.8889 20.0556 41.8889 19.3889 41.5556 18.9444C41.2222 18.6111 40.8889 18.6111 40.2222 18.6111H38.2222V21.5H36.3333V13.6111H40.5556C41.5556 13.6111 42.2222 13.6111 42.7778 13.9444C43.3333 14.2778 43.6667 14.8333 43.6667 15.7222C43.6667 16.9444 42.8889 17.6111 42.3333 17.8333C42.8889 17.9444 43.2222 18.2778 43.4444 18.5ZM46.7778 21.3889H44.8889V13.5H46.7778V21.3889ZM68.6667 21.3889H66L62.4444 15.5V21.3889H58.6667L58 19.7222H54.1111L53.4444 21.5H51.3333C50.4444 21.5 49.3333 21.2778 48.6667 20.6111C48 19.9444 47.6667 19.0556 47.6667 17.6111C47.6667 16.5 47.8889 15.3889 48.6667 14.5C49.2222 13.8333 50.2222 13.6111 51.4444 13.6111H53.2222V15.2778H51.4444C50.7778 15.2778 50.4444 15.3889 50 15.7222C49.6667 16.0556 49.4444 16.7222 49.4444 17.5C49.4444 18.3889 49.5556 18.9444 50 19.3889C50.3333 19.7222 50.7778 19.8333 51.3333 19.8333H52.1111L54.6667 13.7222H57.4444L60.5556 21.1667V13.7222H63.3333L66.5556 19.1667V13.7222H68.4444V21.3889H68.6667Z" fill="#0571C1"/>
|
||||
<path d="M54.7778 18.0556H57.3334L56.1111 14.9444L54.7778 18.0556Z" fill="#228FE0"/>
|
||||
<path d="M35.8889 34.0556V27.7222L33 30.8333L35.8889 34.0556Z" fill="#228FE0"/>
|
||||
<path d="M24 28.5V29.9444H28.1111V31.5H24V33.1667H28.5556L30.6667 30.8333L28.6667 28.5H24Z" fill="#2FABF7"/>
|
||||
<path d="M40.1111 28.5H37.7778V30.5H40.2222C40.8889 30.5 41.3333 30.1667 41.3333 29.5C41.2222 28.8333 40.7778 28.5 40.1111 28.5Z" fill="#228FE0"/>
|
||||
<path d="M74.4444 30.3889V25.3889H73.1111H69.7777C68.7777 25.3889 68 25.6111 67.4444 26.0556V25.3889H62.3333C61.5555 25.3889 60.5555 25.6111 60.1111 26.0556V25.3889H51.1111V26.0556C50.4444 25.5 49.2222 25.3889 48.6666 25.3889H42.6666V26.0556C42.1111 25.5 40.7777 25.3889 40.1111 25.3889H33.4444L31.8888 27.0556L30.4444 25.3889H20.4444V36.2778H30.2222L31.7777 34.6111L33.2222 36.2778H39.2222V33.7222H40C40.7777 33.7222 41.7777 33.7222 42.5555 33.3889V36.3889H47.5555V33.5H47.7777C48.1111 33.5 48.1111 33.5 48.1111 33.8333V36.3889H63.2222C64.2222 36.3889 65.2222 36.1667 65.7777 35.7222V36.3889H70.5555C71.5555 36.3889 72.5555 36.2778 73.2222 35.8333C74.3333 35.1667 74.9999 33.9444 74.9999 32.5C74.9999 31.7222 74.7777 30.9444 74.4444 30.3889ZM40 32.1667H37.7777V34.8333H34.2222L32 32.2778L29.6666 34.8333H22.3333V26.9444H29.7777L32 29.5L34.3333 26.9444H40.2222C41.6666 26.9444 43.3333 27.3889 43.3333 29.5C43.2222 31.7222 41.6666 32.1667 40 32.1667ZM51.1111 31.7222C51.3333 32.0556 51.4444 32.5 51.4444 33.1667V34.7222H49.5555V33.7222C49.5555 33.2778 49.5555 32.5 49.2222 32.1667C49 31.8333 48.5555 31.8333 47.8888 31.8333H45.8888V34.7222H43.9999V26.8333H48.2222C49.1111 26.8333 49.8888 26.8333 50.4444 27.1667C51 27.5 51.4444 28.0556 51.4444 28.9444C51.4444 30.1667 50.6666 30.8333 50.1111 31.0556C50.6666 31.2778 51 31.5 51.1111 31.7222ZM58.7777 28.5H54.4444V29.9444H58.6666V31.5H54.4444V33.0556H58.7777V34.7222H52.5555V26.8333H58.7777V28.5ZM63.4444 34.7222H59.8888V33.0556H63.4444C63.7777 33.0556 64 33.0556 64.2222 32.8333C64.3333 32.7222 64.4444 32.5 64.4444 32.2778C64.4444 32.0556 64.3333 31.8333 64.2222 31.7222C64.1111 31.6111 63.8888 31.5 63.5555 31.5C61.7777 31.3889 59.6666 31.5 59.6666 29.0556C59.6666 27.9444 60.3333 26.7222 62.3333 26.7222H65.9999V28.6111H62.5555C62.2222 28.6111 61.9999 28.6111 61.7777 28.7222C61.5555 28.8333 61.5555 29.0556 61.5555 29.2778C61.5555 29.6111 61.7777 29.7222 62 29.8333C62.2222 29.9444 62.4444 29.9444 62.6666 29.9444H63.6666C64.6666 29.9444 65.3333 30.1667 65.7777 30.6111C66.1111 30.9444 66.3333 31.5 66.3333 32.2778C66.3333 33.9444 65.3333 34.7222 63.4444 34.7222ZM73 33.9444C72.5555 34.3889 71.7777 34.7222 70.6666 34.7222H67.1111V33.0556H70.6666C70.9999 33.0556 71.2222 33.0556 71.4444 32.8333C71.5555 32.7222 71.6666 32.5 71.6666 32.2778C71.6666 32.0556 71.5555 31.8333 71.4444 31.7222C71.3333 31.6111 71.1111 31.5 70.7777 31.5C69 31.3889 66.8888 31.5 66.8888 29.0556C66.8888 27.9444 67.5555 26.7222 69.5555 26.7222H73.2222V28.6111H69.8888C69.5555 28.6111 69.3333 28.6111 69.1111 28.7222C68.8888 28.8333 68.8888 29.0556 68.8888 29.2778C68.8888 29.6111 68.9999 29.7222 69.3333 29.8333C69.5555 29.9444 69.7777 29.9444 69.9999 29.9444H70.9999C71.9999 29.9444 72.6666 30.1667 73.1111 30.6111C73.2222 30.6111 73.2222 30.7222 73.2222 30.7222C73.5555 31.1667 73.6666 31.7222 73.6666 32.2778C73.6666 32.9444 73.4444 33.5 73 33.9444Z" fill="#0571C1"/>
|
||||
<path d="M49.1111 28.7222C48.8889 28.6111 48.5555 28.6111 48.2222 28.6111H46V30.3889H48.2222C48.5555 30.3889 48.8889 30.3889 49.1111 30.2778C49.3333 30.1667 49.4444 29.8333 49.4444 29.5C49.5555 29.0556 49.3333 28.8333 49.1111 28.7222Z" fill="#228FE0"/>
|
||||
<path d="M41.3333 15.3889C41.1111 15.2778 40.7778 15.2778 40.4444 15.2778H38.2222V17.0556H40.4444C40.7778 17.0556 41.1111 17.0556 41.3333 16.9444C41.5555 16.8333 41.6667 16.5 41.6667 16.1667C41.7778 15.7222 41.5555 15.5 41.3333 15.3889Z" fill="#228FE0"/>
|
||||
<path d="M54.7778 18.0556H57.3334L56.1111 14.9444L54.7778 18.0556Z" fill="#228FE0"/>
|
||||
<path d="M35.8889 34.0556V27.7222L33 30.8333L35.8889 34.0556Z" fill="#228FE0"/>
|
||||
<path d="M40.1111 28.5H37.7778V30.5H40.2222C40.8889 30.5 41.3333 30.1667 41.3333 29.5C41.2222 28.8333 40.7778 28.5 40.1111 28.5Z" fill="#228FE0"/>
|
||||
<path d="M49.1111 28.7222C48.8889 28.6111 48.5555 28.6111 48.2222 28.6111H46V30.3889H48.2222C48.5555 30.3889 48.8889 30.3889 49.1111 30.2778C49.3333 30.1667 49.4444 29.8333 49.4444 29.5C49.5555 29.0556 49.3333 28.8333 49.1111 28.7222Z" fill="#228FE0"/>
|
||||
<path d="M39.3333 34.5L37.7777 32.8333V34.7222H34.1111L31.8888 32.1667L29.4444 34.7222H22.1111V26.9445H29.5555L31.8888 29.5L33 28.1667L30.2222 25.3889H20.4444V36.2778H30.2222L31.8888 34.6111L33.3333 36.2778H39.3333V34.5Z" fill="#2FABF7"/>
|
||||
<path d="M27.7778 22.9444L26.3333 21.3889H25.6667V20.7222L24 19.0556L22.8889 21.3889H21.3333L18.6667 15.2778V21.3889H14.8889L14.1111 19.7222H10.3333L9.55556 21.3889H7.55556L10.8889 13.6111H13.6667L16.7778 21.0556V13.6111H18.4444L16.8889 12.0556H15.2222V13.3889L14.6667 12.0556H9.77778L7.55556 17.2778L5 22.9444H7.55556H10.7778L11.4444 21.2778H13L13.7778 22.9444H20V21.6111L20.5556 22.9444H23.7778L24.3333 21.6111V22.9444H27.7778Z" fill="#2FABF7"/>
|
||||
<path d="M22.6667 17.8333L20.8889 16.0556L22.2223 18.9444L22.6667 17.8333Z" fill="#2FABF7"/>
|
||||
<path d="M73.2222 35.7222C74.2222 35.0556 74.8889 33.9444 75 32.7222L73.4444 31.1667C73.5555 31.5 73.6666 31.8333 73.6666 32.2778C73.6666 32.9444 73.4444 33.5 73 33.9444C72.5555 34.3889 71.7777 34.7222 70.6666 34.7222H67.1111V33.0556H70.6666C71 33.0556 71.2222 33.0556 71.4444 32.8333C71.5555 32.7222 71.6666 32.5 71.6666 32.2778C71.6666 32.0556 71.5555 31.8333 71.4444 31.7222C71.3333 31.6111 71.1111 31.5 70.7777 31.5C69 31.3889 66.8889 31.5 66.8889 29.0555C66.8889 27.9444 67.5555 26.9444 69.2222 26.7222L68 25.5C67.7777 25.6111 67.6666 25.7222 67.5555 25.7222V25.0555H62.4444C61.6666 25.0555 60.6666 25.2778 60.2222 25.7222V25.0555H51.1111V25.7222C50.4444 25.1667 49.2222 25.0555 48.6666 25.0555H42.6666V25.7222C42.1111 25.1667 40.7777 25.0555 40.1111 25.0555H33.4444L31.8888 26.7222L30.4444 25.0555H29.2222L32.5555 28.3889L34.2222 26.6111H40.1111C41.5555 26.6111 43.2222 27.0555 43.2222 29.1667C43.2222 31.3889 41.6666 31.8333 40 31.8333H37.7777V33.5L39.4444 35.1667V33.5H40C40.7777 33.5 41.7777 33.5 42.5555 33.1667V36.1667H47.5555V33.2778H47.7777C48.1111 33.2778 48.1111 33.2778 48.1111 33.6111V36.1667H63.2222C64.2222 36.1667 65.2222 35.9444 65.7777 35.5V36.1667H70.5555C71.4444 36.2778 72.4444 36.1667 73.2222 35.7222ZM51.1111 31.7222C51.3333 32.0556 51.4444 32.5 51.4444 33.1667V34.7222H49.5555V33.7222C49.5555 33.2778 49.5555 32.5 49.2222 32.1667C49 31.8333 48.5555 31.8333 47.8888 31.8333H45.8888V34.7222H44V26.8333H48.2222C49.1111 26.8333 49.8888 26.8333 50.4444 27.1667C51 27.5 51.4444 28.0555 51.4444 28.9444C51.4444 30.1667 50.6666 30.8333 50.1111 31.0556C50.6666 31.2778 51 31.5 51.1111 31.7222ZM58.7777 28.5H54.4444V29.9444H58.6666V31.5H54.4444V33.0556H58.7777V34.7222H52.5555V26.8333H58.7777V28.5ZM63.4444 34.7222H59.8889V33.0556H63.4444C63.7777 33.0556 64 33.0556 64.2222 32.8333C64.3333 32.7222 64.4444 32.5 64.4444 32.2778C64.4444 32.0556 64.3333 31.8333 64.2222 31.7222C64.1111 31.6111 63.8889 31.5 63.5555 31.5C61.7777 31.3889 59.6666 31.5 59.6666 29.0555C59.6666 27.9444 60.3333 26.7222 62.3333 26.7222H66V28.6111H62.5555C62.2222 28.6111 62 28.6111 61.7777 28.7222C61.5555 28.8333 61.5555 29.0555 61.5555 29.2778C61.5555 29.6111 61.7777 29.7222 62 29.8333C62.2222 29.9444 62.4444 29.9444 62.6666 29.9444H63.6666C64.6666 29.9444 65.3333 30.1667 65.7777 30.6111C66.1111 30.9444 66.3333 31.5 66.3333 32.2778C66.3333 33.9444 65.3333 34.7222 63.4444 34.7222Z" fill="#228FE0"/>
|
||||
<path d="M68.7777 29.2778C68.7777 29.6111 68.8888 29.7222 69.2222 29.8333C69.4444 29.9444 69.6666 29.9444 69.8888 29.9444H70.8888C71.5555 29.9444 72 30.0556 72.4444 30.2778L70.7777 28.6111H69.7777C69.4444 28.6111 69.2222 28.6111 69 28.7222C68.8888 28.8333 68.7777 29.0556 68.7777 29.2778Z" fill="#228FE0"/>
|
||||
<path d="M64.8889 22.6111L65.1111 22.9444H65.2222L64.8889 22.6111Z" fill="#228FE0"/>
|
||||
<path d="M58.7777 16.5L60.6666 21.0555V18.3889L58.7777 16.5Z" fill="#228FE0"/>
|
||||
<path d="M39.7777 20.1667H40C40.2222 20.1667 40.2222 20.1667 40.2222 20.5V22.9444H48.2222V22.2778C48.8889 22.6111 49.8888 22.9444 51.2222 22.9444H54.5555L55.2222 21.1667H56.7777L57.4444 22.9444H63.8888V21.8333L62.3333 20.2778V21.5H58.5555L58 19.7222H54.1111L53.4444 21.5H51.3333C50.4444 21.5 49.3333 21.2778 48.6666 20.6111C48 19.9444 47.6666 19.0556 47.6666 17.6111C47.6666 16.5 47.8888 15.3889 48.6666 14.5C49.2222 13.8333 50.2222 13.6111 51.4444 13.6111H53.2222V15.2778H51.4444C50.7777 15.2778 50.4444 15.3889 50 15.7222C49.6666 16.0556 49.4444 16.7222 49.4444 17.5C49.4444 18.3889 49.5555 18.9444 50 19.3889C50.3333 19.7222 50.7777 19.8333 51.3333 19.8333H52.1111L54.6666 13.7222H55.7777L54.2222 12.1667H51.3333C50.1111 12.1667 49.1111 12.3889 48.2222 12.8333V12.1667H43.3333V12.8333C42.7777 12.3889 42.1111 12.1667 41.2222 12.1667H23.3333L22.1111 14.9444L20.8888 12.1667H16L17.5555 13.7222H19.7777L21.6666 17.8333L22.3333 18.5L24.3333 13.6111H27.4444V21.5H25.5555V15.3889L23.6666 19.8333L26.8888 23.0556H39.6666L39.7777 20.1667ZM44.8888 13.6111H46.7777V21.5H44.8888V13.6111ZM35.1111 15.2778H30.7777V16.7222H35V18.2778H30.7777V19.8333H35.1111V21.5H28.8888V13.6111H35.1111V15.2778ZM38.2222 21.3889H36.3333V13.5H40.5555C41.5555 13.5 42.2222 13.5 42.7777 13.8333C43.3333 14.1667 43.6666 14.7222 43.6666 15.6111C43.6666 16.8333 42.8888 17.5 42.3333 17.7222C42.7777 17.8333 43.1111 18.1667 43.2222 18.3889C43.4444 18.8333 43.5555 19.1667 43.5555 19.8333V21.3889H41.6666V20.3889C41.6666 19.9444 41.6666 19.2778 41.3333 18.8333C41.2222 18.6111 40.8888 18.6111 40.2222 18.6111H38.2222V21.3889Z" fill="#228FE0"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="70" height="24.4444" fill="white" transform="translate(5 12)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,25 @@
|
||||
<svg width="80" height="48" viewBox="0 0 80 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 0H6C2.68629 0 0 2.68629 0 6V42C0 45.3137 2.68629 48 6 48H74C77.3137 48 80 45.3137 80 42V6C80 2.68629 77.3137 0 74 0Z" fill="#343449"/>
|
||||
<path d="M11 18.0555H13.4444L12.2222 14.9443L11 18.0555Z" fill="#2FABF7"/>
|
||||
<path d="M41.3333 15.3888C41.1111 15.2777 40.7778 15.2777 40.4444 15.2777H38.2222V17.0555H40.4444C40.7778 17.0555 41.1111 17.0555 41.3333 16.9443C41.5555 16.8332 41.6667 16.4999 41.6667 16.1666C41.7778 15.7221 41.5555 15.4999 41.3333 15.3888Z" fill="#228FE0"/>
|
||||
<path d="M65.1111 12.0555V13.3888L64.4444 12.0555H59.2222V13.3888L58.5556 12.0555H51.4444C50.2222 12.0555 49.2222 12.2777 48.3333 12.7221V12.0555H43.3333V12.7221C42.7778 12.2777 42.1111 12.0555 41.2222 12.0555H23.3333L22.1111 14.8332L20.8889 12.0555H15.2222V13.3888L14.5556 12.0555H9.77778L7.55556 17.2777L5 23.0555H7.55556H10.6667L11.3333 21.2777H12.8889L13.5556 23.0555H20V21.7221L20.5556 23.0555H23.7778L24.3333 21.7221V23.0555H39.7778V20.1666H40C40.2222 20.1666 40.2222 20.1666 40.2222 20.4999V22.9443H48.2222V22.2777C48.8889 22.611 49.8889 22.9443 51.2222 22.9443H54.5556L55.2222 21.1666H56.7778L57.4444 22.9443H63.8889V21.2777L64.8889 22.9443H70.1111V12.0555H65.1111ZM27.5556 21.3888H25.6667V15.2777L23 21.3888H21.3333L18.6667 15.2777V21.3888H14.8889L14.1111 19.7221H10.3333L9.66667 21.4999H7.55556L10.8889 13.611H13.6667L16.7778 21.0555V13.611H19.7778L22.2222 18.9443L24.4444 13.611H27.5556V21.3888ZM35.1111 15.2777H30.7778V16.7221H35V18.2777H30.7778V19.8332H35.1111V21.4999H28.8889V13.611H35.1111V15.2777ZM43.4444 18.4999C43.6667 18.9443 43.7778 19.2777 43.7778 19.9443V21.4999H41.8889V20.4999C41.8889 20.0555 41.8889 19.3888 41.5556 18.9443C41.2222 18.611 40.8889 18.611 40.2222 18.611H38.2222V21.4999H36.3333V13.611H40.5556C41.5556 13.611 42.2222 13.611 42.7778 13.9443C43.3333 14.2777 43.6667 14.8332 43.6667 15.7221C43.6667 16.9443 42.8889 17.611 42.3333 17.8332C42.8889 17.9443 43.2222 18.2777 43.4444 18.4999ZM46.7778 21.3888H44.8889V13.4999H46.7778V21.3888ZM68.6667 21.3888H66L62.4444 15.4999V21.3888H58.6667L58 19.7221H54.1111L53.4444 21.4999H51.3333C50.4444 21.4999 49.3333 21.2777 48.6667 20.611C48 19.9443 47.6667 19.0555 47.6667 17.611C47.6667 16.4999 47.8889 15.3888 48.6667 14.4999C49.2222 13.8332 50.2222 13.611 51.4444 13.611H53.2222V15.2777H51.4444C50.7778 15.2777 50.4444 15.3888 50 15.7221C49.6667 16.0555 49.4444 16.7221 49.4444 17.4999C49.4444 18.3888 49.5556 18.9443 50 19.3888C50.3333 19.7221 50.7778 19.8332 51.3333 19.8332H52.1111L54.6667 13.7221H57.4444L60.5556 21.1666V13.7221H63.3333L66.5556 19.1666V13.7221H68.4444V21.3888H68.6667Z" fill="#0571C1"/>
|
||||
<path d="M54.7778 18.0555H57.3334L56.1111 14.9443L54.7778 18.0555Z" fill="#228FE0"/>
|
||||
<path d="M35.8889 34.0556V27.7222L33 30.8333L35.8889 34.0556Z" fill="#228FE0"/>
|
||||
<path d="M24 28.5V29.9444H28.1111V31.5H24V33.1667H28.5556L30.6667 30.8333L28.6667 28.5H24Z" fill="#2FABF7"/>
|
||||
<path d="M40.1111 28.5H37.7778V30.5H40.2222C40.8889 30.5 41.3333 30.1667 41.3333 29.5C41.2222 28.8333 40.7778 28.5 40.1111 28.5Z" fill="#228FE0"/>
|
||||
<path d="M74.4444 30.3888V25.3888H73.1111H69.7777C68.7777 25.3888 68 25.611 67.4444 26.0555V25.3888H62.3333C61.5555 25.3888 60.5555 25.611 60.1111 26.0555V25.3888H51.1111V26.0555C50.4444 25.4999 49.2222 25.3888 48.6666 25.3888H42.6666V26.0555C42.1111 25.4999 40.7777 25.3888 40.1111 25.3888H33.4444L31.8888 27.0555L30.4444 25.3888H20.4444V36.2777H30.2222L31.7777 34.611L33.2222 36.2777H39.2222V33.7221H40C40.7777 33.7221 41.7777 33.7221 42.5555 33.3888V36.3888H47.5555V33.4999H47.7777C48.1111 33.4999 48.1111 33.4999 48.1111 33.8332V36.3888H63.2222C64.2222 36.3888 65.2222 36.1666 65.7777 35.7221V36.3888H70.5555C71.5555 36.3888 72.5555 36.2777 73.2222 35.8332C74.3333 35.1666 74.9999 33.9443 74.9999 32.4999C74.9999 31.7221 74.7777 30.9443 74.4444 30.3888ZM40 32.1666H37.7777V34.8332H34.2222L32 32.2777L29.6666 34.8332H22.3333V26.9443H29.7777L32 29.4999L34.3333 26.9443H40.2222C41.6666 26.9443 43.3333 27.3888 43.3333 29.4999C43.2222 31.7221 41.6666 32.1666 40 32.1666ZM51.1111 31.7221C51.3333 32.0555 51.4444 32.4999 51.4444 33.1666V34.7221H49.5555V33.7221C49.5555 33.2777 49.5555 32.4999 49.2222 32.1666C49 31.8332 48.5555 31.8332 47.8888 31.8332H45.8888V34.7221H43.9999V26.8332H48.2222C49.1111 26.8332 49.8888 26.8332 50.4444 27.1666C51 27.4999 51.4444 28.0555 51.4444 28.9443C51.4444 30.1666 50.6666 30.8332 50.1111 31.0555C50.6666 31.2777 51 31.4999 51.1111 31.7221ZM58.7777 28.4999H54.4444V29.9443H58.6666V31.4999H54.4444V33.0555H58.7777V34.7221H52.5555V26.8332H58.7777V28.4999ZM63.4444 34.7221H59.8888V33.0555H63.4444C63.7777 33.0555 64 33.0555 64.2222 32.8332C64.3333 32.7221 64.4444 32.4999 64.4444 32.2777C64.4444 32.0555 64.3333 31.8332 64.2222 31.7221C64.1111 31.611 63.8888 31.4999 63.5555 31.4999C61.7777 31.3888 59.6666 31.4999 59.6666 29.0555C59.6666 27.9443 60.3333 26.7221 62.3333 26.7221H65.9999V28.611H62.5555C62.2222 28.611 61.9999 28.611 61.7777 28.7221C61.5555 28.8332 61.5555 29.0555 61.5555 29.2777C61.5555 29.611 61.7777 29.7221 62 29.8332C62.2222 29.9443 62.4444 29.9443 62.6666 29.9443H63.6666C64.6666 29.9443 65.3333 30.1666 65.7777 30.611C66.1111 30.9443 66.3333 31.4999 66.3333 32.2777C66.3333 33.9443 65.3333 34.7221 63.4444 34.7221ZM73 33.9443C72.5555 34.3888 71.7777 34.7221 70.6666 34.7221H67.1111V33.0555H70.6666C70.9999 33.0555 71.2222 33.0555 71.4444 32.8332C71.5555 32.7221 71.6666 32.4999 71.6666 32.2777C71.6666 32.0555 71.5555 31.8332 71.4444 31.7221C71.3333 31.611 71.1111 31.4999 70.7777 31.4999C69 31.3888 66.8888 31.4999 66.8888 29.0555C66.8888 27.9443 67.5555 26.7221 69.5555 26.7221H73.2222V28.611H69.8888C69.5555 28.611 69.3333 28.611 69.1111 28.7221C68.8888 28.8332 68.8888 29.0555 68.8888 29.2777C68.8888 29.611 68.9999 29.7221 69.3333 29.8332C69.5555 29.9443 69.7777 29.9443 69.9999 29.9443H70.9999C71.9999 29.9443 72.6666 30.1666 73.1111 30.611C73.2222 30.611 73.2222 30.7221 73.2222 30.7221C73.5555 31.1666 73.6666 31.7221 73.6666 32.2777C73.6666 32.9443 73.4444 33.4999 73 33.9443Z" fill="#0571C1"/>
|
||||
<path d="M49.1111 28.7222C48.8889 28.6111 48.5555 28.6111 48.2222 28.6111H46V30.3889H48.2222C48.5555 30.3889 48.8889 30.3889 49.1111 30.2778C49.3333 30.1667 49.4444 29.8333 49.4444 29.5C49.5555 29.0556 49.3333 28.8333 49.1111 28.7222Z" fill="#228FE0"/>
|
||||
<path d="M41.3333 15.3888C41.1111 15.2777 40.7778 15.2777 40.4444 15.2777H38.2222V17.0555H40.4444C40.7778 17.0555 41.1111 17.0555 41.3333 16.9443C41.5555 16.8332 41.6667 16.4999 41.6667 16.1666C41.7778 15.7221 41.5555 15.4999 41.3333 15.3888Z" fill="#228FE0"/>
|
||||
<path d="M54.7778 18.0555H57.3334L56.1111 14.9443L54.7778 18.0555Z" fill="#228FE0"/>
|
||||
<path d="M35.8889 34.0556V27.7222L33 30.8333L35.8889 34.0556Z" fill="#228FE0"/>
|
||||
<path d="M40.1111 28.5H37.7778V30.5H40.2222C40.8889 30.5 41.3333 30.1667 41.3333 29.5C41.2222 28.8333 40.7778 28.5 40.1111 28.5Z" fill="#228FE0"/>
|
||||
<path d="M49.1111 28.7222C48.8889 28.6111 48.5555 28.6111 48.2222 28.6111H46V30.3889H48.2222C48.5555 30.3889 48.8889 30.3889 49.1111 30.2778C49.3333 30.1667 49.4444 29.8333 49.4444 29.5C49.5555 29.0556 49.3333 28.8333 49.1111 28.7222Z" fill="#228FE0"/>
|
||||
<path d="M39.3333 34.4999L37.7777 32.8332V34.7221H34.1111L31.8888 32.1666L29.4444 34.7221H22.1111V26.9444H29.5555L31.8888 29.4999L33 28.1666L30.2222 25.3888H20.4444V36.2777H30.2222L31.8888 34.611L33.3333 36.2777H39.3333V34.4999Z" fill="#2FABF7"/>
|
||||
<path d="M27.7778 22.9443L26.3333 21.3888H25.6667V20.7221L24 19.0555L22.8889 21.3888H21.3333L18.6667 15.2777V21.3888H14.8889L14.1111 19.7221H10.3333L9.55556 21.3888H7.55556L10.8889 13.611H13.6667L16.7778 21.0555V13.611H18.4444L16.8889 12.0555H15.2222V13.3888L14.6667 12.0555H9.77778L7.55556 17.2777L5 22.9443H7.55556H10.7778L11.4444 21.2777H13L13.7778 22.9443H20V21.611L20.5556 22.9443H23.7778L24.3333 21.611V22.9443H27.7778Z" fill="#2FABF7"/>
|
||||
<path d="M22.6667 17.8332L20.8889 16.0555L22.2223 18.9443L22.6667 17.8332Z" fill="#2FABF7"/>
|
||||
<path d="M73.2222 35.7221C74.2222 35.0555 74.8889 33.9443 75 32.7221L73.4444 31.1666C73.5555 31.4999 73.6666 31.8332 73.6666 32.2777C73.6666 32.9443 73.4444 33.4999 73 33.9443C72.5555 34.3888 71.7777 34.7221 70.6666 34.7221H67.1111V33.0555H70.6666C71 33.0555 71.2222 33.0555 71.4444 32.8332C71.5555 32.7221 71.6666 32.4999 71.6666 32.2777C71.6666 32.0555 71.5555 31.8332 71.4444 31.7221C71.3333 31.611 71.1111 31.4999 70.7777 31.4999C69 31.3888 66.8889 31.4999 66.8889 29.0554C66.8889 27.9443 67.5555 26.9443 69.2222 26.7221L68 25.4999C67.7777 25.611 67.6666 25.7221 67.5555 25.7221V25.0554H62.4444C61.6666 25.0554 60.6666 25.2777 60.2222 25.7221V25.0554H51.1111V25.7221C50.4444 25.1666 49.2222 25.0554 48.6666 25.0554H42.6666V25.7221C42.1111 25.1666 40.7777 25.0554 40.1111 25.0554H33.4444L31.8888 26.7221L30.4444 25.0554H29.2222L32.5555 28.3888L34.2222 26.611H40.1111C41.5555 26.611 43.2222 27.0554 43.2222 29.1666C43.2222 31.3888 41.6666 31.8332 40 31.8332H37.7777V33.4999L39.4444 35.1666V33.4999H40C40.7777 33.4999 41.7777 33.4999 42.5555 33.1666V36.1666H47.5555V33.2777H47.7777C48.1111 33.2777 48.1111 33.2777 48.1111 33.611V36.1666H63.2222C64.2222 36.1666 65.2222 35.9443 65.7777 35.4999V36.1666H70.5555C71.4444 36.2777 72.4444 36.1666 73.2222 35.7221ZM51.1111 31.7221C51.3333 32.0555 51.4444 32.4999 51.4444 33.1666V34.7221H49.5555V33.7221C49.5555 33.2777 49.5555 32.4999 49.2222 32.1666C49 31.8332 48.5555 31.8332 47.8888 31.8332H45.8888V34.7221H44V26.8332H48.2222C49.1111 26.8332 49.8888 26.8332 50.4444 27.1666C51 27.4999 51.4444 28.0554 51.4444 28.9443C51.4444 30.1666 50.6666 30.8332 50.1111 31.0555C50.6666 31.2777 51 31.4999 51.1111 31.7221ZM58.7777 28.4999H54.4444V29.9443H58.6666V31.4999H54.4444V33.0555H58.7777V34.7221H52.5555V26.8332H58.7777V28.4999ZM63.4444 34.7221H59.8889V33.0555H63.4444C63.7777 33.0555 64 33.0555 64.2222 32.8332C64.3333 32.7221 64.4444 32.4999 64.4444 32.2777C64.4444 32.0555 64.3333 31.8332 64.2222 31.7221C64.1111 31.611 63.8889 31.4999 63.5555 31.4999C61.7777 31.3888 59.6666 31.4999 59.6666 29.0554C59.6666 27.9443 60.3333 26.7221 62.3333 26.7221H66V28.611H62.5555C62.2222 28.611 62 28.611 61.7777 28.7221C61.5555 28.8332 61.5555 29.0554 61.5555 29.2777C61.5555 29.611 61.7777 29.7221 62 29.8332C62.2222 29.9443 62.4444 29.9443 62.6666 29.9443H63.6666C64.6666 29.9443 65.3333 30.1666 65.7777 30.611C66.1111 30.9443 66.3333 31.4999 66.3333 32.2777C66.3333 33.9443 65.3333 34.7221 63.4444 34.7221Z" fill="#228FE0"/>
|
||||
<path d="M68.7777 29.2778C68.7777 29.6111 68.8888 29.7222 69.2222 29.8333C69.4444 29.9444 69.6666 29.9444 69.8888 29.9444H70.8888C71.5555 29.9444 72 30.0556 72.4444 30.2778L70.7777 28.6111H69.7777C69.4444 28.6111 69.2222 28.6111 69 28.7222C68.8888 28.8333 68.7777 29.0556 68.7777 29.2778Z" fill="#228FE0"/>
|
||||
<path d="M64.8889 22.6111L65.1111 22.9444H65.2222L64.8889 22.6111Z" fill="#228FE0"/>
|
||||
<path d="M58.7777 16.5L60.6666 21.0555V18.3889L58.7777 16.5Z" fill="#228FE0"/>
|
||||
<path d="M39.7777 20.1666H40C40.2222 20.1666 40.2222 20.1666 40.2222 20.4999V22.9443H48.2222V22.2777C48.8889 22.611 49.8888 22.9443 51.2222 22.9443H54.5555L55.2222 21.1666H56.7777L57.4444 22.9443H63.8888V21.8332L62.3333 20.2777V21.4999H58.5555L58 19.7221H54.1111L53.4444 21.4999H51.3333C50.4444 21.4999 49.3333 21.2777 48.6666 20.611C48 19.9443 47.6666 19.0555 47.6666 17.611C47.6666 16.4999 47.8888 15.3888 48.6666 14.4999C49.2222 13.8332 50.2222 13.611 51.4444 13.611H53.2222V15.2777H51.4444C50.7777 15.2777 50.4444 15.3888 50 15.7221C49.6666 16.0555 49.4444 16.7221 49.4444 17.4999C49.4444 18.3888 49.5555 18.9443 50 19.3888C50.3333 19.7221 50.7777 19.8332 51.3333 19.8332H52.1111L54.6666 13.7221H55.7777L54.2222 12.1666H51.3333C50.1111 12.1666 49.1111 12.3888 48.2222 12.8332V12.1666H43.3333V12.8332C42.7777 12.3888 42.1111 12.1666 41.2222 12.1666H23.3333L22.1111 14.9443L20.8888 12.1666H16L17.5555 13.7221H19.7777L21.6666 17.8332L22.3333 18.4999L24.3333 13.611H27.4444V21.4999H25.5555V15.3888L23.6666 19.8332L26.8888 23.0555H39.6666L39.7777 20.1666ZM44.8888 13.611H46.7777V21.4999H44.8888V13.611ZM35.1111 15.2777H30.7777V16.7221H35V18.2777H30.7777V19.8332H35.1111V21.4999H28.8888V13.611H35.1111V15.2777ZM38.2222 21.3888H36.3333V13.4999H40.5555C41.5555 13.4999 42.2222 13.4999 42.7777 13.8332C43.3333 14.1666 43.6666 14.7221 43.6666 15.611C43.6666 16.8332 42.8888 17.4999 42.3333 17.7221C42.7777 17.8332 43.1111 18.1666 43.2222 18.3888C43.4444 18.8332 43.5555 19.1666 43.5555 19.8332V21.3888H41.6666V20.3888C41.6666 19.9443 41.6666 19.2777 41.3333 18.8332C41.2222 18.611 40.8888 18.611 40.2222 18.611H38.2222V21.3888Z" fill="#228FE0"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,6 @@
|
||||
<svg width="80" height="48" viewBox="0 0 80 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 0H6C2.68629 0 0 2.68629 0 6V42C0 45.3137 2.68629 48 6 48H74C77.3137 48 80 45.3137 80 42V6C80 2.68629 77.3137 0 74 0Z" fill="#343449"/>
|
||||
<path d="M47.129 35.9651H33.8779V12.2273H47.1292L47.129 35.9651Z" fill="#FF5F00"/>
|
||||
<path d="M34.718 24.0961C34.718 19.2809 36.9798 14.9915 40.502 12.2272C37.8359 10.1317 34.5384 8.9944 31.1432 8.99941C22.7796 8.99941 16 15.7584 16 24.0961C16 32.4339 22.7796 39.1928 31.1432 39.1928C34.5385 39.1979 37.8361 38.0606 40.5022 35.965C36.9803 33.2012 34.718 28.9116 34.718 24.0961Z" fill="#EB001B"/>
|
||||
<path d="M65.0061 24.0967C65.0061 32.4345 58.2265 39.1934 49.8629 39.1934C46.4673 39.1984 43.1693 38.0611 40.5027 35.9656C44.0258 33.2013 46.2876 28.9121 46.2876 24.0967C46.2876 19.2813 44.0258 14.9921 40.5027 12.2278C43.1693 10.1324 46.4671 8.9951 49.8627 9.00002C58.2263 9.00002 65.0059 15.7589 65.0059 24.0967" fill="#F79E1B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 982 B |
@@ -0,0 +1,5 @@
|
||||
<svg width="80" height="48" viewBox="0 0 80 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 0H6C2.68629 0 0 2.68629 0 6V42C0 45.3137 2.68629 48 6 48H74C77.3137 48 80 45.3137 80 42V6C80 2.68629 77.3137 0 74 0Z" fill="#343449"/>
|
||||
<path d="M36.71 33.6833H32.059L34.9658 15.328H39.6174L36.71 33.6833ZM28.1462 15.328L23.712 27.9529L23.1873 25.2343L23.1878 25.2353L21.6228 16.9807C21.6228 16.9807 21.4336 15.328 19.4165 15.328H12.086L12 15.6388C12 15.6388 14.2417 16.118 16.8652 17.7368L20.906 33.6838H25.7521L33.1518 15.328H28.1462ZM64.7293 33.6833H69L65.2765 15.3275H61.5376C59.8111 15.3275 59.3906 16.6954 59.3906 16.6954L52.4538 33.6833H57.3023L58.2719 30.9568H64.1845L64.7293 33.6833ZM59.6113 27.1904L62.0552 20.3214L63.43 27.1904H59.6113ZM52.8175 19.742L53.4813 15.8003C53.4813 15.8003 51.4331 15 49.298 15C46.9899 15 41.5088 16.0365 41.5088 21.0765C41.5088 25.8186 47.9418 25.8775 47.9418 28.3683C47.9418 30.8591 42.1716 30.4128 40.2673 28.8421L39.5758 32.9635C39.5758 32.9635 41.6526 34 44.8257 34C47.9996 34 52.7879 32.3115 52.7879 27.7158C52.7879 22.9433 46.297 22.499 46.297 20.424C46.2975 18.3486 50.8272 18.6152 52.8175 19.742Z" fill="#2566AF"/>
|
||||
<path d="M23.1878 25.2348L21.6228 16.9802C21.6228 16.9802 21.4336 15.3275 19.4165 15.3275H12.086L12 15.6383C12 15.6383 15.5233 16.3886 18.9028 19.1995C22.1341 21.8862 23.1878 25.2348 23.1878 25.2348Z" fill="#E6A540"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,6 @@
|
||||
<svg width="80" height="48" viewBox="0 0 80 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 0H6C2.68629 0 0 2.68629 0 6V42C0 45.3137 2.68629 48 6 48H74C77.3137 48 80 45.3137 80 42V6C80 2.68629 77.3137 0 74 0Z" fill="#343449"/>
|
||||
<path d="M47.129 35.9651H33.8779V12.2273H47.1292L47.129 35.9651Z" fill="#FF5F00"/>
|
||||
<path d="M34.718 24.0961C34.718 19.2809 36.9798 14.9915 40.502 12.2272C37.8359 10.1317 34.5384 8.9944 31.1432 8.99941C22.7796 8.99941 16 15.7584 16 24.0961C16 32.4339 22.7796 39.1928 31.1432 39.1928C34.5385 39.1979 37.8361 38.0606 40.5022 35.965C36.9803 33.2012 34.718 28.9116 34.718 24.0961Z" fill="#EB001B"/>
|
||||
<path d="M65.0061 24.0967C65.0061 32.4345 58.2265 39.1934 49.8629 39.1934C46.4673 39.1984 43.1693 38.0611 40.5027 35.9656C44.0258 33.2013 46.2876 28.9121 46.2876 24.0967C46.2876 19.2813 44.0258 14.9921 40.5027 12.2278C43.1693 10.1324 46.4671 8.9951 49.8627 9.00002C58.2263 9.00002 65.0059 15.7589 65.0059 24.0967" fill="#F79E1B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 982 B |
@@ -0,0 +1,13 @@
|
||||
<svg width="80" height="48" viewBox="0 0 80 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="48" rx="6" fill="#F6F8FA"/>
|
||||
<g clip-path="url(#clip0)">
|
||||
<path d="M47.129 35.9651H33.8779V12.2273H47.1292L47.129 35.9651Z" fill="#FF5F00"/>
|
||||
<path d="M34.718 24.096C34.718 19.2808 36.9798 14.9914 40.502 12.2271C37.8359 10.1316 34.5384 8.99434 31.1432 8.99935C22.7796 8.99935 16 15.7583 16 24.096C16 32.4338 22.7796 39.1927 31.1432 39.1927C34.5385 39.1978 37.8361 38.0605 40.5022 35.9649C36.9803 33.2011 34.718 28.9115 34.718 24.096Z" fill="#EB001B"/>
|
||||
<path d="M65.0061 24.0967C65.0061 32.4345 58.2265 39.1934 49.8629 39.1934C46.4673 39.1984 43.1693 38.0611 40.5027 35.9656C44.0258 33.2013 46.2876 28.9121 46.2876 24.0967C46.2876 19.2813 44.0258 14.9921 40.5027 12.2278C43.1693 10.1324 46.4671 8.9951 49.8627 9.00002C58.2263 9.00002 65.0059 15.7589 65.0059 24.0967" fill="#F79E1B"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="49" height="38" fill="white" transform="translate(16 9)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,5 @@
|
||||
<svg width="80" height="48" viewBox="0 0 80 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 0H6C2.68629 0 0 2.68629 0 6V42C0 45.3137 2.68629 48 6 48H74C77.3137 48 80 45.3137 80 42V6C80 2.68629 77.3137 0 74 0Z" fill="#343449"/>
|
||||
<path d="M36.71 33.6833H32.059L34.9658 15.328H39.6174L36.71 33.6833ZM28.1462 15.328L23.712 27.9529L23.1873 25.2343L23.1878 25.2353L21.6228 16.9807C21.6228 16.9807 21.4336 15.328 19.4165 15.328H12.086L12 15.6388C12 15.6388 14.2417 16.118 16.8652 17.7368L20.906 33.6838H25.7521L33.1518 15.328H28.1462ZM64.7293 33.6833H69L65.2765 15.3275H61.5376C59.8111 15.3275 59.3906 16.6954 59.3906 16.6954L52.4538 33.6833H57.3023L58.2719 30.9568H64.1845L64.7293 33.6833ZM59.6113 27.1904L62.0552 20.3214L63.43 27.1904H59.6113ZM52.8175 19.742L53.4813 15.8003C53.4813 15.8003 51.4331 15 49.298 15C46.9899 15 41.5088 16.0365 41.5088 21.0765C41.5088 25.8186 47.9418 25.8775 47.9418 28.3683C47.9418 30.8591 42.1716 30.4128 40.2673 28.8421L39.5758 32.9635C39.5758 32.9635 41.6526 34 44.8257 34C47.9996 34 52.7879 32.3115 52.7879 27.7158C52.7879 22.9433 46.297 22.499 46.297 20.424C46.2975 18.3486 50.8272 18.6152 52.8175 19.742Z" fill="#2566AF"/>
|
||||
<path d="M23.1878 25.2348L21.6228 16.9802C21.6228 16.9802 21.4336 15.3275 19.4165 15.3275H12.086L12 15.6383C12 15.6383 15.5233 16.3886 18.9028 19.1995C22.1341 21.8862 23.1878 25.2348 23.1878 25.2348Z" fill="#E6A540"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,5 @@
|
||||
<svg width="80" height="48" viewBox="0 0 80 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="48" rx="6" fill="#F6F8FA"/>
|
||||
<path d="M36.71 33.6833H32.059L34.9658 15.328H39.6174L36.71 33.6833ZM28.1462 15.328L23.712 27.9529L23.1873 25.2343L23.1878 25.2353L21.6228 16.9807C21.6228 16.9807 21.4336 15.328 19.4165 15.328H12.086L12 15.6388C12 15.6388 14.2417 16.118 16.8652 17.7368L20.906 33.6838H25.7521L33.1518 15.328H28.1462V15.328ZM64.7293 33.6833H69L65.2765 15.3275H61.5376C59.8111 15.3275 59.3906 16.6954 59.3906 16.6954L52.4538 33.6833H57.3023L58.2719 30.9568H64.1845L64.7293 33.6833ZM59.6113 27.1904L62.0552 20.3214L63.43 27.1904H59.6113ZM52.8175 19.742L53.4813 15.8003C53.4813 15.8003 51.4331 15 49.298 15C46.9899 15 41.5088 16.0365 41.5088 21.0765C41.5088 25.8186 47.9418 25.8775 47.9418 28.3683C47.9418 30.8591 42.1716 30.4128 40.2673 28.8421L39.5758 32.9635C39.5758 32.9635 41.6526 34 44.8257 34C47.9996 34 52.7879 32.3115 52.7879 27.7158C52.7879 22.9433 46.297 22.499 46.297 20.424C46.2975 18.3486 50.8272 18.6152 52.8175 19.742V19.742Z" fill="#2566AF"/>
|
||||
<path d="M23.1878 25.2348L21.6228 16.9802C21.6228 16.9802 21.4336 15.3275 19.4165 15.3275H12.086L12 15.6383C12 15.6383 15.5233 16.3886 18.9028 19.1995C22.1341 21.8862 23.1878 25.2348 23.1878 25.2348Z" fill="#E6A540"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |